@daffodil/design 0.39.8 → 0.39.12

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.
Files changed (131) hide show
  1. package/atoms/button/button.component.d.ts +5 -0
  2. package/bundles/daffodil-design-card-examples.umd.js +152 -14
  3. package/bundles/daffodil-design-card-examples.umd.js.map +1 -1
  4. package/bundles/daffodil-design-card-examples.umd.min.js +1 -1
  5. package/bundles/daffodil-design-card-examples.umd.min.js.map +1 -1
  6. package/bundles/daffodil-design-container-examples.umd.js +65 -0
  7. package/bundles/daffodil-design-container-examples.umd.js.map +1 -0
  8. package/bundles/daffodil-design-container-examples.umd.min.js +2 -0
  9. package/bundles/daffodil-design-container-examples.umd.min.js.map +1 -0
  10. package/bundles/daffodil-design-navbar-examples.umd.js +177 -0
  11. package/bundles/daffodil-design-navbar-examples.umd.js.map +1 -0
  12. package/bundles/daffodil-design-navbar-examples.umd.min.js +2 -0
  13. package/bundles/daffodil-design-navbar-examples.umd.min.js.map +1 -0
  14. package/bundles/daffodil-design.umd.js +300 -51
  15. package/bundles/daffodil-design.umd.js.map +1 -1
  16. package/bundles/daffodil-design.umd.min.js +2 -2
  17. package/bundles/daffodil-design.umd.min.js.map +1 -1
  18. package/card/examples/basic-card/basic-card.component.d.ts +1 -0
  19. package/card/examples/card-orientation/card-orientation.component.d.ts +9 -0
  20. package/card/examples/card-orientation/card-orientation.module.d.ts +2 -0
  21. package/card/examples/card-theming/card-theming.component.d.ts +4 -2
  22. package/card/examples/daffodil-design-card-examples.d.ts +2 -0
  23. package/card/examples/daffodil-design-card-examples.metadata.json +1 -1
  24. package/card/examples/linkable-card/linkable-card.component.d.ts +8 -0
  25. package/card/examples/public_api.d.ts +5 -1
  26. package/card/examples/raised-card/raised-card.component.d.ts +6 -0
  27. package/card/examples/stroked-card/stroked-card.component.d.ts +8 -0
  28. package/card/examples/stroked-card/stroked-card.module.d.ts +2 -0
  29. package/container/examples/container-sizes/container-sizes.component.d.ts +8 -0
  30. package/container/examples/container-sizes/container-sizes.module.d.ts +2 -0
  31. package/container/examples/daffodil-design-container-examples.d.ts +4 -0
  32. package/container/examples/daffodil-design-container-examples.metadata.json +1 -0
  33. package/container/examples/examples.d.ts +2 -0
  34. package/container/examples/index.d.ts +1 -0
  35. package/container/examples/package.json +11 -0
  36. package/container/examples/public_api.d.ts +3 -0
  37. package/core/article-encapsulated/article-encapsulated-mixin.d.ts +15 -0
  38. package/core/article-encapsulated/public_api.d.ts +1 -0
  39. package/core/manage-container-layout/manage-container-layout-mixin.d.ts +17 -0
  40. package/core/manage-container-layout/public_api.d.ts +1 -0
  41. package/core/public_api.d.ts +2 -0
  42. package/daff-theme.scss +278 -129
  43. package/daffodil-design.metadata.json +1 -1
  44. package/esm2015/atoms/button/button.component.js +3 -2
  45. package/esm2015/atoms/container/container.component.js +1 -1
  46. package/esm2015/atoms/image/image.component.js +2 -2
  47. package/esm2015/card/examples/basic-card/basic-card.component.js +7 -3
  48. package/esm2015/card/examples/basic-card/basic-card.module.js +3 -1
  49. package/esm2015/card/examples/card-orientation/card-orientation.component.js +24 -0
  50. package/esm2015/card/examples/card-orientation/card-orientation.module.js +27 -0
  51. package/esm2015/card/examples/card-theming/card-theming.component.js +13 -4
  52. package/esm2015/card/examples/daffodil-design-card-examples.js +3 -1
  53. package/esm2015/card/examples/linkable-card/linkable-card.component.js +19 -3
  54. package/esm2015/card/examples/linkable-card/linkable-card.module.js +3 -1
  55. package/esm2015/card/examples/public_api.js +7 -1
  56. package/esm2015/card/examples/raised-card/raised-card.component.js +17 -3
  57. package/esm2015/card/examples/raised-card/raised-card.module.js +3 -3
  58. package/esm2015/card/examples/stroked-card/stroked-card.component.js +27 -0
  59. package/esm2015/card/examples/stroked-card/stroked-card.module.js +27 -0
  60. package/esm2015/container/examples/container-sizes/container-sizes.component.js +23 -0
  61. package/esm2015/container/examples/container-sizes/container-sizes.module.js +23 -0
  62. package/esm2015/container/examples/daffodil-design-container-examples.js +5 -0
  63. package/esm2015/container/examples/examples.js +5 -0
  64. package/esm2015/container/examples/index.js +2 -0
  65. package/esm2015/container/examples/public_api.js +4 -0
  66. package/esm2015/core/article-encapsulated/article-encapsulated-mixin.js +12 -0
  67. package/esm2015/core/article-encapsulated/public_api.js +2 -0
  68. package/esm2015/core/manage-container-layout/manage-container-layout-mixin.js +14 -0
  69. package/esm2015/core/manage-container-layout/public_api.js +2 -0
  70. package/esm2015/core/public_api.js +3 -1
  71. package/esm2015/molecules/accordion/accordion/accordion.component.js +24 -3
  72. package/esm2015/molecules/article/article/article.component.js +1 -1
  73. package/esm2015/molecules/callout/callout/callout.component.js +5 -3
  74. package/esm2015/molecules/card/card/card.component.js +78 -15
  75. package/esm2015/molecules/card/card-content/card-content.directive.js +18 -0
  76. package/esm2015/molecules/card/card-icon/card-icon.directive.js +18 -0
  77. package/esm2015/molecules/card/card.module.js +9 -3
  78. package/esm2015/molecules/card/public_api.js +4 -2
  79. package/esm2015/molecules/feature/feature/feature.component.js +4 -1
  80. package/esm2015/molecules/hero/hero/hero.component.js +6 -4
  81. package/esm2015/molecules/link-set/link-set/link-set.component.js +23 -4
  82. package/esm2015/molecules/list/list/list.component.js +19 -5
  83. package/esm2015/molecules/media-gallery/media-gallery.component.js +20 -4
  84. package/esm2015/molecules/navbar/navbar.component.js +11 -9
  85. package/esm2015/navbar/examples/basic-navbar/basic-navbar.component.js +13 -0
  86. package/esm2015/navbar/examples/basic-navbar/basic-navbar.module.js +20 -0
  87. package/esm2015/navbar/examples/contained-navbar/contained-navbar.component.js +13 -0
  88. package/esm2015/navbar/examples/contained-navbar/contained-navbar.module.js +20 -0
  89. package/esm2015/navbar/examples/daffodil-design-navbar-examples.js +5 -0
  90. package/esm2015/navbar/examples/examples.js +11 -0
  91. package/esm2015/navbar/examples/index.js +2 -0
  92. package/esm2015/navbar/examples/navbar-theming/navbar-theming.component.js +27 -0
  93. package/esm2015/navbar/examples/navbar-theming/navbar-theming.module.js +21 -0
  94. package/esm2015/navbar/examples/public_api.js +10 -0
  95. package/esm2015/navbar/examples/raised-navbar/raised-navbar.component.js +13 -0
  96. package/esm2015/navbar/examples/raised-navbar/raised-navbar.module.js +19 -0
  97. package/fesm2015/daffodil-design-card-examples.js +145 -11
  98. package/fesm2015/daffodil-design-card-examples.js.map +1 -1
  99. package/fesm2015/daffodil-design-container-examples.js +54 -0
  100. package/fesm2015/daffodil-design-container-examples.js.map +1 -0
  101. package/fesm2015/daffodil-design-navbar-examples.js +142 -0
  102. package/fesm2015/daffodil-design-navbar-examples.js.map +1 -0
  103. package/fesm2015/daffodil-design.js +238 -42
  104. package/fesm2015/daffodil-design.js.map +1 -1
  105. package/molecules/accordion/accordion/accordion.component.d.ts +20 -1
  106. package/molecules/callout/callout/callout.component.d.ts +10 -0
  107. package/molecules/card/card/card.component.d.ts +42 -11
  108. package/molecules/card/card-content/card-content.directive.d.ts +6 -0
  109. package/molecules/card/card-icon/card-icon.directive.d.ts +6 -0
  110. package/molecules/card/public_api.d.ts +3 -1
  111. package/molecules/feature/feature/feature.component.d.ts +3 -0
  112. package/molecules/hero/hero/hero.component.d.ts +11 -1
  113. package/molecules/link-set/link-set/link-set.component.d.ts +20 -1
  114. package/molecules/list/list/list.component.d.ts +19 -3
  115. package/molecules/media-gallery/media-gallery.component.d.ts +20 -3
  116. package/molecules/navbar/navbar.component.d.ts +10 -5
  117. package/navbar/examples/basic-navbar/basic-navbar.component.d.ts +2 -0
  118. package/navbar/examples/basic-navbar/basic-navbar.module.d.ts +2 -0
  119. package/navbar/examples/contained-navbar/contained-navbar.component.d.ts +2 -0
  120. package/navbar/examples/contained-navbar/contained-navbar.module.d.ts +2 -0
  121. package/navbar/examples/daffodil-design-navbar-examples.d.ts +4 -0
  122. package/navbar/examples/daffodil-design-navbar-examples.metadata.json +1 -0
  123. package/navbar/examples/examples.d.ts +2 -0
  124. package/navbar/examples/index.d.ts +1 -0
  125. package/navbar/examples/navbar-theming/navbar-theming.component.d.ts +8 -0
  126. package/navbar/examples/navbar-theming/navbar-theming.module.d.ts +2 -0
  127. package/navbar/examples/package.json +11 -0
  128. package/navbar/examples/public_api.d.ts +9 -0
  129. package/navbar/examples/raised-navbar/raised-navbar.component.d.ts +2 -0
  130. package/navbar/examples/raised-navbar/raised-navbar.module.d.ts +2 -0
  131. package/package.json +2 -2
