@sebgroup/green-angular 6.0.5 โ 6.1.0-rc.20250730101610143
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.eslintrc.json +39 -0
- package/.storybook/designlibrary.json +452 -0
- package/.storybook/main.ts +15 -0
- package/.storybook/manager.ts +2 -0
- package/.storybook/preview.ts +17 -0
- package/.storybook/tsconfig.json +18 -0
- package/CHANGELOG.md +1398 -0
- package/jest.config.ts +31 -0
- package/ng-package.json +12 -0
- package/package.json +4 -270
- package/project.json +113 -0
- package/src/index.ts +17 -0
- package/src/lib/Get-started.mdx +78 -0
- package/src/lib/Testing.mdx +74 -0
- package/src/lib/accordion/accordion-list-item.component.html +41 -0
- package/src/lib/accordion/accordion-list-item.component.spec.ts +97 -0
- package/src/lib/accordion/accordion-list-item.component.ts +41 -0
- package/src/lib/accordion/accordion.component.html +3 -0
- package/src/lib/accordion/accordion.component.spec.ts +172 -0
- package/src/lib/accordion/accordion.component.ts +78 -0
- package/src/lib/accordion/accordion.module.ts +12 -0
- package/src/lib/accordion/accordion.stories.ts +108 -0
- package/src/lib/accordion/documentation.mdx +145 -0
- package/src/lib/accordion/index.ts +3 -0
- package/src/lib/accordion/ng-package.json +5 -0
- package/src/lib/badge/badge.component.ts +66 -0
- package/src/lib/badge/badge.module.ts +11 -0
- package/src/lib/badge/badge.stories.ts +59 -0
- package/src/lib/badge/documentation.mdx +79 -0
- package/src/lib/badge/index.ts +2 -0
- package/src/lib/badge/ng-package.json +5 -0
- package/src/lib/button/button.component.ts +25 -0
- package/src/lib/button/button.module.ts +11 -0
- package/src/lib/button/button.stories.ts +66 -0
- package/src/lib/button/documentation.mdx +31 -0
- package/src/lib/button/index.ts +2 -0
- package/src/lib/button/ng-package.json +5 -0
- package/src/lib/cell-table/cell-table-item.component.ts +54 -0
- package/src/lib/cell-table/cell-table.component.html +91 -0
- package/src/lib/cell-table/cell-table.component.scss +41 -0
- package/src/lib/cell-table/cell-table.component.ts +106 -0
- package/src/lib/cell-table/cell-table.module.ts +17 -0
- package/src/lib/cell-table/cell-table.stories.ts +92 -0
- package/src/lib/cell-table/cell-table.types.ts +51 -0
- package/src/lib/cell-table/cell-underline.directive.ts +68 -0
- package/src/lib/cell-table/documentation.mdx +128 -0
- package/src/lib/cell-table/index.ts +3 -0
- package/src/lib/cell-table/ng-package.json +5 -0
- package/src/lib/context-menu/context-menu.component.html +30 -0
- package/src/lib/context-menu/context-menu.component.spec.ts +43 -0
- package/src/lib/context-menu/context-menu.component.ts +84 -0
- package/src/lib/context-menu/context-menu.module.ts +13 -0
- package/src/lib/context-menu/context-menu.stories.ts +142 -0
- package/src/lib/context-menu/documentation.mdx +96 -0
- package/src/lib/context-menu/index.ts +2 -0
- package/src/lib/context-menu/ng-package.json +5 -0
- package/src/lib/datepicker/datepicker.component.html +22 -0
- package/src/lib/datepicker/datepicker.component.ts +182 -0
- package/src/lib/datepicker/datepicker.module.ts +13 -0
- package/src/lib/datepicker/datepicker.stories.ts +147 -0
- package/src/lib/datepicker/documentation.mdx +188 -0
- package/src/lib/datepicker/index.ts +2 -0
- package/src/lib/datepicker/ng-package.json +5 -0
- package/src/lib/dropdown/documentation.mdx +355 -0
- package/src/lib/dropdown/dropdown-button.directive.ts +8 -0
- package/src/lib/dropdown/dropdown-option.directive.ts +8 -0
- package/src/lib/dropdown/dropdown.component.html +61 -0
- package/src/lib/dropdown/dropdown.component.scss +6 -0
- package/src/lib/dropdown/dropdown.component.ts +288 -0
- package/src/lib/dropdown/dropdown.module.ts +23 -0
- package/src/lib/dropdown/dropdown.spec.ts +48 -0
- package/src/lib/dropdown/dropdown.stories.ts +419 -0
- package/src/lib/dropdown/index.ts +4 -0
- package/src/lib/dropdown/ng-package.json +5 -0
- package/src/lib/filter-chips/filter-chips.docs.mdx +73 -0
- package/src/lib/filter-chips/filter-chips.stories.ts +39 -0
- package/src/lib/green-angular.module.ts +39 -0
- package/src/lib/grouped-list/grouped-list.docs.mdx +63 -0
- package/src/lib/grouped-list/grouped-list.stories.ts +38 -0
- package/src/lib/in-page-wizard/documentation.mdx +112 -0
- package/src/lib/in-page-wizard/in-page-wizard-step-card.component.html +118 -0
- package/src/lib/in-page-wizard/in-page-wizard-step-card.component.ts +49 -0
- package/src/lib/in-page-wizard/in-page-wizard-step-card.spec.ts +471 -0
- package/src/lib/in-page-wizard/in-page-wizard-step-card.stories.ts +136 -0
- package/src/lib/in-page-wizard/in-page-wizard.module.ts +11 -0
- package/src/lib/in-page-wizard/index.ts +2 -0
- package/src/lib/in-page-wizard/ng-package.json +5 -0
- package/src/lib/modal/documentation.mdx +92 -0
- package/src/lib/modal/index.ts +4 -0
- package/src/lib/modal/modal-footer.directive.ts +8 -0
- package/src/lib/modal/modal-header.directive.ts +8 -0
- package/src/lib/modal/modal.component.html +90 -0
- package/src/lib/modal/modal.component.scss +34 -0
- package/src/lib/modal/modal.component.spec.ts +453 -0
- package/src/lib/modal/modal.component.ts +298 -0
- package/src/lib/modal/modal.module.ts +34 -0
- package/src/lib/modal/modal.stories.ts +114 -0
- package/src/lib/modal/ng-package.json +5 -0
- package/src/lib/pagination/documentation.mdx +64 -0
- package/src/lib/pagination/index.ts +2 -0
- package/src/lib/pagination/ng-package.json +5 -0
- package/src/lib/pagination/pagination.component.html +91 -0
- package/src/lib/pagination/pagination.component.ts +196 -0
- package/src/lib/pagination/pagination.module.ts +11 -0
- package/src/lib/pagination/pagination.spec.ts +147 -0
- package/src/lib/pagination/pagination.stories.ts +41 -0
- package/src/lib/progress-circle/documentation.mdx +56 -0
- package/src/lib/progress-circle/index.ts +2 -0
- package/src/lib/progress-circle/ng-package.json +5 -0
- package/src/lib/progress-circle/progress-circle.component.html +18 -0
- package/src/lib/progress-circle/progress-circle.component.ts +29 -0
- package/src/lib/progress-circle/progress-circle.module.ts +11 -0
- package/src/lib/progress-circle/progress-circle.stories.ts +56 -0
- package/src/lib/segmented-control/index.ts +2 -0
- package/src/lib/segmented-control/ng-package.json +5 -0
- package/src/lib/segmented-control/segmented-control.component.ts +26 -0
- package/src/lib/segmented-control/segmented-control.module.ts +12 -0
- package/src/lib/segmented-control/segmented-control.stories.ts +64 -0
- package/src/lib/shared/core-control/core-checkbox.directive.ts +32 -0
- package/src/lib/shared/core-control/core-checkbox.spec.ts +59 -0
- package/src/lib/shared/core-control/core-control.directive.ts +98 -0
- package/src/lib/shared/core-control/core-control.module.ts +13 -0
- package/src/lib/shared/core-control/core-control.spec.ts +157 -0
- package/src/lib/shared/core-control/index.ts +3 -0
- package/src/lib/shared/core-element/core-element.directive.ts +41 -0
- package/src/lib/shared/core-element/core-element.module.ts +11 -0
- package/src/lib/shared/core-element/core-element.spec.ts +31 -0
- package/src/lib/shared/core-element/index.ts +2 -0
- package/src/lib/shared/core-renderer/core-renderer.spec.ts +59 -0
- package/src/lib/shared/core-renderer/core-renderer.ts +182 -0
- package/src/lib/shared/core-renderer/index.ts +1 -0
- package/src/lib/shared/core-router-link/core-router-link.directive.ts +57 -0
- package/src/lib/shared/core-router-link/core-router-link.module.ts +9 -0
- package/src/lib/shared/core-router-link/core-router-link.spec.ts +87 -0
- package/src/lib/shared/core-router-link/index.ts +2 -0
- package/src/lib/shared/index.ts +6 -0
- package/src/lib/shared/ng-package.json +5 -0
- package/src/lib/shared/on-scroll.directive.spec.ts +50 -0
- package/src/lib/shared/on-scroll.directive.ts +47 -0
- package/src/lib/shared/shared.module.ts +11 -0
- package/src/lib/slider/documentation.mdx +87 -0
- package/src/lib/slider/index.ts +2 -0
- package/src/lib/slider/ng-package.json +5 -0
- package/src/lib/slider/slider.component.html +53 -0
- package/src/lib/slider/slider.component.ts +117 -0
- package/src/lib/slider/slider.module.ts +12 -0
- package/src/lib/slider/slider.stories.ts +137 -0
- package/src/lib/sortable-list/documentation.mdx +165 -0
- package/src/lib/sortable-list/index.ts +2 -0
- package/src/lib/sortable-list/ng-package.json +5 -0
- package/src/lib/sortable-list/sortable-list.component.html +89 -0
- package/src/lib/sortable-list/sortable-list.component.scss +121 -0
- package/src/lib/sortable-list/sortable-list.component.spec.ts +155 -0
- package/src/lib/sortable-list/sortable-list.component.ts +236 -0
- package/src/lib/sortable-list/sortable-list.module.ts +13 -0
- package/src/lib/sortable-list/sortable-list.stories.ts +261 -0
- package/src/test-setup.ts +5 -0
- package/src/v-angular/README.md +30 -0
- package/src/v-angular/account-number/account-number.module.ts +11 -0
- package/src/v-angular/account-number/account-number.pipe.spec.ts +59 -0
- package/src/v-angular/account-number/account-number.pipe.ts +65 -0
- package/src/v-angular/account-number/account-number.stories.ts +52 -0
- package/src/v-angular/account-number/index.ts +2 -0
- package/src/v-angular/account-number/ng-package.json +5 -0
- package/src/v-angular/alert/alert.component.html +77 -0
- package/src/v-angular/alert/alert.component.scss +50 -0
- package/src/v-angular/alert/alert.component.spec.ts +21 -0
- package/src/v-angular/alert/alert.component.ts +34 -0
- package/src/v-angular/alert/alert.models.ts +14 -0
- package/src/v-angular/alert/alert.module.ts +11 -0
- package/src/v-angular/alert/alert.stories.ts +81 -0
- package/src/v-angular/alert/index.ts +3 -0
- package/src/v-angular/alert/ng-package.json +5 -0
- package/src/v-angular/base-control-value-accessor/base-control-value-accessor.component.ts +337 -0
- package/src/v-angular/base-control-value-accessor/base-control-value-accessor.module.ts +10 -0
- package/src/v-angular/base-control-value-accessor/index.ts +2 -0
- package/src/v-angular/base-control-value-accessor/ng-package.json +5 -0
- package/src/v-angular/breadcrumbs/breadcrumbs.component.html +25 -0
- package/src/v-angular/breadcrumbs/breadcrumbs.component.scss +18 -0
- package/src/v-angular/breadcrumbs/breadcrumbs.component.spec.ts +36 -0
- package/src/v-angular/breadcrumbs/breadcrumbs.component.ts +24 -0
- package/src/v-angular/breadcrumbs/breadcrumbs.module.ts +13 -0
- package/src/v-angular/breadcrumbs/breadcrumbs.stories.ts +45 -0
- package/src/v-angular/breadcrumbs/index.ts +2 -0
- package/src/v-angular/breadcrumbs/ng-package.json +5 -0
- package/src/v-angular/button/button.component.html +37 -0
- package/src/v-angular/button/button.component.scss +44 -0
- package/src/v-angular/button/button.component.spec.ts +45 -0
- package/src/v-angular/button/button.component.ts +116 -0
- package/src/v-angular/button/button.module.ts +13 -0
- package/src/v-angular/button/button.stories.ts +144 -0
- package/src/v-angular/button/index.ts +2 -0
- package/src/v-angular/button/ng-package.json +5 -0
- package/src/v-angular/card/card.component.scss +53 -0
- package/src/v-angular/card/card.component.ts +8 -0
- package/src/v-angular/card/card.module.ts +11 -0
- package/src/v-angular/card/card.stories.ts +71 -0
- package/src/v-angular/card/index.ts +2 -0
- package/src/v-angular/card/ng-package.json +5 -0
- package/src/v-angular/character-countdown/character-countdown.directive.ts +49 -0
- package/src/v-angular/character-countdown/character-countdown.module.ts +11 -0
- package/src/v-angular/character-countdown/index.ts +2 -0
- package/src/v-angular/character-countdown/ng-package.json +5 -0
- package/src/v-angular/checkbox/checkbox.component.html +100 -0
- package/src/v-angular/checkbox/checkbox.component.scss +54 -0
- package/src/v-angular/checkbox/checkbox.component.spec.ts +88 -0
- package/src/v-angular/checkbox/checkbox.component.ts +89 -0
- package/src/v-angular/checkbox/checkbox.module.ts +14 -0
- package/src/v-angular/checkbox/checkbox.stories.ts +243 -0
- package/src/v-angular/checkbox/index.ts +2 -0
- package/src/v-angular/checkbox/ng-package.json +5 -0
- package/src/v-angular/core/core.globals.ts +30 -0
- package/src/v-angular/core/core.utils.ts +84 -0
- package/src/v-angular/core/index.ts +2 -0
- package/src/v-angular/core/ng-package.json +5 -0
- package/src/v-angular/datepicker/components/calendar/calendar.component.html +19 -0
- package/src/v-angular/datepicker/components/calendar/calendar.component.scss +88 -0
- package/src/v-angular/datepicker/components/calendar/calendar.component.spec.ts +162 -0
- package/src/v-angular/datepicker/components/calendar/calendar.component.ts +237 -0
- package/src/v-angular/datepicker/components/calendar-control/calendar-control.component.html +49 -0
- package/src/v-angular/datepicker/components/calendar-control/calendar-control.component.scss +66 -0
- package/src/v-angular/datepicker/components/calendar-control/calendar-control.component.spec.ts +32 -0
- package/src/v-angular/datepicker/components/calendar-control/calendar-control.component.ts +148 -0
- package/src/v-angular/datepicker/components/date-input/date-input.component.html +186 -0
- package/src/v-angular/datepicker/components/date-input/date-input.component.scss +229 -0
- package/src/v-angular/datepicker/components/date-input/date-input.component.spec.ts +182 -0
- package/src/v-angular/datepicker/components/date-input/date-input.component.ts +223 -0
- package/src/v-angular/datepicker/components/date-mixins.scss +18 -0
- package/src/v-angular/datepicker/components/datepicker/datepicker.component.html +56 -0
- package/src/v-angular/datepicker/components/datepicker/datepicker.component.scss +51 -0
- package/src/v-angular/datepicker/components/datepicker/datepicker.component.spec.ts +117 -0
- package/src/v-angular/datepicker/components/datepicker/datepicker.component.ts +164 -0
- package/src/v-angular/datepicker/date-control-value-accessor/date-control-value-accessor.component.ts +490 -0
- package/src/v-angular/datepicker/datepicker.globals.ts +30 -0
- package/src/v-angular/datepicker/datepicker.mocks.ts +64 -0
- package/src/v-angular/datepicker/datepicker.models.ts +88 -0
- package/src/v-angular/datepicker/datepicker.module.ts +39 -0
- package/src/v-angular/datepicker/datepicker.stories.ts +566 -0
- package/src/v-angular/datepicker/datepicker.utils.ts +233 -0
- package/src/v-angular/datepicker/directives/calendar-date.directive.spec.ts +101 -0
- package/src/v-angular/datepicker/directives/calendar-date.directive.ts +46 -0
- package/src/v-angular/datepicker/index.ts +16 -0
- package/src/v-angular/datepicker/models/dates.ts +314 -0
- package/src/v-angular/datepicker/ng-package.json +5 -0
- package/src/v-angular/datepicker/pipes/date-thook.pipe.spec.ts +31 -0
- package/src/v-angular/datepicker/pipes/date-thook.pipe.ts +31 -0
- package/src/v-angular/datepicker/pipes/is-disabled.pipe.spec.ts +218 -0
- package/src/v-angular/datepicker/pipes/is-disabled.pipe.ts +46 -0
- package/src/v-angular/datepicker/pipes/matches.pipe.spec.ts +31 -0
- package/src/v-angular/datepicker/pipes/matches.pipe.ts +12 -0
- package/src/v-angular/datepicker/test/datepicker-testing.module.ts +38 -0
- package/src/v-angular/datepicker/test/stubs.ts +90 -0
- package/src/v-angular/drag-drop/drag-drop.component.html +305 -0
- package/src/v-angular/drag-drop/drag-drop.component.scss +318 -0
- package/src/v-angular/drag-drop/drag-drop.component.spec.ts +50 -0
- package/src/v-angular/drag-drop/drag-drop.component.ts +643 -0
- package/src/v-angular/drag-drop/drag-drop.mock.ts +254 -0
- package/src/v-angular/drag-drop/drag-drop.models.ts +75 -0
- package/src/v-angular/drag-drop/drag-drop.module.ts +29 -0
- package/src/v-angular/drag-drop/drag-drop.pipes.ts +100 -0
- package/src/v-angular/drag-drop/drag-drop.stories.ts +111 -0
- package/src/v-angular/drag-drop/drag-drop.utils.ts +114 -0
- package/src/v-angular/drag-drop/i18n/en.json +22 -0
- package/src/v-angular/drag-drop/i18n/i18n.babel +418 -0
- package/src/v-angular/drag-drop/i18n/sv.json +22 -0
- package/src/v-angular/drag-drop/index.ts +4 -0
- package/src/v-angular/drag-drop/ng-package.json +5 -0
- package/src/v-angular/dropdown/dropdown-list/dropdown-list.component.html +126 -0
- package/src/v-angular/dropdown/dropdown-list/dropdown-list.component.scss +139 -0
- package/src/v-angular/dropdown/dropdown-list/dropdown-list.component.spec.ts +93 -0
- package/src/v-angular/dropdown/dropdown-list/dropdown-list.component.ts +419 -0
- package/src/v-angular/dropdown/dropdown-list/dropdown-list.stories.ts_ +105 -0
- package/src/v-angular/dropdown/dropdown-list/index.ts +1 -0
- package/src/v-angular/dropdown/dropdown.component.html +148 -0
- package/src/v-angular/dropdown/dropdown.component.scss +159 -0
- package/src/v-angular/dropdown/dropdown.component.spec.ts +156 -0
- package/src/v-angular/dropdown/dropdown.component.ts +309 -0
- package/src/v-angular/dropdown/dropdown.module.ts +23 -0
- package/src/v-angular/dropdown/dropdown.stories.ts +745 -0
- package/src/v-angular/dropdown/index.ts +5 -0
- package/src/v-angular/dropdown/ng-package.json +5 -0
- package/src/v-angular/dropdown/typeahead/README.md +108 -0
- package/src/v-angular/dropdown/typeahead/index.ts +5 -0
- package/src/v-angular/dropdown/typeahead/typeahead-dropdown-list/typeahead-dropdown-list.component.scss +6 -0
- package/src/v-angular/dropdown/typeahead/typeahead-dropdown-list/typeahead-dropdown-list.component.spec.ts +114 -0
- package/src/v-angular/dropdown/typeahead/typeahead-dropdown-list/typeahead-dropdown-list.component.ts +134 -0
- package/src/v-angular/dropdown/typeahead/typeahead-highlight/typeahead-highlight.component.html +6 -0
- package/src/v-angular/dropdown/typeahead/typeahead-highlight/typeahead-highlight.component.scss +5 -0
- package/src/v-angular/dropdown/typeahead/typeahead-highlight/typeahead-highlight.component.spec.ts +121 -0
- package/src/v-angular/dropdown/typeahead/typeahead-highlight/typeahead-highlight.component.ts +93 -0
- package/src/v-angular/dropdown/typeahead/typeahead-input/typeahead-input.component.html +41 -0
- package/src/v-angular/dropdown/typeahead/typeahead-input/typeahead-input.component.scss +35 -0
- package/src/v-angular/dropdown/typeahead/typeahead-input/typeahead-input.component.spec.ts +177 -0
- package/src/v-angular/dropdown/typeahead/typeahead-input/typeahead-input.component.ts +160 -0
- package/src/v-angular/dropdown/typeahead/typeahead-input/typeahead-input.stories.ts_ +175 -0
- package/src/v-angular/dropdown/typeahead/typeahead.directive.ts +235 -0
- package/src/v-angular/dropdown/typeahead/typeahead.module.ts +22 -0
- package/src/v-angular/external-link/external-link.directive.ts +27 -0
- package/src/v-angular/external-link/external-link.module.ts +11 -0
- package/src/v-angular/external-link/index.ts +2 -0
- package/src/v-angular/external-link/ng-package.json +5 -0
- package/src/v-angular/i18n/i18n.json +13 -0
- package/src/v-angular/i18n/i18n.module.ts +81 -0
- package/src/v-angular/i18n/i18n.test.module.ts +68 -0
- package/src/v-angular/i18n/index.ts +2 -0
- package/src/v-angular/i18n/ng-package.json +5 -0
- package/src/v-angular/index.ts +28 -0
- package/src/v-angular/info-circle/index.ts +2 -0
- package/src/v-angular/info-circle/info-circle.component.html +16 -0
- package/src/v-angular/info-circle/info-circle.component.scss +63 -0
- package/src/v-angular/info-circle/info-circle.component.spec.ts +30 -0
- package/src/v-angular/info-circle/info-circle.component.ts +26 -0
- package/src/v-angular/info-circle/info-circle.module.ts +14 -0
- package/src/v-angular/info-circle/info-circle.stories.ts +35 -0
- package/src/v-angular/info-circle/ng-package.json +5 -0
- package/src/v-angular/input/index.ts +2 -0
- package/src/v-angular/input/input.component.html +178 -0
- package/src/v-angular/input/input.component.scss +280 -0
- package/src/v-angular/input/input.component.spec.ts +170 -0
- package/src/v-angular/input/input.component.ts +228 -0
- package/src/v-angular/input/input.module.ts +24 -0
- package/src/v-angular/input/input.stories.ts +747 -0
- package/src/v-angular/input/ng-package.json +5 -0
- package/src/v-angular/input-mask/config.ts +10 -0
- package/src/v-angular/input-mask/constants.ts +6 -0
- package/src/v-angular/input-mask/index.ts +5 -0
- package/src/v-angular/input-mask/input-mask-format.pipe.spec.ts +78 -0
- package/src/v-angular/input-mask/input-mask-format.pipe.ts +20 -0
- package/src/v-angular/input-mask/input-mask.directive.spec.ts +313 -0
- package/src/v-angular/input-mask/input-mask.directive.ts +208 -0
- package/src/v-angular/input-mask/input-mask.globals.ts +30 -0
- package/src/v-angular/input-mask/input-mask.module.ts +26 -0
- package/src/v-angular/input-mask/input-mask.stories.ts +200 -0
- package/src/v-angular/input-mask/input-mask.types.ts +22 -0
- package/src/v-angular/input-mask/ng-package.json +5 -0
- package/src/v-angular/modal/dialog/dialog.component.html +73 -0
- package/src/v-angular/modal/dialog/dialog.component.scss +81 -0
- package/src/v-angular/modal/dialog/dialog.component.spec.ts +57 -0
- package/src/v-angular/modal/dialog/dialog.component.ts +244 -0
- package/src/v-angular/modal/dialog/dialog.stories.ts +100 -0
- package/src/v-angular/modal/fold-out/fold-out.component.html +45 -0
- package/src/v-angular/modal/fold-out/fold-out.component.scss +120 -0
- package/src/v-angular/modal/fold-out/fold-out.component.spec.ts +185 -0
- package/src/v-angular/modal/fold-out/fold-out.component.ts +200 -0
- package/src/v-angular/modal/fold-out/fold-out.directive.ts +8 -0
- package/src/v-angular/modal/fold-out/fold-out.examples.ts +31 -0
- package/src/v-angular/modal/fold-out/fold-out.stories.scss +7 -0
- package/src/v-angular/modal/fold-out/fold-out.stories.ts +119 -0
- package/src/v-angular/modal/fold-out/keyboard-key.enum.ts +8 -0
- package/src/v-angular/modal/index.ts +5 -0
- package/src/v-angular/modal/modal.globals.ts +30 -0
- package/src/v-angular/modal/modal.module.ts +35 -0
- package/src/v-angular/modal/modal.types.ts +6 -0
- package/src/v-angular/modal/ng-package.json +5 -0
- package/src/v-angular/modal/slide-out/slide-out.component.html +87 -0
- package/src/v-angular/modal/slide-out/slide-out.component.scss +88 -0
- package/src/v-angular/modal/slide-out/slide-out.component.spec.ts +73 -0
- package/src/v-angular/modal/slide-out/slide-out.component.ts +274 -0
- package/src/v-angular/modal/slide-out/slide-out.stories.ts +167 -0
- package/src/v-angular/pagination/index.ts +2 -0
- package/src/v-angular/pagination/ng-package.json +5 -0
- package/src/v-angular/pagination/pagination.component.html +145 -0
- package/src/v-angular/pagination/pagination.component.scss +138 -0
- package/src/v-angular/pagination/pagination.component.spec.ts +343 -0
- package/src/v-angular/pagination/pagination.component.ts +141 -0
- package/src/v-angular/pagination/pagination.module.ts +22 -0
- package/src/v-angular/pagination/pagination.stories.ts +70 -0
- package/src/v-angular/radio/index.ts +2 -0
- package/src/v-angular/radio/ng-package.json +5 -0
- package/src/v-angular/radio/radio.component.html +84 -0
- package/src/v-angular/radio/radio.component.scss +86 -0
- package/src/v-angular/radio/radio.component.spec.ts +55 -0
- package/src/v-angular/radio/radio.component.ts +149 -0
- package/src/v-angular/radio/radio.module.ts +14 -0
- package/src/v-angular/radio/radio.stories.ts +175 -0
- package/src/v-angular/slug/index.ts +2 -0
- package/src/v-angular/slug/ng-package.json +5 -0
- package/src/v-angular/slug/slug.module.ts +11 -0
- package/src/v-angular/slug/slug.pipe.spec.ts +13 -0
- package/src/v-angular/slug/slug.pipe.ts +21 -0
- package/src/v-angular/slug/slug.stories.ts +45 -0
- package/src/v-angular/table/index.ts +9 -0
- package/src/v-angular/table/jest.config.ts +11 -0
- package/src/v-angular/table/ng-package.json +5 -0
- package/src/v-angular/table/table.component.html +260 -0
- package/src/v-angular/table/table.component.scss +268 -0
- package/src/v-angular/table/table.component.spec.ts +97 -0
- package/src/v-angular/table/table.component.ts +520 -0
- package/src/v-angular/table/table.directive.spec.ts +69 -0
- package/src/v-angular/table/table.directive.ts +75 -0
- package/src/v-angular/table/table.examples.ts +215 -0
- package/src/v-angular/table/table.mock.ts +309 -0
- package/src/v-angular/table/table.models.ts +88 -0
- package/src/v-angular/table/table.module.ts +31 -0
- package/src/v-angular/table/table.stories.ts +294 -0
- package/src/v-angular/table/table.tools.ts +37 -0
- package/src/v-angular/table/tr-thook.pipe.spec.ts +30 -0
- package/src/v-angular/table/tr-thook.pipe.ts +21 -0
- package/src/v-angular/tabs/index.ts +8 -0
- package/src/v-angular/tabs/ng-package.json +5 -0
- package/src/v-angular/tabs/tab.directive.ts +49 -0
- package/src/v-angular/tabs/tabs.component.html +33 -0
- package/src/v-angular/tabs/tabs.component.scss +34 -0
- package/src/v-angular/tabs/tabs.component.spec.ts +48 -0
- package/src/v-angular/tabs/tabs.component.ts +284 -0
- package/src/v-angular/tabs/tabs.models.ts +30 -0
- package/src/v-angular/tabs/tabs.module.ts +14 -0
- package/src/v-angular/tabs/tabs.stories.ts +94 -0
- package/src/v-angular/textarea/index.ts +2 -0
- package/src/v-angular/textarea/ng-package.json +5 -0
- package/src/v-angular/textarea/textarea.component.html +131 -0
- package/src/v-angular/textarea/textarea.component.scss +123 -0
- package/src/v-angular/textarea/textarea.component.spec.ts +63 -0
- package/src/v-angular/textarea/textarea.component.ts +114 -0
- package/src/v-angular/textarea/textarea.module.ts +22 -0
- package/src/v-angular/textarea/textarea.stories.ts +150 -0
- package/src/v-angular/toast/index.ts +8 -0
- package/src/v-angular/toast/ng-package.json +5 -0
- package/src/v-angular/toast/toast-message.service.spec.ts +227 -0
- package/src/v-angular/toast/toast-message.service.ts +118 -0
- package/src/v-angular/toast/toast.component.html +89 -0
- package/src/v-angular/toast/toast.component.scss +111 -0
- package/src/v-angular/toast/toast.component.spec.ts +118 -0
- package/src/v-angular/toast/toast.component.ts +68 -0
- package/src/v-angular/toast/toast.models.ts +20 -0
- package/src/v-angular/toast/toast.module.ts +14 -0
- package/src/v-angular/toast/toast.stories.ts +106 -0
- package/src/v-angular/tooltip/index.ts +2 -0
- package/src/v-angular/tooltip/ng-package.json +5 -0
- package/src/v-angular/tooltip/tooltip.directive.spec.ts +7 -0
- package/src/v-angular/tooltip/tooltip.directive.ts +364 -0
- package/src/v-angular/tooltip/tooltip.module.ts +11 -0
- package/src/v-angular/tooltip/tooltip.stories.ts +99 -0
- package/src/v-angular/tooltip/tooltip.styles.ts +64 -0
- package/src/v-angular/v-angular.module.ts +63 -0
- package/tsconfig.json +19 -0
- package/tsconfig.lib.json +22 -0
- package/tsconfig.lib.prod.json +12 -0
- package/tsconfig.spec.json +11 -0
- package/v-angular/ng-package.json +5 -0
- package/esm2022/index.mjs +0 -18
- package/esm2022/lib/accordion/accordion-list-item.component.mjs +0 -50
- package/esm2022/lib/accordion/accordion.component.mjs +0 -72
- package/esm2022/lib/accordion/accordion.module.mjs +0 -19
- package/esm2022/lib/accordion/index.mjs +0 -4
- package/esm2022/lib/badge/badge.component.mjs +0 -80
- package/esm2022/lib/badge/badge.module.mjs +0 -18
- package/esm2022/lib/badge/index.mjs +0 -3
- package/esm2022/lib/button/button.component.mjs +0 -28
- package/esm2022/lib/button/button.module.mjs +0 -18
- package/esm2022/lib/button/index.mjs +0 -3
- package/esm2022/lib/cell-table/cell-table-item.component.mjs +0 -91
- package/esm2022/lib/cell-table/cell-table.component.mjs +0 -97
- package/esm2022/lib/cell-table/cell-table.module.mjs +0 -26
- package/esm2022/lib/cell-table/cell-table.types.mjs +0 -7
- package/esm2022/lib/cell-table/cell-underline.directive.mjs +0 -55
- package/esm2022/lib/cell-table/index.mjs +0 -4
- package/esm2022/lib/context-menu/context-menu.component.mjs +0 -74
- package/esm2022/lib/context-menu/context-menu.module.mjs +0 -20
- package/esm2022/lib/context-menu/index.mjs +0 -3
- package/esm2022/lib/datepicker/datepicker.component.mjs +0 -139
- package/esm2022/lib/datepicker/datepicker.module.mjs +0 -20
- package/esm2022/lib/datepicker/index.mjs +0 -3
- package/esm2022/lib/dropdown/dropdown-button.directive.mjs +0 -16
- package/esm2022/lib/dropdown/dropdown-option.directive.mjs +0 -16
- package/esm2022/lib/dropdown/dropdown.component.mjs +0 -243
- package/esm2022/lib/dropdown/dropdown.module.mjs +0 -34
- package/esm2022/lib/dropdown/index.mjs +0 -5
- package/esm2022/lib/green-angular.module.mjs +0 -72
- package/esm2022/lib/in-page-wizard/in-page-wizard-step-card.component.mjs +0 -61
- package/esm2022/lib/in-page-wizard/in-page-wizard.module.mjs +0 -18
- package/esm2022/lib/in-page-wizard/index.mjs +0 -3
- package/esm2022/lib/modal/index.mjs +0 -5
- package/esm2022/lib/modal/modal-footer.directive.mjs +0 -16
- package/esm2022/lib/modal/modal-header.directive.mjs +0 -16
- package/esm2022/lib/modal/modal.component.mjs +0 -314
- package/esm2022/lib/modal/modal.module.mjs +0 -41
- package/esm2022/lib/pagination/index.mjs +0 -3
- package/esm2022/lib/pagination/pagination.component.mjs +0 -175
- package/esm2022/lib/pagination/pagination.module.mjs +0 -18
- package/esm2022/lib/progress-circle/index.mjs +0 -3
- package/esm2022/lib/progress-circle/progress-circle.component.mjs +0 -41
- package/esm2022/lib/progress-circle/progress-circle.module.mjs +0 -18
- package/esm2022/lib/segmented-control/index.mjs +0 -3
- package/esm2022/lib/segmented-control/segmented-control.component.mjs +0 -35
- package/esm2022/lib/segmented-control/segmented-control.module.mjs +0 -19
- package/esm2022/lib/shared/core-control/core-checkbox.directive.mjs +0 -39
- package/esm2022/lib/shared/core-control/core-control.directive.mjs +0 -80
- package/esm2022/lib/shared/core-control/core-control.module.mjs +0 -20
- package/esm2022/lib/shared/core-control/index.mjs +0 -4
- package/esm2022/lib/shared/core-element/core-element.directive.mjs +0 -36
- package/esm2022/lib/shared/core-element/core-element.module.mjs +0 -18
- package/esm2022/lib/shared/core-element/index.mjs +0 -3
- package/esm2022/lib/shared/core-renderer/core-renderer.mjs +0 -135
- package/esm2022/lib/shared/core-renderer/index.mjs +0 -2
- package/esm2022/lib/shared/core-router-link/core-router-link.directive.mjs +0 -53
- package/esm2022/lib/shared/core-router-link/core-router-link.module.mjs +0 -16
- package/esm2022/lib/shared/core-router-link/index.mjs +0 -3
- package/esm2022/lib/shared/index.mjs +0 -7
- package/esm2022/lib/shared/on-scroll.directive.mjs +0 -47
- package/esm2022/lib/shared/shared.module.mjs +0 -18
- package/esm2022/lib/slider/index.mjs +0 -3
- package/esm2022/lib/slider/slider.component.mjs +0 -113
- package/esm2022/lib/slider/slider.module.mjs +0 -19
- package/esm2022/lib/sortable-list/index.mjs +0 -3
- package/esm2022/lib/sortable-list/sortable-list.component.mjs +0 -181
- package/esm2022/lib/sortable-list/sortable-list.module.mjs +0 -20
- package/esm2022/sebgroup-green-angular.mjs +0 -5
- package/esm2022/src/lib/accordion/accordion-list-item.component.mjs +0 -50
- package/esm2022/src/lib/accordion/accordion.component.mjs +0 -72
- package/esm2022/src/lib/accordion/accordion.module.mjs +0 -19
- package/esm2022/src/lib/accordion/index.mjs +0 -4
- package/esm2022/src/lib/accordion/sebgroup-green-angular-src-lib-accordion.mjs +0 -5
- package/esm2022/src/lib/badge/badge.component.mjs +0 -80
- package/esm2022/src/lib/badge/badge.module.mjs +0 -18
- package/esm2022/src/lib/badge/index.mjs +0 -3
- package/esm2022/src/lib/badge/sebgroup-green-angular-src-lib-badge.mjs +0 -5
- package/esm2022/src/lib/button/button.component.mjs +0 -28
- package/esm2022/src/lib/button/button.module.mjs +0 -18
- package/esm2022/src/lib/button/index.mjs +0 -3
- package/esm2022/src/lib/button/sebgroup-green-angular-src-lib-button.mjs +0 -5
- package/esm2022/src/lib/cell-table/cell-table-item.component.mjs +0 -91
- package/esm2022/src/lib/cell-table/cell-table.component.mjs +0 -97
- package/esm2022/src/lib/cell-table/cell-table.module.mjs +0 -26
- package/esm2022/src/lib/cell-table/cell-table.types.mjs +0 -7
- package/esm2022/src/lib/cell-table/cell-underline.directive.mjs +0 -55
- package/esm2022/src/lib/cell-table/index.mjs +0 -4
- package/esm2022/src/lib/cell-table/sebgroup-green-angular-src-lib-cell-table.mjs +0 -5
- package/esm2022/src/lib/context-menu/context-menu.component.mjs +0 -74
- package/esm2022/src/lib/context-menu/context-menu.module.mjs +0 -20
- package/esm2022/src/lib/context-menu/index.mjs +0 -3
- package/esm2022/src/lib/context-menu/sebgroup-green-angular-src-lib-context-menu.mjs +0 -5
- package/esm2022/src/lib/datepicker/datepicker.component.mjs +0 -139
- package/esm2022/src/lib/datepicker/datepicker.module.mjs +0 -20
- package/esm2022/src/lib/datepicker/index.mjs +0 -3
- package/esm2022/src/lib/datepicker/sebgroup-green-angular-src-lib-datepicker.mjs +0 -5
- package/esm2022/src/lib/dropdown/dropdown-button.directive.mjs +0 -16
- package/esm2022/src/lib/dropdown/dropdown-option.directive.mjs +0 -16
- package/esm2022/src/lib/dropdown/dropdown.component.mjs +0 -243
- package/esm2022/src/lib/dropdown/dropdown.module.mjs +0 -34
- package/esm2022/src/lib/dropdown/index.mjs +0 -5
- package/esm2022/src/lib/dropdown/sebgroup-green-angular-src-lib-dropdown.mjs +0 -5
- package/esm2022/src/lib/in-page-wizard/in-page-wizard-step-card.component.mjs +0 -61
- package/esm2022/src/lib/in-page-wizard/in-page-wizard.module.mjs +0 -18
- package/esm2022/src/lib/in-page-wizard/index.mjs +0 -3
- package/esm2022/src/lib/in-page-wizard/sebgroup-green-angular-src-lib-in-page-wizard.mjs +0 -5
- package/esm2022/src/lib/modal/index.mjs +0 -5
- package/esm2022/src/lib/modal/modal-footer.directive.mjs +0 -16
- package/esm2022/src/lib/modal/modal-header.directive.mjs +0 -16
- package/esm2022/src/lib/modal/modal.component.mjs +0 -314
- package/esm2022/src/lib/modal/modal.module.mjs +0 -41
- package/esm2022/src/lib/modal/sebgroup-green-angular-src-lib-modal.mjs +0 -5
- package/esm2022/src/lib/pagination/index.mjs +0 -3
- package/esm2022/src/lib/pagination/pagination.component.mjs +0 -175
- package/esm2022/src/lib/pagination/pagination.module.mjs +0 -18
- package/esm2022/src/lib/pagination/sebgroup-green-angular-src-lib-pagination.mjs +0 -5
- package/esm2022/src/lib/progress-circle/index.mjs +0 -3
- package/esm2022/src/lib/progress-circle/progress-circle.component.mjs +0 -41
- package/esm2022/src/lib/progress-circle/progress-circle.module.mjs +0 -18
- package/esm2022/src/lib/progress-circle/sebgroup-green-angular-src-lib-progress-circle.mjs +0 -5
- package/esm2022/src/lib/segmented-control/index.mjs +0 -3
- package/esm2022/src/lib/segmented-control/sebgroup-green-angular-src-lib-segmented-control.mjs +0 -5
- package/esm2022/src/lib/segmented-control/segmented-control.component.mjs +0 -35
- package/esm2022/src/lib/segmented-control/segmented-control.module.mjs +0 -19
- package/esm2022/src/lib/shared/core-control/core-checkbox.directive.mjs +0 -39
- package/esm2022/src/lib/shared/core-control/core-control.directive.mjs +0 -80
- package/esm2022/src/lib/shared/core-control/core-control.module.mjs +0 -20
- package/esm2022/src/lib/shared/core-control/index.mjs +0 -4
- package/esm2022/src/lib/shared/core-element/core-element.directive.mjs +0 -36
- package/esm2022/src/lib/shared/core-element/core-element.module.mjs +0 -18
- package/esm2022/src/lib/shared/core-element/index.mjs +0 -3
- package/esm2022/src/lib/shared/core-renderer/core-renderer.mjs +0 -135
- package/esm2022/src/lib/shared/core-renderer/index.mjs +0 -2
- package/esm2022/src/lib/shared/core-router-link/core-router-link.directive.mjs +0 -53
- package/esm2022/src/lib/shared/core-router-link/core-router-link.module.mjs +0 -16
- package/esm2022/src/lib/shared/core-router-link/index.mjs +0 -3
- package/esm2022/src/lib/shared/index.mjs +0 -7
- package/esm2022/src/lib/shared/on-scroll.directive.mjs +0 -47
- package/esm2022/src/lib/shared/sebgroup-green-angular-src-lib-shared.mjs +0 -5
- package/esm2022/src/lib/shared/shared.module.mjs +0 -18
- package/esm2022/src/lib/slider/index.mjs +0 -3
- package/esm2022/src/lib/slider/sebgroup-green-angular-src-lib-slider.mjs +0 -5
- package/esm2022/src/lib/slider/slider.component.mjs +0 -113
- package/esm2022/src/lib/slider/slider.module.mjs +0 -19
- package/esm2022/src/lib/sortable-list/index.mjs +0 -3
- package/esm2022/src/lib/sortable-list/sebgroup-green-angular-src-lib-sortable-list.mjs +0 -5
- package/esm2022/src/lib/sortable-list/sortable-list.component.mjs +0 -181
- package/esm2022/src/lib/sortable-list/sortable-list.module.mjs +0 -20
- package/esm2022/src/v-angular/account-number/account-number.module.mjs +0 -18
- package/esm2022/src/v-angular/account-number/account-number.pipe.mjs +0 -55
- package/esm2022/src/v-angular/account-number/index.mjs +0 -3
- package/esm2022/src/v-angular/account-number/sebgroup-green-angular-src-v-angular-account-number.mjs +0 -5
- package/esm2022/src/v-angular/alert/alert.component.mjs +0 -49
- package/esm2022/src/v-angular/alert/alert.models.mjs +0 -8
- package/esm2022/src/v-angular/alert/alert.module.mjs +0 -18
- package/esm2022/src/v-angular/alert/index.mjs +0 -4
- package/esm2022/src/v-angular/alert/sebgroup-green-angular-src-v-angular-alert.mjs +0 -5
- package/esm2022/src/v-angular/base-control-value-accessor/base-control-value-accessor.component.mjs +0 -300
- package/esm2022/src/v-angular/base-control-value-accessor/base-control-value-accessor.module.mjs +0 -17
- package/esm2022/src/v-angular/base-control-value-accessor/index.mjs +0 -3
- package/esm2022/src/v-angular/base-control-value-accessor/sebgroup-green-angular-src-v-angular-base-control-value-accessor.mjs +0 -5
- package/esm2022/src/v-angular/breadcrumbs/breadcrumbs.component.mjs +0 -25
- package/esm2022/src/v-angular/breadcrumbs/breadcrumbs.module.mjs +0 -20
- package/esm2022/src/v-angular/breadcrumbs/index.mjs +0 -3
- package/esm2022/src/v-angular/breadcrumbs/sebgroup-green-angular-src-v-angular-breadcrumbs.mjs +0 -5
- package/esm2022/src/v-angular/button/button.component.mjs +0 -108
- package/esm2022/src/v-angular/button/button.module.mjs +0 -20
- package/esm2022/src/v-angular/button/index.mjs +0 -3
- package/esm2022/src/v-angular/button/sebgroup-green-angular-src-v-angular-button.mjs +0 -5
- package/esm2022/src/v-angular/card/card.component.mjs +0 -11
- package/esm2022/src/v-angular/card/card.module.mjs +0 -18
- package/esm2022/src/v-angular/card/index.mjs +0 -3
- package/esm2022/src/v-angular/card/sebgroup-green-angular-src-v-angular-card.mjs +0 -5
- package/esm2022/src/v-angular/character-countdown/character-countdown.directive.mjs +0 -51
- package/esm2022/src/v-angular/character-countdown/character-countdown.module.mjs +0 -18
- package/esm2022/src/v-angular/character-countdown/index.mjs +0 -3
- package/esm2022/src/v-angular/character-countdown/sebgroup-green-angular-src-v-angular-character-countdown.mjs +0 -5
- package/esm2022/src/v-angular/checkbox/checkbox.component.mjs +0 -94
- package/esm2022/src/v-angular/checkbox/checkbox.module.mjs +0 -21
- package/esm2022/src/v-angular/checkbox/index.mjs +0 -3
- package/esm2022/src/v-angular/checkbox/sebgroup-green-angular-src-v-angular-checkbox.mjs +0 -5
- package/esm2022/src/v-angular/core/core.globals.mjs +0 -20
- package/esm2022/src/v-angular/core/core.utils.mjs +0 -62
- package/esm2022/src/v-angular/core/index.mjs +0 -3
- package/esm2022/src/v-angular/core/sebgroup-green-angular-src-v-angular-core.mjs +0 -5
- package/esm2022/src/v-angular/datepicker/components/calendar/calendar.component.mjs +0 -200
- package/esm2022/src/v-angular/datepicker/components/calendar-control/calendar-control.component.mjs +0 -115
- package/esm2022/src/v-angular/datepicker/components/date-input/date-input.component.mjs +0 -220
- package/esm2022/src/v-angular/datepicker/components/datepicker/datepicker.component.mjs +0 -135
- package/esm2022/src/v-angular/datepicker/date-control-value-accessor/date-control-value-accessor.component.mjs +0 -411
- package/esm2022/src/v-angular/datepicker/datepicker.globals.mjs +0 -20
- package/esm2022/src/v-angular/datepicker/datepicker.models.mjs +0 -56
- package/esm2022/src/v-angular/datepicker/datepicker.module.mjs +0 -63
- package/esm2022/src/v-angular/datepicker/datepicker.utils.mjs +0 -196
- package/esm2022/src/v-angular/datepicker/directives/calendar-date.directive.mjs +0 -47
- package/esm2022/src/v-angular/datepicker/index.mjs +0 -17
- package/esm2022/src/v-angular/datepicker/models/dates.mjs +0 -291
- package/esm2022/src/v-angular/datepicker/pipes/date-thook.pipe.mjs +0 -30
- package/esm2022/src/v-angular/datepicker/pipes/is-disabled.pipe.mjs +0 -37
- package/esm2022/src/v-angular/datepicker/pipes/matches.pipe.mjs +0 -17
- package/esm2022/src/v-angular/datepicker/sebgroup-green-angular-src-v-angular-datepicker.mjs +0 -5
- package/esm2022/src/v-angular/drag-drop/drag-drop.component.mjs +0 -497
- package/esm2022/src/v-angular/drag-drop/drag-drop.models.mjs +0 -2
- package/esm2022/src/v-angular/drag-drop/drag-drop.module.mjs +0 -49
- package/esm2022/src/v-angular/drag-drop/drag-drop.pipes.mjs +0 -70
- package/esm2022/src/v-angular/drag-drop/drag-drop.utils.mjs +0 -76
- package/esm2022/src/v-angular/drag-drop/index.mjs +0 -5
- package/esm2022/src/v-angular/drag-drop/sebgroup-green-angular-src-v-angular-drag-drop.mjs +0 -5
- package/esm2022/src/v-angular/dropdown/dropdown-list/dropdown-list.component.mjs +0 -312
- package/esm2022/src/v-angular/dropdown/dropdown-list/index.mjs +0 -2
- package/esm2022/src/v-angular/dropdown/dropdown.component.mjs +0 -283
- package/esm2022/src/v-angular/dropdown/dropdown.module.mjs +0 -38
- package/esm2022/src/v-angular/dropdown/index.mjs +0 -6
- package/esm2022/src/v-angular/dropdown/sebgroup-green-angular-src-v-angular-dropdown.mjs +0 -5
- package/esm2022/src/v-angular/dropdown/typeahead/index.mjs +0 -6
- package/esm2022/src/v-angular/dropdown/typeahead/typeahead-dropdown-list/typeahead-dropdown-list.component.mjs +0 -110
- package/esm2022/src/v-angular/dropdown/typeahead/typeahead-highlight/typeahead-highlight.component.mjs +0 -85
- package/esm2022/src/v-angular/dropdown/typeahead/typeahead-input/typeahead-input.component.mjs +0 -138
- package/esm2022/src/v-angular/dropdown/typeahead/typeahead.directive.mjs +0 -186
- package/esm2022/src/v-angular/dropdown/typeahead/typeahead.module.mjs +0 -33
- package/esm2022/src/v-angular/external-link/external-link.directive.mjs +0 -37
- package/esm2022/src/v-angular/external-link/external-link.module.mjs +0 -18
- package/esm2022/src/v-angular/external-link/index.mjs +0 -3
- package/esm2022/src/v-angular/external-link/sebgroup-green-angular-src-v-angular-external-link.mjs +0 -5
- package/esm2022/src/v-angular/i18n/i18n.json +0 -12
- package/esm2022/src/v-angular/i18n/i18n.module.mjs +0 -89
- package/esm2022/src/v-angular/i18n/i18n.test.module.mjs +0 -89
- package/esm2022/src/v-angular/i18n/index.mjs +0 -3
- package/esm2022/src/v-angular/i18n/sebgroup-green-angular-src-v-angular-i18n.mjs +0 -5
- package/esm2022/src/v-angular/info-circle/index.mjs +0 -3
- package/esm2022/src/v-angular/info-circle/info-circle.component.mjs +0 -28
- package/esm2022/src/v-angular/info-circle/info-circle.module.mjs +0 -21
- package/esm2022/src/v-angular/info-circle/sebgroup-green-angular-src-v-angular-info-circle.mjs +0 -5
- package/esm2022/src/v-angular/input/index.mjs +0 -3
- package/esm2022/src/v-angular/input/input.component.mjs +0 -248
- package/esm2022/src/v-angular/input/input.module.mjs +0 -41
- package/esm2022/src/v-angular/input/sebgroup-green-angular-src-v-angular-input.mjs +0 -5
- package/esm2022/src/v-angular/input-mask/config.mjs +0 -9
- package/esm2022/src/v-angular/input-mask/constants.mjs +0 -2
- package/esm2022/src/v-angular/input-mask/index.mjs +0 -6
- package/esm2022/src/v-angular/input-mask/input-mask-format.pipe.mjs +0 -21
- package/esm2022/src/v-angular/input-mask/input-mask.directive.mjs +0 -165
- package/esm2022/src/v-angular/input-mask/input-mask.module.mjs +0 -35
- package/esm2022/src/v-angular/input-mask/input-mask.types.mjs +0 -2
- package/esm2022/src/v-angular/input-mask/sebgroup-green-angular-src-v-angular-input-mask.mjs +0 -5
- package/esm2022/src/v-angular/modal/dialog/dialog.component.mjs +0 -236
- package/esm2022/src/v-angular/modal/fold-out/fold-out.component.mjs +0 -163
- package/esm2022/src/v-angular/modal/fold-out/fold-out.directive.mjs +0 -19
- package/esm2022/src/v-angular/modal/fold-out/keyboard-key.enum.mjs +0 -10
- package/esm2022/src/v-angular/modal/index.mjs +0 -6
- package/esm2022/src/v-angular/modal/modal.globals.mjs +0 -20
- package/esm2022/src/v-angular/modal/modal.module.mjs +0 -53
- package/esm2022/src/v-angular/modal/modal.types.mjs +0 -2
- package/esm2022/src/v-angular/modal/sebgroup-green-angular-src-v-angular-modal.mjs +0 -5
- package/esm2022/src/v-angular/modal/slide-out/slide-out.component.mjs +0 -253
- package/esm2022/src/v-angular/pagination/index.mjs +0 -3
- package/esm2022/src/v-angular/pagination/pagination.component.mjs +0 -144
- package/esm2022/src/v-angular/pagination/pagination.module.mjs +0 -37
- package/esm2022/src/v-angular/pagination/sebgroup-green-angular-src-v-angular-pagination.mjs +0 -5
- package/esm2022/src/v-angular/radio/index.mjs +0 -3
- package/esm2022/src/v-angular/radio/radio.component.mjs +0 -143
- package/esm2022/src/v-angular/radio/radio.module.mjs +0 -21
- package/esm2022/src/v-angular/radio/sebgroup-green-angular-src-v-angular-radio.mjs +0 -5
- package/esm2022/src/v-angular/slug/index.mjs +0 -3
- package/esm2022/src/v-angular/slug/sebgroup-green-angular-src-v-angular-slug.mjs +0 -5
- package/esm2022/src/v-angular/slug/slug.module.mjs +0 -18
- package/esm2022/src/v-angular/slug/slug.pipe.mjs +0 -27
- package/esm2022/src/v-angular/table/index.mjs +0 -9
- package/esm2022/src/v-angular/table/sebgroup-green-angular-src-v-angular-table.mjs +0 -5
- package/esm2022/src/v-angular/table/table.component.mjs +0 -407
- package/esm2022/src/v-angular/table/table.directive.mjs +0 -110
- package/esm2022/src/v-angular/table/table.models.mjs +0 -2
- package/esm2022/src/v-angular/table/table.module.mjs +0 -40
- package/esm2022/src/v-angular/table/table.tools.mjs +0 -29
- package/esm2022/src/v-angular/table/tr-thook.pipe.mjs +0 -22
- package/esm2022/src/v-angular/tabs/index.mjs +0 -8
- package/esm2022/src/v-angular/tabs/sebgroup-green-angular-src-v-angular-tabs.mjs +0 -5
- package/esm2022/src/v-angular/tabs/tab.directive.mjs +0 -81
- package/esm2022/src/v-angular/tabs/tabs.component.mjs +0 -262
- package/esm2022/src/v-angular/tabs/tabs.models.mjs +0 -2
- package/esm2022/src/v-angular/tabs/tabs.module.mjs +0 -21
- package/esm2022/src/v-angular/textarea/index.mjs +0 -3
- package/esm2022/src/v-angular/textarea/sebgroup-green-angular-src-v-angular-textarea.mjs +0 -5
- package/esm2022/src/v-angular/textarea/textarea.component.mjs +0 -129
- package/esm2022/src/v-angular/textarea/textarea.module.mjs +0 -34
- package/esm2022/src/v-angular/toast/index.mjs +0 -8
- package/esm2022/src/v-angular/toast/sebgroup-green-angular-src-v-angular-toast.mjs +0 -5
- package/esm2022/src/v-angular/toast/toast-message.service.mjs +0 -82
- package/esm2022/src/v-angular/toast/toast.component.mjs +0 -66
- package/esm2022/src/v-angular/toast/toast.models.mjs +0 -8
- package/esm2022/src/v-angular/toast/toast.module.mjs +0 -21
- package/esm2022/src/v-angular/tooltip/index.mjs +0 -3
- package/esm2022/src/v-angular/tooltip/sebgroup-green-angular-src-v-angular-tooltip.mjs +0 -5
- package/esm2022/src/v-angular/tooltip/tooltip.directive.mjs +0 -293
- package/esm2022/src/v-angular/tooltip/tooltip.module.mjs +0 -18
- package/esm2022/src/v-angular/tooltip/tooltip.styles.mjs +0 -60
- package/esm2022/v-angular/account-number/account-number.module.mjs +0 -18
- package/esm2022/v-angular/account-number/account-number.pipe.mjs +0 -55
- package/esm2022/v-angular/account-number/index.mjs +0 -3
- package/esm2022/v-angular/alert/alert.component.mjs +0 -49
- package/esm2022/v-angular/alert/alert.models.mjs +0 -8
- package/esm2022/v-angular/alert/alert.module.mjs +0 -18
- package/esm2022/v-angular/alert/index.mjs +0 -4
- package/esm2022/v-angular/base-control-value-accessor/base-control-value-accessor.component.mjs +0 -300
- package/esm2022/v-angular/base-control-value-accessor/base-control-value-accessor.module.mjs +0 -17
- package/esm2022/v-angular/base-control-value-accessor/index.mjs +0 -3
- package/esm2022/v-angular/breadcrumbs/breadcrumbs.component.mjs +0 -25
- package/esm2022/v-angular/breadcrumbs/breadcrumbs.module.mjs +0 -20
- package/esm2022/v-angular/breadcrumbs/index.mjs +0 -3
- package/esm2022/v-angular/button/button.component.mjs +0 -108
- package/esm2022/v-angular/button/button.module.mjs +0 -20
- package/esm2022/v-angular/button/index.mjs +0 -3
- package/esm2022/v-angular/card/card.component.mjs +0 -11
- package/esm2022/v-angular/card/card.module.mjs +0 -18
- package/esm2022/v-angular/card/index.mjs +0 -3
- package/esm2022/v-angular/character-countdown/character-countdown.directive.mjs +0 -51
- package/esm2022/v-angular/character-countdown/character-countdown.module.mjs +0 -18
- package/esm2022/v-angular/character-countdown/index.mjs +0 -3
- package/esm2022/v-angular/checkbox/checkbox.component.mjs +0 -94
- package/esm2022/v-angular/checkbox/checkbox.module.mjs +0 -21
- package/esm2022/v-angular/checkbox/index.mjs +0 -3
- package/esm2022/v-angular/core/core.globals.mjs +0 -20
- package/esm2022/v-angular/core/core.utils.mjs +0 -62
- package/esm2022/v-angular/core/index.mjs +0 -3
- package/esm2022/v-angular/datepicker/components/calendar/calendar.component.mjs +0 -200
- package/esm2022/v-angular/datepicker/components/calendar-control/calendar-control.component.mjs +0 -115
- package/esm2022/v-angular/datepicker/components/date-input/date-input.component.mjs +0 -220
- package/esm2022/v-angular/datepicker/components/datepicker/datepicker.component.mjs +0 -135
- package/esm2022/v-angular/datepicker/date-control-value-accessor/date-control-value-accessor.component.mjs +0 -411
- package/esm2022/v-angular/datepicker/datepicker.globals.mjs +0 -20
- package/esm2022/v-angular/datepicker/datepicker.models.mjs +0 -56
- package/esm2022/v-angular/datepicker/datepicker.module.mjs +0 -63
- package/esm2022/v-angular/datepicker/datepicker.utils.mjs +0 -196
- package/esm2022/v-angular/datepicker/directives/calendar-date.directive.mjs +0 -47
- package/esm2022/v-angular/datepicker/index.mjs +0 -17
- package/esm2022/v-angular/datepicker/models/dates.mjs +0 -291
- package/esm2022/v-angular/datepicker/pipes/date-thook.pipe.mjs +0 -30
- package/esm2022/v-angular/datepicker/pipes/is-disabled.pipe.mjs +0 -37
- package/esm2022/v-angular/datepicker/pipes/matches.pipe.mjs +0 -17
- package/esm2022/v-angular/drag-drop/drag-drop.component.mjs +0 -497
- package/esm2022/v-angular/drag-drop/drag-drop.models.mjs +0 -2
- package/esm2022/v-angular/drag-drop/drag-drop.module.mjs +0 -49
- package/esm2022/v-angular/drag-drop/drag-drop.pipes.mjs +0 -70
- package/esm2022/v-angular/drag-drop/drag-drop.utils.mjs +0 -76
- package/esm2022/v-angular/drag-drop/index.mjs +0 -5
- package/esm2022/v-angular/dropdown/dropdown-list/dropdown-list.component.mjs +0 -312
- package/esm2022/v-angular/dropdown/dropdown-list/index.mjs +0 -2
- package/esm2022/v-angular/dropdown/dropdown.component.mjs +0 -283
- package/esm2022/v-angular/dropdown/dropdown.module.mjs +0 -38
- package/esm2022/v-angular/dropdown/index.mjs +0 -6
- package/esm2022/v-angular/dropdown/typeahead/index.mjs +0 -6
- package/esm2022/v-angular/dropdown/typeahead/typeahead-dropdown-list/typeahead-dropdown-list.component.mjs +0 -110
- package/esm2022/v-angular/dropdown/typeahead/typeahead-highlight/typeahead-highlight.component.mjs +0 -85
- package/esm2022/v-angular/dropdown/typeahead/typeahead-input/typeahead-input.component.mjs +0 -138
- package/esm2022/v-angular/dropdown/typeahead/typeahead.directive.mjs +0 -186
- package/esm2022/v-angular/dropdown/typeahead/typeahead.module.mjs +0 -33
- package/esm2022/v-angular/external-link/external-link.directive.mjs +0 -37
- package/esm2022/v-angular/external-link/external-link.module.mjs +0 -18
- package/esm2022/v-angular/external-link/index.mjs +0 -3
- package/esm2022/v-angular/i18n/i18n.json +0 -12
- package/esm2022/v-angular/i18n/i18n.module.mjs +0 -89
- package/esm2022/v-angular/i18n/i18n.test.module.mjs +0 -89
- package/esm2022/v-angular/i18n/index.mjs +0 -3
- package/esm2022/v-angular/index.mjs +0 -29
- package/esm2022/v-angular/info-circle/index.mjs +0 -3
- package/esm2022/v-angular/info-circle/info-circle.component.mjs +0 -28
- package/esm2022/v-angular/info-circle/info-circle.module.mjs +0 -21
- package/esm2022/v-angular/input/index.mjs +0 -3
- package/esm2022/v-angular/input/input.component.mjs +0 -248
- package/esm2022/v-angular/input/input.module.mjs +0 -41
- package/esm2022/v-angular/input-mask/config.mjs +0 -9
- package/esm2022/v-angular/input-mask/constants.mjs +0 -2
- package/esm2022/v-angular/input-mask/index.mjs +0 -6
- package/esm2022/v-angular/input-mask/input-mask-format.pipe.mjs +0 -21
- package/esm2022/v-angular/input-mask/input-mask.directive.mjs +0 -165
- package/esm2022/v-angular/input-mask/input-mask.module.mjs +0 -35
- package/esm2022/v-angular/input-mask/input-mask.types.mjs +0 -2
- package/esm2022/v-angular/modal/dialog/dialog.component.mjs +0 -236
- package/esm2022/v-angular/modal/fold-out/fold-out.component.mjs +0 -163
- package/esm2022/v-angular/modal/fold-out/fold-out.directive.mjs +0 -19
- package/esm2022/v-angular/modal/fold-out/keyboard-key.enum.mjs +0 -10
- package/esm2022/v-angular/modal/index.mjs +0 -6
- package/esm2022/v-angular/modal/modal.globals.mjs +0 -20
- package/esm2022/v-angular/modal/modal.module.mjs +0 -53
- package/esm2022/v-angular/modal/modal.types.mjs +0 -2
- package/esm2022/v-angular/modal/slide-out/slide-out.component.mjs +0 -253
- package/esm2022/v-angular/pagination/index.mjs +0 -3
- package/esm2022/v-angular/pagination/pagination.component.mjs +0 -144
- package/esm2022/v-angular/pagination/pagination.module.mjs +0 -37
- package/esm2022/v-angular/radio/index.mjs +0 -3
- package/esm2022/v-angular/radio/radio.component.mjs +0 -143
- package/esm2022/v-angular/radio/radio.module.mjs +0 -21
- package/esm2022/v-angular/sebgroup-green-angular-v-angular.mjs +0 -5
- package/esm2022/v-angular/slug/index.mjs +0 -3
- package/esm2022/v-angular/slug/slug.module.mjs +0 -18
- package/esm2022/v-angular/slug/slug.pipe.mjs +0 -27
- package/esm2022/v-angular/table/index.mjs +0 -9
- package/esm2022/v-angular/table/table.component.mjs +0 -407
- package/esm2022/v-angular/table/table.directive.mjs +0 -110
- package/esm2022/v-angular/table/table.models.mjs +0 -2
- package/esm2022/v-angular/table/table.module.mjs +0 -40
- package/esm2022/v-angular/table/table.tools.mjs +0 -29
- package/esm2022/v-angular/table/tr-thook.pipe.mjs +0 -22
- package/esm2022/v-angular/tabs/index.mjs +0 -8
- package/esm2022/v-angular/tabs/tab.directive.mjs +0 -81
- package/esm2022/v-angular/tabs/tabs.component.mjs +0 -262
- package/esm2022/v-angular/tabs/tabs.models.mjs +0 -2
- package/esm2022/v-angular/tabs/tabs.module.mjs +0 -21
- package/esm2022/v-angular/textarea/index.mjs +0 -3
- package/esm2022/v-angular/textarea/textarea.component.mjs +0 -129
- package/esm2022/v-angular/textarea/textarea.module.mjs +0 -34
- package/esm2022/v-angular/toast/index.mjs +0 -8
- package/esm2022/v-angular/toast/toast-message.service.mjs +0 -82
- package/esm2022/v-angular/toast/toast.component.mjs +0 -66
- package/esm2022/v-angular/toast/toast.models.mjs +0 -8
- package/esm2022/v-angular/toast/toast.module.mjs +0 -21
- package/esm2022/v-angular/tooltip/index.mjs +0 -3
- package/esm2022/v-angular/tooltip/tooltip.directive.mjs +0 -293
- package/esm2022/v-angular/tooltip/tooltip.module.mjs +0 -18
- package/esm2022/v-angular/tooltip/tooltip.styles.mjs +0 -60
- package/esm2022/v-angular/v-angular.module.mjs +0 -120
- package/fesm2022/sebgroup-green-angular-src-lib-accordion.mjs +0 -141
- package/fesm2022/sebgroup-green-angular-src-lib-accordion.mjs.map +0 -1
- package/fesm2022/sebgroup-green-angular-src-lib-badge.mjs +0 -102
- package/fesm2022/sebgroup-green-angular-src-lib-badge.mjs.map +0 -1
- package/fesm2022/sebgroup-green-angular-src-lib-button.mjs +0 -50
- package/fesm2022/sebgroup-green-angular-src-lib-button.mjs.map +0 -1
- package/fesm2022/sebgroup-green-angular-src-lib-cell-table.mjs +0 -270
- package/fesm2022/sebgroup-green-angular-src-lib-cell-table.mjs.map +0 -1
- package/fesm2022/sebgroup-green-angular-src-lib-context-menu.mjs +0 -98
- package/fesm2022/sebgroup-green-angular-src-lib-context-menu.mjs.map +0 -1
- package/fesm2022/sebgroup-green-angular-src-lib-datepicker.mjs +0 -163
- package/fesm2022/sebgroup-green-angular-src-lib-datepicker.mjs.map +0 -1
- package/fesm2022/sebgroup-green-angular-src-lib-dropdown.mjs +0 -305
- package/fesm2022/sebgroup-green-angular-src-lib-dropdown.mjs.map +0 -1
- package/fesm2022/sebgroup-green-angular-src-lib-in-page-wizard.mjs +0 -83
- package/fesm2022/sebgroup-green-angular-src-lib-in-page-wizard.mjs.map +0 -1
- package/fesm2022/sebgroup-green-angular-src-lib-modal.mjs +0 -382
- package/fesm2022/sebgroup-green-angular-src-lib-modal.mjs.map +0 -1
- package/fesm2022/sebgroup-green-angular-src-lib-pagination.mjs +0 -197
- package/fesm2022/sebgroup-green-angular-src-lib-pagination.mjs.map +0 -1
- package/fesm2022/sebgroup-green-angular-src-lib-progress-circle.mjs +0 -63
- package/fesm2022/sebgroup-green-angular-src-lib-progress-circle.mjs.map +0 -1
- package/fesm2022/sebgroup-green-angular-src-lib-segmented-control.mjs +0 -58
- package/fesm2022/sebgroup-green-angular-src-lib-segmented-control.mjs.map +0 -1
- package/fesm2022/sebgroup-green-angular-src-lib-shared.mjs +0 -437
- package/fesm2022/sebgroup-green-angular-src-lib-shared.mjs.map +0 -1
- package/fesm2022/sebgroup-green-angular-src-lib-slider.mjs +0 -135
- package/fesm2022/sebgroup-green-angular-src-lib-slider.mjs.map +0 -1
- package/fesm2022/sebgroup-green-angular-src-lib-sortable-list.mjs +0 -204
- package/fesm2022/sebgroup-green-angular-src-lib-sortable-list.mjs.map +0 -1
- package/fesm2022/sebgroup-green-angular-src-v-angular-account-number.mjs +0 -77
- package/fesm2022/sebgroup-green-angular-src-v-angular-account-number.mjs.map +0 -1
- package/fesm2022/sebgroup-green-angular-src-v-angular-alert.mjs +0 -78
- package/fesm2022/sebgroup-green-angular-src-v-angular-alert.mjs.map +0 -1
- package/fesm2022/sebgroup-green-angular-src-v-angular-base-control-value-accessor.mjs +0 -321
- package/fesm2022/sebgroup-green-angular-src-v-angular-base-control-value-accessor.mjs.map +0 -1
- package/fesm2022/sebgroup-green-angular-src-v-angular-breadcrumbs.mjs +0 -49
- package/fesm2022/sebgroup-green-angular-src-v-angular-breadcrumbs.mjs.map +0 -1
- package/fesm2022/sebgroup-green-angular-src-v-angular-button.mjs +0 -131
- package/fesm2022/sebgroup-green-angular-src-v-angular-button.mjs.map +0 -1
- package/fesm2022/sebgroup-green-angular-src-v-angular-card.mjs +0 -33
- package/fesm2022/sebgroup-green-angular-src-v-angular-card.mjs.map +0 -1
- package/fesm2022/sebgroup-green-angular-src-v-angular-character-countdown.mjs +0 -73
- package/fesm2022/sebgroup-green-angular-src-v-angular-character-countdown.mjs.map +0 -1
- package/fesm2022/sebgroup-green-angular-src-v-angular-checkbox.mjs +0 -118
- package/fesm2022/sebgroup-green-angular-src-v-angular-checkbox.mjs.map +0 -1
- package/fesm2022/sebgroup-green-angular-src-v-angular-core.mjs +0 -88
- package/fesm2022/sebgroup-green-angular-src-v-angular-core.mjs.map +0 -1
- package/fesm2022/sebgroup-green-angular-src-v-angular-datepicker.mjs +0 -1780
- package/fesm2022/sebgroup-green-angular-src-v-angular-datepicker.mjs.map +0 -1
- package/fesm2022/sebgroup-green-angular-src-v-angular-drag-drop.mjs +0 -687
- package/fesm2022/sebgroup-green-angular-src-v-angular-drag-drop.mjs.map +0 -1
- package/fesm2022/sebgroup-green-angular-src-v-angular-dropdown.mjs +0 -1142
- package/fesm2022/sebgroup-green-angular-src-v-angular-dropdown.mjs.map +0 -1
- package/fesm2022/sebgroup-green-angular-src-v-angular-external-link.mjs +0 -58
- package/fesm2022/sebgroup-green-angular-src-v-angular-external-link.mjs.map +0 -1
- package/fesm2022/sebgroup-green-angular-src-v-angular-i18n.mjs +0 -198
- package/fesm2022/sebgroup-green-angular-src-v-angular-i18n.mjs.map +0 -1
- package/fesm2022/sebgroup-green-angular-src-v-angular-info-circle.mjs +0 -53
- package/fesm2022/sebgroup-green-angular-src-v-angular-info-circle.mjs.map +0 -1
- package/fesm2022/sebgroup-green-angular-src-v-angular-input-mask.mjs +0 -227
- package/fesm2022/sebgroup-green-angular-src-v-angular-input-mask.mjs.map +0 -1
- package/fesm2022/sebgroup-green-angular-src-v-angular-input.mjs +0 -292
- package/fesm2022/sebgroup-green-angular-src-v-angular-input.mjs.map +0 -1
- package/fesm2022/sebgroup-green-angular-src-v-angular-modal.mjs +0 -742
- package/fesm2022/sebgroup-green-angular-src-v-angular-modal.mjs.map +0 -1
- package/fesm2022/sebgroup-green-angular-src-v-angular-pagination.mjs +0 -185
- package/fesm2022/sebgroup-green-angular-src-v-angular-pagination.mjs.map +0 -1
- package/fesm2022/sebgroup-green-angular-src-v-angular-radio.mjs +0 -167
- package/fesm2022/sebgroup-green-angular-src-v-angular-radio.mjs.map +0 -1
- package/fesm2022/sebgroup-green-angular-src-v-angular-slug.mjs +0 -49
- package/fesm2022/sebgroup-green-angular-src-v-angular-slug.mjs.map +0 -1
- package/fesm2022/sebgroup-green-angular-src-v-angular-table.mjs +0 -605
- package/fesm2022/sebgroup-green-angular-src-v-angular-table.mjs.map +0 -1
- package/fesm2022/sebgroup-green-angular-src-v-angular-tabs.mjs +0 -367
- package/fesm2022/sebgroup-green-angular-src-v-angular-tabs.mjs.map +0 -1
- package/fesm2022/sebgroup-green-angular-src-v-angular-textarea.mjs +0 -165
- package/fesm2022/sebgroup-green-angular-src-v-angular-textarea.mjs.map +0 -1
- package/fesm2022/sebgroup-green-angular-src-v-angular-toast.mjs +0 -180
- package/fesm2022/sebgroup-green-angular-src-v-angular-toast.mjs.map +0 -1
- package/fesm2022/sebgroup-green-angular-src-v-angular-tooltip.mjs +0 -374
- package/fesm2022/sebgroup-green-angular-src-v-angular-tooltip.mjs.map +0 -1
- package/fesm2022/sebgroup-green-angular-v-angular.mjs +0 -7966
- package/fesm2022/sebgroup-green-angular-v-angular.mjs.map +0 -1
- package/fesm2022/sebgroup-green-angular.mjs +0 -2578
- package/fesm2022/sebgroup-green-angular.mjs.map +0 -1
- package/index.d.ts +0 -17
- package/lib/accordion/accordion-list-item.component.d.ts +0 -16
- package/lib/accordion/accordion.component.d.ts +0 -16
- package/lib/accordion/accordion.module.d.ts +0 -9
- package/lib/accordion/index.d.ts +0 -3
- package/lib/badge/badge.component.d.ts +0 -25
- package/lib/badge/badge.module.d.ts +0 -8
- package/lib/badge/index.d.ts +0 -2
- package/lib/button/button.component.d.ts +0 -9
- package/lib/button/button.module.d.ts +0 -8
- package/lib/button/index.d.ts +0 -2
- package/lib/cell-table/cell-table-item.component.d.ts +0 -14
- package/lib/cell-table/cell-table.component.d.ts +0 -44
- package/lib/cell-table/cell-table.module.d.ts +0 -10
- package/lib/cell-table/cell-table.types.d.ts +0 -34
- package/lib/cell-table/cell-underline.directive.d.ts +0 -14
- package/lib/cell-table/index.d.ts +0 -3
- package/lib/context-menu/context-menu.component.d.ts +0 -43
- package/lib/context-menu/context-menu.module.d.ts +0 -9
- package/lib/context-menu/index.d.ts +0 -2
- package/lib/datepicker/datepicker.component.d.ts +0 -58
- package/lib/datepicker/datepicker.module.d.ts +0 -9
- package/lib/datepicker/index.d.ts +0 -2
- package/lib/dropdown/dropdown-button.directive.d.ts +0 -8
- package/lib/dropdown/dropdown-option.directive.d.ts +0 -8
- package/lib/dropdown/dropdown.component.d.ts +0 -82
- package/lib/dropdown/dropdown.module.d.ts +0 -11
- package/lib/dropdown/index.d.ts +0 -4
- package/lib/green-angular.module.d.ts +0 -21
- package/lib/in-page-wizard/in-page-wizard-step-card.component.d.ts +0 -19
- package/lib/in-page-wizard/in-page-wizard.module.d.ts +0 -8
- package/lib/in-page-wizard/index.d.ts +0 -2
- package/lib/modal/index.d.ts +0 -4
- package/lib/modal/modal-footer.directive.d.ts +0 -8
- package/lib/modal/modal-header.directive.d.ts +0 -8
- package/lib/modal/modal.component.d.ts +0 -69
- package/lib/modal/modal.module.d.ts +0 -11
- package/lib/pagination/index.d.ts +0 -2
- package/lib/pagination/pagination.component.d.ts +0 -42
- package/lib/pagination/pagination.module.d.ts +0 -8
- package/lib/progress-circle/index.d.ts +0 -2
- package/lib/progress-circle/progress-circle.component.d.ts +0 -14
- package/lib/progress-circle/progress-circle.module.d.ts +0 -8
- package/lib/segmented-control/index.d.ts +0 -2
- package/lib/segmented-control/segmented-control.component.d.ts +0 -11
- package/lib/segmented-control/segmented-control.module.d.ts +0 -9
- package/lib/shared/core-control/core-checkbox.directive.d.ts +0 -10
- package/lib/shared/core-control/core-control.directive.d.ts +0 -19
- package/lib/shared/core-control/core-control.module.d.ts +0 -10
- package/lib/shared/core-control/index.d.ts +0 -3
- package/lib/shared/core-element/core-element.directive.d.ts +0 -13
- package/lib/shared/core-element/core-element.module.d.ts +0 -8
- package/lib/shared/core-element/index.d.ts +0 -2
- package/lib/shared/core-renderer/core-renderer.d.ts +0 -81
- package/lib/shared/core-renderer/index.d.ts +0 -1
- package/lib/shared/core-router-link/core-router-link.directive.d.ts +0 -16
- package/lib/shared/core-router-link/core-router-link.module.d.ts +0 -7
- package/lib/shared/core-router-link/index.d.ts +0 -2
- package/lib/shared/index.d.ts +0 -6
- package/lib/shared/on-scroll.directive.d.ts +0 -14
- package/lib/shared/shared.module.d.ts +0 -8
- package/lib/slider/index.d.ts +0 -2
- package/lib/slider/slider.component.d.ts +0 -38
- package/lib/slider/slider.module.d.ts +0 -9
- package/lib/sortable-list/index.d.ts +0 -2
- package/lib/sortable-list/sortable-list.component.d.ts +0 -91
- package/lib/sortable-list/sortable-list.module.d.ts +0 -10
- package/src/lib/accordion/accordion-list-item.component.d.ts +0 -16
- package/src/lib/accordion/accordion.component.d.ts +0 -16
- package/src/lib/accordion/accordion.module.d.ts +0 -9
- package/src/lib/accordion/index.d.ts +0 -3
- package/src/lib/badge/badge.component.d.ts +0 -25
- package/src/lib/badge/badge.module.d.ts +0 -8
- package/src/lib/badge/index.d.ts +0 -2
- package/src/lib/button/button.component.d.ts +0 -9
- package/src/lib/button/button.module.d.ts +0 -8
- package/src/lib/button/index.d.ts +0 -2
- package/src/lib/cell-table/cell-table-item.component.d.ts +0 -14
- package/src/lib/cell-table/cell-table.component.d.ts +0 -44
- package/src/lib/cell-table/cell-table.module.d.ts +0 -10
- package/src/lib/cell-table/cell-table.types.d.ts +0 -34
- package/src/lib/cell-table/cell-underline.directive.d.ts +0 -14
- package/src/lib/cell-table/index.d.ts +0 -3
- package/src/lib/context-menu/context-menu.component.d.ts +0 -43
- package/src/lib/context-menu/context-menu.module.d.ts +0 -9
- package/src/lib/context-menu/index.d.ts +0 -2
- package/src/lib/datepicker/datepicker.component.d.ts +0 -58
- package/src/lib/datepicker/datepicker.module.d.ts +0 -9
- package/src/lib/datepicker/index.d.ts +0 -2
- package/src/lib/dropdown/dropdown-button.directive.d.ts +0 -8
- package/src/lib/dropdown/dropdown-option.directive.d.ts +0 -8
- package/src/lib/dropdown/dropdown.component.d.ts +0 -82
- package/src/lib/dropdown/dropdown.module.d.ts +0 -11
- package/src/lib/dropdown/index.d.ts +0 -4
- package/src/lib/in-page-wizard/in-page-wizard-step-card.component.d.ts +0 -19
- package/src/lib/in-page-wizard/in-page-wizard.module.d.ts +0 -8
- package/src/lib/in-page-wizard/index.d.ts +0 -2
- package/src/lib/modal/index.d.ts +0 -4
- package/src/lib/modal/modal-footer.directive.d.ts +0 -8
- package/src/lib/modal/modal-header.directive.d.ts +0 -8
- package/src/lib/modal/modal.component.d.ts +0 -69
- package/src/lib/modal/modal.module.d.ts +0 -11
- package/src/lib/pagination/index.d.ts +0 -2
- package/src/lib/pagination/pagination.component.d.ts +0 -42
- package/src/lib/pagination/pagination.module.d.ts +0 -8
- package/src/lib/progress-circle/index.d.ts +0 -2
- package/src/lib/progress-circle/progress-circle.component.d.ts +0 -14
- package/src/lib/progress-circle/progress-circle.module.d.ts +0 -8
- package/src/lib/segmented-control/index.d.ts +0 -2
- package/src/lib/segmented-control/segmented-control.component.d.ts +0 -11
- package/src/lib/segmented-control/segmented-control.module.d.ts +0 -9
- package/src/lib/shared/core-control/core-checkbox.directive.d.ts +0 -10
- package/src/lib/shared/core-control/core-control.directive.d.ts +0 -19
- package/src/lib/shared/core-control/core-control.module.d.ts +0 -10
- package/src/lib/shared/core-control/index.d.ts +0 -3
- package/src/lib/shared/core-element/core-element.directive.d.ts +0 -13
- package/src/lib/shared/core-element/core-element.module.d.ts +0 -8
- package/src/lib/shared/core-element/index.d.ts +0 -2
- package/src/lib/shared/core-renderer/core-renderer.d.ts +0 -81
- package/src/lib/shared/core-renderer/index.d.ts +0 -1
- package/src/lib/shared/core-router-link/core-router-link.directive.d.ts +0 -16
- package/src/lib/shared/core-router-link/core-router-link.module.d.ts +0 -7
- package/src/lib/shared/core-router-link/index.d.ts +0 -2
- package/src/lib/shared/index.d.ts +0 -6
- package/src/lib/shared/on-scroll.directive.d.ts +0 -14
- package/src/lib/shared/shared.module.d.ts +0 -8
- package/src/lib/slider/index.d.ts +0 -2
- package/src/lib/slider/slider.component.d.ts +0 -38
- package/src/lib/slider/slider.module.d.ts +0 -9
- package/src/lib/sortable-list/index.d.ts +0 -2
- package/src/lib/sortable-list/sortable-list.component.d.ts +0 -91
- package/src/lib/sortable-list/sortable-list.module.d.ts +0 -10
- package/src/v-angular/account-number/account-number.module.d.ts +0 -8
- package/src/v-angular/account-number/account-number.pipe.d.ts +0 -32
- package/src/v-angular/account-number/index.d.ts +0 -2
- package/src/v-angular/alert/alert.component.d.ts +0 -20
- package/src/v-angular/alert/alert.models.d.ts +0 -13
- package/src/v-angular/alert/alert.module.d.ts +0 -8
- package/src/v-angular/alert/index.d.ts +0 -3
- package/src/v-angular/base-control-value-accessor/base-control-value-accessor.component.d.ts +0 -134
- package/src/v-angular/base-control-value-accessor/base-control-value-accessor.module.d.ts +0 -7
- package/src/v-angular/base-control-value-accessor/index.d.ts +0 -2
- package/src/v-angular/breadcrumbs/breadcrumbs.component.d.ts +0 -18
- package/src/v-angular/breadcrumbs/breadcrumbs.module.d.ts +0 -10
- package/src/v-angular/breadcrumbs/index.d.ts +0 -2
- package/src/v-angular/button/button.component.d.ts +0 -62
- package/src/v-angular/button/button.module.d.ts +0 -10
- package/src/v-angular/button/index.d.ts +0 -2
- package/src/v-angular/card/card.component.d.ts +0 -5
- package/src/v-angular/card/card.module.d.ts +0 -8
- package/src/v-angular/card/index.d.ts +0 -2
- package/src/v-angular/character-countdown/character-countdown.directive.d.ts +0 -17
- package/src/v-angular/character-countdown/character-countdown.module.d.ts +0 -8
- package/src/v-angular/character-countdown/index.d.ts +0 -2
- package/src/v-angular/checkbox/checkbox.component.d.ts +0 -36
- package/src/v-angular/checkbox/checkbox.module.d.ts +0 -10
- package/src/v-angular/checkbox/index.d.ts +0 -2
- package/src/v-angular/core/core.globals.d.ts +0 -13
- package/src/v-angular/core/core.utils.d.ts +0 -23
- package/src/v-angular/core/index.d.ts +0 -2
- package/src/v-angular/datepicker/components/calendar/calendar.component.d.ts +0 -36
- package/src/v-angular/datepicker/components/calendar-control/calendar-control.component.d.ts +0 -30
- package/src/v-angular/datepicker/components/date-input/date-input.component.d.ts +0 -108
- package/src/v-angular/datepicker/components/datepicker/datepicker.component.d.ts +0 -62
- package/src/v-angular/datepicker/date-control-value-accessor/date-control-value-accessor.component.d.ts +0 -169
- package/src/v-angular/datepicker/datepicker.globals.d.ts +0 -13
- package/src/v-angular/datepicker/datepicker.models.d.ts +0 -50
- package/src/v-angular/datepicker/datepicker.module.d.ts +0 -19
- package/src/v-angular/datepicker/datepicker.utils.d.ts +0 -39
- package/src/v-angular/datepicker/directives/calendar-date.directive.d.ts +0 -21
- package/src/v-angular/datepicker/index.d.ts +0 -13
- package/src/v-angular/datepicker/models/dates.d.ts +0 -15
- package/src/v-angular/datepicker/pipes/date-thook.pipe.d.ts +0 -8
- package/src/v-angular/datepicker/pipes/is-disabled.pipe.d.ts +0 -8
- package/src/v-angular/datepicker/pipes/matches.pipe.d.ts +0 -7
- package/src/v-angular/drag-drop/drag-drop.component.d.ts +0 -131
- package/src/v-angular/drag-drop/drag-drop.models.d.ts +0 -49
- package/src/v-angular/drag-drop/drag-drop.module.d.ts +0 -13
- package/src/v-angular/drag-drop/drag-drop.pipes.d.ts +0 -40
- package/src/v-angular/drag-drop/drag-drop.utils.d.ts +0 -33
- package/src/v-angular/drag-drop/index.d.ts +0 -4
- package/src/v-angular/dropdown/dropdown-list/dropdown-list.component.d.ts +0 -111
- package/src/v-angular/dropdown/dropdown-list/index.d.ts +0 -1
- package/src/v-angular/dropdown/dropdown.component.d.ts +0 -124
- package/src/v-angular/dropdown/dropdown.module.d.ts +0 -13
- package/src/v-angular/dropdown/index.d.ts +0 -5
- package/src/v-angular/dropdown/typeahead/index.d.ts +0 -5
- package/src/v-angular/dropdown/typeahead/typeahead-dropdown-list/typeahead-dropdown-list.component.d.ts +0 -40
- package/src/v-angular/dropdown/typeahead/typeahead-highlight/typeahead-highlight.component.d.ts +0 -34
- package/src/v-angular/dropdown/typeahead/typeahead-input/typeahead-input.component.d.ts +0 -61
- package/src/v-angular/dropdown/typeahead/typeahead.directive.d.ts +0 -78
- package/src/v-angular/dropdown/typeahead/typeahead.module.d.ts +0 -11
- package/src/v-angular/external-link/external-link.directive.d.ts +0 -17
- package/src/v-angular/external-link/external-link.module.d.ts +0 -8
- package/src/v-angular/external-link/index.d.ts +0 -2
- package/src/v-angular/i18n/i18n.module.d.ts +0 -15
- package/src/v-angular/i18n/i18n.test.module.d.ts +0 -27
- package/src/v-angular/i18n/index.d.ts +0 -2
- package/src/v-angular/info-circle/index.d.ts +0 -2
- package/src/v-angular/info-circle/info-circle.component.d.ts +0 -16
- package/src/v-angular/info-circle/info-circle.module.d.ts +0 -10
- package/src/v-angular/input/index.d.ts +0 -2
- package/src/v-angular/input/input.component.d.ts +0 -112
- package/src/v-angular/input/input.module.d.ts +0 -13
- package/src/v-angular/input-mask/config.d.ts +0 -6
- package/src/v-angular/input-mask/constants.d.ts +0 -2
- package/src/v-angular/input-mask/index.d.ts +0 -5
- package/src/v-angular/input-mask/input-mask-format.pipe.d.ts +0 -8
- package/src/v-angular/input-mask/input-mask.directive.d.ts +0 -39
- package/src/v-angular/input-mask/input-mask.module.d.ts +0 -11
- package/src/v-angular/input-mask/input-mask.types.d.ts +0 -20
- package/src/v-angular/modal/dialog/dialog.component.d.ts +0 -71
- package/src/v-angular/modal/fold-out/fold-out.component.d.ts +0 -49
- package/src/v-angular/modal/fold-out/fold-out.directive.d.ts +0 -6
- package/src/v-angular/modal/fold-out/keyboard-key.enum.d.ts +0 -8
- package/src/v-angular/modal/index.d.ts +0 -5
- package/src/v-angular/modal/modal.globals.d.ts +0 -13
- package/src/v-angular/modal/modal.module.d.ts +0 -15
- package/src/v-angular/modal/modal.types.d.ts +0 -5
- package/src/v-angular/modal/slide-out/slide-out.component.d.ts +0 -83
- package/src/v-angular/pagination/index.d.ts +0 -2
- package/src/v-angular/pagination/pagination.component.d.ts +0 -64
- package/src/v-angular/pagination/pagination.module.d.ts +0 -12
- package/src/v-angular/radio/index.d.ts +0 -2
- package/src/v-angular/radio/radio.component.d.ts +0 -57
- package/src/v-angular/radio/radio.module.d.ts +0 -10
- package/src/v-angular/slug/index.d.ts +0 -2
- package/src/v-angular/slug/slug.module.d.ts +0 -8
- package/src/v-angular/slug/slug.pipe.d.ts +0 -12
- package/src/v-angular/table/index.d.ts +0 -5
- package/src/v-angular/table/table.component.d.ts +0 -239
- package/src/v-angular/table/table.directive.d.ts +0 -36
- package/src/v-angular/table/table.models.d.ts +0 -73
- package/src/v-angular/table/table.module.d.ts +0 -12
- package/src/v-angular/table/table.tools.d.ts +0 -5
- package/src/v-angular/table/tr-thook.pipe.d.ts +0 -7
- package/src/v-angular/tabs/index.d.ts +0 -4
- package/src/v-angular/tabs/tab.directive.d.ts +0 -37
- package/src/v-angular/tabs/tabs.component.d.ts +0 -65
- package/src/v-angular/tabs/tabs.models.d.ts +0 -25
- package/src/v-angular/tabs/tabs.module.d.ts +0 -11
- package/src/v-angular/textarea/index.d.ts +0 -2
- package/src/v-angular/textarea/textarea.component.d.ts +0 -57
- package/src/v-angular/textarea/textarea.module.d.ts +0 -12
- package/src/v-angular/toast/index.d.ts +0 -4
- package/src/v-angular/toast/toast-message.service.d.ts +0 -19
- package/src/v-angular/toast/toast.component.d.ts +0 -20
- package/src/v-angular/toast/toast.models.d.ts +0 -18
- package/src/v-angular/toast/toast.module.d.ts +0 -10
- package/src/v-angular/tooltip/index.d.ts +0 -2
- package/src/v-angular/tooltip/tooltip.directive.d.ts +0 -108
- package/src/v-angular/tooltip/tooltip.module.d.ts +0 -8
- package/src/v-angular/tooltip/tooltip.styles.d.ts +0 -11
- package/v-angular/account-number/account-number.module.d.ts +0 -8
- package/v-angular/account-number/account-number.pipe.d.ts +0 -32
- package/v-angular/account-number/index.d.ts +0 -2
- package/v-angular/alert/alert.component.d.ts +0 -20
- package/v-angular/alert/alert.models.d.ts +0 -13
- package/v-angular/alert/alert.module.d.ts +0 -8
- package/v-angular/alert/index.d.ts +0 -3
- package/v-angular/base-control-value-accessor/base-control-value-accessor.component.d.ts +0 -134
- package/v-angular/base-control-value-accessor/base-control-value-accessor.module.d.ts +0 -7
- package/v-angular/base-control-value-accessor/index.d.ts +0 -2
- package/v-angular/breadcrumbs/breadcrumbs.component.d.ts +0 -18
- package/v-angular/breadcrumbs/breadcrumbs.module.d.ts +0 -10
- package/v-angular/breadcrumbs/index.d.ts +0 -2
- package/v-angular/button/button.component.d.ts +0 -62
- package/v-angular/button/button.module.d.ts +0 -10
- package/v-angular/button/index.d.ts +0 -2
- package/v-angular/card/card.component.d.ts +0 -5
- package/v-angular/card/card.module.d.ts +0 -8
- package/v-angular/card/index.d.ts +0 -2
- package/v-angular/character-countdown/character-countdown.directive.d.ts +0 -17
- package/v-angular/character-countdown/character-countdown.module.d.ts +0 -8
- package/v-angular/character-countdown/index.d.ts +0 -2
- package/v-angular/checkbox/checkbox.component.d.ts +0 -36
- package/v-angular/checkbox/checkbox.module.d.ts +0 -10
- package/v-angular/checkbox/index.d.ts +0 -2
- package/v-angular/core/core.globals.d.ts +0 -13
- package/v-angular/core/core.utils.d.ts +0 -23
- package/v-angular/core/index.d.ts +0 -2
- package/v-angular/datepicker/components/calendar/calendar.component.d.ts +0 -36
- package/v-angular/datepicker/components/calendar-control/calendar-control.component.d.ts +0 -30
- package/v-angular/datepicker/components/date-input/date-input.component.d.ts +0 -108
- package/v-angular/datepicker/components/datepicker/datepicker.component.d.ts +0 -62
- package/v-angular/datepicker/date-control-value-accessor/date-control-value-accessor.component.d.ts +0 -169
- package/v-angular/datepicker/datepicker.globals.d.ts +0 -13
- package/v-angular/datepicker/datepicker.models.d.ts +0 -50
- package/v-angular/datepicker/datepicker.module.d.ts +0 -19
- package/v-angular/datepicker/datepicker.utils.d.ts +0 -39
- package/v-angular/datepicker/directives/calendar-date.directive.d.ts +0 -21
- package/v-angular/datepicker/index.d.ts +0 -13
- package/v-angular/datepicker/models/dates.d.ts +0 -15
- package/v-angular/datepicker/pipes/date-thook.pipe.d.ts +0 -8
- package/v-angular/datepicker/pipes/is-disabled.pipe.d.ts +0 -8
- package/v-angular/datepicker/pipes/matches.pipe.d.ts +0 -7
- package/v-angular/drag-drop/drag-drop.component.d.ts +0 -131
- package/v-angular/drag-drop/drag-drop.models.d.ts +0 -49
- package/v-angular/drag-drop/drag-drop.module.d.ts +0 -13
- package/v-angular/drag-drop/drag-drop.pipes.d.ts +0 -40
- package/v-angular/drag-drop/drag-drop.utils.d.ts +0 -33
- package/v-angular/drag-drop/index.d.ts +0 -4
- package/v-angular/dropdown/dropdown-list/dropdown-list.component.d.ts +0 -111
- package/v-angular/dropdown/dropdown-list/index.d.ts +0 -1
- package/v-angular/dropdown/dropdown.component.d.ts +0 -124
- package/v-angular/dropdown/dropdown.module.d.ts +0 -13
- package/v-angular/dropdown/index.d.ts +0 -5
- package/v-angular/dropdown/typeahead/index.d.ts +0 -5
- package/v-angular/dropdown/typeahead/typeahead-dropdown-list/typeahead-dropdown-list.component.d.ts +0 -40
- package/v-angular/dropdown/typeahead/typeahead-highlight/typeahead-highlight.component.d.ts +0 -34
- package/v-angular/dropdown/typeahead/typeahead-input/typeahead-input.component.d.ts +0 -61
- package/v-angular/dropdown/typeahead/typeahead.directive.d.ts +0 -78
- package/v-angular/dropdown/typeahead/typeahead.module.d.ts +0 -11
- package/v-angular/external-link/external-link.directive.d.ts +0 -17
- package/v-angular/external-link/external-link.module.d.ts +0 -8
- package/v-angular/external-link/index.d.ts +0 -2
- package/v-angular/i18n/i18n.module.d.ts +0 -15
- package/v-angular/i18n/i18n.test.module.d.ts +0 -27
- package/v-angular/i18n/index.d.ts +0 -2
- package/v-angular/index.d.ts +0 -28
- package/v-angular/info-circle/index.d.ts +0 -2
- package/v-angular/info-circle/info-circle.component.d.ts +0 -16
- package/v-angular/info-circle/info-circle.module.d.ts +0 -10
- package/v-angular/input/index.d.ts +0 -2
- package/v-angular/input/input.component.d.ts +0 -112
- package/v-angular/input/input.module.d.ts +0 -13
- package/v-angular/input-mask/config.d.ts +0 -6
- package/v-angular/input-mask/constants.d.ts +0 -2
- package/v-angular/input-mask/index.d.ts +0 -5
- package/v-angular/input-mask/input-mask-format.pipe.d.ts +0 -8
- package/v-angular/input-mask/input-mask.directive.d.ts +0 -39
- package/v-angular/input-mask/input-mask.module.d.ts +0 -11
- package/v-angular/input-mask/input-mask.types.d.ts +0 -20
- package/v-angular/modal/dialog/dialog.component.d.ts +0 -71
- package/v-angular/modal/fold-out/fold-out.component.d.ts +0 -49
- package/v-angular/modal/fold-out/fold-out.directive.d.ts +0 -6
- package/v-angular/modal/fold-out/keyboard-key.enum.d.ts +0 -8
- package/v-angular/modal/index.d.ts +0 -5
- package/v-angular/modal/modal.globals.d.ts +0 -13
- package/v-angular/modal/modal.module.d.ts +0 -15
- package/v-angular/modal/modal.types.d.ts +0 -5
- package/v-angular/modal/slide-out/slide-out.component.d.ts +0 -83
- package/v-angular/pagination/index.d.ts +0 -2
- package/v-angular/pagination/pagination.component.d.ts +0 -64
- package/v-angular/pagination/pagination.module.d.ts +0 -12
- package/v-angular/radio/index.d.ts +0 -2
- package/v-angular/radio/radio.component.d.ts +0 -57
- package/v-angular/radio/radio.module.d.ts +0 -10
- package/v-angular/slug/index.d.ts +0 -2
- package/v-angular/slug/slug.module.d.ts +0 -8
- package/v-angular/slug/slug.pipe.d.ts +0 -12
- package/v-angular/table/index.d.ts +0 -5
- package/v-angular/table/table.component.d.ts +0 -239
- package/v-angular/table/table.directive.d.ts +0 -36
- package/v-angular/table/table.models.d.ts +0 -73
- package/v-angular/table/table.module.d.ts +0 -12
- package/v-angular/table/table.tools.d.ts +0 -5
- package/v-angular/table/tr-thook.pipe.d.ts +0 -7
- package/v-angular/tabs/index.d.ts +0 -4
- package/v-angular/tabs/tab.directive.d.ts +0 -37
- package/v-angular/tabs/tabs.component.d.ts +0 -65
- package/v-angular/tabs/tabs.models.d.ts +0 -25
- package/v-angular/tabs/tabs.module.d.ts +0 -11
- package/v-angular/textarea/index.d.ts +0 -2
- package/v-angular/textarea/textarea.component.d.ts +0 -57
- package/v-angular/textarea/textarea.module.d.ts +0 -12
- package/v-angular/toast/index.d.ts +0 -4
- package/v-angular/toast/toast-message.service.d.ts +0 -19
- package/v-angular/toast/toast.component.d.ts +0 -20
- package/v-angular/toast/toast.models.d.ts +0 -18
- package/v-angular/toast/toast.module.d.ts +0 -10
- package/v-angular/tooltip/index.d.ts +0 -2
- package/v-angular/tooltip/tooltip.directive.d.ts +0 -108
- package/v-angular/tooltip/tooltip.module.d.ts +0 -8
- package/v-angular/tooltip/tooltip.styles.d.ts +0 -11
- package/v-angular/v-angular.module.d.ts +0 -33
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,1398 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
## 6.1.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 79efa1b: **V-Angular:** Changed nggv-toast to full width on smallest breakpoint
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- 8023ea6: **V-Angular:** Improve dropdown dynamic positioning (top/bottom) and height calculation
|
|
12
|
+
- 4f381d4: **V-Angular:** listWidth property to fold out component - added danger button to dialog component
|
|
13
|
+
- 791dd16: V-Angular: Updated Table component with expanded rows by default attribute
|
|
14
|
+
- Updated dependencies [72be834]
|
|
15
|
+
- @sebgroup/green-core@1.88.2
|
|
16
|
+
|
|
17
|
+
## 6.0.5
|
|
18
|
+
|
|
19
|
+
### Patch Changes
|
|
20
|
+
|
|
21
|
+
- c031e4a: **V-Angular Input/Dropdown/Textarea**: Fixed styling for small variants; halved spacing underneath dropdown and textarea, and corrected height difference (compared to dropdown) for input field.
|
|
22
|
+
|
|
23
|
+
## 6.0.4
|
|
24
|
+
|
|
25
|
+
### Patch Changes
|
|
26
|
+
|
|
27
|
+
- 86ea764: Fold out: close fold out on tab
|
|
28
|
+
- 803b81c: Changed height of nggv-dateinput wrapper to match nggv-input wrapper
|
|
29
|
+
|
|
30
|
+
## 6.0.3
|
|
31
|
+
|
|
32
|
+
### Patch Changes
|
|
33
|
+
|
|
34
|
+
- bad7bf3: Fix: showing validation message when passing message slot
|
|
35
|
+
- Updated dependencies [27fe9cf]
|
|
36
|
+
- @sebgroup/green-core@1.88.0
|
|
37
|
+
|
|
38
|
+
## 6.0.2
|
|
39
|
+
|
|
40
|
+
### Patch Changes
|
|
41
|
+
|
|
42
|
+
- e56c76a: V-angular: Updated textarea description logic with descriptionIsVisible property
|
|
43
|
+
- 9abbfb9: Dropdown/Typeahead: Add input that controls if key "Space" should select active element in dropdown-list. Set to false from typeahead
|
|
44
|
+
- Updated dependencies [577fc63]
|
|
45
|
+
- Updated dependencies [f3b8f76]
|
|
46
|
+
- Updated dependencies [eca17f0]
|
|
47
|
+
- @sebgroup/green-core@1.87.0
|
|
48
|
+
|
|
49
|
+
## 6.0.1
|
|
50
|
+
|
|
51
|
+
### Patch Changes
|
|
52
|
+
|
|
53
|
+
- df15684: V-Angular: Updated the way required attribute is set inside components
|
|
54
|
+
- Updated dependencies [1891932]
|
|
55
|
+
- @sebgroup/green-core@1.85.3
|
|
56
|
+
|
|
57
|
+
## 6.0.0
|
|
58
|
+
|
|
59
|
+
### Major Changes
|
|
60
|
+
|
|
61
|
+
- ba3268c: Update minimal Angular version to 18
|
|
62
|
+
|
|
63
|
+
### Patch Changes
|
|
64
|
+
|
|
65
|
+
- Updated dependencies [60e38d9]
|
|
66
|
+
- Updated dependencies [e4eb1ad]
|
|
67
|
+
- @sebgroup/green-core@1.85.0
|
|
68
|
+
|
|
69
|
+
## 5.13.3
|
|
70
|
+
|
|
71
|
+
### Patch Changes
|
|
72
|
+
|
|
73
|
+
- 63487db: **V-Angular:** Fix component id collision warnings for toast component
|
|
74
|
+
- Updated dependencies [56d1779]
|
|
75
|
+
- Updated dependencies [55b23da]
|
|
76
|
+
- @sebgroup/green-core@1.84.0
|
|
77
|
+
|
|
78
|
+
## 5.13.2
|
|
79
|
+
|
|
80
|
+
### Patch Changes
|
|
81
|
+
|
|
82
|
+
- b89a46f: V-Angular: Removed the top line/border from the table header.
|
|
83
|
+
- Updated dependencies [c6833ae]
|
|
84
|
+
- @sebgroup/green-core@1.83.2
|
|
85
|
+
|
|
86
|
+
## 5.13.1
|
|
87
|
+
|
|
88
|
+
### Patch Changes
|
|
89
|
+
|
|
90
|
+
- 0acbec7: Dragdrop: Prevet overflow for file name
|
|
91
|
+
- Updated dependencies [1aa919a]
|
|
92
|
+
- Updated dependencies [44dff87]
|
|
93
|
+
- Updated dependencies [41b8a90]
|
|
94
|
+
- Updated dependencies [73e0759]
|
|
95
|
+
- Updated dependencies [4d4704b]
|
|
96
|
+
- Updated dependencies [f1ceb54]
|
|
97
|
+
- @sebgroup/green-core@1.83.0
|
|
98
|
+
|
|
99
|
+
## 5.13.0
|
|
100
|
+
|
|
101
|
+
### Minor Changes
|
|
102
|
+
|
|
103
|
+
- 9d223a7: V-Angular: Adding small variant of Dropdown
|
|
104
|
+
- 9d223a7: V-Angular: Adding small variant of Checkbox
|
|
105
|
+
- 9d223a7: V-Angular: Adding small variant of DateInput
|
|
106
|
+
- 9d223a7: V-Angular: Adding small variant of Textarea
|
|
107
|
+
|
|
108
|
+
### Patch Changes
|
|
109
|
+
|
|
110
|
+
- 1829e13: Fixed dropdown selection behaviour when typeahead is used
|
|
111
|
+
- 9d223a7: V-Angular: Fixing icon sizing in Date input
|
|
112
|
+
|
|
113
|
+
## 5.12.1
|
|
114
|
+
|
|
115
|
+
### Patch Changes
|
|
116
|
+
|
|
117
|
+
- a4252f9: **NggCoreControl:** Update selectors to only apply when controls are used with reactive forms (when `formControlName` is present)
|
|
118
|
+
- Updated dependencies [4c000b4]
|
|
119
|
+
- @sebgroup/green-core@1.81.0
|
|
120
|
+
|
|
121
|
+
## 5.12.0
|
|
122
|
+
|
|
123
|
+
### Minor Changes
|
|
124
|
+
|
|
125
|
+
- 45a6303: **V-Angular Dropdown/Typeahead**: Keyboard select dropdown with nvda screen-reader.
|
|
126
|
+
|
|
127
|
+
### Patch Changes
|
|
128
|
+
|
|
129
|
+
- 2a3e532: Resolved V-Angular table a11y warnings
|
|
130
|
+
- Updated dependencies [2edbe83]
|
|
131
|
+
- Updated dependencies [5f775b4]
|
|
132
|
+
- Updated dependencies [461504b]
|
|
133
|
+
- Updated dependencies [2edbe83]
|
|
134
|
+
- @sebgroup/green-core@1.80.0
|
|
135
|
+
- @sebgroup/chlorophyll@3.6.20
|
|
136
|
+
|
|
137
|
+
## 5.11.2
|
|
138
|
+
|
|
139
|
+
### Patch Changes
|
|
140
|
+
|
|
141
|
+
- 7e585f8: **NggDatepicker:** Fix error in change event handler
|
|
142
|
+
- Updated dependencies [ce1b0d4]
|
|
143
|
+
- @sebgroup/green-core@1.79.0
|
|
144
|
+
|
|
145
|
+
## 5.11.1
|
|
146
|
+
|
|
147
|
+
### Patch Changes
|
|
148
|
+
|
|
149
|
+
- 728c620: **V-Angular:** Updated table component
|
|
150
|
+
|
|
151
|
+
## 5.11.0
|
|
152
|
+
|
|
153
|
+
### Minor Changes
|
|
154
|
+
|
|
155
|
+
- 318de75: **V-Angular Inputs:** Support for custom locked template for input fields.
|
|
156
|
+
|
|
157
|
+
### Patch Changes
|
|
158
|
+
|
|
159
|
+
- 766cbe6: Adding export of checkbox directive to fix build error
|
|
160
|
+
- Updated dependencies [657e0a3]
|
|
161
|
+
- Updated dependencies [0a3ac2c]
|
|
162
|
+
- Updated dependencies [9075450]
|
|
163
|
+
- Updated dependencies [9075450]
|
|
164
|
+
- Updated dependencies [9075450]
|
|
165
|
+
- Updated dependencies [6846a6c]
|
|
166
|
+
- @sebgroup/green-core@1.78.0
|
|
167
|
+
|
|
168
|
+
## 5.10.0
|
|
169
|
+
|
|
170
|
+
### Minor Changes
|
|
171
|
+
|
|
172
|
+
- 7d86c93: **Forms:** Add ControlValueAccessor support for `gds-checkbox`
|
|
173
|
+
|
|
174
|
+
### Patch Changes
|
|
175
|
+
|
|
176
|
+
- Updated dependencies [7d86c93]
|
|
177
|
+
- Updated dependencies [7d86c93]
|
|
178
|
+
- Updated dependencies [7d86c93]
|
|
179
|
+
- Updated dependencies [7d86c93]
|
|
180
|
+
- Updated dependencies [7d86c93]
|
|
181
|
+
- Updated dependencies [7d86c93]
|
|
182
|
+
- @sebgroup/green-core@1.77.0
|
|
183
|
+
|
|
184
|
+
## 5.9.0
|
|
185
|
+
|
|
186
|
+
### Minor Changes
|
|
187
|
+
|
|
188
|
+
- 8616efe: Updated v-angular table for mobile view
|
|
189
|
+
|
|
190
|
+
## 5.8.1
|
|
191
|
+
|
|
192
|
+
### Patch Changes
|
|
193
|
+
|
|
194
|
+
- 0f2c59f: **V-Angular Dropdown/Typeahead:** Enable keyboard navigation with NVDA screen-reader.
|
|
195
|
+
- Updated dependencies [441260e]
|
|
196
|
+
- Updated dependencies [ba27ca9]
|
|
197
|
+
- @sebgroup/green-core@1.76.2
|
|
198
|
+
|
|
199
|
+
## 5.8.0
|
|
200
|
+
|
|
201
|
+
### Minor Changes
|
|
202
|
+
|
|
203
|
+
- a9cde91: **V-Angular Toast:** Support input of custom template to render inside of toast.
|
|
204
|
+
|
|
205
|
+
## 5.7.1
|
|
206
|
+
|
|
207
|
+
### Patch Changes
|
|
208
|
+
|
|
209
|
+
- 9bf1161: **V-Angular Input:** Fixed error and countdown styling for input field.
|
|
210
|
+
- dc3a205: **NggCoreControl**: Allow opt-out by using `ngDefaultControl` directive
|
|
211
|
+
- Updated dependencies [51bbe15]
|
|
212
|
+
- Updated dependencies [0850de5]
|
|
213
|
+
- Updated dependencies [dc3a205]
|
|
214
|
+
- @sebgroup/green-core@1.74.0
|
|
215
|
+
|
|
216
|
+
## 5.7.0
|
|
217
|
+
|
|
218
|
+
### Minor Changes
|
|
219
|
+
|
|
220
|
+
- a6fee64: **V-Angular Input:** Adding small variant
|
|
221
|
+
**V-Angular RadioButton:** Adding small variant
|
|
222
|
+
|
|
223
|
+
### Patch Changes
|
|
224
|
+
|
|
225
|
+
- Updated dependencies [a538e40]
|
|
226
|
+
- Updated dependencies [a6fee64]
|
|
227
|
+
- Updated dependencies [a6fee64]
|
|
228
|
+
- Updated dependencies [bc58619]
|
|
229
|
+
- Updated dependencies [0e5e557]
|
|
230
|
+
- @sebgroup/chlorophyll@3.6.18
|
|
231
|
+
- @sebgroup/green-core@1.73.0
|
|
232
|
+
|
|
233
|
+
## 5.6.1
|
|
234
|
+
|
|
235
|
+
### Patch Changes
|
|
236
|
+
|
|
237
|
+
- 0e6d189: Update how underlying Core components are imported. Affects NggDropdown, NggDatepicker and NggContextMenu
|
|
238
|
+
- Updated dependencies [0e6d189]
|
|
239
|
+
- Updated dependencies [0e6d189]
|
|
240
|
+
- Updated dependencies [0e6d189]
|
|
241
|
+
- Updated dependencies [cd4667d]
|
|
242
|
+
- @sebgroup/green-core@1.70.0
|
|
243
|
+
|
|
244
|
+
## 5.6.0
|
|
245
|
+
|
|
246
|
+
### Minor Changes
|
|
247
|
+
|
|
248
|
+
- d75df66: **V-Angular**: Adding href to alert-ribbon and fixing icons in toast
|
|
249
|
+
|
|
250
|
+
### Patch Changes
|
|
251
|
+
|
|
252
|
+
- 9b15233: **V-Angular Slide-out:** Set focus on first focusable element instead of last focusable element
|
|
253
|
+
|
|
254
|
+
## 5.5.4
|
|
255
|
+
|
|
256
|
+
### Patch Changes
|
|
257
|
+
|
|
258
|
+
- cf901cf: **V-Angular Components:** Fixed spacing within components and after.
|
|
259
|
+
- 759863c: **V-Angular Slide-out:** Allow overflow to be shown outside of slide-out content.
|
|
260
|
+
|
|
261
|
+
## 5.5.3
|
|
262
|
+
|
|
263
|
+
### Patch Changes
|
|
264
|
+
|
|
265
|
+
- 142324e: Fixing issue with prefix/suffix in input and dropdown
|
|
266
|
+
- 3c2809f: fixing typeahead dropdown placement and width
|
|
267
|
+
- Updated dependencies [8fe5d35]
|
|
268
|
+
- Updated dependencies [00c48da]
|
|
269
|
+
- @sebgroup/green-core@1.69.3
|
|
270
|
+
- @sebgroup/chlorophyll@3.6.17
|
|
271
|
+
|
|
272
|
+
## 5.5.2
|
|
273
|
+
|
|
274
|
+
### Patch Changes
|
|
275
|
+
|
|
276
|
+
- a904e48: Updated V-Angular Table sub-item to accept custom template
|
|
277
|
+
|
|
278
|
+
## 5.5.1
|
|
279
|
+
|
|
280
|
+
### Patch Changes
|
|
281
|
+
|
|
282
|
+
- 43b08d4: dropdownButton in typeahead might be undefined
|
|
283
|
+
- f0d4efc: fixing typeahead input height when opening dropdown
|
|
284
|
+
- Updated dependencies [7fe6b60]
|
|
285
|
+
- Updated dependencies [7fe6b60]
|
|
286
|
+
- @sebgroup/green-core@1.69.1
|
|
287
|
+
|
|
288
|
+
## 5.5.0
|
|
289
|
+
|
|
290
|
+
### Minor Changes
|
|
291
|
+
|
|
292
|
+
- 9ac5286: **Routing:** Add `nggCoreRouterLink` directive for accessible routing with Green Core components
|
|
293
|
+
|
|
294
|
+
### Patch Changes
|
|
295
|
+
|
|
296
|
+
- Updated dependencies [f438e8f]
|
|
297
|
+
- @sebgroup/green-core@1.69.0
|
|
298
|
+
|
|
299
|
+
## 5.4.2
|
|
300
|
+
|
|
301
|
+
### Patch Changes
|
|
302
|
+
|
|
303
|
+
- 213f2ad: Fix for dropdown layering to render list above other inputs.
|
|
304
|
+
|
|
305
|
+
## 5.4.1
|
|
306
|
+
|
|
307
|
+
### Patch Changes
|
|
308
|
+
|
|
309
|
+
- 79a086f: fixed incomplete v-angular migration by removing a line which causes height issues
|
|
310
|
+
- 3907ebb: **Alert Ribbon**: showing correct icon based on type
|
|
311
|
+
**Dropdown**: correct height on typeahead overlay, fixing spacing to validation
|
|
312
|
+
- c564b23: Added margin-top to error-wrapper class in dropdown component. Removed height from input-wrapper class in input component to fix visual bug
|
|
313
|
+
- 3077e1e: Added .nggv-field--error to input.component.scss to show a red line when there's an error on the input fields. Made slide-out scrollable when overflown. Added core map to index.ts file to expose some interfaces
|
|
314
|
+
- 9111c10: Performance fix for dropdown-list and handling of key press events.
|
|
315
|
+
- Updated dependencies [6cea9a6]
|
|
316
|
+
- @sebgroup/green-core@1.68.5
|
|
317
|
+
|
|
318
|
+
## 5.4.0
|
|
319
|
+
|
|
320
|
+
### Minor Changes
|
|
321
|
+
|
|
322
|
+
- 54814fe: **NggCoreRenderer:** Add provider for supporting animations when using `NggCoreRenderer`. Fixes #1997
|
|
323
|
+
|
|
324
|
+
### Patch Changes
|
|
325
|
+
|
|
326
|
+
- 158fc60: **NggDropdown:** Fix text overflow style in the trigger. Fixes #1948
|
|
327
|
+
- b8454ea: **Modal**: fixing close button sizing on mobile
|
|
328
|
+
**Tooltip**: fixing zindex problem when combined with modal
|
|
329
|
+
- Updated dependencies [5dd17df]
|
|
330
|
+
- @sebgroup/chlorophyll@3.6.16
|
|
331
|
+
|
|
332
|
+
## 5.3.4
|
|
333
|
+
|
|
334
|
+
### Patch Changes
|
|
335
|
+
|
|
336
|
+
- 50a3fa2: Updated table grouping funcionality with clickable sub-items.
|
|
337
|
+
- Updated dependencies [9d1476d]
|
|
338
|
+
- @sebgroup/green-core@1.68.1
|
|
339
|
+
|
|
340
|
+
## 5.3.3
|
|
341
|
+
|
|
342
|
+
### Patch Changes
|
|
343
|
+
|
|
344
|
+
- fc5b9d4: added actionEmitter and close on option click on foldout
|
|
345
|
+
- Updated dependencies [25a87f9]
|
|
346
|
+
- @sebgroup/green-core@1.67.2
|
|
347
|
+
|
|
348
|
+
## 5.3.2
|
|
349
|
+
|
|
350
|
+
### Patch Changes
|
|
351
|
+
|
|
352
|
+
- 4a1ad4a: Added missing styles for the checkboxes inside nggv-table component
|
|
353
|
+
- Updated dependencies [0babf00]
|
|
354
|
+
- Updated dependencies [4cdaf5f]
|
|
355
|
+
- Updated dependencies [4cdaf5f]
|
|
356
|
+
- Updated dependencies [4cdaf5f]
|
|
357
|
+
- Updated dependencies [4cdaf5f]
|
|
358
|
+
- @sebgroup/chlorophyll@3.6.15
|
|
359
|
+
- @sebgroup/green-core@1.66.0
|
|
360
|
+
|
|
361
|
+
## 5.3.1
|
|
362
|
+
|
|
363
|
+
### Patch Changes
|
|
364
|
+
|
|
365
|
+
- e93b640: **CoreControlModule**: Fix condition for when field errors are displayed
|
|
366
|
+
|
|
367
|
+
## 5.3.0
|
|
368
|
+
|
|
369
|
+
### Minor Changes
|
|
370
|
+
|
|
371
|
+
- 9b9d7b6: Added table grouping functionality.
|
|
372
|
+
|
|
373
|
+
### Patch Changes
|
|
374
|
+
|
|
375
|
+
- d3870c2: Added position: relative to host: element to counteract the position: absolute for the fold-out options.
|
|
376
|
+
- b8a1b9c: Exported account-number-pipe as Angular stand-alone pipe.
|
|
377
|
+
- Updated dependencies [fc89181]
|
|
378
|
+
- Updated dependencies [fc89181]
|
|
379
|
+
- Updated dependencies [fc89181]
|
|
380
|
+
- Updated dependencies [f8c3d74]
|
|
381
|
+
- Updated dependencies [fc89181]
|
|
382
|
+
- @sebgroup/green-core@1.65.0
|
|
383
|
+
|
|
384
|
+
## 5.2.0
|
|
385
|
+
|
|
386
|
+
### Minor Changes
|
|
387
|
+
|
|
388
|
+
- 0213060: **V-Angular:** Migrating V-Angular remaining components to Green and closing the gap on already exsisting components.
|
|
389
|
+
|
|
390
|
+
## Migrated components
|
|
391
|
+
|
|
392
|
+
- AccountNumber
|
|
393
|
+
- Alert
|
|
394
|
+
- BaseControlValueAccessor
|
|
395
|
+
- Breadcrumbs
|
|
396
|
+
- Button
|
|
397
|
+
- Card
|
|
398
|
+
- CharacterCountdown
|
|
399
|
+
- Checkbox
|
|
400
|
+
- Datepicker
|
|
401
|
+
- DragDrop
|
|
402
|
+
- Dropdown
|
|
403
|
+
- DropdownList
|
|
404
|
+
- ExternalLink
|
|
405
|
+
- I18n
|
|
406
|
+
- InfoCircle
|
|
407
|
+
- Input
|
|
408
|
+
- InputMask
|
|
409
|
+
- Modal
|
|
410
|
+
- Pagination
|
|
411
|
+
- Radio
|
|
412
|
+
- Slug
|
|
413
|
+
- Table
|
|
414
|
+
- Tabs
|
|
415
|
+
- Textarea
|
|
416
|
+
- Toast
|
|
417
|
+
- Tooltip
|
|
418
|
+
|
|
419
|
+
### Patch Changes
|
|
420
|
+
|
|
421
|
+
- Updated dependencies [7213bfb]
|
|
422
|
+
- Updated dependencies [0213060]
|
|
423
|
+
- @sebgroup/green-core@1.63.2
|
|
424
|
+
- @sebgroup/chlorophyll@3.6.14
|
|
425
|
+
|
|
426
|
+
## 5.1.2
|
|
427
|
+
|
|
428
|
+
### Patch Changes
|
|
429
|
+
|
|
430
|
+
- 1bf0d07: **nggCoreElement**: Remove console.log
|
|
431
|
+
|
|
432
|
+
## 5.1.1
|
|
433
|
+
|
|
434
|
+
### Patch Changes
|
|
435
|
+
|
|
436
|
+
- 4d8df8b: **NggCoreControlDirective:** Fix a missing public export
|
|
437
|
+
- 53ed2a4: **In page wizard** Change icon
|
|
438
|
+
- Updated dependencies [5e16375]
|
|
439
|
+
- Updated dependencies [33b08a2]
|
|
440
|
+
- Updated dependencies [3331d19]
|
|
441
|
+
- Updated dependencies [40f905b]
|
|
442
|
+
- Updated dependencies [93bac39]
|
|
443
|
+
- Updated dependencies [f43d556]
|
|
444
|
+
- Updated dependencies [4d8df8b]
|
|
445
|
+
- Updated dependencies [f43d556]
|
|
446
|
+
- Updated dependencies [5e16375]
|
|
447
|
+
- @sebgroup/green-core@1.62.0
|
|
448
|
+
- @sebgroup/chlorophyll@3.6.13
|
|
449
|
+
|
|
450
|
+
## 5.1.0
|
|
451
|
+
|
|
452
|
+
### Minor Changes
|
|
453
|
+
|
|
454
|
+
- 15771a0: **CoreElements**: Add a new custom renderer that adds the ability to use scoped core components without the `*nggCoreElement` directive
|
|
455
|
+
|
|
456
|
+
### Patch Changes
|
|
457
|
+
|
|
458
|
+
- f4ffadf: **Modals:** Add custom close button label
|
|
459
|
+
- Updated dependencies [85759d1]
|
|
460
|
+
- Updated dependencies [15771a0]
|
|
461
|
+
- Updated dependencies [15771a0]
|
|
462
|
+
- Updated dependencies [15771a0]
|
|
463
|
+
- Updated dependencies [a234635]
|
|
464
|
+
- Updated dependencies [15771a0]
|
|
465
|
+
- Updated dependencies [15771a0]
|
|
466
|
+
- Updated dependencies [15771a0]
|
|
467
|
+
- Updated dependencies [47957aa]
|
|
468
|
+
- Updated dependencies [15771a0]
|
|
469
|
+
- @sebgroup/chlorophyll@3.6.12
|
|
470
|
+
- @sebgroup/green-core@1.61.0
|
|
471
|
+
|
|
472
|
+
## 5.0.0
|
|
473
|
+
|
|
474
|
+
### Major Changes
|
|
475
|
+
|
|
476
|
+
- 54ec646: Upgrade minimum supported version to Angular 17
|
|
477
|
+
- 54ec646: **Datepicker:** Remove deprecated props from `DatepickerOptions`
|
|
478
|
+
- 54ec646: **Context Menu:** Remove deprecated input `closeOnScroll`
|
|
479
|
+
- 54ec646: **Dropdown:** Remove deprecated input `fixedPlacement`
|
|
480
|
+
- 54ec646: **Dropdown:** Remove some deprecated props from `DropdownTexts`
|
|
481
|
+
|
|
482
|
+
## 4.6.7
|
|
483
|
+
|
|
484
|
+
### Patch Changes
|
|
485
|
+
|
|
486
|
+
- 1c8b959: **Accordion:** fixed button to only be marked as heading, not it's content
|
|
487
|
+
- Updated dependencies [e03df6f]
|
|
488
|
+
- @sebgroup/chlorophyll@3.6.9
|
|
489
|
+
|
|
490
|
+
## 4.6.6
|
|
491
|
+
|
|
492
|
+
### Patch Changes
|
|
493
|
+
|
|
494
|
+
- d00298d: Fixed missing countdown in v-angular input and textarea components. Fixed v-angular dropdown styling issues.
|
|
495
|
+
|
|
496
|
+
## 4.6.5
|
|
497
|
+
|
|
498
|
+
### Patch Changes
|
|
499
|
+
|
|
500
|
+
- bf9e150: Accordion - Can set aria-level in angular
|
|
501
|
+
- Updated dependencies [500beae]
|
|
502
|
+
- @sebgroup/green-core@1.45.0
|
|
503
|
+
|
|
504
|
+
## 4.6.4
|
|
505
|
+
|
|
506
|
+
### Patch Changes
|
|
507
|
+
|
|
508
|
+
- 06f5077: **V-Angular:** Fix icon import paths
|
|
509
|
+
|
|
510
|
+
## 4.6.3
|
|
511
|
+
|
|
512
|
+
### Patch Changes
|
|
513
|
+
|
|
514
|
+
- d6f652d: **V-Angular:** fixing selector and imported modules
|
|
515
|
+
- Updated dependencies [aab2665]
|
|
516
|
+
- Updated dependencies [aab2665]
|
|
517
|
+
- Updated dependencies [cb2d08c]
|
|
518
|
+
- @sebgroup/green-core@1.43.4
|
|
519
|
+
|
|
520
|
+
## 4.6.2
|
|
521
|
+
|
|
522
|
+
### Patch Changes
|
|
523
|
+
|
|
524
|
+
- 05c1eab: rename ngv to nggv
|
|
525
|
+
- 05c1eab: updated v-angular exports
|
|
526
|
+
- Updated dependencies [69f1894]
|
|
527
|
+
- Updated dependencies [916a2ef]
|
|
528
|
+
- @sebgroup/green-core@1.43.0
|
|
529
|
+
|
|
530
|
+
## 4.6.1
|
|
531
|
+
|
|
532
|
+
### Patch Changes
|
|
533
|
+
|
|
534
|
+
- 074fcad: rename ngv to nggv
|
|
535
|
+
- Updated dependencies [0ace1ed]
|
|
536
|
+
- Updated dependencies [fbecda4]
|
|
537
|
+
- @sebgroup/chlorophyll@3.6.4
|
|
538
|
+
- @sebgroup/green-core@1.42.0
|
|
539
|
+
|
|
540
|
+
## 4.6.0
|
|
541
|
+
|
|
542
|
+
### Minor Changes
|
|
543
|
+
|
|
544
|
+
- 70e8855: Adding V-Angular components to Green: breadcrumbs, button, card, checkbox,dropdown-list,dropdown,info-circle,input-mask,input,modal,radio,textarea,tooltip,typeahead.
|
|
545
|
+
|
|
546
|
+
### Patch Changes
|
|
547
|
+
|
|
548
|
+
- Updated dependencies [70e8855]
|
|
549
|
+
- @sebgroup/chlorophyll@3.6.3
|
|
550
|
+
|
|
551
|
+
## 4.5.0
|
|
552
|
+
|
|
553
|
+
### Minor Changes
|
|
554
|
+
|
|
555
|
+
- a6a0672: Added an input property to check if the step is valid to be completed or not. Used for accessibility purposes.
|
|
556
|
+
|
|
557
|
+
### Patch Changes
|
|
558
|
+
|
|
559
|
+
- Updated dependencies [26fdbeb]
|
|
560
|
+
- Updated dependencies [26fdbeb]
|
|
561
|
+
- @sebgroup/green-core@1.40.0
|
|
562
|
+
|
|
563
|
+
## 4.4.1
|
|
564
|
+
|
|
565
|
+
### Patch Changes
|
|
566
|
+
|
|
567
|
+
- b00a59c: **Modals:** Correct behaviour for modality. Dialogs should only be modal when `trapFocus = true`
|
|
568
|
+
- b00a59c: **Modals:** Fix accessible label
|
|
569
|
+
|
|
570
|
+
## 4.4.0
|
|
571
|
+
|
|
572
|
+
### Minor Changes
|
|
573
|
+
|
|
574
|
+
- 3cf63ae: Adding sizing input for the dialog modal in angular and chlorophyll
|
|
575
|
+
|
|
576
|
+
### Patch Changes
|
|
577
|
+
|
|
578
|
+
- Updated dependencies [3cf63ae]
|
|
579
|
+
- @sebgroup/chlorophyll@3.5.0
|
|
580
|
+
|
|
581
|
+
## 4.3.1
|
|
582
|
+
|
|
583
|
+
### Patch Changes
|
|
584
|
+
|
|
585
|
+
- 7cfed86: **Dropdown:** Fix previous texts value being displayed if nothing is selected and `texts` input changed
|
|
586
|
+
|
|
587
|
+
## 4.3.0
|
|
588
|
+
|
|
589
|
+
### Minor Changes
|
|
590
|
+
|
|
591
|
+
- 718186b: Fix not displayed selected dropdown option then texts input changes
|
|
592
|
+
|
|
593
|
+
### Patch Changes
|
|
594
|
+
|
|
595
|
+
- Updated dependencies [6a7e540]
|
|
596
|
+
- @sebgroup/green-core@1.28.0
|
|
597
|
+
|
|
598
|
+
## 4.2.2
|
|
599
|
+
|
|
600
|
+
### Patch Changes
|
|
601
|
+
|
|
602
|
+
- bc76d34: fixing In page wizard style and angular component
|
|
603
|
+
- Updated dependencies [32df607]
|
|
604
|
+
- Updated dependencies [d50e15a]
|
|
605
|
+
- Updated dependencies [bc76d34]
|
|
606
|
+
- @sebgroup/green-core@1.27.0
|
|
607
|
+
- @sebgroup/chlorophyll@3.4.3
|
|
608
|
+
|
|
609
|
+
## 4.2.1
|
|
610
|
+
|
|
611
|
+
### Patch Changes
|
|
612
|
+
|
|
613
|
+
- c068ed2: **Dropdown:** Add default value for `maxHeight`
|
|
614
|
+
- Updated dependencies [d6540f5]
|
|
615
|
+
- @sebgroup/green-core@1.24.0
|
|
616
|
+
|
|
617
|
+
## 4.2.0
|
|
618
|
+
|
|
619
|
+
### Minor Changes
|
|
620
|
+
|
|
621
|
+
- f94b8ad: **Dropdown:** Add option for disabling mobile styles
|
|
622
|
+
|
|
623
|
+
### Patch Changes
|
|
624
|
+
|
|
625
|
+
- Updated dependencies [f94b8ad]
|
|
626
|
+
- Updated dependencies [23022c1]
|
|
627
|
+
- Updated dependencies [47d4df3]
|
|
628
|
+
- @sebgroup/green-core@1.23.0
|
|
629
|
+
- @sebgroup/chlorophyll@3.4.1
|
|
630
|
+
|
|
631
|
+
## 4.1.1
|
|
632
|
+
|
|
633
|
+
### Patch Changes
|
|
634
|
+
|
|
635
|
+
- 1344f9d: **Deps:** Add previously undeclared peer deps
|
|
636
|
+
- Updated dependencies [1344f9d]
|
|
637
|
+
- Updated dependencies [1344f9d]
|
|
638
|
+
- Updated dependencies [2921f0e]
|
|
639
|
+
- @sebgroup/green-core@1.22.2
|
|
640
|
+
- @sebgroup/extract@3.0.2
|
|
641
|
+
|
|
642
|
+
## 4.1.0
|
|
643
|
+
|
|
644
|
+
### Minor Changes
|
|
645
|
+
|
|
646
|
+
- 5a9e3ab: Modal animations
|
|
647
|
+
|
|
648
|
+
### Patch Changes
|
|
649
|
+
|
|
650
|
+
- Updated dependencies [a8b556f]
|
|
651
|
+
- Updated dependencies [096b662]
|
|
652
|
+
- Updated dependencies [5f224d0]
|
|
653
|
+
- Updated dependencies [1652e33]
|
|
654
|
+
- @sebgroup/green-core@1.22.0
|
|
655
|
+
|
|
656
|
+
## 4.0.0
|
|
657
|
+
|
|
658
|
+
### Major Changes
|
|
659
|
+
|
|
660
|
+
- 5831cf7: Update minimum Angular peer version to 16.2.12
|
|
661
|
+
|
|
662
|
+
### Patch Changes
|
|
663
|
+
|
|
664
|
+
- Updated dependencies [336743c]
|
|
665
|
+
- @sebgroup/green-core@1.20.1
|
|
666
|
+
|
|
667
|
+
## 3.8.0
|
|
668
|
+
|
|
669
|
+
### Minor Changes
|
|
670
|
+
|
|
671
|
+
- 38a8550: Input for disabling body scroll on NggModal
|
|
672
|
+
|
|
673
|
+
## 3.7.0
|
|
674
|
+
|
|
675
|
+
### Minor Changes
|
|
676
|
+
|
|
677
|
+
- 0aeaa98: **Sub-packages:** Components in `@sebgroup/green-angular` are now exported as separate sub-packages for better tree-shaking.
|
|
678
|
+
|
|
679
|
+
### Patch Changes
|
|
680
|
+
|
|
681
|
+
- Updated dependencies [0aeaa98]
|
|
682
|
+
- Updated dependencies [a8941c7]
|
|
683
|
+
- @sebgroup/green-core@1.18.0
|
|
684
|
+
|
|
685
|
+
## 3.6.3
|
|
686
|
+
|
|
687
|
+
### Patch Changes
|
|
688
|
+
|
|
689
|
+
- f8758d9: **Sub-path imports:** Fix missing filename on import paths
|
|
690
|
+
|
|
691
|
+
## 3.6.2
|
|
692
|
+
|
|
693
|
+
### Patch Changes
|
|
694
|
+
|
|
695
|
+
- 57fb099: Publish previously failed version
|
|
696
|
+
|
|
697
|
+
## 3.6.1
|
|
698
|
+
|
|
699
|
+
### Patch Changes
|
|
700
|
+
|
|
701
|
+
- 80b4050: Update underlying Core components to use sub path imports
|
|
702
|
+
- Updated dependencies [5b84660]
|
|
703
|
+
- Updated dependencies [e20574d]
|
|
704
|
+
- Updated dependencies [80b4050]
|
|
705
|
+
- Updated dependencies [80b4050]
|
|
706
|
+
- @sebgroup/green-core@1.16.0
|
|
707
|
+
- @sebgroup/chlorophyll@3.3.4
|
|
708
|
+
|
|
709
|
+
## 3.6.0
|
|
710
|
+
|
|
711
|
+
### Minor Changes
|
|
712
|
+
|
|
713
|
+
- d4e06e7: New component: Sortable list
|
|
714
|
+
|
|
715
|
+
### Patch Changes
|
|
716
|
+
|
|
717
|
+
- Updated dependencies [d4e06e7]
|
|
718
|
+
- @sebgroup/chlorophyll@3.2.0
|
|
719
|
+
|
|
720
|
+
## 3.5.2
|
|
721
|
+
|
|
722
|
+
### Patch Changes
|
|
723
|
+
|
|
724
|
+
- 7cb209f: Datepicker to take strings as value
|
|
725
|
+
- Updated dependencies [feb1712]
|
|
726
|
+
- @sebgroup/chlorophyll@3.1.3
|
|
727
|
+
|
|
728
|
+
## 3.5.1
|
|
729
|
+
|
|
730
|
+
### Patch Changes
|
|
731
|
+
|
|
732
|
+
- dc45b5e: fixed dropdown headings
|
|
733
|
+
- Updated dependencies [f4d7fe7]
|
|
734
|
+
- Updated dependencies [80c0cdf]
|
|
735
|
+
- @sebgroup/green-core@1.9.1
|
|
736
|
+
- @sebgroup/chlorophyll@3.1.2
|
|
737
|
+
|
|
738
|
+
## 3.5.0
|
|
739
|
+
|
|
740
|
+
### Minor Changes
|
|
741
|
+
|
|
742
|
+
- 7820e8c: **Dropdown**
|
|
743
|
+
|
|
744
|
+
- Add `maxHeight` input
|
|
745
|
+
|
|
746
|
+
- bb83849: **Datepicker:** Added support for disabling dates
|
|
747
|
+
|
|
748
|
+
- `disabled-weekends` will disable all weekend days in the calendar view
|
|
749
|
+
- `disabled-dates` allows to specify an array of dates that should be disabled in the calendar view
|
|
750
|
+
|
|
751
|
+
### Patch Changes
|
|
752
|
+
|
|
753
|
+
- Updated dependencies [bb83849]
|
|
754
|
+
- Updated dependencies [7820e8c]
|
|
755
|
+
- Updated dependencies [7820e8c]
|
|
756
|
+
- @sebgroup/green-core@1.9.0
|
|
757
|
+
|
|
758
|
+
## 3.4.0
|
|
759
|
+
|
|
760
|
+
### Minor Changes
|
|
761
|
+
|
|
762
|
+
- c0a99dd: Adds the Cell Table component
|
|
763
|
+
- a1c5e60: New component: Grouped list
|
|
764
|
+
|
|
765
|
+
### Patch Changes
|
|
766
|
+
|
|
767
|
+
- Updated dependencies [a1c5e60]
|
|
768
|
+
- @sebgroup/green-core@1.8.0
|
|
769
|
+
- @sebgroup/chlorophyll@3.1.1
|
|
770
|
+
|
|
771
|
+
## 3.3.0
|
|
772
|
+
|
|
773
|
+
### Minor Changes
|
|
774
|
+
|
|
775
|
+
- 007f8ac: **Datepicker and Dropdown**
|
|
776
|
+
|
|
777
|
+
- Add small variant
|
|
778
|
+
- Add attribute for hiding label
|
|
779
|
+
- Align style with Figma
|
|
780
|
+
|
|
781
|
+
### Patch Changes
|
|
782
|
+
|
|
783
|
+
- Updated dependencies [78e09aa]
|
|
784
|
+
- Updated dependencies [007f8ac]
|
|
785
|
+
- @sebgroup/extract@3.0.1
|
|
786
|
+
- @sebgroup/chlorophyll@3.1.0
|
|
787
|
+
- @sebgroup/green-core@1.7.0
|
|
788
|
+
|
|
789
|
+
## 3.2.0
|
|
790
|
+
|
|
791
|
+
### Minor Changes
|
|
792
|
+
|
|
793
|
+
- 158d93a: Add `<gds-menu-heading>`, which can be used to group options and menu items in Dropdown and Context menu components.
|
|
794
|
+
|
|
795
|
+
### Patch Changes
|
|
796
|
+
|
|
797
|
+
- Updated dependencies [158d93a]
|
|
798
|
+
- Updated dependencies [e0d3f09]
|
|
799
|
+
- Updated dependencies [d8de14a]
|
|
800
|
+
- @sebgroup/green-core@1.6.0
|
|
801
|
+
- @sebgroup/chlorophyll@3.0.5
|
|
802
|
+
|
|
803
|
+
## 3.1.0
|
|
804
|
+
|
|
805
|
+
### Minor Changes
|
|
806
|
+
|
|
807
|
+
- 5a70b2f: Context menu: updated style and functionality
|
|
808
|
+
|
|
809
|
+
### Patch Changes
|
|
810
|
+
|
|
811
|
+
- 88d15d6: Update visible value when Dropdown/Datepicker formGroup changed programatically
|
|
812
|
+
- 90672d7: Dropdown: Recalculate display text when options list changes. Closes #1192
|
|
813
|
+
- Updated dependencies [5a70b2f]
|
|
814
|
+
- Updated dependencies [cace30b]
|
|
815
|
+
- @sebgroup/green-core@1.5.0
|
|
816
|
+
|
|
817
|
+
## 3.0.4
|
|
818
|
+
|
|
819
|
+
### Patch Changes
|
|
820
|
+
|
|
821
|
+
- e7797a7: Modal should close when clicking on backdrop. Fixes #1182
|
|
822
|
+
|
|
823
|
+
This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
|
|
824
|
+
|
|
825
|
+
## [3.0.3](https://github.com/seb-oss/green/compare/@sebgroup/green-angular@3.0.2...@sebgroup/green-angular@3.0.3) (2024-01-30)
|
|
826
|
+
|
|
827
|
+
### Bug Fixes
|
|
828
|
+
|
|
829
|
+
- **angular:** add export for Core Wrapper Module ([#1184](https://github.com/seb-oss/green/issues/1184)) ([5b23830](https://github.com/seb-oss/green/commit/5b23830f4c4db8119c1f4d606d9f016801500b70))
|
|
830
|
+
|
|
831
|
+
## [3.0.2](https://github.com/seb-oss/green/compare/@sebgroup/green-angular@3.0.1...@sebgroup/green-angular@3.0.2) (2024-01-26)
|
|
832
|
+
|
|
833
|
+
### Bug Fixes
|
|
834
|
+
|
|
835
|
+
- **angular/modals:** apply updated class names ([#1179](https://github.com/seb-oss/green/issues/1179)) ([9985503](https://github.com/seb-oss/green/commit/9985503fcac7e09bb6ca5d58810a5c09ea15023a))
|
|
836
|
+
|
|
837
|
+
## [3.0.1](https://github.com/seb-oss/green/compare/@sebgroup/green-angular@3.0.0...@sebgroup/green-angular@3.0.1) (2024-01-22)
|
|
838
|
+
|
|
839
|
+
### Bug Fixes
|
|
840
|
+
|
|
841
|
+
- **angular/dropdown:** incorrectly supplying value in filter callback adapter ([#1167](https://github.com/seb-oss/green/issues/1167)) ([101a23c](https://github.com/seb-oss/green/commit/101a23c08b8b70f0179ae0829f7e8b772ea7317e))
|
|
842
|
+
- **datepicker:** forward all props to web component ([#1168](https://github.com/seb-oss/green/issues/1168)) ([00b0922](https://github.com/seb-oss/green/commit/00b092271f345abe521e8af74b7c4392d8b8db4c))
|
|
843
|
+
|
|
844
|
+
# [3.0.0](https://github.com/seb-oss/green/compare/@sebgroup/green-angular@2.1.3...@sebgroup/green-angular@3.0.0) (2024-01-19)
|
|
845
|
+
|
|
846
|
+
### Bug Fixes
|
|
847
|
+
|
|
848
|
+
- **dropdown:** pass down `syncPopoverWidth` to core component ([#1161](https://github.com/seb-oss/green/issues/1161)) ([4c48135](https://github.com/seb-oss/green/commit/4c48135e465af81ef5074753f2d819244ac3a9d5))
|
|
849
|
+
|
|
850
|
+
### Features
|
|
851
|
+
|
|
852
|
+
- Datepicker web component in Green Core ([#1154](https://github.com/seb-oss/green/issues/1154)) ([707d456](https://github.com/seb-oss/green/commit/707d45602ebf157af432ee85c41c98be01b655a3))
|
|
853
|
+
- **datepicker:** replace underlying implementation in React and Angular ([#1164](https://github.com/seb-oss/green/issues/1164)) ([ececf0a](https://github.com/seb-oss/green/commit/ececf0aa12078a7b4fbeeae95861cf75e9194e31))
|
|
854
|
+
|
|
855
|
+
### BREAKING CHANGES
|
|
856
|
+
|
|
857
|
+
- **datepicker:** \* `locale` option has been removed. Localization is handled
|
|
858
|
+
in Green Core by `@lit/localize`
|
|
859
|
+
- `currentDate` is deprecated. Use `value` instead.
|
|
860
|
+
- `selectedDate` is deprecated. Use `value` instead.
|
|
861
|
+
- `useCurrentTime` is removed
|
|
862
|
+
- `closeOnSelect` is removed (popover will now always close when a value is selected)
|
|
863
|
+
- `DatepickerOptions` moved from Extract and can be imported from React or Angular package instead.
|
|
864
|
+
|
|
865
|
+
## [2.1.3](https://github.com/seb-oss/green/compare/@sebgroup/green-angular@2.1.2...@sebgroup/green-angular@2.1.3) (2024-01-16)
|
|
866
|
+
|
|
867
|
+
### Bug Fixes
|
|
868
|
+
|
|
869
|
+
- **angular/pagination:** fix keyboard navigation ([#1157](https://github.com/seb-oss/green/issues/1157)) ([cb9ba95](https://github.com/seb-oss/green/commit/cb9ba9575bc6533ab154e0d15c9f46aa29a74fba))
|
|
870
|
+
|
|
871
|
+
## [2.1.2](https://github.com/seb-oss/green/compare/@sebgroup/green-angular@2.1.1...@sebgroup/green-angular@2.1.2) (2023-12-06)
|
|
872
|
+
|
|
873
|
+
### Bug Fixes
|
|
874
|
+
|
|
875
|
+
- ๐ update track background when min and max values change ([#1146](https://github.com/seb-oss/green/issues/1146)) ([17d0b80](https://github.com/seb-oss/green/commit/17d0b80283a0601821c5205e4a3d719b8c572586))
|
|
876
|
+
|
|
877
|
+
## [2.1.1](https://github.com/seb-oss/green/compare/@sebgroup/green-angular@2.1.0...@sebgroup/green-angular@2.1.1) (2023-11-29)
|
|
878
|
+
|
|
879
|
+
### Bug Fixes
|
|
880
|
+
|
|
881
|
+
- **core:** downgrade to `lit@ห2.8.0` ([#1134](https://github.com/seb-oss/green/issues/1134)) ([bee1a90](https://github.com/seb-oss/green/commit/bee1a90bb48c2855b23849fbb30daaa991138dc8))
|
|
882
|
+
|
|
883
|
+
# [2.1.0](https://github.com/seb-oss/green/compare/@sebgroup/green-angular@2.0.3...@sebgroup/green-angular@2.1.0) (2023-11-22)
|
|
884
|
+
|
|
885
|
+
### Bug Fixes
|
|
886
|
+
|
|
887
|
+
- ๐ angular modal z-index ([#1104](https://github.com/seb-oss/green/issues/1104)) ([8c88de3](https://github.com/seb-oss/green/commit/8c88de30c48ddb7e0a4a8abdc3b97d8310183069))
|
|
888
|
+
- **dropdown:** hidden overflow with ellipsis by default ([#1114](https://github.com/seb-oss/green/issues/1114)) ([9a2cce7](https://github.com/seb-oss/green/commit/9a2cce7cb7549ef3bff6b4086407fcb80f49cc72))
|
|
889
|
+
|
|
890
|
+
### Features
|
|
891
|
+
|
|
892
|
+
- **core/context-menu:** add context menu component to Green Core, and use for Angular and React ([#1125](https://github.com/seb-oss/green/issues/1125)) ([1aacb43](https://github.com/seb-oss/green/commit/1aacb43d9afedd34316f2c96c10d534b5d487aa6))
|
|
893
|
+
|
|
894
|
+
## [2.0.4](https://github.com/seb-oss/green/compare/@sebgroup/green-angular@2.0.3...@sebgroup/green-angular@2.0.4) (2023-11-08)
|
|
895
|
+
|
|
896
|
+
### Bug Fixes
|
|
897
|
+
|
|
898
|
+
- ๐ angular modal z-index ([#1104](https://github.com/seb-oss/green/issues/1104)) ([8c88de3](https://github.com/seb-oss/green/commit/8c88de30c48ddb7e0a4a8abdc3b97d8310183069))
|
|
899
|
+
|
|
900
|
+
## [2.0.4](https://github.com/seb-oss/green/compare/@sebgroup/green-angular@2.0.3...@sebgroup/green-angular@2.0.4) (2023-11-08)
|
|
901
|
+
|
|
902
|
+
### Bug Fixes
|
|
903
|
+
|
|
904
|
+
- ๐ angular modal z-index ([#1104](https://github.com/seb-oss/green/issues/1104)) ([28b6b83](https://github.com/seb-oss/green/commit/28b6b83fcc1ab7699ee28d20b0a89e6740361b75))
|
|
905
|
+
|
|
906
|
+
## [2.0.3](https://github.com/seb-oss/green/compare/@sebgroup/green-angular@2.0.2...@sebgroup/green-angular@2.0.3) (2023-11-07)
|
|
907
|
+
|
|
908
|
+
### Bug Fixes
|
|
909
|
+
|
|
910
|
+
- **angular/context-menu:** remove border ([#1097](https://github.com/seb-oss/green/issues/1097)) ([4ce4939](https://github.com/seb-oss/green/commit/4ce493904d5b1e9487debd17cb34385e5d8cbd8b))
|
|
911
|
+
|
|
912
|
+
## [2.0.2](https://github.com/seb-oss/green/compare/@sebgroup/green-angular@2.0.1...@sebgroup/green-angular@2.0.2) (2023-11-01)
|
|
913
|
+
|
|
914
|
+
### Bug Fixes
|
|
915
|
+
|
|
916
|
+
- **angular/dropdown:** correct additional regressions ([#1087](https://github.com/seb-oss/green/issues/1087)) ([57f7f4b](https://github.com/seb-oss/green/commit/57f7f4b685efab17fba482de3fd66e23f32e3486))
|
|
917
|
+
|
|
918
|
+
## [2.0.1](https://github.com/seb-oss/green/compare/@sebgroup/green-angular@2.0.0...@sebgroup/green-angular@2.0.1) (2023-10-31)
|
|
919
|
+
|
|
920
|
+
### Bug Fixes
|
|
921
|
+
|
|
922
|
+
- **angular/dropdown:** issues with Dropdown custom buttons ([#1084](https://github.com/seb-oss/green/issues/1084)) ([eebb5e4](https://github.com/seb-oss/green/commit/eebb5e4cc75d8415edcb7efc125befac4ca1dde3))
|
|
923
|
+
|
|
924
|
+
# [2.0.0](https://github.com/seb-oss/green/compare/@sebgroup/green-angular@1.10.0...@sebgroup/green-angular@2.0.0) (2023-10-30)
|
|
925
|
+
|
|
926
|
+
### Bug Fixes
|
|
927
|
+
|
|
928
|
+
- **context-menu:** context menu imports and docs ([#1074](https://github.com/seb-oss/green/issues/1074)) ([34b3a35](https://github.com/seb-oss/green/commit/34b3a35e284e4a6c7c1acc145ca80b869574dee5))
|
|
929
|
+
- **dropdown:** start using Core Dropdown in Angular and React ([#1016](https://github.com/seb-oss/green/issues/1016)) ([7f6f8f5](https://github.com/seb-oss/green/commit/7f6f8f514cdbc4c1881f9f2652cbc774246a91a6))
|
|
930
|
+
|
|
931
|
+
- Updated focus states in Chlorophyll (#1050) ([d9ee451](https://github.com/seb-oss/green/commit/d9ee451030387576f2d9b768de665be2876e2ad9)), closes [#1050](https://github.com/seb-oss/green/issues/1050)
|
|
932
|
+
|
|
933
|
+
### BREAKING CHANGES
|
|
934
|
+
|
|
935
|
+
- Some grouped inputs will need the `group-focus` class added to the wrapper
|
|
936
|
+
- **dropdown:** Updated Angular, Replaced Dropdown component internals,
|
|
937
|
+
removed Dropdown from Extract
|
|
938
|
+
|
|
939
|
+
# [1.10.0](https://github.com/seb-oss/green/compare/@sebgroup/green-angular@1.9.0...@sebgroup/green-angular@1.10.0) (2023-10-11)
|
|
940
|
+
|
|
941
|
+
### Features
|
|
942
|
+
|
|
943
|
+
- **slider:** use `inputmode='numeric'` and add `enterkeyhint` support ([#1049](https://github.com/seb-oss/green/issues/1049)) ([44ac574](https://github.com/seb-oss/green/commit/44ac574112b5621c87f3688f02669a9d2071160f))
|
|
944
|
+
|
|
945
|
+
# [1.9.0](https://github.com/seb-oss/green/compare/@sebgroup/green-angular@1.8.5...@sebgroup/green-angular@1.9.0) (2023-09-01)
|
|
946
|
+
|
|
947
|
+
### Features
|
|
948
|
+
|
|
949
|
+
- **angular:** modal customizable header and footer ([#982](https://github.com/seb-oss/green/issues/982)) ([cdc1668](https://github.com/seb-oss/green/commit/cdc1668013316459c36d13f55a6cc981e16f377b))
|
|
950
|
+
|
|
951
|
+
## [1.8.5](https://github.com/seb-oss/green/compare/@sebgroup/green-angular@1.8.4...@sebgroup/green-angular@1.8.5) (2023-08-30)
|
|
952
|
+
|
|
953
|
+
### Bug Fixes
|
|
954
|
+
|
|
955
|
+
- ๐ wrong position after zoom-in due to cached position ([#976](https://github.com/seb-oss/green/issues/976)) ([b114586](https://github.com/seb-oss/green/commit/b11458689acfcf2f6c7683c31684c86d69696357))
|
|
956
|
+
- Angular modal scroll iOS ([#979](https://github.com/seb-oss/green/issues/979)) ([6a165a2](https://github.com/seb-oss/green/commit/6a165a2e532af64b194097e43e67c218230f49a2))
|
|
957
|
+
|
|
958
|
+
## [1.8.4](https://github.com/seb-oss/green/compare/@sebgroup/green-angular@1.8.3...@sebgroup/green-angular@1.8.4) (2023-08-23)
|
|
959
|
+
|
|
960
|
+
### Bug Fixes
|
|
961
|
+
|
|
962
|
+
- ๐ wrong calculation of y position for context menu ([#973](https://github.com/seb-oss/green/issues/973)) ([d90ccc8](https://github.com/seb-oss/green/commit/d90ccc87cd62c0eecdca01f04e705c5127af69ca))
|
|
963
|
+
|
|
964
|
+
## [1.8.3](https://github.com/seb-oss/green/compare/@sebgroup/green-angular@1.8.2...@sebgroup/green-angular@1.8.3) (2023-08-21)
|
|
965
|
+
|
|
966
|
+
### Bug Fixes
|
|
967
|
+
|
|
968
|
+
- ๐ fix context menu position in relative parent ([#970](https://github.com/seb-oss/green/issues/970)) ([d8f208e](https://github.com/seb-oss/green/commit/d8f208ed4766e0b940ebf4491ca4158715380d0f))
|
|
969
|
+
|
|
970
|
+
## [1.8.2](https://github.com/seb-oss/green/compare/@sebgroup/green-angular@1.8.1...@sebgroup/green-angular@1.8.2) (2023-08-17)
|
|
971
|
+
|
|
972
|
+
### Bug Fixes
|
|
973
|
+
|
|
974
|
+
- **datepicker:** correctly reflect state after formGroup reset ([#964](https://github.com/seb-oss/green/issues/964)) ([b300d36](https://github.com/seb-oss/green/commit/b300d360232f8fcbabc84dd42ce6867e023e92a8))
|
|
975
|
+
|
|
976
|
+
## [1.8.1](https://github.com/seb-oss/green/compare/@sebgroup/green-angular@1.8.0...@sebgroup/green-angular@1.8.1) (2023-08-08)
|
|
977
|
+
|
|
978
|
+
# [1.8.0](https://github.com/seb-oss/green/compare/@sebgroup/green-angular@1.7.2...@sebgroup/green-angular@1.8.0) (2023-07-07)
|
|
979
|
+
|
|
980
|
+
### Bug Fixes
|
|
981
|
+
|
|
982
|
+
- **slider:** mobile version, small input on desktop, added `aria-labelledby` ([#929](https://github.com/seb-oss/green/issues/929)) ([456c934](https://github.com/seb-oss/green/commit/456c934443e94766231c284b3f1eaa4e8bc6b040)), closes [#902](https://github.com/seb-oss/green/issues/902) [#920](https://github.com/seb-oss/green/issues/920) [#923](https://github.com/seb-oss/green/issues/923)
|
|
983
|
+
|
|
984
|
+
### Features
|
|
985
|
+
|
|
986
|
+
- **dropdown:** ๐ธ new input to set fixed placement of popover ([#930](https://github.com/seb-oss/green/issues/930)) ([ff782d6](https://github.com/seb-oss/green/commit/ff782d67602883e7f56af239d08a8c44a264f321))
|
|
987
|
+
|
|
988
|
+
## [1.7.2](https://github.com/seb-oss/green/compare/@sebgroup/green-angular@1.7.1...@sebgroup/green-angular@1.7.2) (2023-05-24)
|
|
989
|
+
|
|
990
|
+
### Bug Fixes
|
|
991
|
+
|
|
992
|
+
- ๐ Context menu on scroll markForCheck and css fixes ([#897](https://github.com/seb-oss/green/issues/897)) ([89b83fc](https://github.com/seb-oss/green/commit/89b83fc4d09456b8f983eb2ece14fa9ea182fc5a))
|
|
993
|
+
|
|
994
|
+
## [1.7.1](https://github.com/seb-oss/green/compare/@sebgroup/green-angular@1.7.0...@sebgroup/green-angular@1.7.1) (2023-05-12)
|
|
995
|
+
|
|
996
|
+
### Bug Fixes
|
|
997
|
+
|
|
998
|
+
- ๐ context-menu close on scroll or resize, button hover ([e5789c5](https://github.com/seb-oss/green/commit/e5789c535c5dfe8d25bafe495acad7687c45fbe3))
|
|
999
|
+
|
|
1000
|
+
# [1.7.0](https://github.com/seb-oss/green/compare/@sebgroup/green-angular@1.6.0...@sebgroup/green-angular@1.7.0) (2023-05-05)
|
|
1001
|
+
|
|
1002
|
+
### Features
|
|
1003
|
+
|
|
1004
|
+
- **dropdown:** allow custom template for dropdown button ([#860](https://github.com/seb-oss/green/issues/860)) ([4a05eea](https://github.com/seb-oss/green/commit/4a05eeac9769d8c7c1a0838e14b76305d8edcd89))
|
|
1005
|
+
|
|
1006
|
+
# [1.6.0](https://github.com/seb-oss/green/compare/@sebgroup/green-angular@1.5.1...@sebgroup/green-angular@1.6.0) (2023-05-03)
|
|
1007
|
+
|
|
1008
|
+
### Bug Fixes
|
|
1009
|
+
|
|
1010
|
+
- **context-menu:** add missing export ([#861](https://github.com/seb-oss/green/issues/861)) ([af31fd3](https://github.com/seb-oss/green/commit/af31fd30cb2883cfda09485d23b07dd32f653a2b))
|
|
1011
|
+
|
|
1012
|
+
### Features
|
|
1013
|
+
|
|
1014
|
+
- ๐ธ Context Menu ([#852](https://github.com/seb-oss/green/issues/852)) ([8ede687](https://github.com/seb-oss/green/commit/8ede687c363f3fbc9760d958ae17a9c467ca90e6))
|
|
1015
|
+
|
|
1016
|
+
## [1.5.1](https://github.com/seb-oss/green/compare/@sebgroup/green-angular@1.5.0...@sebgroup/green-angular@1.5.1) (2023-05-03)
|
|
1017
|
+
|
|
1018
|
+
### Bug Fixes
|
|
1019
|
+
|
|
1020
|
+
- ๐ Missing Output decorator to wizard step card ([#859](https://github.com/seb-oss/green/issues/859)) ([68dd83e](https://github.com/seb-oss/green/commit/68dd83ead59181067337932c284d69ca0958befe))
|
|
1021
|
+
|
|
1022
|
+
# [1.5.0](https://github.com/seb-oss/green/compare/@sebgroup/green-angular@1.4.0...@sebgroup/green-angular@1.5.0) (2023-05-02)
|
|
1023
|
+
|
|
1024
|
+
### Features
|
|
1025
|
+
|
|
1026
|
+
- **wizard-step-card:** ๐ธ Add handle edit click event emitter ([#856](https://github.com/seb-oss/green/issues/856)) ([dc21976](https://github.com/seb-oss/green/commit/dc219760024cb06f7d39a3189136ac7c51353b31))
|
|
1027
|
+
|
|
1028
|
+
# [1.4.0](https://github.com/seb-oss/green/compare/@sebgroup/green-angular@1.3.1...@sebgroup/green-angular@1.4.0) (2023-04-28)
|
|
1029
|
+
|
|
1030
|
+
### Bug Fixes
|
|
1031
|
+
|
|
1032
|
+
- build issue with InPageWizard ([#855](https://github.com/seb-oss/green/issues/855)) ([8949282](https://github.com/seb-oss/green/commit/89492823816d30d78ec87a85410323d34440bdf2))
|
|
1033
|
+
|
|
1034
|
+
### Features
|
|
1035
|
+
|
|
1036
|
+
- ๐ธ Angular in-page wizard step card ([#853](https://github.com/seb-oss/green/issues/853)) ([c8b5eb4](https://github.com/seb-oss/green/commit/c8b5eb4d5140e9636538f329096e11f715884fc2))
|
|
1037
|
+
|
|
1038
|
+
## [1.3.1](https://github.com/seb-oss/green/compare/@sebgroup/green-angular@1.3.0...@sebgroup/green-angular@1.3.1) (2023-04-19)
|
|
1039
|
+
|
|
1040
|
+
### Bug Fixes
|
|
1041
|
+
|
|
1042
|
+
- **angular:** downgrade base version of Angular to 14.3.0 ([#851](https://github.com/seb-oss/green/issues/851)) ([44b3819](https://github.com/seb-oss/green/commit/44b3819d847f1b255f1fc103fad0c31e3c99bcd0))
|
|
1043
|
+
|
|
1044
|
+
# [1.3.0](https://github.com/seb-oss/green/compare/@sebgroup/green-angular@1.2.0...@sebgroup/green-angular@1.3.0) (2023-04-13)
|
|
1045
|
+
|
|
1046
|
+
### Features
|
|
1047
|
+
|
|
1048
|
+
- **slider:** add support for unit field ([#828](https://github.com/seb-oss/green/issues/828)) ([55c5f70](https://github.com/seb-oss/green/commit/55c5f70aa2716e526ad781d2a1b71803288e75a2))
|
|
1049
|
+
|
|
1050
|
+
# [1.2.0](https://github.com/seb-oss/green/compare/@sebgroup/green-angular@1.1.0...@sebgroup/green-angular@1.2.0) (2023-03-29)
|
|
1051
|
+
|
|
1052
|
+
### Bug Fixes
|
|
1053
|
+
|
|
1054
|
+
- ๐ implement on changes to detech when value has changed ([#803](https://github.com/seb-oss/green/issues/803)) ([19fc2d9](https://github.com/seb-oss/green/commit/19fc2d907c6b69da59ecd90e2f98773cab800a77))
|
|
1055
|
+
- ๐ lint issues ([aec54a9](https://github.com/seb-oss/green/commit/aec54a918b6930b25cefece773ba5ee3d575f6b1))
|
|
1056
|
+
- bump package versions ([#800](https://github.com/seb-oss/green/issues/800)) ([ec5eb19](https://github.com/seb-oss/green/commit/ec5eb19c89f94aa4a322d762138806bedaa176e3))
|
|
1057
|
+
|
|
1058
|
+
### Features
|
|
1059
|
+
|
|
1060
|
+
- ๐ธ new slider component for react ([8ba92b9](https://github.com/seb-oss/green/commit/8ba92b9e24f51450cc559c54503a0d29a1349f02))
|
|
1061
|
+
|
|
1062
|
+
# [1.1.0](https://github.com/seb-oss/green/compare/@sebgroup/green-angular@1.0.4...@sebgroup/green-angular@1.1.0) (2023-03-16)
|
|
1063
|
+
|
|
1064
|
+
### Bug Fixes
|
|
1065
|
+
|
|
1066
|
+
- ๐ lint issues ([b49b683](https://github.com/seb-oss/green/commit/b49b6834f13085f829e22597dc642f0ae9e1a027))
|
|
1067
|
+
- ๐ new angular component ([9bcf96b](https://github.com/seb-oss/green/commit/9bcf96b27565e69fc821f23ed131f52d3d4d6434))
|
|
1068
|
+
- ๐ remove border on mozilla browsers ([091a4ce](https://github.com/seb-oss/green/commit/091a4ceabe446d1ae17117a3efa821f850512d23))
|
|
1069
|
+
- ๐ update based on pr comments ([0652fef](https://github.com/seb-oss/green/commit/0652fef5ca3e06601d1fad80d53ff80caee96c28))
|
|
1070
|
+
- ๐ use native disabled attribute ([7b23e73](https://github.com/seb-oss/green/commit/7b23e737774c6be24e9682e3adf07b8634937da8))
|
|
1071
|
+
- **angular:** empty pagination ([1fc6e30](https://github.com/seb-oss/green/commit/1fc6e306b393f9bc5f01c5847605f62f66ac17e4))
|
|
1072
|
+
- **chlorophyll:** reset green styles ([12c33bd](https://github.com/seb-oss/green/commit/12c33bd2ce41eca65e965f4ddc27c1f4b97b66a1))
|
|
1073
|
+
|
|
1074
|
+
### Features
|
|
1075
|
+
|
|
1076
|
+
- ๐ธ add input instruction prop to the component ([d02f204](https://github.com/seb-oss/green/commit/d02f204dc4b6606b9104dcbca21be5c2540dcfb7))
|
|
1077
|
+
- ๐ธ add output events ([3dd4cf2](https://github.com/seb-oss/green/commit/3dd4cf20e970e0c000497d5464e14e6a78740fcd))
|
|
1078
|
+
- ๐ธ add placeholder prop ([7443da6](https://github.com/seb-oss/green/commit/7443da6e16660c5908b6f823d91f66a6f0a99ac0))
|
|
1079
|
+
- ๐ธ new chlorophyll slider ([312f05c](https://github.com/seb-oss/green/commit/312f05c0984c0203821573477c6b7784198d9243))
|
|
1080
|
+
- ๐ธ new progress slider disabled theme ([d4e6870](https://github.com/seb-oss/green/commit/d4e6870529750089d51d08a0c6bab1d6eb9e3ded))
|
|
1081
|
+
- **angular:** add pagination ([9c30c95](https://github.com/seb-oss/green/commit/9c30c9558023ba79e52112578ad5c7a35a12318b))
|
|
1082
|
+
- **extract:** pagination i18n ([d5b74f6](https://github.com/seb-oss/green/commit/d5b74f6bf394ddfbadaf90e901d49c9e6402ed86))
|
|
1083
|
+
|
|
1084
|
+
## [1.0.4](https://github.com/seb-oss/green/compare/@sebgroup/green-angular@1.0.3...@sebgroup/green-angular@1.0.4) (2023-03-01)
|
|
1085
|
+
|
|
1086
|
+
### Bug Fixes
|
|
1087
|
+
|
|
1088
|
+
- **angular:** datepicker ontouched ([dfa493e](https://github.com/seb-oss/green/commit/dfa493ebcd4571c082e6d8f91ffde1f48a2b48f6))
|
|
1089
|
+
- **angular:** datepicker rerender ([ddebf20](https://github.com/seb-oss/green/commit/ddebf20e9a1e3f24879e79b74a326fed8eaaeb01))
|
|
1090
|
+
|
|
1091
|
+
## [1.0.3](https://github.com/seb-oss/green/compare/@sebgroup/green-angular@1.0.2...@sebgroup/green-angular@1.0.3) (2023-02-28)
|
|
1092
|
+
|
|
1093
|
+
### Bug Fixes
|
|
1094
|
+
|
|
1095
|
+
- **dropdown:** multiselect inside horizontal container ([5e27cf1](https://github.com/seb-oss/green/commit/5e27cf11095bbda3f0df16b2958b278d6b2eca86))
|
|
1096
|
+
|
|
1097
|
+
## [1.0.2](https://github.com/seb-oss/green/compare/@sebgroup/green-angular@1.0.1...@sebgroup/green-angular@1.0.2) (2023-02-28)
|
|
1098
|
+
|
|
1099
|
+
### Bug Fixes
|
|
1100
|
+
|
|
1101
|
+
- **angular:** dropdown form group ([42fbaa4](https://github.com/seb-oss/green/commit/42fbaa497b7f068d6f5ad8d8e8890784aff294be))
|
|
1102
|
+
|
|
1103
|
+
## [1.0.1](https://github.com/seb-oss/green/compare/@sebgroup/green-angular@1.0.0...@sebgroup/green-angular@1.0.1) (2023-02-27)
|
|
1104
|
+
|
|
1105
|
+
### Bug Fixes
|
|
1106
|
+
|
|
1107
|
+
- **angular:** datepicker detect changed options ([023b858](https://github.com/seb-oss/green/commit/023b858af516d7027ec78620eb86ef6650191f5c))
|
|
1108
|
+
|
|
1109
|
+
# [1.0.0](https://github.com/seb-oss/green/compare/@sebgroup/green-angular@0.0.2...@sebgroup/green-angular@1.0.0) (2023-02-17)
|
|
1110
|
+
|
|
1111
|
+
### Dependency Updates
|
|
1112
|
+
|
|
1113
|
+
- `chlorophyll` updated to version `1.0.0`
|
|
1114
|
+
- `extract` updated to version `1.0.0`
|
|
1115
|
+
|
|
1116
|
+
### chore
|
|
1117
|
+
|
|
1118
|
+
- ๐ค angular release 1.0.0 ([4568979](https://github.com/seb-oss/green/commit/4568979921bc434f706ea9b9baa8803403e7be05))
|
|
1119
|
+
|
|
1120
|
+
### BREAKING CHANGES
|
|
1121
|
+
|
|
1122
|
+
- ๐งจ 1.0.0
|
|
1123
|
+
|
|
1124
|
+
## [0.0.2](https://github.com/seb-oss/green/compare/@sebgroup/green-angular@0.0.1...@sebgroup/green-angular@0.0.2) (2023-02-07)
|
|
1125
|
+
|
|
1126
|
+
### Dependency Updates
|
|
1127
|
+
|
|
1128
|
+
- `chlorophyll` updated to version `1.0.0`
|
|
1129
|
+
- `extract` updated to version `1.0.0`
|
|
1130
|
+
|
|
1131
|
+
## [0.0.1](https://github.com/seb-oss/green/compare/@sebgroup/green-angular@1.0.0-beta.47...@sebgroup/green-angular@0.0.1) (2023-01-27)
|
|
1132
|
+
|
|
1133
|
+
### Dependency Updates
|
|
1134
|
+
|
|
1135
|
+
- `chlorophyll` updated to version `1.0.0`
|
|
1136
|
+
- `extract` updated to version `1.0.0`
|
|
1137
|
+
|
|
1138
|
+
### Bug Fixes
|
|
1139
|
+
|
|
1140
|
+
- ๐ removing trailing comma ([a0ff496](https://github.com/seb-oss/green/commit/a0ff4965a8f1a85e0d1fde9f037e2b0061ed2560))
|
|
1141
|
+
|
|
1142
|
+
# [1.0.0-beta.47](https://github.com/seb-oss/green/compare/@sebgroup/green-angular@1.0.0-beta.46...@sebgroup/green-angular@1.0.0-beta.47) (2023-01-26)
|
|
1143
|
+
|
|
1144
|
+
# [1.0.0-beta.46](https://github.com/seb-oss/green/compare/@sebgroup/green-angular@1.0.0-beta.45...@sebgroup/green-angular@1.0.0-beta.46) (2023-01-26)
|
|
1145
|
+
|
|
1146
|
+
### Bug Fixes
|
|
1147
|
+
|
|
1148
|
+
- ๐ not updated translations on texts changes fix ([c572b1c](https://github.com/seb-oss/green/commit/c572b1ce0675cc438f4a21ab8a48c6dd6d641273))
|
|
1149
|
+
- **accordion:** build error missing export ([746a250](https://github.com/seb-oss/green/commit/746a250a490e22d7a97e43eac56f587b16a28c0c))
|
|
1150
|
+
|
|
1151
|
+
### Features
|
|
1152
|
+
|
|
1153
|
+
- ๐ธ add new large button size for jumbotrons/heroes ([2b2c41c](https://github.com/seb-oss/green/commit/2b2c41cbd0d28ca28f65e598b92ccaec65107d65))
|
|
1154
|
+
- ๐ธ Angular modal focus functionality ([bd41200](https://github.com/seb-oss/green/commit/bd41200a3c0e398ff68deaf40ba83d2ecc4b0f9a))
|
|
1155
|
+
|
|
1156
|
+
### BREAKING CHANGES
|
|
1157
|
+
|
|
1158
|
+
- ๐งจ -
|
|
1159
|
+
|
|
1160
|
+
โ
Closes: -
|
|
1161
|
+
|
|
1162
|
+
# [1.0.0-beta.45](https://github.com/seb-oss/green/compare/@sebgroup/green-angular@1.0.0-beta.44...@sebgroup/green-angular@1.0.0-beta.45) (2023-01-12)
|
|
1163
|
+
|
|
1164
|
+
### Bug Fixes
|
|
1165
|
+
|
|
1166
|
+
- ๐ dropdown formControl reset functionality ([c0716ad](https://github.com/seb-oss/green/commit/c0716ad47aa92dac2152471654c4bfba2893beea)), closes [#690](https://github.com/seb-oss/green/issues/690)
|
|
1167
|
+
- ๐ export button module ([98fa6f4](https://github.com/seb-oss/green/commit/98fa6f4ba328abf772188a642062feb47ec1f6b2))
|
|
1168
|
+
|
|
1169
|
+
### BREAKING CHANGES
|
|
1170
|
+
|
|
1171
|
+
- ๐งจ --
|
|
1172
|
+
|
|
1173
|
+
# [1.0.0-beta.44](https://github.com/seb-oss/green/compare/@sebgroup/green-angular@1.0.0-beta.43...@sebgroup/green-angular@1.0.0-beta.44) (2022-12-23)
|
|
1174
|
+
|
|
1175
|
+
### Bug Fixes
|
|
1176
|
+
|
|
1177
|
+
- ๐ lint issues ([803b402](https://github.com/seb-oss/green/commit/803b402a23a69dbb21fac75963768074ffb85132))
|
|
1178
|
+
- ๐ Usage of close in alert, badge, button, card & modal ([71f2cb3](https://github.com/seb-oss/green/commit/71f2cb32b4a002118e8500c90115ccb294091ce5))
|
|
1179
|
+
|
|
1180
|
+
### Features
|
|
1181
|
+
|
|
1182
|
+
- ๐ธ new progress circle component for angular ([31a1fd2](https://github.com/seb-oss/green/commit/31a1fd21b4cab41ad6590646cd110dea5db629db))
|
|
1183
|
+
|
|
1184
|
+
# [1.0.0-beta.43](https://github.com/seb-oss/green/compare/@sebgroup/green-angular@1.0.0-beta.42...@sebgroup/green-angular@1.0.0-beta.43) (2022-12-12)
|
|
1185
|
+
|
|
1186
|
+
# [1.0.0-beta.42](https://github.com/seb-oss/green/compare/@sebgroup/green-angular@1.0.0-beta.41...@sebgroup/green-angular@1.0.0-beta.42) (2022-12-06)
|
|
1187
|
+
|
|
1188
|
+
# [1.0.0-beta.41](https://github.com/seb-oss/green/compare/@sebgroup/green-angular@1.0.0-beta.40...@sebgroup/green-angular@1.0.0-beta.41) (2022-11-30)
|
|
1189
|
+
|
|
1190
|
+
# [1.0.0-beta.40](https://github.com/seb-oss/green/compare/@sebgroup/green-angular@1.0.0-beta.39...@sebgroup/green-angular@1.0.0-beta.40) (2022-11-30)
|
|
1191
|
+
|
|
1192
|
+
# [1.0.0-beta.39](https://github.com/seb-oss/green/compare/@sebgroup/green-angular@1.0.0-beta.38...@sebgroup/green-angular@1.0.0-beta.39) (2022-11-28)
|
|
1193
|
+
|
|
1194
|
+
### Bug Fixes
|
|
1195
|
+
|
|
1196
|
+
- ๐ Updated react & angular components that has fieldsets ([f4525a1](https://github.com/seb-oss/green/commit/f4525a19d0963122801a0102b928481cb4ec1414))
|
|
1197
|
+
|
|
1198
|
+
### Features
|
|
1199
|
+
|
|
1200
|
+
- ๐ธ angular button ([13dac17](https://github.com/seb-oss/green/commit/13dac17f86de47c5720dade6f1734edbf9585566))
|
|
1201
|
+
- ๐ธ dropdown add formControl reset functionality ([88b3a55](https://github.com/seb-oss/green/commit/88b3a553a495b233e4287a8d23e8476be1ce0ea4))
|
|
1202
|
+
|
|
1203
|
+
### BREAKING CHANGES
|
|
1204
|
+
|
|
1205
|
+
- ๐งจ -
|
|
1206
|
+
|
|
1207
|
+
โ
Closes: 643
|
|
1208
|
+
|
|
1209
|
+
# [1.0.0-beta.38](https://github.com/seb-oss/green/compare/@sebgroup/green-angular@1.0.0-beta.37...@sebgroup/green-angular@1.0.0-beta.38) (2022-11-17)
|
|
1210
|
+
|
|
1211
|
+
# [1.0.0-beta.37](https://github.com/seb-oss/green/compare/@sebgroup/green-angular@1.0.0-beta.36...@sebgroup/green-angular@1.0.0-beta.37) (2022-11-17)
|
|
1212
|
+
|
|
1213
|
+
# [1.0.0-beta.36](https://github.com/seb-oss/green/compare/@sebgroup/green-angular@1.0.0-beta.35...@sebgroup/green-angular@1.0.0-beta.36) (2022-11-11)
|
|
1214
|
+
|
|
1215
|
+
### Features
|
|
1216
|
+
|
|
1217
|
+
- ๐ธ allow angular 14 ([5f61848](https://github.com/seb-oss/green/commit/5f618487f97807e28f7796707f9055bee9c79e1d)), closes [#620](https://github.com/seb-oss/green/issues/620)
|
|
1218
|
+
|
|
1219
|
+
# [1.0.0-beta.35](https://github.com/seb-oss/green/compare/@sebgroup/green-angular@1.0.0-beta.34...@sebgroup/green-angular@1.0.0-beta.35) (2022-11-10)
|
|
1220
|
+
|
|
1221
|
+
### Bug Fixes
|
|
1222
|
+
|
|
1223
|
+
- ๐ Dropdown search input space bar and arrows keys fixes ([ff6785c](https://github.com/seb-oss/green/commit/ff6785c842320838b462b5901099e54143144f1a))
|
|
1224
|
+
|
|
1225
|
+
### BREAKING CHANGES
|
|
1226
|
+
|
|
1227
|
+
- ๐งจ -
|
|
1228
|
+
|
|
1229
|
+
โ
Closes: -
|
|
1230
|
+
|
|
1231
|
+
# [1.0.0-beta.34](https://github.com/seb-oss/green/compare/@sebgroup/green-angular@1.0.0-beta.33...@sebgroup/green-angular@1.0.0-beta.34) (2022-11-08)
|
|
1232
|
+
|
|
1233
|
+
### Bug Fixes
|
|
1234
|
+
|
|
1235
|
+
- ๐ failing import, style-lint, ts error ([1556856](https://github.com/seb-oss/green/commit/15568561339d04cad5a146319df51bb43c2e1934))
|
|
1236
|
+
|
|
1237
|
+
# [1.0.0-beta.33](https://github.com/seb-oss/green/compare/@sebgroup/green-angular@1.0.0-beta.32...@sebgroup/green-angular@1.0.0-beta.33) (2022-11-08)
|
|
1238
|
+
|
|
1239
|
+
# [1.0.0-beta.32](https://github.com/seb-oss/green/compare/@sebgroup/green-angular@1.0.0-beta.31...@sebgroup/green-angular@1.0.0-beta.32) (2022-11-08)
|
|
1240
|
+
|
|
1241
|
+
# [1.0.0-beta.31](https://github.com/seb-oss/green/compare/@sebgroup/green-angular@1.0.0-beta.30...@sebgroup/green-angular@1.0.0-beta.31) (2022-11-08)
|
|
1242
|
+
|
|
1243
|
+
# [1.0.0-beta.30](https://github.com/seb-oss/green/compare/@sebgroup/green-angular@1.0.0-beta.29...@sebgroup/green-angular@1.0.0-beta.30) (2022-11-08)
|
|
1244
|
+
|
|
1245
|
+
# [1.0.0-beta.29](https://github.com/seb-oss/green/compare/@sebgroup/green-angular@1.0.0-beta.28...@sebgroup/green-angular@1.0.0-beta.29) (2022-11-08)
|
|
1246
|
+
|
|
1247
|
+
### Bug Fixes
|
|
1248
|
+
|
|
1249
|
+
- ๐ Removed check of observers ([23d8465](https://github.com/seb-oss/green/commit/23d846564bacbbbf329947ff6da37d113de8f081))
|
|
1250
|
+
- ๐ Removed unnecessary module exports ([4fc6418](https://github.com/seb-oss/green/commit/4fc6418820685db4f0c9d92837d96ec5b5d352ed))
|
|
1251
|
+
|
|
1252
|
+
### Features
|
|
1253
|
+
|
|
1254
|
+
- ๐ธ Modal (Angular) ([0ad1797](https://github.com/seb-oss/green/commit/0ad17974928a966070b02cf0c86ba1c9c7c9117c))
|
|
1255
|
+
|
|
1256
|
+
### Performance Improvements
|
|
1257
|
+
|
|
1258
|
+
- **modal:** onpush strategy ([7b30b2b](https://github.com/seb-oss/green/commit/7b30b2b3f48fcf4977708730cef9789458d319cc))
|
|
1259
|
+
|
|
1260
|
+
# [1.0.0-beta.28](https://github.com/seb-oss/green/compare/@sebgroup/green-angular@1.0.0-beta.27...@sebgroup/green-angular@1.0.0-beta.28) (2022-10-26)
|
|
1261
|
+
|
|
1262
|
+
# [1.0.0-beta.27](https://github.com/seb-oss/green/compare/@sebgroup/green-angular@1.0.0-beta.26...@sebgroup/green-angular@1.0.0-beta.27) (2022-10-12)
|
|
1263
|
+
|
|
1264
|
+
# [1.0.0-beta.26](https://github.com/seb-oss/green/compare/@sebgroup/green-angular@1.0.0-beta.25...@sebgroup/green-angular@1.0.0-beta.26) (2022-10-07)
|
|
1265
|
+
|
|
1266
|
+
### Features
|
|
1267
|
+
|
|
1268
|
+
- **dropdown:** select by value ([e2d3c6f](https://github.com/seb-oss/green/commit/e2d3c6fe94c16a17b004d3b4dac13eaf98da138a))
|
|
1269
|
+
|
|
1270
|
+
# [1.0.0-beta.25](https://github.com/seb-oss/green/compare/@sebgroup/green-angular@1.0.0-beta.24...@sebgroup/green-angular@1.0.0-beta.25) (2022-10-03)
|
|
1271
|
+
|
|
1272
|
+
# [1.0.0-beta.24](https://github.com/seb-oss/green/compare/@sebgroup/green-angular@1.0.0-beta.23...@sebgroup/green-angular@1.0.0-beta.24) (2022-09-27)
|
|
1273
|
+
|
|
1274
|
+
# [1.0.0-beta.23](https://github.com/seb-oss/green/compare/@sebgroup/green-angular@1.0.0-beta.22...@sebgroup/green-angular@1.0.0-beta.23) (2022-09-23)
|
|
1275
|
+
|
|
1276
|
+
# [1.0.0-beta.22](https://github.com/seb-oss/green/compare/@sebgroup/green-angular@1.0.0-beta.21...@sebgroup/green-angular@1.0.0-beta.22) (2022-09-20)
|
|
1277
|
+
|
|
1278
|
+
# [1.0.0-beta.21](https://github.com/seb-oss/green/compare/@sebgroup/green-angular@1.0.0-beta.20...@sebgroup/green-angular@1.0.0-beta.21) (2022-09-20)
|
|
1279
|
+
|
|
1280
|
+
### Features
|
|
1281
|
+
|
|
1282
|
+
- ๐ธ Dropdown - support search filter [#473](https://github.com/seb-oss/green/issues/473) ([4883331](https://github.com/seb-oss/green/commit/48833313c99661d83fa26066c42f12ff93e26d3c))
|
|
1283
|
+
|
|
1284
|
+
### BREAKING CHANGES
|
|
1285
|
+
|
|
1286
|
+
- ๐งจ -
|
|
1287
|
+
|
|
1288
|
+
# [1.0.0-beta.20](https://github.com/seb-oss/green/compare/@sebgroup/green-angular@1.0.0-beta.19...@sebgroup/green-angular@1.0.0-beta.20) (2022-08-31)
|
|
1289
|
+
|
|
1290
|
+
# [1.0.0-beta.19](https://github.com/seb-oss/green/compare/@sebgroup/green-angular@1.0.0-beta.18...@sebgroup/green-angular@1.0.0-beta.19) (2022-08-29)
|
|
1291
|
+
|
|
1292
|
+
### Bug Fixes
|
|
1293
|
+
|
|
1294
|
+
- ๐ initialize badge type ([b1d4aad](https://github.com/seb-oss/green/commit/b1d4aad748482130b43afea856068d6754d29823))
|
|
1295
|
+
- ๐ lint issues ([8bafc63](https://github.com/seb-oss/green/commit/8bafc63975fcc5c0f3a64251f6901d346e3745a7))
|
|
1296
|
+
- ๐ remove component styles ([f62a9d3](https://github.com/seb-oss/green/commit/f62a9d3cf80ecdd6c11b5212b02b842777f6a76a))
|
|
1297
|
+
- ๐ remove div container ([e24b9e0](https://github.com/seb-oss/green/commit/e24b9e0ef647e597d29211a831742d0c2e60c46e))
|
|
1298
|
+
|
|
1299
|
+
### Features
|
|
1300
|
+
|
|
1301
|
+
- ๐ธ new custom color and bg color inputs ([b16d0bb](https://github.com/seb-oss/green/commit/b16d0bb38274e5b6d7f4f1afd4f53e5d85f83482)), closes [#535](https://github.com/seb-oss/green/issues/535)
|
|
1302
|
+
|
|
1303
|
+
# [1.0.0-beta.18](https://github.com/seb-oss/green/compare/@sebgroup/green-angular@1.0.0-beta.17...@sebgroup/green-angular@1.0.0-beta.18) (2022-08-15)
|
|
1304
|
+
|
|
1305
|
+
# [1.0.0-beta.17](https://github.com/seb-oss/green/compare/@sebgroup/green-angular@1.0.0-beta.16...@sebgroup/green-angular@1.0.0-beta.17) (2022-08-15)
|
|
1306
|
+
|
|
1307
|
+
### Features
|
|
1308
|
+
|
|
1309
|
+
- **angular:** dropdown custom template ([7a40c35](https://github.com/seb-oss/green/commit/7a40c35b867a32a80671bc78057a243425836af5)), closes [#219](https://github.com/seb-oss/green/issues/219)
|
|
1310
|
+
|
|
1311
|
+
# [1.0.0-beta.16](https://github.com/seb-oss/green/compare/@sebgroup/green-angular@1.0.0-beta.15...@sebgroup/green-angular@1.0.0-beta.16) (2022-07-18)
|
|
1312
|
+
|
|
1313
|
+
### Bug Fixes
|
|
1314
|
+
|
|
1315
|
+
- **dropdown:** touched behavior ([d8e9bac](https://github.com/seb-oss/green/commit/d8e9baca16e7331f244d4e88e6d204b24f2c2e60))
|
|
1316
|
+
|
|
1317
|
+
# [1.0.0-beta.15](https://github.com/seb-oss/green/compare/@sebgroup/green-angular@1.0.0-beta.14...@sebgroup/green-angular@1.0.0-beta.15) (2022-06-28)
|
|
1318
|
+
|
|
1319
|
+
# [1.0.0-beta.14](https://github.com/seb-oss/green/compare/@sebgroup/green-angular@1.0.0-beta.13...@sebgroup/green-angular@1.0.0-beta.14) (2022-06-15)
|
|
1320
|
+
|
|
1321
|
+
# [1.0.0-beta.13](https://github.com/seb-oss/green/compare/@sebgroup/green-angular@1.0.0-beta.12...@sebgroup/green-angular@1.0.0-beta.13) (2022-06-07)
|
|
1322
|
+
|
|
1323
|
+
### Bug Fixes
|
|
1324
|
+
|
|
1325
|
+
- **angular:** datepicker - only pass valid date to datepicker ([4b652ad](https://github.com/seb-oss/green/commit/4b652ad08b1fc8039754a71e432284a05f49bc5c))
|
|
1326
|
+
- **angular:** dropdown - select by value ([fbf0cd2](https://github.com/seb-oss/green/commit/fbf0cd2f0a5c777691cc2177099b5d38cd5ddd9e))
|
|
1327
|
+
- **dropdown:** popover transitions out on init ([dc0b36e](https://github.com/seb-oss/green/commit/dc0b36e51733775f73e20a9c435550063586100d))
|
|
1328
|
+
|
|
1329
|
+
### Features
|
|
1330
|
+
|
|
1331
|
+
- **angular:** add date validator ([5c96635](https://github.com/seb-oss/green/commit/5c966357e5f3e3096a45306c3a1f9a13b679e77b))
|
|
1332
|
+
- **angular:** datepicker - add support for min and max date ([fd282ac](https://github.com/seb-oss/green/commit/fd282ac8284e15da4d93b20d5535e6bf4daa5835)), closes [#503](https://github.com/seb-oss/green/issues/503)
|
|
1333
|
+
|
|
1334
|
+
# [1.0.0-beta.12](https://github.com/seb-oss/green/compare/@sebgroup/green-angular@1.0.0-beta.11...@sebgroup/green-angular@1.0.0-beta.12) (2022-05-05)
|
|
1335
|
+
|
|
1336
|
+
### Bug Fixes
|
|
1337
|
+
|
|
1338
|
+
- ๐ syntax error on component template ([7bb99dc](https://github.com/seb-oss/green/commit/7bb99dc2c710fbda087e9e062585765ff76cc34e)), closes [#476](https://github.com/seb-oss/green/issues/476)
|
|
1339
|
+
- **angular:** datepicker - only emit if value has changed ([70efa07](https://github.com/seb-oss/green/commit/70efa074f1788a611a2dbb9639fcb490d53a6389))
|
|
1340
|
+
- **angular:** dropdown - only emit if value has changed ([05c9532](https://github.com/seb-oss/green/commit/05c95329cccb8345da0e42f795c8b4a4e733f57e))
|
|
1341
|
+
|
|
1342
|
+
### Features
|
|
1343
|
+
|
|
1344
|
+
- ๐ธ add sr utilities to react and angular badge components ([3ef7da3](https://github.com/seb-oss/green/commit/3ef7da32de275a1a66e4f165f5a809099cb2c573))
|
|
1345
|
+
- ๐ธ badge component for angular ([ce6c6ad](https://github.com/seb-oss/green/commit/ce6c6adeeea008ddc55158ed4c749f29058fa998)), closes [#476](https://github.com/seb-oss/green/issues/476)
|
|
1346
|
+
- ๐ธ Moved text content to ng-content ([ea0a708](https://github.com/seb-oss/green/commit/ea0a708a3d083a3913f5b2417585f3f20533ca3f))
|
|
1347
|
+
- **angular:** dropdown support multi select and custom option ([61d9ba6](https://github.com/seb-oss/green/commit/61d9ba6e5260306e40fe9d53f3377f2fed58baf0))
|
|
1348
|
+
|
|
1349
|
+
# [1.0.0-beta.11](https://github.com/seb-oss/green/compare/@sebgroup/green-angular@1.0.0-beta.10...@sebgroup/green-angular@1.0.0-beta.11) (2022-04-21)
|
|
1350
|
+
|
|
1351
|
+
# [1.0.0-beta.10](https://github.com/seb-oss/green/compare/@sebgroup/green-angular@1.0.0-beta.9...@sebgroup/green-angular@1.0.0-beta.10) (2022-04-20)
|
|
1352
|
+
|
|
1353
|
+
### Bug Fixes
|
|
1354
|
+
|
|
1355
|
+
- **angular:** datepicker keyboard navigation, background scroll, swipe ([d4660a8](https://github.com/seb-oss/green/commit/d4660a8efa1f032c592ca558a4937c7e6136e750))
|
|
1356
|
+
|
|
1357
|
+
# [1.0.0-beta.9](https://github.com/seb-oss/green/compare/@sebgroup/green-angular@1.0.0-beta.8...@sebgroup/green-angular@1.0.0-beta.9) (2022-04-15)
|
|
1358
|
+
|
|
1359
|
+
### Bug Fixes
|
|
1360
|
+
|
|
1361
|
+
- **angular:** datepicker add support for forms and value binding ([ed29a04](https://github.com/seb-oss/green/commit/ed29a040d16be89869260200067ae367c21ffaf2))
|
|
1362
|
+
- **angular:** datepicker add year and month dropdown ([2117354](https://github.com/seb-oss/green/commit/21173542877a96b88c5d3f8b6c201bee4d3e91ac))
|
|
1363
|
+
- **angular:** datepicker input for label ([50500c5](https://github.com/seb-oss/green/commit/50500c587512067a252d7e977fe130c4d9642916))
|
|
1364
|
+
- **angular:** datepicker validation ([9112ee0](https://github.com/seb-oss/green/commit/9112ee012fad481a1866efe8bee05a740f4abe09))
|
|
1365
|
+
- **angular:** dropdown aria attributes ([24fefcd](https://github.com/seb-oss/green/commit/24fefcdcacc2730404de4fa81167ece226379af5))
|
|
1366
|
+
- **angular:** dropdown null check and use existing id ([a7b4446](https://github.com/seb-oss/green/commit/a7b44462c923165d4518dfcb127ffec849389301))
|
|
1367
|
+
- **datepicker:** add calendar icon ([19b8599](https://github.com/seb-oss/green/commit/19b8599e77269d1c4cc5d180c4f6547b0d84d45f))
|
|
1368
|
+
- **dropdown:** emit selected value ([fb3f993](https://github.com/seb-oss/green/commit/fb3f9931807ee2ae374ef2c5d1be936119837551))
|
|
1369
|
+
|
|
1370
|
+
### Features
|
|
1371
|
+
|
|
1372
|
+
- **angular:** add draft for datepicker ([e04cbdb](https://github.com/seb-oss/green/commit/e04cbdbc1f036309ea5353c06a73a3d8feb19b4a))
|
|
1373
|
+
- **datepicker:** add option for week numbers, fix week days ([83c9ffa](https://github.com/seb-oss/green/commit/83c9ffa3c69dca4f423e561006104140a02fa6ae))
|
|
1374
|
+
- **datepicker:** add today ([076b1a4](https://github.com/seb-oss/green/commit/076b1a43774c0e0d3228f1fc73bbc9678b351d25))
|
|
1375
|
+
|
|
1376
|
+
# [1.0.0-beta.8](https://github.com/seb-oss/green/compare/@sebgroup/green-angular@1.0.0-beta.7...@sebgroup/green-angular@1.0.0-beta.8) (2022-04-07)
|
|
1377
|
+
|
|
1378
|
+
### Bug Fixes
|
|
1379
|
+
|
|
1380
|
+
- **angular:** dropdown experimental support for validation ([bc452a1](https://github.com/seb-oss/green/commit/bc452a101884a7b71ffaf953a19717d8aeb66247))
|
|
1381
|
+
- **angular:** dropdown support for label ([1754f7c](https://github.com/seb-oss/green/commit/1754f7ce746844e7364c859fa6ad2dc55d74d9b4))
|
|
1382
|
+
- **dropdown:** body-scroll-lock and styling ([b12a834](https://github.com/seb-oss/green/commit/b12a8344a6c5f87a05cac0cd76e5765451827234))
|
|
1383
|
+
- **dropdown:** use type button (prevent form submit) ([49075db](https://github.com/seb-oss/green/commit/49075db950349a033469c5c7d8a86fddfcf2e867))
|
|
1384
|
+
|
|
1385
|
+
# [1.0.0-beta.7](https://github.com/seb-oss/green/compare/@sebgroup/green-angular@1.0.0-beta.6...@sebgroup/green-angular@1.0.0-beta.7) (2022-03-24)
|
|
1386
|
+
|
|
1387
|
+
### Bug Fixes
|
|
1388
|
+
|
|
1389
|
+
- **deps-peer:** support rxjs 7 for angular ([721ccd7](https://github.com/seb-oss/green/commit/721ccd71cb65fe9298aa1886fbf3b645f949b80d))
|
|
1390
|
+
- **dropdown:** default option selected ([7ebfa91](https://github.com/seb-oss/green/commit/7ebfa917b1e840d744923ad48e8d07ccbe6d62f9))
|
|
1391
|
+
|
|
1392
|
+
### Features
|
|
1393
|
+
|
|
1394
|
+
- **dropdown:** support without angular forms ([8486611](https://github.com/seb-oss/green/commit/84866113cb1515902d35e6205a3b8e79ee9e7539))
|
|
1395
|
+
|
|
1396
|
+
# [1.0.0-beta.6](https://github.com/seb-oss/green/compare/@sebgroup/green-angular@1.0.0-beta.5...@sebgroup/green-angular@1.0.0-beta.6) (2022-02-17)
|
|
1397
|
+
|
|
1398
|
+
# [1.0.0-beta.5](https://github.com/seb-oss/green/compare/@sebgroup/green-angular@1.0.0-beta.4...@sebgroup/green-angular@1.0.0-beta.5) (2022-02-08)
|