Releases: IgniteUI/igniteui-grid-lite
0.2.0
Changed
-
BREAKING: Column
sortandfilterproperties have been replaced with separate boolean and configuration properties:sort→sortable(boolean) +sortingCaseSensitive(boolean) +sortConfiguration(object withcompareroption)filter→filterable(boolean) +filteringCaseSensitive(boolean)
-
BREAKING: Removed
ColumnFilterConfigurationtype. UsefilteringCaseSensitiveboolean property directly on the column.
0.1.0
Changed
-
BREAKING: Column configuration is now declarative using
<igc-grid-lite-column>elements instead of thecolumnsproperty.
Thecolumnsproperty is now read-only and returns the current column configuration.Before:
<igc-grid-lite .data=${data} .columns=${columns}></igc-grid-lite>
const columns: ColumnConfiguration<User>[] = [ { key: 'id', headerText: 'User ID', type: 'number', filter: true, sort: true }, { key: 'name', filter: true, sort: true }, ];
After:
<igc-grid-lite .data=${data}> <igc-grid-lite-column key="id" header-text="User ID" type="number" .filter=${true} .sort=${true} ></igc-grid-lite-column> <igc-grid-lite-column key="name" .filter=${true} .sort=${true} ></igc-grid-lite-column> </igc-grid-lite>
-
BREAKING: Renamed
GridSortConfigurationtype toGridLiteSortingOptions. -
BREAKING: Renamed
IgcGridLite.sortConfigurationproperty tosortingOptions. -
BREAKING: Renamed
IgcGridLite.sortExpressionsproperty tosortingExpressions. -
BREAKING: Renamed
SortExpressiontype toSortingExpression. -
BREAKING: Renamed
BaseSortExpressiontype toBaseSortingExpression. -
BREAKING:
GridLiteSortingOptions.multipleboolean property has been replaced withmodeproperty that accepts'single'or'multiple'string values.- Before:
grid.sortConfiguration = { multiple: true, triState: true } - After:
grid.sortingOptions = { mode: 'multiple' }
- Before:
Removed
- BREAKING:
triStateproperty has been removed fromGridLiteSortingOptions. Tri-state sorting is now always enabled.
0.0.2
What's Changed
- chore: update repository URL in _package.json by @damyanpetev in #6
- refactor(themes): consume grid schemas from theming package by @desig9stein in #7
- build(deps): Bumped dependencies by @rkaraivanov in #8
- Update README.md with comprehensive documentation by @Copilot in #10
- Clarify Ignite UI Grid Lite as Web Components by @radomirchev in #11
New Contributors
- @desig9stein made their first contribution in #7
- @rkaraivanov made their first contribution in #8
- @Copilot made their first contribution in #10
- @radomirchev made their first contribution in #11
Full Changelog: 0.0.1...0.0.2
1.0.0-alpha.9
What's Changed
- chore: update package name, minor metadata adjustments by @damyanpetev in #5
Full Changelog: 1.0.0-alpha.7...1.0.0-alpha.9
1.0.0-alpha.8
What's Changed
- chore: update package name, minor metadata adjustments by @damyanpetev in #5
Full Changelog: 1.0.0-alpha.7...1.0.0-alpha.8
1.0.0-alpha.7
Full Changelog: 1.0.0-alpha.6...1.0.0-alpha.7
1.0.0-alpha.11
Full Changelog: 1.0.0-alpha.10...1.0.0-alpha.11
1.0.0-alpha.10
What's Changed
- chore: update package name, minor metadata adjustments by @damyanpetev in #5
Full Changelog: 1.0.0-alpha.7...1.0.0-alpha.10
0.0.1
Initial release
1.0.0-alpha.6
What's Changed
- refactor(themes): add dark variables, move base out of themes by @damyanpetev in #2
- chore: update igniteui-webcomponents dep and move theming to dev dep by @damyanpetev in #3