@@ -1,2 +1,21 @@
1
- export declare class DaffAccordionComponent {
1
+ import { ElementRef, Renderer2 } from '@angular/core';
2
+ /**
3
+ * An _elementRef and an instance of renderer2 are needed for the link set mixins
4
+ */
5
+ declare class DaffAccordionBase {
6
+ _elementRef: ElementRef;
7
+ _renderer: Renderer2;
8
+ constructor(_elementRef: ElementRef, _renderer: Renderer2);
2
9
  }
10
+ declare const _daffAccordionBase: {
11
+ new (...args: any[]): {
12
+ _elementRef: ElementRef<any>;
13
+ _renderer: Renderer2;
14
+ };
15
+ } & typeof DaffAccordionBase;
16
+ export declare class DaffAccordionComponent extends _daffAccordionBase {
17
+ private elementRef;
18
+ private renderer;
19
+ constructor(elementRef: ElementRef, renderer: Renderer2);
20
+ }
21
+ export {};
@@ -25,6 +25,16 @@ declare class DaffCalloutBase {
25
25
  constructor(_elementRef: ElementRef, _renderer: Renderer2);
26
26
  }
27
27
  declare const _daffCalloutBase: {
28
+ new (...args: any[]): {
29
+ _elementRef: ElementRef<any>;
30
+ _renderer: Renderer2;
31
+ };
32
+ } & {
33
+ new (...args: any[]): {
34
+ _elementRef: ElementRef<any>;
35
+ _renderer: Renderer2;
36
+ };
37
+ } & {
28
38
  new (...args: any[]): {
29
39
  _color: import("../../../core/colorable/colorable").DaffPalette;
30
40
  color: import("../../../core/colorable/colorable").DaffPalette;
@@ -1,5 +1,14 @@
1
- import { ElementRef, Renderer2 } from '@angular/core';
2
- import { DaffColorable, DaffPalette } from '../../../core/colorable/public_api';
1
+ import { ElementRef, Renderer2, OnInit } from '@angular/core';
2
+ import { DaffColorable } from '../../../core/colorable/public_api';
3
+ export declare type DaffCardType = null | 'daff-raised-card' | 'daff-stroked-card';
4
+ /**
5
+ * This attribute determines what orientation the the card contents are stacked.
6
+ */
7
+ export declare type DaffCardOrientation = 'vertical' | 'horizontal';
8
+ export declare enum DaffCardOrientationEnum {
9
+ Vertical = "vertical",
10
+ Horizontal = "horizontal"
11
+ }
3
12
  /**
4
13
  * An _elementRef and an instance of renderer2 are needed for the Colorable mixin
5
14
  */
@@ -10,11 +19,13 @@ declare class DaffCardBase {
10
19
  }
11
20
  declare const _daffCardBase: {
12
21
  new (...args: any[]): {
13
- _color: DaffPalette;
14
- color: DaffPalette;
15
- /**
16
- * An _elementRef and an instance of renderer2 are needed for the Colorable mixin
17
- */
22
+ _elementRef: ElementRef<any>;
23
+ _renderer: Renderer2;
24
+ };
25
+ } & {
26
+ new (...args: any[]): {
27
+ _color: import("../../../core/colorable/colorable").DaffPalette;
28
+ color: import("../../../core/colorable/colorable").DaffPalette;
18
29
  _elementRef: ElementRef<any>;
19
30
  _renderer: Renderer2;
20
31
  };
@@ -22,15 +33,35 @@ declare const _daffCardBase: {
22
33
  /**
23
34
  * @inheritdoc
24
35
  */
25
- export declare class DaffCardComponent extends _daffCardBase implements DaffColorable {
36
+ export declare class DaffCardComponent extends _daffCardBase implements OnInit, DaffColorable {
26
37
  private elementRef;
27
38
  private renderer;
28
- raised: boolean;
39
+ private _orientation;
40
+ get orientation(): DaffCardOrientation;
41
+ set orientation(value: DaffCardOrientation);
29
42
  /**
30
43
  * @docs-private
31
44
  */
32
- class: boolean;
33
- get raisedClass(): boolean;
45
+ private cardType;
46
+ private initCardType;
34
47
  constructor(elementRef: ElementRef, renderer: Renderer2);
48
+ /**
49
+ * @docs-private
50
+ */
51
+ ngOnInit(): void;
52
+ class: boolean;
53
+ /**
54
+ * @docs-private
55
+ */
56
+ get verticalClass(): boolean;
57
+ /**
58
+ * @docs-private
59
+ */
60
+ get horizontalClass(): boolean;
61
+ private _getHostElement;
62
+ /**
63
+ * Gets whether the button has one of the given attributes.
64
+ * */
65
+ private _hasHostAttributes;
35
66
  }
36
67
  export {};
@@ -0,0 +1,6 @@
1
+ export declare class DaffCardContentDirective {
2
+ /**
3
+ * @docs-private
4
+ */
5
+ class: boolean;
6
+ }
@@ -0,0 +1,6 @@
1
+ export declare class DaffCardIconDirective {
2
+ /**
3
+ * @docs-private
4
+ */
5
+ class: boolean;
6
+ }
@@ -1,6 +1,8 @@
1
1
  export { DaffCardModule } from './card.module';
2
2
  export * from './card/card.component';
3
- export * from './card-title/card-title.directive';
3
+ export * from './card-icon/card-icon.directive';
4
4
  export * from './card-image/card-image.directive';
5
5
  export * from './card-tagline/card-tagline.directive';
6
+ export * from './card-title/card-title.directive';
7
+ export * from './card-content/card-content.directive';
6
8
  export * from './card-actions/card-actions.directive';
@@ -3,6 +3,9 @@ export declare enum DaffFeatureModeEnum {
3
3
  Compact = "compact",
4
4
  Normal = "normal"
5
5
  }
6
+ /**
7
+ * @deprecated See {@link DaffCardComponent}
8
+ */
6
9
  export declare class DaffFeatureComponent {
7
10
  /**
8
11
  * @docs-private
@@ -18,7 +18,7 @@ export declare enum DaffHeroSizeEnum {
18
18
  Small = "small"
19
19
  }
20
20
  /**
21
- * An _elementRef and an instance of renderer2 are needed for the Colorable mixin
21
+ * An _elementRef and an instance of renderer2 are needed for the hero mixins
22
22
  */
23
23
  declare class DaffHeroBase {
24
24
  _elementRef: ElementRef;
@@ -26,6 +26,16 @@ declare class DaffHeroBase {
26
26
  constructor(_elementRef: ElementRef, _renderer: Renderer2);
27
27
  }
28
28
  declare const _daffHeroBase: {
29
+ new (...args: any[]): {
30
+ _elementRef: ElementRef<any>;
31
+ _renderer: Renderer2;
32
+ };
33
+ } & {
34
+ new (...args: any[]): {
35
+ _elementRef: ElementRef<any>;
36
+ _renderer: Renderer2;
37
+ };
38
+ } & {
29
39
  new (...args: any[]): {
30
40
  _color: import("../../../core/colorable/colorable").DaffPalette;
31
41
  color: import("../../../core/colorable/colorable").DaffPalette;
@@ -1,9 +1,28 @@
1
+ import { ElementRef, Renderer2 } from '@angular/core';
2
+ /**
3
+ * An _elementRef and an instance of renderer2 are needed for the link set mixins
4
+ */
5
+ declare class DaffLinkSetBase {
6
+ _elementRef: ElementRef;
7
+ _renderer: Renderer2;
8
+ constructor(_elementRef: ElementRef, _renderer: Renderer2);
9
+ }
10
+ declare const _daffLinkSetBase: {
11
+ new (...args: any[]): {
12
+ _elementRef: ElementRef<any>;
13
+ _renderer: Renderer2;
14
+ };
15
+ } & typeof DaffLinkSetBase;
1
16
  /**
2
17
  * DaffLinkSetComponent is a component for displaying a two or more links.
3
18
  */
4
- export declare class DaffLinkSetComponent {
19
+ export declare class DaffLinkSetComponent extends _daffLinkSetBase {
20
+ private elementRef;
21
+ private renderer;
5
22
  /**
6
23
  * @docs-private
7
24
  */
8
25
  class: boolean;
26
+ constructor(elementRef: ElementRef, renderer: Renderer2);
9
27
  }
28
+ export {};
@@ -1,4 +1,4 @@
1
- import { ElementRef } from '@angular/core';
1
+ import { ElementRef, Renderer2 } from '@angular/core';
2
2
  /**
3
3
  * @deprecated
4
4
  * DaffListMode will be completely deprecated in v1.0.0
@@ -10,8 +10,23 @@ export declare enum DaffListModeEnum {
10
10
  Navigation = "navigation"
11
11
  }
12
12
  export declare type DaffListType = 'daff-list' | 'daff-nav-list';
13
- export declare class DaffListComponent {
13
+ /**
14
+ * An _elementRef and an instance of renderer2 are needed for the list mixins
15
+ */
16
+ declare class DaffListBase {
17
+ _elementRef: ElementRef;
18
+ _renderer: Renderer2;
19
+ constructor(_elementRef: ElementRef, _renderer: Renderer2);
20
+ }
21
+ declare const _daffListBase: {
22
+ new (...args: any[]): {
23
+ _elementRef: ElementRef<any>;
24
+ _renderer: Renderer2;
25
+ };
26
+ } & typeof DaffListBase;
27
+ export declare class DaffListComponent extends _daffListBase {
14
28
  private elementRef;
29
+ private renderer;
15
30
  /**
16
31
  * @deprecated
17
32
  * */
@@ -39,7 +54,7 @@ export declare class DaffListComponent {
39
54
  * @docs-private
40
55
  */
41
56
  get listType(): DaffListType;
42
- constructor(elementRef: ElementRef);
57
+ constructor(elementRef: ElementRef, renderer: Renderer2);
43
58
  /**
44
59
  * @docs-private
45
60
  */
@@ -52,3 +67,4 @@ export declare class DaffListComponent {
52
67
  get role(): "navigation" | "list";
53
68
  private _getHostElement;
54
69
  }
70
+ export {};
@@ -1,7 +1,23 @@
1
- import { OnInit, OnDestroy } from '@angular/core';
1
+ import { OnInit, OnDestroy, ElementRef, Renderer2 } from '@angular/core';
2
2
  import { DaffMediaGalleryRegistration } from './media-gallery-registration.interface';
3
3
  import { DaffMediaGalleryRegistry } from './registry/media-gallery.registry';
4
- export declare class DaffMediaGalleryComponent implements DaffMediaGalleryRegistration, OnInit, OnDestroy {
4
+ /**
5
+ * An _elementRef and an instance of renderer2 are needed for the link set mixins
6
+ */
7
+ declare class DaffMediaGalleryBase {
8
+ _elementRef: ElementRef;
9
+ _renderer: Renderer2;
10
+ constructor(_elementRef: ElementRef, _renderer: Renderer2);
11
+ }
12
+ declare const _daffMediaGalleryBase: {
13
+ new (...args: any[]): {
14
+ _elementRef: ElementRef<any>;
15
+ _renderer: Renderer2;
16
+ };
17
+ } & typeof DaffMediaGalleryBase;
18
+ export declare class DaffMediaGalleryComponent extends _daffMediaGalleryBase implements DaffMediaGalleryRegistration, OnInit, OnDestroy {
19
+ private elementRef;
20
+ private renderer;
5
21
  private registry;
6
22
  /**
7
23
  * Adds a class for styling the media gallery
@@ -11,7 +27,8 @@ export declare class DaffMediaGalleryComponent implements DaffMediaGalleryRegist
11
27
  * The name of the gallery
12
28
  */
13
29
  name: string;
14
- constructor(registry: DaffMediaGalleryRegistry);
30
+ constructor(elementRef: ElementRef, renderer: Renderer2, registry: DaffMediaGalleryRegistry);
15
31
  ngOnInit(): void;
16
32
  ngOnDestroy(): void;
17
33
  }
34
+ export {};
@@ -1,5 +1,5 @@
1
1
  import { ElementRef, Renderer2 } from '@angular/core';
2
- import { DaffColorable, DaffPalette } from '../../core/colorable/public_api';
2
+ import { DaffColorable } from '../../core/colorable/public_api';
3
3
  /**
4
4
  * An _elementRef is needed for the Colorable mixin
5
5
  */
@@ -10,8 +10,13 @@ declare class DaffNavbarBase {
10
10
  }
11
11
  declare const _daffNavbarBase: {
12
12
  new (...args: any[]): {
13
- _color: DaffPalette;
14
- color: DaffPalette;
13
+ _elementRef: ElementRef<any>;
14
+ _renderer: Renderer2;
15
+ };
16
+ } & {
17
+ new (...args: any[]): {
18
+ _color: import("../../core/colorable/colorable").DaffPalette;
19
+ color: import("../../core/colorable/colorable").DaffPalette;
15
20
  _elementRef: ElementRef<any>;
16
21
  _renderer: Renderer2;
17
22
  };
@@ -22,11 +27,11 @@ declare const _daffNavbarBase: {
22
27
  export declare class DaffNavbarComponent extends _daffNavbarBase implements DaffColorable {
23
28
  private elementRef;
24
29
  private renderer;
25
- shadowed: boolean;
30
+ raised: boolean;
26
31
  /**
27
32
  * @docs-private
28
33
  */
29
- get shadowClass(): boolean;
34
+ get raisedClass(): boolean;
30
35
  /**
31
36
  * @docs-private
32
37
  */
@@ -0,0 +1,2 @@
1
+ export declare class BasicNavbarComponent {
2
+ }
@@ -0,0 +1,2 @@
1
+ export declare class BasicNavbarModule {
2
+ }
@@ -0,0 +1,2 @@
1
+ export declare class ContainedNavbarComponent {
2
+ }
@@ -0,0 +1,2 @@
1
+ export declare class ContainedNavbarModule {
2
+ }
@@ -0,0 +1,4 @@
1
+ /**
2
+ * Generated bundle index. Do not edit.
3
+ */
4
+ export * from './index';
@@ -0,0 +1 @@
1
+ {"__symbolic":"module","version":4,"metadata":{"BasicNavbarComponent":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component","line":6,"character":1},"arguments":[{"selector":"basic-navbar","changeDetection":{"__symbolic":"select","expression":{"__symbolic":"reference","module":"@angular/core","name":"ChangeDetectionStrategy","line":11,"character":19},"member":"OnPush"},"template":"<nav daff-navbar class=\"daff-basic-navbar\">\n\t<div class=\"daff-basic-navbar__links\">\n\t\t<a href=\"/\">Home</a>\n\t\t<a href=\"/\">About Us</a>\n\t</div>\n\t<button daff-button color=\"theme-contrast\">Contact Us</button>\n</nav>","styles":[".daff-basic-navbar{justify-content:space-between}.daff-basic-navbar__links>*{font-weight:700;font-size:1.125rem;padding:0 16px;text-decoration:none;text-transform:uppercase}"]}]}],"members":{}},"BasicNavbarModule":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"NgModule","line":11,"character":1},"arguments":[{"declarations":[{"__symbolic":"reference","name":"BasicNavbarComponent"}],"imports":[{"__symbolic":"reference","module":"@angular/common","name":"CommonModule","line":16,"character":4},{"__symbolic":"reference","module":"@daffodil/design","name":"DaffNavbarModule","line":18,"character":4},{"__symbolic":"reference","module":"@daffodil/design","name":"DaffButtonModule","line":19,"character":4},{"__symbolic":"reference","module":"@daffodil/design","name":"DaffContainerModule","line":20,"character":4}]}]}],"members":{}},"ContainedNavbarComponent":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component","line":5,"character":1},"arguments":[{"selector":"contained-navbar","changeDetection":{"__symbolic":"select","expression":{"__symbolic":"reference","module":"@angular/core","name":"ChangeDetectionStrategy","line":10,"character":19},"member":"OnPush"},"template":"<nav daff-navbar class=\"daff-contained-navbar\">\n\t<daff-container size=\"md\">\n\t\t<div class=\"daff-contained-navbar__links\">\n\t\t\t<a href=\"/\">Home</a>\n\t\t\t<a href=\"/\">About Us</a>\n\t\t</div>\n\t\t<button daff-button>Contact Us</button>\n\t</daff-container>\n</nav>\n","styles":[".daff-contained-navbar{justify-content:space-between}.daff-contained-navbar__links>*{font-weight:700;font-size:1.125rem;padding:0 16px;text-decoration:none;text-transform:uppercase}"]}]}],"members":{}},"ContainedNavbarModule":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"NgModule","line":11,"character":1},"arguments":[{"declarations":[{"__symbolic":"reference","name":"ContainedNavbarComponent"}],"imports":[{"__symbolic":"reference","module":"@angular/common","name":"CommonModule","line":16,"character":4},{"__symbolic":"reference","module":"@daffodil/design","name":"DaffNavbarModule","line":18,"character":4},{"__symbolic":"reference","module":"@daffodil/design","name":"DaffButtonModule","line":19,"character":4},{"__symbolic":"reference","module":"@daffodil/design","name":"DaffContainerModule","line":20,"character":4}]}]}],"members":{}},"NavbarThemingComponent":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component","line":6,"character":1},"arguments":[{"selector":"navbar-theming","changeDetection":{"__symbolic":"select","expression":{"__symbolic":"reference","module":"@angular/core","name":"ChangeDetectionStrategy","line":11,"character":19},"member":"OnPush"},"template":"<nav daff-navbar [color]=\"colorControl.value\" class=\"daff-navbar-theming\">\n\t<div class=\"daff-navbar-theming__links\">\n\t\t<a href=\"/\">Home</a>\n\t\t<a href=\"/\">About Us</a>\n\t</div>\n\t<button daff-button>Contact Us</button>\n</nav>\n\n<select [formControl]=\"colorControl\">\n\t<option *ngFor=\"let option of options\" [value]=\"option.value\">{{ option.label }}</option>\n</select>","styles":[".daff-navbar-theming{justify-content:space-between}.daff-navbar-theming__links>*{font-weight:700;font-size:1.125rem;padding:0 16px;text-decoration:none;text-transform:uppercase}"]}]}],"members":{}},"NavbarThemingModule":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"NgModule","line":11,"character":1},"arguments":[{"declarations":[{"__symbolic":"reference","name":"NavbarThemingComponent"}],"imports":[{"__symbolic":"reference","module":"@angular/common","name":"CommonModule","line":16,"character":4},{"__symbolic":"reference","module":"@angular/forms","name":"ReactiveFormsModule","line":17,"character":4},{"__symbolic":"reference","module":"@daffodil/design","name":"DaffNavbarModule","line":18,"character":4},{"__symbolic":"reference","module":"@daffodil/design","name":"DaffButtonModule","line":19,"character":4}]}]}],"members":{}},"RaisedNavbarComponent":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component","line":5,"character":1},"arguments":[{"selector":"raised-navbar","changeDetection":{"__symbolic":"select","expression":{"__symbolic":"reference","module":"@angular/core","name":"ChangeDetectionStrategy","line":10,"character":19},"member":"OnPush"},"template":"<nav daff-navbar [raised]=\"true\" class=\"daff-raised-navbar\">\n\t<div class=\"daff-raised-navbar__links\">\n\t\t<a href=\"/\">Home</a>\n\t\t<a href=\"/\">About Us</a>\n\t</div>\n\t<button daff-button>Contact Us</button>\n</nav>\n","styles":[".daff-raised-navbar{justify-content:space-between}.daff-raised-navbar__links>*{font-weight:700;font-size:1.125rem;padding:0 16px;text-decoration:none;text-transform:uppercase}"]}]}],"members":{}},"RaisedNavbarModule":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"NgModule","line":10,"character":1},"arguments":[{"declarations":[{"__symbolic":"reference","name":"RaisedNavbarComponent"}],"imports":[{"__symbolic":"reference","module":"@angular/common","name":"CommonModule","line":15,"character":4},{"__symbolic":"reference","module":"@daffodil/design","name":"DaffNavbarModule","line":17,"character":4},{"__symbolic":"reference","module":"@daffodil/design","name":"DaffButtonModule","line":18,"character":4}]}]}],"members":{}},"NAVBAR_EXAMPLES":[{"__symbolic":"reference","name":"BasicNavbarComponent"},{"__symbolic":"reference","name":"ContainedNavbarComponent"},{"__symbolic":"reference","name":"NavbarThemingComponent"},{"__symbolic":"reference","name":"RaisedNavbarComponent"}]},"origins":{"BasicNavbarComponent":"./basic-navbar/basic-navbar.component","BasicNavbarModule":"./basic-navbar/basic-navbar.module","ContainedNavbarComponent":"./contained-navbar/contained-navbar.component","ContainedNavbarModule":"./contained-navbar/contained-navbar.module","NavbarThemingComponent":"./navbar-theming/navbar-theming.component","NavbarThemingModule":"./navbar-theming/navbar-theming.module","RaisedNavbarComponent":"./raised-navbar/raised-navbar.component","RaisedNavbarModule":"./raised-navbar/raised-navbar.module","NAVBAR_EXAMPLES":"./examples"},"importAs":"@daffodil/design/navbar/examples"}
@@ -0,0 +1,2 @@
1
+ import { BasicNavbarComponent } from './basic-navbar/basic-navbar.component';
2
+ export declare const NAVBAR_EXAMPLES: (typeof BasicNavbarComponent)[];
@@ -0,0 +1 @@
1
+ export * from './public_api';
@@ -0,0 +1,8 @@
1
+ import { FormControl } from '@angular/forms';
2
+ export declare class NavbarThemingComponent {
3
+ colorControl: FormControl;
4
+ options: {
5
+ value: string;
6
+ label: string;
7
+ }[];
8
+ }
@@ -0,0 +1,2 @@
1
+ export declare class NavbarThemingModule {
2
+ }
@@ -0,0 +1,11 @@
1
+ {
2
+ "name": "@daffodil/design/navbar/examples",
3
+ "main": "../../bundles/daffodil-design-navbar-examples.umd.js",
4
+ "module": "../../fesm2015/daffodil-design-navbar-examples.js",
5
+ "es2015": "../../fesm2015/daffodil-design-navbar-examples.js",
6
+ "esm2015": "../../esm2015/navbar/examples/daffodil-design-navbar-examples.js",
7
+ "fesm2015": "../../fesm2015/daffodil-design-navbar-examples.js",
8
+ "typings": "daffodil-design-navbar-examples.d.ts",
9
+ "metadata": "daffodil-design-navbar-examples.metadata.json",
10
+ "sideEffects": false
11
+ }
@@ -0,0 +1,9 @@
1
+ export { BasicNavbarComponent } from './basic-navbar/basic-navbar.component';
2
+ export { BasicNavbarModule } from './basic-navbar/basic-navbar.module';
3
+ export { ContainedNavbarComponent } from './contained-navbar/contained-navbar.component';
4
+ export { ContainedNavbarModule } from './contained-navbar/contained-navbar.module';
5
+ export { NavbarThemingComponent } from './navbar-theming/navbar-theming.component';
6
+ export { NavbarThemingModule } from './navbar-theming/navbar-theming.module';
7
+ export { RaisedNavbarComponent } from './raised-navbar/raised-navbar.component';
8
+ export { RaisedNavbarModule } from './raised-navbar/raised-navbar.module';
9
+ export { NAVBAR_EXAMPLES } from './examples';
@@ -0,0 +1,2 @@
1
+ export declare class RaisedNavbarComponent {
2
+ }
@@ -0,0 +1,2 @@
1
+ export declare class RaisedNavbarModule {
2
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@daffodil/design",
3
- "version": "0.39.8",
3
+ "version": "0.39.12",
4
4
  "author": "Graycore LLC",
5
5
  "license": "MIT",
6
6
  "bugs": {
@@ -24,7 +24,7 @@
24
24
  "rxjs": "6.6.3"
25
25
  },
26
26
  "optionalDependencies": {
27
- "faker": "^5.5.3"
27
+ "@faker-js/faker": "^5.5.3"
28
28
  },
29
29
  "main": "bundles/daffodil-design.umd.js",
30
30
  "module": "fesm2015/daffodil-design.js",