@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
|
@@ -1,8 +1,28 @@
|
|
|
1
1
|
(function (global, factory) {
|
|
2
2
|
typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('@angular/core'), require('@kirbydesign/designsystem')) :
|
|
3
3
|
typeof define === 'function' && define.amd ? define('@kirbydesign/designsystem/testing-base', ['exports', '@angular/core', '@kirbydesign/designsystem'], factory) :
|
|
4
|
-
(global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory((global.kirbydesign = global.kirbydesign || {}, global.kirbydesign.designsystem = global.kirbydesign.designsystem || {}, global.kirbydesign.designsystem[
|
|
5
|
-
}(this, (function (exports,
|
|
4
|
+
(global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory((global.kirbydesign = global.kirbydesign || {}, global.kirbydesign.designsystem = global.kirbydesign.designsystem || {}, global.kirbydesign.designsystem["testing-base"] = {}), global.ng.core, global.kirbydesign.designsystem));
|
|
5
|
+
})(this, (function (exports, i0, designsystem) { 'use strict';
|
|
6
|
+
|
|
7
|
+
function _interopNamespace(e) {
|
|
8
|
+
if (e && e.__esModule) return e;
|
|
9
|
+
var n = Object.create(null);
|
|
10
|
+
if (e) {
|
|
11
|
+
Object.keys(e).forEach(function (k) {
|
|
12
|
+
if (k !== 'default') {
|
|
13
|
+
var d = Object.getOwnPropertyDescriptor(e, k);
|
|
14
|
+
Object.defineProperty(n, k, d.get ? d : {
|
|
15
|
+
enumerable: true,
|
|
16
|
+
get: function () { return e[k]; }
|
|
17
|
+
});
|
|
18
|
+
}
|
|
19
|
+
});
|
|
20
|
+
}
|
|
21
|
+
n["default"] = e;
|
|
22
|
+
return Object.freeze(n);
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
var i0__namespace = /*#__PURE__*/_interopNamespace(i0);
|
|
6
26
|
|
|
7
27
|
// #region AUTO-GENERATED - PLEASE DON'T EDIT CONTENT WITHIN!
|
|
8
28
|
var MockAccordionItemComponent = /** @class */ (function () {
|
|
@@ -10,55 +30,75 @@
|
|
|
10
30
|
}
|
|
11
31
|
return MockAccordionItemComponent;
|
|
12
32
|
}());
|
|
13
|
-
MockAccordionItemComponent
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
33
|
+
/** @nocollapse */ MockAccordionItemComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: MockAccordionItemComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
|
|
34
|
+
/** @nocollapse */ MockAccordionItemComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: MockAccordionItemComponent, selector: "kirby-accordion-item", inputs: { title: "title", isExpanded: "isExpanded" }, providers: [
|
|
35
|
+
{
|
|
36
|
+
provide: designsystem.AccordionItemComponent,
|
|
37
|
+
useExisting: i0.forwardRef((function () { return MockAccordionItemComponent; })),
|
|
38
|
+
},
|
|
39
|
+
], ngImport: i0__namespace, template: '<ng-content></ng-content>', isInline: true });
|
|
40
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: MockAccordionItemComponent, decorators: [{
|
|
41
|
+
type: i0.Component,
|
|
42
|
+
args: [{
|
|
43
|
+
selector: 'kirby-accordion-item',
|
|
44
|
+
template: '<ng-content></ng-content>',
|
|
45
|
+
providers: [
|
|
46
|
+
{
|
|
47
|
+
provide: designsystem.AccordionItemComponent,
|
|
48
|
+
useExisting: i0.forwardRef((function () { return MockAccordionItemComponent; })),
|
|
49
|
+
},
|
|
50
|
+
],
|
|
51
|
+
}]
|
|
52
|
+
}], propDecorators: { title: [{
|
|
53
|
+
type: i0.Input
|
|
54
|
+
}], isExpanded: [{
|
|
55
|
+
type: i0.Input
|
|
56
|
+
}] } });
|
|
30
57
|
|
|
31
58
|
// #region AUTO-GENERATED - PLEASE DON'T EDIT CONTENT WITHIN!
|
|
32
59
|
var MockActionSheetComponent = /** @class */ (function () {
|
|
33
60
|
function MockActionSheetComponent() {
|
|
34
|
-
this.cancel = new
|
|
35
|
-
this.itemSelect = new
|
|
61
|
+
this.cancel = new i0.EventEmitter();
|
|
62
|
+
this.itemSelect = new i0.EventEmitter();
|
|
36
63
|
}
|
|
37
64
|
return MockActionSheetComponent;
|
|
38
65
|
}());
|
|
39
|
-
MockActionSheetComponent
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
66
|
+
/** @nocollapse */ MockActionSheetComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: MockActionSheetComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
|
|
67
|
+
/** @nocollapse */ MockActionSheetComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: MockActionSheetComponent, selector: "kirby-action-sheet", inputs: { cancelButtonText: "cancelButtonText", hideCancel: "hideCancel", disabled: "disabled", header: "header", subheader: "subheader", items: "items" }, outputs: { cancel: "cancel", itemSelect: "itemSelect" }, providers: [
|
|
68
|
+
{
|
|
69
|
+
provide: designsystem.ActionSheetComponent,
|
|
70
|
+
useExisting: i0.forwardRef((function () { return MockActionSheetComponent; })),
|
|
71
|
+
},
|
|
72
|
+
], ngImport: i0__namespace, template: '<ng-content></ng-content>', isInline: true });
|
|
73
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: MockActionSheetComponent, decorators: [{
|
|
74
|
+
type: i0.Component,
|
|
75
|
+
args: [{
|
|
76
|
+
selector: 'kirby-action-sheet',
|
|
77
|
+
template: '<ng-content></ng-content>',
|
|
78
|
+
providers: [
|
|
79
|
+
{
|
|
80
|
+
provide: designsystem.ActionSheetComponent,
|
|
81
|
+
useExisting: i0.forwardRef((function () { return MockActionSheetComponent; })),
|
|
82
|
+
},
|
|
83
|
+
],
|
|
84
|
+
}]
|
|
85
|
+
}], propDecorators: { cancelButtonText: [{
|
|
86
|
+
type: i0.Input
|
|
87
|
+
}], hideCancel: [{
|
|
88
|
+
type: i0.Input
|
|
89
|
+
}], disabled: [{
|
|
90
|
+
type: i0.Input
|
|
91
|
+
}], header: [{
|
|
92
|
+
type: i0.Input
|
|
93
|
+
}], subheader: [{
|
|
94
|
+
type: i0.Input
|
|
95
|
+
}], items: [{
|
|
96
|
+
type: i0.Input
|
|
97
|
+
}], cancel: [{
|
|
98
|
+
type: i0.Output
|
|
99
|
+
}], itemSelect: [{
|
|
100
|
+
type: i0.Output
|
|
101
|
+
}] } });
|
|
62
102
|
|
|
63
103
|
// #region AUTO-GENERATED - PLEASE DON'T EDIT CONTENT WITHIN!
|
|
64
104
|
var MockAppComponent = /** @class */ (function () {
|
|
@@ -66,19 +106,26 @@
|
|
|
66
106
|
}
|
|
67
107
|
return MockAppComponent;
|
|
68
108
|
}());
|
|
69
|
-
MockAppComponent
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
109
|
+
/** @nocollapse */ MockAppComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: MockAppComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
|
|
110
|
+
/** @nocollapse */ MockAppComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: MockAppComponent, selector: "kirby-app", providers: [
|
|
111
|
+
{
|
|
112
|
+
provide: designsystem.AppComponent,
|
|
113
|
+
useExisting: i0.forwardRef((function () { return MockAppComponent; })),
|
|
114
|
+
},
|
|
115
|
+
], ngImport: i0__namespace, template: '<ng-content></ng-content>', isInline: true });
|
|
116
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: MockAppComponent, decorators: [{
|
|
117
|
+
type: i0.Component,
|
|
118
|
+
args: [{
|
|
119
|
+
selector: 'kirby-app',
|
|
120
|
+
template: '<ng-content></ng-content>',
|
|
121
|
+
providers: [
|
|
122
|
+
{
|
|
123
|
+
provide: designsystem.AppComponent,
|
|
124
|
+
useExisting: i0.forwardRef((function () { return MockAppComponent; })),
|
|
125
|
+
},
|
|
126
|
+
],
|
|
127
|
+
}]
|
|
128
|
+
}] });
|
|
82
129
|
|
|
83
130
|
// #region AUTO-GENERATED - PLEASE DON'T EDIT CONTENT WITHIN!
|
|
84
131
|
var MockAvatarComponent = /** @class */ (function () {
|
|
@@ -86,28 +133,40 @@
|
|
|
86
133
|
}
|
|
87
134
|
return MockAvatarComponent;
|
|
88
135
|
}());
|
|
89
|
-
MockAvatarComponent
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
136
|
+
/** @nocollapse */ MockAvatarComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: MockAvatarComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
|
|
137
|
+
/** @nocollapse */ MockAvatarComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: MockAvatarComponent, selector: "kirby-avatar", inputs: { imageSrc: "imageSrc", altText: "altText", shadow: "shadow", text: "text", overlay: "overlay", size: "size", themeColor: "themeColor" }, providers: [
|
|
138
|
+
{
|
|
139
|
+
provide: designsystem.AvatarComponent,
|
|
140
|
+
useExisting: i0.forwardRef((function () { return MockAvatarComponent; })),
|
|
141
|
+
},
|
|
142
|
+
], ngImport: i0__namespace, template: '<ng-content></ng-content>', isInline: true });
|
|
143
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: MockAvatarComponent, decorators: [{
|
|
144
|
+
type: i0.Component,
|
|
145
|
+
args: [{
|
|
146
|
+
selector: 'kirby-avatar',
|
|
147
|
+
template: '<ng-content></ng-content>',
|
|
148
|
+
providers: [
|
|
149
|
+
{
|
|
150
|
+
provide: designsystem.AvatarComponent,
|
|
151
|
+
useExisting: i0.forwardRef((function () { return MockAvatarComponent; })),
|
|
152
|
+
},
|
|
153
|
+
],
|
|
154
|
+
}]
|
|
155
|
+
}], propDecorators: { imageSrc: [{
|
|
156
|
+
type: i0.Input
|
|
157
|
+
}], altText: [{
|
|
158
|
+
type: i0.Input
|
|
159
|
+
}], shadow: [{
|
|
160
|
+
type: i0.Input
|
|
161
|
+
}], text: [{
|
|
162
|
+
type: i0.Input
|
|
163
|
+
}], overlay: [{
|
|
164
|
+
type: i0.Input
|
|
165
|
+
}], size: [{
|
|
166
|
+
type: i0.Input
|
|
167
|
+
}], themeColor: [{
|
|
168
|
+
type: i0.Input
|
|
169
|
+
}] } });
|
|
111
170
|
|
|
112
171
|
// #region AUTO-GENERATED - PLEASE DON'T EDIT CONTENT WITHIN!
|
|
113
172
|
var MockButtonComponent = /** @class */ (function () {
|
|
@@ -115,68 +174,101 @@
|
|
|
115
174
|
}
|
|
116
175
|
return MockButtonComponent;
|
|
117
176
|
}());
|
|
118
|
-
MockButtonComponent
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
177
|
+
/** @nocollapse */ MockButtonComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: MockButtonComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
|
|
178
|
+
/** @nocollapse */ MockButtonComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: MockButtonComponent, selector: "button[kirby-button],Button[kirby-button]", inputs: { attentionLevel: "attentionLevel", isDestructive: "isDestructive", themeColor: "themeColor", expand: "expand", isFloating: "isFloating", size: "size" }, providers: [
|
|
179
|
+
{
|
|
180
|
+
provide: designsystem.ButtonComponent,
|
|
181
|
+
useExisting: i0.forwardRef((function () { return MockButtonComponent; })),
|
|
182
|
+
},
|
|
183
|
+
], ngImport: i0__namespace, template: '<ng-content></ng-content>', isInline: true });
|
|
184
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: MockButtonComponent, decorators: [{
|
|
185
|
+
type: i0.Component,
|
|
186
|
+
args: [{
|
|
187
|
+
// tslint:disable-next-line: component-selector
|
|
188
|
+
selector: 'button[kirby-button],Button[kirby-button]',
|
|
189
|
+
template: '<ng-content></ng-content>',
|
|
190
|
+
providers: [
|
|
191
|
+
{
|
|
192
|
+
provide: designsystem.ButtonComponent,
|
|
193
|
+
useExisting: i0.forwardRef((function () { return MockButtonComponent; })),
|
|
194
|
+
},
|
|
195
|
+
],
|
|
196
|
+
}]
|
|
197
|
+
}], propDecorators: { attentionLevel: [{
|
|
198
|
+
type: i0.Input
|
|
199
|
+
}], isDestructive: [{
|
|
200
|
+
type: i0.Input
|
|
201
|
+
}], themeColor: [{
|
|
202
|
+
type: i0.Input
|
|
203
|
+
}], expand: [{
|
|
204
|
+
type: i0.Input
|
|
205
|
+
}], isFloating: [{
|
|
206
|
+
type: i0.Input
|
|
207
|
+
}], size: [{
|
|
208
|
+
type: i0.Input
|
|
209
|
+
}] } });
|
|
140
210
|
|
|
141
211
|
// #region AUTO-GENERATED - PLEASE DON'T EDIT CONTENT WITHIN!
|
|
142
212
|
var MockCalendarComponent = /** @class */ (function () {
|
|
143
213
|
function MockCalendarComponent() {
|
|
144
|
-
this.dateChange = new
|
|
145
|
-
this.dateSelect = new
|
|
146
|
-
this.yearSelect = new
|
|
214
|
+
this.dateChange = new i0.EventEmitter();
|
|
215
|
+
this.dateSelect = new i0.EventEmitter();
|
|
216
|
+
this.yearSelect = new i0.EventEmitter();
|
|
147
217
|
}
|
|
148
218
|
return MockCalendarComponent;
|
|
149
219
|
}());
|
|
150
|
-
MockCalendarComponent
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
220
|
+
/** @nocollapse */ MockCalendarComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: MockCalendarComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
|
|
221
|
+
/** @nocollapse */ MockCalendarComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: MockCalendarComponent, selector: "kirby-calendar", inputs: { 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" }, outputs: { dateChange: "dateChange", dateSelect: "dateSelect", yearSelect: "yearSelect" }, providers: [
|
|
222
|
+
{
|
|
223
|
+
provide: designsystem.CalendarComponent,
|
|
224
|
+
useExisting: i0.forwardRef((function () { return MockCalendarComponent; })),
|
|
225
|
+
},
|
|
226
|
+
], ngImport: i0__namespace, template: '<ng-content></ng-content>', isInline: true });
|
|
227
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: MockCalendarComponent, decorators: [{
|
|
228
|
+
type: i0.Component,
|
|
229
|
+
args: [{
|
|
230
|
+
selector: 'kirby-calendar',
|
|
231
|
+
template: '<ng-content></ng-content>',
|
|
232
|
+
providers: [
|
|
233
|
+
{
|
|
234
|
+
provide: designsystem.CalendarComponent,
|
|
235
|
+
useExisting: i0.forwardRef((function () { return MockCalendarComponent; })),
|
|
236
|
+
},
|
|
237
|
+
],
|
|
238
|
+
}]
|
|
239
|
+
}], propDecorators: { dateChange: [{
|
|
240
|
+
type: i0.Output
|
|
241
|
+
}], dateSelect: [{
|
|
242
|
+
type: i0.Output
|
|
243
|
+
}], yearSelect: [{
|
|
244
|
+
type: i0.Output
|
|
245
|
+
}], timezone: [{
|
|
246
|
+
type: i0.Input
|
|
247
|
+
}], disableWeekends: [{
|
|
248
|
+
type: i0.Input
|
|
249
|
+
}], disablePastDates: [{
|
|
250
|
+
type: i0.Input
|
|
251
|
+
}], disableFutureDates: [{
|
|
252
|
+
type: i0.Input
|
|
253
|
+
}], alwaysEnableToday: [{
|
|
254
|
+
type: i0.Input
|
|
255
|
+
}], customLocales: [{
|
|
256
|
+
type: i0.Input
|
|
257
|
+
}], usePopover: [{
|
|
258
|
+
type: i0.Input
|
|
259
|
+
}], yearNavigatorOptions: [{
|
|
260
|
+
type: i0.Input
|
|
261
|
+
}], selectedDate: [{
|
|
262
|
+
type: i0.Input
|
|
263
|
+
}], disabledDates: [{
|
|
264
|
+
type: i0.Input
|
|
265
|
+
}], todayDate: [{
|
|
266
|
+
type: i0.Input
|
|
267
|
+
}], minDate: [{
|
|
268
|
+
type: i0.Input
|
|
269
|
+
}], maxDate: [{
|
|
270
|
+
type: i0.Input
|
|
271
|
+
}] } });
|
|
180
272
|
|
|
181
273
|
// #region AUTO-GENERATED - PLEASE DON'T EDIT CONTENT WITHIN!
|
|
182
274
|
var MockCardFooterComponent = /** @class */ (function () {
|
|
@@ -184,19 +276,26 @@
|
|
|
184
276
|
}
|
|
185
277
|
return MockCardFooterComponent;
|
|
186
278
|
}());
|
|
187
|
-
MockCardFooterComponent
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
279
|
+
/** @nocollapse */ MockCardFooterComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: MockCardFooterComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
|
|
280
|
+
/** @nocollapse */ MockCardFooterComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: MockCardFooterComponent, selector: "kirby-card-footer", providers: [
|
|
281
|
+
{
|
|
282
|
+
provide: designsystem.CardFooterComponent,
|
|
283
|
+
useExisting: i0.forwardRef((function () { return MockCardFooterComponent; })),
|
|
284
|
+
},
|
|
285
|
+
], ngImport: i0__namespace, template: '<ng-content></ng-content>', isInline: true });
|
|
286
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: MockCardFooterComponent, decorators: [{
|
|
287
|
+
type: i0.Component,
|
|
288
|
+
args: [{
|
|
289
|
+
selector: 'kirby-card-footer',
|
|
290
|
+
template: '<ng-content></ng-content>',
|
|
291
|
+
providers: [
|
|
292
|
+
{
|
|
293
|
+
provide: designsystem.CardFooterComponent,
|
|
294
|
+
useExisting: i0.forwardRef((function () { return MockCardFooterComponent; })),
|
|
295
|
+
},
|
|
296
|
+
],
|
|
297
|
+
}]
|
|
298
|
+
}] });
|
|
200
299
|
|
|
201
300
|
// #region AUTO-GENERATED - PLEASE DON'T EDIT CONTENT WITHIN!
|
|
202
301
|
var MockCardHeaderComponent = /** @class */ (function () {
|
|
@@ -204,25 +303,34 @@
|
|
|
204
303
|
}
|
|
205
304
|
return MockCardHeaderComponent;
|
|
206
305
|
}());
|
|
207
|
-
MockCardHeaderComponent
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
306
|
+
/** @nocollapse */ MockCardHeaderComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: MockCardHeaderComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
|
|
307
|
+
/** @nocollapse */ MockCardHeaderComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: MockCardHeaderComponent, selector: "kirby-card-header", inputs: { title: "title", subtitle: "subtitle", isTitleBold: "isTitleBold", flagged: "flagged" }, providers: [
|
|
308
|
+
{
|
|
309
|
+
provide: designsystem.CardHeaderComponent,
|
|
310
|
+
useExisting: i0.forwardRef((function () { return MockCardHeaderComponent; })),
|
|
311
|
+
},
|
|
312
|
+
], ngImport: i0__namespace, template: '<ng-content></ng-content>', isInline: true });
|
|
313
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: MockCardHeaderComponent, decorators: [{
|
|
314
|
+
type: i0.Component,
|
|
315
|
+
args: [{
|
|
316
|
+
selector: 'kirby-card-header',
|
|
317
|
+
template: '<ng-content></ng-content>',
|
|
318
|
+
providers: [
|
|
319
|
+
{
|
|
320
|
+
provide: designsystem.CardHeaderComponent,
|
|
321
|
+
useExisting: i0.forwardRef((function () { return MockCardHeaderComponent; })),
|
|
322
|
+
},
|
|
323
|
+
],
|
|
324
|
+
}]
|
|
325
|
+
}], propDecorators: { title: [{
|
|
326
|
+
type: i0.Input
|
|
327
|
+
}], subtitle: [{
|
|
328
|
+
type: i0.Input
|
|
329
|
+
}], isTitleBold: [{
|
|
330
|
+
type: i0.Input
|
|
331
|
+
}], flagged: [{
|
|
332
|
+
type: i0.Input
|
|
333
|
+
}] } });
|
|
226
334
|
|
|
227
335
|
// #region AUTO-GENERATED - PLEASE DON'T EDIT CONTENT WITHIN!
|
|
228
336
|
var MockCardComponent = /** @class */ (function () {
|
|
@@ -230,27 +338,38 @@
|
|
|
230
338
|
}
|
|
231
339
|
return MockCardComponent;
|
|
232
340
|
}());
|
|
233
|
-
MockCardComponent
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
341
|
+
/** @nocollapse */ MockCardComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: MockCardComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
|
|
342
|
+
/** @nocollapse */ MockCardComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: MockCardComponent, selector: "kirby-card", inputs: { title: "title", subtitle: "subtitle", backgroundImageUrl: "backgroundImageUrl", hasPadding: "hasPadding", sizes: "sizes", mode: "mode" }, providers: [
|
|
343
|
+
{
|
|
344
|
+
provide: designsystem.CardComponent,
|
|
345
|
+
useExisting: i0.forwardRef((function () { return MockCardComponent; })),
|
|
346
|
+
},
|
|
347
|
+
], ngImport: i0__namespace, template: '<ng-content></ng-content>', isInline: true });
|
|
348
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: MockCardComponent, decorators: [{
|
|
349
|
+
type: i0.Component,
|
|
350
|
+
args: [{
|
|
351
|
+
selector: 'kirby-card',
|
|
352
|
+
template: '<ng-content></ng-content>',
|
|
353
|
+
providers: [
|
|
354
|
+
{
|
|
355
|
+
provide: designsystem.CardComponent,
|
|
356
|
+
useExisting: i0.forwardRef((function () { return MockCardComponent; })),
|
|
357
|
+
},
|
|
358
|
+
],
|
|
359
|
+
}]
|
|
360
|
+
}], propDecorators: { title: [{
|
|
361
|
+
type: i0.Input
|
|
362
|
+
}], subtitle: [{
|
|
363
|
+
type: i0.Input
|
|
364
|
+
}], backgroundImageUrl: [{
|
|
365
|
+
type: i0.Input
|
|
366
|
+
}], hasPadding: [{
|
|
367
|
+
type: i0.Input
|
|
368
|
+
}], sizes: [{
|
|
369
|
+
type: i0.Input
|
|
370
|
+
}], mode: [{
|
|
371
|
+
type: i0.Input
|
|
372
|
+
}] } });
|
|
254
373
|
|
|
255
374
|
// #region AUTO-GENERATED - PLEASE DON'T EDIT CONTENT WITHIN!
|
|
256
375
|
var MockChartDeprecatedComponent = /** @class */ (function () {
|
|
@@ -258,29 +377,42 @@
|
|
|
258
377
|
}
|
|
259
378
|
return MockChartDeprecatedComponent;
|
|
260
379
|
}());
|
|
261
|
-
MockChartDeprecatedComponent
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
380
|
+
/** @nocollapse */ MockChartDeprecatedComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: MockChartDeprecatedComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
|
|
381
|
+
/** @nocollapse */ MockChartDeprecatedComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: MockChartDeprecatedComponent, selector: "kirby-chart-deprecated", inputs: { data: "data", categories: "categories", breaks: "breaks", height: "height", type: "type", description: "description", showDataLabels: "showDataLabels", options: "options" }, providers: [
|
|
382
|
+
{
|
|
383
|
+
provide: designsystem.ChartDeprecatedComponent,
|
|
384
|
+
useExisting: i0.forwardRef((function () { return MockChartDeprecatedComponent; })),
|
|
385
|
+
},
|
|
386
|
+
], ngImport: i0__namespace, template: '<ng-content></ng-content>', isInline: true });
|
|
387
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: MockChartDeprecatedComponent, decorators: [{
|
|
388
|
+
type: i0.Component,
|
|
389
|
+
args: [{
|
|
390
|
+
selector: 'kirby-chart-deprecated',
|
|
391
|
+
template: '<ng-content></ng-content>',
|
|
392
|
+
providers: [
|
|
393
|
+
{
|
|
394
|
+
provide: designsystem.ChartDeprecatedComponent,
|
|
395
|
+
useExisting: i0.forwardRef((function () { return MockChartDeprecatedComponent; })),
|
|
396
|
+
},
|
|
397
|
+
],
|
|
398
|
+
}]
|
|
399
|
+
}], propDecorators: { data: [{
|
|
400
|
+
type: i0.Input
|
|
401
|
+
}], categories: [{
|
|
402
|
+
type: i0.Input
|
|
403
|
+
}], breaks: [{
|
|
404
|
+
type: i0.Input
|
|
405
|
+
}], height: [{
|
|
406
|
+
type: i0.Input
|
|
407
|
+
}], type: [{
|
|
408
|
+
type: i0.Input
|
|
409
|
+
}], description: [{
|
|
410
|
+
type: i0.Input
|
|
411
|
+
}], showDataLabels: [{
|
|
412
|
+
type: i0.Input
|
|
413
|
+
}], options: [{
|
|
414
|
+
type: i0.Input
|
|
415
|
+
}] } });
|
|
284
416
|
|
|
285
417
|
// #region AUTO-GENERATED - PLEASE DON'T EDIT CONTENT WITHIN!
|
|
286
418
|
var MockChartComponent = /** @class */ (function () {
|
|
@@ -288,60 +420,84 @@
|
|
|
288
420
|
}
|
|
289
421
|
return MockChartComponent;
|
|
290
422
|
}());
|
|
291
|
-
MockChartComponent
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
423
|
+
/** @nocollapse */ MockChartComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: MockChartComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
|
|
424
|
+
/** @nocollapse */ MockChartComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: MockChartComponent, selector: "kirby-chart", inputs: { type: "type", data: "data", labels: "labels", customOptions: "customOptions", dataLabelOptions: "dataLabelOptions", annotations: "annotations", highlightedElements: "highlightedElements", height: "height" }, providers: [
|
|
425
|
+
{
|
|
426
|
+
provide: designsystem.ChartComponent,
|
|
427
|
+
useExisting: i0.forwardRef((function () { return MockChartComponent; })),
|
|
428
|
+
},
|
|
429
|
+
], ngImport: i0__namespace, template: '<ng-content></ng-content>', isInline: true });
|
|
430
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: MockChartComponent, decorators: [{
|
|
431
|
+
type: i0.Component,
|
|
432
|
+
args: [{
|
|
433
|
+
selector: 'kirby-chart',
|
|
434
|
+
template: '<ng-content></ng-content>',
|
|
435
|
+
providers: [
|
|
436
|
+
{
|
|
437
|
+
provide: designsystem.ChartComponent,
|
|
438
|
+
useExisting: i0.forwardRef((function () { return MockChartComponent; })),
|
|
439
|
+
},
|
|
440
|
+
],
|
|
441
|
+
}]
|
|
442
|
+
}], propDecorators: { type: [{
|
|
443
|
+
type: i0.Input
|
|
444
|
+
}], data: [{
|
|
445
|
+
type: i0.Input
|
|
446
|
+
}], labels: [{
|
|
447
|
+
type: i0.Input
|
|
448
|
+
}], customOptions: [{
|
|
449
|
+
type: i0.Input
|
|
450
|
+
}], dataLabelOptions: [{
|
|
451
|
+
type: i0.Input
|
|
452
|
+
}], annotations: [{
|
|
453
|
+
type: i0.Input
|
|
454
|
+
}], highlightedElements: [{
|
|
455
|
+
type: i0.Input
|
|
456
|
+
}], height: [{
|
|
457
|
+
type: i0.Input
|
|
458
|
+
}] } });
|
|
315
459
|
|
|
316
460
|
// #region AUTO-GENERATED - PLEASE DON'T EDIT CONTENT WITHIN!
|
|
317
461
|
var MockCheckboxComponent = /** @class */ (function () {
|
|
318
462
|
function MockCheckboxComponent() {
|
|
319
|
-
this.checkedChange = new
|
|
463
|
+
this.checkedChange = new i0.EventEmitter();
|
|
320
464
|
}
|
|
321
465
|
return MockCheckboxComponent;
|
|
322
466
|
}());
|
|
323
|
-
MockCheckboxComponent
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
467
|
+
/** @nocollapse */ MockCheckboxComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: MockCheckboxComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
|
|
468
|
+
/** @nocollapse */ MockCheckboxComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: MockCheckboxComponent, selector: "kirby-checkbox", inputs: { checked: "checked", attentionLevel: "attentionLevel", text: "text", size: "size", hasError: "hasError", disabled: "disabled" }, outputs: { checkedChange: "checkedChange" }, providers: [
|
|
469
|
+
{
|
|
470
|
+
provide: designsystem.CheckboxComponent,
|
|
471
|
+
useExisting: i0.forwardRef((function () { return MockCheckboxComponent; })),
|
|
472
|
+
},
|
|
473
|
+
], ngImport: i0__namespace, template: '<ng-content></ng-content>', isInline: true });
|
|
474
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: MockCheckboxComponent, decorators: [{
|
|
475
|
+
type: i0.Component,
|
|
476
|
+
args: [{
|
|
477
|
+
selector: 'kirby-checkbox',
|
|
478
|
+
template: '<ng-content></ng-content>',
|
|
479
|
+
providers: [
|
|
480
|
+
{
|
|
481
|
+
provide: designsystem.CheckboxComponent,
|
|
482
|
+
useExisting: i0.forwardRef((function () { return MockCheckboxComponent; })),
|
|
483
|
+
},
|
|
484
|
+
],
|
|
485
|
+
}]
|
|
486
|
+
}], propDecorators: { checked: [{
|
|
487
|
+
type: i0.Input
|
|
488
|
+
}], attentionLevel: [{
|
|
489
|
+
type: i0.Input
|
|
490
|
+
}], text: [{
|
|
491
|
+
type: i0.Input
|
|
492
|
+
}], size: [{
|
|
493
|
+
type: i0.Input
|
|
494
|
+
}], hasError: [{
|
|
495
|
+
type: i0.Input
|
|
496
|
+
}], disabled: [{
|
|
497
|
+
type: i0.Input
|
|
498
|
+
}], checkedChange: [{
|
|
499
|
+
type: i0.Output
|
|
500
|
+
}] } });
|
|
345
501
|
|
|
346
502
|
// #region AUTO-GENERATED - PLEASE DON'T EDIT CONTENT WITHIN!
|
|
347
503
|
var MockChipComponent = /** @class */ (function () {
|
|
@@ -349,23 +505,30 @@
|
|
|
349
505
|
}
|
|
350
506
|
return MockChipComponent;
|
|
351
507
|
}());
|
|
352
|
-
MockChipComponent
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
508
|
+
/** @nocollapse */ MockChipComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: MockChipComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
|
|
509
|
+
/** @nocollapse */ MockChipComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: MockChipComponent, selector: "kirby-chip", inputs: { text: "text", isSelected: "isSelected" }, providers: [
|
|
510
|
+
{
|
|
511
|
+
provide: designsystem.ChipComponent,
|
|
512
|
+
useExisting: i0.forwardRef((function () { return MockChipComponent; })),
|
|
513
|
+
},
|
|
514
|
+
], ngImport: i0__namespace, template: '<ng-content></ng-content>', isInline: true });
|
|
515
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: MockChipComponent, decorators: [{
|
|
516
|
+
type: i0.Component,
|
|
517
|
+
args: [{
|
|
518
|
+
selector: 'kirby-chip',
|
|
519
|
+
template: '<ng-content></ng-content>',
|
|
520
|
+
providers: [
|
|
521
|
+
{
|
|
522
|
+
provide: designsystem.ChipComponent,
|
|
523
|
+
useExisting: i0.forwardRef((function () { return MockChipComponent; })),
|
|
524
|
+
},
|
|
525
|
+
],
|
|
526
|
+
}]
|
|
527
|
+
}], propDecorators: { text: [{
|
|
528
|
+
type: i0.Input
|
|
529
|
+
}], isSelected: [{
|
|
530
|
+
type: i0.Input
|
|
531
|
+
}] } });
|
|
369
532
|
|
|
370
533
|
// #region AUTO-GENERATED - PLEASE DON'T EDIT CONTENT WITHIN!
|
|
371
534
|
var MockDividerComponent = /** @class */ (function () {
|
|
@@ -373,58 +536,82 @@
|
|
|
373
536
|
}
|
|
374
537
|
return MockDividerComponent;
|
|
375
538
|
}());
|
|
376
|
-
MockDividerComponent
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
539
|
+
/** @nocollapse */ MockDividerComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: MockDividerComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
|
|
540
|
+
/** @nocollapse */ MockDividerComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: MockDividerComponent, selector: "kirby-divider", inputs: { hasMargin: "hasMargin" }, providers: [
|
|
541
|
+
{
|
|
542
|
+
provide: designsystem.DividerComponent,
|
|
543
|
+
useExisting: i0.forwardRef((function () { return MockDividerComponent; })),
|
|
544
|
+
},
|
|
545
|
+
], ngImport: i0__namespace, template: '<ng-content></ng-content>', isInline: true });
|
|
546
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: MockDividerComponent, decorators: [{
|
|
547
|
+
type: i0.Component,
|
|
548
|
+
args: [{
|
|
549
|
+
selector: 'kirby-divider',
|
|
550
|
+
template: '<ng-content></ng-content>',
|
|
551
|
+
providers: [
|
|
552
|
+
{
|
|
553
|
+
provide: designsystem.DividerComponent,
|
|
554
|
+
useExisting: i0.forwardRef((function () { return MockDividerComponent; })),
|
|
555
|
+
},
|
|
556
|
+
],
|
|
557
|
+
}]
|
|
558
|
+
}], propDecorators: { hasMargin: [{
|
|
559
|
+
type: i0.Input
|
|
560
|
+
}] } });
|
|
392
561
|
|
|
393
562
|
// #region AUTO-GENERATED - PLEASE DON'T EDIT CONTENT WITHIN!
|
|
394
563
|
var MockDropdownComponent = /** @class */ (function () {
|
|
395
564
|
function MockDropdownComponent() {
|
|
396
|
-
this.change = new
|
|
565
|
+
this.change = new i0.EventEmitter();
|
|
397
566
|
}
|
|
398
567
|
return MockDropdownComponent;
|
|
399
568
|
}());
|
|
400
|
-
MockDropdownComponent
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
569
|
+
/** @nocollapse */ MockDropdownComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: MockDropdownComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
|
|
570
|
+
/** @nocollapse */ MockDropdownComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: MockDropdownComponent, selector: "kirby-dropdown", inputs: { items: "items", selectedIndex: "selectedIndex", itemTextProperty: "itemTextProperty", placeholder: "placeholder", popout: "popout", attentionLevel: "attentionLevel", expand: "expand", disabled: "disabled", hasError: "hasError", size: "size", tabindex: "tabindex", usePopover: "usePopover" }, outputs: { change: "change" }, providers: [
|
|
571
|
+
{
|
|
572
|
+
provide: designsystem.DropdownComponent,
|
|
573
|
+
useExisting: i0.forwardRef((function () { return MockDropdownComponent; })),
|
|
574
|
+
},
|
|
575
|
+
], ngImport: i0__namespace, template: '<ng-content></ng-content>', isInline: true });
|
|
576
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: MockDropdownComponent, decorators: [{
|
|
577
|
+
type: i0.Component,
|
|
578
|
+
args: [{
|
|
579
|
+
selector: 'kirby-dropdown',
|
|
580
|
+
template: '<ng-content></ng-content>',
|
|
581
|
+
providers: [
|
|
582
|
+
{
|
|
583
|
+
provide: designsystem.DropdownComponent,
|
|
584
|
+
useExisting: i0.forwardRef((function () { return MockDropdownComponent; })),
|
|
585
|
+
},
|
|
586
|
+
],
|
|
587
|
+
}]
|
|
588
|
+
}], propDecorators: { items: [{
|
|
589
|
+
type: i0.Input
|
|
590
|
+
}], selectedIndex: [{
|
|
591
|
+
type: i0.Input
|
|
592
|
+
}], itemTextProperty: [{
|
|
593
|
+
type: i0.Input
|
|
594
|
+
}], placeholder: [{
|
|
595
|
+
type: i0.Input
|
|
596
|
+
}], popout: [{
|
|
597
|
+
type: i0.Input
|
|
598
|
+
}], attentionLevel: [{
|
|
599
|
+
type: i0.Input
|
|
600
|
+
}], expand: [{
|
|
601
|
+
type: i0.Input
|
|
602
|
+
}], disabled: [{
|
|
603
|
+
type: i0.Input
|
|
604
|
+
}], hasError: [{
|
|
605
|
+
type: i0.Input
|
|
606
|
+
}], size: [{
|
|
607
|
+
type: i0.Input
|
|
608
|
+
}], tabindex: [{
|
|
609
|
+
type: i0.Input
|
|
610
|
+
}], usePopover: [{
|
|
611
|
+
type: i0.Input
|
|
612
|
+
}], change: [{
|
|
613
|
+
type: i0.Output
|
|
614
|
+
}] } });
|
|
428
615
|
|
|
429
616
|
// #region AUTO-GENERATED - PLEASE DON'T EDIT CONTENT WITHIN!
|
|
430
617
|
var MockEmptyStateComponent = /** @class */ (function () {
|
|
@@ -432,25 +619,34 @@
|
|
|
432
619
|
}
|
|
433
620
|
return MockEmptyStateComponent;
|
|
434
621
|
}());
|
|
435
|
-
MockEmptyStateComponent
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
622
|
+
/** @nocollapse */ MockEmptyStateComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: MockEmptyStateComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
|
|
623
|
+
/** @nocollapse */ MockEmptyStateComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: MockEmptyStateComponent, selector: "kirby-empty-state", inputs: { iconName: "iconName", customIconName: "customIconName", title: "title", subtitle: "subtitle" }, providers: [
|
|
624
|
+
{
|
|
625
|
+
provide: designsystem.EmptyStateComponent,
|
|
626
|
+
useExisting: i0.forwardRef((function () { return MockEmptyStateComponent; })),
|
|
627
|
+
},
|
|
628
|
+
], ngImport: i0__namespace, template: '<ng-content></ng-content>', isInline: true });
|
|
629
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: MockEmptyStateComponent, decorators: [{
|
|
630
|
+
type: i0.Component,
|
|
631
|
+
args: [{
|
|
632
|
+
selector: 'kirby-empty-state',
|
|
633
|
+
template: '<ng-content></ng-content>',
|
|
634
|
+
providers: [
|
|
635
|
+
{
|
|
636
|
+
provide: designsystem.EmptyStateComponent,
|
|
637
|
+
useExisting: i0.forwardRef((function () { return MockEmptyStateComponent; })),
|
|
638
|
+
},
|
|
639
|
+
],
|
|
640
|
+
}]
|
|
641
|
+
}], propDecorators: { iconName: [{
|
|
642
|
+
type: i0.Input
|
|
643
|
+
}], customIconName: [{
|
|
644
|
+
type: i0.Input
|
|
645
|
+
}], title: [{
|
|
646
|
+
type: i0.Input
|
|
647
|
+
}], subtitle: [{
|
|
648
|
+
type: i0.Input
|
|
649
|
+
}] } });
|
|
454
650
|
|
|
455
651
|
// #region AUTO-GENERATED - PLEASE DON'T EDIT CONTENT WITHIN!
|
|
456
652
|
var MockFabSheetComponent = /** @class */ (function () {
|
|
@@ -458,23 +654,30 @@
|
|
|
458
654
|
}
|
|
459
655
|
return MockFabSheetComponent;
|
|
460
656
|
}());
|
|
461
|
-
MockFabSheetComponent
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
657
|
+
/** @nocollapse */ MockFabSheetComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: MockFabSheetComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
|
|
658
|
+
/** @nocollapse */ MockFabSheetComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: MockFabSheetComponent, selector: "kirby-fab-sheet", inputs: { disabled: "disabled", horizontalAlignment: "horizontalAlignment" }, providers: [
|
|
659
|
+
{
|
|
660
|
+
provide: designsystem.FabSheetComponent,
|
|
661
|
+
useExisting: i0.forwardRef((function () { return MockFabSheetComponent; })),
|
|
662
|
+
},
|
|
663
|
+
], ngImport: i0__namespace, template: '<ng-content></ng-content>', isInline: true });
|
|
664
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: MockFabSheetComponent, decorators: [{
|
|
665
|
+
type: i0.Component,
|
|
666
|
+
args: [{
|
|
667
|
+
selector: 'kirby-fab-sheet',
|
|
668
|
+
template: '<ng-content></ng-content>',
|
|
669
|
+
providers: [
|
|
670
|
+
{
|
|
671
|
+
provide: designsystem.FabSheetComponent,
|
|
672
|
+
useExisting: i0.forwardRef((function () { return MockFabSheetComponent; })),
|
|
673
|
+
},
|
|
674
|
+
],
|
|
675
|
+
}]
|
|
676
|
+
}], propDecorators: { disabled: [{
|
|
677
|
+
type: i0.Input
|
|
678
|
+
}], horizontalAlignment: [{
|
|
679
|
+
type: i0.Input
|
|
680
|
+
}] } });
|
|
478
681
|
|
|
479
682
|
// #region AUTO-GENERATED - PLEASE DON'T EDIT CONTENT WITHIN!
|
|
480
683
|
var MockFlagComponent = /** @class */ (function () {
|
|
@@ -482,23 +685,30 @@
|
|
|
482
685
|
}
|
|
483
686
|
return MockFlagComponent;
|
|
484
687
|
}());
|
|
485
|
-
MockFlagComponent
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
688
|
+
/** @nocollapse */ MockFlagComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: MockFlagComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
|
|
689
|
+
/** @nocollapse */ MockFlagComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: MockFlagComponent, selector: "kirby-flag", inputs: { size: "size", themeColor: "themeColor" }, providers: [
|
|
690
|
+
{
|
|
691
|
+
provide: designsystem.FlagComponent,
|
|
692
|
+
useExisting: i0.forwardRef((function () { return MockFlagComponent; })),
|
|
693
|
+
},
|
|
694
|
+
], ngImport: i0__namespace, template: '<ng-content></ng-content>', isInline: true });
|
|
695
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: MockFlagComponent, decorators: [{
|
|
696
|
+
type: i0.Component,
|
|
697
|
+
args: [{
|
|
698
|
+
selector: 'kirby-flag',
|
|
699
|
+
template: '<ng-content></ng-content>',
|
|
700
|
+
providers: [
|
|
701
|
+
{
|
|
702
|
+
provide: designsystem.FlagComponent,
|
|
703
|
+
useExisting: i0.forwardRef((function () { return MockFlagComponent; })),
|
|
704
|
+
},
|
|
705
|
+
],
|
|
706
|
+
}]
|
|
707
|
+
}], propDecorators: { size: [{
|
|
708
|
+
type: i0.Input
|
|
709
|
+
}], themeColor: [{
|
|
710
|
+
type: i0.Input
|
|
711
|
+
}] } });
|
|
502
712
|
|
|
503
713
|
// #region AUTO-GENERATED - PLEASE DON'T EDIT CONTENT WITHIN!
|
|
504
714
|
var MockFormFieldMessageComponent = /** @class */ (function () {
|
|
@@ -506,23 +716,30 @@
|
|
|
506
716
|
}
|
|
507
717
|
return MockFormFieldMessageComponent;
|
|
508
718
|
}());
|
|
509
|
-
MockFormFieldMessageComponent
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
719
|
+
/** @nocollapse */ MockFormFieldMessageComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: MockFormFieldMessageComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
|
|
720
|
+
/** @nocollapse */ MockFormFieldMessageComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: MockFormFieldMessageComponent, selector: "kirby-form-field-message", inputs: { text: "text", position: "position" }, providers: [
|
|
721
|
+
{
|
|
722
|
+
provide: designsystem.FormFieldMessageComponent,
|
|
723
|
+
useExisting: i0.forwardRef((function () { return MockFormFieldMessageComponent; })),
|
|
724
|
+
},
|
|
725
|
+
], ngImport: i0__namespace, template: '<ng-content></ng-content>', isInline: true });
|
|
726
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: MockFormFieldMessageComponent, decorators: [{
|
|
727
|
+
type: i0.Component,
|
|
728
|
+
args: [{
|
|
729
|
+
selector: 'kirby-form-field-message',
|
|
730
|
+
template: '<ng-content></ng-content>',
|
|
731
|
+
providers: [
|
|
732
|
+
{
|
|
733
|
+
provide: designsystem.FormFieldMessageComponent,
|
|
734
|
+
useExisting: i0.forwardRef((function () { return MockFormFieldMessageComponent; })),
|
|
735
|
+
},
|
|
736
|
+
],
|
|
737
|
+
}]
|
|
738
|
+
}], propDecorators: { text: [{
|
|
739
|
+
type: i0.Input
|
|
740
|
+
}], position: [{
|
|
741
|
+
type: i0.Input
|
|
742
|
+
}] } });
|
|
526
743
|
|
|
527
744
|
// #region AUTO-GENERATED - PLEASE DON'T EDIT CONTENT WITHIN!
|
|
528
745
|
var MockFormFieldComponent = /** @class */ (function () {
|
|
@@ -531,23 +748,30 @@
|
|
|
531
748
|
MockFormFieldComponent.prototype.focus = function () { };
|
|
532
749
|
return MockFormFieldComponent;
|
|
533
750
|
}());
|
|
534
|
-
MockFormFieldComponent
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
751
|
+
/** @nocollapse */ MockFormFieldComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: MockFormFieldComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
|
|
752
|
+
/** @nocollapse */ MockFormFieldComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: MockFormFieldComponent, selector: "kirby-form-field", inputs: { label: "label", message: "message" }, providers: [
|
|
753
|
+
{
|
|
754
|
+
provide: designsystem.FormFieldComponent,
|
|
755
|
+
useExisting: i0.forwardRef((function () { return MockFormFieldComponent; })),
|
|
756
|
+
},
|
|
757
|
+
], ngImport: i0__namespace, template: '<ng-content></ng-content>', isInline: true });
|
|
758
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: MockFormFieldComponent, decorators: [{
|
|
759
|
+
type: i0.Component,
|
|
760
|
+
args: [{
|
|
761
|
+
selector: 'kirby-form-field',
|
|
762
|
+
template: '<ng-content></ng-content>',
|
|
763
|
+
providers: [
|
|
764
|
+
{
|
|
765
|
+
provide: designsystem.FormFieldComponent,
|
|
766
|
+
useExisting: i0.forwardRef((function () { return MockFormFieldComponent; })),
|
|
767
|
+
},
|
|
768
|
+
],
|
|
769
|
+
}]
|
|
770
|
+
}], propDecorators: { label: [{
|
|
771
|
+
type: i0.Input
|
|
772
|
+
}], message: [{
|
|
773
|
+
type: i0.Input
|
|
774
|
+
}] } });
|
|
551
775
|
|
|
552
776
|
// #region AUTO-GENERATED - PLEASE DON'T EDIT CONTENT WITHIN!
|
|
553
777
|
var MockGridComponent = /** @class */ (function () {
|
|
@@ -555,23 +779,30 @@
|
|
|
555
779
|
}
|
|
556
780
|
return MockGridComponent;
|
|
557
781
|
}());
|
|
558
|
-
MockGridComponent
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
782
|
+
/** @nocollapse */ MockGridComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: MockGridComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
|
|
783
|
+
/** @nocollapse */ MockGridComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: MockGridComponent, selector: "kirby-grid", inputs: { maxColumns: "maxColumns", cardConfigurations: "cardConfigurations" }, providers: [
|
|
784
|
+
{
|
|
785
|
+
provide: designsystem.GridComponent,
|
|
786
|
+
useExisting: i0.forwardRef((function () { return MockGridComponent; })),
|
|
787
|
+
},
|
|
788
|
+
], ngImport: i0__namespace, template: '<ng-content></ng-content>', isInline: true });
|
|
789
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: MockGridComponent, decorators: [{
|
|
790
|
+
type: i0.Component,
|
|
791
|
+
args: [{
|
|
792
|
+
selector: 'kirby-grid',
|
|
793
|
+
template: '<ng-content></ng-content>',
|
|
794
|
+
providers: [
|
|
795
|
+
{
|
|
796
|
+
provide: designsystem.GridComponent,
|
|
797
|
+
useExisting: i0.forwardRef((function () { return MockGridComponent; })),
|
|
798
|
+
},
|
|
799
|
+
],
|
|
800
|
+
}]
|
|
801
|
+
}], propDecorators: { maxColumns: [{
|
|
802
|
+
type: i0.Input
|
|
803
|
+
}], cardConfigurations: [{
|
|
804
|
+
type: i0.Input
|
|
805
|
+
}] } });
|
|
575
806
|
|
|
576
807
|
// #region AUTO-GENERATED - PLEASE DON'T EDIT CONTENT WITHIN!
|
|
577
808
|
var MockIconComponent = /** @class */ (function () {
|
|
@@ -579,24 +810,32 @@
|
|
|
579
810
|
}
|
|
580
811
|
return MockIconComponent;
|
|
581
812
|
}());
|
|
582
|
-
MockIconComponent
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
813
|
+
/** @nocollapse */ MockIconComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: MockIconComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
|
|
814
|
+
/** @nocollapse */ MockIconComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: MockIconComponent, selector: "kirby-icon", inputs: { size: "size", name: "name", customName: "customName" }, providers: [
|
|
815
|
+
{
|
|
816
|
+
provide: designsystem.IconComponent,
|
|
817
|
+
useExisting: i0.forwardRef((function () { return MockIconComponent; })),
|
|
818
|
+
},
|
|
819
|
+
], ngImport: i0__namespace, template: '<ng-content></ng-content>', isInline: true });
|
|
820
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: MockIconComponent, decorators: [{
|
|
821
|
+
type: i0.Component,
|
|
822
|
+
args: [{
|
|
823
|
+
selector: 'kirby-icon',
|
|
824
|
+
template: '<ng-content></ng-content>',
|
|
825
|
+
providers: [
|
|
826
|
+
{
|
|
827
|
+
provide: designsystem.IconComponent,
|
|
828
|
+
useExisting: i0.forwardRef((function () { return MockIconComponent; })),
|
|
829
|
+
},
|
|
830
|
+
],
|
|
831
|
+
}]
|
|
832
|
+
}], propDecorators: { size: [{
|
|
833
|
+
type: i0.Input
|
|
834
|
+
}], name: [{
|
|
835
|
+
type: i0.Input
|
|
836
|
+
}], customName: [{
|
|
837
|
+
type: i0.Input
|
|
838
|
+
}] } });
|
|
600
839
|
|
|
601
840
|
// #region AUTO-GENERATED - PLEASE DON'T EDIT CONTENT WITHIN!
|
|
602
841
|
var MockInputCounterComponent = /** @class */ (function () {
|
|
@@ -604,22 +843,28 @@
|
|
|
604
843
|
}
|
|
605
844
|
return MockInputCounterComponent;
|
|
606
845
|
}());
|
|
607
|
-
MockInputCounterComponent
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
846
|
+
/** @nocollapse */ MockInputCounterComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: MockInputCounterComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
|
|
847
|
+
/** @nocollapse */ MockInputCounterComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: MockInputCounterComponent, selector: "kirby-input-counter", inputs: { listenTo: "listenTo" }, providers: [
|
|
848
|
+
{
|
|
849
|
+
provide: designsystem.InputCounterComponent,
|
|
850
|
+
useExisting: i0.forwardRef((function () { return MockInputCounterComponent; })),
|
|
851
|
+
},
|
|
852
|
+
], ngImport: i0__namespace, template: '<ng-content></ng-content>', isInline: true });
|
|
853
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: MockInputCounterComponent, decorators: [{
|
|
854
|
+
type: i0.Component,
|
|
855
|
+
args: [{
|
|
856
|
+
selector: 'kirby-input-counter',
|
|
857
|
+
template: '<ng-content></ng-content>',
|
|
858
|
+
providers: [
|
|
859
|
+
{
|
|
860
|
+
provide: designsystem.InputCounterComponent,
|
|
861
|
+
useExisting: i0.forwardRef((function () { return MockInputCounterComponent; })),
|
|
862
|
+
},
|
|
863
|
+
],
|
|
864
|
+
}]
|
|
865
|
+
}], propDecorators: { listenTo: [{
|
|
866
|
+
type: i0.Input
|
|
867
|
+
}] } });
|
|
623
868
|
|
|
624
869
|
// #region AUTO-GENERATED - PLEASE DON'T EDIT CONTENT WITHIN!
|
|
625
870
|
var MockInputComponent = /** @class */ (function () {
|
|
@@ -627,31 +872,45 @@
|
|
|
627
872
|
}
|
|
628
873
|
return MockInputComponent;
|
|
629
874
|
}());
|
|
630
|
-
MockInputComponent
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
875
|
+
/** @nocollapse */ MockInputComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: MockInputComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
|
|
876
|
+
/** @nocollapse */ MockInputComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: MockInputComponent, selector: "input[kirby-input]", inputs: { type: "type", size: "size", borderless: "borderless", hasError: "hasError", autocomplete: "autocomplete", autocorrect: "autocorrect", value: "value", maxlength: "maxlength", inputmode: "inputmode" }, providers: [
|
|
877
|
+
{
|
|
878
|
+
provide: designsystem.InputComponent,
|
|
879
|
+
useExisting: i0.forwardRef((function () { return MockInputComponent; })),
|
|
880
|
+
},
|
|
881
|
+
], ngImport: i0__namespace, template: '<ng-content></ng-content>', isInline: true });
|
|
882
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: MockInputComponent, decorators: [{
|
|
883
|
+
type: i0.Component,
|
|
884
|
+
args: [{
|
|
885
|
+
// tslint:disable-next-line: component-selector
|
|
886
|
+
selector: 'input[kirby-input]',
|
|
887
|
+
template: '<ng-content></ng-content>',
|
|
888
|
+
providers: [
|
|
889
|
+
{
|
|
890
|
+
provide: designsystem.InputComponent,
|
|
891
|
+
useExisting: i0.forwardRef((function () { return MockInputComponent; })),
|
|
892
|
+
},
|
|
893
|
+
],
|
|
894
|
+
}]
|
|
895
|
+
}], propDecorators: { type: [{
|
|
896
|
+
type: i0.Input
|
|
897
|
+
}], size: [{
|
|
898
|
+
type: i0.Input
|
|
899
|
+
}], borderless: [{
|
|
900
|
+
type: i0.Input
|
|
901
|
+
}], hasError: [{
|
|
902
|
+
type: i0.Input
|
|
903
|
+
}], autocomplete: [{
|
|
904
|
+
type: i0.Input
|
|
905
|
+
}], autocorrect: [{
|
|
906
|
+
type: i0.Input
|
|
907
|
+
}], value: [{
|
|
908
|
+
type: i0.Input
|
|
909
|
+
}], maxlength: [{
|
|
910
|
+
type: i0.Input
|
|
911
|
+
}], inputmode: [{
|
|
912
|
+
type: i0.Input
|
|
913
|
+
}] } });
|
|
655
914
|
|
|
656
915
|
// #region AUTO-GENERATED - PLEASE DON'T EDIT CONTENT WITHIN!
|
|
657
916
|
var MockItemGroupComponent = /** @class */ (function () {
|
|
@@ -659,19 +918,26 @@
|
|
|
659
918
|
}
|
|
660
919
|
return MockItemGroupComponent;
|
|
661
920
|
}());
|
|
662
|
-
MockItemGroupComponent
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
|
|
921
|
+
/** @nocollapse */ MockItemGroupComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: MockItemGroupComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
|
|
922
|
+
/** @nocollapse */ MockItemGroupComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: MockItemGroupComponent, selector: "kirby-item-group", providers: [
|
|
923
|
+
{
|
|
924
|
+
provide: designsystem.ItemGroupComponent,
|
|
925
|
+
useExisting: i0.forwardRef((function () { return MockItemGroupComponent; })),
|
|
926
|
+
},
|
|
927
|
+
], ngImport: i0__namespace, template: '<ng-content></ng-content>', isInline: true });
|
|
928
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: MockItemGroupComponent, decorators: [{
|
|
929
|
+
type: i0.Component,
|
|
930
|
+
args: [{
|
|
931
|
+
selector: 'kirby-item-group',
|
|
932
|
+
template: '<ng-content></ng-content>',
|
|
933
|
+
providers: [
|
|
934
|
+
{
|
|
935
|
+
provide: designsystem.ItemGroupComponent,
|
|
936
|
+
useExisting: i0.forwardRef((function () { return MockItemGroupComponent; })),
|
|
937
|
+
},
|
|
938
|
+
],
|
|
939
|
+
}]
|
|
940
|
+
}] });
|
|
675
941
|
|
|
676
942
|
// #region AUTO-GENERATED - PLEASE DON'T EDIT CONTENT WITHIN!
|
|
677
943
|
var MockItemSlidingComponent = /** @class */ (function () {
|
|
@@ -679,23 +945,30 @@
|
|
|
679
945
|
}
|
|
680
946
|
return MockItemSlidingComponent;
|
|
681
947
|
}());
|
|
682
|
-
MockItemSlidingComponent
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
|
|
948
|
+
/** @nocollapse */ MockItemSlidingComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: MockItemSlidingComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
|
|
949
|
+
/** @nocollapse */ MockItemSlidingComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: MockItemSlidingComponent, selector: "kirby-item-sliding", inputs: { swipeActions: "swipeActions", side: "side" }, providers: [
|
|
950
|
+
{
|
|
951
|
+
provide: designsystem.ItemSlidingComponent,
|
|
952
|
+
useExisting: i0.forwardRef((function () { return MockItemSlidingComponent; })),
|
|
953
|
+
},
|
|
954
|
+
], ngImport: i0__namespace, template: '<ng-content></ng-content>', isInline: true });
|
|
955
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: MockItemSlidingComponent, decorators: [{
|
|
956
|
+
type: i0.Component,
|
|
957
|
+
args: [{
|
|
958
|
+
selector: 'kirby-item-sliding',
|
|
959
|
+
template: '<ng-content></ng-content>',
|
|
960
|
+
providers: [
|
|
961
|
+
{
|
|
962
|
+
provide: designsystem.ItemSlidingComponent,
|
|
963
|
+
useExisting: i0.forwardRef((function () { return MockItemSlidingComponent; })),
|
|
964
|
+
},
|
|
965
|
+
],
|
|
966
|
+
}]
|
|
967
|
+
}], propDecorators: { swipeActions: [{
|
|
968
|
+
type: i0.Input
|
|
969
|
+
}], side: [{
|
|
970
|
+
type: i0.Input
|
|
971
|
+
}] } });
|
|
699
972
|
|
|
700
973
|
// #region AUTO-GENERATED - PLEASE DON'T EDIT CONTENT WITHIN!
|
|
701
974
|
var MockItemComponent = /** @class */ (function () {
|
|
@@ -703,26 +976,36 @@
|
|
|
703
976
|
}
|
|
704
977
|
return MockItemComponent;
|
|
705
978
|
}());
|
|
706
|
-
MockItemComponent
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
|
|
719
|
-
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
|
|
724
|
-
|
|
725
|
-
|
|
979
|
+
/** @nocollapse */ MockItemComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: MockItemComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
|
|
980
|
+
/** @nocollapse */ MockItemComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: MockItemComponent, selector: "kirby-item", inputs: { disabled: "disabled", selected: "selected", selectable: "selectable", reorderable: "reorderable", size: "size" }, providers: [
|
|
981
|
+
{
|
|
982
|
+
provide: designsystem.ItemComponent,
|
|
983
|
+
useExisting: i0.forwardRef((function () { return MockItemComponent; })),
|
|
984
|
+
},
|
|
985
|
+
], ngImport: i0__namespace, template: '<ng-content></ng-content>', isInline: true });
|
|
986
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: MockItemComponent, decorators: [{
|
|
987
|
+
type: i0.Component,
|
|
988
|
+
args: [{
|
|
989
|
+
selector: 'kirby-item',
|
|
990
|
+
template: '<ng-content></ng-content>',
|
|
991
|
+
providers: [
|
|
992
|
+
{
|
|
993
|
+
provide: designsystem.ItemComponent,
|
|
994
|
+
useExisting: i0.forwardRef((function () { return MockItemComponent; })),
|
|
995
|
+
},
|
|
996
|
+
],
|
|
997
|
+
}]
|
|
998
|
+
}], propDecorators: { disabled: [{
|
|
999
|
+
type: i0.Input
|
|
1000
|
+
}], selected: [{
|
|
1001
|
+
type: i0.Input
|
|
1002
|
+
}], selectable: [{
|
|
1003
|
+
type: i0.Input
|
|
1004
|
+
}], reorderable: [{
|
|
1005
|
+
type: i0.Input
|
|
1006
|
+
}], size: [{
|
|
1007
|
+
type: i0.Input
|
|
1008
|
+
}] } });
|
|
726
1009
|
|
|
727
1010
|
// #region AUTO-GENERATED - PLEASE DON'T EDIT CONTENT WITHIN!
|
|
728
1011
|
var MockLabelComponent = /** @class */ (function () {
|
|
@@ -730,22 +1013,28 @@
|
|
|
730
1013
|
}
|
|
731
1014
|
return MockLabelComponent;
|
|
732
1015
|
}());
|
|
733
|
-
MockLabelComponent
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
|
|
738
|
-
|
|
739
|
-
|
|
740
|
-
|
|
741
|
-
|
|
742
|
-
|
|
743
|
-
|
|
744
|
-
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
|
|
1016
|
+
/** @nocollapse */ MockLabelComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: MockLabelComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
|
|
1017
|
+
/** @nocollapse */ MockLabelComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: MockLabelComponent, selector: "kirby-label", inputs: { direction: "direction" }, providers: [
|
|
1018
|
+
{
|
|
1019
|
+
provide: designsystem.LabelComponent,
|
|
1020
|
+
useExisting: i0.forwardRef((function () { return MockLabelComponent; })),
|
|
1021
|
+
},
|
|
1022
|
+
], ngImport: i0__namespace, template: '<ng-content></ng-content>', isInline: true });
|
|
1023
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: MockLabelComponent, decorators: [{
|
|
1024
|
+
type: i0.Component,
|
|
1025
|
+
args: [{
|
|
1026
|
+
selector: 'kirby-label',
|
|
1027
|
+
template: '<ng-content></ng-content>',
|
|
1028
|
+
providers: [
|
|
1029
|
+
{
|
|
1030
|
+
provide: designsystem.LabelComponent,
|
|
1031
|
+
useExisting: i0.forwardRef((function () { return MockLabelComponent; })),
|
|
1032
|
+
},
|
|
1033
|
+
],
|
|
1034
|
+
}]
|
|
1035
|
+
}], propDecorators: { direction: [{
|
|
1036
|
+
type: i0.Input
|
|
1037
|
+
}] } });
|
|
749
1038
|
|
|
750
1039
|
// #region AUTO-GENERATED - PLEASE DON'T EDIT CONTENT WITHIN!
|
|
751
1040
|
var MockListExperimentalComponent = /** @class */ (function () {
|
|
@@ -753,19 +1042,26 @@
|
|
|
753
1042
|
}
|
|
754
1043
|
return MockListExperimentalComponent;
|
|
755
1044
|
}());
|
|
756
|
-
MockListExperimentalComponent
|
|
757
|
-
|
|
758
|
-
|
|
759
|
-
|
|
760
|
-
|
|
761
|
-
|
|
762
|
-
|
|
763
|
-
|
|
764
|
-
|
|
765
|
-
|
|
766
|
-
|
|
767
|
-
|
|
768
|
-
|
|
1045
|
+
/** @nocollapse */ MockListExperimentalComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: MockListExperimentalComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
|
|
1046
|
+
/** @nocollapse */ MockListExperimentalComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: MockListExperimentalComponent, selector: "kirby-list-experimental", providers: [
|
|
1047
|
+
{
|
|
1048
|
+
provide: designsystem.ListExperimentalComponent,
|
|
1049
|
+
useExisting: i0.forwardRef((function () { return MockListExperimentalComponent; })),
|
|
1050
|
+
},
|
|
1051
|
+
], ngImport: i0__namespace, template: '<ng-content></ng-content>', isInline: true });
|
|
1052
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: MockListExperimentalComponent, decorators: [{
|
|
1053
|
+
type: i0.Component,
|
|
1054
|
+
args: [{
|
|
1055
|
+
selector: 'kirby-list-experimental',
|
|
1056
|
+
template: '<ng-content></ng-content>',
|
|
1057
|
+
providers: [
|
|
1058
|
+
{
|
|
1059
|
+
provide: designsystem.ListExperimentalComponent,
|
|
1060
|
+
useExisting: i0.forwardRef((function () { return MockListExperimentalComponent; })),
|
|
1061
|
+
},
|
|
1062
|
+
],
|
|
1063
|
+
}]
|
|
1064
|
+
}] });
|
|
769
1065
|
|
|
770
1066
|
// #region AUTO-GENERATED - PLEASE DON'T EDIT CONTENT WITHIN!
|
|
771
1067
|
var MockListHeaderComponent = /** @class */ (function () {
|
|
@@ -773,52 +1069,73 @@
|
|
|
773
1069
|
}
|
|
774
1070
|
return MockListHeaderComponent;
|
|
775
1071
|
}());
|
|
776
|
-
MockListHeaderComponent
|
|
777
|
-
|
|
778
|
-
|
|
779
|
-
|
|
780
|
-
|
|
781
|
-
|
|
782
|
-
|
|
783
|
-
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
|
|
787
|
-
|
|
788
|
-
|
|
1072
|
+
/** @nocollapse */ MockListHeaderComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: MockListHeaderComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
|
|
1073
|
+
/** @nocollapse */ MockListHeaderComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: MockListHeaderComponent, selector: "kirby-list-header", providers: [
|
|
1074
|
+
{
|
|
1075
|
+
provide: designsystem.ListHeaderComponent,
|
|
1076
|
+
useExisting: i0.forwardRef((function () { return MockListHeaderComponent; })),
|
|
1077
|
+
},
|
|
1078
|
+
], ngImport: i0__namespace, template: '<ng-content></ng-content>', isInline: true });
|
|
1079
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: MockListHeaderComponent, decorators: [{
|
|
1080
|
+
type: i0.Component,
|
|
1081
|
+
args: [{
|
|
1082
|
+
selector: 'kirby-list-header',
|
|
1083
|
+
template: '<ng-content></ng-content>',
|
|
1084
|
+
providers: [
|
|
1085
|
+
{
|
|
1086
|
+
provide: designsystem.ListHeaderComponent,
|
|
1087
|
+
useExisting: i0.forwardRef((function () { return MockListHeaderComponent; })),
|
|
1088
|
+
},
|
|
1089
|
+
],
|
|
1090
|
+
}]
|
|
1091
|
+
}] });
|
|
789
1092
|
|
|
790
1093
|
// #region AUTO-GENERATED - PLEASE DON'T EDIT CONTENT WITHIN!
|
|
791
1094
|
var MockListItemComponent = /** @class */ (function () {
|
|
792
1095
|
function MockListItemComponent() {
|
|
793
|
-
this.itemSelect = new
|
|
794
|
-
this.swipeActionSelect = new
|
|
1096
|
+
this.itemSelect = new i0.EventEmitter();
|
|
1097
|
+
this.swipeActionSelect = new i0.EventEmitter();
|
|
795
1098
|
}
|
|
796
1099
|
return MockListItemComponent;
|
|
797
1100
|
}());
|
|
798
|
-
MockListItemComponent
|
|
799
|
-
|
|
800
|
-
|
|
801
|
-
|
|
802
|
-
|
|
803
|
-
|
|
804
|
-
|
|
805
|
-
|
|
806
|
-
|
|
807
|
-
|
|
808
|
-
|
|
809
|
-
|
|
810
|
-
|
|
811
|
-
|
|
812
|
-
|
|
813
|
-
|
|
814
|
-
|
|
815
|
-
|
|
816
|
-
|
|
817
|
-
|
|
818
|
-
|
|
819
|
-
|
|
820
|
-
|
|
821
|
-
|
|
1101
|
+
/** @nocollapse */ MockListItemComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: MockListItemComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
|
|
1102
|
+
/** @nocollapse */ MockListItemComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: MockListItemComponent, selector: "kirby-list-item", inputs: { item: "item", boundaryClass: "boundaryClass", swipeActions: "swipeActions", itemTemplate: "itemTemplate", isSelected: "isSelected", isSelectable: "isSelectable", getItemColor: "getItemColor" }, outputs: { itemSelect: "itemSelect", swipeActionSelect: "swipeActionSelect" }, providers: [
|
|
1103
|
+
{
|
|
1104
|
+
provide: designsystem.ListItemComponent,
|
|
1105
|
+
useExisting: i0.forwardRef((function () { return MockListItemComponent; })),
|
|
1106
|
+
},
|
|
1107
|
+
], ngImport: i0__namespace, template: '<ng-content></ng-content>', isInline: true });
|
|
1108
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: MockListItemComponent, decorators: [{
|
|
1109
|
+
type: i0.Component,
|
|
1110
|
+
args: [{
|
|
1111
|
+
selector: 'kirby-list-item',
|
|
1112
|
+
template: '<ng-content></ng-content>',
|
|
1113
|
+
providers: [
|
|
1114
|
+
{
|
|
1115
|
+
provide: designsystem.ListItemComponent,
|
|
1116
|
+
useExisting: i0.forwardRef((function () { return MockListItemComponent; })),
|
|
1117
|
+
},
|
|
1118
|
+
],
|
|
1119
|
+
}]
|
|
1120
|
+
}], propDecorators: { item: [{
|
|
1121
|
+
type: i0.Input
|
|
1122
|
+
}], boundaryClass: [{
|
|
1123
|
+
type: i0.Input
|
|
1124
|
+
}], swipeActions: [{
|
|
1125
|
+
type: i0.Input
|
|
1126
|
+
}], itemTemplate: [{
|
|
1127
|
+
type: i0.Input
|
|
1128
|
+
}], isSelected: [{
|
|
1129
|
+
type: i0.Input
|
|
1130
|
+
}], isSelectable: [{
|
|
1131
|
+
type: i0.Input
|
|
1132
|
+
}], getItemColor: [{
|
|
1133
|
+
type: i0.Input
|
|
1134
|
+
}], itemSelect: [{
|
|
1135
|
+
type: i0.Output
|
|
1136
|
+
}], swipeActionSelect: [{
|
|
1137
|
+
type: i0.Output
|
|
1138
|
+
}] } });
|
|
822
1139
|
|
|
823
1140
|
// #region AUTO-GENERATED - PLEASE DON'T EDIT CONTENT WITHIN!
|
|
824
1141
|
var MockListSectionHeaderComponent = /** @class */ (function () {
|
|
@@ -826,60 +1143,85 @@
|
|
|
826
1143
|
}
|
|
827
1144
|
return MockListSectionHeaderComponent;
|
|
828
1145
|
}());
|
|
829
|
-
MockListSectionHeaderComponent
|
|
830
|
-
|
|
831
|
-
|
|
832
|
-
|
|
833
|
-
|
|
834
|
-
|
|
835
|
-
|
|
836
|
-
|
|
837
|
-
|
|
838
|
-
|
|
839
|
-
|
|
840
|
-
|
|
841
|
-
|
|
842
|
-
|
|
843
|
-
|
|
844
|
-
|
|
1146
|
+
/** @nocollapse */ MockListSectionHeaderComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: MockListSectionHeaderComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
|
|
1147
|
+
/** @nocollapse */ MockListSectionHeaderComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: MockListSectionHeaderComponent, selector: "kirby-list-section-header", inputs: { title: "title" }, providers: [
|
|
1148
|
+
{
|
|
1149
|
+
provide: designsystem.ListSectionHeaderComponent,
|
|
1150
|
+
useExisting: i0.forwardRef((function () { return MockListSectionHeaderComponent; })),
|
|
1151
|
+
},
|
|
1152
|
+
], ngImport: i0__namespace, template: '<ng-content></ng-content>', isInline: true });
|
|
1153
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: MockListSectionHeaderComponent, decorators: [{
|
|
1154
|
+
type: i0.Component,
|
|
1155
|
+
args: [{
|
|
1156
|
+
selector: 'kirby-list-section-header',
|
|
1157
|
+
template: '<ng-content></ng-content>',
|
|
1158
|
+
providers: [
|
|
1159
|
+
{
|
|
1160
|
+
provide: designsystem.ListSectionHeaderComponent,
|
|
1161
|
+
useExisting: i0.forwardRef((function () { return MockListSectionHeaderComponent; })),
|
|
1162
|
+
},
|
|
1163
|
+
],
|
|
1164
|
+
}]
|
|
1165
|
+
}], propDecorators: { title: [{
|
|
1166
|
+
type: i0.Input
|
|
1167
|
+
}] } });
|
|
845
1168
|
|
|
846
1169
|
// #region AUTO-GENERATED - PLEASE DON'T EDIT CONTENT WITHIN!
|
|
847
1170
|
var MockListComponent = /** @class */ (function () {
|
|
848
1171
|
function MockListComponent() {
|
|
849
|
-
this.loadOnDemand = new
|
|
850
|
-
this.itemSelect = new
|
|
1172
|
+
this.loadOnDemand = new i0.EventEmitter();
|
|
1173
|
+
this.itemSelect = new i0.EventEmitter();
|
|
851
1174
|
}
|
|
852
1175
|
return MockListComponent;
|
|
853
1176
|
}());
|
|
854
|
-
MockListComponent
|
|
855
|
-
|
|
856
|
-
|
|
857
|
-
|
|
858
|
-
|
|
859
|
-
|
|
860
|
-
|
|
861
|
-
|
|
862
|
-
|
|
863
|
-
|
|
864
|
-
|
|
865
|
-
|
|
866
|
-
|
|
867
|
-
|
|
868
|
-
|
|
869
|
-
|
|
870
|
-
|
|
871
|
-
|
|
872
|
-
|
|
873
|
-
|
|
874
|
-
|
|
875
|
-
|
|
876
|
-
|
|
877
|
-
|
|
878
|
-
|
|
879
|
-
|
|
880
|
-
|
|
881
|
-
|
|
882
|
-
|
|
1177
|
+
/** @nocollapse */ MockListComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: MockListComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
|
|
1178
|
+
/** @nocollapse */ MockListComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: MockListComponent, selector: "kirby-list", inputs: { items: "items", getItemColor: "getItemColor", getSectionName: "getSectionName", trackBy: "trackBy", noMoreItemsText: "noMoreItemsText", showDivider: "showDivider", markSelectedRow: "markSelectedRow", shape: "shape", hasItemSpacing: "hasItemSpacing", isLoadOnDemandEnabled: "isLoadOnDemandEnabled", swipeActions: "swipeActions", disableSelectionHighlight: "disableSelectionHighlight" }, outputs: { loadOnDemand: "loadOnDemand", itemSelect: "itemSelect" }, providers: [
|
|
1179
|
+
{
|
|
1180
|
+
provide: designsystem.ListComponent,
|
|
1181
|
+
useExisting: i0.forwardRef((function () { return MockListComponent; })),
|
|
1182
|
+
},
|
|
1183
|
+
], ngImport: i0__namespace, template: '<ng-content></ng-content>', isInline: true });
|
|
1184
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: MockListComponent, decorators: [{
|
|
1185
|
+
type: i0.Component,
|
|
1186
|
+
args: [{
|
|
1187
|
+
selector: 'kirby-list',
|
|
1188
|
+
template: '<ng-content></ng-content>',
|
|
1189
|
+
providers: [
|
|
1190
|
+
{
|
|
1191
|
+
provide: designsystem.ListComponent,
|
|
1192
|
+
useExisting: i0.forwardRef((function () { return MockListComponent; })),
|
|
1193
|
+
},
|
|
1194
|
+
],
|
|
1195
|
+
}]
|
|
1196
|
+
}], propDecorators: { items: [{
|
|
1197
|
+
type: i0.Input
|
|
1198
|
+
}], getItemColor: [{
|
|
1199
|
+
type: i0.Input
|
|
1200
|
+
}], getSectionName: [{
|
|
1201
|
+
type: i0.Input
|
|
1202
|
+
}], trackBy: [{
|
|
1203
|
+
type: i0.Input
|
|
1204
|
+
}], noMoreItemsText: [{
|
|
1205
|
+
type: i0.Input
|
|
1206
|
+
}], showDivider: [{
|
|
1207
|
+
type: i0.Input
|
|
1208
|
+
}], markSelectedRow: [{
|
|
1209
|
+
type: i0.Input
|
|
1210
|
+
}], shape: [{
|
|
1211
|
+
type: i0.Input
|
|
1212
|
+
}], hasItemSpacing: [{
|
|
1213
|
+
type: i0.Input
|
|
1214
|
+
}], isLoadOnDemandEnabled: [{
|
|
1215
|
+
type: i0.Input
|
|
1216
|
+
}], loadOnDemand: [{
|
|
1217
|
+
type: i0.Output
|
|
1218
|
+
}], swipeActions: [{
|
|
1219
|
+
type: i0.Input
|
|
1220
|
+
}], itemSelect: [{
|
|
1221
|
+
type: i0.Output
|
|
1222
|
+
}], disableSelectionHighlight: [{
|
|
1223
|
+
type: i0.Input
|
|
1224
|
+
}] } });
|
|
883
1225
|
|
|
884
1226
|
// #region AUTO-GENERATED - PLEASE DON'T EDIT CONTENT WITHIN!
|
|
885
1227
|
var MockLoadingOverlayComponent = /** @class */ (function () {
|
|
@@ -887,23 +1229,30 @@
|
|
|
887
1229
|
}
|
|
888
1230
|
return MockLoadingOverlayComponent;
|
|
889
1231
|
}());
|
|
890
|
-
MockLoadingOverlayComponent
|
|
891
|
-
|
|
892
|
-
|
|
893
|
-
|
|
894
|
-
|
|
895
|
-
|
|
896
|
-
|
|
897
|
-
|
|
898
|
-
|
|
899
|
-
|
|
900
|
-
|
|
901
|
-
|
|
902
|
-
|
|
903
|
-
|
|
904
|
-
|
|
905
|
-
|
|
906
|
-
|
|
1232
|
+
/** @nocollapse */ MockLoadingOverlayComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: MockLoadingOverlayComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
|
|
1233
|
+
/** @nocollapse */ MockLoadingOverlayComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: MockLoadingOverlayComponent, selector: "kirby-loading-overlay", inputs: { isLoading: "isLoading", showBackdrop: "showBackdrop" }, providers: [
|
|
1234
|
+
{
|
|
1235
|
+
provide: designsystem.LoadingOverlayComponent,
|
|
1236
|
+
useExisting: i0.forwardRef((function () { return MockLoadingOverlayComponent; })),
|
|
1237
|
+
},
|
|
1238
|
+
], ngImport: i0__namespace, template: '<ng-content></ng-content>', isInline: true });
|
|
1239
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: MockLoadingOverlayComponent, decorators: [{
|
|
1240
|
+
type: i0.Component,
|
|
1241
|
+
args: [{
|
|
1242
|
+
selector: 'kirby-loading-overlay',
|
|
1243
|
+
template: '<ng-content></ng-content>',
|
|
1244
|
+
providers: [
|
|
1245
|
+
{
|
|
1246
|
+
provide: designsystem.LoadingOverlayComponent,
|
|
1247
|
+
useExisting: i0.forwardRef((function () { return MockLoadingOverlayComponent; })),
|
|
1248
|
+
},
|
|
1249
|
+
],
|
|
1250
|
+
}]
|
|
1251
|
+
}], propDecorators: { isLoading: [{
|
|
1252
|
+
type: i0.Input
|
|
1253
|
+
}], showBackdrop: [{
|
|
1254
|
+
type: i0.Input
|
|
1255
|
+
}] } });
|
|
907
1256
|
|
|
908
1257
|
// #region AUTO-GENERATED - PLEASE DON'T EDIT CONTENT WITHIN!
|
|
909
1258
|
var MockModalFooterComponent = /** @class */ (function () {
|
|
@@ -911,23 +1260,30 @@
|
|
|
911
1260
|
}
|
|
912
1261
|
return MockModalFooterComponent;
|
|
913
1262
|
}());
|
|
914
|
-
MockModalFooterComponent
|
|
915
|
-
|
|
916
|
-
|
|
917
|
-
|
|
918
|
-
|
|
919
|
-
|
|
920
|
-
|
|
921
|
-
|
|
922
|
-
|
|
923
|
-
|
|
924
|
-
|
|
925
|
-
|
|
926
|
-
|
|
927
|
-
|
|
928
|
-
|
|
929
|
-
|
|
930
|
-
|
|
1263
|
+
/** @nocollapse */ MockModalFooterComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: MockModalFooterComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
|
|
1264
|
+
/** @nocollapse */ MockModalFooterComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: MockModalFooterComponent, selector: "kirby-modal-footer", inputs: { snapToKeyboard: "snapToKeyboard", type: "type" }, providers: [
|
|
1265
|
+
{
|
|
1266
|
+
provide: designsystem.ModalFooterComponent,
|
|
1267
|
+
useExisting: i0.forwardRef((function () { return MockModalFooterComponent; })),
|
|
1268
|
+
},
|
|
1269
|
+
], ngImport: i0__namespace, template: '<ng-content></ng-content>', isInline: true });
|
|
1270
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: MockModalFooterComponent, decorators: [{
|
|
1271
|
+
type: i0.Component,
|
|
1272
|
+
args: [{
|
|
1273
|
+
selector: 'kirby-modal-footer',
|
|
1274
|
+
template: '<ng-content></ng-content>',
|
|
1275
|
+
providers: [
|
|
1276
|
+
{
|
|
1277
|
+
provide: designsystem.ModalFooterComponent,
|
|
1278
|
+
useExisting: i0.forwardRef((function () { return MockModalFooterComponent; })),
|
|
1279
|
+
},
|
|
1280
|
+
],
|
|
1281
|
+
}]
|
|
1282
|
+
}], propDecorators: { snapToKeyboard: [{
|
|
1283
|
+
type: i0.Input
|
|
1284
|
+
}], type: [{
|
|
1285
|
+
type: i0.Input
|
|
1286
|
+
}] } });
|
|
931
1287
|
|
|
932
1288
|
// #region AUTO-GENERATED - PLEASE DON'T EDIT CONTENT WITHIN!
|
|
933
1289
|
var MockPageFooterComponent = /** @class */ (function () {
|
|
@@ -935,22 +1291,28 @@
|
|
|
935
1291
|
}
|
|
936
1292
|
return MockPageFooterComponent;
|
|
937
1293
|
}());
|
|
938
|
-
MockPageFooterComponent
|
|
939
|
-
|
|
940
|
-
|
|
941
|
-
|
|
942
|
-
|
|
943
|
-
|
|
944
|
-
|
|
945
|
-
|
|
946
|
-
|
|
947
|
-
|
|
948
|
-
|
|
949
|
-
|
|
950
|
-
|
|
951
|
-
|
|
952
|
-
|
|
953
|
-
|
|
1294
|
+
/** @nocollapse */ MockPageFooterComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: MockPageFooterComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
|
|
1295
|
+
/** @nocollapse */ MockPageFooterComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: MockPageFooterComponent, selector: "kirby-page-footer", inputs: { hasPadding: "hasPadding" }, providers: [
|
|
1296
|
+
{
|
|
1297
|
+
provide: designsystem.PageFooterComponent,
|
|
1298
|
+
useExisting: i0.forwardRef((function () { return MockPageFooterComponent; })),
|
|
1299
|
+
},
|
|
1300
|
+
], ngImport: i0__namespace, template: '<ng-content></ng-content>', isInline: true });
|
|
1301
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: MockPageFooterComponent, decorators: [{
|
|
1302
|
+
type: i0.Component,
|
|
1303
|
+
args: [{
|
|
1304
|
+
selector: 'kirby-page-footer',
|
|
1305
|
+
template: '<ng-content></ng-content>',
|
|
1306
|
+
providers: [
|
|
1307
|
+
{
|
|
1308
|
+
provide: designsystem.PageFooterComponent,
|
|
1309
|
+
useExisting: i0.forwardRef((function () { return MockPageFooterComponent; })),
|
|
1310
|
+
},
|
|
1311
|
+
],
|
|
1312
|
+
}]
|
|
1313
|
+
}], propDecorators: { hasPadding: [{
|
|
1314
|
+
type: i0.Input
|
|
1315
|
+
}] } });
|
|
954
1316
|
|
|
955
1317
|
// #region AUTO-GENERATED - PLEASE DON'T EDIT CONTENT WITHIN!
|
|
956
1318
|
var MockPageTitleDirective = /** @class */ (function () {
|
|
@@ -958,198 +1320,311 @@
|
|
|
958
1320
|
}
|
|
959
1321
|
return MockPageTitleDirective;
|
|
960
1322
|
}());
|
|
961
|
-
MockPageTitleDirective
|
|
962
|
-
|
|
963
|
-
|
|
964
|
-
|
|
965
|
-
|
|
966
|
-
|
|
967
|
-
|
|
968
|
-
|
|
969
|
-
|
|
970
|
-
|
|
971
|
-
|
|
1323
|
+
/** @nocollapse */ MockPageTitleDirective.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: MockPageTitleDirective, deps: [], target: i0__namespace.ɵɵFactoryTarget.Directive });
|
|
1324
|
+
/** @nocollapse */ MockPageTitleDirective.ɵdir = i0__namespace.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "12.2.16", type: MockPageTitleDirective, selector: "[kirbyPageTitle]", providers: [
|
|
1325
|
+
{
|
|
1326
|
+
provide: designsystem.PageTitleDirective,
|
|
1327
|
+
useExisting: i0.forwardRef((function () { return MockPageTitleDirective; })),
|
|
1328
|
+
},
|
|
1329
|
+
], ngImport: i0__namespace });
|
|
1330
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: MockPageTitleDirective, decorators: [{
|
|
1331
|
+
type: i0.Directive,
|
|
1332
|
+
args: [{
|
|
1333
|
+
selector: '[kirbyPageTitle]',
|
|
1334
|
+
providers: [
|
|
1335
|
+
{
|
|
1336
|
+
provide: designsystem.PageTitleDirective,
|
|
1337
|
+
useExisting: i0.forwardRef((function () { return MockPageTitleDirective; })),
|
|
1338
|
+
},
|
|
1339
|
+
],
|
|
1340
|
+
}]
|
|
1341
|
+
}] });
|
|
1342
|
+
var MockPageSubtitleDirective = /** @class */ (function () {
|
|
1343
|
+
function MockPageSubtitleDirective() {
|
|
1344
|
+
}
|
|
1345
|
+
return MockPageSubtitleDirective;
|
|
1346
|
+
}());
|
|
1347
|
+
/** @nocollapse */ MockPageSubtitleDirective.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: MockPageSubtitleDirective, deps: [], target: i0__namespace.ɵɵFactoryTarget.Directive });
|
|
1348
|
+
/** @nocollapse */ MockPageSubtitleDirective.ɵdir = i0__namespace.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "12.2.16", type: MockPageSubtitleDirective, selector: "[kirbyPageSubtitle]", providers: [
|
|
1349
|
+
{
|
|
1350
|
+
provide: designsystem.PageSubtitleDirective,
|
|
1351
|
+
useExisting: i0.forwardRef((function () { return MockPageSubtitleDirective; })),
|
|
1352
|
+
},
|
|
1353
|
+
], ngImport: i0__namespace });
|
|
1354
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: MockPageSubtitleDirective, decorators: [{
|
|
1355
|
+
type: i0.Directive,
|
|
1356
|
+
args: [{
|
|
1357
|
+
selector: '[kirbyPageSubtitle]',
|
|
1358
|
+
providers: [
|
|
1359
|
+
{
|
|
1360
|
+
provide: designsystem.PageSubtitleDirective,
|
|
1361
|
+
useExisting: i0.forwardRef((function () { return MockPageSubtitleDirective; })),
|
|
1362
|
+
},
|
|
1363
|
+
],
|
|
1364
|
+
}]
|
|
1365
|
+
}] });
|
|
972
1366
|
var MockPageToolbarTitleDirective = /** @class */ (function () {
|
|
973
1367
|
function MockPageToolbarTitleDirective() {
|
|
974
1368
|
}
|
|
975
1369
|
return MockPageToolbarTitleDirective;
|
|
976
1370
|
}());
|
|
977
|
-
MockPageToolbarTitleDirective
|
|
978
|
-
|
|
979
|
-
|
|
980
|
-
|
|
981
|
-
|
|
982
|
-
|
|
983
|
-
|
|
984
|
-
|
|
985
|
-
|
|
986
|
-
|
|
987
|
-
|
|
1371
|
+
/** @nocollapse */ MockPageToolbarTitleDirective.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: MockPageToolbarTitleDirective, deps: [], target: i0__namespace.ɵɵFactoryTarget.Directive });
|
|
1372
|
+
/** @nocollapse */ MockPageToolbarTitleDirective.ɵdir = i0__namespace.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "12.2.16", type: MockPageToolbarTitleDirective, selector: "[kirbyPageToolbarTitle]", providers: [
|
|
1373
|
+
{
|
|
1374
|
+
provide: designsystem.PageToolbarTitleDirective,
|
|
1375
|
+
useExisting: i0.forwardRef((function () { return MockPageToolbarTitleDirective; })),
|
|
1376
|
+
},
|
|
1377
|
+
], ngImport: i0__namespace });
|
|
1378
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: MockPageToolbarTitleDirective, decorators: [{
|
|
1379
|
+
type: i0.Directive,
|
|
1380
|
+
args: [{
|
|
1381
|
+
selector: '[kirbyPageToolbarTitle]',
|
|
1382
|
+
providers: [
|
|
1383
|
+
{
|
|
1384
|
+
provide: designsystem.PageToolbarTitleDirective,
|
|
1385
|
+
useExisting: i0.forwardRef((function () { return MockPageToolbarTitleDirective; })),
|
|
1386
|
+
},
|
|
1387
|
+
],
|
|
1388
|
+
}]
|
|
1389
|
+
}] });
|
|
988
1390
|
var MockPageActionsDirective = /** @class */ (function () {
|
|
989
1391
|
function MockPageActionsDirective() {
|
|
990
1392
|
}
|
|
991
1393
|
return MockPageActionsDirective;
|
|
992
1394
|
}());
|
|
993
|
-
MockPageActionsDirective
|
|
994
|
-
|
|
995
|
-
|
|
996
|
-
|
|
997
|
-
|
|
998
|
-
|
|
999
|
-
|
|
1000
|
-
|
|
1001
|
-
|
|
1002
|
-
|
|
1003
|
-
|
|
1004
|
-
|
|
1005
|
-
|
|
1006
|
-
|
|
1395
|
+
/** @nocollapse */ MockPageActionsDirective.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: MockPageActionsDirective, deps: [], target: i0__namespace.ɵɵFactoryTarget.Directive });
|
|
1396
|
+
/** @nocollapse */ MockPageActionsDirective.ɵdir = i0__namespace.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "12.2.16", type: MockPageActionsDirective, selector: "[kirbyPageActions]", inputs: { config: ["kirbyPageActions", "config"] }, providers: [
|
|
1397
|
+
{
|
|
1398
|
+
provide: designsystem.PageActionsDirective,
|
|
1399
|
+
useExisting: i0.forwardRef((function () { return MockPageActionsDirective; })),
|
|
1400
|
+
},
|
|
1401
|
+
], ngImport: i0__namespace });
|
|
1402
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: MockPageActionsDirective, decorators: [{
|
|
1403
|
+
type: i0.Directive,
|
|
1404
|
+
args: [{
|
|
1405
|
+
selector: '[kirbyPageActions]',
|
|
1406
|
+
providers: [
|
|
1407
|
+
{
|
|
1408
|
+
provide: designsystem.PageActionsDirective,
|
|
1409
|
+
useExisting: i0.forwardRef((function () { return MockPageActionsDirective; })),
|
|
1410
|
+
},
|
|
1411
|
+
],
|
|
1412
|
+
}]
|
|
1413
|
+
}], propDecorators: { config: [{
|
|
1414
|
+
type: i0.Input,
|
|
1415
|
+
args: ['kirbyPageActions']
|
|
1416
|
+
}] } });
|
|
1007
1417
|
var MockPageContentDirective = /** @class */ (function () {
|
|
1008
1418
|
function MockPageContentDirective() {
|
|
1009
1419
|
}
|
|
1010
1420
|
return MockPageContentDirective;
|
|
1011
1421
|
}());
|
|
1012
|
-
MockPageContentDirective
|
|
1013
|
-
|
|
1014
|
-
|
|
1015
|
-
|
|
1016
|
-
|
|
1017
|
-
|
|
1018
|
-
|
|
1019
|
-
|
|
1020
|
-
|
|
1021
|
-
|
|
1022
|
-
|
|
1023
|
-
|
|
1024
|
-
|
|
1025
|
-
|
|
1422
|
+
/** @nocollapse */ MockPageContentDirective.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: MockPageContentDirective, deps: [], target: i0__namespace.ɵɵFactoryTarget.Directive });
|
|
1423
|
+
/** @nocollapse */ MockPageContentDirective.ɵdir = i0__namespace.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "12.2.16", type: MockPageContentDirective, selector: "[kirbyPageContent]", inputs: { config: ["kirbyPageContent", "config"] }, providers: [
|
|
1424
|
+
{
|
|
1425
|
+
provide: designsystem.PageContentDirective,
|
|
1426
|
+
useExisting: i0.forwardRef((function () { return MockPageContentDirective; })),
|
|
1427
|
+
},
|
|
1428
|
+
], ngImport: i0__namespace });
|
|
1429
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: MockPageContentDirective, decorators: [{
|
|
1430
|
+
type: i0.Directive,
|
|
1431
|
+
args: [{
|
|
1432
|
+
selector: '[kirbyPageContent]',
|
|
1433
|
+
providers: [
|
|
1434
|
+
{
|
|
1435
|
+
provide: designsystem.PageContentDirective,
|
|
1436
|
+
useExisting: i0.forwardRef((function () { return MockPageContentDirective; })),
|
|
1437
|
+
},
|
|
1438
|
+
],
|
|
1439
|
+
}]
|
|
1440
|
+
}], propDecorators: { config: [{
|
|
1441
|
+
type: i0.Input,
|
|
1442
|
+
args: ['kirbyPageContent']
|
|
1443
|
+
}] } });
|
|
1026
1444
|
var MockPageProgressComponent = /** @class */ (function () {
|
|
1027
1445
|
function MockPageProgressComponent() {
|
|
1028
1446
|
}
|
|
1029
1447
|
return MockPageProgressComponent;
|
|
1030
1448
|
}());
|
|
1031
|
-
MockPageProgressComponent
|
|
1032
|
-
|
|
1033
|
-
|
|
1034
|
-
|
|
1035
|
-
|
|
1036
|
-
|
|
1037
|
-
|
|
1038
|
-
|
|
1039
|
-
|
|
1040
|
-
|
|
1041
|
-
|
|
1042
|
-
|
|
1449
|
+
/** @nocollapse */ MockPageProgressComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: MockPageProgressComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
|
|
1450
|
+
/** @nocollapse */ MockPageProgressComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: MockPageProgressComponent, selector: "kirby-page-progress", providers: [
|
|
1451
|
+
{
|
|
1452
|
+
provide: designsystem.PageProgressComponent,
|
|
1453
|
+
useExisting: i0.forwardRef((function () { return MockPageProgressComponent; })),
|
|
1454
|
+
},
|
|
1455
|
+
], ngImport: i0__namespace, template: '<ng-content></ng-content>', isInline: true });
|
|
1456
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: MockPageProgressComponent, decorators: [{
|
|
1457
|
+
type: i0.Component,
|
|
1458
|
+
args: [{
|
|
1459
|
+
selector: 'kirby-page-progress',
|
|
1460
|
+
template: '<ng-content></ng-content>',
|
|
1461
|
+
providers: [
|
|
1462
|
+
{
|
|
1463
|
+
provide: designsystem.PageProgressComponent,
|
|
1464
|
+
useExisting: i0.forwardRef((function () { return MockPageProgressComponent; })),
|
|
1465
|
+
},
|
|
1466
|
+
],
|
|
1467
|
+
}]
|
|
1468
|
+
}] });
|
|
1043
1469
|
var MockPageTitleComponent = /** @class */ (function () {
|
|
1044
1470
|
function MockPageTitleComponent() {
|
|
1045
1471
|
}
|
|
1046
1472
|
return MockPageTitleComponent;
|
|
1047
1473
|
}());
|
|
1048
|
-
MockPageTitleComponent
|
|
1049
|
-
|
|
1050
|
-
|
|
1051
|
-
|
|
1052
|
-
|
|
1053
|
-
|
|
1054
|
-
|
|
1055
|
-
|
|
1056
|
-
|
|
1057
|
-
|
|
1058
|
-
|
|
1059
|
-
|
|
1474
|
+
/** @nocollapse */ MockPageTitleComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: MockPageTitleComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
|
|
1475
|
+
/** @nocollapse */ MockPageTitleComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: MockPageTitleComponent, selector: "kirby-page-title", providers: [
|
|
1476
|
+
{
|
|
1477
|
+
provide: designsystem.PageTitleComponent,
|
|
1478
|
+
useExisting: i0.forwardRef((function () { return MockPageTitleComponent; })),
|
|
1479
|
+
},
|
|
1480
|
+
], ngImport: i0__namespace, template: '<ng-content></ng-content>', isInline: true });
|
|
1481
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: MockPageTitleComponent, decorators: [{
|
|
1482
|
+
type: i0.Component,
|
|
1483
|
+
args: [{
|
|
1484
|
+
selector: 'kirby-page-title',
|
|
1485
|
+
template: '<ng-content></ng-content>',
|
|
1486
|
+
providers: [
|
|
1487
|
+
{
|
|
1488
|
+
provide: designsystem.PageTitleComponent,
|
|
1489
|
+
useExisting: i0.forwardRef((function () { return MockPageTitleComponent; })),
|
|
1490
|
+
},
|
|
1491
|
+
],
|
|
1492
|
+
}]
|
|
1493
|
+
}] });
|
|
1060
1494
|
var MockPageContentComponent = /** @class */ (function () {
|
|
1061
1495
|
function MockPageContentComponent() {
|
|
1062
1496
|
}
|
|
1063
1497
|
return MockPageContentComponent;
|
|
1064
1498
|
}());
|
|
1065
|
-
MockPageContentComponent
|
|
1066
|
-
|
|
1067
|
-
|
|
1068
|
-
|
|
1069
|
-
|
|
1070
|
-
|
|
1071
|
-
|
|
1072
|
-
|
|
1073
|
-
|
|
1074
|
-
|
|
1075
|
-
|
|
1076
|
-
|
|
1499
|
+
/** @nocollapse */ MockPageContentComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: MockPageContentComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
|
|
1500
|
+
/** @nocollapse */ MockPageContentComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: MockPageContentComponent, selector: "kirby-page-content", providers: [
|
|
1501
|
+
{
|
|
1502
|
+
provide: designsystem.PageContentComponent,
|
|
1503
|
+
useExisting: i0.forwardRef((function () { return MockPageContentComponent; })),
|
|
1504
|
+
},
|
|
1505
|
+
], ngImport: i0__namespace, template: '<ng-content></ng-content>', isInline: true });
|
|
1506
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: MockPageContentComponent, decorators: [{
|
|
1507
|
+
type: i0.Component,
|
|
1508
|
+
args: [{
|
|
1509
|
+
selector: 'kirby-page-content',
|
|
1510
|
+
template: '<ng-content></ng-content>',
|
|
1511
|
+
providers: [
|
|
1512
|
+
{
|
|
1513
|
+
provide: designsystem.PageContentComponent,
|
|
1514
|
+
useExisting: i0.forwardRef((function () { return MockPageContentComponent; })),
|
|
1515
|
+
},
|
|
1516
|
+
],
|
|
1517
|
+
}]
|
|
1518
|
+
}] });
|
|
1077
1519
|
var MockPageActionsComponent = /** @class */ (function () {
|
|
1078
1520
|
function MockPageActionsComponent() {
|
|
1079
1521
|
}
|
|
1080
1522
|
return MockPageActionsComponent;
|
|
1081
1523
|
}());
|
|
1082
|
-
MockPageActionsComponent
|
|
1083
|
-
|
|
1084
|
-
|
|
1085
|
-
|
|
1086
|
-
|
|
1087
|
-
|
|
1088
|
-
|
|
1089
|
-
|
|
1090
|
-
|
|
1091
|
-
|
|
1092
|
-
|
|
1093
|
-
|
|
1524
|
+
/** @nocollapse */ MockPageActionsComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: MockPageActionsComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
|
|
1525
|
+
/** @nocollapse */ MockPageActionsComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: MockPageActionsComponent, selector: "kirby-page-actions", providers: [
|
|
1526
|
+
{
|
|
1527
|
+
provide: designsystem.PageActionsComponent,
|
|
1528
|
+
useExisting: i0.forwardRef((function () { return MockPageActionsComponent; })),
|
|
1529
|
+
},
|
|
1530
|
+
], ngImport: i0__namespace, template: '<ng-content></ng-content>', isInline: true });
|
|
1531
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: MockPageActionsComponent, decorators: [{
|
|
1532
|
+
type: i0.Component,
|
|
1533
|
+
args: [{
|
|
1534
|
+
selector: 'kirby-page-actions',
|
|
1535
|
+
template: '<ng-content></ng-content>',
|
|
1536
|
+
providers: [
|
|
1537
|
+
{
|
|
1538
|
+
provide: designsystem.PageActionsComponent,
|
|
1539
|
+
useExisting: i0.forwardRef((function () { return MockPageActionsComponent; })),
|
|
1540
|
+
},
|
|
1541
|
+
],
|
|
1542
|
+
}]
|
|
1543
|
+
}] });
|
|
1094
1544
|
var MockPageComponent = /** @class */ (function () {
|
|
1095
1545
|
function MockPageComponent() {
|
|
1096
|
-
this.enter = new
|
|
1097
|
-
this.leave = new
|
|
1098
|
-
this.refresh = new
|
|
1546
|
+
this.enter = new i0.EventEmitter();
|
|
1547
|
+
this.leave = new i0.EventEmitter();
|
|
1548
|
+
this.refresh = new i0.EventEmitter();
|
|
1099
1549
|
}
|
|
1100
1550
|
return MockPageComponent;
|
|
1101
1551
|
}());
|
|
1102
|
-
MockPageComponent
|
|
1103
|
-
|
|
1104
|
-
|
|
1105
|
-
|
|
1106
|
-
|
|
1107
|
-
|
|
1108
|
-
|
|
1109
|
-
|
|
1110
|
-
|
|
1111
|
-
|
|
1112
|
-
|
|
1113
|
-
|
|
1114
|
-
|
|
1115
|
-
|
|
1116
|
-
|
|
1117
|
-
|
|
1118
|
-
|
|
1119
|
-
|
|
1120
|
-
|
|
1121
|
-
|
|
1122
|
-
|
|
1123
|
-
|
|
1124
|
-
|
|
1125
|
-
|
|
1126
|
-
|
|
1552
|
+
/** @nocollapse */ MockPageComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: MockPageComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
|
|
1553
|
+
/** @nocollapse */ MockPageComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: MockPageComponent, selector: "kirby-page", inputs: { title: "title", subtitle: "subtitle", toolbarTitle: "toolbarTitle", titleAlignment: "titleAlignment", defaultBackHref: "defaultBackHref", hideBackButton: "hideBackButton", titleMaxLines: "titleMaxLines", tabBarBottomHidden: "tabBarBottomHidden" }, outputs: { enter: "enter", leave: "leave", refresh: "refresh" }, providers: [
|
|
1554
|
+
{
|
|
1555
|
+
provide: designsystem.PageComponent,
|
|
1556
|
+
useExisting: i0.forwardRef((function () { return MockPageComponent; })),
|
|
1557
|
+
},
|
|
1558
|
+
], ngImport: i0__namespace, template: '<ng-content></ng-content>', isInline: true });
|
|
1559
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: MockPageComponent, decorators: [{
|
|
1560
|
+
type: i0.Component,
|
|
1561
|
+
args: [{
|
|
1562
|
+
selector: 'kirby-page',
|
|
1563
|
+
template: '<ng-content></ng-content>',
|
|
1564
|
+
providers: [
|
|
1565
|
+
{
|
|
1566
|
+
provide: designsystem.PageComponent,
|
|
1567
|
+
useExisting: i0.forwardRef((function () { return MockPageComponent; })),
|
|
1568
|
+
},
|
|
1569
|
+
],
|
|
1570
|
+
}]
|
|
1571
|
+
}], propDecorators: { title: [{
|
|
1572
|
+
type: i0.Input
|
|
1573
|
+
}], subtitle: [{
|
|
1574
|
+
type: i0.Input
|
|
1575
|
+
}], toolbarTitle: [{
|
|
1576
|
+
type: i0.Input
|
|
1577
|
+
}], titleAlignment: [{
|
|
1578
|
+
type: i0.Input
|
|
1579
|
+
}], defaultBackHref: [{
|
|
1580
|
+
type: i0.Input
|
|
1581
|
+
}], hideBackButton: [{
|
|
1582
|
+
type: i0.Input
|
|
1583
|
+
}], titleMaxLines: [{
|
|
1584
|
+
type: i0.Input
|
|
1585
|
+
}], tabBarBottomHidden: [{
|
|
1586
|
+
type: i0.Input
|
|
1587
|
+
}], enter: [{
|
|
1588
|
+
type: i0.Output
|
|
1589
|
+
}], leave: [{
|
|
1590
|
+
type: i0.Output
|
|
1591
|
+
}], refresh: [{
|
|
1592
|
+
type: i0.Output
|
|
1593
|
+
}] } });
|
|
1127
1594
|
|
|
1128
1595
|
// #region AUTO-GENERATED - PLEASE DON'T EDIT CONTENT WITHIN!
|
|
1129
1596
|
var MockPopoverComponent = /** @class */ (function () {
|
|
1130
1597
|
function MockPopoverComponent() {
|
|
1131
|
-
this.willHide = new
|
|
1598
|
+
this.willHide = new i0.EventEmitter();
|
|
1132
1599
|
}
|
|
1133
1600
|
return MockPopoverComponent;
|
|
1134
1601
|
}());
|
|
1135
|
-
MockPopoverComponent
|
|
1136
|
-
|
|
1137
|
-
|
|
1138
|
-
|
|
1139
|
-
|
|
1140
|
-
|
|
1141
|
-
|
|
1142
|
-
|
|
1143
|
-
|
|
1144
|
-
|
|
1145
|
-
|
|
1146
|
-
|
|
1147
|
-
|
|
1148
|
-
|
|
1149
|
-
|
|
1150
|
-
|
|
1151
|
-
|
|
1152
|
-
|
|
1602
|
+
/** @nocollapse */ MockPopoverComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: MockPopoverComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
|
|
1603
|
+
/** @nocollapse */ MockPopoverComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: MockPopoverComponent, selector: "kirby-popover", inputs: { popout: "popout", target: "target" }, outputs: { willHide: "willHide" }, providers: [
|
|
1604
|
+
{
|
|
1605
|
+
provide: designsystem.PopoverComponent,
|
|
1606
|
+
useExisting: i0.forwardRef((function () { return MockPopoverComponent; })),
|
|
1607
|
+
},
|
|
1608
|
+
], ngImport: i0__namespace, template: '<ng-content></ng-content>', isInline: true });
|
|
1609
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: MockPopoverComponent, decorators: [{
|
|
1610
|
+
type: i0.Component,
|
|
1611
|
+
args: [{
|
|
1612
|
+
selector: 'kirby-popover',
|
|
1613
|
+
template: '<ng-content></ng-content>',
|
|
1614
|
+
providers: [
|
|
1615
|
+
{
|
|
1616
|
+
provide: designsystem.PopoverComponent,
|
|
1617
|
+
useExisting: i0.forwardRef((function () { return MockPopoverComponent; })),
|
|
1618
|
+
},
|
|
1619
|
+
],
|
|
1620
|
+
}]
|
|
1621
|
+
}], propDecorators: { popout: [{
|
|
1622
|
+
type: i0.Input
|
|
1623
|
+
}], target: [{
|
|
1624
|
+
type: i0.Input
|
|
1625
|
+
}], willHide: [{
|
|
1626
|
+
type: i0.Output
|
|
1627
|
+
}] } });
|
|
1153
1628
|
|
|
1154
1629
|
// #region AUTO-GENERATED - PLEASE DON'T EDIT CONTENT WITHIN!
|
|
1155
1630
|
var MockProgressCircleComponent = /** @class */ (function () {
|
|
@@ -1157,55 +1632,76 @@
|
|
|
1157
1632
|
}
|
|
1158
1633
|
return MockProgressCircleComponent;
|
|
1159
1634
|
}());
|
|
1160
|
-
MockProgressCircleComponent
|
|
1161
|
-
|
|
1162
|
-
|
|
1163
|
-
|
|
1164
|
-
|
|
1165
|
-
|
|
1166
|
-
|
|
1167
|
-
|
|
1168
|
-
|
|
1169
|
-
|
|
1170
|
-
|
|
1171
|
-
|
|
1172
|
-
|
|
1173
|
-
|
|
1174
|
-
|
|
1175
|
-
|
|
1176
|
-
|
|
1177
|
-
|
|
1635
|
+
/** @nocollapse */ MockProgressCircleComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: MockProgressCircleComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
|
|
1636
|
+
/** @nocollapse */ MockProgressCircleComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: MockProgressCircleComponent, selector: "kirby-progress-circle", inputs: { value: "value", size: "size", themeColor: "themeColor" }, providers: [
|
|
1637
|
+
{
|
|
1638
|
+
provide: designsystem.ProgressCircleComponent,
|
|
1639
|
+
useExisting: i0.forwardRef((function () { return MockProgressCircleComponent; })),
|
|
1640
|
+
},
|
|
1641
|
+
], ngImport: i0__namespace, template: '<ng-content></ng-content>', isInline: true });
|
|
1642
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: MockProgressCircleComponent, decorators: [{
|
|
1643
|
+
type: i0.Component,
|
|
1644
|
+
args: [{
|
|
1645
|
+
selector: 'kirby-progress-circle',
|
|
1646
|
+
template: '<ng-content></ng-content>',
|
|
1647
|
+
providers: [
|
|
1648
|
+
{
|
|
1649
|
+
provide: designsystem.ProgressCircleComponent,
|
|
1650
|
+
useExisting: i0.forwardRef((function () { return MockProgressCircleComponent; })),
|
|
1651
|
+
},
|
|
1652
|
+
],
|
|
1653
|
+
}]
|
|
1654
|
+
}], propDecorators: { value: [{
|
|
1655
|
+
type: i0.Input
|
|
1656
|
+
}], size: [{
|
|
1657
|
+
type: i0.Input
|
|
1658
|
+
}], themeColor: [{
|
|
1659
|
+
type: i0.Input
|
|
1660
|
+
}] } });
|
|
1178
1661
|
|
|
1179
1662
|
// #region AUTO-GENERATED - PLEASE DON'T EDIT CONTENT WITHIN!
|
|
1180
1663
|
var MockRadioGroupComponent = /** @class */ (function () {
|
|
1181
1664
|
function MockRadioGroupComponent() {
|
|
1182
|
-
this.valueChange = new
|
|
1665
|
+
this.valueChange = new i0.EventEmitter();
|
|
1183
1666
|
}
|
|
1184
1667
|
return MockRadioGroupComponent;
|
|
1185
1668
|
}());
|
|
1186
|
-
MockRadioGroupComponent
|
|
1187
|
-
|
|
1188
|
-
|
|
1189
|
-
|
|
1190
|
-
|
|
1191
|
-
|
|
1192
|
-
|
|
1193
|
-
|
|
1194
|
-
|
|
1195
|
-
|
|
1196
|
-
|
|
1197
|
-
|
|
1198
|
-
|
|
1199
|
-
|
|
1200
|
-
|
|
1201
|
-
|
|
1202
|
-
|
|
1203
|
-
|
|
1204
|
-
|
|
1205
|
-
|
|
1206
|
-
|
|
1207
|
-
|
|
1208
|
-
|
|
1669
|
+
/** @nocollapse */ MockRadioGroupComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: MockRadioGroupComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
|
|
1670
|
+
/** @nocollapse */ MockRadioGroupComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: MockRadioGroupComponent, selector: "kirby-radio-group", inputs: { disabled: "disabled", hasError: "hasError", items: "items", itemTextProperty: "itemTextProperty", itemDisabledProperty: "itemDisabledProperty", selectedIndex: "selectedIndex", value: "value" }, outputs: { valueChange: "valueChange" }, providers: [
|
|
1671
|
+
{
|
|
1672
|
+
provide: designsystem.RadioGroupComponent,
|
|
1673
|
+
useExisting: i0.forwardRef((function () { return MockRadioGroupComponent; })),
|
|
1674
|
+
},
|
|
1675
|
+
], ngImport: i0__namespace, template: '<ng-content></ng-content>', isInline: true });
|
|
1676
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: MockRadioGroupComponent, decorators: [{
|
|
1677
|
+
type: i0.Component,
|
|
1678
|
+
args: [{
|
|
1679
|
+
selector: 'kirby-radio-group',
|
|
1680
|
+
template: '<ng-content></ng-content>',
|
|
1681
|
+
providers: [
|
|
1682
|
+
{
|
|
1683
|
+
provide: designsystem.RadioGroupComponent,
|
|
1684
|
+
useExisting: i0.forwardRef((function () { return MockRadioGroupComponent; })),
|
|
1685
|
+
},
|
|
1686
|
+
],
|
|
1687
|
+
}]
|
|
1688
|
+
}], propDecorators: { disabled: [{
|
|
1689
|
+
type: i0.Input
|
|
1690
|
+
}], hasError: [{
|
|
1691
|
+
type: i0.Input
|
|
1692
|
+
}], items: [{
|
|
1693
|
+
type: i0.Input
|
|
1694
|
+
}], itemTextProperty: [{
|
|
1695
|
+
type: i0.Input
|
|
1696
|
+
}], itemDisabledProperty: [{
|
|
1697
|
+
type: i0.Input
|
|
1698
|
+
}], selectedIndex: [{
|
|
1699
|
+
type: i0.Input
|
|
1700
|
+
}], value: [{
|
|
1701
|
+
type: i0.Input
|
|
1702
|
+
}], valueChange: [{
|
|
1703
|
+
type: i0.Output
|
|
1704
|
+
}] } });
|
|
1209
1705
|
|
|
1210
1706
|
// #region AUTO-GENERATED - PLEASE DON'T EDIT CONTENT WITHIN!
|
|
1211
1707
|
var MockRadioComponent = /** @class */ (function () {
|
|
@@ -1213,30 +1709,39 @@
|
|
|
1213
1709
|
}
|
|
1214
1710
|
return MockRadioComponent;
|
|
1215
1711
|
}());
|
|
1216
|
-
MockRadioComponent
|
|
1217
|
-
|
|
1218
|
-
|
|
1219
|
-
|
|
1220
|
-
|
|
1221
|
-
|
|
1222
|
-
|
|
1223
|
-
|
|
1224
|
-
|
|
1225
|
-
|
|
1226
|
-
|
|
1227
|
-
|
|
1228
|
-
|
|
1229
|
-
|
|
1230
|
-
|
|
1231
|
-
|
|
1232
|
-
|
|
1233
|
-
|
|
1234
|
-
|
|
1712
|
+
/** @nocollapse */ MockRadioComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: MockRadioComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
|
|
1713
|
+
/** @nocollapse */ MockRadioComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: MockRadioComponent, selector: "kirby-radio", inputs: { value: "value", text: "text", size: "size", disabled: "disabled" }, providers: [
|
|
1714
|
+
{
|
|
1715
|
+
provide: designsystem.RadioComponent,
|
|
1716
|
+
useExisting: i0.forwardRef((function () { return MockRadioComponent; })),
|
|
1717
|
+
},
|
|
1718
|
+
], ngImport: i0__namespace, template: '<ng-content></ng-content>', isInline: true });
|
|
1719
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: MockRadioComponent, decorators: [{
|
|
1720
|
+
type: i0.Component,
|
|
1721
|
+
args: [{
|
|
1722
|
+
selector: 'kirby-radio',
|
|
1723
|
+
template: '<ng-content></ng-content>',
|
|
1724
|
+
providers: [
|
|
1725
|
+
{
|
|
1726
|
+
provide: designsystem.RadioComponent,
|
|
1727
|
+
useExisting: i0.forwardRef((function () { return MockRadioComponent; })),
|
|
1728
|
+
},
|
|
1729
|
+
],
|
|
1730
|
+
}]
|
|
1731
|
+
}], propDecorators: { value: [{
|
|
1732
|
+
type: i0.Input
|
|
1733
|
+
}], text: [{
|
|
1734
|
+
type: i0.Input
|
|
1735
|
+
}], size: [{
|
|
1736
|
+
type: i0.Input
|
|
1737
|
+
}], disabled: [{
|
|
1738
|
+
type: i0.Input
|
|
1739
|
+
}] } });
|
|
1235
1740
|
|
|
1236
1741
|
// #region AUTO-GENERATED - PLEASE DON'T EDIT CONTENT WITHIN!
|
|
1237
1742
|
var MockRangeComponent = /** @class */ (function () {
|
|
1238
1743
|
function MockRangeComponent() {
|
|
1239
|
-
this.change = new
|
|
1744
|
+
this.change = new i0.EventEmitter();
|
|
1240
1745
|
}
|
|
1241
1746
|
MockRangeComponent.prototype.setDisabledState = function () { };
|
|
1242
1747
|
MockRangeComponent.prototype.writeValue = function () { };
|
|
@@ -1244,61 +1749,87 @@
|
|
|
1244
1749
|
MockRangeComponent.prototype.registerOnChange = function () { };
|
|
1245
1750
|
return MockRangeComponent;
|
|
1246
1751
|
}());
|
|
1247
|
-
MockRangeComponent
|
|
1248
|
-
|
|
1249
|
-
|
|
1250
|
-
|
|
1251
|
-
|
|
1252
|
-
|
|
1253
|
-
|
|
1254
|
-
|
|
1255
|
-
|
|
1256
|
-
|
|
1257
|
-
|
|
1258
|
-
|
|
1259
|
-
|
|
1260
|
-
|
|
1261
|
-
|
|
1262
|
-
|
|
1263
|
-
|
|
1264
|
-
|
|
1265
|
-
|
|
1266
|
-
|
|
1267
|
-
|
|
1268
|
-
|
|
1269
|
-
|
|
1270
|
-
|
|
1271
|
-
|
|
1272
|
-
|
|
1752
|
+
/** @nocollapse */ MockRangeComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: MockRangeComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
|
|
1753
|
+
/** @nocollapse */ MockRangeComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: MockRangeComponent, selector: "kirby-range", inputs: { minLabel: "minLabel", maxLabel: "maxLabel", debounce: "debounce", max: "max", min: "min", pin: "pin", step: "step", ticks: "ticks", disabled: "disabled", value: "value" }, outputs: { change: "change" }, providers: [
|
|
1754
|
+
{
|
|
1755
|
+
provide: designsystem.RangeComponent,
|
|
1756
|
+
useExisting: i0.forwardRef((function () { return MockRangeComponent; })),
|
|
1757
|
+
},
|
|
1758
|
+
], ngImport: i0__namespace, template: '<ng-content></ng-content>', isInline: true });
|
|
1759
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: MockRangeComponent, decorators: [{
|
|
1760
|
+
type: i0.Component,
|
|
1761
|
+
args: [{
|
|
1762
|
+
selector: 'kirby-range',
|
|
1763
|
+
template: '<ng-content></ng-content>',
|
|
1764
|
+
providers: [
|
|
1765
|
+
{
|
|
1766
|
+
provide: designsystem.RangeComponent,
|
|
1767
|
+
useExisting: i0.forwardRef((function () { return MockRangeComponent; })),
|
|
1768
|
+
},
|
|
1769
|
+
],
|
|
1770
|
+
}]
|
|
1771
|
+
}], propDecorators: { minLabel: [{
|
|
1772
|
+
type: i0.Input
|
|
1773
|
+
}], maxLabel: [{
|
|
1774
|
+
type: i0.Input
|
|
1775
|
+
}], debounce: [{
|
|
1776
|
+
type: i0.Input
|
|
1777
|
+
}], max: [{
|
|
1778
|
+
type: i0.Input
|
|
1779
|
+
}], min: [{
|
|
1780
|
+
type: i0.Input
|
|
1781
|
+
}], pin: [{
|
|
1782
|
+
type: i0.Input
|
|
1783
|
+
}], step: [{
|
|
1784
|
+
type: i0.Input
|
|
1785
|
+
}], ticks: [{
|
|
1786
|
+
type: i0.Input
|
|
1787
|
+
}], disabled: [{
|
|
1788
|
+
type: i0.Input
|
|
1789
|
+
}], value: [{
|
|
1790
|
+
type: i0.Input
|
|
1791
|
+
}], change: [{
|
|
1792
|
+
type: i0.Output
|
|
1793
|
+
}] } });
|
|
1273
1794
|
|
|
1274
1795
|
// #region AUTO-GENERATED - PLEASE DON'T EDIT CONTENT WITHIN!
|
|
1275
1796
|
var MockReorderListComponent = /** @class */ (function () {
|
|
1276
1797
|
function MockReorderListComponent() {
|
|
1277
|
-
this.itemReorder = new
|
|
1278
|
-
this.subItemReorder = new
|
|
1798
|
+
this.itemReorder = new i0.EventEmitter();
|
|
1799
|
+
this.subItemReorder = new i0.EventEmitter();
|
|
1279
1800
|
}
|
|
1280
1801
|
return MockReorderListComponent;
|
|
1281
1802
|
}());
|
|
1282
|
-
MockReorderListComponent
|
|
1283
|
-
|
|
1284
|
-
|
|
1285
|
-
|
|
1286
|
-
|
|
1287
|
-
|
|
1288
|
-
|
|
1289
|
-
|
|
1290
|
-
|
|
1291
|
-
|
|
1292
|
-
|
|
1293
|
-
|
|
1294
|
-
|
|
1295
|
-
|
|
1296
|
-
|
|
1297
|
-
|
|
1298
|
-
|
|
1299
|
-
|
|
1300
|
-
|
|
1301
|
-
|
|
1803
|
+
/** @nocollapse */ MockReorderListComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: MockReorderListComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
|
|
1804
|
+
/** @nocollapse */ MockReorderListComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: MockReorderListComponent, selector: "kirby-reorder-list", inputs: { items: "items", subItemsName: "subItemsName", getItemTextDefault: "getItemTextDefault" }, outputs: { itemReorder: "itemReorder", subItemReorder: "subItemReorder" }, providers: [
|
|
1805
|
+
{
|
|
1806
|
+
provide: designsystem.ReorderListComponent,
|
|
1807
|
+
useExisting: i0.forwardRef((function () { return MockReorderListComponent; })),
|
|
1808
|
+
},
|
|
1809
|
+
], ngImport: i0__namespace, template: '<ng-content></ng-content>', isInline: true });
|
|
1810
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: MockReorderListComponent, decorators: [{
|
|
1811
|
+
type: i0.Component,
|
|
1812
|
+
args: [{
|
|
1813
|
+
selector: 'kirby-reorder-list',
|
|
1814
|
+
template: '<ng-content></ng-content>',
|
|
1815
|
+
providers: [
|
|
1816
|
+
{
|
|
1817
|
+
provide: designsystem.ReorderListComponent,
|
|
1818
|
+
useExisting: i0.forwardRef((function () { return MockReorderListComponent; })),
|
|
1819
|
+
},
|
|
1820
|
+
],
|
|
1821
|
+
}]
|
|
1822
|
+
}], propDecorators: { items: [{
|
|
1823
|
+
type: i0.Input
|
|
1824
|
+
}], subItemsName: [{
|
|
1825
|
+
type: i0.Input
|
|
1826
|
+
}], getItemTextDefault: [{
|
|
1827
|
+
type: i0.Input
|
|
1828
|
+
}], itemReorder: [{
|
|
1829
|
+
type: i0.Output
|
|
1830
|
+
}], subItemReorder: [{
|
|
1831
|
+
type: i0.Output
|
|
1832
|
+
}] } });
|
|
1302
1833
|
|
|
1303
1834
|
// #region AUTO-GENERATED - PLEASE DON'T EDIT CONTENT WITHIN!
|
|
1304
1835
|
var MockRouterOutletComponent = /** @class */ (function () {
|
|
@@ -1306,22 +1837,28 @@
|
|
|
1306
1837
|
}
|
|
1307
1838
|
return MockRouterOutletComponent;
|
|
1308
1839
|
}());
|
|
1309
|
-
MockRouterOutletComponent
|
|
1310
|
-
|
|
1311
|
-
|
|
1312
|
-
|
|
1313
|
-
|
|
1314
|
-
|
|
1315
|
-
|
|
1316
|
-
|
|
1317
|
-
|
|
1318
|
-
|
|
1319
|
-
|
|
1320
|
-
|
|
1321
|
-
|
|
1322
|
-
|
|
1323
|
-
|
|
1324
|
-
|
|
1840
|
+
/** @nocollapse */ MockRouterOutletComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: MockRouterOutletComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
|
|
1841
|
+
/** @nocollapse */ MockRouterOutletComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: MockRouterOutletComponent, selector: "kirby-router-outlet", inputs: { main: "main" }, providers: [
|
|
1842
|
+
{
|
|
1843
|
+
provide: designsystem.RouterOutletComponent,
|
|
1844
|
+
useExisting: i0.forwardRef((function () { return MockRouterOutletComponent; })),
|
|
1845
|
+
},
|
|
1846
|
+
], ngImport: i0__namespace, template: '<ng-content></ng-content>', isInline: true });
|
|
1847
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: MockRouterOutletComponent, decorators: [{
|
|
1848
|
+
type: i0.Component,
|
|
1849
|
+
args: [{
|
|
1850
|
+
selector: 'kirby-router-outlet',
|
|
1851
|
+
template: '<ng-content></ng-content>',
|
|
1852
|
+
providers: [
|
|
1853
|
+
{
|
|
1854
|
+
provide: designsystem.RouterOutletComponent,
|
|
1855
|
+
useExisting: i0.forwardRef((function () { return MockRouterOutletComponent; })),
|
|
1856
|
+
},
|
|
1857
|
+
],
|
|
1858
|
+
}]
|
|
1859
|
+
}], propDecorators: { main: [{
|
|
1860
|
+
type: i0.Input
|
|
1861
|
+
}] } });
|
|
1325
1862
|
|
|
1326
1863
|
// #region AUTO-GENERATED - PLEASE DON'T EDIT CONTENT WITHIN!
|
|
1327
1864
|
var MockSectionHeaderComponent = /** @class */ (function () {
|
|
@@ -1329,76 +1866,157 @@
|
|
|
1329
1866
|
}
|
|
1330
1867
|
return MockSectionHeaderComponent;
|
|
1331
1868
|
}());
|
|
1332
|
-
MockSectionHeaderComponent
|
|
1333
|
-
|
|
1334
|
-
|
|
1335
|
-
|
|
1336
|
-
|
|
1337
|
-
|
|
1338
|
-
|
|
1339
|
-
|
|
1340
|
-
|
|
1341
|
-
|
|
1342
|
-
|
|
1343
|
-
|
|
1344
|
-
|
|
1869
|
+
/** @nocollapse */ MockSectionHeaderComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: MockSectionHeaderComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
|
|
1870
|
+
/** @nocollapse */ MockSectionHeaderComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: MockSectionHeaderComponent, selector: "kirby-section-header", providers: [
|
|
1871
|
+
{
|
|
1872
|
+
provide: designsystem.SectionHeaderComponent,
|
|
1873
|
+
useExisting: i0.forwardRef((function () { return MockSectionHeaderComponent; })),
|
|
1874
|
+
},
|
|
1875
|
+
], ngImport: i0__namespace, template: '<ng-content></ng-content>', isInline: true });
|
|
1876
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: MockSectionHeaderComponent, decorators: [{
|
|
1877
|
+
type: i0.Component,
|
|
1878
|
+
args: [{
|
|
1879
|
+
selector: 'kirby-section-header',
|
|
1880
|
+
template: '<ng-content></ng-content>',
|
|
1881
|
+
providers: [
|
|
1882
|
+
{
|
|
1883
|
+
provide: designsystem.SectionHeaderComponent,
|
|
1884
|
+
useExisting: i0.forwardRef((function () { return MockSectionHeaderComponent; })),
|
|
1885
|
+
},
|
|
1886
|
+
],
|
|
1887
|
+
}]
|
|
1888
|
+
}] });
|
|
1345
1889
|
|
|
1346
1890
|
// #region AUTO-GENERATED - PLEASE DON'T EDIT CONTENT WITHIN!
|
|
1347
1891
|
var MockSegmentedControlComponent = /** @class */ (function () {
|
|
1348
1892
|
function MockSegmentedControlComponent() {
|
|
1349
|
-
this.segmentSelect = new
|
|
1893
|
+
this.segmentSelect = new i0.EventEmitter();
|
|
1350
1894
|
}
|
|
1351
1895
|
return MockSegmentedControlComponent;
|
|
1352
1896
|
}());
|
|
1353
|
-
MockSegmentedControlComponent
|
|
1354
|
-
|
|
1355
|
-
|
|
1356
|
-
|
|
1357
|
-
|
|
1358
|
-
|
|
1359
|
-
|
|
1360
|
-
|
|
1361
|
-
|
|
1362
|
-
|
|
1363
|
-
|
|
1364
|
-
|
|
1365
|
-
|
|
1366
|
-
|
|
1367
|
-
|
|
1368
|
-
|
|
1369
|
-
|
|
1370
|
-
|
|
1371
|
-
|
|
1372
|
-
|
|
1373
|
-
|
|
1897
|
+
/** @nocollapse */ MockSegmentedControlComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: MockSegmentedControlComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
|
|
1898
|
+
/** @nocollapse */ MockSegmentedControlComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: MockSegmentedControlComponent, selector: "kirby-segmented-control", inputs: { mode: "mode", items: "items", selectedIndex: "selectedIndex", value: "value", size: "size" }, outputs: { segmentSelect: "segmentSelect" }, providers: [
|
|
1899
|
+
{
|
|
1900
|
+
provide: designsystem.SegmentedControlComponent,
|
|
1901
|
+
useExisting: i0.forwardRef((function () { return MockSegmentedControlComponent; })),
|
|
1902
|
+
},
|
|
1903
|
+
], ngImport: i0__namespace, template: '<ng-content></ng-content>', isInline: true });
|
|
1904
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: MockSegmentedControlComponent, decorators: [{
|
|
1905
|
+
type: i0.Component,
|
|
1906
|
+
args: [{
|
|
1907
|
+
selector: 'kirby-segmented-control',
|
|
1908
|
+
template: '<ng-content></ng-content>',
|
|
1909
|
+
providers: [
|
|
1910
|
+
{
|
|
1911
|
+
provide: designsystem.SegmentedControlComponent,
|
|
1912
|
+
useExisting: i0.forwardRef((function () { return MockSegmentedControlComponent; })),
|
|
1913
|
+
},
|
|
1914
|
+
],
|
|
1915
|
+
}]
|
|
1916
|
+
}], propDecorators: { mode: [{
|
|
1917
|
+
type: i0.Input
|
|
1918
|
+
}], items: [{
|
|
1919
|
+
type: i0.Input
|
|
1920
|
+
}], selectedIndex: [{
|
|
1921
|
+
type: i0.Input
|
|
1922
|
+
}], value: [{
|
|
1923
|
+
type: i0.Input
|
|
1924
|
+
}], size: [{
|
|
1925
|
+
type: i0.Input
|
|
1926
|
+
}], segmentSelect: [{
|
|
1927
|
+
type: i0.Output
|
|
1928
|
+
}] } });
|
|
1374
1929
|
|
|
1375
1930
|
// #region AUTO-GENERATED - PLEASE DON'T EDIT CONTENT WITHIN!
|
|
1376
1931
|
var MockSlideButtonComponent = /** @class */ (function () {
|
|
1377
1932
|
function MockSlideButtonComponent() {
|
|
1378
|
-
this.slideDone = new
|
|
1379
|
-
this.slidingPercentageChanged = new
|
|
1933
|
+
this.slideDone = new i0.EventEmitter();
|
|
1934
|
+
this.slidingPercentageChanged = new i0.EventEmitter();
|
|
1380
1935
|
}
|
|
1381
1936
|
return MockSlideButtonComponent;
|
|
1382
1937
|
}());
|
|
1383
|
-
MockSlideButtonComponent
|
|
1384
|
-
|
|
1385
|
-
|
|
1386
|
-
|
|
1387
|
-
|
|
1388
|
-
|
|
1389
|
-
|
|
1390
|
-
|
|
1391
|
-
|
|
1392
|
-
|
|
1393
|
-
|
|
1394
|
-
|
|
1395
|
-
|
|
1396
|
-
|
|
1397
|
-
|
|
1398
|
-
|
|
1399
|
-
|
|
1400
|
-
|
|
1401
|
-
|
|
1938
|
+
/** @nocollapse */ MockSlideButtonComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: MockSlideButtonComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
|
|
1939
|
+
/** @nocollapse */ MockSlideButtonComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: MockSlideButtonComponent, selector: "kirby-slide-button", inputs: { text: "text", expand: "expand" }, outputs: { slideDone: "slideDone", slidingPercentageChanged: "slidingPercentageChanged" }, providers: [
|
|
1940
|
+
{
|
|
1941
|
+
provide: designsystem.SlideButtonComponent,
|
|
1942
|
+
useExisting: i0.forwardRef((function () { return MockSlideButtonComponent; })),
|
|
1943
|
+
},
|
|
1944
|
+
], ngImport: i0__namespace, template: '<ng-content></ng-content>', isInline: true });
|
|
1945
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: MockSlideButtonComponent, decorators: [{
|
|
1946
|
+
type: i0.Component,
|
|
1947
|
+
args: [{
|
|
1948
|
+
selector: 'kirby-slide-button',
|
|
1949
|
+
template: '<ng-content></ng-content>',
|
|
1950
|
+
providers: [
|
|
1951
|
+
{
|
|
1952
|
+
provide: designsystem.SlideButtonComponent,
|
|
1953
|
+
useExisting: i0.forwardRef((function () { return MockSlideButtonComponent; })),
|
|
1954
|
+
},
|
|
1955
|
+
],
|
|
1956
|
+
}]
|
|
1957
|
+
}], propDecorators: { text: [{
|
|
1958
|
+
type: i0.Input
|
|
1959
|
+
}], expand: [{
|
|
1960
|
+
type: i0.Input
|
|
1961
|
+
}], slideDone: [{
|
|
1962
|
+
type: i0.Output
|
|
1963
|
+
}], slidingPercentageChanged: [{
|
|
1964
|
+
type: i0.Output
|
|
1965
|
+
}] } });
|
|
1966
|
+
|
|
1967
|
+
var MockSlideDirective = /** @class */ (function () {
|
|
1968
|
+
function MockSlideDirective() {
|
|
1969
|
+
}
|
|
1970
|
+
return MockSlideDirective;
|
|
1971
|
+
}());
|
|
1972
|
+
/** @nocollapse */ MockSlideDirective.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: MockSlideDirective, deps: [], target: i0__namespace.ɵɵFactoryTarget.Directive });
|
|
1973
|
+
/** @nocollapse */ MockSlideDirective.ɵdir = i0__namespace.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "12.2.16", type: MockSlideDirective, selector: "[kirbySlide]", providers: [
|
|
1974
|
+
{
|
|
1975
|
+
provide: designsystem.SlideDirective,
|
|
1976
|
+
useExisting: i0.forwardRef((function () { return MockSlideDirective; })),
|
|
1977
|
+
},
|
|
1978
|
+
], ngImport: i0__namespace });
|
|
1979
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: MockSlideDirective, decorators: [{
|
|
1980
|
+
type: i0.Directive,
|
|
1981
|
+
args: [{
|
|
1982
|
+
selector: '[kirbySlide]',
|
|
1983
|
+
providers: [
|
|
1984
|
+
{
|
|
1985
|
+
provide: designsystem.SlideDirective,
|
|
1986
|
+
useExisting: i0.forwardRef((function () { return MockSlideDirective; })),
|
|
1987
|
+
},
|
|
1988
|
+
],
|
|
1989
|
+
}]
|
|
1990
|
+
}] });
|
|
1991
|
+
var MockSlidesComponent = /** @class */ (function () {
|
|
1992
|
+
function MockSlidesComponent() {
|
|
1993
|
+
}
|
|
1994
|
+
return MockSlidesComponent;
|
|
1995
|
+
}());
|
|
1996
|
+
/** @nocollapse */ MockSlidesComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: MockSlidesComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
|
|
1997
|
+
/** @nocollapse */ MockSlidesComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: MockSlidesComponent, selector: "kirby-slides", inputs: { slidesOptions: "slidesOptions", slides: "slides" }, providers: [
|
|
1998
|
+
{
|
|
1999
|
+
provide: designsystem.SlidesComponent,
|
|
2000
|
+
useExisting: i0.forwardRef((function () { return MockSlidesComponent; })),
|
|
2001
|
+
},
|
|
2002
|
+
], ngImport: i0__namespace, template: '<ng-content></ng-content>', isInline: true });
|
|
2003
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: MockSlidesComponent, decorators: [{
|
|
2004
|
+
type: i0.Component,
|
|
2005
|
+
args: [{
|
|
2006
|
+
selector: 'kirby-slides',
|
|
2007
|
+
template: '<ng-content></ng-content>',
|
|
2008
|
+
providers: [
|
|
2009
|
+
{
|
|
2010
|
+
provide: designsystem.SlidesComponent,
|
|
2011
|
+
useExisting: i0.forwardRef((function () { return MockSlidesComponent; })),
|
|
2012
|
+
},
|
|
2013
|
+
],
|
|
2014
|
+
}]
|
|
2015
|
+
}], propDecorators: { slidesOptions: [{
|
|
2016
|
+
type: i0.Input
|
|
2017
|
+
}], slides: [{
|
|
2018
|
+
type: i0.Input
|
|
2019
|
+
}] } });
|
|
1402
2020
|
|
|
1403
2021
|
// #region AUTO-GENERATED - PLEASE DON'T EDIT CONTENT WITHIN!
|
|
1404
2022
|
var MockSpinnerComponent = /** @class */ (function () {
|
|
@@ -1406,44 +2024,58 @@
|
|
|
1406
2024
|
}
|
|
1407
2025
|
return MockSpinnerComponent;
|
|
1408
2026
|
}());
|
|
1409
|
-
MockSpinnerComponent
|
|
1410
|
-
|
|
1411
|
-
|
|
1412
|
-
|
|
1413
|
-
|
|
1414
|
-
|
|
1415
|
-
|
|
1416
|
-
|
|
1417
|
-
|
|
1418
|
-
|
|
1419
|
-
|
|
1420
|
-
|
|
1421
|
-
|
|
2027
|
+
/** @nocollapse */ MockSpinnerComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: MockSpinnerComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
|
|
2028
|
+
/** @nocollapse */ MockSpinnerComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: MockSpinnerComponent, selector: "kirby-spinner", providers: [
|
|
2029
|
+
{
|
|
2030
|
+
provide: designsystem.SpinnerComponent,
|
|
2031
|
+
useExisting: i0.forwardRef((function () { return MockSpinnerComponent; })),
|
|
2032
|
+
},
|
|
2033
|
+
], ngImport: i0__namespace, template: '<ng-content></ng-content>', isInline: true });
|
|
2034
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: MockSpinnerComponent, decorators: [{
|
|
2035
|
+
type: i0.Component,
|
|
2036
|
+
args: [{
|
|
2037
|
+
selector: 'kirby-spinner',
|
|
2038
|
+
template: '<ng-content></ng-content>',
|
|
2039
|
+
providers: [
|
|
2040
|
+
{
|
|
2041
|
+
provide: designsystem.SpinnerComponent,
|
|
2042
|
+
useExisting: i0.forwardRef((function () { return MockSpinnerComponent; })),
|
|
2043
|
+
},
|
|
2044
|
+
],
|
|
2045
|
+
}]
|
|
2046
|
+
}] });
|
|
1422
2047
|
|
|
1423
2048
|
// #region AUTO-GENERATED - PLEASE DON'T EDIT CONTENT WITHIN!
|
|
1424
2049
|
var MockTabButtonComponent = /** @class */ (function () {
|
|
1425
2050
|
function MockTabButtonComponent() {
|
|
1426
|
-
this.click = new
|
|
2051
|
+
this.click = new i0.EventEmitter();
|
|
1427
2052
|
}
|
|
1428
2053
|
return MockTabButtonComponent;
|
|
1429
2054
|
}());
|
|
1430
|
-
MockTabButtonComponent
|
|
1431
|
-
|
|
1432
|
-
|
|
1433
|
-
|
|
1434
|
-
|
|
1435
|
-
|
|
1436
|
-
|
|
1437
|
-
|
|
1438
|
-
|
|
1439
|
-
|
|
1440
|
-
|
|
1441
|
-
|
|
1442
|
-
|
|
1443
|
-
|
|
1444
|
-
|
|
1445
|
-
|
|
1446
|
-
|
|
2055
|
+
/** @nocollapse */ MockTabButtonComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: MockTabButtonComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
|
|
2056
|
+
/** @nocollapse */ MockTabButtonComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: MockTabButtonComponent, selector: "kirby-tab-button", inputs: { routerLink: "routerLink" }, outputs: { click: "click" }, providers: [
|
|
2057
|
+
{
|
|
2058
|
+
provide: designsystem.TabButtonComponent,
|
|
2059
|
+
useExisting: i0.forwardRef((function () { return MockTabButtonComponent; })),
|
|
2060
|
+
},
|
|
2061
|
+
], ngImport: i0__namespace, template: '<ng-content></ng-content>', isInline: true });
|
|
2062
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: MockTabButtonComponent, decorators: [{
|
|
2063
|
+
type: i0.Component,
|
|
2064
|
+
args: [{
|
|
2065
|
+
selector: 'kirby-tab-button',
|
|
2066
|
+
template: '<ng-content></ng-content>',
|
|
2067
|
+
providers: [
|
|
2068
|
+
{
|
|
2069
|
+
provide: designsystem.TabButtonComponent,
|
|
2070
|
+
useExisting: i0.forwardRef((function () { return MockTabButtonComponent; })),
|
|
2071
|
+
},
|
|
2072
|
+
],
|
|
2073
|
+
}]
|
|
2074
|
+
}], propDecorators: { routerLink: [{
|
|
2075
|
+
type: i0.Input
|
|
2076
|
+
}], click: [{
|
|
2077
|
+
type: i0.Output
|
|
2078
|
+
}] } });
|
|
1447
2079
|
|
|
1448
2080
|
// #region AUTO-GENERATED - PLEASE DON'T EDIT CONTENT WITHIN!
|
|
1449
2081
|
var MockTabsComponent = /** @class */ (function () {
|
|
@@ -1451,19 +2083,26 @@
|
|
|
1451
2083
|
}
|
|
1452
2084
|
return MockTabsComponent;
|
|
1453
2085
|
}());
|
|
1454
|
-
MockTabsComponent
|
|
1455
|
-
|
|
1456
|
-
|
|
1457
|
-
|
|
1458
|
-
|
|
1459
|
-
|
|
1460
|
-
|
|
1461
|
-
|
|
1462
|
-
|
|
1463
|
-
|
|
1464
|
-
|
|
1465
|
-
|
|
1466
|
-
|
|
2086
|
+
/** @nocollapse */ MockTabsComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: MockTabsComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
|
|
2087
|
+
/** @nocollapse */ MockTabsComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: MockTabsComponent, selector: "kirby-tab-bar", providers: [
|
|
2088
|
+
{
|
|
2089
|
+
provide: designsystem.TabsComponent,
|
|
2090
|
+
useExisting: i0.forwardRef((function () { return MockTabsComponent; })),
|
|
2091
|
+
},
|
|
2092
|
+
], ngImport: i0__namespace, template: '<ng-content></ng-content>', isInline: true });
|
|
2093
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: MockTabsComponent, decorators: [{
|
|
2094
|
+
type: i0.Component,
|
|
2095
|
+
args: [{
|
|
2096
|
+
selector: 'kirby-tab-bar',
|
|
2097
|
+
template: '<ng-content></ng-content>',
|
|
2098
|
+
providers: [
|
|
2099
|
+
{
|
|
2100
|
+
provide: designsystem.TabsComponent,
|
|
2101
|
+
useExisting: i0.forwardRef((function () { return MockTabsComponent; })),
|
|
2102
|
+
},
|
|
2103
|
+
],
|
|
2104
|
+
}]
|
|
2105
|
+
}] });
|
|
1467
2106
|
|
|
1468
2107
|
// #region AUTO-GENERATED - PLEASE DON'T EDIT CONTENT WITHIN!
|
|
1469
2108
|
var MockTextareaComponent = /** @class */ (function () {
|
|
@@ -1471,79 +2110,220 @@
|
|
|
1471
2110
|
}
|
|
1472
2111
|
return MockTextareaComponent;
|
|
1473
2112
|
}());
|
|
1474
|
-
MockTextareaComponent
|
|
1475
|
-
|
|
1476
|
-
|
|
1477
|
-
|
|
1478
|
-
|
|
1479
|
-
|
|
1480
|
-
|
|
1481
|
-
|
|
1482
|
-
|
|
1483
|
-
|
|
1484
|
-
|
|
1485
|
-
|
|
1486
|
-
|
|
1487
|
-
|
|
1488
|
-
|
|
1489
|
-
|
|
1490
|
-
|
|
1491
|
-
|
|
1492
|
-
|
|
1493
|
-
|
|
1494
|
-
|
|
1495
|
-
|
|
2113
|
+
/** @nocollapse */ MockTextareaComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: MockTextareaComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
|
|
2114
|
+
/** @nocollapse */ MockTextareaComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: MockTextareaComponent, selector: "textarea[kirby-textarea]", inputs: { value: "value", borderless: "borderless", hasError: "hasError", autocomplete: "autocomplete", autocorrect: "autocorrect", maxlength: "maxlength" }, providers: [
|
|
2115
|
+
{
|
|
2116
|
+
provide: designsystem.TextareaComponent,
|
|
2117
|
+
useExisting: i0.forwardRef((function () { return MockTextareaComponent; })),
|
|
2118
|
+
},
|
|
2119
|
+
], ngImport: i0__namespace, template: '<ng-content></ng-content>', isInline: true });
|
|
2120
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: MockTextareaComponent, decorators: [{
|
|
2121
|
+
type: i0.Component,
|
|
2122
|
+
args: [{
|
|
2123
|
+
// tslint:disable-next-line: component-selector
|
|
2124
|
+
selector: 'textarea[kirby-textarea]',
|
|
2125
|
+
template: '<ng-content></ng-content>',
|
|
2126
|
+
providers: [
|
|
2127
|
+
{
|
|
2128
|
+
provide: designsystem.TextareaComponent,
|
|
2129
|
+
useExisting: i0.forwardRef((function () { return MockTextareaComponent; })),
|
|
2130
|
+
},
|
|
2131
|
+
],
|
|
2132
|
+
}]
|
|
2133
|
+
}], propDecorators: { value: [{
|
|
2134
|
+
type: i0.Input
|
|
2135
|
+
}], borderless: [{
|
|
2136
|
+
type: i0.Input
|
|
2137
|
+
}], hasError: [{
|
|
2138
|
+
type: i0.Input
|
|
2139
|
+
}], autocomplete: [{
|
|
2140
|
+
type: i0.Input
|
|
2141
|
+
}], autocorrect: [{
|
|
2142
|
+
type: i0.Input
|
|
2143
|
+
}], maxlength: [{
|
|
2144
|
+
type: i0.Input
|
|
2145
|
+
}] } });
|
|
1496
2146
|
|
|
1497
2147
|
// #region AUTO-GENERATED - PLEASE DON'T EDIT CONTENT WITHIN!
|
|
1498
2148
|
var MockToggleButtonComponent = /** @class */ (function () {
|
|
1499
2149
|
function MockToggleButtonComponent() {
|
|
1500
|
-
this.checkChanged = new
|
|
2150
|
+
this.checkChanged = new i0.EventEmitter();
|
|
1501
2151
|
}
|
|
1502
2152
|
return MockToggleButtonComponent;
|
|
1503
2153
|
}());
|
|
1504
|
-
MockToggleButtonComponent
|
|
1505
|
-
|
|
1506
|
-
|
|
1507
|
-
|
|
1508
|
-
|
|
1509
|
-
|
|
1510
|
-
|
|
1511
|
-
|
|
1512
|
-
|
|
1513
|
-
|
|
1514
|
-
|
|
1515
|
-
|
|
1516
|
-
|
|
1517
|
-
|
|
1518
|
-
|
|
1519
|
-
|
|
1520
|
-
|
|
2154
|
+
/** @nocollapse */ MockToggleButtonComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: MockToggleButtonComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
|
|
2155
|
+
/** @nocollapse */ MockToggleButtonComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: MockToggleButtonComponent, selector: "kirby-toggle-button", inputs: { checked: "checked" }, outputs: { checkChanged: "checkChanged" }, providers: [
|
|
2156
|
+
{
|
|
2157
|
+
provide: designsystem.ToggleButtonComponent,
|
|
2158
|
+
useExisting: i0.forwardRef((function () { return MockToggleButtonComponent; })),
|
|
2159
|
+
},
|
|
2160
|
+
], ngImport: i0__namespace, template: '<ng-content></ng-content>', isInline: true });
|
|
2161
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: MockToggleButtonComponent, decorators: [{
|
|
2162
|
+
type: i0.Component,
|
|
2163
|
+
args: [{
|
|
2164
|
+
selector: 'kirby-toggle-button',
|
|
2165
|
+
template: '<ng-content></ng-content>',
|
|
2166
|
+
providers: [
|
|
2167
|
+
{
|
|
2168
|
+
provide: designsystem.ToggleButtonComponent,
|
|
2169
|
+
useExisting: i0.forwardRef((function () { return MockToggleButtonComponent; })),
|
|
2170
|
+
},
|
|
2171
|
+
],
|
|
2172
|
+
}]
|
|
2173
|
+
}], propDecorators: { checked: [{
|
|
2174
|
+
type: i0.Input
|
|
2175
|
+
}], checkChanged: [{
|
|
2176
|
+
type: i0.Output
|
|
2177
|
+
}] } });
|
|
1521
2178
|
|
|
1522
2179
|
// #region AUTO-GENERATED - PLEASE DON'T EDIT CONTENT WITHIN!
|
|
1523
2180
|
var MockToggleComponent = /** @class */ (function () {
|
|
1524
2181
|
function MockToggleComponent() {
|
|
1525
|
-
this.checkedChange = new
|
|
2182
|
+
this.checkedChange = new i0.EventEmitter();
|
|
1526
2183
|
}
|
|
1527
2184
|
return MockToggleComponent;
|
|
1528
2185
|
}());
|
|
1529
|
-
MockToggleComponent
|
|
1530
|
-
|
|
1531
|
-
|
|
1532
|
-
|
|
1533
|
-
|
|
1534
|
-
|
|
1535
|
-
|
|
1536
|
-
|
|
1537
|
-
|
|
1538
|
-
|
|
1539
|
-
|
|
1540
|
-
|
|
1541
|
-
|
|
1542
|
-
|
|
1543
|
-
|
|
1544
|
-
|
|
1545
|
-
|
|
1546
|
-
|
|
2186
|
+
/** @nocollapse */ MockToggleComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: MockToggleComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
|
|
2187
|
+
/** @nocollapse */ MockToggleComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: MockToggleComponent, selector: "kirby-toggle", inputs: { checked: "checked", disabled: "disabled" }, outputs: { checkedChange: "checkedChange" }, providers: [
|
|
2188
|
+
{
|
|
2189
|
+
provide: designsystem.ToggleComponent,
|
|
2190
|
+
useExisting: i0.forwardRef((function () { return MockToggleComponent; })),
|
|
2191
|
+
},
|
|
2192
|
+
], ngImport: i0__namespace, template: '<ng-content></ng-content>', isInline: true });
|
|
2193
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: MockToggleComponent, decorators: [{
|
|
2194
|
+
type: i0.Component,
|
|
2195
|
+
args: [{
|
|
2196
|
+
selector: 'kirby-toggle',
|
|
2197
|
+
template: '<ng-content></ng-content>',
|
|
2198
|
+
providers: [
|
|
2199
|
+
{
|
|
2200
|
+
provide: designsystem.ToggleComponent,
|
|
2201
|
+
useExisting: i0.forwardRef((function () { return MockToggleComponent; })),
|
|
2202
|
+
},
|
|
2203
|
+
],
|
|
2204
|
+
}]
|
|
2205
|
+
}], propDecorators: { checked: [{
|
|
2206
|
+
type: i0.Input
|
|
2207
|
+
}], disabled: [{
|
|
2208
|
+
type: i0.Input
|
|
2209
|
+
}], checkedChange: [{
|
|
2210
|
+
type: i0.Output
|
|
2211
|
+
}] } });
|
|
2212
|
+
|
|
2213
|
+
// #region AUTO-GENERATED - PLEASE DON'T EDIT CONTENT WITHIN!
|
|
2214
|
+
var MockBadgeComponent = /** @class */ (function () {
|
|
2215
|
+
function MockBadgeComponent() {
|
|
2216
|
+
}
|
|
2217
|
+
return MockBadgeComponent;
|
|
2218
|
+
}());
|
|
2219
|
+
/** @nocollapse */ MockBadgeComponent.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: MockBadgeComponent, deps: [], target: i0__namespace.ɵɵFactoryTarget.Component });
|
|
2220
|
+
/** @nocollapse */ MockBadgeComponent.ɵcmp = i0__namespace.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.16", type: MockBadgeComponent, selector: "kirby-badge", inputs: { size: "size", text: "text", themeColor: "themeColor" }, providers: [
|
|
2221
|
+
{
|
|
2222
|
+
provide: designsystem.BadgeComponent,
|
|
2223
|
+
useExisting: i0.forwardRef((function () { return MockBadgeComponent; })),
|
|
2224
|
+
},
|
|
2225
|
+
], ngImport: i0__namespace, template: '<ng-content></ng-content>', isInline: true });
|
|
2226
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: MockBadgeComponent, decorators: [{
|
|
2227
|
+
type: i0.Component,
|
|
2228
|
+
args: [{
|
|
2229
|
+
selector: 'kirby-badge',
|
|
2230
|
+
template: '<ng-content></ng-content>',
|
|
2231
|
+
providers: [
|
|
2232
|
+
{
|
|
2233
|
+
provide: designsystem.BadgeComponent,
|
|
2234
|
+
useExisting: i0.forwardRef((function () { return MockBadgeComponent; })),
|
|
2235
|
+
},
|
|
2236
|
+
],
|
|
2237
|
+
}]
|
|
2238
|
+
}], propDecorators: { size: [{
|
|
2239
|
+
type: i0.Input
|
|
2240
|
+
}], text: [{
|
|
2241
|
+
type: i0.Input
|
|
2242
|
+
}], themeColor: [{
|
|
2243
|
+
type: i0.Input
|
|
2244
|
+
}] } });
|
|
2245
|
+
|
|
2246
|
+
var MockAccordionDirective = /** @class */ (function () {
|
|
2247
|
+
function MockAccordionDirective() {
|
|
2248
|
+
}
|
|
2249
|
+
return MockAccordionDirective;
|
|
2250
|
+
}());
|
|
2251
|
+
/** @nocollapse */ MockAccordionDirective.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: MockAccordionDirective, deps: [], target: i0__namespace.ɵɵFactoryTarget.Directive });
|
|
2252
|
+
/** @nocollapse */ MockAccordionDirective.ɵdir = i0__namespace.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "12.2.16", type: MockAccordionDirective, selector: "[kirbyAccordion], kirby-accordion", providers: [
|
|
2253
|
+
{
|
|
2254
|
+
provide: designsystem.AccordionDirective,
|
|
2255
|
+
useExisting: i0.forwardRef((function () { return MockAccordionDirective; })),
|
|
2256
|
+
},
|
|
2257
|
+
], exportAs: ["kirby-accordion"], ngImport: i0__namespace });
|
|
2258
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: MockAccordionDirective, decorators: [{
|
|
2259
|
+
type: i0.Directive,
|
|
2260
|
+
args: [{
|
|
2261
|
+
selector: '[kirbyAccordion], kirby-accordion',
|
|
2262
|
+
exportAs: 'kirby-accordion',
|
|
2263
|
+
providers: [
|
|
2264
|
+
{
|
|
2265
|
+
provide: designsystem.AccordionDirective,
|
|
2266
|
+
useExisting: i0.forwardRef((function () { return MockAccordionDirective; })),
|
|
2267
|
+
},
|
|
2268
|
+
],
|
|
2269
|
+
}]
|
|
2270
|
+
}] });
|
|
2271
|
+
|
|
2272
|
+
var MockFitHeadingDirective = /** @class */ (function () {
|
|
2273
|
+
function MockFitHeadingDirective() {
|
|
2274
|
+
}
|
|
2275
|
+
return MockFitHeadingDirective;
|
|
2276
|
+
}());
|
|
2277
|
+
/** @nocollapse */ MockFitHeadingDirective.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: MockFitHeadingDirective, deps: [], target: i0__namespace.ɵɵFactoryTarget.Directive });
|
|
2278
|
+
/** @nocollapse */ MockFitHeadingDirective.ɵdir = i0__namespace.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "12.2.16", type: MockFitHeadingDirective, selector: "h1[kirbyFitHeading],\n h2[kirbyFitHeading],\n h3[kirbyFitHeading]", inputs: { config: ["kirbyFitHeading", "config"] }, providers: [
|
|
2279
|
+
{
|
|
2280
|
+
provide: designsystem.FitHeadingDirective,
|
|
2281
|
+
useExisting: i0.forwardRef((function () { return MockFitHeadingDirective; })),
|
|
2282
|
+
},
|
|
2283
|
+
], ngImport: i0__namespace });
|
|
2284
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: MockFitHeadingDirective, decorators: [{
|
|
2285
|
+
type: i0.Directive,
|
|
2286
|
+
args: [{
|
|
2287
|
+
selector: "h1[kirbyFitHeading],\n h2[kirbyFitHeading],\n h3[kirbyFitHeading]",
|
|
2288
|
+
providers: [
|
|
2289
|
+
{
|
|
2290
|
+
provide: designsystem.FitHeadingDirective,
|
|
2291
|
+
useExisting: i0.forwardRef((function () { return MockFitHeadingDirective; })),
|
|
2292
|
+
},
|
|
2293
|
+
],
|
|
2294
|
+
}]
|
|
2295
|
+
}], propDecorators: { config: [{
|
|
2296
|
+
type: i0.Input,
|
|
2297
|
+
args: ['kirbyFitHeading']
|
|
2298
|
+
}] } });
|
|
2299
|
+
|
|
2300
|
+
var MockThemeColorDirective = /** @class */ (function () {
|
|
2301
|
+
function MockThemeColorDirective() {
|
|
2302
|
+
}
|
|
2303
|
+
return MockThemeColorDirective;
|
|
2304
|
+
}());
|
|
2305
|
+
/** @nocollapse */ MockThemeColorDirective.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: MockThemeColorDirective, deps: [], target: i0__namespace.ɵɵFactoryTarget.Directive });
|
|
2306
|
+
/** @nocollapse */ MockThemeColorDirective.ɵdir = i0__namespace.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "12.2.16", type: MockThemeColorDirective, selector: "kirby-card[themeColor],\n kirby-icon[themeColor],\n kirby-empty-state[themeColor]", inputs: { themeColor: "themeColor" }, providers: [
|
|
2307
|
+
{
|
|
2308
|
+
provide: designsystem.ThemeColorDirective,
|
|
2309
|
+
useExisting: i0.forwardRef((function () { return MockThemeColorDirective; })),
|
|
2310
|
+
},
|
|
2311
|
+
], ngImport: i0__namespace });
|
|
2312
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: MockThemeColorDirective, decorators: [{
|
|
2313
|
+
type: i0.Directive,
|
|
2314
|
+
args: [{
|
|
2315
|
+
// tslint:disable-next-line:directive-selector
|
|
2316
|
+
selector: "kirby-card[themeColor],\n kirby-icon[themeColor],\n kirby-empty-state[themeColor]",
|
|
2317
|
+
providers: [
|
|
2318
|
+
{
|
|
2319
|
+
provide: designsystem.ThemeColorDirective,
|
|
2320
|
+
useExisting: i0.forwardRef((function () { return MockThemeColorDirective; })),
|
|
2321
|
+
},
|
|
2322
|
+
],
|
|
2323
|
+
}]
|
|
2324
|
+
}], propDecorators: { themeColor: [{
|
|
2325
|
+
type: i0.Input
|
|
2326
|
+
}] } });
|
|
1547
2327
|
|
|
1548
2328
|
// AUTO-GENERATED - PLEASE DON'T EDIT THIS FILE MANUALLY
|
|
1549
2329
|
var MOCK_COMPONENTS = [
|
|
@@ -1585,6 +2365,7 @@
|
|
|
1585
2365
|
MockModalFooterComponent,
|
|
1586
2366
|
MockPageFooterComponent,
|
|
1587
2367
|
MockPageTitleDirective,
|
|
2368
|
+
MockPageSubtitleDirective,
|
|
1588
2369
|
MockPageToolbarTitleDirective,
|
|
1589
2370
|
MockPageActionsDirective,
|
|
1590
2371
|
MockPageContentDirective,
|
|
@@ -1608,67 +2389,9 @@
|
|
|
1608
2389
|
MockTabsComponent,
|
|
1609
2390
|
MockToggleComponent,
|
|
1610
2391
|
MockToggleButtonComponent,
|
|
2392
|
+
MockBadgeComponent,
|
|
1611
2393
|
];
|
|
1612
2394
|
|
|
1613
|
-
var MockAccordionDirective = /** @class */ (function () {
|
|
1614
|
-
function MockAccordionDirective() {
|
|
1615
|
-
}
|
|
1616
|
-
return MockAccordionDirective;
|
|
1617
|
-
}());
|
|
1618
|
-
MockAccordionDirective.decorators = [
|
|
1619
|
-
{ type: core.Directive, args: [{
|
|
1620
|
-
selector: '[kirbyAccordion], kirby-accordion',
|
|
1621
|
-
exportAs: 'kirby-accordion',
|
|
1622
|
-
providers: [
|
|
1623
|
-
{
|
|
1624
|
-
provide: designsystem.AccordionDirective,
|
|
1625
|
-
useExisting: core.forwardRef(function () { return MockAccordionDirective; }),
|
|
1626
|
-
},
|
|
1627
|
-
],
|
|
1628
|
-
},] }
|
|
1629
|
-
];
|
|
1630
|
-
|
|
1631
|
-
var MockFitHeadingDirective = /** @class */ (function () {
|
|
1632
|
-
function MockFitHeadingDirective() {
|
|
1633
|
-
}
|
|
1634
|
-
return MockFitHeadingDirective;
|
|
1635
|
-
}());
|
|
1636
|
-
MockFitHeadingDirective.decorators = [
|
|
1637
|
-
{ type: core.Directive, args: [{
|
|
1638
|
-
selector: "h1[kirbyFitHeading],\n h2[kirbyFitHeading],\n h3[kirbyFitHeading]",
|
|
1639
|
-
providers: [
|
|
1640
|
-
{
|
|
1641
|
-
provide: designsystem.FitHeadingDirective,
|
|
1642
|
-
useExisting: core.forwardRef(function () { return MockFitHeadingDirective; }),
|
|
1643
|
-
},
|
|
1644
|
-
],
|
|
1645
|
-
},] }
|
|
1646
|
-
];
|
|
1647
|
-
MockFitHeadingDirective.propDecorators = {
|
|
1648
|
-
config: [{ type: core.Input, args: ['kirbyFitHeading',] }]
|
|
1649
|
-
};
|
|
1650
|
-
|
|
1651
|
-
var MockThemeColorDirective = /** @class */ (function () {
|
|
1652
|
-
function MockThemeColorDirective() {
|
|
1653
|
-
}
|
|
1654
|
-
return MockThemeColorDirective;
|
|
1655
|
-
}());
|
|
1656
|
-
MockThemeColorDirective.decorators = [
|
|
1657
|
-
{ type: core.Directive, args: [{
|
|
1658
|
-
// tslint:disable-next-line:directive-selector
|
|
1659
|
-
selector: "kirby-card[themeColor],\n kirby-icon[themeColor],\n kirby-empty-state[themeColor]",
|
|
1660
|
-
providers: [
|
|
1661
|
-
{
|
|
1662
|
-
provide: designsystem.ThemeColorDirective,
|
|
1663
|
-
useExisting: core.forwardRef(function () { return MockThemeColorDirective; }),
|
|
1664
|
-
},
|
|
1665
|
-
],
|
|
1666
|
-
},] }
|
|
1667
|
-
];
|
|
1668
|
-
MockThemeColorDirective.propDecorators = {
|
|
1669
|
-
themeColor: [{ type: core.Input }]
|
|
1670
|
-
};
|
|
1671
|
-
|
|
1672
2395
|
var MOCK_DIRECTIVES = [
|
|
1673
2396
|
MockThemeColorDirective,
|
|
1674
2397
|
MockFitHeadingDirective,
|
|
@@ -1680,86 +2403,92 @@
|
|
|
1680
2403
|
}
|
|
1681
2404
|
return KirbyTestingBaseModule;
|
|
1682
2405
|
}());
|
|
1683
|
-
KirbyTestingBaseModule
|
|
1684
|
-
|
|
1685
|
-
|
|
1686
|
-
|
|
1687
|
-
|
|
1688
|
-
|
|
2406
|
+
/** @nocollapse */ KirbyTestingBaseModule.ɵfac = i0__namespace.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: KirbyTestingBaseModule, deps: [], target: i0__namespace.ɵɵFactoryTarget.NgModule });
|
|
2407
|
+
/** @nocollapse */ KirbyTestingBaseModule.ɵmod = i0__namespace.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: KirbyTestingBaseModule, declarations: [MockAccordionItemComponent, MockAppComponent, MockAvatarComponent, MockButtonComponent, MockCalendarComponent, MockCardFooterComponent, MockCardHeaderComponent, MockCardComponent, MockChartComponent, MockChartDeprecatedComponent, MockCheckboxComponent, MockChipComponent, MockDividerComponent, MockDropdownComponent, MockEmptyStateComponent, MockFabSheetComponent, MockFlagComponent, MockFormFieldMessageComponent, MockFormFieldComponent, MockInputComponent, MockInputCounterComponent, MockTextareaComponent, MockGridComponent, MockIconComponent, MockItemComponent, MockLabelComponent, MockItemGroupComponent, MockItemSlidingComponent, MockListExperimentalComponent, MockListHeaderComponent, MockListItemComponent, MockListSectionHeaderComponent, MockListComponent, MockLoadingOverlayComponent, MockActionSheetComponent, MockModalFooterComponent, MockPageFooterComponent, MockPageTitleDirective, MockPageSubtitleDirective, MockPageToolbarTitleDirective, MockPageActionsDirective, MockPageContentDirective, MockPageProgressComponent, MockPageTitleComponent, MockPageContentComponent, MockPageActionsComponent, MockPageComponent, MockPopoverComponent, MockProgressCircleComponent, MockRadioGroupComponent, MockRadioComponent, MockRangeComponent, MockReorderListComponent, MockRouterOutletComponent, MockSectionHeaderComponent, MockSegmentedControlComponent, MockSlideButtonComponent, MockSpinnerComponent, MockTabButtonComponent, MockTabsComponent, MockToggleComponent, MockToggleButtonComponent, MockBadgeComponent, MockThemeColorDirective, MockFitHeadingDirective, MockAccordionDirective], exports: [MockAccordionItemComponent, MockAppComponent, MockAvatarComponent, MockButtonComponent, MockCalendarComponent, MockCardFooterComponent, MockCardHeaderComponent, MockCardComponent, MockChartComponent, MockChartDeprecatedComponent, MockCheckboxComponent, MockChipComponent, MockDividerComponent, MockDropdownComponent, MockEmptyStateComponent, MockFabSheetComponent, MockFlagComponent, MockFormFieldMessageComponent, MockFormFieldComponent, MockInputComponent, MockInputCounterComponent, MockTextareaComponent, MockGridComponent, MockIconComponent, MockItemComponent, MockLabelComponent, MockItemGroupComponent, MockItemSlidingComponent, MockListExperimentalComponent, MockListHeaderComponent, MockListItemComponent, MockListSectionHeaderComponent, MockListComponent, MockLoadingOverlayComponent, MockActionSheetComponent, MockModalFooterComponent, MockPageFooterComponent, MockPageTitleDirective, MockPageSubtitleDirective, MockPageToolbarTitleDirective, MockPageActionsDirective, MockPageContentDirective, MockPageProgressComponent, MockPageTitleComponent, MockPageContentComponent, MockPageActionsComponent, MockPageComponent, MockPopoverComponent, MockProgressCircleComponent, MockRadioGroupComponent, MockRadioComponent, MockRangeComponent, MockReorderListComponent, MockRouterOutletComponent, MockSectionHeaderComponent, MockSegmentedControlComponent, MockSlideButtonComponent, MockSpinnerComponent, MockTabButtonComponent, MockTabsComponent, MockToggleComponent, MockToggleButtonComponent, MockBadgeComponent, MockThemeColorDirective, MockFitHeadingDirective, MockAccordionDirective] });
|
|
2408
|
+
/** @nocollapse */ KirbyTestingBaseModule.ɵinj = i0__namespace.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: KirbyTestingBaseModule });
|
|
2409
|
+
i0__namespace.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.16", ngImport: i0__namespace, type: KirbyTestingBaseModule, decorators: [{
|
|
2410
|
+
type: i0.NgModule,
|
|
2411
|
+
args: [{
|
|
2412
|
+
declarations: [MOCK_COMPONENTS, MOCK_DIRECTIVES],
|
|
2413
|
+
exports: [MOCK_COMPONENTS, MOCK_DIRECTIVES],
|
|
2414
|
+
}]
|
|
2415
|
+
}] });
|
|
1689
2416
|
|
|
1690
2417
|
/**
|
|
1691
2418
|
* Generated bundle index. Do not edit.
|
|
1692
2419
|
*/
|
|
1693
2420
|
|
|
1694
2421
|
exports.KirbyTestingBaseModule = KirbyTestingBaseModule;
|
|
1695
|
-
exports
|
|
1696
|
-
exports
|
|
1697
|
-
exports
|
|
1698
|
-
exports
|
|
1699
|
-
exports
|
|
1700
|
-
exports
|
|
1701
|
-
exports
|
|
1702
|
-
exports
|
|
1703
|
-
exports
|
|
1704
|
-
exports
|
|
1705
|
-
exports
|
|
1706
|
-
exports
|
|
1707
|
-
exports
|
|
1708
|
-
exports
|
|
1709
|
-
exports
|
|
1710
|
-
exports
|
|
1711
|
-
exports
|
|
1712
|
-
exports
|
|
1713
|
-
exports
|
|
1714
|
-
exports
|
|
1715
|
-
exports
|
|
1716
|
-
exports
|
|
1717
|
-
exports
|
|
1718
|
-
exports
|
|
1719
|
-
exports
|
|
1720
|
-
exports
|
|
1721
|
-
exports
|
|
1722
|
-
exports
|
|
1723
|
-
exports
|
|
1724
|
-
exports
|
|
1725
|
-
exports
|
|
1726
|
-
exports
|
|
1727
|
-
exports
|
|
1728
|
-
exports
|
|
1729
|
-
exports
|
|
1730
|
-
exports
|
|
1731
|
-
exports
|
|
1732
|
-
exports
|
|
1733
|
-
exports
|
|
1734
|
-
exports
|
|
1735
|
-
exports
|
|
1736
|
-
exports
|
|
1737
|
-
exports
|
|
1738
|
-
exports
|
|
1739
|
-
exports
|
|
1740
|
-
exports
|
|
1741
|
-
exports
|
|
1742
|
-
exports
|
|
1743
|
-
exports
|
|
1744
|
-
exports
|
|
1745
|
-
exports
|
|
1746
|
-
exports
|
|
1747
|
-
exports
|
|
1748
|
-
exports
|
|
1749
|
-
exports
|
|
1750
|
-
exports
|
|
1751
|
-
exports
|
|
1752
|
-
exports
|
|
1753
|
-
exports
|
|
1754
|
-
exports
|
|
1755
|
-
exports
|
|
1756
|
-
exports
|
|
1757
|
-
exports
|
|
1758
|
-
exports
|
|
1759
|
-
exports
|
|
1760
|
-
exports
|
|
2422
|
+
exports.MockAccordionDirective = MockAccordionDirective;
|
|
2423
|
+
exports.MockAccordionItemComponent = MockAccordionItemComponent;
|
|
2424
|
+
exports.MockActionSheetComponent = MockActionSheetComponent;
|
|
2425
|
+
exports.MockAppComponent = MockAppComponent;
|
|
2426
|
+
exports.MockAvatarComponent = MockAvatarComponent;
|
|
2427
|
+
exports.MockBadgeComponent = MockBadgeComponent;
|
|
2428
|
+
exports.MockButtonComponent = MockButtonComponent;
|
|
2429
|
+
exports.MockCalendarComponent = MockCalendarComponent;
|
|
2430
|
+
exports.MockCardComponent = MockCardComponent;
|
|
2431
|
+
exports.MockCardFooterComponent = MockCardFooterComponent;
|
|
2432
|
+
exports.MockCardHeaderComponent = MockCardHeaderComponent;
|
|
2433
|
+
exports.MockChartComponent = MockChartComponent;
|
|
2434
|
+
exports.MockChartDeprecatedComponent = MockChartDeprecatedComponent;
|
|
2435
|
+
exports.MockCheckboxComponent = MockCheckboxComponent;
|
|
2436
|
+
exports.MockChipComponent = MockChipComponent;
|
|
2437
|
+
exports.MockDividerComponent = MockDividerComponent;
|
|
2438
|
+
exports.MockDropdownComponent = MockDropdownComponent;
|
|
2439
|
+
exports.MockEmptyStateComponent = MockEmptyStateComponent;
|
|
2440
|
+
exports.MockFabSheetComponent = MockFabSheetComponent;
|
|
2441
|
+
exports.MockFitHeadingDirective = MockFitHeadingDirective;
|
|
2442
|
+
exports.MockFlagComponent = MockFlagComponent;
|
|
2443
|
+
exports.MockFormFieldComponent = MockFormFieldComponent;
|
|
2444
|
+
exports.MockFormFieldMessageComponent = MockFormFieldMessageComponent;
|
|
2445
|
+
exports.MockGridComponent = MockGridComponent;
|
|
2446
|
+
exports.MockIconComponent = MockIconComponent;
|
|
2447
|
+
exports.MockInputComponent = MockInputComponent;
|
|
2448
|
+
exports.MockInputCounterComponent = MockInputCounterComponent;
|
|
2449
|
+
exports.MockItemComponent = MockItemComponent;
|
|
2450
|
+
exports.MockItemGroupComponent = MockItemGroupComponent;
|
|
2451
|
+
exports.MockItemSlidingComponent = MockItemSlidingComponent;
|
|
2452
|
+
exports.MockLabelComponent = MockLabelComponent;
|
|
2453
|
+
exports.MockListComponent = MockListComponent;
|
|
2454
|
+
exports.MockListExperimentalComponent = MockListExperimentalComponent;
|
|
2455
|
+
exports.MockListHeaderComponent = MockListHeaderComponent;
|
|
2456
|
+
exports.MockListItemComponent = MockListItemComponent;
|
|
2457
|
+
exports.MockListSectionHeaderComponent = MockListSectionHeaderComponent;
|
|
2458
|
+
exports.MockLoadingOverlayComponent = MockLoadingOverlayComponent;
|
|
2459
|
+
exports.MockModalFooterComponent = MockModalFooterComponent;
|
|
2460
|
+
exports.MockPageActionsComponent = MockPageActionsComponent;
|
|
2461
|
+
exports.MockPageActionsDirective = MockPageActionsDirective;
|
|
2462
|
+
exports.MockPageComponent = MockPageComponent;
|
|
2463
|
+
exports.MockPageContentComponent = MockPageContentComponent;
|
|
2464
|
+
exports.MockPageContentDirective = MockPageContentDirective;
|
|
2465
|
+
exports.MockPageFooterComponent = MockPageFooterComponent;
|
|
2466
|
+
exports.MockPageProgressComponent = MockPageProgressComponent;
|
|
2467
|
+
exports.MockPageSubtitleDirective = MockPageSubtitleDirective;
|
|
2468
|
+
exports.MockPageTitleComponent = MockPageTitleComponent;
|
|
2469
|
+
exports.MockPageTitleDirective = MockPageTitleDirective;
|
|
2470
|
+
exports.MockPageToolbarTitleDirective = MockPageToolbarTitleDirective;
|
|
2471
|
+
exports.MockPopoverComponent = MockPopoverComponent;
|
|
2472
|
+
exports.MockProgressCircleComponent = MockProgressCircleComponent;
|
|
2473
|
+
exports.MockRadioComponent = MockRadioComponent;
|
|
2474
|
+
exports.MockRadioGroupComponent = MockRadioGroupComponent;
|
|
2475
|
+
exports.MockRangeComponent = MockRangeComponent;
|
|
2476
|
+
exports.MockReorderListComponent = MockReorderListComponent;
|
|
2477
|
+
exports.MockRouterOutletComponent = MockRouterOutletComponent;
|
|
2478
|
+
exports.MockSectionHeaderComponent = MockSectionHeaderComponent;
|
|
2479
|
+
exports.MockSegmentedControlComponent = MockSegmentedControlComponent;
|
|
2480
|
+
exports.MockSlideButtonComponent = MockSlideButtonComponent;
|
|
2481
|
+
exports.MockSlideDirective = MockSlideDirective;
|
|
2482
|
+
exports.MockSlidesComponent = MockSlidesComponent;
|
|
2483
|
+
exports.MockSpinnerComponent = MockSpinnerComponent;
|
|
2484
|
+
exports.MockTabButtonComponent = MockTabButtonComponent;
|
|
2485
|
+
exports.MockTabsComponent = MockTabsComponent;
|
|
2486
|
+
exports.MockTextareaComponent = MockTextareaComponent;
|
|
2487
|
+
exports.MockThemeColorDirective = MockThemeColorDirective;
|
|
2488
|
+
exports.MockToggleButtonComponent = MockToggleButtonComponent;
|
|
2489
|
+
exports.MockToggleComponent = MockToggleComponent;
|
|
1761
2490
|
|
|
1762
2491
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
1763
2492
|
|
|
1764
|
-
}))
|
|
2493
|
+
}));
|
|
1765
2494
|
//# sourceMappingURL=kirbydesign-designsystem-testing-base.umd.js.map
|