-
Notifications
You must be signed in to change notification settings - Fork 117
feat(ix-aggrid): Update ix-aggrid to use aggrid v33 #2198
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. Weโll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 9 commits
Commits
Show all changes
67 commits
Select commit
Hold shift + click to select a range
cc9ccb1
feat(aggrid): migrate legacy theme to new theming api
danielleroux 58100d4
Merge remote-tracking branch 'origin/release-4.0.0' into feat/aggrid-โฆ
danielleroux c8fb0b6
update function name
danielleroux 06d4062
add first mapping draft
danielleroux 4f25c37
ix aggrid new theming API final
lzeiml c91afb8
Merge branch 'main' into feat/aggrid-v33-theme
lzeiml 638f046
build + install
lzeiml 31f8ecf
fix build
lzeiml b2381fc
use es2022
lzeiml c52f425
Create tiny-ducks-behave.md
nuke-ellington 6fe0b48
fix tests
lzeiml d6bbd6a
Merge branch 'feat/aggrid-v33-theme' of https://github.com/siemens/ixโฆ
lzeiml 4d367e4
Update packages/aggrid/tests/setup.ts
lzeiml 3fef930
fix
lzeiml 70050b3
fix
lzeiml d818978
fix tests
lzeiml 6bec035
Merge branch 'main' into feat/aggrid-v33-theme
lzeiml e718323
merge
lzeiml bfb824a
remove unused file
lzeiml 0e8cc13
fix
lzeiml f79b173
fix
lzeiml 806dd2b
test
lzeiml fbac2a0
fix snapshots
lzeiml 96ad259
remove unused file
lzeiml 4af8797
fix
lzeiml 8561299
test
lzeiml 0d548c9
debug
lzeiml fe53276
debug
lzeiml 8192656
debug
lzeiml 69629d6
fix
lzeiml 9b1de68
revert
lzeiml 12171c8
pipeline test
lzeiml 016b061
test
lzeiml 29b987e
test debug setup
lzeiml 0b5be55
update snapshots
lzeiml 02430fc
fix snapshots (please)
lzeiml d7dd493
remove debug logs, add pagination test
lzeiml 2ca3884
Merge branch 'main' into feat/aggrid-v33-theme
lzeiml c72ea25
fix build
lzeiml 3b1d4b5
remove tsconfig duplicate entries
lzeiml 47509f9
fix icons version
lzeiml 4ae0f78
remove logs
lzeiml ed35470
remove IIFE
lzeiml b47cba6
docs(aggrid): update readme OSS
nuke-ellington ec1e9d0
fix checkbox styles
lzeiml 10225e1
add radiobutton styles
lzeiml 65e09c1
Merge branch 'feat/aggrid-v33-theme' of https://github.com/siemens/ixโฆ
lzeiml 79cc1ff
update snapshots
lzeiml 8f3d08c
fix styles
lzeiml 214989e
update version
lzeiml ea05087
add preview examples
lzeiml db8cc03
adapt html example
lzeiml 7a75c89
update theme params
lzeiml 34db0df
snapshots
lzeiml 3b9258c
sonarqube fix
lzeiml fc28def
rename ixTheme function
lzeiml d203530
fix input styling
lzeiml c4ed117
update tests, add v34 test
lzeiml 9fbc9fb
simplify example code
lzeiml 7e3447c
fix sonarqube issues
lzeiml 2ef4c72
fix
lzeiml e91d1b2
revert wrong color
lzeiml 3c06a73
regex fix
lzeiml 194299d
revert to older buildTarget
lzeiml e46ce20
Merge branch 'main' into feat/aggrid-v33-theme
lzeiml 7d9b231
fixes
lzeiml 8923f74
Update packages/aggrid/tests/basic/setup-basic.ts
lzeiml File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,43 @@ | ||
| import { resolve } from 'path'; | ||
| import nodeResolve from '@rollup/plugin-node-resolve'; | ||
| import typescript from '@rollup/plugin-typescript'; | ||
| import css from 'rollup-plugin-import-css'; | ||
|
|
||
| const __dirname = resolve(); | ||
| const external = ['@ag-grid-community/theming']; | ||
|
|
||
| /** @type {import('rollup').RollupOptions} */ | ||
| const config = { | ||
| output: [ | ||
| { | ||
| dir: 'dist', | ||
| entryFileNames: '[name].js', | ||
| chunkFileNames: '[name]-[hash].js', | ||
| format: 'esm', | ||
| sourcemap: true, | ||
| }, | ||
| ], | ||
| input: { | ||
| index: 'src/index.ts', | ||
| }, | ||
| plugins: [ | ||
| css(), | ||
| typescript({ | ||
| tsconfig: resolve(__dirname, 'tsconfig.lib.json'), | ||
| }), | ||
| nodeResolve(), | ||
| ], | ||
| external: (id) => { | ||
| return external.includes(id); | ||
| }, | ||
|
|
||
| watch: { | ||
| include: 'src/**', | ||
| chokidar: { | ||
| usePolling: true, // Use polling to detect changes | ||
| interval: 100, // Polling interval in milliseconds | ||
| }, | ||
| }, | ||
| }; | ||
|
|
||
| export default config; |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.