Skip to content

Releases: IgniteUI/igniteui-grid-lite

0.2.0

10 Dec 17:06

Choose a tag to compare

Changed

  • BREAKING: Column sort and filter properties have been replaced with separate boolean and configuration properties:

    • sortsortable (boolean) + sortingCaseSensitive (boolean) + sortConfiguration (object with comparer option)
    • filterfilterable (boolean) + filteringCaseSensitive (boolean)
  • BREAKING: Removed ColumnFilterConfiguration type. Use filteringCaseSensitive boolean property directly on the column.

0.1.0

10 Dec 16:54

Choose a tag to compare

Changed

  • BREAKING: Column configuration is now declarative using <igc-grid-lite-column> elements instead of the columns property.
    The columns property 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 GridSortConfiguration type to GridLiteSortingOptions.

  • BREAKING: Renamed IgcGridLite.sortConfiguration property to sortingOptions.

  • BREAKING: Renamed IgcGridLite.sortExpressions property to sortingExpressions.

  • BREAKING: Renamed SortExpression type to SortingExpression.

  • BREAKING: Renamed BaseSortExpression type to BaseSortingExpression.

  • BREAKING: GridLiteSortingOptions.multiple boolean property has been replaced with mode property that accepts 'single' or 'multiple' string values.

    • Before: grid.sortConfiguration = { multiple: true, triState: true }
    • After: grid.sortingOptions = { mode: 'multiple' }

Removed

  • BREAKING: triState property has been removed from GridLiteSortingOptions. Tri-state sorting is now always enabled.

0.0.2

10 Dec 08:15
7714b2d

Choose a tag to compare

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

Full Changelog: 0.0.1...0.0.2

1.0.0-alpha.9

17 Nov 12:46
daba490

Choose a tag to compare

1.0.0-alpha.9 Pre-release
Pre-release

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

17 Nov 12:41
daba490

Choose a tag to compare

1.0.0-alpha.8 Pre-release
Pre-release

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

17 Nov 09:21
b272a3c

Choose a tag to compare

1.0.0-alpha.7 Pre-release
Pre-release

1.0.0-alpha.11

17 Nov 12:52
3f86f31

Choose a tag to compare

1.0.0-alpha.11 Pre-release
Pre-release

1.0.0-alpha.10

17 Nov 12:50
daba490

Choose a tag to compare

1.0.0-alpha.10 Pre-release
Pre-release

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

26 Nov 11:21
3f86f31

Choose a tag to compare

Initial release

1.0.0-alpha.6

14 Nov 10:22
13f4fd1

Choose a tag to compare

1.0.0-alpha.6 Pre-release
Pre-release

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