@kirbydesign/designsystem 8.11.1 → 8.11.2-rc.1
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/accordion/accordion-item.component.d.ts +1 -1
- package/action-group/action-group.component.d.ts +3 -3
- package/alert-experimental/alert.component.d.ts +1 -1
- package/alert-experimental/services/alert.controller.d.ts +1 -1
- package/avatar/avatar.component.d.ts +2 -2
- package/button/button.component.d.ts +2 -2
- package/calendar/calendar.component.d.ts +2 -2
- package/calendar/options/calendar-year-navigator-config.d.ts +1 -1
- package/card/card-flag-level.d.ts +1 -1
- package/card/card-footer/card-footer.component.d.ts +1 -1
- package/card/card-header/card-header.component.d.ts +1 -1
- package/card/card.component.d.ts +1 -1
- package/chart/chart/chart.component.d.ts +1 -1
- package/chart/shared/base-chart/base-chart.component.d.ts +1 -1
- package/chart/shared/charts.types.d.ts +8 -8
- package/chart/stock-chart/stock-chart.component.d.ts +1 -1
- package/checkbox/checkbox.component.d.ts +1 -1
- package/data-table/sortable/sortable.component.d.ts +1 -1
- package/data-table/table/table.component.d.ts +1 -1
- package/data-table/table-row/table-row.component.d.ts +1 -1
- package/divider/divider.component.d.ts +1 -1
- package/dropdown/dropdown.component.d.ts +1 -1
- package/empty-state/empty-state.component.d.ts +1 -1
- package/esm2022/accordion/accordion-item.component.mjs +65 -0
- package/esm2022/accordion/accordion.directive.mjs +14 -0
- package/esm2022/accordion/accordion.module.mjs +20 -0
- package/esm2022/action-group/action-group.component.mjs +131 -0
- package/esm2022/alert-experimental/alert.component.mjs +76 -0
- package/esm2022/alert-experimental/alert.module.mjs +18 -0
- package/esm2022/alert-experimental/services/alert.controller.mjs +67 -0
- package/esm2022/avatar/avatar.component.mjs +53 -0
- package/esm2022/button/button.component.mjs +157 -0
- package/esm2022/calendar/calendar.component.mjs +442 -0
- package/esm2022/calendar/helpers/calendar.helper.mjs +80 -0
- package/esm2022/card/card-as-button/card-as-button.directive.mjs +67 -0
- package/esm2022/card/card-footer/card-footer.component.mjs +19 -0
- package/esm2022/card/card-header/card-header.component.mjs +32 -0
- package/esm2022/card/card.component.mjs +78 -0
- package/esm2022/card/card.module.mjs +34 -0
- package/esm2022/chart/chart/chart.component.mjs +18 -0
- package/esm2022/chart/chart-config/chart-bar-config/chart-bar-config.mjs +43 -0
- package/esm2022/chart/chart-config/chart-base-config.mjs +4 -0
- package/esm2022/chart/chart-config/chart-stock-config/chart-stock-config.mjs +153 -0
- package/esm2022/chart/charts.module.mjs +19 -0
- package/esm2022/chart/shared/base-chart/base-chart.component.mjs +124 -0
- package/esm2022/chart/shared/chart-config-service/chart-config.service.mjs +75 -0
- package/esm2022/chart/shared/chart-js-service/chart-js.service.mjs +179 -0
- package/esm2022/chart/stock-chart/stock-chart-js.service.mjs +100 -0
- package/esm2022/chart/stock-chart/stock-chart.component.mjs +22 -0
- package/esm2022/checkbox/checkbox.component.mjs +70 -0
- package/esm2022/data-table/data-table.module.mjs +21 -0
- package/esm2022/data-table/sortable/sortable.component.mjs +56 -0
- package/esm2022/data-table/table/table.component.mjs +32 -0
- package/esm2022/data-table/table-row/table-row.component.mjs +46 -0
- package/esm2022/divider/divider.component.mjs +14 -0
- package/esm2022/dropdown/dropdown.component.mjs +600 -0
- package/esm2022/dropdown/dropdown.module.mjs +47 -0
- package/esm2022/dropdown/keyboard-handler.service.mjs +50 -0
- package/esm2022/empty-state/empty-state.component.mjs +47 -0
- package/esm2022/empty-state/empty-state.module.mjs +21 -0
- package/esm2022/fab-sheet/fab-sheet.component.mjs +79 -0
- package/esm2022/flag/flag.component.mjs +30 -0
- package/esm2022/form-field/directives/affix/affix.directive.mjs +21 -0
- package/esm2022/form-field/directives/date/date-input.directive.mjs +104 -0
- package/esm2022/form-field/directives/decimal-mask/decimal-mask.directive.mjs +122 -0
- package/esm2022/form-field/form-field-message/form-field-message.component.mjs +18 -0
- package/esm2022/form-field/form-field.component.mjs +137 -0
- package/esm2022/form-field/form-field.module.mjs +22 -0
- package/esm2022/form-field/input/input.component.mjs +116 -0
- package/esm2022/form-field/input-counter/input-counter.component.mjs +35 -0
- package/esm2022/form-field/textarea/textarea.component.mjs +66 -0
- package/esm2022/grid/breakpoint-helper.service.mjs +28 -0
- package/esm2022/grid/grid.component.mjs +98 -0
- package/esm2022/header/header.component.mjs +135 -0
- package/esm2022/header/header.module.mjs +31 -0
- package/esm2022/helpers/line-clamp-helper.mjs +31 -0
- package/esm2022/helpers/platform.service.mjs +27 -0
- package/esm2022/helpers/scss/scss-helper.mjs +9 -0
- package/esm2022/helpers/unique-id-generator.helper.mjs +19 -0
- package/esm2022/icon/icon-registry.service.mjs +40 -0
- package/esm2022/icon/icon.component.mjs +79 -0
- package/esm2022/icon/icon.module.mjs +19 -0
- package/esm2022/item/item.component.mjs +57 -0
- package/esm2022/item/item.module.mjs +22 -0
- package/esm2022/item/label/label.component.mjs +23 -0
- package/esm2022/item-group/item-group.component.mjs +18 -0
- package/esm2022/item-sliding/item-sliding.component.mjs +39 -0
- package/esm2022/kirby-app/kirby-app.component.mjs +32 -0
- package/esm2022/kirby-app/kirby-app.module.mjs +19 -0
- package/esm2022/kirby-ionic-module/kirby-ionic.module.mjs +25 -0
- package/esm2022/lib/components/kirby-badge.module.mjs +16 -0
- package/esm2022/lib/components/page-local-navigation/page-local-navigation.component.mjs +79 -0
- package/esm2022/lib/components/segmented-control/segmented-control.component.mjs +124 -0
- package/esm2022/lib/components/web-component-proxies.component.mjs +39 -0
- package/esm2022/lib/directives/key-handler/key-handler.directive.mjs +28 -0
- package/esm2022/lib/directives/modal-router-link/modal-router-link.directive.mjs +38 -0
- package/esm2022/lib/kirby-experimental.module.mjs +24 -0
- package/esm2022/lib/kirby.module.mjs +353 -0
- package/esm2022/list/directives/infinite-scroll.directive.mjs +114 -0
- package/esm2022/list/directives/list-item-color.directive.mjs +30 -0
- package/esm2022/list/helpers/list-helper.mjs +83 -0
- package/esm2022/list/list-experimental/list-experimental.component.mjs +24 -0
- package/esm2022/list/list-header/list-header.component.mjs +12 -0
- package/esm2022/list/list-item/list-item.component.mjs +129 -0
- package/esm2022/list/list-section-header/list-section-header.component.mjs +13 -0
- package/esm2022/list/list.component.mjs +187 -0
- package/esm2022/list/list.directive.mjs +43 -0
- package/esm2022/list/list.module.mjs +64 -0
- package/esm2022/loading-overlay/loading-overlay.component.mjs +26 -0
- package/esm2022/loading-overlay/loading-overlay.service.mjs +49 -0
- package/esm2022/menu/menu.component.mjs +91 -0
- package/esm2022/modal/modal/action-sheet/action-sheet.component.mjs +45 -0
- package/esm2022/modal/modal/alert/alert.component.mjs +76 -0
- package/esm2022/modal/modal/footer/modal-footer.component.mjs +34 -0
- package/esm2022/modal/modal/services/action-sheet.helper.mjs +46 -0
- package/esm2022/modal/modal/services/alert.helper.mjs +56 -0
- package/esm2022/modal/modal/services/can-dismiss.helper.mjs +29 -0
- package/esm2022/modal/modal/services/modal-animation-builder.service.mjs +268 -0
- package/esm2022/modal/modal/services/modal.controller.mjs +142 -0
- package/esm2022/modal/modal/services/modal.helper.mjs +141 -0
- package/esm2022/modal/modal-navigation.service.mjs +258 -0
- package/esm2022/modal/modal-wrapper/compact/modal-compact-wrapper.component.mjs +78 -0
- package/esm2022/modal/modal-wrapper/modal-wrapper.component.mjs +490 -0
- package/esm2022/modal/modal.interfaces.mjs +50 -0
- package/esm2022/modal/v2/footer/footer.component.mjs +26 -0
- package/esm2022/modal/v2/kirby-modal.module.mjs +39 -0
- package/esm2022/modal/v2/modal/modal.component.mjs +92 -0
- package/esm2022/modal/v2/modal-routing/modal-routing.component.mjs +32 -0
- package/esm2022/modal/v2/services/modal.controller.mjs +51 -0
- package/esm2022/modal/v2/wrapper/wrapper.component.mjs +36 -0
- package/esm2022/page/page-footer/page-footer.component.mjs +35 -0
- package/esm2022/page/page.component.mjs +731 -0
- package/esm2022/page/page.module.mjs +73 -0
- package/esm2022/popover/popover.component.mjs +159 -0
- package/esm2022/progress-circle/progress-circle-ring.component.mjs +53 -0
- package/esm2022/progress-circle/progress-circle.component.mjs +88 -0
- package/esm2022/radio/radio-group/radio-group.component.mjs +252 -0
- package/esm2022/radio/radio-module.mjs +21 -0
- package/esm2022/radio/radio.component.mjs +47 -0
- package/esm2022/range/range.component.mjs +108 -0
- package/esm2022/reorder-list/reorder-list.component.mjs +81 -0
- package/esm2022/router-outlet/router-outlet.component.mjs +19 -0
- package/esm2022/router-outlet/router-outlet.module.mjs +19 -0
- package/esm2022/section-header/section-header.component.mjs +14 -0
- package/esm2022/shared/component-loader.directive.mjs +36 -0
- package/esm2022/shared/fit-heading/fit-heading.directive.mjs +107 -0
- package/esm2022/shared/floating/floating.directive.mjs +378 -0
- package/esm2022/shared/portal/portal.directive.mjs +78 -0
- package/esm2022/shared/resize-observer/resize-observer.factory.mjs +18 -0
- package/esm2022/shared/resize-observer/resize-observer.service.mjs +50 -0
- package/esm2022/shared/theme-color/theme-color.directive.mjs +127 -0
- package/esm2022/slide/slide.directive.mjs +13 -0
- package/esm2022/slide/slide.module.mjs +24 -0
- package/esm2022/slide/slides.component.mjs +121 -0
- package/esm2022/slide-button/slide-button.component.mjs +74 -0
- package/esm2022/spinner/spinner.component.mjs +11 -0
- package/esm2022/spinner/spinner.module.mjs +19 -0
- package/esm2022/tab-navigation/tab-navigation/tab-navigation.component.mjs +123 -0
- package/esm2022/tab-navigation/tab-navigation-item/tab-navigation-item.component.mjs +17 -0
- package/esm2022/tab-navigation/tab-navigation.module.mjs +19 -0
- package/esm2022/tabs/tab-button/tab-button.component.mjs +45 -0
- package/esm2022/tabs/tabs.component.mjs +31 -0
- package/esm2022/tabs/tabs.module.mjs +23 -0
- package/esm2022/tabs/tabs.service.mjs +26 -0
- package/esm2022/testing/test-helper.mjs +143 -0
- package/esm2022/testing-base/lib/components/mock.accordion-item.component.mjs +35 -0
- package/esm2022/testing-base/lib/components/mock.action-group.component.mjs +33 -0
- package/esm2022/testing-base/lib/components/mock.action-sheet.component.mjs +47 -0
- package/esm2022/testing-base/lib/components/mock.alert-experimental.component.mjs +41 -0
- package/esm2022/testing-base/lib/components/mock.alert.component.mjs +41 -0
- package/esm2022/testing-base/lib/components/mock.avatar.component.mjs +43 -0
- package/esm2022/testing-base/lib/components/mock.base-chart.component.mjs +41 -0
- package/esm2022/testing-base/lib/components/mock.button.component.mjs +42 -0
- package/esm2022/testing-base/lib/components/mock.calendar.component.mjs +74 -0
- package/esm2022/testing-base/lib/components/mock.card-footer.component.mjs +29 -0
- package/esm2022/testing-base/lib/components/mock.card-header.component.mjs +37 -0
- package/esm2022/testing-base/lib/components/mock.card.component.mjs +39 -0
- package/esm2022/testing-base/lib/components/mock.chart.component.mjs +32 -0
- package/esm2022/testing-base/lib/components/mock.checkbox.component.mjs +44 -0
- package/esm2022/testing-base/lib/components/mock.divider.component.mjs +29 -0
- package/esm2022/testing-base/lib/components/mock.dropdown.component.mjs +58 -0
- package/esm2022/testing-base/lib/components/mock.empty-state.component.mjs +35 -0
- package/esm2022/testing-base/lib/components/mock.fab-sheet.component.mjs +31 -0
- package/esm2022/testing-base/lib/components/mock.flag.component.mjs +31 -0
- package/esm2022/testing-base/lib/components/mock.footer.component.mjs +31 -0
- package/esm2022/testing-base/lib/components/mock.form-field-message.component.mjs +31 -0
- package/esm2022/testing-base/lib/components/mock.form-field.component.mjs +34 -0
- package/esm2022/testing-base/lib/components/mock.grid.component.mjs +31 -0
- package/esm2022/testing-base/lib/components/mock.header.component.mjs +85 -0
- package/esm2022/testing-base/lib/components/mock.icon.component.mjs +33 -0
- package/esm2022/testing-base/lib/components/mock.input-counter.component.mjs +29 -0
- package/esm2022/testing-base/lib/components/mock.input.component.mjs +46 -0
- package/esm2022/testing-base/lib/components/mock.item-group.component.mjs +27 -0
- package/esm2022/testing-base/lib/components/mock.item-sliding.component.mjs +31 -0
- package/esm2022/testing-base/lib/components/mock.item.component.mjs +39 -0
- package/esm2022/testing-base/lib/components/mock.kirby-app.component.mjs +27 -0
- package/esm2022/testing-base/lib/components/mock.label.component.mjs +29 -0
- package/esm2022/testing-base/lib/components/mock.list-experimental.component.mjs +27 -0
- package/esm2022/testing-base/lib/components/mock.list-header.component.mjs +27 -0
- package/esm2022/testing-base/lib/components/mock.list-item.component.mjs +49 -0
- package/esm2022/testing-base/lib/components/mock.list-section-header.component.mjs +29 -0
- package/esm2022/testing-base/lib/components/mock.list.component.mjs +63 -0
- package/esm2022/testing-base/lib/components/mock.loading-overlay.component.mjs +33 -0
- package/esm2022/testing-base/lib/components/mock.menu.component.mjs +52 -0
- package/esm2022/testing-base/lib/components/mock.modal-compact-wrapper.component.mjs +29 -0
- package/esm2022/testing-base/lib/components/mock.modal-footer.component.mjs +31 -0
- package/esm2022/testing-base/lib/components/mock.modal-routing.component.mjs +27 -0
- package/esm2022/testing-base/lib/components/mock.modal-wrapper.component.mjs +35 -0
- package/esm2022/testing-base/lib/components/mock.modal.component.mjs +67 -0
- package/esm2022/testing-base/lib/components/mock.page-footer.component.mjs +29 -0
- package/esm2022/testing-base/lib/components/mock.page-local-navigation.component.mjs +36 -0
- package/esm2022/testing-base/lib/components/mock.page.component.mjs +279 -0
- package/esm2022/testing-base/lib/components/mock.popover.component.mjs +36 -0
- package/esm2022/testing-base/lib/components/mock.progress-circle-ring.component.mjs +37 -0
- package/esm2022/testing-base/lib/components/mock.progress-circle.component.mjs +33 -0
- package/esm2022/testing-base/lib/components/mock.radio-group.component.mjs +46 -0
- package/esm2022/testing-base/lib/components/mock.radio.component.mjs +35 -0
- package/esm2022/testing-base/lib/components/mock.range.component.mjs +64 -0
- package/esm2022/testing-base/lib/components/mock.reorder-list.component.mjs +41 -0
- package/esm2022/testing-base/lib/components/mock.router-outlet.component.mjs +29 -0
- package/esm2022/testing-base/lib/components/mock.section-header.component.mjs +27 -0
- package/esm2022/testing-base/lib/components/mock.segmented-control.component.mjs +47 -0
- package/esm2022/testing-base/lib/components/mock.slide-button.component.mjs +39 -0
- package/esm2022/testing-base/lib/components/mock.slides.component.mjs +39 -0
- package/esm2022/testing-base/lib/components/mock.spinner.component.mjs +27 -0
- package/esm2022/testing-base/lib/components/mock.stock-chart.component.mjs +32 -0
- package/esm2022/testing-base/lib/components/mock.tab-button.component.mjs +34 -0
- package/esm2022/testing-base/lib/components/mock.tab-navigation-item.component.mjs +29 -0
- package/esm2022/testing-base/lib/components/mock.tab-navigation.component.mjs +32 -0
- package/esm2022/testing-base/lib/components/mock.table-row.component.mjs +30 -0
- package/esm2022/testing-base/lib/components/mock.table.component.mjs +30 -0
- package/esm2022/testing-base/lib/components/mock.tabs.component.mjs +27 -0
- package/esm2022/testing-base/lib/components/mock.textarea.component.mjs +40 -0
- package/esm2022/testing-base/lib/components/mock.toggle-button.component.mjs +34 -0
- package/esm2022/testing-base/lib/components/mock.toggle.component.mjs +36 -0
- package/esm2022/testing-base/lib/components/mock.web-component-proxies.component.mjs +33 -0
- package/esm2022/testing-base/lib/components/mock.wrapper.component.mjs +35 -0
- package/esm2022/testing-base/lib/directives/mock.accordion.directive.mjs +27 -0
- package/esm2022/testing-base/lib/directives/mock.affix.directive.mjs +30 -0
- package/esm2022/testing-base/lib/directives/mock.card-as-button.directive.mjs +27 -0
- package/esm2022/testing-base/lib/directives/mock.component-loader.directive.mjs +31 -0
- package/esm2022/testing-base/lib/directives/mock.date-input.directive.mjs +27 -0
- package/esm2022/testing-base/lib/directives/mock.decimal-mask.directive.mjs +41 -0
- package/esm2022/testing-base/lib/directives/mock.fit-heading.directive.mjs +30 -0
- package/esm2022/testing-base/lib/directives/mock.floating.directive.mjs +69 -0
- package/esm2022/testing-base/lib/directives/mock.infinite-scroll.directive.mjs +33 -0
- package/esm2022/testing-base/lib/directives/mock.key-handler.directive.mjs +27 -0
- package/esm2022/testing-base/lib/directives/mock.list-item-color.directive.mjs +30 -0
- package/esm2022/testing-base/lib/directives/mock.list.directive.mjs +89 -0
- package/esm2022/testing-base/lib/directives/mock.modal-router-link.directive.mjs +33 -0
- package/esm2022/testing-base/lib/directives/mock.portal.directive.mjs +28 -0
- package/esm2022/testing-base/lib/directives/mock.slide.directive.mjs +26 -0
- package/esm2022/testing-base/lib/directives/mock.theme-color.directive.mjs +34 -0
- package/esm2022/testing-base/lib/kirby-testing-base.module.mjs +105 -0
- package/esm2022/testing-jasmine/lib/kirby-testing.module.mjs +21 -0
- package/esm2022/testing-jest/lib/kirby-testing.module.mjs +21 -0
- package/esm2022/toast/services/toast.controller.mjs +22 -0
- package/esm2022/toast/services/toast.helper.mjs +39 -0
- package/esm2022/toggle/toggle.component.mjs +38 -0
- package/esm2022/toggle-button/toggle-button.component.mjs +26 -0
- package/esm2022/toggle-button/toggle-button.module.mjs +19 -0
- package/esm2022/types/window-ref.mjs +16 -0
- package/fab-sheet/fab-sheet.component.d.ts +1 -1
- package/fesm2022/kirbydesign-designsystem-accordion.mjs +100 -0
- package/fesm2022/kirbydesign-designsystem-accordion.mjs.map +1 -0
- package/fesm2022/kirbydesign-designsystem-action-group.mjs +138 -0
- package/fesm2022/kirbydesign-designsystem-action-group.mjs.map +1 -0
- package/fesm2022/kirbydesign-designsystem-alert-experimental.mjs +157 -0
- package/fesm2022/kirbydesign-designsystem-alert-experimental.mjs.map +1 -0
- package/fesm2022/kirbydesign-designsystem-avatar.mjs +60 -0
- package/fesm2022/kirbydesign-designsystem-avatar.mjs.map +1 -0
- package/fesm2022/kirbydesign-designsystem-button.mjs +164 -0
- package/fesm2022/kirbydesign-designsystem-button.mjs.map +1 -0
- package/fesm2022/kirbydesign-designsystem-calendar.mjs +524 -0
- package/fesm2022/kirbydesign-designsystem-calendar.mjs.map +1 -0
- package/fesm2022/kirbydesign-designsystem-card.mjs +222 -0
- package/fesm2022/kirbydesign-designsystem-card.mjs.map +1 -0
- package/fesm2022/kirbydesign-designsystem-chart.mjs +1524 -0
- package/fesm2022/kirbydesign-designsystem-chart.mjs.map +1 -0
- package/fesm2022/kirbydesign-designsystem-checkbox.mjs +77 -0
- package/fesm2022/kirbydesign-designsystem-checkbox.mjs.map +1 -0
- package/fesm2022/kirbydesign-designsystem-data-table.mjs +153 -0
- package/fesm2022/kirbydesign-designsystem-data-table.mjs.map +1 -0
- package/fesm2022/kirbydesign-designsystem-divider.mjs +21 -0
- package/fesm2022/kirbydesign-designsystem-divider.mjs.map +1 -0
- package/fesm2022/kirbydesign-designsystem-dropdown.mjs +703 -0
- package/fesm2022/kirbydesign-designsystem-dropdown.mjs.map +1 -0
- package/fesm2022/kirbydesign-designsystem-empty-state.mjs +72 -0
- package/fesm2022/kirbydesign-designsystem-empty-state.mjs.map +1 -0
- package/fesm2022/kirbydesign-designsystem-fab-sheet.mjs +86 -0
- package/fesm2022/kirbydesign-designsystem-fab-sheet.mjs.map +1 -0
- package/fesm2022/kirbydesign-designsystem-flag.mjs +37 -0
- package/fesm2022/kirbydesign-designsystem-flag.mjs.map +1 -0
- package/fesm2022/kirbydesign-designsystem-form-field.mjs +612 -0
- package/fesm2022/kirbydesign-designsystem-form-field.mjs.map +1 -0
- package/fesm2022/kirbydesign-designsystem-grid.mjs +137 -0
- package/fesm2022/kirbydesign-designsystem-grid.mjs.map +1 -0
- package/fesm2022/kirbydesign-designsystem-header.mjs +170 -0
- package/fesm2022/kirbydesign-designsystem-header.mjs.map +1 -0
- package/fesm2022/kirbydesign-designsystem-helpers-scss.mjs +15 -0
- package/fesm2022/kirbydesign-designsystem-helpers-scss.mjs.map +1 -0
- package/fesm2022/kirbydesign-designsystem-helpers.mjs +224 -0
- package/fesm2022/kirbydesign-designsystem-helpers.mjs.map +1 -0
- package/fesm2022/kirbydesign-designsystem-icon.mjs +243 -0
- package/fesm2022/kirbydesign-designsystem-icon.mjs.map +1 -0
- package/fesm2022/kirbydesign-designsystem-item-group.mjs +25 -0
- package/fesm2022/kirbydesign-designsystem-item-group.mjs.map +1 -0
- package/fesm2022/kirbydesign-designsystem-item-sliding.mjs +46 -0
- package/fesm2022/kirbydesign-designsystem-item-sliding.mjs.map +1 -0
- package/fesm2022/kirbydesign-designsystem-item.mjs +102 -0
- package/fesm2022/kirbydesign-designsystem-item.mjs.map +1 -0
- package/fesm2022/kirbydesign-designsystem-kirby-app.mjs +54 -0
- package/fesm2022/kirbydesign-designsystem-kirby-app.mjs.map +1 -0
- package/fesm2022/kirbydesign-designsystem-kirby-ionic-module.mjs +32 -0
- package/fesm2022/kirbydesign-designsystem-kirby-ionic-module.mjs.map +1 -0
- package/fesm2022/kirbydesign-designsystem-list.mjs +667 -0
- package/fesm2022/kirbydesign-designsystem-list.mjs.map +1 -0
- package/fesm2022/kirbydesign-designsystem-loading-overlay.mjs +78 -0
- package/fesm2022/kirbydesign-designsystem-loading-overlay.mjs.map +1 -0
- package/fesm2022/kirbydesign-designsystem-menu.mjs +98 -0
- package/fesm2022/kirbydesign-designsystem-menu.mjs.map +1 -0
- package/fesm2022/kirbydesign-designsystem-modal-v2.mjs +257 -0
- package/fesm2022/kirbydesign-designsystem-modal-v2.mjs.map +1 -0
- package/fesm2022/kirbydesign-designsystem-modal.mjs +1687 -0
- package/fesm2022/kirbydesign-designsystem-modal.mjs.map +1 -0
- package/fesm2022/kirbydesign-designsystem-page.mjs +835 -0
- package/fesm2022/kirbydesign-designsystem-page.mjs.map +1 -0
- package/fesm2022/kirbydesign-designsystem-popover.mjs +166 -0
- package/fesm2022/kirbydesign-designsystem-popover.mjs.map +1 -0
- package/fesm2022/kirbydesign-designsystem-progress-circle.mjs +144 -0
- package/fesm2022/kirbydesign-designsystem-progress-circle.mjs.map +1 -0
- package/fesm2022/kirbydesign-designsystem-radio.mjs +315 -0
- package/fesm2022/kirbydesign-designsystem-radio.mjs.map +1 -0
- package/fesm2022/kirbydesign-designsystem-range.mjs +115 -0
- package/fesm2022/kirbydesign-designsystem-range.mjs.map +1 -0
- package/fesm2022/kirbydesign-designsystem-reorder-list.mjs +101 -0
- package/fesm2022/kirbydesign-designsystem-reorder-list.mjs.map +1 -0
- package/fesm2022/kirbydesign-designsystem-router-outlet.mjs +42 -0
- package/fesm2022/kirbydesign-designsystem-router-outlet.mjs.map +1 -0
- package/fesm2022/kirbydesign-designsystem-section-header.mjs +21 -0
- package/fesm2022/kirbydesign-designsystem-section-header.mjs.map +1 -0
- package/fesm2022/kirbydesign-designsystem-shared-floating.mjs +385 -0
- package/fesm2022/kirbydesign-designsystem-shared-floating.mjs.map +1 -0
- package/fesm2022/kirbydesign-designsystem-shared-portal.mjs +85 -0
- package/fesm2022/kirbydesign-designsystem-shared-portal.mjs.map +1 -0
- package/fesm2022/kirbydesign-designsystem-shared.mjs +331 -0
- package/fesm2022/kirbydesign-designsystem-shared.mjs.map +1 -0
- package/fesm2022/kirbydesign-designsystem-slide-button.mjs +81 -0
- package/fesm2022/kirbydesign-designsystem-slide-button.mjs.map +1 -0
- package/fesm2022/kirbydesign-designsystem-slide.mjs +158 -0
- package/fesm2022/kirbydesign-designsystem-slide.mjs.map +1 -0
- package/fesm2022/kirbydesign-designsystem-spinner.mjs +34 -0
- package/fesm2022/kirbydesign-designsystem-spinner.mjs.map +1 -0
- package/fesm2022/kirbydesign-designsystem-tab-navigation.mjs +157 -0
- package/fesm2022/kirbydesign-designsystem-tab-navigation.mjs.map +1 -0
- package/fesm2022/kirbydesign-designsystem-tabs.mjs +119 -0
- package/fesm2022/kirbydesign-designsystem-tabs.mjs.map +1 -0
- package/fesm2022/kirbydesign-designsystem-testing-base.mjs +3418 -0
- package/fesm2022/kirbydesign-designsystem-testing-base.mjs.map +1 -0
- package/fesm2022/kirbydesign-designsystem-testing-jasmine.mjs +116 -0
- package/fesm2022/kirbydesign-designsystem-testing-jasmine.mjs.map +1 -0
- package/fesm2022/kirbydesign-designsystem-testing-jest.mjs +122 -0
- package/fesm2022/kirbydesign-designsystem-testing-jest.mjs.map +1 -0
- package/fesm2022/kirbydesign-designsystem-testing.mjs +243 -0
- package/fesm2022/kirbydesign-designsystem-testing.mjs.map +1 -0
- package/fesm2022/kirbydesign-designsystem-toast.mjs +63 -0
- package/fesm2022/kirbydesign-designsystem-toast.mjs.map +1 -0
- package/fesm2022/kirbydesign-designsystem-toggle-button.mjs +49 -0
- package/fesm2022/kirbydesign-designsystem-toggle-button.mjs.map +1 -0
- package/fesm2022/kirbydesign-designsystem-toggle.mjs +45 -0
- package/fesm2022/kirbydesign-designsystem-toggle.mjs.map +1 -0
- package/fesm2022/kirbydesign-designsystem-types.mjs +23 -0
- package/fesm2022/kirbydesign-designsystem-types.mjs.map +1 -0
- package/fesm2022/kirbydesign-designsystem.mjs +771 -0
- package/fesm2022/kirbydesign-designsystem.mjs.map +1 -0
- package/flag/flag.component.d.ts +2 -2
- package/form-field/directives/affix/affix.directive.d.ts +1 -1
- package/form-field/directives/date/date-input.directive.d.ts +1 -1
- package/form-field/directives/decimal-mask/decimal-mask.directive.d.ts +1 -1
- package/form-field/form-field-message/form-field-message.component.d.ts +1 -1
- package/form-field/form-field.component.d.ts +1 -1
- package/form-field/input/input.component.d.ts +1 -1
- package/form-field/input-counter/input-counter.component.d.ts +1 -1
- package/form-field/textarea/textarea.component.d.ts +1 -1
- package/grid/grid.component.d.ts +1 -1
- package/header/header.component.d.ts +1 -1
- package/icon/icon.component.d.ts +1 -1
- package/item/item.component.d.ts +1 -1
- package/item/label/label.component.d.ts +1 -1
- package/item-sliding/item-sliding.component.d.ts +1 -1
- package/item-sliding/item-sliding.types.d.ts +4 -4
- package/lib/components/page-local-navigation/page-local-navigation-item.d.ts +1 -1
- package/lib/components/page-local-navigation/page-local-navigation.component.d.ts +1 -1
- package/lib/components/segmented-control/segment-item.d.ts +1 -1
- package/lib/components/segmented-control/segmented-control.component.d.ts +1 -1
- package/lib/components/web-component-proxies.component.d.ts +1 -1
- package/lib/directives/modal-router-link/modal-router-link.directive.d.ts +1 -1
- package/list/directives/infinite-scroll.directive.d.ts +1 -1
- package/list/directives/list-item-color.directive.d.ts +1 -1
- package/list/helpers/list-helper.d.ts +2 -2
- package/list/list-item/list-item.component.d.ts +2 -2
- package/list/list-section-header/list-section-header.component.d.ts +1 -1
- package/list/list-swipe-action.type.d.ts +2 -2
- package/list/list.component.d.ts +3 -3
- package/loading-overlay/loading-overlay.component.d.ts +1 -1
- package/menu/menu.component.d.ts +1 -1
- package/modal/modal/action-sheet/action-sheet.component.d.ts +1 -1
- package/modal/modal/alert/alert.component.d.ts +1 -1
- package/modal/modal/footer/modal-footer.component.d.ts +1 -1
- package/modal/modal-wrapper/compact/modal-compact-wrapper.component.d.ts +1 -1
- package/modal/modal-wrapper/config/modal-config.d.ts +5 -5
- package/modal/modal-wrapper/modal-wrapper.component.d.ts +3 -4
- package/modal/v2/footer/footer.component.d.ts +1 -1
- package/modal/v2/modal/modal.component.d.ts +3 -3
- package/modal/v2/public_api.d.ts +1 -1
- package/modal/v2/services/modal.controller.d.ts +4 -4
- package/modal/v2/wrapper/wrapper.component.d.ts +2 -2
- package/package.json +211 -327
- package/page/page-footer/page-footer.component.d.ts +1 -1
- package/page/page.component.d.ts +5 -5
- package/popover/popover.component.d.ts +1 -1
- package/progress-circle/progress-circle-ring.component.d.ts +1 -1
- package/progress-circle/progress-circle.component.d.ts +1 -1
- package/radio/radio-group/radio-group.component.d.ts +1 -1
- package/radio/radio.component.d.ts +1 -1
- package/range/range.component.d.ts +1 -1
- package/reorder-list/reorder-list.component.d.ts +1 -1
- package/router-outlet/router-outlet.component.d.ts +1 -1
- package/shared/component-loader.directive.d.ts +1 -1
- package/shared/fit-heading/fit-heading.directive.d.ts +1 -1
- package/shared/floating/floating.directive.d.ts +2 -2
- package/shared/portal/portal.directive.d.ts +1 -1
- package/shared/theme-color/theme-color.directive.d.ts +1 -1
- package/slide/slides.component.d.ts +4 -4
- package/slide-button/slide-button.component.d.ts +1 -1
- package/tab-navigation/tab-navigation/tab-navigation.component.d.ts +1 -1
- package/tab-navigation/tab-navigation-item/tab-navigation-item.component.d.ts +1 -1
- package/tabs/tab-button/tab-button.component.d.ts +7 -1
- package/testing/test-helper.d.ts +1 -1
- package/testing-base/lib/components/mock.accordion-item.component.d.ts +1 -1
- package/testing-base/lib/components/mock.action-group.component.d.ts +1 -1
- package/testing-base/lib/components/mock.action-sheet.component.d.ts +1 -1
- package/testing-base/lib/components/mock.alert-experimental.component.d.ts +1 -1
- package/testing-base/lib/components/mock.alert.component.d.ts +1 -1
- package/testing-base/lib/components/mock.avatar.component.d.ts +1 -1
- package/testing-base/lib/components/mock.base-chart.component.d.ts +1 -1
- package/testing-base/lib/components/mock.button.component.d.ts +1 -1
- package/testing-base/lib/components/mock.calendar.component.d.ts +1 -1
- package/testing-base/lib/components/mock.card-footer.component.d.ts +1 -1
- package/testing-base/lib/components/mock.card-header.component.d.ts +1 -1
- package/testing-base/lib/components/mock.card.component.d.ts +1 -1
- package/testing-base/lib/components/mock.chart.component.d.ts +1 -1
- package/testing-base/lib/components/mock.checkbox.component.d.ts +1 -1
- package/testing-base/lib/components/mock.divider.component.d.ts +1 -1
- package/testing-base/lib/components/mock.dropdown.component.d.ts +1 -1
- package/testing-base/lib/components/mock.empty-state.component.d.ts +1 -1
- package/testing-base/lib/components/mock.fab-sheet.component.d.ts +1 -1
- package/testing-base/lib/components/mock.flag.component.d.ts +1 -1
- package/testing-base/lib/components/mock.footer.component.d.ts +1 -1
- package/testing-base/lib/components/mock.form-field-message.component.d.ts +1 -1
- package/testing-base/lib/components/mock.form-field.component.d.ts +1 -1
- package/testing-base/lib/components/mock.grid.component.d.ts +1 -1
- package/testing-base/lib/components/mock.header.component.d.ts +1 -1
- package/testing-base/lib/components/mock.icon.component.d.ts +1 -1
- package/testing-base/lib/components/mock.input-counter.component.d.ts +1 -1
- package/testing-base/lib/components/mock.input.component.d.ts +1 -1
- package/testing-base/lib/components/mock.item-sliding.component.d.ts +1 -1
- package/testing-base/lib/components/mock.item.component.d.ts +1 -1
- package/testing-base/lib/components/mock.label.component.d.ts +1 -1
- package/testing-base/lib/components/mock.list-item.component.d.ts +1 -1
- package/testing-base/lib/components/mock.list-section-header.component.d.ts +1 -1
- package/testing-base/lib/components/mock.list.component.d.ts +1 -1
- package/testing-base/lib/components/mock.loading-overlay.component.d.ts +1 -1
- package/testing-base/lib/components/mock.menu.component.d.ts +1 -1
- package/testing-base/lib/components/mock.modal-compact-wrapper.component.d.ts +1 -1
- package/testing-base/lib/components/mock.modal-footer.component.d.ts +1 -1
- package/testing-base/lib/components/mock.modal-wrapper.component.d.ts +1 -1
- package/testing-base/lib/components/mock.modal.component.d.ts +1 -1
- package/testing-base/lib/components/mock.page-footer.component.d.ts +1 -1
- package/testing-base/lib/components/mock.page-local-navigation.component.d.ts +1 -1
- package/testing-base/lib/components/mock.page.component.d.ts +5 -5
- package/testing-base/lib/components/mock.popover.component.d.ts +1 -1
- package/testing-base/lib/components/mock.progress-circle-ring.component.d.ts +1 -1
- package/testing-base/lib/components/mock.progress-circle.component.d.ts +1 -1
- package/testing-base/lib/components/mock.radio-group.component.d.ts +1 -1
- package/testing-base/lib/components/mock.radio.component.d.ts +1 -1
- package/testing-base/lib/components/mock.range.component.d.ts +1 -1
- package/testing-base/lib/components/mock.reorder-list.component.d.ts +1 -1
- package/testing-base/lib/components/mock.router-outlet.component.d.ts +1 -1
- package/testing-base/lib/components/mock.segmented-control.component.d.ts +1 -1
- package/testing-base/lib/components/mock.slide-button.component.d.ts +1 -1
- package/testing-base/lib/components/mock.slides.component.d.ts +1 -1
- package/testing-base/lib/components/mock.stock-chart.component.d.ts +1 -1
- package/testing-base/lib/components/mock.tab-button.component.d.ts +1 -1
- package/testing-base/lib/components/mock.tab-navigation-item.component.d.ts +1 -1
- package/testing-base/lib/components/mock.table-row.component.d.ts +1 -1
- package/testing-base/lib/components/mock.table.component.d.ts +1 -1
- package/testing-base/lib/components/mock.textarea.component.d.ts +1 -1
- package/testing-base/lib/components/mock.toggle-button.component.d.ts +1 -1
- package/testing-base/lib/components/mock.toggle.component.d.ts +1 -1
- package/testing-base/lib/components/mock.web-component-proxies.component.d.ts +1 -1
- package/testing-base/lib/components/mock.wrapper.component.d.ts +1 -1
- package/testing-base/lib/directives/mock.affix.directive.d.ts +1 -1
- package/testing-base/lib/directives/mock.component-loader.directive.d.ts +1 -1
- package/testing-base/lib/directives/mock.decimal-mask.directive.d.ts +1 -1
- package/testing-base/lib/directives/mock.fit-heading.directive.d.ts +1 -1
- package/testing-base/lib/directives/mock.floating.directive.d.ts +1 -1
- package/testing-base/lib/directives/mock.infinite-scroll.directive.d.ts +1 -1
- package/testing-base/lib/directives/mock.list-item-color.directive.d.ts +1 -1
- package/testing-base/lib/directives/mock.modal-router-link.directive.d.ts +1 -1
- package/testing-base/lib/directives/mock.portal.directive.d.ts +1 -1
- package/testing-base/lib/directives/mock.theme-color.directive.d.ts +1 -1
- package/testing-jest/lib/mock-providers.d.ts +31 -31
- package/toast/config/toast-config.d.ts +1 -1
- package/toggle/toggle.component.d.ts +2 -1
- package/toggle-button/toggle-button.component.d.ts +1 -1
- package/types/event-listener-dispose-fn.d.ts +1 -1
- package/README.md +0 -7
- package/esm2020/accordion/accordion-item.component.mjs +0 -65
- package/esm2020/accordion/accordion.directive.mjs +0 -14
- package/esm2020/accordion/accordion.module.mjs +0 -20
- package/esm2020/action-group/action-group.component.mjs +0 -131
- package/esm2020/alert-experimental/alert.component.mjs +0 -76
- package/esm2020/alert-experimental/alert.module.mjs +0 -18
- package/esm2020/alert-experimental/services/alert.controller.mjs +0 -67
- package/esm2020/avatar/avatar.component.mjs +0 -53
- package/esm2020/button/button.component.mjs +0 -157
- package/esm2020/calendar/calendar.component.mjs +0 -442
- package/esm2020/calendar/helpers/calendar.helper.mjs +0 -80
- package/esm2020/card/card-as-button/card-as-button.directive.mjs +0 -67
- package/esm2020/card/card-footer/card-footer.component.mjs +0 -19
- package/esm2020/card/card-header/card-header.component.mjs +0 -32
- package/esm2020/card/card.component.mjs +0 -78
- package/esm2020/card/card.module.mjs +0 -34
- package/esm2020/chart/chart/chart.component.mjs +0 -18
- package/esm2020/chart/chart-config/chart-bar-config/chart-bar-config.mjs +0 -43
- package/esm2020/chart/chart-config/chart-base-config.mjs +0 -4
- package/esm2020/chart/chart-config/chart-stock-config/chart-stock-config.mjs +0 -155
- package/esm2020/chart/charts.module.mjs +0 -19
- package/esm2020/chart/shared/base-chart/base-chart.component.mjs +0 -124
- package/esm2020/chart/shared/chart-config-service/chart-config.service.mjs +0 -75
- package/esm2020/chart/shared/chart-js-service/chart-js.service.mjs +0 -179
- package/esm2020/chart/stock-chart/stock-chart-js.service.mjs +0 -100
- package/esm2020/chart/stock-chart/stock-chart.component.mjs +0 -22
- package/esm2020/checkbox/checkbox.component.mjs +0 -70
- package/esm2020/data-table/data-table.module.mjs +0 -21
- package/esm2020/data-table/sortable/sortable.component.mjs +0 -56
- package/esm2020/data-table/table/table.component.mjs +0 -32
- package/esm2020/data-table/table-row/table-row.component.mjs +0 -46
- package/esm2020/divider/divider.component.mjs +0 -14
- package/esm2020/dropdown/dropdown.component.mjs +0 -600
- package/esm2020/dropdown/dropdown.module.mjs +0 -47
- package/esm2020/dropdown/keyboard-handler.service.mjs +0 -50
- package/esm2020/empty-state/empty-state.component.mjs +0 -47
- package/esm2020/empty-state/empty-state.module.mjs +0 -21
- package/esm2020/fab-sheet/fab-sheet.component.mjs +0 -79
- package/esm2020/flag/flag.component.mjs +0 -30
- package/esm2020/form-field/directives/affix/affix.directive.mjs +0 -21
- package/esm2020/form-field/directives/date/date-input.directive.mjs +0 -104
- package/esm2020/form-field/directives/decimal-mask/decimal-mask.directive.mjs +0 -122
- package/esm2020/form-field/form-field-message/form-field-message.component.mjs +0 -18
- package/esm2020/form-field/form-field.component.mjs +0 -137
- package/esm2020/form-field/form-field.module.mjs +0 -22
- package/esm2020/form-field/input/input.component.mjs +0 -116
- package/esm2020/form-field/input-counter/input-counter.component.mjs +0 -35
- package/esm2020/form-field/textarea/textarea.component.mjs +0 -66
- package/esm2020/grid/breakpoint-helper.service.mjs +0 -28
- package/esm2020/grid/grid.component.mjs +0 -98
- package/esm2020/header/header.component.mjs +0 -135
- package/esm2020/header/header.module.mjs +0 -31
- package/esm2020/helpers/line-clamp-helper.mjs +0 -31
- package/esm2020/helpers/platform.service.mjs +0 -27
- package/esm2020/helpers/scss/scss-helper.mjs +0 -9
- package/esm2020/helpers/unique-id-generator.helper.mjs +0 -19
- package/esm2020/icon/icon-registry.service.mjs +0 -40
- package/esm2020/icon/icon.component.mjs +0 -79
- package/esm2020/icon/icon.module.mjs +0 -19
- package/esm2020/item/item.component.mjs +0 -57
- package/esm2020/item/item.module.mjs +0 -22
- package/esm2020/item/label/label.component.mjs +0 -23
- package/esm2020/item-group/item-group.component.mjs +0 -18
- package/esm2020/item-sliding/item-sliding.component.mjs +0 -39
- package/esm2020/kirby-app/kirby-app.component.mjs +0 -32
- package/esm2020/kirby-app/kirby-app.module.mjs +0 -19
- package/esm2020/kirby-ionic-module/kirby-ionic.module.mjs +0 -25
- package/esm2020/lib/components/kirby-badge.module.mjs +0 -16
- package/esm2020/lib/components/page-local-navigation/page-local-navigation.component.mjs +0 -79
- package/esm2020/lib/components/segmented-control/segmented-control.component.mjs +0 -124
- package/esm2020/lib/components/web-component-proxies.component.mjs +0 -40
- package/esm2020/lib/directives/key-handler/key-handler.directive.mjs +0 -28
- package/esm2020/lib/directives/modal-router-link/modal-router-link.directive.mjs +0 -38
- package/esm2020/lib/kirby-experimental.module.mjs +0 -24
- package/esm2020/lib/kirby.module.mjs +0 -353
- package/esm2020/list/directives/infinite-scroll.directive.mjs +0 -114
- package/esm2020/list/directives/list-item-color.directive.mjs +0 -30
- package/esm2020/list/helpers/list-helper.mjs +0 -83
- package/esm2020/list/list-experimental/list-experimental.component.mjs +0 -24
- package/esm2020/list/list-header/list-header.component.mjs +0 -12
- package/esm2020/list/list-item/list-item.component.mjs +0 -129
- package/esm2020/list/list-section-header/list-section-header.component.mjs +0 -13
- package/esm2020/list/list.component.mjs +0 -187
- package/esm2020/list/list.directive.mjs +0 -43
- package/esm2020/list/list.module.mjs +0 -64
- package/esm2020/loading-overlay/loading-overlay.component.mjs +0 -26
- package/esm2020/loading-overlay/loading-overlay.service.mjs +0 -49
- package/esm2020/menu/menu.component.mjs +0 -91
- package/esm2020/modal/modal/action-sheet/action-sheet.component.mjs +0 -45
- package/esm2020/modal/modal/alert/alert.component.mjs +0 -76
- package/esm2020/modal/modal/footer/modal-footer.component.mjs +0 -34
- package/esm2020/modal/modal/services/action-sheet.helper.mjs +0 -46
- package/esm2020/modal/modal/services/alert.helper.mjs +0 -56
- package/esm2020/modal/modal/services/can-dismiss.helper.mjs +0 -29
- package/esm2020/modal/modal/services/modal-animation-builder.service.mjs +0 -268
- package/esm2020/modal/modal/services/modal.controller.mjs +0 -142
- package/esm2020/modal/modal/services/modal.helper.mjs +0 -142
- package/esm2020/modal/modal-navigation.service.mjs +0 -258
- package/esm2020/modal/modal-wrapper/compact/modal-compact-wrapper.component.mjs +0 -78
- package/esm2020/modal/modal-wrapper/modal-wrapper.component.mjs +0 -491
- package/esm2020/modal/modal.interfaces.mjs +0 -50
- package/esm2020/modal/v2/footer/footer.component.mjs +0 -26
- package/esm2020/modal/v2/kirby-modal.module.mjs +0 -39
- package/esm2020/modal/v2/modal/modal.component.mjs +0 -92
- package/esm2020/modal/v2/modal-routing/modal-routing.component.mjs +0 -32
- package/esm2020/modal/v2/services/modal.controller.mjs +0 -51
- package/esm2020/modal/v2/wrapper/wrapper.component.mjs +0 -36
- package/esm2020/page/page-footer/page-footer.component.mjs +0 -35
- package/esm2020/page/page.component.mjs +0 -731
- package/esm2020/page/page.module.mjs +0 -73
- package/esm2020/popover/popover.component.mjs +0 -159
- package/esm2020/progress-circle/progress-circle-ring.component.mjs +0 -53
- package/esm2020/progress-circle/progress-circle.component.mjs +0 -88
- package/esm2020/radio/radio-group/radio-group.component.mjs +0 -252
- package/esm2020/radio/radio-module.mjs +0 -21
- package/esm2020/radio/radio.component.mjs +0 -47
- package/esm2020/range/range.component.mjs +0 -108
- package/esm2020/reorder-list/reorder-list.component.mjs +0 -81
- package/esm2020/router-outlet/router-outlet.component.mjs +0 -19
- package/esm2020/router-outlet/router-outlet.module.mjs +0 -19
- package/esm2020/section-header/section-header.component.mjs +0 -14
- package/esm2020/shared/component-loader.directive.mjs +0 -36
- package/esm2020/shared/fit-heading/fit-heading.directive.mjs +0 -107
- package/esm2020/shared/floating/floating.directive.mjs +0 -378
- package/esm2020/shared/portal/portal.directive.mjs +0 -78
- package/esm2020/shared/resize-observer/resize-observer.factory.mjs +0 -18
- package/esm2020/shared/resize-observer/resize-observer.service.mjs +0 -50
- package/esm2020/shared/theme-color/theme-color.directive.mjs +0 -127
- package/esm2020/slide/slide.directive.mjs +0 -13
- package/esm2020/slide/slide.module.mjs +0 -24
- package/esm2020/slide/slides.component.mjs +0 -121
- package/esm2020/slide-button/slide-button.component.mjs +0 -74
- package/esm2020/spinner/spinner.component.mjs +0 -11
- package/esm2020/spinner/spinner.module.mjs +0 -19
- package/esm2020/tab-navigation/tab-navigation/tab-navigation.component.mjs +0 -123
- package/esm2020/tab-navigation/tab-navigation-item/tab-navigation-item.component.mjs +0 -17
- package/esm2020/tab-navigation/tab-navigation.module.mjs +0 -19
- package/esm2020/tabs/tab-button/tab-button.component.mjs +0 -43
- package/esm2020/tabs/tabs.component.mjs +0 -31
- package/esm2020/tabs/tabs.module.mjs +0 -23
- package/esm2020/tabs/tabs.service.mjs +0 -26
- package/esm2020/testing/test-helper.mjs +0 -143
- package/esm2020/testing-base/lib/components/mock.accordion-item.component.mjs +0 -35
- package/esm2020/testing-base/lib/components/mock.action-group.component.mjs +0 -33
- package/esm2020/testing-base/lib/components/mock.action-sheet.component.mjs +0 -47
- package/esm2020/testing-base/lib/components/mock.alert-experimental.component.mjs +0 -41
- package/esm2020/testing-base/lib/components/mock.alert.component.mjs +0 -41
- package/esm2020/testing-base/lib/components/mock.avatar.component.mjs +0 -43
- package/esm2020/testing-base/lib/components/mock.base-chart.component.mjs +0 -41
- package/esm2020/testing-base/lib/components/mock.button.component.mjs +0 -42
- package/esm2020/testing-base/lib/components/mock.calendar.component.mjs +0 -74
- package/esm2020/testing-base/lib/components/mock.card-footer.component.mjs +0 -29
- package/esm2020/testing-base/lib/components/mock.card-header.component.mjs +0 -37
- package/esm2020/testing-base/lib/components/mock.card.component.mjs +0 -39
- package/esm2020/testing-base/lib/components/mock.chart.component.mjs +0 -32
- package/esm2020/testing-base/lib/components/mock.checkbox.component.mjs +0 -44
- package/esm2020/testing-base/lib/components/mock.divider.component.mjs +0 -29
- package/esm2020/testing-base/lib/components/mock.dropdown.component.mjs +0 -58
- package/esm2020/testing-base/lib/components/mock.empty-state.component.mjs +0 -35
- package/esm2020/testing-base/lib/components/mock.fab-sheet.component.mjs +0 -31
- package/esm2020/testing-base/lib/components/mock.flag.component.mjs +0 -31
- package/esm2020/testing-base/lib/components/mock.footer.component.mjs +0 -31
- package/esm2020/testing-base/lib/components/mock.form-field-message.component.mjs +0 -31
- package/esm2020/testing-base/lib/components/mock.form-field.component.mjs +0 -34
- package/esm2020/testing-base/lib/components/mock.grid.component.mjs +0 -31
- package/esm2020/testing-base/lib/components/mock.header.component.mjs +0 -85
- package/esm2020/testing-base/lib/components/mock.icon.component.mjs +0 -33
- package/esm2020/testing-base/lib/components/mock.input-counter.component.mjs +0 -29
- package/esm2020/testing-base/lib/components/mock.input.component.mjs +0 -46
- package/esm2020/testing-base/lib/components/mock.item-group.component.mjs +0 -27
- package/esm2020/testing-base/lib/components/mock.item-sliding.component.mjs +0 -31
- package/esm2020/testing-base/lib/components/mock.item.component.mjs +0 -39
- package/esm2020/testing-base/lib/components/mock.kirby-app.component.mjs +0 -27
- package/esm2020/testing-base/lib/components/mock.label.component.mjs +0 -29
- package/esm2020/testing-base/lib/components/mock.list-experimental.component.mjs +0 -27
- package/esm2020/testing-base/lib/components/mock.list-header.component.mjs +0 -27
- package/esm2020/testing-base/lib/components/mock.list-item.component.mjs +0 -49
- package/esm2020/testing-base/lib/components/mock.list-section-header.component.mjs +0 -29
- package/esm2020/testing-base/lib/components/mock.list.component.mjs +0 -63
- package/esm2020/testing-base/lib/components/mock.loading-overlay.component.mjs +0 -33
- package/esm2020/testing-base/lib/components/mock.menu.component.mjs +0 -52
- package/esm2020/testing-base/lib/components/mock.modal-compact-wrapper.component.mjs +0 -29
- package/esm2020/testing-base/lib/components/mock.modal-footer.component.mjs +0 -31
- package/esm2020/testing-base/lib/components/mock.modal-routing.component.mjs +0 -27
- package/esm2020/testing-base/lib/components/mock.modal-wrapper.component.mjs +0 -35
- package/esm2020/testing-base/lib/components/mock.modal.component.mjs +0 -67
- package/esm2020/testing-base/lib/components/mock.page-footer.component.mjs +0 -29
- package/esm2020/testing-base/lib/components/mock.page-local-navigation.component.mjs +0 -36
- package/esm2020/testing-base/lib/components/mock.page.component.mjs +0 -279
- package/esm2020/testing-base/lib/components/mock.popover.component.mjs +0 -36
- package/esm2020/testing-base/lib/components/mock.progress-circle-ring.component.mjs +0 -37
- package/esm2020/testing-base/lib/components/mock.progress-circle.component.mjs +0 -33
- package/esm2020/testing-base/lib/components/mock.radio-group.component.mjs +0 -46
- package/esm2020/testing-base/lib/components/mock.radio.component.mjs +0 -35
- package/esm2020/testing-base/lib/components/mock.range.component.mjs +0 -64
- package/esm2020/testing-base/lib/components/mock.reorder-list.component.mjs +0 -41
- package/esm2020/testing-base/lib/components/mock.router-outlet.component.mjs +0 -29
- package/esm2020/testing-base/lib/components/mock.section-header.component.mjs +0 -27
- package/esm2020/testing-base/lib/components/mock.segmented-control.component.mjs +0 -47
- package/esm2020/testing-base/lib/components/mock.slide-button.component.mjs +0 -39
- package/esm2020/testing-base/lib/components/mock.slides.component.mjs +0 -39
- package/esm2020/testing-base/lib/components/mock.spinner.component.mjs +0 -27
- package/esm2020/testing-base/lib/components/mock.stock-chart.component.mjs +0 -32
- package/esm2020/testing-base/lib/components/mock.tab-button.component.mjs +0 -34
- package/esm2020/testing-base/lib/components/mock.tab-navigation-item.component.mjs +0 -29
- package/esm2020/testing-base/lib/components/mock.tab-navigation.component.mjs +0 -32
- package/esm2020/testing-base/lib/components/mock.table-row.component.mjs +0 -30
- package/esm2020/testing-base/lib/components/mock.table.component.mjs +0 -30
- package/esm2020/testing-base/lib/components/mock.tabs.component.mjs +0 -27
- package/esm2020/testing-base/lib/components/mock.textarea.component.mjs +0 -40
- package/esm2020/testing-base/lib/components/mock.toggle-button.component.mjs +0 -34
- package/esm2020/testing-base/lib/components/mock.toggle.component.mjs +0 -36
- package/esm2020/testing-base/lib/components/mock.web-component-proxies.component.mjs +0 -33
- package/esm2020/testing-base/lib/components/mock.wrapper.component.mjs +0 -35
- package/esm2020/testing-base/lib/directives/mock.accordion.directive.mjs +0 -27
- package/esm2020/testing-base/lib/directives/mock.affix.directive.mjs +0 -30
- package/esm2020/testing-base/lib/directives/mock.card-as-button.directive.mjs +0 -27
- package/esm2020/testing-base/lib/directives/mock.component-loader.directive.mjs +0 -31
- package/esm2020/testing-base/lib/directives/mock.date-input.directive.mjs +0 -27
- package/esm2020/testing-base/lib/directives/mock.decimal-mask.directive.mjs +0 -41
- package/esm2020/testing-base/lib/directives/mock.fit-heading.directive.mjs +0 -30
- package/esm2020/testing-base/lib/directives/mock.floating.directive.mjs +0 -69
- package/esm2020/testing-base/lib/directives/mock.infinite-scroll.directive.mjs +0 -33
- package/esm2020/testing-base/lib/directives/mock.key-handler.directive.mjs +0 -27
- package/esm2020/testing-base/lib/directives/mock.list-item-color.directive.mjs +0 -30
- package/esm2020/testing-base/lib/directives/mock.list.directive.mjs +0 -89
- package/esm2020/testing-base/lib/directives/mock.modal-router-link.directive.mjs +0 -33
- package/esm2020/testing-base/lib/directives/mock.portal.directive.mjs +0 -28
- package/esm2020/testing-base/lib/directives/mock.slide.directive.mjs +0 -26
- package/esm2020/testing-base/lib/directives/mock.theme-color.directive.mjs +0 -34
- package/esm2020/testing-base/lib/kirby-testing-base.module.mjs +0 -105
- package/esm2020/testing-jasmine/lib/kirby-testing.module.mjs +0 -21
- package/esm2020/testing-jest/lib/kirby-testing.module.mjs +0 -21
- package/esm2020/toast/services/toast.controller.mjs +0 -22
- package/esm2020/toast/services/toast.helper.mjs +0 -39
- package/esm2020/toggle/toggle.component.mjs +0 -36
- package/esm2020/toggle-button/toggle-button.component.mjs +0 -26
- package/esm2020/toggle-button/toggle-button.module.mjs +0 -19
- package/esm2020/types/window-ref.mjs +0 -16
- package/fesm2015/kirbydesign-designsystem-accordion.mjs +0 -100
- package/fesm2015/kirbydesign-designsystem-accordion.mjs.map +0 -1
- package/fesm2015/kirbydesign-designsystem-action-group.mjs +0 -142
- package/fesm2015/kirbydesign-designsystem-action-group.mjs.map +0 -1
- package/fesm2015/kirbydesign-designsystem-alert-experimental.mjs +0 -150
- package/fesm2015/kirbydesign-designsystem-alert-experimental.mjs.map +0 -1
- package/fesm2015/kirbydesign-designsystem-avatar.mjs +0 -60
- package/fesm2015/kirbydesign-designsystem-avatar.mjs.map +0 -1
- package/fesm2015/kirbydesign-designsystem-button.mjs +0 -166
- package/fesm2015/kirbydesign-designsystem-button.mjs.map +0 -1
- package/fesm2015/kirbydesign-designsystem-calendar.mjs +0 -523
- package/fesm2015/kirbydesign-designsystem-calendar.mjs.map +0 -1
- package/fesm2015/kirbydesign-designsystem-card.mjs +0 -224
- package/fesm2015/kirbydesign-designsystem-card.mjs.map +0 -1
- package/fesm2015/kirbydesign-designsystem-chart.mjs +0 -1518
- package/fesm2015/kirbydesign-designsystem-chart.mjs.map +0 -1
- package/fesm2015/kirbydesign-designsystem-checkbox.mjs +0 -77
- package/fesm2015/kirbydesign-designsystem-checkbox.mjs.map +0 -1
- package/fesm2015/kirbydesign-designsystem-data-table.mjs +0 -153
- package/fesm2015/kirbydesign-designsystem-data-table.mjs.map +0 -1
- package/fesm2015/kirbydesign-designsystem-divider.mjs +0 -21
- package/fesm2015/kirbydesign-designsystem-divider.mjs.map +0 -1
- package/fesm2015/kirbydesign-designsystem-dropdown.mjs +0 -706
- package/fesm2015/kirbydesign-designsystem-dropdown.mjs.map +0 -1
- package/fesm2015/kirbydesign-designsystem-empty-state.mjs +0 -72
- package/fesm2015/kirbydesign-designsystem-empty-state.mjs.map +0 -1
- package/fesm2015/kirbydesign-designsystem-fab-sheet.mjs +0 -88
- package/fesm2015/kirbydesign-designsystem-fab-sheet.mjs.map +0 -1
- package/fesm2015/kirbydesign-designsystem-flag.mjs +0 -37
- package/fesm2015/kirbydesign-designsystem-flag.mjs.map +0 -1
- package/fesm2015/kirbydesign-designsystem-form-field.mjs +0 -616
- package/fesm2015/kirbydesign-designsystem-form-field.mjs.map +0 -1
- package/fesm2015/kirbydesign-designsystem-grid.mjs +0 -137
- package/fesm2015/kirbydesign-designsystem-grid.mjs.map +0 -1
- package/fesm2015/kirbydesign-designsystem-header.mjs +0 -170
- package/fesm2015/kirbydesign-designsystem-header.mjs.map +0 -1
- package/fesm2015/kirbydesign-designsystem-helpers-scss.mjs +0 -15
- package/fesm2015/kirbydesign-designsystem-helpers-scss.mjs.map +0 -1
- package/fesm2015/kirbydesign-designsystem-helpers.mjs +0 -223
- package/fesm2015/kirbydesign-designsystem-helpers.mjs.map +0 -1
- package/fesm2015/kirbydesign-designsystem-icon.mjs +0 -243
- package/fesm2015/kirbydesign-designsystem-icon.mjs.map +0 -1
- package/fesm2015/kirbydesign-designsystem-item-group.mjs +0 -25
- package/fesm2015/kirbydesign-designsystem-item-group.mjs.map +0 -1
- package/fesm2015/kirbydesign-designsystem-item-sliding.mjs +0 -47
- package/fesm2015/kirbydesign-designsystem-item-sliding.mjs.map +0 -1
- package/fesm2015/kirbydesign-designsystem-item.mjs +0 -102
- package/fesm2015/kirbydesign-designsystem-item.mjs.map +0 -1
- package/fesm2015/kirbydesign-designsystem-kirby-app.mjs +0 -54
- package/fesm2015/kirbydesign-designsystem-kirby-app.mjs.map +0 -1
- package/fesm2015/kirbydesign-designsystem-kirby-ionic-module.mjs +0 -29
- package/fesm2015/kirbydesign-designsystem-kirby-ionic-module.mjs.map +0 -1
- package/fesm2015/kirbydesign-designsystem-list.mjs +0 -667
- package/fesm2015/kirbydesign-designsystem-list.mjs.map +0 -1
- package/fesm2015/kirbydesign-designsystem-loading-overlay.mjs +0 -83
- package/fesm2015/kirbydesign-designsystem-loading-overlay.mjs.map +0 -1
- package/fesm2015/kirbydesign-designsystem-menu.mjs +0 -99
- package/fesm2015/kirbydesign-designsystem-menu.mjs.map +0 -1
- package/fesm2015/kirbydesign-designsystem-modal-v2.mjs +0 -257
- package/fesm2015/kirbydesign-designsystem-modal-v2.mjs.map +0 -1
- package/fesm2015/kirbydesign-designsystem-modal.mjs +0 -1733
- package/fesm2015/kirbydesign-designsystem-modal.mjs.map +0 -1
- package/fesm2015/kirbydesign-designsystem-page.mjs +0 -852
- package/fesm2015/kirbydesign-designsystem-page.mjs.map +0 -1
- package/fesm2015/kirbydesign-designsystem-popover.mjs +0 -166
- package/fesm2015/kirbydesign-designsystem-popover.mjs.map +0 -1
- package/fesm2015/kirbydesign-designsystem-progress-circle.mjs +0 -144
- package/fesm2015/kirbydesign-designsystem-progress-circle.mjs.map +0 -1
- package/fesm2015/kirbydesign-designsystem-radio.mjs +0 -315
- package/fesm2015/kirbydesign-designsystem-radio.mjs.map +0 -1
- package/fesm2015/kirbydesign-designsystem-range.mjs +0 -115
- package/fesm2015/kirbydesign-designsystem-range.mjs.map +0 -1
- package/fesm2015/kirbydesign-designsystem-reorder-list.mjs +0 -101
- package/fesm2015/kirbydesign-designsystem-reorder-list.mjs.map +0 -1
- package/fesm2015/kirbydesign-designsystem-router-outlet.mjs +0 -42
- package/fesm2015/kirbydesign-designsystem-router-outlet.mjs.map +0 -1
- package/fesm2015/kirbydesign-designsystem-section-header.mjs +0 -21
- package/fesm2015/kirbydesign-designsystem-section-header.mjs.map +0 -1
- package/fesm2015/kirbydesign-designsystem-shared-floating.mjs +0 -390
- package/fesm2015/kirbydesign-designsystem-shared-floating.mjs.map +0 -1
- package/fesm2015/kirbydesign-designsystem-shared-portal.mjs +0 -85
- package/fesm2015/kirbydesign-designsystem-shared-portal.mjs.map +0 -1
- package/fesm2015/kirbydesign-designsystem-shared.mjs +0 -331
- package/fesm2015/kirbydesign-designsystem-shared.mjs.map +0 -1
- package/fesm2015/kirbydesign-designsystem-slide-button.mjs +0 -81
- package/fesm2015/kirbydesign-designsystem-slide-button.mjs.map +0 -1
- package/fesm2015/kirbydesign-designsystem-slide.mjs +0 -159
- package/fesm2015/kirbydesign-designsystem-slide.mjs.map +0 -1
- package/fesm2015/kirbydesign-designsystem-spinner.mjs +0 -34
- package/fesm2015/kirbydesign-designsystem-spinner.mjs.map +0 -1
- package/fesm2015/kirbydesign-designsystem-tab-navigation.mjs +0 -158
- package/fesm2015/kirbydesign-designsystem-tab-navigation.mjs.map +0 -1
- package/fesm2015/kirbydesign-designsystem-tabs.mjs +0 -117
- package/fesm2015/kirbydesign-designsystem-tabs.mjs.map +0 -1
- package/fesm2015/kirbydesign-designsystem-testing-base.mjs +0 -3418
- package/fesm2015/kirbydesign-designsystem-testing-base.mjs.map +0 -1
- package/fesm2015/kirbydesign-designsystem-testing-jasmine.mjs +0 -114
- package/fesm2015/kirbydesign-designsystem-testing-jasmine.mjs.map +0 -1
- package/fesm2015/kirbydesign-designsystem-testing-jest.mjs +0 -120
- package/fesm2015/kirbydesign-designsystem-testing-jest.mjs.map +0 -1
- package/fesm2015/kirbydesign-designsystem-testing.mjs +0 -252
- package/fesm2015/kirbydesign-designsystem-testing.mjs.map +0 -1
- package/fesm2015/kirbydesign-designsystem-toast.mjs +0 -66
- package/fesm2015/kirbydesign-designsystem-toast.mjs.map +0 -1
- package/fesm2015/kirbydesign-designsystem-toggle-button.mjs +0 -49
- package/fesm2015/kirbydesign-designsystem-toggle-button.mjs.map +0 -1
- package/fesm2015/kirbydesign-designsystem-toggle.mjs +0 -43
- package/fesm2015/kirbydesign-designsystem-toggle.mjs.map +0 -1
- package/fesm2015/kirbydesign-designsystem-types.mjs +0 -23
- package/fesm2015/kirbydesign-designsystem-types.mjs.map +0 -1
- package/fesm2015/kirbydesign-designsystem.mjs +0 -779
- package/fesm2015/kirbydesign-designsystem.mjs.map +0 -1
- package/fesm2020/kirbydesign-designsystem-accordion.mjs +0 -100
- package/fesm2020/kirbydesign-designsystem-accordion.mjs.map +0 -1
- package/fesm2020/kirbydesign-designsystem-action-group.mjs +0 -138
- package/fesm2020/kirbydesign-designsystem-action-group.mjs.map +0 -1
- package/fesm2020/kirbydesign-designsystem-alert-experimental.mjs +0 -157
- package/fesm2020/kirbydesign-designsystem-alert-experimental.mjs.map +0 -1
- package/fesm2020/kirbydesign-designsystem-avatar.mjs +0 -60
- package/fesm2020/kirbydesign-designsystem-avatar.mjs.map +0 -1
- package/fesm2020/kirbydesign-designsystem-button.mjs +0 -164
- package/fesm2020/kirbydesign-designsystem-button.mjs.map +0 -1
- package/fesm2020/kirbydesign-designsystem-calendar.mjs +0 -524
- package/fesm2020/kirbydesign-designsystem-calendar.mjs.map +0 -1
- package/fesm2020/kirbydesign-designsystem-card.mjs +0 -222
- package/fesm2020/kirbydesign-designsystem-card.mjs.map +0 -1
- package/fesm2020/kirbydesign-designsystem-chart.mjs +0 -1526
- package/fesm2020/kirbydesign-designsystem-chart.mjs.map +0 -1
- package/fesm2020/kirbydesign-designsystem-checkbox.mjs +0 -77
- package/fesm2020/kirbydesign-designsystem-checkbox.mjs.map +0 -1
- package/fesm2020/kirbydesign-designsystem-data-table.mjs +0 -153
- package/fesm2020/kirbydesign-designsystem-data-table.mjs.map +0 -1
- package/fesm2020/kirbydesign-designsystem-divider.mjs +0 -21
- package/fesm2020/kirbydesign-designsystem-divider.mjs.map +0 -1
- package/fesm2020/kirbydesign-designsystem-dropdown.mjs +0 -703
- package/fesm2020/kirbydesign-designsystem-dropdown.mjs.map +0 -1
- package/fesm2020/kirbydesign-designsystem-empty-state.mjs +0 -72
- package/fesm2020/kirbydesign-designsystem-empty-state.mjs.map +0 -1
- package/fesm2020/kirbydesign-designsystem-fab-sheet.mjs +0 -86
- package/fesm2020/kirbydesign-designsystem-fab-sheet.mjs.map +0 -1
- package/fesm2020/kirbydesign-designsystem-flag.mjs +0 -37
- package/fesm2020/kirbydesign-designsystem-flag.mjs.map +0 -1
- package/fesm2020/kirbydesign-designsystem-form-field.mjs +0 -612
- package/fesm2020/kirbydesign-designsystem-form-field.mjs.map +0 -1
- package/fesm2020/kirbydesign-designsystem-grid.mjs +0 -137
- package/fesm2020/kirbydesign-designsystem-grid.mjs.map +0 -1
- package/fesm2020/kirbydesign-designsystem-header.mjs +0 -170
- package/fesm2020/kirbydesign-designsystem-header.mjs.map +0 -1
- package/fesm2020/kirbydesign-designsystem-helpers-scss.mjs +0 -15
- package/fesm2020/kirbydesign-designsystem-helpers-scss.mjs.map +0 -1
- package/fesm2020/kirbydesign-designsystem-helpers.mjs +0 -223
- package/fesm2020/kirbydesign-designsystem-helpers.mjs.map +0 -1
- package/fesm2020/kirbydesign-designsystem-icon.mjs +0 -243
- package/fesm2020/kirbydesign-designsystem-icon.mjs.map +0 -1
- package/fesm2020/kirbydesign-designsystem-item-group.mjs +0 -25
- package/fesm2020/kirbydesign-designsystem-item-group.mjs.map +0 -1
- package/fesm2020/kirbydesign-designsystem-item-sliding.mjs +0 -46
- package/fesm2020/kirbydesign-designsystem-item-sliding.mjs.map +0 -1
- package/fesm2020/kirbydesign-designsystem-item.mjs +0 -102
- package/fesm2020/kirbydesign-designsystem-item.mjs.map +0 -1
- package/fesm2020/kirbydesign-designsystem-kirby-app.mjs +0 -54
- package/fesm2020/kirbydesign-designsystem-kirby-app.mjs.map +0 -1
- package/fesm2020/kirbydesign-designsystem-kirby-ionic-module.mjs +0 -32
- package/fesm2020/kirbydesign-designsystem-kirby-ionic-module.mjs.map +0 -1
- package/fesm2020/kirbydesign-designsystem-list.mjs +0 -667
- package/fesm2020/kirbydesign-designsystem-list.mjs.map +0 -1
- package/fesm2020/kirbydesign-designsystem-loading-overlay.mjs +0 -78
- package/fesm2020/kirbydesign-designsystem-loading-overlay.mjs.map +0 -1
- package/fesm2020/kirbydesign-designsystem-menu.mjs +0 -98
- package/fesm2020/kirbydesign-designsystem-menu.mjs.map +0 -1
- package/fesm2020/kirbydesign-designsystem-modal-v2.mjs +0 -257
- package/fesm2020/kirbydesign-designsystem-modal-v2.mjs.map +0 -1
- package/fesm2020/kirbydesign-designsystem-modal.mjs +0 -1689
- package/fesm2020/kirbydesign-designsystem-modal.mjs.map +0 -1
- package/fesm2020/kirbydesign-designsystem-page.mjs +0 -835
- package/fesm2020/kirbydesign-designsystem-page.mjs.map +0 -1
- package/fesm2020/kirbydesign-designsystem-popover.mjs +0 -166
- package/fesm2020/kirbydesign-designsystem-popover.mjs.map +0 -1
- package/fesm2020/kirbydesign-designsystem-progress-circle.mjs +0 -144
- package/fesm2020/kirbydesign-designsystem-progress-circle.mjs.map +0 -1
- package/fesm2020/kirbydesign-designsystem-radio.mjs +0 -315
- package/fesm2020/kirbydesign-designsystem-radio.mjs.map +0 -1
- package/fesm2020/kirbydesign-designsystem-range.mjs +0 -115
- package/fesm2020/kirbydesign-designsystem-range.mjs.map +0 -1
- package/fesm2020/kirbydesign-designsystem-reorder-list.mjs +0 -101
- package/fesm2020/kirbydesign-designsystem-reorder-list.mjs.map +0 -1
- package/fesm2020/kirbydesign-designsystem-router-outlet.mjs +0 -42
- package/fesm2020/kirbydesign-designsystem-router-outlet.mjs.map +0 -1
- package/fesm2020/kirbydesign-designsystem-section-header.mjs +0 -21
- package/fesm2020/kirbydesign-designsystem-section-header.mjs.map +0 -1
- package/fesm2020/kirbydesign-designsystem-shared-floating.mjs +0 -385
- package/fesm2020/kirbydesign-designsystem-shared-floating.mjs.map +0 -1
- package/fesm2020/kirbydesign-designsystem-shared-portal.mjs +0 -85
- package/fesm2020/kirbydesign-designsystem-shared-portal.mjs.map +0 -1
- package/fesm2020/kirbydesign-designsystem-shared.mjs +0 -331
- package/fesm2020/kirbydesign-designsystem-shared.mjs.map +0 -1
- package/fesm2020/kirbydesign-designsystem-slide-button.mjs +0 -81
- package/fesm2020/kirbydesign-designsystem-slide-button.mjs.map +0 -1
- package/fesm2020/kirbydesign-designsystem-slide.mjs +0 -158
- package/fesm2020/kirbydesign-designsystem-slide.mjs.map +0 -1
- package/fesm2020/kirbydesign-designsystem-spinner.mjs +0 -34
- package/fesm2020/kirbydesign-designsystem-spinner.mjs.map +0 -1
- package/fesm2020/kirbydesign-designsystem-tab-navigation.mjs +0 -157
- package/fesm2020/kirbydesign-designsystem-tab-navigation.mjs.map +0 -1
- package/fesm2020/kirbydesign-designsystem-tabs.mjs +0 -117
- package/fesm2020/kirbydesign-designsystem-tabs.mjs.map +0 -1
- package/fesm2020/kirbydesign-designsystem-testing-base.mjs +0 -3418
- package/fesm2020/kirbydesign-designsystem-testing-base.mjs.map +0 -1
- package/fesm2020/kirbydesign-designsystem-testing-jasmine.mjs +0 -114
- package/fesm2020/kirbydesign-designsystem-testing-jasmine.mjs.map +0 -1
- package/fesm2020/kirbydesign-designsystem-testing-jest.mjs +0 -120
- package/fesm2020/kirbydesign-designsystem-testing-jest.mjs.map +0 -1
- package/fesm2020/kirbydesign-designsystem-testing.mjs +0 -243
- package/fesm2020/kirbydesign-designsystem-testing.mjs.map +0 -1
- package/fesm2020/kirbydesign-designsystem-toast.mjs +0 -63
- package/fesm2020/kirbydesign-designsystem-toast.mjs.map +0 -1
- package/fesm2020/kirbydesign-designsystem-toggle-button.mjs +0 -49
- package/fesm2020/kirbydesign-designsystem-toggle-button.mjs.map +0 -1
- package/fesm2020/kirbydesign-designsystem-toggle.mjs +0 -43
- package/fesm2020/kirbydesign-designsystem-toggle.mjs.map +0 -1
- package/fesm2020/kirbydesign-designsystem-types.mjs +0 -23
- package/fesm2020/kirbydesign-designsystem-types.mjs.map +0 -1
- package/fesm2020/kirbydesign-designsystem.mjs +0 -771
- package/fesm2020/kirbydesign-designsystem.mjs.map +0 -1
- /package/{esm2020 → esm2022}/accordion/kirbydesign-designsystem-accordion.mjs +0 -0
- /package/{esm2020 → esm2022}/accordion/public_api.mjs +0 -0
- /package/{esm2020 → esm2022}/action-group/kirbydesign-designsystem-action-group.mjs +0 -0
- /package/{esm2020 → esm2022}/action-group/public_api.mjs +0 -0
- /package/{esm2020 → esm2022}/alert-experimental/config/alert-config.mjs +0 -0
- /package/{esm2020 → esm2022}/alert-experimental/kirbydesign-designsystem-alert-experimental.mjs +0 -0
- /package/{esm2020 → esm2022}/alert-experimental/public_api.mjs +0 -0
- /package/{esm2020 → esm2022}/avatar/kirbydesign-designsystem-avatar.mjs +0 -0
- /package/{esm2020 → esm2022}/avatar/public_api.mjs +0 -0
- /package/{esm2020 → esm2022}/button/kirbydesign-designsystem-button.mjs +0 -0
- /package/{esm2020 → esm2022}/button/public_api.mjs +0 -0
- /package/{esm2020 → esm2022}/calendar/helpers/calendar-cell.model.mjs +0 -0
- /package/{esm2020 → esm2022}/calendar/helpers/calendar-options.model.mjs +0 -0
- /package/{esm2020 → esm2022}/calendar/kirbydesign-designsystem-calendar.mjs +0 -0
- /package/{esm2020 → esm2022}/calendar/options/calendar-year-navigator-config.mjs +0 -0
- /package/{esm2020 → esm2022}/calendar/public_api.mjs +0 -0
- /package/{esm2020 → esm2022}/card/card-flag-level.mjs +0 -0
- /package/{esm2020 → esm2022}/card/kirbydesign-designsystem-card.mjs +0 -0
- /package/{esm2020 → esm2022}/card/public_api.mjs +0 -0
- /package/{esm2020 → esm2022}/chart/chart/index.mjs +0 -0
- /package/{esm2020 → esm2022}/chart/chart-config/chart-stock-config/data-label-position/data-label-position.mjs +0 -0
- /package/{esm2020 → esm2022}/chart/chart-config/chart-stock-config/vertical-line-plugin/vertical-line-plugin.mjs +0 -0
- /package/{esm2020 → esm2022}/chart/chart-config/chart-stock-config/vertical-line-plugin/vertical-line-plugin.model.mjs +0 -0
- /package/{esm2020 → esm2022}/chart/kirbydesign-designsystem-chart.mjs +0 -0
- /package/{esm2020 → esm2022}/chart/public_api.mjs +0 -0
- /package/{esm2020 → esm2022}/chart/shared/base-chart/index.mjs +0 -0
- /package/{esm2020 → esm2022}/chart/shared/chart-config-service/configs/annotations.config.mjs +0 -0
- /package/{esm2020 → esm2022}/chart/shared/chart-config-service/configs/global-defaults.config.mjs +0 -0
- /package/{esm2020 → esm2022}/chart/shared/chart-config-service/configs/interaction-functions-extensions.config.mjs +0 -0
- /package/{esm2020 → esm2022}/chart/shared/chart-config-service/configs/type.config.mjs +0 -0
- /package/{esm2020 → esm2022}/chart/shared/chart-config-service/index.mjs +0 -0
- /package/{esm2020 → esm2022}/chart/shared/chart-js-service/annotations.delegate.mjs +0 -0
- /package/{esm2020 → esm2022}/chart/shared/chart-js-service/chartjs-plugin-marker/chartjs-plugin-marker.mjs +0 -0
- /package/{esm2020 → esm2022}/chart/shared/chart-js-service/configured-chart-js.mjs +0 -0
- /package/{esm2020 → esm2022}/chart/shared/chart-js-service/index.mjs +0 -0
- /package/{esm2020 → esm2022}/chart/shared/chart-js-service/test-utils.mjs +0 -0
- /package/{esm2020 → esm2022}/chart/shared/charts.types.mjs +0 -0
- /package/{esm2020 → esm2022}/chart/shared/index.mjs +0 -0
- /package/{esm2020 → esm2022}/chart/stock-chart/index.mjs +0 -0
- /package/{esm2020 → esm2022}/checkbox/kirbydesign-designsystem-checkbox.mjs +0 -0
- /package/{esm2020 → esm2022}/checkbox/public_api.mjs +0 -0
- /package/{esm2020 → esm2022}/data-table/kirbydesign-designsystem-data-table.mjs +0 -0
- /package/{esm2020 → esm2022}/data-table/public_api.mjs +0 -0
- /package/{esm2020 → esm2022}/divider/kirbydesign-designsystem-divider.mjs +0 -0
- /package/{esm2020 → esm2022}/divider/public_api.mjs +0 -0
- /package/{esm2020 → esm2022}/dropdown/dropdown.types.mjs +0 -0
- /package/{esm2020 → esm2022}/dropdown/kirbydesign-designsystem-dropdown.mjs +0 -0
- /package/{esm2020 → esm2022}/dropdown/public_api.mjs +0 -0
- /package/{esm2020 → esm2022}/empty-state/kirbydesign-designsystem-empty-state.mjs +0 -0
- /package/{esm2020 → esm2022}/empty-state/public_api.mjs +0 -0
- /package/{esm2020 → esm2022}/fab-sheet/kirbydesign-designsystem-fab-sheet.mjs +0 -0
- /package/{esm2020 → esm2022}/fab-sheet/public_api.mjs +0 -0
- /package/{esm2020 → esm2022}/flag/kirbydesign-designsystem-flag.mjs +0 -0
- /package/{esm2020 → esm2022}/flag/public_api.mjs +0 -0
- /package/{esm2020 → esm2022}/form-field/kirbydesign-designsystem-form-field.mjs +0 -0
- /package/{esm2020 → esm2022}/form-field/public_api.mjs +0 -0
- /package/{esm2020 → esm2022}/grid/grid-card-configuration.mjs +0 -0
- /package/{esm2020 → esm2022}/grid/kirbydesign-designsystem-grid.mjs +0 -0
- /package/{esm2020 → esm2022}/grid/public_api.mjs +0 -0
- /package/{esm2020 → esm2022}/header/kirbydesign-designsystem-header.mjs +0 -0
- /package/{esm2020 → esm2022}/header/public_api.mjs +0 -0
- /package/{esm2020 → esm2022}/helpers/chart-config-has-type.mjs +0 -0
- /package/{esm2020 → esm2022}/helpers/color-helper.mjs +0 -0
- /package/{esm2020 → esm2022}/helpers/deep-copy.mjs +0 -0
- /package/{esm2020 → esm2022}/helpers/design-token-helper.mjs +0 -0
- /package/{esm2020 → esm2022}/helpers/element-has-ancestor.mjs +0 -0
- /package/{esm2020 → esm2022}/helpers/kirby-animation.mjs +0 -0
- /package/{esm2020 → esm2022}/helpers/kirbydesign-designsystem-helpers.mjs +0 -0
- /package/{esm2020 → esm2022}/helpers/merge-deep.mjs +0 -0
- /package/{esm2020 → esm2022}/helpers/public_api.mjs +0 -0
- /package/{esm2020 → esm2022}/helpers/scss/kirbydesign-designsystem-helpers-scss.mjs +0 -0
- /package/{esm2020 → esm2022}/helpers/scss/public_api.mjs +0 -0
- /package/{esm2020 → esm2022}/helpers/string-helper.mjs +0 -0
- /package/{esm2020 → esm2022}/helpers/theme-color.type.mjs +0 -0
- /package/{esm2020 → esm2022}/icon/icon-settings.mjs +0 -0
- /package/{esm2020 → esm2022}/icon/kirby-icon-settings.mjs +0 -0
- /package/{esm2020 → esm2022}/icon/kirbydesign-designsystem-icon.mjs +0 -0
- /package/{esm2020 → esm2022}/icon/public_api.mjs +0 -0
- /package/{esm2020 → esm2022}/item/kirbydesign-designsystem-item.mjs +0 -0
- /package/{esm2020 → esm2022}/item/public_api.mjs +0 -0
- /package/{esm2020 → esm2022}/item-group/kirbydesign-designsystem-item-group.mjs +0 -0
- /package/{esm2020 → esm2022}/item-group/public_api.mjs +0 -0
- /package/{esm2020 → esm2022}/item-sliding/item-sliding.types.mjs +0 -0
- /package/{esm2020 → esm2022}/item-sliding/kirbydesign-designsystem-item-sliding.mjs +0 -0
- /package/{esm2020 → esm2022}/item-sliding/public_api.mjs +0 -0
- /package/{esm2020 → esm2022}/kirby-app/kirbydesign-designsystem-kirby-app.mjs +0 -0
- /package/{esm2020 → esm2022}/kirby-app/public_api.mjs +0 -0
- /package/{esm2020 → esm2022}/kirby-ionic-module/kirbydesign-designsystem-kirby-ionic-module.mjs +0 -0
- /package/{esm2020 → esm2022}/kirby-ionic-module/public_api.mjs +0 -0
- /package/{esm2020 → esm2022}/kirbydesign-designsystem.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/angular-component-lib/utils.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/page-local-navigation/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/page-local-navigation/page-local-navigation-item.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/components/segmented-control/segment-item.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/custom-elements-initializer.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/directives/index.mjs +0 -0
- /package/{esm2020 → esm2022}/lib/index.mjs +0 -0
- /package/{esm2020 → esm2022}/list/directives/index.mjs +0 -0
- /package/{esm2020 → esm2022}/list/directives/scroll.model.mjs +0 -0
- /package/{esm2020 → esm2022}/list/helpers/index.mjs +0 -0
- /package/{esm2020 → esm2022}/list/kirbydesign-designsystem-list.mjs +0 -0
- /package/{esm2020 → esm2022}/list/list-experimental/index.mjs +0 -0
- /package/{esm2020 → esm2022}/list/list-header/index.mjs +0 -0
- /package/{esm2020 → esm2022}/list/list-item/index.mjs +0 -0
- /package/{esm2020 → esm2022}/list/list-section-header/index.mjs +0 -0
- /package/{esm2020 → esm2022}/list/list-swipe-action.mjs +0 -0
- /package/{esm2020 → esm2022}/list/list-swipe-action.type.mjs +0 -0
- /package/{esm2020 → esm2022}/list/list.event.mjs +0 -0
- /package/{esm2020 → esm2022}/list/public_api.mjs +0 -0
- /package/{esm2020 → esm2022}/loading-overlay/kirbydesign-designsystem-loading-overlay.mjs +0 -0
- /package/{esm2020 → esm2022}/loading-overlay/public_api.mjs +0 -0
- /package/{esm2020 → esm2022}/menu/kirbydesign-designsystem-menu.mjs +0 -0
- /package/{esm2020 → esm2022}/menu/public_api.mjs +0 -0
- /package/{esm2020 → esm2022}/modal/kirbydesign-designsystem-modal.mjs +0 -0
- /package/{esm2020 → esm2022}/modal/modal/action-sheet/config/action-sheet-config.mjs +0 -0
- /package/{esm2020 → esm2022}/modal/modal/action-sheet/config/action-sheet-item.mjs +0 -0
- /package/{esm2020 → esm2022}/modal/modal/action-sheet/index.mjs +0 -0
- /package/{esm2020 → esm2022}/modal/modal/alert/config/alert-config.mjs +0 -0
- /package/{esm2020 → esm2022}/modal/modal/alert/index.mjs +0 -0
- /package/{esm2020 → esm2022}/modal/modal/index.mjs +0 -0
- /package/{esm2020 → esm2022}/modal/modal/services/index.mjs +0 -0
- /package/{esm2020 → esm2022}/modal/modal-wrapper/compact/index.mjs +0 -0
- /package/{esm2020 → esm2022}/modal/modal-wrapper/config/drawer-supplementary-action.mjs +0 -0
- /package/{esm2020 → esm2022}/modal/modal-wrapper/config/index.mjs +0 -0
- /package/{esm2020 → esm2022}/modal/modal-wrapper/config/modal-config.helper.mjs +0 -0
- /package/{esm2020 → esm2022}/modal/modal-wrapper/config/modal-config.mjs +0 -0
- /package/{esm2020 → esm2022}/modal/modal-wrapper/index.mjs +0 -0
- /package/{esm2020 → esm2022}/modal/modal-wrapper/modal-elements-mover.delegate.mjs +0 -0
- /package/{esm2020 → esm2022}/modal/public_api.mjs +0 -0
- /package/{esm2020 → esm2022}/modal/v2/kirbydesign-designsystem-modal-v2.mjs +0 -0
- /package/{esm2020 → esm2022}/modal/v2/public_api.mjs +0 -0
- /package/{esm2020 → esm2022}/page/kirbydesign-designsystem-page.mjs +0 -0
- /package/{esm2020 → esm2022}/page/public_api.mjs +0 -0
- /package/{esm2020 → esm2022}/popover/kirbydesign-designsystem-popover.mjs +0 -0
- /package/{esm2020 → esm2022}/popover/public_api.mjs +0 -0
- /package/{esm2020 → esm2022}/progress-circle/kirbydesign-designsystem-progress-circle.mjs +0 -0
- /package/{esm2020 → esm2022}/progress-circle/public_api.mjs +0 -0
- /package/{esm2020 → esm2022}/public-api.mjs +0 -0
- /package/{esm2020 → esm2022}/radio/kirbydesign-designsystem-radio.mjs +0 -0
- /package/{esm2020 → esm2022}/radio/public_api.mjs +0 -0
- /package/{esm2020 → esm2022}/range/kirbydesign-designsystem-range.mjs +0 -0
- /package/{esm2020 → esm2022}/range/public_api.mjs +0 -0
- /package/{esm2020 → esm2022}/reorder-list/kirbydesign-designsystem-reorder-list.mjs +0 -0
- /package/{esm2020 → esm2022}/reorder-list/public_api.mjs +0 -0
- /package/{esm2020 → esm2022}/reorder-list/reorder-event.mjs +0 -0
- /package/{esm2020 → esm2022}/router-outlet/kirbydesign-designsystem-router-outlet.mjs +0 -0
- /package/{esm2020 → esm2022}/router-outlet/public_api.mjs +0 -0
- /package/{esm2020 → esm2022}/section-header/kirbydesign-designsystem-section-header.mjs +0 -0
- /package/{esm2020 → esm2022}/section-header/public_api.mjs +0 -0
- /package/{esm2020 → esm2022}/shared/component-configuration.mjs +0 -0
- /package/{esm2020 → esm2022}/shared/dynamic-component.mjs +0 -0
- /package/{esm2020 → esm2022}/shared/fit-heading/index.mjs +0 -0
- /package/{esm2020 → esm2022}/shared/floating/kirbydesign-designsystem-shared-floating.mjs +0 -0
- /package/{esm2020 → esm2022}/shared/floating/public_api.mjs +0 -0
- /package/{esm2020 → esm2022}/shared/kirbydesign-designsystem-shared.mjs +0 -0
- /package/{esm2020 → esm2022}/shared/portal/kirbydesign-designsystem-shared-portal.mjs +0 -0
- /package/{esm2020 → esm2022}/shared/portal/public_api.mjs +0 -0
- /package/{esm2020 → esm2022}/shared/public_api.mjs +0 -0
- /package/{esm2020 → esm2022}/slide/kirbydesign-designsystem-slide.mjs +0 -0
- /package/{esm2020 → esm2022}/slide/public_api.mjs +0 -0
- /package/{esm2020 → esm2022}/slide-button/kirbydesign-designsystem-slide-button.mjs +0 -0
- /package/{esm2020 → esm2022}/slide-button/public_api.mjs +0 -0
- /package/{esm2020 → esm2022}/spinner/kirbydesign-designsystem-spinner.mjs +0 -0
- /package/{esm2020 → esm2022}/spinner/public_api.mjs +0 -0
- /package/{esm2020 → esm2022}/tab-navigation/kirbydesign-designsystem-tab-navigation.mjs +0 -0
- /package/{esm2020 → esm2022}/tab-navigation/public_api.mjs +0 -0
- /package/{esm2020 → esm2022}/tabs/kirbydesign-designsystem-tabs.mjs +0 -0
- /package/{esm2020 → esm2022}/tabs/public_api.mjs +0 -0
- /package/{esm2020 → esm2022}/tabs/tab-button/tab-button.events.mjs +0 -0
- /package/{esm2020 → esm2022}/testing/element-css-custom-matchers.mjs +0 -0
- /package/{esm2020 → esm2022}/testing/kirbydesign-designsystem-testing.mjs +0 -0
- /package/{esm2020 → esm2022}/testing/public_api.mjs +0 -0
- /package/{esm2020 → esm2022}/testing-base/kirbydesign-designsystem-testing-base.mjs +0 -0
- /package/{esm2020 → esm2022}/testing-base/lib/components/index.mjs +0 -0
- /package/{esm2020 → esm2022}/testing-base/lib/directives/index.mjs +0 -0
- /package/{esm2020 → esm2022}/testing-base/lib/index.mjs +0 -0
- /package/{esm2020 → esm2022}/testing-base/lib/mock-components.mjs +0 -0
- /package/{esm2020 → esm2022}/testing-base/lib/mock-directives.mjs +0 -0
- /package/{esm2020 → esm2022}/testing-base/public_api.mjs +0 -0
- /package/{esm2020 → esm2022}/testing-jasmine/kirbydesign-designsystem-testing-jasmine.mjs +0 -0
- /package/{esm2020 → esm2022}/testing-jasmine/lib/mock-providers.mjs +0 -0
- /package/{esm2020 → esm2022}/testing-jasmine/public_api.mjs +0 -0
- /package/{esm2020 → esm2022}/testing-jest/kirbydesign-designsystem-testing-jest.mjs +0 -0
- /package/{esm2020 → esm2022}/testing-jest/lib/mock-providers.mjs +0 -0
- /package/{esm2020 → esm2022}/testing-jest/public_api.mjs +0 -0
- /package/{esm2020 → esm2022}/toast/config/toast-config.mjs +0 -0
- /package/{esm2020 → esm2022}/toast/kirbydesign-designsystem-toast.mjs +0 -0
- /package/{esm2020 → esm2022}/toast/public_api.mjs +0 -0
- /package/{esm2020 → esm2022}/toast/services/indexs.mjs +0 -0
- /package/{esm2020 → esm2022}/toggle/kirbydesign-designsystem-toggle.mjs +0 -0
- /package/{esm2020 → esm2022}/toggle/public_api.mjs +0 -0
- /package/{esm2020 → esm2022}/toggle-button/kirbydesign-designsystem-toggle-button.mjs +0 -0
- /package/{esm2020 → esm2022}/toggle-button/public_api.mjs +0 -0
- /package/{esm2020 → esm2022}/types/event-listener-dispose-fn.mjs +0 -0
- /package/{esm2020 → esm2022}/types/kirbydesign-designsystem-types.mjs +0 -0
- /package/{esm2020 → esm2022}/types/public_api.mjs +0 -0
|
@@ -12,5 +12,5 @@ export declare class AccordionItemComponent implements OnChanges {
|
|
|
12
12
|
_titleId: string;
|
|
13
13
|
_contentId: string;
|
|
14
14
|
static ɵfac: i0.ɵɵFactoryDeclaration<AccordionItemComponent, never>;
|
|
15
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AccordionItemComponent, "kirby-accordion-item", never, { "title": "title"; "isExpanded": "isExpanded"; "isDisabled": "isDisabled"; "disabledTitle": "disabledTitle"; }, { "toggle": "toggle"; }, never, ["*"], false, never>;
|
|
15
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AccordionItemComponent, "kirby-accordion-item", never, { "title": { "alias": "title"; "required": false; }; "isExpanded": { "alias": "isExpanded"; "required": false; }; "isDisabled": { "alias": "isDisabled"; "required": false; }; "disabledTitle": { "alias": "disabledTitle"; "required": false; }; }, { "toggle": "toggle"; }, never, ["*"], false, never>;
|
|
16
16
|
}
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import { AfterContentInit, ElementRef, InjectionToken, OnChanges, Renderer2, SimpleChanges } from '@angular/core';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
|
-
export
|
|
3
|
+
export type ActionGroupConfig = {
|
|
4
4
|
isCondensed?: boolean;
|
|
5
5
|
defaultVisibleActions?: number;
|
|
6
6
|
maxVisibleActions?: number;
|
|
7
7
|
};
|
|
8
8
|
export declare const ACTIONGROUP_CONFIG: InjectionToken<ActionGroupConfig>;
|
|
9
|
-
|
|
9
|
+
type CollapsedAction = {
|
|
10
10
|
button: HTMLButtonElement;
|
|
11
11
|
text: string;
|
|
12
12
|
};
|
|
@@ -34,6 +34,6 @@ export declare class ActionGroupComponent implements AfterContentInit, OnChanges
|
|
|
34
34
|
private toggleMenu;
|
|
35
35
|
private populateMenu;
|
|
36
36
|
static ɵfac: i0.ɵɵFactoryDeclaration<ActionGroupComponent, [null, null, { optional: true; }]>;
|
|
37
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ActionGroupComponent, "kirby-action-group", never, { "visibleActions": "visibleActions"; "align": "align"; }, {}, ["buttonElements", "buttons"], ["button[kirby-button]"], true, never>;
|
|
37
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ActionGroupComponent, "kirby-action-group", never, { "visibleActions": { "alias": "visibleActions"; "required": false; }; "align": { "alias": "align"; "required": false; }; }, {}, ["buttonElements", "buttons"], ["button[kirby-button]"], true, never>;
|
|
38
38
|
}
|
|
39
39
|
export {};
|
|
@@ -24,5 +24,5 @@ export declare class AlertExperimentalComponent implements AfterViewInit {
|
|
|
24
24
|
cancelAlert(): void;
|
|
25
25
|
approveAlert(): void;
|
|
26
26
|
static ɵfac: i0.ɵɵFactoryDeclaration<AlertExperimentalComponent, never>;
|
|
27
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AlertExperimentalComponent, "kirby-alert-experimental", never, { "title": "title"; "message": "message"; "iconName": "iconName"; "iconThemeColor": "iconThemeColor"; "okButton": "okButton"; "okButtonIsDestructive": "okButtonIsDestructive"; "cancelButton": "cancelButton"; }, {}, never, never, true, never>;
|
|
27
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AlertExperimentalComponent, "kirby-alert-experimental", never, { "title": { "alias": "title"; "required": false; }; "message": { "alias": "message"; "required": false; }; "iconName": { "alias": "iconName"; "required": false; }; "iconThemeColor": { "alias": "iconThemeColor"; "required": false; }; "okButton": { "alias": "okButton"; "required": false; }; "okButtonIsDestructive": { "alias": "okButtonIsDestructive"; "required": false; }; "cancelButton": { "alias": "cancelButton"; "required": false; }; }, {}, never, never, true, never>;
|
|
28
28
|
}
|
|
@@ -3,7 +3,7 @@ import { Observable } from 'rxjs';
|
|
|
3
3
|
import { OverlayEventDetail } from '@ionic/core/components';
|
|
4
4
|
import { AlertExperimentalConfig } from '../config/alert-config';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
|
-
|
|
6
|
+
type AlertDismissObservables = {
|
|
7
7
|
onWillDismiss: Observable<OverlayEventDetail>;
|
|
8
8
|
onDidDismiss: Observable<OverlayEventDetail>;
|
|
9
9
|
};
|
|
@@ -16,8 +16,8 @@ export declare class AvatarComponent implements OnInit {
|
|
|
16
16
|
overlay: boolean;
|
|
17
17
|
size: AvatarSize | `${AvatarSize}`;
|
|
18
18
|
themeColor: NotificationColor | BrandColor | 'medium' | 'white' | 'dark' | 'light' | 'semi-light';
|
|
19
|
-
get _cssClass(): ("medium" | "success" | "
|
|
19
|
+
get _cssClass(): ("medium" | "success" | "primary" | "secondary" | "tertiary" | "warning" | "danger" | "light" | "dark" | "white" | "semi-light" | "xs" | "sm" | "md" | "lg" | AvatarSize)[];
|
|
20
20
|
ngOnInit(): void;
|
|
21
21
|
static ɵfac: i0.ɵɵFactoryDeclaration<AvatarComponent, never>;
|
|
22
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AvatarComponent, "kirby-avatar", never, { "imageSrc": "imageSrc"; "altText": "altText"; "shadow": "shadow"; "stroke": "stroke"; "text": "text"; "overlay": "overlay"; "size": "size"; "themeColor": "themeColor"; }, {}, never, ["kirby-icon", "kirby-badge"], true, never>;
|
|
22
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AvatarComponent, "kirby-avatar", never, { "imageSrc": { "alias": "imageSrc"; "required": false; }; "altText": { "alias": "altText"; "required": false; }; "shadow": { "alias": "shadow"; "required": false; }; "stroke": { "alias": "stroke"; "required": false; }; "text": { "alias": "text"; "required": false; }; "overlay": { "alias": "overlay"; "required": false; }; "size": { "alias": "size"; "required": false; }; "themeColor": { "alias": "themeColor"; "required": false; }; }, {}, never, ["kirby-icon", "kirby-badge"], true, never>;
|
|
23
23
|
}
|
|
@@ -7,7 +7,7 @@ export declare enum ButtonSize {
|
|
|
7
7
|
MD = "md",
|
|
8
8
|
LG = "lg"
|
|
9
9
|
}
|
|
10
|
-
export
|
|
10
|
+
export type AttentionLevel = '1' | '2' | '3' | '4';
|
|
11
11
|
export declare class ButtonComponent implements AfterContentInit {
|
|
12
12
|
private elementRef;
|
|
13
13
|
private renderer;
|
|
@@ -35,5 +35,5 @@ export declare class ButtonComponent implements AfterContentInit {
|
|
|
35
35
|
private wrapTextNode;
|
|
36
36
|
ngAfterContentInit(): void;
|
|
37
37
|
static ɵfac: i0.ɵɵFactoryDeclaration<ButtonComponent, never>;
|
|
38
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ButtonComponent, "button[kirby-button],Button[kirby-button]", never, { "attentionLevel": "attentionLevel"; "noDecoration": "noDecoration"; "themeColor": "themeColor"; "expand": "expand"; "isFloating": "isFloating"; "size": "size"; "showIconOnly": "showIconOnly"; }, {}, ["iconElementRef"], ["*"], true, never>;
|
|
38
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ButtonComponent, "button[kirby-button],Button[kirby-button]", never, { "attentionLevel": { "alias": "attentionLevel"; "required": false; }; "noDecoration": { "alias": "noDecoration"; "required": false; }; "themeColor": { "alias": "themeColor"; "required": false; }; "expand": { "alias": "expand"; "required": false; }; "isFloating": { "alias": "isFloating"; "required": false; }; "size": { "alias": "size"; "required": false; }; "showIconOnly": { "alias": "showIconOnly"; "required": false; }; }, {}, ["iconElementRef"], ["*"], true, never>;
|
|
39
39
|
}
|
|
@@ -4,7 +4,7 @@ import { CalendarCell } from './helpers/calendar-cell.model';
|
|
|
4
4
|
import { CalendarHelper } from './helpers/calendar.helper';
|
|
5
5
|
import { CalendarYearNavigatorConfig } from './options/calendar-year-navigator-config';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
|
-
export
|
|
7
|
+
export type Locale = LocaleDateFns;
|
|
8
8
|
export declare class CalendarComponent implements OnInit, AfterViewInit, OnChanges {
|
|
9
9
|
private calendarHelper;
|
|
10
10
|
calendarContainer: ElementRef;
|
|
@@ -98,5 +98,5 @@ export declare class CalendarComponent implements OnInit, AfterViewInit, OnChang
|
|
|
98
98
|
private getDateFromNavigableYear;
|
|
99
99
|
private getYearsBetweenDates;
|
|
100
100
|
static ɵfac: i0.ɵɵFactoryDeclaration<CalendarComponent, never>;
|
|
101
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CalendarComponent, "kirby-calendar", never, { "timezone": "timezone"; "disableWeekends": "disableWeekends"; "disablePastDates": "disablePastDates"; "disableFutureDates": "disableFutureDates"; "alwaysEnableToday": "alwaysEnableToday"; "locales": "locales"; "customLocales": "customLocales"; "usePopover": "usePopover"; "yearNavigatorOptions": "yearNavigatorOptions"; "selectedDate": "selectedDate"; "disabledDates": "disabledDates"; "enabledDates": "enabledDates"; "todayDate": "todayDate"; "minDate": "minDate"; "maxDate": "maxDate"; }, { "dateChange": "dateChange"; "dateSelect": "dateSelect"; "yearSelect": "yearSelect"; "previousMonthClicked": "previousMonthClicked"; "nextMonthClicked": "nextMonthClicked"; }, never, never, true, never>;
|
|
101
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CalendarComponent, "kirby-calendar", never, { "timezone": { "alias": "timezone"; "required": false; }; "disableWeekends": { "alias": "disableWeekends"; "required": false; }; "disablePastDates": { "alias": "disablePastDates"; "required": false; }; "disableFutureDates": { "alias": "disableFutureDates"; "required": false; }; "alwaysEnableToday": { "alias": "alwaysEnableToday"; "required": false; }; "locales": { "alias": "locales"; "required": false; }; "customLocales": { "alias": "customLocales"; "required": false; }; "usePopover": { "alias": "usePopover"; "required": false; }; "yearNavigatorOptions": { "alias": "yearNavigatorOptions"; "required": false; }; "selectedDate": { "alias": "selectedDate"; "required": false; }; "disabledDates": { "alias": "disabledDates"; "required": false; }; "enabledDates": { "alias": "enabledDates"; "required": false; }; "todayDate": { "alias": "todayDate"; "required": false; }; "minDate": { "alias": "minDate"; "required": false; }; "maxDate": { "alias": "maxDate"; "required": false; }; }, { "dateChange": "dateChange"; "dateSelect": "dateSelect"; "yearSelect": "yearSelect"; "previousMonthClicked": "previousMonthClicked"; "nextMonthClicked": "nextMonthClicked"; }, never, never, true, never>;
|
|
102
102
|
}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { NotificationColor } from '@kirbydesign/designsystem/helpers';
|
|
2
|
-
export
|
|
2
|
+
export type CardFlagLevel = NotificationColor | 'info' | null;
|
|
@@ -2,5 +2,5 @@ import * as i0 from "@angular/core";
|
|
|
2
2
|
export declare class CardFooterComponent {
|
|
3
3
|
hasPadding: boolean;
|
|
4
4
|
static ɵfac: i0.ɵɵFactoryDeclaration<CardFooterComponent, never>;
|
|
5
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CardFooterComponent, "kirby-card-footer", never, { "hasPadding": "hasPadding"; }, {}, never, ["*"], false, never>;
|
|
5
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CardFooterComponent, "kirby-card-footer", never, { "hasPadding": { "alias": "hasPadding"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
6
6
|
}
|
|
@@ -7,5 +7,5 @@ export declare class CardHeaderComponent {
|
|
|
7
7
|
flagged: CardFlagLevel;
|
|
8
8
|
hasPadding: boolean;
|
|
9
9
|
static ɵfac: i0.ɵɵFactoryDeclaration<CardHeaderComponent, never>;
|
|
10
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CardHeaderComponent, "kirby-card-header", never, { "title": "title"; "subtitle": "subtitle"; "isTitleBold": "isTitleBold"; "flagged": "flagged"; "hasPadding": "hasPadding"; }, {}, never, ["*"], false, never>;
|
|
10
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CardHeaderComponent, "kirby-card-header", never, { "title": { "alias": "title"; "required": false; }; "subtitle": { "alias": "subtitle"; "required": false; }; "isTitleBold": { "alias": "isTitleBold"; "required": false; }; "flagged": { "alias": "flagged"; "required": false; }; "hasPadding": { "alias": "hasPadding"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
11
11
|
}
|
package/card/card.component.d.ts
CHANGED
|
@@ -22,5 +22,5 @@ export declare class CardComponent implements OnInit, OnDestroy {
|
|
|
22
22
|
private compareSizesByBreakpoint;
|
|
23
23
|
private handleResize;
|
|
24
24
|
static ɵfac: i0.ɵɵFactoryDeclaration<CardComponent, never>;
|
|
25
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CardComponent, "kirby-card", never, { "title": "title"; "subtitle": "subtitle"; "backgroundImageUrl": "backgroundImageUrl"; "hasPadding": "hasPadding"; "sizes": "sizes"; "flat": "flat"; }, {}, never, ["kirby-card-header", "*", "kirby-card-footer"], false, never>;
|
|
25
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CardComponent, "kirby-card", never, { "title": { "alias": "title"; "required": false; }; "subtitle": { "alias": "subtitle"; "required": false; }; "backgroundImageUrl": { "alias": "backgroundImageUrl"; "required": false; }; "hasPadding": { "alias": "hasPadding"; "required": false; }; "sizes": { "alias": "sizes"; "required": false; }; "flat": { "alias": "flat"; "required": false; }; }, {}, never, ["kirby-card-header", "*", "kirby-card-footer"], false, never>;
|
|
26
26
|
}
|
|
@@ -3,5 +3,5 @@ import * as i0 from "@angular/core";
|
|
|
3
3
|
export declare class ChartComponent extends BaseChartComponent {
|
|
4
4
|
type: Exclude<ChartType, 'stock'>;
|
|
5
5
|
static ɵfac: i0.ɵɵFactoryDeclaration<ChartComponent, never>;
|
|
6
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ChartComponent, "kirby-chart", never, { "type": "type"; }, {}, never, ["*"], false, never>;
|
|
6
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ChartComponent, "kirby-chart", never, { "type": { "alias": "type"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
7
7
|
}
|
|
@@ -30,5 +30,5 @@ export declare class BaseChartComponent implements AfterViewInit, OnChanges {
|
|
|
30
30
|
private redrawChart;
|
|
31
31
|
ngOnDestroy(): void;
|
|
32
32
|
static ɵfac: i0.ɵɵFactoryDeclaration<BaseChartComponent, never>;
|
|
33
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BaseChartComponent, "kirby-base-chart", never, { "type": "type"; "data": "data"; "labels": "labels"; "customOptions": "customOptions"; "annotations": "annotations"; "highlightedElements": "highlightedElements"; "height": "height"; }, {}, never, ["*"], false, never>;
|
|
33
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BaseChartComponent, "kirby-base-chart", never, { "type": { "alias": "type"; "required": false; }; "data": { "alias": "data"; "required": false; }; "labels": { "alias": "labels"; "required": false; }; "customOptions": { "alias": "customOptions"; "required": false; }; "annotations": { "alias": "annotations"; "required": false; }; "highlightedElements": { "alias": "highlightedElements"; "required": false; }; "height": { "alias": "height"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
34
34
|
}
|
|
@@ -1,23 +1,23 @@
|
|
|
1
1
|
import { ChartDataset as ChartJSDataset, ChartType as ChartJSType, ChartOptions } from 'chart.js';
|
|
2
|
-
export
|
|
3
|
-
export
|
|
4
|
-
export
|
|
2
|
+
export type ChartHighlightedElements = number[][];
|
|
3
|
+
export type ChartType = 'column' | 'bar' | 'line' | 'stock';
|
|
4
|
+
export type ChartTypeConfig = {
|
|
5
5
|
type: ChartJSType;
|
|
6
6
|
options?: ChartOptions;
|
|
7
7
|
};
|
|
8
|
-
export
|
|
8
|
+
export type ChartTypesConfig = {
|
|
9
9
|
[key in ChartType]: ChartTypeConfig;
|
|
10
10
|
};
|
|
11
|
-
export
|
|
12
|
-
export
|
|
11
|
+
export type ChartLabel = string | string[];
|
|
12
|
+
export type ChartDataLabelOptions = {
|
|
13
13
|
showMin?: boolean;
|
|
14
14
|
showMax?: boolean;
|
|
15
15
|
showCurrent?: boolean;
|
|
16
16
|
locale?: ChartLocale;
|
|
17
17
|
valueSuffix?: string;
|
|
18
18
|
};
|
|
19
|
-
export
|
|
20
|
-
export
|
|
19
|
+
export type ChartLocale = 'da-DK' | 'en-US';
|
|
20
|
+
export type ChartDataset = {
|
|
21
21
|
kirbyOptions?: {
|
|
22
22
|
highlightedElements?: number[];
|
|
23
23
|
isStockChart?: boolean;
|
|
@@ -5,5 +5,5 @@ export declare class StockChartComponent extends BaseChartComponent {
|
|
|
5
5
|
readonly type = "stock";
|
|
6
6
|
protected renderChart(): void;
|
|
7
7
|
static ɵfac: i0.ɵɵFactoryDeclaration<StockChartComponent, never>;
|
|
8
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<StockChartComponent, "kirby-stock-chart", never, { "dataLabelOptions": "dataLabelOptions"; }, {}, never, ["*"], false, never>;
|
|
8
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<StockChartComponent, "kirby-stock-chart", never, { "dataLabelOptions": { "alias": "dataLabelOptions"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
9
9
|
}
|
|
@@ -14,5 +14,5 @@ export declare class CheckboxComponent {
|
|
|
14
14
|
onChecked(checked: boolean): void;
|
|
15
15
|
_labelId: string;
|
|
16
16
|
static ɵfac: i0.ɵɵFactoryDeclaration<CheckboxComponent, never>;
|
|
17
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CheckboxComponent, "kirby-checkbox", never, { "checked": "checked"; "attentionLevel": "attentionLevel"; "text": "text"; "size": "size"; "hasError": "hasError"; "disabled": "disabled"; }, { "checkedChange": "checkedChange"; }, never, never, true, never>;
|
|
17
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CheckboxComponent, "kirby-checkbox", never, { "checked": { "alias": "checked"; "required": false; }; "attentionLevel": { "alias": "attentionLevel"; "required": false; }; "text": { "alias": "text"; "required": false; }; "size": { "alias": "size"; "required": false; }; "hasError": { "alias": "hasError"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, { "checkedChange": "checkedChange"; }, never, never, true, never>;
|
|
18
18
|
}
|
|
@@ -13,5 +13,5 @@ export declare class TableSortableComponent implements AfterViewInit {
|
|
|
13
13
|
spanElement: ElementRef;
|
|
14
14
|
ngAfterViewInit(): void;
|
|
15
15
|
static ɵfac: i0.ɵɵFactoryDeclaration<TableSortableComponent, never>;
|
|
16
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TableSortableComponent, "th[sortable]", never, { "sortable": "sortable"; "active": "active"; "sortDirection": "sortDirection"; "iconAlignment": "iconAlignment"; "alignment": "alignment"; }, {}, never, ["*"], false, never>;
|
|
16
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TableSortableComponent, "th[sortable]", never, { "sortable": { "alias": "sortable"; "required": false; }; "active": { "alias": "active"; "required": false; }; "sortDirection": { "alias": "sortDirection"; "required": false; }; "iconAlignment": { "alias": "iconAlignment"; "required": false; }; "alignment": { "alias": "alignment"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
17
17
|
}
|
|
@@ -5,5 +5,5 @@ export declare class TableComponent {
|
|
|
5
5
|
get hasFixedLayout(): boolean;
|
|
6
6
|
set fixedLayout(fixed: boolean);
|
|
7
7
|
static ɵfac: i0.ɵɵFactoryDeclaration<TableComponent, never>;
|
|
8
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TableComponent, "table[kirby-table]", never, { "fixedLayout": "fixedLayout"; }, {}, never, ["*"], false, never>;
|
|
8
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TableComponent, "table[kirby-table]", never, { "fixedLayout": { "alias": "fixedLayout"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
9
9
|
}
|
|
@@ -7,5 +7,5 @@ export declare class TableRowComponent {
|
|
|
7
7
|
get isSelectable(): boolean;
|
|
8
8
|
set selectable(selectable: boolean);
|
|
9
9
|
static ɵfac: i0.ɵɵFactoryDeclaration<TableRowComponent, never>;
|
|
10
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TableRowComponent, "tr[kirby-tr]", never, { "selectable": "selectable"; }, {}, never, ["*"], false, never>;
|
|
10
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TableRowComponent, "tr[kirby-tr]", never, { "selectable": { "alias": "selectable"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
11
11
|
}
|
|
@@ -2,5 +2,5 @@ import * as i0 from "@angular/core";
|
|
|
2
2
|
export declare class DividerComponent {
|
|
3
3
|
hasMargin: boolean;
|
|
4
4
|
static ɵfac: i0.ɵɵFactoryDeclaration<DividerComponent, never>;
|
|
5
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DividerComponent, "kirby-divider", never, { "hasMargin": "hasMargin"; }, {}, never, never, true, never>;
|
|
5
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DividerComponent, "kirby-divider", never, { "hasMargin": { "alias": "hasMargin"; "required": false; }; }, {}, never, never, true, never>;
|
|
6
6
|
}
|
|
@@ -124,5 +124,5 @@ export declare class DropdownComponent implements AfterViewInit, OnDestroy, Cont
|
|
|
124
124
|
private unlistenAllSlottedItems;
|
|
125
125
|
ngOnDestroy(): void;
|
|
126
126
|
static ɵfac: i0.ɵɵFactoryDeclaration<DropdownComponent, never>;
|
|
127
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DropdownComponent, "kirby-dropdown", never, { "items": "items"; "selectedIndex": "selectedIndex"; "focusedIndex": "focusedIndex"; "itemTextProperty": "itemTextProperty"; "placeholder": "placeholder"; "popout": "popout"; "attentionLevel": "attentionLevel"; "expand": "expand"; "disabled": "disabled"; "hasError": "hasError"; "size": "size"; "tabindex": "tabindex"; "usePopover": "usePopover"; }, { "change": "change"; }, ["itemTemplate", "slottedItems", "kirbyItemsSlotted"], never, false, never>;
|
|
127
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DropdownComponent, "kirby-dropdown", never, { "items": { "alias": "items"; "required": false; }; "selectedIndex": { "alias": "selectedIndex"; "required": false; }; "focusedIndex": { "alias": "focusedIndex"; "required": false; }; "itemTextProperty": { "alias": "itemTextProperty"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "popout": { "alias": "popout"; "required": false; }; "attentionLevel": { "alias": "attentionLevel"; "required": false; }; "expand": { "alias": "expand"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "hasError": { "alias": "hasError"; "required": false; }; "size": { "alias": "size"; "required": false; }; "tabindex": { "alias": "tabindex"; "required": false; }; "usePopover": { "alias": "usePopover"; "required": false; }; }, { "change": "change"; }, ["itemTemplate", "slottedItems", "kirbyItemsSlotted"], never, false, never>;
|
|
128
128
|
}
|
|
@@ -13,5 +13,5 @@ export declare class EmptyStateComponent implements AfterContentInit {
|
|
|
13
13
|
*/
|
|
14
14
|
private enforceAttentionLevelRules;
|
|
15
15
|
static ɵfac: i0.ɵɵFactoryDeclaration<EmptyStateComponent, never>;
|
|
16
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<EmptyStateComponent, "kirby-empty-state", never, { "iconName": "iconName"; "customIconName": "customIconName"; "title": "title"; "subtitle": "subtitle"; }, {}, ["slottedButtons"], ["*"], false, never>;
|
|
16
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<EmptyStateComponent, "kirby-empty-state", never, { "iconName": { "alias": "iconName"; "required": false; }; "customIconName": { "alias": "customIconName"; "required": false; }; "title": { "alias": "title"; "required": false; }; "subtitle": { "alias": "subtitle"; "required": false; }; }, {}, ["slottedButtons"], ["*"], false, never>;
|
|
17
17
|
}
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
import { animate, state, style, transition, trigger } from '@angular/animations';
|
|
2
|
+
import { ChangeDetectionStrategy, Component, EventEmitter, Input, Output, } from '@angular/core';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
import * as i1 from "@kirbydesign/designsystem/icon";
|
|
5
|
+
// Counter for generating unique element ids
|
|
6
|
+
let uniqueId = 0;
|
|
7
|
+
export class AccordionItemComponent {
|
|
8
|
+
constructor() {
|
|
9
|
+
this.isExpanded = false;
|
|
10
|
+
this.isDisabled = false;
|
|
11
|
+
this.toggle = new EventEmitter();
|
|
12
|
+
// IDs used for a11y labelling
|
|
13
|
+
this._titleId = `kirby-accordion-item-title-${++uniqueId}`;
|
|
14
|
+
this._contentId = `kirby-accordion-item-content-${uniqueId}`;
|
|
15
|
+
}
|
|
16
|
+
ngOnChanges() {
|
|
17
|
+
if (this.isDisabled) {
|
|
18
|
+
this.isExpanded = false;
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
getTitle() {
|
|
22
|
+
if (this.isDisabled && !!this.disabledTitle) {
|
|
23
|
+
return this.disabledTitle;
|
|
24
|
+
}
|
|
25
|
+
else {
|
|
26
|
+
return this.title;
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
_onToggleExpanded(event) {
|
|
30
|
+
event.preventDefault();
|
|
31
|
+
if (this.isDisabled)
|
|
32
|
+
return;
|
|
33
|
+
this.isExpanded = !this.isExpanded && !this.isDisabled;
|
|
34
|
+
this.toggle.emit(this.isExpanded);
|
|
35
|
+
}
|
|
36
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: AccordionItemComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
37
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.5", type: AccordionItemComponent, selector: "kirby-accordion-item", inputs: { title: "title", isExpanded: "isExpanded", isDisabled: "isDisabled", disabledTitle: "disabledTitle" }, outputs: { toggle: "toggle" }, usesOnChanges: true, ngImport: i0, template: "<div class=\"content-layer\">\n <div\n (click)=\"_onToggleExpanded($event)\"\n (keydown.ENTER)=\"_onToggleExpanded($event)\"\n (keydown.space)=\"_onToggleExpanded($event)\"\n class=\"header\"\n role=\"button\"\n [class.disabled]=\"isDisabled\"\n [tabindex]=\"isDisabled ? -1 : 0\"\n [class.expanded]=\"isExpanded\"\n [attr.aria-disabled]=\"isDisabled ? true : undefined\"\n [attr.aria-expanded]=\"isExpanded\"\n [attr.aria-controls]=\"_contentId\"\n [id]=\"_titleId\"\n >\n <span class=\"state-layer\" aria-hidden=\"true\"></span>\n <div class=\"title\">{{ getTitle() }}</div>\n <kirby-icon name=\"arrow-down\"></kirby-icon>\n </div>\n <div\n class=\"content\"\n role=\"region\"\n [attr.aria-labelledby]=\"_titleId\"\n [id]=\"_contentId\"\n [@isExpanded]=\"!!isExpanded\"\n >\n <div class=\"content-body\">\n <ng-content></ng-content>\n </div>\n </div>\n</div>\n", styles: [":host{--state-layer-opacity: 0;--state-layer-background-color: var(--kirby-black);position:relative;display:block;border-top:1px solid var(--kirby-medium);border-bottom:1px solid var(--kirby-medium)}:host .content-layer{position:relative;z-index:var(--content-layer-z-index, 1)}:host .state-layer{position:absolute;inset:0;overflow:hidden;pointer-events:none;border-radius:inherit;z-index:2}:host .state-layer:before{transition:all 80ms linear 0ms;content:\"\";position:absolute;pointer-events:none;inset:-50%;opacity:var(--state-layer-opacity, 0);background-color:var(--state-layer-background-color, var(--kirby-black))}.header{display:flex;align-items:center;height:56px;padding-left:16px;padding-right:16px;-webkit-user-select:none;user-select:none}@media (hover: hover) and (pointer: fine){.header{outline:0}.header:focus-visible{box-shadow:none;--state-layer-opacity: .04;--state-layer-background-color: var(--kirby-black)}}@media (hover: hover){.header:hover{--state-layer-opacity: .04;--state-layer-background-color: var(--kirby-black);cursor:pointer}}.header:active,.header.interaction-state-active{--state-layer-opacity: .08;--state-layer-background-color: var(--kirby-black)}.title{flex-grow:2}.kirby-icon{transition:transform .2s}.content{overflow:hidden;cursor:default}.content-body{padding:0 16px 16px}.disabled{pointer-events:none}.disabled .kirby-icon{color:var(--kirby-semi-dark)}.disabled .title{color:var(--kirby-text-color-semi-dark)}.expanded .title{font-weight:700}.expanded .kirby-icon{transform:rotate(180deg)}:host-context(kirby-accordion):not(:first-child){border-top:none}:host-context(kirby-card){border-color:var(--kirby-background-color)}:host-context(kirby-card):first-child{border-top:none}:host-context(kirby-card):last-child{border-bottom:none}\n"], dependencies: [{ kind: "component", type: i1.IconComponent, selector: "kirby-icon", inputs: ["size", "name", "customName"] }], animations: [
|
|
38
|
+
trigger('isExpanded', [
|
|
39
|
+
state('true', style({ height: '*', visibility: 'visible' })),
|
|
40
|
+
state('false', style({ height: '0px', visibility: 'hidden' })),
|
|
41
|
+
transition('true <=> false', animate('0.2s')),
|
|
42
|
+
]),
|
|
43
|
+
], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
44
|
+
}
|
|
45
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: AccordionItemComponent, decorators: [{
|
|
46
|
+
type: Component,
|
|
47
|
+
args: [{ selector: 'kirby-accordion-item', changeDetection: ChangeDetectionStrategy.OnPush, animations: [
|
|
48
|
+
trigger('isExpanded', [
|
|
49
|
+
state('true', style({ height: '*', visibility: 'visible' })),
|
|
50
|
+
state('false', style({ height: '0px', visibility: 'hidden' })),
|
|
51
|
+
transition('true <=> false', animate('0.2s')),
|
|
52
|
+
]),
|
|
53
|
+
], template: "<div class=\"content-layer\">\n <div\n (click)=\"_onToggleExpanded($event)\"\n (keydown.ENTER)=\"_onToggleExpanded($event)\"\n (keydown.space)=\"_onToggleExpanded($event)\"\n class=\"header\"\n role=\"button\"\n [class.disabled]=\"isDisabled\"\n [tabindex]=\"isDisabled ? -1 : 0\"\n [class.expanded]=\"isExpanded\"\n [attr.aria-disabled]=\"isDisabled ? true : undefined\"\n [attr.aria-expanded]=\"isExpanded\"\n [attr.aria-controls]=\"_contentId\"\n [id]=\"_titleId\"\n >\n <span class=\"state-layer\" aria-hidden=\"true\"></span>\n <div class=\"title\">{{ getTitle() }}</div>\n <kirby-icon name=\"arrow-down\"></kirby-icon>\n </div>\n <div\n class=\"content\"\n role=\"region\"\n [attr.aria-labelledby]=\"_titleId\"\n [id]=\"_contentId\"\n [@isExpanded]=\"!!isExpanded\"\n >\n <div class=\"content-body\">\n <ng-content></ng-content>\n </div>\n </div>\n</div>\n", styles: [":host{--state-layer-opacity: 0;--state-layer-background-color: var(--kirby-black);position:relative;display:block;border-top:1px solid var(--kirby-medium);border-bottom:1px solid var(--kirby-medium)}:host .content-layer{position:relative;z-index:var(--content-layer-z-index, 1)}:host .state-layer{position:absolute;inset:0;overflow:hidden;pointer-events:none;border-radius:inherit;z-index:2}:host .state-layer:before{transition:all 80ms linear 0ms;content:\"\";position:absolute;pointer-events:none;inset:-50%;opacity:var(--state-layer-opacity, 0);background-color:var(--state-layer-background-color, var(--kirby-black))}.header{display:flex;align-items:center;height:56px;padding-left:16px;padding-right:16px;-webkit-user-select:none;user-select:none}@media (hover: hover) and (pointer: fine){.header{outline:0}.header:focus-visible{box-shadow:none;--state-layer-opacity: .04;--state-layer-background-color: var(--kirby-black)}}@media (hover: hover){.header:hover{--state-layer-opacity: .04;--state-layer-background-color: var(--kirby-black);cursor:pointer}}.header:active,.header.interaction-state-active{--state-layer-opacity: .08;--state-layer-background-color: var(--kirby-black)}.title{flex-grow:2}.kirby-icon{transition:transform .2s}.content{overflow:hidden;cursor:default}.content-body{padding:0 16px 16px}.disabled{pointer-events:none}.disabled .kirby-icon{color:var(--kirby-semi-dark)}.disabled .title{color:var(--kirby-text-color-semi-dark)}.expanded .title{font-weight:700}.expanded .kirby-icon{transform:rotate(180deg)}:host-context(kirby-accordion):not(:first-child){border-top:none}:host-context(kirby-card){border-color:var(--kirby-background-color)}:host-context(kirby-card):first-child{border-top:none}:host-context(kirby-card):last-child{border-bottom:none}\n"] }]
|
|
54
|
+
}], propDecorators: { title: [{
|
|
55
|
+
type: Input
|
|
56
|
+
}], isExpanded: [{
|
|
57
|
+
type: Input
|
|
58
|
+
}], isDisabled: [{
|
|
59
|
+
type: Input
|
|
60
|
+
}], disabledTitle: [{
|
|
61
|
+
type: Input
|
|
62
|
+
}], toggle: [{
|
|
63
|
+
type: Output
|
|
64
|
+
}] } });
|
|
65
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYWNjb3JkaW9uLWl0ZW0uY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vbGlicy9kZXNpZ25zeXN0ZW0vYWNjb3JkaW9uL3NyYy9hY2NvcmRpb24taXRlbS5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi9saWJzL2Rlc2lnbnN5c3RlbS9hY2NvcmRpb24vc3JjL2FjY29yZGlvbi1pdGVtLmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxPQUFPLEVBQUUsS0FBSyxFQUFFLEtBQUssRUFBRSxVQUFVLEVBQUUsT0FBTyxFQUFFLE1BQU0scUJBQXFCLENBQUM7QUFDakYsT0FBTyxFQUNMLHVCQUF1QixFQUN2QixTQUFTLEVBQ1QsWUFBWSxFQUNaLEtBQUssRUFFTCxNQUFNLEdBQ1AsTUFBTSxlQUFlLENBQUM7OztBQUd2Qiw0Q0FBNEM7QUFDNUMsSUFBSSxRQUFRLEdBQUcsQ0FBQyxDQUFDO0FBZWpCLE1BQU0sT0FBTyxzQkFBc0I7SUFibkM7UUFlVyxlQUFVLEdBQVksS0FBSyxDQUFDO1FBQzVCLGVBQVUsR0FBWSxLQUFLLENBQUM7UUFFM0IsV0FBTSxHQUEwQixJQUFJLFlBQVksRUFBVyxDQUFDO1FBd0J0RSw4QkFBOEI7UUFDOUIsYUFBUSxHQUFHLDhCQUE4QixFQUFFLFFBQVEsRUFBRSxDQUFDO1FBQ3RELGVBQVUsR0FBRyxnQ0FBZ0MsUUFBUSxFQUFFLENBQUM7S0FDekQ7SUF6QkMsV0FBVztRQUNULElBQUksSUFBSSxDQUFDLFVBQVUsRUFBRTtZQUNuQixJQUFJLENBQUMsVUFBVSxHQUFHLEtBQUssQ0FBQztTQUN6QjtJQUNILENBQUM7SUFFRCxRQUFRO1FBQ04sSUFBSSxJQUFJLENBQUMsVUFBVSxJQUFJLENBQUMsQ0FBQyxJQUFJLENBQUMsYUFBYSxFQUFFO1lBQzNDLE9BQU8sSUFBSSxDQUFDLGFBQWEsQ0FBQztTQUMzQjthQUFNO1lBQ0wsT0FBTyxJQUFJLENBQUMsS0FBSyxDQUFDO1NBQ25CO0lBQ0gsQ0FBQztJQUVELGlCQUFpQixDQUFDLEtBQWM7UUFDOUIsS0FBSyxDQUFDLGNBQWMsRUFBRSxDQUFDO1FBQ3ZCLElBQUksSUFBSSxDQUFDLFVBQVU7WUFBRSxPQUFPO1FBRTVCLElBQUksQ0FBQyxVQUFVLEdBQUcsQ0FBQyxJQUFJLENBQUMsVUFBVSxJQUFJLENBQUMsSUFBSSxDQUFDLFVBQVUsQ0FBQztRQUN2RCxJQUFJLENBQUMsTUFBTSxDQUFDLElBQUksQ0FBQyxJQUFJLENBQUMsVUFBVSxDQUFDLENBQUM7SUFDcEMsQ0FBQztpSUEzQlUsc0JBQXNCO3FIQUF0QixzQkFBc0IsZ09DM0JuQyw2NkJBK0JBLDg0RERaYztZQUNWLE9BQU8sQ0FBQyxZQUFZLEVBQUU7Z0JBQ3BCLEtBQUssQ0FBQyxNQUFNLEVBQUUsS0FBSyxDQUFDLEVBQUUsTUFBTSxFQUFFLEdBQUcsRUFBRSxVQUFVLEVBQUUsU0FBUyxFQUFFLENBQUMsQ0FBQztnQkFDNUQsS0FBSyxDQUFDLE9BQU8sRUFBRSxLQUFLLENBQUMsRUFBRSxNQUFNLEVBQUUsS0FBSyxFQUFFLFVBQVUsRUFBRSxRQUFRLEVBQUUsQ0FBQyxDQUFDO2dCQUM5RCxVQUFVLENBQUMsZ0JBQWdCLEVBQUUsT0FBTyxDQUFDLE1BQU0sQ0FBQyxDQUFDO2FBQzlDLENBQUM7U0FDSDs7MkZBRVUsc0JBQXNCO2tCQWJsQyxTQUFTOytCQUNFLHNCQUFzQixtQkFHZix1QkFBdUIsQ0FBQyxNQUFNLGNBQ25DO3dCQUNWLE9BQU8sQ0FBQyxZQUFZLEVBQUU7NEJBQ3BCLEtBQUssQ0FBQyxNQUFNLEVBQUUsS0FBSyxDQUFDLEVBQUUsTUFBTSxFQUFFLEdBQUcsRUFBRSxVQUFVLEVBQUUsU0FBUyxFQUFFLENBQUMsQ0FBQzs0QkFDNUQsS0FBSyxDQUFDLE9BQU8sRUFBRSxLQUFLLENBQUMsRUFBRSxNQUFNLEVBQUUsS0FBSyxFQUFFLFVBQVUsRUFBRSxRQUFRLEVBQUUsQ0FBQyxDQUFDOzRCQUM5RCxVQUFVLENBQUMsZ0JBQWdCLEVBQUUsT0FBTyxDQUFDLE1BQU0sQ0FBQyxDQUFDO3lCQUM5QyxDQUFDO3FCQUNIOzhCQUdRLEtBQUs7c0JBQWIsS0FBSztnQkFDRyxVQUFVO3NCQUFsQixLQUFLO2dCQUNHLFVBQVU7c0JBQWxCLEtBQUs7Z0JBQ0csYUFBYTtzQkFBckIsS0FBSztnQkFDSSxNQUFNO3NCQUFmLE1BQU0iLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBhbmltYXRlLCBzdGF0ZSwgc3R5bGUsIHRyYW5zaXRpb24sIHRyaWdnZXIgfSBmcm9tICdAYW5ndWxhci9hbmltYXRpb25zJztcbmltcG9ydCB7XG4gIENoYW5nZURldGVjdGlvblN0cmF0ZWd5LFxuICBDb21wb25lbnQsXG4gIEV2ZW50RW1pdHRlcixcbiAgSW5wdXQsXG4gIE9uQ2hhbmdlcyxcbiAgT3V0cHV0LFxufSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IEljb25Nb2R1bGUgfSBmcm9tICdAa2lyYnlkZXNpZ24vZGVzaWduc3lzdGVtL2ljb24nO1xuXG4vLyBDb3VudGVyIGZvciBnZW5lcmF0aW5nIHVuaXF1ZSBlbGVtZW50IGlkc1xubGV0IHVuaXF1ZUlkID0gMDtcblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAna2lyYnktYWNjb3JkaW9uLWl0ZW0nLFxuICB0ZW1wbGF0ZVVybDogJy4vYWNjb3JkaW9uLWl0ZW0uY29tcG9uZW50Lmh0bWwnLFxuICBzdHlsZVVybHM6IFsnLi9hY2NvcmRpb24taXRlbS5jb21wb25lbnQuc2NzcyddLFxuICBjaGFuZ2VEZXRlY3Rpb246IENoYW5nZURldGVjdGlvblN0cmF0ZWd5Lk9uUHVzaCxcbiAgYW5pbWF0aW9uczogW1xuICAgIHRyaWdnZXIoJ2lzRXhwYW5kZWQnLCBbXG4gICAgICBzdGF0ZSgndHJ1ZScsIHN0eWxlKHsgaGVpZ2h0OiAnKicsIHZpc2liaWxpdHk6ICd2aXNpYmxlJyB9KSksXG4gICAgICBzdGF0ZSgnZmFsc2UnLCBzdHlsZSh7IGhlaWdodDogJzBweCcsIHZpc2liaWxpdHk6ICdoaWRkZW4nIH0pKSxcbiAgICAgIHRyYW5zaXRpb24oJ3RydWUgPD0+IGZhbHNlJywgYW5pbWF0ZSgnMC4ycycpKSxcbiAgICBdKSxcbiAgXSxcbn0pXG5leHBvcnQgY2xhc3MgQWNjb3JkaW9uSXRlbUNvbXBvbmVudCBpbXBsZW1lbnRzIE9uQ2hhbmdlcyB7XG4gIEBJbnB1dCgpIHRpdGxlOiBzdHJpbmc7XG4gIEBJbnB1dCgpIGlzRXhwYW5kZWQ6IGJvb2xlYW4gPSBmYWxzZTtcbiAgQElucHV0KCkgaXNEaXNhYmxlZDogYm9vbGVhbiA9IGZhbHNlO1xuICBASW5wdXQoKSBkaXNhYmxlZFRpdGxlOiBzdHJpbmc7XG4gIEBPdXRwdXQoKSB0b2dnbGU6IEV2ZW50RW1pdHRlcjxib29sZWFuPiA9IG5ldyBFdmVudEVtaXR0ZXI8Ym9vbGVhbj4oKTtcblxuICBuZ09uQ2hhbmdlcygpOiB2b2lkIHtcbiAgICBpZiAodGhpcy5pc0Rpc2FibGVkKSB7XG4gICAgICB0aGlzLmlzRXhwYW5kZWQgPSBmYWxzZTtcbiAgICB9XG4gIH1cblxuICBnZXRUaXRsZSgpIHtcbiAgICBpZiAodGhpcy5pc0Rpc2FibGVkICYmICEhdGhpcy5kaXNhYmxlZFRpdGxlKSB7XG4gICAgICByZXR1cm4gdGhpcy5kaXNhYmxlZFRpdGxlO1xuICAgIH0gZWxzZSB7XG4gICAgICByZXR1cm4gdGhpcy50aXRsZTtcbiAgICB9XG4gIH1cblxuICBfb25Ub2dnbGVFeHBhbmRlZChldmVudDogVUlFdmVudCkge1xuICAgIGV2ZW50LnByZXZlbnREZWZhdWx0KCk7XG4gICAgaWYgKHRoaXMuaXNEaXNhYmxlZCkgcmV0dXJuO1xuXG4gICAgdGhpcy5pc0V4cGFuZGVkID0gIXRoaXMuaXNFeHBhbmRlZCAmJiAhdGhpcy5pc0Rpc2FibGVkO1xuICAgIHRoaXMudG9nZ2xlLmVtaXQodGhpcy5pc0V4cGFuZGVkKTtcbiAgfVxuXG4gIC8vIElEcyB1c2VkIGZvciBhMTF5IGxhYmVsbGluZ1xuICBfdGl0bGVJZCA9IGBraXJieS1hY2NvcmRpb24taXRlbS10aXRsZS0keysrdW5pcXVlSWR9YDtcbiAgX2NvbnRlbnRJZCA9IGBraXJieS1hY2NvcmRpb24taXRlbS1jb250ZW50LSR7dW5pcXVlSWR9YDtcbn1cbiIsIjxkaXYgY2xhc3M9XCJjb250ZW50LWxheWVyXCI+XG4gIDxkaXZcbiAgICAoY2xpY2spPVwiX29uVG9nZ2xlRXhwYW5kZWQoJGV2ZW50KVwiXG4gICAgKGtleWRvd24uRU5URVIpPVwiX29uVG9nZ2xlRXhwYW5kZWQoJGV2ZW50KVwiXG4gICAgKGtleWRvd24uc3BhY2UpPVwiX29uVG9nZ2xlRXhwYW5kZWQoJGV2ZW50KVwiXG4gICAgY2xhc3M9XCJoZWFkZXJcIlxuICAgIHJvbGU9XCJidXR0b25cIlxuICAgIFtjbGFzcy5kaXNhYmxlZF09XCJpc0Rpc2FibGVkXCJcbiAgICBbdGFiaW5kZXhdPVwiaXNEaXNhYmxlZCA/IC0xIDogMFwiXG4gICAgW2NsYXNzLmV4cGFuZGVkXT1cImlzRXhwYW5kZWRcIlxuICAgIFthdHRyLmFyaWEtZGlzYWJsZWRdPVwiaXNEaXNhYmxlZCA/IHRydWUgOiB1bmRlZmluZWRcIlxuICAgIFthdHRyLmFyaWEtZXhwYW5kZWRdPVwiaXNFeHBhbmRlZFwiXG4gICAgW2F0dHIuYXJpYS1jb250cm9sc109XCJfY29udGVudElkXCJcbiAgICBbaWRdPVwiX3RpdGxlSWRcIlxuICA+XG4gICAgPHNwYW4gY2xhc3M9XCJzdGF0ZS1sYXllclwiIGFyaWEtaGlkZGVuPVwidHJ1ZVwiPjwvc3Bhbj5cbiAgICA8ZGl2IGNsYXNzPVwidGl0bGVcIj57eyBnZXRUaXRsZSgpIH19PC9kaXY+XG4gICAgPGtpcmJ5LWljb24gbmFtZT1cImFycm93LWRvd25cIj48L2tpcmJ5LWljb24+XG4gIDwvZGl2PlxuICA8ZGl2XG4gICAgY2xhc3M9XCJjb250ZW50XCJcbiAgICByb2xlPVwicmVnaW9uXCJcbiAgICBbYXR0ci5hcmlhLWxhYmVsbGVkYnldPVwiX3RpdGxlSWRcIlxuICAgIFtpZF09XCJfY29udGVudElkXCJcbiAgICBbQGlzRXhwYW5kZWRdPVwiISFpc0V4cGFuZGVkXCJcbiAgPlxuICAgIDxkaXYgY2xhc3M9XCJjb250ZW50LWJvZHlcIj5cbiAgICAgIDxuZy1jb250ZW50PjwvbmctY29udGVudD5cbiAgICA8L2Rpdj5cbiAgPC9kaXY+XG48L2Rpdj5cbiJdfQ==
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { Directive } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export class AccordionDirective {
|
|
4
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: AccordionDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
5
|
+
/** @nocollapse */ static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.5", type: AccordionDirective, selector: "[kirbyAccordion], kirby-accordion", exportAs: ["kirby-accordion"], ngImport: i0 }); }
|
|
6
|
+
}
|
|
7
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: AccordionDirective, decorators: [{
|
|
8
|
+
type: Directive,
|
|
9
|
+
args: [{
|
|
10
|
+
selector: '[kirbyAccordion], kirby-accordion',
|
|
11
|
+
exportAs: 'kirby-accordion',
|
|
12
|
+
}]
|
|
13
|
+
}] });
|
|
14
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYWNjb3JkaW9uLmRpcmVjdGl2ZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL2xpYnMvZGVzaWduc3lzdGVtL2FjY29yZGlvbi9zcmMvYWNjb3JkaW9uLmRpcmVjdGl2ZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFFLE1BQU0sZUFBZSxDQUFDOztBQU0xQyxNQUFNLE9BQU8sa0JBQWtCO2lJQUFsQixrQkFBa0I7cUhBQWxCLGtCQUFrQjs7MkZBQWxCLGtCQUFrQjtrQkFKOUIsU0FBUzttQkFBQztvQkFDVCxRQUFRLEVBQUUsbUNBQW1DO29CQUM3QyxRQUFRLEVBQUUsaUJBQWlCO2lCQUM1QiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IERpcmVjdGl2ZSB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuXG5ARGlyZWN0aXZlKHtcbiAgc2VsZWN0b3I6ICdba2lyYnlBY2NvcmRpb25dLCBraXJieS1hY2NvcmRpb24nLFxuICBleHBvcnRBczogJ2tpcmJ5LWFjY29yZGlvbicsXG59KVxuZXhwb3J0IGNsYXNzIEFjY29yZGlvbkRpcmVjdGl2ZSB7fVxuIl19
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { NgModule } from '@angular/core';
|
|
2
|
+
import { IconModule } from '@kirbydesign/designsystem/icon';
|
|
3
|
+
import { AccordionItemComponent } from './accordion-item.component';
|
|
4
|
+
import { AccordionDirective } from './accordion.directive';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
const declarations = [AccordionDirective, AccordionItemComponent];
|
|
7
|
+
export class AccordionModule {
|
|
8
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: AccordionModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
9
|
+
/** @nocollapse */ static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.5", ngImport: i0, type: AccordionModule, declarations: [AccordionDirective, AccordionItemComponent], imports: [IconModule], exports: [AccordionDirective, AccordionItemComponent] }); }
|
|
10
|
+
/** @nocollapse */ static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: AccordionModule, imports: [IconModule] }); }
|
|
11
|
+
}
|
|
12
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: AccordionModule, decorators: [{
|
|
13
|
+
type: NgModule,
|
|
14
|
+
args: [{
|
|
15
|
+
declarations: [...declarations],
|
|
16
|
+
imports: [IconModule],
|
|
17
|
+
exports: [...declarations],
|
|
18
|
+
}]
|
|
19
|
+
}] });
|
|
20
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYWNjb3JkaW9uLm1vZHVsZS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL2xpYnMvZGVzaWduc3lzdGVtL2FjY29yZGlvbi9zcmMvYWNjb3JkaW9uLm1vZHVsZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsUUFBUSxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQ3pDLE9BQU8sRUFBRSxVQUFVLEVBQUUsTUFBTSxnQ0FBZ0MsQ0FBQztBQUU1RCxPQUFPLEVBQUUsc0JBQXNCLEVBQUUsTUFBTSw0QkFBNEIsQ0FBQztBQUNwRSxPQUFPLEVBQUUsa0JBQWtCLEVBQUUsTUFBTSx1QkFBdUIsQ0FBQzs7QUFFM0QsTUFBTSxZQUFZLEdBQUcsQ0FBQyxrQkFBa0IsRUFBRSxzQkFBc0IsQ0FBQyxDQUFDO0FBT2xFLE1BQU0sT0FBTyxlQUFlO2lJQUFmLGVBQWU7a0lBQWYsZUFBZSxpQkFQTixrQkFBa0IsRUFBRSxzQkFBc0IsYUFJcEQsVUFBVSxhQUpBLGtCQUFrQixFQUFFLHNCQUFzQjtrSUFPbkQsZUFBZSxZQUhoQixVQUFVOzsyRkFHVCxlQUFlO2tCQUwzQixRQUFRO21CQUFDO29CQUNSLFlBQVksRUFBRSxDQUFDLEdBQUcsWUFBWSxDQUFDO29CQUMvQixPQUFPLEVBQUUsQ0FBQyxVQUFVLENBQUM7b0JBQ3JCLE9BQU8sRUFBRSxDQUFDLEdBQUcsWUFBWSxDQUFDO2lCQUMzQiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IE5nTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBJY29uTW9kdWxlIH0gZnJvbSAnQGtpcmJ5ZGVzaWduL2Rlc2lnbnN5c3RlbS9pY29uJztcblxuaW1wb3J0IHsgQWNjb3JkaW9uSXRlbUNvbXBvbmVudCB9IGZyb20gJy4vYWNjb3JkaW9uLWl0ZW0uY29tcG9uZW50JztcbmltcG9ydCB7IEFjY29yZGlvbkRpcmVjdGl2ZSB9IGZyb20gJy4vYWNjb3JkaW9uLmRpcmVjdGl2ZSc7XG5cbmNvbnN0IGRlY2xhcmF0aW9ucyA9IFtBY2NvcmRpb25EaXJlY3RpdmUsIEFjY29yZGlvbkl0ZW1Db21wb25lbnRdO1xuXG5ATmdNb2R1bGUoe1xuICBkZWNsYXJhdGlvbnM6IFsuLi5kZWNsYXJhdGlvbnNdLFxuICBpbXBvcnRzOiBbSWNvbk1vZHVsZV0sXG4gIGV4cG9ydHM6IFsuLi5kZWNsYXJhdGlvbnNdLFxufSlcbmV4cG9ydCBjbGFzcyBBY2NvcmRpb25Nb2R1bGUge31cbiJdfQ==
|
|
@@ -0,0 +1,131 @@
|
|
|
1
|
+
import { CommonModule } from '@angular/common';
|
|
2
|
+
import { ChangeDetectionStrategy, Component, ContentChildren, ElementRef, HostBinding, Inject, InjectionToken, Input, Optional, QueryList, Renderer2, ViewChild, } from '@angular/core';
|
|
3
|
+
import { ButtonComponent } from '@kirbydesign/designsystem/button';
|
|
4
|
+
import { ItemModule } from '@kirbydesign/designsystem/item';
|
|
5
|
+
import { MenuComponent } from '@kirbydesign/designsystem/menu';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
import * as i1 from "@angular/common";
|
|
8
|
+
import * as i2 from "@kirbydesign/designsystem/item";
|
|
9
|
+
export const ACTIONGROUP_CONFIG = new InjectionToken('action-group.config');
|
|
10
|
+
export class ActionGroupComponent {
|
|
11
|
+
get _align() {
|
|
12
|
+
return 'align-' + this.align;
|
|
13
|
+
}
|
|
14
|
+
constructor(elementRef, renderer, config) {
|
|
15
|
+
this.elementRef = elementRef;
|
|
16
|
+
this.renderer = renderer;
|
|
17
|
+
this.config = config;
|
|
18
|
+
this.align = 'end';
|
|
19
|
+
this._collapsedActions = [];
|
|
20
|
+
this.collapseThreshold = 2;
|
|
21
|
+
}
|
|
22
|
+
ngAfterContentInit() {
|
|
23
|
+
// Ensure we collapse according to visibleActions if lower than our default threshold (2).
|
|
24
|
+
// I.e. if there are 2 buttons and visibleActions = 1 we'll collapse the 2nd button into the menu:
|
|
25
|
+
if (this.visibleActions < this.collapseThreshold) {
|
|
26
|
+
this.collapseThreshold = this.visibleActions;
|
|
27
|
+
}
|
|
28
|
+
this.initializeFromConfig();
|
|
29
|
+
if (this.visibleActions !== undefined) {
|
|
30
|
+
this.initializeCollapsing();
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
ngOnChanges(changes) {
|
|
34
|
+
if (changes.visibleActions && !changes.visibleActions.firstChange) {
|
|
35
|
+
const satifiesMaxVisibleActions = this.config?.maxVisibleActions === undefined ||
|
|
36
|
+
this.config?.maxVisibleActions === null ||
|
|
37
|
+
changes.visibleActions.currentValue <= this.config?.maxVisibleActions;
|
|
38
|
+
if (satifiesMaxVisibleActions) {
|
|
39
|
+
this.initializeCollapsing();
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
onActionSelect(action) {
|
|
44
|
+
const event = new PointerEvent('click', {
|
|
45
|
+
bubbles: true,
|
|
46
|
+
cancelable: true,
|
|
47
|
+
view: window,
|
|
48
|
+
});
|
|
49
|
+
action.button.dispatchEvent(event);
|
|
50
|
+
}
|
|
51
|
+
initializeFromConfig() {
|
|
52
|
+
if (!this.config)
|
|
53
|
+
return;
|
|
54
|
+
if (this.visibleActions === undefined && this.config.defaultVisibleActions !== undefined) {
|
|
55
|
+
this.visibleActions = this.config.defaultVisibleActions;
|
|
56
|
+
}
|
|
57
|
+
if (this.config.maxVisibleActions !== undefined) {
|
|
58
|
+
// Don't overwrite visibleActions value if configured lower than maxVisibleActions:
|
|
59
|
+
if (!(this.visibleActions < this.config.maxVisibleActions)) {
|
|
60
|
+
this.visibleActions = this.config.maxVisibleActions;
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
if (this.config.isCondensed) {
|
|
64
|
+
this.buttons?.forEach((button) => (button.showIconOnly = true));
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
initializeCollapsing() {
|
|
68
|
+
if (this.buttonElements.length <= this.collapseThreshold)
|
|
69
|
+
return;
|
|
70
|
+
this.moveButtons();
|
|
71
|
+
this.populateMenu();
|
|
72
|
+
this.toggleMenu();
|
|
73
|
+
}
|
|
74
|
+
moveButtons() {
|
|
75
|
+
const buttonsToShow = [...this.buttonElements]
|
|
76
|
+
.slice(0, this.visibleActions)
|
|
77
|
+
.filter((btn) => btn.nativeElement.parentElement === this.hiddenLayer.nativeElement);
|
|
78
|
+
buttonsToShow.forEach((button) => {
|
|
79
|
+
this.renderer.insertBefore(this.elementRef.nativeElement, button.nativeElement, this.menuElement.nativeElement);
|
|
80
|
+
});
|
|
81
|
+
const buttonsToHide = [...this.buttonElements].slice(this.visibleActions);
|
|
82
|
+
buttonsToHide.forEach((button) => {
|
|
83
|
+
this.renderer.appendChild(this.hiddenLayer.nativeElement, button.nativeElement);
|
|
84
|
+
});
|
|
85
|
+
}
|
|
86
|
+
toggleMenu() {
|
|
87
|
+
const hasHiddenButtons = this.hiddenLayer.nativeElement.childElementCount > 0;
|
|
88
|
+
this._isCollapsed = hasHiddenButtons;
|
|
89
|
+
}
|
|
90
|
+
populateMenu() {
|
|
91
|
+
const hiddenButtons = Array.from(this.hiddenLayer.nativeElement.children);
|
|
92
|
+
this._collapsedActions = hiddenButtons.map((button) => ({
|
|
93
|
+
button,
|
|
94
|
+
text: button.textContent.trim(),
|
|
95
|
+
}));
|
|
96
|
+
}
|
|
97
|
+
/** @nocollapse */ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: ActionGroupComponent, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: ACTIONGROUP_CONFIG, optional: true }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
98
|
+
/** @nocollapse */ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.5", type: ActionGroupComponent, isStandalone: true, selector: "kirby-action-group", inputs: { visibleActions: "visibleActions", align: "align" }, host: { properties: { "class.is-collapsed": "this._isCollapsed", "class": "this._align" } }, queries: [{ propertyName: "buttonElements", predicate: ButtonComponent, read: ElementRef }, { propertyName: "buttons", predicate: ButtonComponent }], viewQueries: [{ propertyName: "hiddenLayer", first: true, predicate: ["hiddenLayer"], descendants: true, read: ElementRef, static: true }, { propertyName: "menuElement", first: true, predicate: MenuComponent, descendants: true, read: ElementRef, static: true }], usesOnChanges: true, ngImport: i0, template: "<ng-content select=\"button[kirby-button]\"></ng-content>\n\n<kirby-menu [placement]=\"'bottom-end'\">\n <kirby-item\n *ngFor=\"let action of _collapsedActions\"\n [selectable]=\"true\"\n (click)=\"onActionSelect(action)\"\n >\n {{ action.text }}\n </kirby-item>\n</kirby-menu>\n\n<div class=\"hidden-layer\" #hiddenLayer></div>\n", styles: [":host{display:flex;position:relative;gap:8px}:host(.align-end){justify-content:flex-end}:host(.align-end) .hidden-layer{order:-1}.hidden-layer{display:none;visibility:hidden}kirby-menu{display:none;z-index:1}:host(.is-collapsed) kirby-menu{display:inline-block}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "ngmodule", type: ItemModule }, { kind: "component", type: i2.ItemComponent, selector: "kirby-item", inputs: ["disabled", "selected", "disclosure", "selectable", "reorderable", "size", "rotateIcon"] }, { kind: "component", type: MenuComponent, selector: "kirby-menu", inputs: ["isDisabled", "buttonSize", "placement", "attentionLevel", "triggers", "DOMPortalOutlet", "portalOutletConfig", "autoPlacement", "closeOnSelect", "closeOnEscapeKey", "closeOnBackdrop", "shift", "minWidth"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
99
|
+
}
|
|
100
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.5", ngImport: i0, type: ActionGroupComponent, decorators: [{
|
|
101
|
+
type: Component,
|
|
102
|
+
args: [{ selector: 'kirby-action-group', standalone: true, imports: [CommonModule, ButtonComponent, ItemModule, MenuComponent], changeDetection: ChangeDetectionStrategy.OnPush, template: "<ng-content select=\"button[kirby-button]\"></ng-content>\n\n<kirby-menu [placement]=\"'bottom-end'\">\n <kirby-item\n *ngFor=\"let action of _collapsedActions\"\n [selectable]=\"true\"\n (click)=\"onActionSelect(action)\"\n >\n {{ action.text }}\n </kirby-item>\n</kirby-menu>\n\n<div class=\"hidden-layer\" #hiddenLayer></div>\n", styles: [":host{display:flex;position:relative;gap:8px}:host(.align-end){justify-content:flex-end}:host(.align-end) .hidden-layer{order:-1}.hidden-layer{display:none;visibility:hidden}kirby-menu{display:none;z-index:1}:host(.is-collapsed) kirby-menu{display:inline-block}\n"] }]
|
|
103
|
+
}], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i0.Renderer2 }, { type: undefined, decorators: [{
|
|
104
|
+
type: Optional
|
|
105
|
+
}, {
|
|
106
|
+
type: Inject,
|
|
107
|
+
args: [ACTIONGROUP_CONFIG]
|
|
108
|
+
}] }]; }, propDecorators: { visibleActions: [{
|
|
109
|
+
type: Input
|
|
110
|
+
}], align: [{
|
|
111
|
+
type: Input
|
|
112
|
+
}], buttonElements: [{
|
|
113
|
+
type: ContentChildren,
|
|
114
|
+
args: [ButtonComponent, { read: ElementRef }]
|
|
115
|
+
}], buttons: [{
|
|
116
|
+
type: ContentChildren,
|
|
117
|
+
args: [ButtonComponent]
|
|
118
|
+
}], hiddenLayer: [{
|
|
119
|
+
type: ViewChild,
|
|
120
|
+
args: ['hiddenLayer', { read: ElementRef, static: true }]
|
|
121
|
+
}], menuElement: [{
|
|
122
|
+
type: ViewChild,
|
|
123
|
+
args: [MenuComponent, { read: ElementRef, static: true }]
|
|
124
|
+
}], _isCollapsed: [{
|
|
125
|
+
type: HostBinding,
|
|
126
|
+
args: ['class.is-collapsed']
|
|
127
|
+
}], _align: [{
|
|
128
|
+
type: HostBinding,
|
|
129
|
+
args: ['class']
|
|
130
|
+
}] } });
|
|
131
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYWN0aW9uLWdyb3VwLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL2xpYnMvZGVzaWduc3lzdGVtL2FjdGlvbi1ncm91cC9zcmMvYWN0aW9uLWdyb3VwLmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uL2xpYnMvZGVzaWduc3lzdGVtL2FjdGlvbi1ncm91cC9zcmMvYWN0aW9uLWdyb3VwLmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSxpQkFBaUIsQ0FBQztBQUMvQyxPQUFPLEVBRUwsdUJBQXVCLEVBQ3ZCLFNBQVMsRUFDVCxlQUFlLEVBQ2YsVUFBVSxFQUNWLFdBQVcsRUFDWCxNQUFNLEVBQ04sY0FBYyxFQUNkLEtBQUssRUFFTCxRQUFRLEVBQ1IsU0FBUyxFQUNULFNBQVMsRUFFVCxTQUFTLEdBQ1YsTUFBTSxlQUFlLENBQUM7QUFDdkIsT0FBTyxFQUFFLGVBQWUsRUFBRSxNQUFNLGtDQUFrQyxDQUFDO0FBQ25FLE9BQU8sRUFBRSxVQUFVLEVBQUUsTUFBTSxnQ0FBZ0MsQ0FBQztBQUM1RCxPQUFPLEVBQUUsYUFBYSxFQUFFLE1BQU0sZ0NBQWdDLENBQUM7Ozs7QUFPL0QsTUFBTSxDQUFDLE1BQU0sa0JBQWtCLEdBQUcsSUFBSSxjQUFjLENBQW9CLHFCQUFxQixDQUFDLENBQUM7QUFZL0YsTUFBTSxPQUFPLG9CQUFvQjtJQW9CL0IsSUFDSSxNQUFNO1FBQ1IsT0FBTyxRQUFRLEdBQUcsSUFBSSxDQUFDLEtBQUssQ0FBQztJQUMvQixDQUFDO0lBSUQsWUFDVSxVQUFtQyxFQUNuQyxRQUFtQixFQUNxQixNQUF5QjtRQUZqRSxlQUFVLEdBQVYsVUFBVSxDQUF5QjtRQUNuQyxhQUFRLEdBQVIsUUFBUSxDQUFXO1FBQ3FCLFdBQU0sR0FBTixNQUFNLENBQW1CO1FBMUIzRSxVQUFLLEdBQW9CLEtBQUssQ0FBQztRQWMvQixzQkFBaUIsR0FBc0IsRUFBRSxDQUFDO1FBT2xDLHNCQUFpQixHQUFHLENBQUMsQ0FBQztJQU0zQixDQUFDO0lBRUosa0JBQWtCO1FBQ2hCLDBGQUEwRjtRQUMxRixrR0FBa0c7UUFDbEcsSUFBSSxJQUFJLENBQUMsY0FBYyxHQUFHLElBQUksQ0FBQyxpQkFBaUIsRUFBRTtZQUNoRCxJQUFJLENBQUMsaUJBQWlCLEdBQUcsSUFBSSxDQUFDLGNBQWMsQ0FBQztTQUM5QztRQUVELElBQUksQ0FBQyxvQkFBb0IsRUFBRSxDQUFDO1FBRTVCLElBQUksSUFBSSxDQUFDLGNBQWMsS0FBSyxTQUFTLEVBQUU7WUFDckMsSUFBSSxDQUFDLG9CQUFvQixFQUFFLENBQUM7U0FDN0I7SUFDSCxDQUFDO0lBRUQsV0FBVyxDQUFDLE9BQXNCO1FBQ2hDLElBQUksT0FBTyxDQUFDLGNBQWMsSUFBSSxDQUFDLE9BQU8sQ0FBQyxjQUFjLENBQUMsV0FBVyxFQUFFO1lBQ2pFLE1BQU0seUJBQXlCLEdBQzdCLElBQUksQ0FBQyxNQUFNLEVBQUUsaUJBQWlCLEtBQUssU0FBUztnQkFDNUMsSUFBSSxDQUFDLE1BQU0sRUFBRSxpQkFBaUIsS0FBSyxJQUFJO2dCQUN2QyxPQUFPLENBQUMsY0FBYyxDQUFDLFlBQVksSUFBSSxJQUFJLENBQUMsTUFBTSxFQUFFLGlCQUFpQixDQUFDO1lBQ3hFLElBQUkseUJBQXlCLEVBQUU7Z0JBQzdCLElBQUksQ0FBQyxvQkFBb0IsRUFBRSxDQUFDO2FBQzdCO1NBQ0Y7SUFDSCxDQUFDO0lBRUQsY0FBYyxDQUFDLE1BQXVCO1FBQ3BDLE1BQU0sS0FBSyxHQUFHLElBQUksWUFBWSxDQUFDLE9BQU8sRUFBRTtZQUN0QyxPQUFPLEVBQUUsSUFBSTtZQUNiLFVBQVUsRUFBRSxJQUFJO1lBQ2hCLElBQUksRUFBRSxNQUFNO1NBQ2IsQ0FBQyxDQUFDO1FBRUgsTUFBTSxDQUFDLE1BQU0sQ0FBQyxhQUFhLENBQUMsS0FBSyxDQUFDLENBQUM7SUFDckMsQ0FBQztJQUVPLG9CQUFvQjtRQUMxQixJQUFJLENBQUMsSUFBSSxDQUFDLE1BQU07WUFBRSxPQUFPO1FBRXpCLElBQUksSUFBSSxDQUFDLGNBQWMsS0FBSyxTQUFTLElBQUksSUFBSSxDQUFDLE1BQU0sQ0FBQyxxQkFBcUIsS0FBSyxTQUFTLEVBQUU7WUFDeEYsSUFBSSxDQUFDLGNBQWMsR0FBRyxJQUFJLENBQUMsTUFBTSxDQUFDLHFCQUFxQixDQUFDO1NBQ3pEO1FBRUQsSUFBSSxJQUFJLENBQUMsTUFBTSxDQUFDLGlCQUFpQixLQUFLLFNBQVMsRUFBRTtZQUMvQyxtRkFBbUY7WUFDbkYsSUFBSSxDQUFDLENBQUMsSUFBSSxDQUFDLGNBQWMsR0FBRyxJQUFJLENBQUMsTUFBTSxDQUFDLGlCQUFpQixDQUFDLEVBQUU7Z0JBQzFELElBQUksQ0FBQyxjQUFjLEdBQUcsSUFBSSxDQUFDLE1BQU0sQ0FBQyxpQkFBaUIsQ0FBQzthQUNyRDtTQUNGO1FBRUQsSUFBSSxJQUFJLENBQUMsTUFBTSxDQUFDLFdBQVcsRUFBRTtZQUMzQixJQUFJLENBQUMsT0FBTyxFQUFFLE9BQU8sQ0FBQyxDQUFDLE1BQU0sRUFBRSxFQUFFLENBQUMsQ0FBQyxNQUFNLENBQUMsWUFBWSxHQUFHLElBQUksQ0FBQyxDQUFDLENBQUM7U0FDakU7SUFDSCxDQUFDO0lBRU8sb0JBQW9CO1FBQzFCLElBQUksSUFBSSxDQUFDLGNBQWMsQ0FBQyxNQUFNLElBQUksSUFBSSxDQUFDLGlCQUFpQjtZQUFFLE9BQU87UUFFakUsSUFBSSxDQUFDLFdBQVcsRUFBRSxDQUFDO1FBQ25CLElBQUksQ0FBQyxZQUFZLEVBQUUsQ0FBQztRQUNwQixJQUFJLENBQUMsVUFBVSxFQUFFLENBQUM7SUFDcEIsQ0FBQztJQUVPLFdBQVc7UUFDakIsTUFBTSxhQUFhLEdBQUcsQ0FBQyxHQUFHLElBQUksQ0FBQyxjQUFjLENBQUM7YUFDM0MsS0FBSyxDQUFDLENBQUMsRUFBRSxJQUFJLENBQUMsY0FBYyxDQUFDO2FBQzdCLE1BQU0sQ0FBQyxDQUFDLEdBQUcsRUFBRSxFQUFFLENBQUMsR0FBRyxDQUFDLGFBQWEsQ0FBQyxhQUFhLEtBQUssSUFBSSxDQUFDLFdBQVcsQ0FBQyxhQUFhLENBQUMsQ0FBQztRQUN2RixhQUFhLENBQUMsT0FBTyxDQUFDLENBQUMsTUFBTSxFQUFFLEVBQUU7WUFDL0IsSUFBSSxDQUFDLFFBQVEsQ0FBQyxZQUFZLENBQ3hCLElBQUksQ0FBQyxVQUFVLENBQUMsYUFBYSxFQUM3QixNQUFNLENBQUMsYUFBYSxFQUNwQixJQUFJLENBQUMsV0FBVyxDQUFDLGFBQWEsQ0FDL0IsQ0FBQztRQUNKLENBQUMsQ0FBQyxDQUFDO1FBRUgsTUFBTSxhQUFhLEdBQUcsQ0FBQyxHQUFHLElBQUksQ0FBQyxjQUFjLENBQUMsQ0FBQyxLQUFLLENBQUMsSUFBSSxDQUFDLGNBQWMsQ0FBQyxDQUFDO1FBQzFFLGFBQWEsQ0FBQyxPQUFPLENBQUMsQ0FBQyxNQUFNLEVBQUUsRUFBRTtZQUMvQixJQUFJLENBQUMsUUFBUSxDQUFDLFdBQVcsQ0FBQyxJQUFJLENBQUMsV0FBVyxDQUFDLGFBQWEsRUFBRSxNQUFNLENBQUMsYUFBYSxDQUFDLENBQUM7UUFDbEYsQ0FBQyxDQUFDLENBQUM7SUFDTCxDQUFDO0lBRU8sVUFBVTtRQUNoQixNQUFNLGdCQUFnQixHQUFHLElBQUksQ0FBQyxXQUFXLENBQUMsYUFBYSxDQUFDLGlCQUFpQixHQUFHLENBQUMsQ0FBQztRQUM5RSxJQUFJLENBQUMsWUFBWSxHQUFHLGdCQUFnQixDQUFDO0lBQ3ZDLENBQUM7SUFFTyxZQUFZO1FBQ2xCLE1BQU0sYUFBYSxHQUFHLEtBQUssQ0FBQyxJQUFJLENBQzlCLElBQUksQ0FBQyxXQUFXLENBQUMsYUFBYSxDQUFDLFFBQVEsQ0FDakIsQ0FBQztRQUV6QixJQUFJLENBQUMsaUJBQWlCLEdBQUcsYUFBYSxDQUFDLEdBQUcsQ0FBQyxDQUFDLE1BQU0sRUFBRSxFQUFFLENBQUMsQ0FBQztZQUN0RCxNQUFNO1lBQ04sSUFBSSxFQUFFLE1BQU0sQ0FBQyxXQUFXLENBQUMsSUFBSSxFQUFFO1NBQ2hDLENBQUMsQ0FBQyxDQUFDO0lBQ04sQ0FBQztpSUFoSVUsb0JBQW9CLHFFQThCVCxrQkFBa0I7cUhBOUI3QixvQkFBb0Isd1FBTWQsZUFBZSxRQUFVLFVBQVUsMENBR25DLGVBQWUsb0hBQ0UsVUFBVSx5RUFHakMsYUFBYSwyQkFBVSxVQUFVLGdFQ3BEOUMsMlZBYUEsZ1VEcUJZLFlBQVksMkpBQW1CLFVBQVUseU1BQUUsYUFBYTs7MkZBS3ZELG9CQUFvQjtrQkFSaEMsU0FBUzsrQkFDRSxvQkFBb0IsY0FDbEIsSUFBSSxXQUNQLENBQUMsWUFBWSxFQUFFLGVBQWUsRUFBRSxVQUFVLEVBQUUsYUFBYSxDQUFDLG1CQUNsRCx1QkFBdUIsQ0FBQyxNQUFNOzswQkFrQzVDLFFBQVE7OzBCQUFJLE1BQU07MkJBQUMsa0JBQWtCOzRDQTdCL0IsY0FBYztzQkFBdEIsS0FBSztnQkFHTixLQUFLO3NCQURKLEtBQUs7Z0JBRzBELGNBQWM7c0JBQTdFLGVBQWU7dUJBQUMsZUFBZSxFQUFFLEVBQUUsSUFBSSxFQUFFLFVBQVUsRUFBRTtnQkFHWixPQUFPO3NCQUFoRCxlQUFlO3VCQUFDLGVBQWU7Z0JBRXhCLFdBQVc7c0JBRGxCLFNBQVM7dUJBQUMsYUFBYSxFQUFFLEVBQUUsSUFBSSxFQUFFLFVBQVUsRUFBRSxNQUFNLEVBQUUsSUFBSSxFQUFFO2dCQUlwRCxXQUFXO3NCQURsQixTQUFTO3VCQUFDLGFBQWEsRUFBRSxFQUFFLElBQUksRUFBRSxVQUFVLEVBQUUsTUFBTSxFQUFFLElBQUksRUFBRTtnQkFJNUQsWUFBWTtzQkFEWCxXQUFXO3VCQUFDLG9CQUFvQjtnQkFLN0IsTUFBTTtzQkFEVCxXQUFXO3VCQUFDLE9BQU8iLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21tb25Nb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb21tb24nO1xuaW1wb3J0IHtcbiAgQWZ0ZXJDb250ZW50SW5pdCxcbiAgQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3ksXG4gIENvbXBvbmVudCxcbiAgQ29udGVudENoaWxkcmVuLFxuICBFbGVtZW50UmVmLFxuICBIb3N0QmluZGluZyxcbiAgSW5qZWN0LFxuICBJbmplY3Rpb25Ub2tlbixcbiAgSW5wdXQsXG4gIE9uQ2hhbmdlcyxcbiAgT3B0aW9uYWwsXG4gIFF1ZXJ5TGlzdCxcbiAgUmVuZGVyZXIyLFxuICBTaW1wbGVDaGFuZ2VzLFxuICBWaWV3Q2hpbGQsXG59IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgQnV0dG9uQ29tcG9uZW50IH0gZnJvbSAnQGtpcmJ5ZGVzaWduL2Rlc2lnbnN5c3RlbS9idXR0b24nO1xuaW1wb3J0IHsgSXRlbU1vZHVsZSB9IGZyb20gJ0BraXJieWRlc2lnbi9kZXNpZ25zeXN0ZW0vaXRlbSc7XG5pbXBvcnQgeyBNZW51Q29tcG9uZW50IH0gZnJvbSAnQGtpcmJ5ZGVzaWduL2Rlc2lnbnN5c3RlbS9tZW51JztcblxuZXhwb3J0IHR5cGUgQWN0aW9uR3JvdXBDb25maWcgPSB7XG4gIGlzQ29uZGVuc2VkPzogYm9vbGVhbjtcbiAgZGVmYXVsdFZpc2libGVBY3Rpb25zPzogbnVtYmVyO1xuICBtYXhWaXNpYmxlQWN0aW9ucz86IG51bWJlcjtcbn07XG5leHBvcnQgY29uc3QgQUNUSU9OR1JPVVBfQ09ORklHID0gbmV3IEluamVjdGlvblRva2VuPEFjdGlvbkdyb3VwQ29uZmlnPignYWN0aW9uLWdyb3VwLmNvbmZpZycpO1xuXG50eXBlIENvbGxhcHNlZEFjdGlvbiA9IHsgYnV0dG9uOiBIVE1MQnV0dG9uRWxlbWVudDsgdGV4dDogc3RyaW5nIH07XG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ2tpcmJ5LWFjdGlvbi1ncm91cCcsXG4gIHN0YW5kYWxvbmU6IHRydWUsXG4gIGltcG9ydHM6IFtDb21tb25Nb2R1bGUsIEJ1dHRvbkNvbXBvbmVudCwgSXRlbU1vZHVsZSwgTWVudUNvbXBvbmVudF0sXG4gIGNoYW5nZURldGVjdGlvbjogQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3kuT25QdXNoLFxuICB0ZW1wbGF0ZVVybDogJy4vYWN0aW9uLWdyb3VwLmNvbXBvbmVudC5odG1sJyxcbiAgc3R5bGVVcmxzOiBbJy4vYWN0aW9uLWdyb3VwLmNvbXBvbmVudC5zY3NzJ10sXG59KVxuZXhwb3J0IGNsYXNzIEFjdGlvbkdyb3VwQ29tcG9uZW50IGltcGxlbWVudHMgQWZ0ZXJDb250ZW50SW5pdCwgT25DaGFuZ2VzIHtcbiAgQElucHV0KCkgdmlzaWJsZUFjdGlvbnM/OiBudW1iZXI7XG5cbiAgQElucHV0KClcbiAgYWxpZ246ICdzdGFydCcgfCAnZW5kJyA9ICdlbmQnO1xuXG4gIEBDb250ZW50Q2hpbGRyZW4oQnV0dG9uQ29tcG9uZW50LCB7IHJlYWQ6IEVsZW1lbnRSZWYgfSkgcHJpdmF0ZSBidXR0b25FbGVtZW50cz86IFF1ZXJ5TGlzdDxcbiAgICBFbGVtZW50UmVmPEhUTUxCdXR0b25FbGVtZW50PlxuICA+O1xuICBAQ29udGVudENoaWxkcmVuKEJ1dHRvbkNvbXBvbmVudCkgcHJpdmF0ZSBidXR0b25zPzogUXVlcnlMaXN0PEJ1dHRvbkNvbXBvbmVudD47XG4gIEBWaWV3Q2hpbGQoJ2hpZGRlbkxheWVyJywgeyByZWFkOiBFbGVtZW50UmVmLCBzdGF0aWM6IHRydWUgfSlcbiAgcHJpdmF0ZSBoaWRkZW5MYXllciE6IEVsZW1lbnRSZWY8SFRNTEVsZW1lbnQ+O1xuXG4gIEBWaWV3Q2hpbGQoTWVudUNvbXBvbmVudCwgeyByZWFkOiBFbGVtZW50UmVmLCBzdGF0aWM6IHRydWUgfSlcbiAgcHJpdmF0ZSBtZW51RWxlbWVudCE6IEVsZW1lbnRSZWY8SFRNTEVsZW1lbnQ+O1xuXG4gIEBIb3N0QmluZGluZygnY2xhc3MuaXMtY29sbGFwc2VkJylcbiAgX2lzQ29sbGFwc2VkOiBib29sZWFuO1xuICBfY29sbGFwc2VkQWN0aW9uczogQ29sbGFwc2VkQWN0aW9uW10gPSBbXTtcblxuICBASG9zdEJpbmRpbmcoJ2NsYXNzJylcbiAgZ2V0IF9hbGlnbigpIHtcbiAgICByZXR1cm4gJ2FsaWduLScgKyB0aGlzLmFsaWduO1xuICB9XG5cbiAgcHJpdmF0ZSBjb2xsYXBzZVRocmVzaG9sZCA9IDI7XG5cbiAgY29uc3RydWN0b3IoXG4gICAgcHJpdmF0ZSBlbGVtZW50UmVmOiBFbGVtZW50UmVmPEhUTUxFbGVtZW50PixcbiAgICBwcml2YXRlIHJlbmRlcmVyOiBSZW5kZXJlcjIsXG4gICAgQE9wdGlvbmFsKCkgQEluamVjdChBQ1RJT05HUk9VUF9DT05GSUcpIHByaXZhdGUgY29uZmlnOiBBY3Rpb25Hcm91cENvbmZpZ1xuICApIHt9XG5cbiAgbmdBZnRlckNvbnRlbnRJbml0KCk6IHZvaWQge1xuICAgIC8vIEVuc3VyZSB3ZSBjb2xsYXBzZSBhY2NvcmRpbmcgdG8gdmlzaWJsZUFjdGlvbnMgaWYgbG93ZXIgdGhhbiBvdXIgZGVmYXVsdCB0aHJlc2hvbGQgKDIpLlxuICAgIC8vIEkuZS4gaWYgdGhlcmUgYXJlIDIgYnV0dG9ucyBhbmQgdmlzaWJsZUFjdGlvbnMgPSAxIHdlJ2xsIGNvbGxhcHNlIHRoZSAybmQgYnV0dG9uIGludG8gdGhlIG1lbnU6XG4gICAgaWYgKHRoaXMudmlzaWJsZUFjdGlvbnMgPCB0aGlzLmNvbGxhcHNlVGhyZXNob2xkKSB7XG4gICAgICB0aGlzLmNvbGxhcHNlVGhyZXNob2xkID0gdGhpcy52aXNpYmxlQWN0aW9ucztcbiAgICB9XG5cbiAgICB0aGlzLmluaXRpYWxpemVGcm9tQ29uZmlnKCk7XG5cbiAgICBpZiAodGhpcy52aXNpYmxlQWN0aW9ucyAhPT0gdW5kZWZpbmVkKSB7XG4gICAgICB0aGlzLmluaXRpYWxpemVDb2xsYXBzaW5nKCk7XG4gICAgfVxuICB9XG5cbiAgbmdPbkNoYW5nZXMoY2hhbmdlczogU2ltcGxlQ2hhbmdlcyk6IHZvaWQge1xuICAgIGlmIChjaGFuZ2VzLnZpc2libGVBY3Rpb25zICYmICFjaGFuZ2VzLnZpc2libGVBY3Rpb25zLmZpcnN0Q2hhbmdlKSB7XG4gICAgICBjb25zdCBzYXRpZmllc01heFZpc2libGVBY3Rpb25zID1cbiAgICAgICAgdGhpcy5jb25maWc/Lm1heFZpc2libGVBY3Rpb25zID09PSB1bmRlZmluZWQgfHxcbiAgICAgICAgdGhpcy5jb25maWc/Lm1heFZpc2libGVBY3Rpb25zID09PSBudWxsIHx8XG4gICAgICAgIGNoYW5nZXMudmlzaWJsZUFjdGlvbnMuY3VycmVudFZhbHVlIDw9IHRoaXMuY29uZmlnPy5tYXhWaXNpYmxlQWN0aW9ucztcbiAgICAgIGlmIChzYXRpZmllc01heFZpc2libGVBY3Rpb25zKSB7XG4gICAgICAgIHRoaXMuaW5pdGlhbGl6ZUNvbGxhcHNpbmcoKTtcbiAgICAgIH1cbiAgICB9XG4gIH1cblxuICBvbkFjdGlvblNlbGVjdChhY3Rpb246IENvbGxhcHNlZEFjdGlvbikge1xuICAgIGNvbnN0IGV2ZW50ID0gbmV3IFBvaW50ZXJFdmVudCgnY2xpY2snLCB7XG4gICAgICBidWJibGVzOiB0cnVlLFxuICAgICAgY2FuY2VsYWJsZTogdHJ1ZSxcbiAgICAgIHZpZXc6IHdpbmRvdyxcbiAgICB9KTtcblxuICAgIGFjdGlvbi5idXR0b24uZGlzcGF0Y2hFdmVudChldmVudCk7XG4gIH1cblxuICBwcml2YXRlIGluaXRpYWxpemVGcm9tQ29uZmlnKCkge1xuICAgIGlmICghdGhpcy5jb25maWcpIHJldHVybjtcblxuICAgIGlmICh0aGlzLnZpc2libGVBY3Rpb25zID09PSB1bmRlZmluZWQgJiYgdGhpcy5jb25maWcuZGVmYXVsdFZpc2libGVBY3Rpb25zICE9PSB1bmRlZmluZWQpIHtcbiAgICAgIHRoaXMudmlzaWJsZUFjdGlvbnMgPSB0aGlzLmNvbmZpZy5kZWZhdWx0VmlzaWJsZUFjdGlvbnM7XG4gICAgfVxuXG4gICAgaWYgKHRoaXMuY29uZmlnLm1heFZpc2libGVBY3Rpb25zICE9PSB1bmRlZmluZWQpIHtcbiAgICAgIC8vIERvbid0IG92ZXJ3cml0ZSB2aXNpYmxlQWN0aW9ucyB2YWx1ZSBpZiBjb25maWd1cmVkIGxvd2VyIHRoYW4gbWF4VmlzaWJsZUFjdGlvbnM6XG4gICAgICBpZiAoISh0aGlzLnZpc2libGVBY3Rpb25zIDwgdGhpcy5jb25maWcubWF4VmlzaWJsZUFjdGlvbnMpKSB7XG4gICAgICAgIHRoaXMudmlzaWJsZUFjdGlvbnMgPSB0aGlzLmNvbmZpZy5tYXhWaXNpYmxlQWN0aW9ucztcbiAgICAgIH1cbiAgICB9XG5cbiAgICBpZiAodGhpcy5jb25maWcuaXNDb25kZW5zZWQpIHtcbiAgICAgIHRoaXMuYnV0dG9ucz8uZm9yRWFjaCgoYnV0dG9uKSA9PiAoYnV0dG9uLnNob3dJY29uT25seSA9IHRydWUpKTtcbiAgICB9XG4gIH1cblxuICBwcml2YXRlIGluaXRpYWxpemVDb2xsYXBzaW5nKCkge1xuICAgIGlmICh0aGlzLmJ1dHRvbkVsZW1lbnRzLmxlbmd0aCA8PSB0aGlzLmNvbGxhcHNlVGhyZXNob2xkKSByZXR1cm47XG5cbiAgICB0aGlzLm1vdmVCdXR0b25zKCk7XG4gICAgdGhpcy5wb3B1bGF0ZU1lbnUoKTtcbiAgICB0aGlzLnRvZ2dsZU1lbnUoKTtcbiAgfVxuXG4gIHByaXZhdGUgbW92ZUJ1dHRvbnMoKSB7XG4gICAgY29uc3QgYnV0dG9uc1RvU2hvdyA9IFsuLi50aGlzLmJ1dHRvbkVsZW1lbnRzXVxuICAgICAgLnNsaWNlKDAsIHRoaXMudmlzaWJsZUFjdGlvbnMpXG4gICAgICAuZmlsdGVyKChidG4pID0+IGJ0bi5uYXRpdmVFbGVtZW50LnBhcmVudEVsZW1lbnQgPT09IHRoaXMuaGlkZGVuTGF5ZXIubmF0aXZlRWxlbWVudCk7XG4gICAgYnV0dG9uc1RvU2hvdy5mb3JFYWNoKChidXR0b24pID0+IHtcbiAgICAgIHRoaXMucmVuZGVyZXIuaW5zZXJ0QmVmb3JlKFxuICAgICAgICB0aGlzLmVsZW1lbnRSZWYubmF0aXZlRWxlbWVudCxcbiAgICAgICAgYnV0dG9uLm5hdGl2ZUVsZW1lbnQsXG4gICAgICAgIHRoaXMubWVudUVsZW1lbnQubmF0aXZlRWxlbWVudFxuICAgICAgKTtcbiAgICB9KTtcblxuICAgIGNvbnN0IGJ1dHRvbnNUb0hpZGUgPSBbLi4udGhpcy5idXR0b25FbGVtZW50c10uc2xpY2UodGhpcy52aXNpYmxlQWN0aW9ucyk7XG4gICAgYnV0dG9uc1RvSGlkZS5mb3JFYWNoKChidXR0b24pID0+IHtcbiAgICAgIHRoaXMucmVuZGVyZXIuYXBwZW5kQ2hpbGQodGhpcy5oaWRkZW5MYXllci5uYXRpdmVFbGVtZW50LCBidXR0b24ubmF0aXZlRWxlbWVudCk7XG4gICAgfSk7XG4gIH1cblxuICBwcml2YXRlIHRvZ2dsZU1lbnUoKSB7XG4gICAgY29uc3QgaGFzSGlkZGVuQnV0dG9ucyA9IHRoaXMuaGlkZGVuTGF5ZXIubmF0aXZlRWxlbWVudC5jaGlsZEVsZW1lbnRDb3VudCA+IDA7XG4gICAgdGhpcy5faXNDb2xsYXBzZWQgPSBoYXNIaWRkZW5CdXR0b25zO1xuICB9XG5cbiAgcHJpdmF0ZSBwb3B1bGF0ZU1lbnUoKSB7XG4gICAgY29uc3QgaGlkZGVuQnV0dG9ucyA9IEFycmF5LmZyb20oXG4gICAgICB0aGlzLmhpZGRlbkxheWVyLm5hdGl2ZUVsZW1lbnQuY2hpbGRyZW5cbiAgICApIGFzIEhUTUxCdXR0b25FbGVtZW50W107XG5cbiAgICB0aGlzLl9jb2xsYXBzZWRBY3Rpb25zID0gaGlkZGVuQnV0dG9ucy5tYXAoKGJ1dHRvbikgPT4gKHtcbiAgICAgIGJ1dHRvbixcbiAgICAgIHRleHQ6IGJ1dHRvbi50ZXh0Q29udGVudC50cmltKCksXG4gICAgfSkpO1xuICB9XG59XG4iLCI8bmctY29udGVudCBzZWxlY3Q9XCJidXR0b25ba2lyYnktYnV0dG9uXVwiPjwvbmctY29udGVudD5cblxuPGtpcmJ5LW1lbnUgW3BsYWNlbWVudF09XCInYm90dG9tLWVuZCdcIj5cbiAgPGtpcmJ5LWl0ZW1cbiAgICAqbmdGb3I9XCJsZXQgYWN0aW9uIG9mIF9jb2xsYXBzZWRBY3Rpb25zXCJcbiAgICBbc2VsZWN0YWJsZV09XCJ0cnVlXCJcbiAgICAoY2xpY2spPVwib25BY3Rpb25TZWxlY3QoYWN0aW9uKVwiXG4gID5cbiAgICB7eyBhY3Rpb24udGV4dCB9fVxuICA8L2tpcmJ5LWl0ZW0+XG48L2tpcmJ5LW1lbnU+XG5cbjxkaXYgY2xhc3M9XCJoaWRkZW4tbGF5ZXJcIiAjaGlkZGVuTGF5ZXI+PC9kaXY+XG4iXX0=
|