@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 @@
|
|
|
1
|
+
{"version":3,"file":"ascentgl-ads-ui-src-lib-components-progress-indicators-progress-indicator-spinner.mjs","sources":["../../../../libs/ads-ui/src/lib/components/progress-indicators/progress-indicator-spinner/progress-indicator-spinner.types.ts","../../../../libs/ads-ui/src/lib/components/progress-indicators/progress-indicator-spinner/progress-indicator-spinner.component.ts","../../../../libs/ads-ui/src/lib/components/progress-indicators/progress-indicator-spinner/progress-indicator-spinner.component.html","../../../../libs/ads-ui/src/lib/components/progress-indicators/progress-indicator-spinner/progress-indicator-spinner.module.ts","../../../../libs/ads-ui/src/lib/components/progress-indicators/progress-indicator-spinner/ascentgl-ads-ui-src-lib-components-progress-indicators-progress-indicator-spinner.ts"],"sourcesContent":["export enum ProgressIndicatorSpinnerDefault {\n diameter = 52,\n padding = 11,\n fontSize = 20,\n max = 10,\n}\n","import { Component, EventEmitter, Input, OnChanges, Output, SimpleChange } from '@angular/core';\nimport { ProgressIndicatorSpinnerDefault } from './progress-indicator-spinner.types';\n\n@Component({\n selector: 'ads-progress-indicator-spinner',\n templateUrl: './progress-indicator-spinner.component.html',\n styleUrls: ['./progress-indicator-spinner.component.scss'],\n})\nexport class AdsProgressIndicatorSpinnerComponent implements OnChanges {\n /** Spinner diameter in pixels. Default is 52. Cannot be less than 20 */\n @Input() diameter: number = ProgressIndicatorSpinnerDefault.diameter;\n\n /** Max progress value. Default is 10. Cannot be less than 0 */\n @Input() max: number = ProgressIndicatorSpinnerDefault.max;\n\n /** Current progress value. Cannot be less than 0 or more than \"max\"*/\n @Input() value = 0;\n\n /** Event emitted percentage is updated after value changes */\n @Output() percentageUpdated = new EventEmitter<number>();\n\n /** @ignore */\n percentage = 0;\n\n /** @ignore */\n readonly defaults: typeof ProgressIndicatorSpinnerDefault = ProgressIndicatorSpinnerDefault;\n\n /** @ignore */\n ngOnChanges(changes: { value: SimpleChange; max: SimpleChange; diameter: SimpleChange }): void {\n if (changes.max) {\n this.calculateMax();\n }\n\n if (changes.value) {\n this.calculateValue();\n }\n\n if (changes.diameter) {\n this.calculateDiameter();\n }\n }\n\n /** @ignore */\n private calculateMax(): void {\n if (this.max < 1) {\n this.max = 1;\n }\n\n this.calculateValue();\n }\n\n /** @ignore */\n private calculateValue(): void {\n if (this.value < 0) {\n this.value = 0;\n }\n\n if (this.value > this.max) {\n this.value = this.max;\n }\n\n this.calculatePercentage();\n }\n\n /** @ignore */\n private calculatePercentage(): void {\n const newPercentage = Math.round((this.value * 100) / this.max);\n\n if (newPercentage != this.percentage) {\n this.percentage = newPercentage;\n this.percentageUpdated.emit(this.percentage);\n }\n }\n\n /** @ignore */\n private calculateDiameter(): void {\n if (this.diameter < 20) {\n this.diameter = 20;\n }\n }\n}\n","<!-- real padding will be calculated based on default padding and font size -->\n<div\n class=\"progress-indicator-wrapper\"\n [ngStyle]=\"{ padding: (diameter * defaults.padding) / defaults.diameter + 'px' }\"\n>\n <mat-spinner [mode]=\"'determinate'\" [diameter]=\"diameter\" [value]=\"percentage\"></mat-spinner>\n <!-- real font size is calculated based on default diameter and font size -->\n <div\n class=\"progress-value\"\n [ngStyle]=\"{\n fontSize: (diameter * defaults.fontSize) / defaults.diameter + 'px',\n width: diameter + 'px',\n height: diameter + 'px',\n }\"\n >\n <!-- hidden value is used to calculate visible value scale -->\n <span class=\"hidden-value\" #hiddenValue>{{ value }}</span>\n <!-- scale value only if it has more than 3 characters -->\n <!-- the text should not be wider than 70% of diameter -->\n <span\n class=\"visible-value\"\n [ngStyle]=\"{\n scale: hiddenValue.textContent!.length > 3 ? (this.diameter * 0.7) / hiddenValue.clientWidth : 1,\n }\"\n >{{ value }}</span\n >\n </div>\n</div>\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { AdsProgressIndicatorSpinnerComponent } from './progress-indicator-spinner.component';\nimport { MatProgressSpinnerModule } from '@angular/material/progress-spinner';\n\n@NgModule({\n declarations: [AdsProgressIndicatorSpinnerComponent],\n imports: [CommonModule, MatProgressSpinnerModule],\n exports: [AdsProgressIndicatorSpinnerComponent],\n})\nexport class AdsProgressIndicatorSpinnerModule {}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,120 @@
|
|
|
1
|
+
import * as i0 from '@angular/core';
|
|
2
|
+
import { Component, Input, HostListener, NgModule } from '@angular/core';
|
|
3
|
+
import { DomHelper, AdsGestureModule } from '@ascentgl/ads-utils';
|
|
4
|
+
import * as i1 from '@angular/common';
|
|
5
|
+
import { CommonModule } from '@angular/common';
|
|
6
|
+
import * as i2 from '@angular/material/progress-spinner';
|
|
7
|
+
import { MatProgressSpinnerModule } from '@angular/material/progress-spinner';
|
|
8
|
+
import { AdsIconModule } from '@ascentgl/ads-icons';
|
|
9
|
+
|
|
10
|
+
var SpinnerSize;
|
|
11
|
+
(function (SpinnerSize) {
|
|
12
|
+
SpinnerSize["xSmall"] = "x-small";
|
|
13
|
+
SpinnerSize["small"] = "small";
|
|
14
|
+
SpinnerSize["normal"] = "normal";
|
|
15
|
+
})(SpinnerSize || (SpinnerSize = {}));
|
|
16
|
+
class AdsProgressSpinnerComponent {
|
|
17
|
+
constructor(ref, cdr) {
|
|
18
|
+
this.ref = ref;
|
|
19
|
+
this.cdr = cdr;
|
|
20
|
+
/** set spinner z-index */
|
|
21
|
+
this.zIndex = 1;
|
|
22
|
+
/** set spinner scrollContainer. This is useful when the spinner is inside dialog window **/
|
|
23
|
+
this.scrollContainer = 'none';
|
|
24
|
+
/** set spinner size */
|
|
25
|
+
this.size = SpinnerSize.normal;
|
|
26
|
+
this.computedDiameter = 100;
|
|
27
|
+
this.isSticky = false;
|
|
28
|
+
this.sizes = {
|
|
29
|
+
[SpinnerSize.xSmall]: 50,
|
|
30
|
+
[SpinnerSize.small]: 70,
|
|
31
|
+
[SpinnerSize.normal]: 100,
|
|
32
|
+
};
|
|
33
|
+
}
|
|
34
|
+
/** @ignore */
|
|
35
|
+
ngOnInit() {
|
|
36
|
+
let scrollContainer = this.scrollContainer;
|
|
37
|
+
if (this.scrollContainer == 'auto') {
|
|
38
|
+
scrollContainer = DomHelper.getScrollableParent(this.ref.nativeElement);
|
|
39
|
+
}
|
|
40
|
+
/**
|
|
41
|
+
* if scroll container is HTMLElement, make spinner stick to it's dimensions
|
|
42
|
+
*/
|
|
43
|
+
if (scrollContainer instanceof HTMLElement) {
|
|
44
|
+
this.scrollContainer = scrollContainer;
|
|
45
|
+
this.isSticky = true;
|
|
46
|
+
this.computedStyles = getComputedStyle(scrollContainer);
|
|
47
|
+
}
|
|
48
|
+
if (this.diameter) {
|
|
49
|
+
this.computedDiameter = this.diameter;
|
|
50
|
+
}
|
|
51
|
+
else {
|
|
52
|
+
this.computedDiameter = this.sizes[this.size];
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
/** @ignore */
|
|
56
|
+
getOverlayStyles() {
|
|
57
|
+
const container = this.scrollContainer;
|
|
58
|
+
const computedStyles = this.computedStyles ?? {};
|
|
59
|
+
/**
|
|
60
|
+
* subtract .5px from width to avoid "accidental" appearance of scrollbars on resize
|
|
61
|
+
*/
|
|
62
|
+
return {
|
|
63
|
+
zIndex: this.zIndex,
|
|
64
|
+
height: container.clientHeight + 'px',
|
|
65
|
+
width: container.clientWidth - 0.5 + 'px',
|
|
66
|
+
top: computedStyles.paddingTop ? '-' + computedStyles.paddingTop : 0,
|
|
67
|
+
left: computedStyles.paddingLeft ? '-' + computedStyles.paddingLeft : 0,
|
|
68
|
+
};
|
|
69
|
+
}
|
|
70
|
+
/**
|
|
71
|
+
* @ignore
|
|
72
|
+
* required for proper change detection
|
|
73
|
+
* NOTE: REALLY REQUIRED
|
|
74
|
+
*/
|
|
75
|
+
resize() {
|
|
76
|
+
/**
|
|
77
|
+
* additional change detection allows to avoid overlay sizing issues when window is being resized
|
|
78
|
+
*/
|
|
79
|
+
this.cdr.detectChanges();
|
|
80
|
+
}
|
|
81
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsProgressSpinnerComponent, deps: [{ token: i0.ElementRef }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
82
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.1.1", type: AdsProgressSpinnerComponent, selector: "ads-progress-spinner", inputs: { zIndex: "zIndex", scrollContainer: "scrollContainer", size: "size", diameter: "diameter" }, host: { listeners: { "window:resize": "resize()" } }, ngImport: i0, template: "@if (isSticky) {\n <div class=\"spinner-container\">\n <div class=\"spinner-overlay\" [ngStyle]=\"getOverlayStyles()\">\n <mat-spinner [diameter]=\"computedDiameter\" aria-label=\"progress spinner\"></mat-spinner>\n </div>\n </div>\n} @else {\n <div class=\"spinner-overlay window\" [ngStyle]=\"{ zIndex }\">\n <mat-spinner [diameter]=\"computedDiameter\" aria-label=\"progress spinner\"></mat-spinner>\n </div>\n}\n", styles: [".spinner-container{position:sticky;display:block;z-index:1;top:0;left:0}.spinner-container .spinner-overlay{position:absolute}.spinner-overlay{width:100%;height:100%;position:fixed;z-index:1;inset:0 auto auto 0;display:flex;align-items:center;justify-content:center;background:#02014766}.spinner-overlay ::ng-deep mat-spinner circle{stroke:var(--color-white)!important}\n"], dependencies: [{ kind: "directive", type: i1.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "component", type: i2.MatProgressSpinner, selector: "mat-progress-spinner, mat-spinner", inputs: ["color", "mode", "value", "diameter", "strokeWidth"], exportAs: ["matProgressSpinner"] }] }); }
|
|
83
|
+
}
|
|
84
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsProgressSpinnerComponent, decorators: [{
|
|
85
|
+
type: Component,
|
|
86
|
+
args: [{ selector: 'ads-progress-spinner', template: "@if (isSticky) {\n <div class=\"spinner-container\">\n <div class=\"spinner-overlay\" [ngStyle]=\"getOverlayStyles()\">\n <mat-spinner [diameter]=\"computedDiameter\" aria-label=\"progress spinner\"></mat-spinner>\n </div>\n </div>\n} @else {\n <div class=\"spinner-overlay window\" [ngStyle]=\"{ zIndex }\">\n <mat-spinner [diameter]=\"computedDiameter\" aria-label=\"progress spinner\"></mat-spinner>\n </div>\n}\n", styles: [".spinner-container{position:sticky;display:block;z-index:1;top:0;left:0}.spinner-container .spinner-overlay{position:absolute}.spinner-overlay{width:100%;height:100%;position:fixed;z-index:1;inset:0 auto auto 0;display:flex;align-items:center;justify-content:center;background:#02014766}.spinner-overlay ::ng-deep mat-spinner circle{stroke:var(--color-white)!important}\n"] }]
|
|
87
|
+
}], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.ChangeDetectorRef }], propDecorators: { zIndex: [{
|
|
88
|
+
type: Input
|
|
89
|
+
}], scrollContainer: [{
|
|
90
|
+
type: Input
|
|
91
|
+
}], size: [{
|
|
92
|
+
type: Input
|
|
93
|
+
}], diameter: [{
|
|
94
|
+
type: Input
|
|
95
|
+
}], resize: [{
|
|
96
|
+
type: HostListener,
|
|
97
|
+
args: ['window:resize']
|
|
98
|
+
}] } });
|
|
99
|
+
|
|
100
|
+
class AdsProgressSpinnerModule {
|
|
101
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsProgressSpinnerModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
102
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.1.1", ngImport: i0, type: AdsProgressSpinnerModule, declarations: [AdsProgressSpinnerComponent], imports: [CommonModule, AdsIconModule, AdsGestureModule, MatProgressSpinnerModule], exports: [AdsProgressSpinnerComponent] }); }
|
|
103
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsProgressSpinnerModule, providers: [{ provide: Window, useValue: window }], imports: [CommonModule, AdsIconModule, AdsGestureModule, MatProgressSpinnerModule] }); }
|
|
104
|
+
}
|
|
105
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsProgressSpinnerModule, decorators: [{
|
|
106
|
+
type: NgModule,
|
|
107
|
+
args: [{
|
|
108
|
+
declarations: [AdsProgressSpinnerComponent],
|
|
109
|
+
imports: [CommonModule, AdsIconModule, AdsGestureModule, MatProgressSpinnerModule],
|
|
110
|
+
exports: [AdsProgressSpinnerComponent],
|
|
111
|
+
providers: [{ provide: Window, useValue: window }],
|
|
112
|
+
}]
|
|
113
|
+
}] });
|
|
114
|
+
|
|
115
|
+
/**
|
|
116
|
+
* Generated bundle index. Do not edit.
|
|
117
|
+
*/
|
|
118
|
+
|
|
119
|
+
export { AdsProgressSpinnerComponent, AdsProgressSpinnerModule, SpinnerSize };
|
|
120
|
+
//# sourceMappingURL=ascentgl-ads-ui-src-lib-components-progress-indicators-progress-spinner.mjs.map
|
package/fesm2022/ascentgl-ads-ui-src-lib-components-progress-indicators-progress-spinner.mjs.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ascentgl-ads-ui-src-lib-components-progress-indicators-progress-spinner.mjs","sources":["../../../../libs/ads-ui/src/lib/components/progress-indicators/progress-spinner/progress-spinner.component.ts","../../../../libs/ads-ui/src/lib/components/progress-indicators/progress-spinner/progress-spinner.component.html","../../../../libs/ads-ui/src/lib/components/progress-indicators/progress-spinner/progress-spinner.module.ts","../../../../libs/ads-ui/src/lib/components/progress-indicators/progress-spinner/ascentgl-ads-ui-src-lib-components-progress-indicators-progress-spinner.ts"],"sourcesContent":["import { ChangeDetectorRef, Component, ElementRef, HostListener, Input, OnInit } from '@angular/core';\nimport { DomHelper, GENERIC_COLLECTION } from '@ascentgl/ads-utils';\n\nexport enum SpinnerSize {\n xSmall = 'x-small',\n small = 'small',\n normal = 'normal',\n}\n\n@Component({\n selector: 'ads-progress-spinner',\n templateUrl: './progress-spinner.component.html',\n styleUrls: ['./progress-spinner.component.scss'],\n})\nexport class AdsProgressSpinnerComponent implements OnInit {\n /** set spinner z-index */\n @Input() zIndex = 1;\n\n /** set spinner scrollContainer. This is useful when the spinner is inside dialog window **/\n @Input() scrollContainer: HTMLElement | 'auto' | 'none' = 'none';\n\n /** set spinner size */\n @Input() size: SpinnerSize = SpinnerSize.normal;\n\n /** set spinner diameter (overrides \"size\") */\n @Input() diameter?: number;\n\n computedDiameter = 100;\n isSticky = false;\n computedStyles?: CSSStyleDeclaration;\n\n private readonly sizes = {\n [SpinnerSize.xSmall]: 50,\n [SpinnerSize.small]: 70,\n [SpinnerSize.normal]: 100,\n };\n\n constructor(\n protected ref: ElementRef,\n private cdr: ChangeDetectorRef,\n ) {}\n\n /** @ignore */\n ngOnInit(): void {\n let scrollContainer: HTMLElement | Window | 'auto' | 'none' = this.scrollContainer;\n\n if (this.scrollContainer == 'auto') {\n scrollContainer = DomHelper.getScrollableParent(this.ref.nativeElement);\n }\n\n /**\n * if scroll container is HTMLElement, make spinner stick to it's dimensions\n */\n if (scrollContainer instanceof HTMLElement) {\n this.scrollContainer = scrollContainer;\n this.isSticky = true;\n this.computedStyles = getComputedStyle(scrollContainer);\n }\n\n if (this.diameter) {\n this.computedDiameter = this.diameter;\n } else {\n this.computedDiameter = this.sizes[this.size];\n }\n }\n\n /** @ignore */\n getOverlayStyles(): GENERIC_COLLECTION {\n const container = <HTMLElement>this.scrollContainer;\n\n const computedStyles: GENERIC_COLLECTION = this.computedStyles ?? {};\n\n /**\n * subtract .5px from width to avoid \"accidental\" appearance of scrollbars on resize\n */\n return {\n zIndex: this.zIndex,\n height: container.clientHeight + 'px',\n width: container.clientWidth - 0.5 + 'px',\n top: computedStyles.paddingTop ? '-' + computedStyles.paddingTop : 0,\n left: computedStyles.paddingLeft ? '-' + computedStyles.paddingLeft : 0,\n };\n }\n\n /**\n * @ignore\n * required for proper change detection\n * NOTE: REALLY REQUIRED\n */\n @HostListener('window:resize') resize(): void {\n /**\n * additional change detection allows to avoid overlay sizing issues when window is being resized\n */\n this.cdr.detectChanges();\n }\n}\n","@if (isSticky) {\n <div class=\"spinner-container\">\n <div class=\"spinner-overlay\" [ngStyle]=\"getOverlayStyles()\">\n <mat-spinner [diameter]=\"computedDiameter\" aria-label=\"progress spinner\"></mat-spinner>\n </div>\n </div>\n} @else {\n <div class=\"spinner-overlay window\" [ngStyle]=\"{ zIndex }\">\n <mat-spinner [diameter]=\"computedDiameter\" aria-label=\"progress spinner\"></mat-spinner>\n </div>\n}\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { AdsIconModule } from '@ascentgl/ads-icons';\nimport { AdsGestureModule } from '@ascentgl/ads-utils';\nimport { AdsProgressSpinnerComponent } from './progress-spinner.component';\nimport { MatProgressSpinnerModule } from '@angular/material/progress-spinner';\n\n@NgModule({\n declarations: [AdsProgressSpinnerComponent],\n imports: [CommonModule, AdsIconModule, AdsGestureModule, MatProgressSpinnerModule],\n exports: [AdsProgressSpinnerComponent],\n providers: [{ provide: Window, useValue: window }],\n})\nexport class AdsProgressSpinnerModule {}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,136 @@
|
|
|
1
|
+
import * as i0 from '@angular/core';
|
|
2
|
+
import { Component, ChangeDetectionStrategy, ViewChild, ViewChildren, Input, NgModule } from '@angular/core';
|
|
3
|
+
import * as i1 from '@ascentgl/ads-icons';
|
|
4
|
+
import { AdsIconModule } from '@ascentgl/ads-icons';
|
|
5
|
+
import { adsIconCheckCircle } from '@ascentgl/ads-icons/icons';
|
|
6
|
+
import * as i2 from '@angular/common';
|
|
7
|
+
import { CommonModule } from '@angular/common';
|
|
8
|
+
import * as i3 from '@ascentgl/ads-utils';
|
|
9
|
+
import { AdsGestureModule, ADS_GESTURE_DEFAULT_OPTIONS, AdsGestureDirection } from '@ascentgl/ads-utils';
|
|
10
|
+
|
|
11
|
+
class AdsProgressStepperComponent {
|
|
12
|
+
constructor(renderer, registry, window) {
|
|
13
|
+
this.renderer = renderer;
|
|
14
|
+
this.registry = registry;
|
|
15
|
+
this.window = window;
|
|
16
|
+
/** Whether the viewport is mobile */
|
|
17
|
+
this.isMobile = false;
|
|
18
|
+
/** Padding of parent container */
|
|
19
|
+
this.containerPadding = 24;
|
|
20
|
+
/** @ignore */
|
|
21
|
+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
22
|
+
this.styles = {};
|
|
23
|
+
/** @ignore */
|
|
24
|
+
this.focusedIndex = 0;
|
|
25
|
+
this.registry.register(adsIconCheckCircle);
|
|
26
|
+
}
|
|
27
|
+
/** @ignore */
|
|
28
|
+
ngAfterViewInit() {
|
|
29
|
+
if (this.isMobile) {
|
|
30
|
+
this.focusedIndex = this.getLastCompletedStepIndex(this.steps);
|
|
31
|
+
this.centerCurrentStep(this.focusedIndex);
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
/** @ignore */
|
|
35
|
+
ngOnChanges(changes) {
|
|
36
|
+
if (changes?.isMobile && !changes.isMobile.firstChange) {
|
|
37
|
+
this.focusedIndex = this.getLastCompletedStepIndex(this.steps);
|
|
38
|
+
this.centerCurrentStep(this.focusedIndex);
|
|
39
|
+
}
|
|
40
|
+
if (changes?.steps && changes.steps?.currentValue && !changes.steps?.firstChange) {
|
|
41
|
+
if (this.isMobile) {
|
|
42
|
+
this.focusedIndex = this.getLastCompletedStepIndex(this.steps);
|
|
43
|
+
this.centerCurrentStep(this.focusedIndex);
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
/** @ignore */
|
|
48
|
+
ngOnInit() {
|
|
49
|
+
this.styles = {
|
|
50
|
+
step: {
|
|
51
|
+
'grid-template-columns': `repeat(${this.steps.length}, minmax(150px, 1fr))`,
|
|
52
|
+
},
|
|
53
|
+
};
|
|
54
|
+
}
|
|
55
|
+
/** @ignore */
|
|
56
|
+
onSwipeLeft() {
|
|
57
|
+
if (this.focusedIndex === this.steps.length - this.calculateStepsPerViewport() || !this.isMobile) {
|
|
58
|
+
return;
|
|
59
|
+
}
|
|
60
|
+
this.focusedIndex++;
|
|
61
|
+
this.centerCurrentStep(this.focusedIndex);
|
|
62
|
+
}
|
|
63
|
+
/** @ignore */
|
|
64
|
+
onSwipeRight() {
|
|
65
|
+
if (this.focusedIndex === 0 || !this.isMobile) {
|
|
66
|
+
return;
|
|
67
|
+
}
|
|
68
|
+
this.focusedIndex--;
|
|
69
|
+
this.centerCurrentStep(this.focusedIndex);
|
|
70
|
+
}
|
|
71
|
+
/** @ignore */
|
|
72
|
+
centerCurrentStep(focusedIndex) {
|
|
73
|
+
if (focusedIndex === 0) {
|
|
74
|
+
this.renderer.setStyle(this.stepper.nativeElement, 'margin-left', '0px');
|
|
75
|
+
return;
|
|
76
|
+
}
|
|
77
|
+
const stepWidth = this.stepElements.first.nativeElement.getBoundingClientRect().width;
|
|
78
|
+
const offset = focusedIndex * stepWidth;
|
|
79
|
+
this.renderer.setStyle(this.stepper.nativeElement, 'margin-left', `-${offset}px`);
|
|
80
|
+
}
|
|
81
|
+
/** @ignore */
|
|
82
|
+
getLastCompletedStepIndex(steps) {
|
|
83
|
+
return steps.map((step) => step.completed).lastIndexOf(true);
|
|
84
|
+
}
|
|
85
|
+
/** @ignore */
|
|
86
|
+
calculateStepsPerViewport() {
|
|
87
|
+
const stepWidth = this.stepElements.first.nativeElement.getBoundingClientRect().width;
|
|
88
|
+
return Math.floor((this.window.innerWidth - this.containerPadding) / stepWidth);
|
|
89
|
+
}
|
|
90
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsProgressStepperComponent, deps: [{ token: i0.Renderer2 }, { token: i1.AdsIconRegistry }, { token: Window }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
91
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.1.1", type: AdsProgressStepperComponent, selector: "ads-progress-stepper", inputs: { isMobile: "isMobile", containerPadding: "containerPadding", steps: "steps" }, viewQueries: [{ propertyName: "stepper", first: true, predicate: ["stepper"], descendants: true }, { propertyName: "stepElements", predicate: ["stepElements"], descendants: true }], usesOnChanges: true, ngImport: i0, template: "<div\n #stepper\n adsGesture\n class=\"progress-stepper\"\n [ngStyle]=\"styles?.step\"\n [draggable]=\"false\"\n (gestureleft)=\"onSwipeLeft()\"\n (gestureright)=\"onSwipeRight()\"\n>\n <div\n #stepElements\n class=\"progress-stepper-step\"\n [draggable]=\"false\"\n *ngFor=\"let step of steps; let index = index; let first = first; let last = last\"\n >\n <div class=\"progress-bar\" [class.first]=\"first\" [class.last]=\"last\">\n <div\n class=\"progress-bar-highlight\"\n [class.completed]=\"step.completed\"\n [class.roundedLeft]=\"first || (!steps[index - 1].completed && step.completed)\"\n [class.roundedRight]=\"\n last || (!steps[index + 1].completed && step.completed) || (first && !steps[index + 1].completed)\n \"\n ></div>\n </div>\n <div class=\"progress-step-info\" [class.first]=\"first\" [class.last]=\"last\">\n <div class=\"progress-step-info-container\">\n <div class=\"title\">\n <div class=\"title-text\">{{ step.title }}</div>\n <div class=\"title-completed-icon\" *ngIf=\"step.completed\">\n <ads-icon name=\"check_circle\" size=\"xxs\" color=\"#5756B3\"></ads-icon>\n </div>\n </div>\n <div *ngIf=\"step?.date\" class=\"date\">{{ step?.date }}</div>\n </div>\n </div>\n </div>\n</div>\n", styles: [":host{box-sizing:border-box}.progress-stepper{display:grid;max-width:100%;-webkit-user-select:none;user-select:none;transition:margin .3s ease-in-out}.progress-stepper-step{display:flex;flex-direction:column;flex:1}.progress-step-info{display:flex;flex-direction:column;align-items:center;padding:8px}.progress-step-info.first{align-items:flex-start}.progress-step-info.last{align-items:flex-end}.progress-stepper-step:last-of-type .title,.progress-stepper-step:last-of-type .date{text-align:right}.title{color:var(--color-medium);font-size:13px;font-weight:500;display:flex;height:24px;align-items:center}.title-text{margin-right:6px;line-height:24px;white-space:nowrap}.title-completed-icon{line-height:24px;display:flex;align-items:center}.date{color:var(--color-black);font-size:12px;line-height:14px;white-space:nowrap}.progress-bar{width:100%;background-color:var(--color-medium-50);height:12px}.progress-bar.first,.progress-bar.first .progress-bar-highlight{border-top-left-radius:12px;border-bottom-left-radius:12px}.progress-bar.last,.progress-bar.last .progress-bar-highlight{border-top-right-radius:12px;border-bottom-right-radius:12px}.progress-bar-highlight{height:12px;width:100%}.progress-bar-highlight.completed{background-color:var(--color-green)}.progress-bar-highlight.roundedLeft{border-top-left-radius:12px;border-bottom-left-radius:12px}.progress-bar-highlight.roundedRight{border-top-right-radius:12px;border-bottom-right-radius:12px}\n"], dependencies: [{ kind: "directive", type: i2.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i2.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "component", type: i1.AdsIconComponent, selector: "ads-icon", inputs: ["size", "name", "color", "theme", "stroke"] }, { kind: "directive", type: i3.AdsGestureDirective, selector: "[adsGesture]", outputs: ["gesturedown", "gestureleft", "gestureright", "gestureup"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
92
|
+
}
|
|
93
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsProgressStepperComponent, decorators: [{
|
|
94
|
+
type: Component,
|
|
95
|
+
args: [{ selector: 'ads-progress-stepper', changeDetection: ChangeDetectionStrategy.OnPush, template: "<div\n #stepper\n adsGesture\n class=\"progress-stepper\"\n [ngStyle]=\"styles?.step\"\n [draggable]=\"false\"\n (gestureleft)=\"onSwipeLeft()\"\n (gestureright)=\"onSwipeRight()\"\n>\n <div\n #stepElements\n class=\"progress-stepper-step\"\n [draggable]=\"false\"\n *ngFor=\"let step of steps; let index = index; let first = first; let last = last\"\n >\n <div class=\"progress-bar\" [class.first]=\"first\" [class.last]=\"last\">\n <div\n class=\"progress-bar-highlight\"\n [class.completed]=\"step.completed\"\n [class.roundedLeft]=\"first || (!steps[index - 1].completed && step.completed)\"\n [class.roundedRight]=\"\n last || (!steps[index + 1].completed && step.completed) || (first && !steps[index + 1].completed)\n \"\n ></div>\n </div>\n <div class=\"progress-step-info\" [class.first]=\"first\" [class.last]=\"last\">\n <div class=\"progress-step-info-container\">\n <div class=\"title\">\n <div class=\"title-text\">{{ step.title }}</div>\n <div class=\"title-completed-icon\" *ngIf=\"step.completed\">\n <ads-icon name=\"check_circle\" size=\"xxs\" color=\"#5756B3\"></ads-icon>\n </div>\n </div>\n <div *ngIf=\"step?.date\" class=\"date\">{{ step?.date }}</div>\n </div>\n </div>\n </div>\n</div>\n", styles: [":host{box-sizing:border-box}.progress-stepper{display:grid;max-width:100%;-webkit-user-select:none;user-select:none;transition:margin .3s ease-in-out}.progress-stepper-step{display:flex;flex-direction:column;flex:1}.progress-step-info{display:flex;flex-direction:column;align-items:center;padding:8px}.progress-step-info.first{align-items:flex-start}.progress-step-info.last{align-items:flex-end}.progress-stepper-step:last-of-type .title,.progress-stepper-step:last-of-type .date{text-align:right}.title{color:var(--color-medium);font-size:13px;font-weight:500;display:flex;height:24px;align-items:center}.title-text{margin-right:6px;line-height:24px;white-space:nowrap}.title-completed-icon{line-height:24px;display:flex;align-items:center}.date{color:var(--color-black);font-size:12px;line-height:14px;white-space:nowrap}.progress-bar{width:100%;background-color:var(--color-medium-50);height:12px}.progress-bar.first,.progress-bar.first .progress-bar-highlight{border-top-left-radius:12px;border-bottom-left-radius:12px}.progress-bar.last,.progress-bar.last .progress-bar-highlight{border-top-right-radius:12px;border-bottom-right-radius:12px}.progress-bar-highlight{height:12px;width:100%}.progress-bar-highlight.completed{background-color:var(--color-green)}.progress-bar-highlight.roundedLeft{border-top-left-radius:12px;border-bottom-left-radius:12px}.progress-bar-highlight.roundedRight{border-top-right-radius:12px;border-bottom-right-radius:12px}\n"] }]
|
|
96
|
+
}], ctorParameters: () => [{ type: i0.Renderer2 }, { type: i1.AdsIconRegistry }, { type: Window }], propDecorators: { stepper: [{
|
|
97
|
+
type: ViewChild,
|
|
98
|
+
args: ['stepper']
|
|
99
|
+
}], stepElements: [{
|
|
100
|
+
type: ViewChildren,
|
|
101
|
+
args: ['stepElements']
|
|
102
|
+
}], isMobile: [{
|
|
103
|
+
type: Input
|
|
104
|
+
}], containerPadding: [{
|
|
105
|
+
type: Input
|
|
106
|
+
}], steps: [{
|
|
107
|
+
type: Input
|
|
108
|
+
}] } });
|
|
109
|
+
|
|
110
|
+
class AdsProgressStepperModule {
|
|
111
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsProgressStepperModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
112
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.1.1", ngImport: i0, type: AdsProgressStepperModule, declarations: [AdsProgressStepperComponent], imports: [CommonModule, AdsIconModule, AdsGestureModule], exports: [AdsProgressStepperComponent] }); }
|
|
113
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsProgressStepperModule, providers: [
|
|
114
|
+
{ provide: ADS_GESTURE_DEFAULT_OPTIONS, useValue: { direction: AdsGestureDirection.DIRECTION_HORIZONTAL } },
|
|
115
|
+
{ provide: Window, useValue: window },
|
|
116
|
+
], imports: [CommonModule, AdsIconModule, AdsGestureModule] }); }
|
|
117
|
+
}
|
|
118
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsProgressStepperModule, decorators: [{
|
|
119
|
+
type: NgModule,
|
|
120
|
+
args: [{
|
|
121
|
+
declarations: [AdsProgressStepperComponent],
|
|
122
|
+
imports: [CommonModule, AdsIconModule, AdsGestureModule],
|
|
123
|
+
exports: [AdsProgressStepperComponent],
|
|
124
|
+
providers: [
|
|
125
|
+
{ provide: ADS_GESTURE_DEFAULT_OPTIONS, useValue: { direction: AdsGestureDirection.DIRECTION_HORIZONTAL } },
|
|
126
|
+
{ provide: Window, useValue: window },
|
|
127
|
+
],
|
|
128
|
+
}]
|
|
129
|
+
}] });
|
|
130
|
+
|
|
131
|
+
/**
|
|
132
|
+
* Generated bundle index. Do not edit.
|
|
133
|
+
*/
|
|
134
|
+
|
|
135
|
+
export { AdsProgressStepperComponent, AdsProgressStepperModule };
|
|
136
|
+
//# sourceMappingURL=ascentgl-ads-ui-src-lib-components-progress-stepper.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ascentgl-ads-ui-src-lib-components-progress-stepper.mjs","sources":["../../../../libs/ads-ui/src/lib/components/progress-stepper/progress-stepper.component.ts","../../../../libs/ads-ui/src/lib/components/progress-stepper/progress-stepper.component.html","../../../../libs/ads-ui/src/lib/components/progress-stepper/progress-stepper.module.ts","../../../../libs/ads-ui/src/lib/components/progress-stepper/ascentgl-ads-ui-src-lib-components-progress-stepper.ts"],"sourcesContent":["import {\n Component,\n ChangeDetectionStrategy,\n Input,\n OnInit,\n ViewChildren,\n QueryList,\n ElementRef,\n AfterViewInit,\n Renderer2,\n ViewChild,\n SimpleChanges,\n OnChanges,\n} from '@angular/core';\nimport { AdsIconRegistry } from '@ascentgl/ads-icons';\nimport { adsIconCheckCircle } from '@ascentgl/ads-icons/icons';\nimport { ProgressStep } from './progress-step.types';\n\n@Component({\n selector: 'ads-progress-stepper',\n templateUrl: './progress-stepper.component.html',\n styleUrls: ['./progress-stepper.component.scss'],\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class AdsProgressStepperComponent implements AfterViewInit, OnChanges, OnInit {\n constructor(\n private renderer: Renderer2,\n private registry: AdsIconRegistry,\n private window: Window,\n ) {\n this.registry.register(adsIconCheckCircle);\n }\n\n /** @ignore */\n @ViewChild('stepper') stepper!: ElementRef;\n\n /** @ignore */\n @ViewChildren('stepElements') stepElements!: QueryList<ElementRef>;\n\n /** Whether the viewport is mobile */\n @Input() isMobile = false;\n\n /** Padding of parent container */\n @Input() containerPadding = 24;\n\n /** Steps to display */\n @Input() steps!: ProgressStep[];\n\n /** @ignore */\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n public styles: any = {};\n\n /** @ignore */\n private focusedIndex = 0;\n\n /** @ignore */\n ngAfterViewInit() {\n if (this.isMobile) {\n this.focusedIndex = this.getLastCompletedStepIndex(this.steps);\n this.centerCurrentStep(this.focusedIndex);\n }\n }\n\n /** @ignore */\n ngOnChanges(changes: SimpleChanges) {\n if (changes?.isMobile && !changes.isMobile.firstChange) {\n this.focusedIndex = this.getLastCompletedStepIndex(this.steps);\n this.centerCurrentStep(this.focusedIndex);\n }\n\n if (changes?.steps && changes.steps?.currentValue && !changes.steps?.firstChange) {\n if (this.isMobile) {\n this.focusedIndex = this.getLastCompletedStepIndex(this.steps);\n this.centerCurrentStep(this.focusedIndex);\n }\n }\n }\n\n /** @ignore */\n ngOnInit() {\n this.styles = {\n step: {\n 'grid-template-columns': `repeat(${this.steps.length}, minmax(150px, 1fr))`,\n },\n };\n }\n\n /** @ignore */\n public onSwipeLeft(): void {\n if (this.focusedIndex === this.steps.length - this.calculateStepsPerViewport() || !this.isMobile) {\n return;\n }\n\n this.focusedIndex++;\n this.centerCurrentStep(this.focusedIndex);\n }\n\n /** @ignore */\n public onSwipeRight(): void {\n if (this.focusedIndex === 0 || !this.isMobile) {\n return;\n }\n\n this.focusedIndex--;\n this.centerCurrentStep(this.focusedIndex);\n }\n\n /** @ignore */\n private centerCurrentStep(focusedIndex: number): void {\n if (focusedIndex === 0) {\n this.renderer.setStyle(this.stepper.nativeElement, 'margin-left', '0px');\n return;\n }\n\n const stepWidth = this.stepElements.first.nativeElement.getBoundingClientRect().width;\n const offset = focusedIndex * stepWidth;\n this.renderer.setStyle(this.stepper.nativeElement, 'margin-left', `-${offset}px`);\n }\n\n /** @ignore */\n private getLastCompletedStepIndex(steps: ProgressStep[]): number {\n return steps.map((step) => step.completed).lastIndexOf(true);\n }\n\n /** @ignore */\n private calculateStepsPerViewport(): number {\n const stepWidth = this.stepElements.first.nativeElement.getBoundingClientRect().width;\n return Math.floor((this.window.innerWidth - this.containerPadding) / stepWidth);\n }\n}\n","<div\n #stepper\n adsGesture\n class=\"progress-stepper\"\n [ngStyle]=\"styles?.step\"\n [draggable]=\"false\"\n (gestureleft)=\"onSwipeLeft()\"\n (gestureright)=\"onSwipeRight()\"\n>\n <div\n #stepElements\n class=\"progress-stepper-step\"\n [draggable]=\"false\"\n *ngFor=\"let step of steps; let index = index; let first = first; let last = last\"\n >\n <div class=\"progress-bar\" [class.first]=\"first\" [class.last]=\"last\">\n <div\n class=\"progress-bar-highlight\"\n [class.completed]=\"step.completed\"\n [class.roundedLeft]=\"first || (!steps[index - 1].completed && step.completed)\"\n [class.roundedRight]=\"\n last || (!steps[index + 1].completed && step.completed) || (first && !steps[index + 1].completed)\n \"\n ></div>\n </div>\n <div class=\"progress-step-info\" [class.first]=\"first\" [class.last]=\"last\">\n <div class=\"progress-step-info-container\">\n <div class=\"title\">\n <div class=\"title-text\">{{ step.title }}</div>\n <div class=\"title-completed-icon\" *ngIf=\"step.completed\">\n <ads-icon name=\"check_circle\" size=\"xxs\" color=\"#5756B3\"></ads-icon>\n </div>\n </div>\n <div *ngIf=\"step?.date\" class=\"date\">{{ step?.date }}</div>\n </div>\n </div>\n </div>\n</div>\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { AdsProgressStepperComponent } from './progress-stepper.component';\nimport { AdsIconModule } from '@ascentgl/ads-icons';\nimport { AdsGestureDirection, AdsGestureModule, ADS_GESTURE_DEFAULT_OPTIONS } from '@ascentgl/ads-utils';\n\n@NgModule({\n declarations: [AdsProgressStepperComponent],\n imports: [CommonModule, AdsIconModule, AdsGestureModule],\n exports: [AdsProgressStepperComponent],\n providers: [\n { provide: ADS_GESTURE_DEFAULT_OPTIONS, useValue: { direction: AdsGestureDirection.DIRECTION_HORIZONTAL } },\n { provide: Window, useValue: window },\n ],\n})\nexport class AdsProgressStepperModule {}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
import * as i0 from '@angular/core';
|
|
2
|
+
import { Component, Input, NgModule } from '@angular/core';
|
|
3
|
+
import * as i1 from '@ascentgl/ads-icons';
|
|
4
|
+
import { AdsIconModule } from '@ascentgl/ads-icons';
|
|
5
|
+
import { adsIconStar, adsIconStar25, adsIconStar50, adsIconStar75, adsIconStarFull } from '@ascentgl/ads-icons/icons';
|
|
6
|
+
import * as i2 from '@angular/common';
|
|
7
|
+
import { CommonModule } from '@angular/common';
|
|
8
|
+
|
|
9
|
+
class AdsRatingComponent {
|
|
10
|
+
constructor(registry) {
|
|
11
|
+
this.registry = registry;
|
|
12
|
+
/** The rating value */
|
|
13
|
+
this.rating = 0;
|
|
14
|
+
/** The total number of possible starts */
|
|
15
|
+
this.scale = 5;
|
|
16
|
+
/** The color theme for the icons */
|
|
17
|
+
this.theme = 'primary';
|
|
18
|
+
this.registry.register([adsIconStar, adsIconStar25, adsIconStar50, adsIconStar75, adsIconStarFull]);
|
|
19
|
+
}
|
|
20
|
+
/** @ignore */
|
|
21
|
+
ngOnChanges(changes) {
|
|
22
|
+
if (changes?.rating || changes?.scale) {
|
|
23
|
+
if (this.rating > this.scale) {
|
|
24
|
+
console.warn('AdsRatingComponent: Rating value is greater than the scale');
|
|
25
|
+
}
|
|
26
|
+
this.stars = this.getRatingIcons(this.rating, this.scale);
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
/** @ignore */
|
|
30
|
+
getRatingIcons(rating, scale) {
|
|
31
|
+
const icons = [];
|
|
32
|
+
const full = Math.floor(rating);
|
|
33
|
+
const partial = rating - Math.floor(rating);
|
|
34
|
+
if (partial) {
|
|
35
|
+
for (let i = 0; i < full; i++) {
|
|
36
|
+
icons.push('star_full');
|
|
37
|
+
}
|
|
38
|
+
if (partial >= 0.75) {
|
|
39
|
+
icons.push('star_75');
|
|
40
|
+
}
|
|
41
|
+
else if (partial >= 0.5) {
|
|
42
|
+
icons.push('star_50');
|
|
43
|
+
}
|
|
44
|
+
else if (partial >= 0.25) {
|
|
45
|
+
icons.push('star_25');
|
|
46
|
+
}
|
|
47
|
+
while (icons.length < scale) {
|
|
48
|
+
icons.push('star');
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
else {
|
|
52
|
+
for (let i = 0; i < scale; i++) {
|
|
53
|
+
icons.push(i < rating ? 'star_full' : 'star');
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
return icons;
|
|
57
|
+
}
|
|
58
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsRatingComponent, deps: [{ token: i1.AdsIconRegistry }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
59
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.1.1", type: AdsRatingComponent, selector: "ads-rating", inputs: { rating: "rating", scale: "scale", theme: "theme" }, usesOnChanges: true, ngImport: i0, template: "<div class=\"rating\">\n <ads-icon *ngFor=\"let star of stars\" [name]=\"star\" [theme]=\"theme\" size=\"sm\"></ads-icon>\n</div>\n", styles: [".rating{display:flex;gap:.5rem}\n"], dependencies: [{ kind: "directive", type: i2.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "component", type: i1.AdsIconComponent, selector: "ads-icon", inputs: ["size", "name", "color", "theme", "stroke"] }] }); }
|
|
60
|
+
}
|
|
61
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsRatingComponent, decorators: [{
|
|
62
|
+
type: Component,
|
|
63
|
+
args: [{ selector: 'ads-rating', template: "<div class=\"rating\">\n <ads-icon *ngFor=\"let star of stars\" [name]=\"star\" [theme]=\"theme\" size=\"sm\"></ads-icon>\n</div>\n", styles: [".rating{display:flex;gap:.5rem}\n"] }]
|
|
64
|
+
}], ctorParameters: () => [{ type: i1.AdsIconRegistry }], propDecorators: { rating: [{
|
|
65
|
+
type: Input
|
|
66
|
+
}], scale: [{
|
|
67
|
+
type: Input
|
|
68
|
+
}], theme: [{
|
|
69
|
+
type: Input
|
|
70
|
+
}] } });
|
|
71
|
+
|
|
72
|
+
class AdsRatingModule {
|
|
73
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsRatingModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
74
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.1.1", ngImport: i0, type: AdsRatingModule, declarations: [AdsRatingComponent], imports: [CommonModule, AdsIconModule], exports: [AdsRatingComponent] }); }
|
|
75
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsRatingModule, imports: [CommonModule, AdsIconModule] }); }
|
|
76
|
+
}
|
|
77
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsRatingModule, decorators: [{
|
|
78
|
+
type: NgModule,
|
|
79
|
+
args: [{
|
|
80
|
+
declarations: [AdsRatingComponent],
|
|
81
|
+
imports: [CommonModule, AdsIconModule],
|
|
82
|
+
exports: [AdsRatingComponent],
|
|
83
|
+
}]
|
|
84
|
+
}] });
|
|
85
|
+
|
|
86
|
+
/**
|
|
87
|
+
* Generated bundle index. Do not edit.
|
|
88
|
+
*/
|
|
89
|
+
|
|
90
|
+
export { AdsRatingComponent, AdsRatingModule };
|
|
91
|
+
//# sourceMappingURL=ascentgl-ads-ui-src-lib-components-rating.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ascentgl-ads-ui-src-lib-components-rating.mjs","sources":["../../../../libs/ads-ui/src/lib/components/rating/rating.component.ts","../../../../libs/ads-ui/src/lib/components/rating/rating.component.html","../../../../libs/ads-ui/src/lib/components/rating/rating.module.ts","../../../../libs/ads-ui/src/lib/components/rating/ascentgl-ads-ui-src-lib-components-rating.ts"],"sourcesContent":["import { Component, Input, OnChanges, SimpleChanges } from '@angular/core';\nimport { AdsIconRegistry } from '@ascentgl/ads-icons';\nimport {\n adsIcon,\n adsIconStar,\n adsIconStar25,\n adsIconStar50,\n adsIconStar75,\n adsIconStarFull,\n} from '@ascentgl/ads-icons/icons';\n\n@Component({\n selector: 'ads-rating',\n templateUrl: './rating.component.html',\n styleUrls: ['./rating.component.scss'],\n})\nexport class AdsRatingComponent implements OnChanges {\n constructor(private registry: AdsIconRegistry) {\n this.registry.register([adsIconStar, adsIconStar25, adsIconStar50, adsIconStar75, adsIconStarFull]);\n }\n\n /** The rating value */\n @Input() rating = 0;\n\n /** The total number of possible starts */\n @Input() scale = 5;\n\n /** The color theme for the icons */\n @Input() theme: 'iconPrimary' | 'primary' | 'secondary' | 'success' | 'warn' = 'primary';\n\n /** @ignore */\n public stars!: adsIcon[];\n\n /** @ignore */\n ngOnChanges(changes: SimpleChanges): void {\n if (changes?.rating || changes?.scale) {\n if (this.rating > this.scale) {\n console.warn('AdsRatingComponent: Rating value is greater than the scale');\n }\n\n this.stars = this.getRatingIcons(this.rating, this.scale);\n }\n }\n\n /** @ignore */\n private getRatingIcons(rating: number, scale: number): adsIcon[] {\n const icons: adsIcon[] = [];\n const full = Math.floor(rating);\n const partial = rating - Math.floor(rating);\n\n if (partial) {\n for (let i = 0; i < full; i++) {\n icons.push('star_full');\n }\n\n if (partial >= 0.75) {\n icons.push('star_75');\n } else if (partial >= 0.5) {\n icons.push('star_50');\n } else if (partial >= 0.25) {\n icons.push('star_25');\n }\n\n while (icons.length < scale) {\n icons.push('star');\n }\n } else {\n for (let i = 0; i < scale; i++) {\n icons.push(i < rating ? 'star_full' : 'star');\n }\n }\n\n return icons;\n }\n}\n","<div class=\"rating\">\n <ads-icon *ngFor=\"let star of stars\" [name]=\"star\" [theme]=\"theme\" size=\"sm\"></ads-icon>\n</div>\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { AdsRatingComponent } from './rating.component';\nimport { AdsIconModule } from '@ascentgl/ads-icons';\n\n@NgModule({\n declarations: [AdsRatingComponent],\n imports: [CommonModule, AdsIconModule],\n exports: [AdsRatingComponent],\n})\nexport class AdsRatingModule {}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import * as i0 from '@angular/core';
|
|
2
|
+
import { Component, Input, NgModule } from '@angular/core';
|
|
3
|
+
import { CommonModule } from '@angular/common';
|
|
4
|
+
|
|
5
|
+
class ShellLayoutComponent {
|
|
6
|
+
constructor() {
|
|
7
|
+
/**
|
|
8
|
+
* Whether the navigation is collapsed
|
|
9
|
+
*/
|
|
10
|
+
this.isCollapsed = false;
|
|
11
|
+
/**
|
|
12
|
+
* Whether the viewport is mobile
|
|
13
|
+
*/
|
|
14
|
+
this.isMobile = false;
|
|
15
|
+
}
|
|
16
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: ShellLayoutComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
17
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.1.1", type: ShellLayoutComponent, selector: "ads-shell-layout", inputs: { isCollapsed: "isCollapsed", isMobile: "isMobile" }, ngImport: i0, template: "<!-- <div class=\"shell\" [class.mobile]=\"isMobile\" [class.collapsed]=\"isCollapsed\">\n <div class=\"shell-container\">\n <ng-content select=\"[navigation]\"></ng-content>\n <div class=\"shell-header\">\n <ng-content select=\"[header]\"></ng-content> \n <main class=\"main-content\">\n <ng-content></ng-content>\n </main>\n <ng-content select=\"[widgetbar]\"></ng-content>\n </div>\n </div>\n <ng-content select=\"[footer]\"></ng-content>\n</div> -->\n\n<div class=\"shell\" [class.mobile]=\"isMobile\" [class.collapsed]=\"isCollapsed\">\n <div class=\"container\">\n <ng-content select=\"[header]\"></ng-content>\n <main class=\"main-content\">\n <ng-content></ng-content>\n </main>\n <ng-content select=\"[widgetbar]\"></ng-content>\n </div>\n <ng-content select=\"[footer]\"></ng-content>\n</div>\n", styles: [".shell{display:flex;overflow:hidden;min-width:100vw;max-width:100vw;min-height:100vh;flex-direction:column}.shell-header{display:flex;width:100%;max-width:calc(100% - 100px);flex:1;flex-direction:column}.main-content{background-color:#fafafa}.shell.collapsed .shell-header{max-width:calc(100% - 57px)}.shell.mobile .shell-header{max-width:100%}\n"] }); }
|
|
18
|
+
}
|
|
19
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: ShellLayoutComponent, decorators: [{
|
|
20
|
+
type: Component,
|
|
21
|
+
args: [{ selector: 'ads-shell-layout', template: "<!-- <div class=\"shell\" [class.mobile]=\"isMobile\" [class.collapsed]=\"isCollapsed\">\n <div class=\"shell-container\">\n <ng-content select=\"[navigation]\"></ng-content>\n <div class=\"shell-header\">\n <ng-content select=\"[header]\"></ng-content> \n <main class=\"main-content\">\n <ng-content></ng-content>\n </main>\n <ng-content select=\"[widgetbar]\"></ng-content>\n </div>\n </div>\n <ng-content select=\"[footer]\"></ng-content>\n</div> -->\n\n<div class=\"shell\" [class.mobile]=\"isMobile\" [class.collapsed]=\"isCollapsed\">\n <div class=\"container\">\n <ng-content select=\"[header]\"></ng-content>\n <main class=\"main-content\">\n <ng-content></ng-content>\n </main>\n <ng-content select=\"[widgetbar]\"></ng-content>\n </div>\n <ng-content select=\"[footer]\"></ng-content>\n</div>\n", styles: [".shell{display:flex;overflow:hidden;min-width:100vw;max-width:100vw;min-height:100vh;flex-direction:column}.shell-header{display:flex;width:100%;max-width:calc(100% - 100px);flex:1;flex-direction:column}.main-content{background-color:#fafafa}.shell.collapsed .shell-header{max-width:calc(100% - 57px)}.shell.mobile .shell-header{max-width:100%}\n"] }]
|
|
22
|
+
}], propDecorators: { isCollapsed: [{
|
|
23
|
+
type: Input
|
|
24
|
+
}], isMobile: [{
|
|
25
|
+
type: Input
|
|
26
|
+
}] } });
|
|
27
|
+
|
|
28
|
+
class AdsShellLayoutModule {
|
|
29
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsShellLayoutModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
30
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.1.1", ngImport: i0, type: AdsShellLayoutModule, declarations: [ShellLayoutComponent], imports: [CommonModule], exports: [ShellLayoutComponent] }); }
|
|
31
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsShellLayoutModule, imports: [CommonModule] }); }
|
|
32
|
+
}
|
|
33
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsShellLayoutModule, decorators: [{
|
|
34
|
+
type: NgModule,
|
|
35
|
+
args: [{
|
|
36
|
+
declarations: [ShellLayoutComponent],
|
|
37
|
+
exports: [ShellLayoutComponent],
|
|
38
|
+
imports: [CommonModule],
|
|
39
|
+
}]
|
|
40
|
+
}] });
|
|
41
|
+
|
|
42
|
+
/**
|
|
43
|
+
* Generated bundle index. Do not edit.
|
|
44
|
+
*/
|
|
45
|
+
|
|
46
|
+
export { AdsShellLayoutModule, ShellLayoutComponent };
|
|
47
|
+
//# sourceMappingURL=ascentgl-ads-ui-src-lib-components-shell-layout.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ascentgl-ads-ui-src-lib-components-shell-layout.mjs","sources":["../../../../libs/ads-ui/src/lib/components/shell-layout/shell-layout.component.ts","../../../../libs/ads-ui/src/lib/components/shell-layout/shell-layout.component.html","../../../../libs/ads-ui/src/lib/components/shell-layout/shell-layout.module.ts","../../../../libs/ads-ui/src/lib/components/shell-layout/ascentgl-ads-ui-src-lib-components-shell-layout.ts"],"sourcesContent":["import { Component, Input } from '@angular/core';\n\n@Component({\n selector: 'ads-shell-layout',\n templateUrl: './shell-layout.component.html',\n styleUrls: ['./shell-layout.component.scss'],\n})\nexport class ShellLayoutComponent {\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","<!-- <div class=\"shell\" [class.mobile]=\"isMobile\" [class.collapsed]=\"isCollapsed\">\n <div class=\"shell-container\">\n <ng-content select=\"[navigation]\"></ng-content>\n <div class=\"shell-header\">\n <ng-content select=\"[header]\"></ng-content> \n <main class=\"main-content\">\n <ng-content></ng-content>\n </main>\n <ng-content select=\"[widgetbar]\"></ng-content>\n </div>\n </div>\n <ng-content select=\"[footer]\"></ng-content>\n</div> -->\n\n<div class=\"shell\" [class.mobile]=\"isMobile\" [class.collapsed]=\"isCollapsed\">\n <div class=\"container\">\n <ng-content select=\"[header]\"></ng-content>\n <main class=\"main-content\">\n <ng-content></ng-content>\n </main>\n <ng-content select=\"[widgetbar]\"></ng-content>\n </div>\n <ng-content select=\"[footer]\"></ng-content>\n</div>\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { ShellLayoutComponent } from './shell-layout.component';\n\n@NgModule({\n declarations: [ShellLayoutComponent],\n exports: [ShellLayoutComponent],\n imports: [CommonModule],\n})\nexport class AdsShellLayoutModule {}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":";;;;MAOa,oBAAoB,CAAA;AALjC,IAAA,WAAA,GAAA;AAME;;AAEG;QACM,IAAW,CAAA,WAAA,GAAG,KAAK,CAAC;AAE7B;;AAEG;QACM,IAAQ,CAAA,QAAA,GAAG,KAAK,CAAC;AAC3B,KAAA;8GAVY,oBAAoB,EAAA,IAAA,EAAA,EAAA,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,sHCPjC,k2BAwBA,EAAA,MAAA,EAAA,CAAA,4VAAA,CAAA,EAAA,CAAA,CAAA,EAAA;;2FDjBa,oBAAoB,EAAA,UAAA,EAAA,CAAA;kBALhC,SAAS;+BACE,kBAAkB,EAAA,QAAA,EAAA,k2BAAA,EAAA,MAAA,EAAA,CAAA,4VAAA,CAAA,EAAA,CAAA;8BAQnB,WAAW,EAAA,CAAA;sBAAnB,KAAK;gBAKG,QAAQ,EAAA,CAAA;sBAAhB,KAAK;;;MEPK,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,EAJhB,YAAA,EAAA,CAAA,oBAAoB,CAEzB,EAAA,OAAA,EAAA,CAAA,YAAY,aADZ,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,oBAAoB,YAFrB,YAAY,CAAA,EAAA,CAAA,CAAA,EAAA;;2FAEX,oBAAoB,EAAA,UAAA,EAAA,CAAA;kBALhC,QAAQ;AAAC,YAAA,IAAA,EAAA,CAAA;oBACR,YAAY,EAAE,CAAC,oBAAoB,CAAC;oBACpC,OAAO,EAAE,CAAC,oBAAoB,CAAC;oBAC/B,OAAO,EAAE,CAAC,YAAY,CAAC;AACxB,iBAAA,CAAA;;;ACRD;;AAEG;;;;"}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import * as i0 from '@angular/core';
|
|
2
|
+
import { Component, Input, NgModule } from '@angular/core';
|
|
3
|
+
import { CommonModule } from '@angular/common';
|
|
4
|
+
|
|
5
|
+
class AdsSplashPageComponent {
|
|
6
|
+
constructor() {
|
|
7
|
+
this.text = 'Coming Soon';
|
|
8
|
+
}
|
|
9
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsSplashPageComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
10
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.1.1", type: AdsSplashPageComponent, selector: "ads-splash-page", inputs: { alt: "alt", imageSrc: "imageSrc", text: "text" }, ngImport: i0, template: "<div class=\"splash-page-container\">\n <img [src]=\"imageSrc\" [alt]=\"alt\" />\n <h1>{{ text }}</h1>\n</div>\n", styles: [":host{display:flex;width:100%;height:100%;min-height:172px;flex-direction:column;align-items:center;justify-content:center}.splash-page-container{display:flex;flex-direction:column;align-items:center;justify-content:center}img{width:131px;height:78px;margin-bottom:24px}h1{margin-bottom:0}\n"] }); }
|
|
11
|
+
}
|
|
12
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsSplashPageComponent, decorators: [{
|
|
13
|
+
type: Component,
|
|
14
|
+
args: [{ selector: 'ads-splash-page', template: "<div class=\"splash-page-container\">\n <img [src]=\"imageSrc\" [alt]=\"alt\" />\n <h1>{{ text }}</h1>\n</div>\n", styles: [":host{display:flex;width:100%;height:100%;min-height:172px;flex-direction:column;align-items:center;justify-content:center}.splash-page-container{display:flex;flex-direction:column;align-items:center;justify-content:center}img{width:131px;height:78px;margin-bottom:24px}h1{margin-bottom:0}\n"] }]
|
|
15
|
+
}], propDecorators: { alt: [{
|
|
16
|
+
type: Input
|
|
17
|
+
}], imageSrc: [{
|
|
18
|
+
type: Input
|
|
19
|
+
}], text: [{
|
|
20
|
+
type: Input
|
|
21
|
+
}] } });
|
|
22
|
+
|
|
23
|
+
class AdsSplashPageModule {
|
|
24
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsSplashPageModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
25
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.1.1", ngImport: i0, type: AdsSplashPageModule, declarations: [AdsSplashPageComponent], imports: [CommonModule], exports: [AdsSplashPageComponent] }); }
|
|
26
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsSplashPageModule, imports: [CommonModule] }); }
|
|
27
|
+
}
|
|
28
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsSplashPageModule, decorators: [{
|
|
29
|
+
type: NgModule,
|
|
30
|
+
args: [{
|
|
31
|
+
imports: [CommonModule],
|
|
32
|
+
declarations: [AdsSplashPageComponent],
|
|
33
|
+
exports: [AdsSplashPageComponent],
|
|
34
|
+
}]
|
|
35
|
+
}] });
|
|
36
|
+
|
|
37
|
+
/**
|
|
38
|
+
* Generated bundle index. Do not edit.
|
|
39
|
+
*/
|
|
40
|
+
|
|
41
|
+
export { AdsSplashPageComponent, AdsSplashPageModule };
|
|
42
|
+
//# sourceMappingURL=ascentgl-ads-ui-src-lib-components-splash-page.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ascentgl-ads-ui-src-lib-components-splash-page.mjs","sources":["../../../../libs/ads-ui/src/lib/components/splash-page/splash-page.component.ts","../../../../libs/ads-ui/src/lib/components/splash-page/splash-page.component.html","../../../../libs/ads-ui/src/lib/components/splash-page/splash-page.module.ts","../../../../libs/ads-ui/src/lib/components/splash-page/ascentgl-ads-ui-src-lib-components-splash-page.ts"],"sourcesContent":["import { Component, Input } from '@angular/core';\n\n@Component({\n selector: 'ads-splash-page',\n templateUrl: './splash-page.component.html',\n styleUrls: ['./splash-page.component.scss'],\n})\nexport class AdsSplashPageComponent {\n /**\n * Alt text for the logo\n */\n @Input() alt!: string;\n\n /**\n * Logo to display\n */\n @Input() imageSrc!: string;\n @Input() text = 'Coming Soon';\n}\n","<div class=\"splash-page-container\">\n <img [src]=\"imageSrc\" [alt]=\"alt\" />\n <h1>{{ text }}</h1>\n</div>\n","import { CommonModule } from '@angular/common';\nimport { NgModule } from '@angular/core';\nimport { AdsSplashPageComponent } from './splash-page.component';\n\n@NgModule({\n imports: [CommonModule],\n declarations: [AdsSplashPageComponent],\n exports: [AdsSplashPageComponent],\n})\nexport class AdsSplashPageModule {}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":";;;;MAOa,sBAAsB,CAAA;AALnC,IAAA,WAAA,GAAA;QAeW,IAAI,CAAA,IAAA,GAAG,aAAa,CAAC;AAC/B,KAAA;8GAXY,sBAAsB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA,EAAA;AAAtB,IAAA,SAAA,IAAA,CAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,IAAA,EAAA,sBAAsB,mHCPnC,oHAIA,EAAA,MAAA,EAAA,CAAA,qSAAA,CAAA,EAAA,CAAA,CAAA,EAAA;;2FDGa,sBAAsB,EAAA,UAAA,EAAA,CAAA;kBALlC,SAAS;+BACE,iBAAiB,EAAA,QAAA,EAAA,oHAAA,EAAA,MAAA,EAAA,CAAA,qSAAA,CAAA,EAAA,CAAA;8BAQlB,GAAG,EAAA,CAAA;sBAAX,KAAK;gBAKG,QAAQ,EAAA,CAAA;sBAAhB,KAAK;gBACG,IAAI,EAAA,CAAA;sBAAZ,KAAK;;;MERK,mBAAmB,CAAA;8GAAnB,mBAAmB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,QAAA,EAAA,CAAA,CAAA,EAAA;AAAnB,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,mBAAmB,EAHf,YAAA,EAAA,CAAA,sBAAsB,CAD3B,EAAA,OAAA,EAAA,CAAA,YAAY,aAEZ,sBAAsB,CAAA,EAAA,CAAA,CAAA,EAAA;AAErB,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,mBAAmB,YAJpB,YAAY,CAAA,EAAA,CAAA,CAAA,EAAA;;2FAIX,mBAAmB,EAAA,UAAA,EAAA,CAAA;kBAL/B,QAAQ;AAAC,YAAA,IAAA,EAAA,CAAA;oBACR,OAAO,EAAE,CAAC,YAAY,CAAC;oBACvB,YAAY,EAAE,CAAC,sBAAsB,CAAC;oBACtC,OAAO,EAAE,CAAC,sBAAsB,CAAC;AAClC,iBAAA,CAAA;;;ACRD;;AAEG;;;;"}
|