@daffodil/design 0.78.0 → 0.80.0
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/accordion/accordion.module.d.ts +3 -1
- package/accordion/src/accordion-theme.scss +4 -4
- package/article/README.md +5 -6
- package/article/article.module.d.ts +3 -1
- package/article/src/article-theme.scss +8 -8
- package/atoms/form/form-field/form-field/form-field.component.d.ts +1 -1
- package/breadcrumb/breadcrumb.module.d.ts +3 -1
- package/breadcrumb/src/breadcrumb-theme.scss +3 -3
- package/button/README.md +3 -3
- package/button/button/basic/button.component.d.ts +28 -0
- package/button/button/button-base.directive.d.ts +51 -0
- package/button/button/flat/flat.component.d.ts +28 -0
- package/button/button/icon/icon.component.d.ts +24 -0
- package/button/button/raised/raised.component.d.ts +28 -0
- package/button/button/stroked/stroked.component.d.ts +28 -0
- package/button/button/underline/underline.component.d.ts +28 -0
- package/button/button.d.ts +7 -2
- package/button/button.module.d.ts +11 -4
- package/button/public_api.d.ts +6 -1
- package/button/src/button/basic/button-theme.scss +145 -0
- package/button/src/button/button-base.scss +79 -0
- package/button/src/button/flat/flat-theme.scss +142 -0
- package/button/src/button/icon/icon-theme.scss +140 -0
- package/button/src/button/raised/raised-theme.scss +107 -0
- package/button/src/button/stroked/stroked-theme.scss +155 -0
- package/button/src/button/underline/underline-theme.scss +89 -0
- package/callout/callout.module.d.ts +3 -1
- package/callout/src/callout-theme.scss +11 -17
- package/card/card.module.d.ts +1 -1
- package/card/src/card-theme-variants/linkable-card.scss +1 -1
- package/card/src/card-theme.scss +9 -9
- package/container/container.module.d.ts +1 -1
- package/core/public_api.d.ts +1 -0
- package/core/selectable/public_api.d.ts +2 -0
- package/core/selectable/selectable.d.ts +7 -0
- package/core/selectable/selectable.directive.d.ts +17 -0
- package/core/statusable/statusable.d.ts +5 -3
- package/core/statusable/statusable.directive.d.ts +6 -4
- package/esm2022/accordion/accordion/animation/accordion-animation.mjs +1 -4
- package/esm2022/accordion/accordion.module.mjs +4 -2
- package/esm2022/article/article.module.mjs +4 -2
- package/esm2022/atoms/form/checkbox/checkbox.component.mjs +2 -2
- package/esm2022/atoms/form/checkbox-set/checkbox-set.component.mjs +2 -2
- package/esm2022/atoms/form/form-field/form-field/form-field.component.mjs +2 -2
- package/esm2022/atoms/form/radio/radio.component.mjs +2 -2
- package/esm2022/atoms/form/radio-set/radio-set.component.mjs +2 -2
- package/esm2022/breadcrumb/breadcrumb.module.mjs +4 -2
- package/esm2022/button/button/basic/button.component.mjs +48 -0
- package/esm2022/button/button/button-base.directive.mjs +105 -0
- package/esm2022/button/button/flat/flat.component.mjs +48 -0
- package/esm2022/button/button/icon/icon.component.mjs +44 -0
- package/esm2022/button/button/raised/raised.component.mjs +48 -0
- package/esm2022/button/button/stroked/stroked.component.mjs +48 -0
- package/esm2022/button/button/underline/underline.component.mjs +48 -0
- package/esm2022/button/button.mjs +12 -2
- package/esm2022/button/button.module.mjs +37 -5
- package/esm2022/button/examples/basic-button/basic-button.component.mjs +4 -6
- package/esm2022/button/examples/flat-button/flat-button.component.mjs +4 -6
- package/esm2022/button/examples/icon-button/icon-button.component.mjs +4 -6
- package/esm2022/button/examples/raised-button/raised-button.component.mjs +4 -6
- package/esm2022/button/examples/sizeable-button/sizeable-button.component.mjs +2 -2
- package/esm2022/button/examples/statusable-button/statusable-button.component.mjs +3 -3
- package/esm2022/button/examples/stroked-button/stroked-button.component.mjs +4 -6
- package/esm2022/button/examples/underline-button/underline-button.component.mjs +4 -6
- package/esm2022/button/public_api.mjs +7 -2
- package/esm2022/callout/callout.module.mjs +4 -2
- package/esm2022/callout/examples/callout-text-alignment/callout-text-alignment.component.mjs +5 -7
- package/esm2022/callout/examples/callout-theming/callout-theming.component.mjs +5 -7
- package/esm2022/callout/examples/callout-with-grid/callout-with-grid.component.mjs +5 -6
- package/esm2022/callout/examples/compact-callout/compact-callout.component.mjs +4 -6
- package/esm2022/card/card.module.mjs +2 -2
- package/esm2022/card/examples/basic-card/basic-card.component.mjs +4 -6
- package/esm2022/card/examples/card-orientation/card-orientation.component.mjs +5 -7
- package/esm2022/checkbox/examples/basic-checkbox/basic-checkbox.component.mjs +4 -5
- package/esm2022/checkbox/examples/checkbox-set/checkbox-set.component.mjs +4 -5
- package/esm2022/container/container/container.component.mjs +2 -2
- package/esm2022/container/container.module.mjs +2 -2
- package/esm2022/core/public_api.mjs +2 -1
- package/esm2022/core/selectable/public_api.mjs +2 -0
- package/esm2022/core/selectable/selectable.directive.mjs +41 -0
- package/esm2022/core/selectable/selectable.mjs +2 -0
- package/esm2022/core/statusable/statusable.directive.mjs +7 -5
- package/esm2022/core/statusable/statusable.mjs +3 -2
- package/esm2022/hero/examples/compact-hero/compact-hero.component.mjs +4 -6
- package/esm2022/hero/examples/hero-text-alignment/hero-text-alignment.component.mjs +5 -7
- package/esm2022/hero/examples/hero-theming/hero-theming.component.mjs +5 -7
- package/esm2022/hero/examples/hero-with-grid/hero-with-grid.component.mjs +4 -6
- package/esm2022/hero/hero.module.mjs +2 -2
- package/esm2022/image/image.module.mjs +2 -2
- package/esm2022/link-set/link-set.module.mjs +2 -2
- package/esm2022/list/examples/basic-list/basic-list.component.mjs +1 -1
- package/esm2022/list/examples/icon-list/icon-list.component.mjs +2 -2
- package/esm2022/list/examples/multiline-list/multiline-list.component.mjs +1 -1
- package/esm2022/list/examples/nav-list/nav-list.component.mjs +2 -2
- package/esm2022/list/list/list.component.mjs +2 -2
- package/esm2022/list/list-item/list-item.component.mjs +10 -3
- package/esm2022/list/list.module.mjs +2 -2
- package/esm2022/loading-icon/examples/examples.mjs +1 -3
- package/esm2022/loading-icon/examples/loading-icon-color/loading-icon-color.component.mjs +2 -2
- package/esm2022/loading-icon/loading-icon/loading-icon.component.mjs +5 -20
- package/esm2022/loading-icon/loading-icon.module.mjs +2 -2
- package/esm2022/media-gallery/examples/basic-media-gallery/basic-media-gallery.component.mjs +1 -1
- package/esm2022/media-gallery/examples/mismatched-sizes-media-gallery/mismatched-sizes-media-gallery.component.mjs +1 -1
- package/esm2022/media-gallery/examples/skeleton-media-gallery/skeleton-media-gallery.component.mjs +1 -1
- package/esm2022/media-gallery/helpers/media-gallery-token.mjs +7 -3
- package/esm2022/media-gallery/media-gallery.module.mjs +2 -2
- package/esm2022/media-gallery/thumbnail/thumbnail-compat.token.mjs +8 -3
- package/esm2022/media-gallery/thumbnail/thumbnail.directive.mjs +26 -39
- package/esm2022/menu/examples/basic-menu/basic-menu.component.mjs +5 -7
- package/esm2022/modal/examples/basic-modal/basic-modal.component.mjs +4 -6
- package/esm2022/modal/examples/basic-modal/modal-content.component.mjs +4 -6
- package/esm2022/modal/modal-header/modal-header.component.mjs +4 -6
- package/esm2022/modal/modal.module.mjs +2 -2
- package/esm2022/navbar/examples/basic-navbar/basic-navbar.component.mjs +4 -6
- package/esm2022/navbar/examples/contained-navbar/contained-navbar.component.mjs +4 -6
- package/esm2022/navbar/examples/navbar-theming/navbar-theming.component.mjs +5 -7
- package/esm2022/navbar/examples/raised-navbar/raised-navbar.component.mjs +4 -6
- package/esm2022/navbar/navbar.module.mjs +2 -2
- package/esm2022/notification/examples/default-notification/default-notification.component.mjs +1 -3
- package/esm2022/notification/examples/notification-orientations/notification-orientations.component.mjs +1 -3
- package/esm2022/notification/examples/notification-status/notification-status.component.mjs +3 -5
- package/esm2022/notification/examples/notification-with-actions/notification-with-actions.component.mjs +4 -5
- package/esm2022/notification/notification/notification.component.mjs +3 -3
- package/esm2022/notification/notification.module.mjs +2 -2
- package/esm2022/paginator/paginator.module.mjs +2 -2
- package/esm2022/progress-bar/progress-bar.module.mjs +2 -2
- package/esm2022/sidebar/examples/over-and-under-sidebars/over-and-under-sidebars.component.mjs +5 -6
- package/esm2022/sidebar/sidebar-viewport/scroll-token/scroll.token.mjs +9 -3
- package/esm2022/sidebar/sidebar-viewport/sidebar-viewport.component.mjs +3 -3
- package/esm2022/sidebar/sidebar.module.mjs +2 -2
- package/esm2022/switch/daffodil-design-switch.mjs +5 -0
- package/esm2022/switch/examples/basic-switch/basic-switch.component.mjs +23 -0
- package/esm2022/switch/examples/daffodil-design-switch-examples.mjs +5 -0
- package/esm2022/switch/examples/disabled-switch/disabled-switch.component.mjs +20 -0
- package/esm2022/switch/examples/examples.mjs +13 -0
- package/esm2022/switch/examples/index.mjs +2 -0
- package/esm2022/switch/examples/loading-switch/loading-switch.component.mjs +20 -0
- package/esm2022/switch/examples/public_api.mjs +7 -0
- package/esm2022/switch/examples/switch-error/switch-error.component.mjs +22 -0
- package/esm2022/switch/examples/switch-label-positions/switch-label-positions.component.mjs +31 -0
- package/esm2022/switch/index.mjs +2 -0
- package/esm2022/switch/public_api.mjs +3 -0
- package/esm2022/switch/switch/label-position.mjs +11 -0
- package/esm2022/switch/switch/switch.component.mjs +126 -0
- package/esm2022/switch/switch.mjs +7 -0
- package/esm2022/tabs/daffodil-design-tabs.mjs +5 -0
- package/esm2022/tabs/examples/basic-tabs/basic-tabs.component.mjs +22 -0
- package/esm2022/tabs/examples/custom-select-tabs/custom-select-tabs.component.mjs +34 -0
- package/esm2022/tabs/examples/daffodil-design-tabs-examples.mjs +5 -0
- package/esm2022/tabs/examples/disabled-tabs/disabled-tabs.component.mjs +22 -0
- package/esm2022/tabs/examples/index.mjs +2 -0
- package/esm2022/tabs/examples/initially-select-tab/initially-select-tab.component.mjs +22 -0
- package/esm2022/tabs/examples/public_api.mjs +11 -0
- package/esm2022/tabs/index.mjs +2 -0
- package/esm2022/tabs/public_api.mjs +6 -0
- package/esm2022/tabs/tabs/tab/tab.component.mjs +86 -0
- package/esm2022/tabs/tabs/tab-activator/tab-activator.component.mjs +84 -0
- package/esm2022/tabs/tabs/tab-label/tab-label.component.mjs +33 -0
- package/esm2022/tabs/tabs/tab-panel/tab-panel.component.mjs +68 -0
- package/esm2022/tabs/tabs/tabs.component.mjs +157 -0
- package/esm2022/tabs/tabs.mjs +13 -0
- package/esm2022/text-snippet/daffodil-design-text-snippet.mjs +5 -0
- package/esm2022/text-snippet/examples/basic-text-snippet/basic-text-snippet.component.mjs +14 -0
- package/esm2022/text-snippet/examples/daffodil-design-text-snippet-examples.mjs +5 -0
- package/esm2022/text-snippet/examples/index.mjs +2 -0
- package/esm2022/text-snippet/examples/public_api.mjs +5 -0
- package/esm2022/text-snippet/index.mjs +2 -0
- package/esm2022/text-snippet/public_api.mjs +2 -0
- package/esm2022/text-snippet/text-snippet.component.mjs +46 -0
- package/esm2022/toast/examples/default-toast/default-toast.component.mjs +4 -6
- package/esm2022/toast/examples/toast-positions/toast-positions.component.mjs +4 -6
- package/esm2022/toast/examples/toast-status/toast-status.component.mjs +8 -10
- package/esm2022/toast/examples/toast-with-custom-duration/toast-with-custom-duration.component.mjs +4 -6
- package/esm2022/toast/options/daff-toast-options.mjs +7 -7
- package/esm2022/toast/toast/toast-provider.mjs +2 -2
- package/esm2022/toast/toast/toast-template.component.mjs +2 -2
- package/esm2022/toast/toast/toast.component.mjs +3 -3
- package/esm2022/toast/toast.module.mjs +2 -2
- package/esm2022/tree/tree.module.mjs +2 -2
- package/fesm2022/daffodil-design-accordion.mjs +3 -4
- package/fesm2022/daffodil-design-accordion.mjs.map +1 -1
- package/fesm2022/daffodil-design-article.mjs +3 -1
- package/fesm2022/daffodil-design-article.mjs.map +1 -1
- package/fesm2022/daffodil-design-breadcrumb.mjs +3 -1
- package/fesm2022/daffodil-design-breadcrumb.mjs.map +1 -1
- package/fesm2022/daffodil-design-button-examples.mjs +16 -16
- package/fesm2022/daffodil-design-button-examples.mjs.map +1 -1
- package/fesm2022/daffodil-design-button.mjs +308 -132
- package/fesm2022/daffodil-design-button.mjs.map +1 -1
- package/fesm2022/daffodil-design-callout-examples.mjs +12 -13
- package/fesm2022/daffodil-design-callout-examples.mjs.map +1 -1
- package/fesm2022/daffodil-design-callout.mjs +3 -1
- package/fesm2022/daffodil-design-callout.mjs.map +1 -1
- package/fesm2022/daffodil-design-card-examples.mjs +10 -12
- package/fesm2022/daffodil-design-card-examples.mjs.map +1 -1
- package/fesm2022/daffodil-design-card.mjs +1 -1
- package/fesm2022/daffodil-design-card.mjs.map +1 -1
- package/fesm2022/daffodil-design-checkbox-examples.mjs +5 -6
- package/fesm2022/daffodil-design-checkbox-examples.mjs.map +1 -1
- package/fesm2022/daffodil-design-container.mjs +3 -3
- package/fesm2022/daffodil-design-container.mjs.map +1 -1
- package/fesm2022/daffodil-design-hero-examples.mjs +11 -13
- package/fesm2022/daffodil-design-hero-examples.mjs.map +1 -1
- package/fesm2022/daffodil-design-hero.mjs +1 -1
- package/fesm2022/daffodil-design-hero.mjs.map +1 -1
- package/fesm2022/daffodil-design-image.mjs +1 -1
- package/fesm2022/daffodil-design-image.mjs.map +1 -1
- package/fesm2022/daffodil-design-link-set.mjs +1 -1
- package/fesm2022/daffodil-design-link-set.mjs.map +1 -1
- package/fesm2022/daffodil-design-list-examples.mjs +4 -4
- package/fesm2022/daffodil-design-list-examples.mjs.map +1 -1
- package/fesm2022/daffodil-design-list.mjs +12 -5
- package/fesm2022/daffodil-design-list.mjs.map +1 -1
- package/fesm2022/daffodil-design-loading-icon-examples.mjs +1 -13
- package/fesm2022/daffodil-design-loading-icon-examples.mjs.map +1 -1
- package/fesm2022/daffodil-design-loading-icon.mjs +5 -20
- package/fesm2022/daffodil-design-loading-icon.mjs.map +1 -1
- package/fesm2022/daffodil-design-media-gallery-examples.mjs +3 -3
- package/fesm2022/daffodil-design-media-gallery-examples.mjs.map +1 -1
- package/fesm2022/daffodil-design-media-gallery.mjs +37 -42
- package/fesm2022/daffodil-design-media-gallery.mjs.map +1 -1
- package/fesm2022/daffodil-design-menu-examples.mjs +3 -5
- package/fesm2022/daffodil-design-menu-examples.mjs.map +1 -1
- package/fesm2022/daffodil-design-modal-examples.mjs +5 -7
- package/fesm2022/daffodil-design-modal-examples.mjs.map +1 -1
- package/fesm2022/daffodil-design-modal.mjs +4 -5
- package/fesm2022/daffodil-design-modal.mjs.map +1 -1
- package/fesm2022/daffodil-design-navbar-examples.mjs +11 -13
- package/fesm2022/daffodil-design-navbar-examples.mjs.map +1 -1
- package/fesm2022/daffodil-design-navbar.mjs +1 -1
- package/fesm2022/daffodil-design-navbar.mjs.map +1 -1
- package/fesm2022/daffodil-design-notification-examples.mjs +5 -9
- package/fesm2022/daffodil-design-notification-examples.mjs.map +1 -1
- package/fesm2022/daffodil-design-notification.mjs +3 -3
- package/fesm2022/daffodil-design-notification.mjs.map +1 -1
- package/fesm2022/daffodil-design-paginator.mjs +1 -1
- package/fesm2022/daffodil-design-paginator.mjs.map +1 -1
- package/fesm2022/daffodil-design-progress-bar.mjs +1 -1
- package/fesm2022/daffodil-design-progress-bar.mjs.map +1 -1
- package/fesm2022/daffodil-design-sidebar-examples.mjs +4 -5
- package/fesm2022/daffodil-design-sidebar-examples.mjs.map +1 -1
- package/fesm2022/daffodil-design-sidebar.mjs +11 -5
- package/fesm2022/daffodil-design-sidebar.mjs.map +1 -1
- package/fesm2022/daffodil-design-switch-examples.mjs +109 -0
- package/fesm2022/daffodil-design-switch-examples.mjs.map +1 -0
- package/fesm2022/daffodil-design-switch.mjs +148 -0
- package/fesm2022/daffodil-design-switch.mjs.map +1 -0
- package/fesm2022/daffodil-design-tabs-examples.mjs +93 -0
- package/fesm2022/daffodil-design-tabs-examples.mjs.map +1 -0
- package/fesm2022/daffodil-design-tabs.mjs +428 -0
- package/fesm2022/daffodil-design-tabs.mjs.map +1 -0
- package/fesm2022/daffodil-design-text-snippet-examples.mjs +25 -0
- package/fesm2022/daffodil-design-text-snippet-examples.mjs.map +1 -0
- package/fesm2022/daffodil-design-text-snippet.mjs +53 -0
- package/fesm2022/daffodil-design-text-snippet.mjs.map +1 -0
- package/fesm2022/daffodil-design-toast-examples.mjs +13 -15
- package/fesm2022/daffodil-design-toast-examples.mjs.map +1 -1
- package/fesm2022/daffodil-design-toast.mjs +13 -12
- package/fesm2022/daffodil-design-toast.mjs.map +1 -1
- package/fesm2022/daffodil-design-tree.mjs +1 -1
- package/fesm2022/daffodil-design-tree.mjs.map +1 -1
- package/fesm2022/daffodil-design.mjs +53 -11
- package/fesm2022/daffodil-design.mjs.map +1 -1
- package/hero/hero.module.d.ts +1 -1
- package/hero/src/hero-theme.scss +11 -17
- package/image/README.md +4 -1
- package/image/image.module.d.ts +1 -1
- package/link-set/README.md +1 -1
- package/link-set/link-set.module.d.ts +1 -1
- package/list/list-item/list-item.component.d.ts +3 -1
- package/list/list.module.d.ts +1 -1
- package/list/src/list-theme.scss +13 -9
- package/loading-icon/README.md +0 -5
- package/loading-icon/examples/examples.d.ts +2 -2
- package/loading-icon/loading-icon/loading-icon.component.d.ts +1 -9
- package/loading-icon/loading-icon.module.d.ts +1 -1
- package/loading-icon/src/loading-icon-theme.scss +7 -7
- package/media-gallery/README.md +4 -1
- package/media-gallery/helpers/media-gallery-token.d.ts +1 -2
- package/media-gallery/media-gallery.module.d.ts +1 -1
- package/media-gallery/src/media-gallery-theme.scss +3 -3
- package/media-gallery/thumbnail/thumbnail-compat.token.d.ts +1 -5
- package/media-gallery/thumbnail/thumbnail.directive.d.ts +9 -18
- package/menu/src/menu-theme.scss +5 -5
- package/modal/modal.module.d.ts +1 -1
- package/modal/src/modal-theme.scss +1 -1
- package/navbar/navbar.module.d.ts +1 -1
- package/navbar/src/navbar-theme.scss +8 -8
- package/notification/README.md +2 -2
- package/notification/notification/notification.component.d.ts +1 -1
- package/notification/notification.module.d.ts +1 -1
- package/notification/src/notification-theme.scss +25 -21
- package/package.json +1 -1
- package/paginator/paginator.module.d.ts +1 -1
- package/paginator/src/paginator-theme.scss +11 -10
- package/progress-bar/progress-bar.module.d.ts +1 -1
- package/progress-bar/src/progress-bar-theme.scss +10 -10
- package/scss/accessibility/_index.scss +1 -1
- package/scss/core/_index.scss +1 -2
- package/scss/core/error/error-to-string.scss +13 -0
- package/scss/core/map/map-deep-check/map-deep-check.scss +2 -1
- package/scss/core/map/map-deep-get/map-deep-get.scss +1 -0
- package/scss/core/map/map-get/map-get.scss +23 -0
- package/scss/core/map/map-get/map-get.spec.scss +65 -0
- package/scss/core/string/split/string-split.scss +10 -7
- package/scss/global.scss +1 -0
- package/scss/interactions/_index.scss +1 -1
- package/scss/layout/_index.scss +1 -1
- package/scss/state/skeleton/_mixins.scss +2 -2
- package/scss/theme.scss +15 -1
- package/scss/theming/_configure-theme.scss +60 -2
- package/scss/theming/_daff-theme.scss +14 -4
- package/scss/theming/_index.scss +1 -1
- package/scss/theming/_theme-css-variables.scss +15 -13
- package/scss/theming/contrast/luminance/luminance.scss +8 -6
- package/scss/theming/illuminate/illuminate.scss +20 -17
- package/scss/typography/utilities/_index.scss +1 -1
- package/scss/typography/utilities/_variables.scss +1 -1
- package/sidebar/sidebar-viewport/scroll-token/scroll.token.d.ts +1 -7
- package/sidebar/sidebar-viewport/sidebar-viewport.component.d.ts +1 -1
- package/sidebar/sidebar.module.d.ts +1 -1
- package/sidebar/src/sidebar-theme.scss +3 -3
- package/src/atoms/form/form-field/form-field/form-field-theme.scss +6 -6
- package/src/atoms/form/input/input-theme.scss +2 -2
- package/src/atoms/form/native-select/native-select-theme.scss +3 -3
- package/switch/README.md +61 -0
- package/switch/examples/basic-switch/basic-switch.component.d.ts +8 -0
- package/switch/examples/disabled-switch/disabled-switch.component.d.ts +7 -0
- package/switch/examples/examples.d.ts +5 -0
- package/switch/examples/index.d.ts +1 -0
- package/switch/examples/loading-switch/loading-switch.component.d.ts +7 -0
- package/switch/examples/public_api.d.ts +6 -0
- package/switch/examples/switch-error/switch-error.component.d.ts +7 -0
- package/switch/examples/switch-label-positions/switch-label-positions.component.d.ts +12 -0
- package/switch/index.d.ts +1 -0
- package/switch/public_api.d.ts +2 -0
- package/switch/src/switch-theme.scss +31 -0
- package/switch/switch/label-position.d.ts +10 -0
- package/switch/switch/switch.component.d.ts +53 -0
- package/switch/switch.d.ts +3 -0
- package/tabs/README.md +19 -0
- package/tabs/examples/basic-tabs/basic-tabs.component.d.ts +6 -0
- package/tabs/examples/custom-select-tabs/custom-select-tabs.component.d.ts +11 -0
- package/tabs/examples/disabled-tabs/disabled-tabs.component.d.ts +6 -0
- package/tabs/examples/index.d.ts +1 -0
- package/tabs/examples/initially-select-tab/initially-select-tab.component.d.ts +6 -0
- package/tabs/examples/public_api.d.ts +2 -0
- package/tabs/index.d.ts +1 -0
- package/tabs/public_api.d.ts +5 -0
- package/tabs/src/tabs-theme.scss +22 -0
- package/tabs/tabs/tab/tab.component.d.ts +57 -0
- package/tabs/tabs/tab-activator/tab-activator.component.d.ts +38 -0
- package/tabs/tabs/tab-label/tab-label.component.d.ts +19 -0
- package/tabs/tabs/tab-panel/tab-panel.component.d.ts +38 -0
- package/tabs/tabs/tabs.component.d.ts +103 -0
- package/tabs/tabs.d.ts +6 -0
- package/text-snippet/README.md +2 -0
- package/text-snippet/examples/basic-text-snippet/basic-text-snippet.component.d.ts +5 -0
- package/text-snippet/examples/index.d.ts +1 -0
- package/text-snippet/examples/public_api.d.ts +2 -0
- package/text-snippet/index.d.ts +1 -0
- package/text-snippet/public_api.d.ts +1 -0
- package/text-snippet/text-snippet.component.d.ts +19 -0
- package/toast/README.md +5 -5
- package/toast/options/daff-toast-options.d.ts +1 -3
- package/toast/src/toast-theme.scss +28 -24
- package/toast/toast/toast-provider.d.ts +1 -1
- package/toast/toast.module.d.ts +1 -1
- package/tree/src/tree-theme.scss +11 -11
- package/tree/tree.module.d.ts +1 -1
- package/button/button/button.component.d.ts +0 -80
- package/button/src/button-theme-variants/button.scss +0 -26
- package/button/src/button-theme-variants/flat.scss +0 -25
- package/button/src/button-theme-variants/icon.scss +0 -21
- package/button/src/button-theme-variants/raised.scss +0 -36
- package/button/src/button-theme-variants/stroked.scss +0 -28
- package/button/src/button-theme-variants/underline.scss +0 -9
- package/button/src/button-theme.scss +0 -574
- package/esm2022/button/button/button.component.mjs +0 -212
- package/esm2022/loading-icon/examples/loading-icon-diameter/loading-icon-diameter.component.mjs +0 -15
- package/loading-icon/examples/loading-icon-diameter/loading-icon-diameter.component.d.ts +0 -5
- package/scss/core/map/map-deep-check/map-deep-check.spec.scss +0 -43
- package/scss/core/map/map-deep-get/map-deep-get.spec.scss +0 -25
- package/scss/theming/contrast/contrast-ratio/contrast-ratio.spec.scss +0 -0
- package/scss/theming/contrast/text-contrast/text-contrast.spec.scss +0 -0
- package/src/atoms/form/radio/radio.scss +0 -0
@@ -3,7 +3,9 @@ import * as i1 from "@angular/common";
|
|
3
3
|
import * as i2 from "./accordion/accordion/accordion.component";
|
4
4
|
import * as i3 from "./accordion/accordion-item/accordion-item.component";
|
5
5
|
import * as i4 from "./accordion/accordion-item-title/accordion-item-title.directive";
|
6
|
-
/**
|
6
|
+
/**
|
7
|
+
* @deprecated in favor of {@link DAFF_ACCORDION_COMPONENTS}. Deprecated in version 0.78.0. Will be removed in version 1.0.0.
|
8
|
+
*/
|
7
9
|
export declare class DaffAccordionModule {
|
8
10
|
static ɵfac: i0.ɵɵFactoryDeclaration<DaffAccordionModule, never>;
|
9
11
|
static ɵmod: i0.ɵɵNgModuleDeclaration<DaffAccordionModule, never, [typeof i1.CommonModule, typeof i2.DaffAccordionComponent, typeof i3.DaffAccordionItemComponent, typeof i4.DaffAccordionItemTitleDirective], [typeof i2.DaffAccordionComponent, typeof i3.DaffAccordionItemComponent, typeof i4.DaffAccordionItemTitleDirective]>;
|
@@ -3,8 +3,8 @@
|
|
3
3
|
@use '../../scss/theming';
|
4
4
|
|
5
5
|
@mixin daff-accordion-theme($theme) {
|
6
|
-
$neutral: core.daff-map-
|
7
|
-
$base: core.daff-map-
|
6
|
+
$neutral: core.daff-map-get($theme, 'core', 'neutral');
|
7
|
+
$base: core.daff-map-get($theme, 'core', 'base');
|
8
8
|
|
9
9
|
.daff-accordion-item {
|
10
10
|
border-top: 1px solid theming.daff-illuminate($base, $neutral, 2);
|
@@ -12,9 +12,9 @@
|
|
12
12
|
&:last-child {
|
13
13
|
border-bottom: 1px solid theming.daff-illuminate($base, $neutral, 2);
|
14
14
|
}
|
15
|
-
|
15
|
+
|
16
16
|
&__header {
|
17
|
-
|
17
|
+
&::after {
|
18
18
|
border-color: currentColor;
|
19
19
|
}
|
20
20
|
}
|
package/article/README.md
CHANGED
@@ -4,7 +4,7 @@ Article provides styles to common element selectors to create an article in a co
|
|
4
4
|
## Overview
|
5
5
|
Article can be used on any content page that displays large blocks of text-driven information. It's meant to be used as a standalone element and should not be nested inside any other components that may change the background color from the anticipated one. In the event that you must nest an article inside another component, please ensure that you set the article's background color to the default body color.
|
6
6
|
|
7
|
-
## Supported
|
7
|
+
## Supported elements
|
8
8
|
|
9
9
|
### Headings
|
10
10
|
<design-land-example-viewer-container example="article-headings"></design-land-example-viewer-container>
|
@@ -24,10 +24,10 @@ The link style in an article uses the default browser link style.
|
|
24
24
|
|
25
25
|
### Lists
|
26
26
|
|
27
|
-
#### Unordered
|
27
|
+
#### Unordered list
|
28
28
|
<design-land-example-viewer-container example="article-ul"></design-land-example-viewer-container>
|
29
29
|
|
30
|
-
#### Ordered
|
30
|
+
#### Ordered list
|
31
31
|
<design-land-example-viewer-container example="article-ol"></design-land-example-viewer-container>
|
32
32
|
|
33
33
|
### Code
|
@@ -39,15 +39,14 @@ These are styles for inline and multiline blocks of code.
|
|
39
39
|
#### Code blocks
|
40
40
|
<design-land-example-viewer-container example="article-code-block"></design-land-example-viewer-container>
|
41
41
|
|
42
|
-
### Horizontal
|
42
|
+
### Horizontal rules
|
43
43
|
<design-land-example-viewer-container example="article-hr"></design-land-example-viewer-container>
|
44
44
|
|
45
45
|
### Blockquote
|
46
46
|
<design-land-example-viewer-container example="article-blockquote"></design-land-example-viewer-container>
|
47
47
|
|
48
48
|
## Encapsulation
|
49
|
-
|
50
|
-
Articles also support other custom "non-native" components like [accordions](../accordion/README.md), [media galleries](../media-gallery/README.md), and [lists](../list/README.md). Unlike typical HTML (<p>, <ol>, <ul>, etc) content, these components must be style encaspulated to prevent article styles bleeding down from the article into their content. Many Daffodil components support this out of the box. If you have a custom component that you would like to place inside an article, you can use the `DaffArticleEncapsulatedDirective` on your component to prevent article styles bleeding into your component.
|
49
|
+
Articles also support other custom "non-native" components like [accordions](/libs/design/accordion/README.md), [media galleries](/libs/design/media-gallery/README.md), and [lists](/libs/design/list/README.md). Unlike typical HTML (`<p>`, `<ol>`, `<ul>`, etc) content, these components must be style encaspulated to prevent article styles bleeding down from the article into their content. Many Daffodil components support this out of the box. If you have a custom component that you would like to place inside an article, you can use the `DaffArticleEncapsulatedDirective` on your component to prevent article styles bleeding into your component.
|
51
50
|
|
52
51
|
## Usage
|
53
52
|
|
@@ -2,7 +2,9 @@ import * as i0 from "@angular/core";
|
|
2
2
|
import * as i1 from "@angular/common";
|
3
3
|
import * as i2 from "./article/article.component";
|
4
4
|
import * as i3 from "./article-meta/article-meta.directive";
|
5
|
-
/**
|
5
|
+
/**
|
6
|
+
* @deprecated in favor of {@link DAFF_ARTICLE_COMPONENTS}. Deprecated in version 0.78.0. Will be removed in version 1.0.0.
|
7
|
+
*/
|
6
8
|
export declare class DaffArticleModule {
|
7
9
|
static ɵfac: i0.ɵɵFactoryDeclaration<DaffArticleModule, never>;
|
8
10
|
static ɵmod: i0.ɵɵNgModuleDeclaration<DaffArticleModule, never, [typeof i1.CommonModule, typeof i2.DaffArticleComponent, typeof i3.DaffArticleMetaDirective], [typeof i2.DaffArticleComponent, typeof i3.DaffArticleMetaDirective]>;
|
@@ -4,14 +4,14 @@
|
|
4
4
|
@use '../../scss/theming';
|
5
5
|
|
6
6
|
@mixin daff-article-theme($theme) {
|
7
|
-
$primary: map
|
8
|
-
$secondary: map
|
9
|
-
$tertiary: map
|
10
|
-
$base: core.daff-map-
|
11
|
-
$base-contrast: core.daff-map-
|
12
|
-
$white: core.daff-map-
|
13
|
-
$black: core.daff-map-
|
14
|
-
$neutral: core.daff-map-
|
7
|
+
$primary: core.daff-map-get($theme, primary);
|
8
|
+
$secondary: core.daff-map-get($theme, secondary);
|
9
|
+
$tertiary: core.daff-map-get($theme, tertiary);
|
10
|
+
$base: core.daff-map-get($theme, 'core', 'base');
|
11
|
+
$base-contrast: core.daff-map-get($theme, 'core', 'base-contrast');
|
12
|
+
$white: core.daff-map-get($theme, 'core', 'white');
|
13
|
+
$black: core.daff-map-get($theme, 'core', 'black');
|
14
|
+
$neutral: core.daff-map-get($theme, 'core', 'neutral');
|
15
15
|
|
16
16
|
$text-color: theming.daff-illuminate($base-contrast, $neutral, 2);
|
17
17
|
$table-border-color: theming.daff-illuminate($base, $neutral, 2);
|
@@ -11,7 +11,7 @@ export declare class DaffFormFieldComponent implements DoCheck, AfterContentInit
|
|
11
11
|
* The tracking property used to determine if the parent form has been submitted,
|
12
12
|
* and thus show an error message (even if the field hasn't been touched).
|
13
13
|
*
|
14
|
-
* @deprecated
|
14
|
+
* @deprecated Deprecated in version 0.78.0. Will be removed in version 1.0.0.
|
15
15
|
*/
|
16
16
|
formSubmitted: boolean;
|
17
17
|
/**
|
@@ -1,7 +1,9 @@
|
|
1
1
|
import * as i0 from "@angular/core";
|
2
2
|
import * as i1 from "./breadcrumb/breadcrumb.component";
|
3
3
|
import * as i2 from "./breadcrumb-item/breadcrumb-item.directive";
|
4
|
-
/**
|
4
|
+
/**
|
5
|
+
* @deprecated in favor of {@link DAFF_BREADCRUMB_COMPONENTS}. Deprecated in version 0.78.0. Will be removed in version 1.0.0.
|
6
|
+
*/
|
5
7
|
export declare class DaffBreadcrumbModule {
|
6
8
|
static ɵfac: i0.ɵɵFactoryDeclaration<DaffBreadcrumbModule, never>;
|
7
9
|
static ɵmod: i0.ɵɵNgModuleDeclaration<DaffBreadcrumbModule, never, [typeof i1.DaffBreadcrumbComponent, typeof i2.DaffBreadcrumbItemDirective], [typeof i1.DaffBreadcrumbComponent, typeof i2.DaffBreadcrumbItemDirective]>;
|
@@ -3,9 +3,9 @@
|
|
3
3
|
@use '../../scss/theming';
|
4
4
|
|
5
5
|
@mixin daff-breadcrumb-theme($theme) {
|
6
|
-
$base: core.daff-map-
|
7
|
-
$base-contrast: core.daff-map-
|
8
|
-
$neutral: core.daff-map-
|
6
|
+
$base: core.daff-map-get($theme, 'core', 'base');
|
7
|
+
$base-contrast: core.daff-map-get($theme, 'core', 'base-contrast');
|
8
|
+
$neutral: core.daff-map-get($theme, 'core', 'neutral');
|
9
9
|
|
10
10
|
.daff-breadcrumb__item {
|
11
11
|
color: theming.daff-illuminate($base-contrast, $neutral, 4);
|
package/button/README.md
CHANGED
@@ -34,7 +34,7 @@ Native `<button>` or `<a>` elements are always used in order to provide an easy,
|
|
34
34
|
## Usage
|
35
35
|
|
36
36
|
### Within a standalone component
|
37
|
-
To use button in a standalone component, import it directly into your custom component
|
37
|
+
To use button in a standalone component, import it directly into your custom component. Buttons can be imported individually or all together by using `DAFF_BUTTON_COMPONENTS`:
|
38
38
|
|
39
39
|
```ts
|
40
40
|
@Component({
|
@@ -42,7 +42,7 @@ To use button in a standalone component, import it directly into your custom com
|
|
42
42
|
templateUrl: './custom-component.component.html',
|
43
43
|
standalone: true,
|
44
44
|
imports: [
|
45
|
-
|
45
|
+
DaffButtonComponent,
|
46
46
|
],
|
47
47
|
})
|
48
48
|
export class CustomComponent {}
|
@@ -89,7 +89,7 @@ Supported colors: `primary | secondary | tertiary | black | white | theme | them
|
|
89
89
|
## Status Indicators
|
90
90
|
Buttons with status indicators can be used to distinguish what type of action it performs and its importance compared to other buttons in the same context.
|
91
91
|
|
92
|
-
Supported statuses: `warn |
|
92
|
+
Supported statuses: `warn | critical | success`
|
93
93
|
|
94
94
|
<design-land-example-viewer-container example="statusable-button"></design-land-example-viewer-container>
|
95
95
|
|
@@ -0,0 +1,28 @@
|
|
1
|
+
import { DaffButtonBaseDirective } from '../button-base.directive';
|
2
|
+
import * as i0 from "@angular/core";
|
3
|
+
/**
|
4
|
+
* DaffButtonComponent is a rectangular contained button with background color.
|
5
|
+
*
|
6
|
+
* ## Usage
|
7
|
+
* ```html
|
8
|
+
* <button daff-button>
|
9
|
+
* <div daffPrefix></div>
|
10
|
+
* Button
|
11
|
+
* <div daffSuffix></div>
|
12
|
+
* </button>
|
13
|
+
*
|
14
|
+
* <a href="/" daff-button>
|
15
|
+
* <div daffPrefix></div>
|
16
|
+
* Linked button
|
17
|
+
* <div daffSuffix></div>
|
18
|
+
* </a>
|
19
|
+
* ```
|
20
|
+
*/
|
21
|
+
export declare class DaffButtonComponent extends DaffButtonBaseDirective {
|
22
|
+
/**
|
23
|
+
* @docs-private
|
24
|
+
*/
|
25
|
+
class: boolean;
|
26
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DaffButtonComponent, never>;
|
27
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DaffButtonComponent, "button[daff-button],a[daff-button]", never, {}, {}, never, ["[daffPrefix]", "*", "[daffSuffix]"], true, never>;
|
28
|
+
}
|
@@ -0,0 +1,51 @@
|
|
1
|
+
import { ElementRef, Renderer2 } from '@angular/core';
|
2
|
+
import { DaffPrefixable, DaffSuffixable } from '@daffodil/design';
|
3
|
+
import { DaffButtonSizableDirective } from './button-sizable.directive';
|
4
|
+
import * as i0 from "@angular/core";
|
5
|
+
import * as i1 from "@daffodil/design";
|
6
|
+
import * as i2 from "./button-sizable.directive";
|
7
|
+
/**
|
8
|
+
* An _elementRef and an instance of renderer2 are needed for the button mixins
|
9
|
+
*/
|
10
|
+
declare class DaffButtonBase {
|
11
|
+
_elementRef: ElementRef;
|
12
|
+
_renderer: Renderer2;
|
13
|
+
constructor(_elementRef: ElementRef, _renderer: Renderer2);
|
14
|
+
}
|
15
|
+
declare const _daffButtonBase: (new (...args: any[]) => {
|
16
|
+
[x: string]: any;
|
17
|
+
_prefix: import("@daffodil/design").DaffPrefixDirective;
|
18
|
+
}) & (new (...args: any[]) => {
|
19
|
+
[x: string]: any;
|
20
|
+
_suffix: import("@daffodil/design").DaffSuffixDirective;
|
21
|
+
}) & typeof DaffButtonBase;
|
22
|
+
export declare class DaffButtonBaseDirective extends _daffButtonBase implements DaffPrefixable, DaffSuffixable {
|
23
|
+
private elementRef;
|
24
|
+
private renderer;
|
25
|
+
private size;
|
26
|
+
constructor(elementRef: ElementRef, renderer: Renderer2, size: DaffButtonSizableDirective);
|
27
|
+
/**
|
28
|
+
* @docs-private
|
29
|
+
*/
|
30
|
+
get disabledClass(): any;
|
31
|
+
loading: boolean;
|
32
|
+
/**
|
33
|
+
* Set the `tabindex` to 0.
|
34
|
+
*/
|
35
|
+
tabindex: number;
|
36
|
+
_disabled: boolean;
|
37
|
+
/**
|
38
|
+
* The disabled state of the button.
|
39
|
+
*/
|
40
|
+
get disabled(): any;
|
41
|
+
set disabled(value: any);
|
42
|
+
get disabledAttribute(): boolean;
|
43
|
+
get ariaDisabled(): boolean;
|
44
|
+
/**
|
45
|
+
* Set the `tabindex` to -1 if the button is disabled.
|
46
|
+
*/
|
47
|
+
get disabledTabIndex(): number;
|
48
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DaffButtonBaseDirective, never>;
|
49
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<DaffButtonBaseDirective, "[daffButtonBase]", never, { "loading": { "alias": "loading"; "required": false; }; "tabindex": { "alias": "tabindex"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, {}, never, never, true, [{ directive: typeof i1.DaffArticleEncapsulatedDirective; inputs: {}; outputs: {}; }, { directive: typeof i2.DaffButtonSizableDirective; inputs: { "size": "size"; }; outputs: {}; }, { directive: typeof i1.DaffStatusableDirective; inputs: { "status": "status"; }; outputs: {}; }, { directive: typeof i1.DaffColorableDirective; inputs: { "color": "color"; }; outputs: {}; }]>;
|
50
|
+
}
|
51
|
+
export {};
|
@@ -0,0 +1,28 @@
|
|
1
|
+
import { DaffButtonBaseDirective } from '../button-base.directive';
|
2
|
+
import * as i0 from "@angular/core";
|
3
|
+
/**
|
4
|
+
* DaffFlatButtonComponent is a rectangular contained button no background.
|
5
|
+
*
|
6
|
+
* ## Usage
|
7
|
+
* ```html
|
8
|
+
* <button daff-flat-button>
|
9
|
+
* <div daffPrefix></div>
|
10
|
+
* Flat Button
|
11
|
+
* <div daffSuffix></div>
|
12
|
+
* </button>
|
13
|
+
*
|
14
|
+
* <a href="/" daff-flat-button>
|
15
|
+
* <div daffPrefix></div>
|
16
|
+
* Linked flat button
|
17
|
+
* <div daffSuffix></div>
|
18
|
+
* </a>
|
19
|
+
* ```
|
20
|
+
*/
|
21
|
+
export declare class DaffFlatButtonComponent extends DaffButtonBaseDirective {
|
22
|
+
/**
|
23
|
+
* @docs-private
|
24
|
+
*/
|
25
|
+
class: boolean;
|
26
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DaffFlatButtonComponent, never>;
|
27
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DaffFlatButtonComponent, "button[daff-flat-button],a[daff-flat-button]", never, {}, {}, never, ["[daffPrefix]", "*", "[daffSuffix]"], true, never>;
|
28
|
+
}
|
@@ -0,0 +1,24 @@
|
|
1
|
+
import { DaffButtonBaseDirective } from '../button-base.directive';
|
2
|
+
import * as i0 from "@angular/core";
|
3
|
+
/**
|
4
|
+
* DaffIconButtonComponent is an icon button used with icon fonts.
|
5
|
+
*
|
6
|
+
* ## Usage
|
7
|
+
* ```html
|
8
|
+
* <button daff-icon-button>
|
9
|
+
* <fa-icon [icon]="faPlus"></fa-icon>
|
10
|
+
* </button>
|
11
|
+
*
|
12
|
+
* <a href="/" daff-icon-button>
|
13
|
+
* <fa-icon [icon]="faPlus"></fa-icon>
|
14
|
+
* </a>
|
15
|
+
* ```
|
16
|
+
*/
|
17
|
+
export declare class DaffIconButtonComponent extends DaffButtonBaseDirective {
|
18
|
+
/**
|
19
|
+
* @docs-private
|
20
|
+
*/
|
21
|
+
class: boolean;
|
22
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DaffIconButtonComponent, never>;
|
23
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DaffIconButtonComponent, "button[daff-icon-button],a[daff-icon-button]", never, {}, {}, never, ["[daffPrefix]", "*", "[daffSuffix]"], true, never>;
|
24
|
+
}
|
@@ -0,0 +1,28 @@
|
|
1
|
+
import { DaffButtonBaseDirective } from '../button-base.directive';
|
2
|
+
import * as i0 from "@angular/core";
|
3
|
+
/**
|
4
|
+
* DaffRaisedButtonComponent is a rectangular contained button with background color and elevation.
|
5
|
+
*
|
6
|
+
* ## Usage
|
7
|
+
* ```html
|
8
|
+
* <button daff-raised-button>
|
9
|
+
* <div daffPrefix></div>
|
10
|
+
* Raised Button
|
11
|
+
* <div daffSuffix></div>
|
12
|
+
* </button>
|
13
|
+
*
|
14
|
+
* <a href="/" daff-raised-button>
|
15
|
+
* <div daffPrefix></div>
|
16
|
+
* Linked raised button
|
17
|
+
* <div daffSuffix></div>
|
18
|
+
* </a>
|
19
|
+
* ```
|
20
|
+
*/
|
21
|
+
export declare class DaffRaisedButtonComponent extends DaffButtonBaseDirective {
|
22
|
+
/**
|
23
|
+
* @docs-private
|
24
|
+
*/
|
25
|
+
class: boolean;
|
26
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DaffRaisedButtonComponent, never>;
|
27
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DaffRaisedButtonComponent, "button[daff-raised-button],a[daff-raised-button]", never, {}, {}, never, ["[daffPrefix]", "*", "[daffSuffix]"], true, never>;
|
28
|
+
}
|
@@ -0,0 +1,28 @@
|
|
1
|
+
import { DaffButtonBaseDirective } from '../button-base.directive';
|
2
|
+
import * as i0 from "@angular/core";
|
3
|
+
/**
|
4
|
+
* DaffStrokedButtonComponent is a rectangular outlined button with no background color.
|
5
|
+
*
|
6
|
+
* ## Usage
|
7
|
+
* ```html
|
8
|
+
* <button daff-stroked-button>
|
9
|
+
* <div daffPrefix></div>
|
10
|
+
* Stroked Button
|
11
|
+
* <div daffSuffix></div>
|
12
|
+
* </button>
|
13
|
+
*
|
14
|
+
* <a href="/" daff-stroked-button>
|
15
|
+
* <div daffPrefix></div>
|
16
|
+
* Linked stroked button
|
17
|
+
* <div daffSuffix></div>
|
18
|
+
* </a>
|
19
|
+
* ```
|
20
|
+
*/
|
21
|
+
export declare class DaffStrokedButtonComponent extends DaffButtonBaseDirective {
|
22
|
+
/**
|
23
|
+
* @docs-private
|
24
|
+
*/
|
25
|
+
class: boolean;
|
26
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DaffStrokedButtonComponent, never>;
|
27
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DaffStrokedButtonComponent, "button[daff-stroked-button],a[daff-stroked-button]", never, {}, {}, never, ["[daffPrefix]", "*", "[daffSuffix]"], true, never>;
|
28
|
+
}
|
@@ -0,0 +1,28 @@
|
|
1
|
+
import { DaffButtonBaseDirective } from '../button-base.directive';
|
2
|
+
import * as i0 from "@angular/core";
|
3
|
+
/**
|
4
|
+
* DaffUnderlineButtonComponent is a borderless button with a custom underline style.
|
5
|
+
*
|
6
|
+
* ## Usage
|
7
|
+
* ```html
|
8
|
+
* <button daff-underline-button>
|
9
|
+
* <div daffPrefix></div>
|
10
|
+
* Underline Button
|
11
|
+
* <div daffSuffix></div>
|
12
|
+
* </button>
|
13
|
+
*
|
14
|
+
* <a href="/" daff-underline-button>
|
15
|
+
* <div daffPrefix></div>
|
16
|
+
* Linked underline button
|
17
|
+
* <div daffSuffix></div>
|
18
|
+
* </a>
|
19
|
+
* ```
|
20
|
+
*/
|
21
|
+
export declare class DaffUnderlineButtonComponent extends DaffButtonBaseDirective {
|
22
|
+
/**
|
23
|
+
* @docs-private
|
24
|
+
*/
|
25
|
+
class: boolean;
|
26
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DaffUnderlineButtonComponent, never>;
|
27
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DaffUnderlineButtonComponent, "button[daff-underline-button],a[daff-underline-button]", never, {}, {}, never, ["[daffPrefix]", "*", "[daffSuffix]"], true, never>;
|
28
|
+
}
|
package/button/button.d.ts
CHANGED
@@ -1,3 +1,8 @@
|
|
1
1
|
import { DaffPrefixSuffixModule } from '@daffodil/design';
|
2
|
-
import { DaffButtonComponent } from './button/button.component';
|
3
|
-
|
2
|
+
import { DaffButtonComponent } from './button/basic/button.component';
|
3
|
+
import { DaffFlatButtonComponent } from './button/flat/flat.component';
|
4
|
+
import { DaffIconButtonComponent } from './button/icon/icon.component';
|
5
|
+
import { DaffRaisedButtonComponent } from './button/raised/raised.component';
|
6
|
+
import { DaffStrokedButtonComponent } from './button/stroked/stroked.component';
|
7
|
+
import { DaffUnderlineButtonComponent } from './button/underline/underline.component';
|
8
|
+
export declare const DAFF_BUTTON_COMPONENTS: readonly [typeof DaffButtonComponent, typeof DaffPrefixSuffixModule, typeof DaffFlatButtonComponent, typeof DaffIconButtonComponent, typeof DaffRaisedButtonComponent, typeof DaffStrokedButtonComponent, typeof DaffUnderlineButtonComponent];
|
@@ -1,10 +1,17 @@
|
|
1
1
|
import * as i0 from "@angular/core";
|
2
2
|
import * as i1 from "@angular/common";
|
3
|
-
import * as i2 from "./button/button.component";
|
4
|
-
import * as i3 from "
|
5
|
-
|
3
|
+
import * as i2 from "./button/basic/button.component";
|
4
|
+
import * as i3 from "./button/flat/flat.component";
|
5
|
+
import * as i4 from "./button/icon/icon.component";
|
6
|
+
import * as i5 from "./button/raised/raised.component";
|
7
|
+
import * as i6 from "./button/stroked/stroked.component";
|
8
|
+
import * as i7 from "./button/underline/underline.component";
|
9
|
+
import * as i8 from "@daffodil/design";
|
10
|
+
/**
|
11
|
+
* @deprecated in favor of {@link DAFF_BUTTON_COMPONENTS}. Deprecated in version 0.78.0. Will be removed in version 1.0.0.
|
12
|
+
*/
|
6
13
|
export declare class DaffButtonModule {
|
7
14
|
static ɵfac: i0.ɵɵFactoryDeclaration<DaffButtonModule, never>;
|
8
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<DaffButtonModule, never, [typeof i1.CommonModule, typeof i2.DaffButtonComponent], [typeof i2.DaffButtonComponent, typeof i3.DaffPrefixSuffixModule]>;
|
15
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<DaffButtonModule, never, [typeof i1.CommonModule, typeof i2.DaffButtonComponent, typeof i3.DaffFlatButtonComponent, typeof i4.DaffIconButtonComponent, typeof i5.DaffRaisedButtonComponent, typeof i6.DaffStrokedButtonComponent, typeof i7.DaffUnderlineButtonComponent], [typeof i2.DaffButtonComponent, typeof i3.DaffFlatButtonComponent, typeof i4.DaffIconButtonComponent, typeof i5.DaffRaisedButtonComponent, typeof i6.DaffStrokedButtonComponent, typeof i7.DaffUnderlineButtonComponent, typeof i8.DaffPrefixSuffixModule]>;
|
9
16
|
static ɵinj: i0.ɵɵInjectorDeclaration<DaffButtonModule>;
|
10
17
|
}
|
package/button/public_api.d.ts
CHANGED
@@ -1,4 +1,9 @@
|
|
1
1
|
export { DaffButtonModule } from './button.module';
|
2
2
|
export { DAFF_BUTTON_COMPONENTS } from './button';
|
3
|
-
export { DaffButtonComponent } from './button/button.component';
|
3
|
+
export { DaffButtonComponent } from './button/basic/button.component';
|
4
4
|
export { DaffButtonSizableDirective } from './button/button-sizable.directive';
|
5
|
+
export { DaffFlatButtonComponent } from './button/flat/flat.component';
|
6
|
+
export { DaffRaisedButtonComponent } from './button/raised/raised.component';
|
7
|
+
export { DaffStrokedButtonComponent } from './button/stroked/stroked.component';
|
8
|
+
export { DaffUnderlineButtonComponent } from './button/underline/underline.component';
|
9
|
+
export { DaffIconButtonComponent } from './button/icon/icon.component';
|
@@ -0,0 +1,145 @@
|
|
1
|
+
@use 'sass:map';
|
2
|
+
@use '../../../../scss/theming';
|
3
|
+
@use '../../../../scss/core';
|
4
|
+
|
5
|
+
@mixin daff-button-theme-variant(
|
6
|
+
$base-color,
|
7
|
+
$hover-color,
|
8
|
+
$active-color: $hover-color
|
9
|
+
) {
|
10
|
+
background-color: $base-color;
|
11
|
+
color: theming.daff-text-contrast($base-color);
|
12
|
+
|
13
|
+
&::after {
|
14
|
+
background: $hover-color;
|
15
|
+
}
|
16
|
+
|
17
|
+
&:hover {
|
18
|
+
color: theming.daff-text-contrast($hover-color);
|
19
|
+
}
|
20
|
+
|
21
|
+
&:active {
|
22
|
+
color: theming.daff-text-contrast($active-color);
|
23
|
+
|
24
|
+
&::after {
|
25
|
+
background: $active-color;
|
26
|
+
}
|
27
|
+
}
|
28
|
+
}
|
29
|
+
|
30
|
+
@mixin daff-button-theme($theme) {
|
31
|
+
$primary: core.daff-map-get($theme, primary);
|
32
|
+
$secondary: core.daff-map-get($theme, secondary);
|
33
|
+
$tertiary: core.daff-map-get($theme, tertiary);
|
34
|
+
$info: core.daff-map-get($theme, informational);
|
35
|
+
$warn: core.daff-map-get($theme, warn);
|
36
|
+
$critical: core.daff-map-get($theme, critical);
|
37
|
+
$success: core.daff-map-get($theme, success);
|
38
|
+
$base: core.daff-map-get($theme, 'core', 'base');
|
39
|
+
$base-contrast: core.daff-map-get($theme, 'core', 'base-contrast');
|
40
|
+
$white: core.daff-map-get($theme, 'core', 'white');
|
41
|
+
$black: core.daff-map-get($theme, 'core', 'black');
|
42
|
+
$neutral: core.daff-map-get($theme, 'core', 'neutral');
|
43
|
+
|
44
|
+
.daff-button {
|
45
|
+
@include daff-button-theme-variant(
|
46
|
+
theming.daff-illuminate($base, $neutral, 2),
|
47
|
+
theming.daff-illuminate($base, $neutral, 3),
|
48
|
+
theming.daff-illuminate($base, $neutral, 4)
|
49
|
+
);
|
50
|
+
|
51
|
+
&.daff-primary {
|
52
|
+
@include daff-button-theme-variant(
|
53
|
+
theming.daff-color($primary),
|
54
|
+
theming.daff-color($primary, 70),
|
55
|
+
theming.daff-color($primary, 80)
|
56
|
+
);
|
57
|
+
}
|
58
|
+
|
59
|
+
&.daff-secondary {
|
60
|
+
@include daff-button-theme-variant(
|
61
|
+
theming.daff-color($secondary),
|
62
|
+
theming.daff-color($secondary, 70),
|
63
|
+
theming.daff-color($secondary, 80)
|
64
|
+
);
|
65
|
+
}
|
66
|
+
|
67
|
+
&.daff-tertiary {
|
68
|
+
@include daff-button-theme-variant(
|
69
|
+
theming.daff-color($tertiary),
|
70
|
+
theming.daff-color($tertiary, 70),
|
71
|
+
theming.daff-color($tertiary, 80)
|
72
|
+
);
|
73
|
+
}
|
74
|
+
|
75
|
+
&.daff-black {
|
76
|
+
@include daff-button-theme-variant(
|
77
|
+
$black,
|
78
|
+
theming.daff-color($neutral, 90),
|
79
|
+
theming.daff-color($neutral, 80)
|
80
|
+
);
|
81
|
+
}
|
82
|
+
|
83
|
+
&.daff-white {
|
84
|
+
@include daff-button-theme-variant(
|
85
|
+
$white,
|
86
|
+
theming.daff-color($neutral, 20),
|
87
|
+
theming.daff-color($neutral, 30)
|
88
|
+
);
|
89
|
+
}
|
90
|
+
|
91
|
+
&.daff-theme {
|
92
|
+
@include daff-button-theme-variant(
|
93
|
+
$base,
|
94
|
+
theming.daff-illuminate($base, $neutral, 2),
|
95
|
+
theming.daff-illuminate($base, $neutral, 3)
|
96
|
+
);
|
97
|
+
}
|
98
|
+
|
99
|
+
&.daff-theme-contrast {
|
100
|
+
@include daff-button-theme-variant(
|
101
|
+
$base-contrast,
|
102
|
+
theming.daff-illuminate($base-contrast, $neutral, 2),
|
103
|
+
theming.daff-illuminate($base-contrast, $neutral, 3)
|
104
|
+
);
|
105
|
+
}
|
106
|
+
|
107
|
+
&[disabled],
|
108
|
+
&.disabled {
|
109
|
+
@include daff-button-theme-variant(
|
110
|
+
theming.daff-illuminate($base, $neutral, 3),
|
111
|
+
theming.daff-illuminate($base, $neutral, 3),
|
112
|
+
theming.daff-illuminate($base, $neutral, 3)
|
113
|
+
);
|
114
|
+
color: theming.daff-illuminate($base, $neutral, 5);
|
115
|
+
|
116
|
+
&:hover {
|
117
|
+
color: theming.daff-illuminate($base, $neutral, 5);
|
118
|
+
}
|
119
|
+
}
|
120
|
+
|
121
|
+
&.daff-warn {
|
122
|
+
@include daff-button-theme-variant(
|
123
|
+
theming.daff-color($warn),
|
124
|
+
theming.daff-color($warn, 70),
|
125
|
+
theming.daff-color($warn, 80)
|
126
|
+
);
|
127
|
+
}
|
128
|
+
|
129
|
+
&.daff-success {
|
130
|
+
@include daff-button-theme-variant(
|
131
|
+
theming.daff-color($success),
|
132
|
+
theming.daff-color($success, 70),
|
133
|
+
theming.daff-color($success, 80)
|
134
|
+
);
|
135
|
+
}
|
136
|
+
|
137
|
+
&.daff-critical {
|
138
|
+
@include daff-button-theme-variant(
|
139
|
+
theming.daff-color($critical),
|
140
|
+
theming.daff-color($critical, 70),
|
141
|
+
theming.daff-color($critical, 80)
|
142
|
+
);
|
143
|
+
}
|
144
|
+
}
|
145
|
+
}
|