Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: IgniteUI/igniteui-webcomponents
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 4.6.0
Choose a base ref
...
head repository: IgniteUI/igniteui-webcomponents
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 4.7.0
Choose a head ref
  • 10 commits
  • 92 files changed
  • 6 contributors

Commits on Dec 6, 2023

  1. build(deps-dev): bump vite from 4.5.0 to 4.5.1 (#1001)

    Bumps [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) from 4.5.0 to 4.5.1.
    - [Release notes](https://github.com/vitejs/vite/releases)
    - [Changelog](https://github.com/vitejs/vite/blob/v4.5.1/packages/vite/CHANGELOG.md)
    - [Commits](https://github.com/vitejs/vite/commits/v4.5.1/packages/vite)
    
    ---
    updated-dependencies:
    - dependency-name: vite
      dependency-type: direct:development
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Dec 6, 2023

    Verified

    This commit was signed with the committer’s verified signature.
    KyleFromNVIDIA Kyle Edwards
    Copy the full SHA
    4c13114 View commit details

Commits on Dec 8, 2023

  1. Copy the full SHA
    ae07b0e View commit details
  2. Copy the full SHA
    267479b View commit details

Commits on Jan 2, 2024

  1. Copy the full SHA
    5bb55a7 View commit details

Commits on Jan 4, 2024

  1. Copy the full SHA
    b40c82f View commit details
  2. Copy the full SHA
    9c5fff0 View commit details
  3. simplify theme styles (#1005)

    Co-authored-by: Simeon Simeonoff <sim.simeonoff@gmail.com>
    didimmova and simeonoff authored Jan 4, 2024
    Copy the full SHA
    9174de3 View commit details

Commits on Jan 5, 2024

  1. Add toggleNodeOnClick property (#1003)

    * feat(tree): add toggleNodeOnClick property
    MonikaKirkova authored Jan 5, 2024
    Copy the full SHA
    0709146 View commit details
  2. Copy the full SHA
    3e51261 View commit details
  3. Copy the full SHA
    bcecad3 View commit details
Showing with 3,253 additions and 3,443 deletions.
  1. +16 −0 CHANGELOG.md
  2. +1,981 −1,616 package-lock.json
  3. +31 −31 package.json
  4. +5 −3 src/components/avatar/avatar.spec.ts
  5. +23 −26 src/components/avatar/avatar.ts
  6. +8 −9 src/components/avatar/themes/themes.ts
  7. +3 −1 src/components/badge/badge.spec.ts
  8. +17 −2 src/components/badge/badge.ts
  9. +8 −9 src/components/badge/themes/themes.ts
  10. +2 −1 src/components/button-group/button-group.ts
  11. +6 −13 src/components/button-group/themes/button.ts
  12. +8 −9 src/components/button-group/themes/group.ts
  13. +9 −10 src/components/button-group/toggle-button.ts
  14. +22 −30 src/components/button/button-base.ts
  15. +196 −346 src/components/button/button.spec.ts
  16. +5 −11 src/components/button/button.ts
  17. +18 −15 src/components/button/icon-button.spec.ts
  18. +2 −1 src/components/button/icon-button.ts
  19. +8 −9 src/components/button/themes/button/themes.ts
  20. +8 −9 src/components/button/themes/icon-button/themes.ts
  21. +22 −35 src/components/calendar/calendar-keyboard-navigation.spec.ts
  22. +2 −1 src/components/calendar/calendar.ts
  23. +8 −9 src/components/calendar/themes/calendar.ts
  24. +2 −1 src/components/card/card.content.ts
  25. +2 −1 src/components/card/card.header.ts
  26. +2 −1 src/components/card/card.ts
  27. +8 −9 src/components/card/themes/container.ts
  28. +8 −9 src/components/card/themes/content.ts
  29. +8 −9 src/components/card/themes/header.ts
  30. +2 −1 src/components/chip/chip.ts
  31. +8 −9 src/components/chip/themes/themes.ts
  32. +11 −5 src/components/combo/combo-item.ts
  33. +0 −8 src/components/combo/combo-list.ts
  34. +16 −47 src/components/combo/combo.spec.ts
  35. +63 −48 src/components/combo/combo.ts
  36. +19 −29 src/components/combo/operations/group.ts
  37. +1 −1 src/components/common/controllers/root-click.ts
  38. +2 −2 src/components/dialog/dialog.spec.ts
  39. +2 −1 src/components/dialog/dialog.ts
  40. +8 −9 src/components/dialog/themes/themes.ts
  41. +4 −1 src/components/dropdown/themes/shared/item/dropdown-item.fluent.scss
  42. +2 −1 src/components/expansion-panel/expansion-panel.ts
  43. +8 −9 src/components/expansion-panel/themes/themes.ts
  44. +7 −8 src/components/icon/icon.ts
  45. +8 −9 src/components/icon/themes/themes.ts
  46. +1 −2 src/components/input/input-base.ts
  47. +2 −1 src/components/list/list-header.ts
  48. +2 −1 src/components/list/list-item.ts
  49. +8 −9 src/components/list/themes/header.ts
  50. +8 −9 src/components/list/themes/item.ts
  51. +2 −1 src/components/nav-drawer/nav-drawer-header-item.ts
  52. +2 −1 src/components/nav-drawer/nav-drawer-item.ts
  53. +2 −1 src/components/nav-drawer/nav-drawer.ts
  54. +6 −5 src/components/nav-drawer/themes/container.base.scss
  55. +8 −9 src/components/nav-drawer/themes/container.ts
  56. +2 −21 src/components/nav-drawer/themes/header-item.ts
  57. +4 −17 src/components/nav-drawer/themes/item.ts
  58. +2 −1 src/components/navbar/navbar.ts
  59. +8 −9 src/components/navbar/themes/themes.ts
  60. +2 −1 src/components/progress/circular-progress.ts
  61. +2 −1 src/components/progress/linear-progress.ts
  62. +8 −9 src/components/progress/themes/circular/themes.ts
  63. +8 −9 src/components/progress/themes/linear/themes.ts
  64. +26 −1 src/components/rating/rating.spec.ts
  65. +16 −2 src/components/rating/rating.ts
  66. +8 −9 src/components/rating/themes/themes.ts
  67. +2 −1 src/components/snackbar/snackbar.ts
  68. +8 −9 src/components/snackbar/themes/themes.ts
  69. +2 −1 src/components/stepper/step.ts
  70. +8 −9 src/components/stepper/themes/step/themes.ts
  71. +2 −1 src/components/tabs/tab.ts
  72. +2 −1 src/components/tabs/tabs.ts
  73. +4 −17 src/components/tabs/themes/tab-themes.ts
  74. +8 −9 src/components/tabs/themes/tabs-themes.ts
  75. +8 −9 src/components/toast/themes/themes.ts
  76. +2 −1 src/components/toast/toast.ts
  77. +0 −30 src/components/toggle/test.component.spec.ts
  78. +0 −150 src/components/toggle/toggle.controller.ts
  79. +0 −163 src/components/toggle/toggle.directive.ts
  80. +0 −179 src/components/toggle/toggle.spec.ts
  81. +0 −65 src/components/toggle/types.ts
  82. +20 −5 src/components/tree/tree-item.ts
  83. +90 −2 src/components/tree/tree.spec.ts
  84. +7 −0 src/components/tree/tree.ts
  85. +1 −1 src/theming/config.spec.ts
  86. +1 −0 stories/avatar.stories.ts
  87. +40 −51 stories/badge.stories.ts
  88. +50 −40 stories/button.stories.ts
  89. +9 −3 stories/icon-button.stories.ts
  90. +71 −0 stories/rating.common.ts
  91. +172 −161 stories/rating.stories.ts
  92. +20 −2 stories/tree.stories.ts
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -4,6 +4,21 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## [4.7.0] - 2024-01-05
### Added
- Tree - Added **`toggleNodeOnClick`** property that determines whether clicking over a node will change its expanded state or not. Defaults to `false`. [#1003](https://github.com/IgniteUI/igniteui-webcomponents/pull/1003).
- Rating - **`allowReset`** added. When enabled selecting the same value will reset the component [#1014](https://github.com/IgniteUI/igniteui-webcomponents/issues/1014).
**Behavioral change**

In previous releases this was the default behavior of the rating component. Make sure to set `allowReset` if you need to keep this behavior in your application.

### Changed
- Improved WAI-ARIA compliance for Avatar, Badge and Combo components [#1007](https://github.com/IgniteUI/igniteui-webcomponents/pull/1007)

### Fixed
- Active item visual styles for Dropdown, Select and Combo components [#1002](https://github.com/IgniteUI/igniteui-webcomponents/pull/1002)
- Navigation drawer - mini variant broken visual style [#1011](https://github.com/IgniteUI/igniteui-webcomponents/pull/1011)

## [4.6.0] - 2023-12-05
### Added
- **`action`** slot added to Snackbar [#974](https://github.com/IgniteUI/igniteui-webcomponents/issues/974)
@@ -384,6 +399,7 @@ Initial release of Ignite UI Web Components
- Ripple component
- Switch component

[4.7.0]: https://github.com/IgniteUI/igniteui-webcomponents/compare/4.6.0...4.7.0
[4.6.0]: https://github.com/IgniteUI/igniteui-webcomponents/compare/4.5.0...4.6.0
[4.5.0]: https://github.com/IgniteUI/igniteui-webcomponents/compare/4.4.0...4.5.0
[4.4.0]: https://github.com/IgniteUI/igniteui-webcomponents/compare/4.3.1...4.4.0
Loading