@covalent/components 6.0.1 → 6.0.3

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 (193) hide show
  1. package/action-ribbon.mjs +9 -7
  2. package/alert.mjs +13 -11
  3. package/app-shell.mjs +10 -4
  4. package/aria-property.mjs +41 -0
  5. package/base-element.mjs +28 -0
  6. package/button.mjs +180 -13
  7. package/card.mjs +3 -3
  8. package/check-list-item.mjs +92 -14
  9. package/checkbox.mjs +26 -14
  10. package/circular-progress.mjs +144 -10
  11. package/class-map.mjs +62 -0
  12. package/code-snippet.mjs +6 -5
  13. package/covalent.mjs +2 -2
  14. package/covalent.umd.js +3339 -137
  15. package/dialog.mjs +750 -15
  16. package/directive-helpers.mjs +11 -0
  17. package/drawer.mjs +26 -15
  18. package/empty-state.mjs +4 -4
  19. package/event-options.mjs +14 -0
  20. package/form-element.mjs +50 -0
  21. package/foundation.mjs +152 -0
  22. package/foundation2.mjs +60 -0
  23. package/icon-button.mjs +130 -15
  24. package/icon-check-toggle.mjs +18 -8
  25. package/icon-radio-toggle.mjs +29 -18
  26. package/icon.mjs +19 -13
  27. package/if-defined.mjs +10 -0
  28. package/inert.esm.mjs +640 -0
  29. package/linear-progress.mjs +178 -15
  30. package/list-expansion.mjs +33 -22
  31. package/list-item.mjs +19 -20
  32. package/list.mjs +26 -13
  33. package/menu.mjs +32 -13
  34. package/mwc-checkbox-base.mjs +198 -0
  35. package/mwc-checkbox.css.mjs +10 -0
  36. package/mwc-drawer-base.mjs +335 -0
  37. package/mwc-icon.mjs +26 -0
  38. package/mwc-line-ripple-directive.mjs +653 -0
  39. package/mwc-list-base.mjs +840 -0
  40. package/mwc-list-item-base.mjs +202 -0
  41. package/mwc-list-item.css.mjs +17 -0
  42. package/mwc-menu-base.mjs +1145 -0
  43. package/mwc-radio-base.mjs +528 -0
  44. package/mwc-radio.css.mjs +10 -0
  45. package/mwc-slider.css.mjs +956 -0
  46. package/mwc-tab-base.mjs +694 -0
  47. package/mwc-top-app-bar-base.mjs +380 -0
  48. package/nav-list-item.mjs +28 -20
  49. package/observer.mjs +32 -0
  50. package/package.json +9 -2
  51. package/property.mjs +20 -0
  52. package/query-assigned-elements.mjs +615 -0
  53. package/query-assigned-nodes.mjs +17 -0
  54. package/query.mjs +25 -0
  55. package/radio-list-item.mjs +93 -12
  56. package/radio.mjs +28 -15
  57. package/ripple-handlers.mjs +761 -0
  58. package/select.mjs +1257 -15
  59. package/side-sheet.mjs +21 -16
  60. package/slider-range.mjs +438 -11
  61. package/slider.mjs +253 -13
  62. package/snackbar.mjs +456 -15
  63. package/src/action-ribbon/action-ribbon-base.d.ts +30 -0
  64. package/src/action-ribbon/action-ribbon-base.d.ts.map +1 -0
  65. package/src/action-ribbon/action-ribbon.d.ts +15 -0
  66. package/src/action-ribbon/action-ribbon.d.ts.map +1 -0
  67. package/src/alert/alert-base.d.ts +31 -0
  68. package/src/alert/alert-base.d.ts.map +1 -0
  69. package/src/alert/alert.d.ts +15 -0
  70. package/src/alert/alert.d.ts.map +1 -0
  71. package/src/app-shell/app-shell.d.ts +26 -0
  72. package/src/app-shell/app-shell.d.ts.map +1 -0
  73. package/src/button/button.d.ts +10 -0
  74. package/src/button/button.d.ts.map +1 -0
  75. package/src/card/card-base.d.ts +25 -0
  76. package/src/card/card-base.d.ts.map +1 -0
  77. package/src/card/card.d.ts +10 -0
  78. package/src/card/card.d.ts.map +1 -0
  79. package/src/checkbox/checkbox.d.ts +10 -0
  80. package/src/checkbox/checkbox.d.ts.map +1 -0
  81. package/src/chips/chip-base.d.ts +52 -0
  82. package/src/chips/chip-base.d.ts.map +1 -0
  83. package/src/chips/chip-set-base.d.ts +33 -0
  84. package/src/chips/chip-set-base.d.ts.map +1 -0
  85. package/src/chips/chip-set.d.ts +15 -0
  86. package/src/chips/chip-set.d.ts.map +1 -0
  87. package/src/chips/chip.d.ts +15 -0
  88. package/src/chips/chip.d.ts.map +1 -0
  89. package/src/chips/foundation.d.ts +60 -0
  90. package/src/chips/foundation.d.ts.map +1 -0
  91. package/src/circular-progress/circular-progress.d.ts +10 -0
  92. package/src/circular-progress/circular-progress.d.ts.map +1 -0
  93. package/src/code-snippet/code-snippet.d.ts +21 -0
  94. package/src/code-snippet/code-snippet.d.ts.map +1 -0
  95. package/src/dialog/dialog.d.ts +10 -0
  96. package/src/dialog/dialog.d.ts.map +1 -0
  97. package/src/drawer/drawer.d.ts +10 -0
  98. package/src/drawer/drawer.d.ts.map +1 -0
  99. package/src/empty-state/empty-state.d.ts +16 -0
  100. package/src/empty-state/empty-state.d.ts.map +1 -0
  101. package/src/formfield/formfield.d.ts +10 -0
  102. package/src/formfield/formfield.d.ts.map +1 -0
  103. package/src/icon/icon.d.ts +10 -0
  104. package/src/icon/icon.d.ts.map +1 -0
  105. package/src/icon-button/icon-button.d.ts +10 -0
  106. package/src/icon-button/icon-button.d.ts.map +1 -0
  107. package/src/icon-checkbox/icon-check-toggle.d.ts +15 -0
  108. package/src/icon-checkbox/icon-check-toggle.d.ts.map +1 -0
  109. package/src/icon-radio/icon-radio-toggle.d.ts +14 -0
  110. package/src/icon-radio/icon-radio-toggle.d.ts.map +1 -0
  111. package/src/index.d.ts +3 -0
  112. package/src/index.d.ts.map +1 -0
  113. package/src/linear-progress/linear-progress.d.ts +10 -0
  114. package/src/linear-progress/linear-progress.d.ts.map +1 -0
  115. package/src/list/check-list-item.d.ts +10 -0
  116. package/src/list/check-list-item.d.ts.map +1 -0
  117. package/src/list/list-expansion.d.ts +18 -0
  118. package/src/list/list-expansion.d.ts.map +1 -0
  119. package/src/list/list-item.d.ts +12 -0
  120. package/src/list/list-item.d.ts.map +1 -0
  121. package/src/list/list.d.ts +10 -0
  122. package/src/list/list.d.ts.map +1 -0
  123. package/src/list/nav-list-item.d.ts +12 -0
  124. package/src/list/nav-list-item.d.ts.map +1 -0
  125. package/src/list/radio-list-item.d.ts +10 -0
  126. package/src/list/radio-list-item.d.ts.map +1 -0
  127. package/src/menu/menu.d.ts +10 -0
  128. package/src/menu/menu.d.ts.map +1 -0
  129. package/src/radio/radio.d.ts +10 -0
  130. package/src/radio/radio.d.ts.map +1 -0
  131. package/src/select/select.d.ts +10 -0
  132. package/src/select/select.d.ts.map +1 -0
  133. package/src/side-sheet/side-sheet.d.ts +18 -0
  134. package/src/side-sheet/side-sheet.d.ts.map +1 -0
  135. package/src/slider/slider-range.d.ts +10 -0
  136. package/src/slider/slider-range.d.ts.map +1 -0
  137. package/src/slider/slider.d.ts +10 -0
  138. package/src/slider/slider.d.ts.map +1 -0
  139. package/src/snackbar/snackbar.d.ts +10 -0
  140. package/src/snackbar/snackbar.d.ts.map +1 -0
  141. package/src/status-header/status-header-base.d.ts +9 -0
  142. package/src/status-header/status-header-base.d.ts.map +1 -0
  143. package/src/status-header/status-header-item.d.ts +17 -0
  144. package/src/status-header/status-header-item.d.ts.map +1 -0
  145. package/src/status-header/status-header.d.ts +15 -0
  146. package/src/status-header/status-header.d.ts.map +1 -0
  147. package/src/switch/switch.d.ts +10 -0
  148. package/src/switch/switch.d.ts.map +1 -0
  149. package/src/tab/tab-bar.d.ts +10 -0
  150. package/src/tab/tab-bar.d.ts.map +1 -0
  151. package/src/tab/tab.d.ts +10 -0
  152. package/src/tab/tab.d.ts.map +1 -0
  153. package/src/text-lockup/text-lockup.d.ts +17 -0
  154. package/src/text-lockup/text-lockup.d.ts.map +1 -0
  155. package/src/textarea/textarea.d.ts +10 -0
  156. package/src/textarea/textarea.d.ts.map +1 -0
  157. package/src/textfield/textfield.d.ts +10 -0
  158. package/src/textfield/textfield.d.ts.map +1 -0
  159. package/src/toolbar/toolbar.d.ts +10 -0
  160. package/src/toolbar/toolbar.d.ts.map +1 -0
  161. package/src/tooltip/tooltip.d.ts +27 -0
  162. package/src/tooltip/tooltip.d.ts.map +1 -0
  163. package/src/top-app-bar/top-app-bar-fixed.d.ts +10 -0
  164. package/src/top-app-bar/top-app-bar-fixed.d.ts.map +1 -0
  165. package/src/top-app-bar/top-app-bar.d.ts +10 -0
  166. package/src/top-app-bar/top-app-bar.d.ts.map +1 -0
  167. package/src/tree-list/tree-list-item.d.ts +16 -0
  168. package/src/tree-list/tree-list-item.d.ts.map +1 -0
  169. package/src/tree-list/tree-list.d.ts +11 -0
  170. package/src/tree-list/tree-list.d.ts.map +1 -0
  171. package/src/typography/typography.d.ts +12 -0
  172. package/src/typography/typography.d.ts.map +1 -0
  173. package/state.mjs +12 -0
  174. package/status-header-item.mjs +16 -16
  175. package/status-header.mjs +5 -5
  176. package/style-map.mjs +40 -0
  177. package/switch.mjs +531 -15
  178. package/tab-bar.mjs +1030 -13
  179. package/tab.mjs +29 -15
  180. package/text-lockup.mjs +8 -8
  181. package/textarea.mjs +111 -16
  182. package/textfield.mjs +34 -18
  183. package/textfield2.mjs +929 -2
  184. package/toolbar.mjs +8 -3
  185. package/tooltip.mjs +1153 -96
  186. package/top-app-bar-fixed.mjs +78 -18
  187. package/top-app-bar.mjs +19 -15
  188. package/top-app-bar2.mjs +9 -2
  189. package/tree-list-item.mjs +3 -3
  190. package/tree-list.mjs +6 -7
  191. package/tslib.es6.mjs +82 -0
  192. package/typography.mjs +8 -8
  193. package/utils.mjs +52 -0
