@ascentgl/ads-ui 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +7 -0
- package/esm2022/ascentgl-ads-ui.mjs +5 -0
- package/esm2022/index.mjs +87 -0
- package/esm2022/lib/components/avatar/avatar.component.mjs +50 -0
- package/esm2022/lib/components/avatar/avatar.module.mjs +19 -0
- package/esm2022/lib/components/avatar/avatar.types.mjs +2 -0
- package/esm2022/lib/components/avatar/index.mjs +2 -0
- package/esm2022/lib/components/avatar/public-api.mjs +3 -0
- package/esm2022/lib/components/badge/index.mjs +2 -0
- package/esm2022/lib/components/badge/numeric-badge.component.mjs +35 -0
- package/esm2022/lib/components/badge/numeric-badge.module.mjs +19 -0
- package/esm2022/lib/components/badge/public-api.mjs +3 -0
- package/esm2022/lib/components/breadcrumb/breadcrumb.component.mjs +62 -0
- package/esm2022/lib/components/breadcrumb/breadcrumb.module.mjs +21 -0
- package/esm2022/lib/components/breadcrumb/breadcrumb.type.mjs +2 -0
- package/esm2022/lib/components/breadcrumb/breadcrumb.visual-processor.mjs +151 -0
- package/esm2022/lib/components/breadcrumb/index.mjs +2 -0
- package/esm2022/lib/components/breadcrumb/public-api.mjs +4 -0
- package/esm2022/lib/components/buttons/button/button.component.mjs +31 -0
- package/esm2022/lib/components/buttons/button/button.module.mjs +19 -0
- package/esm2022/lib/components/buttons/button/index.mjs +2 -0
- package/esm2022/lib/components/buttons/button/public-api.mjs +3 -0
- package/esm2022/lib/components/buttons/button-container/button-container.component.mjs +17 -0
- package/esm2022/lib/components/buttons/button-container/button-container.module.mjs +18 -0
- package/esm2022/lib/components/buttons/button-container/index.mjs +2 -0
- package/esm2022/lib/components/buttons/button-container/public-api.mjs +3 -0
- package/esm2022/lib/components/buttons/icon-button/icon-button.component.mjs +36 -0
- package/esm2022/lib/components/buttons/icon-button/icon-button.module.mjs +20 -0
- package/esm2022/lib/components/buttons/icon-button/index.mjs +2 -0
- package/esm2022/lib/components/buttons/icon-button/public-api.mjs +3 -0
- package/esm2022/lib/components/buttons/link-button/index.mjs +2 -0
- package/esm2022/lib/components/buttons/link-button/link-button.component.mjs +18 -0
- package/esm2022/lib/components/buttons/link-button/link-button.module.mjs +20 -0
- package/esm2022/lib/components/buttons/link-button/public-api.mjs +3 -0
- package/esm2022/lib/components/buttons/selection-button/index.mjs +2 -0
- package/esm2022/lib/components/buttons/selection-button/public-api.mjs +3 -0
- package/esm2022/lib/components/buttons/selection-button/selection-button.component.mjs +60 -0
- package/esm2022/lib/components/buttons/selection-button/selection-button.module.mjs +20 -0
- package/esm2022/lib/components/card/card.component.mjs +11 -0
- package/esm2022/lib/components/card/card.module.mjs +18 -0
- package/esm2022/lib/components/card/index.mjs +2 -0
- package/esm2022/lib/components/card/public-api.mjs +3 -0
- package/esm2022/lib/components/chip/chip.component.mjs +45 -0
- package/esm2022/lib/components/chip/chip.module.mjs +19 -0
- package/esm2022/lib/components/chip/chip.types.mjs +2 -0
- package/esm2022/lib/components/chip/index.mjs +2 -0
- package/esm2022/lib/components/chip/public-api.mjs +3 -0
- package/esm2022/lib/components/divider/divider.component.mjs +43 -0
- package/esm2022/lib/components/divider/divider.module.mjs +18 -0
- package/esm2022/lib/components/divider/index.mjs +2 -0
- package/esm2022/lib/components/divider/public-api.mjs +3 -0
- package/esm2022/lib/components/drag-and-drop-list/dom.element.mjs +62 -0
- package/esm2022/lib/components/drag-and-drop-list/drag-and-drop-list.component.mjs +349 -0
- package/esm2022/lib/components/drag-and-drop-list/drag-and-drop-list.enums.mjs +2 -0
- package/esm2022/lib/components/drag-and-drop-list/drag-and-drop-list.module.mjs +18 -0
- package/esm2022/lib/components/drag-and-drop-list/dragged.placeholder.mjs +63 -0
- package/esm2022/lib/components/drag-and-drop-list/index.mjs +2 -0
- package/esm2022/lib/components/drag-and-drop-list/public-api.mjs +3 -0
- package/esm2022/lib/components/error-page/error-page-code/error-page-code.component.mjs +14 -0
- package/esm2022/lib/components/error-page/error-page-code/error-page-code.module.mjs +18 -0
- package/esm2022/lib/components/error-page/error-page-code/index.mjs +2 -0
- package/esm2022/lib/components/error-page/error-page-code/public-api.mjs +3 -0
- package/esm2022/lib/components/error-page/error-page.component.mjs +110 -0
- package/esm2022/lib/components/error-page/error-page.module.mjs +25 -0
- package/esm2022/lib/components/error-page/error-page.types.mjs +7 -0
- package/esm2022/lib/components/error-page/index.mjs +2 -0
- package/esm2022/lib/components/error-page/public-api.mjs +4 -0
- package/esm2022/lib/components/expansion-panel/expansion-panel.component.mjs +33 -0
- package/esm2022/lib/components/expansion-panel/expansion-panel.module.mjs +36 -0
- package/esm2022/lib/components/expansion-panel/index.mjs +2 -0
- package/esm2022/lib/components/expansion-panel/public-api.mjs +3 -0
- package/esm2022/lib/components/footer/container/footer-container.component.mjs +11 -0
- package/esm2022/lib/components/footer/container/footer-container.module.mjs +16 -0
- package/esm2022/lib/components/footer/container/index.mjs +2 -0
- package/esm2022/lib/components/footer/container/public-api.mjs +3 -0
- package/esm2022/lib/components/footer/footer.component.mjs +35 -0
- package/esm2022/lib/components/footer/footer.component.types.mjs +2 -0
- package/esm2022/lib/components/footer/footer.module.mjs +18 -0
- package/esm2022/lib/components/footer/index.mjs +2 -0
- package/esm2022/lib/components/footer/public-api.mjs +4 -0
- package/esm2022/lib/components/form-fields/abstracts/abstract.base.component.mjs +155 -0
- package/esm2022/lib/components/form-fields/abstracts/abstract.dropdown.component.mjs +108 -0
- package/esm2022/lib/components/form-fields/abstracts/abstract.input.component.mjs +52 -0
- package/esm2022/lib/components/form-fields/area/index.mjs +2 -0
- package/esm2022/lib/components/form-fields/area/public-api.mjs +3 -0
- package/esm2022/lib/components/form-fields/area/textarea.component.mjs +37 -0
- package/esm2022/lib/components/form-fields/area/textarea.module.mjs +55 -0
- package/esm2022/lib/components/form-fields/common/dropdown-option-template.directive.mjs +17 -0
- package/esm2022/lib/components/form-fields/common/error/error.component.mjs +29 -0
- package/esm2022/lib/components/form-fields/common/hint/hint.component.mjs +36 -0
- package/esm2022/lib/components/form-fields/common/input.tooltip.component.mjs +38 -0
- package/esm2022/lib/components/form-fields/common/success/success.component.mjs +29 -0
- package/esm2022/lib/components/form-fields/datepickers/date-picker/datepicker.component.mjs +61 -0
- package/esm2022/lib/components/form-fields/datepickers/date-picker/datepicker.module.mjs +87 -0
- package/esm2022/lib/components/form-fields/datepickers/date-picker/index.mjs +2 -0
- package/esm2022/lib/components/form-fields/datepickers/date-picker/public-api.mjs +3 -0
- package/esm2022/lib/components/form-fields/datepickers/datetime-picker/custom-datetime-format.mjs +36 -0
- package/esm2022/lib/components/form-fields/datepickers/datetime-picker/custom-datetime.adapter.mjs +49 -0
- package/esm2022/lib/components/form-fields/datepickers/datetime-picker/datetime-picker-format-directive.mjs +66 -0
- package/esm2022/lib/components/form-fields/datepickers/datetime-picker/datetime-template.formatter.mjs +171 -0
- package/esm2022/lib/components/form-fields/datepickers/datetime-picker/datetimepicker.component.mjs +398 -0
- package/esm2022/lib/components/form-fields/datepickers/datetime-picker/datetimepicker.module.mjs +87 -0
- package/esm2022/lib/components/form-fields/datepickers/datetime-picker/index.mjs +2 -0
- package/esm2022/lib/components/form-fields/datepickers/datetime-picker/public-api.mjs +3 -0
- package/esm2022/lib/components/form-fields/datepickers/time-picker/index.mjs +2 -0
- package/esm2022/lib/components/form-fields/datepickers/time-picker/public-api.mjs +3 -0
- package/esm2022/lib/components/form-fields/datepickers/time-picker/timepicker.component.mjs +77 -0
- package/esm2022/lib/components/form-fields/datepickers/time-picker/timepicker.module.mjs +90 -0
- package/esm2022/lib/components/form-fields/dropdowns/dropdown/dropdown.component.mjs +194 -0
- package/esm2022/lib/components/form-fields/dropdowns/dropdown/dropdown.module.mjs +71 -0
- package/esm2022/lib/components/form-fields/dropdowns/dropdown/index.mjs +2 -0
- package/esm2022/lib/components/form-fields/dropdowns/dropdown/public-api.mjs +3 -0
- package/esm2022/lib/components/form-fields/dropdowns/input-dropdown/index.mjs +2 -0
- package/esm2022/lib/components/form-fields/dropdowns/input-dropdown/input-dropdown.component.mjs +103 -0
- package/esm2022/lib/components/form-fields/dropdowns/input-dropdown/input-dropdown.module.mjs +67 -0
- package/esm2022/lib/components/form-fields/dropdowns/input-dropdown/public-api.mjs +3 -0
- package/esm2022/lib/components/form-fields/dropdowns/multi-select-dropdown/index.mjs +2 -0
- package/esm2022/lib/components/form-fields/dropdowns/multi-select-dropdown/multi-select-dropdown.component.mjs +67 -0
- package/esm2022/lib/components/form-fields/dropdowns/multi-select-dropdown/multi-select-dropdown.module.mjs +71 -0
- package/esm2022/lib/components/form-fields/dropdowns/multi-select-dropdown/public-api.mjs +3 -0
- package/esm2022/lib/components/form-fields/input/index.mjs +2 -0
- package/esm2022/lib/components/form-fields/input/input.component.mjs +72 -0
- package/esm2022/lib/components/form-fields/input/input.module.mjs +55 -0
- package/esm2022/lib/components/form-fields/input/public-api.mjs +3 -0
- package/esm2022/lib/components/form-fields/search-fields/search-dropdown/index.mjs +2 -0
- package/esm2022/lib/components/form-fields/search-fields/search-dropdown/public-api.mjs +3 -0
- package/esm2022/lib/components/form-fields/search-fields/search-dropdown/search-dropdown-highlighter.pipe.mjs +33 -0
- package/esm2022/lib/components/form-fields/search-fields/search-dropdown/search-dropdown.component.mjs +683 -0
- package/esm2022/lib/components/form-fields/search-fields/search-dropdown/search-dropdown.component.types.mjs +2 -0
- package/esm2022/lib/components/form-fields/search-fields/search-dropdown/search-dropdown.module.mjs +75 -0
- package/esm2022/lib/components/form-fields/search-fields/search-input/index.mjs +2 -0
- package/esm2022/lib/components/form-fields/search-fields/search-input/public-api.mjs +3 -0
- package/esm2022/lib/components/form-fields/search-fields/search-input/search-input.component.mjs +43 -0
- package/esm2022/lib/components/form-fields/search-fields/search-input/search-input.module.mjs +67 -0
- package/esm2022/lib/components/form-fields/selection-fields/checkbox/checkbox.component.mjs +47 -0
- package/esm2022/lib/components/form-fields/selection-fields/checkbox/checkbox.module.mjs +39 -0
- package/esm2022/lib/components/form-fields/selection-fields/checkbox/index.mjs +2 -0
- package/esm2022/lib/components/form-fields/selection-fields/checkbox/public-api.mjs +3 -0
- package/esm2022/lib/components/form-fields/selection-fields/radio-button/index.mjs +2 -0
- package/esm2022/lib/components/form-fields/selection-fields/radio-button/public-api.mjs +3 -0
- package/esm2022/lib/components/form-fields/selection-fields/radio-button/radio-button.component.mjs +53 -0
- package/esm2022/lib/components/form-fields/selection-fields/radio-button/radio-button.module.mjs +55 -0
- package/esm2022/lib/components/form-fields/selection-fields/slide-toggle/index.mjs +2 -0
- package/esm2022/lib/components/form-fields/selection-fields/slide-toggle/public-api.mjs +3 -0
- package/esm2022/lib/components/form-fields/selection-fields/slide-toggle/slide-toggle.component.mjs +56 -0
- package/esm2022/lib/components/form-fields/selection-fields/slide-toggle/slide-toggle.module.mjs +39 -0
- package/esm2022/lib/components/form-fields/selection-fields/slider/index.mjs +2 -0
- package/esm2022/lib/components/form-fields/selection-fields/slider/public-api.mjs +3 -0
- package/esm2022/lib/components/form-fields/selection-fields/slider/slider.component.mjs +44 -0
- package/esm2022/lib/components/form-fields/selection-fields/slider/slider.module.mjs +43 -0
- package/esm2022/lib/components/general/color-palette/colors.enums.mjs +39 -0
- package/esm2022/lib/components/header/container/header-container.component.mjs +19 -0
- package/esm2022/lib/components/header/container/header-container.module.mjs +16 -0
- package/esm2022/lib/components/header/container/index.mjs +2 -0
- package/esm2022/lib/components/header/container/public-api.mjs +3 -0
- package/esm2022/lib/components/header/header.component.mjs +11 -0
- package/esm2022/lib/components/header/header.module.mjs +16 -0
- package/esm2022/lib/components/header/index.mjs +2 -0
- package/esm2022/lib/components/header/org-display-text/index.mjs +2 -0
- package/esm2022/lib/components/header/org-display-text/org-display-text.component.mjs +22 -0
- package/esm2022/lib/components/header/org-display-text/org-display-text.module.mjs +18 -0
- package/esm2022/lib/components/header/org-display-text/public-api.mjs +3 -0
- package/esm2022/lib/components/header/public-api.mjs +3 -0
- package/esm2022/lib/components/icon-hover/icon-hover.component.mjs +33 -0
- package/esm2022/lib/components/icon-hover/icon-hover.module.mjs +16 -0
- package/esm2022/lib/components/icon-hover/index.mjs +2 -0
- package/esm2022/lib/components/icon-hover/public-api.mjs +3 -0
- package/esm2022/lib/components/logo/ascent-logo/ascent-logo.component.mjs +29 -0
- package/esm2022/lib/components/logo/ascent-logo/ascent-logo.module.mjs +18 -0
- package/esm2022/lib/components/logo/ascent-logo/index.mjs +2 -0
- package/esm2022/lib/components/logo/ascent-logo/public-api.mjs +3 -0
- package/esm2022/lib/components/logo/primary-logo/index.mjs +2 -0
- package/esm2022/lib/components/logo/primary-logo/primary-logo.component.mjs +37 -0
- package/esm2022/lib/components/logo/primary-logo/primary-logo.module.mjs +18 -0
- package/esm2022/lib/components/logo/primary-logo/public-api.mjs +3 -0
- package/esm2022/lib/components/main-menu/index.mjs +2 -0
- package/esm2022/lib/components/main-menu/main-menu-bottom-sheet/main-menu-bottom-sheet.component.mjs +22 -0
- package/esm2022/lib/components/main-menu/main-menu.component.mjs +76 -0
- package/esm2022/lib/components/main-menu/main-menu.module.mjs +45 -0
- package/esm2022/lib/components/main-menu/main-menu.types.mjs +2 -0
- package/esm2022/lib/components/main-menu/public-api.mjs +4 -0
- package/esm2022/lib/components/modal/index.mjs +2 -0
- package/esm2022/lib/components/modal/modal.component.mjs +41 -0
- package/esm2022/lib/components/modal/modal.module.mjs +22 -0
- package/esm2022/lib/components/modal/public-api.mjs +3 -0
- package/esm2022/lib/components/navigation/dashboard-edit-icon/dashboard-edit-icon.component.mjs +46 -0
- package/esm2022/lib/components/navigation/dashboard-edit-icon/dashboard-edit-icon.module.mjs +18 -0
- package/esm2022/lib/components/navigation/dashboard-edit-icon/index.mjs +2 -0
- package/esm2022/lib/components/navigation/dashboard-edit-icon/public-api.mjs +3 -0
- package/esm2022/lib/components/navigation/index.mjs +2 -0
- package/esm2022/lib/components/navigation/navigation-actions-container/index.mjs +2 -0
- package/esm2022/lib/components/navigation/navigation-actions-container/navigation-actions-container.component.mjs +20 -0
- package/esm2022/lib/components/navigation/navigation-actions-container/navigation-actions-container.module.mjs +18 -0
- package/esm2022/lib/components/navigation/navigation-actions-container/public-api.mjs +3 -0
- package/esm2022/lib/components/navigation/navigation-collapse-handle/index.mjs +2 -0
- package/esm2022/lib/components/navigation/navigation-collapse-handle/navigation-collapse-handle.component.mjs +48 -0
- package/esm2022/lib/components/navigation/navigation-collapse-handle/navigation-collapse-handle.module.mjs +18 -0
- package/esm2022/lib/components/navigation/navigation-collapse-handle/public-api.mjs +3 -0
- package/esm2022/lib/components/navigation/navigation-header/index.mjs +2 -0
- package/esm2022/lib/components/navigation/navigation-header/navigation-header.component.mjs +25 -0
- package/esm2022/lib/components/navigation/navigation-header/navigation-header.module.mjs +16 -0
- package/esm2022/lib/components/navigation/navigation-header/public-api.mjs +3 -0
- package/esm2022/lib/components/navigation/navigation-item/index.mjs +2 -0
- package/esm2022/lib/components/navigation/navigation-item/navigation-item.component.mjs +74 -0
- package/esm2022/lib/components/navigation/navigation-item/navigation-item.module.mjs +21 -0
- package/esm2022/lib/components/navigation/navigation-item/public-api.mjs +3 -0
- package/esm2022/lib/components/navigation/navigation-items-container/index.mjs +2 -0
- package/esm2022/lib/components/navigation/navigation-items-container/navigation-items-container.component.mjs +11 -0
- package/esm2022/lib/components/navigation/navigation-items-container/navigation-items-container.module.mjs +16 -0
- package/esm2022/lib/components/navigation/navigation-items-container/public-api.mjs +3 -0
- package/esm2022/lib/components/navigation/navigation.component.mjs +25 -0
- package/esm2022/lib/components/navigation/navigation.module.mjs +16 -0
- package/esm2022/lib/components/navigation/public-api.mjs +3 -0
- package/esm2022/lib/components/navigation/side-navigation/side-navigation-container/index.mjs +2 -0
- package/esm2022/lib/components/navigation/side-navigation/side-navigation-container/public-api.mjs +3 -0
- package/esm2022/lib/components/navigation/side-navigation/side-navigation-container/side-navigation-container.component.mjs +11 -0
- package/esm2022/lib/components/navigation/side-navigation/side-navigation-container/side-navigation-container.module.mjs +16 -0
- package/esm2022/lib/components/navigation/side-navigation/side-navigation-item/index.mjs +2 -0
- package/esm2022/lib/components/navigation/side-navigation/side-navigation-item/public-api.mjs +3 -0
- package/esm2022/lib/components/navigation/side-navigation/side-navigation-item/side-navigation-item.component.mjs +67 -0
- package/esm2022/lib/components/navigation/side-navigation/side-navigation-item/side-navigation-item.module.mjs +21 -0
- package/esm2022/lib/components/navigation/sub-navigation-item/index.mjs +2 -0
- package/esm2022/lib/components/navigation/sub-navigation-item/public-api.mjs +3 -0
- package/esm2022/lib/components/navigation/sub-navigation-item/sub-navigation-item.component.mjs +36 -0
- package/esm2022/lib/components/navigation/sub-navigation-item/sub-navigation-item.module.mjs +18 -0
- package/esm2022/lib/components/navigation/sub-navigation-items-container/index.mjs +2 -0
- package/esm2022/lib/components/navigation/sub-navigation-items-container/public-api.mjs +3 -0
- package/esm2022/lib/components/navigation/sub-navigation-items-container/sub-navigation-items-container.component.mjs +11 -0
- package/esm2022/lib/components/navigation/sub-navigation-items-container/sub-navigation-items-container.module.mjs +16 -0
- package/esm2022/lib/components/pagination/container/index.mjs +2 -0
- package/esm2022/lib/components/pagination/container/pagination-container.component.mjs +11 -0
- package/esm2022/lib/components/pagination/container/pagination-container.module.mjs +16 -0
- package/esm2022/lib/components/pagination/container/public-api.mjs +3 -0
- package/esm2022/lib/components/pagination/index.mjs +2 -0
- package/esm2022/lib/components/pagination/pagination.component.mjs +85 -0
- package/esm2022/lib/components/pagination/pagination.module.mjs +19 -0
- package/esm2022/lib/components/pagination/public-api.mjs +3 -0
- package/esm2022/lib/components/progress-indicators/progress-bar/index.mjs +2 -0
- package/esm2022/lib/components/progress-indicators/progress-bar/progress-bar.component.mjs +78 -0
- package/esm2022/lib/components/progress-indicators/progress-bar/progress-bar.module.mjs +19 -0
- package/esm2022/lib/components/progress-indicators/progress-bar/public-api.mjs +3 -0
- package/esm2022/lib/components/progress-indicators/progress-indicator-spinner/index.mjs +2 -0
- package/esm2022/lib/components/progress-indicators/progress-indicator-spinner/progress-indicator-spinner.component.mjs +79 -0
- package/esm2022/lib/components/progress-indicators/progress-indicator-spinner/progress-indicator-spinner.module.mjs +19 -0
- package/esm2022/lib/components/progress-indicators/progress-indicator-spinner/progress-indicator-spinner.types.mjs +8 -0
- package/esm2022/lib/components/progress-indicators/progress-indicator-spinner/public-api.mjs +3 -0
- package/esm2022/lib/components/progress-indicators/progress-spinner/index.mjs +2 -0
- package/esm2022/lib/components/progress-indicators/progress-spinner/progress-spinner.component.mjs +95 -0
- package/esm2022/lib/components/progress-indicators/progress-spinner/progress-spinner.module.mjs +22 -0
- package/esm2022/lib/components/progress-indicators/progress-spinner/public-api.mjs +3 -0
- package/esm2022/lib/components/progress-stepper/index.mjs +2 -0
- package/esm2022/lib/components/progress-stepper/progress-step.types.mjs +2 -0
- package/esm2022/lib/components/progress-stepper/progress-stepper.component.mjs +106 -0
- package/esm2022/lib/components/progress-stepper/progress-stepper.module.mjs +27 -0
- package/esm2022/lib/components/progress-stepper/public-api.mjs +4 -0
- package/esm2022/lib/components/rating/index.mjs +2 -0
- package/esm2022/lib/components/rating/public-api.mjs +3 -0
- package/esm2022/lib/components/rating/rating.component.mjs +69 -0
- package/esm2022/lib/components/rating/rating.module.mjs +19 -0
- package/esm2022/lib/components/shell-layout/index.mjs +2 -0
- package/esm2022/lib/components/shell-layout/public-api.mjs +3 -0
- package/esm2022/lib/components/shell-layout/shell-layout.component.mjs +25 -0
- package/esm2022/lib/components/shell-layout/shell-layout.module.mjs +18 -0
- package/esm2022/lib/components/snackbars/inline-snackbar/index.mjs +2 -0
- package/esm2022/lib/components/snackbars/inline-snackbar/inline-snackbar.component.mjs +63 -0
- package/esm2022/lib/components/snackbars/inline-snackbar/inline-snackbar.module.mjs +19 -0
- package/esm2022/lib/components/snackbars/inline-snackbar/public-api.mjs +3 -0
- package/esm2022/lib/components/snackbars/snackbar/index.mjs +2 -0
- package/esm2022/lib/components/snackbars/snackbar/public-api.mjs +3 -0
- package/esm2022/lib/components/snackbars/snackbar/snackbar.component.mjs +30 -0
- package/esm2022/lib/components/snackbars/snackbar/snackbar.module.mjs +21 -0
- package/esm2022/lib/components/splash-page/index.mjs +2 -0
- package/esm2022/lib/components/splash-page/public-api.mjs +3 -0
- package/esm2022/lib/components/splash-page/splash-page.component.mjs +20 -0
- package/esm2022/lib/components/splash-page/splash-page.module.mjs +18 -0
- package/esm2022/lib/components/stepper-condensed/condensed-helpers.mjs +97 -0
- package/esm2022/lib/components/stepper-condensed/condensed-step.type.mjs +12 -0
- package/esm2022/lib/components/stepper-condensed/index.mjs +2 -0
- package/esm2022/lib/components/stepper-condensed/public-api.mjs +5 -0
- package/esm2022/lib/components/stepper-condensed/stepper-condensed.component.mjs +149 -0
- package/esm2022/lib/components/stepper-condensed/stepper-condensed.module.mjs +28 -0
- package/esm2022/lib/components/submenu/submenu-container/index.mjs +2 -0
- package/esm2022/lib/components/submenu/submenu-container/public-api.mjs +3 -0
- package/esm2022/lib/components/submenu/submenu-container/submenu-container.component.mjs +22 -0
- package/esm2022/lib/components/submenu/submenu-container/submenu-container.module.mjs +18 -0
- package/esm2022/lib/components/submenu/submenu-heading/index.mjs +2 -0
- package/esm2022/lib/components/submenu/submenu-heading/public-api.mjs +3 -0
- package/esm2022/lib/components/submenu/submenu-heading/submenu-heading.component.mjs +17 -0
- package/esm2022/lib/components/submenu/submenu-heading/submenu-heading.module.mjs +18 -0
- package/esm2022/lib/components/submenu/submenu-item/index.mjs +2 -0
- package/esm2022/lib/components/submenu/submenu-item/public-api.mjs +3 -0
- package/esm2022/lib/components/submenu/submenu-item/submenu-item.component.mjs +28 -0
- package/esm2022/lib/components/submenu/submenu-item/submenu-item.module.mjs +19 -0
- package/esm2022/lib/components/submenu/submenu-secondary-item/index.mjs +2 -0
- package/esm2022/lib/components/submenu/submenu-secondary-item/public-api.mjs +3 -0
- package/esm2022/lib/components/submenu/submenu-secondary-item/submenu-secondary-item.component.mjs +33 -0
- package/esm2022/lib/components/submenu/submenu-secondary-item/submenu-secondary-item.module.mjs +19 -0
- package/esm2022/lib/components/table/index.mjs +2 -0
- package/esm2022/lib/components/table/public-api.mjs +3 -0
- package/esm2022/lib/components/table/table.component.mjs +81 -0
- package/esm2022/lib/components/table/table.module.mjs +20 -0
- package/esm2022/lib/components/tags/create-tag/create-tag.component.mjs +218 -0
- package/esm2022/lib/components/tags/create-tag/create-tag.module.mjs +43 -0
- package/esm2022/lib/components/tags/create-tag/index.mjs +2 -0
- package/esm2022/lib/components/tags/create-tag/public-api.mjs +3 -0
- package/esm2022/lib/components/tags/tag/index.mjs +2 -0
- package/esm2022/lib/components/tags/tag/public-api.mjs +4 -0
- package/esm2022/lib/components/tags/tag/tag.component.mjs +68 -0
- package/esm2022/lib/components/tags/tag/tag.module.mjs +19 -0
- package/esm2022/lib/components/tags/tag/tag.types.mjs +2 -0
- package/esm2022/lib/components/tags/tag-container/index.mjs +2 -0
- package/esm2022/lib/components/tags/tag-container/public-api.mjs +3 -0
- package/esm2022/lib/components/tags/tag-container/tag-container.component.mjs +11 -0
- package/esm2022/lib/components/tags/tag-container/tag-container.module.mjs +18 -0
- package/esm2022/lib/components/timeline-stepper/index.mjs +2 -0
- package/esm2022/lib/components/timeline-stepper/public-api.mjs +5 -0
- package/esm2022/lib/components/timeline-stepper/timeline-helpers.mjs +97 -0
- package/esm2022/lib/components/timeline-stepper/timeline-step.type.mjs +12 -0
- package/esm2022/lib/components/timeline-stepper/timeline-stepper.component.mjs +148 -0
- package/esm2022/lib/components/timeline-stepper/timeline-stepper.module.mjs +28 -0
- package/esm2022/lib/components/vertical-stepper/index.mjs +2 -0
- package/esm2022/lib/components/vertical-stepper/public-api.mjs +5 -0
- package/esm2022/lib/components/vertical-stepper/vertical-helpers.mjs +98 -0
- package/esm2022/lib/components/vertical-stepper/vertical-step.type.mjs +12 -0
- package/esm2022/lib/components/vertical-stepper/vertical-stepper.component.mjs +125 -0
- package/esm2022/lib/components/vertical-stepper/vertical-stepper.module.mjs +28 -0
- package/esm2022/lib/components/widgets/widget-actions/index.mjs +2 -0
- package/esm2022/lib/components/widgets/widget-actions/public-api.mjs +3 -0
- package/esm2022/lib/components/widgets/widget-actions/widget-actions.component.mjs +11 -0
- package/esm2022/lib/components/widgets/widget-actions/widget-actions.module.mjs +16 -0
- package/esm2022/lib/components/widgets/widget-bar/index.mjs +2 -0
- package/esm2022/lib/components/widgets/widget-bar/public-api.mjs +3 -0
- package/esm2022/lib/components/widgets/widget-bar/widget-bar.component.mjs +20 -0
- package/esm2022/lib/components/widgets/widget-bar/widget-bar.module.mjs +18 -0
- package/esm2022/lib/components/widgets/widget-container/index.mjs +2 -0
- package/esm2022/lib/components/widgets/widget-container/public-api.mjs +3 -0
- package/esm2022/lib/components/widgets/widget-container/widget-container.component.mjs +11 -0
- package/esm2022/lib/components/widgets/widget-container/widget-container.module.mjs +18 -0
- package/esm2022/lib/components/widgets/widget-footer/index.mjs +2 -0
- package/esm2022/lib/components/widgets/widget-footer/public-api.mjs +3 -0
- package/esm2022/lib/components/widgets/widget-footer/widget-footer.component.mjs +11 -0
- package/esm2022/lib/components/widgets/widget-footer/widget-footer.module.mjs +18 -0
- package/esm2022/lib/components/widgets/widget-header/index.mjs +2 -0
- package/esm2022/lib/components/widgets/widget-header/public-api.mjs +3 -0
- package/esm2022/lib/components/widgets/widget-header/widget-header.component.mjs +11 -0
- package/esm2022/lib/components/widgets/widget-header/widget-header.module.mjs +18 -0
- package/esm2022/lib/components/widgets/widget-preview/index.mjs +2 -0
- package/esm2022/lib/components/widgets/widget-preview/public-api.mjs +3 -0
- package/esm2022/lib/components/widgets/widget-preview/widget-preview.component.mjs +25 -0
- package/esm2022/lib/components/widgets/widget-preview/widget-preview.module.mjs +18 -0
- package/esm2022/lib/components/widgets/widget-thumbnail/index.mjs +2 -0
- package/esm2022/lib/components/widgets/widget-thumbnail/public-api.mjs +3 -0
- package/esm2022/lib/components/widgets/widget-thumbnail/widget-thumbnail.component.mjs +100 -0
- package/esm2022/lib/components/widgets/widget-thumbnail/widget-thumbnail.module.mjs +20 -0
- package/esm2022/lib/components/widgets/widget-thumbnail-container/index.mjs +2 -0
- package/esm2022/lib/components/widgets/widget-thumbnail-container/public-api.mjs +3 -0
- package/esm2022/lib/components/widgets/widget-thumbnail-container/widget-thumbnail-container.component.mjs +12 -0
- package/esm2022/lib/components/widgets/widget-thumbnail-container/widget-thumbnail-container.module.mjs +18 -0
- package/esm2022/lib/components/widgets/widget-title/index.mjs +2 -0
- package/esm2022/lib/components/widgets/widget-title/public-api.mjs +3 -0
- package/esm2022/lib/components/widgets/widget-title/widget-title.component.mjs +22 -0
- package/esm2022/lib/components/widgets/widget-title/widget-title.module.mjs +18 -0
- package/esm2022/lib/components/wizard-stepper/index.mjs +2 -0
- package/esm2022/lib/components/wizard-stepper/public-api.mjs +4 -0
- package/esm2022/lib/components/wizard-stepper/wizard-stepper.component.mjs +28 -0
- package/esm2022/lib/components/wizard-stepper/wizard-stepper.module.mjs +20 -0
- package/esm2022/lib/components/wizard-stepper/wizard-stepper.types.mjs +2 -0
- package/esm2022/lib/services/viewport/viewport.service.interface.mjs +2 -0
- package/esm2022/lib/services/viewport/viewport.service.mjs +32 -0
- package/esm2022/lib/services/window/window.service.interface.mjs +2 -0
- package/esm2022/lib/services/window/window.service.mjs +29 -0
- package/esm2022/src/lib/components/avatar/ascentgl-ads-ui-src-lib-components-avatar.mjs +5 -0
- package/esm2022/src/lib/components/avatar/avatar.component.mjs +50 -0
- package/esm2022/src/lib/components/avatar/avatar.module.mjs +19 -0
- package/esm2022/src/lib/components/avatar/avatar.types.mjs +2 -0
- package/esm2022/src/lib/components/avatar/public-api.mjs +3 -0
- package/esm2022/src/lib/components/buttons/button-container/ascentgl-ads-ui-src-lib-components-buttons-button-container.mjs +5 -0
- package/esm2022/src/lib/components/buttons/button-container/button-container.component.mjs +17 -0
- package/esm2022/src/lib/components/buttons/button-container/button-container.module.mjs +18 -0
- package/esm2022/src/lib/components/buttons/button-container/public-api.mjs +3 -0
- package/esm2022/src/lib/components/buttons/selection-button/ascentgl-ads-ui-src-lib-components-buttons-selection-button.mjs +5 -0
- package/esm2022/src/lib/components/buttons/selection-button/public-api.mjs +3 -0
- package/esm2022/src/lib/components/buttons/selection-button/selection-button.component.mjs +60 -0
- package/esm2022/src/lib/components/buttons/selection-button/selection-button.module.mjs +20 -0
- package/esm2022/src/lib/components/card/ascentgl-ads-ui-src-lib-components-card.mjs +5 -0
- package/esm2022/src/lib/components/card/card.component.mjs +11 -0
- package/esm2022/src/lib/components/card/card.module.mjs +18 -0
- package/esm2022/src/lib/components/card/public-api.mjs +3 -0
- package/esm2022/src/lib/components/divider/ascentgl-ads-ui-src-lib-components-divider.mjs +5 -0
- package/esm2022/src/lib/components/divider/divider.component.mjs +43 -0
- package/esm2022/src/lib/components/divider/divider.module.mjs +18 -0
- package/esm2022/src/lib/components/divider/public-api.mjs +3 -0
- package/esm2022/src/lib/components/drag-and-drop-list/ascentgl-ads-ui-src-lib-components-drag-and-drop-list.mjs +5 -0
- package/esm2022/src/lib/components/drag-and-drop-list/dom.element.mjs +62 -0
- package/esm2022/src/lib/components/drag-and-drop-list/drag-and-drop-list.component.mjs +349 -0
- package/esm2022/src/lib/components/drag-and-drop-list/drag-and-drop-list.enums.mjs +2 -0
- package/esm2022/src/lib/components/drag-and-drop-list/drag-and-drop-list.module.mjs +18 -0
- package/esm2022/src/lib/components/drag-and-drop-list/dragged.placeholder.mjs +63 -0
- package/esm2022/src/lib/components/drag-and-drop-list/public-api.mjs +3 -0
- package/esm2022/src/lib/components/error-page/error-page-code/ascentgl-ads-ui-src-lib-components-error-page-error-page-code.mjs +5 -0
- package/esm2022/src/lib/components/error-page/error-page-code/error-page-code.component.mjs +14 -0
- package/esm2022/src/lib/components/error-page/error-page-code/error-page-code.module.mjs +18 -0
- package/esm2022/src/lib/components/error-page/error-page-code/public-api.mjs +3 -0
- package/esm2022/src/lib/components/footer/ascentgl-ads-ui-src-lib-components-footer.mjs +5 -0
- package/esm2022/src/lib/components/footer/container/ascentgl-ads-ui-src-lib-components-footer-container.mjs +5 -0
- package/esm2022/src/lib/components/footer/container/footer-container.component.mjs +11 -0
- package/esm2022/src/lib/components/footer/container/footer-container.module.mjs +16 -0
- package/esm2022/src/lib/components/footer/container/public-api.mjs +3 -0
- package/esm2022/src/lib/components/footer/footer.component.mjs +35 -0
- package/esm2022/src/lib/components/footer/footer.component.types.mjs +2 -0
- package/esm2022/src/lib/components/footer/footer.module.mjs +18 -0
- package/esm2022/src/lib/components/footer/public-api.mjs +4 -0
- package/esm2022/src/lib/components/header/ascentgl-ads-ui-src-lib-components-header.mjs +5 -0
- package/esm2022/src/lib/components/header/container/ascentgl-ads-ui-src-lib-components-header-container.mjs +5 -0
- package/esm2022/src/lib/components/header/container/header-container.component.mjs +19 -0
- package/esm2022/src/lib/components/header/container/header-container.module.mjs +16 -0
- package/esm2022/src/lib/components/header/container/public-api.mjs +3 -0
- package/esm2022/src/lib/components/header/header.component.mjs +11 -0
- package/esm2022/src/lib/components/header/header.module.mjs +16 -0
- package/esm2022/src/lib/components/header/org-display-text/ascentgl-ads-ui-src-lib-components-header-org-display-text.mjs +5 -0
- package/esm2022/src/lib/components/header/org-display-text/org-display-text.component.mjs +22 -0
- package/esm2022/src/lib/components/header/org-display-text/org-display-text.module.mjs +18 -0
- package/esm2022/src/lib/components/header/org-display-text/public-api.mjs +3 -0
- package/esm2022/src/lib/components/header/public-api.mjs +3 -0
- package/esm2022/src/lib/components/logo/primary-logo/ascentgl-ads-ui-src-lib-components-logo-primary-logo.mjs +5 -0
- package/esm2022/src/lib/components/logo/primary-logo/primary-logo.component.mjs +37 -0
- package/esm2022/src/lib/components/logo/primary-logo/primary-logo.module.mjs +18 -0
- package/esm2022/src/lib/components/logo/primary-logo/public-api.mjs +3 -0
- package/esm2022/src/lib/components/main-menu/ascentgl-ads-ui-src-lib-components-main-menu.mjs +5 -0
- package/esm2022/src/lib/components/main-menu/main-menu-bottom-sheet/main-menu-bottom-sheet.component.mjs +22 -0
- package/esm2022/src/lib/components/main-menu/main-menu.component.mjs +76 -0
- package/esm2022/src/lib/components/main-menu/main-menu.module.mjs +45 -0
- package/esm2022/src/lib/components/main-menu/main-menu.types.mjs +2 -0
- package/esm2022/src/lib/components/main-menu/public-api.mjs +4 -0
- package/esm2022/src/lib/components/navigation/ascentgl-ads-ui-src-lib-components-navigation.mjs +5 -0
- package/esm2022/src/lib/components/navigation/dashboard-edit-icon/ascentgl-ads-ui-src-lib-components-navigation-dashboard-edit-icon.mjs +5 -0
- package/esm2022/src/lib/components/navigation/dashboard-edit-icon/dashboard-edit-icon.component.mjs +46 -0
- package/esm2022/src/lib/components/navigation/dashboard-edit-icon/dashboard-edit-icon.module.mjs +18 -0
- package/esm2022/src/lib/components/navigation/dashboard-edit-icon/public-api.mjs +3 -0
- package/esm2022/src/lib/components/navigation/navigation-actions-container/ascentgl-ads-ui-src-lib-components-navigation-navigation-actions-container.mjs +5 -0
- package/esm2022/src/lib/components/navigation/navigation-actions-container/navigation-actions-container.component.mjs +20 -0
- package/esm2022/src/lib/components/navigation/navigation-actions-container/navigation-actions-container.module.mjs +18 -0
- package/esm2022/src/lib/components/navigation/navigation-actions-container/public-api.mjs +3 -0
- package/esm2022/src/lib/components/navigation/navigation-collapse-handle/ascentgl-ads-ui-src-lib-components-navigation-navigation-collapse-handle.mjs +5 -0
- package/esm2022/src/lib/components/navigation/navigation-collapse-handle/navigation-collapse-handle.component.mjs +48 -0
- package/esm2022/src/lib/components/navigation/navigation-collapse-handle/navigation-collapse-handle.module.mjs +18 -0
- package/esm2022/src/lib/components/navigation/navigation-collapse-handle/public-api.mjs +3 -0
- package/esm2022/src/lib/components/navigation/navigation-header/ascentgl-ads-ui-src-lib-components-navigation-navigation-header.mjs +5 -0
- package/esm2022/src/lib/components/navigation/navigation-header/navigation-header.component.mjs +25 -0
- package/esm2022/src/lib/components/navigation/navigation-header/navigation-header.module.mjs +16 -0
- package/esm2022/src/lib/components/navigation/navigation-header/public-api.mjs +3 -0
- package/esm2022/src/lib/components/navigation/navigation-item/ascentgl-ads-ui-src-lib-components-navigation-navigation-item.mjs +5 -0
- package/esm2022/src/lib/components/navigation/navigation-item/navigation-item.component.mjs +74 -0
- package/esm2022/src/lib/components/navigation/navigation-item/navigation-item.module.mjs +21 -0
- package/esm2022/src/lib/components/navigation/navigation-item/public-api.mjs +3 -0
- package/esm2022/src/lib/components/navigation/navigation-items-container/ascentgl-ads-ui-src-lib-components-navigation-navigation-items-container.mjs +5 -0
- package/esm2022/src/lib/components/navigation/navigation-items-container/navigation-items-container.component.mjs +11 -0
- package/esm2022/src/lib/components/navigation/navigation-items-container/navigation-items-container.module.mjs +16 -0
- package/esm2022/src/lib/components/navigation/navigation-items-container/public-api.mjs +3 -0
- package/esm2022/src/lib/components/navigation/navigation.component.mjs +25 -0
- package/esm2022/src/lib/components/navigation/navigation.module.mjs +16 -0
- package/esm2022/src/lib/components/navigation/public-api.mjs +3 -0
- package/esm2022/src/lib/components/navigation/side-navigation/side-navigation-container/ascentgl-ads-ui-src-lib-components-navigation-side-navigation-side-navigation-container.mjs +5 -0
- package/esm2022/src/lib/components/navigation/side-navigation/side-navigation-container/public-api.mjs +3 -0
- package/esm2022/src/lib/components/navigation/side-navigation/side-navigation-container/side-navigation-container.component.mjs +11 -0
- package/esm2022/src/lib/components/navigation/side-navigation/side-navigation-container/side-navigation-container.module.mjs +16 -0
- package/esm2022/src/lib/components/navigation/side-navigation/side-navigation-item/ascentgl-ads-ui-src-lib-components-navigation-side-navigation-side-navigation-item.mjs +5 -0
- package/esm2022/src/lib/components/navigation/side-navigation/side-navigation-item/public-api.mjs +3 -0
- package/esm2022/src/lib/components/navigation/side-navigation/side-navigation-item/side-navigation-item.component.mjs +67 -0
- package/esm2022/src/lib/components/navigation/side-navigation/side-navigation-item/side-navigation-item.module.mjs +21 -0
- package/esm2022/src/lib/components/navigation/sub-navigation-item/ascentgl-ads-ui-src-lib-components-navigation-sub-navigation-item.mjs +5 -0
- package/esm2022/src/lib/components/navigation/sub-navigation-item/public-api.mjs +3 -0
- package/esm2022/src/lib/components/navigation/sub-navigation-item/sub-navigation-item.component.mjs +36 -0
- package/esm2022/src/lib/components/navigation/sub-navigation-item/sub-navigation-item.module.mjs +18 -0
- package/esm2022/src/lib/components/navigation/sub-navigation-items-container/ascentgl-ads-ui-src-lib-components-navigation-sub-navigation-items-container.mjs +5 -0
- package/esm2022/src/lib/components/navigation/sub-navigation-items-container/public-api.mjs +3 -0
- package/esm2022/src/lib/components/navigation/sub-navigation-items-container/sub-navigation-items-container.component.mjs +11 -0
- package/esm2022/src/lib/components/navigation/sub-navigation-items-container/sub-navigation-items-container.module.mjs +16 -0
- package/esm2022/src/lib/components/pagination/ascentgl-ads-ui-src-lib-components-pagination.mjs +5 -0
- package/esm2022/src/lib/components/pagination/container/ascentgl-ads-ui-src-lib-components-pagination-container.mjs +5 -0
- package/esm2022/src/lib/components/pagination/container/pagination-container.component.mjs +11 -0
- package/esm2022/src/lib/components/pagination/container/pagination-container.module.mjs +16 -0
- package/esm2022/src/lib/components/pagination/container/public-api.mjs +3 -0
- package/esm2022/src/lib/components/pagination/pagination.component.mjs +85 -0
- package/esm2022/src/lib/components/pagination/pagination.module.mjs +19 -0
- package/esm2022/src/lib/components/pagination/public-api.mjs +3 -0
- package/esm2022/src/lib/components/progress-indicators/progress-bar/ascentgl-ads-ui-src-lib-components-progress-indicators-progress-bar.mjs +5 -0
- package/esm2022/src/lib/components/progress-indicators/progress-bar/progress-bar.component.mjs +78 -0
- package/esm2022/src/lib/components/progress-indicators/progress-bar/progress-bar.module.mjs +19 -0
- package/esm2022/src/lib/components/progress-indicators/progress-bar/public-api.mjs +3 -0
- package/esm2022/src/lib/components/progress-indicators/progress-indicator-spinner/ascentgl-ads-ui-src-lib-components-progress-indicators-progress-indicator-spinner.mjs +5 -0
- package/esm2022/src/lib/components/progress-indicators/progress-indicator-spinner/progress-indicator-spinner.component.mjs +79 -0
- package/esm2022/src/lib/components/progress-indicators/progress-indicator-spinner/progress-indicator-spinner.module.mjs +19 -0
- package/esm2022/src/lib/components/progress-indicators/progress-indicator-spinner/progress-indicator-spinner.types.mjs +8 -0
- package/esm2022/src/lib/components/progress-indicators/progress-indicator-spinner/public-api.mjs +3 -0
- package/esm2022/src/lib/components/progress-indicators/progress-spinner/ascentgl-ads-ui-src-lib-components-progress-indicators-progress-spinner.mjs +5 -0
- package/esm2022/src/lib/components/progress-indicators/progress-spinner/progress-spinner.component.mjs +95 -0
- package/esm2022/src/lib/components/progress-indicators/progress-spinner/progress-spinner.module.mjs +22 -0
- package/esm2022/src/lib/components/progress-indicators/progress-spinner/public-api.mjs +3 -0
- package/esm2022/src/lib/components/progress-stepper/ascentgl-ads-ui-src-lib-components-progress-stepper.mjs +5 -0
- package/esm2022/src/lib/components/progress-stepper/progress-step.types.mjs +2 -0
- package/esm2022/src/lib/components/progress-stepper/progress-stepper.component.mjs +106 -0
- package/esm2022/src/lib/components/progress-stepper/progress-stepper.module.mjs +27 -0
- package/esm2022/src/lib/components/progress-stepper/public-api.mjs +4 -0
- package/esm2022/src/lib/components/rating/ascentgl-ads-ui-src-lib-components-rating.mjs +5 -0
- package/esm2022/src/lib/components/rating/public-api.mjs +3 -0
- package/esm2022/src/lib/components/rating/rating.component.mjs +69 -0
- package/esm2022/src/lib/components/rating/rating.module.mjs +19 -0
- package/esm2022/src/lib/components/shell-layout/ascentgl-ads-ui-src-lib-components-shell-layout.mjs +5 -0
- package/esm2022/src/lib/components/shell-layout/public-api.mjs +3 -0
- package/esm2022/src/lib/components/shell-layout/shell-layout.component.mjs +25 -0
- package/esm2022/src/lib/components/shell-layout/shell-layout.module.mjs +18 -0
- package/esm2022/src/lib/components/splash-page/ascentgl-ads-ui-src-lib-components-splash-page.mjs +5 -0
- package/esm2022/src/lib/components/splash-page/public-api.mjs +3 -0
- package/esm2022/src/lib/components/splash-page/splash-page.component.mjs +20 -0
- package/esm2022/src/lib/components/splash-page/splash-page.module.mjs +18 -0
- package/esm2022/src/lib/components/submenu/submenu-container/ascentgl-ads-ui-src-lib-components-submenu-submenu-container.mjs +5 -0
- package/esm2022/src/lib/components/submenu/submenu-container/public-api.mjs +3 -0
- package/esm2022/src/lib/components/submenu/submenu-container/submenu-container.component.mjs +22 -0
- package/esm2022/src/lib/components/submenu/submenu-container/submenu-container.module.mjs +18 -0
- package/esm2022/src/lib/components/submenu/submenu-heading/ascentgl-ads-ui-src-lib-components-submenu-submenu-heading.mjs +5 -0
- package/esm2022/src/lib/components/submenu/submenu-heading/public-api.mjs +3 -0
- package/esm2022/src/lib/components/submenu/submenu-heading/submenu-heading.component.mjs +17 -0
- package/esm2022/src/lib/components/submenu/submenu-heading/submenu-heading.module.mjs +18 -0
- package/esm2022/src/lib/components/submenu/submenu-item/ascentgl-ads-ui-src-lib-components-submenu-submenu-item.mjs +5 -0
- package/esm2022/src/lib/components/submenu/submenu-item/public-api.mjs +3 -0
- package/esm2022/src/lib/components/submenu/submenu-item/submenu-item.component.mjs +28 -0
- package/esm2022/src/lib/components/submenu/submenu-item/submenu-item.module.mjs +19 -0
- package/esm2022/src/lib/components/submenu/submenu-secondary-item/ascentgl-ads-ui-src-lib-components-submenu-submenu-secondary-item.mjs +5 -0
- package/esm2022/src/lib/components/submenu/submenu-secondary-item/public-api.mjs +3 -0
- package/esm2022/src/lib/components/submenu/submenu-secondary-item/submenu-secondary-item.component.mjs +33 -0
- package/esm2022/src/lib/components/submenu/submenu-secondary-item/submenu-secondary-item.module.mjs +19 -0
- package/esm2022/src/lib/components/tags/tag-container/ascentgl-ads-ui-src-lib-components-tags-tag-container.mjs +5 -0
- package/esm2022/src/lib/components/tags/tag-container/public-api.mjs +3 -0
- package/esm2022/src/lib/components/tags/tag-container/tag-container.component.mjs +11 -0
- package/esm2022/src/lib/components/tags/tag-container/tag-container.module.mjs +18 -0
- package/esm2022/src/lib/components/timeline-stepper/ascentgl-ads-ui-src-lib-components-timeline-stepper.mjs +5 -0
- package/esm2022/src/lib/components/timeline-stepper/public-api.mjs +5 -0
- package/esm2022/src/lib/components/timeline-stepper/timeline-helpers.mjs +97 -0
- package/esm2022/src/lib/components/timeline-stepper/timeline-step.type.mjs +12 -0
- package/esm2022/src/lib/components/timeline-stepper/timeline-stepper.component.mjs +148 -0
- package/esm2022/src/lib/components/timeline-stepper/timeline-stepper.module.mjs +28 -0
- package/esm2022/src/lib/components/vertical-stepper/ascentgl-ads-ui-src-lib-components-vertical-stepper.mjs +5 -0
- package/esm2022/src/lib/components/vertical-stepper/public-api.mjs +5 -0
- package/esm2022/src/lib/components/vertical-stepper/vertical-helpers.mjs +98 -0
- package/esm2022/src/lib/components/vertical-stepper/vertical-step.type.mjs +12 -0
- package/esm2022/src/lib/components/vertical-stepper/vertical-stepper.component.mjs +125 -0
- package/esm2022/src/lib/components/vertical-stepper/vertical-stepper.module.mjs +28 -0
- package/esm2022/src/lib/components/widgets/widget-actions/ascentgl-ads-ui-src-lib-components-widgets-widget-actions.mjs +5 -0
- package/esm2022/src/lib/components/widgets/widget-actions/public-api.mjs +3 -0
- package/esm2022/src/lib/components/widgets/widget-actions/widget-actions.component.mjs +11 -0
- package/esm2022/src/lib/components/widgets/widget-actions/widget-actions.module.mjs +16 -0
- package/esm2022/src/lib/components/widgets/widget-bar/ascentgl-ads-ui-src-lib-components-widgets-widget-bar.mjs +5 -0
- package/esm2022/src/lib/components/widgets/widget-bar/public-api.mjs +3 -0
- package/esm2022/src/lib/components/widgets/widget-bar/widget-bar.component.mjs +20 -0
- package/esm2022/src/lib/components/widgets/widget-bar/widget-bar.module.mjs +18 -0
- package/esm2022/src/lib/components/widgets/widget-container/ascentgl-ads-ui-src-lib-components-widgets-widget-container.mjs +5 -0
- package/esm2022/src/lib/components/widgets/widget-container/public-api.mjs +3 -0
- package/esm2022/src/lib/components/widgets/widget-container/widget-container.component.mjs +11 -0
- package/esm2022/src/lib/components/widgets/widget-container/widget-container.module.mjs +18 -0
- package/esm2022/src/lib/components/widgets/widget-footer/ascentgl-ads-ui-src-lib-components-widgets-widget-footer.mjs +5 -0
- package/esm2022/src/lib/components/widgets/widget-footer/public-api.mjs +3 -0
- package/esm2022/src/lib/components/widgets/widget-footer/widget-footer.component.mjs +11 -0
- package/esm2022/src/lib/components/widgets/widget-footer/widget-footer.module.mjs +18 -0
- package/esm2022/src/lib/components/widgets/widget-header/ascentgl-ads-ui-src-lib-components-widgets-widget-header.mjs +5 -0
- package/esm2022/src/lib/components/widgets/widget-header/public-api.mjs +3 -0
- package/esm2022/src/lib/components/widgets/widget-header/widget-header.component.mjs +11 -0
- package/esm2022/src/lib/components/widgets/widget-header/widget-header.module.mjs +18 -0
- package/esm2022/src/lib/components/widgets/widget-preview/ascentgl-ads-ui-src-lib-components-widgets-widget-preview.mjs +5 -0
- package/esm2022/src/lib/components/widgets/widget-preview/public-api.mjs +3 -0
- package/esm2022/src/lib/components/widgets/widget-preview/widget-preview.component.mjs +25 -0
- package/esm2022/src/lib/components/widgets/widget-preview/widget-preview.module.mjs +18 -0
- package/esm2022/src/lib/components/widgets/widget-thumbnail/ascentgl-ads-ui-src-lib-components-widgets-widget-thumbnail.mjs +5 -0
- package/esm2022/src/lib/components/widgets/widget-thumbnail/public-api.mjs +3 -0
- package/esm2022/src/lib/components/widgets/widget-thumbnail/widget-thumbnail.component.mjs +100 -0
- package/esm2022/src/lib/components/widgets/widget-thumbnail/widget-thumbnail.module.mjs +20 -0
- package/esm2022/src/lib/components/widgets/widget-thumbnail-container/ascentgl-ads-ui-src-lib-components-widgets-widget-thumbnail-container.mjs +5 -0
- package/esm2022/src/lib/components/widgets/widget-thumbnail-container/public-api.mjs +3 -0
- package/esm2022/src/lib/components/widgets/widget-thumbnail-container/widget-thumbnail-container.component.mjs +12 -0
- package/esm2022/src/lib/components/widgets/widget-thumbnail-container/widget-thumbnail-container.module.mjs +18 -0
- package/esm2022/src/lib/components/widgets/widget-title/ascentgl-ads-ui-src-lib-components-widgets-widget-title.mjs +5 -0
- package/esm2022/src/lib/components/widgets/widget-title/public-api.mjs +3 -0
- package/esm2022/src/lib/components/widgets/widget-title/widget-title.component.mjs +22 -0
- package/esm2022/src/lib/components/widgets/widget-title/widget-title.module.mjs +18 -0
- package/esm2022/src/lib/components/wizard-stepper/ascentgl-ads-ui-src-lib-components-wizard-stepper.mjs +5 -0
- package/esm2022/src/lib/components/wizard-stepper/public-api.mjs +4 -0
- package/esm2022/src/lib/components/wizard-stepper/wizard-stepper.component.mjs +28 -0
- package/esm2022/src/lib/components/wizard-stepper/wizard-stepper.module.mjs +20 -0
- package/esm2022/src/lib/components/wizard-stepper/wizard-stepper.types.mjs +2 -0
- package/fesm2022/ascentgl-ads-ui-src-lib-components-avatar.mjs +72 -0
- package/fesm2022/ascentgl-ads-ui-src-lib-components-avatar.mjs.map +1 -0
- package/fesm2022/ascentgl-ads-ui-src-lib-components-buttons-button-container.mjs +39 -0
- package/fesm2022/ascentgl-ads-ui-src-lib-components-buttons-button-container.mjs.map +1 -0
- package/fesm2022/ascentgl-ads-ui-src-lib-components-buttons-selection-button.mjs +83 -0
- package/fesm2022/ascentgl-ads-ui-src-lib-components-buttons-selection-button.mjs.map +1 -0
- package/fesm2022/ascentgl-ads-ui-src-lib-components-card.mjs +33 -0
- package/fesm2022/ascentgl-ads-ui-src-lib-components-card.mjs.map +1 -0
- package/fesm2022/ascentgl-ads-ui-src-lib-components-divider.mjs +65 -0
- package/fesm2022/ascentgl-ads-ui-src-lib-components-divider.mjs.map +1 -0
- package/fesm2022/ascentgl-ads-ui-src-lib-components-drag-and-drop-list.mjs +494 -0
- package/fesm2022/ascentgl-ads-ui-src-lib-components-drag-and-drop-list.mjs.map +1 -0
- package/fesm2022/ascentgl-ads-ui-src-lib-components-error-page-error-page-code.mjs +36 -0
- package/fesm2022/ascentgl-ads-ui-src-lib-components-error-page-error-page-code.mjs.map +1 -0
- package/fesm2022/ascentgl-ads-ui-src-lib-components-footer-container.mjs +31 -0
- package/fesm2022/ascentgl-ads-ui-src-lib-components-footer-container.mjs.map +1 -0
- package/fesm2022/ascentgl-ads-ui-src-lib-components-footer.mjs +57 -0
- package/fesm2022/ascentgl-ads-ui-src-lib-components-footer.mjs.map +1 -0
- package/fesm2022/ascentgl-ads-ui-src-lib-components-header-container.mjs +39 -0
- package/fesm2022/ascentgl-ads-ui-src-lib-components-header-container.mjs.map +1 -0
- package/fesm2022/ascentgl-ads-ui-src-lib-components-header-org-display-text.mjs +44 -0
- package/fesm2022/ascentgl-ads-ui-src-lib-components-header-org-display-text.mjs.map +1 -0
- package/fesm2022/ascentgl-ads-ui-src-lib-components-header.mjs +31 -0
- package/fesm2022/ascentgl-ads-ui-src-lib-components-header.mjs.map +1 -0
- package/fesm2022/ascentgl-ads-ui-src-lib-components-logo-primary-logo.mjs +59 -0
- package/fesm2022/ascentgl-ads-ui-src-lib-components-logo-primary-logo.mjs.map +1 -0
- package/fesm2022/ascentgl-ads-ui-src-lib-components-main-menu.mjs +135 -0
- package/fesm2022/ascentgl-ads-ui-src-lib-components-main-menu.mjs.map +1 -0
- package/fesm2022/ascentgl-ads-ui-src-lib-components-navigation-dashboard-edit-icon.mjs +67 -0
- package/fesm2022/ascentgl-ads-ui-src-lib-components-navigation-dashboard-edit-icon.mjs.map +1 -0
- package/fesm2022/ascentgl-ads-ui-src-lib-components-navigation-navigation-actions-container.mjs +42 -0
- package/fesm2022/ascentgl-ads-ui-src-lib-components-navigation-navigation-actions-container.mjs.map +1 -0
- package/fesm2022/ascentgl-ads-ui-src-lib-components-navigation-navigation-collapse-handle.mjs +69 -0
- package/fesm2022/ascentgl-ads-ui-src-lib-components-navigation-navigation-collapse-handle.mjs.map +1 -0
- package/fesm2022/ascentgl-ads-ui-src-lib-components-navigation-navigation-header.mjs +45 -0
- package/fesm2022/ascentgl-ads-ui-src-lib-components-navigation-navigation-header.mjs.map +1 -0
- package/fesm2022/ascentgl-ads-ui-src-lib-components-navigation-navigation-item.mjs +98 -0
- package/fesm2022/ascentgl-ads-ui-src-lib-components-navigation-navigation-item.mjs.map +1 -0
- package/fesm2022/ascentgl-ads-ui-src-lib-components-navigation-navigation-items-container.mjs +31 -0
- package/fesm2022/ascentgl-ads-ui-src-lib-components-navigation-navigation-items-container.mjs.map +1 -0
- package/fesm2022/ascentgl-ads-ui-src-lib-components-navigation-side-navigation-side-navigation-container.mjs +31 -0
- package/fesm2022/ascentgl-ads-ui-src-lib-components-navigation-side-navigation-side-navigation-container.mjs.map +1 -0
- package/fesm2022/ascentgl-ads-ui-src-lib-components-navigation-side-navigation-side-navigation-item.mjs +91 -0
- package/fesm2022/ascentgl-ads-ui-src-lib-components-navigation-side-navigation-side-navigation-item.mjs.map +1 -0
- package/fesm2022/ascentgl-ads-ui-src-lib-components-navigation-sub-navigation-item.mjs +58 -0
- package/fesm2022/ascentgl-ads-ui-src-lib-components-navigation-sub-navigation-item.mjs.map +1 -0
- package/fesm2022/ascentgl-ads-ui-src-lib-components-navigation-sub-navigation-items-container.mjs +31 -0
- package/fesm2022/ascentgl-ads-ui-src-lib-components-navigation-sub-navigation-items-container.mjs.map +1 -0
- package/fesm2022/ascentgl-ads-ui-src-lib-components-navigation.mjs +45 -0
- package/fesm2022/ascentgl-ads-ui-src-lib-components-navigation.mjs.map +1 -0
- package/fesm2022/ascentgl-ads-ui-src-lib-components-pagination-container.mjs +31 -0
- package/fesm2022/ascentgl-ads-ui-src-lib-components-pagination-container.mjs.map +1 -0
- package/fesm2022/ascentgl-ads-ui-src-lib-components-pagination.mjs +107 -0
- package/fesm2022/ascentgl-ads-ui-src-lib-components-pagination.mjs.map +1 -0
- package/fesm2022/ascentgl-ads-ui-src-lib-components-progress-indicators-progress-bar.mjs +100 -0
- package/fesm2022/ascentgl-ads-ui-src-lib-components-progress-indicators-progress-bar.mjs.map +1 -0
- package/fesm2022/ascentgl-ads-ui-src-lib-components-progress-indicators-progress-indicator-spinner.mjs +109 -0
- package/fesm2022/ascentgl-ads-ui-src-lib-components-progress-indicators-progress-indicator-spinner.mjs.map +1 -0
- package/fesm2022/ascentgl-ads-ui-src-lib-components-progress-indicators-progress-spinner.mjs +120 -0
- package/fesm2022/ascentgl-ads-ui-src-lib-components-progress-indicators-progress-spinner.mjs.map +1 -0
- package/fesm2022/ascentgl-ads-ui-src-lib-components-progress-stepper.mjs +136 -0
- package/fesm2022/ascentgl-ads-ui-src-lib-components-progress-stepper.mjs.map +1 -0
- package/fesm2022/ascentgl-ads-ui-src-lib-components-rating.mjs +91 -0
- package/fesm2022/ascentgl-ads-ui-src-lib-components-rating.mjs.map +1 -0
- package/fesm2022/ascentgl-ads-ui-src-lib-components-shell-layout.mjs +47 -0
- package/fesm2022/ascentgl-ads-ui-src-lib-components-shell-layout.mjs.map +1 -0
- package/fesm2022/ascentgl-ads-ui-src-lib-components-splash-page.mjs +42 -0
- package/fesm2022/ascentgl-ads-ui-src-lib-components-splash-page.mjs.map +1 -0
- package/fesm2022/ascentgl-ads-ui-src-lib-components-submenu-submenu-container.mjs +44 -0
- package/fesm2022/ascentgl-ads-ui-src-lib-components-submenu-submenu-container.mjs.map +1 -0
- package/fesm2022/ascentgl-ads-ui-src-lib-components-submenu-submenu-heading.mjs +39 -0
- package/fesm2022/ascentgl-ads-ui-src-lib-components-submenu-submenu-heading.mjs.map +1 -0
- package/fesm2022/ascentgl-ads-ui-src-lib-components-submenu-submenu-item.mjs +51 -0
- package/fesm2022/ascentgl-ads-ui-src-lib-components-submenu-submenu-item.mjs.map +1 -0
- package/fesm2022/ascentgl-ads-ui-src-lib-components-submenu-submenu-secondary-item.mjs +56 -0
- package/fesm2022/ascentgl-ads-ui-src-lib-components-submenu-submenu-secondary-item.mjs.map +1 -0
- package/fesm2022/ascentgl-ads-ui-src-lib-components-tags-tag-container.mjs +33 -0
- package/fesm2022/ascentgl-ads-ui-src-lib-components-tags-tag-container.mjs.map +1 -0
- package/fesm2022/ascentgl-ads-ui-src-lib-components-timeline-stepper.mjs +286 -0
- package/fesm2022/ascentgl-ads-ui-src-lib-components-timeline-stepper.mjs.map +1 -0
- package/fesm2022/ascentgl-ads-ui-src-lib-components-vertical-stepper.mjs +264 -0
- package/fesm2022/ascentgl-ads-ui-src-lib-components-vertical-stepper.mjs.map +1 -0
- package/fesm2022/ascentgl-ads-ui-src-lib-components-widgets-widget-actions.mjs +31 -0
- package/fesm2022/ascentgl-ads-ui-src-lib-components-widgets-widget-actions.mjs.map +1 -0
- package/fesm2022/ascentgl-ads-ui-src-lib-components-widgets-widget-bar.mjs +42 -0
- package/fesm2022/ascentgl-ads-ui-src-lib-components-widgets-widget-bar.mjs.map +1 -0
- package/fesm2022/ascentgl-ads-ui-src-lib-components-widgets-widget-container.mjs +33 -0
- package/fesm2022/ascentgl-ads-ui-src-lib-components-widgets-widget-container.mjs.map +1 -0
- package/fesm2022/ascentgl-ads-ui-src-lib-components-widgets-widget-footer.mjs +33 -0
- package/fesm2022/ascentgl-ads-ui-src-lib-components-widgets-widget-footer.mjs.map +1 -0
- package/fesm2022/ascentgl-ads-ui-src-lib-components-widgets-widget-header.mjs +33 -0
- package/fesm2022/ascentgl-ads-ui-src-lib-components-widgets-widget-header.mjs.map +1 -0
- package/fesm2022/ascentgl-ads-ui-src-lib-components-widgets-widget-preview.mjs +47 -0
- package/fesm2022/ascentgl-ads-ui-src-lib-components-widgets-widget-preview.mjs.map +1 -0
- package/fesm2022/ascentgl-ads-ui-src-lib-components-widgets-widget-thumbnail-container.mjs +34 -0
- package/fesm2022/ascentgl-ads-ui-src-lib-components-widgets-widget-thumbnail-container.mjs.map +1 -0
- package/fesm2022/ascentgl-ads-ui-src-lib-components-widgets-widget-thumbnail.mjs +123 -0
- package/fesm2022/ascentgl-ads-ui-src-lib-components-widgets-widget-thumbnail.mjs.map +1 -0
- package/fesm2022/ascentgl-ads-ui-src-lib-components-widgets-widget-title.mjs +44 -0
- package/fesm2022/ascentgl-ads-ui-src-lib-components-widgets-widget-title.mjs.map +1 -0
- package/fesm2022/ascentgl-ads-ui-src-lib-components-wizard-stepper.mjs +51 -0
- package/fesm2022/ascentgl-ads-ui-src-lib-components-wizard-stepper.mjs.map +1 -0
- package/fesm2022/ascentgl-ads-ui.mjs +8117 -0
- package/fesm2022/ascentgl-ads-ui.mjs.map +1 -0
- package/index.d.ts +86 -0
- package/lib/components/avatar/avatar.component.d.ts +30 -0
- package/lib/components/avatar/avatar.module.d.ts +9 -0
- package/lib/components/avatar/avatar.types.d.ts +1 -0
- package/lib/components/avatar/index.d.ts +1 -0
- package/lib/components/avatar/public-api.d.ts +2 -0
- package/lib/components/badge/index.d.ts +1 -0
- package/lib/components/badge/numeric-badge.component.d.ts +22 -0
- package/lib/components/badge/numeric-badge.module.d.ts +9 -0
- package/lib/components/badge/public-api.d.ts +2 -0
- package/lib/components/breadcrumb/breadcrumb.component.d.ts +37 -0
- package/lib/components/breadcrumb/breadcrumb.module.d.ts +11 -0
- package/lib/components/breadcrumb/breadcrumb.type.d.ts +7 -0
- package/lib/components/breadcrumb/breadcrumb.visual-processor.d.ts +16 -0
- package/lib/components/breadcrumb/index.d.ts +1 -0
- package/lib/components/breadcrumb/public-api.d.ts +3 -0
- package/lib/components/buttons/button/button.component.d.ts +24 -0
- package/lib/components/buttons/button/button.module.d.ts +9 -0
- package/lib/components/buttons/button/index.d.ts +1 -0
- package/lib/components/buttons/button/public-api.d.ts +2 -0
- package/lib/components/buttons/button-container/button-container.component.d.ts +9 -0
- package/lib/components/buttons/button-container/button-container.module.d.ts +8 -0
- package/lib/components/buttons/button-container/index.d.ts +1 -0
- package/lib/components/buttons/button-container/public-api.d.ts +2 -0
- package/lib/components/buttons/icon-button/icon-button.component.d.ts +25 -0
- package/lib/components/buttons/icon-button/icon-button.module.d.ts +10 -0
- package/lib/components/buttons/icon-button/index.d.ts +1 -0
- package/lib/components/buttons/icon-button/public-api.d.ts +2 -0
- package/lib/components/buttons/link-button/index.d.ts +1 -0
- package/lib/components/buttons/link-button/link-button.component.d.ts +9 -0
- package/lib/components/buttons/link-button/link-button.module.d.ts +10 -0
- package/lib/components/buttons/link-button/public-api.d.ts +2 -0
- package/lib/components/buttons/selection-button/index.d.ts +1 -0
- package/lib/components/buttons/selection-button/public-api.d.ts +2 -0
- package/lib/components/buttons/selection-button/selection-button.component.d.ts +40 -0
- package/lib/components/buttons/selection-button/selection-button.module.d.ts +10 -0
- package/lib/components/card/card.component.d.ts +5 -0
- package/lib/components/card/card.module.d.ts +8 -0
- package/lib/components/card/index.d.ts +1 -0
- package/lib/components/card/public-api.d.ts +2 -0
- package/lib/components/chip/chip.component.d.ts +27 -0
- package/lib/components/chip/chip.module.d.ts +9 -0
- package/lib/components/chip/chip.types.d.ts +4 -0
- package/lib/components/chip/index.d.ts +1 -0
- package/lib/components/chip/public-api.d.ts +2 -0
- package/lib/components/divider/divider.component.d.ts +26 -0
- package/lib/components/divider/divider.module.d.ts +8 -0
- package/lib/components/divider/index.d.ts +1 -0
- package/lib/components/divider/public-api.d.ts +2 -0
- package/lib/components/drag-and-drop-list/dom.element.d.ts +17 -0
- package/lib/components/drag-and-drop-list/drag-and-drop-list.component.d.ts +82 -0
- package/lib/components/drag-and-drop-list/drag-and-drop-list.enums.d.ts +8 -0
- package/lib/components/drag-and-drop-list/drag-and-drop-list.module.d.ts +8 -0
- package/lib/components/drag-and-drop-list/dragged.placeholder.d.ts +14 -0
- package/lib/components/drag-and-drop-list/index.d.ts +1 -0
- package/lib/components/drag-and-drop-list/public-api.d.ts +2 -0
- package/lib/components/error-page/error-page-code/error-page-code.component.d.ts +5 -0
- package/lib/components/error-page/error-page-code/error-page-code.module.d.ts +8 -0
- package/lib/components/error-page/error-page-code/index.d.ts +1 -0
- package/lib/components/error-page/error-page-code/public-api.d.ts +2 -0
- package/lib/components/error-page/error-page.component.d.ts +49 -0
- package/lib/components/error-page/error-page.module.d.ts +15 -0
- package/lib/components/error-page/error-page.types.d.ts +22 -0
- package/lib/components/error-page/index.d.ts +1 -0
- package/lib/components/error-page/public-api.d.ts +3 -0
- package/lib/components/expansion-panel/expansion-panel.component.d.ts +21 -0
- package/lib/components/expansion-panel/expansion-panel.module.d.ts +10 -0
- package/lib/components/expansion-panel/index.d.ts +1 -0
- package/lib/components/expansion-panel/public-api.d.ts +2 -0
- package/lib/components/footer/container/footer-container.component.d.ts +5 -0
- package/lib/components/footer/container/footer-container.module.d.ts +7 -0
- package/lib/components/footer/container/index.d.ts +1 -0
- package/lib/components/footer/container/public-api.d.ts +2 -0
- package/lib/components/footer/footer.component.d.ts +22 -0
- package/lib/components/footer/footer.component.types.d.ts +12 -0
- package/lib/components/footer/footer.module.d.ts +8 -0
- package/lib/components/footer/index.d.ts +1 -0
- package/lib/components/footer/public-api.d.ts +3 -0
- package/lib/components/form-fields/abstracts/abstract.base.component.d.ts +57 -0
- package/lib/components/form-fields/abstracts/abstract.dropdown.component.d.ts +44 -0
- package/lib/components/form-fields/abstracts/abstract.input.component.d.ts +24 -0
- package/lib/components/form-fields/area/index.d.ts +1 -0
- package/lib/components/form-fields/area/public-api.d.ts +2 -0
- package/lib/components/form-fields/area/textarea.component.d.ts +12 -0
- package/lib/components/form-fields/area/textarea.module.d.ts +17 -0
- package/lib/components/form-fields/common/dropdown-option-template.directive.d.ts +11 -0
- package/lib/components/form-fields/common/error/error.component.d.ts +7 -0
- package/lib/components/form-fields/common/hint/hint.component.d.ts +11 -0
- package/lib/components/form-fields/common/input.tooltip.component.d.ts +11 -0
- package/lib/components/form-fields/common/success/success.component.d.ts +7 -0
- package/lib/components/form-fields/datepickers/date-picker/datepicker.component.d.ts +24 -0
- package/lib/components/form-fields/datepickers/date-picker/datepicker.module.d.ts +22 -0
- package/lib/components/form-fields/datepickers/date-picker/index.d.ts +1 -0
- package/lib/components/form-fields/datepickers/date-picker/public-api.d.ts +2 -0
- package/lib/components/form-fields/datepickers/datetime-picker/custom-datetime-format.d.ts +18 -0
- package/lib/components/form-fields/datepickers/datetime-picker/custom-datetime.adapter.d.ts +11 -0
- package/lib/components/form-fields/datepickers/datetime-picker/datetime-picker-format-directive.d.ts +22 -0
- package/lib/components/form-fields/datepickers/datetime-picker/datetime-template.formatter.d.ts +13 -0
- package/lib/components/form-fields/datepickers/datetime-picker/datetimepicker.component.d.ts +118 -0
- package/lib/components/form-fields/datepickers/datetime-picker/datetimepicker.module.d.ts +21 -0
- package/lib/components/form-fields/datepickers/datetime-picker/index.d.ts +1 -0
- package/lib/components/form-fields/datepickers/datetime-picker/public-api.d.ts +2 -0
- package/lib/components/form-fields/datepickers/time-picker/index.d.ts +1 -0
- package/lib/components/form-fields/datepickers/time-picker/public-api.d.ts +2 -0
- package/lib/components/form-fields/datepickers/time-picker/timepicker.component.d.ts +26 -0
- package/lib/components/form-fields/datepickers/time-picker/timepicker.module.d.ts +22 -0
- package/lib/components/form-fields/dropdowns/dropdown/dropdown.component.d.ts +64 -0
- package/lib/components/form-fields/dropdowns/dropdown/dropdown.module.d.ts +21 -0
- package/lib/components/form-fields/dropdowns/dropdown/index.d.ts +1 -0
- package/lib/components/form-fields/dropdowns/dropdown/public-api.d.ts +2 -0
- package/lib/components/form-fields/dropdowns/input-dropdown/index.d.ts +1 -0
- package/lib/components/form-fields/dropdowns/input-dropdown/input-dropdown.component.d.ts +47 -0
- package/lib/components/form-fields/dropdowns/input-dropdown/input-dropdown.module.d.ts +20 -0
- package/lib/components/form-fields/dropdowns/input-dropdown/public-api.d.ts +2 -0
- package/lib/components/form-fields/dropdowns/multi-select-dropdown/index.d.ts +1 -0
- package/lib/components/form-fields/dropdowns/multi-select-dropdown/multi-select-dropdown.component.d.ts +26 -0
- package/lib/components/form-fields/dropdowns/multi-select-dropdown/multi-select-dropdown.module.d.ts +21 -0
- package/lib/components/form-fields/dropdowns/multi-select-dropdown/public-api.d.ts +2 -0
- package/lib/components/form-fields/input/index.d.ts +1 -0
- package/lib/components/form-fields/input/input.component.d.ts +29 -0
- package/lib/components/form-fields/input/input.module.d.ts +17 -0
- package/lib/components/form-fields/input/public-api.d.ts +2 -0
- package/lib/components/form-fields/search-fields/search-dropdown/index.d.ts +1 -0
- package/lib/components/form-fields/search-fields/search-dropdown/public-api.d.ts +2 -0
- package/lib/components/form-fields/search-fields/search-dropdown/search-dropdown-highlighter.pipe.d.ts +13 -0
- package/lib/components/form-fields/search-fields/search-dropdown/search-dropdown.component.d.ts +195 -0
- package/lib/components/form-fields/search-fields/search-dropdown/search-dropdown.component.types.d.ts +10 -0
- package/lib/components/form-fields/search-fields/search-dropdown/search-dropdown.module.d.ts +22 -0
- package/lib/components/form-fields/search-fields/search-input/index.d.ts +1 -0
- package/lib/components/form-fields/search-fields/search-input/public-api.d.ts +2 -0
- package/lib/components/form-fields/search-fields/search-input/search-input.component.d.ts +15 -0
- package/lib/components/form-fields/search-fields/search-input/search-input.module.d.ts +20 -0
- package/lib/components/form-fields/selection-fields/checkbox/checkbox.component.d.ts +17 -0
- package/lib/components/form-fields/selection-fields/checkbox/checkbox.module.d.ts +13 -0
- package/lib/components/form-fields/selection-fields/checkbox/index.d.ts +1 -0
- package/lib/components/form-fields/selection-fields/checkbox/public-api.d.ts +2 -0
- package/lib/components/form-fields/selection-fields/radio-button/index.d.ts +1 -0
- package/lib/components/form-fields/selection-fields/radio-button/public-api.d.ts +2 -0
- package/lib/components/form-fields/selection-fields/radio-button/radio-button.component.d.ts +28 -0
- package/lib/components/form-fields/selection-fields/radio-button/radio-button.module.d.ts +17 -0
- package/lib/components/form-fields/selection-fields/slide-toggle/index.d.ts +1 -0
- package/lib/components/form-fields/selection-fields/slide-toggle/public-api.d.ts +2 -0
- package/lib/components/form-fields/selection-fields/slide-toggle/slide-toggle.component.d.ts +19 -0
- package/lib/components/form-fields/selection-fields/slide-toggle/slide-toggle.module.d.ts +13 -0
- package/lib/components/form-fields/selection-fields/slider/index.d.ts +1 -0
- package/lib/components/form-fields/selection-fields/slider/public-api.d.ts +2 -0
- package/lib/components/form-fields/selection-fields/slider/slider.component.d.ts +20 -0
- package/lib/components/form-fields/selection-fields/slider/slider.module.d.ts +14 -0
- package/lib/components/general/color-palette/colors.enums.d.ts +37 -0
- package/lib/components/header/container/header-container.component.d.ts +9 -0
- package/lib/components/header/container/header-container.module.d.ts +7 -0
- package/lib/components/header/container/index.d.ts +1 -0
- package/lib/components/header/container/public-api.d.ts +2 -0
- package/lib/components/header/header.component.d.ts +5 -0
- package/lib/components/header/header.module.d.ts +7 -0
- package/lib/components/header/index.d.ts +1 -0
- package/lib/components/header/org-display-text/index.d.ts +1 -0
- package/lib/components/header/org-display-text/org-display-text.component.d.ts +13 -0
- package/lib/components/header/org-display-text/org-display-text.module.d.ts +8 -0
- package/lib/components/header/org-display-text/public-api.d.ts +2 -0
- package/lib/components/header/public-api.d.ts +2 -0
- package/lib/components/icon-hover/icon-hover.component.d.ts +23 -0
- package/lib/components/icon-hover/icon-hover.module.d.ts +7 -0
- package/lib/components/icon-hover/index.d.ts +1 -0
- package/lib/components/icon-hover/public-api.d.ts +2 -0
- package/lib/components/logo/ascent-logo/ascent-logo.component.d.ts +19 -0
- package/lib/components/logo/ascent-logo/ascent-logo.module.d.ts +8 -0
- package/lib/components/logo/ascent-logo/index.d.ts +1 -0
- package/lib/components/logo/ascent-logo/public-api.d.ts +2 -0
- package/lib/components/logo/primary-logo/index.d.ts +1 -0
- package/lib/components/logo/primary-logo/primary-logo.component.d.ts +21 -0
- package/lib/components/logo/primary-logo/primary-logo.module.d.ts +8 -0
- package/lib/components/logo/primary-logo/public-api.d.ts +2 -0
- package/lib/components/main-menu/index.d.ts +1 -0
- package/lib/components/main-menu/main-menu-bottom-sheet/main-menu-bottom-sheet.component.d.ts +11 -0
- package/lib/components/main-menu/main-menu.component.d.ts +42 -0
- package/lib/components/main-menu/main-menu.module.d.ts +15 -0
- package/lib/components/main-menu/main-menu.types.d.ts +8 -0
- package/lib/components/main-menu/public-api.d.ts +3 -0
- package/lib/components/modal/index.d.ts +1 -0
- package/lib/components/modal/modal.component.d.ts +27 -0
- package/lib/components/modal/modal.module.d.ts +12 -0
- package/lib/components/modal/public-api.d.ts +2 -0
- package/lib/components/navigation/dashboard-edit-icon/dashboard-edit-icon.component.d.ts +30 -0
- package/lib/components/navigation/dashboard-edit-icon/dashboard-edit-icon.module.d.ts +8 -0
- package/lib/components/navigation/dashboard-edit-icon/index.d.ts +1 -0
- package/lib/components/navigation/dashboard-edit-icon/public-api.d.ts +2 -0
- package/lib/components/navigation/index.d.ts +1 -0
- package/lib/components/navigation/navigation-actions-container/index.d.ts +1 -0
- package/lib/components/navigation/navigation-actions-container/navigation-actions-container.component.d.ts +9 -0
- package/lib/components/navigation/navigation-actions-container/navigation-actions-container.module.d.ts +8 -0
- package/lib/components/navigation/navigation-actions-container/public-api.d.ts +2 -0
- package/lib/components/navigation/navigation-collapse-handle/index.d.ts +1 -0
- package/lib/components/navigation/navigation-collapse-handle/navigation-collapse-handle.component.d.ts +31 -0
- package/lib/components/navigation/navigation-collapse-handle/navigation-collapse-handle.module.d.ts +8 -0
- package/lib/components/navigation/navigation-collapse-handle/public-api.d.ts +2 -0
- package/lib/components/navigation/navigation-header/index.d.ts +1 -0
- package/lib/components/navigation/navigation-header/navigation-header.component.d.ts +13 -0
- package/lib/components/navigation/navigation-header/navigation-header.module.d.ts +7 -0
- package/lib/components/navigation/navigation-header/public-api.d.ts +2 -0
- package/lib/components/navigation/navigation-item/index.d.ts +1 -0
- package/lib/components/navigation/navigation-item/navigation-item.component.d.ts +52 -0
- package/lib/components/navigation/navigation-item/navigation-item.module.d.ts +11 -0
- package/lib/components/navigation/navigation-item/public-api.d.ts +2 -0
- package/lib/components/navigation/navigation-items-container/index.d.ts +1 -0
- package/lib/components/navigation/navigation-items-container/navigation-items-container.component.d.ts +5 -0
- package/lib/components/navigation/navigation-items-container/navigation-items-container.module.d.ts +7 -0
- package/lib/components/navigation/navigation-items-container/public-api.d.ts +2 -0
- package/lib/components/navigation/navigation.component.d.ts +13 -0
- package/lib/components/navigation/navigation.module.d.ts +7 -0
- package/lib/components/navigation/public-api.d.ts +2 -0
- package/lib/components/navigation/side-navigation/side-navigation-container/index.d.ts +1 -0
- package/lib/components/navigation/side-navigation/side-navigation-container/public-api.d.ts +2 -0
- package/lib/components/navigation/side-navigation/side-navigation-container/side-navigation-container.component.d.ts +5 -0
- package/lib/components/navigation/side-navigation/side-navigation-container/side-navigation-container.module.d.ts +7 -0
- package/lib/components/navigation/side-navigation/side-navigation-item/index.d.ts +1 -0
- package/lib/components/navigation/side-navigation/side-navigation-item/public-api.d.ts +2 -0
- package/lib/components/navigation/side-navigation/side-navigation-item/side-navigation-item.component.d.ts +45 -0
- package/lib/components/navigation/side-navigation/side-navigation-item/side-navigation-item.module.d.ts +11 -0
- package/lib/components/navigation/sub-navigation-item/index.d.ts +1 -0
- package/lib/components/navigation/sub-navigation-item/public-api.d.ts +2 -0
- package/lib/components/navigation/sub-navigation-item/sub-navigation-item.component.d.ts +28 -0
- package/lib/components/navigation/sub-navigation-item/sub-navigation-item.module.d.ts +8 -0
- package/lib/components/navigation/sub-navigation-items-container/index.d.ts +1 -0
- package/lib/components/navigation/sub-navigation-items-container/public-api.d.ts +2 -0
- package/lib/components/navigation/sub-navigation-items-container/sub-navigation-items-container.component.d.ts +5 -0
- package/lib/components/navigation/sub-navigation-items-container/sub-navigation-items-container.module.d.ts +7 -0
- package/lib/components/pagination/container/index.d.ts +1 -0
- package/lib/components/pagination/container/pagination-container.component.d.ts +5 -0
- package/lib/components/pagination/container/pagination-container.module.d.ts +7 -0
- package/lib/components/pagination/container/public-api.d.ts +2 -0
- package/lib/components/pagination/index.d.ts +1 -0
- package/lib/components/pagination/pagination.component.d.ts +41 -0
- package/lib/components/pagination/pagination.module.d.ts +9 -0
- package/lib/components/pagination/public-api.d.ts +2 -0
- package/lib/components/progress-indicators/progress-bar/index.d.ts +1 -0
- package/lib/components/progress-indicators/progress-bar/progress-bar.component.d.ts +48 -0
- package/lib/components/progress-indicators/progress-bar/progress-bar.module.d.ts +9 -0
- package/lib/components/progress-indicators/progress-bar/public-api.d.ts +2 -0
- package/lib/components/progress-indicators/progress-indicator-spinner/index.d.ts +1 -0
- package/lib/components/progress-indicators/progress-indicator-spinner/progress-indicator-spinner.component.d.ts +33 -0
- package/lib/components/progress-indicators/progress-indicator-spinner/progress-indicator-spinner.module.d.ts +9 -0
- package/lib/components/progress-indicators/progress-indicator-spinner/progress-indicator-spinner.types.d.ts +6 -0
- package/lib/components/progress-indicators/progress-indicator-spinner/public-api.d.ts +2 -0
- package/lib/components/progress-indicators/progress-spinner/index.d.ts +1 -0
- package/lib/components/progress-indicators/progress-spinner/progress-spinner.component.d.ts +37 -0
- package/lib/components/progress-indicators/progress-spinner/progress-spinner.module.d.ts +11 -0
- package/lib/components/progress-indicators/progress-spinner/public-api.d.ts +2 -0
- package/lib/components/progress-stepper/index.d.ts +1 -0
- package/lib/components/progress-stepper/progress-step.types.d.ts +5 -0
- package/lib/components/progress-stepper/progress-stepper.component.d.ts +42 -0
- package/lib/components/progress-stepper/progress-stepper.module.d.ts +10 -0
- package/lib/components/progress-stepper/public-api.d.ts +3 -0
- package/lib/components/rating/index.d.ts +1 -0
- package/lib/components/rating/public-api.d.ts +2 -0
- package/lib/components/rating/rating.component.d.ts +22 -0
- package/lib/components/rating/rating.module.d.ts +9 -0
- package/lib/components/shell-layout/index.d.ts +1 -0
- package/lib/components/shell-layout/public-api.d.ts +2 -0
- package/lib/components/shell-layout/shell-layout.component.d.ts +13 -0
- package/lib/components/shell-layout/shell-layout.module.d.ts +8 -0
- package/lib/components/snackbars/inline-snackbar/index.d.ts +1 -0
- package/lib/components/snackbars/inline-snackbar/inline-snackbar.component.d.ts +31 -0
- package/lib/components/snackbars/inline-snackbar/inline-snackbar.module.d.ts +9 -0
- package/lib/components/snackbars/inline-snackbar/public-api.d.ts +2 -0
- package/lib/components/snackbars/snackbar/index.d.ts +1 -0
- package/lib/components/snackbars/snackbar/public-api.d.ts +2 -0
- package/lib/components/snackbars/snackbar/snackbar.component.d.ts +22 -0
- package/lib/components/snackbars/snackbar/snackbar.module.d.ts +11 -0
- package/lib/components/splash-page/index.d.ts +1 -0
- package/lib/components/splash-page/public-api.d.ts +2 -0
- package/lib/components/splash-page/splash-page.component.d.ts +14 -0
- package/lib/components/splash-page/splash-page.module.d.ts +8 -0
- package/lib/components/stepper-condensed/condensed-helpers.d.ts +24 -0
- package/lib/components/stepper-condensed/condensed-step.type.d.ts +43 -0
- package/lib/components/stepper-condensed/index.d.ts +1 -0
- package/lib/components/stepper-condensed/public-api.d.ts +4 -0
- package/lib/components/stepper-condensed/stepper-condensed.component.d.ts +61 -0
- package/lib/components/stepper-condensed/stepper-condensed.module.d.ts +11 -0
- package/lib/components/submenu/submenu-container/index.d.ts +1 -0
- package/lib/components/submenu/submenu-container/public-api.d.ts +2 -0
- package/lib/components/submenu/submenu-container/submenu-container.component.d.ts +9 -0
- package/lib/components/submenu/submenu-container/submenu-container.module.d.ts +8 -0
- package/lib/components/submenu/submenu-heading/index.d.ts +1 -0
- package/lib/components/submenu/submenu-heading/public-api.d.ts +2 -0
- package/lib/components/submenu/submenu-heading/submenu-heading.component.d.ts +9 -0
- package/lib/components/submenu/submenu-heading/submenu-heading.module.d.ts +8 -0
- package/lib/components/submenu/submenu-item/index.d.ts +1 -0
- package/lib/components/submenu/submenu-item/public-api.d.ts +2 -0
- package/lib/components/submenu/submenu-item/submenu-item.component.d.ts +16 -0
- package/lib/components/submenu/submenu-item/submenu-item.module.d.ts +9 -0
- package/lib/components/submenu/submenu-secondary-item/index.d.ts +1 -0
- package/lib/components/submenu/submenu-secondary-item/public-api.d.ts +2 -0
- package/lib/components/submenu/submenu-secondary-item/submenu-secondary-item.component.d.ts +18 -0
- package/lib/components/submenu/submenu-secondary-item/submenu-secondary-item.module.d.ts +9 -0
- package/lib/components/table/index.d.ts +1 -0
- package/lib/components/table/public-api.d.ts +2 -0
- package/lib/components/table/table.component.d.ts +35 -0
- package/lib/components/table/table.module.d.ts +10 -0
- package/lib/components/tags/create-tag/create-tag.component.d.ts +85 -0
- package/lib/components/tags/create-tag/create-tag.module.d.ts +14 -0
- package/lib/components/tags/create-tag/index.d.ts +1 -0
- package/lib/components/tags/create-tag/public-api.d.ts +2 -0
- package/lib/components/tags/tag/index.d.ts +1 -0
- package/lib/components/tags/tag/public-api.d.ts +3 -0
- package/lib/components/tags/tag/tag.component.d.ts +34 -0
- package/lib/components/tags/tag/tag.module.d.ts +9 -0
- package/lib/components/tags/tag/tag.types.d.ts +6 -0
- package/lib/components/tags/tag-container/index.d.ts +1 -0
- package/lib/components/tags/tag-container/public-api.d.ts +2 -0
- package/lib/components/tags/tag-container/tag-container.component.d.ts +5 -0
- package/lib/components/tags/tag-container/tag-container.module.d.ts +8 -0
- package/lib/components/timeline-stepper/index.d.ts +1 -0
- package/lib/components/timeline-stepper/public-api.d.ts +4 -0
- package/lib/components/timeline-stepper/timeline-helpers.d.ts +24 -0
- package/lib/components/timeline-stepper/timeline-step.type.d.ts +43 -0
- package/lib/components/timeline-stepper/timeline-stepper.component.d.ts +61 -0
- package/lib/components/timeline-stepper/timeline-stepper.module.d.ts +11 -0
- package/lib/components/vertical-stepper/index.d.ts +1 -0
- package/lib/components/vertical-stepper/public-api.d.ts +4 -0
- package/lib/components/vertical-stepper/vertical-helpers.d.ts +24 -0
- package/lib/components/vertical-stepper/vertical-step.type.d.ts +45 -0
- package/lib/components/vertical-stepper/vertical-stepper.component.d.ts +58 -0
- package/lib/components/vertical-stepper/vertical-stepper.module.d.ts +11 -0
- package/lib/components/widgets/widget-actions/index.d.ts +1 -0
- package/lib/components/widgets/widget-actions/public-api.d.ts +2 -0
- package/lib/components/widgets/widget-actions/widget-actions.component.d.ts +5 -0
- package/lib/components/widgets/widget-actions/widget-actions.module.d.ts +7 -0
- package/lib/components/widgets/widget-bar/index.d.ts +1 -0
- package/lib/components/widgets/widget-bar/public-api.d.ts +2 -0
- package/lib/components/widgets/widget-bar/widget-bar.component.d.ts +9 -0
- package/lib/components/widgets/widget-bar/widget-bar.module.d.ts +8 -0
- package/lib/components/widgets/widget-container/index.d.ts +1 -0
- package/lib/components/widgets/widget-container/public-api.d.ts +2 -0
- package/lib/components/widgets/widget-container/widget-container.component.d.ts +5 -0
- package/lib/components/widgets/widget-container/widget-container.module.d.ts +8 -0
- package/lib/components/widgets/widget-footer/index.d.ts +1 -0
- package/lib/components/widgets/widget-footer/public-api.d.ts +2 -0
- package/lib/components/widgets/widget-footer/widget-footer.component.d.ts +5 -0
- package/lib/components/widgets/widget-footer/widget-footer.module.d.ts +8 -0
- package/lib/components/widgets/widget-header/index.d.ts +1 -0
- package/lib/components/widgets/widget-header/public-api.d.ts +2 -0
- package/lib/components/widgets/widget-header/widget-header.component.d.ts +5 -0
- package/lib/components/widgets/widget-header/widget-header.module.d.ts +8 -0
- package/lib/components/widgets/widget-preview/index.d.ts +1 -0
- package/lib/components/widgets/widget-preview/public-api.d.ts +2 -0
- package/lib/components/widgets/widget-preview/widget-preview.component.d.ts +28 -0
- package/lib/components/widgets/widget-preview/widget-preview.module.d.ts +8 -0
- package/lib/components/widgets/widget-thumbnail/index.d.ts +1 -0
- package/lib/components/widgets/widget-thumbnail/public-api.d.ts +2 -0
- package/lib/components/widgets/widget-thumbnail/widget-thumbnail.component.d.ts +68 -0
- package/lib/components/widgets/widget-thumbnail/widget-thumbnail.module.d.ts +10 -0
- package/lib/components/widgets/widget-thumbnail-container/index.d.ts +1 -0
- package/lib/components/widgets/widget-thumbnail-container/public-api.d.ts +2 -0
- package/lib/components/widgets/widget-thumbnail-container/widget-thumbnail-container.component.d.ts +5 -0
- package/lib/components/widgets/widget-thumbnail-container/widget-thumbnail-container.module.d.ts +8 -0
- package/lib/components/widgets/widget-title/index.d.ts +1 -0
- package/lib/components/widgets/widget-title/public-api.d.ts +2 -0
- package/lib/components/widgets/widget-title/widget-title.component.d.ts +13 -0
- package/lib/components/widgets/widget-title/widget-title.module.d.ts +8 -0
- package/lib/components/wizard-stepper/index.d.ts +1 -0
- package/lib/components/wizard-stepper/public-api.d.ts +3 -0
- package/lib/components/wizard-stepper/wizard-stepper.component.d.ts +12 -0
- package/lib/components/wizard-stepper/wizard-stepper.module.d.ts +10 -0
- package/lib/components/wizard-stepper/wizard-stepper.types.d.ts +4 -0
- package/lib/services/viewport/viewport.service.d.ts +22 -0
- package/lib/services/viewport/viewport.service.interface.d.ts +6 -0
- package/lib/services/window/window.service.d.ts +12 -0
- package/lib/services/window/window.service.interface.d.ts +7 -0
- package/package.json +340 -0
- package/src/assets/sass/ads-ui/abstracts/_functions.scss +15 -0
- package/src/assets/sass/ads-ui/abstracts/_mixins.scss +88 -0
- package/src/assets/sass/ads-ui/abstracts/_variables.scss +125 -0
- package/src/assets/sass/ads-ui/base/_reset.scss +41 -0
- package/src/assets/sass/ads-ui/base/_typography.scss +188 -0
- package/src/assets/sass/ads-ui/base/_utilities.scss +105 -0
- package/src/assets/sass/ads-ui/main.scss +9 -0
- package/src/assets/sass/ads-ui/overrides/_ag-grid.scss +2 -0
- package/src/assets/sass/ads-ui/overrides/_angular-material.scss +10 -0
- package/src/assets/sass/ads-ui/overrides/angular-material/_bottom-sheet.scss +10 -0
- package/src/assets/sass/ads-ui/overrides/angular-material/_datetimepicker.scss +250 -0
- package/src/assets/sass/ads-ui/overrides/angular-material/_dropdown.scss +32 -0
- package/src/assets/sass/ads-ui/overrides/angular-material/_expansion-panel.scss +19 -0
- package/src/assets/sass/ads-ui/overrides/angular-material/_html.scss +18 -0
- package/src/assets/sass/ads-ui/overrides/angular-material/_mat-list.scss +45 -0
- package/src/assets/sass/ads-ui/overrides/angular-material/_modal.scss +42 -0
- package/src/assets/sass/ads-ui/overrides/angular-material/_search-dropdown-modal.scss +32 -0
- package/src/assets/sass/ads-ui/overrides/angular-material/_snackbar.scss +37 -0
- package/src/assets/sass/ads-ui/overrides/angular-material/_tabs.scss +63 -0
- package/src/assets/sass/ads-ui/overrides/angular-material/_tooltip.scss +73 -0
- package/src/assets/sass/ads-ui/themes/_ads-palette.scss +98 -0
- package/src/lib/components/avatar/avatar.component.d.ts +30 -0
- package/src/lib/components/avatar/avatar.module.d.ts +9 -0
- package/src/lib/components/avatar/avatar.types.d.ts +1 -0
- package/src/lib/components/avatar/index.d.ts +5 -0
- package/src/lib/components/avatar/public-api.d.ts +2 -0
- package/src/lib/components/buttons/button-container/button-container.component.d.ts +9 -0
- package/src/lib/components/buttons/button-container/button-container.module.d.ts +8 -0
- package/src/lib/components/buttons/button-container/index.d.ts +5 -0
- package/src/lib/components/buttons/button-container/public-api.d.ts +2 -0
- package/src/lib/components/buttons/selection-button/index.d.ts +5 -0
- package/src/lib/components/buttons/selection-button/public-api.d.ts +2 -0
- package/src/lib/components/buttons/selection-button/selection-button.component.d.ts +40 -0
- package/src/lib/components/buttons/selection-button/selection-button.module.d.ts +10 -0
- package/src/lib/components/card/card.component.d.ts +5 -0
- package/src/lib/components/card/card.module.d.ts +8 -0
- package/src/lib/components/card/index.d.ts +5 -0
- package/src/lib/components/card/public-api.d.ts +2 -0
- package/src/lib/components/divider/divider.component.d.ts +26 -0
- package/src/lib/components/divider/divider.module.d.ts +8 -0
- package/src/lib/components/divider/index.d.ts +5 -0
- package/src/lib/components/divider/public-api.d.ts +2 -0
- package/src/lib/components/drag-and-drop-list/dom.element.d.ts +17 -0
- package/src/lib/components/drag-and-drop-list/drag-and-drop-list.component.d.ts +82 -0
- package/src/lib/components/drag-and-drop-list/drag-and-drop-list.enums.d.ts +8 -0
- package/src/lib/components/drag-and-drop-list/drag-and-drop-list.module.d.ts +8 -0
- package/src/lib/components/drag-and-drop-list/dragged.placeholder.d.ts +14 -0
- package/src/lib/components/drag-and-drop-list/index.d.ts +5 -0
- package/src/lib/components/drag-and-drop-list/public-api.d.ts +2 -0
- package/src/lib/components/error-page/error-page-code/error-page-code.component.d.ts +5 -0
- package/src/lib/components/error-page/error-page-code/error-page-code.module.d.ts +8 -0
- package/src/lib/components/error-page/error-page-code/index.d.ts +5 -0
- package/src/lib/components/error-page/error-page-code/public-api.d.ts +2 -0
- package/src/lib/components/footer/container/footer-container.component.d.ts +5 -0
- package/src/lib/components/footer/container/footer-container.module.d.ts +7 -0
- package/src/lib/components/footer/container/index.d.ts +5 -0
- package/src/lib/components/footer/container/public-api.d.ts +2 -0
- package/src/lib/components/footer/footer.component.d.ts +22 -0
- package/src/lib/components/footer/footer.component.types.d.ts +12 -0
- package/src/lib/components/footer/footer.module.d.ts +8 -0
- package/src/lib/components/footer/index.d.ts +5 -0
- package/src/lib/components/footer/public-api.d.ts +3 -0
- package/src/lib/components/header/container/header-container.component.d.ts +9 -0
- package/src/lib/components/header/container/header-container.module.d.ts +7 -0
- package/src/lib/components/header/container/index.d.ts +5 -0
- package/src/lib/components/header/container/public-api.d.ts +2 -0
- package/src/lib/components/header/header.component.d.ts +5 -0
- package/src/lib/components/header/header.module.d.ts +7 -0
- package/src/lib/components/header/index.d.ts +5 -0
- package/src/lib/components/header/org-display-text/index.d.ts +5 -0
- package/src/lib/components/header/org-display-text/org-display-text.component.d.ts +13 -0
- package/src/lib/components/header/org-display-text/org-display-text.module.d.ts +8 -0
- package/src/lib/components/header/org-display-text/public-api.d.ts +2 -0
- package/src/lib/components/header/public-api.d.ts +2 -0
- package/src/lib/components/logo/primary-logo/index.d.ts +5 -0
- package/src/lib/components/logo/primary-logo/primary-logo.component.d.ts +21 -0
- package/src/lib/components/logo/primary-logo/primary-logo.module.d.ts +8 -0
- package/src/lib/components/logo/primary-logo/public-api.d.ts +2 -0
- package/src/lib/components/main-menu/index.d.ts +5 -0
- package/src/lib/components/main-menu/main-menu-bottom-sheet/main-menu-bottom-sheet.component.d.ts +11 -0
- package/src/lib/components/main-menu/main-menu.component.d.ts +42 -0
- package/src/lib/components/main-menu/main-menu.module.d.ts +15 -0
- package/src/lib/components/main-menu/main-menu.types.d.ts +8 -0
- package/src/lib/components/main-menu/public-api.d.ts +3 -0
- package/src/lib/components/navigation/dashboard-edit-icon/dashboard-edit-icon.component.d.ts +30 -0
- package/src/lib/components/navigation/dashboard-edit-icon/dashboard-edit-icon.module.d.ts +8 -0
- package/src/lib/components/navigation/dashboard-edit-icon/index.d.ts +5 -0
- package/src/lib/components/navigation/dashboard-edit-icon/public-api.d.ts +2 -0
- package/src/lib/components/navigation/index.d.ts +5 -0
- package/src/lib/components/navigation/navigation-actions-container/index.d.ts +5 -0
- package/src/lib/components/navigation/navigation-actions-container/navigation-actions-container.component.d.ts +9 -0
- package/src/lib/components/navigation/navigation-actions-container/navigation-actions-container.module.d.ts +8 -0
- package/src/lib/components/navigation/navigation-actions-container/public-api.d.ts +2 -0
- package/src/lib/components/navigation/navigation-collapse-handle/index.d.ts +5 -0
- package/src/lib/components/navigation/navigation-collapse-handle/navigation-collapse-handle.component.d.ts +31 -0
- package/src/lib/components/navigation/navigation-collapse-handle/navigation-collapse-handle.module.d.ts +8 -0
- package/src/lib/components/navigation/navigation-collapse-handle/public-api.d.ts +2 -0
- package/src/lib/components/navigation/navigation-header/index.d.ts +5 -0
- package/src/lib/components/navigation/navigation-header/navigation-header.component.d.ts +13 -0
- package/src/lib/components/navigation/navigation-header/navigation-header.module.d.ts +7 -0
- package/src/lib/components/navigation/navigation-header/public-api.d.ts +2 -0
- package/src/lib/components/navigation/navigation-item/index.d.ts +5 -0
- package/src/lib/components/navigation/navigation-item/navigation-item.component.d.ts +52 -0
- package/src/lib/components/navigation/navigation-item/navigation-item.module.d.ts +11 -0
- package/src/lib/components/navigation/navigation-item/public-api.d.ts +2 -0
- package/src/lib/components/navigation/navigation-items-container/index.d.ts +5 -0
- package/src/lib/components/navigation/navigation-items-container/navigation-items-container.component.d.ts +5 -0
- package/src/lib/components/navigation/navigation-items-container/navigation-items-container.module.d.ts +7 -0
- package/src/lib/components/navigation/navigation-items-container/public-api.d.ts +2 -0
- package/src/lib/components/navigation/navigation.component.d.ts +13 -0
- package/src/lib/components/navigation/navigation.module.d.ts +7 -0
- package/src/lib/components/navigation/public-api.d.ts +2 -0
- package/src/lib/components/navigation/side-navigation/side-navigation-container/index.d.ts +5 -0
- package/src/lib/components/navigation/side-navigation/side-navigation-container/public-api.d.ts +2 -0
- package/src/lib/components/navigation/side-navigation/side-navigation-container/side-navigation-container.component.d.ts +5 -0
- package/src/lib/components/navigation/side-navigation/side-navigation-container/side-navigation-container.module.d.ts +7 -0
- package/src/lib/components/navigation/side-navigation/side-navigation-item/index.d.ts +5 -0
- package/src/lib/components/navigation/side-navigation/side-navigation-item/public-api.d.ts +2 -0
- package/src/lib/components/navigation/side-navigation/side-navigation-item/side-navigation-item.component.d.ts +45 -0
- package/src/lib/components/navigation/side-navigation/side-navigation-item/side-navigation-item.module.d.ts +11 -0
- package/src/lib/components/navigation/sub-navigation-item/index.d.ts +5 -0
- package/src/lib/components/navigation/sub-navigation-item/public-api.d.ts +2 -0
- package/src/lib/components/navigation/sub-navigation-item/sub-navigation-item.component.d.ts +28 -0
- package/src/lib/components/navigation/sub-navigation-item/sub-navigation-item.module.d.ts +8 -0
- package/src/lib/components/navigation/sub-navigation-items-container/index.d.ts +5 -0
- package/src/lib/components/navigation/sub-navigation-items-container/public-api.d.ts +2 -0
- package/src/lib/components/navigation/sub-navigation-items-container/sub-navigation-items-container.component.d.ts +5 -0
- package/src/lib/components/navigation/sub-navigation-items-container/sub-navigation-items-container.module.d.ts +7 -0
- package/src/lib/components/pagination/container/index.d.ts +5 -0
- package/src/lib/components/pagination/container/pagination-container.component.d.ts +5 -0
- package/src/lib/components/pagination/container/pagination-container.module.d.ts +7 -0
- package/src/lib/components/pagination/container/public-api.d.ts +2 -0
- package/src/lib/components/pagination/index.d.ts +5 -0
- package/src/lib/components/pagination/pagination.component.d.ts +41 -0
- package/src/lib/components/pagination/pagination.module.d.ts +9 -0
- package/src/lib/components/pagination/public-api.d.ts +2 -0
- package/src/lib/components/progress-indicators/progress-bar/index.d.ts +5 -0
- package/src/lib/components/progress-indicators/progress-bar/progress-bar.component.d.ts +48 -0
- package/src/lib/components/progress-indicators/progress-bar/progress-bar.module.d.ts +9 -0
- package/src/lib/components/progress-indicators/progress-bar/public-api.d.ts +2 -0
- package/src/lib/components/progress-indicators/progress-indicator-spinner/index.d.ts +5 -0
- package/src/lib/components/progress-indicators/progress-indicator-spinner/progress-indicator-spinner.component.d.ts +33 -0
- package/src/lib/components/progress-indicators/progress-indicator-spinner/progress-indicator-spinner.module.d.ts +9 -0
- package/src/lib/components/progress-indicators/progress-indicator-spinner/progress-indicator-spinner.types.d.ts +6 -0
- package/src/lib/components/progress-indicators/progress-indicator-spinner/public-api.d.ts +2 -0
- package/src/lib/components/progress-indicators/progress-spinner/index.d.ts +5 -0
- package/src/lib/components/progress-indicators/progress-spinner/progress-spinner.component.d.ts +37 -0
- package/src/lib/components/progress-indicators/progress-spinner/progress-spinner.module.d.ts +11 -0
- package/src/lib/components/progress-indicators/progress-spinner/public-api.d.ts +2 -0
- package/src/lib/components/progress-stepper/index.d.ts +5 -0
- package/src/lib/components/progress-stepper/progress-step.types.d.ts +5 -0
- package/src/lib/components/progress-stepper/progress-stepper.component.d.ts +42 -0
- package/src/lib/components/progress-stepper/progress-stepper.module.d.ts +10 -0
- package/src/lib/components/progress-stepper/public-api.d.ts +3 -0
- package/src/lib/components/rating/index.d.ts +5 -0
- package/src/lib/components/rating/public-api.d.ts +2 -0
- package/src/lib/components/rating/rating.component.d.ts +22 -0
- package/src/lib/components/rating/rating.module.d.ts +9 -0
- package/src/lib/components/shell-layout/index.d.ts +5 -0
- package/src/lib/components/shell-layout/public-api.d.ts +2 -0
- package/src/lib/components/shell-layout/shell-layout.component.d.ts +13 -0
- package/src/lib/components/shell-layout/shell-layout.module.d.ts +8 -0
- package/src/lib/components/splash-page/index.d.ts +5 -0
- package/src/lib/components/splash-page/public-api.d.ts +2 -0
- package/src/lib/components/splash-page/splash-page.component.d.ts +14 -0
- package/src/lib/components/splash-page/splash-page.module.d.ts +8 -0
- package/src/lib/components/submenu/submenu-container/index.d.ts +5 -0
- package/src/lib/components/submenu/submenu-container/public-api.d.ts +2 -0
- package/src/lib/components/submenu/submenu-container/submenu-container.component.d.ts +9 -0
- package/src/lib/components/submenu/submenu-container/submenu-container.module.d.ts +8 -0
- package/src/lib/components/submenu/submenu-heading/index.d.ts +5 -0
- package/src/lib/components/submenu/submenu-heading/public-api.d.ts +2 -0
- package/src/lib/components/submenu/submenu-heading/submenu-heading.component.d.ts +9 -0
- package/src/lib/components/submenu/submenu-heading/submenu-heading.module.d.ts +8 -0
- package/src/lib/components/submenu/submenu-item/index.d.ts +5 -0
- package/src/lib/components/submenu/submenu-item/public-api.d.ts +2 -0
- package/src/lib/components/submenu/submenu-item/submenu-item.component.d.ts +16 -0
- package/src/lib/components/submenu/submenu-item/submenu-item.module.d.ts +9 -0
- package/src/lib/components/submenu/submenu-secondary-item/index.d.ts +5 -0
- package/src/lib/components/submenu/submenu-secondary-item/public-api.d.ts +2 -0
- package/src/lib/components/submenu/submenu-secondary-item/submenu-secondary-item.component.d.ts +18 -0
- package/src/lib/components/submenu/submenu-secondary-item/submenu-secondary-item.module.d.ts +9 -0
- package/src/lib/components/tags/tag-container/index.d.ts +5 -0
- package/src/lib/components/tags/tag-container/public-api.d.ts +2 -0
- package/src/lib/components/tags/tag-container/tag-container.component.d.ts +5 -0
- package/src/lib/components/tags/tag-container/tag-container.module.d.ts +8 -0
- package/src/lib/components/timeline-stepper/index.d.ts +5 -0
- package/src/lib/components/timeline-stepper/public-api.d.ts +4 -0
- package/src/lib/components/timeline-stepper/timeline-helpers.d.ts +24 -0
- package/src/lib/components/timeline-stepper/timeline-step.type.d.ts +43 -0
- package/src/lib/components/timeline-stepper/timeline-stepper.component.d.ts +61 -0
- package/src/lib/components/timeline-stepper/timeline-stepper.module.d.ts +11 -0
- package/src/lib/components/vertical-stepper/index.d.ts +5 -0
- package/src/lib/components/vertical-stepper/public-api.d.ts +4 -0
- package/src/lib/components/vertical-stepper/vertical-helpers.d.ts +24 -0
- package/src/lib/components/vertical-stepper/vertical-step.type.d.ts +45 -0
- package/src/lib/components/vertical-stepper/vertical-stepper.component.d.ts +58 -0
- package/src/lib/components/vertical-stepper/vertical-stepper.module.d.ts +11 -0
- package/src/lib/components/widgets/widget-actions/index.d.ts +5 -0
- package/src/lib/components/widgets/widget-actions/public-api.d.ts +2 -0
- package/src/lib/components/widgets/widget-actions/widget-actions.component.d.ts +5 -0
- package/src/lib/components/widgets/widget-actions/widget-actions.module.d.ts +7 -0
- package/src/lib/components/widgets/widget-bar/index.d.ts +5 -0
- package/src/lib/components/widgets/widget-bar/public-api.d.ts +2 -0
- package/src/lib/components/widgets/widget-bar/widget-bar.component.d.ts +9 -0
- package/src/lib/components/widgets/widget-bar/widget-bar.module.d.ts +8 -0
- package/src/lib/components/widgets/widget-container/index.d.ts +5 -0
- package/src/lib/components/widgets/widget-container/public-api.d.ts +2 -0
- package/src/lib/components/widgets/widget-container/widget-container.component.d.ts +5 -0
- package/src/lib/components/widgets/widget-container/widget-container.module.d.ts +8 -0
- package/src/lib/components/widgets/widget-footer/index.d.ts +5 -0
- package/src/lib/components/widgets/widget-footer/public-api.d.ts +2 -0
- package/src/lib/components/widgets/widget-footer/widget-footer.component.d.ts +5 -0
- package/src/lib/components/widgets/widget-footer/widget-footer.module.d.ts +8 -0
- package/src/lib/components/widgets/widget-header/index.d.ts +5 -0
- package/src/lib/components/widgets/widget-header/public-api.d.ts +2 -0
- package/src/lib/components/widgets/widget-header/widget-header.component.d.ts +5 -0
- package/src/lib/components/widgets/widget-header/widget-header.module.d.ts +8 -0
- package/src/lib/components/widgets/widget-preview/index.d.ts +5 -0
- package/src/lib/components/widgets/widget-preview/public-api.d.ts +2 -0
- package/src/lib/components/widgets/widget-preview/widget-preview.component.d.ts +28 -0
- package/src/lib/components/widgets/widget-preview/widget-preview.module.d.ts +8 -0
- package/src/lib/components/widgets/widget-thumbnail/index.d.ts +5 -0
- package/src/lib/components/widgets/widget-thumbnail/public-api.d.ts +2 -0
- package/src/lib/components/widgets/widget-thumbnail/widget-thumbnail.component.d.ts +68 -0
- package/src/lib/components/widgets/widget-thumbnail/widget-thumbnail.module.d.ts +10 -0
- package/src/lib/components/widgets/widget-thumbnail-container/index.d.ts +5 -0
- package/src/lib/components/widgets/widget-thumbnail-container/public-api.d.ts +2 -0
- package/src/lib/components/widgets/widget-thumbnail-container/widget-thumbnail-container.component.d.ts +5 -0
- package/src/lib/components/widgets/widget-thumbnail-container/widget-thumbnail-container.module.d.ts +8 -0
- package/src/lib/components/widgets/widget-title/index.d.ts +5 -0
- package/src/lib/components/widgets/widget-title/public-api.d.ts +2 -0
- package/src/lib/components/widgets/widget-title/widget-title.component.d.ts +13 -0
- package/src/lib/components/widgets/widget-title/widget-title.module.d.ts +8 -0
- package/src/lib/components/wizard-stepper/index.d.ts +5 -0
- package/src/lib/components/wizard-stepper/public-api.d.ts +3 -0
- package/src/lib/components/wizard-stepper/wizard-stepper.component.d.ts +12 -0
- package/src/lib/components/wizard-stepper/wizard-stepper.module.d.ts +10 -0
- package/src/lib/components/wizard-stepper/wizard-stepper.types.d.ts +4 -0
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
import * as i0 from '@angular/core';
|
|
2
|
+
import { Component, Input, NgModule } from '@angular/core';
|
|
3
|
+
import { CommonModule } from '@angular/common';
|
|
4
|
+
|
|
5
|
+
class AdsFooterComponent {
|
|
6
|
+
constructor() {
|
|
7
|
+
/**
|
|
8
|
+
* Alt text for the footer logo
|
|
9
|
+
*/
|
|
10
|
+
this.alt = 'Logo';
|
|
11
|
+
/**
|
|
12
|
+
* Copyright text to display
|
|
13
|
+
*/
|
|
14
|
+
this.copyright = {
|
|
15
|
+
text: `© ${new Date().getFullYear()} Ads™ is an Ascent Global Logistics Technology`,
|
|
16
|
+
};
|
|
17
|
+
/**
|
|
18
|
+
* Links to display in the footer
|
|
19
|
+
*/
|
|
20
|
+
this.links = [];
|
|
21
|
+
}
|
|
22
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsFooterComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
23
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.1.1", type: AdsFooterComponent, selector: "ads-footer", inputs: { alt: "alt", copyright: "copyright", links: "links", logoSrc: "logoSrc" }, ngImport: i0, template: "<div class=\"footer\">\n <div class=\"links\">\n @for (link of links; track $index) {\n <a class=\"tertiary-link text-xs\" [href]=\"link.href\" [target]=\"link.target || '_self'\">{{ link.text }}</a>\n }\n </div>\n <div class=\"footer-right\">\n <div class=\"copyright\">\n @if (copyright.href) {\n <a\n class=\"secondary-link text-xs\"\n [href]=\"copyright.href\"\n [target]=\"copyright.target || '_self'\"\n [innerHtml]=\"copyright.text\"\n ></a>\n } @else {\n <span [innerHtml]=\"copyright.text\"></span>\n }\n </div>\n @if (logoSrc) {\n <div class=\"logo\">\n <img [attr.src]=\"logoSrc\" alt=\"{{ alt }}\" />\n </div>\n }\n </div>\n</div>\n", styles: [".footer{display:flex;height:100%;align-items:center;justify-content:space-between}.links{display:flex;flex-wrap:wrap}a:not(:last-child):after{padding:0 8px;content:\"|\"}.copyright{height:100%;font-size:12px}.footer-right{display:flex;align-items:center;row-gap:8px;column-gap:16px}.logo{max-width:90px}@media screen and (max-width: 959px){.footer{flex-direction:column;gap:24px}.footer .links{justify-content:center}.footer-right{display:flex;flex-direction:column-reverse}.footer-right .copyright{text-align:center}}\n"] }); }
|
|
24
|
+
}
|
|
25
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsFooterComponent, decorators: [{
|
|
26
|
+
type: Component,
|
|
27
|
+
args: [{ selector: 'ads-footer', template: "<div class=\"footer\">\n <div class=\"links\">\n @for (link of links; track $index) {\n <a class=\"tertiary-link text-xs\" [href]=\"link.href\" [target]=\"link.target || '_self'\">{{ link.text }}</a>\n }\n </div>\n <div class=\"footer-right\">\n <div class=\"copyright\">\n @if (copyright.href) {\n <a\n class=\"secondary-link text-xs\"\n [href]=\"copyright.href\"\n [target]=\"copyright.target || '_self'\"\n [innerHtml]=\"copyright.text\"\n ></a>\n } @else {\n <span [innerHtml]=\"copyright.text\"></span>\n }\n </div>\n @if (logoSrc) {\n <div class=\"logo\">\n <img [attr.src]=\"logoSrc\" alt=\"{{ alt }}\" />\n </div>\n }\n </div>\n</div>\n", styles: [".footer{display:flex;height:100%;align-items:center;justify-content:space-between}.links{display:flex;flex-wrap:wrap}a:not(:last-child):after{padding:0 8px;content:\"|\"}.copyright{height:100%;font-size:12px}.footer-right{display:flex;align-items:center;row-gap:8px;column-gap:16px}.logo{max-width:90px}@media screen and (max-width: 959px){.footer{flex-direction:column;gap:24px}.footer .links{justify-content:center}.footer-right{display:flex;flex-direction:column-reverse}.footer-right .copyright{text-align:center}}\n"] }]
|
|
28
|
+
}], propDecorators: { alt: [{
|
|
29
|
+
type: Input
|
|
30
|
+
}], copyright: [{
|
|
31
|
+
type: Input
|
|
32
|
+
}], links: [{
|
|
33
|
+
type: Input
|
|
34
|
+
}], logoSrc: [{
|
|
35
|
+
type: Input
|
|
36
|
+
}] } });
|
|
37
|
+
|
|
38
|
+
class AdsFooterModule {
|
|
39
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsFooterModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
40
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.1.1", ngImport: i0, type: AdsFooterModule, declarations: [AdsFooterComponent], imports: [CommonModule], exports: [AdsFooterComponent] }); }
|
|
41
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsFooterModule, imports: [CommonModule] }); }
|
|
42
|
+
}
|
|
43
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsFooterModule, decorators: [{
|
|
44
|
+
type: NgModule,
|
|
45
|
+
args: [{
|
|
46
|
+
imports: [CommonModule],
|
|
47
|
+
exports: [AdsFooterComponent],
|
|
48
|
+
declarations: [AdsFooterComponent],
|
|
49
|
+
}]
|
|
50
|
+
}] });
|
|
51
|
+
|
|
52
|
+
/**
|
|
53
|
+
* Generated bundle index. Do not edit.
|
|
54
|
+
*/
|
|
55
|
+
|
|
56
|
+
export { AdsFooterComponent, AdsFooterModule };
|
|
57
|
+
//# sourceMappingURL=ascentgl-ads-ui-src-lib-components-footer.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ascentgl-ads-ui-src-lib-components-footer.mjs","sources":["../../../../libs/ads-ui/src/lib/components/footer/footer.component.ts","../../../../libs/ads-ui/src/lib/components/footer/footer.component.html","../../../../libs/ads-ui/src/lib/components/footer/footer.module.ts","../../../../libs/ads-ui/src/lib/components/footer/ascentgl-ads-ui-src-lib-components-footer.ts"],"sourcesContent":["import { Component, Input } from '@angular/core';\nimport { Copyright, Link } from './footer.component.types';\n\n@Component({\n selector: 'ads-footer',\n styleUrls: ['footer.component.scss'],\n templateUrl: 'footer.component.html',\n})\nexport class AdsFooterComponent {\n /**\n * Alt text for the footer logo\n */\n @Input() alt = 'Logo';\n\n /**\n * Copyright text to display\n */\n @Input() copyright: Copyright = {\n text: `© ${new Date().getFullYear()} Ads™ is an Ascent Global Logistics Technology`,\n };\n\n /**\n * Links to display in the footer\n */\n @Input() links: Link[] = [];\n\n /**\n * Path to the logo to display\n */\n @Input() logoSrc?: string;\n}\n","<div class=\"footer\">\n <div class=\"links\">\n @for (link of links; track $index) {\n <a class=\"tertiary-link text-xs\" [href]=\"link.href\" [target]=\"link.target || '_self'\">{{ link.text }}</a>\n }\n </div>\n <div class=\"footer-right\">\n <div class=\"copyright\">\n @if (copyright.href) {\n <a\n class=\"secondary-link text-xs\"\n [href]=\"copyright.href\"\n [target]=\"copyright.target || '_self'\"\n [innerHtml]=\"copyright.text\"\n ></a>\n } @else {\n <span [innerHtml]=\"copyright.text\"></span>\n }\n </div>\n @if (logoSrc) {\n <div class=\"logo\">\n <img [attr.src]=\"logoSrc\" alt=\"{{ alt }}\" />\n </div>\n }\n </div>\n</div>\n","import { CommonModule } from '@angular/common';\nimport { NgModule } from '@angular/core';\nimport { AdsFooterComponent } from './footer.component';\n\n@NgModule({\n imports: [CommonModule],\n exports: [AdsFooterComponent],\n declarations: [AdsFooterComponent],\n})\nexport class AdsFooterModule {}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":";;;;MAQa,kBAAkB,CAAA;AAL/B,IAAA,WAAA,GAAA;AAME;;AAEG;QACM,IAAG,CAAA,GAAA,GAAG,MAAM,CAAC;AAEtB;;AAEG;AACM,QAAA,IAAA,CAAA,SAAS,GAAc;YAC9B,IAAI,EAAE,UAAU,IAAI,IAAI,EAAE,CAAC,WAAW,EAAE,CAAsD,oDAAA,CAAA;SAC/F,CAAC;AAEF;;AAEG;QACM,IAAK,CAAA,KAAA,GAAW,EAAE,CAAC;AAM7B,KAAA;8GAtBY,kBAAkB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA,EAAA;AAAlB,IAAA,SAAA,IAAA,CAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,IAAA,EAAA,kBAAkB,sICR/B,0vBA0BA,EAAA,MAAA,EAAA,CAAA,0gBAAA,CAAA,EAAA,CAAA,CAAA,EAAA;;2FDlBa,kBAAkB,EAAA,UAAA,EAAA,CAAA;kBAL9B,SAAS;+BACE,YAAY,EAAA,QAAA,EAAA,0vBAAA,EAAA,MAAA,EAAA,CAAA,0gBAAA,CAAA,EAAA,CAAA;8BAQb,GAAG,EAAA,CAAA;sBAAX,KAAK;gBAKG,SAAS,EAAA,CAAA;sBAAjB,KAAK;gBAOG,KAAK,EAAA,CAAA;sBAAb,KAAK;gBAKG,OAAO,EAAA,CAAA;sBAAf,KAAK;;;MEpBK,eAAe,CAAA;8GAAf,eAAe,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,QAAA,EAAA,CAAA,CAAA,EAAA;AAAf,IAAA,SAAA,IAAA,CAAA,IAAA,GAAA,EAAA,CAAA,mBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,eAAe,EAFX,YAAA,EAAA,CAAA,kBAAkB,CAFvB,EAAA,OAAA,EAAA,CAAA,YAAY,aACZ,kBAAkB,CAAA,EAAA,CAAA,CAAA,EAAA;AAGjB,IAAA,SAAA,IAAA,CAAA,IAAA,GAAA,EAAA,CAAA,mBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,eAAe,YAJhB,YAAY,CAAA,EAAA,CAAA,CAAA,EAAA;;2FAIX,eAAe,EAAA,UAAA,EAAA,CAAA;kBAL3B,QAAQ;AAAC,YAAA,IAAA,EAAA,CAAA;oBACR,OAAO,EAAE,CAAC,YAAY,CAAC;oBACvB,OAAO,EAAE,CAAC,kBAAkB,CAAC;oBAC7B,YAAY,EAAE,CAAC,kBAAkB,CAAC;AACnC,iBAAA,CAAA;;;ACRD;;AAEG;;;;"}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import * as i0 from '@angular/core';
|
|
2
|
+
import { Component, Input, NgModule } from '@angular/core';
|
|
3
|
+
|
|
4
|
+
class AdsHeaderContainerComponent {
|
|
5
|
+
constructor() {
|
|
6
|
+
/**
|
|
7
|
+
* Whether the viewport is mobile
|
|
8
|
+
*/
|
|
9
|
+
this.isMobile = false;
|
|
10
|
+
}
|
|
11
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsHeaderContainerComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
12
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.1.1", type: AdsHeaderContainerComponent, selector: "ads-header-container", inputs: { isMobile: "isMobile" }, ngImport: i0, template: "<header [class.mobile]=\"isMobile\">\n <ng-content></ng-content>\n</header>\n", styles: ["header{display:flex;height:87px;box-sizing:border-box;flex-direction:column;justify-content:center;border-bottom:1px solid var(--color-light);padding:0 24px}header.mobile{height:70px}\n"] }); }
|
|
13
|
+
}
|
|
14
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsHeaderContainerComponent, decorators: [{
|
|
15
|
+
type: Component,
|
|
16
|
+
args: [{ selector: 'ads-header-container', template: "<header [class.mobile]=\"isMobile\">\n <ng-content></ng-content>\n</header>\n", styles: ["header{display:flex;height:87px;box-sizing:border-box;flex-direction:column;justify-content:center;border-bottom:1px solid var(--color-light);padding:0 24px}header.mobile{height:70px}\n"] }]
|
|
17
|
+
}], propDecorators: { isMobile: [{
|
|
18
|
+
type: Input
|
|
19
|
+
}] } });
|
|
20
|
+
|
|
21
|
+
class AdsHeaderContainerModule {
|
|
22
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsHeaderContainerModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
23
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.1.1", ngImport: i0, type: AdsHeaderContainerModule, declarations: [AdsHeaderContainerComponent], exports: [AdsHeaderContainerComponent] }); }
|
|
24
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsHeaderContainerModule }); }
|
|
25
|
+
}
|
|
26
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsHeaderContainerModule, decorators: [{
|
|
27
|
+
type: NgModule,
|
|
28
|
+
args: [{
|
|
29
|
+
exports: [AdsHeaderContainerComponent],
|
|
30
|
+
declarations: [AdsHeaderContainerComponent],
|
|
31
|
+
}]
|
|
32
|
+
}] });
|
|
33
|
+
|
|
34
|
+
/**
|
|
35
|
+
* Generated bundle index. Do not edit.
|
|
36
|
+
*/
|
|
37
|
+
|
|
38
|
+
export { AdsHeaderContainerComponent, AdsHeaderContainerModule };
|
|
39
|
+
//# sourceMappingURL=ascentgl-ads-ui-src-lib-components-header-container.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ascentgl-ads-ui-src-lib-components-header-container.mjs","sources":["../../../../libs/ads-ui/src/lib/components/header/container/header-container.component.ts","../../../../libs/ads-ui/src/lib/components/header/container/header-container.component.html","../../../../libs/ads-ui/src/lib/components/header/container/header-container.module.ts","../../../../libs/ads-ui/src/lib/components/header/container/ascentgl-ads-ui-src-lib-components-header-container.ts"],"sourcesContent":["import { Component, Input } from '@angular/core';\n\n@Component({\n selector: 'ads-header-container',\n styleUrls: ['header-container.component.scss'],\n templateUrl: 'header-container.component.html',\n})\nexport class AdsHeaderContainerComponent {\n /**\n * Whether the viewport is mobile\n */\n @Input() isMobile = false;\n}\n","<header [class.mobile]=\"isMobile\">\n <ng-content></ng-content>\n</header>\n","import { NgModule } from '@angular/core';\n\nimport { AdsHeaderContainerComponent } from './header-container.component';\n\n@NgModule({\n exports: [AdsHeaderContainerComponent],\n declarations: [AdsHeaderContainerComponent],\n})\nexport class AdsHeaderContainerModule {}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":";;;MAOa,2BAA2B,CAAA;AALxC,IAAA,WAAA,GAAA;AAME;;AAEG;QACM,IAAQ,CAAA,QAAA,GAAG,KAAK,CAAC;AAC3B,KAAA;8GALY,2BAA2B,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA,EAAA;AAA3B,IAAA,SAAA,IAAA,CAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,IAAA,EAAA,2BAA2B,8FCPxC,gFAGA,EAAA,MAAA,EAAA,CAAA,2LAAA,CAAA,EAAA,CAAA,CAAA,EAAA;;2FDIa,2BAA2B,EAAA,UAAA,EAAA,CAAA;kBALvC,SAAS;+BACE,sBAAsB,EAAA,QAAA,EAAA,gFAAA,EAAA,MAAA,EAAA,CAAA,2LAAA,CAAA,EAAA,CAAA;8BAQvB,QAAQ,EAAA,CAAA;sBAAhB,KAAK;;;MEHK,wBAAwB,CAAA;8GAAxB,wBAAwB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,QAAA,EAAA,CAAA,CAAA,EAAA;+GAAxB,wBAAwB,EAAA,YAAA,EAAA,CAFpB,2BAA2B,CAAA,EAAA,OAAA,EAAA,CADhC,2BAA2B,CAAA,EAAA,CAAA,CAAA,EAAA;+GAG1B,wBAAwB,EAAA,CAAA,CAAA,EAAA;;2FAAxB,wBAAwB,EAAA,UAAA,EAAA,CAAA;kBAJpC,QAAQ;AAAC,YAAA,IAAA,EAAA,CAAA;oBACR,OAAO,EAAE,CAAC,2BAA2B,CAAC;oBACtC,YAAY,EAAE,CAAC,2BAA2B,CAAC;AAC5C,iBAAA,CAAA;;;ACPD;;AAEG;;;;"}
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
import * as i0 from '@angular/core';
|
|
2
|
+
import { Component, Input, NgModule } from '@angular/core';
|
|
3
|
+
import * as i1 from '@angular/common';
|
|
4
|
+
import { CommonModule } from '@angular/common';
|
|
5
|
+
|
|
6
|
+
class AdsOrgDisplayTextComponent {
|
|
7
|
+
constructor() {
|
|
8
|
+
/**
|
|
9
|
+
* Whether the viewport is mobile
|
|
10
|
+
*/
|
|
11
|
+
this.isMobile = false;
|
|
12
|
+
}
|
|
13
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsOrgDisplayTextComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
14
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.1.1", type: AdsOrgDisplayTextComponent, selector: "ads-org-display-text", inputs: { text: "text", isMobile: "isMobile" }, ngImport: i0, template: "<span *ngIf=\"!isMobile\" class=\"org-display-text\">{{ text }}</span>\n", styles: [".org-display-text{padding:0 24px;color:var(--color-primary);font-size:14px;font-weight:500;white-space:nowrap}\n"], dependencies: [{ kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] }); }
|
|
15
|
+
}
|
|
16
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsOrgDisplayTextComponent, decorators: [{
|
|
17
|
+
type: Component,
|
|
18
|
+
args: [{ selector: 'ads-org-display-text', template: "<span *ngIf=\"!isMobile\" class=\"org-display-text\">{{ text }}</span>\n", styles: [".org-display-text{padding:0 24px;color:var(--color-primary);font-size:14px;font-weight:500;white-space:nowrap}\n"] }]
|
|
19
|
+
}], propDecorators: { text: [{
|
|
20
|
+
type: Input
|
|
21
|
+
}], isMobile: [{
|
|
22
|
+
type: Input
|
|
23
|
+
}] } });
|
|
24
|
+
|
|
25
|
+
class AdsOrgDisplayTextModule {
|
|
26
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsOrgDisplayTextModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
27
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.1.1", ngImport: i0, type: AdsOrgDisplayTextModule, declarations: [AdsOrgDisplayTextComponent], imports: [CommonModule], exports: [AdsOrgDisplayTextComponent] }); }
|
|
28
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsOrgDisplayTextModule, imports: [CommonModule] }); }
|
|
29
|
+
}
|
|
30
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsOrgDisplayTextModule, decorators: [{
|
|
31
|
+
type: NgModule,
|
|
32
|
+
args: [{
|
|
33
|
+
imports: [CommonModule],
|
|
34
|
+
exports: [AdsOrgDisplayTextComponent],
|
|
35
|
+
declarations: [AdsOrgDisplayTextComponent],
|
|
36
|
+
}]
|
|
37
|
+
}] });
|
|
38
|
+
|
|
39
|
+
/**
|
|
40
|
+
* Generated bundle index. Do not edit.
|
|
41
|
+
*/
|
|
42
|
+
|
|
43
|
+
export { AdsOrgDisplayTextComponent, AdsOrgDisplayTextModule };
|
|
44
|
+
//# sourceMappingURL=ascentgl-ads-ui-src-lib-components-header-org-display-text.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ascentgl-ads-ui-src-lib-components-header-org-display-text.mjs","sources":["../../../../libs/ads-ui/src/lib/components/header/org-display-text/org-display-text.component.ts","../../../../libs/ads-ui/src/lib/components/header/org-display-text/org-display-text.component.html","../../../../libs/ads-ui/src/lib/components/header/org-display-text/org-display-text.module.ts","../../../../libs/ads-ui/src/lib/components/header/org-display-text/ascentgl-ads-ui-src-lib-components-header-org-display-text.ts"],"sourcesContent":["import { Component, Input } from '@angular/core';\n\n@Component({\n selector: 'ads-org-display-text',\n styleUrls: ['org-display-text.component.scss'],\n templateUrl: 'org-display-text.component.html',\n})\nexport class AdsOrgDisplayTextComponent {\n /**\n * Organization text to display\n */\n @Input() text!: string;\n\n /**\n * Whether the viewport is mobile\n */\n @Input() isMobile = false;\n}\n","<span *ngIf=\"!isMobile\" class=\"org-display-text\">{{ text }}</span>\n","import { CommonModule } from '@angular/common';\nimport { NgModule } from '@angular/core';\n\nimport { AdsOrgDisplayTextComponent } from './org-display-text.component';\n\n@NgModule({\n imports: [CommonModule],\n exports: [AdsOrgDisplayTextComponent],\n declarations: [AdsOrgDisplayTextComponent],\n})\nexport class AdsOrgDisplayTextModule {}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":";;;;;MAOa,0BAA0B,CAAA;AALvC,IAAA,WAAA,GAAA;AAWE;;AAEG;QACM,IAAQ,CAAA,QAAA,GAAG,KAAK,CAAC;AAC3B,KAAA;8GAVY,0BAA0B,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA,EAAA;AAA1B,IAAA,SAAA,IAAA,CAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,IAAA,EAAA,0BAA0B,4GCPvC,0EACA,EAAA,MAAA,EAAA,CAAA,kHAAA,CAAA,EAAA,YAAA,EAAA,CAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,IAAA,EAAA,QAAA,EAAA,QAAA,EAAA,MAAA,EAAA,CAAA,MAAA,EAAA,UAAA,EAAA,UAAA,CAAA,EAAA,CAAA,EAAA,CAAA,CAAA,EAAA;;2FDMa,0BAA0B,EAAA,UAAA,EAAA,CAAA;kBALtC,SAAS;+BACE,sBAAsB,EAAA,QAAA,EAAA,0EAAA,EAAA,MAAA,EAAA,CAAA,kHAAA,CAAA,EAAA,CAAA;8BAQvB,IAAI,EAAA,CAAA;sBAAZ,KAAK;gBAKG,QAAQ,EAAA,CAAA;sBAAhB,KAAK;;;MENK,uBAAuB,CAAA;8GAAvB,uBAAuB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,QAAA,EAAA,CAAA,CAAA,EAAA;AAAvB,IAAA,SAAA,IAAA,CAAA,IAAA,GAAA,EAAA,CAAA,mBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,uBAAuB,EAFnB,YAAA,EAAA,CAAA,0BAA0B,CAF/B,EAAA,OAAA,EAAA,CAAA,YAAY,aACZ,0BAA0B,CAAA,EAAA,CAAA,CAAA,EAAA;AAGzB,IAAA,SAAA,IAAA,CAAA,IAAA,GAAA,EAAA,CAAA,mBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,uBAAuB,YAJxB,YAAY,CAAA,EAAA,CAAA,CAAA,EAAA;;2FAIX,uBAAuB,EAAA,UAAA,EAAA,CAAA;kBALnC,QAAQ;AAAC,YAAA,IAAA,EAAA,CAAA;oBACR,OAAO,EAAE,CAAC,YAAY,CAAC;oBACvB,OAAO,EAAE,CAAC,0BAA0B,CAAC;oBACrC,YAAY,EAAE,CAAC,0BAA0B,CAAC;AAC3C,iBAAA,CAAA;;;ACTD;;AAEG;;;;"}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import * as i0 from '@angular/core';
|
|
2
|
+
import { Component, NgModule } from '@angular/core';
|
|
3
|
+
|
|
4
|
+
class AdsHeaderComponent {
|
|
5
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsHeaderComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
6
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.1.1", type: AdsHeaderComponent, selector: "ads-header", ngImport: i0, template: "<div class=\"header\">\n <div class=\"addon-left\">\n <ng-content select=\"[left]\"></ng-content>\n </div>\n <ng-content select=\"[logo]\"></ng-content>\n <div class=\"addon-right\">\n <ng-content select=\"[right]\"></ng-content>\n </div>\n</div>\n", styles: [".header{position:relative;display:flex;height:40px;align-items:center}.addon-left{flex:1;max-width:50%}.addon-right{display:flex;flex:1;align-items:center;justify-content:flex-end}.ads-logo{float:left;padding-right:30px}\n"] }); }
|
|
7
|
+
}
|
|
8
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsHeaderComponent, decorators: [{
|
|
9
|
+
type: Component,
|
|
10
|
+
args: [{ selector: 'ads-header', template: "<div class=\"header\">\n <div class=\"addon-left\">\n <ng-content select=\"[left]\"></ng-content>\n </div>\n <ng-content select=\"[logo]\"></ng-content>\n <div class=\"addon-right\">\n <ng-content select=\"[right]\"></ng-content>\n </div>\n</div>\n", styles: [".header{position:relative;display:flex;height:40px;align-items:center}.addon-left{flex:1;max-width:50%}.addon-right{display:flex;flex:1;align-items:center;justify-content:flex-end}.ads-logo{float:left;padding-right:30px}\n"] }]
|
|
11
|
+
}] });
|
|
12
|
+
|
|
13
|
+
class AdsHeaderModule {
|
|
14
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsHeaderModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
15
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.1.1", ngImport: i0, type: AdsHeaderModule, declarations: [AdsHeaderComponent], exports: [AdsHeaderComponent] }); }
|
|
16
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsHeaderModule }); }
|
|
17
|
+
}
|
|
18
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsHeaderModule, decorators: [{
|
|
19
|
+
type: NgModule,
|
|
20
|
+
args: [{
|
|
21
|
+
exports: [AdsHeaderComponent],
|
|
22
|
+
declarations: [AdsHeaderComponent],
|
|
23
|
+
}]
|
|
24
|
+
}] });
|
|
25
|
+
|
|
26
|
+
/**
|
|
27
|
+
* Generated bundle index. Do not edit.
|
|
28
|
+
*/
|
|
29
|
+
|
|
30
|
+
export { AdsHeaderComponent, AdsHeaderModule };
|
|
31
|
+
//# sourceMappingURL=ascentgl-ads-ui-src-lib-components-header.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ascentgl-ads-ui-src-lib-components-header.mjs","sources":["../../../../libs/ads-ui/src/lib/components/header/header.component.ts","../../../../libs/ads-ui/src/lib/components/header/header.component.html","../../../../libs/ads-ui/src/lib/components/header/header.module.ts","../../../../libs/ads-ui/src/lib/components/header/ascentgl-ads-ui-src-lib-components-header.ts"],"sourcesContent":["import { Component } from '@angular/core';\n\n@Component({\n selector: 'ads-header',\n styleUrls: ['header.component.scss'],\n templateUrl: 'header.component.html',\n})\nexport class AdsHeaderComponent {}\n","<div class=\"header\">\n <div class=\"addon-left\">\n <ng-content select=\"[left]\"></ng-content>\n </div>\n <ng-content select=\"[logo]\"></ng-content>\n <div class=\"addon-right\">\n <ng-content select=\"[right]\"></ng-content>\n </div>\n</div>\n","import { NgModule } from '@angular/core';\nimport { AdsHeaderComponent } from './header.component';\n\n@NgModule({\n exports: [AdsHeaderComponent],\n declarations: [AdsHeaderComponent],\n})\nexport class AdsHeaderModule {}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":";;;MAOa,kBAAkB,CAAA;8GAAlB,kBAAkB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA,EAAA;AAAlB,IAAA,SAAA,IAAA,CAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,IAAA,EAAA,kBAAkB,kDCP/B,qQASA,EAAA,MAAA,EAAA,CAAA,gOAAA,CAAA,EAAA,CAAA,CAAA,EAAA;;2FDFa,kBAAkB,EAAA,UAAA,EAAA,CAAA;kBAL9B,SAAS;+BACE,YAAY,EAAA,QAAA,EAAA,qQAAA,EAAA,MAAA,EAAA,CAAA,gOAAA,CAAA,EAAA,CAAA;;;MEIX,eAAe,CAAA;8GAAf,eAAe,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,QAAA,EAAA,CAAA,CAAA,EAAA;+GAAf,eAAe,EAAA,YAAA,EAAA,CAFX,kBAAkB,CAAA,EAAA,OAAA,EAAA,CADvB,kBAAkB,CAAA,EAAA,CAAA,CAAA,EAAA;+GAGjB,eAAe,EAAA,CAAA,CAAA,EAAA;;2FAAf,eAAe,EAAA,UAAA,EAAA,CAAA;kBAJ3B,QAAQ;AAAC,YAAA,IAAA,EAAA,CAAA;oBACR,OAAO,EAAE,CAAC,kBAAkB,CAAC;oBAC7B,YAAY,EAAE,CAAC,kBAAkB,CAAC;AACnC,iBAAA,CAAA;;;ACND;;AAEG;;;;"}
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
import * as i0 from '@angular/core';
|
|
2
|
+
import { input, Component, HostListener, NgModule } from '@angular/core';
|
|
3
|
+
import { CommonModule, NgOptimizedImage } from '@angular/common';
|
|
4
|
+
|
|
5
|
+
class AdsPrimaryLogoComponent {
|
|
6
|
+
constructor() {
|
|
7
|
+
this.isMobile = false;
|
|
8
|
+
/**
|
|
9
|
+
* Mobile width
|
|
10
|
+
*/
|
|
11
|
+
this.mobileWidth = input(768);
|
|
12
|
+
/**
|
|
13
|
+
* Whether the navigation is collapsed
|
|
14
|
+
*/
|
|
15
|
+
this.isCollapsed = input(false);
|
|
16
|
+
}
|
|
17
|
+
/** @ignore */
|
|
18
|
+
onResize() {
|
|
19
|
+
this.checkScreenSize();
|
|
20
|
+
}
|
|
21
|
+
/** @ignore */
|
|
22
|
+
ngOnInit() {
|
|
23
|
+
this.checkScreenSize();
|
|
24
|
+
}
|
|
25
|
+
/** @ignore */
|
|
26
|
+
checkScreenSize() {
|
|
27
|
+
this.isMobile = window.innerWidth <= this.mobileWidth();
|
|
28
|
+
}
|
|
29
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsPrimaryLogoComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
30
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.1.1", type: AdsPrimaryLogoComponent, selector: "ads-primary-logo", inputs: { mobileWidth: { classPropertyName: "mobileWidth", publicName: "mobileWidth", isSignal: true, isRequired: false, transformFunction: null }, isCollapsed: { classPropertyName: "isCollapsed", publicName: "isCollapsed", isSignal: true, isRequired: false, transformFunction: null } }, host: { listeners: { "window:resize": "onResize($event)" } }, ngImport: i0, template: "<picture>\n @if (isMobile || isCollapsed()) {\n <svg class=\"logo-svg\" xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"32\" viewBox=\"0 0 24 32\">\n <path\n d=\"M20.5547 3.69959C18.4527 1.6106 15.6421 0.377465 12.6734 0.241829C9.70483 0.106194 6.79227 1.07784 4.50651 2.96635V0.663115H0V31.994L4.50218 27.517V21.1981C6.86303 23.1293 9.87957 24.0849 12.9287 23.8677C15.9778 23.6504 18.8265 22.2769 20.8864 20.0308C22.9463 17.7848 24.06 14.8377 23.9975 11.7985C23.935 8.75926 22.701 5.85999 20.5504 3.69959H20.5547ZM12.1446 19.6627C10.6356 19.6669 9.15923 19.2258 7.90244 18.3953C6.64565 17.5647 5.66496 16.3819 5.08451 14.9968C4.50406 13.6116 4.34996 12.0864 4.64172 10.6141C4.93348 9.14178 5.65798 7.78868 6.7235 6.72608C7.78901 5.66348 9.14763 4.93917 10.6273 4.64484C12.107 4.35051 13.6413 4.49941 15.0359 5.07268C16.4304 5.64595 17.6226 6.61781 18.4614 7.86521C19.3002 9.11262 19.748 10.5795 19.748 12.0801C19.7468 14.087 18.9461 16.0118 17.5211 17.4329C16.096 18.8541 14.1628 19.6558 12.1446 19.6627Z\"\n />\n </svg>\n } @else {\n <svg class=\"logo-svg\" xmlns=\"http://www.w3.org/2000/svg\" width=\"80\" height=\"35\" viewBox=\"0 0 80 35\">\n <path\n d=\"M15.4308 12.8987C13.8528 11.3239 11.7428 10.3942 9.51421 10.292C7.28561 10.1897 5.09909 10.9222 3.38313 12.346V10.6096H0V34.2293L3.37987 30.8542V26.0905C5.15222 27.5464 7.41679 28.2668 9.70582 28.103C11.9948 27.9393 14.1334 26.9038 15.6799 25.2105C17.2263 23.5173 18.0623 21.2956 18.0154 19.0043C17.9685 16.7131 17.0421 14.5274 15.4276 12.8987H15.4308ZM9.11719 24.933C7.98435 24.9362 6.87602 24.6037 5.93252 23.9775C4.98903 23.3513 4.2528 22.4597 3.81704 21.4155C3.38128 20.3712 3.2656 19.2213 3.48463 18.1114C3.70366 17.0015 4.24756 15.9814 5.04746 15.1803C5.84737 14.3793 6.86731 13.8332 7.97815 13.6113C9.089 13.3894 10.2408 13.5017 11.2877 13.9339C12.3347 14.366 13.2296 15.0987 13.8593 16.0391C14.4891 16.9795 14.8252 18.0853 14.8252 19.2166C14.8244 20.7296 14.2232 22.1806 13.1534 23.252C12.0836 24.3234 10.6323 24.9278 9.11719 24.933Z\"\n />\n <path\n d=\"M38.2118 19.2167C38.2119 17.2546 37.565 15.3472 36.3711 13.7889C35.1772 12.2306 33.5028 11.1082 31.6064 10.5951C29.71 10.082 27.6972 10.2067 25.8788 10.9499C24.0605 11.6932 22.5378 13.0137 21.5459 14.7074C20.5541 16.4011 20.1483 18.3737 20.3912 20.3207C20.6341 22.2677 21.5122 24.0807 22.8899 25.4796C24.2676 26.8785 26.0682 27.7855 28.0136 28.0605C29.9589 28.3355 31.9409 27.9632 33.6532 27.0011C34.9526 26.2641 36.0481 25.216 36.841 23.951L34.1058 22.2439C33.5193 23.1737 32.677 23.9151 31.6797 24.3794C30.6823 24.8437 29.5722 25.0112 28.482 24.862C27.3917 24.7128 26.3677 24.2532 25.5322 23.538C24.6967 22.8229 24.0852 21.8825 23.7708 20.8295H38.2151L38.2118 19.2167ZM23.7708 17.6071C24.1208 16.4233 24.8449 15.3844 25.835 14.6454C26.825 13.9065 28.0279 13.5072 29.2639 13.5072C30.5 13.5072 31.7028 13.9065 32.6929 14.6454C33.6829 15.3844 34.407 16.4233 34.757 17.6071H23.7708Z\"\n />\n <path d=\"M66.3569 10.3986H63.0128V28.0972H66.3569V10.3986Z\" />\n <path d=\"M71.14 19.2495L80 28.0972H75.4837L66.6205 19.2495L75.4837 10.3986H80L71.14 19.2495Z\" />\n <path d=\"M56.5265 0H41.304V2.84191H56.5265V0Z\" />\n <path d=\"M40.5882 28.0971H37.0032L48.9174 5.35858L60.8316 28.0971H57.2466L48.9174 12.2L40.5882 28.0971Z\" />\n </svg>\n }\n</picture>\n", styles: [".logo-svg{fill:var(--color-primary)}\n"] }); }
|
|
31
|
+
}
|
|
32
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsPrimaryLogoComponent, decorators: [{
|
|
33
|
+
type: Component,
|
|
34
|
+
args: [{ selector: 'ads-primary-logo', template: "<picture>\n @if (isMobile || isCollapsed()) {\n <svg class=\"logo-svg\" xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"32\" viewBox=\"0 0 24 32\">\n <path\n d=\"M20.5547 3.69959C18.4527 1.6106 15.6421 0.377465 12.6734 0.241829C9.70483 0.106194 6.79227 1.07784 4.50651 2.96635V0.663115H0V31.994L4.50218 27.517V21.1981C6.86303 23.1293 9.87957 24.0849 12.9287 23.8677C15.9778 23.6504 18.8265 22.2769 20.8864 20.0308C22.9463 17.7848 24.06 14.8377 23.9975 11.7985C23.935 8.75926 22.701 5.85999 20.5504 3.69959H20.5547ZM12.1446 19.6627C10.6356 19.6669 9.15923 19.2258 7.90244 18.3953C6.64565 17.5647 5.66496 16.3819 5.08451 14.9968C4.50406 13.6116 4.34996 12.0864 4.64172 10.6141C4.93348 9.14178 5.65798 7.78868 6.7235 6.72608C7.78901 5.66348 9.14763 4.93917 10.6273 4.64484C12.107 4.35051 13.6413 4.49941 15.0359 5.07268C16.4304 5.64595 17.6226 6.61781 18.4614 7.86521C19.3002 9.11262 19.748 10.5795 19.748 12.0801C19.7468 14.087 18.9461 16.0118 17.5211 17.4329C16.096 18.8541 14.1628 19.6558 12.1446 19.6627Z\"\n />\n </svg>\n } @else {\n <svg class=\"logo-svg\" xmlns=\"http://www.w3.org/2000/svg\" width=\"80\" height=\"35\" viewBox=\"0 0 80 35\">\n <path\n d=\"M15.4308 12.8987C13.8528 11.3239 11.7428 10.3942 9.51421 10.292C7.28561 10.1897 5.09909 10.9222 3.38313 12.346V10.6096H0V34.2293L3.37987 30.8542V26.0905C5.15222 27.5464 7.41679 28.2668 9.70582 28.103C11.9948 27.9393 14.1334 26.9038 15.6799 25.2105C17.2263 23.5173 18.0623 21.2956 18.0154 19.0043C17.9685 16.7131 17.0421 14.5274 15.4276 12.8987H15.4308ZM9.11719 24.933C7.98435 24.9362 6.87602 24.6037 5.93252 23.9775C4.98903 23.3513 4.2528 22.4597 3.81704 21.4155C3.38128 20.3712 3.2656 19.2213 3.48463 18.1114C3.70366 17.0015 4.24756 15.9814 5.04746 15.1803C5.84737 14.3793 6.86731 13.8332 7.97815 13.6113C9.089 13.3894 10.2408 13.5017 11.2877 13.9339C12.3347 14.366 13.2296 15.0987 13.8593 16.0391C14.4891 16.9795 14.8252 18.0853 14.8252 19.2166C14.8244 20.7296 14.2232 22.1806 13.1534 23.252C12.0836 24.3234 10.6323 24.9278 9.11719 24.933Z\"\n />\n <path\n d=\"M38.2118 19.2167C38.2119 17.2546 37.565 15.3472 36.3711 13.7889C35.1772 12.2306 33.5028 11.1082 31.6064 10.5951C29.71 10.082 27.6972 10.2067 25.8788 10.9499C24.0605 11.6932 22.5378 13.0137 21.5459 14.7074C20.5541 16.4011 20.1483 18.3737 20.3912 20.3207C20.6341 22.2677 21.5122 24.0807 22.8899 25.4796C24.2676 26.8785 26.0682 27.7855 28.0136 28.0605C29.9589 28.3355 31.9409 27.9632 33.6532 27.0011C34.9526 26.2641 36.0481 25.216 36.841 23.951L34.1058 22.2439C33.5193 23.1737 32.677 23.9151 31.6797 24.3794C30.6823 24.8437 29.5722 25.0112 28.482 24.862C27.3917 24.7128 26.3677 24.2532 25.5322 23.538C24.6967 22.8229 24.0852 21.8825 23.7708 20.8295H38.2151L38.2118 19.2167ZM23.7708 17.6071C24.1208 16.4233 24.8449 15.3844 25.835 14.6454C26.825 13.9065 28.0279 13.5072 29.2639 13.5072C30.5 13.5072 31.7028 13.9065 32.6929 14.6454C33.6829 15.3844 34.407 16.4233 34.757 17.6071H23.7708Z\"\n />\n <path d=\"M66.3569 10.3986H63.0128V28.0972H66.3569V10.3986Z\" />\n <path d=\"M71.14 19.2495L80 28.0972H75.4837L66.6205 19.2495L75.4837 10.3986H80L71.14 19.2495Z\" />\n <path d=\"M56.5265 0H41.304V2.84191H56.5265V0Z\" />\n <path d=\"M40.5882 28.0971H37.0032L48.9174 5.35858L60.8316 28.0971H57.2466L48.9174 12.2L40.5882 28.0971Z\" />\n </svg>\n }\n</picture>\n", styles: [".logo-svg{fill:var(--color-primary)}\n"] }]
|
|
35
|
+
}], propDecorators: { onResize: [{
|
|
36
|
+
type: HostListener,
|
|
37
|
+
args: ['window:resize', ['$event']]
|
|
38
|
+
}] } });
|
|
39
|
+
|
|
40
|
+
class AdsPrimaryLogoModule {
|
|
41
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsPrimaryLogoModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
42
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.1.1", ngImport: i0, type: AdsPrimaryLogoModule, declarations: [AdsPrimaryLogoComponent], imports: [CommonModule, NgOptimizedImage], exports: [AdsPrimaryLogoComponent] }); }
|
|
43
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsPrimaryLogoModule, imports: [CommonModule] }); }
|
|
44
|
+
}
|
|
45
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsPrimaryLogoModule, decorators: [{
|
|
46
|
+
type: NgModule,
|
|
47
|
+
args: [{
|
|
48
|
+
imports: [CommonModule, NgOptimizedImage],
|
|
49
|
+
exports: [AdsPrimaryLogoComponent],
|
|
50
|
+
declarations: [AdsPrimaryLogoComponent],
|
|
51
|
+
}]
|
|
52
|
+
}] });
|
|
53
|
+
|
|
54
|
+
/**
|
|
55
|
+
* Generated bundle index. Do not edit.
|
|
56
|
+
*/
|
|
57
|
+
|
|
58
|
+
export { AdsPrimaryLogoComponent, AdsPrimaryLogoModule };
|
|
59
|
+
//# sourceMappingURL=ascentgl-ads-ui-src-lib-components-logo-primary-logo.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ascentgl-ads-ui-src-lib-components-logo-primary-logo.mjs","sources":["../../../../libs/ads-ui/src/lib/components/logo/primary-logo/primary-logo.component.ts","../../../../libs/ads-ui/src/lib/components/logo/primary-logo/primary-logo.component.html","../../../../libs/ads-ui/src/lib/components/logo/primary-logo/primary-logo.module.ts","../../../../libs/ads-ui/src/lib/components/logo/primary-logo/ascentgl-ads-ui-src-lib-components-logo-primary-logo.ts"],"sourcesContent":["import { Component, HostListener, input, OnInit } from '@angular/core';\n\n@Component({\n selector: 'ads-primary-logo',\n styleUrls: ['primary-logo.component.scss'],\n templateUrl: 'primary-logo.component.html',\n})\nexport class AdsPrimaryLogoComponent implements OnInit {\n isMobile = false;\n\n /**\n * Mobile width\n */\n mobileWidth = input<number>(768);\n\n /**\n * Whether the navigation is collapsed\n */\n isCollapsed = input<boolean>(false);\n\n /** @ignore */\n @HostListener('window:resize', ['$event'])\n onResize() {\n this.checkScreenSize();\n }\n\n /** @ignore */\n ngOnInit(): void {\n this.checkScreenSize();\n }\n\n /** @ignore */\n private checkScreenSize(): void {\n this.isMobile = window.innerWidth <= this.mobileWidth();\n }\n}\n","<picture>\n @if (isMobile || isCollapsed()) {\n <svg class=\"logo-svg\" xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"32\" viewBox=\"0 0 24 32\">\n <path\n d=\"M20.5547 3.69959C18.4527 1.6106 15.6421 0.377465 12.6734 0.241829C9.70483 0.106194 6.79227 1.07784 4.50651 2.96635V0.663115H0V31.994L4.50218 27.517V21.1981C6.86303 23.1293 9.87957 24.0849 12.9287 23.8677C15.9778 23.6504 18.8265 22.2769 20.8864 20.0308C22.9463 17.7848 24.06 14.8377 23.9975 11.7985C23.935 8.75926 22.701 5.85999 20.5504 3.69959H20.5547ZM12.1446 19.6627C10.6356 19.6669 9.15923 19.2258 7.90244 18.3953C6.64565 17.5647 5.66496 16.3819 5.08451 14.9968C4.50406 13.6116 4.34996 12.0864 4.64172 10.6141C4.93348 9.14178 5.65798 7.78868 6.7235 6.72608C7.78901 5.66348 9.14763 4.93917 10.6273 4.64484C12.107 4.35051 13.6413 4.49941 15.0359 5.07268C16.4304 5.64595 17.6226 6.61781 18.4614 7.86521C19.3002 9.11262 19.748 10.5795 19.748 12.0801C19.7468 14.087 18.9461 16.0118 17.5211 17.4329C16.096 18.8541 14.1628 19.6558 12.1446 19.6627Z\"\n />\n </svg>\n } @else {\n <svg class=\"logo-svg\" xmlns=\"http://www.w3.org/2000/svg\" width=\"80\" height=\"35\" viewBox=\"0 0 80 35\">\n <path\n d=\"M15.4308 12.8987C13.8528 11.3239 11.7428 10.3942 9.51421 10.292C7.28561 10.1897 5.09909 10.9222 3.38313 12.346V10.6096H0V34.2293L3.37987 30.8542V26.0905C5.15222 27.5464 7.41679 28.2668 9.70582 28.103C11.9948 27.9393 14.1334 26.9038 15.6799 25.2105C17.2263 23.5173 18.0623 21.2956 18.0154 19.0043C17.9685 16.7131 17.0421 14.5274 15.4276 12.8987H15.4308ZM9.11719 24.933C7.98435 24.9362 6.87602 24.6037 5.93252 23.9775C4.98903 23.3513 4.2528 22.4597 3.81704 21.4155C3.38128 20.3712 3.2656 19.2213 3.48463 18.1114C3.70366 17.0015 4.24756 15.9814 5.04746 15.1803C5.84737 14.3793 6.86731 13.8332 7.97815 13.6113C9.089 13.3894 10.2408 13.5017 11.2877 13.9339C12.3347 14.366 13.2296 15.0987 13.8593 16.0391C14.4891 16.9795 14.8252 18.0853 14.8252 19.2166C14.8244 20.7296 14.2232 22.1806 13.1534 23.252C12.0836 24.3234 10.6323 24.9278 9.11719 24.933Z\"\n />\n <path\n d=\"M38.2118 19.2167C38.2119 17.2546 37.565 15.3472 36.3711 13.7889C35.1772 12.2306 33.5028 11.1082 31.6064 10.5951C29.71 10.082 27.6972 10.2067 25.8788 10.9499C24.0605 11.6932 22.5378 13.0137 21.5459 14.7074C20.5541 16.4011 20.1483 18.3737 20.3912 20.3207C20.6341 22.2677 21.5122 24.0807 22.8899 25.4796C24.2676 26.8785 26.0682 27.7855 28.0136 28.0605C29.9589 28.3355 31.9409 27.9632 33.6532 27.0011C34.9526 26.2641 36.0481 25.216 36.841 23.951L34.1058 22.2439C33.5193 23.1737 32.677 23.9151 31.6797 24.3794C30.6823 24.8437 29.5722 25.0112 28.482 24.862C27.3917 24.7128 26.3677 24.2532 25.5322 23.538C24.6967 22.8229 24.0852 21.8825 23.7708 20.8295H38.2151L38.2118 19.2167ZM23.7708 17.6071C24.1208 16.4233 24.8449 15.3844 25.835 14.6454C26.825 13.9065 28.0279 13.5072 29.2639 13.5072C30.5 13.5072 31.7028 13.9065 32.6929 14.6454C33.6829 15.3844 34.407 16.4233 34.757 17.6071H23.7708Z\"\n />\n <path d=\"M66.3569 10.3986H63.0128V28.0972H66.3569V10.3986Z\" />\n <path d=\"M71.14 19.2495L80 28.0972H75.4837L66.6205 19.2495L75.4837 10.3986H80L71.14 19.2495Z\" />\n <path d=\"M56.5265 0H41.304V2.84191H56.5265V0Z\" />\n <path d=\"M40.5882 28.0971H37.0032L48.9174 5.35858L60.8316 28.0971H57.2466L48.9174 12.2L40.5882 28.0971Z\" />\n </svg>\n }\n</picture>\n","import { CommonModule, NgOptimizedImage } from '@angular/common';\nimport { NgModule } from '@angular/core';\nimport { AdsPrimaryLogoComponent } from './primary-logo.component';\n\n@NgModule({\n imports: [CommonModule, NgOptimizedImage],\n exports: [AdsPrimaryLogoComponent],\n declarations: [AdsPrimaryLogoComponent],\n})\nexport class AdsPrimaryLogoModule {}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":";;;;MAOa,uBAAuB,CAAA;AALpC,IAAA,WAAA,GAAA;QAME,IAAQ,CAAA,QAAA,GAAG,KAAK,CAAC;AAEjB;;AAEG;AACH,QAAA,IAAA,CAAA,WAAW,GAAG,KAAK,CAAS,GAAG,CAAC,CAAC;AAEjC;;AAEG;AACH,QAAA,IAAA,CAAA,WAAW,GAAG,KAAK,CAAU,KAAK,CAAC,CAAC;AAiBrC,KAAA;;IAbC,QAAQ,GAAA;QACN,IAAI,CAAC,eAAe,EAAE,CAAC;KACxB;;IAGD,QAAQ,GAAA;QACN,IAAI,CAAC,eAAe,EAAE,CAAC;KACxB;;IAGO,eAAe,GAAA;QACrB,IAAI,CAAC,QAAQ,GAAG,MAAM,CAAC,UAAU,IAAI,IAAI,CAAC,WAAW,EAAE,CAAC;KACzD;8GA3BU,uBAAuB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA,EAAA;AAAvB,IAAA,SAAA,IAAA,CAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,IAAA,EAAA,uBAAuB,sZCPpC,2yGAsBA,EAAA,MAAA,EAAA,CAAA,wCAAA,CAAA,EAAA,CAAA,CAAA,EAAA;;2FDfa,uBAAuB,EAAA,UAAA,EAAA,CAAA;kBALnC,SAAS;+BACE,kBAAkB,EAAA,QAAA,EAAA,2yGAAA,EAAA,MAAA,EAAA,CAAA,wCAAA,CAAA,EAAA,CAAA;8BAmB5B,QAAQ,EAAA,CAAA;sBADP,YAAY;uBAAC,eAAe,EAAE,CAAC,QAAQ,CAAC,CAAA;;;MEZ9B,oBAAoB,CAAA;8GAApB,oBAAoB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,QAAA,EAAA,CAAA,CAAA,EAAA;AAApB,IAAA,SAAA,IAAA,CAAA,IAAA,GAAA,EAAA,CAAA,mBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,oBAAoB,iBAFhB,uBAAuB,CAAA,EAAA,OAAA,EAAA,CAF5B,YAAY,EAAE,gBAAgB,aAC9B,uBAAuB,CAAA,EAAA,CAAA,CAAA,EAAA;AAGtB,IAAA,SAAA,IAAA,CAAA,IAAA,GAAA,EAAA,CAAA,mBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,oBAAoB,YAJrB,YAAY,CAAA,EAAA,CAAA,CAAA,EAAA;;2FAIX,oBAAoB,EAAA,UAAA,EAAA,CAAA;kBALhC,QAAQ;AAAC,YAAA,IAAA,EAAA,CAAA;AACR,oBAAA,OAAO,EAAE,CAAC,YAAY,EAAE,gBAAgB,CAAC;oBACzC,OAAO,EAAE,CAAC,uBAAuB,CAAC;oBAClC,YAAY,EAAE,CAAC,uBAAuB,CAAC;AACxC,iBAAA,CAAA;;;ACRD;;AAEG;;;;"}
|
|
@@ -0,0 +1,135 @@
|
|
|
1
|
+
import * as i0 from '@angular/core';
|
|
2
|
+
import { Component, Inject, input, ViewChild, NgModule } from '@angular/core';
|
|
3
|
+
import * as i1 from '@angular/material/bottom-sheet';
|
|
4
|
+
import { MAT_BOTTOM_SHEET_DATA, MatBottomSheetModule } from '@angular/material/bottom-sheet';
|
|
5
|
+
import * as i3 from '@angular/router';
|
|
6
|
+
import { NavigationStart, RouterModule } from '@angular/router';
|
|
7
|
+
import * as i2$1 from '@ascentgl/ads-icons';
|
|
8
|
+
import { AdsIconModule } from '@ascentgl/ads-icons';
|
|
9
|
+
import { adsIconMenuMoreInfo } from '@ascentgl/ads-icons/icons';
|
|
10
|
+
import { filter } from 'rxjs/operators';
|
|
11
|
+
import * as i4 from '@angular/common';
|
|
12
|
+
import { CommonModule } from '@angular/common';
|
|
13
|
+
import * as i2 from '@angular/material/list';
|
|
14
|
+
import { MatListModule } from '@angular/material/list';
|
|
15
|
+
import * as i5 from '@angular/material/menu';
|
|
16
|
+
import { MatMenuModule } from '@angular/material/menu';
|
|
17
|
+
import * as i6 from '@angular/material/button';
|
|
18
|
+
import { MatIconButton } from '@angular/material/button';
|
|
19
|
+
|
|
20
|
+
class AdsMainMenuBottomSheetComponent {
|
|
21
|
+
constructor(data) {
|
|
22
|
+
this.data = data;
|
|
23
|
+
}
|
|
24
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsMainMenuBottomSheetComponent, deps: [{ token: MAT_BOTTOM_SHEET_DATA }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
25
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.1.1", type: AdsMainMenuBottomSheetComponent, selector: "ads-main-menu-bottom-sheet", ngImport: i0, template: "<mat-nav-list>\n @for (item of data.menuItems; track item) {\n @if (item.href) {\n <mat-list-item [routerLink]=\"item.href\" routerLinkActive=\"selected\">\n <ng-container *ngTemplateOutlet=\"text; context: { menuItem: item }\" />\n </mat-list-item>\n } @else {\n <mat-list-item>\n <ng-container *ngTemplateOutlet=\"text; context: { menuItem: item }\" />\n </mat-list-item>\n }\n }\n</mat-nav-list>\n\n<ng-template #text let-item=\"menuItem\">\n <div class=\"container\">\n @if (item.icon) {\n <ads-icon [id]=\"item.id\" [name]=\"item.icon\" size=\"sm\" theme=\"primary\"></ads-icon>\n }\n <span>{{ item.text }}</span>\n </div>\n</ng-template>\n", styles: ["mat-list-item{--mdc-list-list-item-label-text-color: var(--color-black);--mdc-list-list-item-hover-label-text-color: var(--color-white)}mat-list-item:not(:hover).selected{background-color:var(--color-secondary-25)}mat-list-item:not([disabled]):hover{--mdc-list-list-item-container-color: var(--color-primary)}mat-list-item:not([disabled]):hover ads-icon{color:var(--color-white)!important}.container{display:flex;align-items:center;gap:16px}\n"], dependencies: [{ kind: "directive", type: i4.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "component", type: i2.MatNavList, selector: "mat-nav-list", exportAs: ["matNavList"] }, { kind: "component", type: i2.MatListItem, selector: "mat-list-item, a[mat-list-item], button[mat-list-item]", inputs: ["activated"], exportAs: ["matListItem"] }, { kind: "component", type: i2$1.AdsIconComponent, selector: "ads-icon", inputs: ["size", "name", "color", "theme", "stroke"] }, { kind: "directive", type: i3.RouterLink, selector: "[routerLink]", inputs: ["target", "queryParams", "fragment", "queryParamsHandling", "state", "info", "relativeTo", "preserveFragment", "skipLocationChange", "replaceUrl", "routerLink"] }, { kind: "directive", type: i3.RouterLinkActive, selector: "[routerLinkActive]", inputs: ["routerLinkActiveOptions", "ariaCurrentWhenActive", "routerLinkActive"], outputs: ["isActiveChange"], exportAs: ["routerLinkActive"] }] }); }
|
|
26
|
+
}
|
|
27
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsMainMenuBottomSheetComponent, decorators: [{
|
|
28
|
+
type: Component,
|
|
29
|
+
args: [{ selector: 'ads-main-menu-bottom-sheet', template: "<mat-nav-list>\n @for (item of data.menuItems; track item) {\n @if (item.href) {\n <mat-list-item [routerLink]=\"item.href\" routerLinkActive=\"selected\">\n <ng-container *ngTemplateOutlet=\"text; context: { menuItem: item }\" />\n </mat-list-item>\n } @else {\n <mat-list-item>\n <ng-container *ngTemplateOutlet=\"text; context: { menuItem: item }\" />\n </mat-list-item>\n }\n }\n</mat-nav-list>\n\n<ng-template #text let-item=\"menuItem\">\n <div class=\"container\">\n @if (item.icon) {\n <ads-icon [id]=\"item.id\" [name]=\"item.icon\" size=\"sm\" theme=\"primary\"></ads-icon>\n }\n <span>{{ item.text }}</span>\n </div>\n</ng-template>\n", styles: ["mat-list-item{--mdc-list-list-item-label-text-color: var(--color-black);--mdc-list-list-item-hover-label-text-color: var(--color-white)}mat-list-item:not(:hover).selected{background-color:var(--color-secondary-25)}mat-list-item:not([disabled]):hover{--mdc-list-list-item-container-color: var(--color-primary)}mat-list-item:not([disabled]):hover ads-icon{color:var(--color-white)!important}.container{display:flex;align-items:center;gap:16px}\n"] }]
|
|
30
|
+
}], ctorParameters: () => [{ type: undefined, decorators: [{
|
|
31
|
+
type: Inject,
|
|
32
|
+
args: [MAT_BOTTOM_SHEET_DATA]
|
|
33
|
+
}] }] });
|
|
34
|
+
|
|
35
|
+
class AdsMainMenuComponent {
|
|
36
|
+
constructor(bottomSheet, registry, router) {
|
|
37
|
+
this.bottomSheet = bottomSheet;
|
|
38
|
+
this.registry = registry;
|
|
39
|
+
this.router = router;
|
|
40
|
+
/**
|
|
41
|
+
* Array of menu items to display in the main menu
|
|
42
|
+
*/
|
|
43
|
+
this.menuItems = input.required();
|
|
44
|
+
/** Id attribute for the main menu trigger element */
|
|
45
|
+
this.id = input('ads-main-menu');
|
|
46
|
+
/**
|
|
47
|
+
* Whether the navigation is collapsed
|
|
48
|
+
*/
|
|
49
|
+
this.isCollapsed = input(false);
|
|
50
|
+
/**
|
|
51
|
+
* Whether the viewport is mobile
|
|
52
|
+
*/
|
|
53
|
+
this.isMobile = input(false);
|
|
54
|
+
this.menubar = menubar;
|
|
55
|
+
this.registry.register(adsIconMenuMoreInfo);
|
|
56
|
+
}
|
|
57
|
+
/** @ignore */
|
|
58
|
+
ngOnInit() {
|
|
59
|
+
this.router.events.pipe(filter((event) => event instanceof NavigationStart)).subscribe(() => {
|
|
60
|
+
this.bottomSheetRef?.dismiss();
|
|
61
|
+
});
|
|
62
|
+
}
|
|
63
|
+
/** @ignore */
|
|
64
|
+
ngOnChanges(changes) {
|
|
65
|
+
if (changes.isMobile) {
|
|
66
|
+
const footerMenu = document.querySelector('.ads-bottom-sheet-panel');
|
|
67
|
+
/**
|
|
68
|
+
* if we are going from mobile to desktop size;
|
|
69
|
+
* hide menu (to avoid its being animated) and dismiss it
|
|
70
|
+
*/
|
|
71
|
+
if (footerMenu?.parentElement && !changes.isMobile.currentValue) {
|
|
72
|
+
footerMenu.remove();
|
|
73
|
+
this.bottomSheetRef?.dismiss();
|
|
74
|
+
}
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
/** @ignore */
|
|
78
|
+
openBottomSheet() {
|
|
79
|
+
this.bottomSheetRef = this.bottomSheet.open(AdsMainMenuBottomSheetComponent, {
|
|
80
|
+
data: { menuItems: this.menuItems() },
|
|
81
|
+
panelClass: 'ads-bottom-sheet-panel',
|
|
82
|
+
disableClose: false,
|
|
83
|
+
});
|
|
84
|
+
}
|
|
85
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsMainMenuComponent, deps: [{ token: i1.MatBottomSheet }, { token: i2$1.AdsIconRegistry }, { token: i3.Router }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
86
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.1.1", type: AdsMainMenuComponent, selector: "ads-main-menu", inputs: { menuItems: { classPropertyName: "menuItems", publicName: "menuItems", isSignal: true, isRequired: true, transformFunction: null }, id: { classPropertyName: "id", publicName: "id", isSignal: true, isRequired: false, transformFunction: null }, isCollapsed: { classPropertyName: "isCollapsed", publicName: "isCollapsed", isSignal: true, isRequired: false, transformFunction: null }, isMobile: { classPropertyName: "isMobile", publicName: "isMobile", isSignal: true, isRequired: false, transformFunction: null } }, viewQueries: [{ propertyName: "menu", first: true, predicate: ["menu"], descendants: true }], usesOnChanges: true, ngImport: i0, template: "<ng-container *ngIf=\"isMobile(); else desktop\">\n @if (isCollapsed()) {\n <button mat-icon-button (click)=\"openBottomSheet()\">\n <ads-icon [id]=\"id()\" name=\"menu_more_info\" size=\"sm\" theme=\"primary\"></ads-icon>\n </button>\n }\n</ng-container>\n\n<ng-template #desktop>\n <button mat-icon-button [matMenuTriggerFor]=\"menu\">\n <ads-icon [id]=\"id()\" name=\"menu_more_info\" size=\"sm\" theme=\"primary\"></ads-icon>\n </button>\n <mat-menu #menu=\"matMenu\" [class]=\"'ads-mat-menu'\">\n @for (item of menuItems(); track item) {\n @if (item.href) {\n <button mat-menu-item [routerLink]=\"item.href\" routerLinkActive=\"selected\">\n <ng-container *ngTemplateOutlet=\"text; context: { menuItem: item }\" />\n </button>\n } @else {\n <button mat-menu-item>\n <ng-container *ngTemplateOutlet=\"text; context: { menuItem: item }\" />\n </button>\n }\n }\n </mat-menu>\n</ng-template>\n\n<ng-template #text let-item=\"menuItem\">\n <div class=\"container\">\n @if (item.icon) {\n <ads-icon [id]=\"item.id\" [name]=\"item.icon\" size=\"sm\" theme=\"primary\"></ads-icon>\n }\n <span>{{ item.text }}</span>\n </div>\n</ng-template>\n", styles: [".mat-mdc-menu-item{display:flex;align-items:center;gap:16px;min-width:278px}.mat-mdc-menu-item:not([disabled]):hover{--mat-menu-item-label-text-color: var(--color-white)}.mat-mdc-menu-item:not([disabled]):hover ads-icon{color:var(--color-white)!important}button:not(:hover).selected{background-color:var(--color-secondary-25)}.container{display:flex;align-items:center;gap:16px}\n"], dependencies: [{ kind: "directive", type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i4.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "component", type: i5.MatMenu, selector: "mat-menu", inputs: ["backdropClass", "aria-label", "aria-labelledby", "aria-describedby", "xPosition", "yPosition", "overlapTrigger", "hasBackdrop", "class", "classList"], outputs: ["closed", "close"], exportAs: ["matMenu"] }, { kind: "component", type: i5.MatMenuItem, selector: "[mat-menu-item]", inputs: ["role", "disabled", "disableRipple"], exportAs: ["matMenuItem"] }, { kind: "directive", type: i5.MatMenuTrigger, selector: "[mat-menu-trigger-for], [matMenuTriggerFor]", inputs: ["mat-menu-trigger-for", "matMenuTriggerFor", "matMenuTriggerData", "matMenuTriggerRestoreFocus"], outputs: ["menuOpened", "onMenuOpen", "menuClosed", "onMenuClose"], exportAs: ["matMenuTrigger"] }, { kind: "component", type: i2$1.AdsIconComponent, selector: "ads-icon", inputs: ["size", "name", "color", "theme", "stroke"] }, { kind: "directive", type: i3.RouterLink, selector: "[routerLink]", inputs: ["target", "queryParams", "fragment", "queryParamsHandling", "state", "info", "relativeTo", "preserveFragment", "skipLocationChange", "replaceUrl", "routerLink"] }, { kind: "directive", type: i3.RouterLinkActive, selector: "[routerLinkActive]", inputs: ["routerLinkActiveOptions", "ariaCurrentWhenActive", "routerLinkActive"], outputs: ["isActiveChange"], exportAs: ["routerLinkActive"] }, { kind: "component", type: i6.MatIconButton, selector: "button[mat-icon-button]", exportAs: ["matButton"] }] }); }
|
|
87
|
+
}
|
|
88
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsMainMenuComponent, decorators: [{
|
|
89
|
+
type: Component,
|
|
90
|
+
args: [{ selector: 'ads-main-menu', template: "<ng-container *ngIf=\"isMobile(); else desktop\">\n @if (isCollapsed()) {\n <button mat-icon-button (click)=\"openBottomSheet()\">\n <ads-icon [id]=\"id()\" name=\"menu_more_info\" size=\"sm\" theme=\"primary\"></ads-icon>\n </button>\n }\n</ng-container>\n\n<ng-template #desktop>\n <button mat-icon-button [matMenuTriggerFor]=\"menu\">\n <ads-icon [id]=\"id()\" name=\"menu_more_info\" size=\"sm\" theme=\"primary\"></ads-icon>\n </button>\n <mat-menu #menu=\"matMenu\" [class]=\"'ads-mat-menu'\">\n @for (item of menuItems(); track item) {\n @if (item.href) {\n <button mat-menu-item [routerLink]=\"item.href\" routerLinkActive=\"selected\">\n <ng-container *ngTemplateOutlet=\"text; context: { menuItem: item }\" />\n </button>\n } @else {\n <button mat-menu-item>\n <ng-container *ngTemplateOutlet=\"text; context: { menuItem: item }\" />\n </button>\n }\n }\n </mat-menu>\n</ng-template>\n\n<ng-template #text let-item=\"menuItem\">\n <div class=\"container\">\n @if (item.icon) {\n <ads-icon [id]=\"item.id\" [name]=\"item.icon\" size=\"sm\" theme=\"primary\"></ads-icon>\n }\n <span>{{ item.text }}</span>\n </div>\n</ng-template>\n", styles: [".mat-mdc-menu-item{display:flex;align-items:center;gap:16px;min-width:278px}.mat-mdc-menu-item:not([disabled]):hover{--mat-menu-item-label-text-color: var(--color-white)}.mat-mdc-menu-item:not([disabled]):hover ads-icon{color:var(--color-white)!important}button:not(:hover).selected{background-color:var(--color-secondary-25)}.container{display:flex;align-items:center;gap:16px}\n"] }]
|
|
91
|
+
}], ctorParameters: () => [{ type: i1.MatBottomSheet }, { type: i2$1.AdsIconRegistry }, { type: i3.Router }], propDecorators: { menu: [{
|
|
92
|
+
type: ViewChild,
|
|
93
|
+
args: ['menu']
|
|
94
|
+
}] } });
|
|
95
|
+
|
|
96
|
+
class AdsMainMenuModule {
|
|
97
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsMainMenuModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
98
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.1.1", ngImport: i0, type: AdsMainMenuModule, declarations: [AdsMainMenuComponent, AdsMainMenuBottomSheetComponent], imports: [CommonModule,
|
|
99
|
+
MatBottomSheetModule,
|
|
100
|
+
MatListModule,
|
|
101
|
+
MatMenuModule,
|
|
102
|
+
AdsIconModule,
|
|
103
|
+
RouterModule,
|
|
104
|
+
MatIconButton], exports: [AdsMainMenuComponent] }); }
|
|
105
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsMainMenuModule, imports: [CommonModule,
|
|
106
|
+
MatBottomSheetModule,
|
|
107
|
+
MatListModule,
|
|
108
|
+
MatMenuModule,
|
|
109
|
+
AdsIconModule,
|
|
110
|
+
RouterModule,
|
|
111
|
+
MatIconButton] }); }
|
|
112
|
+
}
|
|
113
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsMainMenuModule, decorators: [{
|
|
114
|
+
type: NgModule,
|
|
115
|
+
args: [{
|
|
116
|
+
imports: [
|
|
117
|
+
CommonModule,
|
|
118
|
+
MatBottomSheetModule,
|
|
119
|
+
MatListModule,
|
|
120
|
+
MatMenuModule,
|
|
121
|
+
AdsIconModule,
|
|
122
|
+
RouterModule,
|
|
123
|
+
MatIconButton,
|
|
124
|
+
],
|
|
125
|
+
exports: [AdsMainMenuComponent],
|
|
126
|
+
declarations: [AdsMainMenuComponent, AdsMainMenuBottomSheetComponent],
|
|
127
|
+
}]
|
|
128
|
+
}] });
|
|
129
|
+
|
|
130
|
+
/**
|
|
131
|
+
* Generated bundle index. Do not edit.
|
|
132
|
+
*/
|
|
133
|
+
|
|
134
|
+
export { AdsMainMenuComponent, AdsMainMenuModule };
|
|
135
|
+
//# sourceMappingURL=ascentgl-ads-ui-src-lib-components-main-menu.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ascentgl-ads-ui-src-lib-components-main-menu.mjs","sources":["../../../../libs/ads-ui/src/lib/components/main-menu/main-menu-bottom-sheet/main-menu-bottom-sheet.component.ts","../../../../libs/ads-ui/src/lib/components/main-menu/main-menu-bottom-sheet/main-menu-bottom-sheet.component.html","../../../../libs/ads-ui/src/lib/components/main-menu/main-menu.component.ts","../../../../libs/ads-ui/src/lib/components/main-menu/main-menu.component.html","../../../../libs/ads-ui/src/lib/components/main-menu/main-menu.module.ts","../../../../libs/ads-ui/src/lib/components/main-menu/ascentgl-ads-ui-src-lib-components-main-menu.ts"],"sourcesContent":["import { Component, Inject } from '@angular/core';\nimport { MAT_BOTTOM_SHEET_DATA } from '@angular/material/bottom-sheet';\nimport { MainMenuItem } from '../main-menu.types';\n\nexport interface MainMenuData {\n menuItems: MainMenuItem[];\n}\n\n@Component({\n selector: 'ads-main-menu-bottom-sheet',\n styleUrls: ['main-menu-bottom-sheet.component.scss'],\n templateUrl: 'main-menu-bottom-sheet.component.html',\n})\nexport class AdsMainMenuBottomSheetComponent {\n constructor(@Inject(MAT_BOTTOM_SHEET_DATA) public data: MainMenuData) {}\n}\n","<mat-nav-list>\n @for (item of data.menuItems; track item) {\n @if (item.href) {\n <mat-list-item [routerLink]=\"item.href\" routerLinkActive=\"selected\">\n <ng-container *ngTemplateOutlet=\"text; context: { menuItem: item }\" />\n </mat-list-item>\n } @else {\n <mat-list-item>\n <ng-container *ngTemplateOutlet=\"text; context: { menuItem: item }\" />\n </mat-list-item>\n }\n }\n</mat-nav-list>\n\n<ng-template #text let-item=\"menuItem\">\n <div class=\"container\">\n @if (item.icon) {\n <ads-icon [id]=\"item.id\" [name]=\"item.icon\" size=\"sm\" theme=\"primary\"></ads-icon>\n }\n <span>{{ item.text }}</span>\n </div>\n</ng-template>\n","import { Component, input, OnChanges, OnInit, SimpleChange, ViewChild } from '@angular/core';\nimport { MatBottomSheet, MatBottomSheetRef } from '@angular/material/bottom-sheet';\nimport { NavigationStart, Router } from '@angular/router';\nimport { AdsIconRegistry } from '@ascentgl/ads-icons';\nimport { adsIconMenuMoreInfo } from '@ascentgl/ads-icons/icons';\nimport { filter } from 'rxjs/operators';\nimport { AdsMainMenuBottomSheetComponent } from './main-menu-bottom-sheet/main-menu-bottom-sheet.component';\nimport { MainMenuItem } from './main-menu.types';\nimport { MatMenu } from '@angular/material/menu';\n\n@Component({\n selector: 'ads-main-menu',\n styleUrls: ['main-menu.component.scss'],\n templateUrl: 'main-menu.component.html',\n})\nexport class AdsMainMenuComponent implements OnChanges, OnInit {\n constructor(\n private bottomSheet: MatBottomSheet,\n private registry: AdsIconRegistry,\n private router: Router,\n ) {\n this.registry.register(adsIconMenuMoreInfo);\n }\n /** @ignore */\n @ViewChild('menu') menu?: MatMenu;\n\n /**\n * Array of menu items to display in the main menu\n */\n menuItems = input.required<MainMenuItem[]>();\n\n /** Id attribute for the main menu trigger element */\n id = input<string>('ads-main-menu');\n\n /**\n * Whether the navigation is collapsed\n */\n isCollapsed = input<boolean>(false);\n\n /**\n * Whether the viewport is mobile\n */\n isMobile = input<boolean>(false);\n\n /** @ignore */\n private bottomSheetRef?: MatBottomSheetRef<AdsMainMenuBottomSheetComponent>;\n\n /** @ignore */\n ngOnInit(): void {\n this.router.events.pipe(filter((event) => event instanceof NavigationStart)).subscribe(() => {\n this.bottomSheetRef?.dismiss();\n });\n }\n\n /** @ignore */\n ngOnChanges(changes: { isMobile: SimpleChange }): void {\n if (changes.isMobile) {\n const footerMenu = document.querySelector('.ads-bottom-sheet-panel');\n\n /**\n * if we are going from mobile to desktop size;\n * hide menu (to avoid its being animated) and dismiss it\n */\n if (footerMenu?.parentElement && !changes.isMobile.currentValue) {\n footerMenu.remove();\n this.bottomSheetRef?.dismiss();\n }\n }\n }\n\n /** @ignore */\n public openBottomSheet(): void {\n this.bottomSheetRef = this.bottomSheet.open(AdsMainMenuBottomSheetComponent, {\n data: { menuItems: this.menuItems() },\n panelClass: 'ads-bottom-sheet-panel',\n disableClose: false,\n });\n }\n\n protected readonly menubar = menubar;\n}\n","<ng-container *ngIf=\"isMobile(); else desktop\">\n @if (isCollapsed()) {\n <button mat-icon-button (click)=\"openBottomSheet()\">\n <ads-icon [id]=\"id()\" name=\"menu_more_info\" size=\"sm\" theme=\"primary\"></ads-icon>\n </button>\n }\n</ng-container>\n\n<ng-template #desktop>\n <button mat-icon-button [matMenuTriggerFor]=\"menu\">\n <ads-icon [id]=\"id()\" name=\"menu_more_info\" size=\"sm\" theme=\"primary\"></ads-icon>\n </button>\n <mat-menu #menu=\"matMenu\" [class]=\"'ads-mat-menu'\">\n @for (item of menuItems(); track item) {\n @if (item.href) {\n <button mat-menu-item [routerLink]=\"item.href\" routerLinkActive=\"selected\">\n <ng-container *ngTemplateOutlet=\"text; context: { menuItem: item }\" />\n </button>\n } @else {\n <button mat-menu-item>\n <ng-container *ngTemplateOutlet=\"text; context: { menuItem: item }\" />\n </button>\n }\n }\n </mat-menu>\n</ng-template>\n\n<ng-template #text let-item=\"menuItem\">\n <div class=\"container\">\n @if (item.icon) {\n <ads-icon [id]=\"item.id\" [name]=\"item.icon\" size=\"sm\" theme=\"primary\"></ads-icon>\n }\n <span>{{ item.text }}</span>\n </div>\n</ng-template>\n","import { CommonModule } from '@angular/common';\nimport { NgModule } from '@angular/core';\nimport { MatBottomSheetModule } from '@angular/material/bottom-sheet';\nimport { MatListModule } from '@angular/material/list';\nimport { MatMenuModule } from '@angular/material/menu';\nimport { RouterModule } from '@angular/router';\nimport { AdsIconModule } from '@ascentgl/ads-icons';\nimport { AdsMainMenuBottomSheetComponent } from './main-menu-bottom-sheet/main-menu-bottom-sheet.component';\nimport { AdsMainMenuComponent } from './main-menu.component';\nimport { MatIconButton } from '@angular/material/button';\n\n@NgModule({\n imports: [\n CommonModule,\n MatBottomSheetModule,\n MatListModule,\n MatMenuModule,\n AdsIconModule,\n RouterModule,\n MatIconButton,\n ],\n exports: [AdsMainMenuComponent],\n declarations: [AdsMainMenuComponent, AdsMainMenuBottomSheetComponent],\n})\nexport class AdsMainMenuModule {}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":["i1","i3","i4","i2"],"mappings":";;;;;;;;;;;;;;;;;;;MAaa,+BAA+B,CAAA;AAC1C,IAAA,WAAA,CAAkD,IAAkB,EAAA;QAAlB,IAAI,CAAA,IAAA,GAAJ,IAAI,CAAc;KAAI;AAD7D,IAAA,SAAA,IAAA,CAAA,IAAA,GAAA,EAAA,CAAA,kBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,+BAA+B,kBACtB,qBAAqB,EAAA,CAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA,EAAA;AAD9B,IAAA,SAAA,IAAA,CAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,IAAA,EAAA,+BAA+B,kECb5C,osBAsBA,EAAA,MAAA,EAAA,CAAA,6bAAA,CAAA,EAAA,YAAA,EAAA,CAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAA,EAAA,CAAA,gBAAA,EAAA,QAAA,EAAA,oBAAA,EAAA,MAAA,EAAA,CAAA,yBAAA,EAAA,kBAAA,EAAA,0BAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,UAAA,EAAA,QAAA,EAAA,cAAA,EAAA,QAAA,EAAA,CAAA,YAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,WAAA,EAAA,QAAA,EAAA,wDAAA,EAAA,MAAA,EAAA,CAAA,WAAA,CAAA,EAAA,QAAA,EAAA,CAAA,aAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAC,IAAA,CAAA,gBAAA,EAAA,QAAA,EAAA,UAAA,EAAA,MAAA,EAAA,CAAA,MAAA,EAAA,MAAA,EAAA,OAAA,EAAA,OAAA,EAAA,QAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAC,EAAA,CAAA,UAAA,EAAA,QAAA,EAAA,cAAA,EAAA,MAAA,EAAA,CAAA,QAAA,EAAA,aAAA,EAAA,UAAA,EAAA,qBAAA,EAAA,OAAA,EAAA,MAAA,EAAA,YAAA,EAAA,kBAAA,EAAA,oBAAA,EAAA,YAAA,EAAA,YAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAA,EAAA,CAAA,gBAAA,EAAA,QAAA,EAAA,oBAAA,EAAA,MAAA,EAAA,CAAA,yBAAA,EAAA,uBAAA,EAAA,kBAAA,CAAA,EAAA,OAAA,EAAA,CAAA,gBAAA,CAAA,EAAA,QAAA,EAAA,CAAA,kBAAA,CAAA,EAAA,CAAA,EAAA,CAAA,CAAA,EAAA;;2FDTa,+BAA+B,EAAA,UAAA,EAAA,CAAA;kBAL3C,SAAS;+BACE,4BAA4B,EAAA,QAAA,EAAA,osBAAA,EAAA,MAAA,EAAA,CAAA,6bAAA,CAAA,EAAA,CAAA;;0BAKzB,MAAM;2BAAC,qBAAqB,CAAA;;;MEC9B,oBAAoB,CAAA;AAC/B,IAAA,WAAA,CACU,WAA2B,EAC3B,QAAyB,EACzB,MAAc,EAAA;QAFd,IAAW,CAAA,WAAA,GAAX,WAAW,CAAgB;QAC3B,IAAQ,CAAA,QAAA,GAAR,QAAQ,CAAiB;QACzB,IAAM,CAAA,MAAA,GAAN,MAAM,CAAQ;AAOxB;;AAEG;AACH,QAAA,IAAA,CAAA,SAAS,GAAG,KAAK,CAAC,QAAQ,EAAkB,CAAC;;AAG7C,QAAA,IAAA,CAAA,EAAE,GAAG,KAAK,CAAS,eAAe,CAAC,CAAC;AAEpC;;AAEG;AACH,QAAA,IAAA,CAAA,WAAW,GAAG,KAAK,CAAU,KAAK,CAAC,CAAC;AAEpC;;AAEG;AACH,QAAA,IAAA,CAAA,QAAQ,GAAG,KAAK,CAAU,KAAK,CAAC,CAAC;QAqCd,IAAO,CAAA,OAAA,GAAG,OAAO,CAAC;AA1DnC,QAAA,IAAI,CAAC,QAAQ,CAAC,QAAQ,CAAC,mBAAmB,CAAC,CAAC;KAC7C;;IA0BD,QAAQ,GAAA;QACN,IAAI,CAAC,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,KAAK,KAAK,KAAK,YAAY,eAAe,CAAC,CAAC,CAAC,SAAS,CAAC,MAAK;AAC1F,YAAA,IAAI,CAAC,cAAc,EAAE,OAAO,EAAE,CAAC;AACjC,SAAC,CAAC,CAAC;KACJ;;AAGD,IAAA,WAAW,CAAC,OAAmC,EAAA;AAC7C,QAAA,IAAI,OAAO,CAAC,QAAQ,EAAE;YACpB,MAAM,UAAU,GAAG,QAAQ,CAAC,aAAa,CAAC,yBAAyB,CAAC,CAAC;AAErE;;;AAGG;YACH,IAAI,UAAU,EAAE,aAAa,IAAI,CAAC,OAAO,CAAC,QAAQ,CAAC,YAAY,EAAE;gBAC/D,UAAU,CAAC,MAAM,EAAE,CAAC;AACpB,gBAAA,IAAI,CAAC,cAAc,EAAE,OAAO,EAAE,CAAC;aAChC;SACF;KACF;;IAGM,eAAe,GAAA;QACpB,IAAI,CAAC,cAAc,GAAG,IAAI,CAAC,WAAW,CAAC,IAAI,CAAC,+BAA+B,EAAE;YAC3E,IAAI,EAAE,EAAE,SAAS,EAAE,IAAI,CAAC,SAAS,EAAE,EAAE;AACrC,YAAA,UAAU,EAAE,wBAAwB;AACpC,YAAA,YAAY,EAAE,KAAK;AACpB,SAAA,CAAC,CAAC;KACJ;8GA9DU,oBAAoB,EAAA,IAAA,EAAA,CAAA,EAAA,KAAA,EAAA,EAAA,CAAA,cAAA,EAAA,EAAA,EAAA,KAAA,EAAAC,IAAA,CAAA,eAAA,EAAA,EAAA,EAAA,KAAA,EAAA,EAAA,CAAA,MAAA,EAAA,CAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA,EAAA;AAApB,IAAA,SAAA,IAAA,CAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,IAAA,EAAA,oBAAoB,irBCfjC,6tCAmCA,EAAA,MAAA,EAAA,CAAA,8XAAA,CAAA,EAAA,YAAA,EAAA,CAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,IAAA,EAAA,QAAA,EAAA,QAAA,EAAA,MAAA,EAAA,CAAA,MAAA,EAAA,UAAA,EAAA,UAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,gBAAA,EAAA,QAAA,EAAA,oBAAA,EAAA,MAAA,EAAA,CAAA,yBAAA,EAAA,kBAAA,EAAA,0BAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,OAAA,EAAA,QAAA,EAAA,UAAA,EAAA,MAAA,EAAA,CAAA,eAAA,EAAA,YAAA,EAAA,iBAAA,EAAA,kBAAA,EAAA,WAAA,EAAA,WAAA,EAAA,gBAAA,EAAA,aAAA,EAAA,OAAA,EAAA,WAAA,CAAA,EAAA,OAAA,EAAA,CAAA,QAAA,EAAA,OAAA,CAAA,EAAA,QAAA,EAAA,CAAA,SAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,WAAA,EAAA,QAAA,EAAA,iBAAA,EAAA,MAAA,EAAA,CAAA,MAAA,EAAA,UAAA,EAAA,eAAA,CAAA,EAAA,QAAA,EAAA,CAAA,aAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,cAAA,EAAA,QAAA,EAAA,6CAAA,EAAA,MAAA,EAAA,CAAA,sBAAA,EAAA,mBAAA,EAAA,oBAAA,EAAA,4BAAA,CAAA,EAAA,OAAA,EAAA,CAAA,YAAA,EAAA,YAAA,EAAA,YAAA,EAAA,aAAA,CAAA,EAAA,QAAA,EAAA,CAAA,gBAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAAA,IAAA,CAAA,gBAAA,EAAA,QAAA,EAAA,UAAA,EAAA,MAAA,EAAA,CAAA,MAAA,EAAA,MAAA,EAAA,OAAA,EAAA,OAAA,EAAA,QAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,UAAA,EAAA,QAAA,EAAA,cAAA,EAAA,MAAA,EAAA,CAAA,QAAA,EAAA,aAAA,EAAA,UAAA,EAAA,qBAAA,EAAA,OAAA,EAAA,MAAA,EAAA,YAAA,EAAA,kBAAA,EAAA,oBAAA,EAAA,YAAA,EAAA,YAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,gBAAA,EAAA,QAAA,EAAA,oBAAA,EAAA,MAAA,EAAA,CAAA,yBAAA,EAAA,uBAAA,EAAA,kBAAA,CAAA,EAAA,OAAA,EAAA,CAAA,gBAAA,CAAA,EAAA,QAAA,EAAA,CAAA,kBAAA,CAAA,EAAA,EAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,aAAA,EAAA,QAAA,EAAA,yBAAA,EAAA,QAAA,EAAA,CAAA,WAAA,CAAA,EAAA,CAAA,EAAA,CAAA,CAAA,EAAA;;2FDpBa,oBAAoB,EAAA,UAAA,EAAA,CAAA;kBALhC,SAAS;+BACE,eAAe,EAAA,QAAA,EAAA,6tCAAA,EAAA,MAAA,EAAA,CAAA,8XAAA,CAAA,EAAA,CAAA;wIAaN,IAAI,EAAA,CAAA;sBAAtB,SAAS;uBAAC,MAAM,CAAA;;;MEAN,iBAAiB,CAAA;8GAAjB,iBAAiB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,QAAA,EAAA,CAAA,CAAA,EAAA;AAAjB,IAAA,SAAA,IAAA,CAAA,IAAA,GAAA,EAAA,CAAA,mBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,iBAAiB,EAFb,YAAA,EAAA,CAAA,oBAAoB,EAAE,+BAA+B,aATlE,YAAY;YACZ,oBAAoB;YACpB,aAAa;YACb,aAAa;YACb,aAAa;YACb,YAAY;AACZ,YAAA,aAAa,aAEL,oBAAoB,CAAA,EAAA,CAAA,CAAA,EAAA;AAGnB,IAAA,SAAA,IAAA,CAAA,IAAA,GAAA,EAAA,CAAA,mBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,iBAAiB,YAX1B,YAAY;YACZ,oBAAoB;YACpB,aAAa;YACb,aAAa;YACb,aAAa;YACb,YAAY;YACZ,aAAa,CAAA,EAAA,CAAA,CAAA,EAAA;;2FAKJ,iBAAiB,EAAA,UAAA,EAAA,CAAA;kBAb7B,QAAQ;AAAC,YAAA,IAAA,EAAA,CAAA;AACR,oBAAA,OAAO,EAAE;wBACP,YAAY;wBACZ,oBAAoB;wBACpB,aAAa;wBACb,aAAa;wBACb,aAAa;wBACb,YAAY;wBACZ,aAAa;AACd,qBAAA;oBACD,OAAO,EAAE,CAAC,oBAAoB,CAAC;AAC/B,oBAAA,YAAY,EAAE,CAAC,oBAAoB,EAAE,+BAA+B,CAAC;AACtE,iBAAA,CAAA;;;ACvBD;;AAEG;;;;"}
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
import * as i0 from '@angular/core';
|
|
2
|
+
import { EventEmitter, Component, Input, Output, NgModule } from '@angular/core';
|
|
3
|
+
import * as i1 from '@ascentgl/ads-icons';
|
|
4
|
+
import { AdsIconModule } from '@ascentgl/ads-icons';
|
|
5
|
+
import { adsIconEditDashboard } from '@ascentgl/ads-icons/icons';
|
|
6
|
+
|
|
7
|
+
class AdsDashboardEditIconComponent {
|
|
8
|
+
constructor(registry) {
|
|
9
|
+
this.registry = registry;
|
|
10
|
+
/**
|
|
11
|
+
* Whether the navigation is collapsed
|
|
12
|
+
*/
|
|
13
|
+
this.isCollapsed = false;
|
|
14
|
+
/**
|
|
15
|
+
* Whether the viewport is mobile
|
|
16
|
+
*/
|
|
17
|
+
this.isMobile = false;
|
|
18
|
+
/**
|
|
19
|
+
* Text to display with the edit dashboard button
|
|
20
|
+
*/
|
|
21
|
+
// @Input() editText = 'Edit Dashboard';
|
|
22
|
+
/**
|
|
23
|
+
* Event emitted when the edit dashboard button is clicked
|
|
24
|
+
*/
|
|
25
|
+
this.editClicked = new EventEmitter();
|
|
26
|
+
this.registry.register(adsIconEditDashboard);
|
|
27
|
+
}
|
|
28
|
+
/** @ignore */
|
|
29
|
+
onEditClick() {
|
|
30
|
+
this.editClicked.emit();
|
|
31
|
+
}
|
|
32
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsDashboardEditIconComponent, deps: [{ token: i1.AdsIconRegistry }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
33
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.1.1", type: AdsDashboardEditIconComponent, selector: "ads-dashboard-edit-icon", inputs: { id: "id", isCollapsed: "isCollapsed", isMobile: "isMobile" }, outputs: { editClicked: "editClicked" }, ngImport: i0, template: "<div class=\"big-circle\">\n <div\n class=\"edit-handle\"\n tabindex=\"0\"\n (keyup.enter)=\"onEditClick()\"\n (click)=\"onEditClick()\"\n [class.collapsed]=\"isCollapsed\"\n [class.mobile]=\"isMobile\"\n [id]=\"id\"\n >\n <ads-icon class=\"edit-icon\" name=\"edit_dashboard\" style=\"width: 28px; height: 28px\" theme=\"primary\"></ads-icon>\n </div>\n</div>\n", styles: [".edit-handle{position:absolute;border:3px solid #6762ff;border-radius:50%;display:flex;box-sizing:border-box;flex:0 0 auto;align-items:center;background-color:var(--color-white);color:var(--color-primary);cursor:pointer;z-index:1;width:58px;height:58px;justify-content:center}.edit-handle:hover,.edit-handle:focus{background-color:var(--color-light-30);color:var(--color-dark);outline:none}.edit-text{margin-left:16px;font-weight:500;-webkit-user-select:none;user-select:none;white-space:nowrap}:host ::ng-deep .edit-icon.ads-icon svg{width:24px;height:24px}.edit-handle.mobile{display:none!important}.big-circle{position:absolute;bottom:28px;right:26px;border:0px solid var(--color-primary);border-radius:50%;box-shadow:0 100px 80px #6c49ac12,0 41.7776px 33.4221px #6c49ac0d,0 22.3363px 17.869px #6c49ac0b,0 12.5216px 10.0172px #6c49ac09,0 6.6501px 5.32008px #6c49ac07,0 2.76726px 2.21381px #6c49ac05;display:flex;box-sizing:border-box;flex:0 0 auto;align-items:center;background-color:var(--color-white);color:var(--color-primary);cursor:pointer;z-index:1;width:82px;height:82px;justify-content:center}\n"], dependencies: [{ kind: "component", type: i1.AdsIconComponent, selector: "ads-icon", inputs: ["size", "name", "color", "theme", "stroke"] }] }); }
|
|
34
|
+
}
|
|
35
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsDashboardEditIconComponent, decorators: [{
|
|
36
|
+
type: Component,
|
|
37
|
+
args: [{ selector: 'ads-dashboard-edit-icon', template: "<div class=\"big-circle\">\n <div\n class=\"edit-handle\"\n tabindex=\"0\"\n (keyup.enter)=\"onEditClick()\"\n (click)=\"onEditClick()\"\n [class.collapsed]=\"isCollapsed\"\n [class.mobile]=\"isMobile\"\n [id]=\"id\"\n >\n <ads-icon class=\"edit-icon\" name=\"edit_dashboard\" style=\"width: 28px; height: 28px\" theme=\"primary\"></ads-icon>\n </div>\n</div>\n", styles: [".edit-handle{position:absolute;border:3px solid #6762ff;border-radius:50%;display:flex;box-sizing:border-box;flex:0 0 auto;align-items:center;background-color:var(--color-white);color:var(--color-primary);cursor:pointer;z-index:1;width:58px;height:58px;justify-content:center}.edit-handle:hover,.edit-handle:focus{background-color:var(--color-light-30);color:var(--color-dark);outline:none}.edit-text{margin-left:16px;font-weight:500;-webkit-user-select:none;user-select:none;white-space:nowrap}:host ::ng-deep .edit-icon.ads-icon svg{width:24px;height:24px}.edit-handle.mobile{display:none!important}.big-circle{position:absolute;bottom:28px;right:26px;border:0px solid var(--color-primary);border-radius:50%;box-shadow:0 100px 80px #6c49ac12,0 41.7776px 33.4221px #6c49ac0d,0 22.3363px 17.869px #6c49ac0b,0 12.5216px 10.0172px #6c49ac09,0 6.6501px 5.32008px #6c49ac07,0 2.76726px 2.21381px #6c49ac05;display:flex;box-sizing:border-box;flex:0 0 auto;align-items:center;background-color:var(--color-white);color:var(--color-primary);cursor:pointer;z-index:1;width:82px;height:82px;justify-content:center}\n"] }]
|
|
38
|
+
}], ctorParameters: () => [{ type: i1.AdsIconRegistry }], propDecorators: { id: [{
|
|
39
|
+
type: Input
|
|
40
|
+
}], isCollapsed: [{
|
|
41
|
+
type: Input
|
|
42
|
+
}], isMobile: [{
|
|
43
|
+
type: Input
|
|
44
|
+
}], editClicked: [{
|
|
45
|
+
type: Output
|
|
46
|
+
}] } });
|
|
47
|
+
|
|
48
|
+
class AdsDashboardEditIconModule {
|
|
49
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsDashboardEditIconModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
50
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.1.1", ngImport: i0, type: AdsDashboardEditIconModule, declarations: [AdsDashboardEditIconComponent], imports: [AdsIconModule], exports: [AdsDashboardEditIconComponent] }); }
|
|
51
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsDashboardEditIconModule, imports: [AdsIconModule] }); }
|
|
52
|
+
}
|
|
53
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsDashboardEditIconModule, decorators: [{
|
|
54
|
+
type: NgModule,
|
|
55
|
+
args: [{
|
|
56
|
+
imports: [AdsIconModule],
|
|
57
|
+
exports: [AdsDashboardEditIconComponent],
|
|
58
|
+
declarations: [AdsDashboardEditIconComponent],
|
|
59
|
+
}]
|
|
60
|
+
}] });
|
|
61
|
+
|
|
62
|
+
/**
|
|
63
|
+
* Generated bundle index. Do not edit.
|
|
64
|
+
*/
|
|
65
|
+
|
|
66
|
+
export { AdsDashboardEditIconComponent, AdsDashboardEditIconModule };
|
|
67
|
+
//# sourceMappingURL=ascentgl-ads-ui-src-lib-components-navigation-dashboard-edit-icon.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ascentgl-ads-ui-src-lib-components-navigation-dashboard-edit-icon.mjs","sources":["../../../../libs/ads-ui/src/lib/components/navigation/dashboard-edit-icon/dashboard-edit-icon.component.ts","../../../../libs/ads-ui/src/lib/components/navigation/dashboard-edit-icon/dashboard-edit-icon.component.html","../../../../libs/ads-ui/src/lib/components/navigation/dashboard-edit-icon/dashboard-edit-icon.module.ts","../../../../libs/ads-ui/src/lib/components/navigation/dashboard-edit-icon/ascentgl-ads-ui-src-lib-components-navigation-dashboard-edit-icon.ts"],"sourcesContent":["import { Component, EventEmitter, Input, Output } from '@angular/core';\nimport { AdsIconRegistry } from '@ascentgl/ads-icons';\nimport { adsIconEditDashboard } from '@ascentgl/ads-icons/icons';\n\n@Component({\n selector: 'ads-dashboard-edit-icon',\n styleUrls: ['dashboard-edit-icon.component.scss'],\n templateUrl: 'dashboard-edit-icon.component.html',\n})\nexport class AdsDashboardEditIconComponent {\n constructor(private registry: AdsIconRegistry) {\n this.registry.register(adsIconEditDashboard);\n }\n\n /**\n * The unique ID for the dashboard edit icon\n */\n @Input() id!: string;\n\n /**\n * Whether the navigation is collapsed\n */\n @Input() isCollapsed = false;\n\n /**\n * Whether the viewport is mobile\n */\n @Input() isMobile = false;\n\n /**\n * Text to display with the edit dashboard button\n */\n // @Input() editText = 'Edit Dashboard';\n\n /**\n * Event emitted when the edit dashboard button is clicked\n */\n @Output() editClicked: EventEmitter<null> = new EventEmitter();\n\n /** @ignore */\n onEditClick() {\n this.editClicked.emit();\n }\n}\n","<div class=\"big-circle\">\n <div\n class=\"edit-handle\"\n tabindex=\"0\"\n (keyup.enter)=\"onEditClick()\"\n (click)=\"onEditClick()\"\n [class.collapsed]=\"isCollapsed\"\n [class.mobile]=\"isMobile\"\n [id]=\"id\"\n >\n <ads-icon class=\"edit-icon\" name=\"edit_dashboard\" style=\"width: 28px; height: 28px\" theme=\"primary\"></ads-icon>\n </div>\n</div>\n","import { NgModule } from '@angular/core';\nimport { AdsIconModule } from '@ascentgl/ads-icons';\nimport { AdsDashboardEditIconComponent } from './dashboard-edit-icon.component';\n\n@NgModule({\n imports: [AdsIconModule],\n exports: [AdsDashboardEditIconComponent],\n declarations: [AdsDashboardEditIconComponent],\n})\nexport class AdsDashboardEditIconModule {}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":";;;;;;MASa,6BAA6B,CAAA;AACxC,IAAA,WAAA,CAAoB,QAAyB,EAAA;QAAzB,IAAQ,CAAA,QAAA,GAAR,QAAQ,CAAiB;AAS7C;;AAEG;QACM,IAAW,CAAA,WAAA,GAAG,KAAK,CAAC;AAE7B;;AAEG;QACM,IAAQ,CAAA,QAAA,GAAG,KAAK,CAAC;AAE1B;;AAEG;;AAGH;;AAEG;AACO,QAAA,IAAA,CAAA,WAAW,GAAuB,IAAI,YAAY,EAAE,CAAC;AA1B7D,QAAA,IAAI,CAAC,QAAQ,CAAC,QAAQ,CAAC,oBAAoB,CAAC,CAAC;KAC9C;;IA4BD,WAAW,GAAA;AACT,QAAA,IAAI,CAAC,WAAW,CAAC,IAAI,EAAE,CAAC;KACzB;8GAjCU,6BAA6B,EAAA,IAAA,EAAA,CAAA,EAAA,KAAA,EAAA,EAAA,CAAA,eAAA,EAAA,CAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA,EAAA;AAA7B,IAAA,SAAA,IAAA,CAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,IAAA,EAAA,6BAA6B,gLCT1C,sYAaA,EAAA,MAAA,EAAA,CAAA,olCAAA,CAAA,EAAA,YAAA,EAAA,CAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,gBAAA,EAAA,QAAA,EAAA,UAAA,EAAA,MAAA,EAAA,CAAA,MAAA,EAAA,MAAA,EAAA,OAAA,EAAA,OAAA,EAAA,QAAA,CAAA,EAAA,CAAA,EAAA,CAAA,CAAA,EAAA;;2FDJa,6BAA6B,EAAA,UAAA,EAAA,CAAA;kBALzC,SAAS;+BACE,yBAAyB,EAAA,QAAA,EAAA,sYAAA,EAAA,MAAA,EAAA,CAAA,olCAAA,CAAA,EAAA,CAAA;oFAY1B,EAAE,EAAA,CAAA;sBAAV,KAAK;gBAKG,WAAW,EAAA,CAAA;sBAAnB,KAAK;gBAKG,QAAQ,EAAA,CAAA;sBAAhB,KAAK;gBAUI,WAAW,EAAA,CAAA;sBAApB,MAAM;;;ME5BI,0BAA0B,CAAA;8GAA1B,0BAA0B,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,QAAA,EAAA,CAAA,CAAA,EAAA;AAA1B,IAAA,SAAA,IAAA,CAAA,IAAA,GAAA,EAAA,CAAA,mBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,0BAA0B,EAFtB,YAAA,EAAA,CAAA,6BAA6B,CAFlC,EAAA,OAAA,EAAA,CAAA,aAAa,aACb,6BAA6B,CAAA,EAAA,CAAA,CAAA,EAAA;AAG5B,IAAA,SAAA,IAAA,CAAA,IAAA,GAAA,EAAA,CAAA,mBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,0BAA0B,YAJ3B,aAAa,CAAA,EAAA,CAAA,CAAA,EAAA;;2FAIZ,0BAA0B,EAAA,UAAA,EAAA,CAAA;kBALtC,QAAQ;AAAC,YAAA,IAAA,EAAA,CAAA;oBACR,OAAO,EAAE,CAAC,aAAa,CAAC;oBACxB,OAAO,EAAE,CAAC,6BAA6B,CAAC;oBACxC,YAAY,EAAE,CAAC,6BAA6B,CAAC;AAC9C,iBAAA,CAAA;;;ACRD;;AAEG;;;;"}
|