@daffodil/design 0.78.0 → 0.79.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/atoms/form/form-field/form-field/form-field.component.d.ts +1 -1
- 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 +8 -3
- 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 +143 -0
- package/button/src/button/icon/icon-theme.scss +141 -0
- package/button/src/button/raised/raised-theme.scss +120 -0
- package/button/src/button/stroked/stroked-theme.scss +158 -0
- package/button/src/button/underline/underline-theme.scss +93 -0
- package/card/card.module.d.ts +1 -1
- package/container/container.module.d.ts +1 -1
- 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/atoms/form/form-field/form-field/form-field.component.mjs +2 -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 +34 -4
- 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/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.module.mjs +2 -2
- 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/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/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/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/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 +83 -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 +161 -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.module.mjs +2 -2
- package/esm2022/tree/tree.module.mjs +2 -2
- package/fesm2022/daffodil-design-accordion.mjs +0 -3
- package/fesm2022/daffodil-design-accordion.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 +305 -131
- 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-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 +1 -1
- 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.mjs +1 -1
- 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.mjs +14 -4
- 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-tabs-examples.mjs +93 -0
- package/fesm2022/daffodil-design-tabs-examples.mjs.map +1 -0
- package/fesm2022/daffodil-design-tabs.mjs +431 -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 +11 -10
- 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 +9 -6
- package/fesm2022/daffodil-design.mjs.map +1 -1
- package/hero/hero.module.d.ts +1 -1
- 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.module.d.ts +1 -1
- 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/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/thumbnail/thumbnail-compat.token.d.ts +1 -5
- package/modal/modal.module.d.ts +1 -1
- package/navbar/navbar.module.d.ts +1 -1
- 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 +17 -13
- package/package.json +1 -1
- package/paginator/paginator.module.d.ts +1 -1
- package/progress-bar/progress-bar.module.d.ts +1 -1
- package/scss/theme.scss +13 -1
- package/scss/theming/_configure-theme.scss +60 -2
- package/scss/theming/_theme-css-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/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 +37 -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 +104 -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 +14 -10
- package/toast/toast/toast-provider.d.ts +1 -1
- package/toast/toast.module.d.ts +1 -1
- 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/hero/hero.module.d.ts
CHANGED
@@ -7,7 +7,7 @@ import * as i5 from "./hero-title/hero-title.directive";
|
|
7
7
|
import * as i6 from "./hero-subtitle/hero-subtitle.directive";
|
8
8
|
import * as i7 from "./hero-body/hero-body.directive";
|
9
9
|
/**
|
10
|
-
* @deprecated in favor of {@link DAFF_HERO_COMPONENTS}
|
10
|
+
* @deprecated in favor of {@link DAFF_HERO_COMPONENTS} Deprecated in version 0.78.0. Will be removed in version 0.81.0.
|
11
11
|
* */
|
12
12
|
export declare class DaffHeroModule {
|
13
13
|
static ɵfac: i0.ɵɵFactoryDeclaration<DaffHeroModule, never>;
|
package/image/README.md
CHANGED
@@ -1,5 +1,8 @@
|
|
1
1
|
# Image
|
2
|
-
Image utilizes the native HTML `<img>` element to display responsive images on a page and prevent content jumping while images are loading.
|
2
|
+
Image utilizes the native HTML `<img>` element to display responsive images on a page and prevent content jumping while images are loading.
|
3
|
+
|
4
|
+
## Overview
|
5
|
+
`<daff-image>` is an opinionated version that encourages friendly end-user usage.
|
3
6
|
|
4
7
|
<design-land-example-viewer-container example="load-image"></design-land-example-viewer-container>
|
5
8
|
|
package/image/image.module.d.ts
CHANGED
@@ -2,7 +2,7 @@ import * as i0 from "@angular/core";
|
|
2
2
|
import * as i1 from "@angular/common";
|
3
3
|
import * as i2 from "./image/image.component";
|
4
4
|
/**
|
5
|
-
* @deprecated in favor of {@link DAFF_IMAGE_COMPONENTS}
|
5
|
+
* @deprecated in favor of {@link DAFF_IMAGE_COMPONENTS} Deprecated in version 0.78.0. Will be removed in version 0.81.0.
|
6
6
|
* */
|
7
7
|
export declare class DaffImageModule {
|
8
8
|
static ɵfac: i0.ɵɵFactoryDeclaration<DaffImageModule, never>;
|
package/link-set/README.md
CHANGED
@@ -5,7 +5,7 @@ import * as i3 from "./link-set-heading/link-set-heading.directive";
|
|
5
5
|
import * as i4 from "./link-set-subheading/link-set-subheading.directive";
|
6
6
|
import * as i5 from "./link-set-item/link-set-item.component";
|
7
7
|
/**
|
8
|
-
* @deprecated in favor of {@link DAFF_LINK_SET_COMPONENTS}
|
8
|
+
* @deprecated in favor of {@link DAFF_LINK_SET_COMPONENTS} Deprecated in version 0.78.0. Will be removed in version 0.81.0.
|
9
9
|
*/
|
10
10
|
export declare class DaffLinkSetModule {
|
11
11
|
static ɵfac: i0.ɵɵFactoryDeclaration<DaffLinkSetModule, never>;
|
package/list/list.module.d.ts
CHANGED
@@ -4,7 +4,7 @@ import * as i2 from "./list/list.component";
|
|
4
4
|
import * as i3 from "./list-item/list-item.component";
|
5
5
|
import * as i4 from "@daffodil/design";
|
6
6
|
/**
|
7
|
-
* @deprecated in favor of {@link DAFF_LIST_COMPONENTS}
|
7
|
+
* @deprecated in favor of {@link DAFF_LIST_COMPONENTS} Deprecated in version 0.78.0. Will be removed in version 0.81.0.
|
8
8
|
*/
|
9
9
|
export declare class DaffListModule {
|
10
10
|
static ɵfac: i0.ɵɵFactoryDeclaration<DaffListModule, never>;
|
package/loading-icon/README.md
CHANGED
@@ -45,11 +45,6 @@ export class CustomComponentModule { }
|
|
45
45
|
|
46
46
|
> This method is deprecated. It's recommended to update all custom components to standalone.
|
47
47
|
|
48
|
-
## Diameter
|
49
|
-
The diameter of a loading icon can be defined by using the `diameter` property. By default, the diameter is set to `60`.
|
50
|
-
|
51
|
-
<design-land-example-viewer-container example="loading-icon-diameter"></design-land-example-viewer-container>
|
52
|
-
|
53
48
|
## Theming
|
54
49
|
The loading icon color is defined by using the `color` property. By default, the color is set to `primary`. This can be changed to one of the supported colors.
|
55
50
|
|
@@ -1,2 +1,2 @@
|
|
1
|
-
import {
|
2
|
-
export declare const LOADING_ICON_EXAMPLES: (typeof
|
1
|
+
import { LoadingIconColorComponent } from './loading-icon-color/loading-icon-color.component';
|
2
|
+
export declare const LOADING_ICON_EXAMPLES: (typeof LoadingIconColorComponent)[];
|
@@ -4,18 +4,10 @@ import * as i1 from "@daffodil/design";
|
|
4
4
|
* @inheritdoc
|
5
5
|
*/
|
6
6
|
export declare class DaffLoadingIconComponent {
|
7
|
-
/**
|
8
|
-
* The (pixel) diameter of the animation
|
9
|
-
*/
|
10
|
-
diameter: number;
|
11
7
|
/**
|
12
8
|
* @docs-private
|
13
9
|
*/
|
14
10
|
class: boolean;
|
15
|
-
/**
|
16
|
-
* @docs-private
|
17
|
-
*/
|
18
|
-
get maxWidth(): string;
|
19
11
|
static ɵfac: i0.ɵɵFactoryDeclaration<DaffLoadingIconComponent, never>;
|
20
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DaffLoadingIconComponent, "daff-loading-icon", never, {
|
12
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DaffLoadingIconComponent, "daff-loading-icon", never, {}, {}, never, never, true, [{ directive: typeof i1.DaffColorableDirective; inputs: { "color": "color"; }; outputs: {}; }]>;
|
21
13
|
}
|
@@ -2,7 +2,7 @@ import * as i0 from "@angular/core";
|
|
2
2
|
import * as i1 from "@angular/common";
|
3
3
|
import * as i2 from "./loading-icon/loading-icon.component";
|
4
4
|
/**
|
5
|
-
* @deprecated in favor of {@link DAFF_LOADING_ICON_COMPONENTS}
|
5
|
+
* @deprecated in favor of {@link DAFF_LOADING_ICON_COMPONENTS} Deprecated in version 0.78.0. Will be removed in version 0.81.0.
|
6
6
|
*/
|
7
7
|
export declare class DaffLoadingIconModule {
|
8
8
|
static ɵfac: i0.ɵɵFactoryDeclaration<DaffLoadingIconModule, never>;
|
package/media-gallery/README.md
CHANGED
@@ -1,5 +1,8 @@
|
|
1
1
|
# Media Gallery
|
2
|
-
|
2
|
+
Media gallery is used to display a group of thumbnails in a gallery format.
|
3
|
+
|
4
|
+
## Overview
|
5
|
+
Media galleries are useful to showcase multiple images related to a single product or topic.
|
3
6
|
|
4
7
|
## Usage
|
5
8
|
|
@@ -1,3 +1,2 @@
|
|
1
|
-
import { InjectionToken } from '@angular/core';
|
2
1
|
import { DaffMediaGalleryRegistration } from './media-gallery-registration.interface';
|
3
|
-
export declare const DAFF_MEDIA_GALLERY_TOKEN: InjectionToken<DaffMediaGalleryRegistration
|
2
|
+
export declare const DAFF_MEDIA_GALLERY_TOKEN: import("@angular/core").InjectionToken<DaffMediaGalleryRegistration>, provideDaffMediaGalleryToken: <R extends DaffMediaGalleryRegistration = DaffMediaGalleryRegistration>(value: R) => import("@angular/core").ValueProvider;
|
@@ -4,7 +4,7 @@ import * as i2 from "./media-gallery/media-gallery.component";
|
|
4
4
|
import * as i3 from "./thumbnail/thumbnail.directive";
|
5
5
|
import * as i4 from "./media-renderer/media-renderer.component";
|
6
6
|
/**
|
7
|
-
* @deprecated in favor of {@link DAFF_MEDIA_GALLERY_COMPONENTS}
|
7
|
+
* @deprecated in favor of {@link DAFF_MEDIA_GALLERY_COMPONENTS} Deprecated in version 0.78.0. Will be removed in version 0.81.0.
|
8
8
|
*/
|
9
9
|
export declare class DaffMediaGalleryModule {
|
10
10
|
static ɵfac: i0.ɵɵFactoryDeclaration<DaffMediaGalleryModule, never>;
|
@@ -1,5 +1 @@
|
|
1
|
-
|
2
|
-
/**
|
3
|
-
* A multi provider injection token that marks a component as renderable for the `DaffMediaRendererComponent`.
|
4
|
-
*/
|
5
|
-
export declare const daffThumbnailCompatToken: InjectionToken<unknown>;
|
1
|
+
export declare const daffThumbnailCompatToken: import("@angular/core").InjectionToken<unknown>, provideDaffThumbnailCompatToken: <R extends unknown = unknown>(value: R) => import("@angular/core").ValueProvider;
|
package/modal/modal.module.d.ts
CHANGED
@@ -11,7 +11,7 @@ import * as i9 from "./modal-content/modal-content.component";
|
|
11
11
|
import * as i10 from "./modal-actions/modal-actions.component";
|
12
12
|
import * as i11 from "./modal-close/modal-close.directive";
|
13
13
|
/**
|
14
|
-
* @deprecated in favor of {@link DAFF_MODAL_COMPONENTS}
|
14
|
+
* @deprecated in favor of {@link DAFF_MODAL_COMPONENTS} Deprecated in version 0.78.0. Will be removed in version 0.81.0.
|
15
15
|
*/
|
16
16
|
export declare class DaffModalModule {
|
17
17
|
static ɵfac: i0.ɵɵFactoryDeclaration<DaffModalModule, never>;
|
@@ -2,7 +2,7 @@ import * as i0 from "@angular/core";
|
|
2
2
|
import * as i1 from "@angular/common";
|
3
3
|
import * as i2 from "./navbar/navbar.component";
|
4
4
|
/**
|
5
|
-
* @deprecated in favor of {@link DAFF_NAVBAR_COMPONENTS}
|
5
|
+
* @deprecated in favor of {@link DAFF_NAVBAR_COMPONENTS} Deprecated in version 0.78.0. Will be removed in version 0.81.0.
|
6
6
|
*/
|
7
7
|
export declare class DaffNavbarModule {
|
8
8
|
static ɵfac: i0.ɵɵFactoryDeclaration<DaffNavbarModule, never>;
|
package/notification/README.md
CHANGED
@@ -69,7 +69,7 @@ Buttons can be included in notifications to resolve the notification or navigate
|
|
69
69
|
### Statuses
|
70
70
|
The status color of a notification can be updated by using the `status` property.
|
71
71
|
|
72
|
-
Supported statuses: `warn |
|
72
|
+
Supported statuses: `warn | critical | success`
|
73
73
|
|
74
74
|
#### Notification with statuses
|
75
75
|
<design-land-example-viewer-container example="notification-status"></design-land-example-viewer-container>
|
@@ -87,4 +87,4 @@ The close button is hidden by default but can be visible by setting the `dismiss
|
|
87
87
|
<design-land-example-viewer-container example="dismissible-notification"></design-land-example-viewer-container>
|
88
88
|
|
89
89
|
## Accessibility
|
90
|
-
Notifications with a `
|
90
|
+
Notifications with a `critical` or `warn` status have a `role="alert"` so that it can be announced by assistive technologies. See (live region roles)[https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Roles#4._live_region_roles] for more information. All other notifications have a `role="status"`. Notifications have a `tabindex="0"` so users can discover them while tabbing through a page.
|
@@ -16,7 +16,7 @@ export declare class DaffNotificationComponent implements DaffPrefixable {
|
|
16
16
|
class: boolean;
|
17
17
|
tabindex: string;
|
18
18
|
/**
|
19
|
-
* Sets role to alert when `status="warn"` or `status="
|
19
|
+
* Sets role to alert when `status="warn"` or `status="critical"`.
|
20
20
|
* Sets role to status on all other instances.
|
21
21
|
*/
|
22
22
|
get role(): "status" | "alert";
|
@@ -8,7 +8,7 @@ import * as i6 from "./notification-message/notification-message.directive";
|
|
8
8
|
import * as i7 from "./notification-title/notification-title.directive";
|
9
9
|
import * as i8 from "./notification-subtitle/notification-subtitle.directive";
|
10
10
|
/**
|
11
|
-
* @deprecated in favor of {@link DAFF_NOTIFICATION_COMPONENTS}
|
11
|
+
* @deprecated in favor of {@link DAFF_NOTIFICATION_COMPONENTS} Deprecated in version 0.78.0. Will be removed in version 0.81.0.
|
12
12
|
*/
|
13
13
|
export declare class DaffNotificationModule {
|
14
14
|
static ɵfac: i0.ɵɵFactoryDeclaration<DaffNotificationModule, never>;
|
@@ -6,6 +6,10 @@
|
|
6
6
|
$primary: map.get($theme, primary);
|
7
7
|
$secondary: map.get($theme, secondary);
|
8
8
|
$tertiary: map.get($theme, tertiary);
|
9
|
+
$info: map.get($theme, info);
|
10
|
+
$warn: map.get($theme, warn);
|
11
|
+
$critical: map.get($theme, critical);
|
12
|
+
$success: map.get($theme, success);
|
9
13
|
$neutral: core.daff-map-deep-get($theme, 'core.neutral');
|
10
14
|
$base: core.daff-map-deep-get($theme, 'core.base');
|
11
15
|
$base-contrast: core.daff-map-deep-get($theme, 'core.base-contrast');
|
@@ -18,32 +22,32 @@
|
|
18
22
|
color: theming.daff-text-contrast(theming.daff-illuminate($base, $neutral, 1));
|
19
23
|
|
20
24
|
&.daff-success {
|
21
|
-
background: theming.daff-color(
|
22
|
-
border: 1px solid theming.daff-color(
|
23
|
-
color: theming.daff-text-contrast(theming.daff-color(
|
25
|
+
background: theming.daff-color($success, 10);
|
26
|
+
border: 1px solid theming.daff-color($success, 20);
|
27
|
+
color: theming.daff-text-contrast(theming.daff-color($success, 10));
|
24
28
|
|
25
29
|
.daff-prefix {
|
26
|
-
color: theming.daff-color(
|
30
|
+
color: theming.daff-color($success);
|
27
31
|
}
|
28
32
|
}
|
29
33
|
|
30
34
|
&.daff-warn {
|
31
|
-
background: theming.daff-color(
|
32
|
-
border: 1px solid theming.daff-color(
|
33
|
-
color: theming.daff-text-contrast(theming.daff-color(
|
35
|
+
background: theming.daff-color($warn, 10);
|
36
|
+
border: 1px solid theming.daff-color($warn, 20);
|
37
|
+
color: theming.daff-text-contrast(theming.daff-color($warn, 10));
|
34
38
|
|
35
39
|
.daff-prefix {
|
36
|
-
color: theming.daff-color(
|
40
|
+
color: theming.daff-color($warn);
|
37
41
|
}
|
38
42
|
}
|
39
43
|
|
40
|
-
&.daff-
|
41
|
-
background: theming.daff-color(
|
42
|
-
border: 1px solid theming.daff-color(
|
43
|
-
color: theming.daff-text-contrast(theming.daff-color(
|
44
|
+
&.daff-critical {
|
45
|
+
background: theming.daff-color($critical, 10);
|
46
|
+
border: 1px solid theming.daff-color($critical, 20);
|
47
|
+
color: theming.daff-text-contrast(theming.daff-color($critical, 10));
|
44
48
|
|
45
49
|
.daff-prefix {
|
46
|
-
color: theming.daff-color(
|
50
|
+
color: theming.daff-color($critical);
|
47
51
|
}
|
48
52
|
}
|
49
53
|
}
|
package/package.json
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"name":"@daffodil/design","nx":{"targets":{"build":{"outputs":["{workspaceRoot}/dist/design"]}}},"version":"0.78.0","author":"Graycore LLC","license":"MIT","bugs":{"url":"https://github.com/graycoreio/daffodil/issues"},"homepage":"https://github.com/graycoreio/daffodil","description":"A consistent, sane api driver that works with different ecommerce systems.","repository":{"type":"git","url":"https://github.com/graycoreio/daffodil"},"peerDependencies":{"@angular/animations":"^18.2.2","@angular/common":"^18.2.2","@angular/core":"^18.2.2","@angular/forms":"^18.2.2","@angular/cdk":"^18.2.2","@daffodil/core":"0.78.0","@fortawesome/angular-fontawesome":"^0.15.0","@fortawesome/fontawesome-svg-core":"^6.4.2","@fortawesome/free-solid-svg-icons":"^6.4.2","@fortawesome/free-brands-svg-icons":"^6.4.2","@fortawesome/free-regular-svg-icons":"^6.4.2","modern-normalize":"^0.5.0","rxjs":"7.8.1"},"optionalDependencies":{"@faker-js/faker":"^7.6.0"},"exports":{"./scss/global":{"sass":"./scss/global.scss"},"./scss/theme":{"sass":"./scss/theme.scss"},"./scss/utilities":{"sass":"./scss/utilities.scss"},"./scss/typography":{"sass":"./scss/typography/_index.scss"},"./package.json":{"default":"./package.json"},".":{"types":"./index.d.ts","esm2022":"./esm2022/daffodil-design.mjs","esm":"./esm2022/daffodil-design.mjs","default":"./fesm2022/daffodil-design.mjs"},"./accordion":{"types":"./accordion/index.d.ts","esm2022":"./esm2022/accordion/daffodil-design-accordion.mjs","esm":"./esm2022/accordion/daffodil-design-accordion.mjs","default":"./fesm2022/daffodil-design-accordion.mjs"},"./article":{"types":"./article/index.d.ts","esm2022":"./esm2022/article/daffodil-design-article.mjs","esm":"./esm2022/article/daffodil-design-article.mjs","default":"./fesm2022/daffodil-design-article.mjs"},"./breadcrumb":{"types":"./breadcrumb/index.d.ts","esm2022":"./esm2022/breadcrumb/daffodil-design-breadcrumb.mjs","esm":"./esm2022/breadcrumb/daffodil-design-breadcrumb.mjs","default":"./fesm2022/daffodil-design-breadcrumb.mjs"},"./button":{"types":"./button/index.d.ts","esm2022":"./esm2022/button/daffodil-design-button.mjs","esm":"./esm2022/button/daffodil-design-button.mjs","default":"./fesm2022/daffodil-design-button.mjs"},"./callout":{"types":"./callout/index.d.ts","esm2022":"./esm2022/callout/daffodil-design-callout.mjs","esm":"./esm2022/callout/daffodil-design-callout.mjs","default":"./fesm2022/daffodil-design-callout.mjs"},"./card":{"types":"./card/index.d.ts","esm2022":"./esm2022/card/daffodil-design-card.mjs","esm":"./esm2022/card/daffodil-design-card.mjs","default":"./fesm2022/daffodil-design-card.mjs"},"./container":{"types":"./container/index.d.ts","esm2022":"./esm2022/container/daffodil-design-container.mjs","esm":"./esm2022/container/daffodil-design-container.mjs","default":"./fesm2022/daffodil-design-container.mjs"},"./hero":{"types":"./hero/index.d.ts","esm2022":"./esm2022/hero/daffodil-design-hero.mjs","esm":"./esm2022/hero/daffodil-design-hero.mjs","default":"./fesm2022/daffodil-design-hero.mjs"},"./image":{"types":"./image/index.d.ts","esm2022":"./esm2022/image/daffodil-design-image.mjs","esm":"./esm2022/image/daffodil-design-image.mjs","default":"./fesm2022/daffodil-design-image.mjs"},"./link-set":{"types":"./link-set/index.d.ts","esm2022":"./esm2022/link-set/daffodil-design-link-set.mjs","esm":"./esm2022/link-set/daffodil-design-link-set.mjs","default":"./fesm2022/daffodil-design-link-set.mjs"},"./list":{"types":"./list/index.d.ts","esm2022":"./esm2022/list/daffodil-design-list.mjs","esm":"./esm2022/list/daffodil-design-list.mjs","default":"./fesm2022/daffodil-design-list.mjs"},"./loading-icon":{"types":"./loading-icon/index.d.ts","esm2022":"./esm2022/loading-icon/daffodil-design-loading-icon.mjs","esm":"./esm2022/loading-icon/daffodil-design-loading-icon.mjs","default":"./fesm2022/daffodil-design-loading-icon.mjs"},"./media-gallery":{"types":"./media-gallery/index.d.ts","esm2022":"./esm2022/media-gallery/daffodil-design-media-gallery.mjs","esm":"./esm2022/media-gallery/daffodil-design-media-gallery.mjs","default":"./fesm2022/daffodil-design-media-gallery.mjs"},"./menu":{"types":"./menu/index.d.ts","esm2022":"./esm2022/menu/daffodil-design-menu.mjs","esm":"./esm2022/menu/daffodil-design-menu.mjs","default":"./fesm2022/daffodil-design-menu.mjs"},"./modal":{"types":"./modal/index.d.ts","esm2022":"./esm2022/modal/daffodil-design-modal.mjs","esm":"./esm2022/modal/daffodil-design-modal.mjs","default":"./fesm2022/daffodil-design-modal.mjs"},"./navbar":{"types":"./navbar/index.d.ts","esm2022":"./esm2022/navbar/daffodil-design-navbar.mjs","esm":"./esm2022/navbar/daffodil-design-navbar.mjs","default":"./fesm2022/daffodil-design-navbar.mjs"},"./notification":{"types":"./notification/index.d.ts","esm2022":"./esm2022/notification/daffodil-design-notification.mjs","esm":"./esm2022/notification/daffodil-design-notification.mjs","default":"./fesm2022/daffodil-design-notification.mjs"},"./paginator":{"types":"./paginator/index.d.ts","esm2022":"./esm2022/paginator/daffodil-design-paginator.mjs","esm":"./esm2022/paginator/daffodil-design-paginator.mjs","default":"./fesm2022/daffodil-design-paginator.mjs"},"./progress-bar":{"types":"./progress-bar/index.d.ts","esm2022":"./esm2022/progress-bar/daffodil-design-progress-bar.mjs","esm":"./esm2022/progress-bar/daffodil-design-progress-bar.mjs","default":"./fesm2022/daffodil-design-progress-bar.mjs"},"./sidebar":{"types":"./sidebar/index.d.ts","esm2022":"./esm2022/sidebar/daffodil-design-sidebar.mjs","esm":"./esm2022/sidebar/daffodil-design-sidebar.mjs","default":"./fesm2022/daffodil-design-sidebar.mjs"},"./toast":{"types":"./toast/index.d.ts","esm2022":"./esm2022/toast/daffodil-design-toast.mjs","esm":"./esm2022/toast/daffodil-design-toast.mjs","default":"./fesm2022/daffodil-design-toast.mjs"},"./tree":{"types":"./tree/index.d.ts","esm2022":"./esm2022/tree/daffodil-design-tree.mjs","esm":"./esm2022/tree/daffodil-design-tree.mjs","default":"./fesm2022/daffodil-design-tree.mjs"},"./accordion/examples":{"types":"./accordion/examples/index.d.ts","esm2022":"./esm2022/accordion/examples/daffodil-design-accordion-examples.mjs","esm":"./esm2022/accordion/examples/daffodil-design-accordion-examples.mjs","default":"./fesm2022/daffodil-design-accordion-examples.mjs"},"./article/examples":{"types":"./article/examples/index.d.ts","esm2022":"./esm2022/article/examples/daffodil-design-article-examples.mjs","esm":"./esm2022/article/examples/daffodil-design-article-examples.mjs","default":"./fesm2022/daffodil-design-article-examples.mjs"},"./breadcrumb/examples":{"types":"./breadcrumb/examples/index.d.ts","esm2022":"./esm2022/breadcrumb/examples/daffodil-design-breadcrumb-examples.mjs","esm":"./esm2022/breadcrumb/examples/daffodil-design-breadcrumb-examples.mjs","default":"./fesm2022/daffodil-design-breadcrumb-examples.mjs"},"./button/examples":{"types":"./button/examples/index.d.ts","esm2022":"./esm2022/button/examples/daffodil-design-button-examples.mjs","esm":"./esm2022/button/examples/daffodil-design-button-examples.mjs","default":"./fesm2022/daffodil-design-button-examples.mjs"},"./callout/examples":{"types":"./callout/examples/index.d.ts","esm2022":"./esm2022/callout/examples/daffodil-design-callout-examples.mjs","esm":"./esm2022/callout/examples/daffodil-design-callout-examples.mjs","default":"./fesm2022/daffodil-design-callout-examples.mjs"},"./card/examples":{"types":"./card/examples/index.d.ts","esm2022":"./esm2022/card/examples/daffodil-design-card-examples.mjs","esm":"./esm2022/card/examples/daffodil-design-card-examples.mjs","default":"./fesm2022/daffodil-design-card-examples.mjs"},"./checkbox/examples":{"types":"./checkbox/examples/index.d.ts","esm2022":"./esm2022/checkbox/examples/daffodil-design-checkbox-examples.mjs","esm":"./esm2022/checkbox/examples/daffodil-design-checkbox-examples.mjs","default":"./fesm2022/daffodil-design-checkbox-examples.mjs"},"./container/examples":{"types":"./container/examples/index.d.ts","esm2022":"./esm2022/container/examples/daffodil-design-container-examples.mjs","esm":"./esm2022/container/examples/daffodil-design-container-examples.mjs","default":"./fesm2022/daffodil-design-container-examples.mjs"},"./hero/examples":{"types":"./hero/examples/index.d.ts","esm2022":"./esm2022/hero/examples/daffodil-design-hero-examples.mjs","esm":"./esm2022/hero/examples/daffodil-design-hero-examples.mjs","default":"./fesm2022/daffodil-design-hero-examples.mjs"},"./image/examples":{"types":"./image/examples/index.d.ts","esm2022":"./esm2022/image/examples/daffodil-design-image-examples.mjs","esm":"./esm2022/image/examples/daffodil-design-image-examples.mjs","default":"./fesm2022/daffodil-design-image-examples.mjs"},"./input/examples":{"types":"./input/examples/index.d.ts","esm2022":"./esm2022/input/examples/daffodil-design-input-examples.mjs","esm":"./esm2022/input/examples/daffodil-design-input-examples.mjs","default":"./fesm2022/daffodil-design-input-examples.mjs"},"./list/examples":{"types":"./list/examples/index.d.ts","esm2022":"./esm2022/list/examples/daffodil-design-list-examples.mjs","esm":"./esm2022/list/examples/daffodil-design-list-examples.mjs","default":"./fesm2022/daffodil-design-list-examples.mjs"},"./loading-icon/examples":{"types":"./loading-icon/examples/index.d.ts","esm2022":"./esm2022/loading-icon/examples/daffodil-design-loading-icon-examples.mjs","esm":"./esm2022/loading-icon/examples/daffodil-design-loading-icon-examples.mjs","default":"./fesm2022/daffodil-design-loading-icon-examples.mjs"},"./media-gallery/examples":{"types":"./media-gallery/examples/index.d.ts","esm2022":"./esm2022/media-gallery/examples/daffodil-design-media-gallery-examples.mjs","esm":"./esm2022/media-gallery/examples/daffodil-design-media-gallery-examples.mjs","default":"./fesm2022/daffodil-design-media-gallery-examples.mjs"},"./menu/examples":{"types":"./menu/examples/index.d.ts","esm2022":"./esm2022/menu/examples/daffodil-design-menu-examples.mjs","esm":"./esm2022/menu/examples/daffodil-design-menu-examples.mjs","default":"./fesm2022/daffodil-design-menu-examples.mjs"},"./modal/examples":{"types":"./modal/examples/index.d.ts","esm2022":"./esm2022/modal/examples/daffodil-design-modal-examples.mjs","esm":"./esm2022/modal/examples/daffodil-design-modal-examples.mjs","default":"./fesm2022/daffodil-design-modal-examples.mjs"},"./navbar/examples":{"types":"./navbar/examples/index.d.ts","esm2022":"./esm2022/navbar/examples/daffodil-design-navbar-examples.mjs","esm":"./esm2022/navbar/examples/daffodil-design-navbar-examples.mjs","default":"./fesm2022/daffodil-design-navbar-examples.mjs"},"./notification/examples":{"types":"./notification/examples/index.d.ts","esm2022":"./esm2022/notification/examples/daffodil-design-notification-examples.mjs","esm":"./esm2022/notification/examples/daffodil-design-notification-examples.mjs","default":"./fesm2022/daffodil-design-notification-examples.mjs"},"./paginator/examples":{"types":"./paginator/examples/index.d.ts","esm2022":"./esm2022/paginator/examples/daffodil-design-paginator-examples.mjs","esm":"./esm2022/paginator/examples/daffodil-design-paginator-examples.mjs","default":"./fesm2022/daffodil-design-paginator-examples.mjs"},"./progress-bar/examples":{"types":"./progress-bar/examples/index.d.ts","esm2022":"./esm2022/progress-bar/examples/daffodil-design-progress-bar-examples.mjs","esm":"./esm2022/progress-bar/examples/daffodil-design-progress-bar-examples.mjs","default":"./fesm2022/daffodil-design-progress-bar-examples.mjs"},"./quantity-field/examples":{"types":"./quantity-field/examples/index.d.ts","esm2022":"./esm2022/quantity-field/examples/daffodil-design-quantity-field-examples.mjs","esm":"./esm2022/quantity-field/examples/daffodil-design-quantity-field-examples.mjs","default":"./fesm2022/daffodil-design-quantity-field-examples.mjs"},"./radio/examples":{"types":"./radio/examples/index.d.ts","esm2022":"./esm2022/radio/examples/daffodil-design-radio-examples.mjs","esm":"./esm2022/radio/examples/daffodil-design-radio-examples.mjs","default":"./fesm2022/daffodil-design-radio-examples.mjs"},"./sidebar/examples":{"types":"./sidebar/examples/index.d.ts","esm2022":"./esm2022/sidebar/examples/daffodil-design-sidebar-examples.mjs","esm":"./esm2022/sidebar/examples/daffodil-design-sidebar-examples.mjs","default":"./fesm2022/daffodil-design-sidebar-examples.mjs"},"./toast/examples":{"types":"./toast/examples/index.d.ts","esm2022":"./esm2022/toast/examples/daffodil-design-toast-examples.mjs","esm":"./esm2022/toast/examples/daffodil-design-toast-examples.mjs","default":"./fesm2022/daffodil-design-toast-examples.mjs"},"./tree/examples":{"types":"./tree/examples/index.d.ts","esm2022":"./esm2022/tree/examples/daffodil-design-tree-examples.mjs","esm":"./esm2022/tree/examples/daffodil-design-tree-examples.mjs","default":"./fesm2022/daffodil-design-tree-examples.mjs"}},"module":"fesm2022/daffodil-design.mjs","typings":"index.d.ts","sideEffects":false,"dependencies":{"tslib":"^2.3.0"}}
|
1
|
+
{"name":"@daffodil/design","nx":{"targets":{"build":{"outputs":["{workspaceRoot}/dist/design"]}}},"version":"0.79.0","author":"Graycore LLC","license":"MIT","bugs":{"url":"https://github.com/graycoreio/daffodil/issues"},"homepage":"https://github.com/graycoreio/daffodil","description":"A consistent, sane api driver that works with different ecommerce systems.","repository":{"type":"git","url":"https://github.com/graycoreio/daffodil"},"peerDependencies":{"@angular/animations":"^18.2.2","@angular/common":"^18.2.2","@angular/core":"^18.2.2","@angular/forms":"^18.2.2","@angular/cdk":"^18.2.2","@daffodil/core":"0.79.0","@fortawesome/angular-fontawesome":"^0.15.0","@fortawesome/fontawesome-svg-core":"^6.4.2","@fortawesome/free-solid-svg-icons":"^6.4.2","@fortawesome/free-brands-svg-icons":"^6.4.2","@fortawesome/free-regular-svg-icons":"^6.4.2","modern-normalize":"^0.5.0","rxjs":"7.8.1"},"optionalDependencies":{"@faker-js/faker":"^7.6.0"},"exports":{"./scss/global":{"sass":"./scss/global.scss"},"./scss/theme":{"sass":"./scss/theme.scss"},"./scss/utilities":{"sass":"./scss/utilities.scss"},"./scss/typography":{"sass":"./scss/typography/_index.scss"},"./package.json":{"default":"./package.json"},".":{"types":"./index.d.ts","esm2022":"./esm2022/daffodil-design.mjs","esm":"./esm2022/daffodil-design.mjs","default":"./fesm2022/daffodil-design.mjs"},"./accordion":{"types":"./accordion/index.d.ts","esm2022":"./esm2022/accordion/daffodil-design-accordion.mjs","esm":"./esm2022/accordion/daffodil-design-accordion.mjs","default":"./fesm2022/daffodil-design-accordion.mjs"},"./article":{"types":"./article/index.d.ts","esm2022":"./esm2022/article/daffodil-design-article.mjs","esm":"./esm2022/article/daffodil-design-article.mjs","default":"./fesm2022/daffodil-design-article.mjs"},"./breadcrumb":{"types":"./breadcrumb/index.d.ts","esm2022":"./esm2022/breadcrumb/daffodil-design-breadcrumb.mjs","esm":"./esm2022/breadcrumb/daffodil-design-breadcrumb.mjs","default":"./fesm2022/daffodil-design-breadcrumb.mjs"},"./button":{"types":"./button/index.d.ts","esm2022":"./esm2022/button/daffodil-design-button.mjs","esm":"./esm2022/button/daffodil-design-button.mjs","default":"./fesm2022/daffodil-design-button.mjs"},"./card":{"types":"./card/index.d.ts","esm2022":"./esm2022/card/daffodil-design-card.mjs","esm":"./esm2022/card/daffodil-design-card.mjs","default":"./fesm2022/daffodil-design-card.mjs"},"./callout":{"types":"./callout/index.d.ts","esm2022":"./esm2022/callout/daffodil-design-callout.mjs","esm":"./esm2022/callout/daffodil-design-callout.mjs","default":"./fesm2022/daffodil-design-callout.mjs"},"./container":{"types":"./container/index.d.ts","esm2022":"./esm2022/container/daffodil-design-container.mjs","esm":"./esm2022/container/daffodil-design-container.mjs","default":"./fesm2022/daffodil-design-container.mjs"},"./hero":{"types":"./hero/index.d.ts","esm2022":"./esm2022/hero/daffodil-design-hero.mjs","esm":"./esm2022/hero/daffodil-design-hero.mjs","default":"./fesm2022/daffodil-design-hero.mjs"},"./image":{"types":"./image/index.d.ts","esm2022":"./esm2022/image/daffodil-design-image.mjs","esm":"./esm2022/image/daffodil-design-image.mjs","default":"./fesm2022/daffodil-design-image.mjs"},"./link-set":{"types":"./link-set/index.d.ts","esm2022":"./esm2022/link-set/daffodil-design-link-set.mjs","esm":"./esm2022/link-set/daffodil-design-link-set.mjs","default":"./fesm2022/daffodil-design-link-set.mjs"},"./list":{"types":"./list/index.d.ts","esm2022":"./esm2022/list/daffodil-design-list.mjs","esm":"./esm2022/list/daffodil-design-list.mjs","default":"./fesm2022/daffodil-design-list.mjs"},"./loading-icon":{"types":"./loading-icon/index.d.ts","esm2022":"./esm2022/loading-icon/daffodil-design-loading-icon.mjs","esm":"./esm2022/loading-icon/daffodil-design-loading-icon.mjs","default":"./fesm2022/daffodil-design-loading-icon.mjs"},"./media-gallery":{"types":"./media-gallery/index.d.ts","esm2022":"./esm2022/media-gallery/daffodil-design-media-gallery.mjs","esm":"./esm2022/media-gallery/daffodil-design-media-gallery.mjs","default":"./fesm2022/daffodil-design-media-gallery.mjs"},"./menu":{"types":"./menu/index.d.ts","esm2022":"./esm2022/menu/daffodil-design-menu.mjs","esm":"./esm2022/menu/daffodil-design-menu.mjs","default":"./fesm2022/daffodil-design-menu.mjs"},"./modal":{"types":"./modal/index.d.ts","esm2022":"./esm2022/modal/daffodil-design-modal.mjs","esm":"./esm2022/modal/daffodil-design-modal.mjs","default":"./fesm2022/daffodil-design-modal.mjs"},"./navbar":{"types":"./navbar/index.d.ts","esm2022":"./esm2022/navbar/daffodil-design-navbar.mjs","esm":"./esm2022/navbar/daffodil-design-navbar.mjs","default":"./fesm2022/daffodil-design-navbar.mjs"},"./notification":{"types":"./notification/index.d.ts","esm2022":"./esm2022/notification/daffodil-design-notification.mjs","esm":"./esm2022/notification/daffodil-design-notification.mjs","default":"./fesm2022/daffodil-design-notification.mjs"},"./paginator":{"types":"./paginator/index.d.ts","esm2022":"./esm2022/paginator/daffodil-design-paginator.mjs","esm":"./esm2022/paginator/daffodil-design-paginator.mjs","default":"./fesm2022/daffodil-design-paginator.mjs"},"./progress-bar":{"types":"./progress-bar/index.d.ts","esm2022":"./esm2022/progress-bar/daffodil-design-progress-bar.mjs","esm":"./esm2022/progress-bar/daffodil-design-progress-bar.mjs","default":"./fesm2022/daffodil-design-progress-bar.mjs"},"./sidebar":{"types":"./sidebar/index.d.ts","esm2022":"./esm2022/sidebar/daffodil-design-sidebar.mjs","esm":"./esm2022/sidebar/daffodil-design-sidebar.mjs","default":"./fesm2022/daffodil-design-sidebar.mjs"},"./tabs":{"types":"./tabs/index.d.ts","esm2022":"./esm2022/tabs/daffodil-design-tabs.mjs","esm":"./esm2022/tabs/daffodil-design-tabs.mjs","default":"./fesm2022/daffodil-design-tabs.mjs"},"./text-snippet":{"types":"./text-snippet/index.d.ts","esm2022":"./esm2022/text-snippet/daffodil-design-text-snippet.mjs","esm":"./esm2022/text-snippet/daffodil-design-text-snippet.mjs","default":"./fesm2022/daffodil-design-text-snippet.mjs"},"./toast":{"types":"./toast/index.d.ts","esm2022":"./esm2022/toast/daffodil-design-toast.mjs","esm":"./esm2022/toast/daffodil-design-toast.mjs","default":"./fesm2022/daffodil-design-toast.mjs"},"./tree":{"types":"./tree/index.d.ts","esm2022":"./esm2022/tree/daffodil-design-tree.mjs","esm":"./esm2022/tree/daffodil-design-tree.mjs","default":"./fesm2022/daffodil-design-tree.mjs"},"./accordion/examples":{"types":"./accordion/examples/index.d.ts","esm2022":"./esm2022/accordion/examples/daffodil-design-accordion-examples.mjs","esm":"./esm2022/accordion/examples/daffodil-design-accordion-examples.mjs","default":"./fesm2022/daffodil-design-accordion-examples.mjs"},"./article/examples":{"types":"./article/examples/index.d.ts","esm2022":"./esm2022/article/examples/daffodil-design-article-examples.mjs","esm":"./esm2022/article/examples/daffodil-design-article-examples.mjs","default":"./fesm2022/daffodil-design-article-examples.mjs"},"./breadcrumb/examples":{"types":"./breadcrumb/examples/index.d.ts","esm2022":"./esm2022/breadcrumb/examples/daffodil-design-breadcrumb-examples.mjs","esm":"./esm2022/breadcrumb/examples/daffodil-design-breadcrumb-examples.mjs","default":"./fesm2022/daffodil-design-breadcrumb-examples.mjs"},"./button/examples":{"types":"./button/examples/index.d.ts","esm2022":"./esm2022/button/examples/daffodil-design-button-examples.mjs","esm":"./esm2022/button/examples/daffodil-design-button-examples.mjs","default":"./fesm2022/daffodil-design-button-examples.mjs"},"./card/examples":{"types":"./card/examples/index.d.ts","esm2022":"./esm2022/card/examples/daffodil-design-card-examples.mjs","esm":"./esm2022/card/examples/daffodil-design-card-examples.mjs","default":"./fesm2022/daffodil-design-card-examples.mjs"},"./callout/examples":{"types":"./callout/examples/index.d.ts","esm2022":"./esm2022/callout/examples/daffodil-design-callout-examples.mjs","esm":"./esm2022/callout/examples/daffodil-design-callout-examples.mjs","default":"./fesm2022/daffodil-design-callout-examples.mjs"},"./checkbox/examples":{"types":"./checkbox/examples/index.d.ts","esm2022":"./esm2022/checkbox/examples/daffodil-design-checkbox-examples.mjs","esm":"./esm2022/checkbox/examples/daffodil-design-checkbox-examples.mjs","default":"./fesm2022/daffodil-design-checkbox-examples.mjs"},"./container/examples":{"types":"./container/examples/index.d.ts","esm2022":"./esm2022/container/examples/daffodil-design-container-examples.mjs","esm":"./esm2022/container/examples/daffodil-design-container-examples.mjs","default":"./fesm2022/daffodil-design-container-examples.mjs"},"./hero/examples":{"types":"./hero/examples/index.d.ts","esm2022":"./esm2022/hero/examples/daffodil-design-hero-examples.mjs","esm":"./esm2022/hero/examples/daffodil-design-hero-examples.mjs","default":"./fesm2022/daffodil-design-hero-examples.mjs"},"./image/examples":{"types":"./image/examples/index.d.ts","esm2022":"./esm2022/image/examples/daffodil-design-image-examples.mjs","esm":"./esm2022/image/examples/daffodil-design-image-examples.mjs","default":"./fesm2022/daffodil-design-image-examples.mjs"},"./input/examples":{"types":"./input/examples/index.d.ts","esm2022":"./esm2022/input/examples/daffodil-design-input-examples.mjs","esm":"./esm2022/input/examples/daffodil-design-input-examples.mjs","default":"./fesm2022/daffodil-design-input-examples.mjs"},"./list/examples":{"types":"./list/examples/index.d.ts","esm2022":"./esm2022/list/examples/daffodil-design-list-examples.mjs","esm":"./esm2022/list/examples/daffodil-design-list-examples.mjs","default":"./fesm2022/daffodil-design-list-examples.mjs"},"./loading-icon/examples":{"types":"./loading-icon/examples/index.d.ts","esm2022":"./esm2022/loading-icon/examples/daffodil-design-loading-icon-examples.mjs","esm":"./esm2022/loading-icon/examples/daffodil-design-loading-icon-examples.mjs","default":"./fesm2022/daffodil-design-loading-icon-examples.mjs"},"./media-gallery/examples":{"types":"./media-gallery/examples/index.d.ts","esm2022":"./esm2022/media-gallery/examples/daffodil-design-media-gallery-examples.mjs","esm":"./esm2022/media-gallery/examples/daffodil-design-media-gallery-examples.mjs","default":"./fesm2022/daffodil-design-media-gallery-examples.mjs"},"./menu/examples":{"types":"./menu/examples/index.d.ts","esm2022":"./esm2022/menu/examples/daffodil-design-menu-examples.mjs","esm":"./esm2022/menu/examples/daffodil-design-menu-examples.mjs","default":"./fesm2022/daffodil-design-menu-examples.mjs"},"./modal/examples":{"types":"./modal/examples/index.d.ts","esm2022":"./esm2022/modal/examples/daffodil-design-modal-examples.mjs","esm":"./esm2022/modal/examples/daffodil-design-modal-examples.mjs","default":"./fesm2022/daffodil-design-modal-examples.mjs"},"./navbar/examples":{"types":"./navbar/examples/index.d.ts","esm2022":"./esm2022/navbar/examples/daffodil-design-navbar-examples.mjs","esm":"./esm2022/navbar/examples/daffodil-design-navbar-examples.mjs","default":"./fesm2022/daffodil-design-navbar-examples.mjs"},"./notification/examples":{"types":"./notification/examples/index.d.ts","esm2022":"./esm2022/notification/examples/daffodil-design-notification-examples.mjs","esm":"./esm2022/notification/examples/daffodil-design-notification-examples.mjs","default":"./fesm2022/daffodil-design-notification-examples.mjs"},"./paginator/examples":{"types":"./paginator/examples/index.d.ts","esm2022":"./esm2022/paginator/examples/daffodil-design-paginator-examples.mjs","esm":"./esm2022/paginator/examples/daffodil-design-paginator-examples.mjs","default":"./fesm2022/daffodil-design-paginator-examples.mjs"},"./progress-bar/examples":{"types":"./progress-bar/examples/index.d.ts","esm2022":"./esm2022/progress-bar/examples/daffodil-design-progress-bar-examples.mjs","esm":"./esm2022/progress-bar/examples/daffodil-design-progress-bar-examples.mjs","default":"./fesm2022/daffodil-design-progress-bar-examples.mjs"},"./quantity-field/examples":{"types":"./quantity-field/examples/index.d.ts","esm2022":"./esm2022/quantity-field/examples/daffodil-design-quantity-field-examples.mjs","esm":"./esm2022/quantity-field/examples/daffodil-design-quantity-field-examples.mjs","default":"./fesm2022/daffodil-design-quantity-field-examples.mjs"},"./radio/examples":{"types":"./radio/examples/index.d.ts","esm2022":"./esm2022/radio/examples/daffodil-design-radio-examples.mjs","esm":"./esm2022/radio/examples/daffodil-design-radio-examples.mjs","default":"./fesm2022/daffodil-design-radio-examples.mjs"},"./sidebar/examples":{"types":"./sidebar/examples/index.d.ts","esm2022":"./esm2022/sidebar/examples/daffodil-design-sidebar-examples.mjs","esm":"./esm2022/sidebar/examples/daffodil-design-sidebar-examples.mjs","default":"./fesm2022/daffodil-design-sidebar-examples.mjs"},"./tabs/examples":{"types":"./tabs/examples/index.d.ts","esm2022":"./esm2022/tabs/examples/daffodil-design-tabs-examples.mjs","esm":"./esm2022/tabs/examples/daffodil-design-tabs-examples.mjs","default":"./fesm2022/daffodil-design-tabs-examples.mjs"},"./text-snippet/examples":{"types":"./text-snippet/examples/index.d.ts","esm2022":"./esm2022/text-snippet/examples/daffodil-design-text-snippet-examples.mjs","esm":"./esm2022/text-snippet/examples/daffodil-design-text-snippet-examples.mjs","default":"./fesm2022/daffodil-design-text-snippet-examples.mjs"},"./toast/examples":{"types":"./toast/examples/index.d.ts","esm2022":"./esm2022/toast/examples/daffodil-design-toast-examples.mjs","esm":"./esm2022/toast/examples/daffodil-design-toast-examples.mjs","default":"./fesm2022/daffodil-design-toast-examples.mjs"},"./tree/examples":{"types":"./tree/examples/index.d.ts","esm2022":"./esm2022/tree/examples/daffodil-design-tree-examples.mjs","esm":"./esm2022/tree/examples/daffodil-design-tree-examples.mjs","default":"./fesm2022/daffodil-design-tree-examples.mjs"}},"module":"fesm2022/daffodil-design.mjs","typings":"index.d.ts","sideEffects":false,"dependencies":{"tslib":"^2.3.0"}}
|
@@ -4,7 +4,7 @@ import * as i2 from "@angular/router";
|
|
4
4
|
import * as i3 from "@fortawesome/angular-fontawesome";
|
5
5
|
import * as i4 from "./paginator/paginator.component";
|
6
6
|
/**
|
7
|
-
* @deprecated in favor of {@link DAFF_PAGINATOR_COMPONENTS}
|
7
|
+
* @deprecated in favor of {@link DAFF_PAGINATOR_COMPONENTS} Deprecated in version 0.78.0. Will be removed in version 0.81.0.
|
8
8
|
*/
|
9
9
|
export declare class DaffPaginatorModule {
|
10
10
|
static ɵfac: i0.ɵɵFactoryDeclaration<DaffPaginatorModule, never>;
|
@@ -3,7 +3,7 @@ import * as i1 from "@angular/common";
|
|
3
3
|
import * as i2 from "./progress-bar.component";
|
4
4
|
import * as i3 from "./progress-bar-label/progress-bar-label.directive";
|
5
5
|
/**
|
6
|
-
* @deprecated in favor of {@link DAFF_PROGRESS_BAR_COMPONENTS}
|
6
|
+
* @deprecated in favor of {@link DAFF_PROGRESS_BAR_COMPONENTS} Deprecated in version 0.78.0. Will be removed in version 0.81.0.
|
7
7
|
*/
|
8
8
|
export declare class DaffProgressBarModule {
|
9
9
|
static ɵfac: i0.ɵɵFactoryDeclaration<DaffProgressBarModule, never>;
|
package/scss/theme.scss
CHANGED
@@ -19,7 +19,12 @@
|
|
19
19
|
// @daffodil/design components
|
20
20
|
@use './theming/theme-css-variables' as variables;
|
21
21
|
@use '../breadcrumb/src/breadcrumb-theme' as breadcrumb;
|
22
|
-
@use '../button/src/button-theme' as button;
|
22
|
+
@use '../button/src/button/basic/button-theme' as button;
|
23
|
+
@use '../button/src/button/flat/flat-theme' as flat-button;
|
24
|
+
@use '../button/src/button/icon/icon-theme' as icon-button;
|
25
|
+
@use '../button/src/button/raised/raised-theme' as raised-button;
|
26
|
+
@use '../button/src/button/stroked/stroked-theme' as stroked-button;
|
27
|
+
@use '../button/src/button/underline/underline-theme' as underline-button;
|
23
28
|
@use '../article/src/article-theme' as article;
|
24
29
|
@use '../src/atoms/form/error-message/error-message-theme' as error-message;
|
25
30
|
@use '../src/atoms/form/form-field/form-field/form-field-theme' as form-field;
|
@@ -40,6 +45,7 @@
|
|
40
45
|
@use '../sidebar/src/sidebar-theme' as sidebar;
|
41
46
|
@use '../progress-bar/src/progress-bar-theme' as progress-bar;
|
42
47
|
@use '../scss/state/skeleton/mixins' as skeleton;
|
48
|
+
@use '../tabs/src/tabs-theme' as tabs;
|
43
49
|
@use '../tree/src/tree-theme' as tree;
|
44
50
|
@use '../toast/src/toast-theme' as toast;
|
45
51
|
|
@@ -61,6 +67,11 @@
|
|
61
67
|
|
62
68
|
// Atoms
|
63
69
|
@include button.daff-button-theme($theme);
|
70
|
+
@include flat-button.daff-flat-button-theme($theme);
|
71
|
+
@include icon-button.daff-icon-button-theme($theme);
|
72
|
+
@include raised-button.daff-raised-button-theme($theme);
|
73
|
+
@include stroked-button.daff-stroked-button-theme($theme);
|
74
|
+
@include underline-button.daff-underline-button-theme($theme);
|
64
75
|
@include breadcrumb.daff-breadcrumb-theme($theme);
|
65
76
|
@include error-message.daff-error-message-theme($theme);
|
66
77
|
@include form-field.daff-form-field-theme($theme);
|
@@ -83,6 +94,7 @@
|
|
83
94
|
@include notification.daff-notification-theme($theme);
|
84
95
|
@include paginator.daff-paginator-theme($theme);
|
85
96
|
@include sidebar.daff-sidebar-theme($theme);
|
97
|
+
@include tabs.daff-tabs-theme($theme);
|
86
98
|
@include tree.daff-tree-theme($theme);
|
87
99
|
@include toast.daff-toast-theme($theme);
|
88
100
|
}
|
@@ -26,13 +26,20 @@ $supported-theme-types: (
|
|
26
26
|
'dark': $daff-dark-theme
|
27
27
|
);
|
28
28
|
|
29
|
+
|
29
30
|
// @docs
|
30
31
|
//
|
31
|
-
// Create a theme object given some initial settings
|
32
|
+
// Create a theme object given some initial settings.
|
33
|
+
// Sets light and dark mode defaults for `$info`, `$warn`, `$critical`, and `$success`
|
34
|
+
// that can be overriden by using the `daff-configure-theme-status` function.
|
32
35
|
//
|
33
36
|
// @usage
|
34
37
|
// ```
|
35
|
-
// daff-configure-
|
38
|
+
// $primary: configure-palette.daff-configure-palette(palette.$daff-blue, 60);
|
39
|
+
// $secondary: configure-palette.daff-configure-palette(palette.$daff-purple, 60);
|
40
|
+
// $tertiary: configure-palette.daff-configure-palette(palette.$daff-turquoise, 60);
|
41
|
+
//
|
42
|
+
// $theme: daff-configure-theme($primary, $secondary, $tertiary)
|
36
43
|
// ```
|
37
44
|
@function daff-configure-theme(
|
38
45
|
$primary,
|
@@ -40,14 +47,65 @@ $supported-theme-types: (
|
|
40
47
|
$tertiary,
|
41
48
|
$type: 'light'
|
42
49
|
) {
|
50
|
+
$info: null;
|
51
|
+
$warn: null;
|
52
|
+
$critical: null;
|
53
|
+
$success: null;
|
54
|
+
|
55
|
+
@if($type == 'dark') {
|
56
|
+
$info: configure-palette.daff-configure-palette(palette.$daff-neutral, 50);
|
57
|
+
$warn: configure-palette.daff-configure-palette(palette.$daff-bronze, 50);
|
58
|
+
$critical: configure-palette.daff-configure-palette(palette.$daff-red, 50);
|
59
|
+
$success: configure-palette.daff-configure-palette(palette.$daff-green, 50);
|
60
|
+
}
|
61
|
+
@if($type == 'light') {
|
62
|
+
$info: configure-palette.daff-configure-palette(palette.$daff-neutral, 60);
|
63
|
+
$warn: configure-palette.daff-configure-palette(palette.$daff-bronze, 60);
|
64
|
+
$critical: configure-palette.daff-configure-palette(palette.$daff-red, 60);
|
65
|
+
$success: configure-palette.daff-configure-palette(palette.$daff-green, 60);
|
66
|
+
}
|
67
|
+
|
43
68
|
@return (
|
44
69
|
'primary': $primary,
|
45
70
|
'secondary': $secondary,
|
46
71
|
'tertiary': $tertiary,
|
72
|
+
'informational': $info,
|
73
|
+
'warn': $warn,
|
74
|
+
'critical': $critical,
|
75
|
+
'success': $success,
|
47
76
|
'core': daff-build-theme-core($type)
|
48
77
|
);
|
49
78
|
}
|
50
79
|
|
80
|
+
// @docs
|
81
|
+
//
|
82
|
+
// Create a status theme object given some initial settings.
|
83
|
+
//
|
84
|
+
// @usage
|
85
|
+
// ```
|
86
|
+
// $info: configure-palette.daff-configure-palette(palette.$daff-blue, 60);
|
87
|
+
// $warn: configure-palette.daff-configure-palette(palette.$daff-bronze, 60);
|
88
|
+
// $critical: configure-palette.daff-configure-palette(palette.$daff-red, 60);
|
89
|
+
// $success: configure-palette.daff-configure-palette(palette.$daff-green, 60);
|
90
|
+
//
|
91
|
+
// $theme: daff-configure-theme-status($info, $warn, $critical, $success);
|
92
|
+
// ```
|
93
|
+
@function daff-configure-theme-status(
|
94
|
+
$theme,
|
95
|
+
$warn,
|
96
|
+
$critical,
|
97
|
+
$success,
|
98
|
+
$info,
|
99
|
+
) {
|
100
|
+
@debug $theme;
|
101
|
+
@return map.merge($theme, (
|
102
|
+
'warn': $warn,
|
103
|
+
'critical': $critical,
|
104
|
+
'success': $success,
|
105
|
+
'informational': $info,
|
106
|
+
));
|
107
|
+
}
|
108
|
+
|
51
109
|
//
|
52
110
|
// @docs
|
53
111
|
//
|
@@ -25,7 +25,7 @@
|
|
25
25
|
--daff-theme-tertiary: #{theming.daff-color($tertiary)};
|
26
26
|
--daff-theme-warn: #{theming.daff-color(theming.$daff-bronze, 60)};
|
27
27
|
--daff-theme-success: #{theming.daff-color(theming.$daff-green, 60)};
|
28
|
-
--daff-theme-
|
28
|
+
--daff-theme-critical: #{theming.daff-color(theming.$daff-red, 60)};
|
29
29
|
--daff-theme-white: #{$white};
|
30
30
|
--daff-theme-black: #{$black};
|
31
31
|
--daff-theme-gray: #{theming.daff-color($neutral)};
|
@@ -1,4 +1,3 @@
|
|
1
|
-
import { InjectionToken } from '@angular/core';
|
2
1
|
/**
|
3
2
|
* An interface that enables a user to enable or disable scrolling on sidebars.
|
4
3
|
*
|
@@ -8,12 +7,7 @@ export interface DaffSidebarScroll {
|
|
8
7
|
enable(): void;
|
9
8
|
disable(): void;
|
10
9
|
}
|
11
|
-
|
12
|
-
* An injection token that can be used within a sidebar to determine
|
13
|
-
* what to do enabling and disabling scrolling. By default, the body
|
14
|
-
* is the element where scrolling is controlled.
|
15
|
-
*/
|
16
|
-
export declare const DAFF_SIDEBAR_SCROLL_TOKEN: InjectionToken<DaffSidebarScroll>;
|
10
|
+
export declare const DAFF_SIDEBAR_SCROLL_TOKEN: import("@angular/core").InjectionToken<DaffSidebarScroll>, provideDaffSidebarScrollToken: <R extends DaffSidebarScroll = DaffSidebarScroll>(value: R) => import("@angular/core").ValueProvider;
|
17
11
|
/**
|
18
12
|
* A factory function that return a DaffSidebarScroll
|
19
13
|
* for the current sidebar viewport.
|
@@ -85,5 +85,5 @@ export declare class DaffSidebarViewportComponent implements AfterContentChecked
|
|
85
85
|
*/
|
86
86
|
_backdropClicked(): void;
|
87
87
|
static ɵfac: i0.ɵɵFactoryDeclaration<DaffSidebarViewportComponent, [null, null, { skipSelf: true; }, { optional: true; skipSelf: true; }, null]>;
|
88
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DaffSidebarViewportComponent, "daff-sidebar-viewport", never, { "navPlacement": { "alias": "navPlacement"; "required": false; }; }, { "backdropClicked": "backdropClicked"; }, ["sidebars"], ["daff-sidebar:not([side=right])", "
|
88
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DaffSidebarViewportComponent, "daff-sidebar-viewport", never, { "navPlacement": { "alias": "navPlacement"; "required": false; }; }, { "backdropClicked": "backdropClicked"; }, ["sidebars"], ["[daff-sidebar-viewport-nav]", "daff-sidebar:not([side=right])", "*", "daff-sidebar[side=right]"], true, never>;
|
89
89
|
}
|
@@ -9,7 +9,7 @@ import * as i7 from "./sidebar-header/sidebar-header-title/sidebar-header-title.
|
|
9
9
|
import * as i8 from "./sidebar-header/sidebar-header-action/sidebar-header-action.directive";
|
10
10
|
import * as i9 from "./sidebar-viewport-backdrop/sidebar-viewport-backdrop.component";
|
11
11
|
/**
|
12
|
-
* @deprecated in favor of {@link DAFF_SIDEBAR_COMPONENTS}
|
12
|
+
* @deprecated in favor of {@link DAFF_SIDEBAR_COMPONENTS} Deprecated in version 0.78.0. Will be removed in version 0.81.0.
|
13
13
|
*/
|
14
14
|
export declare class DaffSidebarModule {
|
15
15
|
static ɵfac: i0.ɵɵFactoryDeclaration<DaffSidebarModule, never>;
|
package/tabs/README.md
ADDED
@@ -0,0 +1,19 @@
|
|
1
|
+
# Tabs
|
2
|
+
Tabs provide a way to navigate between panels that display related content.
|
3
|
+
|
4
|
+
## Overview
|
5
|
+
Tabs allow for users to navigate between related content without having to leave the page. They can be used within components like modals or cards.
|
6
|
+
|
7
|
+
## Accessbility
|
8
|
+
Tabs follow the [ARIA Tabs design pattern](https://www.w3.org/WAI/ARIA/apg/patterns/tabs/). Tabs compose of `tablist`, `tab`, and `tabpanel` elements, each with its appropriate role and integrated keyboard interactions.
|
9
|
+
|
10
|
+
### Label
|
11
|
+
A meaningful `aria-label` should be set on `<daff-tabs>` by using the `aria-label` property. This will set the `aria-label` on the `tablist` element.
|
12
|
+
|
13
|
+
### Keyboard Interactions
|
14
|
+
| Key | Action |
|
15
|
+
| --- | ------ |
|
16
|
+
| Left Arrow | Moves focus and activates previous tab. If focus is on the first tab, moves focus to the last tab. |
|
17
|
+
| Right Arrow | Moves focus and activates next tab. If focus is on the last tab, moves focus to the first tab. |
|
18
|
+
| Home | Moves focus and activates first tab. |
|
19
|
+
| End | Moves focus and activates last tab. |
|
@@ -0,0 +1,6 @@
|
|
1
|
+
import * as i0 from "@angular/core";
|
2
|
+
export declare class BasicTabsComponent {
|
3
|
+
faInfoCircle: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
4
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BasicTabsComponent, never>;
|
5
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BasicTabsComponent, "basic-tabs", never, {}, {}, never, never, true, never>;
|
6
|
+
}
|
@@ -0,0 +1,11 @@
|
|
1
|
+
import { DaffTabsComponent } from '@daffodil/design/tabs';
|
2
|
+
import * as i0 from "@angular/core";
|
3
|
+
export declare class CustomSelectTabsComponent {
|
4
|
+
faInfoCircle: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
5
|
+
selectedTab: string;
|
6
|
+
_tab: DaffTabsComponent;
|
7
|
+
selectTabThree(): void;
|
8
|
+
selectTabFive(): void;
|
9
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<CustomSelectTabsComponent, never>;
|
10
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CustomSelectTabsComponent, "custom-select-tabs", never, {}, {}, never, never, true, never>;
|
11
|
+
}
|
@@ -0,0 +1,6 @@
|
|
1
|
+
import * as i0 from "@angular/core";
|
2
|
+
export declare class DisabledTabsComponent {
|
3
|
+
faInfoCircle: import("@fortawesome/fontawesome-common-types").IconDefinition;
|
4
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DisabledTabsComponent, never>;
|
5
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DisabledTabsComponent, "disabled-tabs", never, {}, {}, never, never, true, never>;
|
6
|
+
}
|
@@ -0,0 +1 @@
|
|
1
|
+
export * from './public_api';
|