@ndwnu/design-system 5.1.0 → 7.0.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/assets/icons.ts +83 -0
- package/fesm2022/ndwnu-design-system.mjs +1052 -1000
- package/fesm2022/ndwnu-design-system.mjs.map +1 -1
- package/index.d.ts +2 -5
- package/lib/components/alert/alert.model.d.ts +1 -0
- package/lib/components/banner/banner.model.d.ts +1 -0
- package/lib/components/card/card-header/card-header.component.d.ts +11 -0
- package/lib/components/card/card.animation.d.ts +1 -0
- package/lib/components/card/card.component.d.ts +19 -0
- package/{components → lib/components}/dropdown/dropdown.component.d.ts +1 -1
- package/{components → lib/components}/form-field/autosuggest/autosuggest-add-option/autosuggest-add-option.component.d.ts +3 -3
- package/lib/components/form-field/autosuggest/autosuggest-option/autosuggest-option.component.d.ts +19 -0
- package/lib/components/form-field/autosuggest/autosuggest-option/autosuggest-option.model.d.ts +5 -0
- package/{components → lib/components}/form-field/autosuggest/autosuggest-option/base-autosuggest-option.component.d.ts +5 -6
- package/{components → lib/components}/form-field/autosuggest/autosuggest-panel/autosuggest-panel.component.d.ts +12 -14
- package/{components → lib/components}/form-field/autosuggest/autosuggest.directive.d.ts +7 -8
- package/{components → lib/components}/form-field/checkbox/checkbox.component.d.ts +3 -2
- package/{components → lib/components}/form-field/clear-search-button/clear-search-button.component.d.ts +3 -2
- package/lib/components/form-field/clear-search-button/index.d.ts +1 -0
- package/{components → lib/components}/form-field/file-upload/file-upload.component.d.ts +8 -7
- package/{components → lib/components}/form-field/form-field.component.d.ts +2 -1
- package/lib/components/form-field/input/input.model.d.ts +1 -0
- package/{components → lib/components}/form-field/input-button/input-button.component.d.ts +1 -1
- package/{components → lib/components}/form-field/month-input/month-input.component.d.ts +8 -7
- package/{components → lib/components}/form-field/option-group/option-group.component.d.ts +7 -4
- package/lib/components/form-field/picker-button/index.d.ts +1 -0
- package/{components → lib/components}/form-field/picker-button/picker-button.component.d.ts +1 -2
- package/{components → lib/components}/form-field/textarea/auto-grow.directive.d.ts +6 -3
- package/{components → lib/components}/form-field/textarea/index.d.ts +1 -0
- package/lib/components/form-field/textarea/max-char.directive.d.ts +15 -0
- package/{components → lib/components}/icon/action-icon/action-icon.component.d.ts +3 -3
- package/lib/components/icon/icon.component.d.ts +6 -0
- package/{components → lib/components}/layout/layout.component.d.ts +2 -2
- package/{components → lib/components}/main-navigation/main-navigation.component.d.ts +2 -10
- package/{components → lib/components}/main-navigation/main-navigation.model.d.ts +1 -4
- package/{components → lib/components}/modal/modal.component.d.ts +1 -2
- package/{components → lib/components}/multi-select/multi-select.component.d.ts +3 -3
- package/lib/components/pill/pill.model.d.ts +1 -0
- package/{components → lib/components}/router-breadcrumbs/router-breadcrumbs.component.d.ts +2 -2
- package/lib/components/tab/tab.component.d.ts +17 -0
- package/{components → lib/components}/tab-group/tab-group.component.d.ts +7 -5
- package/{components → lib/components}/tag/tag.component.d.ts +2 -2
- package/{components → lib/components}/toast/toast.component.d.ts +4 -4
- package/package.json +14 -10
- package/styles/base/_colors.scss +234 -0
- package/styles/base/_typography.scss +135 -0
- package/styles/base/_variables.scss +79 -0
- package/styles/base/colors.stories.model.ts +143 -0
- package/styles/base/colors.stories.ts +14 -0
- package/styles/base/colors.stories.utils.ts +58 -0
- package/styles/base/index.scss +3 -0
- package/styles/base/typography.stories.ts +116 -0
- package/styles/components/_button.scss +133 -0
- package/styles/components/_card.scss +3 -0
- package/styles/components/_divider.scss +12 -0
- package/styles/components/_dropdown.scss +8 -0
- package/styles/components/_filter-button.scss +39 -0
- package/styles/components/_input.scss +198 -0
- package/styles/components/_label.scss +23 -0
- package/styles/components/_link.scss +35 -0
- package/styles/components/_menu-button.scss +38 -0
- package/styles/components/_popover.scss +19 -0
- package/styles/components/_summary-card.scss +227 -0
- package/styles/components/divider.stories.ts +80 -0
- package/styles/components/index.scss +11 -0
- package/styles/components/link.stories.ts +154 -0
- package/styles/index.scss +4 -0
- package/styles/layout/_grid.scss +57 -0
- package/styles/layout/_overlay.scss +7 -0
- package/styles/layout/grid.stories.ts +117 -0
- package/styles/layout/index.scss +2 -0
- package/styles/storybook/_core.scss +60 -0
- package/styles/storybook/_reset.scss +20 -0
- package/styles/storybook/index.scss +17 -0
- package/styles/storybook/overrides/_buttons.scss +95 -0
- package/styles/storybook/overrides/_code-previews.scss +97 -0
- package/styles/storybook/overrides/_content.scss +24 -0
- package/styles/storybook/overrides/_headers.scss +31 -0
- package/styles/storybook/overrides/_layout.scss +44 -0
- package/styles/storybook/overrides/_table.scss +112 -0
- package/styles/storybook/overrides/index.scss +6 -0
- package/styles/storybook/overrides.css +343 -0
- package/styles/utils/_screenreader.scss +18 -0
- package/styles/utils/index.scss +1 -0
- package/assets/fonts/ObjectSans-Bold.woff2 +0 -0
- package/assets/fonts/ObjectSans-Regular.woff2 +0 -0
- package/components/alert/alert.model.d.ts +0 -6
- package/components/banner/banner.model.d.ts +0 -4
- package/components/card/card-header/card-header.component.d.ts +0 -5
- package/components/card/card.component.d.ts +0 -5
- package/components/form-field/autosuggest/autosuggest-option/autosuggest-option.component.d.ts +0 -19
- package/components/form-field/autosuggest/autosuggest-option/autosuggest-option.model.d.ts +0 -2
- package/components/form-field/input/input.model.d.ts +0 -11
- package/components/icon/icon.component.d.ts +0 -13
- package/components/pill/pill.model.d.ts +0 -8
- package/components/tab/tab.component.d.ts +0 -9
- package/core/style/styles.css +0 -1360
- package/core/style/styles.scss +0 -1360
- package/esm2022/components/accordion/accordion.component.mjs +0 -32
- package/esm2022/components/accordion/accordion.service.mjs +0 -17
- package/esm2022/components/accordion/index.mjs +0 -3
- package/esm2022/components/alert/alert.component.mjs +0 -42
- package/esm2022/components/alert/alert.model.mjs +0 -8
- package/esm2022/components/alert/index.mjs +0 -3
- package/esm2022/components/badge/badge.component.mjs +0 -21
- package/esm2022/components/badge/index.mjs +0 -2
- package/esm2022/components/banner/banner.component.mjs +0 -61
- package/esm2022/components/banner/banner.model.mjs +0 -6
- package/esm2022/components/banner/index.mjs +0 -3
- package/esm2022/components/breadcrumb/breadcrumb.component.mjs +0 -15
- package/esm2022/components/breadcrumb/index.mjs +0 -2
- package/esm2022/components/breadcrumb-group/breadcrumb-group.component.mjs +0 -21
- package/esm2022/components/breadcrumb-group/index.mjs +0 -2
- package/esm2022/components/button/button.directive.mjs +0 -37
- package/esm2022/components/button/index.mjs +0 -2
- package/esm2022/components/card/card-content/card-content.component.mjs +0 -11
- package/esm2022/components/card/card-content/index.mjs +0 -2
- package/esm2022/components/card/card-footer/card-footer.component.mjs +0 -11
- package/esm2022/components/card/card-footer/index.mjs +0 -2
- package/esm2022/components/card/card-header/card-header.component.mjs +0 -11
- package/esm2022/components/card/card-header/index.mjs +0 -2
- package/esm2022/components/card/card.component.mjs +0 -11
- package/esm2022/components/card/index.mjs +0 -15
- package/esm2022/components/collapsible/collapsible.animation.mjs +0 -26
- package/esm2022/components/collapsible/collapsible.component.mjs +0 -34
- package/esm2022/components/collapsible/index.mjs +0 -2
- package/esm2022/components/dashboard-card/dashboard-card.component.mjs +0 -32
- package/esm2022/components/dashboard-card/index.mjs +0 -2
- package/esm2022/components/dropdown/dropdown.component.mjs +0 -57
- package/esm2022/components/dropdown/index.mjs +0 -2
- package/esm2022/components/form-field/autosuggest/autosuggest-add-option/autosuggest-add-option.component.mjs +0 -29
- package/esm2022/components/form-field/autosuggest/autosuggest-add-option/index.mjs +0 -2
- package/esm2022/components/form-field/autosuggest/autosuggest-option/autosuggest-option.component.mjs +0 -45
- package/esm2022/components/form-field/autosuggest/autosuggest-option/autosuggest-option.model.mjs +0 -2
- package/esm2022/components/form-field/autosuggest/autosuggest-option/base-autosuggest-option.component.mjs +0 -85
- package/esm2022/components/form-field/autosuggest/autosuggest-option/index.mjs +0 -3
- package/esm2022/components/form-field/autosuggest/autosuggest-panel/autosuggest-panel.component.mjs +0 -82
- package/esm2022/components/form-field/autosuggest/autosuggest.directive.mjs +0 -411
- package/esm2022/components/form-field/autosuggest/index.mjs +0 -6
- package/esm2022/components/form-field/autosuggest/match-bold.pipe.mjs +0 -21
- package/esm2022/components/form-field/checkbox/checkbox.component.mjs +0 -62
- package/esm2022/components/form-field/checkbox/index.mjs +0 -2
- package/esm2022/components/form-field/checkbox-group/checkbox-group.component.mjs +0 -15
- package/esm2022/components/form-field/checkbox-group/index.mjs +0 -2
- package/esm2022/components/form-field/clear-search-button/clear-search-button.component.mjs +0 -37
- package/esm2022/components/form-field/error/error.component.mjs +0 -12
- package/esm2022/components/form-field/error/index.mjs +0 -2
- package/esm2022/components/form-field/file-upload/file-upload-text.interface.mjs +0 -2
- package/esm2022/components/form-field/file-upload/file-upload.component.mjs +0 -172
- package/esm2022/components/form-field/file-upload/index.mjs +0 -3
- package/esm2022/components/form-field/form-field.component.mjs +0 -81
- package/esm2022/components/form-field/form-field.constant.mjs +0 -2
- package/esm2022/components/form-field/form-field.model.mjs +0 -8
- package/esm2022/components/form-field/index.mjs +0 -17
- package/esm2022/components/form-field/info/index.mjs +0 -2
- package/esm2022/components/form-field/info/info.component.mjs +0 -11
- package/esm2022/components/form-field/input/index.mjs +0 -3
- package/esm2022/components/form-field/input/input.directive.mjs +0 -68
- package/esm2022/components/form-field/input/input.model.mjs +0 -13
- package/esm2022/components/form-field/input-button/index.mjs +0 -2
- package/esm2022/components/form-field/input-button/input-button.component.mjs +0 -23
- package/esm2022/components/form-field/input-icon/index.mjs +0 -2
- package/esm2022/components/form-field/input-icon/input-icon.component.mjs +0 -12
- package/esm2022/components/form-field/month-input/index.mjs +0 -2
- package/esm2022/components/form-field/month-input/month-input-utils.mjs +0 -13
- package/esm2022/components/form-field/month-input/month-input.component.mjs +0 -154
- package/esm2022/components/form-field/option-group/index.mjs +0 -4
- package/esm2022/components/form-field/option-group/option-group.component.mjs +0 -64
- package/esm2022/components/form-field/option-group/option-group.model.mjs +0 -2
- package/esm2022/components/form-field/option-group/option.component.mjs +0 -22
- package/esm2022/components/form-field/picker-button/picker-button.component.mjs +0 -50
- package/esm2022/components/form-field/radio-button/index.mjs +0 -2
- package/esm2022/components/form-field/radio-button/radio-button.component.mjs +0 -63
- package/esm2022/components/form-field/radio-group/index.mjs +0 -2
- package/esm2022/components/form-field/radio-group/radio-group.component.mjs +0 -70
- package/esm2022/components/form-field/success/index.mjs +0 -2
- package/esm2022/components/form-field/success/success.component.mjs +0 -12
- package/esm2022/components/form-field/textarea/auto-grow.directive.mjs +0 -45
- package/esm2022/components/form-field/textarea/index.mjs +0 -2
- package/esm2022/components/icon/action-icon/action-icon.component.mjs +0 -40
- package/esm2022/components/icon/action-icon/index.mjs +0 -2
- package/esm2022/components/icon/icon.component.mjs +0 -36
- package/esm2022/components/icon/index.mjs +0 -3
- package/esm2022/components/index.mjs +0 -29
- package/esm2022/components/layout/index.mjs +0 -2
- package/esm2022/components/layout/layout.component.mjs +0 -23
- package/esm2022/components/layout-banners/index.mjs +0 -2
- package/esm2022/components/layout-banners/layout-banners.component.mjs +0 -11
- package/esm2022/components/loader/index.mjs +0 -2
- package/esm2022/components/loader/loader.component.mjs +0 -11
- package/esm2022/components/main-navigation/index.mjs +0 -3
- package/esm2022/components/main-navigation/main-navigation.component.mjs +0 -165
- package/esm2022/components/main-navigation/main-navigation.imports.mjs +0 -20
- package/esm2022/components/main-navigation/main-navigation.model.mjs +0 -6
- package/esm2022/components/main-navigation-menu/index.mjs +0 -2
- package/esm2022/components/main-navigation-menu/main-navigation-menu.component.mjs +0 -20
- package/esm2022/components/modal/index.mjs +0 -16
- package/esm2022/components/modal/modal-content/index.mjs +0 -2
- package/esm2022/components/modal/modal-content/modal-content.component.mjs +0 -11
- package/esm2022/components/modal/modal-footer/index.mjs +0 -2
- package/esm2022/components/modal/modal-footer/modal-footer.component.mjs +0 -11
- package/esm2022/components/modal/modal-header/index.mjs +0 -2
- package/esm2022/components/modal/modal-header/modal-header.component.mjs +0 -18
- package/esm2022/components/modal/modal-ref.mjs +0 -4
- package/esm2022/components/modal/modal.component.mjs +0 -19
- package/esm2022/components/modal/modal.service.mjs +0 -31
- package/esm2022/components/multi-select/checkbox-data.interface.mjs +0 -2
- package/esm2022/components/multi-select/index.mjs +0 -4
- package/esm2022/components/multi-select/multi-select.component.mjs +0 -76
- package/esm2022/components/multi-select/select-all-text.interface.mjs +0 -2
- package/esm2022/components/pill/index.mjs +0 -3
- package/esm2022/components/pill/pill.component.mjs +0 -26
- package/esm2022/components/pill/pill.model.mjs +0 -10
- package/esm2022/components/popover/index.mjs +0 -2
- package/esm2022/components/popover/popover-trigger.directive.mjs +0 -182
- package/esm2022/components/router-breadcrumbs/index.mjs +0 -2
- package/esm2022/components/router-breadcrumbs/router-breadcrumbs.component.mjs +0 -37
- package/esm2022/components/summary-card/index.mjs +0 -11
- package/esm2022/components/summary-card/summary-card-action/summary-card-action.component.mjs +0 -23
- package/esm2022/components/summary-card/summary-card-actions/summary-card-actions.component.mjs +0 -26
- package/esm2022/components/summary-card/summary-card-avatar/summary-card-avatar.component.mjs +0 -25
- package/esm2022/components/summary-card/summary-card-content/summary-card-content.component.mjs +0 -19
- package/esm2022/components/summary-card/summary-card-header/summary-card-header.component.mjs +0 -13
- package/esm2022/components/summary-card/summary-card-subtitle/summary-card-subtitle.component.mjs +0 -11
- package/esm2022/components/summary-card/summary-card-tag/summary-card-tag.component.mjs +0 -20
- package/esm2022/components/summary-card/summary-card-tags/summary-card-tags.component.mjs +0 -20
- package/esm2022/components/summary-card/summary-card.component.mjs +0 -14
- package/esm2022/components/summary-card/summary-card.model.mjs +0 -2
- package/esm2022/components/tab/index.mjs +0 -2
- package/esm2022/components/tab/tab.component.mjs +0 -32
- package/esm2022/components/tab-group/index.mjs +0 -2
- package/esm2022/components/tab-group/tab-group.component.mjs +0 -34
- package/esm2022/components/tag/index.mjs +0 -2
- package/esm2022/components/tag/tag.component.mjs +0 -29
- package/esm2022/components/toast/index.mjs +0 -3
- package/esm2022/components/toast/toast.component.mjs +0 -77
- package/esm2022/components/toast/toast.service.mjs +0 -43
- package/esm2022/components/tooltip/index.mjs +0 -3
- package/esm2022/components/tooltip/tooltip.component.mjs +0 -16
- package/esm2022/components/tooltip/tooltip.directive.mjs +0 -89
- package/esm2022/models/aria.model.mjs +0 -2
- package/esm2022/models/index.mjs +0 -2
- package/esm2022/ndwnu-design-system.mjs +0 -5
- package/esm2022/public-api.mjs +0 -5
- package/public-api.d.ts +0 -1
- package/assets/images/{ndw-logo-short.svg → logos/ndw-logo-short.svg} +0 -0
- package/assets/images/{ndw-logo.svg → logos/ndw-logo.svg} +0 -0
- package/assets/images/{nwb-logo-short.svg → logos/nwb-logo-short.svg} +0 -0
- package/assets/images/{nwb-logo.svg → logos/nwb-logo.svg} +0 -0
- package/{components → lib/components}/accordion/accordion.component.d.ts +0 -0
- package/{components → lib/components}/accordion/accordion.service.d.ts +0 -0
- package/{components → lib/components}/accordion/index.d.ts +0 -0
- package/{components → lib/components}/alert/alert.component.d.ts +0 -0
- package/{components → lib/components}/alert/index.d.ts +0 -0
- package/{components → lib/components}/badge/badge.component.d.ts +0 -0
- package/{components → lib/components}/badge/index.d.ts +0 -0
- package/{components → lib/components}/banner/banner.component.d.ts +0 -0
- package/{components → lib/components}/banner/index.d.ts +0 -0
- package/{components → lib/components}/breadcrumb/breadcrumb.component.d.ts +0 -0
- package/{components → lib/components}/breadcrumb/index.d.ts +0 -0
- package/{components → lib/components}/breadcrumb-group/breadcrumb-group.component.d.ts +0 -0
- package/{components → lib/components}/breadcrumb-group/index.d.ts +0 -0
- package/{components → lib/components}/button/button.directive.d.ts +0 -0
- package/{components → lib/components}/button/index.d.ts +0 -0
- package/{components → lib/components}/card/card-content/card-content.component.d.ts +0 -0
- package/{components → lib/components}/card/card-content/index.d.ts +0 -0
- package/{components → lib/components}/card/card-footer/card-footer.component.d.ts +0 -0
- package/{components → lib/components}/card/card-footer/index.d.ts +0 -0
- package/{components → lib/components}/card/card-header/index.d.ts +0 -0
- package/{components → lib/components}/card/index.d.ts +0 -0
- package/{components → lib/components}/collapsible/collapsible.animation.d.ts +0 -0
- package/{components → lib/components}/collapsible/collapsible.component.d.ts +0 -0
- package/{components → lib/components}/collapsible/index.d.ts +0 -0
- package/{components → lib/components}/dashboard-card/dashboard-card.component.d.ts +0 -0
- package/{components → lib/components}/dashboard-card/index.d.ts +0 -0
- package/{components → lib/components}/dropdown/index.d.ts +0 -0
- package/{components → lib/components}/form-field/autosuggest/autosuggest-add-option/index.d.ts +0 -0
- package/{components → lib/components}/form-field/autosuggest/autosuggest-option/index.d.ts +0 -0
- package/{components → lib/components}/form-field/autosuggest/index.d.ts +0 -0
- package/{components → lib/components}/form-field/autosuggest/match-bold.pipe.d.ts +0 -0
- package/{components → lib/components}/form-field/checkbox/index.d.ts +0 -0
- package/{components → lib/components}/form-field/checkbox-group/checkbox-group.component.d.ts +0 -0
- package/{components → lib/components}/form-field/checkbox-group/index.d.ts +0 -0
- package/{components → lib/components}/form-field/error/error.component.d.ts +0 -0
- package/{components → lib/components}/form-field/error/index.d.ts +0 -0
- package/{components → lib/components}/form-field/file-upload/file-upload-text.interface.d.ts +0 -0
- package/{components → lib/components}/form-field/file-upload/index.d.ts +0 -0
- package/{components → lib/components}/form-field/form-field.constant.d.ts +0 -0
- package/{components → lib/components}/form-field/form-field.model.d.ts +0 -0
- package/{components → lib/components}/form-field/index.d.ts +0 -0
- package/{components → lib/components}/form-field/info/index.d.ts +0 -0
- package/{components → lib/components}/form-field/info/info.component.d.ts +0 -0
- package/{components → lib/components}/form-field/input/index.d.ts +0 -0
- package/{components → lib/components}/form-field/input/input.directive.d.ts +0 -0
- package/{components → lib/components}/form-field/input-button/index.d.ts +0 -0
- package/{components → lib/components}/form-field/input-icon/index.d.ts +0 -0
- package/{components → lib/components}/form-field/input-icon/input-icon.component.d.ts +0 -0
- package/{components → lib/components}/form-field/month-input/index.d.ts +0 -0
- package/{components → lib/components}/form-field/month-input/month-input-utils.d.ts +0 -0
- package/{components → lib/components}/form-field/option-group/index.d.ts +0 -0
- package/{components → lib/components}/form-field/option-group/option-group.model.d.ts +0 -0
- package/{components → lib/components}/form-field/option-group/option.component.d.ts +0 -0
- package/{components → lib/components}/form-field/radio-button/index.d.ts +0 -0
- package/{components → lib/components}/form-field/radio-button/radio-button.component.d.ts +0 -0
- package/{components → lib/components}/form-field/radio-group/index.d.ts +0 -0
- package/{components → lib/components}/form-field/radio-group/radio-group.component.d.ts +0 -0
- package/{components → lib/components}/form-field/success/index.d.ts +0 -0
- package/{components → lib/components}/form-field/success/success.component.d.ts +0 -0
- package/{components → lib/components}/icon/action-icon/index.d.ts +0 -0
- package/{components → lib/components}/icon/index.d.ts +0 -0
- package/{components → lib/components}/index.d.ts +0 -0
- package/{components → lib/components}/layout/index.d.ts +0 -0
- package/{components → lib/components}/layout-banners/index.d.ts +0 -0
- package/{components → lib/components}/layout-banners/layout-banners.component.d.ts +0 -0
- package/{components → lib/components}/loader/index.d.ts +0 -0
- package/{components → lib/components}/loader/loader.component.d.ts +0 -0
- package/{components → lib/components}/main-navigation/index.d.ts +0 -0
- package/{components → lib/components}/main-navigation/main-navigation.imports.d.ts +0 -0
- package/{components → lib/components}/main-navigation-menu/index.d.ts +0 -0
- package/{components → lib/components}/main-navigation-menu/main-navigation-menu.component.d.ts +0 -0
- package/{components → lib/components}/modal/index.d.ts +0 -0
- package/{components → lib/components}/modal/modal-content/index.d.ts +0 -0
- package/{components → lib/components}/modal/modal-content/modal-content.component.d.ts +0 -0
- package/{components → lib/components}/modal/modal-footer/index.d.ts +0 -0
- package/{components → lib/components}/modal/modal-footer/modal-footer.component.d.ts +0 -0
- package/{components → lib/components}/modal/modal-header/index.d.ts +0 -0
- package/{components → lib/components}/modal/modal-header/modal-header.component.d.ts +0 -0
- package/{components → lib/components}/modal/modal-ref.d.ts +0 -0
- package/{components → lib/components}/modal/modal.service.d.ts +0 -0
- package/{components → lib/components}/multi-select/checkbox-data.interface.d.ts +0 -0
- package/{components → lib/components}/multi-select/index.d.ts +0 -0
- package/{components → lib/components}/multi-select/select-all-text.interface.d.ts +0 -0
- package/{components → lib/components}/pill/index.d.ts +0 -0
- package/{components → lib/components}/pill/pill.component.d.ts +0 -0
- package/{components → lib/components}/popover/index.d.ts +0 -0
- package/{components → lib/components}/popover/popover-trigger.directive.d.ts +0 -0
- package/{components → lib/components}/router-breadcrumbs/index.d.ts +0 -0
- package/{components → lib/components}/summary-card/index.d.ts +0 -0
- package/{components → lib/components}/summary-card/summary-card-action/summary-card-action.component.d.ts +0 -0
- package/{components → lib/components}/summary-card/summary-card-actions/summary-card-actions.component.d.ts +1 -1
- package/{components → lib/components}/summary-card/summary-card-avatar/summary-card-avatar.component.d.ts +0 -0
- package/{components → lib/components}/summary-card/summary-card-content/summary-card-content.component.d.ts +0 -0
- package/{components → lib/components}/summary-card/summary-card-header/summary-card-header.component.d.ts +0 -0
- package/{components → lib/components}/summary-card/summary-card-subtitle/summary-card-subtitle.component.d.ts +0 -0
- package/{components → lib/components}/summary-card/summary-card-tag/summary-card-tag.component.d.ts +0 -0
- package/{components → lib/components}/summary-card/summary-card-tags/summary-card-tags.component.d.ts +0 -0
- package/{components → lib/components}/summary-card/summary-card.component.d.ts +0 -0
- package/{components → lib/components}/summary-card/summary-card.model.d.ts +0 -0
- package/{components → lib/components}/tab/index.d.ts +0 -0
- package/{components → lib/components}/tab-group/index.d.ts +0 -0
- package/{components → lib/components}/tag/index.d.ts +0 -0
- package/{components → lib/components}/toast/index.d.ts +0 -0
- package/{components → lib/components}/toast/toast.service.d.ts +0 -0
- package/{components → lib/components}/tooltip/index.d.ts +0 -0
- package/{components → lib/components}/tooltip/tooltip.component.d.ts +0 -0
- package/{components → lib/components}/tooltip/tooltip.directive.d.ts +1 -1
- /package/{models → lib/models}/aria.model.d.ts +0 -0
- /package/{models → lib/models}/index.d.ts +0 -0
package/index.d.ts
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type AlertType = 'critical' | 'info' | 'info-grey' | 'warning';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type BannerType = 'critical' | 'info';
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class CardHeaderComponent {
|
|
3
|
+
readonly cardId: string | null;
|
|
4
|
+
readonly isCollapsible: import("@angular/core").InputSignal<boolean>;
|
|
5
|
+
readonly isCollapsed: import("@angular/core").ModelSignal<boolean>;
|
|
6
|
+
private readonly elementRef;
|
|
7
|
+
get height(): number;
|
|
8
|
+
toggleCollapsed(): void;
|
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CardHeaderComponent, never>;
|
|
10
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CardHeaderComponent, "ndw-card-header", never, { "isCollapsible": { "alias": "isCollapsible"; "required": false; "isSignal": true; }; "isCollapsed": { "alias": "isCollapsed"; "required": false; "isSignal": true; }; }, { "isCollapsed": "isCollapsedChange"; }, never, ["*"], true, never>;
|
|
11
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const CARD_ANIMATION: import("@angular/animations").AnimationTriggerMetadata;
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { AfterContentInit, InjectionToken } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare const CARD_ID_TOKEN: InjectionToken<string>;
|
|
4
|
+
export declare class CardComponent implements AfterContentInit {
|
|
5
|
+
private readonly header;
|
|
6
|
+
private readonly headerHeight;
|
|
7
|
+
readonly cardId: string;
|
|
8
|
+
readonly isCollapsable: import("@angular/core").Signal<boolean>;
|
|
9
|
+
readonly isCollapsed: import("@angular/core").ModelSignal<boolean>;
|
|
10
|
+
ngAfterContentInit(): void;
|
|
11
|
+
animationState: import("@angular/core").Signal<{
|
|
12
|
+
value: string;
|
|
13
|
+
params: {
|
|
14
|
+
headerHeight: number;
|
|
15
|
+
};
|
|
16
|
+
}>;
|
|
17
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CardComponent, never>;
|
|
18
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CardComponent, "ndw-card", never, { "isCollapsed": { "alias": "isCollapsed"; "required": false; "isSignal": true; }; }, { "isCollapsed": "isCollapsedChange"; }, ["header"], ["*"], true, never>;
|
|
19
|
+
}
|
|
@@ -3,7 +3,7 @@ import { PopoverTriggerDirective } from '../popover';
|
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export declare class DropdownComponent {
|
|
5
5
|
readonly disabled: import("@angular/core").InputSignal<boolean>;
|
|
6
|
-
readonly chevron: import("@angular/core").InputSignal<
|
|
6
|
+
readonly chevron: import("@angular/core").InputSignal<boolean>;
|
|
7
7
|
readonly buttonText: import("@angular/core").InputSignal<string>;
|
|
8
8
|
readonly prefixIcon: import("@angular/core").InputSignal<string>;
|
|
9
9
|
readonly selectAmount: import("@angular/core").InputSignal<number>;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { BaseAutosuggestOptionComponent } from '../autosuggest-option';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class AutosuggestAddOptionComponent extends BaseAutosuggestOptionComponent {
|
|
3
|
+
export declare class AutosuggestAddOptionComponent<T> extends BaseAutosuggestOptionComponent<T> {
|
|
4
4
|
readonly addOption: import("@angular/core").OutputEmitterRef<string>;
|
|
5
5
|
protected emitSelectionChangeEvent(isUserInput?: boolean): void;
|
|
6
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<AutosuggestAddOptionComponent
|
|
7
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AutosuggestAddOptionComponent
|
|
6
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AutosuggestAddOptionComponent<any>, never>;
|
|
7
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AutosuggestAddOptionComponent<any>, "ndw-autosuggest-add-option", never, {}, { "addOption": "addOption"; }, never, never, true, never>;
|
|
8
8
|
}
|
package/lib/components/form-field/autosuggest/autosuggest-option/autosuggest-option.component.d.ts
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { BaseAutosuggestOptionComponent } from './base-autosuggest-option.component';
|
|
2
|
+
import { AutosuggestOptionComponentType } from './autosuggest-option.model';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class AutocompleteOptionSelectionChange<T> {
|
|
5
|
+
source: AutosuggestOptionComponentType<T>;
|
|
6
|
+
isUserInput: boolean;
|
|
7
|
+
constructor(source: AutosuggestOptionComponentType<T>, isUserInput?: boolean);
|
|
8
|
+
}
|
|
9
|
+
export declare class AutosuggestOptionComponent<T> extends BaseAutosuggestOptionComponent<T> {
|
|
10
|
+
readonly searchTerm: import("@angular/core").InputSignal<string>;
|
|
11
|
+
readonly label: import("@angular/core").InputSignal<string>;
|
|
12
|
+
id: string;
|
|
13
|
+
get viewValue(): string;
|
|
14
|
+
constructor();
|
|
15
|
+
getLabel(): string;
|
|
16
|
+
protected emitSelectionChangeEvent(isUserInput?: boolean): void;
|
|
17
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AutosuggestOptionComponent<any>, never>;
|
|
18
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AutosuggestOptionComponent<any>, "ndw-autosuggest-option", never, { "searchTerm": { "alias": "searchTerm"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
19
|
+
}
|
package/lib/components/form-field/autosuggest/autosuggest-option/autosuggest-option.model.d.ts
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { AutosuggestOptionComponent } from './autosuggest-option.component';
|
|
2
|
+
import { AutosuggestAddOptionComponent } from '../autosuggest-add-option';
|
|
3
|
+
export type AutosuggestOption<T = string> = T;
|
|
4
|
+
export type AutosuggestOptions<T = string> = AutosuggestOption<T>[];
|
|
5
|
+
export type AutosuggestOptionComponentType<T> = AutosuggestOptionComponent<T> | AutosuggestAddOptionComponent<T>;
|
|
@@ -1,11 +1,10 @@
|
|
|
1
1
|
import { FocusableOption, FocusOrigin } from '@angular/cdk/a11y';
|
|
2
2
|
import { EventEmitter, OnDestroy } from '@angular/core';
|
|
3
3
|
import { AutocompleteOptionSelectionChange } from './autosuggest-option.component';
|
|
4
|
-
import { AutosuggestOption } from './autosuggest-option.model';
|
|
5
4
|
import * as i0 from "@angular/core";
|
|
6
|
-
export declare abstract class BaseAutosuggestOptionComponent implements FocusableOption, OnDestroy {
|
|
7
|
-
readonly value: import("@angular/core").InputSignal<
|
|
8
|
-
readonly selectionChange: EventEmitter<AutocompleteOptionSelectionChange
|
|
5
|
+
export declare abstract class BaseAutosuggestOptionComponent<T> implements FocusableOption, OnDestroy {
|
|
6
|
+
readonly value: import("@angular/core").InputSignal<T | undefined>;
|
|
7
|
+
readonly selectionChange: EventEmitter<AutocompleteOptionSelectionChange<T>>;
|
|
9
8
|
protected _active: boolean;
|
|
10
9
|
protected _selected: boolean;
|
|
11
10
|
get active(): boolean;
|
|
@@ -22,6 +21,6 @@ export declare abstract class BaseAutosuggestOptionComponent implements Focusabl
|
|
|
22
21
|
protected abstract emitSelectionChangeEvent(isUserInput?: boolean): void;
|
|
23
22
|
ngOnDestroy(): void;
|
|
24
23
|
protected getHostElement(): HTMLElement;
|
|
25
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<BaseAutosuggestOptionComponent
|
|
26
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BaseAutosuggestOptionComponent
|
|
24
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BaseAutosuggestOptionComponent<any>, never>;
|
|
25
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BaseAutosuggestOptionComponent<any>, "ng-component", never, { "value": { "alias": "value"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
27
26
|
}
|
|
@@ -1,27 +1,25 @@
|
|
|
1
1
|
import { AfterViewInit, ElementRef, OnDestroy, QueryList, TemplateRef } from '@angular/core';
|
|
2
2
|
import { ActiveDescendantKeyManager } from '@angular/cdk/a11y';
|
|
3
|
-
import {
|
|
4
|
-
import { AutosuggestOptionComponent } from '../autosuggest-option';
|
|
5
|
-
import { AutosuggestOption, AutosuggestOptions } from '../autosuggest-option/autosuggest-option.model';
|
|
3
|
+
import { AutosuggestOption, AutosuggestOptions, AutosuggestOptionComponentType } from '../autosuggest-option/autosuggest-option.model';
|
|
6
4
|
import * as i0 from "@angular/core";
|
|
7
|
-
export declare class AutosuggestPanelComponent implements AfterViewInit, OnDestroy {
|
|
8
|
-
readonly suggestions: import("@angular/core").InputSignal<AutosuggestOptions
|
|
5
|
+
export declare class AutosuggestPanelComponent<T> implements AfterViewInit, OnDestroy {
|
|
6
|
+
readonly suggestions: import("@angular/core").InputSignal<AutosuggestOptions<T>>;
|
|
9
7
|
readonly enableAddOption: import("@angular/core").InputSignal<boolean>;
|
|
10
8
|
readonly maxResults: import("@angular/core").InputSignal<number>;
|
|
11
9
|
readonly noResultText: import("@angular/core").InputSignal<string>;
|
|
12
|
-
readonly displayWith: import("@angular/core").InputSignal<((value: AutosuggestOption) => string) | undefined>;
|
|
10
|
+
readonly displayWith: import("@angular/core").InputSignal<((value: AutosuggestOption<T>) => string) | undefined>;
|
|
13
11
|
readonly opened: import("@angular/core").OutputEmitterRef<void>;
|
|
14
12
|
readonly closed: import("@angular/core").OutputEmitterRef<void>;
|
|
15
|
-
readonly optionSelected: import("@angular/core").OutputEmitterRef<
|
|
13
|
+
readonly optionSelected: import("@angular/core").OutputEmitterRef<T | null>;
|
|
16
14
|
readonly addOption: import("@angular/core").OutputEmitterRef<string>;
|
|
17
|
-
items: QueryList<
|
|
15
|
+
items: QueryList<AutosuggestOptionComponentType<T>>;
|
|
18
16
|
readonly template: import("@angular/core").Signal<TemplateRef<any>>;
|
|
19
17
|
readonly panel: import("@angular/core").Signal<ElementRef<HTMLDivElement>>;
|
|
20
18
|
readonly searchTerm: import("@angular/core").WritableSignal<string>;
|
|
21
|
-
readonly slicedOptions: import("@angular/core").Signal<
|
|
19
|
+
readonly slicedOptions: import("@angular/core").Signal<T[]>;
|
|
22
20
|
readonly hasMoreResults: import("@angular/core").Signal<boolean>;
|
|
23
21
|
readonly numberOfLeftOverResults: import("@angular/core").Signal<number>;
|
|
24
|
-
keyManager: ActiveDescendantKeyManager<
|
|
22
|
+
keyManager: ActiveDescendantKeyManager<AutosuggestOptionComponentType<T>> | undefined;
|
|
25
23
|
showPanel: boolean;
|
|
26
24
|
id: string;
|
|
27
25
|
isOpen: boolean;
|
|
@@ -29,11 +27,11 @@ export declare class AutosuggestPanelComponent implements AfterViewInit, OnDestr
|
|
|
29
27
|
constructor();
|
|
30
28
|
ngAfterViewInit(): void;
|
|
31
29
|
ngOnDestroy(): void;
|
|
32
|
-
getLabelOption(option: AutosuggestOption): string;
|
|
30
|
+
getLabelOption(option: AutosuggestOption<T>): string;
|
|
33
31
|
setScrollTop(scrollTop: number): void;
|
|
34
32
|
setVisibility(): void;
|
|
35
|
-
emitSelectEvent(option:
|
|
33
|
+
emitSelectEvent(option: AutosuggestOptionComponentType<T>): void;
|
|
36
34
|
addNewOption(value: string): void;
|
|
37
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<AutosuggestPanelComponent
|
|
38
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AutosuggestPanelComponent
|
|
35
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AutosuggestPanelComponent<any>, never>;
|
|
36
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AutosuggestPanelComponent<any>, "ndw-autosuggest", ["apAutocomplete"], { "suggestions": { "alias": "suggestions"; "required": false; "isSignal": true; }; "enableAddOption": { "alias": "enableAddOption"; "required": false; "isSignal": true; }; "maxResults": { "alias": "maxResults"; "required": false; "isSignal": true; }; "noResultText": { "alias": "noResultText"; "required": false; "isSignal": true; }; "displayWith": { "alias": "displayWith"; "required": false; "isSignal": true; }; }, { "opened": "opened"; "closed": "closed"; "optionSelected": "optionSelected"; "addOption": "addOption"; }, never, never, true, never>;
|
|
39
37
|
}
|
|
@@ -1,11 +1,10 @@
|
|
|
1
1
|
import { AfterViewInit, OnDestroy } from '@angular/core';
|
|
2
2
|
import { ControlValueAccessor } from '@angular/forms';
|
|
3
|
-
import {
|
|
4
|
-
import { AutosuggestOptionComponent } from './autosuggest-option/autosuggest-option.component';
|
|
3
|
+
import { AutosuggestOptionComponentType } from './autosuggest-option/autosuggest-option.model';
|
|
5
4
|
import { AutosuggestPanelComponent } from './autosuggest-panel/autosuggest-panel.component';
|
|
6
5
|
import * as i0 from "@angular/core";
|
|
7
|
-
export declare class AutosuggestDirective implements ControlValueAccessor, AfterViewInit, OnDestroy {
|
|
8
|
-
readonly ndwAutosuggest: import("@angular/core").InputSignal<AutosuggestPanelComponent
|
|
6
|
+
export declare class AutosuggestDirective<T> implements ControlValueAccessor, AfterViewInit, OnDestroy {
|
|
7
|
+
readonly ndwAutosuggest: import("@angular/core").InputSignal<AutosuggestPanelComponent<T>>;
|
|
9
8
|
readonly filter: import("@angular/core").OutputEmitterRef<string>;
|
|
10
9
|
private overlayAttached;
|
|
11
10
|
private overlayRef;
|
|
@@ -26,8 +25,8 @@ export declare class AutosuggestDirective implements ControlValueAccessor, After
|
|
|
26
25
|
private readonly viewportRuler;
|
|
27
26
|
private readonly destroyRef;
|
|
28
27
|
get panelOpen(): boolean;
|
|
29
|
-
get activeOption():
|
|
30
|
-
get autosuggest(): AutosuggestPanelComponent
|
|
28
|
+
get activeOption(): AutosuggestOptionComponentType<T> | null;
|
|
29
|
+
get autosuggest(): AutosuggestPanelComponent<T>;
|
|
31
30
|
private get panelClosingActions();
|
|
32
31
|
private readonly optionSelections;
|
|
33
32
|
ngAfterViewInit(): void;
|
|
@@ -67,6 +66,6 @@ export declare class AutosuggestDirective implements ControlValueAccessor, After
|
|
|
67
66
|
private clearPreviousSelectedOption;
|
|
68
67
|
private canOpen;
|
|
69
68
|
private getWindow;
|
|
70
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<AutosuggestDirective
|
|
71
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<AutosuggestDirective
|
|
69
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AutosuggestDirective<any>, never>;
|
|
70
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<AutosuggestDirective<any>, "input[ndwAutosuggest], textarea[ndwAutosuggest]", ["ndwAutosuggestTrigger"], { "ndwAutosuggest": { "alias": "ndwAutosuggest"; "required": true; "isSignal": true; }; }, { "filter": "filter"; }, never, never, true, never>;
|
|
72
71
|
}
|
|
@@ -3,7 +3,7 @@ import * as i0 from "@angular/core";
|
|
|
3
3
|
export declare class CheckboxComponent implements ControlValueAccessor {
|
|
4
4
|
checked: import("@angular/core").ModelSignal<boolean>;
|
|
5
5
|
switch: import("@angular/core").InputSignal<boolean>;
|
|
6
|
-
disabled: import("@angular/core").
|
|
6
|
+
disabled: import("@angular/core").ModelSignal<boolean>;
|
|
7
7
|
error: import("@angular/core").InputSignal<boolean>;
|
|
8
8
|
success: import("@angular/core").InputSignal<boolean>;
|
|
9
9
|
indeterminate: import("@angular/core").InputSignal<boolean>;
|
|
@@ -14,6 +14,7 @@ export declare class CheckboxComponent implements ControlValueAccessor {
|
|
|
14
14
|
writeValue(value: boolean): void;
|
|
15
15
|
registerOnChange(fn: (value: boolean) => void): void;
|
|
16
16
|
registerOnTouched(): void;
|
|
17
|
+
setDisabledState(isDisabled: boolean): void;
|
|
17
18
|
static ɵfac: i0.ɵɵFactoryDeclaration<CheckboxComponent, never>;
|
|
18
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CheckboxComponent, "ndw-checkbox", never, { "checked": { "alias": "checked"; "required": false; "isSignal": true; }; "switch": { "alias": "switch"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "error": { "alias": "error"; "required": false; "isSignal": true; }; "success": { "alias": "success"; "required": false; "isSignal": true; }; "indeterminate": { "alias": "indeterminate"; "required": false; "isSignal": true; }; "required": { "alias": "required"; "required": false; "isSignal": true; }; }, { "checked": "checkedChange"; }, never, ["*"], true, never>;
|
|
19
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CheckboxComponent, "ndw-checkbox", never, { "checked": { "alias": "checked"; "required": false; "isSignal": true; }; "switch": { "alias": "switch"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "error": { "alias": "error"; "required": false; "isSignal": true; }; "success": { "alias": "success"; "required": false; "isSignal": true; }; "indeterminate": { "alias": "indeterminate"; "required": false; "isSignal": true; }; "required": { "alias": "required"; "required": false; "isSignal": true; }; }, { "checked": "checkedChange"; "disabled": "disabledChange"; }, never, ["*"], true, never>;
|
|
19
20
|
}
|
|
@@ -1,15 +1,16 @@
|
|
|
1
1
|
import { OnDestroy, OnInit } from '@angular/core';
|
|
2
|
-
import { InputDirective } from '../input
|
|
2
|
+
import { InputDirective } from '../input';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export declare class ClearSearchButtonComponent implements OnInit, OnDestroy {
|
|
5
5
|
readonly disabled: import("@angular/core").InputSignal<boolean>;
|
|
6
6
|
readonly input: import("@angular/core").InputSignal<InputDirective | undefined>;
|
|
7
7
|
readonly ariaLabel: import("@angular/core").InputSignal<string>;
|
|
8
|
+
readonly buttonClicked: import("@angular/core").OutputEmitterRef<void>;
|
|
8
9
|
protected readonly inputValue: import("@angular/core").WritableSignal<string>;
|
|
9
10
|
private readonly onInput;
|
|
10
11
|
ngOnInit(): void;
|
|
11
12
|
ngOnDestroy(): void;
|
|
12
13
|
protected clear(): void;
|
|
13
14
|
static ɵfac: i0.ɵɵFactoryDeclaration<ClearSearchButtonComponent, never>;
|
|
14
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ClearSearchButtonComponent, "ndw-clear-search-button", never, { "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "input": { "alias": "input"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
15
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ClearSearchButtonComponent, "ndw-clear-search-button", never, { "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "input": { "alias": "input"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; }, { "buttonClicked": "buttonClicked"; }, never, never, true, never>;
|
|
15
16
|
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './clear-search-button.component';
|
|
@@ -3,20 +3,20 @@ import { ControlValueAccessor } from '@angular/forms';
|
|
|
3
3
|
import { FileUploadText } from './file-upload-text.interface';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
export declare class FileUploadComponent implements ControlValueAccessor {
|
|
6
|
-
readonly fileInputElement: import("@angular/core").Signal<ElementRef<HTMLInputElement>>;
|
|
7
6
|
readonly allowedFileTypeRegex: import("@angular/core").InputSignal<RegExp | undefined>;
|
|
7
|
+
readonly disabled: import("@angular/core").ModelSignal<boolean>;
|
|
8
8
|
readonly fileUploadText: import("@angular/core").InputSignal<FileUploadText>;
|
|
9
|
-
readonly uploadDate: import("@angular/core").InputSignal<string>;
|
|
10
9
|
readonly maxFileSizeInBytes: import("@angular/core").InputSignal<number>;
|
|
11
|
-
readonly disabled: import("@angular/core").InputSignal<boolean>;
|
|
12
10
|
readonly readonly: import("@angular/core").InputSignal<boolean>;
|
|
11
|
+
readonly uploadDate: import("@angular/core").InputSignal<string>;
|
|
13
12
|
readonly draggingOver: import("@angular/core").ModelSignal<boolean>;
|
|
14
|
-
readonly selectedFile: import("@angular/core").ModelSignal<File | null | undefined>;
|
|
15
13
|
readonly error: import("@angular/core").ModelSignal<boolean>;
|
|
16
|
-
readonly success: import("@angular/core").ModelSignal<boolean>;
|
|
17
|
-
readonly incorrectFileType: import("@angular/core").ModelSignal<boolean>;
|
|
18
14
|
readonly incorrectFileSize: import("@angular/core").ModelSignal<boolean>;
|
|
15
|
+
readonly incorrectFileType: import("@angular/core").ModelSignal<boolean>;
|
|
16
|
+
readonly selectedFile: import("@angular/core").ModelSignal<File | null | undefined>;
|
|
17
|
+
readonly success: import("@angular/core").ModelSignal<boolean>;
|
|
19
18
|
private readonly canEdit;
|
|
19
|
+
readonly fileInputElement: import("@angular/core").Signal<ElementRef<HTMLInputElement>>;
|
|
20
20
|
onKeyDown(event: KeyboardEvent): void;
|
|
21
21
|
onClick(): void;
|
|
22
22
|
onDragLeave(event: DragEvent): void;
|
|
@@ -30,10 +30,11 @@ export declare class FileUploadComponent implements ControlValueAccessor {
|
|
|
30
30
|
writeValue(value: File): void;
|
|
31
31
|
registerOnChange(fn: (value: File | null | undefined) => void): void;
|
|
32
32
|
registerOnTouched(): void;
|
|
33
|
+
setDisabledState(isDisabled: boolean): void;
|
|
33
34
|
private selectFile;
|
|
34
35
|
private resetFile;
|
|
35
36
|
private correctFileSize;
|
|
36
37
|
private correctFileType;
|
|
37
38
|
static ɵfac: i0.ɵɵFactoryDeclaration<FileUploadComponent, never>;
|
|
38
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FileUploadComponent, "ndw-file-upload", never, { "allowedFileTypeRegex": { "alias": "allowedFileTypeRegex"; "required": false; "isSignal": true; }; "
|
|
39
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FileUploadComponent, "ndw-file-upload", never, { "allowedFileTypeRegex": { "alias": "allowedFileTypeRegex"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "fileUploadText": { "alias": "fileUploadText"; "required": false; "isSignal": true; }; "maxFileSizeInBytes": { "alias": "maxFileSizeInBytes"; "required": false; "isSignal": true; }; "readonly": { "alias": "readonly"; "required": false; "isSignal": true; }; "uploadDate": { "alias": "uploadDate"; "required": false; "isSignal": true; }; "draggingOver": { "alias": "draggingOver"; "required": false; "isSignal": true; }; "error": { "alias": "error"; "required": false; "isSignal": true; }; "incorrectFileSize": { "alias": "incorrectFileSize"; "required": false; "isSignal": true; }; "incorrectFileType": { "alias": "incorrectFileType"; "required": false; "isSignal": true; }; "selectedFile": { "alias": "selectedFile"; "required": false; "isSignal": true; }; "success": { "alias": "success"; "required": false; "isSignal": true; }; }, { "disabled": "disabledChange"; "draggingOver": "draggingOverChange"; "error": "errorChange"; "incorrectFileSize": "incorrectFileSizeChange"; "incorrectFileType": "incorrectFileTypeChange"; "selectedFile": "selectedFileChange"; "success": "successChange"; }, never, never, true, never>;
|
|
39
40
|
}
|
|
@@ -10,6 +10,7 @@ export declare class FormFieldComponent {
|
|
|
10
10
|
readonly success: import("@angular/core").InputSignal<string | undefined>;
|
|
11
11
|
readonly info: import("@angular/core").InputSignal<string | undefined>;
|
|
12
12
|
readonly tooltip: import("@angular/core").InputSignal<string>;
|
|
13
|
+
readonly clearButtonClicked: import("@angular/core").OutputEmitterRef<void>;
|
|
13
14
|
protected readonly monthInput: import("@angular/core").Signal<MonthInputComponent | undefined>;
|
|
14
15
|
protected readonly regularInput: import("@angular/core").Signal<InputDirective | undefined>;
|
|
15
16
|
protected readonly input: import("@angular/core").Signal<InputDirective | undefined>;
|
|
@@ -26,5 +27,5 @@ export declare class FormFieldComponent {
|
|
|
26
27
|
private setInputId;
|
|
27
28
|
private setAriaDescribedBy;
|
|
28
29
|
static ɵfac: i0.ɵɵFactoryDeclaration<FormFieldComponent, never>;
|
|
29
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FormFieldComponent, "ndw-form-field", never, { "label": { "alias": "label"; "required": true; "isSignal": true; }; "suffixAriaLabel": { "alias": "suffixAriaLabel"; "required": false; "isSignal": true; }; "hideLabel": { "alias": "hideLabel"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "error": { "alias": "error"; "required": false; "isSignal": true; }; "success": { "alias": "success"; "required": false; "isSignal": true; }; "info": { "alias": "info"; "required": false; "isSignal": true; }; "tooltip": { "alias": "tooltip"; "required": false; "isSignal": true; }; }, {}, ["monthInput", "regularInput"], ["*"], true, never>;
|
|
30
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FormFieldComponent, "ndw-form-field", never, { "label": { "alias": "label"; "required": true; "isSignal": true; }; "suffixAriaLabel": { "alias": "suffixAriaLabel"; "required": false; "isSignal": true; }; "hideLabel": { "alias": "hideLabel"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "error": { "alias": "error"; "required": false; "isSignal": true; }; "success": { "alias": "success"; "required": false; "isSignal": true; }; "info": { "alias": "info"; "required": false; "isSignal": true; }; "tooltip": { "alias": "tooltip"; "required": false; "isSignal": true; }; }, { "clearButtonClicked": "clearButtonClicked"; }, ["monthInput", "regularInput"], ["*"], true, never>;
|
|
30
31
|
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type InputType = 'date' | 'email' | 'number' | 'password' | 'search' | 'tel' | 'text' | 'time' | 'url';
|
|
@@ -3,7 +3,8 @@ import { ControlValueAccessor, NgControl } from '@angular/forms';
|
|
|
3
3
|
import { InputDirective } from '../input';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
export declare class MonthInputComponent implements ControlValueAccessor, OnInit {
|
|
6
|
-
readonly
|
|
6
|
+
private readonly destroyRef;
|
|
7
|
+
protected readonly ngControl: NgControl | null;
|
|
7
8
|
readonly required: import("@angular/core").InputSignal<boolean>;
|
|
8
9
|
readonly showMonthPickerLabel: import("@angular/core").InputSignal<string>;
|
|
9
10
|
readonly placeholder: import("@angular/core").InputSignal<string>;
|
|
@@ -11,21 +12,21 @@ export declare class MonthInputComponent implements ControlValueAccessor, OnInit
|
|
|
11
12
|
readonly minDate: import("@angular/core").InputSignal<Date>;
|
|
12
13
|
readonly maxDate: import("@angular/core").InputSignal<Date>;
|
|
13
14
|
readonly monthLabels: import("@angular/core").InputSignal<string[]>;
|
|
14
|
-
readonly
|
|
15
|
-
readonly
|
|
16
|
-
protected showMonthPicker: boolean;
|
|
15
|
+
readonly disabled: import("@angular/core").ModelSignal<boolean>;
|
|
16
|
+
readonly readonly: import("@angular/core").InputSignal<boolean>;
|
|
17
17
|
protected readonly selectedYear: import("@angular/core").ModelSignal<number>;
|
|
18
18
|
protected readonly selectedMonth: import("@angular/core").ModelSignal<number | null>;
|
|
19
|
+
readonly inputElement: import("@angular/core").Signal<HTMLInputElement | HTMLSelectElement | HTMLTextAreaElement | undefined>;
|
|
19
20
|
protected readonly selectedDate: import("@angular/core").Signal<Date | null>;
|
|
20
21
|
protected readonly inputValue: import("@angular/core").Signal<string | null>;
|
|
21
|
-
protected readonly ngControl: NgControl | null;
|
|
22
22
|
protected readonly years: import("@angular/core").Signal<number[]>;
|
|
23
23
|
protected readonly months: import("@angular/core").Signal<{
|
|
24
24
|
label: string;
|
|
25
25
|
value: number;
|
|
26
26
|
}[]>;
|
|
27
|
+
readonly input: import("@angular/core").Signal<InputDirective | undefined>;
|
|
28
|
+
protected showMonthPicker: boolean;
|
|
27
29
|
private onChange;
|
|
28
|
-
private readonly destroyRef;
|
|
29
30
|
constructor();
|
|
30
31
|
ngOnInit(): void;
|
|
31
32
|
writeValue(value: Date | null): void;
|
|
@@ -38,5 +39,5 @@ export declare class MonthInputComponent implements ControlValueAccessor, OnInit
|
|
|
38
39
|
protected onKeyDown(event: KeyboardEvent): void;
|
|
39
40
|
private adjustMonth;
|
|
40
41
|
static ɵfac: i0.ɵɵFactoryDeclaration<MonthInputComponent, never>;
|
|
41
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MonthInputComponent, "ndw-month-input", never, { "
|
|
42
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MonthInputComponent, "ndw-month-input", never, { "required": { "alias": "required"; "required": false; "isSignal": true; }; "showMonthPickerLabel": { "alias": "showMonthPickerLabel"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "yearPlaceholder": { "alias": "yearPlaceholder"; "required": false; "isSignal": true; }; "minDate": { "alias": "minDate"; "required": false; "isSignal": true; }; "maxDate": { "alias": "maxDate"; "required": false; "isSignal": true; }; "monthLabels": { "alias": "monthLabels"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "readonly": { "alias": "readonly"; "required": false; "isSignal": true; }; "selectedYear": { "alias": "selectedYear"; "required": false; "isSignal": true; }; "selectedMonth": { "alias": "selectedMonth"; "required": false; "isSignal": true; }; }, { "disabled": "disabledChange"; "selectedYear": "selectedYearChange"; "selectedMonth": "selectedMonthChange"; }, never, never, true, never>;
|
|
42
43
|
}
|
|
@@ -3,15 +3,18 @@ import { OptionGroupMode } from './option-group.model';
|
|
|
3
3
|
import { OptionComponent } from './option.component';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
export declare class OptionGroupComponent implements ControlValueAccessor {
|
|
6
|
+
private readonly ngControl;
|
|
7
|
+
readonly error: import("@angular/core").InputSignal<boolean>;
|
|
8
|
+
readonly readonly: import("@angular/core").InputSignal<boolean>;
|
|
6
9
|
readonly fluid: import("@angular/core").InputSignal<boolean>;
|
|
7
10
|
readonly fluidColumns: import("@angular/core").InputSignal<number | null>;
|
|
8
|
-
readonly disabled: import("@angular/core").ModelSignal<boolean>;
|
|
9
11
|
readonly mode: import("@angular/core").InputSignal<OptionGroupMode>;
|
|
10
12
|
readonly required: import("@angular/core").InputSignal<boolean>;
|
|
11
|
-
readonly
|
|
13
|
+
readonly success: import("@angular/core").InputSignal<boolean>;
|
|
12
14
|
protected readonly checkedValues: import("@angular/core").ModelSignal<unknown[]>;
|
|
13
|
-
|
|
15
|
+
readonly disabled: import("@angular/core").ModelSignal<boolean>;
|
|
14
16
|
protected readonly fluidColumnStyle: import("@angular/core").Signal<string | null>;
|
|
17
|
+
readonly children: import("@angular/core").Signal<readonly OptionComponent[]>;
|
|
15
18
|
protected readonly uuid: `${string}-${string}-${string}-${string}-${string}`;
|
|
16
19
|
constructor();
|
|
17
20
|
get isRequiredOrHasRequiredValidator(): boolean | null;
|
|
@@ -22,5 +25,5 @@ export declare class OptionGroupComponent implements ControlValueAccessor {
|
|
|
22
25
|
registerOnTouched(): void;
|
|
23
26
|
setDisabledState(isDisabled: boolean): void;
|
|
24
27
|
static ɵfac: i0.ɵɵFactoryDeclaration<OptionGroupComponent, never>;
|
|
25
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<OptionGroupComponent, "ndw-option-group", never, { "
|
|
28
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<OptionGroupComponent, "ndw-option-group", never, { "error": { "alias": "error"; "required": false; "isSignal": true; }; "readonly": { "alias": "readonly"; "required": false; "isSignal": true; }; "fluid": { "alias": "fluid"; "required": false; "isSignal": true; }; "fluidColumns": { "alias": "fluidColumns"; "required": false; "isSignal": true; }; "mode": { "alias": "mode"; "required": false; "isSignal": true; }; "required": { "alias": "required"; "required": false; "isSignal": true; }; "success": { "alias": "success"; "required": false; "isSignal": true; }; "checkedValues": { "alias": "checkedValues"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; }, { "checkedValues": "checkedValuesChange"; "disabled": "disabledChange"; }, ["children"], never, true, never>;
|
|
26
29
|
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './picker-button.component';
|
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
import { InputType } from '../input';
|
|
2
|
-
import { InputDirective } from '../input/input.directive';
|
|
1
|
+
import { InputDirective, InputType } from '../input';
|
|
3
2
|
import * as i0 from "@angular/core";
|
|
4
3
|
export declare class PickerButtonComponent {
|
|
5
4
|
readonly disabled: import("@angular/core").InputSignal<boolean>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { AfterViewInit
|
|
1
|
+
import { AfterViewInit } from '@angular/core';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
3
|
/**
|
|
4
4
|
* Directive that automatically grows a textarea element to fit its content.
|
|
@@ -9,11 +9,14 @@ import * as i0 from "@angular/core";
|
|
|
9
9
|
*
|
|
10
10
|
* So for now a directive is used to achieve the same effect.
|
|
11
11
|
*/
|
|
12
|
-
export declare class AutoGrowDirective implements AfterViewInit
|
|
12
|
+
export declare class AutoGrowDirective implements AfterViewInit {
|
|
13
13
|
private readonly elementRef;
|
|
14
|
+
private readonly ngControl;
|
|
15
|
+
private readonly destroyRef;
|
|
14
16
|
get element(): HTMLTextAreaElement;
|
|
15
17
|
ngAfterViewInit(): void;
|
|
16
|
-
|
|
18
|
+
fitContentInTextArea(): void;
|
|
19
|
+
private updateHeightOnNgControlUpdate;
|
|
17
20
|
static ɵfac: i0.ɵɵFactoryDeclaration<AutoGrowDirective, never>;
|
|
18
21
|
static ɵdir: i0.ɵɵDirectiveDeclaration<AutoGrowDirective, "textarea[ndwAutoGrow]", never, {}, {}, never, never, true, never>;
|
|
19
22
|
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class MaxCharDirective {
|
|
3
|
+
ndwMaxChar: import("@angular/core").InputSignal<number>;
|
|
4
|
+
maxCharText: import("@angular/core").InputSignal<string>;
|
|
5
|
+
private readonly elementRef;
|
|
6
|
+
private readonly renderer;
|
|
7
|
+
private counterElement;
|
|
8
|
+
get element(): HTMLTextAreaElement;
|
|
9
|
+
constructor();
|
|
10
|
+
onInput(): void;
|
|
11
|
+
private createCounterElement;
|
|
12
|
+
private removeCounterElement;
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MaxCharDirective, never>;
|
|
14
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MaxCharDirective, "textarea[ndwMaxChar]", never, { "ndwMaxChar": { "alias": "ndwMaxChar"; "required": false; "isSignal": true; }; "maxCharText": { "alias": "maxCharText"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
15
|
+
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { IconSize } from '
|
|
1
|
+
import { IconSize } from '@ndwnu/core';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
3
|
export type ButtonType = 'button' | 'submit' | 'reset';
|
|
4
4
|
export type IconVariant = 'primary' | 'link' | 'grey' | 'white';
|
|
@@ -27,7 +27,7 @@ export declare class ActionIconComponent {
|
|
|
27
27
|
/**
|
|
28
28
|
* Event emitted when the button is clicked.
|
|
29
29
|
*/
|
|
30
|
-
readonly
|
|
30
|
+
readonly clicked: import("@angular/core").OutputEmitterRef<void>;
|
|
31
31
|
static ɵfac: i0.ɵɵFactoryDeclaration<ActionIconComponent, never>;
|
|
32
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ActionIconComponent, "ndw-action-icon", never, { "ariaLabel": { "alias": "ariaLabel"; "required": true; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "buttonType": { "alias": "buttonType"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; }, { "
|
|
32
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ActionIconComponent, "ndw-action-icon", never, { "ariaLabel": { "alias": "ariaLabel"; "required": true; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "buttonType": { "alias": "buttonType"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; }, { "clicked": "clicked"; }, never, ["*"], true, never>;
|
|
33
33
|
}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { CoreIconComponent } from '@ndwnu/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class IconComponent extends CoreIconComponent {
|
|
4
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<IconComponent, never>;
|
|
5
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<IconComponent, "ndw-icon", never, {}, {}, never, ["*"], true, never>;
|
|
6
|
+
}
|
|
@@ -2,13 +2,13 @@ import { MenuItem, NdwBrand } from '../main-navigation';
|
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
3
|
export declare class LayoutComponent {
|
|
4
4
|
applicationName: import("@angular/core").InputSignal<string>;
|
|
5
|
-
topMenuItems: import("@angular/core").InputSignal<MenuItem[]>;
|
|
6
5
|
bottomMenuItems: import("@angular/core").InputSignal<MenuItem[] | undefined>;
|
|
7
6
|
brand: import("@angular/core").InputSignal<NdwBrand>;
|
|
8
7
|
isCollapsible: import("@angular/core").InputSignal<boolean>;
|
|
9
8
|
isExpanded: import("@angular/core").InputSignal<boolean>;
|
|
10
9
|
menuFooterTexts: import("@angular/core").InputSignal<string[] | undefined>;
|
|
10
|
+
topMenuItems: import("@angular/core").InputSignal<MenuItem[]>;
|
|
11
11
|
version: import("@angular/core").InputSignal<string | undefined>;
|
|
12
12
|
static ɵfac: i0.ɵɵFactoryDeclaration<LayoutComponent, never>;
|
|
13
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<LayoutComponent, "ndw-layout", never, { "applicationName": { "alias": "applicationName"; "required": true; "isSignal": true; }; "
|
|
13
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LayoutComponent, "ndw-layout", never, { "applicationName": { "alias": "applicationName"; "required": true; "isSignal": true; }; "bottomMenuItems": { "alias": "bottomMenuItems"; "required": false; "isSignal": true; }; "brand": { "alias": "brand"; "required": false; "isSignal": true; }; "isCollapsible": { "alias": "isCollapsible"; "required": false; "isSignal": true; }; "isExpanded": { "alias": "isExpanded"; "required": false; "isSignal": true; }; "menuFooterTexts": { "alias": "menuFooterTexts"; "required": false; "isSignal": true; }; "topMenuItems": { "alias": "topMenuItems"; "required": true; "isSignal": true; }; "version": { "alias": "version"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
14
14
|
}
|
|
@@ -7,11 +7,11 @@ import * as i0 from "@angular/core";
|
|
|
7
7
|
export declare class MainNavigationComponent implements AfterViewInit, OnDestroy {
|
|
8
8
|
#private;
|
|
9
9
|
applicationName: import("@angular/core").InputSignal<string>;
|
|
10
|
-
topMenuItems: import("@angular/core").InputSignal<MenuItem[]>;
|
|
11
10
|
bottomMenuItems: import("@angular/core").InputSignal<MenuItem[] | undefined>;
|
|
12
11
|
brand: import("@angular/core").InputSignal<NdwBrand>;
|
|
13
12
|
footerTexts: import("@angular/core").InputSignal<string[] | undefined>;
|
|
14
13
|
isCollapsible: import("@angular/core").InputSignal<boolean>;
|
|
14
|
+
topMenuItems: import("@angular/core").InputSignal<MenuItem[]>;
|
|
15
15
|
version: import("@angular/core").InputSignal<string | undefined>;
|
|
16
16
|
closeButtonLabel: import("@angular/core").InputSignal<string>;
|
|
17
17
|
menuButtonLabel: import("@angular/core").InputSignal<string>;
|
|
@@ -22,18 +22,11 @@ export declare class MainNavigationComponent implements AfterViewInit, OnDestroy
|
|
|
22
22
|
isMobile: import("@angular/core").WritableSignal<boolean>;
|
|
23
23
|
brandImagePath: import("@angular/core").Signal<string>;
|
|
24
24
|
activeId?: number;
|
|
25
|
-
private selectedId?;
|
|
26
25
|
protected mobilePortal?: TemplatePortal<MainNavigationMenuComponent>;
|
|
27
26
|
onMouseMove(event: MouseEvent): void;
|
|
28
27
|
onWindowResize(): void;
|
|
29
28
|
activeChildItems: SimpleMenuItem[];
|
|
30
29
|
overlayPositions: ConnectedPosition[];
|
|
31
|
-
private overlay;
|
|
32
|
-
private viewContainerRef;
|
|
33
|
-
private document;
|
|
34
|
-
private platform;
|
|
35
|
-
private activeButton?;
|
|
36
|
-
private overlayRef?;
|
|
37
30
|
constructor();
|
|
38
31
|
ngAfterViewInit(): void;
|
|
39
32
|
ngOnDestroy(): void;
|
|
@@ -44,7 +37,6 @@ export declare class MainNavigationComponent implements AfterViewInit, OnDestroy
|
|
|
44
37
|
toggleChildMenu(item: MenuItem, event?: KeyboardEvent): void;
|
|
45
38
|
toggleMobileView(): void;
|
|
46
39
|
toggleView(): void;
|
|
47
|
-
private setPositionStrategy;
|
|
48
40
|
static ɵfac: i0.ɵɵFactoryDeclaration<MainNavigationComponent, never>;
|
|
49
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MainNavigationComponent, "ndw-main-navigation", never, { "applicationName": { "alias": "applicationName"; "required": true; "isSignal": true; }; "
|
|
41
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MainNavigationComponent, "ndw-main-navigation", never, { "applicationName": { "alias": "applicationName"; "required": true; "isSignal": true; }; "bottomMenuItems": { "alias": "bottomMenuItems"; "required": false; "isSignal": true; }; "brand": { "alias": "brand"; "required": false; "isSignal": true; }; "footerTexts": { "alias": "footerTexts"; "required": false; "isSignal": true; }; "isCollapsible": { "alias": "isCollapsible"; "required": false; "isSignal": true; }; "topMenuItems": { "alias": "topMenuItems"; "required": true; "isSignal": true; }; "version": { "alias": "version"; "required": false; "isSignal": true; }; "closeButtonLabel": { "alias": "closeButtonLabel"; "required": false; "isSignal": true; }; "menuButtonLabel": { "alias": "menuButtonLabel"; "required": false; "isSignal": true; }; "isExpanded": { "alias": "isExpanded"; "required": false; "isSignal": true; }; "isMobileExpanded": { "alias": "isMobileExpanded"; "required": false; "isSignal": true; }; }, { "isExpanded": "isExpandedChange"; "isMobileExpanded": "isMobileExpandedChange"; }, never, never, true, never>;
|
|
50
42
|
}
|