@ascentgl/ads-ui 0.0.12 → 0.0.14
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/esm2022/index.mjs +3 -13
- package/esm2022/lib/components/breadcrumb/breadcrumb.component.mjs +3 -5
- package/esm2022/lib/components/breadcrumb/breadcrumb.type.mjs +1 -1
- package/esm2022/lib/components/card/card.component.mjs +20 -4
- package/esm2022/lib/components/drag-and-drop-list/drag-and-drop-list.component.mjs +2 -2
- package/esm2022/lib/components/error-page/error-page.component.mjs +2 -2
- package/esm2022/lib/components/expansion-panel/expansion-panel.component.mjs +3 -3
- package/esm2022/lib/components/general/color-palette/colors.enums.mjs +2 -1
- package/esm2022/lib/components/header/header.component.mjs +2 -2
- package/esm2022/lib/components/logo/ascent-logo/ascent-logo.component.mjs +7 -5
- package/esm2022/lib/components/logo/primary-logo/abstract-logo-component.mjs +37 -0
- package/esm2022/lib/components/logo/primary-logo/primary-logo.component.mjs +7 -29
- package/esm2022/lib/components/nav-bar/nav-menu/nav-menu.component.mjs +3 -3
- package/esm2022/lib/components/{header/org-display-text → nav-bar/scms-side-nav-bar}/index.mjs +1 -1
- package/esm2022/lib/components/nav-bar/scms-side-nav-bar/public-api.mjs +3 -0
- package/esm2022/lib/components/nav-bar/scms-side-nav-bar/scms-nav-item.types.mjs +2 -0
- package/esm2022/lib/components/nav-bar/scms-side-nav-bar/scms-side-nav-bar.component.mjs +54 -0
- package/esm2022/lib/components/nav-bar/scms-side-nav-bar/scms-side-nav-bar.module.mjs +62 -0
- package/esm2022/lib/components/nav-bar/side-nav-bar/abstract-side-nav-bar.component.mjs +56 -0
- package/esm2022/lib/components/nav-bar/side-nav-bar/side-nav-bar.component.mjs +12 -52
- package/esm2022/lib/components/snackbars/snackbar/snackbar.component.mjs +14 -5
- package/esm2022/lib/components/steppers/numeric-stepper/numeric-step.type.mjs +2 -0
- package/esm2022/lib/components/steppers/numeric-stepper/numeric-stepper.component.mjs +3 -3
- package/esm2022/lib/components/steppers/numeric-stepper/public-api.mjs +2 -1
- package/esm2022/lib/components/{widgets/widget-title → steppers/stepper}/index.mjs +1 -1
- package/esm2022/lib/components/steppers/stepper/public-api.mjs +4 -0
- package/esm2022/lib/components/steppers/stepper/step.type.mjs +2 -0
- package/esm2022/lib/components/steppers/stepper/stepper.component.mjs +33 -0
- package/esm2022/lib/components/steppers/stepper/stepper.module.mjs +20 -0
- package/esm2022/lib/components/steppers/vertical-stepper/vertical-step.type.mjs +2 -8
- package/esm2022/lib/components/steppers/vertical-stepper/vertical-stepper.component.mjs +10 -4
- package/esm2022/lib/components/tags/create-tag/create-tag.component.mjs +75 -33
- package/esm2022/lib/components/tags/create-tag/create-tag.module.mjs +11 -3
- package/esm2022/lib/components/tags/tag/tag.component.mjs +3 -3
- package/esm2022/lib/components/tags/tag-container/tag-container.component.mjs +2 -2
- package/esm2022/src/lib/components/drag-and-drop-list/drag-and-drop-list.component.mjs +2 -2
- package/esm2022/src/lib/components/header/header.component.mjs +2 -2
- package/esm2022/src/lib/components/logo/primary-logo/abstract-logo-component.mjs +37 -0
- package/esm2022/src/lib/components/logo/primary-logo/primary-logo.component.mjs +7 -29
- package/esm2022/src/lib/components/tags/tag-container/tag-container.component.mjs +2 -2
- package/fesm2022/ascentgl-ads-ui-src-lib-components-drag-and-drop-list.mjs +2 -2
- package/fesm2022/ascentgl-ads-ui-src-lib-components-drag-and-drop-list.mjs.map +1 -1
- package/fesm2022/ascentgl-ads-ui-src-lib-components-header.mjs +2 -2
- package/fesm2022/ascentgl-ads-ui-src-lib-components-header.mjs.map +1 -1
- package/fesm2022/ascentgl-ads-ui-src-lib-components-logo-primary-logo.mjs +19 -7
- package/fesm2022/ascentgl-ads-ui-src-lib-components-logo-primary-logo.mjs.map +1 -1
- package/fesm2022/ascentgl-ads-ui-src-lib-components-tags-tag-container.mjs +2 -2
- package/fesm2022/ascentgl-ads-ui-src-lib-components-tags-tag-container.mjs.map +1 -1
- package/fesm2022/ascentgl-ads-ui.mjs +509 -759
- package/fesm2022/ascentgl-ads-ui.mjs.map +1 -1
- package/index.d.ts +2 -12
- package/lib/components/breadcrumb/breadcrumb.component.d.ts +1 -3
- package/lib/components/breadcrumb/breadcrumb.type.d.ts +0 -1
- package/lib/components/card/card.component.d.ts +12 -1
- package/lib/components/general/color-palette/colors.enums.d.ts +1 -0
- package/lib/components/logo/ascent-logo/ascent-logo.component.d.ts +2 -1
- package/lib/components/logo/primary-logo/abstract-logo-component.d.ts +22 -0
- package/lib/components/logo/primary-logo/primary-logo.component.d.ts +4 -18
- package/lib/components/nav-bar/scms-side-nav-bar/public-api.d.ts +2 -0
- package/lib/components/nav-bar/scms-side-nav-bar/scms-nav-item.types.d.ts +14 -0
- package/lib/components/nav-bar/scms-side-nav-bar/scms-side-nav-bar.component.d.ts +28 -0
- package/lib/components/nav-bar/scms-side-nav-bar/scms-side-nav-bar.module.d.ts +15 -0
- package/lib/components/nav-bar/side-nav-bar/abstract-side-nav-bar.component.d.ts +38 -0
- package/lib/components/nav-bar/side-nav-bar/side-nav-bar.component.d.ts +9 -24
- package/lib/components/snackbars/snackbar/snackbar.component.d.ts +3 -0
- package/lib/components/steppers/numeric-stepper/numeric-step.type.d.ts +9 -0
- package/lib/components/steppers/numeric-stepper/numeric-stepper.component.d.ts +1 -9
- package/lib/components/steppers/numeric-stepper/public-api.d.ts +1 -0
- package/lib/components/steppers/stepper/public-api.d.ts +3 -0
- package/lib/components/steppers/stepper/step.type.d.ts +8 -0
- package/lib/components/steppers/stepper/stepper.component.d.ts +21 -0
- package/lib/components/steppers/stepper/stepper.module.d.ts +10 -0
- package/lib/components/steppers/vertical-stepper/vertical-step.type.d.ts +1 -6
- package/lib/components/steppers/vertical-stepper/vertical-stepper.component.d.ts +7 -1
- package/lib/components/tags/create-tag/create-tag.component.d.ts +18 -11
- package/lib/components/tags/create-tag/create-tag.module.d.ts +3 -1
- package/lib/components/tags/tag/tag.component.d.ts +1 -1
- package/package.json +18 -96
- package/src/assets/sass/ads-ui/abstracts/_variables.scss +2 -2
- package/src/lib/components/logo/primary-logo/abstract-logo-component.d.ts +22 -0
- package/src/lib/components/logo/primary-logo/primary-logo.component.d.ts +4 -18
- package/esm2022/lib/components/header/org-display-text/org-display-text.component.mjs +0 -22
- package/esm2022/lib/components/header/org-display-text/org-display-text.module.mjs +0 -18
- package/esm2022/lib/components/header/org-display-text/public-api.mjs +0 -3
- package/esm2022/lib/components/pagination/container/index.mjs +0 -2
- package/esm2022/lib/components/pagination/container/pagination-container.component.mjs +0 -11
- package/esm2022/lib/components/pagination/container/pagination-container.module.mjs +0 -16
- package/esm2022/lib/components/pagination/container/public-api.mjs +0 -3
- package/esm2022/lib/components/pagination/index.mjs +0 -2
- package/esm2022/lib/components/pagination/pagination.component.mjs +0 -85
- package/esm2022/lib/components/pagination/pagination.module.mjs +0 -19
- package/esm2022/lib/components/pagination/public-api.mjs +0 -3
- package/esm2022/lib/components/widgets/widget-actions/index.mjs +0 -2
- package/esm2022/lib/components/widgets/widget-actions/public-api.mjs +0 -3
- package/esm2022/lib/components/widgets/widget-actions/widget-actions.component.mjs +0 -11
- package/esm2022/lib/components/widgets/widget-actions/widget-actions.module.mjs +0 -16
- package/esm2022/lib/components/widgets/widget-bar/index.mjs +0 -2
- package/esm2022/lib/components/widgets/widget-bar/public-api.mjs +0 -3
- package/esm2022/lib/components/widgets/widget-bar/widget-bar.component.mjs +0 -20
- package/esm2022/lib/components/widgets/widget-bar/widget-bar.module.mjs +0 -18
- package/esm2022/lib/components/widgets/widget-container/index.mjs +0 -2
- package/esm2022/lib/components/widgets/widget-container/public-api.mjs +0 -3
- package/esm2022/lib/components/widgets/widget-container/widget-container.component.mjs +0 -11
- package/esm2022/lib/components/widgets/widget-container/widget-container.module.mjs +0 -18
- package/esm2022/lib/components/widgets/widget-footer/index.mjs +0 -2
- package/esm2022/lib/components/widgets/widget-footer/public-api.mjs +0 -3
- package/esm2022/lib/components/widgets/widget-footer/widget-footer.component.mjs +0 -11
- package/esm2022/lib/components/widgets/widget-footer/widget-footer.module.mjs +0 -18
- package/esm2022/lib/components/widgets/widget-header/index.mjs +0 -2
- package/esm2022/lib/components/widgets/widget-header/public-api.mjs +0 -3
- package/esm2022/lib/components/widgets/widget-header/widget-header.component.mjs +0 -11
- package/esm2022/lib/components/widgets/widget-header/widget-header.module.mjs +0 -18
- package/esm2022/lib/components/widgets/widget-preview/index.mjs +0 -2
- package/esm2022/lib/components/widgets/widget-preview/public-api.mjs +0 -3
- package/esm2022/lib/components/widgets/widget-preview/widget-preview.component.mjs +0 -25
- package/esm2022/lib/components/widgets/widget-preview/widget-preview.module.mjs +0 -18
- package/esm2022/lib/components/widgets/widget-thumbnail/index.mjs +0 -2
- package/esm2022/lib/components/widgets/widget-thumbnail/public-api.mjs +0 -3
- package/esm2022/lib/components/widgets/widget-thumbnail/widget-thumbnail.component.mjs +0 -100
- package/esm2022/lib/components/widgets/widget-thumbnail/widget-thumbnail.module.mjs +0 -20
- package/esm2022/lib/components/widgets/widget-thumbnail-container/index.mjs +0 -2
- package/esm2022/lib/components/widgets/widget-thumbnail-container/public-api.mjs +0 -3
- package/esm2022/lib/components/widgets/widget-thumbnail-container/widget-thumbnail-container.component.mjs +0 -12
- package/esm2022/lib/components/widgets/widget-thumbnail-container/widget-thumbnail-container.module.mjs +0 -18
- package/esm2022/lib/components/widgets/widget-title/public-api.mjs +0 -3
- package/esm2022/lib/components/widgets/widget-title/widget-title.component.mjs +0 -22
- package/esm2022/lib/components/widgets/widget-title/widget-title.module.mjs +0 -18
- package/esm2022/src/lib/components/card/ascentgl-ads-ui-src-lib-components-card.mjs +0 -5
- package/esm2022/src/lib/components/card/card.component.mjs +0 -11
- package/esm2022/src/lib/components/card/card.module.mjs +0 -18
- package/esm2022/src/lib/components/card/public-api.mjs +0 -3
- package/esm2022/src/lib/components/header/org-display-text/ascentgl-ads-ui-src-lib-components-header-org-display-text.mjs +0 -5
- package/esm2022/src/lib/components/header/org-display-text/org-display-text.component.mjs +0 -22
- package/esm2022/src/lib/components/header/org-display-text/org-display-text.module.mjs +0 -18
- package/esm2022/src/lib/components/header/org-display-text/public-api.mjs +0 -3
- package/esm2022/src/lib/components/pagination/ascentgl-ads-ui-src-lib-components-pagination.mjs +0 -5
- package/esm2022/src/lib/components/pagination/container/ascentgl-ads-ui-src-lib-components-pagination-container.mjs +0 -5
- package/esm2022/src/lib/components/pagination/container/pagination-container.component.mjs +0 -11
- package/esm2022/src/lib/components/pagination/container/pagination-container.module.mjs +0 -16
- package/esm2022/src/lib/components/pagination/container/public-api.mjs +0 -3
- package/esm2022/src/lib/components/pagination/pagination.component.mjs +0 -85
- package/esm2022/src/lib/components/pagination/pagination.module.mjs +0 -19
- package/esm2022/src/lib/components/pagination/public-api.mjs +0 -3
- package/esm2022/src/lib/components/widgets/widget-actions/ascentgl-ads-ui-src-lib-components-widgets-widget-actions.mjs +0 -5
- package/esm2022/src/lib/components/widgets/widget-actions/public-api.mjs +0 -3
- package/esm2022/src/lib/components/widgets/widget-actions/widget-actions.component.mjs +0 -11
- package/esm2022/src/lib/components/widgets/widget-actions/widget-actions.module.mjs +0 -16
- package/esm2022/src/lib/components/widgets/widget-bar/ascentgl-ads-ui-src-lib-components-widgets-widget-bar.mjs +0 -5
- package/esm2022/src/lib/components/widgets/widget-bar/public-api.mjs +0 -3
- package/esm2022/src/lib/components/widgets/widget-bar/widget-bar.component.mjs +0 -20
- package/esm2022/src/lib/components/widgets/widget-bar/widget-bar.module.mjs +0 -18
- package/esm2022/src/lib/components/widgets/widget-container/ascentgl-ads-ui-src-lib-components-widgets-widget-container.mjs +0 -5
- package/esm2022/src/lib/components/widgets/widget-container/public-api.mjs +0 -3
- package/esm2022/src/lib/components/widgets/widget-container/widget-container.component.mjs +0 -11
- package/esm2022/src/lib/components/widgets/widget-container/widget-container.module.mjs +0 -18
- package/esm2022/src/lib/components/widgets/widget-footer/ascentgl-ads-ui-src-lib-components-widgets-widget-footer.mjs +0 -5
- package/esm2022/src/lib/components/widgets/widget-footer/public-api.mjs +0 -3
- package/esm2022/src/lib/components/widgets/widget-footer/widget-footer.component.mjs +0 -11
- package/esm2022/src/lib/components/widgets/widget-footer/widget-footer.module.mjs +0 -18
- package/esm2022/src/lib/components/widgets/widget-header/ascentgl-ads-ui-src-lib-components-widgets-widget-header.mjs +0 -5
- package/esm2022/src/lib/components/widgets/widget-header/public-api.mjs +0 -3
- package/esm2022/src/lib/components/widgets/widget-header/widget-header.component.mjs +0 -11
- package/esm2022/src/lib/components/widgets/widget-header/widget-header.module.mjs +0 -18
- package/esm2022/src/lib/components/widgets/widget-preview/ascentgl-ads-ui-src-lib-components-widgets-widget-preview.mjs +0 -5
- package/esm2022/src/lib/components/widgets/widget-preview/public-api.mjs +0 -3
- package/esm2022/src/lib/components/widgets/widget-preview/widget-preview.component.mjs +0 -25
- package/esm2022/src/lib/components/widgets/widget-preview/widget-preview.module.mjs +0 -18
- package/esm2022/src/lib/components/widgets/widget-thumbnail/ascentgl-ads-ui-src-lib-components-widgets-widget-thumbnail.mjs +0 -5
- package/esm2022/src/lib/components/widgets/widget-thumbnail/public-api.mjs +0 -3
- package/esm2022/src/lib/components/widgets/widget-thumbnail/widget-thumbnail.component.mjs +0 -100
- package/esm2022/src/lib/components/widgets/widget-thumbnail/widget-thumbnail.module.mjs +0 -20
- package/esm2022/src/lib/components/widgets/widget-thumbnail-container/ascentgl-ads-ui-src-lib-components-widgets-widget-thumbnail-container.mjs +0 -5
- package/esm2022/src/lib/components/widgets/widget-thumbnail-container/public-api.mjs +0 -3
- package/esm2022/src/lib/components/widgets/widget-thumbnail-container/widget-thumbnail-container.component.mjs +0 -12
- package/esm2022/src/lib/components/widgets/widget-thumbnail-container/widget-thumbnail-container.module.mjs +0 -18
- package/esm2022/src/lib/components/widgets/widget-title/ascentgl-ads-ui-src-lib-components-widgets-widget-title.mjs +0 -5
- package/esm2022/src/lib/components/widgets/widget-title/public-api.mjs +0 -3
- package/esm2022/src/lib/components/widgets/widget-title/widget-title.component.mjs +0 -22
- package/esm2022/src/lib/components/widgets/widget-title/widget-title.module.mjs +0 -18
- package/fesm2022/ascentgl-ads-ui-src-lib-components-card.mjs +0 -33
- package/fesm2022/ascentgl-ads-ui-src-lib-components-card.mjs.map +0 -1
- package/fesm2022/ascentgl-ads-ui-src-lib-components-header-org-display-text.mjs +0 -44
- package/fesm2022/ascentgl-ads-ui-src-lib-components-header-org-display-text.mjs.map +0 -1
- package/fesm2022/ascentgl-ads-ui-src-lib-components-pagination-container.mjs +0 -31
- package/fesm2022/ascentgl-ads-ui-src-lib-components-pagination-container.mjs.map +0 -1
- package/fesm2022/ascentgl-ads-ui-src-lib-components-pagination.mjs +0 -107
- package/fesm2022/ascentgl-ads-ui-src-lib-components-pagination.mjs.map +0 -1
- package/fesm2022/ascentgl-ads-ui-src-lib-components-widgets-widget-actions.mjs +0 -31
- package/fesm2022/ascentgl-ads-ui-src-lib-components-widgets-widget-actions.mjs.map +0 -1
- package/fesm2022/ascentgl-ads-ui-src-lib-components-widgets-widget-bar.mjs +0 -42
- package/fesm2022/ascentgl-ads-ui-src-lib-components-widgets-widget-bar.mjs.map +0 -1
- package/fesm2022/ascentgl-ads-ui-src-lib-components-widgets-widget-container.mjs +0 -33
- package/fesm2022/ascentgl-ads-ui-src-lib-components-widgets-widget-container.mjs.map +0 -1
- package/fesm2022/ascentgl-ads-ui-src-lib-components-widgets-widget-footer.mjs +0 -33
- package/fesm2022/ascentgl-ads-ui-src-lib-components-widgets-widget-footer.mjs.map +0 -1
- package/fesm2022/ascentgl-ads-ui-src-lib-components-widgets-widget-header.mjs +0 -33
- package/fesm2022/ascentgl-ads-ui-src-lib-components-widgets-widget-header.mjs.map +0 -1
- package/fesm2022/ascentgl-ads-ui-src-lib-components-widgets-widget-preview.mjs +0 -47
- package/fesm2022/ascentgl-ads-ui-src-lib-components-widgets-widget-preview.mjs.map +0 -1
- package/fesm2022/ascentgl-ads-ui-src-lib-components-widgets-widget-thumbnail-container.mjs +0 -34
- package/fesm2022/ascentgl-ads-ui-src-lib-components-widgets-widget-thumbnail-container.mjs.map +0 -1
- package/fesm2022/ascentgl-ads-ui-src-lib-components-widgets-widget-thumbnail.mjs +0 -123
- package/fesm2022/ascentgl-ads-ui-src-lib-components-widgets-widget-thumbnail.mjs.map +0 -1
- package/fesm2022/ascentgl-ads-ui-src-lib-components-widgets-widget-title.mjs +0 -44
- package/fesm2022/ascentgl-ads-ui-src-lib-components-widgets-widget-title.mjs.map +0 -1
- package/lib/components/header/org-display-text/org-display-text.component.d.ts +0 -13
- package/lib/components/header/org-display-text/org-display-text.module.d.ts +0 -8
- package/lib/components/header/org-display-text/public-api.d.ts +0 -2
- package/lib/components/pagination/container/pagination-container.component.d.ts +0 -5
- package/lib/components/pagination/container/pagination-container.module.d.ts +0 -7
- package/lib/components/pagination/container/public-api.d.ts +0 -2
- package/lib/components/pagination/index.d.ts +0 -1
- package/lib/components/pagination/pagination.component.d.ts +0 -41
- package/lib/components/pagination/pagination.module.d.ts +0 -9
- package/lib/components/pagination/public-api.d.ts +0 -2
- package/lib/components/widgets/widget-actions/index.d.ts +0 -1
- package/lib/components/widgets/widget-actions/public-api.d.ts +0 -2
- package/lib/components/widgets/widget-actions/widget-actions.component.d.ts +0 -5
- package/lib/components/widgets/widget-actions/widget-actions.module.d.ts +0 -7
- package/lib/components/widgets/widget-bar/index.d.ts +0 -1
- package/lib/components/widgets/widget-bar/public-api.d.ts +0 -2
- package/lib/components/widgets/widget-bar/widget-bar.component.d.ts +0 -9
- package/lib/components/widgets/widget-bar/widget-bar.module.d.ts +0 -8
- package/lib/components/widgets/widget-container/index.d.ts +0 -1
- package/lib/components/widgets/widget-container/public-api.d.ts +0 -2
- package/lib/components/widgets/widget-container/widget-container.component.d.ts +0 -5
- package/lib/components/widgets/widget-container/widget-container.module.d.ts +0 -8
- package/lib/components/widgets/widget-footer/index.d.ts +0 -1
- package/lib/components/widgets/widget-footer/public-api.d.ts +0 -2
- package/lib/components/widgets/widget-footer/widget-footer.component.d.ts +0 -5
- package/lib/components/widgets/widget-footer/widget-footer.module.d.ts +0 -8
- package/lib/components/widgets/widget-header/index.d.ts +0 -1
- package/lib/components/widgets/widget-header/public-api.d.ts +0 -2
- package/lib/components/widgets/widget-header/widget-header.component.d.ts +0 -5
- package/lib/components/widgets/widget-header/widget-header.module.d.ts +0 -8
- package/lib/components/widgets/widget-preview/index.d.ts +0 -1
- package/lib/components/widgets/widget-preview/public-api.d.ts +0 -2
- package/lib/components/widgets/widget-preview/widget-preview.component.d.ts +0 -28
- package/lib/components/widgets/widget-preview/widget-preview.module.d.ts +0 -8
- package/lib/components/widgets/widget-thumbnail/index.d.ts +0 -1
- package/lib/components/widgets/widget-thumbnail/public-api.d.ts +0 -2
- package/lib/components/widgets/widget-thumbnail/widget-thumbnail.component.d.ts +0 -68
- package/lib/components/widgets/widget-thumbnail/widget-thumbnail.module.d.ts +0 -10
- package/lib/components/widgets/widget-thumbnail-container/index.d.ts +0 -1
- package/lib/components/widgets/widget-thumbnail-container/public-api.d.ts +0 -2
- package/lib/components/widgets/widget-thumbnail-container/widget-thumbnail-container.component.d.ts +0 -5
- package/lib/components/widgets/widget-thumbnail-container/widget-thumbnail-container.module.d.ts +0 -8
- package/lib/components/widgets/widget-title/index.d.ts +0 -1
- package/lib/components/widgets/widget-title/public-api.d.ts +0 -2
- package/lib/components/widgets/widget-title/widget-title.component.d.ts +0 -13
- package/lib/components/widgets/widget-title/widget-title.module.d.ts +0 -8
- package/src/lib/components/card/card.component.d.ts +0 -5
- package/src/lib/components/card/card.module.d.ts +0 -8
- package/src/lib/components/card/index.d.ts +0 -5
- package/src/lib/components/card/public-api.d.ts +0 -2
- package/src/lib/components/header/org-display-text/index.d.ts +0 -5
- package/src/lib/components/header/org-display-text/org-display-text.component.d.ts +0 -13
- package/src/lib/components/header/org-display-text/org-display-text.module.d.ts +0 -8
- package/src/lib/components/header/org-display-text/public-api.d.ts +0 -2
- package/src/lib/components/pagination/container/index.d.ts +0 -5
- package/src/lib/components/pagination/container/pagination-container.component.d.ts +0 -5
- package/src/lib/components/pagination/container/pagination-container.module.d.ts +0 -7
- package/src/lib/components/pagination/container/public-api.d.ts +0 -2
- package/src/lib/components/pagination/index.d.ts +0 -5
- package/src/lib/components/pagination/pagination.component.d.ts +0 -41
- package/src/lib/components/pagination/pagination.module.d.ts +0 -9
- package/src/lib/components/pagination/public-api.d.ts +0 -2
- package/src/lib/components/widgets/widget-actions/index.d.ts +0 -5
- package/src/lib/components/widgets/widget-actions/public-api.d.ts +0 -2
- package/src/lib/components/widgets/widget-actions/widget-actions.component.d.ts +0 -5
- package/src/lib/components/widgets/widget-actions/widget-actions.module.d.ts +0 -7
- package/src/lib/components/widgets/widget-bar/index.d.ts +0 -5
- package/src/lib/components/widgets/widget-bar/public-api.d.ts +0 -2
- package/src/lib/components/widgets/widget-bar/widget-bar.component.d.ts +0 -9
- package/src/lib/components/widgets/widget-bar/widget-bar.module.d.ts +0 -8
- package/src/lib/components/widgets/widget-container/index.d.ts +0 -5
- package/src/lib/components/widgets/widget-container/public-api.d.ts +0 -2
- package/src/lib/components/widgets/widget-container/widget-container.component.d.ts +0 -5
- package/src/lib/components/widgets/widget-container/widget-container.module.d.ts +0 -8
- package/src/lib/components/widgets/widget-footer/index.d.ts +0 -5
- package/src/lib/components/widgets/widget-footer/public-api.d.ts +0 -2
- package/src/lib/components/widgets/widget-footer/widget-footer.component.d.ts +0 -5
- package/src/lib/components/widgets/widget-footer/widget-footer.module.d.ts +0 -8
- package/src/lib/components/widgets/widget-header/index.d.ts +0 -5
- package/src/lib/components/widgets/widget-header/public-api.d.ts +0 -2
- package/src/lib/components/widgets/widget-header/widget-header.component.d.ts +0 -5
- package/src/lib/components/widgets/widget-header/widget-header.module.d.ts +0 -8
- package/src/lib/components/widgets/widget-preview/index.d.ts +0 -5
- package/src/lib/components/widgets/widget-preview/public-api.d.ts +0 -2
- package/src/lib/components/widgets/widget-preview/widget-preview.component.d.ts +0 -28
- package/src/lib/components/widgets/widget-preview/widget-preview.module.d.ts +0 -8
- package/src/lib/components/widgets/widget-thumbnail/index.d.ts +0 -5
- package/src/lib/components/widgets/widget-thumbnail/public-api.d.ts +0 -2
- package/src/lib/components/widgets/widget-thumbnail/widget-thumbnail.component.d.ts +0 -68
- package/src/lib/components/widgets/widget-thumbnail/widget-thumbnail.module.d.ts +0 -10
- package/src/lib/components/widgets/widget-thumbnail-container/index.d.ts +0 -5
- package/src/lib/components/widgets/widget-thumbnail-container/public-api.d.ts +0 -2
- package/src/lib/components/widgets/widget-thumbnail-container/widget-thumbnail-container.component.d.ts +0 -5
- package/src/lib/components/widgets/widget-thumbnail-container/widget-thumbnail-container.module.d.ts +0 -8
- package/src/lib/components/widgets/widget-title/index.d.ts +0 -5
- package/src/lib/components/widgets/widget-title/public-api.d.ts +0 -2
- package/src/lib/components/widgets/widget-title/widget-title.component.d.ts +0 -13
- package/src/lib/components/widgets/widget-title/widget-title.module.d.ts +0 -8
- /package/lib/components/{header/org-display-text → nav-bar/scms-side-nav-bar}/index.d.ts +0 -0
- /package/lib/components/{pagination/container → steppers/stepper}/index.d.ts +0 -0
package/index.d.ts
CHANGED
|
@@ -13,14 +13,11 @@ export * from './lib/components/footer';
|
|
|
13
13
|
export * from './lib/components/footer/container';
|
|
14
14
|
export * from './lib/components/header';
|
|
15
15
|
export * from './lib/components/header/container';
|
|
16
|
-
export * from './lib/components/header/org-display-text';
|
|
17
16
|
export * from './lib/components/buttons/icon-button';
|
|
18
17
|
export * from './lib/components/buttons/link-button';
|
|
19
18
|
export * from './lib/components/icon-hover';
|
|
20
19
|
export * from './lib/components/logo/primary-logo';
|
|
21
20
|
export * from './lib/components/logo/ascent-logo';
|
|
22
|
-
export * from './lib/components/pagination';
|
|
23
|
-
export * from './lib/components/pagination/container';
|
|
24
21
|
export * from './lib/components/progress-indicators/progress-bar';
|
|
25
22
|
export * from './lib/components/progress-indicators/progress-spinner';
|
|
26
23
|
export * from './lib/components/progress-indicators/progress-indicator-spinner';
|
|
@@ -44,15 +41,6 @@ export * from './lib/components/form-fields/selection-fields/slide-toggle';
|
|
|
44
41
|
export * from './lib/components/form-fields/selection-fields/slider';
|
|
45
42
|
export * from './lib/components/snackbars/inline-snackbar';
|
|
46
43
|
export * from './lib/components/snackbars/snackbar';
|
|
47
|
-
export * from './lib/components/widgets/widget-actions';
|
|
48
|
-
export * from './lib/components/widgets/widget-bar';
|
|
49
|
-
export * from './lib/components/widgets/widget-container';
|
|
50
|
-
export * from './lib/components/widgets/widget-footer';
|
|
51
|
-
export * from './lib/components/widgets/widget-header';
|
|
52
|
-
export * from './lib/components/widgets/widget-preview';
|
|
53
|
-
export * from './lib/components/widgets/widget-thumbnail';
|
|
54
|
-
export * from './lib/components/widgets/widget-thumbnail-container';
|
|
55
|
-
export * from './lib/components/widgets/widget-title';
|
|
56
44
|
export * from './lib/services/viewport/viewport.service';
|
|
57
45
|
export * from './lib/services/window/window.service';
|
|
58
46
|
export * from './lib/components/form-fields/datepickers/datetime-picker/custom-datetime.adapter';
|
|
@@ -63,5 +51,7 @@ export * from './lib/components/expansion-panel';
|
|
|
63
51
|
export * from './lib/components/table';
|
|
64
52
|
export * from './lib/components/nav-bar/nav-menu';
|
|
65
53
|
export * from './lib/components/nav-bar/side-nav-bar';
|
|
54
|
+
export * from './lib/components/nav-bar/scms-side-nav-bar';
|
|
66
55
|
export * from './lib/components/steppers/numeric-stepper';
|
|
67
56
|
export * from './lib/components/steppers/vertical-stepper';
|
|
57
|
+
export * from './lib/components/steppers/stepper';
|
|
@@ -12,8 +12,6 @@ export declare class AdsBreadcrumbComponent<T> implements OnChanges, AfterViewIn
|
|
|
12
12
|
listRef: import("@angular/core").Signal<ElementRef<any> | undefined>;
|
|
13
13
|
/** provide an array of breadcrumbs of Breadcrumb<T> type */
|
|
14
14
|
breadcrumbs: import("@angular/core").InputSignal<Breadcrumb<T>[]>;
|
|
15
|
-
/** set to "true" to show sequence number for every breadcrumb */
|
|
16
|
-
showNumber: import("@angular/core").InputSignal<boolean>;
|
|
17
15
|
/** @ignore */
|
|
18
16
|
visualProcessor?: BreadcrumbVisualProcessor;
|
|
19
17
|
/** @ignore */
|
|
@@ -33,5 +31,5 @@ export declare class AdsBreadcrumbComponent<T> implements OnChanges, AfterViewIn
|
|
|
33
31
|
/** @ignore */
|
|
34
32
|
scrollRight(): void;
|
|
35
33
|
static ɵfac: i0.ɵɵFactoryDeclaration<AdsBreadcrumbComponent<any>, never>;
|
|
36
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AdsBreadcrumbComponent<any>, "ads-breadcrumb", never, { "breadcrumbs": { "alias": "breadcrumbs"; "required": true; "isSignal": true; };
|
|
34
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AdsBreadcrumbComponent<any>, "ads-breadcrumb", never, { "breadcrumbs": { "alias": "breadcrumbs"; "required": true; "isSignal": true; }; }, {}, never, never, false, never>;
|
|
37
35
|
}
|
|
@@ -1,5 +1,16 @@
|
|
|
1
|
+
import { Colors } from '../general/color-palette/colors.enums';
|
|
1
2
|
import * as i0 from "@angular/core";
|
|
2
3
|
export declare class AdsCardComponent {
|
|
4
|
+
/**
|
|
5
|
+
* Card border color
|
|
6
|
+
*/
|
|
7
|
+
borderColor: import("@angular/core").InputSignal<Colors>;
|
|
8
|
+
/**
|
|
9
|
+
* Card border width
|
|
10
|
+
*/
|
|
11
|
+
borderWidth: import("@angular/core").InputSignal<number>;
|
|
12
|
+
/** @ignore */
|
|
13
|
+
getBorderColor(color: string): string;
|
|
3
14
|
static ɵfac: i0.ɵɵFactoryDeclaration<AdsCardComponent, never>;
|
|
4
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AdsCardComponent, "ads-card", never, {}, {}, never, ["*"], false, never>;
|
|
15
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AdsCardComponent, "ads-card", never, { "borderColor": { "alias": "borderColor"; "required": false; "isSignal": true; }; "borderWidth": { "alias": "borderWidth"; "required": false; "isSignal": true; }; }, {}, never, ["*"], false, never>;
|
|
5
16
|
}
|
|
@@ -1,9 +1,10 @@
|
|
|
1
|
+
import { AbstractLogoComponent } from '../primary-logo/abstract-logo-component';
|
|
1
2
|
import * as i0 from "@angular/core";
|
|
2
3
|
export declare enum AdsAscentLogoColor {
|
|
3
4
|
Regular = "regular",
|
|
4
5
|
Teal = "teal"
|
|
5
6
|
}
|
|
6
|
-
export declare class AdsAscentLogoComponent {
|
|
7
|
+
export declare class AdsAscentLogoComponent extends AbstractLogoComponent {
|
|
7
8
|
/** @ignore */
|
|
8
9
|
protected readonly AscentLogoColor: typeof AdsAscentLogoColor;
|
|
9
10
|
/**
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare abstract class AbstractLogoComponent implements OnInit {
|
|
4
|
+
/** @ignore */
|
|
5
|
+
isMobile: boolean;
|
|
6
|
+
/**
|
|
7
|
+
* Mobile width
|
|
8
|
+
*/
|
|
9
|
+
mobileWidth: import("@angular/core").InputSignal<number>;
|
|
10
|
+
/**
|
|
11
|
+
* Whether the navigation is collapsed
|
|
12
|
+
*/
|
|
13
|
+
isCollapsed: import("@angular/core").InputSignal<boolean>;
|
|
14
|
+
/** @ignore */
|
|
15
|
+
onResize(): void;
|
|
16
|
+
/** @ignore */
|
|
17
|
+
ngOnInit(): void;
|
|
18
|
+
/** @ignore */
|
|
19
|
+
private checkScreenSize;
|
|
20
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AbstractLogoComponent, never>;
|
|
21
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<AbstractLogoComponent, never, never, { "mobileWidth": { "alias": "mobileWidth"; "required": false; "isSignal": true; }; "isCollapsed": { "alias": "isCollapsed"; "required": false; "isSignal": true; }; }, {}, never, never, false, never>;
|
|
22
|
+
}
|
|
@@ -1,21 +1,7 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { AbstractLogoComponent } from './abstract-logo-component';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class AdsPrimaryLogoComponent
|
|
4
|
-
|
|
5
|
-
/**
|
|
6
|
-
* Mobile width
|
|
7
|
-
*/
|
|
8
|
-
mobileWidth: import("@angular/core").InputSignal<number>;
|
|
9
|
-
/**
|
|
10
|
-
* Whether the navigation is collapsed
|
|
11
|
-
*/
|
|
12
|
-
isCollapsed: import("@angular/core").InputSignal<boolean>;
|
|
13
|
-
/** @ignore */
|
|
14
|
-
onResize(): void;
|
|
15
|
-
/** @ignore */
|
|
16
|
-
ngOnInit(): void;
|
|
17
|
-
/** @ignore */
|
|
18
|
-
private checkScreenSize;
|
|
3
|
+
export declare class AdsPrimaryLogoComponent extends AbstractLogoComponent {
|
|
4
|
+
constructor();
|
|
19
5
|
static ɵfac: i0.ɵɵFactoryDeclaration<AdsPrimaryLogoComponent, never>;
|
|
20
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AdsPrimaryLogoComponent, "ads-primary-logo", never, {
|
|
6
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AdsPrimaryLogoComponent, "ads-primary-logo", never, {}, {}, never, never, false, never>;
|
|
21
7
|
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { adsIcon } from '@ascentgl/ads-icons/icons';
|
|
2
|
+
export type ScmsNavItem = {
|
|
3
|
+
label: string;
|
|
4
|
+
icon: adsIcon;
|
|
5
|
+
href?: string;
|
|
6
|
+
subItems?: SubItem[];
|
|
7
|
+
showDividerAfterItem?: boolean;
|
|
8
|
+
};
|
|
9
|
+
type SubItem = {
|
|
10
|
+
label: string;
|
|
11
|
+
icon?: adsIcon;
|
|
12
|
+
href: string;
|
|
13
|
+
};
|
|
14
|
+
export {};
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { ElementRef } from '@angular/core';
|
|
2
|
+
import { AbstractSideNavBarComponent } from '../side-nav-bar/abstract-side-nav-bar.component';
|
|
3
|
+
import { ScmsNavItem } from './scms-nav-item.types';
|
|
4
|
+
import { Router } from '@angular/router';
|
|
5
|
+
import { MatAccordion } from '@angular/material/expansion';
|
|
6
|
+
import { SplitComponent } from 'angular-split';
|
|
7
|
+
import * as i0 from "@angular/core";
|
|
8
|
+
export declare class AdsScmsSideNavBarComponent extends AbstractSideNavBarComponent {
|
|
9
|
+
protected router: Router;
|
|
10
|
+
/** @ignore */
|
|
11
|
+
constructor(router: Router);
|
|
12
|
+
/** @ignore */
|
|
13
|
+
splitter: import("@angular/core").Signal<SplitComponent>;
|
|
14
|
+
/** @ignore */
|
|
15
|
+
sideNavArea: import("@angular/core").Signal<ElementRef<any>>;
|
|
16
|
+
/** @ignore */
|
|
17
|
+
accordion: import("@angular/core").Signal<MatAccordion>;
|
|
18
|
+
/** Array of nav elements */
|
|
19
|
+
navItems: import("@angular/core").InputSignal<ScmsNavItem[]>;
|
|
20
|
+
/** @ignore */
|
|
21
|
+
localStorageName: string;
|
|
22
|
+
/** @ignore */
|
|
23
|
+
widthToCollapsed: number;
|
|
24
|
+
/** @ignore */
|
|
25
|
+
hasActiveLink(item: ScmsNavItem): boolean;
|
|
26
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AdsScmsSideNavBarComponent, never>;
|
|
27
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AdsScmsSideNavBarComponent, "ads-scms-side-nav-bar", never, { "navItems": { "alias": "navItems"; "required": false; "isSignal": true; }; }, {}, never, never, false, never>;
|
|
28
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./scms-side-nav-bar.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "angular-split";
|
|
5
|
+
import * as i4 from "@angular/router";
|
|
6
|
+
import * as i5 from "@ascentgl/ads-icons";
|
|
7
|
+
import * as i6 from "../../divider/divider.module";
|
|
8
|
+
import * as i7 from "@angular/material/expansion";
|
|
9
|
+
import * as i8 from "../../logo/ascent-logo/ascent-logo.module";
|
|
10
|
+
import * as i9 from "@angular/material/tooltip";
|
|
11
|
+
export declare class AdsScmsSideNavBarModule {
|
|
12
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AdsScmsSideNavBarModule, never>;
|
|
13
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AdsScmsSideNavBarModule, [typeof i1.AdsScmsSideNavBarComponent], [typeof i2.CommonModule, typeof i3.SplitComponent, typeof i3.SplitAreaComponent, typeof i4.RouterOutlet, typeof i4.RouterLink, typeof i4.RouterLinkActive, typeof i5.AdsIconModule, typeof i6.AdsDividerModule, typeof i7.MatAccordion, typeof i7.MatExpansionPanel, typeof i7.MatExpansionPanelDescription, typeof i7.MatExpansionPanelHeader, typeof i7.MatExpansionPanelTitle, typeof i8.AdsAscentLogoModule, typeof i9.MatTooltip], [typeof i1.AdsScmsSideNavBarComponent]>;
|
|
14
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<AdsScmsSideNavBarModule>;
|
|
15
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { AfterViewInit, ElementRef, OnDestroy, OnInit, Signal } from '@angular/core';
|
|
2
|
+
import { SplitComponent } from 'angular-split';
|
|
3
|
+
import { Subscription } from 'rxjs';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare abstract class AbstractSideNavBarComponent implements OnInit, AfterViewInit, OnDestroy {
|
|
6
|
+
/** The default expanded width for the sidebar */
|
|
7
|
+
defaultExpandedWidth: import("@angular/core").InputSignal<number>;
|
|
8
|
+
/** @ignore */
|
|
9
|
+
isCollapsed: import("@angular/core").WritableSignal<boolean>;
|
|
10
|
+
/** @ignore */
|
|
11
|
+
sidebarSize: import("@angular/core").WritableSignal<number>;
|
|
12
|
+
/** @ignore */
|
|
13
|
+
abstract localStorageName: string;
|
|
14
|
+
/** @ignore */
|
|
15
|
+
abstract splitter: Signal<SplitComponent>;
|
|
16
|
+
/** @ignore */
|
|
17
|
+
abstract sideNavArea: Signal<ElementRef>;
|
|
18
|
+
/** @ignore */
|
|
19
|
+
splitterSubscription?: Subscription;
|
|
20
|
+
/** @ignore */
|
|
21
|
+
abstract widthToCollapsed: number;
|
|
22
|
+
/** @ignore */
|
|
23
|
+
private minWidth;
|
|
24
|
+
/** @ignore */
|
|
25
|
+
ngOnInit(): void;
|
|
26
|
+
/** @ignore */
|
|
27
|
+
ngAfterViewInit(): void;
|
|
28
|
+
/** Expand the sidebar between collapsed and expanded */
|
|
29
|
+
/** @ignore */
|
|
30
|
+
expandSidebar(): void;
|
|
31
|
+
/** Save current width to the local storage */
|
|
32
|
+
/** @ignore */
|
|
33
|
+
saveLocalStorage(size: number): void;
|
|
34
|
+
/** @ignore */
|
|
35
|
+
ngOnDestroy(): void;
|
|
36
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AbstractSideNavBarComponent, never>;
|
|
37
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<AbstractSideNavBarComponent, never, never, { "defaultExpandedWidth": { "alias": "defaultExpandedWidth"; "required": false; "isSignal": true; }; }, {}, never, never, false, never>;
|
|
38
|
+
}
|
|
@@ -1,14 +1,13 @@
|
|
|
1
|
-
import { ElementRef,
|
|
1
|
+
import { ElementRef, TemplateRef } from '@angular/core';
|
|
2
2
|
import { AdsIconRegistry } from '@ascentgl/ads-icons';
|
|
3
3
|
import { NavItem } from './nav-item.types';
|
|
4
|
-
import {
|
|
4
|
+
import { AbstractSideNavBarComponent } from './abstract-side-nav-bar.component';
|
|
5
|
+
import { SplitComponent } from 'angular-split';
|
|
5
6
|
import * as i0 from "@angular/core";
|
|
6
|
-
export declare class AdsSideNavBarComponent
|
|
7
|
+
export declare class AdsSideNavBarComponent extends AbstractSideNavBarComponent {
|
|
7
8
|
private registry;
|
|
8
9
|
/** @ignore */
|
|
9
10
|
constructor(registry: AdsIconRegistry);
|
|
10
|
-
/** The default expanded width for the sidebar */
|
|
11
|
-
defaultExpandedWidth: import("@angular/core").InputSignal<number>;
|
|
12
11
|
/** The search template */
|
|
13
12
|
searchTemplate: import("@angular/core").InputSignal<TemplateRef<unknown> | undefined>;
|
|
14
13
|
/** The extra data template below search */
|
|
@@ -16,27 +15,13 @@ export declare class AdsSideNavBarComponent implements OnInit {
|
|
|
16
15
|
/** Array of nav elements */
|
|
17
16
|
navItems: import("@angular/core").InputSignal<NavItem[]>;
|
|
18
17
|
/** @ignore */
|
|
19
|
-
|
|
18
|
+
localStorageName: string;
|
|
20
19
|
/** @ignore */
|
|
21
|
-
|
|
20
|
+
widthToCollapsed: number;
|
|
22
21
|
/** @ignore */
|
|
23
|
-
|
|
22
|
+
splitter: import("@angular/core").Signal<SplitComponent>;
|
|
24
23
|
/** @ignore */
|
|
25
|
-
|
|
26
|
-
/** @ignore */
|
|
27
|
-
private minWidth;
|
|
28
|
-
/** @ignore */
|
|
29
|
-
sideNavArea: ElementRef;
|
|
30
|
-
/** @ignore */
|
|
31
|
-
ngOnInit(): void;
|
|
32
|
-
/** @ignore */
|
|
33
|
-
onDragEnd(event: SplitGutterInteractionEvent): void;
|
|
34
|
-
/** Expand the sidebar between collapsed and expanded */
|
|
35
|
-
/** @ignore */
|
|
36
|
-
expandSidebar(): void;
|
|
37
|
-
/** Save current width to the local storage */
|
|
38
|
-
/** @ignore */
|
|
39
|
-
saveLocalStorage(size: number): void;
|
|
24
|
+
sideNavArea: import("@angular/core").Signal<ElementRef<any>>;
|
|
40
25
|
static ɵfac: i0.ɵɵFactoryDeclaration<AdsSideNavBarComponent, never>;
|
|
41
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AdsSideNavBarComponent, "ads-side-nav-bar", never, { "
|
|
26
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AdsSideNavBarComponent, "ads-side-nav-bar", never, { "searchTemplate": { "alias": "searchTemplate"; "required": false; "isSignal": true; }; "extraDataTemplate": { "alias": "extraDataTemplate"; "required": false; "isSignal": true; }; "navItems": { "alias": "navItems"; "required": false; "isSignal": true; }; }, {}, never, never, false, never>;
|
|
42
27
|
}
|
|
@@ -5,6 +5,7 @@ export type SnackBarData = {
|
|
|
5
5
|
message: string;
|
|
6
6
|
hideActionButton?: boolean;
|
|
7
7
|
buttonCaption?: string;
|
|
8
|
+
closeOnClick?: boolean;
|
|
8
9
|
};
|
|
9
10
|
export declare class AdsSnackbarComponent {
|
|
10
11
|
data: SnackBarData;
|
|
@@ -12,6 +13,8 @@ export declare class AdsSnackbarComponent {
|
|
|
12
13
|
readonly defaultButtonCaption = "CloseButton";
|
|
13
14
|
protected readonly PanelClass: typeof PanelClass;
|
|
14
15
|
get buttonPanelClass(): PanelClass;
|
|
16
|
+
/** @ignore */
|
|
17
|
+
onSnackbarClick(): void;
|
|
15
18
|
static ɵfac: i0.ɵɵFactoryDeclaration<AdsSnackbarComponent, never>;
|
|
16
19
|
static ɵcmp: i0.ɵɵComponentDeclaration<AdsSnackbarComponent, "ads-snackbar", never, {}, {}, never, never, false, never>;
|
|
17
20
|
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { TemplateRef } from '@angular/core';
|
|
2
|
+
import { GENERIC_COLLECTION } from '@ascentgl/ads-utils';
|
|
3
|
+
export type NumericStep = {
|
|
4
|
+
template: TemplateRef<unknown>;
|
|
5
|
+
headerTemplate: TemplateRef<unknown>;
|
|
6
|
+
isDelivery: boolean;
|
|
7
|
+
distance?: string;
|
|
8
|
+
templateData: GENERIC_COLLECTION;
|
|
9
|
+
};
|
|
@@ -1,13 +1,5 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { GENERIC_COLLECTION } from '@ascentgl/ads-utils';
|
|
1
|
+
import { NumericStep } from './numeric-step.type';
|
|
3
2
|
import * as i0 from "@angular/core";
|
|
4
|
-
export interface NumericStep {
|
|
5
|
-
template: TemplateRef<unknown>;
|
|
6
|
-
headerTemplate: TemplateRef<unknown>;
|
|
7
|
-
isDelivery: boolean;
|
|
8
|
-
distance?: string;
|
|
9
|
-
templateData: GENERIC_COLLECTION;
|
|
10
|
-
}
|
|
11
3
|
export declare class AdsNumericStepperComponent {
|
|
12
4
|
/** Steps array */
|
|
13
5
|
steps: import("@angular/core").InputSignal<NumericStep[]>;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { StepStatus } from './stepper.component';
|
|
2
|
+
import { TemplateRef } from '@angular/core';
|
|
3
|
+
import { GENERIC_COLLECTION } from '@ascentgl/ads-utils';
|
|
4
|
+
export type Step = {
|
|
5
|
+
status: StepStatus;
|
|
6
|
+
template: TemplateRef<unknown>;
|
|
7
|
+
templateData: GENERIC_COLLECTION;
|
|
8
|
+
};
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { Step } from './step.type';
|
|
2
|
+
import { AdsIconRegistry } from '@ascentgl/ads-icons';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare enum StepStatus {
|
|
5
|
+
Planned = "planned",
|
|
6
|
+
InProgress = "in-progress",
|
|
7
|
+
Completed = "completed"
|
|
8
|
+
}
|
|
9
|
+
export declare class AdsStepperComponent {
|
|
10
|
+
private registry;
|
|
11
|
+
/** @ignore */
|
|
12
|
+
constructor(registry: AdsIconRegistry);
|
|
13
|
+
/** @ignore */
|
|
14
|
+
protected readonly StepStatus: typeof StepStatus;
|
|
15
|
+
/**
|
|
16
|
+
* The steps to display
|
|
17
|
+
*/
|
|
18
|
+
steps: import("@angular/core").InputSignal<Step[]>;
|
|
19
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AdsStepperComponent, never>;
|
|
20
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AdsStepperComponent, "ads-stepper", never, { "steps": { "alias": "steps"; "required": true; "isSignal": true; }; }, {}, never, never, false, never>;
|
|
21
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./stepper.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "@angular/material/button";
|
|
5
|
+
import * as i4 from "@ascentgl/ads-icons";
|
|
6
|
+
export declare class AdsStepperModule {
|
|
7
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AdsStepperModule, never>;
|
|
8
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AdsStepperModule, [typeof i1.AdsStepperComponent], [typeof i2.CommonModule, typeof i3.MatButton, typeof i4.AdsIconModule], [typeof i1.AdsStepperComponent]>;
|
|
9
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<AdsStepperModule>;
|
|
10
|
+
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { adsIcon } from '@ascentgl/ads-icons/icons';
|
|
2
|
+
import { VerticalStepStatus } from './vertical-stepper.component';
|
|
2
3
|
export type VerticalStep = {
|
|
3
4
|
title: string;
|
|
4
5
|
date?: Date;
|
|
@@ -7,9 +8,3 @@ export type VerticalStep = {
|
|
|
7
8
|
onClick?: (step: VerticalStep) => void;
|
|
8
9
|
tooltip?: string;
|
|
9
10
|
};
|
|
10
|
-
export declare enum VerticalStepStatus {
|
|
11
|
-
Completed = "completed",
|
|
12
|
-
Current = "current",
|
|
13
|
-
Future = "future",
|
|
14
|
-
Disabled = "disabled"
|
|
15
|
-
}
|
|
@@ -1,6 +1,12 @@
|
|
|
1
1
|
import { OnInit } from '@angular/core';
|
|
2
|
-
import { VerticalStep
|
|
2
|
+
import { VerticalStep } from './vertical-step.type';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
|
+
export declare enum VerticalStepStatus {
|
|
5
|
+
Completed = "completed",
|
|
6
|
+
Current = "current",
|
|
7
|
+
Future = "future",
|
|
8
|
+
Disabled = "disabled"
|
|
9
|
+
}
|
|
4
10
|
export declare class AdsVerticalStepperComponent implements OnInit {
|
|
5
11
|
/**
|
|
6
12
|
* The steps to display
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { ElementRef,
|
|
1
|
+
import { ElementRef, OnChanges, OnDestroy, SimpleChange } from '@angular/core';
|
|
2
2
|
import { FormBuilder, FormGroup } from '@angular/forms';
|
|
3
3
|
import { AdsIconRegistry } from '@ascentgl/ads-icons';
|
|
4
|
-
import {
|
|
4
|
+
import { ConnectedPosition } from '@angular/cdk/overlay';
|
|
5
5
|
import { Colors } from '../../general/color-palette/colors.enums';
|
|
6
6
|
import { Tag } from '../tag';
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
@@ -13,21 +13,18 @@ export declare class AdsCreateTagComponent implements OnChanges, OnDestroy {
|
|
|
13
13
|
limit: import("@angular/core").InputSignal<number>;
|
|
14
14
|
/** Holds all the tags you create or tags you previously created. Required for proper unique tag validation
|
|
15
15
|
* and total number of existing tags calculation */
|
|
16
|
-
tags:
|
|
16
|
+
tags: Tag[];
|
|
17
17
|
/** The color palette for the tag background */
|
|
18
18
|
palette: import("@angular/core").InputSignal<Colors[]>;
|
|
19
19
|
/** Reference to a tag which can be used for editing existing tags */
|
|
20
|
-
|
|
20
|
+
/** @ignore */
|
|
21
|
+
selectedTag: import("@angular/core").WritableSignal<Tag | null>;
|
|
21
22
|
/** If true - all the letters will be transformed to lowercase */
|
|
22
23
|
lowercase: import("@angular/core").InputSignal<boolean>;
|
|
23
24
|
/** Total number of characters that can be in input field */
|
|
24
25
|
maxlength: import("@angular/core").InputSignal<number>;
|
|
25
26
|
/** If true - only alphanumeric characters are allowed */
|
|
26
27
|
alphanumeric: import("@angular/core").InputSignal<boolean>;
|
|
27
|
-
/** Event emitted when a tag is created */
|
|
28
|
-
tagCreated: EventEmitter<Tag>;
|
|
29
|
-
/** Event emitted when an existing tag has been updated */
|
|
30
|
-
tagUpdated: EventEmitter<Tag>;
|
|
31
28
|
/** @ignore */
|
|
32
29
|
form: FormGroup;
|
|
33
30
|
/** @ignore */
|
|
@@ -39,9 +36,11 @@ export declare class AdsCreateTagComponent implements OnChanges, OnDestroy {
|
|
|
39
36
|
* NOTE: default positioning is not optimal
|
|
40
37
|
* NOTE: if none of the positions fits - overlay will be positioned automatically
|
|
41
38
|
*/
|
|
42
|
-
positions:
|
|
39
|
+
positions: ConnectedPosition[];
|
|
40
|
+
/** @ignore */
|
|
41
|
+
addInput?: ElementRef;
|
|
43
42
|
/** @ignore */
|
|
44
|
-
|
|
43
|
+
editInput?: ElementRef;
|
|
45
44
|
/** @ignore */
|
|
46
45
|
private tagControlSubscription?;
|
|
47
46
|
/** @ignore */
|
|
@@ -80,6 +79,14 @@ export declare class AdsCreateTagComponent implements OnChanges, OnDestroy {
|
|
|
80
79
|
private trimTagName;
|
|
81
80
|
/** @ignore */
|
|
82
81
|
getBackgroundColor(color: string): string;
|
|
82
|
+
/** @ignore */
|
|
83
|
+
onTagUpdated(tag: Tag): void;
|
|
84
|
+
/** @ignore */
|
|
85
|
+
onTagCreated(tag: Tag): void;
|
|
86
|
+
/** @ignore */
|
|
87
|
+
onTagSelect(tag: Tag): void;
|
|
88
|
+
/** @ignore */
|
|
89
|
+
onTagRemove(id: string): void;
|
|
83
90
|
static ɵfac: i0.ɵɵFactoryDeclaration<AdsCreateTagComponent, never>;
|
|
84
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AdsCreateTagComponent, "ads-create-tag", never, { "limit": { "alias": "limit"; "required": false; "isSignal": true; }; "tags": { "alias": "tags"; "required": false;
|
|
91
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AdsCreateTagComponent, "ads-create-tag", never, { "limit": { "alias": "limit"; "required": false; "isSignal": true; }; "tags": { "alias": "tags"; "required": false; }; "palette": { "alias": "palette"; "required": false; "isSignal": true; }; "lowercase": { "alias": "lowercase"; "required": false; "isSignal": true; }; "maxlength": { "alias": "maxlength"; "required": false; "isSignal": true; }; "alphanumeric": { "alias": "alphanumeric"; "required": false; "isSignal": true; }; }, {}, never, never, false, never>;
|
|
85
92
|
}
|
|
@@ -7,8 +7,10 @@ import * as i5 from "@angular/forms";
|
|
|
7
7
|
import * as i6 from "@ascentgl/ads-icons";
|
|
8
8
|
import * as i7 from "../../buttons/button/button.module";
|
|
9
9
|
import * as i8 from "@jsverse/transloco";
|
|
10
|
+
import * as i9 from "../tag-container/tag-container.module";
|
|
11
|
+
import * as i10 from "../tag/tag.module";
|
|
10
12
|
export declare class AdsCreateTagModule {
|
|
11
13
|
static ɵfac: i0.ɵɵFactoryDeclaration<AdsCreateTagModule, never>;
|
|
12
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<AdsCreateTagModule, [typeof i1.AdsCreateTagComponent], [typeof i2.CommonModule, typeof i3.MatButtonModule, typeof i4.OverlayModule, typeof i5.ReactiveFormsModule, typeof i6.AdsIconModule, typeof i7.AdsButtonModule, typeof i8.TranslocoPipe], [typeof i1.AdsCreateTagComponent]>;
|
|
14
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AdsCreateTagModule, [typeof i1.AdsCreateTagComponent], [typeof i2.CommonModule, typeof i3.MatButtonModule, typeof i4.OverlayModule, typeof i5.ReactiveFormsModule, typeof i6.AdsIconModule, typeof i7.AdsButtonModule, typeof i8.TranslocoPipe, typeof i9.AdsTagContainerModule, typeof i10.AdsTagModule], [typeof i1.AdsCreateTagComponent]>;
|
|
13
15
|
static ɵinj: i0.ɵɵInjectorDeclaration<AdsCreateTagModule>;
|
|
14
16
|
}
|
|
@@ -30,5 +30,5 @@ export declare class AdsTagComponent {
|
|
|
30
30
|
/** @ignore */
|
|
31
31
|
getTextColor(): string;
|
|
32
32
|
static ɵfac: i0.ɵɵFactoryDeclaration<AdsTagComponent, never>;
|
|
33
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AdsTagComponent, "ads-tag", never, { "color": { "alias": "color"; "required": true; "isSignal": true; }; "id": { "alias": "id"; "required": true; "isSignal": true; }; "removable": { "alias": "removable"; "required": false; "isSignal": true; }; "tag": { "alias": "tag"; "required": true; "isSignal": true; }; }, { "remove": "remove"; "selected": "selected"; }, never,
|
|
33
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<AdsTagComponent, "ads-tag", never, { "color": { "alias": "color"; "required": true; "isSignal": true; }; "id": { "alias": "id"; "required": true; "isSignal": true; }; "removable": { "alias": "removable"; "required": false; "isSignal": true; }; "tag": { "alias": "tag"; "required": true; "isSignal": true; }; }, { "remove": "remove"; "selected": "selected"; }, never, ["*"], false, never>;
|
|
34
34
|
}
|