@@ -0,0 +1,25 @@
1
+ import { LitElement } from 'lit';
2
+ export declare class CardBase extends LitElement {
3
+ /**
4
+ * The title of the card
5
+ */
6
+ cardTitle: string;
7
+ /**
8
+ * The sub-title of the card
9
+ */
10
+ subTitle: string;
11
+ /**
12
+ * Displays the action bar
13
+ */
14
+ actionBar: boolean;
15
+ /**
16
+ * Displays the ripple affect in primary area
17
+ */
18
+ interactive: boolean;
19
+ /**
20
+ * Style the card as an outline variant
21
+ */
22
+ outlined: boolean;
23
+ render(): import("lit-html").TemplateResult<1>;
24
+ }
25
+ //# sourceMappingURL=card-base.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"card-base.d.ts","sourceRoot":"","sources":["../../../../../libs/components/src/card/card-base.ts"],"names":[],"mappings":"AAAA,OAAO,EAAQ,UAAU,EAAE,MAAM,KAAK,CAAC;AAIvC,qBAAa,QAAS,SAAQ,UAAU;IACtC;;OAEG;IAEH,SAAS,SAAM;IAEf;;OAEG;IAEH,QAAQ,SAAM;IACd;;OAEG;IAC0B,SAAS,UAAS;IAC/C;;OAEG;IAC0B,WAAW,UAAS;IACjD;;OAEG;IAC0B,QAAQ,UAAS;IACrC,MAAM;CA0BhB"}
@@ -0,0 +1,10 @@
1
+ import { CardBase } from './card-base';
2
+ declare global {
3
+ interface HTMLElementTagNameMap {
4
+ 'cv-card': CovalentCardBase;
5
+ }
6
+ }
7
+ export declare class CovalentCardBase extends CardBase {
8
+ static styles: import("lit").CSSResult[];
9
+ }
10
+ //# sourceMappingURL=card.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"card.d.ts","sourceRoot":"","sources":["../../../../../libs/components/src/card/card.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,QAAQ,EAAE,MAAM,aAAa,CAAC;AAGvC,OAAO,CAAC,MAAM,CAAC;IACb,UAAU,qBAAqB;QAC7B,SAAS,EAAE,gBAAgB,CAAC;KAC7B;CACF;AAED,qBACa,gBAAiB,SAAQ,QAAQ;IAC5C,OAAgB,MAAM,4BAIpB;CACH"}
@@ -0,0 +1,10 @@
1
+ import { CheckboxBase } from '@material/mwc-checkbox/mwc-checkbox-base';
2
+ declare global {
3
+ interface HTMLElementTagNameMap {
4
+ 'cv-checkbox': CovalentCheckboxBase;
5
+ }
6
+ }
7
+ export declare class CovalentCheckboxBase extends CheckboxBase {
8
+ static styles: import("lit").CSSResult[];
9
+ }
10
+ //# sourceMappingURL=checkbox.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"checkbox.d.ts","sourceRoot":"","sources":["../../../../../libs/components/src/checkbox/checkbox.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,YAAY,EAAE,MAAM,0CAA0C,CAAC;AAIxE,OAAO,CAAC,MAAM,CAAC;IACb,UAAU,qBAAqB;QAC7B,aAAa,EAAE,oBAAoB,CAAC;KACrC;CACF;AAED,qBACa,oBAAqB,SAAQ,YAAY;IACpD,OAAgB,MAAM,4BAA2C;CAClE"}
@@ -0,0 +1,52 @@
1
+ import { MDCChipFoundation } from '@material/chips/chip/foundation';
2
+ import { MDCChipAnimation } from '@material/chips/chip/constants';
3
+ import { MDCChipAction } from '@material/chips/action';
4
+ import { MDCChipActionFocusBehavior, MDCChipActionType } from '@material/chips/action/constants';
5
+ import { MDCChipAdapter } from '@material/chips/chip/adapter';
6
+ import { LitElement } from 'lit';
7
+ export declare class ChipBase extends LitElement {
8
+ protected mdcFoundation?: MDCChipFoundation;
9
+ protected readonly mdcFoundationClass: typeof MDCChipFoundation;
10
+ protected actions: Map<MDCChipActionType, MDCChipAction>;
11
+ protected chipId: number;
12
+ protected mdcRoot: HTMLElement;
13
+ /**
14
+ * The text label of the chip
15
+ */
16
+ label: string;
17
+ /**
18
+ * The icon name to use for primary or leading chip
19
+ */
20
+ icon: string;
21
+ trailingIcon: boolean;
22
+ avatar: boolean;
23
+ /**
24
+ * The text label of the chip
25
+ */
26
+ disabled: boolean;
27
+ /**
28
+ * Set the filter chip varient
29
+ */
30
+ filter: boolean;
31
+ /**
32
+ * The state representation secondary|negative|positive|caution
33
+ */
34
+ state?: 'secondary' | 'negative' | 'positive' | 'caution';
35
+ constructor();
36
+ protected render(): import("lit-html").TemplateResult<1>;
37
+ protected firstUpdated(): Promise<void>;
38
+ protected renderGraphic(): import("lit-html").TemplateResult<1>;
39
+ protected renderCheckMark(): import("lit-html").TemplateResult<1>;
40
+ protected renderIcon(trailing?: boolean): import("lit-html").TemplateResult<1>;
41
+ protected renderTrailing(): import("lit-html").TemplateResult<1>;
42
+ protected createAdapter(): MDCChipAdapter;
43
+ getActions(): MDCChipActionType[];
44
+ getElementID(): string;
45
+ isActionFocusable(action: MDCChipActionType): boolean;
46
+ isActionSelectable(action: MDCChipActionType): boolean;
47
+ isActionSelected(action: MDCChipActionType): boolean;
48
+ setActionFocus(action: MDCChipActionType, focus: MDCChipActionFocusBehavior): void | undefined;
49
+ setActionSelected(actionType: MDCChipActionType, isSelected: boolean): void | undefined;
50
+ startAnimation(animation: MDCChipAnimation): void | undefined;
51
+ }
52
+ //# sourceMappingURL=chip-base.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"chip-base.d.ts","sourceRoot":"","sources":["../../../../../libs/components/src/chips/chip-base.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,iBAAiB,EAAE,MAAM,iCAAiC,CAAC;AACpE,OAAO,EAIL,gBAAgB,EACjB,MAAM,gCAAgC,CAAC;AACxC,OAAO,EAAE,aAAa,EAAuB,MAAM,wBAAwB,CAAC;AAC5E,OAAO,EACL,0BAA0B,EAC1B,iBAAiB,EAClB,MAAM,kCAAkC,CAAC;AAC1C,OAAO,EAAE,cAAc,EAAE,MAAM,8BAA8B,CAAC;AAE9D,OAAO,EAAQ,UAAU,EAAE,MAAM,KAAK,CAAC;AAKvC,qBAAa,QAAS,SAAQ,UAAU;IACtC,SAAS,CAAC,aAAa,CAAC,EAAE,iBAAiB,CAAC;IAC5C,SAAS,CAAC,QAAQ,CAAC,kBAAkB,2BAAqB;IAC1D,SAAS,CAAC,OAAO,EAAG,GAAG,CAAC,iBAAiB,EAAE,aAAa,CAAC,CAAC;IAC1D,SAAS,CAAC,MAAM,EAAG,MAAM,CAAC;IAEI,SAAS,CAAC,OAAO,EAAG,WAAW,CAAC;IAE9D;;OAEG;IAEH,KAAK,SAAM;IAEX;;OAEG;IACyB,IAAI,SAAM;IAEM,YAAY,UAAS;IAErB,MAAM,UAAS;IAE3D;;OAEG;IACyC,QAAQ,UAAS;IAE7D;;OAEG;IACyC,MAAM,UAAS;IAE3D;;OAEG;IAEH,KAAK,CAAC,EAAE,WAAW,GAAG,UAAU,GAAG,UAAU,GAAG,SAAS,CAAC;;cAOvC,MAAM;cA6CA,YAAY;IAyBrC,SAAS,CAAC,aAAa;IASvB,SAAS,CAAC,eAAe;IAYzB,SAAS,CAAC,UAAU,CAAC,QAAQ,UAAQ;IAUrC,SAAS,CAAC,cAAc;IAoBxB,SAAS,CAAC,aAAa,IAAI,cAAc;IA0DzC,UAAU;IAIV,YAAY;IAIZ,iBAAiB,CAAC,MAAM,EAAE,iBAAiB;IAI3C,kBAAkB,CAAC,MAAM,EAAE,iBAAiB;IAI5C,gBAAgB,CAAC,MAAM,EAAE,iBAAiB;IAI1C,cAAc,CAAC,MAAM,EAAE,iBAAiB,EAAE,KAAK,EAAE,0BAA0B;IAI3E,iBAAiB,CAAC,UAAU,EAAE,iBAAiB,EAAE,UAAU,EAAE,OAAO;IAIpE,cAAc,CAAC,SAAS,EAAE,gBAAgB;CAG3C"}
@@ -0,0 +1,33 @@
1
+ import { MDCChipSetAdapter } from '@material/chips/chip-set/adapter';
2
+ import { MDCChipSetFoundation } from '@material/chips/chip-set/foundation';
3
+ import { LitElement, PropertyValues } from 'lit';
4
+ import { CovalentChip } from './chip';
5
+ export declare class ChipSetBase extends LitElement {
6
+ protected mdcFoundation: MDCChipSetFoundation;
7
+ protected mdcRoot: HTMLElement;
8
+ /**
9
+ * Set if the chips are selectable/actionable
10
+ */
11
+ selectable: boolean;
12
+ /**
13
+ * Set the chips are mulit-selectable
14
+ */
15
+ multi: boolean;
16
+ /**
17
+ * The arial label for the the chip set
18
+ */
19
+ label: string;
20
+ activeIndex: number;
21
+ protected _previousActiveIndex: number;
22
+ protected chips: CovalentChip[];
23
+ render(): import("lit-html").TemplateResult<1>;
24
+ protected updated(changedProps: PropertyValues): Promise<void>;
25
+ protected firstUpdated(changedProps: PropertyValues): void;
26
+ connectedCallback(): void;
27
+ disconnectedCallback(): void;
28
+ protected createAdapter(): MDCChipSetAdapter;
29
+ private _handleChipAnimation;
30
+ private _handleChipInteraction;
31
+ private _handleChipNavigation;
32
+ }
33
+ //# sourceMappingURL=chip-set-base.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"chip-set-base.d.ts","sourceRoot":"","sources":["../../../../../libs/components/src/chips/chip-set-base.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAE,MAAM,kCAAkC,CAAC;AAgBrE,OAAO,EAAE,oBAAoB,EAAE,MAAM,qCAAqC,CAAC;AAG3E,OAAO,EAAQ,UAAU,EAAE,cAAc,EAAE,MAAM,KAAK,CAAC;AACvD,OAAO,EAAE,YAAY,EAAE,MAAM,QAAQ,CAAC;AAEtC,qBAAa,WAAY,SAAQ,UAAU;IACzC,SAAS,CAAC,aAAa,EAAG,oBAAoB,CAAC;IAEb,SAAS,CAAC,OAAO,EAAG,WAAW,CAAC;IAElE;;OAEG;IACyC,UAAU,UAAS;IAE/D;;OAEG;IACyC,KAAK,UAAS;IAE1D;;OAEG;IAEH,KAAK,SAAM;IAEiB,WAAW,SAAK;IAE5C,SAAS,CAAC,oBAAoB,SAAM;IAEpC,SAAS,CAAC,KAAK,EAAE,YAAY,EAAE,CAAM;IAE5B,MAAM;cAaU,OAAO,CAAC,YAAY,EAAE,cAAc;cAY1C,YAAY,CAAC,YAAY,EAAE,cAAc;IAmBnD,iBAAiB,IAAI,IAAI;IAUzB,oBAAoB,IAAI,IAAI;IAgBrC,SAAS,CAAC,aAAa,IAAI,iBAAiB;IAqD5C,OAAO,CAAC,oBAAoB;IAI5B,OAAO,CAAC,sBAAsB;IAI9B,OAAO,CAAC,qBAAqB;CAG9B"}
@@ -0,0 +1,15 @@
1
+ import { ChipSetBase } from './chip-set-base';
2
+ /**
3
+ * Action ribbon
4
+ *
5
+ * @slot - This element has a slot
6
+ */
7
+ export declare class CovalentChipSet extends ChipSetBase {
8
+ static styles: import("lit").CSSResult[];
9
+ }
10
+ declare global {
11
+ interface HTMLElementTagNameMap {
12
+ 'cv-chip-set': CovalentChipSet;
13
+ }
14
+ }
15
+ //# sourceMappingURL=chip-set.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"chip-set.d.ts","sourceRoot":"","sources":["../../../../../libs/components/src/chips/chip-set.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,WAAW,EAAE,MAAM,iBAAiB,CAAC;AAG9C;;;;GAIG;AACH,qBACa,eAAgB,SAAQ,WAAW;IAC9C,OAAgB,MAAM,4BAIpB;CACH;AAED,OAAO,CAAC,MAAM,CAAC;IACb,UAAU,qBAAqB;QAC7B,aAAa,EAAE,eAAe,CAAC;KAChC;CACF"}
@@ -0,0 +1,15 @@
1
+ import { ChipBase } from './chip-base';
2
+ /**
3
+ * Action ribbon
4
+ *
5
+ * @slot - This element has a slot
6
+ */
7
+ export declare class CovalentChip extends ChipBase {
8
+ static styles: import("lit").CSSResult[];
9
+ }
10
+ declare global {
11
+ interface HTMLElementTagNameMap {
12
+ 'cv-chip': CovalentChip;
13
+ }
14
+ }
15
+ //# sourceMappingURL=chip.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"chip.d.ts","sourceRoot":"","sources":["../../../../../libs/components/src/chips/chip.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,QAAQ,EAAE,MAAM,aAAa,CAAC;AAGvC;;;;GAIG;AACH,qBACa,YAAa,SAAQ,QAAQ;IACxC,OAAgB,MAAM,4BAIpB;CACH;AAED,OAAO,CAAC,MAAM,CAAC;IACb,UAAU,qBAAqB;QAC7B,SAAS,EAAE,YAAY,CAAC;KACzB;CACF"}
@@ -0,0 +1,60 @@
1
+ /**
2
+ * @license
3
+ * Copyright 2020 Google Inc.
4
+ *
5
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ * of this software and associated documentation files (the "Software"), to deal
7
+ * in the Software without restriction, including without limitation the rights
8
+ * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ * copies of the Software, and to permit persons to whom the Software is
10
+ * furnished to do so, subject to the following conditions:
11
+ *
12
+ * The above copyright notice and this permission notice shall be included in
13
+ * all copies or substantial portions of the Software.
14
+ *
15
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ * THE SOFTWARE.
22
+ */
23
+ import { MDCFoundation } from '@material/base/foundation';
24
+ import { MDCChipActionType, MDCChipActionFocusBehavior } from '@material/chips/action/constants';
25
+ import { MDCChipAdapter } from '@material/chips/chip/adapter';
26
+ import { MDCChipAnimation } from '@material/chips/chip/constants';
27
+ import { ActionInteractionEvent, ActionNavigationEvent } from '@material/chips/chip/types';
28
+ /**
29
+ * MDCChipFoundation provides a foundation for all chips.
30
+ */
31
+ export declare class MDCChipFoundation extends MDCFoundation<MDCChipAdapter> {
32
+ static get defaultAdapter(): MDCChipAdapter;
33
+ private readonly animFrame;
34
+ constructor(adapter?: Partial<MDCChipAdapter>);
35
+ destroy(): void;
36
+ getElementID(): string;
37
+ setDisabled(isDisabled: boolean): void;
38
+ isDisabled(): boolean;
39
+ getActions(): MDCChipActionType[];
40
+ isActionFocusable(action: MDCChipActionType): boolean;
41
+ isActionSelectable(action: MDCChipActionType): boolean;
42
+ isActionSelected(action: MDCChipActionType): boolean;
43
+ setActionFocus(action: MDCChipActionType, focus: MDCChipActionFocusBehavior): void;
44
+ setActionSelected(action: MDCChipActionType, isSelected: boolean): void;
45
+ startAnimation(animation: MDCChipAnimation): void;
46
+ handleAnimationEnd(event: AnimationEvent): void;
47
+ handleTransitionEnd(): void;
48
+ handleActionInteraction({ detail }: ActionInteractionEvent): void;
49
+ handleActionNavigation({ detail }: ActionNavigationEvent): void;
50
+ private directionFromKey;
51
+ private navigateActions;
52
+ private shouldRemove;
53
+ private getRemovedAnnouncement;
54
+ private getAddedAnnouncement;
55
+ private animateSelection;
56
+ private resetAnimationStyles;
57
+ private updateSelectionStyles;
58
+ }
59
+ export default MDCChipFoundation;
60
+ //# sourceMappingURL=foundation.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"foundation.d.ts","sourceRoot":"","sources":["../../../../../libs/components/src/chips/foundation.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;GAqBG;AAGH,OAAO,EAAE,aAAa,EAAE,MAAM,2BAA2B,CAAC;AAG1D,OAAO,EACL,iBAAiB,EACjB,0BAA0B,EAE3B,MAAM,kCAAkC,CAAC;AAG1C,OAAO,EAAE,cAAc,EAAE,MAAM,8BAA8B,CAAC;AAC9D,OAAO,EACL,gBAAgB,EAIjB,MAAM,gCAAgC,CAAC;AACxC,OAAO,EACL,sBAAsB,EACtB,qBAAqB,EAItB,MAAM,4BAA4B,CAAC;AAkBpC;;GAEG;AACH,qBAAa,iBAAkB,SAAQ,aAAa,CAAC,cAAc,CAAC;IAClE,WAAoB,cAAc,IAAI,cAAc,CAoBnD;IAED,OAAO,CAAC,QAAQ,CAAC,SAAS,CAAiB;gBAE/B,OAAO,CAAC,EAAE,OAAO,CAAC,cAAc,CAAC;IAKpC,OAAO;IAIhB,YAAY;IAIZ,WAAW,CAAC,UAAU,EAAE,OAAO;IAa/B,UAAU,IAAI,OAAO;IAUrB,UAAU,IAAI,iBAAiB,EAAE;IAIjC,iBAAiB,CAAC,MAAM,EAAE,iBAAiB,GAAG,OAAO;IAIrD,kBAAkB,CAAC,MAAM,EAAE,iBAAiB,GAAG,OAAO;IAItD,gBAAgB,CAAC,MAAM,EAAE,iBAAiB,GAAG,OAAO;IAIpD,cAAc,CAAC,MAAM,EAAE,iBAAiB,EAAE,KAAK,EAAE,0BAA0B;IAI3E,iBAAiB,CAAC,MAAM,EAAE,iBAAiB,EAAE,UAAU,EAAE,OAAO;IAKhE,cAAc,CAAC,SAAS,EAAE,gBAAgB;IAY1C,kBAAkB,CAAC,KAAK,EAAE,cAAc;IA8BxC,mBAAmB;IAcnB,uBAAuB,CAAC,EAAE,MAAM,EAAE,EAAE,sBAAsB;IAkB1D,sBAAsB,CAAC,EAAE,MAAM,EAAE,EAAE,qBAAqB;IA0CxD,OAAO,CAAC,gBAAgB;IAcxB,OAAO,CAAC,eAAe;IAWvB,OAAO,CAAC,YAAY;IAcpB,OAAO,CAAC,sBAAsB;IAO9B,OAAO,CAAC,oBAAoB;IAO5B,OAAO,CAAC,gBAAgB;IAUxB,OAAO,CAAC,oBAAoB;IAO5B,OAAO,CAAC,qBAAqB;CAkC9B;AAGD,eAAe,iBAAiB,CAAC"}
@@ -0,0 +1,10 @@
1
+ import { CircularProgressBase } from '@material/mwc-circular-progress/mwc-circular-progress-base';
2
+ declare global {
3
+ interface HTMLElementTagNameMap {
4
+ 'cv-circular-progress': CovalentCircularProgressBase;
5
+ }
6
+ }
7
+ export declare class CovalentCircularProgressBase extends CircularProgressBase {
8
+ static styles: import("lit").CSSResult[];
9
+ }
10
+ //# sourceMappingURL=circular-progress.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"circular-progress.d.ts","sourceRoot":"","sources":["../../../../../libs/components/src/circular-progress/circular-progress.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,oBAAoB,EAAE,MAAM,4DAA4D,CAAC;AAIlG,OAAO,CAAC,MAAM,CAAC;IACb,UAAU,qBAAqB;QAC7B,sBAAsB,EAAE,4BAA4B,CAAC;KACtD;CACF;AAED,qBACa,4BAA6B,SAAQ,oBAAoB;IACpE,OAAgB,MAAM,4BAAY;CACnC"}
@@ -0,0 +1,21 @@
1
+ import { LitElement } from 'lit';
2
+ declare global {
3
+ interface HTMLElementTagNameMap {
4
+ 'cv-code-snippet': CovalentCodeSnippetBase;
5
+ }
6
+ }
7
+ export declare class CovalentCodeSnippetBase extends LitElement {
8
+ static styles: import("lit").CSSResult[];
9
+ language?: string;
10
+ label?: string;
11
+ inline: boolean;
12
+ hideHeader: boolean;
13
+ _codeItems: Array<Node>;
14
+ maxHeight?: number;
15
+ _code: string;
16
+ firstUpdated(): void;
17
+ render(): import("lit-html").TemplateResult<1>;
18
+ renderContainer(): import("lit-html").TemplateResult<1>;
19
+ renderHeader(): import("lit-html").TemplateResult<1>;
20
+ }
21
+ //# sourceMappingURL=code-snippet.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"code-snippet.d.ts","sourceRoot":"","sources":["../../../../../libs/components/src/code-snippet/code-snippet.ts"],"names":[],"mappings":"AAAA,OAAO,EAAO,UAAU,EAAmB,MAAM,KAAK,CAAC;AAMvD,OAAO,CAAC,MAAM,CAAC;IACb,UAAU,qBAAqB;QAC7B,iBAAiB,EAAE,uBAAuB,CAAC;KAC5C;CACF;AAED,qBACa,uBAAwB,SAAQ,UAAU;IACrD,OAAgB,MAAM,4BAIpB;IAGF,QAAQ,CAAC,EAAE,MAAM,CAAC;IAGlB,KAAK,CAAC,EAAE,MAAM,CAAC;IAGf,MAAM,UAAS;IAGf,UAAU,UAAS;IAGnB,UAAU,EAAG,KAAK,CAAC,IAAI,CAAC,CAAC;IAGzB,SAAS,CAAC,EAAE,MAAM,CAAC;IAEnB,KAAK,SAAM;IAEX,YAAY;IASH,MAAM;IAQf,eAAe;IAqBf,YAAY;CAMb"}
@@ -0,0 +1,10 @@
1
+ import { DialogBase } from '@material/mwc-dialog/mwc-dialog-base';
2
+ declare global {
3
+ interface HTMLElementTagNameMap {
4
+ 'cv-dialog': CovalentDialogBase;
5
+ }
6
+ }
7
+ export declare class CovalentDialogBase extends DialogBase {
8
+ static styles: import("lit").CSSResult[];
9
+ }
10
+ //# sourceMappingURL=dialog.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"dialog.d.ts","sourceRoot":"","sources":["../../../../../libs/components/src/dialog/dialog.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,UAAU,EAAE,MAAM,sCAAsC,CAAC;AAIlE,OAAO,CAAC,MAAM,CAAC;IACb,UAAU,qBAAqB;QAC7B,WAAW,EAAE,kBAAkB,CAAC;KACjC;CACF;AAED,qBACa,kBAAmB,SAAQ,UAAU;IAChD,OAAgB,MAAM,4BAA2C;CAClE"}
@@ -0,0 +1,10 @@
1
+ import { DrawerBase } from '@material/mwc-drawer/mwc-drawer-base';
2
+ declare global {
3
+ interface HTMLElementTagNameMap {
4
+ 'cv-drawer': CovalentDrawerBase;
5
+ }
6
+ }
7
+ export declare class CovalentDrawerBase extends DrawerBase {
8
+ static styles: import("lit").CSSResult[];
9
+ }
10
+ //# sourceMappingURL=drawer.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"drawer.d.ts","sourceRoot":"","sources":["../../../../../libs/components/src/drawer/drawer.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,UAAU,EAAE,MAAM,sCAAsC,CAAC;AAIlE,OAAO,CAAC,MAAM,CAAC;IACb,UAAU,qBAAqB;QAC7B,WAAW,EAAE,kBAAkB,CAAC;KACjC;CACF;AAED,qBACa,kBAAmB,SAAQ,UAAU;IAChD,OAAgB,MAAM,4BAA2C;CAClE"}
@@ -0,0 +1,16 @@
1
+ import { LitElement } from 'lit';
2
+ import '../icon/icon';
3
+ declare global {
4
+ interface HTMLElementTagNameMap {
5
+ 'cv-empty-state': CovalentEmptyStateBase;
6
+ }
7
+ }
8
+ export declare class CovalentEmptyStateBase extends LitElement {
9
+ static styles: import("lit").CSSResult[];
10
+ headline: string;
11
+ subtitle: string;
12
+ icon: string;
13
+ card: boolean;
14
+ render(): import("lit-html").TemplateResult<1>;
15
+ }
16
+ //# sourceMappingURL=empty-state.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"empty-state.d.ts","sourceRoot":"","sources":["../../../../../libs/components/src/empty-state/empty-state.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,UAAU,EAAQ,MAAM,KAAK,CAAC;AAGvC,OAAO,cAAc,CAAC;AAEtB,OAAO,CAAC,MAAM,CAAC;IACb,UAAU,qBAAqB;QAC7B,gBAAgB,EAAE,sBAAsB,CAAC;KAC1C;CACF;AAED,qBACa,sBAAuB,SAAQ,UAAU;IACpD,OAAgB,MAAM,4BAIpB;IAE0B,QAAQ,SAAM;IACd,QAAQ,SAAM;IACd,IAAI,SAAM;IACT,IAAI,UAAS;IACjC,MAAM;CAkChB"}
@@ -0,0 +1,10 @@
1
+ import { FormfieldBase } from '@material/mwc-formfield/mwc-formfield-base';
2
+ declare global {
3
+ interface HTMLElementTagNameMap {
4
+ 'cv-formfield': CovalentFormfieldBase;
5
+ }
6
+ }
7
+ export declare class CovalentFormfieldBase extends FormfieldBase {
8
+ static styles: import("lit").CSSResult[];
9
+ }
10
+ //# sourceMappingURL=formfield.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"formfield.d.ts","sourceRoot":"","sources":["../../../../../libs/components/src/formfield/formfield.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,aAAa,EAAE,MAAM,4CAA4C,CAAC;AAM3E,OAAO,CAAC,MAAM,CAAC;IACb,UAAU,qBAAqB;QAC7B,cAAc,EAAE,qBAAqB,CAAC;KACvC;CACF;AAED,qBACa,qBAAsB,SAAQ,aAAa;IACtD,OAAgB,MAAM,4BAKpB;CACH"}
@@ -0,0 +1,10 @@
1
+ import { Icon } from '@material/mwc-icon/mwc-icon';
2
+ declare global {
3
+ interface HTMLElementTagNameMap {
4
+ 'cv-icon': CovalentIcon;
5
+ }
6
+ }
7
+ export declare class CovalentIcon extends Icon {
8
+ static styles: import("lit").CSSResult[];
9
+ }
10
+ //# sourceMappingURL=icon.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"icon.d.ts","sourceRoot":"","sources":["../../../../../libs/components/src/icon/icon.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,6BAA6B,CAAC;AAInD,OAAO,CAAC,MAAM,CAAC;IACb,UAAU,qBAAqB;QAC7B,SAAS,EAAE,YAAY,CAAC;KACzB;CACF;AAED,qBACa,YAAa,SAAQ,IAAI;IACpC,OAAgB,MAAM,4BAAY;CACnC"}
@@ -0,0 +1,10 @@
1
+ import { IconButtonBase } from '@material/mwc-icon-button/mwc-icon-button-base';
2
+ declare global {
3
+ interface HTMLElementTagNameMap {
4
+ 'cv-icon-button': CovalentIconButtonBase;
5
+ }
6
+ }
7
+ export declare class CovalentIconButtonBase extends IconButtonBase {
8
+ static styles: import("lit").CSSResult[];
9
+ }
10
+ //# sourceMappingURL=icon-button.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"icon-button.d.ts","sourceRoot":"","sources":["../../../../../libs/components/src/icon-button/icon-button.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,cAAc,EAAE,MAAM,gDAAgD,CAAC;AAIhF,OAAO,CAAC,MAAM,CAAC;IACb,UAAU,qBAAqB;QAC7B,gBAAgB,EAAE,sBAAsB,CAAC;KAC1C;CACF;AAED,qBACa,sBAAuB,SAAQ,cAAc;IACxD,OAAgB,MAAM,4BAA2C;CAClE"}
@@ -0,0 +1,15 @@
1
+ import { CheckboxBase } from '@material/mwc-checkbox/mwc-checkbox-base';
2
+ declare global {
3
+ interface HTMLElementTagNameMap {
4
+ 'cv-icon-check-item': CovalentIconCheckToggleBase;
5
+ }
6
+ }
7
+ export declare class CovalentIconCheckToggleBase extends CheckboxBase {
8
+ static styles: import("lit").CSSResult[];
9
+ width: number | string;
10
+ height: number | string;
11
+ iconOnly: boolean;
12
+ render(): import("lit-html").TemplateResult<1>;
13
+ private _handleClick;
14
+ }
15
+ //# sourceMappingURL=icon-check-toggle.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"icon-check-toggle.d.ts","sourceRoot":"","sources":["../../../../../libs/components/src/icon-checkbox/icon-check-toggle.ts"],"names":[],"mappings":"AAIA,OAAO,EAAE,YAAY,EAAE,MAAM,0CAA0C,CAAC;AAIxE,OAAO,CAAC,MAAM,CAAC;IACb,UAAU,qBAAqB;QAC7B,oBAAoB,EAAE,2BAA2B,CAAC;KACnD;CACF;AAED,qBACa,2BAA4B,SAAQ,YAAY;IAC3D,OAAgB,MAAM,4BAKpB;IAEU,KAAK,EAAE,MAAM,GAAG,MAAM,CAAS;IAC/B,MAAM,EAAE,MAAM,GAAG,MAAM,CAAS;IACf,QAAQ,UAAS;IACrC,MAAM;IA+Bf,OAAO,CAAC,YAAY;CAGrB"}
@@ -0,0 +1,14 @@
1
+ import { RadioBase } from '@material/mwc-radio/mwc-radio-base';
2
+ declare global {
3
+ interface HTMLElementTagNameMap {
4
+ 'cv-icon-radio-item': CovalentIconRadioToggleBase;
5
+ }
6
+ }
7
+ export declare class CovalentIconRadioToggleBase extends RadioBase {
8
+ static styles: import("lit").CSSResult[];
9
+ width: number | string;
10
+ height: number | string;
11
+ iconOnly: boolean;
12
+ render(): import("lit-html").TemplateResult<1>;
13
+ }
14
+ //# sourceMappingURL=icon-radio-toggle.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"icon-radio-toggle.d.ts","sourceRoot":"","sources":["../../../../../libs/components/src/icon-radio/icon-radio-toggle.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,SAAS,EAAE,MAAM,oCAAoC,CAAC;AAO/D,OAAO,CAAC,MAAM,CAAC;IACb,UAAU,qBAAqB;QAC7B,oBAAoB,EAAE,2BAA2B,CAAC;KACnD;CACF;AAED,qBACa,2BAA4B,SAAQ,SAAS;IACxD,OAAgB,MAAM,4BAKpB;IAEU,KAAK,EAAE,MAAM,GAAG,MAAM,CAAS;IAC/B,MAAM,EAAE,MAAM,GAAG,MAAM,CAAS;IACf,QAAQ,UAAS;IACrC,MAAM;CAwBhB"}
package/src/index.d.ts ADDED
@@ -0,0 +1,3 @@
1
+ import '../theme/theme.scss?raw';
2
+ export {};
3
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../libs/components/src/index.ts"],"names":[],"mappings":"AA6CA,OAAO,yBAAyB,CAAC;AAEjC,OAAO,EAAE,CAAC"}
@@ -0,0 +1,10 @@
1
+ import { LinearProgressBase } from '@material/mwc-linear-progress/mwc-linear-progress-base';
2
+ declare global {
3
+ interface HTMLElementTagNameMap {
4
+ 'cv-linear-progress': CovalentLinearProgressBase;
5
+ }
6
+ }
7
+ export declare class CovalentLinearProgressBase extends LinearProgressBase {
8
+ static styles: import("lit").CSSResult[];
9
+ }
10
+ //# sourceMappingURL=linear-progress.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"linear-progress.d.ts","sourceRoot":"","sources":["../../../../../libs/components/src/linear-progress/linear-progress.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,kBAAkB,EAAE,MAAM,wDAAwD,CAAC;AAI5F,OAAO,CAAC,MAAM,CAAC;IACb,UAAU,qBAAqB;QAC7B,oBAAoB,EAAE,0BAA0B,CAAC;KAClD;CACF;AAED,qBACa,0BAA2B,SAAQ,kBAAkB;IAChE,OAAgB,MAAM,4BAA2C;CAClE"}
@@ -0,0 +1,10 @@
1
+ import { CheckListItemBase } from '@material/mwc-list/mwc-check-list-item-base';
2
+ declare global {
3
+ interface HTMLElementTagNameMap {
4
+ 'cv-check-list-item': CovalentCheckListItemBase;
5
+ }
6
+ }
7
+ export declare class CovalentCheckListItemBase extends CheckListItemBase {
8
+ static styles: import("lit").CSSResult[];
9
+ }
10
+ //# sourceMappingURL=check-list-item.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"check-list-item.d.ts","sourceRoot":"","sources":["../../../../../libs/components/src/list/check-list-item.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAE,MAAM,6CAA6C,CAAC;AAKhF,OAAO,CAAC,MAAM,CAAC;IACb,UAAU,qBAAqB;QAC7B,oBAAoB,EAAE,yBAAyB,CAAC;KACjD;CACF;AAED,qBACa,yBAA0B,SAAQ,iBAAiB;IAC9D,OAAgB,MAAM,4BAA0B;CACjD"}
@@ -0,0 +1,18 @@
1
+ import { CovalentListBase } from './list';
2
+ import { CovalentListItemBase } from './list-item';
3
+ declare global {
4
+ interface HTMLElementTagNameMap {
5
+ 'cv-expansion-list': CovalentExpansionList;
6
+ }
7
+ }
8
+ export declare class CovalentExpansionList extends CovalentListBase {
9
+ static styles: import("lit").CSSResult[];
10
+ static shadowRootOptions: ShadowRootInit;
11
+ open: boolean;
12
+ navOpen: boolean;
13
+ expansionHeader: CovalentListItemBase[];
14
+ constructor();
15
+ private _toggleOpen;
16
+ render(): import("lit-html").TemplateResult<1>;
17
+ }
18
+ //# sourceMappingURL=list-expansion.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"list-expansion.d.ts","sourceRoot":"","sources":["../../../../../libs/components/src/list/list-expansion.ts"],"names":[],"mappings":"AAOA,OAAO,EAAE,gBAAgB,EAAE,MAAM,QAAQ,CAAC;AAE1C,OAAO,EAAE,oBAAoB,EAAE,MAAM,aAAa,CAAC;AAEnD,OAAO,CAAC,MAAM,CAAC;IACb,UAAU,qBAAqB;QAC7B,mBAAmB,EAAE,qBAAqB,CAAC;KAC5C;CACF;AAED,qBACa,qBAAsB,SAAQ,gBAAgB;IACzD,OAAgB,MAAM,4BAOpB;IACF,OAAgB,iBAAiB,EAAE,cAAc,CAG/C;IAGF,IAAI,UAAS;IAGb,OAAO,UAAS;IAGhB,eAAe,EAAG,oBAAoB,EAAE,CAAC;;IAMzC,OAAO,CAAC,WAAW;IASV,MAAM;CAMhB"}
@@ -0,0 +1,12 @@
1
+ import { ListItemBase } from '@material/mwc-list/mwc-list-item-base';
2
+ declare global {
3
+ interface HTMLElementTagNameMap {
4
+ 'cv-list-item': CovalentListItemBase;
5
+ }
6
+ }
7
+ export declare class CovalentListItemBase extends ListItemBase {
8
+ static styles: import("lit").CSSResult[];
9
+ hasChildren: boolean;
10
+ render(): import("lit-html").TemplateResult<1>;
11
+ }
12
+ //# sourceMappingURL=list-item.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"list-item.d.ts","sourceRoot":"","sources":["../../../../../libs/components/src/list/list-item.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,uCAAuC,CAAC;AASrE,OAAO,CAAC,MAAM,CAAC;IACb,UAAU,qBAAqB;QAC7B,cAAc,EAAE,oBAAoB,CAAC;KACtC;CACF;AAED,qBACa,oBAAqB,SAAQ,YAAY;IACpD,OAAgB,MAAM,4BAUpB;IAE0C,WAAW,UAAS;IAEvD,MAAM;CAWhB"}
@@ -0,0 +1,10 @@
1
+ import { ListBase } from '@material/mwc-list/mwc-list-base';
2
+ declare global {
3
+ interface HTMLElementTagNameMap {
4
+ 'cv-list': CovalentListBase;
5
+ }
6
+ }
7
+ export declare class CovalentListBase extends ListBase {
8
+ static styles: import("lit").CSSResult[];
9
+ }
10
+ //# sourceMappingURL=list.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"list.d.ts","sourceRoot":"","sources":["../../../../../libs/components/src/list/list.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,kCAAkC,CAAC;AAI5D,OAAO,CAAC,MAAM,CAAC;IACb,UAAU,qBAAqB;QAC7B,SAAS,EAAE,gBAAgB,CAAC;KAC7B;CACF;AAED,qBACa,gBAAiB,SAAQ,QAAQ;IAC5C,OAAgB,MAAM,4BAAY;CACnC"}
@@ -0,0 +1,12 @@
1
+ import { CovalentListItemBase } from './list-item';
2
+ declare global {
3
+ interface HTMLElementTagNameMap {
4
+ 'cv-nav-list-item': CovalentNavRailListItem;
5
+ }
6
+ }
7
+ export declare class CovalentNavRailListItem extends CovalentListItemBase {
8
+ static styles: import("lit").CSSResult[];
9
+ navOpen: boolean;
10
+ constructor();
11
+ }
12
+ //# sourceMappingURL=nav-list-item.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"nav-list-item.d.ts","sourceRoot":"","sources":["../../../../../libs/components/src/list/nav-list-item.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,oBAAoB,EAAE,MAAM,aAAa,CAAC;AAMnD,OAAO,CAAC,MAAM,CAAC;IACb,UAAU,qBAAqB;QAC7B,kBAAkB,EAAE,uBAAuB,CAAC;KAC7C;CACF;AAED,qBACa,uBAAwB,SAAQ,oBAAoB;IAC/D,OAAgB,MAAM,4BAapB;IAGF,OAAO,UAAS;;CAKjB"}
@@ -0,0 +1,10 @@
1
+ import { RadioListItemBase } from '@material/mwc-list/mwc-radio-list-item-base';
2
+ declare global {
3
+ interface HTMLElementTagNameMap {
4
+ 'cv-radio-list-item': CovalentRadioListItemBase;
5
+ }
6
+ }
7
+ export declare class CovalentRadioListItemBase extends RadioListItemBase {
8
+ static styles: import("lit").CSSResult[];
9
+ }
10
+ //# sourceMappingURL=radio-list-item.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"radio-list-item.d.ts","sourceRoot":"","sources":["../../../../../libs/components/src/list/radio-list-item.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAE,MAAM,6CAA6C,CAAC;AAKhF,OAAO,CAAC,MAAM,CAAC;IACb,UAAU,qBAAqB;QAC7B,oBAAoB,EAAE,yBAAyB,CAAC;KACjD;CACF;AAED,qBACa,yBAA0B,SAAQ,iBAAiB;IAC9D,OAAgB,MAAM,4BAA0B;CACjD"}
@@ -0,0 +1,10 @@
1
+ import { MenuBase } from '@material/mwc-menu/mwc-menu-base';
2
+ declare global {
3
+ interface HTMLElementTagNameMap {
4
+ 'cv-menu': CovalentMenuBase;
5
+ }
6
+ }
7
+ export declare class CovalentMenuBase extends MenuBase {
8
+ static styles: import("lit").CSSResult[];
9
+ }
10
+ //# sourceMappingURL=menu.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"menu.d.ts","sourceRoot":"","sources":["../../../../../libs/components/src/menu/menu.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,kCAAkC,CAAC;AAI5D,OAAO,CAAC,MAAM,CAAC;IACb,UAAU,qBAAqB;QAC7B,SAAS,EAAE,gBAAgB,CAAC;KAC7B;CACF;AAED,qBACa,gBAAiB,SAAQ,QAAQ;IAC5C,OAAgB,MAAM,4BAAY;CACnC"}
@@ -0,0 +1,10 @@
1
+ import { RadioBase } from '@material/mwc-radio/mwc-radio-base';
2
+ declare global {
3
+ interface HTMLElementTagNameMap {
4
+ 'cv-radio': CovalentRadioBase;
5
+ }
6
+ }
7
+ export declare class CovalentRadioBase extends RadioBase {
8
+ static styles: import("lit").CSSResult[];
9
+ }
10
+ //# sourceMappingURL=radio.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"radio.d.ts","sourceRoot":"","sources":["../../../../../libs/components/src/radio/radio.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,SAAS,EAAE,MAAM,oCAAoC,CAAC;AAI/D,OAAO,CAAC,MAAM,CAAC;IACb,UAAU,qBAAqB;QAC7B,UAAU,EAAE,iBAAiB,CAAC;KAC/B;CACF;AAED,qBACa,iBAAkB,SAAQ,SAAS;IAC9C,OAAgB,MAAM,4BAA2C;CAClE"}
@@ -0,0 +1,10 @@
1
+ import { SelectBase } from '@material/mwc-select/mwc-select-base';
2
+ declare global {
3
+ interface HTMLElementTagNameMap {
4
+ 'cv-select': CovalentSelectBase;
5
+ }
6
+ }
7
+ export declare class CovalentSelectBase extends SelectBase {
8
+ static styles: import("lit").CSSResult[];
9
+ }
10
+ //# sourceMappingURL=select.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"select.d.ts","sourceRoot":"","sources":["../../../../../libs/components/src/select/select.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,UAAU,EAAE,MAAM,sCAAsC,CAAC;AAIlE,OAAO,CAAC,MAAM,CAAC;IACb,UAAU,qBAAqB;QAC7B,WAAW,EAAE,kBAAkB,CAAC;KACjC;CACF;AAED,qBACa,kBAAmB,SAAQ,UAAU;IAChD,OAAgB,MAAM,4BAA2C;CAClE"}