@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/esm2022/index.mjs
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,6 +51,8 @@ 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';
|
|
68
|
-
|
|
57
|
+
export * from './lib/components/steppers/stepper';
|
|
58
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9saWJzL2Fkcy11aS9zcmMvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyx5QkFBeUIsQ0FBQztBQUN4QyxjQUFjLHdCQUF3QixDQUFDO0FBQ3ZDLGNBQWMsNkJBQTZCLENBQUM7QUFDNUMsY0FBYyxpQ0FBaUMsQ0FBQztBQUNoRCxjQUFjLDJDQUEyQyxDQUFDO0FBQzFELGNBQWMsdUJBQXVCLENBQUM7QUFDdEMsY0FBYyxrQ0FBa0MsQ0FBQztBQUNqRCxjQUFjLDBCQUEwQixDQUFDO0FBQ3pDLGNBQWMscUNBQXFDLENBQUM7QUFDcEQsY0FBYyw2QkFBNkIsQ0FBQztBQUM1QyxjQUFjLDZDQUE2QyxDQUFDO0FBQzVELGNBQWMseUJBQXlCLENBQUM7QUFDeEMsY0FBYyxtQ0FBbUMsQ0FBQztBQUNsRCxjQUFjLHlCQUF5QixDQUFDO0FBQ3hDLGNBQWMsbUNBQW1DLENBQUM7QUFDbEQsY0FBYyxzQ0FBc0MsQ0FBQztBQUNyRCxjQUFjLHNDQUFzQyxDQUFDO0FBQ3JELGNBQWMsNkJBQTZCLENBQUM7QUFDNUMsY0FBYyxvQ0FBb0MsQ0FBQztBQUNuRCxjQUFjLG1DQUFtQyxDQUFDO0FBQ2xELGNBQWMsbURBQW1ELENBQUM7QUFDbEUsY0FBYyx1REFBdUQsQ0FBQztBQUN0RSxjQUFjLGlFQUFpRSxDQUFDO0FBQ2hGLGNBQWMsK0JBQStCLENBQUM7QUFDOUMsY0FBYyw4QkFBOEIsQ0FBQztBQUM3QyxjQUFjLDJCQUEyQixDQUFDO0FBQzFDLGNBQWMscUNBQXFDLENBQUM7QUFDcEQsY0FBYyxpREFBaUQsQ0FBQztBQUNoRSxjQUFjLDhEQUE4RCxDQUFDO0FBQzdFLGNBQWMsb0NBQW9DLENBQUM7QUFDbkQsY0FBYyxtQ0FBbUMsQ0FBQztBQUNsRCxjQUFjLHVEQUF1RCxDQUFDO0FBQ3RFLGNBQWMsNERBQTRELENBQUM7QUFDM0UsY0FBYyx5REFBeUQsQ0FBQztBQUN4RSxjQUFjLHNEQUFzRCxDQUFDO0FBQ3JFLGNBQWMsMERBQTBELENBQUM7QUFDekUsY0FBYyxzREFBc0QsQ0FBQztBQUNyRSxjQUFjLHdEQUF3RCxDQUFDO0FBQ3ZFLGNBQWMsNERBQTRELENBQUM7QUFDM0UsY0FBYyw0REFBNEQsQ0FBQztBQUMzRSxjQUFjLHNEQUFzRCxDQUFDO0FBQ3JFLGNBQWMsNENBQTRDLENBQUM7QUFDM0QsY0FBYyxxQ0FBcUMsQ0FBQztBQUNwRCxjQUFjLDBDQUEwQyxDQUFDO0FBQ3pELGNBQWMsc0NBQXNDLENBQUM7QUFDckQsY0FBYyxrRkFBa0YsQ0FBQztBQUNqRyxjQUFjLHdCQUF3QixDQUFDO0FBQ3ZDLGNBQWMsd0JBQXdCLENBQUM7QUFDdkMsY0FBYyx1QkFBdUIsQ0FBQztBQUN0QyxjQUFjLGtDQUFrQyxDQUFDO0FBQ2pELGNBQWMsd0JBQXdCLENBQUM7QUFDdkMsY0FBYyxtQ0FBbUMsQ0FBQztBQUNsRCxjQUFjLHVDQUF1QyxDQUFDO0FBQ3RELGNBQWMsNENBQTRDLENBQUM7QUFDM0QsY0FBYywyQ0FBMkMsQ0FBQztBQUMxRCxjQUFjLDRDQUE0QyxDQUFDO0FBQzNELGNBQWMsbUNBQW1DLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tICcuL2xpYi9jb21wb25lbnRzL2F2YXRhcic7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9jb21wb25lbnRzL2JhZGdlJztcbmV4cG9ydCAqIGZyb20gJy4vbGliL2NvbXBvbmVudHMvYnJlYWRjcnVtYic7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9jb21wb25lbnRzL2J1dHRvbnMvYnV0dG9uJztcbmV4cG9ydCAqIGZyb20gJy4vbGliL2NvbXBvbmVudHMvYnV0dG9ucy9idXR0b24tY29udGFpbmVyJztcbmV4cG9ydCAqIGZyb20gJy4vbGliL2NvbXBvbmVudHMvY2FyZCc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9jb21wb25lbnRzL3RhZ3MvY3JlYXRlLXRhZyc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9jb21wb25lbnRzL2RpdmlkZXInO1xuZXhwb3J0ICogZnJvbSAnLi9saWIvY29tcG9uZW50cy9kcmFnLWFuZC1kcm9wLWxpc3QnO1xuZXhwb3J0ICogZnJvbSAnLi9saWIvY29tcG9uZW50cy9lcnJvci1wYWdlJztcbmV4cG9ydCAqIGZyb20gJy4vbGliL2NvbXBvbmVudHMvZXJyb3ItcGFnZS9lcnJvci1wYWdlLWNvZGUnO1xuZXhwb3J0ICogZnJvbSAnLi9saWIvY29tcG9uZW50cy9mb290ZXInO1xuZXhwb3J0ICogZnJvbSAnLi9saWIvY29tcG9uZW50cy9mb290ZXIvY29udGFpbmVyJztcbmV4cG9ydCAqIGZyb20gJy4vbGliL2NvbXBvbmVudHMvaGVhZGVyJztcbmV4cG9ydCAqIGZyb20gJy4vbGliL2NvbXBvbmVudHMvaGVhZGVyL2NvbnRhaW5lcic7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9jb21wb25lbnRzL2J1dHRvbnMvaWNvbi1idXR0b24nO1xuZXhwb3J0ICogZnJvbSAnLi9saWIvY29tcG9uZW50cy9idXR0b25zL2xpbmstYnV0dG9uJztcbmV4cG9ydCAqIGZyb20gJy4vbGliL2NvbXBvbmVudHMvaWNvbi1ob3Zlcic7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9jb21wb25lbnRzL2xvZ28vcHJpbWFyeS1sb2dvJztcbmV4cG9ydCAqIGZyb20gJy4vbGliL2NvbXBvbmVudHMvbG9nby9hc2NlbnQtbG9nbyc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9jb21wb25lbnRzL3Byb2dyZXNzLWluZGljYXRvcnMvcHJvZ3Jlc3MtYmFyJztcbmV4cG9ydCAqIGZyb20gJy4vbGliL2NvbXBvbmVudHMvcHJvZ3Jlc3MtaW5kaWNhdG9ycy9wcm9ncmVzcy1zcGlubmVyJztcbmV4cG9ydCAqIGZyb20gJy4vbGliL2NvbXBvbmVudHMvcHJvZ3Jlc3MtaW5kaWNhdG9ycy9wcm9ncmVzcy1pbmRpY2F0b3Itc3Bpbm5lcic7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9jb21wb25lbnRzL3NoZWxsLWxheW91dCc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9jb21wb25lbnRzL3NwbGFzaC1wYWdlJztcbmV4cG9ydCAqIGZyb20gJy4vbGliL2NvbXBvbmVudHMvdGFncy90YWcnO1xuZXhwb3J0ICogZnJvbSAnLi9saWIvY29tcG9uZW50cy90YWdzL3RhZy1jb250YWluZXInO1xuZXhwb3J0ICogZnJvbSAnLi9saWIvY29tcG9uZW50cy9mb3JtLWZpZWxkcy9kcm9wZG93bnMvZHJvcGRvd24nO1xuZXhwb3J0ICogZnJvbSAnLi9saWIvY29tcG9uZW50cy9mb3JtLWZpZWxkcy9kcm9wZG93bnMvbXVsdGktc2VsZWN0LWRyb3Bkb3duJztcbmV4cG9ydCAqIGZyb20gJy4vbGliL2NvbXBvbmVudHMvZm9ybS1maWVsZHMvaW5wdXQnO1xuZXhwb3J0ICogZnJvbSAnLi9saWIvY29tcG9uZW50cy9mb3JtLWZpZWxkcy9hcmVhJztcbmV4cG9ydCAqIGZyb20gJy4vbGliL2NvbXBvbmVudHMvZm9ybS1maWVsZHMvZHJvcGRvd25zL2lucHV0LWRyb3Bkb3duJztcbmV4cG9ydCAqIGZyb20gJy4vbGliL2NvbXBvbmVudHMvZm9ybS1maWVsZHMvc2VhcmNoLWZpZWxkcy9zZWFyY2gtZHJvcGRvd24nO1xuZXhwb3J0ICogZnJvbSAnLi9saWIvY29tcG9uZW50cy9mb3JtLWZpZWxkcy9zZWFyY2gtZmllbGRzL3NlYXJjaC1pbnB1dCc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9jb21wb25lbnRzL2Zvcm0tZmllbGRzL2RhdGVwaWNrZXJzL2RhdGUtcGlja2VyJztcbmV4cG9ydCAqIGZyb20gJy4vbGliL2NvbXBvbmVudHMvZm9ybS1maWVsZHMvZGF0ZXBpY2tlcnMvZGF0ZXRpbWUtcGlja2VyJztcbmV4cG9ydCAqIGZyb20gJy4vbGliL2NvbXBvbmVudHMvZm9ybS1maWVsZHMvZGF0ZXBpY2tlcnMvdGltZS1waWNrZXInO1xuZXhwb3J0ICogZnJvbSAnLi9saWIvY29tcG9uZW50cy9mb3JtLWZpZWxkcy9zZWxlY3Rpb24tZmllbGRzL2NoZWNrYm94JztcbmV4cG9ydCAqIGZyb20gJy4vbGliL2NvbXBvbmVudHMvZm9ybS1maWVsZHMvc2VsZWN0aW9uLWZpZWxkcy9yYWRpby1idXR0b24nO1xuZXhwb3J0ICogZnJvbSAnLi9saWIvY29tcG9uZW50cy9mb3JtLWZpZWxkcy9zZWxlY3Rpb24tZmllbGRzL3NsaWRlLXRvZ2dsZSc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9jb21wb25lbnRzL2Zvcm0tZmllbGRzL3NlbGVjdGlvbi1maWVsZHMvc2xpZGVyJztcbmV4cG9ydCAqIGZyb20gJy4vbGliL2NvbXBvbmVudHMvc25hY2tiYXJzL2lubGluZS1zbmFja2Jhcic7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9jb21wb25lbnRzL3NuYWNrYmFycy9zbmFja2Jhcic7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9zZXJ2aWNlcy92aWV3cG9ydC92aWV3cG9ydC5zZXJ2aWNlJztcbmV4cG9ydCAqIGZyb20gJy4vbGliL3NlcnZpY2VzL3dpbmRvdy93aW5kb3cuc2VydmljZSc7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9jb21wb25lbnRzL2Zvcm0tZmllbGRzL2RhdGVwaWNrZXJzL2RhdGV0aW1lLXBpY2tlci9jdXN0b20tZGF0ZXRpbWUuYWRhcHRlcic7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9jb21wb25lbnRzL21vZGFsJztcbmV4cG9ydCAqIGZyb20gJy4vbGliL2NvbXBvbmVudHMvYmFkZ2UnO1xuZXhwb3J0ICogZnJvbSAnLi9saWIvY29tcG9uZW50cy9jaGlwJztcbmV4cG9ydCAqIGZyb20gJy4vbGliL2NvbXBvbmVudHMvZXhwYW5zaW9uLXBhbmVsJztcbmV4cG9ydCAqIGZyb20gJy4vbGliL2NvbXBvbmVudHMvdGFibGUnO1xuZXhwb3J0ICogZnJvbSAnLi9saWIvY29tcG9uZW50cy9uYXYtYmFyL25hdi1tZW51JztcbmV4cG9ydCAqIGZyb20gJy4vbGliL2NvbXBvbmVudHMvbmF2LWJhci9zaWRlLW5hdi1iYXInO1xuZXhwb3J0ICogZnJvbSAnLi9saWIvY29tcG9uZW50cy9uYXYtYmFyL3NjbXMtc2lkZS1uYXYtYmFyJztcbmV4cG9ydCAqIGZyb20gJy4vbGliL2NvbXBvbmVudHMvc3RlcHBlcnMvbnVtZXJpYy1zdGVwcGVyJztcbmV4cG9ydCAqIGZyb20gJy4vbGliL2NvbXBvbmVudHMvc3RlcHBlcnMvdmVydGljYWwtc3RlcHBlcic7XG5leHBvcnQgKiBmcm9tICcuL2xpYi9jb21wb25lbnRzL3N0ZXBwZXJzL3N0ZXBwZXInO1xuIl19
|
|
@@ -18,8 +18,6 @@ export class AdsBreadcrumbComponent {
|
|
|
18
18
|
this.listRef = viewChild('list');
|
|
19
19
|
/** provide an array of breadcrumbs of Breadcrumb<T> type */
|
|
20
20
|
this.breadcrumbs = input.required();
|
|
21
|
-
/** set to "true" to show sequence number for every breadcrumb */
|
|
22
|
-
this.showNumber = input(false);
|
|
23
21
|
this.registry.register([adsIconChevronLeft, adsIconChevronRight]);
|
|
24
22
|
}
|
|
25
23
|
/** @ignore */
|
|
@@ -50,13 +48,13 @@ export class AdsBreadcrumbComponent {
|
|
|
50
48
|
this.visualProcessor?.onScrollRight();
|
|
51
49
|
}
|
|
52
50
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsBreadcrumbComponent, deps: [{ token: i1.AdsIconRegistry }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
53
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.1.1", type: AdsBreadcrumbComponent, selector: "ads-breadcrumb", inputs: { breadcrumbs: { classPropertyName: "breadcrumbs", publicName: "breadcrumbs", isSignal: true, isRequired: true, transformFunction: null }
|
|
51
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.1.1", type: AdsBreadcrumbComponent, selector: "ads-breadcrumb", inputs: { breadcrumbs: { classPropertyName: "breadcrumbs", publicName: "breadcrumbs", isSignal: true, isRequired: true, transformFunction: null } }, host: { listeners: { "window:resize": "resize()" } }, viewQueries: [{ propertyName: "containerRef", first: true, predicate: ["container"], descendants: true, isSignal: true }, { propertyName: "listRef", first: true, predicate: ["list"], descendants: true, isSignal: true }], usesOnChanges: true, ngImport: i0, template: "@if (breadcrumbs().length > 1 && visualProcessor?.canScrollLeft()) {\n <div class=\"scroller-wrapper\">\n <ads-icon-button [type]=\"'button'\" class=\"scroller left\" [theme]=\"'white'\" (click)=\"scrollLeft()\">\n <ads-icon [name]=\"'chevron_left'\" [size]=\"'xxxs'\" [theme]=\"'primary'\" />\n </ads-icon-button>\n </div>\n}\n<div\n class=\"container\"\n #container\n [ngClass]=\"{\n 'can-scroll-left': visualProcessor?.canScrollLeft(),\n 'can-scroll-right': visualProcessor?.canScrollRight(),\n }\"\n>\n <div class=\"list\" #list>\n @for (breadcrumb of breadcrumbs(); track $index) {\n <div\n class=\"breadcrumb\"\n (click)=\"!breadcrumb.active ? onClick(breadcrumb) : null\"\n [ngClass]=\"{ active: breadcrumb.active }\"\n >\n <span class=\"label-primary\">{{ breadcrumb.primaryLabel }}</span>\n </div>\n @if (!$last) {\n <ads-icon class=\"separator\" [name]=\"'chevron_right'\" [size]=\"'xxxxs'\" />\n }\n }\n </div>\n</div>\n@if (breadcrumbs().length > 1 && visualProcessor?.canScrollRight()) {\n <div class=\"scroller-wrapper right\">\n <ads-icon-button class=\"scroller\" [theme]=\"'white'\" (click)=\"scrollRight()\">\n <ads-icon [name]=\"'chevron_right'\" [size]=\"'xxxs'\" [theme]=\"'primary'\" />\n </ads-icon-button>\n </div>\n}\n", styles: [":host{display:flex;align-items:center;position:relative;min-width:192px;height:24px}.container{display:flex;overflow:hidden;position:relative}.container.can-scroll-left{mask:linear-gradient(to right,transparent 28px,black 72px)}.container.can-scroll-right{mask:linear-gradient(to left,transparent 28px,black 72px)}.container.can-scroll-left.can-scroll-right{mask:linear-gradient(to right,transparent 28px,black 72px,black calc(100% - 72px),transparent calc(100% - 28px))}.scroller-wrapper{position:absolute;top:50%;transform:translateY(-50%);z-index:1;width:32px;display:flex}.scroller-wrapper.left{left:0;justify-content:flex-start}.scroller-wrapper.right{right:0;justify-content:flex-end}.scroller{cursor:pointer}.scroller:hover ::ng-deep button{transition:box-shadow linear .1s;box-shadow:0 3px 3px #6c49ac40}.scroller ::ng-deep button{width:24px;height:24px;box-shadow:0 3px 3px #6c49ac1a}.list{display:flex;align-items:center;gap:12px;white-space:nowrap;position:relative;left:0}.list .separator{fill:var(--color-dark-50)}.list .breadcrumb{padding:4px;color:var(--color-link);cursor:pointer;font-size:12px;font-weight:400;line-height:12px;border-radius:5px}.list .breadcrumb:not(.active):hover{color:var(--color-link-hover);background-color:var(--color-light-30)}.list .breadcrumb:not(.active):active{color:var(--color-link-pressed);background-color:var(--color-light)}.list .breadcrumb.active{color:var(--color-dark);cursor:default}\n"], dependencies: [{ kind: "directive", type: i2.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "component", type: i1.AdsIconComponent, selector: "ads-icon", inputs: ["size", "name", "color", "theme", "stroke"] }, { kind: "component", type: i3.AdsIconButtonComponent, selector: "ads-icon-button", inputs: ["ariaLabel", "id", "theme", "disabled", "type"] }] }); }
|
|
54
52
|
}
|
|
55
53
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsBreadcrumbComponent, decorators: [{
|
|
56
54
|
type: Component,
|
|
57
|
-
args: [{ selector: 'ads-breadcrumb', template: "@if (breadcrumbs().length > 1 && visualProcessor?.canScrollLeft()) {\n <div class=\"scroller-wrapper\">\n <ads-icon-button [type]=\"'button'\" class=\"scroller left\" [theme]=\"'white'\" (click)=\"scrollLeft()\">\n <ads-icon [name]=\"'chevron_left'\" [size]=\"'xxxs'\" [theme]=\"'primary'\" />\n </ads-icon-button>\n </div>\n}\n<div\n class=\"container\"\n #container\n [ngClass]=\"{\n 'can-scroll-left': visualProcessor?.canScrollLeft(),\n 'can-scroll-right': visualProcessor?.canScrollRight(),\n }\"\n>\n <div class=\"list\" #list>\n @for (breadcrumb of breadcrumbs(); track $index) {\n <div\n class=\"breadcrumb\"\n (click)=\"!breadcrumb.active ? onClick(breadcrumb) : null\"\n [ngClass]=\"{ active: breadcrumb.active
|
|
55
|
+
args: [{ selector: 'ads-breadcrumb', template: "@if (breadcrumbs().length > 1 && visualProcessor?.canScrollLeft()) {\n <div class=\"scroller-wrapper\">\n <ads-icon-button [type]=\"'button'\" class=\"scroller left\" [theme]=\"'white'\" (click)=\"scrollLeft()\">\n <ads-icon [name]=\"'chevron_left'\" [size]=\"'xxxs'\" [theme]=\"'primary'\" />\n </ads-icon-button>\n </div>\n}\n<div\n class=\"container\"\n #container\n [ngClass]=\"{\n 'can-scroll-left': visualProcessor?.canScrollLeft(),\n 'can-scroll-right': visualProcessor?.canScrollRight(),\n }\"\n>\n <div class=\"list\" #list>\n @for (breadcrumb of breadcrumbs(); track $index) {\n <div\n class=\"breadcrumb\"\n (click)=\"!breadcrumb.active ? onClick(breadcrumb) : null\"\n [ngClass]=\"{ active: breadcrumb.active }\"\n >\n <span class=\"label-primary\">{{ breadcrumb.primaryLabel }}</span>\n </div>\n @if (!$last) {\n <ads-icon class=\"separator\" [name]=\"'chevron_right'\" [size]=\"'xxxxs'\" />\n }\n }\n </div>\n</div>\n@if (breadcrumbs().length > 1 && visualProcessor?.canScrollRight()) {\n <div class=\"scroller-wrapper right\">\n <ads-icon-button class=\"scroller\" [theme]=\"'white'\" (click)=\"scrollRight()\">\n <ads-icon [name]=\"'chevron_right'\" [size]=\"'xxxs'\" [theme]=\"'primary'\" />\n </ads-icon-button>\n </div>\n}\n", styles: [":host{display:flex;align-items:center;position:relative;min-width:192px;height:24px}.container{display:flex;overflow:hidden;position:relative}.container.can-scroll-left{mask:linear-gradient(to right,transparent 28px,black 72px)}.container.can-scroll-right{mask:linear-gradient(to left,transparent 28px,black 72px)}.container.can-scroll-left.can-scroll-right{mask:linear-gradient(to right,transparent 28px,black 72px,black calc(100% - 72px),transparent calc(100% - 28px))}.scroller-wrapper{position:absolute;top:50%;transform:translateY(-50%);z-index:1;width:32px;display:flex}.scroller-wrapper.left{left:0;justify-content:flex-start}.scroller-wrapper.right{right:0;justify-content:flex-end}.scroller{cursor:pointer}.scroller:hover ::ng-deep button{transition:box-shadow linear .1s;box-shadow:0 3px 3px #6c49ac40}.scroller ::ng-deep button{width:24px;height:24px;box-shadow:0 3px 3px #6c49ac1a}.list{display:flex;align-items:center;gap:12px;white-space:nowrap;position:relative;left:0}.list .separator{fill:var(--color-dark-50)}.list .breadcrumb{padding:4px;color:var(--color-link);cursor:pointer;font-size:12px;font-weight:400;line-height:12px;border-radius:5px}.list .breadcrumb:not(.active):hover{color:var(--color-link-hover);background-color:var(--color-light-30)}.list .breadcrumb:not(.active):active{color:var(--color-link-pressed);background-color:var(--color-light)}.list .breadcrumb.active{color:var(--color-dark);cursor:default}\n"] }]
|
|
58
56
|
}], ctorParameters: () => [{ type: i1.AdsIconRegistry }, { type: i0.ChangeDetectorRef }], propDecorators: { resize: [{
|
|
59
57
|
type: HostListener,
|
|
60
58
|
args: ['window:resize']
|
|
61
59
|
}] } });
|
|
62
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
60
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYnJlYWRjcnVtYi5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL2Fkcy11aS9zcmMvbGliL2NvbXBvbmVudHMvYnJlYWRjcnVtYi9icmVhZGNydW1iLmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvYWRzLXVpL3NyYy9saWIvY29tcG9uZW50cy9icmVhZGNydW1iL2JyZWFkY3J1bWIuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUVMLGlCQUFpQixFQUNqQixTQUFTLEVBRVQsWUFBWSxFQUNaLEtBQUssRUFHTCxTQUFTLEdBQ1YsTUFBTSxlQUFlLENBQUM7QUFDdkIsT0FBTyxFQUFFLGVBQWUsRUFBRSxNQUFNLHFCQUFxQixDQUFDO0FBQ3RELE9BQU8sRUFBRSxrQkFBa0IsRUFBRSxtQkFBbUIsRUFBRSxNQUFNLDJCQUEyQixDQUFDO0FBRXBGLE9BQU8sRUFBRSx5QkFBeUIsRUFBRSxNQUFNLCtCQUErQixDQUFDO0FBQzFFLE9BQU8sRUFBRSxhQUFhLEVBQUUsTUFBTSxNQUFNLENBQUM7Ozs7O0FBT3JDLE1BQU0sT0FBTyxzQkFBc0I7SUFhakMsY0FBYztJQUNkLFlBQ1UsUUFBeUIsRUFDekIsR0FBc0I7UUFEdEIsYUFBUSxHQUFSLFFBQVEsQ0FBaUI7UUFDekIsUUFBRyxHQUFILEdBQUcsQ0FBbUI7UUFmaEMsY0FBYztRQUNkLGlCQUFZLEdBQUcsU0FBUyxDQUFhLFdBQVcsQ0FBQyxDQUFDO1FBRWxELGNBQWM7UUFDZCxZQUFPLEdBQUcsU0FBUyxDQUFhLE1BQU0sQ0FBQyxDQUFDO1FBRXhDLDREQUE0RDtRQUM1RCxnQkFBVyxHQUFHLEtBQUssQ0FBQyxRQUFRLEVBQW1CLENBQUM7UUFVOUMsSUFBSSxDQUFDLFFBQVEsQ0FBQyxRQUFRLENBQUMsQ0FBQyxrQkFBa0IsRUFBRSxtQkFBbUIsQ0FBQyxDQUFDLENBQUM7SUFDcEUsQ0FBQztJQUVELGNBQWM7SUFDZCxXQUFXLENBQUMsT0FBc0M7UUFDaEQsSUFBSSxPQUFPLENBQUMsV0FBVyxJQUFJLENBQUMsT0FBTyxDQUFDLFdBQVcsQ0FBQyxhQUFhLEVBQUUsRUFBRSxDQUFDO1lBQ2hFLGFBQWEsQ0FBQyxRQUFRLENBQUMsR0FBRyxFQUFFLENBQUMsSUFBSSxDQUFDLGVBQWUsRUFBRSxjQUFjLEVBQUUsQ0FBQyxDQUFDO1FBQ3ZFLENBQUM7SUFDSCxDQUFDO0lBRUQsY0FBYztJQUNkLGVBQWU7UUFDYixJQUFJLENBQUMsZUFBZSxHQUFHLElBQUkseUJBQXlCLENBQ2xELElBQUksQ0FBQyxZQUFZLEVBQUUsRUFBRSxhQUFhLEVBQ2xDLElBQUksQ0FBQyxPQUFPLEVBQUUsRUFBRSxhQUFhLENBQzlCLENBQUM7UUFFRixJQUFJLENBQUMsR0FBRyxDQUFDLGFBQWEsRUFBRSxDQUFDO0lBQzNCLENBQUM7SUFFRCxjQUFjO0lBQ2lCLE1BQU07UUFDbkMsSUFBSSxDQUFDLGVBQWUsRUFBRSxjQUFjLEVBQUUsQ0FBQztJQUN6QyxDQUFDO0lBRUQsY0FBYztJQUNkLE9BQU8sQ0FBQyxVQUF5QjtRQUMvQixVQUFVLENBQUMsUUFBUSxDQUFDLFVBQVUsQ0FBQyxPQUFPLENBQUMsQ0FBQztJQUMxQyxDQUFDO0lBRUQsY0FBYztJQUNkLFVBQVU7UUFDUixJQUFJLENBQUMsZUFBZSxFQUFFLFlBQVksRUFBRSxDQUFDO0lBQ3ZDLENBQUM7SUFFRCxjQUFjO0lBQ2QsV0FBVztRQUNULElBQUksQ0FBQyxlQUFlLEVBQUUsYUFBYSxFQUFFLENBQUM7SUFDeEMsQ0FBQzs4R0F4RFUsc0JBQXNCO2tHQUF0QixzQkFBc0IsbWZDdEJuQyxxMENBcUNBOzsyRkRmYSxzQkFBc0I7a0JBTGxDLFNBQVM7K0JBQ0UsZ0JBQWdCO29IQTJDSyxNQUFNO3NCQUFwQyxZQUFZO3VCQUFDLGVBQWUiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge1xuICBBZnRlclZpZXdJbml0LFxuICBDaGFuZ2VEZXRlY3RvclJlZixcbiAgQ29tcG9uZW50LFxuICBFbGVtZW50UmVmLFxuICBIb3N0TGlzdGVuZXIsXG4gIGlucHV0LFxuICBPbkNoYW5nZXMsXG4gIFNpbXBsZUNoYW5nZSxcbiAgdmlld0NoaWxkLFxufSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IEFkc0ljb25SZWdpc3RyeSB9IGZyb20gJ0Bhc2NlbnRnbC9hZHMtaWNvbnMnO1xuaW1wb3J0IHsgYWRzSWNvbkNoZXZyb25MZWZ0LCBhZHNJY29uQ2hldnJvblJpZ2h0IH0gZnJvbSAnQGFzY2VudGdsL2Fkcy1pY29ucy9pY29ucyc7XG5pbXBvcnQgeyBCcmVhZGNydW1iIH0gZnJvbSAnLi9icmVhZGNydW1iLnR5cGUnO1xuaW1wb3J0IHsgQnJlYWRjcnVtYlZpc3VhbFByb2Nlc3NvciB9IGZyb20gJy4vYnJlYWRjcnVtYi52aXN1YWwtcHJvY2Vzc29yJztcbmltcG9ydCB7IGFzYXBTY2hlZHVsZXIgfSBmcm9tICdyeGpzJztcblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAnYWRzLWJyZWFkY3J1bWInLFxuICB0ZW1wbGF0ZVVybDogJy4vYnJlYWRjcnVtYi5jb21wb25lbnQuaHRtbCcsXG4gIHN0eWxlVXJsczogWycuL2JyZWFkY3J1bWIuY29tcG9uZW50LnNjc3MnXSxcbn0pXG5leHBvcnQgY2xhc3MgQWRzQnJlYWRjcnVtYkNvbXBvbmVudDxUPiBpbXBsZW1lbnRzIE9uQ2hhbmdlcywgQWZ0ZXJWaWV3SW5pdCB7XG4gIC8qKiBAaWdub3JlICovXG4gIGNvbnRhaW5lclJlZiA9IHZpZXdDaGlsZDxFbGVtZW50UmVmPignY29udGFpbmVyJyk7XG5cbiAgLyoqIEBpZ25vcmUgKi9cbiAgbGlzdFJlZiA9IHZpZXdDaGlsZDxFbGVtZW50UmVmPignbGlzdCcpO1xuXG4gIC8qKiBwcm92aWRlIGFuIGFycmF5IG9mIGJyZWFkY3J1bWJzIG9mIEJyZWFkY3J1bWI8VD4gdHlwZSAqL1xuICBicmVhZGNydW1icyA9IGlucHV0LnJlcXVpcmVkPEJyZWFkY3J1bWI8VD5bXT4oKTtcblxuICAvKiogQGlnbm9yZSAqL1xuICB2aXN1YWxQcm9jZXNzb3I/OiBCcmVhZGNydW1iVmlzdWFsUHJvY2Vzc29yO1xuXG4gIC8qKiBAaWdub3JlICovXG4gIGNvbnN0cnVjdG9yKFxuICAgIHByaXZhdGUgcmVnaXN0cnk6IEFkc0ljb25SZWdpc3RyeSxcbiAgICBwcml2YXRlIGNkcjogQ2hhbmdlRGV0ZWN0b3JSZWYsXG4gICkge1xuICAgIHRoaXMucmVnaXN0cnkucmVnaXN0ZXIoW2Fkc0ljb25DaGV2cm9uTGVmdCwgYWRzSWNvbkNoZXZyb25SaWdodF0pO1xuICB9XG5cbiAgLyoqIEBpZ25vcmUgKi9cbiAgbmdPbkNoYW5nZXMoY2hhbmdlczogeyBicmVhZGNydW1iczogU2ltcGxlQ2hhbmdlIH0pOiB2b2lkIHtcbiAgICBpZiAoY2hhbmdlcy5icmVhZGNydW1icyAmJiAhY2hhbmdlcy5icmVhZGNydW1icy5pc0ZpcnN0Q2hhbmdlKCkpIHtcbiAgICAgIGFzYXBTY2hlZHVsZXIuc2NoZWR1bGUoKCkgPT4gdGhpcy52aXN1YWxQcm9jZXNzb3I/Lm9uV2luZG93UmVzaXplKCkpO1xuICAgIH1cbiAgfVxuXG4gIC8qKiBAaWdub3JlICovXG4gIG5nQWZ0ZXJWaWV3SW5pdCgpOiB2b2lkIHtcbiAgICB0aGlzLnZpc3VhbFByb2Nlc3NvciA9IG5ldyBCcmVhZGNydW1iVmlzdWFsUHJvY2Vzc29yKFxuICAgICAgdGhpcy5jb250YWluZXJSZWYoKT8ubmF0aXZlRWxlbWVudCxcbiAgICAgIHRoaXMubGlzdFJlZigpPy5uYXRpdmVFbGVtZW50LFxuICAgICk7XG5cbiAgICB0aGlzLmNkci5kZXRlY3RDaGFuZ2VzKCk7XG4gIH1cblxuICAvKiogQGlnbm9yZSAqL1xuICBASG9zdExpc3RlbmVyKCd3aW5kb3c6cmVzaXplJykgcmVzaXplKCk6IHZvaWQge1xuICAgIHRoaXMudmlzdWFsUHJvY2Vzc29yPy5vbldpbmRvd1Jlc2l6ZSgpO1xuICB9XG5cbiAgLyoqIEBpZ25vcmUgKi9cbiAgb25DbGljayhicmVhZGNydW1iOiBCcmVhZGNydW1iPFQ+KTogdm9pZCB7XG4gICAgYnJlYWRjcnVtYi5jYWxsYmFjayhicmVhZGNydW1iLnBheWxvYWQpO1xuICB9XG5cbiAgLyoqIEBpZ25vcmUgKi9cbiAgc2Nyb2xsTGVmdCgpOiB2b2lkIHtcbiAgICB0aGlzLnZpc3VhbFByb2Nlc3Nvcj8ub25TY3JvbGxMZWZ0KCk7XG4gIH1cblxuICAvKiogQGlnbm9yZSAqL1xuICBzY3JvbGxSaWdodCgpOiB2b2lkIHtcbiAgICB0aGlzLnZpc3VhbFByb2Nlc3Nvcj8ub25TY3JvbGxSaWdodCgpO1xuICB9XG59XG4iLCJAaWYgKGJyZWFkY3J1bWJzKCkubGVuZ3RoID4gMSAmJiB2aXN1YWxQcm9jZXNzb3I/LmNhblNjcm9sbExlZnQoKSkge1xuICA8ZGl2IGNsYXNzPVwic2Nyb2xsZXItd3JhcHBlclwiPlxuICAgIDxhZHMtaWNvbi1idXR0b24gW3R5cGVdPVwiJ2J1dHRvbidcIiBjbGFzcz1cInNjcm9sbGVyIGxlZnRcIiBbdGhlbWVdPVwiJ3doaXRlJ1wiIChjbGljayk9XCJzY3JvbGxMZWZ0KClcIj5cbiAgICAgIDxhZHMtaWNvbiBbbmFtZV09XCInY2hldnJvbl9sZWZ0J1wiIFtzaXplXT1cIid4eHhzJ1wiIFt0aGVtZV09XCIncHJpbWFyeSdcIiAvPlxuICAgIDwvYWRzLWljb24tYnV0dG9uPlxuICA8L2Rpdj5cbn1cbjxkaXZcbiAgY2xhc3M9XCJjb250YWluZXJcIlxuICAjY29udGFpbmVyXG4gIFtuZ0NsYXNzXT1cIntcbiAgICAnY2FuLXNjcm9sbC1sZWZ0JzogdmlzdWFsUHJvY2Vzc29yPy5jYW5TY3JvbGxMZWZ0KCksXG4gICAgJ2Nhbi1zY3JvbGwtcmlnaHQnOiB2aXN1YWxQcm9jZXNzb3I/LmNhblNjcm9sbFJpZ2h0KCksXG4gIH1cIlxuPlxuICA8ZGl2IGNsYXNzPVwibGlzdFwiICNsaXN0PlxuICAgIEBmb3IgKGJyZWFkY3J1bWIgb2YgYnJlYWRjcnVtYnMoKTsgdHJhY2sgJGluZGV4KSB7XG4gICAgICA8ZGl2XG4gICAgICAgIGNsYXNzPVwiYnJlYWRjcnVtYlwiXG4gICAgICAgIChjbGljayk9XCIhYnJlYWRjcnVtYi5hY3RpdmUgPyBvbkNsaWNrKGJyZWFkY3J1bWIpIDogbnVsbFwiXG4gICAgICAgIFtuZ0NsYXNzXT1cInsgYWN0aXZlOiBicmVhZGNydW1iLmFjdGl2ZSB9XCJcbiAgICAgID5cbiAgICAgICAgPHNwYW4gY2xhc3M9XCJsYWJlbC1wcmltYXJ5XCI+e3sgYnJlYWRjcnVtYi5wcmltYXJ5TGFiZWwgfX08L3NwYW4+XG4gICAgICA8L2Rpdj5cbiAgICAgIEBpZiAoISRsYXN0KSB7XG4gICAgICAgIDxhZHMtaWNvbiBjbGFzcz1cInNlcGFyYXRvclwiIFtuYW1lXT1cIidjaGV2cm9uX3JpZ2h0J1wiIFtzaXplXT1cIid4eHh4cydcIiAvPlxuICAgICAgfVxuICAgIH1cbiAgPC9kaXY+XG48L2Rpdj5cbkBpZiAoYnJlYWRjcnVtYnMoKS5sZW5ndGggPiAxICYmIHZpc3VhbFByb2Nlc3Nvcj8uY2FuU2Nyb2xsUmlnaHQoKSkge1xuICA8ZGl2IGNsYXNzPVwic2Nyb2xsZXItd3JhcHBlciByaWdodFwiPlxuICAgIDxhZHMtaWNvbi1idXR0b24gY2xhc3M9XCJzY3JvbGxlclwiIFt0aGVtZV09XCInd2hpdGUnXCIgKGNsaWNrKT1cInNjcm9sbFJpZ2h0KClcIj5cbiAgICAgIDxhZHMtaWNvbiBbbmFtZV09XCInY2hldnJvbl9yaWdodCdcIiBbc2l6ZV09XCIneHh4cydcIiBbdGhlbWVdPVwiJ3ByaW1hcnknXCIgLz5cbiAgICA8L2Fkcy1pY29uLWJ1dHRvbj5cbiAgPC9kaXY+XG59XG4iXX0=
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export {};
|
|
2
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYnJlYWRjcnVtYi50eXBlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9hZHMtdWkvc3JjL2xpYi9jb21wb25lbnRzL2JyZWFkY3J1bWIvYnJlYWRjcnVtYi50eXBlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiIiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgdHlwZSBCcmVhZGNydW1iPFQ+
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYnJlYWRjcnVtYi50eXBlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9hZHMtdWkvc3JjL2xpYi9jb21wb25lbnRzL2JyZWFkY3J1bWIvYnJlYWRjcnVtYi50eXBlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiIiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgdHlwZSBCcmVhZGNydW1iPFQ+ID0ge1xuICBwcmltYXJ5TGFiZWw6IHN0cmluZztcbiAgY2FsbGJhY2s6IChwYXlsb2FkOiBUKSA9PiB2b2lkO1xuICBhY3RpdmU6IGJvb2xlYW47XG4gIHBheWxvYWQ6IFQ7XG59O1xuIl19
|
|
@@ -1,11 +1,27 @@
|
|
|
1
|
-
import { Component } from '@angular/core';
|
|
1
|
+
import { Component, input } from '@angular/core';
|
|
2
|
+
import { Colors } from '../general/color-palette/colors.enums';
|
|
2
3
|
import * as i0 from "@angular/core";
|
|
4
|
+
import * as i1 from "@angular/common";
|
|
3
5
|
export class AdsCardComponent {
|
|
6
|
+
constructor() {
|
|
7
|
+
/**
|
|
8
|
+
* Card border color
|
|
9
|
+
*/
|
|
10
|
+
this.borderColor = input(Colors.Light);
|
|
11
|
+
/**
|
|
12
|
+
* Card border width
|
|
13
|
+
*/
|
|
14
|
+
this.borderWidth = input(1);
|
|
15
|
+
}
|
|
16
|
+
/** @ignore */
|
|
17
|
+
getBorderColor(color) {
|
|
18
|
+
return `var(--color-${color})`;
|
|
19
|
+
}
|
|
4
20
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsCardComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
5
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "
|
|
21
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.1.0", version: "18.1.1", type: AdsCardComponent, selector: "ads-card", inputs: { borderColor: { classPropertyName: "borderColor", publicName: "borderColor", isSignal: true, isRequired: false, transformFunction: null }, borderWidth: { classPropertyName: "borderWidth", publicName: "borderWidth", isSignal: true, isRequired: false, transformFunction: null } }, ngImport: i0, template: "<div\n class=\"card\"\n [ngStyle]=\"{\n borderWidth: borderWidth() + 'px',\n borderColor: getBorderColor(borderColor()),\n }\"\n>\n <ng-content />\n</div>\n", styles: [".card{padding:24px;border:1px solid var(--color-light);border-radius:10px;color:var(--color-dark)}\n"], dependencies: [{ kind: "directive", type: i1.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }] }); }
|
|
6
22
|
}
|
|
7
23
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsCardComponent, decorators: [{
|
|
8
24
|
type: Component,
|
|
9
|
-
args: [{ selector: 'ads-card', template: "<div
|
|
25
|
+
args: [{ selector: 'ads-card', template: "<div\n class=\"card\"\n [ngStyle]=\"{\n borderWidth: borderWidth() + 'px',\n borderColor: getBorderColor(borderColor()),\n }\"\n>\n <ng-content />\n</div>\n", styles: [".card{padding:24px;border:1px solid var(--color-light);border-radius:10px;color:var(--color-dark)}\n"] }]
|
|
10
26
|
}] });
|
|
11
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
27
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY2FyZC5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL2Fkcy11aS9zcmMvbGliL2NvbXBvbmVudHMvY2FyZC9jYXJkLmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvYWRzLXVpL3NyYy9saWIvY29tcG9uZW50cy9jYXJkL2NhcmQuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSxLQUFLLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDakQsT0FBTyxFQUFFLE1BQU0sRUFBRSxNQUFNLHVDQUF1QyxDQUFDOzs7QUFPL0QsTUFBTSxPQUFPLGdCQUFnQjtJQUw3QjtRQU1FOztXQUVHO1FBQ0gsZ0JBQVcsR0FBRyxLQUFLLENBQVMsTUFBTSxDQUFDLEtBQUssQ0FBQyxDQUFDO1FBRTFDOztXQUVHO1FBQ0gsZ0JBQVcsR0FBRyxLQUFLLENBQVMsQ0FBQyxDQUFDLENBQUM7S0FNaEM7SUFKQyxjQUFjO0lBQ2QsY0FBYyxDQUFDLEtBQWE7UUFDMUIsT0FBTyxlQUFlLEtBQUssR0FBRyxDQUFDO0lBQ2pDLENBQUM7OEdBZFUsZ0JBQWdCO2tHQUFoQixnQkFBZ0IsZ1ZDUjdCLHdLQVNBOzsyRkREYSxnQkFBZ0I7a0JBTDVCLFNBQVM7K0JBQ0UsVUFBVSIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbXBvbmVudCwgaW5wdXQgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IENvbG9ycyB9IGZyb20gJy4uL2dlbmVyYWwvY29sb3ItcGFsZXR0ZS9jb2xvcnMuZW51bXMnO1xuXG5AQ29tcG9uZW50KHtcbiAgc2VsZWN0b3I6ICdhZHMtY2FyZCcsXG4gIHN0eWxlVXJsczogWydjYXJkLmNvbXBvbmVudC5zY3NzJ10sXG4gIHRlbXBsYXRlVXJsOiAnY2FyZC5jb21wb25lbnQuaHRtbCcsXG59KVxuZXhwb3J0IGNsYXNzIEFkc0NhcmRDb21wb25lbnQge1xuICAvKipcbiAgICogQ2FyZCBib3JkZXIgY29sb3JcbiAgICovXG4gIGJvcmRlckNvbG9yID0gaW5wdXQ8Q29sb3JzPihDb2xvcnMuTGlnaHQpO1xuXG4gIC8qKlxuICAgKiBDYXJkIGJvcmRlciB3aWR0aFxuICAgKi9cbiAgYm9yZGVyV2lkdGggPSBpbnB1dDxudW1iZXI+KDEpO1xuXG4gIC8qKiBAaWdub3JlICovXG4gIGdldEJvcmRlckNvbG9yKGNvbG9yOiBzdHJpbmcpOiBzdHJpbmcge1xuICAgIHJldHVybiBgdmFyKC0tY29sb3ItJHtjb2xvcn0pYDtcbiAgfVxufVxuIiwiPGRpdlxuICBjbGFzcz1cImNhcmRcIlxuICBbbmdTdHlsZV09XCJ7XG4gICAgYm9yZGVyV2lkdGg6IGJvcmRlcldpZHRoKCkgKyAncHgnLFxuICAgIGJvcmRlckNvbG9yOiBnZXRCb3JkZXJDb2xvcihib3JkZXJDb2xvcigpKSxcbiAgfVwiXG4+XG4gIDxuZy1jb250ZW50IC8+XG48L2Rpdj5cbiJdfQ==
|
|
@@ -324,11 +324,11 @@ export class AdsDragAndDropListComponent {
|
|
|
324
324
|
return this.draggedElement?.dom === element?.dom;
|
|
325
325
|
}
|
|
326
326
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsDragAndDropListComponent, deps: [{ token: i0.Renderer2 }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
327
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.1.1", type: AdsDragAndDropListComponent, selector: "ads-drag-and-drop-list", inputs: { dropCallback: "dropCallback", canDropCallback: "canDropCallback", canDragCallback: "canDragCallback", minCountToDrag: "minCountToDrag", refresh: "refresh" }, viewQueries: [{ propertyName: "draggableList", first: true, predicate: ["draggableList"], descendants: true, read: ElementRef, static: true }, { propertyName: "dynamicContent", first: true, predicate: ["dynamicContent"], descendants: true, read: ElementRef, static: true }], ngImport: i0, template: "<div class=\"draggable-list\" #draggableList (dragleave)=\"onListDragLeave($event)\">\n <ng-content></ng-content>\n</div>\n", styles: [":host{display:block}:host ::ng-deep .draggable-list>*{box-sizing:border-box;background-color:var(--color-white)}:host ::ng-deep .draggable-list>*[draggable=true]{cursor:move}:host ::ng-deep .draggable-list>*.is-dragged{opacity:.25}:host ::ng-deep .draggable-list>*:not(.drag-placeholder){width:100%}:host ::ng-deep .draggable-list>*.dragged-over:not(.drop-blocked){background-color:var(--color-light-30)}\n"] }); }
|
|
327
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.1.1", type: AdsDragAndDropListComponent, selector: "ads-drag-and-drop-list", inputs: { dropCallback: "dropCallback", canDropCallback: "canDropCallback", canDragCallback: "canDragCallback", minCountToDrag: "minCountToDrag", refresh: "refresh" }, viewQueries: [{ propertyName: "draggableList", first: true, predicate: ["draggableList"], descendants: true, read: ElementRef, static: true }, { propertyName: "dynamicContent", first: true, predicate: ["dynamicContent"], descendants: true, read: ElementRef, static: true }], ngImport: i0, template: "<div class=\"draggable-list\" #draggableList (dragleave)=\"onListDragLeave($event)\">\n <ng-content></ng-content>\n</div>\n", styles: [":host{display:block}:host ::ng-deep .draggable-list>*{box-sizing:border-box;background-color:var(--color-white);color:var(--color-dark)}:host ::ng-deep .draggable-list>*[draggable=true]{cursor:move}:host ::ng-deep .draggable-list>*.is-dragged{opacity:.25}:host ::ng-deep .draggable-list>*:not(.drag-placeholder){width:100%}:host ::ng-deep .draggable-list>*.dragged-over:not(.drop-blocked){background-color:var(--color-light-30)}\n"] }); }
|
|
328
328
|
}
|
|
329
329
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsDragAndDropListComponent, decorators: [{
|
|
330
330
|
type: Component,
|
|
331
|
-
args: [{ selector: 'ads-drag-and-drop-list', template: "<div class=\"draggable-list\" #draggableList (dragleave)=\"onListDragLeave($event)\">\n <ng-content></ng-content>\n</div>\n", styles: [":host{display:block}:host ::ng-deep .draggable-list>*{box-sizing:border-box;background-color:var(--color-white)}:host ::ng-deep .draggable-list>*[draggable=true]{cursor:move}:host ::ng-deep .draggable-list>*.is-dragged{opacity:.25}:host ::ng-deep .draggable-list>*:not(.drag-placeholder){width:100%}:host ::ng-deep .draggable-list>*.dragged-over:not(.drop-blocked){background-color:var(--color-light-30)}\n"] }]
|
|
331
|
+
args: [{ selector: 'ads-drag-and-drop-list', template: "<div class=\"draggable-list\" #draggableList (dragleave)=\"onListDragLeave($event)\">\n <ng-content></ng-content>\n</div>\n", styles: [":host{display:block}:host ::ng-deep .draggable-list>*{box-sizing:border-box;background-color:var(--color-white);color:var(--color-dark)}:host ::ng-deep .draggable-list>*[draggable=true]{cursor:move}:host ::ng-deep .draggable-list>*.is-dragged{opacity:.25}:host ::ng-deep .draggable-list>*:not(.drag-placeholder){width:100%}:host ::ng-deep .draggable-list>*.dragged-over:not(.drop-blocked){background-color:var(--color-light-30)}\n"] }]
|
|
332
332
|
}], ctorParameters: () => [{ type: i0.Renderer2 }], propDecorators: { draggableList: [{
|
|
333
333
|
type: ViewChild,
|
|
334
334
|
args: ['draggableList', { read: ElementRef, static: true }]
|