@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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ascentgl/ads-ui",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.14",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@ascentgl/ads-icons": ">=0.0.0",
|
|
6
6
|
"@ascentgl/ads-utils": ">=0.0.0",
|
|
@@ -41,35 +41,23 @@
|
|
|
41
41
|
"esm": "./esm2022/src/lib/components/divider/ascentgl-ads-ui-src-lib-components-divider.mjs",
|
|
42
42
|
"default": "./fesm2022/ascentgl-ads-ui-src-lib-components-divider.mjs"
|
|
43
43
|
},
|
|
44
|
-
"./src/lib/components/card": {
|
|
45
|
-
"types": "./src/lib/components/card/index.d.ts",
|
|
46
|
-
"esm2022": "./esm2022/src/lib/components/card/ascentgl-ads-ui-src-lib-components-card.mjs",
|
|
47
|
-
"esm": "./esm2022/src/lib/components/card/ascentgl-ads-ui-src-lib-components-card.mjs",
|
|
48
|
-
"default": "./fesm2022/ascentgl-ads-ui-src-lib-components-card.mjs"
|
|
49
|
-
},
|
|
50
44
|
"./src/lib/components/drag-and-drop-list": {
|
|
51
45
|
"types": "./src/lib/components/drag-and-drop-list/index.d.ts",
|
|
52
46
|
"esm2022": "./esm2022/src/lib/components/drag-and-drop-list/ascentgl-ads-ui-src-lib-components-drag-and-drop-list.mjs",
|
|
53
47
|
"esm": "./esm2022/src/lib/components/drag-and-drop-list/ascentgl-ads-ui-src-lib-components-drag-and-drop-list.mjs",
|
|
54
48
|
"default": "./fesm2022/ascentgl-ads-ui-src-lib-components-drag-and-drop-list.mjs"
|
|
55
49
|
},
|
|
56
|
-
"./src/lib/components/header": {
|
|
57
|
-
"types": "./src/lib/components/header/index.d.ts",
|
|
58
|
-
"esm2022": "./esm2022/src/lib/components/header/ascentgl-ads-ui-src-lib-components-header.mjs",
|
|
59
|
-
"esm": "./esm2022/src/lib/components/header/ascentgl-ads-ui-src-lib-components-header.mjs",
|
|
60
|
-
"default": "./fesm2022/ascentgl-ads-ui-src-lib-components-header.mjs"
|
|
61
|
-
},
|
|
62
50
|
"./src/lib/components/footer": {
|
|
63
51
|
"types": "./src/lib/components/footer/index.d.ts",
|
|
64
52
|
"esm2022": "./esm2022/src/lib/components/footer/ascentgl-ads-ui-src-lib-components-footer.mjs",
|
|
65
53
|
"esm": "./esm2022/src/lib/components/footer/ascentgl-ads-ui-src-lib-components-footer.mjs",
|
|
66
54
|
"default": "./fesm2022/ascentgl-ads-ui-src-lib-components-footer.mjs"
|
|
67
55
|
},
|
|
68
|
-
"./src/lib/components/
|
|
69
|
-
"types": "./src/lib/components/
|
|
70
|
-
"esm2022": "./esm2022/src/lib/components/
|
|
71
|
-
"esm": "./esm2022/src/lib/components/
|
|
72
|
-
"default": "./fesm2022/ascentgl-ads-ui-src-lib-components-
|
|
56
|
+
"./src/lib/components/header": {
|
|
57
|
+
"types": "./src/lib/components/header/index.d.ts",
|
|
58
|
+
"esm2022": "./esm2022/src/lib/components/header/ascentgl-ads-ui-src-lib-components-header.mjs",
|
|
59
|
+
"esm": "./esm2022/src/lib/components/header/ascentgl-ads-ui-src-lib-components-header.mjs",
|
|
60
|
+
"default": "./fesm2022/ascentgl-ads-ui-src-lib-components-header.mjs"
|
|
73
61
|
},
|
|
74
62
|
"./src/lib/components/splash-page": {
|
|
75
63
|
"types": "./src/lib/components/splash-page/index.d.ts",
|
|
@@ -95,113 +83,47 @@
|
|
|
95
83
|
"esm": "./esm2022/src/lib/components/error-page/error-page-code/ascentgl-ads-ui-src-lib-components-error-page-error-page-code.mjs",
|
|
96
84
|
"default": "./fesm2022/ascentgl-ads-ui-src-lib-components-error-page-error-page-code.mjs"
|
|
97
85
|
},
|
|
86
|
+
"./src/lib/components/footer/container": {
|
|
87
|
+
"types": "./src/lib/components/footer/container/index.d.ts",
|
|
88
|
+
"esm2022": "./esm2022/src/lib/components/footer/container/ascentgl-ads-ui-src-lib-components-footer-container.mjs",
|
|
89
|
+
"esm": "./esm2022/src/lib/components/footer/container/ascentgl-ads-ui-src-lib-components-footer-container.mjs",
|
|
90
|
+
"default": "./fesm2022/ascentgl-ads-ui-src-lib-components-footer-container.mjs"
|
|
91
|
+
},
|
|
98
92
|
"./src/lib/components/header/container": {
|
|
99
93
|
"types": "./src/lib/components/header/container/index.d.ts",
|
|
100
94
|
"esm2022": "./esm2022/src/lib/components/header/container/ascentgl-ads-ui-src-lib-components-header-container.mjs",
|
|
101
95
|
"esm": "./esm2022/src/lib/components/header/container/ascentgl-ads-ui-src-lib-components-header-container.mjs",
|
|
102
96
|
"default": "./fesm2022/ascentgl-ads-ui-src-lib-components-header-container.mjs"
|
|
103
97
|
},
|
|
104
|
-
"./src/lib/components/header/org-display-text": {
|
|
105
|
-
"types": "./src/lib/components/header/org-display-text/index.d.ts",
|
|
106
|
-
"esm2022": "./esm2022/src/lib/components/header/org-display-text/ascentgl-ads-ui-src-lib-components-header-org-display-text.mjs",
|
|
107
|
-
"esm": "./esm2022/src/lib/components/header/org-display-text/ascentgl-ads-ui-src-lib-components-header-org-display-text.mjs",
|
|
108
|
-
"default": "./fesm2022/ascentgl-ads-ui-src-lib-components-header-org-display-text.mjs"
|
|
109
|
-
},
|
|
110
98
|
"./src/lib/components/logo/primary-logo": {
|
|
111
99
|
"types": "./src/lib/components/logo/primary-logo/index.d.ts",
|
|
112
100
|
"esm2022": "./esm2022/src/lib/components/logo/primary-logo/ascentgl-ads-ui-src-lib-components-logo-primary-logo.mjs",
|
|
113
101
|
"esm": "./esm2022/src/lib/components/logo/primary-logo/ascentgl-ads-ui-src-lib-components-logo-primary-logo.mjs",
|
|
114
102
|
"default": "./fesm2022/ascentgl-ads-ui-src-lib-components-logo-primary-logo.mjs"
|
|
115
103
|
},
|
|
116
|
-
"./src/lib/components/progress-indicators/progress-bar": {
|
|
117
|
-
"types": "./src/lib/components/progress-indicators/progress-bar/index.d.ts",
|
|
118
|
-
"esm2022": "./esm2022/src/lib/components/progress-indicators/progress-bar/ascentgl-ads-ui-src-lib-components-progress-indicators-progress-bar.mjs",
|
|
119
|
-
"esm": "./esm2022/src/lib/components/progress-indicators/progress-bar/ascentgl-ads-ui-src-lib-components-progress-indicators-progress-bar.mjs",
|
|
120
|
-
"default": "./fesm2022/ascentgl-ads-ui-src-lib-components-progress-indicators-progress-bar.mjs"
|
|
121
|
-
},
|
|
122
104
|
"./src/lib/components/progress-indicators/progress-indicator-spinner": {
|
|
123
105
|
"types": "./src/lib/components/progress-indicators/progress-indicator-spinner/index.d.ts",
|
|
124
106
|
"esm2022": "./esm2022/src/lib/components/progress-indicators/progress-indicator-spinner/ascentgl-ads-ui-src-lib-components-progress-indicators-progress-indicator-spinner.mjs",
|
|
125
107
|
"esm": "./esm2022/src/lib/components/progress-indicators/progress-indicator-spinner/ascentgl-ads-ui-src-lib-components-progress-indicators-progress-indicator-spinner.mjs",
|
|
126
108
|
"default": "./fesm2022/ascentgl-ads-ui-src-lib-components-progress-indicators-progress-indicator-spinner.mjs"
|
|
127
109
|
},
|
|
128
|
-
"./src/lib/components/footer/container": {
|
|
129
|
-
"types": "./src/lib/components/footer/container/index.d.ts",
|
|
130
|
-
"esm2022": "./esm2022/src/lib/components/footer/container/ascentgl-ads-ui-src-lib-components-footer-container.mjs",
|
|
131
|
-
"esm": "./esm2022/src/lib/components/footer/container/ascentgl-ads-ui-src-lib-components-footer-container.mjs",
|
|
132
|
-
"default": "./fesm2022/ascentgl-ads-ui-src-lib-components-footer-container.mjs"
|
|
133
|
-
},
|
|
134
|
-
"./src/lib/components/pagination/container": {
|
|
135
|
-
"types": "./src/lib/components/pagination/container/index.d.ts",
|
|
136
|
-
"esm2022": "./esm2022/src/lib/components/pagination/container/ascentgl-ads-ui-src-lib-components-pagination-container.mjs",
|
|
137
|
-
"esm": "./esm2022/src/lib/components/pagination/container/ascentgl-ads-ui-src-lib-components-pagination-container.mjs",
|
|
138
|
-
"default": "./fesm2022/ascentgl-ads-ui-src-lib-components-pagination-container.mjs"
|
|
139
|
-
},
|
|
140
110
|
"./src/lib/components/progress-indicators/progress-spinner": {
|
|
141
111
|
"types": "./src/lib/components/progress-indicators/progress-spinner/index.d.ts",
|
|
142
112
|
"esm2022": "./esm2022/src/lib/components/progress-indicators/progress-spinner/ascentgl-ads-ui-src-lib-components-progress-indicators-progress-spinner.mjs",
|
|
143
113
|
"esm": "./esm2022/src/lib/components/progress-indicators/progress-spinner/ascentgl-ads-ui-src-lib-components-progress-indicators-progress-spinner.mjs",
|
|
144
114
|
"default": "./fesm2022/ascentgl-ads-ui-src-lib-components-progress-indicators-progress-spinner.mjs"
|
|
145
115
|
},
|
|
116
|
+
"./src/lib/components/progress-indicators/progress-bar": {
|
|
117
|
+
"types": "./src/lib/components/progress-indicators/progress-bar/index.d.ts",
|
|
118
|
+
"esm2022": "./esm2022/src/lib/components/progress-indicators/progress-bar/ascentgl-ads-ui-src-lib-components-progress-indicators-progress-bar.mjs",
|
|
119
|
+
"esm": "./esm2022/src/lib/components/progress-indicators/progress-bar/ascentgl-ads-ui-src-lib-components-progress-indicators-progress-bar.mjs",
|
|
120
|
+
"default": "./fesm2022/ascentgl-ads-ui-src-lib-components-progress-indicators-progress-bar.mjs"
|
|
121
|
+
},
|
|
146
122
|
"./src/lib/components/tags/tag-container": {
|
|
147
123
|
"types": "./src/lib/components/tags/tag-container/index.d.ts",
|
|
148
124
|
"esm2022": "./esm2022/src/lib/components/tags/tag-container/ascentgl-ads-ui-src-lib-components-tags-tag-container.mjs",
|
|
149
125
|
"esm": "./esm2022/src/lib/components/tags/tag-container/ascentgl-ads-ui-src-lib-components-tags-tag-container.mjs",
|
|
150
126
|
"default": "./fesm2022/ascentgl-ads-ui-src-lib-components-tags-tag-container.mjs"
|
|
151
|
-
},
|
|
152
|
-
"./src/lib/components/widgets/widget-actions": {
|
|
153
|
-
"types": "./src/lib/components/widgets/widget-actions/index.d.ts",
|
|
154
|
-
"esm2022": "./esm2022/src/lib/components/widgets/widget-actions/ascentgl-ads-ui-src-lib-components-widgets-widget-actions.mjs",
|
|
155
|
-
"esm": "./esm2022/src/lib/components/widgets/widget-actions/ascentgl-ads-ui-src-lib-components-widgets-widget-actions.mjs",
|
|
156
|
-
"default": "./fesm2022/ascentgl-ads-ui-src-lib-components-widgets-widget-actions.mjs"
|
|
157
|
-
},
|
|
158
|
-
"./src/lib/components/widgets/widget-container": {
|
|
159
|
-
"types": "./src/lib/components/widgets/widget-container/index.d.ts",
|
|
160
|
-
"esm2022": "./esm2022/src/lib/components/widgets/widget-container/ascentgl-ads-ui-src-lib-components-widgets-widget-container.mjs",
|
|
161
|
-
"esm": "./esm2022/src/lib/components/widgets/widget-container/ascentgl-ads-ui-src-lib-components-widgets-widget-container.mjs",
|
|
162
|
-
"default": "./fesm2022/ascentgl-ads-ui-src-lib-components-widgets-widget-container.mjs"
|
|
163
|
-
},
|
|
164
|
-
"./src/lib/components/widgets/widget-bar": {
|
|
165
|
-
"types": "./src/lib/components/widgets/widget-bar/index.d.ts",
|
|
166
|
-
"esm2022": "./esm2022/src/lib/components/widgets/widget-bar/ascentgl-ads-ui-src-lib-components-widgets-widget-bar.mjs",
|
|
167
|
-
"esm": "./esm2022/src/lib/components/widgets/widget-bar/ascentgl-ads-ui-src-lib-components-widgets-widget-bar.mjs",
|
|
168
|
-
"default": "./fesm2022/ascentgl-ads-ui-src-lib-components-widgets-widget-bar.mjs"
|
|
169
|
-
},
|
|
170
|
-
"./src/lib/components/widgets/widget-preview": {
|
|
171
|
-
"types": "./src/lib/components/widgets/widget-preview/index.d.ts",
|
|
172
|
-
"esm2022": "./esm2022/src/lib/components/widgets/widget-preview/ascentgl-ads-ui-src-lib-components-widgets-widget-preview.mjs",
|
|
173
|
-
"esm": "./esm2022/src/lib/components/widgets/widget-preview/ascentgl-ads-ui-src-lib-components-widgets-widget-preview.mjs",
|
|
174
|
-
"default": "./fesm2022/ascentgl-ads-ui-src-lib-components-widgets-widget-preview.mjs"
|
|
175
|
-
},
|
|
176
|
-
"./src/lib/components/widgets/widget-footer": {
|
|
177
|
-
"types": "./src/lib/components/widgets/widget-footer/index.d.ts",
|
|
178
|
-
"esm2022": "./esm2022/src/lib/components/widgets/widget-footer/ascentgl-ads-ui-src-lib-components-widgets-widget-footer.mjs",
|
|
179
|
-
"esm": "./esm2022/src/lib/components/widgets/widget-footer/ascentgl-ads-ui-src-lib-components-widgets-widget-footer.mjs",
|
|
180
|
-
"default": "./fesm2022/ascentgl-ads-ui-src-lib-components-widgets-widget-footer.mjs"
|
|
181
|
-
},
|
|
182
|
-
"./src/lib/components/widgets/widget-header": {
|
|
183
|
-
"types": "./src/lib/components/widgets/widget-header/index.d.ts",
|
|
184
|
-
"esm2022": "./esm2022/src/lib/components/widgets/widget-header/ascentgl-ads-ui-src-lib-components-widgets-widget-header.mjs",
|
|
185
|
-
"esm": "./esm2022/src/lib/components/widgets/widget-header/ascentgl-ads-ui-src-lib-components-widgets-widget-header.mjs",
|
|
186
|
-
"default": "./fesm2022/ascentgl-ads-ui-src-lib-components-widgets-widget-header.mjs"
|
|
187
|
-
},
|
|
188
|
-
"./src/lib/components/widgets/widget-thumbnail-container": {
|
|
189
|
-
"types": "./src/lib/components/widgets/widget-thumbnail-container/index.d.ts",
|
|
190
|
-
"esm2022": "./esm2022/src/lib/components/widgets/widget-thumbnail-container/ascentgl-ads-ui-src-lib-components-widgets-widget-thumbnail-container.mjs",
|
|
191
|
-
"esm": "./esm2022/src/lib/components/widgets/widget-thumbnail-container/ascentgl-ads-ui-src-lib-components-widgets-widget-thumbnail-container.mjs",
|
|
192
|
-
"default": "./fesm2022/ascentgl-ads-ui-src-lib-components-widgets-widget-thumbnail-container.mjs"
|
|
193
|
-
},
|
|
194
|
-
"./src/lib/components/widgets/widget-title": {
|
|
195
|
-
"types": "./src/lib/components/widgets/widget-title/index.d.ts",
|
|
196
|
-
"esm2022": "./esm2022/src/lib/components/widgets/widget-title/ascentgl-ads-ui-src-lib-components-widgets-widget-title.mjs",
|
|
197
|
-
"esm": "./esm2022/src/lib/components/widgets/widget-title/ascentgl-ads-ui-src-lib-components-widgets-widget-title.mjs",
|
|
198
|
-
"default": "./fesm2022/ascentgl-ads-ui-src-lib-components-widgets-widget-title.mjs"
|
|
199
|
-
},
|
|
200
|
-
"./src/lib/components/widgets/widget-thumbnail": {
|
|
201
|
-
"types": "./src/lib/components/widgets/widget-thumbnail/index.d.ts",
|
|
202
|
-
"esm2022": "./esm2022/src/lib/components/widgets/widget-thumbnail/ascentgl-ads-ui-src-lib-components-widgets-widget-thumbnail.mjs",
|
|
203
|
-
"esm": "./esm2022/src/lib/components/widgets/widget-thumbnail/ascentgl-ads-ui-src-lib-components-widgets-widget-thumbnail.mjs",
|
|
204
|
-
"default": "./fesm2022/ascentgl-ads-ui-src-lib-components-widgets-widget-thumbnail.mjs"
|
|
205
127
|
}
|
|
206
128
|
},
|
|
207
129
|
"sideEffects": false,
|
|
@@ -28,7 +28,7 @@ $colors: (
|
|
|
28
28
|
secondary: #017d93,
|
|
29
29
|
secondary-hover: #015a6a,
|
|
30
30
|
secondary-pressed: #013b46,
|
|
31
|
-
|
|
31
|
+
secondary-10: rgba(1, 125, 147, 0.1),
|
|
32
32
|
link: #0077b3,
|
|
33
33
|
link-hover: #005885,
|
|
34
34
|
link-pressed: #002638,
|
|
@@ -72,7 +72,7 @@ $colors-dark: (
|
|
|
72
72
|
secondary: #eda1d9,
|
|
73
73
|
secondary-hover: #da3eb2,
|
|
74
74
|
secondary-pressed: #881a6c,
|
|
75
|
-
|
|
75
|
+
secondary-10: rgba(237, 161, 217, 0.1),
|
|
76
76
|
link: #52c5ff,
|
|
77
77
|
link-hover: #1fb4ff,
|
|
78
78
|
link-pressed: #007ab8,
|
|
@@ -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
|
}
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
import { Component, Input } from '@angular/core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
import * as i1 from "@angular/common";
|
|
4
|
-
export class AdsOrgDisplayTextComponent {
|
|
5
|
-
constructor() {
|
|
6
|
-
/**
|
|
7
|
-
* Whether the viewport is mobile
|
|
8
|
-
*/
|
|
9
|
-
this.isMobile = false;
|
|
10
|
-
}
|
|
11
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsOrgDisplayTextComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
12
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.1.1", type: AdsOrgDisplayTextComponent, selector: "ads-org-display-text", inputs: { text: "text", isMobile: "isMobile" }, ngImport: i0, template: "<span *ngIf=\"!isMobile\" class=\"org-display-text\">{{ text }}</span>\n", styles: [".org-display-text{padding:0 24px;color:var(--color-primary);font-size:14px;font-weight:500;white-space:nowrap}\n"], dependencies: [{ kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] }); }
|
|
13
|
-
}
|
|
14
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsOrgDisplayTextComponent, decorators: [{
|
|
15
|
-
type: Component,
|
|
16
|
-
args: [{ selector: 'ads-org-display-text', template: "<span *ngIf=\"!isMobile\" class=\"org-display-text\">{{ text }}</span>\n", styles: [".org-display-text{padding:0 24px;color:var(--color-primary);font-size:14px;font-weight:500;white-space:nowrap}\n"] }]
|
|
17
|
-
}], propDecorators: { text: [{
|
|
18
|
-
type: Input
|
|
19
|
-
}], isMobile: [{
|
|
20
|
-
type: Input
|
|
21
|
-
}] } });
|
|
22
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoib3JnLWRpc3BsYXktdGV4dC5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL2Fkcy11aS9zcmMvbGliL2NvbXBvbmVudHMvaGVhZGVyL29yZy1kaXNwbGF5LXRleHQvb3JnLWRpc3BsYXktdGV4dC5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL2Fkcy11aS9zcmMvbGliL2NvbXBvbmVudHMvaGVhZGVyL29yZy1kaXNwbGF5LXRleHQvb3JnLWRpc3BsYXktdGV4dC5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFFLEtBQUssRUFBRSxNQUFNLGVBQWUsQ0FBQzs7O0FBT2pELE1BQU0sT0FBTywwQkFBMEI7SUFMdkM7UUFXRTs7V0FFRztRQUNNLGFBQVEsR0FBRyxLQUFLLENBQUM7S0FDM0I7OEdBVlksMEJBQTBCO2tHQUExQiwwQkFBMEIsNEdDUHZDLDBFQUNBOzsyRkRNYSwwQkFBMEI7a0JBTHRDLFNBQVM7K0JBQ0Usc0JBQXNCOzhCQVF2QixJQUFJO3NCQUFaLEtBQUs7Z0JBS0csUUFBUTtzQkFBaEIsS0FBSyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENvbXBvbmVudCwgSW5wdXQgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAnYWRzLW9yZy1kaXNwbGF5LXRleHQnLFxuICBzdHlsZVVybHM6IFsnb3JnLWRpc3BsYXktdGV4dC5jb21wb25lbnQuc2NzcyddLFxuICB0ZW1wbGF0ZVVybDogJ29yZy1kaXNwbGF5LXRleHQuY29tcG9uZW50Lmh0bWwnLFxufSlcbmV4cG9ydCBjbGFzcyBBZHNPcmdEaXNwbGF5VGV4dENvbXBvbmVudCB7XG4gIC8qKlxuICAgKiBPcmdhbml6YXRpb24gdGV4dCB0byBkaXNwbGF5XG4gICAqL1xuICBASW5wdXQoKSB0ZXh0ITogc3RyaW5nO1xuXG4gIC8qKlxuICAgKiBXaGV0aGVyIHRoZSB2aWV3cG9ydCBpcyBtb2JpbGVcbiAgICovXG4gIEBJbnB1dCgpIGlzTW9iaWxlID0gZmFsc2U7XG59XG4iLCI8c3BhbiAqbmdJZj1cIiFpc01vYmlsZVwiIGNsYXNzPVwib3JnLWRpc3BsYXktdGV4dFwiPnt7IHRleHQgfX08L3NwYW4+XG4iXX0=
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
import { CommonModule } from '@angular/common';
|
|
2
|
-
import { NgModule } from '@angular/core';
|
|
3
|
-
import { AdsOrgDisplayTextComponent } from './org-display-text.component';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export class AdsOrgDisplayTextModule {
|
|
6
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsOrgDisplayTextModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
7
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.1.1", ngImport: i0, type: AdsOrgDisplayTextModule, declarations: [AdsOrgDisplayTextComponent], imports: [CommonModule], exports: [AdsOrgDisplayTextComponent] }); }
|
|
8
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsOrgDisplayTextModule, imports: [CommonModule] }); }
|
|
9
|
-
}
|
|
10
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsOrgDisplayTextModule, decorators: [{
|
|
11
|
-
type: NgModule,
|
|
12
|
-
args: [{
|
|
13
|
-
imports: [CommonModule],
|
|
14
|
-
exports: [AdsOrgDisplayTextComponent],
|
|
15
|
-
declarations: [AdsOrgDisplayTextComponent],
|
|
16
|
-
}]
|
|
17
|
-
}] });
|
|
18
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoib3JnLWRpc3BsYXktdGV4dC5tb2R1bGUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL2Fkcy11aS9zcmMvbGliL2NvbXBvbmVudHMvaGVhZGVyL29yZy1kaXNwbGF5LXRleHQvb3JnLWRpc3BsYXktdGV4dC5tb2R1bGUudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFlBQVksRUFBRSxNQUFNLGlCQUFpQixDQUFDO0FBQy9DLE9BQU8sRUFBRSxRQUFRLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFFekMsT0FBTyxFQUFFLDBCQUEwQixFQUFFLE1BQU0sOEJBQThCLENBQUM7O0FBTzFFLE1BQU0sT0FBTyx1QkFBdUI7OEdBQXZCLHVCQUF1QjsrR0FBdkIsdUJBQXVCLGlCQUZuQiwwQkFBMEIsYUFGL0IsWUFBWSxhQUNaLDBCQUEwQjsrR0FHekIsdUJBQXVCLFlBSnhCLFlBQVk7OzJGQUlYLHVCQUF1QjtrQkFMbkMsUUFBUTttQkFBQztvQkFDUixPQUFPLEVBQUUsQ0FBQyxZQUFZLENBQUM7b0JBQ3ZCLE9BQU8sRUFBRSxDQUFDLDBCQUEwQixDQUFDO29CQUNyQyxZQUFZLEVBQUUsQ0FBQywwQkFBMEIsQ0FBQztpQkFDM0MiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21tb25Nb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb21tb24nO1xuaW1wb3J0IHsgTmdNb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcblxuaW1wb3J0IHsgQWRzT3JnRGlzcGxheVRleHRDb21wb25lbnQgfSBmcm9tICcuL29yZy1kaXNwbGF5LXRleHQuY29tcG9uZW50JztcblxuQE5nTW9kdWxlKHtcbiAgaW1wb3J0czogW0NvbW1vbk1vZHVsZV0sXG4gIGV4cG9ydHM6IFtBZHNPcmdEaXNwbGF5VGV4dENvbXBvbmVudF0sXG4gIGRlY2xhcmF0aW9uczogW0Fkc09yZ0Rpc3BsYXlUZXh0Q29tcG9uZW50XSxcbn0pXG5leHBvcnQgY2xhc3MgQWRzT3JnRGlzcGxheVRleHRNb2R1bGUge31cbiJdfQ==
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
export * from './org-display-text.component';
|
|
2
|
-
export * from './org-display-text.module';
|
|
3
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvYWRzLXVpL3NyYy9saWIvY29tcG9uZW50cy9oZWFkZXIvb3JnLWRpc3BsYXktdGV4dC9wdWJsaWMtYXBpLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMsOEJBQThCLENBQUM7QUFDN0MsY0FBYywyQkFBMkIsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gJy4vb3JnLWRpc3BsYXktdGV4dC5jb21wb25lbnQnO1xuZXhwb3J0ICogZnJvbSAnLi9vcmctZGlzcGxheS10ZXh0Lm1vZHVsZSc7XG4iXX0=
|
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
export * from './public-api';
|
|
2
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL2Fkcy11aS9zcmMvbGliL2NvbXBvbmVudHMvcGFnaW5hdGlvbi9jb250YWluZXIvaW5kZXgudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyxjQUFjLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tICcuL3B1YmxpYy1hcGknO1xuIl19
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import { Component } from '@angular/core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export class AdsPaginationContainerComponent {
|
|
4
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsPaginationContainerComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
5
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.1.1", type: AdsPaginationContainerComponent, selector: "ads-pagination-container", ngImport: i0, template: "<div class=\"pagination-container\">\n <ng-content></ng-content>\n</div>\n", styles: [".pagination-container{display:flex;flex-direction:row-reverse;padding:24px 0}\n"] }); }
|
|
6
|
-
}
|
|
7
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsPaginationContainerComponent, decorators: [{
|
|
8
|
-
type: Component,
|
|
9
|
-
args: [{ selector: 'ads-pagination-container', template: "<div class=\"pagination-container\">\n <ng-content></ng-content>\n</div>\n", styles: [".pagination-container{display:flex;flex-direction:row-reverse;padding:24px 0}\n"] }]
|
|
10
|
-
}] });
|
|
11
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicGFnaW5hdGlvbi1jb250YWluZXIuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9hZHMtdWkvc3JjL2xpYi9jb21wb25lbnRzL3BhZ2luYXRpb24vY29udGFpbmVyL3BhZ2luYXRpb24tY29udGFpbmVyLmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvYWRzLXVpL3NyYy9saWIvY29tcG9uZW50cy9wYWdpbmF0aW9uL2NvbnRhaW5lci9wYWdpbmF0aW9uLWNvbnRhaW5lci5jb21wb25lbnQuaHRtbCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFFLE1BQU0sZUFBZSxDQUFDOztBQU8xQyxNQUFNLE9BQU8sK0JBQStCOzhHQUEvQiwrQkFBK0I7a0dBQS9CLCtCQUErQixnRUNQNUMsNkVBR0E7OzJGRElhLCtCQUErQjtrQkFMM0MsU0FBUzsrQkFDRSwwQkFBMEIiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21wb25lbnQgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAnYWRzLXBhZ2luYXRpb24tY29udGFpbmVyJyxcbiAgc3R5bGVVcmxzOiBbJ3BhZ2luYXRpb24tY29udGFpbmVyLmNvbXBvbmVudC5zY3NzJ10sXG4gIHRlbXBsYXRlVXJsOiAncGFnaW5hdGlvbi1jb250YWluZXIuY29tcG9uZW50Lmh0bWwnLFxufSlcbmV4cG9ydCBjbGFzcyBBZHNQYWdpbmF0aW9uQ29udGFpbmVyQ29tcG9uZW50IHt9XG4iLCI8ZGl2IGNsYXNzPVwicGFnaW5hdGlvbi1jb250YWluZXJcIj5cbiAgPG5nLWNvbnRlbnQ+PC9uZy1jb250ZW50PlxuPC9kaXY+XG4iXX0=
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
import { NgModule } from '@angular/core';
|
|
2
|
-
import { AdsPaginationContainerComponent } from './pagination-container.component';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export class AdsPaginationContainerModule {
|
|
5
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsPaginationContainerModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
6
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.1.1", ngImport: i0, type: AdsPaginationContainerModule, declarations: [AdsPaginationContainerComponent], exports: [AdsPaginationContainerComponent] }); }
|
|
7
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsPaginationContainerModule }); }
|
|
8
|
-
}
|
|
9
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsPaginationContainerModule, decorators: [{
|
|
10
|
-
type: NgModule,
|
|
11
|
-
args: [{
|
|
12
|
-
declarations: [AdsPaginationContainerComponent],
|
|
13
|
-
exports: [AdsPaginationContainerComponent],
|
|
14
|
-
}]
|
|
15
|
-
}] });
|
|
16
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicGFnaW5hdGlvbi1jb250YWluZXIubW9kdWxlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9hZHMtdWkvc3JjL2xpYi9jb21wb25lbnRzL3BhZ2luYXRpb24vY29udGFpbmVyL3BhZ2luYXRpb24tY29udGFpbmVyLm1vZHVsZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsUUFBUSxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBRXpDLE9BQU8sRUFBRSwrQkFBK0IsRUFBRSxNQUFNLGtDQUFrQyxDQUFDOztBQU1uRixNQUFNLE9BQU8sNEJBQTRCOzhHQUE1Qiw0QkFBNEI7K0dBQTVCLDRCQUE0QixpQkFIeEIsK0JBQStCLGFBQ3BDLCtCQUErQjsrR0FFOUIsNEJBQTRCOzsyRkFBNUIsNEJBQTRCO2tCQUp4QyxRQUFRO21CQUFDO29CQUNSLFlBQVksRUFBRSxDQUFDLCtCQUErQixDQUFDO29CQUMvQyxPQUFPLEVBQUUsQ0FBQywrQkFBK0IsQ0FBQztpQkFDM0MiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBOZ01vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuXG5pbXBvcnQgeyBBZHNQYWdpbmF0aW9uQ29udGFpbmVyQ29tcG9uZW50IH0gZnJvbSAnLi9wYWdpbmF0aW9uLWNvbnRhaW5lci5jb21wb25lbnQnO1xuXG5ATmdNb2R1bGUoe1xuICBkZWNsYXJhdGlvbnM6IFtBZHNQYWdpbmF0aW9uQ29udGFpbmVyQ29tcG9uZW50XSxcbiAgZXhwb3J0czogW0Fkc1BhZ2luYXRpb25Db250YWluZXJDb21wb25lbnRdLFxufSlcbmV4cG9ydCBjbGFzcyBBZHNQYWdpbmF0aW9uQ29udGFpbmVyTW9kdWxlIHt9XG4iXX0=
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
export * from './pagination-container.component';
|
|
2
|
-
export * from './pagination-container.module';
|
|
3
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvYWRzLXVpL3NyYy9saWIvY29tcG9uZW50cy9wYWdpbmF0aW9uL2NvbnRhaW5lci9wdWJsaWMtYXBpLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMsa0NBQWtDLENBQUM7QUFDakQsY0FBYywrQkFBK0IsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gJy4vcGFnaW5hdGlvbi1jb250YWluZXIuY29tcG9uZW50JztcbmV4cG9ydCAqIGZyb20gJy4vcGFnaW5hdGlvbi1jb250YWluZXIubW9kdWxlJztcbiJdfQ==
|
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
export * from './public-api';
|
|
2
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL2Fkcy11aS9zcmMvbGliL2NvbXBvbmVudHMvcGFnaW5hdGlvbi9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLGNBQWMsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gJy4vcHVibGljLWFwaSc7XG4iXX0=
|
|
@@ -1,85 +0,0 @@
|
|
|
1
|
-
import { Component, EventEmitter, Input, Output } from '@angular/core';
|
|
2
|
-
import { AdsIconRegistry } from '@ascentgl/ads-icons';
|
|
3
|
-
import { adsIconChevronLeft, adsIconChevronRight, adsIconMenuMoreInfo } from '@ascentgl/ads-icons/icons';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
import * as i1 from "@ascentgl/ads-icons";
|
|
6
|
-
import * as i2 from "@angular/common";
|
|
7
|
-
export class AdsPaginationComponent {
|
|
8
|
-
constructor(registry) {
|
|
9
|
-
this.registry = registry;
|
|
10
|
-
/**
|
|
11
|
-
* Event emitted when a page button is clicked
|
|
12
|
-
*/
|
|
13
|
-
this.goToPage = new EventEmitter();
|
|
14
|
-
/**
|
|
15
|
-
* Event emitted when the next page button is clicked
|
|
16
|
-
*/
|
|
17
|
-
this.goToNextPage = new EventEmitter();
|
|
18
|
-
/**
|
|
19
|
-
* Event emitted when the previous page button is clicked
|
|
20
|
-
*/
|
|
21
|
-
this.goToPreviousPage = new EventEmitter();
|
|
22
|
-
/** @ignore */
|
|
23
|
-
this.pages = [];
|
|
24
|
-
this.registry.register([adsIconChevronLeft, adsIconChevronRight, adsIconMenuMoreInfo]);
|
|
25
|
-
}
|
|
26
|
-
/** @ignore */
|
|
27
|
-
ngOnChanges(changes) {
|
|
28
|
-
if ((changes.currentPage && changes.currentPage.currentValue) ||
|
|
29
|
-
(changes.totalPages && changes.totalPages.currentValue)) {
|
|
30
|
-
this.pages = this.getPagesToDisplay();
|
|
31
|
-
}
|
|
32
|
-
}
|
|
33
|
-
/** @ignore */
|
|
34
|
-
onGoToPage(page) {
|
|
35
|
-
this.goToPage.emit(page);
|
|
36
|
-
}
|
|
37
|
-
/** @ignore */
|
|
38
|
-
onGoToNextPage() {
|
|
39
|
-
this.goToNextPage.emit();
|
|
40
|
-
}
|
|
41
|
-
/** @ignore */
|
|
42
|
-
onGoToPreviousPage() {
|
|
43
|
-
this.goToPreviousPage.emit();
|
|
44
|
-
}
|
|
45
|
-
/** @ignore */
|
|
46
|
-
getPagesToDisplay() {
|
|
47
|
-
if (this.totalPages <= 7) {
|
|
48
|
-
return [...Array(this.totalPages).keys()].map((x) => ++x);
|
|
49
|
-
}
|
|
50
|
-
if (this.currentPage > 5) {
|
|
51
|
-
if (this.currentPage >= this.totalPages - 4) {
|
|
52
|
-
return [
|
|
53
|
-
1,
|
|
54
|
-
-1,
|
|
55
|
-
this.totalPages - 4,
|
|
56
|
-
this.totalPages - 3,
|
|
57
|
-
this.totalPages - 2,
|
|
58
|
-
this.totalPages - 1,
|
|
59
|
-
this.totalPages,
|
|
60
|
-
];
|
|
61
|
-
}
|
|
62
|
-
else {
|
|
63
|
-
return [1, -1, this.currentPage - 1, this.currentPage, this.currentPage + 1, -1, this.totalPages];
|
|
64
|
-
}
|
|
65
|
-
}
|
|
66
|
-
return [1, 2, 3, 4, 5, -1, this.totalPages];
|
|
67
|
-
}
|
|
68
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsPaginationComponent, deps: [{ token: i1.AdsIconRegistry }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
69
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.1.1", type: AdsPaginationComponent, selector: "ads-pagination", inputs: { totalPages: "totalPages", currentPage: "currentPage" }, outputs: { goToPage: "goToPage", goToNextPage: "goToNextPage", goToPreviousPage: "goToPreviousPage" }, usesOnChanges: true, ngImport: i0, template: "<nav aria-label=\"Pagination\">\n <ul>\n <li>\n <button\n aria-label=\"Go To Previous Page\"\n [attr.aria-disabled]=\"currentPage === 1\"\n [disabled]=\"currentPage === 1\"\n id=\"paginationPrevious\"\n (click)=\"onGoToPreviousPage()\"\n >\n <ads-icon name=\"chevron_left\" size=\"xs\" theme=\"primary\"></ads-icon>\n </button>\n </li>\n <li *ngFor=\"let page of pages\">\n <a\n *ngIf=\"page !== -1; else more\"\n class=\"internal\"\n role=\"button\"\n [attr.aria-current]=\"page === currentPage\"\n [attr.aria-label]=\"page === currentPage ? 'Current Page, Page ' + page : 'Go to Page ' + page\"\n [class.current]=\"page === currentPage\"\n [id]=\"'paginationPage' + page\"\n tabindex=\"0\"\n (click)=\"onGoToPage(page)\"\n (keyup.enter)=\"onGoToPage(page)\"\n >{{ page }}</a\n >\n <ng-template #more>\n <a class=\"more\">\n <ads-icon name=\"menu_more_info\" size=\"xs\" theme=\"primary\"></ads-icon>\n </a>\n </ng-template>\n </li>\n <li>\n <button\n aria-label=\"Go To Next Page\"\n [attr.aria-disabled]=\"currentPage === totalPages\"\n [disabled]=\"currentPage === totalPages\"\n id=\"paginationNext\"\n (click)=\"onGoToNextPage()\"\n >\n <ads-icon name=\"chevron_right\" size=\"xs\" theme=\"primary\"></ads-icon>\n </button>\n </li>\n </ul>\n</nav>\n", styles: ["nav{display:flex;max-height:30px;align-items:center}ul{display:flex;max-height:30px;justify-content:flex-end;padding:0;margin:0;list-style:none}li{display:flex;min-width:30px;flex-direction:column;align-items:center;justify-content:center;margin:0 4px;-webkit-user-select:none;user-select:none}a{display:grid;width:100%;cursor:pointer;place-items:center}a.more{padding-top:4px}a.more .ads-icon{padding-left:4px;transform:rotate(90deg)}a.more:hover,a:focus,a.current{cursor:default;text-decoration:none}a.current,a:focus,a:not(.more):hover{background-color:var(--color-light-30);border-radius:5px;outline:none}button{display:grid;height:30px;border:none;background-color:transparent;cursor:pointer;place-items:center}button[disabled]{cursor:default}button[disabled] .ads-icon{color:var(--color-light)!important}button:not([disabled]):hover,button:not([disabled]):focus{background-color:var(--color-light-30);border-radius:5px;cursor:pointer;outline:none}\n"], dependencies: [{ kind: "directive", type: i2.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i2.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: i1.AdsIconComponent, selector: "ads-icon", inputs: ["size", "name", "color", "theme", "stroke"] }] }); }
|
|
70
|
-
}
|
|
71
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsPaginationComponent, decorators: [{
|
|
72
|
-
type: Component,
|
|
73
|
-
args: [{ selector: 'ads-pagination', template: "<nav aria-label=\"Pagination\">\n <ul>\n <li>\n <button\n aria-label=\"Go To Previous Page\"\n [attr.aria-disabled]=\"currentPage === 1\"\n [disabled]=\"currentPage === 1\"\n id=\"paginationPrevious\"\n (click)=\"onGoToPreviousPage()\"\n >\n <ads-icon name=\"chevron_left\" size=\"xs\" theme=\"primary\"></ads-icon>\n </button>\n </li>\n <li *ngFor=\"let page of pages\">\n <a\n *ngIf=\"page !== -1; else more\"\n class=\"internal\"\n role=\"button\"\n [attr.aria-current]=\"page === currentPage\"\n [attr.aria-label]=\"page === currentPage ? 'Current Page, Page ' + page : 'Go to Page ' + page\"\n [class.current]=\"page === currentPage\"\n [id]=\"'paginationPage' + page\"\n tabindex=\"0\"\n (click)=\"onGoToPage(page)\"\n (keyup.enter)=\"onGoToPage(page)\"\n >{{ page }}</a\n >\n <ng-template #more>\n <a class=\"more\">\n <ads-icon name=\"menu_more_info\" size=\"xs\" theme=\"primary\"></ads-icon>\n </a>\n </ng-template>\n </li>\n <li>\n <button\n aria-label=\"Go To Next Page\"\n [attr.aria-disabled]=\"currentPage === totalPages\"\n [disabled]=\"currentPage === totalPages\"\n id=\"paginationNext\"\n (click)=\"onGoToNextPage()\"\n >\n <ads-icon name=\"chevron_right\" size=\"xs\" theme=\"primary\"></ads-icon>\n </button>\n </li>\n </ul>\n</nav>\n", styles: ["nav{display:flex;max-height:30px;align-items:center}ul{display:flex;max-height:30px;justify-content:flex-end;padding:0;margin:0;list-style:none}li{display:flex;min-width:30px;flex-direction:column;align-items:center;justify-content:center;margin:0 4px;-webkit-user-select:none;user-select:none}a{display:grid;width:100%;cursor:pointer;place-items:center}a.more{padding-top:4px}a.more .ads-icon{padding-left:4px;transform:rotate(90deg)}a.more:hover,a:focus,a.current{cursor:default;text-decoration:none}a.current,a:focus,a:not(.more):hover{background-color:var(--color-light-30);border-radius:5px;outline:none}button{display:grid;height:30px;border:none;background-color:transparent;cursor:pointer;place-items:center}button[disabled]{cursor:default}button[disabled] .ads-icon{color:var(--color-light)!important}button:not([disabled]):hover,button:not([disabled]):focus{background-color:var(--color-light-30);border-radius:5px;cursor:pointer;outline:none}\n"] }]
|
|
74
|
-
}], ctorParameters: () => [{ type: i1.AdsIconRegistry }], propDecorators: { totalPages: [{
|
|
75
|
-
type: Input
|
|
76
|
-
}], currentPage: [{
|
|
77
|
-
type: Input
|
|
78
|
-
}], goToPage: [{
|
|
79
|
-
type: Output
|
|
80
|
-
}], goToNextPage: [{
|
|
81
|
-
type: Output
|
|
82
|
-
}], goToPreviousPage: [{
|
|
83
|
-
type: Output
|
|
84
|
-
}] } });
|
|
85
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicGFnaW5hdGlvbi5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL2Fkcy11aS9zcmMvbGliL2NvbXBvbmVudHMvcGFnaW5hdGlvbi9wYWdpbmF0aW9uLmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvYWRzLXVpL3NyYy9saWIvY29tcG9uZW50cy9wYWdpbmF0aW9uL3BhZ2luYXRpb24uY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSxZQUFZLEVBQUUsS0FBSyxFQUFhLE1BQU0sRUFBaUIsTUFBTSxlQUFlLENBQUM7QUFDakcsT0FBTyxFQUFFLGVBQWUsRUFBRSxNQUFNLHFCQUFxQixDQUFDO0FBQ3RELE9BQU8sRUFBRSxrQkFBa0IsRUFBRSxtQkFBbUIsRUFBRSxtQkFBbUIsRUFBRSxNQUFNLDJCQUEyQixDQUFDOzs7O0FBT3pHLE1BQU0sT0FBTyxzQkFBc0I7SUFDakMsWUFBb0IsUUFBeUI7UUFBekIsYUFBUSxHQUFSLFFBQVEsQ0FBaUI7UUFjN0M7O1dBRUc7UUFDTyxhQUFRLEdBQXlCLElBQUksWUFBWSxFQUFVLENBQUM7UUFFdEU7O1dBRUc7UUFDTyxpQkFBWSxHQUF1QixJQUFJLFlBQVksRUFBUSxDQUFDO1FBRXRFOztXQUVHO1FBQ08scUJBQWdCLEdBQXVCLElBQUksWUFBWSxFQUFRLENBQUM7UUFFMUUsY0FBYztRQUNQLFVBQUssR0FBYSxFQUFFLENBQUM7UUE3QjFCLElBQUksQ0FBQyxRQUFRLENBQUMsUUFBUSxDQUFDLENBQUMsa0JBQWtCLEVBQUUsbUJBQW1CLEVBQUUsbUJBQW1CLENBQUMsQ0FBQyxDQUFDO0lBQ3pGLENBQUM7SUE4QkQsY0FBYztJQUNkLFdBQVcsQ0FBQyxPQUFzQjtRQUNoQyxJQUNFLENBQUMsT0FBTyxDQUFDLFdBQVcsSUFBSSxPQUFPLENBQUMsV0FBVyxDQUFDLFlBQVksQ0FBQztZQUN6RCxDQUFDLE9BQU8sQ0FBQyxVQUFVLElBQUksT0FBTyxDQUFDLFVBQVUsQ0FBQyxZQUFZLENBQUMsRUFDdkQsQ0FBQztZQUNELElBQUksQ0FBQyxLQUFLLEdBQUcsSUFBSSxDQUFDLGlCQUFpQixFQUFFLENBQUM7UUFDeEMsQ0FBQztJQUNILENBQUM7SUFFRCxjQUFjO0lBQ1AsVUFBVSxDQUFDLElBQVk7UUFDNUIsSUFBSSxDQUFDLFFBQVEsQ0FBQyxJQUFJLENBQUMsSUFBSSxDQUFDLENBQUM7SUFDM0IsQ0FBQztJQUVELGNBQWM7SUFDUCxjQUFjO1FBQ25CLElBQUksQ0FBQyxZQUFZLENBQUMsSUFBSSxFQUFFLENBQUM7SUFDM0IsQ0FBQztJQUVELGNBQWM7SUFDUCxrQkFBa0I7UUFDdkIsSUFBSSxDQUFDLGdCQUFnQixDQUFDLElBQUksRUFBRSxDQUFDO0lBQy9CLENBQUM7SUFFRCxjQUFjO0lBQ04saUJBQWlCO1FBQ3ZCLElBQUksSUFBSSxDQUFDLFVBQVUsSUFBSSxDQUFDLEVBQUUsQ0FBQztZQUN6QixPQUFPLENBQUMsR0FBRyxLQUFLLENBQUMsSUFBSSxDQUFDLFVBQVUsQ0FBQyxDQUFDLElBQUksRUFBRSxDQUFDLENBQUMsR0FBRyxDQUFDLENBQUMsQ0FBQyxFQUFFLEVBQUUsQ0FBQyxFQUFFLENBQUMsQ0FBQyxDQUFDO1FBQzVELENBQUM7UUFFRCxJQUFJLElBQUksQ0FBQyxXQUFXLEdBQUcsQ0FBQyxFQUFFLENBQUM7WUFDekIsSUFBSSxJQUFJLENBQUMsV0FBVyxJQUFJLElBQUksQ0FBQyxVQUFVLEdBQUcsQ0FBQyxFQUFFLENBQUM7Z0JBQzVDLE9BQU87b0JBQ0wsQ0FBQztvQkFDRCxDQUFDLENBQUM7b0JBQ0YsSUFBSSxDQUFDLFVBQVUsR0FBRyxDQUFDO29CQUNuQixJQUFJLENBQUMsVUFBVSxHQUFHLENBQUM7b0JBQ25CLElBQUksQ0FBQyxVQUFVLEdBQUcsQ0FBQztvQkFDbkIsSUFBSSxDQUFDLFVBQVUsR0FBRyxDQUFDO29CQUNuQixJQUFJLENBQUMsVUFBVTtpQkFDaEIsQ0FBQztZQUNKLENBQUM7aUJBQU0sQ0FBQztnQkFDTixPQUFPLENBQUMsQ0FBQyxFQUFFLENBQUMsQ0FBQyxFQUFFLElBQUksQ0FBQyxXQUFXLEdBQUcsQ0FBQyxFQUFFLElBQUksQ0FBQyxXQUFXLEVBQUUsSUFBSSxDQUFDLFdBQVcsR0FBRyxDQUFDLEVBQUUsQ0FBQyxDQUFDLEVBQUUsSUFBSSxDQUFDLFVBQVUsQ0FBQyxDQUFDO1lBQ3BHLENBQUM7UUFDSCxDQUFDO1FBRUQsT0FBTyxDQUFDLENBQUMsRUFBRSxDQUFDLEVBQUUsQ0FBQyxFQUFFLENBQUMsRUFBRSxDQUFDLEVBQUUsQ0FBQyxDQUFDLEVBQUUsSUFBSSxDQUFDLFVBQVUsQ0FBQyxDQUFDO0lBQzlDLENBQUM7OEdBakZVLHNCQUFzQjtrR0FBdEIsc0JBQXNCLG9QQ1RuQyx1K0NBOENBOzsyRkRyQ2Esc0JBQXNCO2tCQUxsQyxTQUFTOytCQUNFLGdCQUFnQjtvRkFZakIsVUFBVTtzQkFBbEIsS0FBSztnQkFLRyxXQUFXO3NCQUFuQixLQUFLO2dCQUtJLFFBQVE7c0JBQWpCLE1BQU07Z0JBS0csWUFBWTtzQkFBckIsTUFBTTtnQkFLRyxnQkFBZ0I7c0JBQXpCLE1BQU0iLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21wb25lbnQsIEV2ZW50RW1pdHRlciwgSW5wdXQsIE9uQ2hhbmdlcywgT3V0cHV0LCBTaW1wbGVDaGFuZ2VzIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBBZHNJY29uUmVnaXN0cnkgfSBmcm9tICdAYXNjZW50Z2wvYWRzLWljb25zJztcbmltcG9ydCB7IGFkc0ljb25DaGV2cm9uTGVmdCwgYWRzSWNvbkNoZXZyb25SaWdodCwgYWRzSWNvbk1lbnVNb3JlSW5mbyB9IGZyb20gJ0Bhc2NlbnRnbC9hZHMtaWNvbnMvaWNvbnMnO1xuXG5AQ29tcG9uZW50KHtcbiAgc2VsZWN0b3I6ICdhZHMtcGFnaW5hdGlvbicsXG4gIHRlbXBsYXRlVXJsOiAnLi9wYWdpbmF0aW9uLmNvbXBvbmVudC5odG1sJyxcbiAgc3R5bGVVcmxzOiBbJy4vcGFnaW5hdGlvbi5jb21wb25lbnQuc2NzcyddLFxufSlcbmV4cG9ydCBjbGFzcyBBZHNQYWdpbmF0aW9uQ29tcG9uZW50IGltcGxlbWVudHMgT25DaGFuZ2VzIHtcbiAgY29uc3RydWN0b3IocHJpdmF0ZSByZWdpc3RyeTogQWRzSWNvblJlZ2lzdHJ5KSB7XG4gICAgdGhpcy5yZWdpc3RyeS5yZWdpc3RlcihbYWRzSWNvbkNoZXZyb25MZWZ0LCBhZHNJY29uQ2hldnJvblJpZ2h0LCBhZHNJY29uTWVudU1vcmVJbmZvXSk7XG4gIH1cblxuICAvKipcbiAgICogVGhlIHRvdGFsIG51bWJlciBvZiBwYWdlc1xuICAgKi9cbiAgQElucHV0KCkgdG90YWxQYWdlcyE6IG51bWJlcjtcblxuICAvKipcbiAgICogVGhlIGN1cnJlbnQgcGFnZVxuICAgKi9cbiAgQElucHV0KCkgY3VycmVudFBhZ2UhOiBudW1iZXI7XG5cbiAgLyoqXG4gICAqIEV2ZW50IGVtaXR0ZWQgd2hlbiBhIHBhZ2UgYnV0dG9uIGlzIGNsaWNrZWRcbiAgICovXG4gIEBPdXRwdXQoKSBnb1RvUGFnZTogRXZlbnRFbWl0dGVyPG51bWJlcj4gPSBuZXcgRXZlbnRFbWl0dGVyPG51bWJlcj4oKTtcblxuICAvKipcbiAgICogRXZlbnQgZW1pdHRlZCB3aGVuIHRoZSBuZXh0IHBhZ2UgYnV0dG9uIGlzIGNsaWNrZWRcbiAgICovXG4gIEBPdXRwdXQoKSBnb1RvTmV4dFBhZ2U6IEV2ZW50RW1pdHRlcjxudWxsPiA9IG5ldyBFdmVudEVtaXR0ZXI8bnVsbD4oKTtcblxuICAvKipcbiAgICogRXZlbnQgZW1pdHRlZCB3aGVuIHRoZSBwcmV2aW91cyBwYWdlIGJ1dHRvbiBpcyBjbGlja2VkXG4gICAqL1xuICBAT3V0cHV0KCkgZ29Ub1ByZXZpb3VzUGFnZTogRXZlbnRFbWl0dGVyPG51bGw+ID0gbmV3IEV2ZW50RW1pdHRlcjxudWxsPigpO1xuXG4gIC8qKiBAaWdub3JlICovXG4gIHB1YmxpYyBwYWdlczogbnVtYmVyW10gPSBbXTtcblxuICAvKiogQGlnbm9yZSAqL1xuICBuZ09uQ2hhbmdlcyhjaGFuZ2VzOiBTaW1wbGVDaGFuZ2VzKTogdm9pZCB7XG4gICAgaWYgKFxuICAgICAgKGNoYW5nZXMuY3VycmVudFBhZ2UgJiYgY2hhbmdlcy5jdXJyZW50UGFnZS5jdXJyZW50VmFsdWUpIHx8XG4gICAgICAoY2hhbmdlcy50b3RhbFBhZ2VzICYmIGNoYW5nZXMudG90YWxQYWdlcy5jdXJyZW50VmFsdWUpXG4gICAgKSB7XG4gICAgICB0aGlzLnBhZ2VzID0gdGhpcy5nZXRQYWdlc1RvRGlzcGxheSgpO1xuICAgIH1cbiAgfVxuXG4gIC8qKiBAaWdub3JlICovXG4gIHB1YmxpYyBvbkdvVG9QYWdlKHBhZ2U6IG51bWJlcik6IHZvaWQge1xuICAgIHRoaXMuZ29Ub1BhZ2UuZW1pdChwYWdlKTtcbiAgfVxuXG4gIC8qKiBAaWdub3JlICovXG4gIHB1YmxpYyBvbkdvVG9OZXh0UGFnZSgpOiB2b2lkIHtcbiAgICB0aGlzLmdvVG9OZXh0UGFnZS5lbWl0KCk7XG4gIH1cblxuICAvKiogQGlnbm9yZSAqL1xuICBwdWJsaWMgb25Hb1RvUHJldmlvdXNQYWdlKCk6IHZvaWQge1xuICAgIHRoaXMuZ29Ub1ByZXZpb3VzUGFnZS5lbWl0KCk7XG4gIH1cblxuICAvKiogQGlnbm9yZSAqL1xuICBwcml2YXRlIGdldFBhZ2VzVG9EaXNwbGF5KCk6IG51bWJlcltdIHtcbiAgICBpZiAodGhpcy50b3RhbFBhZ2VzIDw9IDcpIHtcbiAgICAgIHJldHVybiBbLi4uQXJyYXkodGhpcy50b3RhbFBhZ2VzKS5rZXlzKCldLm1hcCgoeCkgPT4gKyt4KTtcbiAgICB9XG5cbiAgICBpZiAodGhpcy5jdXJyZW50UGFnZSA+IDUpIHtcbiAgICAgIGlmICh0aGlzLmN1cnJlbnRQYWdlID49IHRoaXMudG90YWxQYWdlcyAtIDQpIHtcbiAgICAgICAgcmV0dXJuIFtcbiAgICAgICAgICAxLFxuICAgICAgICAgIC0xLFxuICAgICAgICAgIHRoaXMudG90YWxQYWdlcyAtIDQsXG4gICAgICAgICAgdGhpcy50b3RhbFBhZ2VzIC0gMyxcbiAgICAgICAgICB0aGlzLnRvdGFsUGFnZXMgLSAyLFxuICAgICAgICAgIHRoaXMudG90YWxQYWdlcyAtIDEsXG4gICAgICAgICAgdGhpcy50b3RhbFBhZ2VzLFxuICAgICAgICBdO1xuICAgICAgfSBlbHNlIHtcbiAgICAgICAgcmV0dXJuIFsxLCAtMSwgdGhpcy5jdXJyZW50UGFnZSAtIDEsIHRoaXMuY3VycmVudFBhZ2UsIHRoaXMuY3VycmVudFBhZ2UgKyAxLCAtMSwgdGhpcy50b3RhbFBhZ2VzXTtcbiAgICAgIH1cbiAgICB9XG5cbiAgICByZXR1cm4gWzEsIDIsIDMsIDQsIDUsIC0xLCB0aGlzLnRvdGFsUGFnZXNdO1xuICB9XG59XG4iLCI8bmF2IGFyaWEtbGFiZWw9XCJQYWdpbmF0aW9uXCI+XG4gIDx1bD5cbiAgICA8bGk+XG4gICAgICA8YnV0dG9uXG4gICAgICAgIGFyaWEtbGFiZWw9XCJHbyBUbyBQcmV2aW91cyBQYWdlXCJcbiAgICAgICAgW2F0dHIuYXJpYS1kaXNhYmxlZF09XCJjdXJyZW50UGFnZSA9PT0gMVwiXG4gICAgICAgIFtkaXNhYmxlZF09XCJjdXJyZW50UGFnZSA9PT0gMVwiXG4gICAgICAgIGlkPVwicGFnaW5hdGlvblByZXZpb3VzXCJcbiAgICAgICAgKGNsaWNrKT1cIm9uR29Ub1ByZXZpb3VzUGFnZSgpXCJcbiAgICAgID5cbiAgICAgICAgPGFkcy1pY29uIG5hbWU9XCJjaGV2cm9uX2xlZnRcIiBzaXplPVwieHNcIiB0aGVtZT1cInByaW1hcnlcIj48L2Fkcy1pY29uPlxuICAgICAgPC9idXR0b24+XG4gICAgPC9saT5cbiAgICA8bGkgKm5nRm9yPVwibGV0IHBhZ2Ugb2YgcGFnZXNcIj5cbiAgICAgIDxhXG4gICAgICAgICpuZ0lmPVwicGFnZSAhPT0gLTE7IGVsc2UgbW9yZVwiXG4gICAgICAgIGNsYXNzPVwiaW50ZXJuYWxcIlxuICAgICAgICByb2xlPVwiYnV0dG9uXCJcbiAgICAgICAgW2F0dHIuYXJpYS1jdXJyZW50XT1cInBhZ2UgPT09IGN1cnJlbnRQYWdlXCJcbiAgICAgICAgW2F0dHIuYXJpYS1sYWJlbF09XCJwYWdlID09PSBjdXJyZW50UGFnZSA/ICdDdXJyZW50IFBhZ2UsIFBhZ2UgJyArIHBhZ2UgOiAnR28gdG8gUGFnZSAnICsgcGFnZVwiXG4gICAgICAgIFtjbGFzcy5jdXJyZW50XT1cInBhZ2UgPT09IGN1cnJlbnRQYWdlXCJcbiAgICAgICAgW2lkXT1cIidwYWdpbmF0aW9uUGFnZScgKyBwYWdlXCJcbiAgICAgICAgdGFiaW5kZXg9XCIwXCJcbiAgICAgICAgKGNsaWNrKT1cIm9uR29Ub1BhZ2UocGFnZSlcIlxuICAgICAgICAoa2V5dXAuZW50ZXIpPVwib25Hb1RvUGFnZShwYWdlKVwiXG4gICAgICAgID57eyBwYWdlIH19PC9hXG4gICAgICA+XG4gICAgICA8bmctdGVtcGxhdGUgI21vcmU+XG4gICAgICAgIDxhIGNsYXNzPVwibW9yZVwiPlxuICAgICAgICAgIDxhZHMtaWNvbiBuYW1lPVwibWVudV9tb3JlX2luZm9cIiBzaXplPVwieHNcIiB0aGVtZT1cInByaW1hcnlcIj48L2Fkcy1pY29uPlxuICAgICAgICA8L2E+XG4gICAgICA8L25nLXRlbXBsYXRlPlxuICAgIDwvbGk+XG4gICAgPGxpPlxuICAgICAgPGJ1dHRvblxuICAgICAgICBhcmlhLWxhYmVsPVwiR28gVG8gTmV4dCBQYWdlXCJcbiAgICAgICAgW2F0dHIuYXJpYS1kaXNhYmxlZF09XCJjdXJyZW50UGFnZSA9PT0gdG90YWxQYWdlc1wiXG4gICAgICAgIFtkaXNhYmxlZF09XCJjdXJyZW50UGFnZSA9PT0gdG90YWxQYWdlc1wiXG4gICAgICAgIGlkPVwicGFnaW5hdGlvbk5leHRcIlxuICAgICAgICAoY2xpY2spPVwib25Hb1RvTmV4dFBhZ2UoKVwiXG4gICAgICA+XG4gICAgICAgIDxhZHMtaWNvbiBuYW1lPVwiY2hldnJvbl9yaWdodFwiIHNpemU9XCJ4c1wiIHRoZW1lPVwicHJpbWFyeVwiPjwvYWRzLWljb24+XG4gICAgICA8L2J1dHRvbj5cbiAgICA8L2xpPlxuICA8L3VsPlxuPC9uYXY+XG4iXX0=
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
import { NgModule } from '@angular/core';
|
|
2
|
-
import { CommonModule } from '@angular/common';
|
|
3
|
-
import { AdsPaginationComponent } from './pagination.component';
|
|
4
|
-
import { AdsIconModule } from '@ascentgl/ads-icons';
|
|
5
|
-
import * as i0 from "@angular/core";
|
|
6
|
-
export class AdsPaginationModule {
|
|
7
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsPaginationModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
8
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.1.1", ngImport: i0, type: AdsPaginationModule, declarations: [AdsPaginationComponent], imports: [CommonModule, AdsIconModule], exports: [AdsPaginationComponent] }); }
|
|
9
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsPaginationModule, imports: [CommonModule, AdsIconModule] }); }
|
|
10
|
-
}
|
|
11
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsPaginationModule, decorators: [{
|
|
12
|
-
type: NgModule,
|
|
13
|
-
args: [{
|
|
14
|
-
imports: [CommonModule, AdsIconModule],
|
|
15
|
-
declarations: [AdsPaginationComponent],
|
|
16
|
-
exports: [AdsPaginationComponent],
|
|
17
|
-
}]
|
|
18
|
-
}] });
|
|
19
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicGFnaW5hdGlvbi5tb2R1bGUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL2Fkcy11aS9zcmMvbGliL2NvbXBvbmVudHMvcGFnaW5hdGlvbi9wYWdpbmF0aW9uLm1vZHVsZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsUUFBUSxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQ3pDLE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSxpQkFBaUIsQ0FBQztBQUMvQyxPQUFPLEVBQUUsc0JBQXNCLEVBQUUsTUFBTSx3QkFBd0IsQ0FBQztBQUNoRSxPQUFPLEVBQUUsYUFBYSxFQUFFLE1BQU0scUJBQXFCLENBQUM7O0FBT3BELE1BQU0sT0FBTyxtQkFBbUI7OEdBQW5CLG1CQUFtQjsrR0FBbkIsbUJBQW1CLGlCQUhmLHNCQUFzQixhQUQzQixZQUFZLEVBQUUsYUFBYSxhQUUzQixzQkFBc0I7K0dBRXJCLG1CQUFtQixZQUpwQixZQUFZLEVBQUUsYUFBYTs7MkZBSTFCLG1CQUFtQjtrQkFML0IsUUFBUTttQkFBQztvQkFDUixPQUFPLEVBQUUsQ0FBQyxZQUFZLEVBQUUsYUFBYSxDQUFDO29CQUN0QyxZQUFZLEVBQUUsQ0FBQyxzQkFBc0IsQ0FBQztvQkFDdEMsT0FBTyxFQUFFLENBQUMsc0JBQXNCLENBQUM7aUJBQ2xDIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgTmdNb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IENvbW1vbk1vZHVsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvbW1vbic7XG5pbXBvcnQgeyBBZHNQYWdpbmF0aW9uQ29tcG9uZW50IH0gZnJvbSAnLi9wYWdpbmF0aW9uLmNvbXBvbmVudCc7XG5pbXBvcnQgeyBBZHNJY29uTW9kdWxlIH0gZnJvbSAnQGFzY2VudGdsL2Fkcy1pY29ucyc7XG5cbkBOZ01vZHVsZSh7XG4gIGltcG9ydHM6IFtDb21tb25Nb2R1bGUsIEFkc0ljb25Nb2R1bGVdLFxuICBkZWNsYXJhdGlvbnM6IFtBZHNQYWdpbmF0aW9uQ29tcG9uZW50XSxcbiAgZXhwb3J0czogW0Fkc1BhZ2luYXRpb25Db21wb25lbnRdLFxufSlcbmV4cG9ydCBjbGFzcyBBZHNQYWdpbmF0aW9uTW9kdWxlIHt9XG4iXX0=
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
export * from './pagination.component';
|
|
2
|
-
export * from './pagination.module';
|
|
3
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvYWRzLXVpL3NyYy9saWIvY29tcG9uZW50cy9wYWdpbmF0aW9uL3B1YmxpYy1hcGkudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyx3QkFBd0IsQ0FBQztBQUN2QyxjQUFjLHFCQUFxQixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9wYWdpbmF0aW9uLmNvbXBvbmVudCc7XG5leHBvcnQgKiBmcm9tICcuL3BhZ2luYXRpb24ubW9kdWxlJztcbiJdfQ==
|
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
export * from './public-api';
|
|
2
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL2Fkcy11aS9zcmMvbGliL2NvbXBvbmVudHMvd2lkZ2V0cy93aWRnZXQtYWN0aW9ucy9pbmRleC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLGNBQWMsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCAqIGZyb20gJy4vcHVibGljLWFwaSc7XG4iXX0=
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
export * from './widget-actions.component';
|
|
2
|
-
export * from './widget-actions.module';
|
|
3
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvYWRzLXVpL3NyYy9saWIvY29tcG9uZW50cy93aWRnZXRzL3dpZGdldC1hY3Rpb25zL3B1YmxpYy1hcGkudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsY0FBYyw0QkFBNEIsQ0FBQztBQUMzQyxjQUFjLHlCQUF5QixDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi93aWRnZXQtYWN0aW9ucy5jb21wb25lbnQnO1xuZXhwb3J0ICogZnJvbSAnLi93aWRnZXQtYWN0aW9ucy5tb2R1bGUnO1xuIl19
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import { Component } from '@angular/core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export class AdsWidgetActionsComponent {
|
|
4
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsWidgetActionsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
5
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.1.1", type: AdsWidgetActionsComponent, selector: "ads-widget-actions", ngImport: i0, template: "<div class=\"widget-actions\">\n <ng-content></ng-content>\n</div>\n", styles: [".widget-actions{display:flex;flex-direction:column;align-items:center;justify-content:center;padding:0 24px}\n"] }); }
|
|
6
|
-
}
|
|
7
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsWidgetActionsComponent, decorators: [{
|
|
8
|
-
type: Component,
|
|
9
|
-
args: [{ selector: 'ads-widget-actions', template: "<div class=\"widget-actions\">\n <ng-content></ng-content>\n</div>\n", styles: [".widget-actions{display:flex;flex-direction:column;align-items:center;justify-content:center;padding:0 24px}\n"] }]
|
|
10
|
-
}] });
|
|
11
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoid2lkZ2V0LWFjdGlvbnMuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9hZHMtdWkvc3JjL2xpYi9jb21wb25lbnRzL3dpZGdldHMvd2lkZ2V0LWFjdGlvbnMvd2lkZ2V0LWFjdGlvbnMuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9hZHMtdWkvc3JjL2xpYi9jb21wb25lbnRzL3dpZGdldHMvd2lkZ2V0LWFjdGlvbnMvd2lkZ2V0LWFjdGlvbnMuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFNBQVMsRUFBRSxNQUFNLGVBQWUsQ0FBQzs7QUFPMUMsTUFBTSxPQUFPLHlCQUF5Qjs4R0FBekIseUJBQXlCO2tHQUF6Qix5QkFBeUIsMERDUHRDLHVFQUdBOzsyRkRJYSx5QkFBeUI7a0JBTHJDLFNBQVM7K0JBQ0Usb0JBQW9CIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ29tcG9uZW50IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ2Fkcy13aWRnZXQtYWN0aW9ucycsXG4gIHN0eWxlVXJsczogWyd3aWRnZXQtYWN0aW9ucy5jb21wb25lbnQuc2NzcyddLFxuICB0ZW1wbGF0ZVVybDogJ3dpZGdldC1hY3Rpb25zLmNvbXBvbmVudC5odG1sJyxcbn0pXG5leHBvcnQgY2xhc3MgQWRzV2lkZ2V0QWN0aW9uc0NvbXBvbmVudCB7fVxuIiwiPGRpdiBjbGFzcz1cIndpZGdldC1hY3Rpb25zXCI+XG4gIDxuZy1jb250ZW50PjwvbmctY29udGVudD5cbjwvZGl2PlxuIl19
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
import { NgModule } from '@angular/core';
|
|
2
|
-
import { AdsWidgetActionsComponent } from './widget-actions.component';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export class AdsWidgetActionsModule {
|
|
5
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsWidgetActionsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
6
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.1.1", ngImport: i0, type: AdsWidgetActionsModule, declarations: [AdsWidgetActionsComponent], exports: [AdsWidgetActionsComponent] }); }
|
|
7
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsWidgetActionsModule }); }
|
|
8
|
-
}
|
|
9
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsWidgetActionsModule, decorators: [{
|
|
10
|
-
type: NgModule,
|
|
11
|
-
args: [{
|
|
12
|
-
exports: [AdsWidgetActionsComponent],
|
|
13
|
-
declarations: [AdsWidgetActionsComponent],
|
|
14
|
-
}]
|
|
15
|
-
}] });
|
|
16
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoid2lkZ2V0LWFjdGlvbnMubW9kdWxlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9hZHMtdWkvc3JjL2xpYi9jb21wb25lbnRzL3dpZGdldHMvd2lkZ2V0LWFjdGlvbnMvd2lkZ2V0LWFjdGlvbnMubW9kdWxlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxRQUFRLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFFekMsT0FBTyxFQUFFLHlCQUF5QixFQUFFLE1BQU0sNEJBQTRCLENBQUM7O0FBTXZFLE1BQU0sT0FBTyxzQkFBc0I7OEdBQXRCLHNCQUFzQjsrR0FBdEIsc0JBQXNCLGlCQUZsQix5QkFBeUIsYUFEOUIseUJBQXlCOytHQUd4QixzQkFBc0I7OzJGQUF0QixzQkFBc0I7a0JBSmxDLFFBQVE7bUJBQUM7b0JBQ1IsT0FBTyxFQUFFLENBQUMseUJBQXlCLENBQUM7b0JBQ3BDLFlBQVksRUFBRSxDQUFDLHlCQUF5QixDQUFDO2lCQUMxQyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IE5nTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5cbmltcG9ydCB7IEFkc1dpZGdldEFjdGlvbnNDb21wb25lbnQgfSBmcm9tICcuL3dpZGdldC1hY3Rpb25zLmNvbXBvbmVudCc7XG5cbkBOZ01vZHVsZSh7XG4gIGV4cG9ydHM6IFtBZHNXaWRnZXRBY3Rpb25zQ29tcG9uZW50XSxcbiAgZGVjbGFyYXRpb25zOiBbQWRzV2lkZ2V0QWN0aW9uc0NvbXBvbmVudF0sXG59KVxuZXhwb3J0IGNsYXNzIEFkc1dpZGdldEFjdGlvbnNNb2R1bGUge31cbiJdfQ==
|
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
export * from './public-api';
|
|
2
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiaW5kZXguanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL2Fkcy11aS9zcmMvbGliL2NvbXBvbmVudHMvd2lkZ2V0cy93aWRnZXQtYmFyL2luZGV4LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLGNBQWMsY0FBYyxDQUFDIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0ICogZnJvbSAnLi9wdWJsaWMtYXBpJztcbiJdfQ==
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
export * from './widget-bar.component';
|
|
2
|
-
export * from './widget-bar.module';
|
|
3
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicHVibGljLWFwaS5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL2xpYnMvYWRzLXVpL3NyYy9saWIvY29tcG9uZW50cy93aWRnZXRzL3dpZGdldC1iYXIvcHVibGljLWFwaS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxjQUFjLHdCQUF3QixDQUFDO0FBQ3ZDLGNBQWMscUJBQXFCLENBQUMiLCJzb3VyY2VzQ29udGVudCI6WyJleHBvcnQgKiBmcm9tICcuL3dpZGdldC1iYXIuY29tcG9uZW50JztcbmV4cG9ydCAqIGZyb20gJy4vd2lkZ2V0LWJhci5tb2R1bGUnO1xuIl19
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
import { Component, Input } from '@angular/core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
import * as i1 from "@angular/common";
|
|
4
|
-
export class AdsWidgetBarComponent {
|
|
5
|
-
constructor() {
|
|
6
|
-
/**
|
|
7
|
-
* Whether the viewport is mobile
|
|
8
|
-
*/
|
|
9
|
-
this.isMobile = false;
|
|
10
|
-
}
|
|
11
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsWidgetBarComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
12
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.1.1", type: AdsWidgetBarComponent, selector: "ads-widget-bar", inputs: { isMobile: "isMobile" }, ngImport: i0, template: "<div class=\"widget-bar\" *ngIf=\"!isMobile\">\n <ng-content></ng-content>\n</div>\n", styles: [".widget-bar{display:flex;min-height:82px;box-sizing:border-box;align-items:center;justify-content:space-between;border-top:1px solid var(--color-light);border-right:1px solid var(--color-light);background-color:var(--color-white);position:absolute;width:100%;z-index:1}\n"], dependencies: [{ kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] }); }
|
|
13
|
-
}
|
|
14
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsWidgetBarComponent, decorators: [{
|
|
15
|
-
type: Component,
|
|
16
|
-
args: [{ selector: 'ads-widget-bar', template: "<div class=\"widget-bar\" *ngIf=\"!isMobile\">\n <ng-content></ng-content>\n</div>\n", styles: [".widget-bar{display:flex;min-height:82px;box-sizing:border-box;align-items:center;justify-content:space-between;border-top:1px solid var(--color-light);border-right:1px solid var(--color-light);background-color:var(--color-white);position:absolute;width:100%;z-index:1}\n"] }]
|
|
17
|
-
}], propDecorators: { isMobile: [{
|
|
18
|
-
type: Input
|
|
19
|
-
}] } });
|
|
20
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoid2lkZ2V0LWJhci5jb21wb25lbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL2Fkcy11aS9zcmMvbGliL2NvbXBvbmVudHMvd2lkZ2V0cy93aWRnZXQtYmFyL3dpZGdldC1iYXIuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vLi4vLi4vLi4vbGlicy9hZHMtdWkvc3JjL2xpYi9jb21wb25lbnRzL3dpZGdldHMvd2lkZ2V0LWJhci93aWRnZXQtYmFyLmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxTQUFTLEVBQUUsS0FBSyxFQUFFLE1BQU0sZUFBZSxDQUFDOzs7QUFPakQsTUFBTSxPQUFPLHFCQUFxQjtJQUxsQztRQU1FOztXQUVHO1FBQ00sYUFBUSxHQUFHLEtBQUssQ0FBQztLQUMzQjs4R0FMWSxxQkFBcUI7a0dBQXJCLHFCQUFxQix3RkNQbEMsdUZBR0E7OzJGRElhLHFCQUFxQjtrQkFMakMsU0FBUzsrQkFDRSxnQkFBZ0I7OEJBUWpCLFFBQVE7c0JBQWhCLEtBQUsiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21wb25lbnQsIElucHV0IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ2Fkcy13aWRnZXQtYmFyJyxcbiAgc3R5bGVVcmxzOiBbJ3dpZGdldC1iYXIuY29tcG9uZW50LnNjc3MnXSxcbiAgdGVtcGxhdGVVcmw6ICd3aWRnZXQtYmFyLmNvbXBvbmVudC5odG1sJyxcbn0pXG5leHBvcnQgY2xhc3MgQWRzV2lkZ2V0QmFyQ29tcG9uZW50IHtcbiAgLyoqXG4gICAqIFdoZXRoZXIgdGhlIHZpZXdwb3J0IGlzIG1vYmlsZVxuICAgKi9cbiAgQElucHV0KCkgaXNNb2JpbGUgPSBmYWxzZTtcbn1cbiIsIjxkaXYgY2xhc3M9XCJ3aWRnZXQtYmFyXCIgKm5nSWY9XCIhaXNNb2JpbGVcIj5cbiAgPG5nLWNvbnRlbnQ+PC9uZy1jb250ZW50PlxuPC9kaXY+XG4iXX0=
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
import { CommonModule } from '@angular/common';
|
|
2
|
-
import { NgModule } from '@angular/core';
|
|
3
|
-
import { AdsWidgetBarComponent } from './widget-bar.component';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export class AdsWidgetBarModule {
|
|
6
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsWidgetBarModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
7
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.1.1", ngImport: i0, type: AdsWidgetBarModule, declarations: [AdsWidgetBarComponent], imports: [CommonModule], exports: [AdsWidgetBarComponent] }); }
|
|
8
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsWidgetBarModule, imports: [CommonModule] }); }
|
|
9
|
-
}
|
|
10
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsWidgetBarModule, decorators: [{
|
|
11
|
-
type: NgModule,
|
|
12
|
-
args: [{
|
|
13
|
-
imports: [CommonModule],
|
|
14
|
-
exports: [AdsWidgetBarComponent],
|
|
15
|
-
declarations: [AdsWidgetBarComponent],
|
|
16
|
-
}]
|
|
17
|
-
}] });
|
|
18
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoid2lkZ2V0LWJhci5tb2R1bGUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi8uLi8uLi8uLi9saWJzL2Fkcy11aS9zcmMvbGliL2NvbXBvbmVudHMvd2lkZ2V0cy93aWRnZXQtYmFyL3dpZGdldC1iYXIubW9kdWxlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxZQUFZLEVBQUUsTUFBTSxpQkFBaUIsQ0FBQztBQUMvQyxPQUFPLEVBQUUsUUFBUSxFQUFFLE1BQU0sZUFBZSxDQUFDO0FBQ3pDLE9BQU8sRUFBRSxxQkFBcUIsRUFBRSxNQUFNLHdCQUF3QixDQUFDOztBQU8vRCxNQUFNLE9BQU8sa0JBQWtCOzhHQUFsQixrQkFBa0I7K0dBQWxCLGtCQUFrQixpQkFGZCxxQkFBcUIsYUFGMUIsWUFBWSxhQUNaLHFCQUFxQjsrR0FHcEIsa0JBQWtCLFlBSm5CLFlBQVk7OzJGQUlYLGtCQUFrQjtrQkFMOUIsUUFBUTttQkFBQztvQkFDUixPQUFPLEVBQUUsQ0FBQyxZQUFZLENBQUM7b0JBQ3ZCLE9BQU8sRUFBRSxDQUFDLHFCQUFxQixDQUFDO29CQUNoQyxZQUFZLEVBQUUsQ0FBQyxxQkFBcUIsQ0FBQztpQkFDdEMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21tb25Nb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb21tb24nO1xuaW1wb3J0IHsgTmdNb2R1bGUgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IEFkc1dpZGdldEJhckNvbXBvbmVudCB9IGZyb20gJy4vd2lkZ2V0LWJhci5jb21wb25lbnQnO1xuXG5ATmdNb2R1bGUoe1xuICBpbXBvcnRzOiBbQ29tbW9uTW9kdWxlXSxcbiAgZXhwb3J0czogW0Fkc1dpZGdldEJhckNvbXBvbmVudF0sXG4gIGRlY2xhcmF0aW9uczogW0Fkc1dpZGdldEJhckNvbXBvbmVudF0sXG59KVxuZXhwb3J0IGNsYXNzIEFkc1dpZGdldEJhck1vZHVsZSB7fVxuIl19
|