@kirbydesign/designsystem 5.2.2 → 6.0.0-rc.0
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/bundles/kirbydesign-designsystem-testing-base.umd.js +1988 -1259
- package/bundles/kirbydesign-designsystem-testing-base.umd.js.map +1 -1
- package/bundles/kirbydesign-designsystem-testing-jasmine.umd.js +34 -16
- package/bundles/kirbydesign-designsystem-testing-jasmine.umd.js.map +1 -1
- package/bundles/kirbydesign-designsystem-testing-jest.umd.js +34 -16
- package/bundles/kirbydesign-designsystem-testing-jest.umd.js.map +1 -1
- package/bundles/kirbydesign-designsystem.umd.js +10025 -9233
- package/bundles/kirbydesign-designsystem.umd.js.map +1 -1
- package/esm2015/kirbydesign-designsystem.js +1 -115
- package/esm2015/lib/components/accordion/accordion-item.component.js +31 -20
- package/esm2015/lib/components/accordion/accordion.directive.js +11 -7
- package/esm2015/lib/components/app/app.component.js +23 -18
- package/esm2015/lib/components/app/app.module.js +13 -8
- package/esm2015/lib/components/avatar/avatar.component.js +31 -19
- package/esm2015/lib/components/button/button.component.js +63 -34
- package/esm2015/lib/components/calendar/calendar.component.js +59 -35
- package/esm2015/lib/components/calendar/helpers/calendar.helper.js +8 -8
- package/esm2015/lib/components/card/card-footer/card-footer.component.js +14 -11
- package/esm2015/lib/components/card/card-header/card-header.component.js +26 -15
- package/esm2015/lib/components/card/card.component.js +34 -25
- package/esm2015/lib/components/chart/chart-js/chart-js.service.js +48 -34
- package/esm2015/lib/components/chart/chart-js/chartjs-plugin-marker/chartjs-plugin-marker.js +1 -3
- package/esm2015/lib/components/chart/chart.component.js +36 -39
- package/esm2015/lib/components/chart/chart.module.js +13 -8
- package/esm2015/lib/components/chart/chart.types.js +1 -1
- package/esm2015/lib/components/chart/configs/chart-config.service.js +7 -4
- package/esm2015/lib/components/chart/configs/interaction-functions-extensions.config.js +8 -10
- package/esm2015/lib/components/chart/configs/shared.utils.js +1 -1
- package/esm2015/lib/components/chart/configs/type.config.js +1 -3
- package/esm2015/lib/components/chart/index.js +2 -1
- package/esm2015/lib/components/chart-deprecated/chart-deprecated-helper.js +7 -4
- package/esm2015/lib/components/chart-deprecated/chart-deprecated.component.js +56 -38
- package/esm2015/lib/components/chart-deprecated/options/areaspline.js +7 -9
- package/esm2015/lib/components/chart-deprecated/options/donut.js +5 -7
- package/esm2015/lib/components/chart-deprecated/options/timeseries.js +8 -10
- package/esm2015/lib/components/checkbox/checkbox.component.js +47 -21
- package/esm2015/lib/components/chip/chip.component.js +24 -13
- package/esm2015/lib/components/divider/divider.component.js +16 -12
- package/esm2015/lib/components/dropdown/dropdown.component.js +154 -61
- package/esm2015/lib/components/dropdown/keyboard-handler.service.js +9 -7
- package/esm2015/lib/components/empty-state/empty-state.component.js +27 -16
- package/esm2015/lib/components/fab-sheet/fab-sheet.component.js +37 -23
- package/esm2015/lib/components/flag/flag.component.js +21 -17
- package/esm2015/lib/components/form-field/directives/date/date-input.directive.js +16 -15
- package/esm2015/lib/components/form-field/directives/decimal-mask/decimal-mask.directive.js +41 -28
- package/esm2015/lib/components/form-field/form-field-message/form-field-message.component.js +17 -13
- package/esm2015/lib/components/form-field/form-field.component.js +39 -26
- package/esm2015/lib/components/form-field/input/input.component.js +65 -23
- package/esm2015/lib/components/form-field/input-counter/input-counter.component.js +14 -11
- package/esm2015/lib/components/form-field/textarea/textarea.component.js +51 -20
- package/esm2015/lib/components/grid/breakpoint-helper.service.js +9 -9
- package/esm2015/lib/components/grid/grid.component.js +21 -18
- package/esm2015/lib/components/icon/icon-registry.service.js +11 -19
- package/esm2015/lib/components/icon/icon-settings.js +2 -3
- package/esm2015/lib/components/icon/icon.component.js +27 -20
- package/esm2015/lib/components/icon/icon.module.js +13 -8
- package/esm2015/lib/components/icon/index.js +1 -2
- package/esm2015/lib/components/icon/kirby-icon-settings.js +2 -4
- package/esm2015/lib/components/index.js +11 -10
- package/esm2015/lib/components/item/item.component.js +33 -16
- package/esm2015/lib/components/item/item.module.js +13 -8
- package/esm2015/lib/components/item/label/label.component.js +18 -12
- package/esm2015/lib/components/item-group/item-group.component.js +15 -11
- package/esm2015/lib/components/item-sliding/item-sliding.component.js +19 -12
- package/esm2015/lib/components/list/directives/infinite-scroll.directive.js +18 -17
- package/esm2015/lib/components/list/directives/list-item-color.directive.js +17 -11
- package/esm2015/lib/components/list/helpers/list-helper.js +7 -4
- package/esm2015/lib/components/list/index.js +2 -3
- package/esm2015/lib/components/list/list-experimental/list-experimental.component.js +20 -13
- package/esm2015/lib/components/list/list-header/list-header.component.js +14 -11
- package/esm2015/lib/components/list/list-item/list-item.component.js +38 -24
- package/esm2015/lib/components/list/list-section-header/list-section-header.component.js +15 -14
- package/esm2015/lib/components/list/list.component.js +81 -40
- package/esm2015/lib/components/list/list.directive.js +34 -45
- package/esm2015/lib/components/list/list.module.js +33 -12
- package/esm2015/lib/components/list/pipes/group-by.pipe.js +10 -6
- package/esm2015/lib/components/loading-overlay/loading-overlay.component.js +20 -13
- package/esm2015/lib/components/loading-overlay/loading-overlay.service.js +9 -13
- package/esm2015/lib/components/modal/action-sheet/action-sheet.component.js +32 -18
- package/esm2015/lib/components/modal/alert/alert.component.js +38 -26
- package/esm2015/lib/components/modal/alert/config/alert-config.js +1 -1
- package/esm2015/lib/components/modal/footer/modal-footer.component.js +25 -13
- package/esm2015/lib/components/modal/modal-wrapper/compact/modal-compact-wrapper.component.js +25 -21
- package/esm2015/lib/components/modal/modal-wrapper/config/modal-config.js +1 -1
- package/esm2015/lib/components/modal/modal-wrapper/modal-wrapper.component.js +124 -56
- package/esm2015/lib/components/modal/services/action-sheet.helper.js +8 -8
- package/esm2015/lib/components/modal/services/alert.helper.js +10 -20
- package/esm2015/lib/components/modal/services/modal-animation-builder.service.js +7 -10
- package/esm2015/lib/components/modal/services/modal-navigation.service.js +8 -13
- package/esm2015/lib/components/modal/services/modal.controller.js +17 -16
- package/esm2015/lib/components/modal/services/modal.helper.js +10 -10
- package/esm2015/lib/components/page/index.js +2 -1
- package/esm2015/lib/components/page/page-footer/page-footer.component.js +21 -18
- package/esm2015/lib/components/page/page.component.js +187 -118
- package/esm2015/lib/components/page/page.module.js +60 -32
- package/esm2015/lib/components/popover/popover.component.js +27 -23
- package/esm2015/lib/components/progress-circle/progress-circle-ring.component.js +29 -17
- package/esm2015/lib/components/progress-circle/progress-circle.component.js +30 -21
- package/esm2015/lib/components/radio/radio-group/radio-group.component.js +60 -34
- package/esm2015/lib/components/radio/radio.component.js +36 -17
- package/esm2015/lib/components/range/range.component.js +51 -29
- package/esm2015/lib/components/reorder-list/reorder-list.component.js +32 -21
- package/esm2015/lib/components/router-outlet/router-outlet.component.js +18 -12
- package/esm2015/lib/components/router-outlet/router-outlet.module.js +13 -8
- package/esm2015/lib/components/section-header/section-header.component.js +15 -9
- package/esm2015/lib/components/segmented-control/segment-item.js +1 -1
- package/esm2015/lib/components/segmented-control/segmented-control.component.js +38 -29
- package/esm2015/lib/components/shared/component-loader.directive.js +15 -16
- package/esm2015/lib/components/shared/resize-observer/resize-observer.factory.js +7 -5
- package/esm2015/lib/components/shared/resize-observer/resize-observer.service.js +7 -10
- package/esm2015/lib/components/slide-button/slide-button.component.js +22 -19
- package/esm2015/lib/components/slides/slides.component.js +42 -20
- package/esm2015/lib/components/spinner/index.js +3 -0
- package/esm2015/lib/components/spinner/spinner.component.js +14 -11
- package/esm2015/lib/components/spinner/spinner.module.js +14 -9
- package/esm2015/lib/components/stock-chart-deprecated/options/stock-chart-deprecated-options.js +9 -3
- package/esm2015/lib/components/stock-chart-deprecated/stock-chart-deprecated.component.js +25 -20
- package/esm2015/lib/components/tabs/tab-button/tab-button.component.js +21 -18
- package/esm2015/lib/components/tabs/tabs.component.js +20 -16
- package/esm2015/lib/components/tabs/tabs.module.js +14 -9
- package/esm2015/lib/components/tabs/tabs.service.js +9 -7
- package/esm2015/lib/components/toast/config/toast-config.js +1 -1
- package/esm2015/lib/components/toast/services/toast.controller.js +8 -8
- package/esm2015/lib/components/toast/services/toast.helper.js +8 -12
- package/esm2015/lib/components/toggle/toggle.component.js +21 -14
- package/esm2015/lib/components/toggle-button/index.js +3 -0
- package/esm2015/lib/components/toggle-button/toggle-button.component.js +20 -13
- package/esm2015/lib/components/toggle-button/toggle-button.module.js +13 -8
- package/esm2015/lib/components/web-component-proxies.component.js +13 -15
- package/esm2015/lib/directives/element-as-button/element-as-button.directive.js +26 -17
- package/esm2015/lib/directives/fit-heading/fit-heading.directive.js +16 -17
- package/esm2015/lib/directives/fit-heading/fit-heading.module.js +12 -7
- package/esm2015/lib/directives/index.js +3 -1
- package/esm2015/lib/directives/key-handler/key-handler.directive.js +14 -14
- package/esm2015/lib/directives/modal-router-link/modal-router-link.directive.js +20 -15
- package/esm2015/lib/directives/theme-color/theme-color.directive.js +55 -24
- package/esm2015/lib/helpers/element-has-ancestor.js +1 -1
- package/esm2015/lib/helpers/line-clamp-helper.js +7 -8
- package/esm2015/lib/helpers/platform.service.js +9 -11
- package/esm2015/lib/index.js +1 -5
- package/esm2015/lib/kirby.module.js +166 -25
- package/esm2015/lib/types/window-ref.js +9 -7
- package/esm2015/testing-base/kirbydesign-designsystem-testing-base.js +1 -59
- package/esm2015/testing-base/lib/components/index.js +56 -0
- package/esm2015/testing-base/lib/components/mock.accordion-item.component.js +26 -18
- package/esm2015/testing-base/lib/components/mock.action-sheet.component.js +38 -24
- package/esm2015/testing-base/lib/components/mock.app.component.js +22 -14
- package/esm2015/testing-base/lib/components/mock.avatar.component.js +37 -24
- package/esm2015/testing-base/lib/components/mock.button.component.js +36 -24
- package/esm2015/testing-base/lib/components/mock.calendar.component.js +54 -31
- package/esm2015/testing-base/lib/components/mock.card-footer.component.js +22 -14
- package/esm2015/testing-base/lib/components/mock.card-header.component.js +30 -20
- package/esm2015/testing-base/lib/components/mock.card.component.js +34 -22
- package/esm2015/testing-base/lib/components/mock.chart-deprecated.component.js +38 -24
- package/esm2015/testing-base/lib/components/mock.chart.component.js +38 -25
- package/esm2015/testing-base/lib/components/mock.checkbox.component.js +36 -23
- package/esm2015/testing-base/lib/components/mock.chip.component.js +26 -18
- package/esm2015/testing-base/lib/components/mock.divider.component.js +24 -17
- package/esm2015/testing-base/lib/components/mock.dropdown.component.js +49 -30
- package/esm2015/testing-base/lib/components/mock.empty-state.component.js +30 -20
- package/esm2015/testing-base/lib/components/mock.fab-sheet.component.js +26 -18
- package/esm2015/testing-base/lib/components/mock.flag.component.js +26 -18
- package/esm2015/testing-base/lib/components/mock.form-field-message.component.js +26 -18
- package/esm2015/testing-base/lib/components/mock.form-field.component.js +26 -18
- package/esm2015/testing-base/lib/components/mock.grid.component.js +26 -18
- package/esm2015/testing-base/lib/components/mock.icon.component.js +29 -20
- package/esm2015/testing-base/lib/components/mock.input-counter.component.js +24 -17
- package/esm2015/testing-base/lib/components/mock.input.component.js +42 -27
- package/esm2015/testing-base/lib/components/mock.item-group.component.js +22 -14
- package/esm2015/testing-base/lib/components/mock.item-sliding.component.js +26 -18
- package/esm2015/testing-base/lib/components/mock.item.component.js +33 -22
- package/esm2015/testing-base/lib/components/mock.label.component.js +24 -17
- package/esm2015/testing-base/lib/components/mock.list-experimental.component.js +22 -14
- package/esm2015/testing-base/lib/components/mock.list-header.component.js +22 -14
- package/esm2015/testing-base/lib/components/mock.list-item.component.js +40 -25
- package/esm2015/testing-base/lib/components/mock.list-section-header.component.js +24 -17
- package/esm2015/testing-base/lib/components/mock.list.component.js +50 -30
- package/esm2015/testing-base/lib/components/mock.loading-overlay.component.js +26 -18
- package/esm2015/testing-base/lib/components/mock.modal-footer.component.js +26 -18
- package/esm2015/testing-base/lib/components/mock.page-footer.component.js +24 -17
- package/esm2015/testing-base/lib/components/mock.page.component.js +228 -125
- package/esm2015/testing-base/lib/components/mock.popover.component.js +29 -20
- package/esm2015/testing-base/lib/components/mock.progress-circle.component.js +28 -19
- package/esm2015/testing-base/lib/components/mock.radio-group.component.js +38 -24
- package/esm2015/testing-base/lib/components/mock.radio.component.js +30 -20
- package/esm2015/testing-base/lib/components/mock.range.component.js +44 -27
- package/esm2015/testing-base/lib/components/mock.reorder-list.component.js +32 -21
- package/esm2015/testing-base/lib/components/mock.router-outlet.component.js +24 -17
- package/esm2015/testing-base/lib/components/mock.section-header.component.js +22 -14
- package/esm2015/testing-base/lib/components/mock.segmented-control.component.js +35 -23
- package/esm2015/testing-base/lib/components/mock.slide-button.component.js +30 -20
- package/esm2015/testing-base/lib/components/mock.slides.component.js +51 -0
- package/esm2015/testing-base/lib/components/mock.spinner.component.js +22 -14
- package/esm2015/testing-base/lib/components/mock.tab-button.component.js +26 -18
- package/esm2015/testing-base/lib/components/mock.tabs.component.js +22 -14
- package/esm2015/testing-base/lib/components/mock.textarea.component.js +35 -23
- package/esm2015/testing-base/lib/components/mock.toggle-button.component.js +26 -18
- package/esm2015/testing-base/lib/components/mock.toggle.component.js +28 -19
- package/esm2015/testing-base/lib/components/mock.web-component-proxies.component.js +33 -0
- package/esm2015/testing-base/lib/directives/index.js +4 -0
- package/esm2015/testing-base/lib/directives/mock.accordion.directive.js +22 -13
- package/esm2015/testing-base/lib/directives/mock.fit-heading.directive.js +24 -15
- package/esm2015/testing-base/lib/directives/mock.theme-color.directive.js +24 -16
- package/esm2015/testing-base/lib/index.js +4 -0
- package/esm2015/testing-base/lib/kirby-testing-base.module.js +69 -7
- package/esm2015/testing-base/lib/mock-components.js +5 -2
- package/esm2015/testing-base/public_api.js +2 -2
- package/esm2015/testing-jasmine/kirbydesign-designsystem-testing-jasmine.js +1 -2
- package/esm2015/testing-jasmine/lib/kirby-testing.module.js +14 -8
- package/esm2015/testing-jasmine/lib/mock-providers.js +1 -1
- package/esm2015/testing-jest/kirbydesign-designsystem-testing-jest.js +1 -2
- package/esm2015/testing-jest/lib/kirby-testing.module.js +14 -8
- package/esm2015/testing-jest/lib/mock-providers.js +1 -1
- package/fesm2015/kirbydesign-designsystem-testing-base.js +1859 -1163
- package/fesm2015/kirbydesign-designsystem-testing-base.js.map +1 -1
- package/fesm2015/kirbydesign-designsystem-testing-jasmine.js +13 -8
- package/fesm2015/kirbydesign-designsystem-testing-jasmine.js.map +1 -1
- package/fesm2015/kirbydesign-designsystem-testing-jest.js +13 -8
- package/fesm2015/kirbydesign-designsystem-testing-jest.js.map +1 -1
- package/fesm2015/kirbydesign-designsystem.js +5261 -4353
- package/fesm2015/kirbydesign-designsystem.js.map +1 -1
- package/icons/svg/more.svg +5 -7
- package/kirbydesign-designsystem.d.ts +1 -114
- package/lib/components/accordion/accordion-item.component.d.ts +3 -0
- package/lib/components/accordion/accordion.directive.d.ts +3 -0
- package/lib/components/app/app.component.d.ts +3 -0
- package/lib/components/app/app.module.d.ts +7 -0
- package/lib/components/avatar/avatar.component.d.ts +5 -2
- package/lib/components/button/button.component.d.ts +5 -2
- package/lib/components/calendar/calendar.component.d.ts +3 -0
- package/lib/components/calendar/helpers/calendar.helper.d.ts +3 -0
- package/lib/components/card/card-footer/card-footer.component.d.ts +3 -0
- package/lib/components/card/card-header/card-header.component.d.ts +3 -0
- package/lib/components/card/card.component.d.ts +3 -0
- package/lib/components/chart/chart-js/chart-js.service.d.ts +7 -3
- package/lib/components/chart/chart.component.d.ts +5 -5
- package/lib/components/chart/chart.module.d.ts +5 -0
- package/lib/components/chart/chart.types.d.ts +1 -0
- package/lib/components/chart/configs/chart-config.service.d.ts +4 -1
- package/lib/components/chart/index.d.ts +1 -0
- package/lib/components/chart-deprecated/chart-deprecated-helper.d.ts +3 -0
- package/lib/components/chart-deprecated/chart-deprecated.component.d.ts +3 -0
- package/lib/components/checkbox/checkbox.component.d.ts +3 -0
- package/lib/components/chip/chip.component.d.ts +3 -0
- package/lib/components/divider/divider.component.d.ts +3 -0
- package/lib/components/dropdown/dropdown.component.d.ts +5 -2
- package/lib/components/dropdown/keyboard-handler.service.d.ts +3 -0
- package/lib/components/empty-state/empty-state.component.d.ts +3 -0
- package/lib/components/fab-sheet/fab-sheet.component.d.ts +3 -0
- package/lib/components/flag/flag.component.d.ts +3 -0
- package/lib/components/form-field/directives/date/date-input.directive.d.ts +3 -0
- package/lib/components/form-field/directives/decimal-mask/decimal-mask.directive.d.ts +3 -0
- package/lib/components/form-field/form-field-message/form-field-message.component.d.ts +3 -0
- package/lib/components/form-field/form-field.component.d.ts +3 -0
- package/lib/components/form-field/input/input.component.d.ts +4 -1
- package/lib/components/form-field/input-counter/input-counter.component.d.ts +5 -2
- package/lib/components/form-field/textarea/textarea.component.d.ts +3 -0
- package/lib/components/grid/breakpoint-helper.service.d.ts +3 -0
- package/lib/components/grid/grid.component.d.ts +3 -0
- package/lib/components/icon/icon-registry.service.d.ts +4 -2
- package/lib/components/icon/icon-settings.d.ts +0 -2
- package/lib/components/icon/icon.component.d.ts +4 -1
- package/lib/components/icon/icon.module.d.ts +6 -0
- package/lib/components/icon/index.d.ts +1 -1
- package/lib/components/index.d.ts +10 -9
- package/lib/components/item/item.component.d.ts +4 -1
- package/lib/components/item/item.module.d.ts +9 -0
- package/lib/components/item/label/label.component.d.ts +3 -0
- package/lib/components/item-group/item-group.component.d.ts +3 -0
- package/lib/components/item-sliding/item-sliding.component.d.ts +3 -0
- package/lib/components/list/directives/infinite-scroll.directive.d.ts +3 -0
- package/lib/components/list/directives/list-item-color.directive.d.ts +3 -0
- package/lib/components/list/helpers/list-helper.d.ts +3 -0
- package/lib/components/list/index.d.ts +1 -2
- package/lib/components/list/list-experimental/list-experimental.component.d.ts +3 -0
- package/lib/components/list/list-header/list-header.component.d.ts +3 -0
- package/lib/components/list/list-item/list-item.component.d.ts +3 -0
- package/lib/components/list/list-section-header/list-section-header.component.d.ts +3 -0
- package/lib/components/list/list.component.d.ts +3 -0
- package/lib/components/list/list.directive.d.ts +9 -6
- package/lib/components/list/list.module.d.ts +16 -0
- package/lib/components/list/pipes/group-by.pipe.d.ts +3 -0
- package/lib/components/loading-overlay/loading-overlay.component.d.ts +3 -0
- package/lib/components/loading-overlay/loading-overlay.service.d.ts +3 -0
- package/lib/components/modal/action-sheet/action-sheet.component.d.ts +3 -0
- package/lib/components/modal/alert/alert.component.d.ts +5 -2
- package/lib/components/modal/alert/config/alert-config.d.ts +0 -8
- package/lib/components/modal/footer/modal-footer.component.d.ts +3 -0
- package/lib/components/modal/modal-wrapper/compact/modal-compact-wrapper.component.d.ts +3 -0
- package/lib/components/modal/modal-wrapper/config/modal-config.d.ts +1 -8
- package/lib/components/modal/modal-wrapper/modal-wrapper.component.d.ts +5 -0
- package/lib/components/modal/services/action-sheet.helper.d.ts +3 -0
- package/lib/components/modal/services/alert.helper.d.ts +4 -2
- package/lib/components/modal/services/modal-animation-builder.service.d.ts +3 -0
- package/lib/components/modal/services/modal-navigation.service.d.ts +3 -0
- package/lib/components/modal/services/modal.controller.d.ts +3 -0
- package/lib/components/modal/services/modal.helper.d.ts +3 -0
- package/lib/components/page/index.d.ts +1 -0
- package/lib/components/page/page-footer/page-footer.component.d.ts +3 -0
- package/lib/components/page/page.component.d.ts +26 -0
- package/lib/components/page/page.module.d.ts +10 -0
- package/lib/components/popover/popover.component.d.ts +4 -1
- package/lib/components/progress-circle/progress-circle-ring.component.d.ts +3 -0
- package/lib/components/progress-circle/progress-circle.component.d.ts +3 -0
- package/lib/components/radio/radio-group/radio-group.component.d.ts +3 -0
- package/lib/components/radio/radio.component.d.ts +3 -0
- package/lib/components/range/range.component.d.ts +3 -0
- package/lib/components/reorder-list/reorder-list.component.d.ts +3 -0
- package/lib/components/router-outlet/router-outlet.component.d.ts +3 -0
- package/lib/components/router-outlet/router-outlet.module.d.ts +7 -0
- package/lib/components/section-header/section-header.component.d.ts +3 -0
- package/lib/components/segmented-control/segment-item.d.ts +0 -4
- package/lib/components/segmented-control/segmented-control.component.d.ts +4 -1
- package/lib/components/shared/component-loader.directive.d.ts +3 -0
- package/lib/components/shared/resize-observer/resize-observer.factory.d.ts +3 -0
- package/lib/components/shared/resize-observer/resize-observer.service.d.ts +3 -0
- package/lib/components/slide-button/slide-button.component.d.ts +3 -0
- package/lib/components/slides/slides.component.d.ts +5 -0
- package/lib/components/spinner/index.d.ts +2 -0
- package/lib/components/spinner/spinner.component.d.ts +3 -0
- package/lib/components/spinner/spinner.module.d.ts +6 -0
- package/lib/components/stock-chart-deprecated/stock-chart-deprecated.component.d.ts +3 -0
- package/lib/components/tabs/tab-button/tab-button.component.d.ts +3 -0
- package/lib/components/tabs/tabs.component.d.ts +3 -0
- package/lib/components/tabs/tabs.module.d.ts +9 -0
- package/lib/components/tabs/tabs.service.d.ts +3 -0
- package/lib/components/toast/config/toast-config.d.ts +1 -4
- package/lib/components/toast/services/toast.controller.d.ts +3 -0
- package/lib/components/toast/services/toast.helper.d.ts +3 -0
- package/lib/components/toggle/toggle.component.d.ts +3 -0
- package/lib/components/toggle-button/index.d.ts +2 -0
- package/lib/components/toggle-button/toggle-button.component.d.ts +3 -0
- package/lib/components/toggle-button/toggle-button.module.d.ts +6 -0
- package/lib/components/web-component-proxies.component.d.ts +3 -0
- package/lib/custom-elements-initializer.d.ts +1 -1
- package/lib/directives/element-as-button/element-as-button.directive.d.ts +3 -0
- package/lib/directives/fit-heading/fit-heading.directive.d.ts +3 -0
- package/lib/directives/fit-heading/fit-heading.module.d.ts +5 -0
- package/lib/directives/index.d.ts +2 -0
- package/lib/directives/key-handler/key-handler.directive.d.ts +3 -0
- package/lib/directives/modal-router-link/modal-router-link.directive.d.ts +3 -0
- package/lib/directives/theme-color/theme-color.directive.d.ts +3 -0
- package/lib/helpers/line-clamp-helper.d.ts +3 -0
- package/lib/helpers/platform.service.d.ts +3 -0
- package/lib/index.d.ts +0 -1
- package/lib/kirby.module.d.ts +69 -0
- package/lib/types/window-ref.d.ts +3 -0
- package/package.json +3 -4
- package/polyfills/intersection-observer-polyfill-loader.js +12 -12
- package/polyfills/resize-observer-polyfill-loader.js +1 -1
- package/readme.md +0 -16
- package/scss/_trigger-publish.scss +1 -0
- package/scss/_trigger.scss +1 -0
- package/scss/awesome-stylesheet.scss +1 -0
- package/scss/base/_awesome-partial.scss +1 -0
- package/scss/base/_index.scss +1 -0
- package/scss/base/_interaction-states.scss +1 -0
- package/scss/base/_link.scss +1 -0
- package/scss/base/index.scss +1 -0
- package/scss/interaction-state/_active.scss +1 -0
- package/scss/interaction-state/_focus.scss +1 -0
- package/scss/interaction-state/_hover.scss +1 -0
- package/scss/interaction-state/_index.scss +1 -0
- package/scss/interaction-state/_interaction-state.utilities.scss +1 -0
- package/scss/interaction-state/_layer.scss +1 -0
- package/scss/interaction-state/_state-layer.scss +1 -0
- package/scss/interaction-state/_utilities.scss +1 -0
- package/scss/interaction-state/ionic/_active.scss +1 -0
- package/scss/interaction-state/ionic/_hover.scss +1 -0
- package/scss/interaction-state/ionic/_index.scss +1 -0
- package/scss/interaction-states/_hover.scss +1 -0
- package/scss/interaction-states/_index.scss +1 -0
- package/scss/opt-out/_index.scss +1 -0
- package/scss/opt-out/_link.scss +1 -0
- package/testing-base/kirbydesign-designsystem-testing-base.d.ts +1 -58
- package/testing-base/lib/components/index.d.ts +55 -0
- package/testing-base/lib/components/mock.accordion-item.component.d.ts +3 -0
- package/testing-base/lib/components/mock.action-sheet.component.d.ts +3 -0
- package/testing-base/lib/components/mock.app.component.d.ts +3 -0
- package/testing-base/lib/components/mock.avatar.component.d.ts +4 -1
- package/testing-base/lib/components/mock.button.component.d.ts +4 -1
- package/testing-base/lib/components/mock.calendar.component.d.ts +4 -0
- package/testing-base/lib/components/mock.card-footer.component.d.ts +3 -0
- package/testing-base/lib/components/mock.card-header.component.d.ts +3 -0
- package/testing-base/lib/components/mock.card.component.d.ts +3 -0
- package/testing-base/lib/components/mock.chart-deprecated.component.d.ts +3 -0
- package/testing-base/lib/components/mock.chart.component.d.ts +5 -3
- package/testing-base/lib/components/mock.checkbox.component.d.ts +3 -0
- package/testing-base/lib/components/mock.chip.component.d.ts +3 -0
- package/testing-base/lib/components/mock.divider.component.d.ts +3 -0
- package/testing-base/lib/components/mock.dropdown.component.d.ts +4 -1
- package/testing-base/lib/components/mock.empty-state.component.d.ts +3 -0
- package/testing-base/lib/components/mock.fab-sheet.component.d.ts +3 -0
- package/testing-base/lib/components/mock.flag.component.d.ts +3 -0
- package/testing-base/lib/components/mock.form-field-message.component.d.ts +3 -0
- package/testing-base/lib/components/mock.form-field.component.d.ts +3 -0
- package/testing-base/lib/components/mock.grid.component.d.ts +3 -0
- package/testing-base/lib/components/mock.icon.component.d.ts +4 -1
- package/testing-base/lib/components/mock.input-counter.component.d.ts +3 -0
- package/testing-base/lib/components/mock.input.component.d.ts +4 -1
- package/testing-base/lib/components/mock.item-group.component.d.ts +3 -0
- package/testing-base/lib/components/mock.item-sliding.component.d.ts +3 -0
- package/testing-base/lib/components/mock.item.component.d.ts +4 -1
- package/testing-base/lib/components/mock.label.component.d.ts +3 -0
- package/testing-base/lib/components/mock.list-experimental.component.d.ts +3 -0
- package/testing-base/lib/components/mock.list-header.component.d.ts +3 -0
- package/testing-base/lib/components/mock.list-item.component.d.ts +3 -0
- package/testing-base/lib/components/mock.list-section-header.component.d.ts +3 -0
- package/testing-base/lib/components/mock.list.component.d.ts +3 -0
- package/testing-base/lib/components/mock.loading-overlay.component.d.ts +3 -0
- package/testing-base/lib/components/mock.modal-footer.component.d.ts +3 -0
- package/testing-base/lib/components/mock.page-footer.component.d.ts +3 -0
- package/testing-base/lib/components/mock.page.component.d.ts +24 -0
- package/testing-base/lib/components/mock.popover.component.d.ts +4 -1
- package/testing-base/lib/components/mock.progress-circle.component.d.ts +3 -0
- package/testing-base/lib/components/mock.radio-group.component.d.ts +3 -0
- package/testing-base/lib/components/mock.radio.component.d.ts +3 -0
- package/testing-base/lib/components/mock.range.component.d.ts +3 -0
- package/testing-base/lib/components/mock.reorder-list.component.d.ts +3 -0
- package/testing-base/lib/components/mock.router-outlet.component.d.ts +3 -0
- package/testing-base/lib/components/mock.section-header.component.d.ts +3 -0
- package/testing-base/lib/components/mock.segmented-control.component.d.ts +4 -1
- package/testing-base/lib/components/mock.slide-button.component.d.ts +3 -0
- package/testing-base/lib/components/mock.slides.component.d.ts +11 -0
- package/testing-base/lib/components/mock.spinner.component.d.ts +3 -0
- package/testing-base/lib/components/mock.tab-button.component.d.ts +3 -0
- package/testing-base/lib/components/mock.tabs.component.d.ts +3 -0
- package/testing-base/lib/components/mock.textarea.component.d.ts +3 -0
- package/testing-base/lib/components/mock.toggle-button.component.d.ts +3 -0
- package/testing-base/lib/components/mock.toggle.component.d.ts +3 -0
- package/testing-base/lib/components/mock.web-component-proxies.component.d.ts +8 -0
- package/testing-base/lib/directives/index.d.ts +3 -0
- package/testing-base/lib/directives/mock.accordion.directive.d.ts +3 -0
- package/testing-base/lib/directives/mock.fit-heading.directive.d.ts +3 -0
- package/testing-base/lib/directives/mock.theme-color.directive.d.ts +3 -0
- package/testing-base/lib/index.d.ts +3 -0
- package/testing-base/lib/kirby-testing-base.module.d.ts +61 -0
- package/testing-base/package.json +0 -1
- package/testing-base/public_api.d.ts +1 -1
- package/testing-jasmine/kirbydesign-designsystem-testing-jasmine.d.ts +1 -1
- package/testing-jasmine/lib/kirby-testing.module.d.ts +5 -0
- package/testing-jasmine/package.json +0 -1
- package/testing-jest/kirbydesign-designsystem-testing-jest.d.ts +1 -1
- package/testing-jest/lib/kirby-testing.module.d.ts +5 -0
- package/testing-jest/package.json +0 -1
- package/README.md +0 -7
- package/bundles/kirbydesign-designsystem-testing-base.umd.min.js +0 -2
- package/bundles/kirbydesign-designsystem-testing-base.umd.min.js.map +0 -1
- package/bundles/kirbydesign-designsystem-testing-jasmine.umd.min.js +0 -16
- package/bundles/kirbydesign-designsystem-testing-jasmine.umd.min.js.map +0 -1
- package/bundles/kirbydesign-designsystem-testing-jest.umd.min.js +0 -16
- package/bundles/kirbydesign-designsystem-testing-jest.umd.min.js.map +0 -1
- package/bundles/kirbydesign-designsystem.umd.min.js +0 -2
- package/bundles/kirbydesign-designsystem.umd.min.js.map +0 -1
- package/esm2015/index.metadata.json +0 -1
- package/esm2015/kirbydesign-designsystem.metadata.json +0 -1
- package/esm2015/lib/components/accordion/accordion-item.component.metadata.json +0 -1
- package/esm2015/lib/components/accordion/accordion.directive.metadata.json +0 -1
- package/esm2015/lib/components/accordion/index.metadata.json +0 -1
- package/esm2015/lib/components/angular-component-lib/utils.metadata.json +0 -1
- package/esm2015/lib/components/app/app.component.metadata.json +0 -1
- package/esm2015/lib/components/app/app.module.metadata.json +0 -1
- package/esm2015/lib/components/app/index.metadata.json +0 -1
- package/esm2015/lib/components/avatar/avatar.component.metadata.json +0 -1
- package/esm2015/lib/components/button/button.component.metadata.json +0 -1
- package/esm2015/lib/components/calendar/calendar.component.metadata.json +0 -1
- package/esm2015/lib/components/calendar/helpers/calendar-cell.model.metadata.json +0 -1
- package/esm2015/lib/components/calendar/helpers/calendar-options.model.metadata.json +0 -1
- package/esm2015/lib/components/calendar/helpers/calendar.helper.metadata.json +0 -1
- package/esm2015/lib/components/calendar/index.metadata.json +0 -1
- package/esm2015/lib/components/calendar/options/calendar-year-navigator-config.metadata.json +0 -1
- package/esm2015/lib/components/card/card-footer/card-footer.component.metadata.json +0 -1
- package/esm2015/lib/components/card/card-header/card-header.component.metadata.json +0 -1
- package/esm2015/lib/components/card/card.component.metadata.json +0 -1
- package/esm2015/lib/components/card/index.metadata.json +0 -1
- package/esm2015/lib/components/chart/chart-js/chart-js.service.metadata.json +0 -1
- package/esm2015/lib/components/chart/chart-js/chartjs-plugin-marker/chartjs-plugin-marker.metadata.json +0 -1
- package/esm2015/lib/components/chart/chart-js/configured-chart-js.metadata.json +0 -1
- package/esm2015/lib/components/chart/chart.component.metadata.json +0 -1
- package/esm2015/lib/components/chart/chart.module.metadata.json +0 -1
- package/esm2015/lib/components/chart/chart.types.metadata.json +0 -1
- package/esm2015/lib/components/chart/configs/annotations.config.metadata.json +0 -1
- package/esm2015/lib/components/chart/configs/chart-config.service.metadata.json +0 -1
- package/esm2015/lib/components/chart/configs/global-defaults.config.metadata.json +0 -1
- package/esm2015/lib/components/chart/configs/interaction-functions-extensions.config.metadata.json +0 -1
- package/esm2015/lib/components/chart/configs/shared.utils.metadata.json +0 -1
- package/esm2015/lib/components/chart/configs/type.config.metadata.json +0 -1
- package/esm2015/lib/components/chart/index.metadata.json +0 -1
- package/esm2015/lib/components/chart-deprecated/chart-deprecated-helper.metadata.json +0 -1
- package/esm2015/lib/components/chart-deprecated/chart-deprecated-type.metadata.json +0 -1
- package/esm2015/lib/components/chart-deprecated/chart-deprecated.component.metadata.json +0 -1
- package/esm2015/lib/components/chart-deprecated/index.metadata.json +0 -1
- package/esm2015/lib/components/chart-deprecated/options/activitygauge.metadata.json +0 -1
- package/esm2015/lib/components/chart-deprecated/options/areaspline.metadata.json +0 -1
- package/esm2015/lib/components/chart-deprecated/options/bar.metadata.json +0 -1
- package/esm2015/lib/components/chart-deprecated/options/column.metadata.json +0 -1
- package/esm2015/lib/components/chart-deprecated/options/donut.metadata.json +0 -1
- package/esm2015/lib/components/chart-deprecated/options/timeseries.metadata.json +0 -1
- package/esm2015/lib/components/checkbox/checkbox.component.metadata.json +0 -1
- package/esm2015/lib/components/chip/chip.component.metadata.json +0 -1
- package/esm2015/lib/components/divider/divider.component.metadata.json +0 -1
- package/esm2015/lib/components/dropdown/dropdown.component.metadata.json +0 -1
- package/esm2015/lib/components/dropdown/dropdown.types.metadata.json +0 -1
- package/esm2015/lib/components/dropdown/keyboard-handler.service.metadata.json +0 -1
- package/esm2015/lib/components/empty-state/empty-state.component.metadata.json +0 -1
- package/esm2015/lib/components/fab-sheet/fab-sheet.component.metadata.json +0 -1
- package/esm2015/lib/components/flag/flag.component.metadata.json +0 -1
- package/esm2015/lib/components/form-field/directives/date/date-input.directive.metadata.json +0 -1
- package/esm2015/lib/components/form-field/directives/decimal-mask/decimal-mask.directive.metadata.json +0 -1
- package/esm2015/lib/components/form-field/form-field-message/form-field-message.component.metadata.json +0 -1
- package/esm2015/lib/components/form-field/form-field.component.metadata.json +0 -1
- package/esm2015/lib/components/form-field/index.metadata.json +0 -1
- package/esm2015/lib/components/form-field/input/input.component.metadata.json +0 -1
- package/esm2015/lib/components/form-field/input-counter/input-counter.component.metadata.json +0 -1
- package/esm2015/lib/components/form-field/textarea/textarea.component.metadata.json +0 -1
- package/esm2015/lib/components/grid/breakpoint-helper.service.metadata.json +0 -1
- package/esm2015/lib/components/grid/grid-card-configuration.metadata.json +0 -1
- package/esm2015/lib/components/grid/grid.component.metadata.json +0 -1
- package/esm2015/lib/components/icon/icon-registry.service.metadata.json +0 -1
- package/esm2015/lib/components/icon/icon-settings.metadata.json +0 -1
- package/esm2015/lib/components/icon/icon.component.metadata.json +0 -1
- package/esm2015/lib/components/icon/icon.module.metadata.json +0 -1
- package/esm2015/lib/components/icon/index.metadata.json +0 -1
- package/esm2015/lib/components/icon/kirby-icon-settings.metadata.json +0 -1
- package/esm2015/lib/components/index.metadata.json +0 -1
- package/esm2015/lib/components/item/index.metadata.json +0 -1
- package/esm2015/lib/components/item/item.component.metadata.json +0 -1
- package/esm2015/lib/components/item/item.module.metadata.json +0 -1
- package/esm2015/lib/components/item/label/label.component.metadata.json +0 -1
- package/esm2015/lib/components/item-group/item-group.component.metadata.json +0 -1
- package/esm2015/lib/components/item-sliding/index.metadata.json +0 -1
- package/esm2015/lib/components/item-sliding/item-sliding.component.metadata.json +0 -1
- package/esm2015/lib/components/item-sliding/item-sliding.types.metadata.json +0 -1
- package/esm2015/lib/components/list/directives/infinite-scroll.directive.metadata.json +0 -1
- package/esm2015/lib/components/list/directives/list-item-color.directive.metadata.json +0 -1
- package/esm2015/lib/components/list/directives/scroll.model.metadata.json +0 -1
- package/esm2015/lib/components/list/helpers/list-helper.metadata.json +0 -1
- package/esm2015/lib/components/list/index.metadata.json +0 -1
- package/esm2015/lib/components/list/list-experimental/list-experimental.component.metadata.json +0 -1
- package/esm2015/lib/components/list/list-header/list-header.component.metadata.json +0 -1
- package/esm2015/lib/components/list/list-item/list-item.component.metadata.json +0 -1
- package/esm2015/lib/components/list/list-section-header/list-section-header.component.metadata.json +0 -1
- package/esm2015/lib/components/list/list-swipe-action.type.metadata.json +0 -1
- package/esm2015/lib/components/list/list.component.metadata.json +0 -1
- package/esm2015/lib/components/list/list.directive.metadata.json +0 -1
- package/esm2015/lib/components/list/list.event.metadata.json +0 -1
- package/esm2015/lib/components/list/list.module.metadata.json +0 -1
- package/esm2015/lib/components/list/pipes/group-by.pipe.metadata.json +0 -1
- package/esm2015/lib/components/loading-overlay/index.metadata.json +0 -1
- package/esm2015/lib/components/loading-overlay/loading-overlay.component.metadata.json +0 -1
- package/esm2015/lib/components/loading-overlay/loading-overlay.service.metadata.json +0 -1
- package/esm2015/lib/components/modal/action-sheet/action-sheet.component.metadata.json +0 -1
- package/esm2015/lib/components/modal/action-sheet/config/action-sheet-config.metadata.json +0 -1
- package/esm2015/lib/components/modal/action-sheet/config/action-sheet-item.metadata.json +0 -1
- package/esm2015/lib/components/modal/alert/alert.component.metadata.json +0 -1
- package/esm2015/lib/components/modal/alert/config/alert-config.metadata.json +0 -1
- package/esm2015/lib/components/modal/footer/modal-footer.component.metadata.json +0 -1
- package/esm2015/lib/components/modal/index.metadata.json +0 -1
- package/esm2015/lib/components/modal/modal-wrapper/compact/modal-compact-wrapper.component.metadata.json +0 -1
- package/esm2015/lib/components/modal/modal-wrapper/config/drawer-supplementary-action.metadata.json +0 -1
- package/esm2015/lib/components/modal/modal-wrapper/config/modal-config.helper.metadata.json +0 -1
- package/esm2015/lib/components/modal/modal-wrapper/config/modal-config.metadata.json +0 -1
- package/esm2015/lib/components/modal/modal-wrapper/modal-wrapper.component.metadata.json +0 -1
- package/esm2015/lib/components/modal/services/action-sheet.helper.metadata.json +0 -1
- package/esm2015/lib/components/modal/services/alert.helper.metadata.json +0 -1
- package/esm2015/lib/components/modal/services/modal-animation-builder.service.metadata.json +0 -1
- package/esm2015/lib/components/modal/services/modal-navigation.service.metadata.json +0 -1
- package/esm2015/lib/components/modal/services/modal.controller.metadata.json +0 -1
- package/esm2015/lib/components/modal/services/modal.helper.metadata.json +0 -1
- package/esm2015/lib/components/modal/services/modal.interfaces.metadata.json +0 -1
- package/esm2015/lib/components/page/index.metadata.json +0 -1
- package/esm2015/lib/components/page/page-footer/page-footer.component.metadata.json +0 -1
- package/esm2015/lib/components/page/page.component.metadata.json +0 -1
- package/esm2015/lib/components/page/page.module.metadata.json +0 -1
- package/esm2015/lib/components/popover/popover.component.metadata.json +0 -1
- package/esm2015/lib/components/progress-circle/progress-circle-ring.component.metadata.json +0 -1
- package/esm2015/lib/components/progress-circle/progress-circle.component.metadata.json +0 -1
- package/esm2015/lib/components/radio/index.metadata.json +0 -1
- package/esm2015/lib/components/radio/radio-group/radio-group.component.metadata.json +0 -1
- package/esm2015/lib/components/radio/radio.component.metadata.json +0 -1
- package/esm2015/lib/components/range/range.component.metadata.json +0 -1
- package/esm2015/lib/components/reorder-list/index.metadata.json +0 -1
- package/esm2015/lib/components/reorder-list/reorder-event.metadata.json +0 -1
- package/esm2015/lib/components/reorder-list/reorder-list.component.metadata.json +0 -1
- package/esm2015/lib/components/router-outlet/index.metadata.json +0 -1
- package/esm2015/lib/components/router-outlet/router-outlet.component.metadata.json +0 -1
- package/esm2015/lib/components/router-outlet/router-outlet.module.metadata.json +0 -1
- package/esm2015/lib/components/section-header/section-header.component.metadata.json +0 -1
- package/esm2015/lib/components/segmented-control/segment-item.metadata.json +0 -1
- package/esm2015/lib/components/segmented-control/segmented-control.component.metadata.json +0 -1
- package/esm2015/lib/components/shared/component-configuration.metadata.json +0 -1
- package/esm2015/lib/components/shared/component-loader.directive.metadata.json +0 -1
- package/esm2015/lib/components/shared/dynamic-component.metadata.json +0 -1
- package/esm2015/lib/components/shared/index.metadata.json +0 -1
- package/esm2015/lib/components/shared/resize-observer/resize-observer.factory.metadata.json +0 -1
- package/esm2015/lib/components/shared/resize-observer/resize-observer.service.metadata.json +0 -1
- package/esm2015/lib/components/shared/resize-observer/types/resize-observer-callback.metadata.json +0 -1
- package/esm2015/lib/components/shared/resize-observer/types/resize-observer-entry.metadata.json +0 -1
- package/esm2015/lib/components/shared/resize-observer/types/resize-observer.metadata.json +0 -1
- package/esm2015/lib/components/slide-button/slide-button.component.metadata.json +0 -1
- package/esm2015/lib/components/slides/slides.component.metadata.json +0 -1
- package/esm2015/lib/components/spinner/spinner.component.metadata.json +0 -1
- package/esm2015/lib/components/spinner/spinner.module.metadata.json +0 -1
- package/esm2015/lib/components/stock-chart-deprecated/index.metadata.json +0 -1
- package/esm2015/lib/components/stock-chart-deprecated/options/stock-chart-deprecated-options.metadata.json +0 -1
- package/esm2015/lib/components/stock-chart-deprecated/stock-chart-deprecated.component.metadata.json +0 -1
- package/esm2015/lib/components/tabs/index.metadata.json +0 -1
- package/esm2015/lib/components/tabs/tab-button/tab-button.component.metadata.json +0 -1
- package/esm2015/lib/components/tabs/tab-button/tab-button.events.metadata.json +0 -1
- package/esm2015/lib/components/tabs/tabs.component.metadata.json +0 -1
- package/esm2015/lib/components/tabs/tabs.module.metadata.json +0 -1
- package/esm2015/lib/components/tabs/tabs.service.metadata.json +0 -1
- package/esm2015/lib/components/toast/config/toast-config.metadata.json +0 -1
- package/esm2015/lib/components/toast/index.metadata.json +0 -1
- package/esm2015/lib/components/toast/services/toast.controller.metadata.json +0 -1
- package/esm2015/lib/components/toast/services/toast.helper.metadata.json +0 -1
- package/esm2015/lib/components/toggle/toggle.component.metadata.json +0 -1
- package/esm2015/lib/components/toggle-button/toggle-button.component.metadata.json +0 -1
- package/esm2015/lib/components/toggle-button/toggle-button.module.metadata.json +0 -1
- package/esm2015/lib/components/web-component-proxies.component.metadata.json +0 -1
- package/esm2015/lib/custom-elements-initializer.metadata.json +0 -1
- package/esm2015/lib/directives/element-as-button/element-as-button.directive.metadata.json +0 -1
- package/esm2015/lib/directives/fit-heading/fit-heading.directive.metadata.json +0 -1
- package/esm2015/lib/directives/fit-heading/fit-heading.module.metadata.json +0 -1
- package/esm2015/lib/directives/index.metadata.json +0 -1
- package/esm2015/lib/directives/key-handler/key-handler.directive.metadata.json +0 -1
- package/esm2015/lib/directives/modal-router-link/modal-router-link.directive.metadata.json +0 -1
- package/esm2015/lib/directives/theme-color/theme-color.directive.metadata.json +0 -1
- package/esm2015/lib/helpers/color-helper.metadata.json +0 -1
- package/esm2015/lib/helpers/deep-copy.metadata.json +0 -1
- package/esm2015/lib/helpers/design-token-helper.metadata.json +0 -1
- package/esm2015/lib/helpers/element-has-ancestor.metadata.json +0 -1
- package/esm2015/lib/helpers/index.metadata.json +0 -1
- package/esm2015/lib/helpers/line-clamp-helper.metadata.json +0 -1
- package/esm2015/lib/helpers/merge-deep.metadata.json +0 -1
- package/esm2015/lib/helpers/platform.service.metadata.json +0 -1
- package/esm2015/lib/helpers/string-helper.metadata.json +0 -1
- package/esm2015/lib/helpers/theme-color.type.metadata.json +0 -1
- package/esm2015/lib/helpers/unique-id-generator.helper.metadata.json +0 -1
- package/esm2015/lib/index.metadata.json +0 -1
- package/esm2015/lib/kirby.module.metadata.json +0 -1
- package/esm2015/lib/scss/scss-helper.metadata.json +0 -1
- package/esm2015/lib/types/window-ref.metadata.json +0 -1
- package/esm2015/testing-base/kirbydesign-designsystem-testing-base.metadata.json +0 -1
- package/esm2015/testing-base/lib/components/mock.accordion-item.component.metadata.json +0 -1
- package/esm2015/testing-base/lib/components/mock.action-sheet.component.metadata.json +0 -1
- package/esm2015/testing-base/lib/components/mock.app.component.metadata.json +0 -1
- package/esm2015/testing-base/lib/components/mock.avatar.component.metadata.json +0 -1
- package/esm2015/testing-base/lib/components/mock.button.component.metadata.json +0 -1
- package/esm2015/testing-base/lib/components/mock.calendar.component.metadata.json +0 -1
- package/esm2015/testing-base/lib/components/mock.card-footer.component.metadata.json +0 -1
- package/esm2015/testing-base/lib/components/mock.card-header.component.metadata.json +0 -1
- package/esm2015/testing-base/lib/components/mock.card.component.metadata.json +0 -1
- package/esm2015/testing-base/lib/components/mock.chart-deprecated.component.metadata.json +0 -1
- package/esm2015/testing-base/lib/components/mock.chart.component.metadata.json +0 -1
- package/esm2015/testing-base/lib/components/mock.checkbox.component.metadata.json +0 -1
- package/esm2015/testing-base/lib/components/mock.chip.component.metadata.json +0 -1
- package/esm2015/testing-base/lib/components/mock.divider.component.metadata.json +0 -1
- package/esm2015/testing-base/lib/components/mock.dropdown.component.metadata.json +0 -1
- package/esm2015/testing-base/lib/components/mock.empty-state.component.metadata.json +0 -1
- package/esm2015/testing-base/lib/components/mock.fab-sheet.component.metadata.json +0 -1
- package/esm2015/testing-base/lib/components/mock.flag.component.metadata.json +0 -1
- package/esm2015/testing-base/lib/components/mock.form-field-message.component.metadata.json +0 -1
- package/esm2015/testing-base/lib/components/mock.form-field.component.metadata.json +0 -1
- package/esm2015/testing-base/lib/components/mock.grid.component.metadata.json +0 -1
- package/esm2015/testing-base/lib/components/mock.icon.component.metadata.json +0 -1
- package/esm2015/testing-base/lib/components/mock.input-counter.component.metadata.json +0 -1
- package/esm2015/testing-base/lib/components/mock.input.component.metadata.json +0 -1
- package/esm2015/testing-base/lib/components/mock.item-group.component.metadata.json +0 -1
- package/esm2015/testing-base/lib/components/mock.item-sliding.component.metadata.json +0 -1
- package/esm2015/testing-base/lib/components/mock.item.component.metadata.json +0 -1
- package/esm2015/testing-base/lib/components/mock.label.component.metadata.json +0 -1
- package/esm2015/testing-base/lib/components/mock.list-experimental.component.metadata.json +0 -1
- package/esm2015/testing-base/lib/components/mock.list-header.component.metadata.json +0 -1
- package/esm2015/testing-base/lib/components/mock.list-item.component.metadata.json +0 -1
- package/esm2015/testing-base/lib/components/mock.list-section-header.component.metadata.json +0 -1
- package/esm2015/testing-base/lib/components/mock.list.component.metadata.json +0 -1
- package/esm2015/testing-base/lib/components/mock.loading-overlay.component.metadata.json +0 -1
- package/esm2015/testing-base/lib/components/mock.modal-footer.component.metadata.json +0 -1
- package/esm2015/testing-base/lib/components/mock.page-footer.component.metadata.json +0 -1
- package/esm2015/testing-base/lib/components/mock.page.component.metadata.json +0 -1
- package/esm2015/testing-base/lib/components/mock.popover.component.metadata.json +0 -1
- package/esm2015/testing-base/lib/components/mock.progress-circle.component.metadata.json +0 -1
- package/esm2015/testing-base/lib/components/mock.radio-group.component.metadata.json +0 -1
- package/esm2015/testing-base/lib/components/mock.radio.component.metadata.json +0 -1
- package/esm2015/testing-base/lib/components/mock.range.component.metadata.json +0 -1
- package/esm2015/testing-base/lib/components/mock.reorder-list.component.metadata.json +0 -1
- package/esm2015/testing-base/lib/components/mock.router-outlet.component.metadata.json +0 -1
- package/esm2015/testing-base/lib/components/mock.section-header.component.metadata.json +0 -1
- package/esm2015/testing-base/lib/components/mock.segmented-control.component.metadata.json +0 -1
- package/esm2015/testing-base/lib/components/mock.slide-button.component.metadata.json +0 -1
- package/esm2015/testing-base/lib/components/mock.spinner.component.metadata.json +0 -1
- package/esm2015/testing-base/lib/components/mock.tab-button.component.metadata.json +0 -1
- package/esm2015/testing-base/lib/components/mock.tabs.component.metadata.json +0 -1
- package/esm2015/testing-base/lib/components/mock.textarea.component.metadata.json +0 -1
- package/esm2015/testing-base/lib/components/mock.toggle-button.component.metadata.json +0 -1
- package/esm2015/testing-base/lib/components/mock.toggle.component.metadata.json +0 -1
- package/esm2015/testing-base/lib/directives/mock.accordion.directive.metadata.json +0 -1
- package/esm2015/testing-base/lib/directives/mock.fit-heading.directive.metadata.json +0 -1
- package/esm2015/testing-base/lib/directives/mock.theme-color.directive.metadata.json +0 -1
- package/esm2015/testing-base/lib/kirby-testing-base.module.metadata.json +0 -1
- package/esm2015/testing-base/lib/mock-components.metadata.json +0 -1
- package/esm2015/testing-base/lib/mock-directives.metadata.json +0 -1
- package/esm2015/testing-base/public_api.metadata.json +0 -1
- package/esm2015/testing-jasmine/kirbydesign-designsystem-testing-jasmine.metadata.json +0 -1
- package/esm2015/testing-jasmine/lib/kirby-testing.module.metadata.json +0 -1
- package/esm2015/testing-jasmine/lib/mock-providers.metadata.json +0 -1
- package/esm2015/testing-jasmine/public_api.metadata.json +0 -1
- package/esm2015/testing-jest/kirbydesign-designsystem-testing-jest.metadata.json +0 -1
- package/esm2015/testing-jest/lib/kirby-testing.module.metadata.json +0 -1
- package/esm2015/testing-jest/lib/mock-providers.metadata.json +0 -1
- package/esm2015/testing-jest/public_api.metadata.json +0 -1
- package/kirbydesign-designsystem.metadata.json +0 -1
- package/testing-base/kirbydesign-designsystem-testing-base.metadata.json +0 -1
- package/testing-jasmine/kirbydesign-designsystem-testing-jasmine.metadata.json +0 -1
- package/testing-jest/kirbydesign-designsystem-testing-jest.metadata.json +0 -1
package/icons/svg/more.svg
CHANGED
|
@@ -1,7 +1,5 @@
|
|
|
1
|
-
|
|
2
|
-
<
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
</g>
|
|
7
|
-
</svg>
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" class="s-ion-icon">
|
|
2
|
+
<g stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
3
|
+
<path d="M13.5002,12.0002 C13.5002,12.8282 12.8282,13.5002 12.0002,13.5002 C11.1712,13.5002 10.5002,12.8282 10.5002,12.0002 C10.5002,11.1712 11.1712,10.5002 12.0002,10.5002 C12.8282,10.5002 13.5002,11.1712 13.5002,12.0002 M20.5002,12.0002 C20.5002,12.8282 19.8282,13.5002 19.0002,13.5002 C18.1712,13.5002 17.5002,12.8282 17.5002,12.0002 C17.5002,11.1712 18.1712,10.5002 19.0002,10.5002 C19.8282,10.5002 20.5002,11.1712 20.5002,12.0002 M6.5002,12.0002 C6.5002,12.8282 5.8282,13.5002 5.0002,13.5002 C4.1712,13.5002 3.5002,12.8282 3.5002,12.0002 C3.5002,11.1712 4.1712,10.5002 5.0002,10.5002 C5.8282,10.5002 6.5002,11.1712 6.5002,12.0002" id="icon-color" fill="currentColor" fill-rule="nonzero"></path>
|
|
4
|
+
</g>
|
|
5
|
+
</svg>
|
|
@@ -1,118 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Generated bundle index. Do not edit.
|
|
3
3
|
*/
|
|
4
|
+
/// <amd-module name="@kirbydesign/designsystem" />
|
|
4
5
|
export * from './index';
|
|
5
|
-
export { AccordionItemComponent as ɵeo } from './lib/components/accordion/accordion-item.component';
|
|
6
|
-
export { AccordionDirective as ɵen } from './lib/components/accordion/accordion.directive';
|
|
7
|
-
export { ProxyCmp as ɵa } from './lib/components/angular-component-lib/utils';
|
|
8
|
-
export { AppComponent as ɵc } from './lib/components/app/app.component';
|
|
9
|
-
export { AppModule as ɵb } from './lib/components/app/app.module';
|
|
10
|
-
export { AvatarComponent as ɵdh } from './lib/components/avatar/avatar.component';
|
|
11
|
-
export { ButtonComponent as ɵbc } from './lib/components/button/button.component';
|
|
12
|
-
export { CalendarComponent as ɵdi } from './lib/components/calendar/calendar.component';
|
|
13
|
-
export { CalendarHelper as ɵdj } from './lib/components/calendar/helpers/calendar.helper';
|
|
14
|
-
export { CardFooterComponent as ɵcs } from './lib/components/card/card-footer/card-footer.component';
|
|
15
|
-
export { CardHeaderComponent as ɵcr } from './lib/components/card/card-header/card-header.component';
|
|
16
|
-
export { CardComponent as ɵcq } from './lib/components/card/card.component';
|
|
17
|
-
export { ChartDeprecatedHelper as ɵcu } from './lib/components/chart-deprecated/chart-deprecated-helper';
|
|
18
|
-
export { ChartDeprecatedComponent as ɵct } from './lib/components/chart-deprecated/chart-deprecated.component';
|
|
19
|
-
export { ACTIVITYGAUGE_OPTIONS as ɵdb, ActivityGaugeOptions as ɵdc } from './lib/components/chart-deprecated/options/activitygauge';
|
|
20
|
-
export { AREASPLINE_OPTIONS as ɵcx, AreaSplineOptions as ɵcy } from './lib/components/chart-deprecated/options/areaspline';
|
|
21
|
-
export { DONUT_OPTIONS as ɵcv, DonutOptions as ɵcw } from './lib/components/chart-deprecated/options/donut';
|
|
22
|
-
export { TIMESERIES_OPTIONS as ɵcz, TimeSeriesOptions as ɵda } from './lib/components/chart-deprecated/options/timeseries';
|
|
23
|
-
export { ChartJSService as ɵco } from './lib/components/chart/chart-js/chart-js.service';
|
|
24
|
-
export { ChartComponent as ɵcn } from './lib/components/chart/chart.component';
|
|
25
|
-
export { ChartModule as ɵcm } from './lib/components/chart/chart.module';
|
|
26
|
-
export { ChartConfigService as ɵcp } from './lib/components/chart/configs/chart-config.service';
|
|
27
|
-
export { CheckboxComponent as ɵdk } from './lib/components/checkbox/checkbox.component';
|
|
28
|
-
export { ChipComponent as ɵdp } from './lib/components/chip/chip.component';
|
|
29
|
-
export { DividerComponent as ɵed } from './lib/components/divider/divider.component';
|
|
30
|
-
export { DropdownComponent as ɵef } from './lib/components/dropdown/dropdown.component';
|
|
31
|
-
export { KeyboardHandlerService as ɵeh } from './lib/components/dropdown/keyboard-handler.service';
|
|
32
|
-
export { EmptyStateComponent as ɵdv } from './lib/components/empty-state/empty-state.component';
|
|
33
|
-
export { FabSheetComponent as ɵec } from './lib/components/fab-sheet/fab-sheet.component';
|
|
34
|
-
export { FlagComponent as ɵek } from './lib/components/flag/flag.component';
|
|
35
|
-
export { DateInputDirective as ɵdr } from './lib/components/form-field/directives/date/date-input.directive';
|
|
36
|
-
export { DecimalMaskDirective as ɵds } from './lib/components/form-field/directives/decimal-mask/decimal-mask.directive';
|
|
37
|
-
export { FormFieldMessageComponent as ɵev } from './lib/components/form-field/form-field-message/form-field-message.component';
|
|
38
|
-
export { FormFieldComponent as ɵdw } from './lib/components/form-field/form-field.component';
|
|
39
|
-
export { InputCounterComponent as ɵdx } from './lib/components/form-field/input-counter/input-counter.component';
|
|
40
|
-
export { InputComponent as ɵea } from './lib/components/form-field/input/input.component';
|
|
41
|
-
export { TextareaComponent as ɵeb } from './lib/components/form-field/textarea/textarea.component';
|
|
42
|
-
export { BreakpointHelperService as ɵdf } from './lib/components/grid/breakpoint-helper.service';
|
|
43
|
-
export { GridComponent as ɵde } from './lib/components/grid/grid.component';
|
|
44
|
-
export { IconRegistryService as ɵbe } from './lib/components/icon/icon-registry.service';
|
|
45
|
-
export { ICON_SETTINGS as ɵbg, IconSettings as ɵbf } from './lib/components/icon/icon-settings';
|
|
46
|
-
export { IconComponent as ɵbd } from './lib/components/icon/icon.component';
|
|
47
|
-
export { IconModule as ɵbp } from './lib/components/icon/icon.module';
|
|
48
|
-
export { ItemGroupComponent as ɵes } from './lib/components/item-group/item-group.component';
|
|
49
|
-
export { ItemSlidingComponent as ɵep } from './lib/components/item-sliding/item-sliding.component';
|
|
50
|
-
export { ItemComponent as ɵbs } from './lib/components/item/item.component';
|
|
51
|
-
export { ItemModule as ɵbr } from './lib/components/item/item.module';
|
|
52
|
-
export { LabelComponent as ɵbt } from './lib/components/item/label/label.component';
|
|
53
|
-
export { InfiniteScrollDirective as ɵca } from './lib/components/list/directives/infinite-scroll.directive';
|
|
54
|
-
export { ListItemColorDirective as ɵcl } from './lib/components/list/directives/list-item-color.directive';
|
|
55
|
-
export { ListHelper as ɵby } from './lib/components/list/helpers/list-helper';
|
|
56
|
-
export { ListExperimentalComponent as ɵck } from './lib/components/list/list-experimental/list-experimental.component';
|
|
57
|
-
export { ListHeaderComponent as ɵcj } from './lib/components/list/list-header/list-header.component';
|
|
58
|
-
export { ListItemComponent as ɵch } from './lib/components/list/list-item/list-item.component';
|
|
59
|
-
export { ListSectionHeaderComponent as ɵci } from './lib/components/list/list-section-header/list-section-header.component';
|
|
60
|
-
export { ListComponent as ɵbx } from './lib/components/list/list.component';
|
|
61
|
-
export { ListFlexItemDirective as ɵcc, ListFooterDirective as ɵcg, ListHeaderDirective as ɵce, ListItemDirective as ɵcb, ListItemTemplateDirective as ɵcd, ListSectionHeaderDirective as ɵcf } from './lib/components/list/list.directive';
|
|
62
|
-
export { ListModule as ɵbw } from './lib/components/list/list.module';
|
|
63
|
-
export { GroupByPipe as ɵbz } from './lib/components/list/pipes/group-by.pipe';
|
|
64
|
-
export { LoadingOverlayComponent as ɵei } from './lib/components/loading-overlay/loading-overlay.component';
|
|
65
|
-
export { LoadingOverlayService as ɵfb } from './lib/components/loading-overlay/loading-overlay.service';
|
|
66
|
-
export { ActionSheetComponent as ɵdl } from './lib/components/modal/action-sheet/action-sheet.component';
|
|
67
|
-
export { AlertComponent as ɵew } from './lib/components/modal/alert/alert.component';
|
|
68
|
-
export { ModalFooterComponent as ɵdm } from './lib/components/modal/footer/modal-footer.component';
|
|
69
|
-
export { ModalCompactWrapperComponent as ɵex } from './lib/components/modal/modal-wrapper/compact/modal-compact-wrapper.component';
|
|
70
|
-
export { ModalWrapperComponent as ɵba } from './lib/components/modal/modal-wrapper/modal-wrapper.component';
|
|
71
|
-
export { ActionSheetHelper as ɵj } from './lib/components/modal/services/action-sheet.helper';
|
|
72
|
-
export { AlertHelper as ɵk } from './lib/components/modal/services/alert.helper';
|
|
73
|
-
export { ModalAnimationBuilderService as ɵg } from './lib/components/modal/services/modal-animation-builder.service';
|
|
74
|
-
export { ModalNavigationService as ɵl } from './lib/components/modal/services/modal-navigation.service';
|
|
75
|
-
export { ModalController as ɵe } from './lib/components/modal/services/modal.controller';
|
|
76
|
-
export { ModalHelper as ɵf } from './lib/components/modal/services/modal.helper';
|
|
77
|
-
export { Modal as ɵbb } from './lib/components/modal/services/modal.interfaces';
|
|
78
|
-
export { PageFooterComponent as ɵz } from './lib/components/page/page-footer/page-footer.component';
|
|
79
|
-
export { PageActionsComponent as ɵv, PageActionsDirective as ɵq, PageComponent as ɵw, PageContentComponent as ɵu, PageContentDirective as ɵr, PageProgressComponent as ɵs, PageTitleComponent as ɵt, PageTitleDirective as ɵo, PageToolbarTitleDirective as ɵp } from './lib/components/page/page.component';
|
|
80
|
-
export { PageModule as ɵn } from './lib/components/page/page.module';
|
|
81
|
-
export { PopoverComponent as ɵeg } from './lib/components/popover/popover.component';
|
|
82
|
-
export { ProgressCircleRingComponent as ɵey } from './lib/components/progress-circle/progress-circle-ring.component';
|
|
83
|
-
export { ProgressCircleComponent as ɵej } from './lib/components/progress-circle/progress-circle.component';
|
|
84
|
-
export { RadioGroupComponent as ɵdy } from './lib/components/radio/radio-group/radio-group.component';
|
|
85
|
-
export { RadioComponent as ɵdz } from './lib/components/radio/radio.component';
|
|
86
|
-
export { RangeComponent as ɵeq } from './lib/components/range/range.component';
|
|
87
|
-
export { ReorderListComponent as ɵee } from './lib/components/reorder-list/reorder-list.component';
|
|
88
|
-
export { RouterOutletComponent as ɵd } from './lib/components/router-outlet/router-outlet.component';
|
|
89
|
-
export { RouterOutletModule as ɵm } from './lib/components/router-outlet/router-outlet.module';
|
|
90
|
-
export { SectionHeaderComponent as ɵet } from './lib/components/section-header/section-header.component';
|
|
91
|
-
export { SegmentedControlComponent as ɵdo } from './lib/components/segmented-control/segmented-control.component';
|
|
92
|
-
export { ComponentLoaderDirective as ɵdg } from './lib/components/shared/component-loader.directive';
|
|
93
|
-
export { ResizeObserverFactory as ɵbi } from './lib/components/shared/resize-observer/resize-observer.factory';
|
|
94
|
-
export { ResizeObserverService as ɵbh } from './lib/components/shared/resize-observer/resize-observer.service';
|
|
95
|
-
export { SlideButtonComponent as ɵdt } from './lib/components/slide-button/slide-button.component';
|
|
96
|
-
export { SlideDirective as ɵel, SlidesComponent as ɵem } from './lib/components/slides/slides.component';
|
|
97
|
-
export { SpinnerComponent as ɵbn } from './lib/components/spinner/spinner.component';
|
|
98
|
-
export { SpinnerModule as ɵbm } from './lib/components/spinner/spinner.module';
|
|
99
|
-
export { StockChartDeprecatedComponent as ɵdd } from './lib/components/stock-chart-deprecated/stock-chart-deprecated.component';
|
|
100
|
-
export { TabButtonComponent as ɵbq } from './lib/components/tabs/tab-button/tab-button.component';
|
|
101
|
-
export { TabsComponent as ɵx } from './lib/components/tabs/tabs.component';
|
|
102
|
-
export { TabsModule as ɵbo } from './lib/components/tabs/tabs.module';
|
|
103
|
-
export { TabsService as ɵy } from './lib/components/tabs/tabs.service';
|
|
104
|
-
export { ToastController as ɵfa } from './lib/components/toast/services/toast.controller';
|
|
105
|
-
export { ToastHelper as ɵez } from './lib/components/toast/services/toast.helper';
|
|
106
|
-
export { ToggleButtonComponent as ɵbv } from './lib/components/toggle-button/toggle-button.component';
|
|
107
|
-
export { ToggleButtonModule as ɵbu } from './lib/components/toggle-button/toggle-button.module';
|
|
108
|
-
export { ToggleComponent as ɵdu } from './lib/components/toggle/toggle.component';
|
|
109
|
-
export { appInitialize as ɵfc, customElementsInitializer as ɵfd } from './lib/custom-elements-initializer';
|
|
110
|
-
export { ElementAsButtonDirective as ɵer } from './lib/directives/element-as-button/element-as-button.directive';
|
|
111
|
-
export { FitHeadingDirective as ɵbk } from './lib/directives/fit-heading/fit-heading.directive';
|
|
112
|
-
export { FitHeadingModule as ɵbj } from './lib/directives/fit-heading/fit-heading.module';
|
|
113
|
-
export { KeyHandlerDirective as ɵeu } from './lib/directives/key-handler/key-handler.directive';
|
|
114
|
-
export { ModalRouterLinkDirective as ɵdn } from './lib/directives/modal-router-link/modal-router-link.directive';
|
|
115
|
-
export { ThemeColorDirective as ɵdq } from './lib/directives/theme-color/theme-color.directive';
|
|
116
|
-
export { LineClampHelper as ɵbl } from './lib/helpers/line-clamp-helper';
|
|
117
|
-
export { PlatformService as ɵh } from './lib/helpers/platform.service';
|
|
118
|
-
export { WindowRef as ɵi } from './lib/types/window-ref';
|
|
@@ -1,6 +1,9 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
1
2
|
export declare class AccordionItemComponent {
|
|
2
3
|
title: string;
|
|
3
4
|
isExpanded: boolean;
|
|
4
5
|
_titleId: string;
|
|
5
6
|
_contentId: string;
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AccordionItemComponent, never>;
|
|
8
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AccordionItemComponent, "kirby-accordion-item", never, { "title": "title"; "isExpanded": "isExpanded"; }, {}, never, ["*"]>;
|
|
6
9
|
}
|
|
@@ -1,2 +1,5 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
1
2
|
export declare class AccordionDirective {
|
|
3
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AccordionDirective, never>;
|
|
4
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<AccordionDirective, "[kirbyAccordion], kirby-accordion", ["kirby-accordion"], {}, {}, never>;
|
|
2
5
|
}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { AfterContentInit } from '@angular/core';
|
|
2
2
|
import { ModalController } from '../modal/services/modal.controller';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
3
4
|
export declare class AppComponent implements AfterContentInit {
|
|
4
5
|
private modalController;
|
|
5
6
|
private ionAppElement;
|
|
@@ -7,4 +8,6 @@ export declare class AppComponent implements AfterContentInit {
|
|
|
7
8
|
constructor(modalController: ModalController);
|
|
8
9
|
ngAfterContentInit(): void;
|
|
9
10
|
registerInputs(): void;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AppComponent, never>;
|
|
12
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AppComponent, "kirby-app", never, {}, {}, ["routerOutlet"], ["*"]>;
|
|
10
13
|
}
|
|
@@ -1,2 +1,9 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./app.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "@ionic/angular";
|
|
1
5
|
export declare class AppModule {
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AppModule, never>;
|
|
7
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AppModule, [typeof i1.AppComponent], [typeof i2.CommonModule, typeof i3.IonicModule], [typeof i1.AppComponent]>;
|
|
8
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<AppModule>;
|
|
2
9
|
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { BrandColor, NotificationColor } from '@kirbydesign/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
2
3
|
export declare enum AvatarSize {
|
|
3
4
|
XS = "xs",
|
|
4
5
|
SM = "sm",
|
|
@@ -11,7 +12,9 @@ export declare class AvatarComponent {
|
|
|
11
12
|
shadow: boolean;
|
|
12
13
|
text: string;
|
|
13
14
|
overlay: boolean;
|
|
14
|
-
size: AvatarSize
|
|
15
|
+
size: AvatarSize | `${AvatarSize}`;
|
|
15
16
|
themeColor: NotificationColor | BrandColor | 'medium' | 'white' | 'dark' | 'light' | 'semi-light';
|
|
16
|
-
get _cssClass(): ("medium" | "success" | "primary" | "secondary" | "tertiary" | "warning" | "danger" | "light" | "dark" | "white" | "semi-light" | AvatarSize)[];
|
|
17
|
+
get _cssClass(): ("medium" | "success" | "primary" | "secondary" | "tertiary" | "warning" | "danger" | "light" | "dark" | "white" | "semi-light" | "xs" | "sm" | "md" | "lg" | AvatarSize)[];
|
|
18
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AvatarComponent, never>;
|
|
19
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AvatarComponent, "kirby-avatar", never, { "imageSrc": "imageSrc"; "altText": "altText"; "shadow": "shadow"; "text": "text"; "overlay": "overlay"; "size": "size"; "themeColor": "themeColor"; }, {}, never, ["kirby-icon", "kirby-badge"]>;
|
|
17
20
|
}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { AfterContentInit, ElementRef } from '@angular/core';
|
|
2
2
|
import { NotificationColor } from '@kirbydesign/core';
|
|
3
3
|
import { IconComponent } from '../icon/icon.component';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
4
5
|
export declare enum ButtonSize {
|
|
5
6
|
SM = "sm",
|
|
6
7
|
MD = "md",
|
|
@@ -19,16 +20,18 @@ export declare class ButtonComponent implements AfterContentInit {
|
|
|
19
20
|
get isIconLeft(): boolean;
|
|
20
21
|
private _isIconRight;
|
|
21
22
|
get isIconRight(): boolean;
|
|
22
|
-
get _cssClass(): ("success" | "warning" | "danger" | ButtonSize)[];
|
|
23
|
+
get _cssClass(): ("success" | "warning" | "danger" | "sm" | "md" | "lg" | ButtonSize)[];
|
|
23
24
|
set attentionLevel(level: '1' | '2' | '3' | '4');
|
|
24
25
|
set isDestructive(state: boolean);
|
|
25
26
|
themeColor: NotificationColor;
|
|
26
27
|
expand: 'full' | 'block';
|
|
27
28
|
isFloating: boolean;
|
|
28
|
-
size: ButtonSize
|
|
29
|
+
size: ButtonSize | `${ButtonSize}`;
|
|
29
30
|
icon: IconComponent;
|
|
30
31
|
iconElementRef: ElementRef<HTMLElement>;
|
|
31
32
|
private hasText;
|
|
32
33
|
constructor(elementRef: ElementRef<HTMLElement>);
|
|
33
34
|
ngAfterContentInit(): void;
|
|
35
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ButtonComponent, never>;
|
|
36
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ButtonComponent, "button[kirby-button],Button[kirby-button]", never, { "attentionLevel": "attentionLevel"; "isDestructive": "isDestructive"; "themeColor": "themeColor"; "expand": "expand"; "isFloating": "isFloating"; "size": "size"; }, {}, ["icon", "iconElementRef"], ["*"]>;
|
|
34
37
|
}
|
|
@@ -3,6 +3,7 @@ import { Locale as LocaleDateFns } from 'date-fns';
|
|
|
3
3
|
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
|
+
import * as i0 from "@angular/core";
|
|
6
7
|
export declare type Locale = LocaleDateFns;
|
|
7
8
|
export declare class CalendarComponent implements OnInit, AfterViewInit, OnChanges {
|
|
8
9
|
private calendarHelper;
|
|
@@ -87,4 +88,6 @@ export declare class CalendarComponent implements OnInit, AfterViewInit, OnChang
|
|
|
87
88
|
private subtractTimezoneOffset;
|
|
88
89
|
private getDateFromNavigableYear;
|
|
89
90
|
private getYearsBetweenDates;
|
|
91
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CalendarComponent, never>;
|
|
92
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CalendarComponent, "kirby-calendar", never, { "timezone": "timezone"; "disableWeekends": "disableWeekends"; "disablePastDates": "disablePastDates"; "disableFutureDates": "disableFutureDates"; "alwaysEnableToday": "alwaysEnableToday"; "customLocales": "customLocales"; "usePopover": "usePopover"; "yearNavigatorOptions": "yearNavigatorOptions"; "selectedDate": "selectedDate"; "disabledDates": "disabledDates"; "todayDate": "todayDate"; "minDate": "minDate"; "maxDate": "maxDate"; }, { "dateChange": "dateChange"; "dateSelect": "dateSelect"; "yearSelect": "yearSelect"; }, never, never>;
|
|
90
93
|
}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { ElementRef } from '@angular/core';
|
|
2
2
|
import { WindowRef } from '../../../types/window-ref';
|
|
3
3
|
import { CalendarOptions } from './calendar-options.model';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
4
5
|
export declare class CalendarHelper {
|
|
5
6
|
private windowRef;
|
|
6
7
|
private embeddedView;
|
|
@@ -18,4 +19,6 @@ export declare class CalendarHelper {
|
|
|
18
19
|
private validateMessage;
|
|
19
20
|
private validateDateSelectedMessage;
|
|
20
21
|
private validateNavigateMonthMessage;
|
|
22
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CalendarHelper, never>;
|
|
23
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<CalendarHelper>;
|
|
21
24
|
}
|
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
import { OnInit } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
2
3
|
export declare class CardFooterComponent implements OnInit {
|
|
3
4
|
constructor();
|
|
4
5
|
ngOnInit(): void;
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CardFooterComponent, never>;
|
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CardFooterComponent, "kirby-card-footer", never, {}, {}, never, ["*"]>;
|
|
5
8
|
}
|
|
@@ -1,8 +1,11 @@
|
|
|
1
1
|
import { NotificationColor } from '@kirbydesign/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
2
3
|
export declare type CardFlagLevel = NotificationColor | 'info' | null;
|
|
3
4
|
export declare class CardHeaderComponent {
|
|
4
5
|
title: string;
|
|
5
6
|
subtitle: string;
|
|
6
7
|
isTitleBold: boolean;
|
|
7
8
|
flagged: CardFlagLevel;
|
|
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"; }, {}, never, ["*"]>;
|
|
8
11
|
}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { ElementRef, OnDestroy, OnInit, Renderer2 } from '@angular/core';
|
|
2
2
|
import { ResizeObserverService } from '../shared/resize-observer/resize-observer.service';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
3
4
|
export declare class CardComponent implements OnInit, OnDestroy {
|
|
4
5
|
private elementRef;
|
|
5
6
|
private resizeObserverService;
|
|
@@ -22,4 +23,6 @@ export declare class CardComponent implements OnInit, OnDestroy {
|
|
|
22
23
|
private sortSizesByBreakpoint;
|
|
23
24
|
private compareSizesByBreakpoint;
|
|
24
25
|
private handleResize;
|
|
26
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CardComponent, never>;
|
|
27
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CardComponent, "kirby-card", never, { "title": "title"; "subtitle": "subtitle"; "backgroundImageUrl": "backgroundImageUrl"; "hasPadding": "hasPadding"; "sizes": "sizes"; "mode": "mode"; }, {}, never, ["kirby-card-header", "*", "kirby-card-footer"]>;
|
|
25
28
|
}
|
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
import { ElementRef } from '@angular/core';
|
|
2
2
|
import { ChartOptions } from 'chart.js';
|
|
3
3
|
import { AnnotationOptions } from 'chartjs-plugin-annotation';
|
|
4
|
-
import { ChartDataLabelOptions, ChartDataset, ChartHighlightedElements, ChartType } from '../chart.types';
|
|
4
|
+
import { ChartDataLabelOptions, ChartDataset, ChartHighlightedElements, ChartLabel, ChartType } from '../chart.types';
|
|
5
5
|
import { ChartConfigService } from '../configs/chart-config.service';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
6
7
|
export declare class ChartJSService {
|
|
7
8
|
private chartConfigService;
|
|
8
9
|
private chart;
|
|
@@ -15,7 +16,7 @@ export declare class ChartJSService {
|
|
|
15
16
|
targetElement: ElementRef<HTMLCanvasElement>;
|
|
16
17
|
type: ChartType;
|
|
17
18
|
data: ChartDataset[] | number[];
|
|
18
|
-
labels?:
|
|
19
|
+
labels?: ChartLabel[];
|
|
19
20
|
customOptions?: ChartOptions;
|
|
20
21
|
annotations?: AnnotationOptions[];
|
|
21
22
|
dataLabelOptions?: ChartDataLabelOptions;
|
|
@@ -23,7 +24,7 @@ export declare class ChartJSService {
|
|
|
23
24
|
}): void;
|
|
24
25
|
redrawChart(): void;
|
|
25
26
|
updateData(data: ChartDataset[] | number[]): void;
|
|
26
|
-
updateLabels(labels:
|
|
27
|
+
updateLabels(labels: ChartLabel[]): void;
|
|
27
28
|
updateType(type: ChartType, customOptions?: ChartOptions): void;
|
|
28
29
|
setDataLabelOptions(dataLabelOptions: ChartDataLabelOptions): void;
|
|
29
30
|
updateOptions(customOptions: ChartOptions, type: ChartType): void;
|
|
@@ -40,6 +41,7 @@ export declare class ChartJSService {
|
|
|
40
41
|
private createStockOptionsObject;
|
|
41
42
|
private createOptionsObject;
|
|
42
43
|
private getDefaultStockLabels;
|
|
44
|
+
private getLabelsToApply;
|
|
43
45
|
private createConfigurationObject;
|
|
44
46
|
private addHighlightedElementsToDatasets;
|
|
45
47
|
private createDatasets;
|
|
@@ -51,4 +53,6 @@ export declare class ChartJSService {
|
|
|
51
53
|
*/
|
|
52
54
|
addDataLabelsData(data: ChartDataset[] | number[]): ChartDataset[];
|
|
53
55
|
private locateValueIndexInDataset;
|
|
56
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ChartJSService, never>;
|
|
57
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ChartJSService>;
|
|
54
58
|
}
|
|
@@ -2,15 +2,13 @@ import { AfterViewInit, ElementRef, OnChanges, SimpleChanges } from '@angular/co
|
|
|
2
2
|
import { ChartOptions } from 'chart.js';
|
|
3
3
|
import { AnnotationOptions } from 'chartjs-plugin-annotation';
|
|
4
4
|
import { ChartJSService } from './chart-js/chart-js.service';
|
|
5
|
-
import { ChartDataLabelOptions, ChartDataset, ChartHighlightedElements, ChartType } from './chart.types';
|
|
5
|
+
import { ChartDataLabelOptions, ChartDataset, ChartHighlightedElements, ChartLabel, ChartType } from './chart.types';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
6
7
|
export declare class ChartComponent implements AfterViewInit, OnChanges {
|
|
7
8
|
private chartJSService;
|
|
8
9
|
type: ChartType;
|
|
9
10
|
data: ChartDataset[] | number[];
|
|
10
|
-
|
|
11
|
-
get labels(): string[] | string[][];
|
|
12
|
-
set labels(value: string[] | string[][]);
|
|
13
|
-
set dataLabels(value: string[] | string[][]);
|
|
11
|
+
labels: ChartLabel[];
|
|
14
12
|
customOptions?: ChartOptions;
|
|
15
13
|
dataLabelOptions?: ChartDataLabelOptions;
|
|
16
14
|
annotations?: AnnotationOptions[];
|
|
@@ -31,4 +29,6 @@ export declare class ChartComponent implements AfterViewInit, OnChanges {
|
|
|
31
29
|
private updateAnnotations;
|
|
32
30
|
private updateHighlightedElements;
|
|
33
31
|
private redrawChart;
|
|
32
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ChartComponent, never>;
|
|
33
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ChartComponent, "kirby-chart", never, { "type": "type"; "data": "data"; "labels": "labels"; "customOptions": "customOptions"; "dataLabelOptions": "dataLabelOptions"; "annotations": "annotations"; "highlightedElements": "highlightedElements"; "height": "height"; }, {}, never, ["*"]>;
|
|
34
34
|
}
|
|
@@ -1,2 +1,7 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./chart.component";
|
|
1
3
|
export declare class ChartModule {
|
|
4
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ChartModule, never>;
|
|
5
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<ChartModule, [typeof i1.ChartComponent], never, [typeof i1.ChartComponent]>;
|
|
6
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<ChartModule>;
|
|
2
7
|
}
|
|
@@ -8,6 +8,7 @@ export declare type ChartTypeConfig = {
|
|
|
8
8
|
export declare type ChartTypesConfig = {
|
|
9
9
|
[key in ChartType]: ChartTypeConfig;
|
|
10
10
|
};
|
|
11
|
+
export declare type ChartLabel = string | string[];
|
|
11
12
|
export declare type ChartDataLabelOptions = {
|
|
12
13
|
showMin?: boolean;
|
|
13
14
|
showMax?: boolean;
|
|
@@ -1,11 +1,14 @@
|
|
|
1
1
|
import { ChartType as ChartJSType } from 'chart.js';
|
|
2
2
|
import { AnnotationType, AnnotationTypeRegistry } from 'chartjs-plugin-annotation';
|
|
3
3
|
import { ChartType, ChartTypeConfig } from '../chart.types';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
4
5
|
export declare class ChartConfigService {
|
|
5
6
|
getTypeConfig(chartType: ChartType): ChartTypeConfig;
|
|
6
7
|
getAnnotationDefaults(type: AnnotationType): AnnotationTypeRegistry[AnnotationType];
|
|
7
8
|
getInteractionFunctionsExtensions(): {
|
|
8
|
-
onHover: (_event: import("chart.js").ChartEvent, activeElements: import("chart.js").ActiveElement[], _chart: import("chart.js").Chart<
|
|
9
|
+
onHover: (_event: import("chart.js").ChartEvent, activeElements: import("chart.js").ActiveElement[], _chart: import("chart.js").Chart<keyof import("chart.js").ChartTypeRegistry, (number | import("chart.js").ScatterDataPoint | import("chart.js").BubbleDataPoint)[], unknown>, callback: (event: import("chart.js").ChartEvent, elements: import("chart.js").ActiveElement[], chart: import("chart.js").Chart<keyof import("chart.js").ChartTypeRegistry, (number | import("chart.js").ScatterDataPoint | import("chart.js").BubbleDataPoint)[], unknown>) => void) => void;
|
|
9
10
|
};
|
|
10
11
|
chartTypeToChartJSType(chartType: ChartType): ChartJSType;
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ChartConfigService, never>;
|
|
13
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ChartConfigService>;
|
|
11
14
|
}
|
|
@@ -1,7 +1,10 @@
|
|
|
1
1
|
import { ElementRef } from '@angular/core';
|
|
2
2
|
import { Options } from 'highcharts';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
3
4
|
export declare class ChartDeprecatedHelper {
|
|
4
5
|
chartContainer: ElementRef;
|
|
5
6
|
init(chartContainer: ElementRef): void;
|
|
6
7
|
renderChart(options: Options): void;
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ChartDeprecatedHelper, never>;
|
|
9
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ChartDeprecatedHelper>;
|
|
7
10
|
}
|
|
@@ -2,6 +2,7 @@ import { ElementRef, OnChanges, SimpleChanges } from '@angular/core';
|
|
|
2
2
|
import { Options, XAxisBreaksOptions } from 'highcharts';
|
|
3
3
|
import { ChartDeprecatedHelper } from './chart-deprecated-helper';
|
|
4
4
|
import { ChartDeprecatedType } from './chart-deprecated-type';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
5
6
|
export declare class ChartDeprecatedComponent implements OnChanges {
|
|
6
7
|
private chartHelper;
|
|
7
8
|
private hostElement;
|
|
@@ -28,4 +29,6 @@ export declare class ChartDeprecatedComponent implements OnChanges {
|
|
|
28
29
|
private setActivitygaugeInput;
|
|
29
30
|
private setTimeseriesInput;
|
|
30
31
|
private setSeries;
|
|
32
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ChartDeprecatedComponent, never>;
|
|
33
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ChartDeprecatedComponent, "kirby-chart-deprecated", never, { "data": "data"; "categories": "categories"; "breaks": "breaks"; "height": "height"; "type": "type"; "description": "description"; "showDataLabels": "showDataLabels"; "options": "options"; }, {}, never, never>;
|
|
31
34
|
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { EventEmitter } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
2
3
|
export declare class CheckboxComponent {
|
|
3
4
|
checked: boolean;
|
|
4
5
|
attentionLevel: '1' | '2';
|
|
@@ -12,4 +13,6 @@ export declare class CheckboxComponent {
|
|
|
12
13
|
checkedChange: EventEmitter<boolean>;
|
|
13
14
|
onChecked(checked: boolean): void;
|
|
14
15
|
_labelId: string;
|
|
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>;
|
|
15
18
|
}
|
|
@@ -1,4 +1,7 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
1
2
|
export declare class ChipComponent {
|
|
2
3
|
text: string;
|
|
3
4
|
isSelected: boolean;
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ChipComponent, never>;
|
|
6
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ChipComponent, "kirby-chip", never, { "text": "text"; "isSelected": "isSelected"; }, {}, never, never>;
|
|
4
7
|
}
|
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
1
2
|
export declare class DividerComponent {
|
|
2
3
|
hasMargin: boolean;
|
|
4
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DividerComponent, never>;
|
|
5
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DividerComponent, "kirby-divider", never, { "hasMargin": "hasMargin"; }, {}, never, never>;
|
|
3
6
|
}
|
|
@@ -2,6 +2,7 @@ import { AfterContentChecked, AfterViewInit, ChangeDetectorRef, ElementRef, Even
|
|
|
2
2
|
import { ControlValueAccessor } from '@angular/forms';
|
|
3
3
|
import { HorizontalDirection, PopoverComponent } from '../popover/popover.component';
|
|
4
4
|
import { KeyboardHandlerService } from './keyboard-handler.service';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
5
6
|
export declare class DropdownComponent implements AfterContentChecked, AfterViewInit, OnDestroy, ControlValueAccessor {
|
|
6
7
|
private renderer;
|
|
7
8
|
private elementRef;
|
|
@@ -20,8 +21,8 @@ export declare class DropdownComponent implements AfterContentChecked, AfterView
|
|
|
20
21
|
set selectedIndex(value: number);
|
|
21
22
|
itemTextProperty: string;
|
|
22
23
|
placeholder: string;
|
|
23
|
-
set popout(direction: HorizontalDirection);
|
|
24
|
-
get popout(): HorizontalDirection
|
|
24
|
+
set popout(direction: HorizontalDirection | `${HorizontalDirection}`);
|
|
25
|
+
get popout(): HorizontalDirection | `${HorizontalDirection}`;
|
|
25
26
|
attentionLevel: '1' | '2' | '3' | '4';
|
|
26
27
|
readonly attentionLevelOpen = "2";
|
|
27
28
|
expand?: 'block';
|
|
@@ -116,4 +117,6 @@ export declare class DropdownComponent implements AfterContentChecked, AfterView
|
|
|
116
117
|
_onArrowKeys(event: KeyboardEvent): boolean;
|
|
117
118
|
_onHomeEndKeys(event: KeyboardEvent): boolean;
|
|
118
119
|
ngOnDestroy(): void;
|
|
120
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DropdownComponent, never>;
|
|
121
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DropdownComponent, "kirby-dropdown", never, { "items": "items"; "selectedIndex": "selectedIndex"; "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>;
|
|
119
122
|
}
|
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
1
2
|
export declare class KeyboardHandlerService {
|
|
2
3
|
handle(event: KeyboardEvent, items: any[] | string[], selectedIndex: number): number;
|
|
4
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<KeyboardHandlerService, never>;
|
|
5
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<KeyboardHandlerService>;
|
|
3
6
|
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { AfterContentInit } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
2
3
|
export declare class EmptyStateComponent implements AfterContentInit {
|
|
3
4
|
iconName: string;
|
|
4
5
|
customIconName: string;
|
|
@@ -11,4 +12,6 @@ export declare class EmptyStateComponent implements AfterContentInit {
|
|
|
11
12
|
* level 1.
|
|
12
13
|
*/
|
|
13
14
|
private enforceAttentionLevelRules;
|
|
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"], ["*"]>;
|
|
14
17
|
}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { AfterContentInit, AfterViewInit, ElementRef, Renderer2 } from '@angular/core';
|
|
2
2
|
import { IonFab } from '@ionic/angular';
|
|
3
3
|
import { ActionSheetComponent } from '../modal/action-sheet/action-sheet.component';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
4
5
|
export declare class FabSheetComponent implements AfterContentInit, AfterViewInit {
|
|
5
6
|
private renderer;
|
|
6
7
|
private document;
|
|
@@ -18,4 +19,6 @@ export declare class FabSheetComponent implements AfterContentInit, AfterViewIni
|
|
|
18
19
|
ngAfterContentInit(): void;
|
|
19
20
|
hideActions(fab: IonFab): void;
|
|
20
21
|
onFabClick(fab: IonFab): void;
|
|
22
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FabSheetComponent, never>;
|
|
23
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FabSheetComponent, "kirby-fab-sheet", never, { "disabled": "disabled"; "horizontalAlignment": "horizontalAlignment"; }, {}, ["actionSheet"], ["kirby-icon", "kirby-action-sheet"]>;
|
|
21
24
|
}
|
|
@@ -1,5 +1,8 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
1
2
|
export declare class FlagComponent {
|
|
2
3
|
size: 'xs' | 'sm' | 'md';
|
|
3
4
|
themeColor: 'success' | 'warning' | 'danger' | 'semi-light' | 'transparent';
|
|
4
5
|
get _cssClass(): ("transparent" | "success" | "warning" | "danger" | "semi-light" | "xs" | "sm" | "md")[];
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FlagComponent, never>;
|
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FlagComponent, "kirby-flag", never, { "size": "size"; "themeColor": "themeColor"; }, {}, never, ["*"]>;
|
|
5
8
|
}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { AfterViewInit, ElementRef, Renderer2 } from '@angular/core';
|
|
2
2
|
import 'inputmask/lib/extensions/inputmask.date.extensions';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
3
4
|
export declare class DateInputDirective implements AfterViewInit {
|
|
4
5
|
private elementRef;
|
|
5
6
|
private renderer;
|
|
@@ -14,4 +15,6 @@ export declare class DateInputDirective implements AfterViewInit {
|
|
|
14
15
|
private appendMaskingElement;
|
|
15
16
|
private wrapElement;
|
|
16
17
|
private updateMask;
|
|
18
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DateInputDirective, never>;
|
|
19
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<DateInputDirective, "[kirby-input][type=\"date\"]", never, {}, {}, never>;
|
|
17
20
|
}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { ElementRef, OnInit } from '@angular/core';
|
|
2
2
|
import { ControlValueAccessor } from '@angular/forms';
|
|
3
3
|
import 'inputmask/lib/extensions/inputmask.numeric.extensions';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
4
5
|
interface InputMask {
|
|
5
6
|
unmaskedvalue: () => string;
|
|
6
7
|
setValue: (val: string) => void;
|
|
@@ -30,5 +31,7 @@ export declare class DecimalMaskDirective implements ControlValueAccessor, OnIni
|
|
|
30
31
|
private initMask;
|
|
31
32
|
private getMax;
|
|
32
33
|
private getMin;
|
|
34
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DecimalMaskDirective, never>;
|
|
35
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<DecimalMaskDirective, "[kirby-decimal-mask]", never, { "min": "min"; "max": "max"; "precision": "precision"; "setMaxOnOverflow": "setMaxOnOverflow"; "allowMinus": "allowMinus"; "disableGroupSeperator": "disableGroupSeperator"; "maxlength": "maxlength"; }, {}, never>;
|
|
33
36
|
}
|
|
34
37
|
export {};
|
|
@@ -1,4 +1,7 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
1
2
|
export declare class FormFieldMessageComponent {
|
|
2
3
|
text: string;
|
|
3
4
|
position: 'left' | 'right';
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FormFieldMessageComponent, never>;
|
|
6
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FormFieldMessageComponent, "kirby-form-field-message", never, { "text": "text"; "position": "position"; }, {}, never, ["*"]>;
|
|
4
7
|
}
|
|
@@ -2,6 +2,7 @@ import { AfterContentChecked, AfterContentInit, ElementRef, OnDestroy, OnInit, R
|
|
|
2
2
|
import { PlatformService } from '../../helpers/platform.service';
|
|
3
3
|
import { WindowRef } from '../../types/window-ref';
|
|
4
4
|
import { InputCounterComponent } from './input-counter/input-counter.component';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
5
6
|
export declare class FormFieldComponent implements AfterContentChecked, AfterContentInit, OnInit, OnDestroy {
|
|
6
7
|
private platform;
|
|
7
8
|
private renderer;
|
|
@@ -28,4 +29,6 @@ export declare class FormFieldComponent implements AfterContentChecked, AfterCon
|
|
|
28
29
|
ngAfterContentInit(): void;
|
|
29
30
|
ngAfterContentChecked(): void;
|
|
30
31
|
ngOnDestroy(): void;
|
|
32
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FormFieldComponent, never>;
|
|
33
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FormFieldComponent, "kirby-form-field", never, { "label": "label"; "message": "message"; }, {}, ["counter", "radioGroupComponent", "radioGroupElement", "input", "textarea"], ["kirby-input-counter", "input[kirby-input]", "textarea[kirby-textarea]", "kirby-radio-group"]>;
|
|
31
34
|
}
|