@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
|
@@ -1,42 +0,0 @@
|
|
|
1
|
-
import * as i0 from '@angular/core';
|
|
2
|
-
import { Component, Input, NgModule } from '@angular/core';
|
|
3
|
-
import * as i1 from '@angular/common';
|
|
4
|
-
import { CommonModule } from '@angular/common';
|
|
5
|
-
|
|
6
|
-
class AdsWidgetBarComponent {
|
|
7
|
-
constructor() {
|
|
8
|
-
/**
|
|
9
|
-
* Whether the viewport is mobile
|
|
10
|
-
*/
|
|
11
|
-
this.isMobile = false;
|
|
12
|
-
}
|
|
13
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsWidgetBarComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
14
|
-
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"] }] }); }
|
|
15
|
-
}
|
|
16
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsWidgetBarComponent, decorators: [{
|
|
17
|
-
type: Component,
|
|
18
|
-
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"] }]
|
|
19
|
-
}], propDecorators: { isMobile: [{
|
|
20
|
-
type: Input
|
|
21
|
-
}] } });
|
|
22
|
-
|
|
23
|
-
class AdsWidgetBarModule {
|
|
24
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsWidgetBarModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
25
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.1.1", ngImport: i0, type: AdsWidgetBarModule, declarations: [AdsWidgetBarComponent], imports: [CommonModule], exports: [AdsWidgetBarComponent] }); }
|
|
26
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsWidgetBarModule, imports: [CommonModule] }); }
|
|
27
|
-
}
|
|
28
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsWidgetBarModule, decorators: [{
|
|
29
|
-
type: NgModule,
|
|
30
|
-
args: [{
|
|
31
|
-
imports: [CommonModule],
|
|
32
|
-
exports: [AdsWidgetBarComponent],
|
|
33
|
-
declarations: [AdsWidgetBarComponent],
|
|
34
|
-
}]
|
|
35
|
-
}] });
|
|
36
|
-
|
|
37
|
-
/**
|
|
38
|
-
* Generated bundle index. Do not edit.
|
|
39
|
-
*/
|
|
40
|
-
|
|
41
|
-
export { AdsWidgetBarComponent, AdsWidgetBarModule };
|
|
42
|
-
//# sourceMappingURL=ascentgl-ads-ui-src-lib-components-widgets-widget-bar.mjs.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"ascentgl-ads-ui-src-lib-components-widgets-widget-bar.mjs","sources":["../../../../libs/ads-ui/src/lib/components/widgets/widget-bar/widget-bar.component.ts","../../../../libs/ads-ui/src/lib/components/widgets/widget-bar/widget-bar.component.html","../../../../libs/ads-ui/src/lib/components/widgets/widget-bar/widget-bar.module.ts","../../../../libs/ads-ui/src/lib/components/widgets/widget-bar/ascentgl-ads-ui-src-lib-components-widgets-widget-bar.ts"],"sourcesContent":["import { Component, Input } from '@angular/core';\n\n@Component({\n selector: 'ads-widget-bar',\n styleUrls: ['widget-bar.component.scss'],\n templateUrl: 'widget-bar.component.html',\n})\nexport class AdsWidgetBarComponent {\n /**\n * Whether the viewport is mobile\n */\n @Input() isMobile = false;\n}\n","<div class=\"widget-bar\" *ngIf=\"!isMobile\">\n <ng-content></ng-content>\n</div>\n","import { CommonModule } from '@angular/common';\nimport { NgModule } from '@angular/core';\nimport { AdsWidgetBarComponent } from './widget-bar.component';\n\n@NgModule({\n imports: [CommonModule],\n exports: [AdsWidgetBarComponent],\n declarations: [AdsWidgetBarComponent],\n})\nexport class AdsWidgetBarModule {}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":";;;;;MAOa,qBAAqB,CAAA;AALlC,IAAA,WAAA,GAAA;AAME;;AAEG;QACM,IAAQ,CAAA,QAAA,GAAG,KAAK,CAAC;AAC3B,KAAA;8GALY,qBAAqB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA,EAAA;AAArB,IAAA,SAAA,IAAA,CAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,IAAA,EAAA,qBAAqB,wFCPlC,uFAGA,EAAA,MAAA,EAAA,CAAA,iRAAA,CAAA,EAAA,YAAA,EAAA,CAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,IAAA,EAAA,QAAA,EAAA,QAAA,EAAA,MAAA,EAAA,CAAA,MAAA,EAAA,UAAA,EAAA,UAAA,CAAA,EAAA,CAAA,EAAA,CAAA,CAAA,EAAA;;2FDIa,qBAAqB,EAAA,UAAA,EAAA,CAAA;kBALjC,SAAS;+BACE,gBAAgB,EAAA,QAAA,EAAA,uFAAA,EAAA,MAAA,EAAA,CAAA,iRAAA,CAAA,EAAA,CAAA;8BAQjB,QAAQ,EAAA,CAAA;sBAAhB,KAAK;;;MEFK,kBAAkB,CAAA;8GAAlB,kBAAkB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,QAAA,EAAA,CAAA,CAAA,EAAA;AAAlB,IAAA,SAAA,IAAA,CAAA,IAAA,GAAA,EAAA,CAAA,mBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,kBAAkB,EAFd,YAAA,EAAA,CAAA,qBAAqB,CAF1B,EAAA,OAAA,EAAA,CAAA,YAAY,aACZ,qBAAqB,CAAA,EAAA,CAAA,CAAA,EAAA;AAGpB,IAAA,SAAA,IAAA,CAAA,IAAA,GAAA,EAAA,CAAA,mBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,kBAAkB,YAJnB,YAAY,CAAA,EAAA,CAAA,CAAA,EAAA;;2FAIX,kBAAkB,EAAA,UAAA,EAAA,CAAA;kBAL9B,QAAQ;AAAC,YAAA,IAAA,EAAA,CAAA;oBACR,OAAO,EAAE,CAAC,YAAY,CAAC;oBACvB,OAAO,EAAE,CAAC,qBAAqB,CAAC;oBAChC,YAAY,EAAE,CAAC,qBAAqB,CAAC;AACtC,iBAAA,CAAA;;;ACRD;;AAEG;;;;"}
|
|
@@ -1,33 +0,0 @@
|
|
|
1
|
-
import * as i0 from '@angular/core';
|
|
2
|
-
import { Component, NgModule } from '@angular/core';
|
|
3
|
-
import { CommonModule } from '@angular/common';
|
|
4
|
-
|
|
5
|
-
class AdsWidgetContainerComponent {
|
|
6
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsWidgetContainerComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
7
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.1.1", type: AdsWidgetContainerComponent, selector: "ads-widget-container", ngImport: i0, template: "<div class=\"widget-container\">\n <ng-content></ng-content>\n</div>\n", styles: [":host{display:flex;overflow:hidden;height:100%;min-height:1px;align-items:stretch}.widget-container{flex:1;background-color:#fafafa;border-radius:10px;box-shadow:0 100px 80px #6c49ac12,0 41.7776px 33.4221px #6c49ac0d,0 22.3363px 17.869px #6c49ac0b,0 12.5216px 10.0172px #6c49ac09,0 6.6501px 5.32008px #6c49ac07,0 2.76726px 2.21381px #6c49ac05}\n"] }); }
|
|
8
|
-
}
|
|
9
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsWidgetContainerComponent, decorators: [{
|
|
10
|
-
type: Component,
|
|
11
|
-
args: [{ selector: 'ads-widget-container', template: "<div class=\"widget-container\">\n <ng-content></ng-content>\n</div>\n", styles: [":host{display:flex;overflow:hidden;height:100%;min-height:1px;align-items:stretch}.widget-container{flex:1;background-color:#fafafa;border-radius:10px;box-shadow:0 100px 80px #6c49ac12,0 41.7776px 33.4221px #6c49ac0d,0 22.3363px 17.869px #6c49ac0b,0 12.5216px 10.0172px #6c49ac09,0 6.6501px 5.32008px #6c49ac07,0 2.76726px 2.21381px #6c49ac05}\n"] }]
|
|
12
|
-
}] });
|
|
13
|
-
|
|
14
|
-
class AdsWidgetContainerModule {
|
|
15
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsWidgetContainerModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
16
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.1.1", ngImport: i0, type: AdsWidgetContainerModule, declarations: [AdsWidgetContainerComponent], imports: [CommonModule], exports: [AdsWidgetContainerComponent] }); }
|
|
17
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsWidgetContainerModule, imports: [CommonModule] }); }
|
|
18
|
-
}
|
|
19
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsWidgetContainerModule, decorators: [{
|
|
20
|
-
type: NgModule,
|
|
21
|
-
args: [{
|
|
22
|
-
imports: [CommonModule],
|
|
23
|
-
exports: [AdsWidgetContainerComponent],
|
|
24
|
-
declarations: [AdsWidgetContainerComponent],
|
|
25
|
-
}]
|
|
26
|
-
}] });
|
|
27
|
-
|
|
28
|
-
/**
|
|
29
|
-
* Generated bundle index. Do not edit.
|
|
30
|
-
*/
|
|
31
|
-
|
|
32
|
-
export { AdsWidgetContainerComponent, AdsWidgetContainerModule };
|
|
33
|
-
//# sourceMappingURL=ascentgl-ads-ui-src-lib-components-widgets-widget-container.mjs.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"ascentgl-ads-ui-src-lib-components-widgets-widget-container.mjs","sources":["../../../../libs/ads-ui/src/lib/components/widgets/widget-container/widget-container.component.ts","../../../../libs/ads-ui/src/lib/components/widgets/widget-container/widget-container.component.html","../../../../libs/ads-ui/src/lib/components/widgets/widget-container/widget-container.module.ts","../../../../libs/ads-ui/src/lib/components/widgets/widget-container/ascentgl-ads-ui-src-lib-components-widgets-widget-container.ts"],"sourcesContent":["import { Component } from '@angular/core';\n\n@Component({\n selector: 'ads-widget-container',\n templateUrl: './widget-container.component.html',\n styleUrls: ['./widget-container.component.scss'],\n})\nexport class AdsWidgetContainerComponent {}\n","<div class=\"widget-container\">\n <ng-content></ng-content>\n</div>\n","import { CommonModule } from '@angular/common';\nimport { NgModule } from '@angular/core';\nimport { AdsWidgetContainerComponent } from './widget-container.component';\n\n@NgModule({\n imports: [CommonModule],\n exports: [AdsWidgetContainerComponent],\n declarations: [AdsWidgetContainerComponent],\n})\nexport class AdsWidgetContainerModule {}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":";;;;MAOa,2BAA2B,CAAA;8GAA3B,2BAA2B,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA,EAAA;AAA3B,IAAA,SAAA,IAAA,CAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,IAAA,EAAA,2BAA2B,4DCPxC,yEAGA,EAAA,MAAA,EAAA,CAAA,2VAAA,CAAA,EAAA,CAAA,CAAA,EAAA;;2FDIa,2BAA2B,EAAA,UAAA,EAAA,CAAA;kBALvC,SAAS;+BACE,sBAAsB,EAAA,QAAA,EAAA,yEAAA,EAAA,MAAA,EAAA,CAAA,2VAAA,CAAA,EAAA,CAAA;;;MEMrB,wBAAwB,CAAA;8GAAxB,wBAAwB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,QAAA,EAAA,CAAA,CAAA,EAAA;AAAxB,IAAA,SAAA,IAAA,CAAA,IAAA,GAAA,EAAA,CAAA,mBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,wBAAwB,EAFpB,YAAA,EAAA,CAAA,2BAA2B,CAFhC,EAAA,OAAA,EAAA,CAAA,YAAY,aACZ,2BAA2B,CAAA,EAAA,CAAA,CAAA,EAAA;AAG1B,IAAA,SAAA,IAAA,CAAA,IAAA,GAAA,EAAA,CAAA,mBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,wBAAwB,YAJzB,YAAY,CAAA,EAAA,CAAA,CAAA,EAAA;;2FAIX,wBAAwB,EAAA,UAAA,EAAA,CAAA;kBALpC,QAAQ;AAAC,YAAA,IAAA,EAAA,CAAA;oBACR,OAAO,EAAE,CAAC,YAAY,CAAC;oBACvB,OAAO,EAAE,CAAC,2BAA2B,CAAC;oBACtC,YAAY,EAAE,CAAC,2BAA2B,CAAC;AAC5C,iBAAA,CAAA;;;ACRD;;AAEG;;;;"}
|
|
@@ -1,33 +0,0 @@
|
|
|
1
|
-
import * as i0 from '@angular/core';
|
|
2
|
-
import { Component, NgModule } from '@angular/core';
|
|
3
|
-
import { CommonModule } from '@angular/common';
|
|
4
|
-
|
|
5
|
-
class AdsWidgetFooterComponent {
|
|
6
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsWidgetFooterComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
7
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.1.1", type: AdsWidgetFooterComponent, selector: "ads-widget-footer", ngImport: i0, template: "<div class=\"widget-footer\">\n <ng-content></ng-content>\n</div>\n", styles: [".widget-footer{display:flex;justify-content:space-between;padding:24px}\n"] }); }
|
|
8
|
-
}
|
|
9
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsWidgetFooterComponent, decorators: [{
|
|
10
|
-
type: Component,
|
|
11
|
-
args: [{ selector: 'ads-widget-footer', template: "<div class=\"widget-footer\">\n <ng-content></ng-content>\n</div>\n", styles: [".widget-footer{display:flex;justify-content:space-between;padding:24px}\n"] }]
|
|
12
|
-
}] });
|
|
13
|
-
|
|
14
|
-
class AdsWidgetFooterModule {
|
|
15
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsWidgetFooterModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
16
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.1.1", ngImport: i0, type: AdsWidgetFooterModule, declarations: [AdsWidgetFooterComponent], imports: [CommonModule], exports: [AdsWidgetFooterComponent] }); }
|
|
17
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsWidgetFooterModule, imports: [CommonModule] }); }
|
|
18
|
-
}
|
|
19
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsWidgetFooterModule, decorators: [{
|
|
20
|
-
type: NgModule,
|
|
21
|
-
args: [{
|
|
22
|
-
imports: [CommonModule],
|
|
23
|
-
exports: [AdsWidgetFooterComponent],
|
|
24
|
-
declarations: [AdsWidgetFooterComponent],
|
|
25
|
-
}]
|
|
26
|
-
}] });
|
|
27
|
-
|
|
28
|
-
/**
|
|
29
|
-
* Generated bundle index. Do not edit.
|
|
30
|
-
*/
|
|
31
|
-
|
|
32
|
-
export { AdsWidgetFooterComponent, AdsWidgetFooterModule };
|
|
33
|
-
//# sourceMappingURL=ascentgl-ads-ui-src-lib-components-widgets-widget-footer.mjs.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"ascentgl-ads-ui-src-lib-components-widgets-widget-footer.mjs","sources":["../../../../libs/ads-ui/src/lib/components/widgets/widget-footer/widget-footer.component.ts","../../../../libs/ads-ui/src/lib/components/widgets/widget-footer/widget-footer.component.html","../../../../libs/ads-ui/src/lib/components/widgets/widget-footer/widget-footer.module.ts","../../../../libs/ads-ui/src/lib/components/widgets/widget-footer/ascentgl-ads-ui-src-lib-components-widgets-widget-footer.ts"],"sourcesContent":["import { Component } from '@angular/core';\n\n@Component({\n selector: 'ads-widget-footer',\n templateUrl: './widget-footer.component.html',\n styleUrls: ['./widget-footer.component.scss'],\n})\nexport class AdsWidgetFooterComponent {}\n","<div class=\"widget-footer\">\n <ng-content></ng-content>\n</div>\n","import { CommonModule } from '@angular/common';\nimport { NgModule } from '@angular/core';\n\nimport { AdsWidgetFooterComponent } from './widget-footer.component';\n\n@NgModule({\n imports: [CommonModule],\n exports: [AdsWidgetFooterComponent],\n declarations: [AdsWidgetFooterComponent],\n})\nexport class AdsWidgetFooterModule {}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":";;;;MAOa,wBAAwB,CAAA;8GAAxB,wBAAwB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA,EAAA;AAAxB,IAAA,SAAA,IAAA,CAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,IAAA,EAAA,wBAAwB,yDCPrC,sEAGA,EAAA,MAAA,EAAA,CAAA,2EAAA,CAAA,EAAA,CAAA,CAAA,EAAA;;2FDIa,wBAAwB,EAAA,UAAA,EAAA,CAAA;kBALpC,SAAS;+BACE,mBAAmB,EAAA,QAAA,EAAA,sEAAA,EAAA,MAAA,EAAA,CAAA,2EAAA,CAAA,EAAA,CAAA;;;MEOlB,qBAAqB,CAAA;8GAArB,qBAAqB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,QAAA,EAAA,CAAA,CAAA,EAAA;AAArB,IAAA,SAAA,IAAA,CAAA,IAAA,GAAA,EAAA,CAAA,mBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,qBAAqB,EAFjB,YAAA,EAAA,CAAA,wBAAwB,CAF7B,EAAA,OAAA,EAAA,CAAA,YAAY,aACZ,wBAAwB,CAAA,EAAA,CAAA,CAAA,EAAA;AAGvB,IAAA,SAAA,IAAA,CAAA,IAAA,GAAA,EAAA,CAAA,mBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,qBAAqB,YAJtB,YAAY,CAAA,EAAA,CAAA,CAAA,EAAA;;2FAIX,qBAAqB,EAAA,UAAA,EAAA,CAAA;kBALjC,QAAQ;AAAC,YAAA,IAAA,EAAA,CAAA;oBACR,OAAO,EAAE,CAAC,YAAY,CAAC;oBACvB,OAAO,EAAE,CAAC,wBAAwB,CAAC;oBACnC,YAAY,EAAE,CAAC,wBAAwB,CAAC;AACzC,iBAAA,CAAA;;;ACTD;;AAEG;;;;"}
|
|
@@ -1,33 +0,0 @@
|
|
|
1
|
-
import * as i0 from '@angular/core';
|
|
2
|
-
import { Component, NgModule } from '@angular/core';
|
|
3
|
-
import { CommonModule } from '@angular/common';
|
|
4
|
-
|
|
5
|
-
class WidgetHeaderComponent {
|
|
6
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: WidgetHeaderComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
7
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.1.1", type: WidgetHeaderComponent, selector: "ads-widget-header", ngImport: i0, template: "<div class=\"widget-header\">\n <ng-content></ng-content>\n</div>\n", styles: [".widget-header{display:flex;justify-content:space-between;padding:24px 24px 0}\n"] }); }
|
|
8
|
-
}
|
|
9
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: WidgetHeaderComponent, decorators: [{
|
|
10
|
-
type: Component,
|
|
11
|
-
args: [{ selector: 'ads-widget-header', template: "<div class=\"widget-header\">\n <ng-content></ng-content>\n</div>\n", styles: [".widget-header{display:flex;justify-content:space-between;padding:24px 24px 0}\n"] }]
|
|
12
|
-
}] });
|
|
13
|
-
|
|
14
|
-
class AdsWidgetHeaderModule {
|
|
15
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsWidgetHeaderModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
16
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.1.1", ngImport: i0, type: AdsWidgetHeaderModule, declarations: [WidgetHeaderComponent], imports: [CommonModule], exports: [WidgetHeaderComponent] }); }
|
|
17
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsWidgetHeaderModule, imports: [CommonModule] }); }
|
|
18
|
-
}
|
|
19
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsWidgetHeaderModule, decorators: [{
|
|
20
|
-
type: NgModule,
|
|
21
|
-
args: [{
|
|
22
|
-
imports: [CommonModule],
|
|
23
|
-
exports: [WidgetHeaderComponent],
|
|
24
|
-
declarations: [WidgetHeaderComponent],
|
|
25
|
-
}]
|
|
26
|
-
}] });
|
|
27
|
-
|
|
28
|
-
/**
|
|
29
|
-
* Generated bundle index. Do not edit.
|
|
30
|
-
*/
|
|
31
|
-
|
|
32
|
-
export { AdsWidgetHeaderModule, WidgetHeaderComponent };
|
|
33
|
-
//# sourceMappingURL=ascentgl-ads-ui-src-lib-components-widgets-widget-header.mjs.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"ascentgl-ads-ui-src-lib-components-widgets-widget-header.mjs","sources":["../../../../libs/ads-ui/src/lib/components/widgets/widget-header/widget-header.component.ts","../../../../libs/ads-ui/src/lib/components/widgets/widget-header/widget-header.component.html","../../../../libs/ads-ui/src/lib/components/widgets/widget-header/widget-header.module.ts","../../../../libs/ads-ui/src/lib/components/widgets/widget-header/ascentgl-ads-ui-src-lib-components-widgets-widget-header.ts"],"sourcesContent":["import { Component } from '@angular/core';\n\n@Component({\n selector: 'ads-widget-header',\n templateUrl: './widget-header.component.html',\n styleUrls: ['./widget-header.component.scss'],\n})\nexport class WidgetHeaderComponent {}\n","<div class=\"widget-header\">\n <ng-content></ng-content>\n</div>\n","import { CommonModule } from '@angular/common';\nimport { NgModule } from '@angular/core';\n\nimport { WidgetHeaderComponent } from './widget-header.component';\n\n@NgModule({\n imports: [CommonModule],\n exports: [WidgetHeaderComponent],\n declarations: [WidgetHeaderComponent],\n})\nexport class AdsWidgetHeaderModule {}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":";;;;MAOa,qBAAqB,CAAA;8GAArB,qBAAqB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA,EAAA;AAArB,IAAA,SAAA,IAAA,CAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,IAAA,EAAA,qBAAqB,yDCPlC,sEAGA,EAAA,MAAA,EAAA,CAAA,kFAAA,CAAA,EAAA,CAAA,CAAA,EAAA;;2FDIa,qBAAqB,EAAA,UAAA,EAAA,CAAA;kBALjC,SAAS;+BACE,mBAAmB,EAAA,QAAA,EAAA,sEAAA,EAAA,MAAA,EAAA,CAAA,kFAAA,CAAA,EAAA,CAAA;;;MEOlB,qBAAqB,CAAA;8GAArB,qBAAqB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,QAAA,EAAA,CAAA,CAAA,EAAA;AAArB,IAAA,SAAA,IAAA,CAAA,IAAA,GAAA,EAAA,CAAA,mBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,qBAAqB,EAFjB,YAAA,EAAA,CAAA,qBAAqB,CAF1B,EAAA,OAAA,EAAA,CAAA,YAAY,aACZ,qBAAqB,CAAA,EAAA,CAAA,CAAA,EAAA;AAGpB,IAAA,SAAA,IAAA,CAAA,IAAA,GAAA,EAAA,CAAA,mBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,qBAAqB,YAJtB,YAAY,CAAA,EAAA,CAAA,CAAA,EAAA;;2FAIX,qBAAqB,EAAA,UAAA,EAAA,CAAA;kBALjC,QAAQ;AAAC,YAAA,IAAA,EAAA,CAAA;oBACR,OAAO,EAAE,CAAC,YAAY,CAAC;oBACvB,OAAO,EAAE,CAAC,qBAAqB,CAAC;oBAChC,YAAY,EAAE,CAAC,qBAAqB,CAAC;AACtC,iBAAA,CAAA;;;ACTD;;AAEG;;;;"}
|
|
@@ -1,47 +0,0 @@
|
|
|
1
|
-
import * as i0 from '@angular/core';
|
|
2
|
-
import { Component, Input, NgModule } from '@angular/core';
|
|
3
|
-
import { CommonModule } from '@angular/common';
|
|
4
|
-
|
|
5
|
-
class AdsWidgetPreviewComponent {
|
|
6
|
-
/** @ignore */
|
|
7
|
-
ngOnInit() {
|
|
8
|
-
this.top = this.top - 200;
|
|
9
|
-
}
|
|
10
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsWidgetPreviewComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
11
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.1.1", type: AdsWidgetPreviewComponent, selector: "ads-widget-preview", inputs: { alt: "alt", description: "description", thumbnail: "thumbnail", left: "left", top: "top" }, ngImport: i0, template: "<div class=\"widget-preview\" [style.top]=\"top + 'px'\" [style.left]=\"left + 'px'\">\n <img class=\"widget-preview-thumbnail\" [src]=\"thumbnail\" [alt]=\"alt\" />\n <div class=\"widget-preview-description\">{{ description }}</div>\n</div>\n", styles: [".widget-preview{position:absolute;z-index:999999;display:flex;width:298px;height:200px;box-sizing:border-box;flex-direction:column;padding:8px;background-color:var(--color-dark);-webkit-user-select:none;user-select:none}.widget-preview-thumbnail{width:100%;height:97px;pointer-events:none}.widget-preview-description{width:100%;margin-top:16px;color:var(--color-white);font-size:12px;line-height:20px}.international{background-color:var(--color-dark)}\n"] }); }
|
|
12
|
-
}
|
|
13
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsWidgetPreviewComponent, decorators: [{
|
|
14
|
-
type: Component,
|
|
15
|
-
args: [{ selector: 'ads-widget-preview', template: "<div class=\"widget-preview\" [style.top]=\"top + 'px'\" [style.left]=\"left + 'px'\">\n <img class=\"widget-preview-thumbnail\" [src]=\"thumbnail\" [alt]=\"alt\" />\n <div class=\"widget-preview-description\">{{ description }}</div>\n</div>\n", styles: [".widget-preview{position:absolute;z-index:999999;display:flex;width:298px;height:200px;box-sizing:border-box;flex-direction:column;padding:8px;background-color:var(--color-dark);-webkit-user-select:none;user-select:none}.widget-preview-thumbnail{width:100%;height:97px;pointer-events:none}.widget-preview-description{width:100%;margin-top:16px;color:var(--color-white);font-size:12px;line-height:20px}.international{background-color:var(--color-dark)}\n"] }]
|
|
16
|
-
}], propDecorators: { alt: [{
|
|
17
|
-
type: Input
|
|
18
|
-
}], description: [{
|
|
19
|
-
type: Input
|
|
20
|
-
}], thumbnail: [{
|
|
21
|
-
type: Input
|
|
22
|
-
}], left: [{
|
|
23
|
-
type: Input
|
|
24
|
-
}], top: [{
|
|
25
|
-
type: Input
|
|
26
|
-
}] } });
|
|
27
|
-
|
|
28
|
-
class AdsWidgetPreviewModule {
|
|
29
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsWidgetPreviewModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
30
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.1.1", ngImport: i0, type: AdsWidgetPreviewModule, declarations: [AdsWidgetPreviewComponent], imports: [CommonModule], exports: [AdsWidgetPreviewComponent] }); }
|
|
31
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsWidgetPreviewModule, imports: [CommonModule] }); }
|
|
32
|
-
}
|
|
33
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsWidgetPreviewModule, decorators: [{
|
|
34
|
-
type: NgModule,
|
|
35
|
-
args: [{
|
|
36
|
-
imports: [CommonModule],
|
|
37
|
-
exports: [AdsWidgetPreviewComponent],
|
|
38
|
-
declarations: [AdsWidgetPreviewComponent],
|
|
39
|
-
}]
|
|
40
|
-
}] });
|
|
41
|
-
|
|
42
|
-
/**
|
|
43
|
-
* Generated bundle index. Do not edit.
|
|
44
|
-
*/
|
|
45
|
-
|
|
46
|
-
export { AdsWidgetPreviewComponent, AdsWidgetPreviewModule };
|
|
47
|
-
//# sourceMappingURL=ascentgl-ads-ui-src-lib-components-widgets-widget-preview.mjs.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"ascentgl-ads-ui-src-lib-components-widgets-widget-preview.mjs","sources":["../../../../libs/ads-ui/src/lib/components/widgets/widget-preview/widget-preview.component.ts","../../../../libs/ads-ui/src/lib/components/widgets/widget-preview/widget-preview.component.html","../../../../libs/ads-ui/src/lib/components/widgets/widget-preview/widget-preview.module.ts","../../../../libs/ads-ui/src/lib/components/widgets/widget-preview/ascentgl-ads-ui-src-lib-components-widgets-widget-preview.ts"],"sourcesContent":["import { Component, Input, OnInit } from '@angular/core';\n\n@Component({\n selector: 'ads-widget-preview',\n styleUrls: ['widget-preview.component.scss'],\n templateUrl: 'widget-preview.component.html',\n})\nexport class AdsWidgetPreviewComponent implements OnInit {\n /**\n * alt text for the preview image\n */\n @Input() alt!: string;\n\n /**\n * Text to display that describes the widget\n */\n @Input() description!: string;\n\n /**\n * Path to the thumbnail image to display\n */\n @Input() thumbnail!: string;\n\n /**\n * Left position\n */\n @Input() left!: number;\n\n /**\n * Right position\n */\n @Input() top!: number;\n\n /** @ignore */\n ngOnInit(): void {\n this.top = this.top - 200;\n }\n}\n","<div class=\"widget-preview\" [style.top]=\"top + 'px'\" [style.left]=\"left + 'px'\">\n <img class=\"widget-preview-thumbnail\" [src]=\"thumbnail\" [alt]=\"alt\" />\n <div class=\"widget-preview-description\">{{ description }}</div>\n</div>\n","import { CommonModule } from '@angular/common';\nimport { NgModule } from '@angular/core';\n\nimport { AdsWidgetPreviewComponent } from './widget-preview.component';\n\n@NgModule({\n imports: [CommonModule],\n exports: [AdsWidgetPreviewComponent],\n declarations: [AdsWidgetPreviewComponent],\n})\nexport class AdsWidgetPreviewModule {}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":";;;;MAOa,yBAAyB,CAAA;;IA2BpC,QAAQ,GAAA;QACN,IAAI,CAAC,GAAG,GAAG,IAAI,CAAC,GAAG,GAAG,GAAG,CAAC;KAC3B;8GA7BU,yBAAyB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA,EAAA;AAAzB,IAAA,SAAA,IAAA,CAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,IAAA,EAAA,yBAAyB,gKCPtC,uPAIA,EAAA,MAAA,EAAA,CAAA,ucAAA,CAAA,EAAA,CAAA,CAAA,EAAA;;2FDGa,yBAAyB,EAAA,UAAA,EAAA,CAAA;kBALrC,SAAS;+BACE,oBAAoB,EAAA,QAAA,EAAA,uPAAA,EAAA,MAAA,EAAA,CAAA,ucAAA,CAAA,EAAA,CAAA;8BAQrB,GAAG,EAAA,CAAA;sBAAX,KAAK;gBAKG,WAAW,EAAA,CAAA;sBAAnB,KAAK;gBAKG,SAAS,EAAA,CAAA;sBAAjB,KAAK;gBAKG,IAAI,EAAA,CAAA;sBAAZ,KAAK;gBAKG,GAAG,EAAA,CAAA;sBAAX,KAAK;;;MErBK,sBAAsB,CAAA;8GAAtB,sBAAsB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,QAAA,EAAA,CAAA,CAAA,EAAA;AAAtB,IAAA,SAAA,IAAA,CAAA,IAAA,GAAA,EAAA,CAAA,mBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,sBAAsB,EAFlB,YAAA,EAAA,CAAA,yBAAyB,CAF9B,EAAA,OAAA,EAAA,CAAA,YAAY,aACZ,yBAAyB,CAAA,EAAA,CAAA,CAAA,EAAA;AAGxB,IAAA,SAAA,IAAA,CAAA,IAAA,GAAA,EAAA,CAAA,mBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,sBAAsB,YAJvB,YAAY,CAAA,EAAA,CAAA,CAAA,EAAA;;2FAIX,sBAAsB,EAAA,UAAA,EAAA,CAAA;kBALlC,QAAQ;AAAC,YAAA,IAAA,EAAA,CAAA;oBACR,OAAO,EAAE,CAAC,YAAY,CAAC;oBACvB,OAAO,EAAE,CAAC,yBAAyB,CAAC;oBACpC,YAAY,EAAE,CAAC,yBAAyB,CAAC;AAC1C,iBAAA,CAAA;;;ACTD;;AAEG;;;;"}
|
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
import * as i0 from '@angular/core';
|
|
2
|
-
import { Component, NgModule } from '@angular/core';
|
|
3
|
-
import * as i1 from '@angular/cdk/drag-drop';
|
|
4
|
-
import { DragDropModule } from '@angular/cdk/drag-drop';
|
|
5
|
-
|
|
6
|
-
class AdsWidgetThumbnailContainerComponent {
|
|
7
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsWidgetThumbnailContainerComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
8
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.1.1", type: AdsWidgetThumbnailContainerComponent, selector: "ads-widget-thumbnail-container", ngImport: i0, template: "<div class=\"widget-thumbnail-container\" cdkDropList cdkDropListOrientation=\"horizontal\">\n <ng-content></ng-content>\n</div>\n", styles: [":host{overflow:auto;max-width:calc(100% - 154px)}.widget-thumbnail-container{padding-top:10px;display:flex;margin-left:4px}\n"], dependencies: [{ kind: "directive", type: i1.CdkDropList, selector: "[cdkDropList], cdk-drop-list", inputs: ["cdkDropListConnectedTo", "cdkDropListData", "cdkDropListOrientation", "id", "cdkDropListLockAxis", "cdkDropListDisabled", "cdkDropListSortingDisabled", "cdkDropListEnterPredicate", "cdkDropListSortPredicate", "cdkDropListAutoScrollDisabled", "cdkDropListAutoScrollStep", "cdkDropListElementContainer"], outputs: ["cdkDropListDropped", "cdkDropListEntered", "cdkDropListExited", "cdkDropListSorted"], exportAs: ["cdkDropList"] }] }); }
|
|
9
|
-
}
|
|
10
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsWidgetThumbnailContainerComponent, decorators: [{
|
|
11
|
-
type: Component,
|
|
12
|
-
args: [{ selector: 'ads-widget-thumbnail-container', template: "<div class=\"widget-thumbnail-container\" cdkDropList cdkDropListOrientation=\"horizontal\">\n <ng-content></ng-content>\n</div>\n", styles: [":host{overflow:auto;max-width:calc(100% - 154px)}.widget-thumbnail-container{padding-top:10px;display:flex;margin-left:4px}\n"] }]
|
|
13
|
-
}] });
|
|
14
|
-
|
|
15
|
-
class AdsWidgetThumbnailContainerModule {
|
|
16
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsWidgetThumbnailContainerModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
17
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.1.1", ngImport: i0, type: AdsWidgetThumbnailContainerModule, declarations: [AdsWidgetThumbnailContainerComponent], imports: [DragDropModule], exports: [AdsWidgetThumbnailContainerComponent] }); }
|
|
18
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsWidgetThumbnailContainerModule, imports: [DragDropModule] }); }
|
|
19
|
-
}
|
|
20
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsWidgetThumbnailContainerModule, decorators: [{
|
|
21
|
-
type: NgModule,
|
|
22
|
-
args: [{
|
|
23
|
-
imports: [DragDropModule],
|
|
24
|
-
exports: [AdsWidgetThumbnailContainerComponent],
|
|
25
|
-
declarations: [AdsWidgetThumbnailContainerComponent],
|
|
26
|
-
}]
|
|
27
|
-
}] });
|
|
28
|
-
|
|
29
|
-
/**
|
|
30
|
-
* Generated bundle index. Do not edit.
|
|
31
|
-
*/
|
|
32
|
-
|
|
33
|
-
export { AdsWidgetThumbnailContainerComponent, AdsWidgetThumbnailContainerModule };
|
|
34
|
-
//# sourceMappingURL=ascentgl-ads-ui-src-lib-components-widgets-widget-thumbnail-container.mjs.map
|
package/fesm2022/ascentgl-ads-ui-src-lib-components-widgets-widget-thumbnail-container.mjs.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"ascentgl-ads-ui-src-lib-components-widgets-widget-thumbnail-container.mjs","sources":["../../../../libs/ads-ui/src/lib/components/widgets/widget-thumbnail-container/widget-thumbnail-container.component.ts","../../../../libs/ads-ui/src/lib/components/widgets/widget-thumbnail-container/widget-thumbnail-container.component.html","../../../../libs/ads-ui/src/lib/components/widgets/widget-thumbnail-container/widget-thumbnail-container.module.ts","../../../../libs/ads-ui/src/lib/components/widgets/widget-thumbnail-container/ascentgl-ads-ui-src-lib-components-widgets-widget-thumbnail-container.ts"],"sourcesContent":["import { Component } from '@angular/core';\n\n@Component({\n selector: 'ads-widget-thumbnail-container',\n styleUrls: ['widget-thumbnail-container.component.scss'],\n templateUrl: 'widget-thumbnail-container.component.html',\n})\nexport class AdsWidgetThumbnailContainerComponent {}\n","<div class=\"widget-thumbnail-container\" cdkDropList cdkDropListOrientation=\"horizontal\">\n <ng-content></ng-content>\n</div>\n","import { NgModule } from '@angular/core';\nimport { DragDropModule } from '@angular/cdk/drag-drop';\n\nimport { AdsWidgetThumbnailContainerComponent } from './widget-thumbnail-container.component';\n\n@NgModule({\n imports: [DragDropModule],\n exports: [AdsWidgetThumbnailContainerComponent],\n declarations: [AdsWidgetThumbnailContainerComponent],\n})\nexport class AdsWidgetThumbnailContainerModule {}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":";;;;;MAOa,oCAAoC,CAAA;8GAApC,oCAAoC,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA,EAAA;AAApC,IAAA,SAAA,IAAA,CAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,IAAA,EAAA,oCAAoC,sECPjD,qIAGA,EAAA,MAAA,EAAA,CAAA,+HAAA,CAAA,EAAA,YAAA,EAAA,CAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,WAAA,EAAA,QAAA,EAAA,8BAAA,EAAA,MAAA,EAAA,CAAA,wBAAA,EAAA,iBAAA,EAAA,wBAAA,EAAA,IAAA,EAAA,qBAAA,EAAA,qBAAA,EAAA,4BAAA,EAAA,2BAAA,EAAA,0BAAA,EAAA,+BAAA,EAAA,2BAAA,EAAA,6BAAA,CAAA,EAAA,OAAA,EAAA,CAAA,oBAAA,EAAA,oBAAA,EAAA,mBAAA,EAAA,mBAAA,CAAA,EAAA,QAAA,EAAA,CAAA,aAAA,CAAA,EAAA,CAAA,EAAA,CAAA,CAAA,EAAA;;2FDIa,oCAAoC,EAAA,UAAA,EAAA,CAAA;kBALhD,SAAS;+BACE,gCAAgC,EAAA,QAAA,EAAA,qIAAA,EAAA,MAAA,EAAA,CAAA,+HAAA,CAAA,EAAA,CAAA;;;MEO/B,iCAAiC,CAAA;8GAAjC,iCAAiC,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,QAAA,EAAA,CAAA,CAAA,EAAA;AAAjC,IAAA,SAAA,IAAA,CAAA,IAAA,GAAA,EAAA,CAAA,mBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,iCAAiC,EAF7B,YAAA,EAAA,CAAA,oCAAoC,CAFzC,EAAA,OAAA,EAAA,CAAA,cAAc,aACd,oCAAoC,CAAA,EAAA,CAAA,CAAA,EAAA;AAGnC,IAAA,SAAA,IAAA,CAAA,IAAA,GAAA,EAAA,CAAA,mBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,iCAAiC,YAJlC,cAAc,CAAA,EAAA,CAAA,CAAA,EAAA;;2FAIb,iCAAiC,EAAA,UAAA,EAAA,CAAA;kBAL7C,QAAQ;AAAC,YAAA,IAAA,EAAA,CAAA;oBACR,OAAO,EAAE,CAAC,cAAc,CAAC;oBACzB,OAAO,EAAE,CAAC,oCAAoC,CAAC;oBAC/C,YAAY,EAAE,CAAC,oCAAoC,CAAC;AACrD,iBAAA,CAAA;;;ACTD;;AAEG;;;;"}
|
|
@@ -1,123 +0,0 @@
|
|
|
1
|
-
import * as i0 from '@angular/core';
|
|
2
|
-
import { EventEmitter, Component, Input, Output, NgModule } from '@angular/core';
|
|
3
|
-
import * as i1 from '@ascentgl/ads-icons';
|
|
4
|
-
import { AdsIconModule } from '@ascentgl/ads-icons';
|
|
5
|
-
import { adsIconDrag } from '@ascentgl/ads-icons/icons';
|
|
6
|
-
import { OverlayModule } from '@angular/cdk/overlay';
|
|
7
|
-
import { CommonModule } from '@angular/common';
|
|
8
|
-
|
|
9
|
-
class AdsWidgetThumbnailComponent {
|
|
10
|
-
constructor(registry) {
|
|
11
|
-
this.registry = registry;
|
|
12
|
-
/**
|
|
13
|
-
* Whether or not the widget is already on the dashboard
|
|
14
|
-
*/
|
|
15
|
-
this.active = false;
|
|
16
|
-
/**
|
|
17
|
-
* Whether or not the widget drag event should be disabled
|
|
18
|
-
*/
|
|
19
|
-
this.disabled = false;
|
|
20
|
-
/**
|
|
21
|
-
* Event emitted when widget is added via keyboard
|
|
22
|
-
*/
|
|
23
|
-
this.widgetAdd = new EventEmitter();
|
|
24
|
-
/**
|
|
25
|
-
* Event emitted when widget loses focus
|
|
26
|
-
*/
|
|
27
|
-
this.widgetBlur = new EventEmitter();
|
|
28
|
-
/**
|
|
29
|
-
* Event emitted when widget dragstart event occurs
|
|
30
|
-
*/
|
|
31
|
-
this.widgetDrag = new EventEmitter();
|
|
32
|
-
/**
|
|
33
|
-
* Event emitted when widget is focused via keyboard
|
|
34
|
-
*/
|
|
35
|
-
this.widgetFocus = new EventEmitter();
|
|
36
|
-
/**
|
|
37
|
-
* Event emitted when mouse enters widget
|
|
38
|
-
*/
|
|
39
|
-
this.widgetHover = new EventEmitter();
|
|
40
|
-
/**
|
|
41
|
-
* Event emitted when mouse leaves widget
|
|
42
|
-
*/
|
|
43
|
-
this.widgetLeave = new EventEmitter();
|
|
44
|
-
this.registry.register([adsIconDrag]);
|
|
45
|
-
}
|
|
46
|
-
/** @ignore */
|
|
47
|
-
onWidgetBlur() {
|
|
48
|
-
this.widgetBlur.emit();
|
|
49
|
-
}
|
|
50
|
-
/** @ignore */
|
|
51
|
-
onWidgetDrag(event) {
|
|
52
|
-
this.widgetDrag.emit(event);
|
|
53
|
-
}
|
|
54
|
-
/** @ignore */
|
|
55
|
-
onWidgetDragEnd(event) {
|
|
56
|
-
event.target.blur();
|
|
57
|
-
}
|
|
58
|
-
/** @ignore */
|
|
59
|
-
onWidgetEnter(event) {
|
|
60
|
-
this.widgetAdd.emit(event);
|
|
61
|
-
}
|
|
62
|
-
/** @ignore */
|
|
63
|
-
onWidgetFocus(event) {
|
|
64
|
-
this.widgetFocus.emit(event);
|
|
65
|
-
}
|
|
66
|
-
/** @ignore */
|
|
67
|
-
onWidgetHover(event) {
|
|
68
|
-
this.widgetHover.emit(event);
|
|
69
|
-
}
|
|
70
|
-
/** @ignore */
|
|
71
|
-
onWidgetLeave() {
|
|
72
|
-
this.widgetLeave.emit();
|
|
73
|
-
}
|
|
74
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsWidgetThumbnailComponent, deps: [{ token: i1.AdsIconRegistry }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
75
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.1.1", type: AdsWidgetThumbnailComponent, selector: "ads-widget-thumbnail", inputs: { active: "active", disabled: "disabled", icon: "icon", id: "id", text: "text" }, outputs: { widgetAdd: "widgetAdd", widgetBlur: "widgetBlur", widgetDrag: "widgetDrag", widgetFocus: "widgetFocus", widgetHover: "widgetHover", widgetLeave: "widgetLeave" }, ngImport: i0, template: "<div\n tabindex=\"0\"\n class=\"widget-thumbnail\"\n [class.active]=\"active\"\n [class.disabled]=\"disabled\"\n [draggable]=\"!disabled\"\n [id]=\"id\"\n (dragstart)=\"onWidgetDrag($event)\"\n (dragend)=\"onWidgetDragEnd($event)\"\n (keyup.enter)=\"onWidgetEnter($event)\"\n (mouseenter)=\"onWidgetHover($event)\"\n (mouseleave)=\"onWidgetLeave()\"\n (focus)=\"onWidgetFocus($event)\"\n (blur)=\"onWidgetBlur()\"\n>\n <ads-icon class=\"widget-thumbnail-drag\" name=\"drag\" size=\"sm\" theme=\"primary\"></ads-icon>\n <div class=\"widget-thumbnail-text\">{{ text }}</div>\n <div class=\"widget-thumbnail-icons\">\n <div class=\"widget-active\"></div>\n <ads-icon [name]=\"icon\" theme=\"primary\" size=\"xs\"></ads-icon>\n </div>\n</div>\n", styles: [".widget-thumbnail{position:relative;display:inline-flex;width:192px;height:116px;box-sizing:border-box;align-items:center;justify-content:space-between;padding:4px;margin:4px;background-color:var(--color-white);cursor:grab;outline:none;border-radius:10px;box-shadow:0 3px 6px #00498729}.widget-thumbnail-text{width:100px;color:var(--color-dark);font-size:13px;font-weight:700;line-height:20px;text-align:center;-webkit-user-select:none;user-select:none}.widget-thumbnail:hover,.widget-thumbnail:focus{width:192px;height:116px;padding-top:8px;margin-top:0;background-color:#dae0ee}.widget-thumbnail:hover .widget-thumbnail-text,.widget-thumbnail:focus .widget-thumbnail-text{color:var(--color-medium)}.widget-thumbnail-icons{display:flex;flex-direction:column;align-items:center;align-self:stretch;justify-content:space-between}.widget-active{position:relative;width:18px;height:18px;background-color:var(--color-primary);border-radius:50%}.widget-active:after{position:absolute;top:5px;left:4px;width:8px;height:3px;box-sizing:content-box;border-bottom:2px solid var(--color-white);border-left:2px solid var(--color-white);content:\"\";opacity:1;transform:rotate(-45deg)}.widget-thumbnail:not(.active) .widget-active{visibility:hidden}.widget-thumbnail.active{background-color:var(--color-#dae0ee)}.widget-thumbnail.active .widget-thumbnail-text{color:var(--color-dark)}.widget-thumbnail.active:hover{background-color:var(--color-#dae0ee)!important;cursor:default}.widget-thumbnail.disabled{cursor:default}::ng-deep .widget-active .ads-icon{width:10px;height:10px}::ng-deep .widget-thumbnail-icons .ads-icon{display:flex;align-items:center;justify-content:center}::ng-deep .widget-thumbnail.active .ads-icon,::ng-deep .widget-thumbnail:hover .ads-icon,::ng-deep .widget-thumbnail:focus .ads-icon{color:var(--color-#dae0ee)!important}\n"], dependencies: [{ kind: "component", type: i1.AdsIconComponent, selector: "ads-icon", inputs: ["size", "name", "color", "theme", "stroke"] }] }); }
|
|
76
|
-
}
|
|
77
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsWidgetThumbnailComponent, decorators: [{
|
|
78
|
-
type: Component,
|
|
79
|
-
args: [{ selector: 'ads-widget-thumbnail', template: "<div\n tabindex=\"0\"\n class=\"widget-thumbnail\"\n [class.active]=\"active\"\n [class.disabled]=\"disabled\"\n [draggable]=\"!disabled\"\n [id]=\"id\"\n (dragstart)=\"onWidgetDrag($event)\"\n (dragend)=\"onWidgetDragEnd($event)\"\n (keyup.enter)=\"onWidgetEnter($event)\"\n (mouseenter)=\"onWidgetHover($event)\"\n (mouseleave)=\"onWidgetLeave()\"\n (focus)=\"onWidgetFocus($event)\"\n (blur)=\"onWidgetBlur()\"\n>\n <ads-icon class=\"widget-thumbnail-drag\" name=\"drag\" size=\"sm\" theme=\"primary\"></ads-icon>\n <div class=\"widget-thumbnail-text\">{{ text }}</div>\n <div class=\"widget-thumbnail-icons\">\n <div class=\"widget-active\"></div>\n <ads-icon [name]=\"icon\" theme=\"primary\" size=\"xs\"></ads-icon>\n </div>\n</div>\n", styles: [".widget-thumbnail{position:relative;display:inline-flex;width:192px;height:116px;box-sizing:border-box;align-items:center;justify-content:space-between;padding:4px;margin:4px;background-color:var(--color-white);cursor:grab;outline:none;border-radius:10px;box-shadow:0 3px 6px #00498729}.widget-thumbnail-text{width:100px;color:var(--color-dark);font-size:13px;font-weight:700;line-height:20px;text-align:center;-webkit-user-select:none;user-select:none}.widget-thumbnail:hover,.widget-thumbnail:focus{width:192px;height:116px;padding-top:8px;margin-top:0;background-color:#dae0ee}.widget-thumbnail:hover .widget-thumbnail-text,.widget-thumbnail:focus .widget-thumbnail-text{color:var(--color-medium)}.widget-thumbnail-icons{display:flex;flex-direction:column;align-items:center;align-self:stretch;justify-content:space-between}.widget-active{position:relative;width:18px;height:18px;background-color:var(--color-primary);border-radius:50%}.widget-active:after{position:absolute;top:5px;left:4px;width:8px;height:3px;box-sizing:content-box;border-bottom:2px solid var(--color-white);border-left:2px solid var(--color-white);content:\"\";opacity:1;transform:rotate(-45deg)}.widget-thumbnail:not(.active) .widget-active{visibility:hidden}.widget-thumbnail.active{background-color:var(--color-#dae0ee)}.widget-thumbnail.active .widget-thumbnail-text{color:var(--color-dark)}.widget-thumbnail.active:hover{background-color:var(--color-#dae0ee)!important;cursor:default}.widget-thumbnail.disabled{cursor:default}::ng-deep .widget-active .ads-icon{width:10px;height:10px}::ng-deep .widget-thumbnail-icons .ads-icon{display:flex;align-items:center;justify-content:center}::ng-deep .widget-thumbnail.active .ads-icon,::ng-deep .widget-thumbnail:hover .ads-icon,::ng-deep .widget-thumbnail:focus .ads-icon{color:var(--color-#dae0ee)!important}\n"] }]
|
|
80
|
-
}], ctorParameters: () => [{ type: i1.AdsIconRegistry }], propDecorators: { active: [{
|
|
81
|
-
type: Input
|
|
82
|
-
}], disabled: [{
|
|
83
|
-
type: Input
|
|
84
|
-
}], icon: [{
|
|
85
|
-
type: Input
|
|
86
|
-
}], id: [{
|
|
87
|
-
type: Input
|
|
88
|
-
}], text: [{
|
|
89
|
-
type: Input
|
|
90
|
-
}], widgetAdd: [{
|
|
91
|
-
type: Output
|
|
92
|
-
}], widgetBlur: [{
|
|
93
|
-
type: Output
|
|
94
|
-
}], widgetDrag: [{
|
|
95
|
-
type: Output
|
|
96
|
-
}], widgetFocus: [{
|
|
97
|
-
type: Output
|
|
98
|
-
}], widgetHover: [{
|
|
99
|
-
type: Output
|
|
100
|
-
}], widgetLeave: [{
|
|
101
|
-
type: Output
|
|
102
|
-
}] } });
|
|
103
|
-
|
|
104
|
-
class AdsWidgetThumbnailModule {
|
|
105
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsWidgetThumbnailModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
106
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.1.1", ngImport: i0, type: AdsWidgetThumbnailModule, declarations: [AdsWidgetThumbnailComponent], imports: [CommonModule, AdsIconModule, OverlayModule], exports: [AdsWidgetThumbnailComponent] }); }
|
|
107
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsWidgetThumbnailModule, imports: [CommonModule, AdsIconModule, OverlayModule] }); }
|
|
108
|
-
}
|
|
109
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsWidgetThumbnailModule, decorators: [{
|
|
110
|
-
type: NgModule,
|
|
111
|
-
args: [{
|
|
112
|
-
imports: [CommonModule, AdsIconModule, OverlayModule],
|
|
113
|
-
exports: [AdsWidgetThumbnailComponent],
|
|
114
|
-
declarations: [AdsWidgetThumbnailComponent],
|
|
115
|
-
}]
|
|
116
|
-
}] });
|
|
117
|
-
|
|
118
|
-
/**
|
|
119
|
-
* Generated bundle index. Do not edit.
|
|
120
|
-
*/
|
|
121
|
-
|
|
122
|
-
export { AdsWidgetThumbnailComponent, AdsWidgetThumbnailModule };
|
|
123
|
-
//# sourceMappingURL=ascentgl-ads-ui-src-lib-components-widgets-widget-thumbnail.mjs.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"ascentgl-ads-ui-src-lib-components-widgets-widget-thumbnail.mjs","sources":["../../../../libs/ads-ui/src/lib/components/widgets/widget-thumbnail/widget-thumbnail.component.ts","../../../../libs/ads-ui/src/lib/components/widgets/widget-thumbnail/widget-thumbnail.component.html","../../../../libs/ads-ui/src/lib/components/widgets/widget-thumbnail/widget-thumbnail.module.ts","../../../../libs/ads-ui/src/lib/components/widgets/widget-thumbnail/ascentgl-ads-ui-src-lib-components-widgets-widget-thumbnail.ts"],"sourcesContent":["import { Component, EventEmitter, Input, Output } from '@angular/core';\nimport { AdsIconRegistry } from '@ascentgl/ads-icons';\nimport { adsIcon, adsIconDrag } from '@ascentgl/ads-icons/icons';\n\n@Component({\n selector: 'ads-widget-thumbnail',\n styleUrls: ['widget-thumbnail.component.scss'],\n templateUrl: 'widget-thumbnail.component.html',\n})\nexport class AdsWidgetThumbnailComponent {\n constructor(private registry: AdsIconRegistry) {\n this.registry.register([adsIconDrag]);\n }\n\n /**\n * Whether or not the widget is already on the dashboard\n */\n @Input() active = false;\n\n /**\n * Whether or not the widget drag event should be disabled\n */\n @Input() disabled = false;\n\n /**\n * The icon to display on the widget thumbnail\n */\n @Input() icon!: adsIcon;\n\n /**\n * The unique ID for the widget thumbnail\n */\n @Input() id!: string;\n\n /**\n * The text to display on the widget thumbnail\n */\n @Input() text!: string;\n\n /**\n * Event emitted when widget is added via keyboard\n */\n @Output() widgetAdd: EventEmitter<Event> = new EventEmitter<Event>();\n\n /**\n * Event emitted when widget loses focus\n */\n @Output() widgetBlur: EventEmitter<null> = new EventEmitter<null>();\n\n /**\n * Event emitted when widget dragstart event occurs\n */\n @Output() widgetDrag: EventEmitter<DragEvent> = new EventEmitter<DragEvent>();\n\n /**\n * Event emitted when widget is focused via keyboard\n */\n @Output() widgetFocus: EventEmitter<FocusEvent> = new EventEmitter<FocusEvent>();\n\n /**\n * Event emitted when mouse enters widget\n */\n @Output() widgetHover: EventEmitter<MouseEvent> = new EventEmitter<MouseEvent>();\n\n /**\n * Event emitted when mouse leaves widget\n */\n @Output() widgetLeave: EventEmitter<null> = new EventEmitter<null>();\n\n /** @ignore */\n public onWidgetBlur(): void {\n this.widgetBlur.emit();\n }\n\n /** @ignore */\n public onWidgetDrag(event: DragEvent): void {\n this.widgetDrag.emit(event);\n }\n\n /** @ignore */\n public onWidgetDragEnd(event: DragEvent): void {\n (event.target as HTMLElement).blur();\n }\n\n /** @ignore */\n public onWidgetEnter(event: Event): void {\n this.widgetAdd.emit(event);\n }\n\n /** @ignore */\n public onWidgetFocus(event: FocusEvent): void {\n this.widgetFocus.emit(event);\n }\n\n /** @ignore */\n public onWidgetHover(event: MouseEvent): void {\n this.widgetHover.emit(event);\n }\n\n /** @ignore */\n public onWidgetLeave(): void {\n this.widgetLeave.emit();\n }\n}\n","<div\n tabindex=\"0\"\n class=\"widget-thumbnail\"\n [class.active]=\"active\"\n [class.disabled]=\"disabled\"\n [draggable]=\"!disabled\"\n [id]=\"id\"\n (dragstart)=\"onWidgetDrag($event)\"\n (dragend)=\"onWidgetDragEnd($event)\"\n (keyup.enter)=\"onWidgetEnter($event)\"\n (mouseenter)=\"onWidgetHover($event)\"\n (mouseleave)=\"onWidgetLeave()\"\n (focus)=\"onWidgetFocus($event)\"\n (blur)=\"onWidgetBlur()\"\n>\n <ads-icon class=\"widget-thumbnail-drag\" name=\"drag\" size=\"sm\" theme=\"primary\"></ads-icon>\n <div class=\"widget-thumbnail-text\">{{ text }}</div>\n <div class=\"widget-thumbnail-icons\">\n <div class=\"widget-active\"></div>\n <ads-icon [name]=\"icon\" theme=\"primary\" size=\"xs\"></ads-icon>\n </div>\n</div>\n","import { NgModule } from '@angular/core';\nimport { AdsIconModule } from '@ascentgl/ads-icons';\nimport { OverlayModule } from '@angular/cdk/overlay';\n\nimport { AdsWidgetThumbnailComponent } from './widget-thumbnail.component';\nimport { CommonModule } from '@angular/common';\n\n@NgModule({\n imports: [CommonModule, AdsIconModule, OverlayModule],\n exports: [AdsWidgetThumbnailComponent],\n declarations: [AdsWidgetThumbnailComponent],\n})\nexport class AdsWidgetThumbnailModule {}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":";;;;;;;;MASa,2BAA2B,CAAA;AACtC,IAAA,WAAA,CAAoB,QAAyB,EAAA;QAAzB,IAAQ,CAAA,QAAA,GAAR,QAAQ,CAAiB;AAI7C;;AAEG;QACM,IAAM,CAAA,MAAA,GAAG,KAAK,CAAC;AAExB;;AAEG;QACM,IAAQ,CAAA,QAAA,GAAG,KAAK,CAAC;AAiB1B;;AAEG;AACO,QAAA,IAAA,CAAA,SAAS,GAAwB,IAAI,YAAY,EAAS,CAAC;AAErE;;AAEG;AACO,QAAA,IAAA,CAAA,UAAU,GAAuB,IAAI,YAAY,EAAQ,CAAC;AAEpE;;AAEG;AACO,QAAA,IAAA,CAAA,UAAU,GAA4B,IAAI,YAAY,EAAa,CAAC;AAE9E;;AAEG;AACO,QAAA,IAAA,CAAA,WAAW,GAA6B,IAAI,YAAY,EAAc,CAAC;AAEjF;;AAEG;AACO,QAAA,IAAA,CAAA,WAAW,GAA6B,IAAI,YAAY,EAAc,CAAC;AAEjF;;AAEG;AACO,QAAA,IAAA,CAAA,WAAW,GAAuB,IAAI,YAAY,EAAQ,CAAC;QAxDnE,IAAI,CAAC,QAAQ,CAAC,QAAQ,CAAC,CAAC,WAAW,CAAC,CAAC,CAAC;KACvC;;IA0DM,YAAY,GAAA;AACjB,QAAA,IAAI,CAAC,UAAU,CAAC,IAAI,EAAE,CAAC;KACxB;;AAGM,IAAA,YAAY,CAAC,KAAgB,EAAA;AAClC,QAAA,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;KAC7B;;AAGM,IAAA,eAAe,CAAC,KAAgB,EAAA;AACpC,QAAA,KAAK,CAAC,MAAsB,CAAC,IAAI,EAAE,CAAC;KACtC;;AAGM,IAAA,aAAa,CAAC,KAAY,EAAA;AAC/B,QAAA,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;KAC5B;;AAGM,IAAA,aAAa,CAAC,KAAiB,EAAA;AACpC,QAAA,IAAI,CAAC,WAAW,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;KAC9B;;AAGM,IAAA,aAAa,CAAC,KAAiB,EAAA;AACpC,QAAA,IAAI,CAAC,WAAW,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;KAC9B;;IAGM,aAAa,GAAA;AAClB,QAAA,IAAI,CAAC,WAAW,CAAC,IAAI,EAAE,CAAC;KACzB;8GA7FU,2BAA2B,EAAA,IAAA,EAAA,CAAA,EAAA,KAAA,EAAA,EAAA,CAAA,eAAA,EAAA,CAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA,EAAA;AAA3B,IAAA,SAAA,IAAA,CAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,IAAA,EAAA,2BAA2B,mUCTxC,6vBAsBA,EAAA,MAAA,EAAA,CAAA,6yDAAA,CAAA,EAAA,YAAA,EAAA,CAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,gBAAA,EAAA,QAAA,EAAA,UAAA,EAAA,MAAA,EAAA,CAAA,MAAA,EAAA,MAAA,EAAA,OAAA,EAAA,OAAA,EAAA,QAAA,CAAA,EAAA,CAAA,EAAA,CAAA,CAAA,EAAA;;2FDba,2BAA2B,EAAA,UAAA,EAAA,CAAA;kBALvC,SAAS;+BACE,sBAAsB,EAAA,QAAA,EAAA,6vBAAA,EAAA,MAAA,EAAA,CAAA,6yDAAA,CAAA,EAAA,CAAA;oFAYvB,MAAM,EAAA,CAAA;sBAAd,KAAK;gBAKG,QAAQ,EAAA,CAAA;sBAAhB,KAAK;gBAKG,IAAI,EAAA,CAAA;sBAAZ,KAAK;gBAKG,EAAE,EAAA,CAAA;sBAAV,KAAK;gBAKG,IAAI,EAAA,CAAA;sBAAZ,KAAK;gBAKI,SAAS,EAAA,CAAA;sBAAlB,MAAM;gBAKG,UAAU,EAAA,CAAA;sBAAnB,MAAM;gBAKG,UAAU,EAAA,CAAA;sBAAnB,MAAM;gBAKG,WAAW,EAAA,CAAA;sBAApB,MAAM;gBAKG,WAAW,EAAA,CAAA;sBAApB,MAAM;gBAKG,WAAW,EAAA,CAAA;sBAApB,MAAM;;;MEvDI,wBAAwB,CAAA;8GAAxB,wBAAwB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,QAAA,EAAA,CAAA,CAAA,EAAA;+GAAxB,wBAAwB,EAAA,YAAA,EAAA,CAFpB,2BAA2B,CAFhC,EAAA,OAAA,EAAA,CAAA,YAAY,EAAE,aAAa,EAAE,aAAa,CAAA,EAAA,OAAA,EAAA,CAC1C,2BAA2B,CAAA,EAAA,CAAA,CAAA,EAAA;AAG1B,IAAA,SAAA,IAAA,CAAA,IAAA,GAAA,EAAA,CAAA,mBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,wBAAwB,EAJzB,OAAA,EAAA,CAAA,YAAY,EAAE,aAAa,EAAE,aAAa,CAAA,EAAA,CAAA,CAAA,EAAA;;2FAIzC,wBAAwB,EAAA,UAAA,EAAA,CAAA;kBALpC,QAAQ;AAAC,YAAA,IAAA,EAAA,CAAA;AACR,oBAAA,OAAO,EAAE,CAAC,YAAY,EAAE,aAAa,EAAE,aAAa,CAAC;oBACrD,OAAO,EAAE,CAAC,2BAA2B,CAAC;oBACtC,YAAY,EAAE,CAAC,2BAA2B,CAAC;AAC5C,iBAAA,CAAA;;;ACXD;;AAEG;;;;"}
|
|
@@ -1,44 +0,0 @@
|
|
|
1
|
-
import * as i0 from '@angular/core';
|
|
2
|
-
import { Component, Input, NgModule } from '@angular/core';
|
|
3
|
-
import * as i1 from '@angular/common';
|
|
4
|
-
import { CommonModule } from '@angular/common';
|
|
5
|
-
|
|
6
|
-
class WidgetTitleComponent {
|
|
7
|
-
constructor() {
|
|
8
|
-
/**
|
|
9
|
-
* The color of the title text
|
|
10
|
-
*/
|
|
11
|
-
this.color = 'medium';
|
|
12
|
-
}
|
|
13
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: WidgetTitleComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
14
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.1.1", type: WidgetTitleComponent, selector: "ads-widget-title", inputs: { title: "title", color: "color" }, ngImport: i0, template: "<div class=\"text-card-sub-title\" [ngClass]=\"color\">{{ title }}</div>\n", dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }] }); }
|
|
15
|
-
}
|
|
16
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: WidgetTitleComponent, decorators: [{
|
|
17
|
-
type: Component,
|
|
18
|
-
args: [{ selector: 'ads-widget-title', template: "<div class=\"text-card-sub-title\" [ngClass]=\"color\">{{ title }}</div>\n" }]
|
|
19
|
-
}], propDecorators: { title: [{
|
|
20
|
-
type: Input
|
|
21
|
-
}], color: [{
|
|
22
|
-
type: Input
|
|
23
|
-
}] } });
|
|
24
|
-
|
|
25
|
-
class AdsWidgetTitleModule {
|
|
26
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsWidgetTitleModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
27
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.1.1", ngImport: i0, type: AdsWidgetTitleModule, declarations: [WidgetTitleComponent], imports: [CommonModule], exports: [WidgetTitleComponent] }); }
|
|
28
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsWidgetTitleModule, imports: [CommonModule] }); }
|
|
29
|
-
}
|
|
30
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.1.1", ngImport: i0, type: AdsWidgetTitleModule, decorators: [{
|
|
31
|
-
type: NgModule,
|
|
32
|
-
args: [{
|
|
33
|
-
imports: [CommonModule],
|
|
34
|
-
exports: [WidgetTitleComponent],
|
|
35
|
-
declarations: [WidgetTitleComponent],
|
|
36
|
-
}]
|
|
37
|
-
}] });
|
|
38
|
-
|
|
39
|
-
/**
|
|
40
|
-
* Generated bundle index. Do not edit.
|
|
41
|
-
*/
|
|
42
|
-
|
|
43
|
-
export { AdsWidgetTitleModule, WidgetTitleComponent };
|
|
44
|
-
//# sourceMappingURL=ascentgl-ads-ui-src-lib-components-widgets-widget-title.mjs.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"ascentgl-ads-ui-src-lib-components-widgets-widget-title.mjs","sources":["../../../../libs/ads-ui/src/lib/components/widgets/widget-title/widget-title.component.ts","../../../../libs/ads-ui/src/lib/components/widgets/widget-title/widget-title.component.html","../../../../libs/ads-ui/src/lib/components/widgets/widget-title/widget-title.module.ts","../../../../libs/ads-ui/src/lib/components/widgets/widget-title/ascentgl-ads-ui-src-lib-components-widgets-widget-title.ts"],"sourcesContent":["import { Component, Input } from '@angular/core';\n\n@Component({\n selector: 'ads-widget-title',\n templateUrl: './widget-title.component.html',\n})\nexport class WidgetTitleComponent {\n /**\n * The title text to display\n */\n @Input() title!: string;\n\n /**\n * The color of the title text\n */\n @Input() color: 'medium' | 'primary' | 'secondary' = 'medium';\n}\n","<div class=\"text-card-sub-title\" [ngClass]=\"color\">{{ title }}</div>\n","import { CommonModule } from '@angular/common';\nimport { NgModule } from '@angular/core';\n\nimport { WidgetTitleComponent } from './widget-title.component';\n\n@NgModule({\n imports: [CommonModule],\n exports: [WidgetTitleComponent],\n declarations: [WidgetTitleComponent],\n})\nexport class AdsWidgetTitleModule {}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './public-api';\n"],"names":[],"mappings":";;;;;MAMa,oBAAoB,CAAA;AAJjC,IAAA,WAAA,GAAA;AAUE;;AAEG;QACM,IAAK,CAAA,KAAA,GAAuC,QAAQ,CAAC;AAC/D,KAAA;8GAVY,oBAAoB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,SAAA,EAAA,CAAA,CAAA,EAAA;AAApB,IAAA,SAAA,IAAA,CAAA,IAAA,GAAA,EAAA,CAAA,oBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,IAAA,EAAA,oBAAoB,oGCNjC,4EACA,EAAA,YAAA,EAAA,CAAA,EAAA,IAAA,EAAA,WAAA,EAAA,IAAA,EAAA,EAAA,CAAA,OAAA,EAAA,QAAA,EAAA,WAAA,EAAA,MAAA,EAAA,CAAA,OAAA,EAAA,SAAA,CAAA,EAAA,CAAA,EAAA,CAAA,CAAA,EAAA;;2FDKa,oBAAoB,EAAA,UAAA,EAAA,CAAA;kBAJhC,SAAS;+BACE,kBAAkB,EAAA,QAAA,EAAA,4EAAA,EAAA,CAAA;8BAOnB,KAAK,EAAA,CAAA;sBAAb,KAAK;gBAKG,KAAK,EAAA,CAAA;sBAAb,KAAK;;;MELK,oBAAoB,CAAA;8GAApB,oBAAoB,EAAA,IAAA,EAAA,EAAA,EAAA,MAAA,EAAA,EAAA,CAAA,eAAA,CAAA,QAAA,EAAA,CAAA,CAAA,EAAA;AAApB,IAAA,SAAA,IAAA,CAAA,IAAA,GAAA,EAAA,CAAA,mBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,oBAAoB,EAFhB,YAAA,EAAA,CAAA,oBAAoB,CAFzB,EAAA,OAAA,EAAA,CAAA,YAAY,aACZ,oBAAoB,CAAA,EAAA,CAAA,CAAA,EAAA;AAGnB,IAAA,SAAA,IAAA,CAAA,IAAA,GAAA,EAAA,CAAA,mBAAA,CAAA,EAAA,UAAA,EAAA,QAAA,EAAA,OAAA,EAAA,QAAA,EAAA,QAAA,EAAA,EAAA,EAAA,IAAA,EAAA,oBAAoB,YAJrB,YAAY,CAAA,EAAA,CAAA,CAAA,EAAA;;2FAIX,oBAAoB,EAAA,UAAA,EAAA,CAAA;kBALhC,QAAQ;AAAC,YAAA,IAAA,EAAA,CAAA;oBACR,OAAO,EAAE,CAAC,YAAY,CAAC;oBACvB,OAAO,EAAE,CAAC,oBAAoB,CAAC;oBAC/B,YAAY,EAAE,CAAC,oBAAoB,CAAC;AACrC,iBAAA,CAAA;;;ACTD;;AAEG;;;;"}
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
export declare class AdsOrgDisplayTextComponent {
|
|
3
|
-
/**
|
|
4
|
-
* Organization text to display
|
|
5
|
-
*/
|
|
6
|
-
text: string;
|
|
7
|
-
/**
|
|
8
|
-
* Whether the viewport is mobile
|
|
9
|
-
*/
|
|
10
|
-
isMobile: boolean;
|
|
11
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<AdsOrgDisplayTextComponent, never>;
|
|
12
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AdsOrgDisplayTextComponent, "ads-org-display-text", never, { "text": { "alias": "text"; "required": false; }; "isMobile": { "alias": "isMobile"; "required": false; }; }, {}, never, never, false, never>;
|
|
13
|
-
}
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./org-display-text.component";
|
|
3
|
-
import * as i2 from "@angular/common";
|
|
4
|
-
export declare class AdsOrgDisplayTextModule {
|
|
5
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<AdsOrgDisplayTextModule, never>;
|
|
6
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<AdsOrgDisplayTextModule, [typeof i1.AdsOrgDisplayTextComponent], [typeof i2.CommonModule], [typeof i1.AdsOrgDisplayTextComponent]>;
|
|
7
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<AdsOrgDisplayTextModule>;
|
|
8
|
-
}
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
export declare class AdsPaginationContainerComponent {
|
|
3
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<AdsPaginationContainerComponent, never>;
|
|
4
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AdsPaginationContainerComponent, "ads-pagination-container", never, {}, {}, never, ["*"], false, never>;
|
|
5
|
-
}
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./pagination-container.component";
|
|
3
|
-
export declare class AdsPaginationContainerModule {
|
|
4
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<AdsPaginationContainerModule, never>;
|
|
5
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<AdsPaginationContainerModule, [typeof i1.AdsPaginationContainerComponent], never, [typeof i1.AdsPaginationContainerComponent]>;
|
|
6
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<AdsPaginationContainerModule>;
|
|
7
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from './public-api';
|
|
@@ -1,41 +0,0 @@
|
|
|
1
|
-
import { EventEmitter, OnChanges, SimpleChanges } from '@angular/core';
|
|
2
|
-
import { AdsIconRegistry } from '@ascentgl/ads-icons';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class AdsPaginationComponent implements OnChanges {
|
|
5
|
-
private registry;
|
|
6
|
-
constructor(registry: AdsIconRegistry);
|
|
7
|
-
/**
|
|
8
|
-
* The total number of pages
|
|
9
|
-
*/
|
|
10
|
-
totalPages: number;
|
|
11
|
-
/**
|
|
12
|
-
* The current page
|
|
13
|
-
*/
|
|
14
|
-
currentPage: number;
|
|
15
|
-
/**
|
|
16
|
-
* Event emitted when a page button is clicked
|
|
17
|
-
*/
|
|
18
|
-
goToPage: EventEmitter<number>;
|
|
19
|
-
/**
|
|
20
|
-
* Event emitted when the next page button is clicked
|
|
21
|
-
*/
|
|
22
|
-
goToNextPage: EventEmitter<null>;
|
|
23
|
-
/**
|
|
24
|
-
* Event emitted when the previous page button is clicked
|
|
25
|
-
*/
|
|
26
|
-
goToPreviousPage: EventEmitter<null>;
|
|
27
|
-
/** @ignore */
|
|
28
|
-
pages: number[];
|
|
29
|
-
/** @ignore */
|
|
30
|
-
ngOnChanges(changes: SimpleChanges): void;
|
|
31
|
-
/** @ignore */
|
|
32
|
-
onGoToPage(page: number): void;
|
|
33
|
-
/** @ignore */
|
|
34
|
-
onGoToNextPage(): void;
|
|
35
|
-
/** @ignore */
|
|
36
|
-
onGoToPreviousPage(): void;
|
|
37
|
-
/** @ignore */
|
|
38
|
-
private getPagesToDisplay;
|
|
39
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<AdsPaginationComponent, never>;
|
|
40
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<AdsPaginationComponent, "ads-pagination", never, { "totalPages": { "alias": "totalPages"; "required": false; }; "currentPage": { "alias": "currentPage"; "required": false; }; }, { "goToPage": "goToPage"; "goToNextPage": "goToNextPage"; "goToPreviousPage": "goToPreviousPage"; }, never, never, false, never>;
|
|
41
|
-
}
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./pagination.component";
|
|
3
|
-
import * as i2 from "@angular/common";
|
|
4
|
-
import * as i3 from "@ascentgl/ads-icons";
|
|
5
|
-
export declare class AdsPaginationModule {
|
|
6
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<AdsPaginationModule, never>;
|
|
7
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<AdsPaginationModule, [typeof i1.AdsPaginationComponent], [typeof i2.CommonModule, typeof i3.AdsIconModule], [typeof i1.AdsPaginationComponent]>;
|
|
8
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<AdsPaginationModule>;
|
|
9
|
-
}
|