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