igniteui-webcomponents 1.0.0 → 2.0.0-beta.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.
Files changed (267) hide show
  1. package/CHANGELOG.md +40 -1
  2. package/README.md +17 -1
  3. package/components/avatar/avatar.d.ts +20 -2
  4. package/components/avatar/avatar.material.css.d.ts +0 -1
  5. package/components/avatar/avatar.material.css.js +1 -1
  6. package/components/avatar/avatar.material.css.js.map +1 -1
  7. package/components/badge/badge.d.ts +18 -4
  8. package/components/badge/badge.js.map +1 -1
  9. package/components/badge/badge.material.css.d.ts +0 -1
  10. package/components/badge/badge.material.css.js +1 -1
  11. package/components/badge/badge.material.css.js.map +1 -1
  12. package/components/button/button-base.d.ts +24 -1
  13. package/components/button/button-base.js +16 -0
  14. package/components/button/button-base.js.map +1 -1
  15. package/components/button/button.d.ts +23 -2
  16. package/components/button/button.material.css.d.ts +0 -1
  17. package/components/button/button.material.css.js +1 -1
  18. package/components/button/button.material.css.js.map +1 -1
  19. package/components/button/icon-button.d.ts +15 -2
  20. package/components/button/icon-button.js +15 -1
  21. package/components/button/icon-button.js.map +1 -1
  22. package/components/button/icon-button.material.css.d.ts +0 -1
  23. package/components/button/icon-button.material.css.js +1 -1
  24. package/components/button/icon-button.material.css.js.map +1 -1
  25. package/components/calendar/calendar.d.ts +42 -3
  26. package/components/calendar/calendar.js +34 -12
  27. package/components/calendar/calendar.js.map +1 -1
  28. package/components/calendar/calendar.material.css.d.ts +0 -1
  29. package/components/calendar/calendar.material.css.js +1 -1
  30. package/components/calendar/calendar.material.css.js.map +1 -1
  31. package/components/calendar/common/calendar-base.d.ts +17 -2
  32. package/components/calendar/common/calendar-base.js +28 -4
  33. package/components/calendar/common/calendar-base.js.map +1 -1
  34. package/components/calendar/common/calendar.model.d.ts +57 -1
  35. package/components/calendar/common/utils.d.ts +0 -1
  36. package/components/calendar/days-view/days-view.d.ts +25 -2
  37. package/components/calendar/days-view/days-view.js +38 -35
  38. package/components/calendar/days-view/days-view.js.map +1 -1
  39. package/components/calendar/days-view/days-view.material.css.d.ts +0 -1
  40. package/components/calendar/days-view/days-view.material.css.js +1 -1
  41. package/components/calendar/days-view/days-view.material.css.js.map +1 -1
  42. package/components/calendar/months-view/months-view.d.ts +17 -2
  43. package/components/calendar/months-view/months-view.js +4 -2
  44. package/components/calendar/months-view/months-view.js.map +1 -1
  45. package/components/calendar/months-view/months-view.material.css.d.ts +0 -1
  46. package/components/calendar/years-view/years-view.d.ts +16 -2
  47. package/components/calendar/years-view/years-view.js +4 -2
  48. package/components/calendar/years-view/years-view.js.map +1 -1
  49. package/components/calendar/years-view/years-view.material.css.d.ts +0 -1
  50. package/components/card/card.actions.d.ts +10 -2
  51. package/components/card/card.actions.material.css.d.ts +0 -1
  52. package/components/card/card.actions.material.css.js +1 -1
  53. package/components/card/card.actions.material.css.js.map +1 -1
  54. package/components/card/card.content.d.ts +8 -2
  55. package/components/card/card.content.material.css.d.ts +0 -1
  56. package/components/card/card.content.material.css.js +1 -1
  57. package/components/card/card.content.material.css.js.map +1 -1
  58. package/components/card/card.d.ts +10 -3
  59. package/components/card/card.header.d.ts +13 -2
  60. package/components/card/card.header.material.css.d.ts +0 -1
  61. package/components/card/card.header.material.css.js +1 -1
  62. package/components/card/card.header.material.css.js.map +1 -1
  63. package/components/card/card.js +2 -2
  64. package/components/card/card.js.map +1 -1
  65. package/components/card/card.material.css.d.ts +0 -1
  66. package/components/card/card.material.css.js +1 -1
  67. package/components/card/card.material.css.js.map +1 -1
  68. package/components/card/card.media.d.ts +8 -2
  69. package/components/card/card.media.material.css.d.ts +0 -1
  70. package/components/card/card.media.material.css.js +1 -1
  71. package/components/card/card.media.material.css.js.map +1 -1
  72. package/components/checkbox/checkbox-base.d.ts +16 -1
  73. package/components/checkbox/checkbox.d.ts +21 -3
  74. package/components/checkbox/checkbox.js +25 -27
  75. package/components/checkbox/checkbox.js.map +1 -1
  76. package/components/checkbox/checkbox.material.css.d.ts +0 -1
  77. package/components/checkbox/checkbox.material.css.js +1 -1
  78. package/components/checkbox/checkbox.material.css.js.map +1 -1
  79. package/components/checkbox/switch.d.ts +19 -2
  80. package/components/checkbox/switch.js +17 -18
  81. package/components/checkbox/switch.js.map +1 -1
  82. package/components/checkbox/switch.material.css.d.ts +0 -1
  83. package/components/checkbox/switch.material.css.js +1 -1
  84. package/components/checkbox/switch.material.css.js.map +1 -1
  85. package/components/common/decorators/alternateName.d.ts +6 -1
  86. package/components/common/decorators/blazorInclude.d.ts +4 -1
  87. package/components/common/decorators/blazorIndirectRender.d.ts +4 -0
  88. package/components/common/decorators/blazorIndirectRender.js +2 -0
  89. package/components/common/decorators/blazorIndirectRender.js.map +1 -0
  90. package/components/common/decorators/blazorSuppress.d.ts +4 -1
  91. package/components/common/decorators/blazorSuppressComponent.d.ts +4 -0
  92. package/components/common/decorators/blazorSuppressComponent.js +2 -0
  93. package/components/common/decorators/blazorSuppressComponent.js.map +1 -0
  94. package/components/common/decorators/blazorTwoWayBind.d.ts +6 -1
  95. package/components/common/decorators/index.d.ts +2 -1
  96. package/components/common/decorators/index.js +2 -0
  97. package/components/common/decorators/index.js.map +1 -1
  98. package/components/common/decorators/watch.d.ts +0 -1
  99. package/components/common/definitions/defineAllComponents.d.ts +0 -1
  100. package/components/common/definitions/defineAllComponents.js +4 -0
  101. package/components/common/definitions/defineAllComponents.js.map +1 -1
  102. package/components/common/definitions/defineComponents.d.ts +0 -1
  103. package/components/common/i18n/calendar.resources.d.ts +0 -1
  104. package/components/common/mixins/constructor.d.ts +0 -1
  105. package/components/common/mixins/event-emitter.d.ts +0 -1
  106. package/components/common/mixins/sizable.d.ts +4 -1
  107. package/components/common/util.d.ts +0 -1
  108. package/components/form/form.d.ts +21 -2
  109. package/components/form/form.js +4 -1
  110. package/components/form/form.js.map +1 -1
  111. package/components/icon/icon.d.ts +26 -2
  112. package/components/icon/icon.material.css.d.ts +0 -1
  113. package/components/icon/icon.material.css.js +1 -1
  114. package/components/icon/icon.material.css.js.map +1 -1
  115. package/components/icon/icon.registry.d.ts +0 -1
  116. package/components/input/input.d.ts +56 -2
  117. package/components/input/input.dark.material.css.d.ts +1 -0
  118. package/components/input/input.dark.material.css.js +3 -0
  119. package/components/input/input.dark.material.css.js.map +1 -0
  120. package/components/input/input.material.css.d.ts +0 -1
  121. package/components/input/input.material.css.js +1 -1
  122. package/components/input/input.material.css.js.map +1 -1
  123. package/components/list/list-header.d.ts +10 -2
  124. package/components/list/list-header.material.css.d.ts +0 -1
  125. package/components/list/list-header.material.css.js +1 -1
  126. package/components/list/list-header.material.css.js.map +1 -1
  127. package/components/list/list-item.d.ts +22 -2
  128. package/components/list/list-item.material.css.d.ts +0 -1
  129. package/components/list/list-item.material.css.js +1 -1
  130. package/components/list/list-item.material.css.js.map +1 -1
  131. package/components/list/list.d.ts +10 -2
  132. package/components/list/list.material.css.d.ts +0 -1
  133. package/components/list/list.material.css.js +1 -1
  134. package/components/list/list.material.css.js.map +1 -1
  135. package/components/nav-drawer/nav-drawer-header-item.d.ts +9 -2
  136. package/components/nav-drawer/nav-drawer-header-item.material.css.d.ts +0 -1
  137. package/components/nav-drawer/nav-drawer-header-item.material.css.js +1 -1
  138. package/components/nav-drawer/nav-drawer-header-item.material.css.js.map +1 -1
  139. package/components/nav-drawer/nav-drawer-item.d.ts +17 -2
  140. package/components/nav-drawer/nav-drawer-item.material.css.d.ts +0 -1
  141. package/components/nav-drawer/nav-drawer-item.material.css.js +1 -1
  142. package/components/nav-drawer/nav-drawer-item.material.css.js.map +1 -1
  143. package/components/nav-drawer/nav-drawer.d.ts +26 -2
  144. package/components/nav-drawer/nav-drawer.material.css.d.ts +0 -1
  145. package/components/nav-drawer/nav-drawer.material.css.js +1 -1
  146. package/components/nav-drawer/nav-drawer.material.css.js.map +1 -1
  147. package/components/navbar/navbar.d.ts +18 -2
  148. package/components/navbar/navbar.material.css.d.ts +0 -1
  149. package/components/navbar/navbar.material.css.js +1 -1
  150. package/components/navbar/navbar.material.css.js.map +1 -1
  151. package/components/radio/radio.d.ts +31 -2
  152. package/components/radio/radio.material.css.d.ts +0 -1
  153. package/components/radio/radio.material.css.js +1 -1
  154. package/components/radio/radio.material.css.js.map +1 -1
  155. package/components/radio-group/radio-group.d.ts +3 -2
  156. package/components/radio-group/radio-group.material.css.d.ts +0 -1
  157. package/components/radio-group/radio-group.material.css.js +1 -1
  158. package/components/radio-group/radio-group.material.css.js.map +1 -1
  159. package/components/ripple/ripple.d.ts +9 -2
  160. package/components/ripple/ripple.material.css.d.ts +0 -1
  161. package/components/ripple/ripple.material.css.js +1 -1
  162. package/components/ripple/ripple.material.css.js.map +1 -1
  163. package/components/slider/range-slider.d.ts +85 -0
  164. package/components/slider/range-slider.js +141 -0
  165. package/components/slider/range-slider.js.map +1 -0
  166. package/components/slider/slider-base.d.ts +117 -0
  167. package/components/slider/slider-base.js +448 -0
  168. package/components/slider/slider-base.js.map +1 -0
  169. package/components/slider/slider.d.ts +76 -0
  170. package/components/slider/slider.js +80 -0
  171. package/components/slider/slider.js.map +1 -0
  172. package/components/slider/slider.material.css.d.ts +1 -0
  173. package/components/slider/slider.material.css.js +3 -0
  174. package/components/slider/slider.material.css.js.map +1 -0
  175. package/custom-elements.json +648 -22
  176. package/index.d.ts +2 -1
  177. package/index.js +2 -0
  178. package/index.js.map +1 -1
  179. package/package.json +5 -4
  180. package/themes/dark/bootstrap.css +1 -0
  181. package/themes/dark/fluent.css +1 -0
  182. package/themes/dark/indigo.css +1 -0
  183. package/themes/dark/material.css +1 -0
  184. package/themes/light/bootstrap.css +1 -0
  185. package/themes/light/fluent.css +1 -0
  186. package/themes/light/indigo.css +1 -0
  187. package/themes/light/material.css +1 -0
  188. package/vscode-html-custom-data.json +263 -13
  189. package/components/avatar/avatar.d.ts.map +0 -1
  190. package/components/avatar/avatar.material.css.d.ts.map +0 -1
  191. package/components/badge/badge.d.ts.map +0 -1
  192. package/components/badge/badge.material.css.d.ts.map +0 -1
  193. package/components/button/button-base.d.ts.map +0 -1
  194. package/components/button/button.d.ts.map +0 -1
  195. package/components/button/button.material.css.d.ts.map +0 -1
  196. package/components/button/icon-button.d.ts.map +0 -1
  197. package/components/button/icon-button.material.css.d.ts.map +0 -1
  198. package/components/calendar/calendar.d.ts.map +0 -1
  199. package/components/calendar/calendar.material.css.d.ts.map +0 -1
  200. package/components/calendar/common/calendar-base.d.ts.map +0 -1
  201. package/components/calendar/common/calendar.model.d.ts.map +0 -1
  202. package/components/calendar/common/utils.d.ts.map +0 -1
  203. package/components/calendar/days-view/days-view.d.ts.map +0 -1
  204. package/components/calendar/days-view/days-view.material.css.d.ts.map +0 -1
  205. package/components/calendar/months-view/months-view.d.ts.map +0 -1
  206. package/components/calendar/months-view/months-view.material.css.d.ts.map +0 -1
  207. package/components/calendar/years-view/years-view.d.ts.map +0 -1
  208. package/components/calendar/years-view/years-view.material.css.d.ts.map +0 -1
  209. package/components/card/card.actions.d.ts.map +0 -1
  210. package/components/card/card.actions.material.css.d.ts.map +0 -1
  211. package/components/card/card.content.d.ts.map +0 -1
  212. package/components/card/card.content.material.css.d.ts.map +0 -1
  213. package/components/card/card.d.ts.map +0 -1
  214. package/components/card/card.header.d.ts.map +0 -1
  215. package/components/card/card.header.material.css.d.ts.map +0 -1
  216. package/components/card/card.material.css.d.ts.map +0 -1
  217. package/components/card/card.media.d.ts.map +0 -1
  218. package/components/card/card.media.material.css.d.ts.map +0 -1
  219. package/components/checkbox/checkbox-base.d.ts.map +0 -1
  220. package/components/checkbox/checkbox.d.ts.map +0 -1
  221. package/components/checkbox/checkbox.material.css.d.ts.map +0 -1
  222. package/components/checkbox/switch.d.ts.map +0 -1
  223. package/components/checkbox/switch.material.css.d.ts.map +0 -1
  224. package/components/common/decorators/alternateName.d.ts.map +0 -1
  225. package/components/common/decorators/blazorInclude.d.ts.map +0 -1
  226. package/components/common/decorators/blazorSuppress.d.ts.map +0 -1
  227. package/components/common/decorators/blazorTwoWayBind.d.ts.map +0 -1
  228. package/components/common/decorators/index.d.ts.map +0 -1
  229. package/components/common/decorators/watch.d.ts.map +0 -1
  230. package/components/common/definitions/defineAllComponents.d.ts.map +0 -1
  231. package/components/common/definitions/defineComponents.d.ts.map +0 -1
  232. package/components/common/i18n/calendar.resources.d.ts.map +0 -1
  233. package/components/common/mixins/constructor.d.ts.map +0 -1
  234. package/components/common/mixins/event-emitter.d.ts.map +0 -1
  235. package/components/common/mixins/sizable.d.ts.map +0 -1
  236. package/components/common/util.d.ts.map +0 -1
  237. package/components/form/form.d.ts.map +0 -1
  238. package/components/icon/icon.d.ts.map +0 -1
  239. package/components/icon/icon.material.css.d.ts.map +0 -1
  240. package/components/icon/icon.registry.d.ts.map +0 -1
  241. package/components/input/input.d.ts.map +0 -1
  242. package/components/input/input.material.css.d.ts.map +0 -1
  243. package/components/list/list-header.d.ts.map +0 -1
  244. package/components/list/list-header.material.css.d.ts.map +0 -1
  245. package/components/list/list-item.d.ts.map +0 -1
  246. package/components/list/list-item.material.css.d.ts.map +0 -1
  247. package/components/list/list.d.ts.map +0 -1
  248. package/components/list/list.material.css.d.ts.map +0 -1
  249. package/components/nav-drawer/nav-drawer-header-item.d.ts.map +0 -1
  250. package/components/nav-drawer/nav-drawer-header-item.material.css.d.ts.map +0 -1
  251. package/components/nav-drawer/nav-drawer-item.d.ts.map +0 -1
  252. package/components/nav-drawer/nav-drawer-item.material.css.d.ts.map +0 -1
  253. package/components/nav-drawer/nav-drawer.d.ts.map +0 -1
  254. package/components/nav-drawer/nav-drawer.material.css.d.ts.map +0 -1
  255. package/components/navbar/navbar.d.ts.map +0 -1
  256. package/components/navbar/navbar.material.css.d.ts.map +0 -1
  257. package/components/radio/radio.d.ts.map +0 -1
  258. package/components/radio/radio.material.css.d.ts.map +0 -1
  259. package/components/radio-group/radio-group.d.ts.map +0 -1
  260. package/components/radio-group/radio-group.material.css.d.ts.map +0 -1
  261. package/components/ripple/ripple.d.ts.map +0 -1
  262. package/components/ripple/ripple.material.css.d.ts.map +0 -1
  263. package/index.d.ts.map +0 -1
  264. package/themes/bootstrap.css +0 -1
  265. package/themes/fluent.css +0 -1
  266. package/themes/indigo.css +0 -1
  267. package/themes/material.css +0 -1
@@ -40,11 +40,11 @@
40
40
  },
41
41
  {
42
42
  "name": "igc-badge",
43
- "description": "The badge is a component indicating a status on a related item or an area\nwhere some active indication is required.\n\nSlots:\n\n * ` ` {} - Default slot for the badge.\n\nAttributes:\n\n * `variant` {`\"primary\" | \"info\" | \"success\" | \"warning\" | \"danger\" | undefined`} - The type of badge.\n\n * `outlined` {`boolean`} - Sets whether to draw an outlined version of the badge.\n\n * `shape` {`\"rounded\" | \"square\" | undefined`} - The shape of the badge.\n\nProperties:\n\n * `tagName` {`string`} - \n\n * `styles` - \n\n * `variant` {`\"primary\" | \"info\" | \"success\" | \"warning\" | \"danger\" | undefined`} - The type of badge.\n\n * `outlined` {`boolean`} - Sets whether to draw an outlined version of the badge.\n\n * `shape` {`\"rounded\" | \"square\" | undefined`} - The shape of the badge.",
43
+ "description": "The badge is a component indicating a status on a related item or an area\nwhere some active indication is required.\n\nSlots:\n\n * ` ` {} - Default slot for the badge.\n\nAttributes:\n\n * `variant` {`\"primary\" | \"info\" | \"success\" | \"warning\" | \"danger\"`} - The type of badge.\n\n * `outlined` {`boolean`} - Sets whether to draw an outlined version of the badge.\n\n * `shape` {`\"rounded\" | \"square\"`} - The shape of the badge.\n\nProperties:\n\n * `tagName` {`string`} - \n\n * `styles` - \n\n * `variant` {`\"primary\" | \"info\" | \"success\" | \"warning\" | \"danger\"`} - The type of badge.\n\n * `outlined` {`boolean`} - Sets whether to draw an outlined version of the badge.\n\n * `shape` {`\"rounded\" | \"square\"`} - The shape of the badge.",
44
44
  "attributes": [
45
45
  {
46
46
  "name": "variant",
47
- "description": "`variant` {`\"primary\" | \"info\" | \"success\" | \"warning\" | \"danger\" | undefined`} - The type of badge.\n\nProperty: variant\n\nDefault: primary",
47
+ "description": "`variant` {`\"primary\" | \"info\" | \"success\" | \"warning\" | \"danger\"`} - The type of badge.\n\nProperty: variant\n\nDefault: primary",
48
48
  "values": [
49
49
  {
50
50
  "name": "primary"
@@ -70,7 +70,7 @@
70
70
  },
71
71
  {
72
72
  "name": "shape",
73
- "description": "`shape` {`\"rounded\" | \"square\" | undefined`} - The shape of the badge.\n\nProperty: shape\n\nDefault: rounded",
73
+ "description": "`shape` {`\"rounded\" | \"square\"`} - The shape of the badge.\n\nProperty: shape\n\nDefault: rounded",
74
74
  "values": [
75
75
  {
76
76
  "name": "rounded"
@@ -84,7 +84,7 @@
84
84
  },
85
85
  {
86
86
  "name": "igc-button",
87
- "description": "Represents a clickable button, used to submit forms or anywhere in a\ndocument for accessible, standard button functionality.\n\nEvents:\n\n * `igcFocus` {} - Emitted when the button gains focus.\n\n * `igcBlur` {} - Emitted when the button loses focus.\n\nSlots:\n\n * ` ` {} - Renders the label of the button.\n\n * `prefix` {} - Renders content before the label of the button.\n\n * `suffix` {} - Renders content after the label of the button.\n\nAttributes:\n\n * `variant` {`\"flat\" | \"contained\" | \"outlined\" | \"fab\"`} - Sets the variant of the button.\n\n * `type` {`\"button\" | \"reset\" | \"submit\"`} - The type of the button. Defaults to undefined.\n\n * `href` {`string`} - The URL the button points to.\n\n * `download` {`string`} - Prompts to save the linked URL instead of navigating to it.\n\n * `target` {`\"_blank\" | \"_parent\" | \"_self\" | \"_top\" | undefined`} - Where to display the linked URL, as the name for a browsing context.\n\n * `rel` {`string`} - The relationship of the linked URL.\nSee https://developer.mozilla.org/en-US/docs/Web/HTML/Link_types\n\n * `disabled` {`boolean`} - Determines whether the button is disabled.\n\n * `size` {\"small\" | \"medium\" | \"large\"} - Determines the size of the component.\n\nProperties:\n\n * `tagName` {`string`} - \n\n * `styles` {`CSSResult[]`} - \n\n * `variant` {`\"flat\" | \"contained\" | \"outlined\" | \"fab\"`} - Sets the variant of the button.\n\n * `nativeElement` {`HTMLElement`} - \n\n * `type` {`\"button\" | \"reset\" | \"submit\"`} - The type of the button. Defaults to undefined.\n\n * `href` {`string`} - The URL the button points to.\n\n * `download` {`string`} - Prompts to save the linked URL instead of navigating to it.\n\n * `target` {`\"_blank\" | \"_parent\" | \"_self\" | \"_top\" | undefined`} - Where to display the linked URL, as the name for a browsing context.\n\n * `rel` {`string`} - The relationship of the linked URL.\nSee https://developer.mozilla.org/en-US/docs/Web/HTML/Link_types\n\n * `disabled` {`boolean`} - Determines whether the button is disabled.\n\n * `classes` {`{ flat: boolean; outlined: boolean; contained: boolean; fab: boolean; small: boolean; medium: boolean; large: boolean; disabled: boolean; }`} - \n\n * `size` {\"small\" | \"medium\" | \"large\"} - Determines the size of the component.",
87
+ "description": "Represents a clickable button, used to submit forms or anywhere in a\ndocument for accessible, standard button functionality.\n\nEvents:\n\n * `igcFocus` {} - Emitted when the button gains focus.\n\n * `igcBlur` {} - Emitted when the button loses focus.\n\nSlots:\n\n * ` ` {} - Renders the label of the button.\n\n * `prefix` {} - Renders content before the label of the button.\n\n * `suffix` {} - Renders content after the label of the button.\n\nAttributes:\n\n * `variant` {`\"flat\" | \"contained\" | \"outlined\" | \"fab\"`} - Sets the variant of the button.\n\n * `type` {`\"button\" | \"reset\" | \"submit\"`} - The type of the button. Defaults to undefined.\n\n * `href` {`string`} - The URL the button points to.\n\n * `download` {`string`} - Prompts to save the linked URL instead of navigating to it.\n\n * `target` {`\"_blank\" | \"_parent\" | \"_self\" | \"_top\" | undefined`} - Where to display the linked URL, as the name for a browsing context.\n\n * `rel` {`string`} - The relationship of the linked URL.\nSee https://developer.mozilla.org/en-US/docs/Web/HTML/Link_types\n\n * `disabled` {`boolean`} - Determines whether the button is disabled.\n\n * `aria-label` {`string`} - The aria label of the button.\n\n * `size` {\"small\" | \"medium\" | \"large\"} - Determines the size of the component.\n\nProperties:\n\n * `tagName` {`string`} - \n\n * `styles` {`CSSResult[]`} - \n\n * `variant` {`\"flat\" | \"contained\" | \"outlined\" | \"fab\"`} - Sets the variant of the button.\n\n * `nativeElement` {`HTMLElement`} - \n\n * `_ariaLabel` {`string`} - \n\n * `type` {`\"button\" | \"reset\" | \"submit\"`} - The type of the button. Defaults to undefined.\n\n * `href` {`string`} - The URL the button points to.\n\n * `download` {`string`} - Prompts to save the linked URL instead of navigating to it.\n\n * `target` {`\"_blank\" | \"_parent\" | \"_self\" | \"_top\" | undefined`} - Where to display the linked URL, as the name for a browsing context.\n\n * `rel` {`string`} - The relationship of the linked URL.\nSee https://developer.mozilla.org/en-US/docs/Web/HTML/Link_types\n\n * `disabled` {`boolean`} - Determines whether the button is disabled.\n\n * `ariaLabel` {`string`} - The aria label of the button.\n\n * `classes` {`{ flat: boolean; outlined: boolean; contained: boolean; fab: boolean; small: boolean; medium: boolean; large: boolean; disabled: boolean; }`} - \n\n * `size` {\"small\" | \"medium\" | \"large\"} - Determines the size of the component.",
88
88
  "attributes": [
89
89
  {
90
90
  "name": "variant",
@@ -154,6 +154,10 @@
154
154
  "description": "`disabled` {`boolean`} - Determines whether the button is disabled.\n\nProperty: disabled\n\nDefault: false",
155
155
  "valueSet": "v"
156
156
  },
157
+ {
158
+ "name": "aria-label",
159
+ "description": "`aria-label` {`string`} - The aria label of the button.\n\nProperty: ariaLabel"
160
+ },
157
161
  {
158
162
  "name": "size",
159
163
  "description": "`size` {\"small\" | \"medium\" | \"large\"} - Determines the size of the component.\n\nProperty: size\n\nDefault: medium"
@@ -170,7 +174,7 @@
170
174
  },
171
175
  {
172
176
  "name": "igc-icon-button",
173
- "description": "Attributes:\n\n * `name` {`string`} - The name of the icon.\n\n * `collection` {`string`} - The name of the icon collection.\n\n * `mirrored` {`boolean`} - Whether to flip the icon button. Useful for RTL layouts.\n\n * `variant` {`\"flat\" | \"contained\" | \"outlined\"`} - The visual variant of the icon button.\n\n * `type` {`\"button\" | \"reset\" | \"submit\"`} - The type of the button. Defaults to undefined.\n\n * `href` {`string`} - The URL the button points to.\n\n * `download` {`string`} - Prompts to save the linked URL instead of navigating to it.\n\n * `target` {`\"_blank\" | \"_parent\" | \"_self\" | \"_top\" | undefined`} - Where to display the linked URL, as the name for a browsing context.\n\n * `rel` {`string`} - The relationship of the linked URL.\nSee https://developer.mozilla.org/en-US/docs/Web/HTML/Link_types\n\n * `disabled` {`boolean`} - Determines whether the button is disabled.\n\n * `size` {\"small\" | \"medium\" | \"large\"} - Determines the size of the component.\n\nProperties:\n\n * `tagName` {`string`} - \n\n * `styles` {`CSSResult[]`} - \n\n * `name` {`string`} - The name of the icon.\n\n * `collection` {`string`} - The name of the icon collection.\n\n * `mirrored` {`boolean`} - Whether to flip the icon button. Useful for RTL layouts.\n\n * `variant` {`\"flat\" | \"contained\" | \"outlined\"`} - The visual variant of the icon button.\n\n * `nativeElement` {`HTMLElement`} - \n\n * `type` {`\"button\" | \"reset\" | \"submit\"`} - The type of the button. Defaults to undefined.\n\n * `href` {`string`} - The URL the button points to.\n\n * `download` {`string`} - Prompts to save the linked URL instead of navigating to it.\n\n * `target` {`\"_blank\" | \"_parent\" | \"_self\" | \"_top\" | undefined`} - Where to display the linked URL, as the name for a browsing context.\n\n * `rel` {`string`} - The relationship of the linked URL.\nSee https://developer.mozilla.org/en-US/docs/Web/HTML/Link_types\n\n * `disabled` {`boolean`} - Determines whether the button is disabled.\n\n * `classes` - \n\n * `size` {\"small\" | \"medium\" | \"large\"} - Determines the size of the component.",
177
+ "description": "Attributes:\n\n * `name` {`string`} - The name of the icon.\n\n * `collection` {`string`} - The name of the icon collection.\n\n * `mirrored` {`boolean`} - Whether to flip the icon button. Useful for RTL layouts.\n\n * `variant` {`\"flat\" | \"contained\" | \"outlined\"`} - The visual variant of the icon button.\n\n * `type` {`\"button\" | \"reset\" | \"submit\"`} - The type of the button. Defaults to undefined.\n\n * `href` {`string`} - The URL the button points to.\n\n * `download` {`string`} - Prompts to save the linked URL instead of navigating to it.\n\n * `target` {`\"_blank\" | \"_parent\" | \"_self\" | \"_top\" | undefined`} - Where to display the linked URL, as the name for a browsing context.\n\n * `rel` {`string`} - The relationship of the linked URL.\nSee https://developer.mozilla.org/en-US/docs/Web/HTML/Link_types\n\n * `disabled` {`boolean`} - Determines whether the button is disabled.\n\n * `aria-label` {`string`} - The aria label of the button.\n\n * `size` {\"small\" | \"medium\" | \"large\"} - Determines the size of the component.\n\nProperties:\n\n * `tagName` {`string`} - \n\n * `styles` {`CSSResult[]`} - \n\n * `name` {`string`} - The name of the icon.\n\n * `collection` {`string`} - The name of the icon collection.\n\n * `mirrored` {`boolean`} - Whether to flip the icon button. Useful for RTL layouts.\n\n * `variant` {`\"flat\" | \"contained\" | \"outlined\"`} - The visual variant of the icon button.\n\n * `nativeElement` {`HTMLElement`} - \n\n * `_ariaLabel` {`string`} - \n\n * `type` {`\"button\" | \"reset\" | \"submit\"`} - The type of the button. Defaults to undefined.\n\n * `href` {`string`} - The URL the button points to.\n\n * `download` {`string`} - Prompts to save the linked URL instead of navigating to it.\n\n * `target` {`\"_blank\" | \"_parent\" | \"_self\" | \"_top\" | undefined`} - Where to display the linked URL, as the name for a browsing context.\n\n * `rel` {`string`} - The relationship of the linked URL.\nSee https://developer.mozilla.org/en-US/docs/Web/HTML/Link_types\n\n * `disabled` {`boolean`} - Determines whether the button is disabled.\n\n * `ariaLabel` {`string`} - The aria label of the button.\n\n * `classes` - \n\n * `size` {\"small\" | \"medium\" | \"large\"} - Determines the size of the component.",
174
178
  "attributes": [
175
179
  {
176
180
  "name": "name",
@@ -250,6 +254,10 @@
250
254
  "description": "`disabled` {`boolean`} - Determines whether the button is disabled.\n\nProperty: disabled\n\nDefault: false",
251
255
  "valueSet": "v"
252
256
  },
257
+ {
258
+ "name": "aria-label",
259
+ "description": "`aria-label` {`string`} - The aria label of the button.\n\nProperty: ariaLabel"
260
+ },
253
261
  {
254
262
  "name": "size",
255
263
  "description": "`size` {\"small\" | \"medium\" | \"large\"} - Determines the size of the component.\n\nProperty: size\n\nDefault: large",
@@ -269,7 +277,7 @@
269
277
  },
270
278
  {
271
279
  "name": "igc-calendar",
272
- "description": "Represents a calendar that lets users\nto select a date value in a variety of different ways.\n\nEvents:\n\n * `igcChange` {} - Emitted when calendar changes its value.\n\nSlots:\n\n * ` ` {} - The default slot for the calendar.\n\n * `title` {} - Renders the title of the calendar header.\n\nAttributes:\n\n * `hide-outside-days` {`boolean`} - Controls the visibility of the dates that do not belong to the current month.\n\n * `has-header` {`boolean`} - Determines whether the calendar has header. Even if set to true, the header is not displayed for `multiple` selection.\n\n * `header-orientation` {`\"vertical\" | \"horizontal\"`} - The orientation of the header.\n\n * `orientation` {`\"vertical\" | \"horizontal\"`} - The orientation of the multiple months displayed in days view.\n\n * `visible-months` {`number`} - The number of months displayed in days view.\n\n * `active-view` {`\"days\" | \"months\" | \"years\"`} - The active view.\n\n * `size` {\"small\" | \"medium\" | \"large\"} - Determines the size of the component.\n\n * `selection` {`\"single\" | \"multiple\" | \"range\"`} - Sets the type of date selection.\n\n * `show-week-numbers` {`boolean`} - Show/hide the week numbers.\n\n * `week-start` {`\"sunday\" | \"monday\" | \"tuesday\" | \"wednesday\" | \"thursday\" | \"friday\" | \"saturday\"`} - Sets the start day of the week.\n\n * `locale` {`string`} - Sets the locale used for formatting and displaying the dates in the calendar.\n\nProperties:\n\n * `tagName` {`string`} - \n\n * `styles` {`CSSResult[]`} - \n\n * `formatterMonth` {`DateTimeFormat`} - \n\n * `formatterWeekday` {`DateTimeFormat`} - \n\n * `formatterMonthDay` {`DateTimeFormat`} - \n\n * `rangePreviewDate` {`Date | undefined`} - \n\n * `activeDaysViewIndex` {`number`} - \n\n * `daysViews` {`NodeList`} - \n\n * `monthsView` - \n\n * `yearsView` - \n\n * `hideOutsideDays` {`boolean`} - Controls the visibility of the dates that do not belong to the current month.\n\n * `hasHeader` {`boolean`} - Determines whether the calendar has header. Even if set to true, the header is not displayed for `multiple` selection.\n\n * `headerOrientation` {`\"vertical\" | \"horizontal\"`} - The orientation of the header.\n\n * `orientation` {`\"vertical\" | \"horizontal\"`} - The orientation of the multiple months displayed in days view.\n\n * `visibleMonths` {`number`} - The number of months displayed in days view.\n\n * `activeView` {`\"days\" | \"months\" | \"years\"`} - The active view.\n\n * `formatOptions` {`Pick<DateTimeFormatOptions, \"month\" | \"weekday\">`} - The options used to format the months and the weekdays in the calendar views.\n\n * `resourceStrings` {`IgcCalendarResourceStrings`} - The resource strings.\n\n * `yearPerPage` {`18 | 15`} - \n\n * `previousButtonLabel` {`string`} - \n\n * `nextButtonLabel` {`string`} - \n\n * `handleKeyDown` - \n\n * `size` {\"small\" | \"medium\" | \"large\"} - Determines the size of the component.\n\n * `calendarModel` - \n\n * `value` {`Date | Date[] | undefined`} - Тhe current value of the calendar.\nWhen selection is set to single, it accepts a single Date object.\nOtherwise, it is an array of Date objects.\n\n * `selection` {`\"single\" | \"multiple\" | \"range\"`} - Sets the type of date selection.\n\n * `showWeekNumbers` {`boolean`} - Show/hide the week numbers.\n\n * `weekStart` {`\"sunday\" | \"monday\" | \"tuesday\" | \"wednesday\" | \"thursday\" | \"friday\" | \"saturday\"`} - Sets the start day of the week.\n\n * `activeDate` {`Date`} - Sets the date which is shown in view and is highlighted. By default it is the current date.\n\n * `locale` {`string`} - Sets the locale used for formatting and displaying the dates in the calendar.\n\n * `disabledDates` {`DateRangeDescriptor[]`} - Gets/sets disabled dates.\n\n * `specialDates` {`DateRangeDescriptor[]`} - Gets/sets special dates.",
280
+ "description": "Represents a calendar that lets users\nto select a date value in a variety of different ways.\n\nEvents:\n\n * `igcChange` {} - Emitted when calendar changes its value.\n\nSlots:\n\n * ` ` {} - The default slot for the calendar.\n\n * `title` {} - Renders the title of the calendar header.\n\nAttributes:\n\n * `hide-outside-days` {`boolean`} - Controls the visibility of the dates that do not belong to the current month.\n\n * `hide-header` {`boolean`} - Determines whether the calendar hides its header. Even if set to false, the header is not displayed for `multiple` selection.\n\n * `header-orientation` {`\"vertical\" | \"horizontal\"`} - The orientation of the header.\n\n * `orientation` {`\"vertical\" | \"horizontal\"`} - The orientation of the multiple months displayed in days view.\n\n * `visible-months` {`number`} - The number of months displayed in days view.\n\n * `active-view` {`\"days\" | \"months\" | \"years\"`} - The active view.\n\n * `size` {\"small\" | \"medium\" | \"large\"} - Determines the size of the component.\n\n * `value` {`Date | undefined`} - Тhe current value of the calendar.\nUsed when selection is set to single.\n\n * `values` {`Date[] | undefined`} - Тhe current values of the calendar.\nUsed when selection is set to multiple or range.\n\n * `selection` {`\"single\" | \"multiple\" | \"range\"`} - Sets the type of date selection.\n\n * `show-week-numbers` {`boolean`} - Show/hide the week numbers.\n\n * `week-start` {`\"sunday\" | \"monday\" | \"tuesday\" | \"wednesday\" | \"thursday\" | \"friday\" | \"saturday\"`} - Sets the start day of the week.\n\n * `locale` {`string`} - Sets the locale used for formatting and displaying the dates in the calendar.\n\nProperties:\n\n * `tagName` {`string`} - \n\n * `styles` {`CSSResult[]`} - \n\n * `formatterMonth` {`DateTimeFormat`} - \n\n * `formatterWeekday` {`DateTimeFormat`} - \n\n * `formatterMonthDay` {`DateTimeFormat`} - \n\n * `rangePreviewDate` {`Date | undefined`} - \n\n * `activeDaysViewIndex` {`number`} - \n\n * `daysViews` {`NodeList`} - \n\n * `monthsView` - \n\n * `yearsView` - \n\n * `hideOutsideDays` {`boolean`} - Controls the visibility of the dates that do not belong to the current month.\n\n * `hideHeader` {`boolean`} - Determines whether the calendar hides its header. Even if set to false, the header is not displayed for `multiple` selection.\n\n * `headerOrientation` {`\"vertical\" | \"horizontal\"`} - The orientation of the header.\n\n * `orientation` {`\"vertical\" | \"horizontal\"`} - The orientation of the multiple months displayed in days view.\n\n * `visibleMonths` {`number`} - The number of months displayed in days view.\n\n * `activeView` {`\"days\" | \"months\" | \"years\"`} - The active view.\n\n * `formatOptions` {`Pick<DateTimeFormatOptions, \"month\" | \"weekday\">`} - The options used to format the months and the weekdays in the calendar views.\n\n * `resourceStrings` {`IgcCalendarResourceStrings`} - The resource strings.\n\n * `yearPerPage` {`18 | 15`} - \n\n * `previousButtonLabel` {`string`} - \n\n * `nextButtonLabel` {`string`} - \n\n * `handleKeyDown` - \n\n * `size` {\"small\" | \"medium\" | \"large\"} - Determines the size of the component.\n\n * `calendarModel` - \n\n * `value` {`Date | undefined`} - Тhe current value of the calendar.\nUsed when selection is set to single.\n\n * `values` {`Date[] | undefined`} - Тhe current values of the calendar.\nUsed when selection is set to multiple or range.\n\n * `selection` {`\"single\" | \"multiple\" | \"range\"`} - Sets the type of date selection.\n\n * `showWeekNumbers` {`boolean`} - Show/hide the week numbers.\n\n * `weekStart` {`\"sunday\" | \"monday\" | \"tuesday\" | \"wednesday\" | \"thursday\" | \"friday\" | \"saturday\"`} - Sets the start day of the week.\n\n * `activeDate` {`Date`} - Sets the date which is shown in view and is highlighted. By default it is the current date.\n\n * `locale` {`string`} - Sets the locale used for formatting and displaying the dates in the calendar.\n\n * `disabledDates` {`DateRangeDescriptor[]`} - Gets/sets disabled dates.\n\n * `specialDates` {`DateRangeDescriptor[]`} - Gets/sets special dates.",
273
281
  "attributes": [
274
282
  {
275
283
  "name": "hide-outside-days",
@@ -277,8 +285,8 @@
277
285
  "valueSet": "v"
278
286
  },
279
287
  {
280
- "name": "has-header",
281
- "description": "`has-header` {`boolean`} - Determines whether the calendar has header. Even if set to true, the header is not displayed for `multiple` selection.\n\nProperty: hasHeader\n\nDefault: true",
288
+ "name": "hide-header",
289
+ "description": "`hide-header` {`boolean`} - Determines whether the calendar hides its header. Even if set to false, the header is not displayed for `multiple` selection.\n\nProperty: hideHeader\n\nDefault: false",
282
290
  "valueSet": "v"
283
291
  },
284
292
  {
@@ -339,6 +347,16 @@
339
347
  }
340
348
  ]
341
349
  },
350
+ {
351
+ "name": "value",
352
+ "description": "`value` {`Date | undefined`} - Тhe current value of the calendar.\nUsed when selection is set to single.\n\nProperty: value",
353
+ "values": []
354
+ },
355
+ {
356
+ "name": "values",
357
+ "description": "`values` {`Date[] | undefined`} - Тhe current values of the calendar.\nUsed when selection is set to multiple or range.\n\nProperty: values",
358
+ "values": []
359
+ },
342
360
  {
343
361
  "name": "selection",
344
362
  "description": "`selection` {`\"single\" | \"multiple\" | \"range\"`} - Sets the type of date selection.\n\nProperty: selection\n\nDefault: single",
@@ -398,7 +416,7 @@
398
416
  },
399
417
  {
400
418
  "name": "igc-days-view",
401
- "description": "Instantiate a days view as a separate component in the calendar.\n\nEvents:\n\n * `igcActiveDateChange` {} - Emitted when the active date changes.\n\n * `igcRangePreviewDateChange` {} - Emitted when the range preview date changes.\n\nAttributes:\n\n * `hide-leading-days` {`boolean`} - Controls the visibility of the leading dates that do not belong to the current month.\n\n * `hide-trailing-days` {`boolean`} - Controls the visibility of the trailing dates that do not belong to the current month.\n\n * `active` {`boolean`} - Gets/sets the active state of the days view.\n\n * `week-day-format` {`\"long\" | \"short\" | \"narrow\"`} - The format of the days. Defaults to narrow.\n\n * `selection` {`\"single\" | \"multiple\" | \"range\"`} - Sets the type of date selection.\n\n * `show-week-numbers` {`boolean`} - Show/hide the week numbers.\n\n * `week-start` {`\"sunday\" | \"monday\" | \"tuesday\" | \"wednesday\" | \"thursday\" | \"friday\" | \"saturday\"`} - Sets the start day of the week.\n\n * `locale` {`string`} - Sets the locale used for formatting and displaying the dates in the calendar.\n\nProperties:\n\n * `styles` {`CSSResult[]`} - \n\n * `formatterWeekday` {`DateTimeFormat`} - \n\n * `dates` {`ICalendarDate[][]`} - \n\n * `activeDay` {`HTMLElement`} - \n\n * `hideLeadingDays` {`boolean`} - Controls the visibility of the leading dates that do not belong to the current month.\n\n * `hideTrailingDays` {`boolean`} - Controls the visibility of the trailing dates that do not belong to the current month.\n\n * `active` {`boolean`} - Gets/sets the active state of the days view.\n\n * `rangePreviewDate` {`Date | undefined`} - The range preview date.\n\n * `weekDayFormat` {`\"long\" | \"short\" | \"narrow\"`} - The format of the days. Defaults to narrow.\n\n * `resourceStrings` {`IgcCalendarResourceStrings`} - The resource strings.\n\n * `isSingleSelection` {`boolean`} - \n\n * `calendarModel` - \n\n * `value` {`Date | Date[] | undefined`} - Тhe current value of the calendar.\nWhen selection is set to single, it accepts a single Date object.\nOtherwise, it is an array of Date objects.\n\n * `selection` {`\"single\" | \"multiple\" | \"range\"`} - Sets the type of date selection.\n\n * `showWeekNumbers` {`boolean`} - Show/hide the week numbers.\n\n * `weekStart` {`\"sunday\" | \"monday\" | \"tuesday\" | \"wednesday\" | \"thursday\" | \"friday\" | \"saturday\"`} - Sets the start day of the week.\n\n * `activeDate` {`Date`} - Sets the date which is shown in view and is highlighted. By default it is the current date.\n\n * `locale` {`string`} - Sets the locale used for formatting and displaying the dates in the calendar.\n\n * `disabledDates` {`DateRangeDescriptor[]`} - Gets/sets disabled dates.\n\n * `specialDates` {`DateRangeDescriptor[]`} - Gets/sets special dates.",
419
+ "description": "Instantiate a days view as a separate component in the calendar.\n\nEvents:\n\n * `igcActiveDateChange` {} - Emitted when the active date changes.\n\n * `igcRangePreviewDateChange` {} - Emitted when the range preview date changes.\n\nAttributes:\n\n * `hide-leading-days` {`boolean`} - Controls the visibility of the leading dates that do not belong to the current month.\n\n * `hide-trailing-days` {`boolean`} - Controls the visibility of the trailing dates that do not belong to the current month.\n\n * `active` {`boolean`} - Gets/sets the active state of the days view.\n\n * `week-day-format` {`\"long\" | \"short\" | \"narrow\"`} - The format of the days. Defaults to narrow.\n\n * `value` {`Date | undefined`} - Тhe current value of the calendar.\nUsed when selection is set to single.\n\n * `values` {`Date[] | undefined`} - Тhe current values of the calendar.\nUsed when selection is set to multiple or range.\n\n * `selection` {`\"single\" | \"multiple\" | \"range\"`} - Sets the type of date selection.\n\n * `show-week-numbers` {`boolean`} - Show/hide the week numbers.\n\n * `week-start` {`\"sunday\" | \"monday\" | \"tuesday\" | \"wednesday\" | \"thursday\" | \"friday\" | \"saturday\"`} - Sets the start day of the week.\n\n * `locale` {`string`} - Sets the locale used for formatting and displaying the dates in the calendar.\n\nProperties:\n\n * `styles` {`CSSResult[]`} - \n\n * `formatterWeekday` {`DateTimeFormat`} - \n\n * `dates` {`ICalendarDate[][]`} - \n\n * `activeDay` {`HTMLElement`} - \n\n * `hideLeadingDays` {`boolean`} - Controls the visibility of the leading dates that do not belong to the current month.\n\n * `hideTrailingDays` {`boolean`} - Controls the visibility of the trailing dates that do not belong to the current month.\n\n * `active` {`boolean`} - Gets/sets the active state of the days view.\n\n * `rangePreviewDate` {`Date | undefined`} - The range preview date.\n\n * `weekDayFormat` {`\"long\" | \"short\" | \"narrow\"`} - The format of the days. Defaults to narrow.\n\n * `resourceStrings` {`IgcCalendarResourceStrings`} - The resource strings.\n\n * `isSingleSelection` {`boolean`} - \n\n * `calendarModel` - \n\n * `value` {`Date | undefined`} - Тhe current value of the calendar.\nUsed when selection is set to single.\n\n * `values` {`Date[] | undefined`} - Тhe current values of the calendar.\nUsed when selection is set to multiple or range.\n\n * `selection` {`\"single\" | \"multiple\" | \"range\"`} - Sets the type of date selection.\n\n * `showWeekNumbers` {`boolean`} - Show/hide the week numbers.\n\n * `weekStart` {`\"sunday\" | \"monday\" | \"tuesday\" | \"wednesday\" | \"thursday\" | \"friday\" | \"saturday\"`} - Sets the start day of the week.\n\n * `activeDate` {`Date`} - Sets the date which is shown in view and is highlighted. By default it is the current date.\n\n * `locale` {`string`} - Sets the locale used for formatting and displaying the dates in the calendar.\n\n * `disabledDates` {`DateRangeDescriptor[]`} - Gets/sets disabled dates.\n\n * `specialDates` {`DateRangeDescriptor[]`} - Gets/sets special dates.",
402
420
  "attributes": [
403
421
  {
404
422
  "name": "hide-leading-days",
@@ -430,6 +448,16 @@
430
448
  }
431
449
  ]
432
450
  },
451
+ {
452
+ "name": "value",
453
+ "description": "`value` {`Date | undefined`} - Тhe current value of the calendar.\nUsed when selection is set to single.\n\nProperty: value",
454
+ "values": []
455
+ },
456
+ {
457
+ "name": "values",
458
+ "description": "`values` {`Date[] | undefined`} - Тhe current values of the calendar.\nUsed when selection is set to multiple or range.\n\nProperty: values",
459
+ "values": []
460
+ },
433
461
  {
434
462
  "name": "selection",
435
463
  "description": "`selection` {`\"single\" | \"multiple\" | \"range\"`} - Sets the type of date selection.\n\nProperty: selection\n\nDefault: single",
@@ -554,11 +582,11 @@
554
582
  },
555
583
  {
556
584
  "name": "igc-card",
557
- "description": "A container which wraps different elements related to a single subject\n\nSlots:\n\n * ` ` {} - Renders card content\n\nAttributes:\n\n * `outlined` {`boolean`} - Sets card outline style, otherwise card looks elevated\n\nProperties:\n\n * `tagName` {`string`} - \n\n * `styles` - \n\n * `outlined` {`boolean`} - Sets card outline style, otherwise card looks elevated",
585
+ "description": "A container which wraps different elements related to a single subject\n\nSlots:\n\n * ` ` {} - Renders card content\n\nAttributes:\n\n * `elevated` {`boolean`} - Sets card elevated style, otherwise card looks outlined.\n\nProperties:\n\n * `tagName` {`string`} - \n\n * `styles` - \n\n * `elevated` {`boolean`} - Sets card elevated style, otherwise card looks outlined.",
558
586
  "attributes": [
559
587
  {
560
- "name": "outlined",
561
- "description": "`outlined` {`boolean`} - Sets card outline style, otherwise card looks elevated\n\nProperty: outlined\n\nDefault: true",
588
+ "name": "elevated",
589
+ "description": "`elevated` {`boolean`} - Sets card elevated style, otherwise card looks outlined.\n\nProperty: elevated\n\nDefault: false",
562
590
  "valueSet": "v"
563
591
  }
564
592
  ]
@@ -736,7 +764,7 @@
736
764
  },
737
765
  {
738
766
  "name": "igc-input",
739
- "description": "Events:\n\n * `igcInput` {} - Emitted when the control input receives user input.\n\n * `igcChange` {} - Emitted when the control's checked state changes.\n\n * `igcFocus` {} - Emitted when the control gains focus.\n\n * `igcBlur` {} - Emitted when the control loses focus.\n\nSlots:\n\n * `prefix` {} - Renders content before the input.\n\n * `suffix` {} - Renders content after input.\n\n * `helper-text` {} - Renders content below the input.\n\nAttributes:\n\n * `dir` {`Direction`} - The direction attribute of the control.\n\n * `type` {`\"number\" | \"email\" | \"password\" | \"search\" | \"tel\" | \"text\" | \"url\"`} - The type attribute of the control.\n\n * `inputmode` {`\"numeric\" | \"none\" | \"email\" | \"search\" | \"tel\" | \"url\" | \"txt\" | \"decimal\"`} - The input mode attribute of the control.\n\n * `name` {`string`} - The name attribute of the control.\n\n * `value` {`string`} - The value attribute of the control.\n\n * `pattern` {`string`} - The pattern attribute of the control.\n\n * `label` {`string`} - The label of the control.\n\n * `placeholder` {`string`} - The placeholder attribute of the control.\n\n * `invalid` {`boolean`} - Controls the validity of the control.\n\n * `outlined` {`boolean`} - \n\n * `required` {`boolean`} - Makes the control a required field.\n\n * `disabled` {`boolean`} - Makes the control a disabled field.\n\n * `readonly` {`boolean`} - Makes the control a readonly field.\n\n * `minlength` {`number`} - The minlength attribute of the control.\n\n * `maxlength` {`number`} - The maxlength attribute of the control.\n\n * `min` {`string | number`} - The min attribute of the control.\n\n * `max` {`string | number`} - The max attribute of the control.\n\n * `step` {`number`} - The step attribute of the control.\n\n * `autofocus` {`boolean`} - The autofocus attribute of the control.\n\n * `autocomplete` {`string`} - The autocomplete attribute of the control.\n\n * `size` {\"small\" | \"medium\" | \"large\"} - Determines the size of the component.\n\nProperties:\n\n * `tagName` {`string`} - \n\n * `styles` - \n\n * `shadowRootOptions` {`{ delegatesFocus: boolean; mode: ShadowRootMode; }`} - \n\n * `inputId` {`string`} - \n\n * `labelId` {`string`} - \n\n * `_prefixLength` {`number`} - \n\n * `_suffixLength` {`number`} - \n\n * `theme` {`string | undefined`} - \n\n * `input` {`HTMLInputElement`} - \n\n * `_prefix` {`NodeListOf<HTMLElement>`} - \n\n * `_suffix` {`NodeListOf<HTMLElement>`} - \n\n * `dir` {`Direction`} - The direction attribute of the control.\n\n * `type` {`\"number\" | \"email\" | \"password\" | \"search\" | \"tel\" | \"text\" | \"url\"`} - The type attribute of the control.\n\n * `inputmode` {`\"numeric\" | \"none\" | \"email\" | \"search\" | \"tel\" | \"url\" | \"txt\" | \"decimal\"`} - The input mode attribute of the control.\n\n * `name` {`string`} - The name attribute of the control.\n\n * `value` {`string`} - The value attribute of the control.\n\n * `pattern` {`string`} - The pattern attribute of the control.\n\n * `label` {`string`} - The label of the control.\n\n * `placeholder` {`string`} - The placeholder attribute of the control.\n\n * `invalid` {`boolean`} - Controls the validity of the control.\n\n * `outlined` {`boolean`} - \n\n * `required` {`boolean`} - Makes the control a required field.\n\n * `disabled` {`boolean`} - Makes the control a disabled field.\n\n * `readonly` {`boolean`} - Makes the control a readonly field.\n\n * `minlength` {`number`} - The minlength attribute of the control.\n\n * `maxlength` {`number`} - The maxlength attribute of the control.\n\n * `min` {`string | number`} - The min attribute of the control.\n\n * `max` {`string | number`} - The max attribute of the control.\n\n * `step` {`number`} - The step attribute of the control.\n\n * `autofocus` {`boolean`} - The autofocus attribute of the control.\n\n * `autocomplete` {`string`} - The autocomplete attribute of the control.\n\n * `size` {\"small\" | \"medium\" | \"large\"} - Determines the size of the component.",
767
+ "description": "Events:\n\n * `igcInput` {} - Emitted when the control input receives user input.\n\n * `igcChange` {} - Emitted when the control's checked state changes.\n\n * `igcFocus` {} - Emitted when the control gains focus.\n\n * `igcBlur` {} - Emitted when the control loses focus.\n\nSlots:\n\n * `prefix` {} - Renders content before the input.\n\n * `suffix` {} - Renders content after input.\n\n * `helper-text` {} - Renders content below the input.\n\nAttributes:\n\n * `dir` {`Direction`} - The direction attribute of the control.\n\n * `type` {`\"number\" | \"email\" | \"password\" | \"search\" | \"tel\" | \"text\" | \"url\"`} - The type attribute of the control.\n\n * `inputmode` {`\"numeric\" | \"none\" | \"email\" | \"search\" | \"tel\" | \"url\" | \"txt\" | \"decimal\"`} - The input mode attribute of the control.\n\n * `name` {`string`} - The name attribute of the control.\n\n * `value` {`string`} - The value attribute of the control.\n\n * `pattern` {`string`} - The pattern attribute of the control.\n\n * `label` {`string`} - The label of the control.\n\n * `placeholder` {`string`} - The placeholder attribute of the control.\n\n * `invalid` {`boolean`} - Controls the validity of the control.\n\n * `outlined` {`boolean`} - \n\n * `required` {`boolean`} - Makes the control a required field.\n\n * `disabled` {`boolean`} - Makes the control a disabled field.\n\n * `readonly` {`boolean`} - Makes the control a readonly field.\n\n * `minlength` {`number`} - The minlength attribute of the control.\n\n * `maxlength` {`number`} - The maxlength attribute of the control.\n\n * `min` {`string | number`} - The min attribute of the control.\n\n * `max` {`string | number`} - The max attribute of the control.\n\n * `step` {`number`} - The step attribute of the control.\n\n * `autofocus` {`boolean`} - The autofocus attribute of the control.\n\n * `autocomplete` {`string`} - The autocomplete attribute of the control.\n\n * `size` {\"small\" | \"medium\" | \"large\"} - Determines the size of the component.\n\nProperties:\n\n * `tagName` {`string`} - \n\n * `styles` - \n\n * `shadowRootOptions` {`{ delegatesFocus: boolean; mode: ShadowRootMode; customElements?: CustomElementRegistry | undefined; }`} - \n\n * `inputId` {`string`} - \n\n * `labelId` {`string`} - \n\n * `_prefixLength` {`number`} - \n\n * `_suffixLength` {`number`} - \n\n * `theme` {`string | undefined`} - \n\n * `input` {`HTMLInputElement`} - \n\n * `_prefix` {`NodeListOf<HTMLElement>`} - \n\n * `_suffix` {`NodeListOf<HTMLElement>`} - \n\n * `dir` {`Direction`} - The direction attribute of the control.\n\n * `type` {`\"number\" | \"email\" | \"password\" | \"search\" | \"tel\" | \"text\" | \"url\"`} - The type attribute of the control.\n\n * `inputmode` {`\"numeric\" | \"none\" | \"email\" | \"search\" | \"tel\" | \"url\" | \"txt\" | \"decimal\"`} - The input mode attribute of the control.\n\n * `name` {`string`} - The name attribute of the control.\n\n * `value` {`string`} - The value attribute of the control.\n\n * `pattern` {`string`} - The pattern attribute of the control.\n\n * `label` {`string`} - The label of the control.\n\n * `placeholder` {`string`} - The placeholder attribute of the control.\n\n * `invalid` {`boolean`} - Controls the validity of the control.\n\n * `outlined` {`boolean`} - \n\n * `required` {`boolean`} - Makes the control a required field.\n\n * `disabled` {`boolean`} - Makes the control a disabled field.\n\n * `readonly` {`boolean`} - Makes the control a readonly field.\n\n * `minlength` {`number`} - The minlength attribute of the control.\n\n * `maxlength` {`number`} - The maxlength attribute of the control.\n\n * `min` {`string | number`} - The min attribute of the control.\n\n * `max` {`string | number`} - The max attribute of the control.\n\n * `step` {`number`} - The step attribute of the control.\n\n * `autofocus` {`boolean`} - The autofocus attribute of the control.\n\n * `autocomplete` {`string`} - The autocomplete attribute of the control.\n\n * `size` {\"small\" | \"medium\" | \"large\"} - Determines the size of the component.",
740
768
  "attributes": [
741
769
  {
742
770
  "name": "dir",
@@ -1089,6 +1117,228 @@
1089
1117
  "name": "igc-ripple",
1090
1118
  "description": "A ripple can be applied to an element to represent\ninteractive surface.\n\nProperties:\n\n * `tagName` {`string`} - \n\n * `styles` - \n\n * `handler` - ",
1091
1119
  "attributes": []
1120
+ },
1121
+ {
1122
+ "name": "igc-range-slider",
1123
+ "description": "A range slider component used to select two numeric values within a range.\n\nEvents:\n\n * `igcInput` {} - Emitted when a value is changed via thumb drag or keyboard interaction.\n\n * `igcChange` {} - Emitted when a value change is committed on a thumb drag end or keyboard interaction.\n\nAttributes:\n\n * `lower` {`number`} - The current value of the lower thumb.\n\n * `upper` {`number`} - The current value of the upper thumb.\n\n * `aria-label-lower` {`string`} - The aria label of the lower thumb.\n\n * `aria-label-upper` {`string`} - The aria label of the upper thumb.\n\n * `min` {`number`} - The minimum value of the slider scale. Defaults to 0.\n\n * `max` {`number`} - The maximum value of the slider scale. Defaults to 100.\n\n * `lower-bound` {`number | undefined`} - The lower bound of the slider value. If not set, the `min` value is applied.\n\n * `upper-bound` {`number | undefined`} - The upper bound of the slider value. If not set, the `max` value is applied.\n\n * `disabled` {`boolean`} - Disables the UI interactions of the slider.\n\n * `discrete-track` {`boolean`} - Marks the slider track as discrete so it displays the steps.\nIf the `step` is 0, the slider will remain continuos even if `discreteTrack` is `true`.\n\n * `hide-tooltip` {`boolean`} - Hides the thumb tooltip.\n\n * `step` {`number`} - Specifies the granularity that the value must adhere to.\nIf set to 0 no stepping is implied and any value in the range is allowed.\n\n * `primary-ticks` {`number`} - The number of primary ticks. It defaults to 0 which means no primary ticks are displayed.\n\n * `secondary-ticks` {`number`} - The number of secondary ticks. It defaults to 0 which means no secondary ticks are displayed.\n\n * `tick-orientation` {`\"start\" | \"end\" | \"mirror\"`} - Changes the orientation of the ticks.\n\n * `hide-primary-labels` {`boolean`} - Hides the primary tick labels.\n\n * `hide-secondary-labels` {`boolean`} - Hides the secondary tick labels.\n\n * `tick-label-rotation` {`0 | 90 | -90`} - The degrees for the rotation of the tick labels. Defaults to 0.\n\nProperties:\n\n * `tagName` {`string`} - \n\n * `thumbFrom` {`HTMLElement`} - \n\n * `thumbTo` {`HTMLElement`} - \n\n * `_lower` {`number`} - \n\n * `_upper` {`number`} - \n\n * `lower` {`number`} - The current value of the lower thumb.\n\n * `upper` {`number`} - The current value of the upper thumb.\n\n * `ariaLabelLower` {`string`} - The aria label of the lower thumb.\n\n * `ariaLabelUpper` {`string`} - The aria label of the upper thumb.\n\n * `styles` {`CSSResult[]`} - \n\n * `thumb` {`HTMLElement`} - \n\n * `_lowerBound` {`number | undefined`} - \n\n * `_upperBound` {`number | undefined`} - \n\n * `_min` {`number`} - \n\n * `_max` {`number`} - \n\n * `startValue` {`number | undefined`} - \n\n * `pointerCaptured` {`boolean`} - \n\n * `thumbHoverTimer` - \n\n * `activeThumb` {`HTMLElement | undefined`} - \n\n * `thumbLabelsVisible` {`boolean`} - \n\n * `min` {`number`} - The minimum value of the slider scale. Defaults to 0.\n\n * `max` {`number`} - The maximum value of the slider scale. Defaults to 100.\n\n * `lowerBound` {`number | undefined`} - The lower bound of the slider value. If not set, the `min` value is applied.\n\n * `upperBound` {`number | undefined`} - The upper bound of the slider value. If not set, the `max` value is applied.\n\n * `disabled` {`boolean`} - Disables the UI interactions of the slider.\n\n * `discreteTrack` {`boolean`} - Marks the slider track as discrete so it displays the steps.\nIf the `step` is 0, the slider will remain continuos even if `discreteTrack` is `true`.\n\n * `hideTooltip` {`boolean`} - Hides the thumb tooltip.\n\n * `step` {`number`} - Specifies the granularity that the value must adhere to.\nIf set to 0 no stepping is implied and any value in the range is allowed.\n\n * `primaryTicks` {`number`} - The number of primary ticks. It defaults to 0 which means no primary ticks are displayed.\n\n * `secondaryTicks` {`number`} - The number of secondary ticks. It defaults to 0 which means no secondary ticks are displayed.\n\n * `tickOrientation` {`\"start\" | \"end\" | \"mirror\"`} - Changes the orientation of the ticks.\n\n * `hidePrimaryLabels` {`boolean`} - Hides the primary tick labels.\n\n * `hideSecondaryLabels` {`boolean`} - Hides the secondary tick labels.\n\n * `labelFormatter` - Specifies a custom function to format the labels.\n\n * `tickLabelRotation` {`0 | 90 | -90`} - The degrees for the rotation of the tick labels. Defaults to 0.\n\n * `activeValue` {`number`} - \n\n * `actualMin` {`number`} - \n\n * `actualMax` {`number`} - \n\n * `isLTR` {`boolean`} - \n\n * `pointerDown` - \n\n * `pointerMove` - \n\n * `lostPointerCapture` - \n\n * `handleKeydown` - \n\n * `handleThumbPointerEnter` - \n\n * `handleThumbPointerLeave` - ",
1124
+ "attributes": [
1125
+ {
1126
+ "name": "lower",
1127
+ "description": "`lower` {`number`} - The current value of the lower thumb.\n\nProperty: lower"
1128
+ },
1129
+ {
1130
+ "name": "upper",
1131
+ "description": "`upper` {`number`} - The current value of the upper thumb.\n\nProperty: upper"
1132
+ },
1133
+ {
1134
+ "name": "aria-label-lower",
1135
+ "description": "`aria-label-lower` {`string`} - The aria label of the lower thumb.\n\nProperty: ariaLabelLower"
1136
+ },
1137
+ {
1138
+ "name": "aria-label-upper",
1139
+ "description": "`aria-label-upper` {`string`} - The aria label of the upper thumb.\n\nProperty: ariaLabelUpper"
1140
+ },
1141
+ {
1142
+ "name": "min",
1143
+ "description": "`min` {`number`} - The minimum value of the slider scale. Defaults to 0.\n\nProperty: min"
1144
+ },
1145
+ {
1146
+ "name": "max",
1147
+ "description": "`max` {`number`} - The maximum value of the slider scale. Defaults to 100.\n\nProperty: max"
1148
+ },
1149
+ {
1150
+ "name": "lower-bound",
1151
+ "description": "`lower-bound` {`number | undefined`} - The lower bound of the slider value. If not set, the `min` value is applied.\n\nProperty: lowerBound",
1152
+ "values": []
1153
+ },
1154
+ {
1155
+ "name": "upper-bound",
1156
+ "description": "`upper-bound` {`number | undefined`} - The upper bound of the slider value. If not set, the `max` value is applied.\n\nProperty: upperBound",
1157
+ "values": []
1158
+ },
1159
+ {
1160
+ "name": "disabled",
1161
+ "description": "`disabled` {`boolean`} - Disables the UI interactions of the slider.\n\nProperty: disabled\n\nDefault: false",
1162
+ "valueSet": "v"
1163
+ },
1164
+ {
1165
+ "name": "discrete-track",
1166
+ "description": "`discrete-track` {`boolean`} - Marks the slider track as discrete so it displays the steps.\nIf the `step` is 0, the slider will remain continuos even if `discreteTrack` is `true`.\n\nProperty: discreteTrack\n\nDefault: false",
1167
+ "valueSet": "v"
1168
+ },
1169
+ {
1170
+ "name": "hide-tooltip",
1171
+ "description": "`hide-tooltip` {`boolean`} - Hides the thumb tooltip.\n\nProperty: hideTooltip\n\nDefault: false",
1172
+ "valueSet": "v"
1173
+ },
1174
+ {
1175
+ "name": "step",
1176
+ "description": "`step` {`number`} - Specifies the granularity that the value must adhere to.\nIf set to 0 no stepping is implied and any value in the range is allowed.\n\nProperty: step\n\nDefault: 1"
1177
+ },
1178
+ {
1179
+ "name": "primary-ticks",
1180
+ "description": "`primary-ticks` {`number`} - The number of primary ticks. It defaults to 0 which means no primary ticks are displayed.\n\nProperty: primaryTicks\n\nDefault: 0"
1181
+ },
1182
+ {
1183
+ "name": "secondary-ticks",
1184
+ "description": "`secondary-ticks` {`number`} - The number of secondary ticks. It defaults to 0 which means no secondary ticks are displayed.\n\nProperty: secondaryTicks\n\nDefault: 0"
1185
+ },
1186
+ {
1187
+ "name": "tick-orientation",
1188
+ "description": "`tick-orientation` {`\"start\" | \"end\" | \"mirror\"`} - Changes the orientation of the ticks.\n\nProperty: tickOrientation\n\nDefault: end",
1189
+ "values": [
1190
+ {
1191
+ "name": "start"
1192
+ },
1193
+ {
1194
+ "name": "end"
1195
+ },
1196
+ {
1197
+ "name": "mirror"
1198
+ }
1199
+ ]
1200
+ },
1201
+ {
1202
+ "name": "hide-primary-labels",
1203
+ "description": "`hide-primary-labels` {`boolean`} - Hides the primary tick labels.\n\nProperty: hidePrimaryLabels\n\nDefault: false",
1204
+ "valueSet": "v"
1205
+ },
1206
+ {
1207
+ "name": "hide-secondary-labels",
1208
+ "description": "`hide-secondary-labels` {`boolean`} - Hides the secondary tick labels.\n\nProperty: hideSecondaryLabels\n\nDefault: false",
1209
+ "valueSet": "v"
1210
+ },
1211
+ {
1212
+ "name": "tick-label-rotation",
1213
+ "description": "`tick-label-rotation` {`0 | 90 | -90`} - The degrees for the rotation of the tick labels. Defaults to 0.\n\nProperty: tickLabelRotation\n\nDefault: 0",
1214
+ "values": [
1215
+ {
1216
+ "name": "0"
1217
+ },
1218
+ {
1219
+ "name": "90"
1220
+ },
1221
+ {
1222
+ "name": "-90"
1223
+ }
1224
+ ]
1225
+ },
1226
+ {
1227
+ "name": "onigcInput",
1228
+ "description": "`igcInput` {} - Emitted when a value is changed via thumb drag or keyboard interaction."
1229
+ },
1230
+ {
1231
+ "name": "onigcChange",
1232
+ "description": "`igcChange` {} - Emitted when a value change is committed on a thumb drag end or keyboard interaction."
1233
+ }
1234
+ ]
1235
+ },
1236
+ {
1237
+ "name": "igc-slider",
1238
+ "description": "A slider component used to select numeric value within a range.\n\nEvents:\n\n * `igcInput` {} - Emitted when a value is changed via thumb drag or keyboard interaction.\n\n * `igcChange` {} - Emitted when a value change is committed on a thumb drag end or keyboard interaction.\n\nAttributes:\n\n * `value` {`number`} - The current value of the slider.\n\n * `aria-label` {`string`} - The aria label of the slider thumb.\n\n * `min` {`number`} - The minimum value of the slider scale. Defaults to 0.\n\n * `max` {`number`} - The maximum value of the slider scale. Defaults to 100.\n\n * `lower-bound` {`number | undefined`} - The lower bound of the slider value. If not set, the `min` value is applied.\n\n * `upper-bound` {`number | undefined`} - The upper bound of the slider value. If not set, the `max` value is applied.\n\n * `disabled` {`boolean`} - Disables the UI interactions of the slider.\n\n * `discrete-track` {`boolean`} - Marks the slider track as discrete so it displays the steps.\nIf the `step` is 0, the slider will remain continuos even if `discreteTrack` is `true`.\n\n * `hide-tooltip` {`boolean`} - Hides the thumb tooltip.\n\n * `step` {`number`} - Specifies the granularity that the value must adhere to.\nIf set to 0 no stepping is implied and any value in the range is allowed.\n\n * `primary-ticks` {`number`} - The number of primary ticks. It defaults to 0 which means no primary ticks are displayed.\n\n * `secondary-ticks` {`number`} - The number of secondary ticks. It defaults to 0 which means no secondary ticks are displayed.\n\n * `tick-orientation` {`\"start\" | \"end\" | \"mirror\"`} - Changes the orientation of the ticks.\n\n * `hide-primary-labels` {`boolean`} - Hides the primary tick labels.\n\n * `hide-secondary-labels` {`boolean`} - Hides the secondary tick labels.\n\n * `tick-label-rotation` {`0 | 90 | -90`} - The degrees for the rotation of the tick labels. Defaults to 0.\n\nProperties:\n\n * `tagName` {`string`} - \n\n * `_value` {`number`} - \n\n * `_ariaLabel` {`string`} - \n\n * `value` {`number`} - The current value of the slider.\n\n * `ariaLabel` {`string`} - The aria label of the slider thumb.\n\n * `styles` {`CSSResult[]`} - \n\n * `thumb` {`HTMLElement`} - \n\n * `_lowerBound` {`number | undefined`} - \n\n * `_upperBound` {`number | undefined`} - \n\n * `_min` {`number`} - \n\n * `_max` {`number`} - \n\n * `startValue` {`number | undefined`} - \n\n * `pointerCaptured` {`boolean`} - \n\n * `thumbHoverTimer` - \n\n * `activeThumb` {`HTMLElement | undefined`} - \n\n * `thumbLabelsVisible` {`boolean`} - \n\n * `min` {`number`} - The minimum value of the slider scale. Defaults to 0.\n\n * `max` {`number`} - The maximum value of the slider scale. Defaults to 100.\n\n * `lowerBound` {`number | undefined`} - The lower bound of the slider value. If not set, the `min` value is applied.\n\n * `upperBound` {`number | undefined`} - The upper bound of the slider value. If not set, the `max` value is applied.\n\n * `disabled` {`boolean`} - Disables the UI interactions of the slider.\n\n * `discreteTrack` {`boolean`} - Marks the slider track as discrete so it displays the steps.\nIf the `step` is 0, the slider will remain continuos even if `discreteTrack` is `true`.\n\n * `hideTooltip` {`boolean`} - Hides the thumb tooltip.\n\n * `step` {`number`} - Specifies the granularity that the value must adhere to.\nIf set to 0 no stepping is implied and any value in the range is allowed.\n\n * `primaryTicks` {`number`} - The number of primary ticks. It defaults to 0 which means no primary ticks are displayed.\n\n * `secondaryTicks` {`number`} - The number of secondary ticks. It defaults to 0 which means no secondary ticks are displayed.\n\n * `tickOrientation` {`\"start\" | \"end\" | \"mirror\"`} - Changes the orientation of the ticks.\n\n * `hidePrimaryLabels` {`boolean`} - Hides the primary tick labels.\n\n * `hideSecondaryLabels` {`boolean`} - Hides the secondary tick labels.\n\n * `labelFormatter` - Specifies a custom function to format the labels.\n\n * `tickLabelRotation` {`0 | 90 | -90`} - The degrees for the rotation of the tick labels. Defaults to 0.\n\n * `activeValue` {`number`} - \n\n * `actualMin` {`number`} - \n\n * `actualMax` {`number`} - \n\n * `isLTR` {`boolean`} - \n\n * `pointerDown` - \n\n * `pointerMove` - \n\n * `lostPointerCapture` - \n\n * `handleKeydown` - \n\n * `handleThumbPointerEnter` - \n\n * `handleThumbPointerLeave` - ",
1239
+ "attributes": [
1240
+ {
1241
+ "name": "value",
1242
+ "description": "`value` {`number`} - The current value of the slider.\n\nProperty: value"
1243
+ },
1244
+ {
1245
+ "name": "aria-label",
1246
+ "description": "`aria-label` {`string`} - The aria label of the slider thumb.\n\nProperty: ariaLabel"
1247
+ },
1248
+ {
1249
+ "name": "min",
1250
+ "description": "`min` {`number`} - The minimum value of the slider scale. Defaults to 0.\n\nProperty: min"
1251
+ },
1252
+ {
1253
+ "name": "max",
1254
+ "description": "`max` {`number`} - The maximum value of the slider scale. Defaults to 100.\n\nProperty: max"
1255
+ },
1256
+ {
1257
+ "name": "lower-bound",
1258
+ "description": "`lower-bound` {`number | undefined`} - The lower bound of the slider value. If not set, the `min` value is applied.\n\nProperty: lowerBound",
1259
+ "values": []
1260
+ },
1261
+ {
1262
+ "name": "upper-bound",
1263
+ "description": "`upper-bound` {`number | undefined`} - The upper bound of the slider value. If not set, the `max` value is applied.\n\nProperty: upperBound",
1264
+ "values": []
1265
+ },
1266
+ {
1267
+ "name": "disabled",
1268
+ "description": "`disabled` {`boolean`} - Disables the UI interactions of the slider.\n\nProperty: disabled\n\nDefault: false",
1269
+ "valueSet": "v"
1270
+ },
1271
+ {
1272
+ "name": "discrete-track",
1273
+ "description": "`discrete-track` {`boolean`} - Marks the slider track as discrete so it displays the steps.\nIf the `step` is 0, the slider will remain continuos even if `discreteTrack` is `true`.\n\nProperty: discreteTrack\n\nDefault: false",
1274
+ "valueSet": "v"
1275
+ },
1276
+ {
1277
+ "name": "hide-tooltip",
1278
+ "description": "`hide-tooltip` {`boolean`} - Hides the thumb tooltip.\n\nProperty: hideTooltip\n\nDefault: false",
1279
+ "valueSet": "v"
1280
+ },
1281
+ {
1282
+ "name": "step",
1283
+ "description": "`step` {`number`} - Specifies the granularity that the value must adhere to.\nIf set to 0 no stepping is implied and any value in the range is allowed.\n\nProperty: step\n\nDefault: 1"
1284
+ },
1285
+ {
1286
+ "name": "primary-ticks",
1287
+ "description": "`primary-ticks` {`number`} - The number of primary ticks. It defaults to 0 which means no primary ticks are displayed.\n\nProperty: primaryTicks\n\nDefault: 0"
1288
+ },
1289
+ {
1290
+ "name": "secondary-ticks",
1291
+ "description": "`secondary-ticks` {`number`} - The number of secondary ticks. It defaults to 0 which means no secondary ticks are displayed.\n\nProperty: secondaryTicks\n\nDefault: 0"
1292
+ },
1293
+ {
1294
+ "name": "tick-orientation",
1295
+ "description": "`tick-orientation` {`\"start\" | \"end\" | \"mirror\"`} - Changes the orientation of the ticks.\n\nProperty: tickOrientation\n\nDefault: end",
1296
+ "values": [
1297
+ {
1298
+ "name": "start"
1299
+ },
1300
+ {
1301
+ "name": "end"
1302
+ },
1303
+ {
1304
+ "name": "mirror"
1305
+ }
1306
+ ]
1307
+ },
1308
+ {
1309
+ "name": "hide-primary-labels",
1310
+ "description": "`hide-primary-labels` {`boolean`} - Hides the primary tick labels.\n\nProperty: hidePrimaryLabels\n\nDefault: false",
1311
+ "valueSet": "v"
1312
+ },
1313
+ {
1314
+ "name": "hide-secondary-labels",
1315
+ "description": "`hide-secondary-labels` {`boolean`} - Hides the secondary tick labels.\n\nProperty: hideSecondaryLabels\n\nDefault: false",
1316
+ "valueSet": "v"
1317
+ },
1318
+ {
1319
+ "name": "tick-label-rotation",
1320
+ "description": "`tick-label-rotation` {`0 | 90 | -90`} - The degrees for the rotation of the tick labels. Defaults to 0.\n\nProperty: tickLabelRotation\n\nDefault: 0",
1321
+ "values": [
1322
+ {
1323
+ "name": "0"
1324
+ },
1325
+ {
1326
+ "name": "90"
1327
+ },
1328
+ {
1329
+ "name": "-90"
1330
+ }
1331
+ ]
1332
+ },
1333
+ {
1334
+ "name": "onigcInput",
1335
+ "description": "`igcInput` {} - Emitted when a value is changed via thumb drag or keyboard interaction."
1336
+ },
1337
+ {
1338
+ "name": "onigcChange",
1339
+ "description": "`igcChange` {} - Emitted when a value change is committed on a thumb drag end or keyboard interaction."
1340
+ }
1341
+ ]
1092
1342
  }
1093
1343
  ],
1094
1344
  "globalAttributes": [],
@@ -1 +0,0 @@
1
- {"version":3,"file":"avatar.d.ts","sourceRoot":"","sources":["../../../src/components/avatar/avatar.ts"],"names":[],"mappings":"AAAA,OAAO,EAAQ,UAAU,EAAE,MAAM,KAAK,CAAC;;AAqBvC,MAAM,CAAC,OAAO,OAAO,kBAAmB,SAAQ,uBAAwB;IAEtE,OAAc,OAAO,SAAgB;IAGrC,OAAc,MAAM,4BAAY;IAIzB,GAAG,EAAG,MAAM,CAAC;IAGpB,OAAO,CAAC,QAAQ,CAAS;IAIlB,GAAG,EAAG,MAAM,CAAC;IAIb,QAAQ,EAAG,MAAM,CAAC;IAIlB,KAAK,EAAE,QAAQ,GAAG,SAAS,GAAG,QAAQ,CAAY;IAEzD,OAAO,KAAK,OAAO,GAWlB;;IAQD,SAAS,CAAC,gBAAgB;IAI1B,SAAS,CAAC,MAAM;CAyBjB;AAED,OAAO,CAAC,MAAM,CAAC;IACb,UAAU,qBAAqB;QAC7B,YAAY,EAAE,kBAAkB,CAAC;KAClC;CACF"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"avatar.material.css.d.ts","sourceRoot":"","sources":["../../../src/components/avatar/avatar.material.css.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,MAAM,yBAAohD,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"badge.d.ts","sourceRoot":"","sources":["../../../src/components/badge/badge.ts"],"names":[],"mappings":"AAAA,OAAO,EAAQ,UAAU,EAAE,MAAM,KAAK,CAAC;AAcvC,MAAM,CAAC,OAAO,OAAO,iBAAkB,SAAQ,UAAU;IAEvD,OAAc,OAAO,SAAe;IAGpC,OAAc,MAAM,0BAAU;IAIvB,OAAO,CAAC,EAAE,SAAS,GAAG,MAAM,GAAG,SAAS,GAAG,SAAS,GAAG,QAAQ,CAC1D;IAIL,QAAQ,UAAS;IAIjB,KAAK,CAAC,EAAE,SAAS,GAAG,QAAQ,CAAa;IAEhD,SAAS,CAAC,MAAM;CAOjB;AAOD,OAAO,CAAC,MAAM,CAAC;IACb,UAAU,qBAAqB;QAC7B,WAAW,EAAE,iBAAiB,CAAC;KAChC;CACF"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"badge.material.css.d.ts","sourceRoot":"","sources":["../../../src/components/badge/badge.material.css.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,MAAM,yBAAyqD,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"button-base.d.ts","sourceRoot":"","sources":["../../../src/components/button/button-base.ts"],"names":[],"mappings":"AAAA,OAAO,EAAQ,UAAU,EAAE,cAAc,EAAE,MAAM,KAAK,CAAC;AAMvD,OAAO,EAAE,WAAW,EAAE,MAAM,iCAAiC,CAAC;AAG9D,MAAM,WAAW,iBAAiB;IAChC,QAAQ,EAAE,WAAW,CAAC,IAAI,CAAC,CAAC;IAC5B,OAAO,EAAE,WAAW,CAAC,IAAI,CAAC,CAAC;CAC5B;;AAED,8BAAsB,sBAAuB,SAAQ,2BAEpD;IAKC,OAAO,CAAC,aAAa,CAAe;IAO7B,IAAI,EAAG,QAAQ,GAAG,OAAO,GAAG,QAAQ,CAAC;IAIrC,IAAI,EAAG,MAAM,CAAC;IAId,QAAQ,EAAG,MAAM,CAAC;IAIlB,MAAM,EAAG,QAAQ,GAAG,SAAS,GAAG,OAAO,GAAG,MAAM,GAAG,SAAS,CAAC;IAO7D,GAAG,EAAG,MAAM,CAAC;IAMb,QAAQ,UAAS;IAIjB,KAAK,CAAC,OAAO,CAAC,EAAE,YAAY;IAM5B,IAAI;IAIX,SAAS,CAAC,WAAW;IAIrB,SAAS,CAAC,UAAU;IAIpB,SAAS,KAAK,OAAO,OAEpB;IAED,OAAO,CAAC,YAAY;IAepB,OAAO,CAAC,gBAAgB;IAmBxB,SAAS,CAAC,QAAQ,CAAC,aAAa,IAAI,cAAc;IAElD,SAAS,CAAC,MAAM;CAIjB"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"button.d.ts","sourceRoot":"","sources":["../../../src/components/button/button.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,sBAAsB,EAAE,MAAM,kBAAkB,CAAC;AAoB1D,MAAM,CAAC,OAAO,OAAO,kBAAmB,SAAQ,sBAAsB;IAEpE,OAAc,OAAO,SAAgB;IAKrC,OAAc,MAAM,4BAAY;IAIzB,OAAO,EAAE,MAAM,GAAG,WAAW,GAAG,UAAU,GAAG,KAAK,CAAe;;IAOxE,SAAS,KAAK,OAAO;;;;;;;;;MAapB;IAED,SAAS,CAAC,aAAa;CAWxB;AAED,OAAO,CAAC,MAAM,CAAC;IACb,UAAU,qBAAqB;QAC7B,YAAY,EAAE,kBAAkB,CAAC;KAClC;CACF"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"button.material.css.d.ts","sourceRoot":"","sources":["../../../src/components/button/button.material.css.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,MAAM,yBAA4gJ,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"icon-button.d.ts","sourceRoot":"","sources":["../../../src/components/button/icon-button.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,sBAAsB,EAAE,MAAM,kBAAkB,CAAC;AAE1D,OAAO,cAAc,CAAC;AAQtB,MAAM,CAAC,OAAO,OAAO,sBAAuB,SAAQ,sBAAsB;IAExE,OAAc,OAAO,SAAqB;IAG1C,OAAc,MAAM,4BAAY;IAIzB,IAAI,EAAG,MAAM,CAAC;IAId,UAAU,EAAG,MAAM,CAAC;IAIpB,QAAQ,UAAS;IAIjB,OAAO,EAAE,MAAM,GAAG,WAAW,GAAG,UAAU,CAAe;IAEhE,SAAS,CAAC,aAAa;CAaxB;AAED,OAAO,CAAC,MAAM,CAAC;IACb,UAAU,qBAAqB;QAC7B,iBAAiB,EAAE,sBAAsB,CAAC;KAC3C;CACF"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"icon-button.material.css.d.ts","sourceRoot":"","sources":["../../../src/components/button/icon-button.material.css.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,MAAM,yBAAgxF,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"calendar.d.ts","sourceRoot":"","sources":["../../../src/components/calendar/calendar.ts"],"names":[],"mappings":"AAMA,OAAO,EACL,wBAAwB,EACxB,uBAAuB,EAGxB,MAAM,wBAAwB,CAAC;AAGhC,OAAO,EAAE,WAAW,EAAE,MAAM,8BAA8B,CAAC;AAK3D,OAAO,EAEL,0BAA0B,EAC3B,MAAM,mCAAmC,CAAC;AAG3C,OAAO,uBAAuB,CAAC;AAC/B,OAAO,2BAA2B,CAAC;AACnC,OAAO,yBAAyB,CAAC;AACjC,OAAO,cAAc,CAAC;;AA8BtB,MAAM,CAAC,OAAO,OAAO,oBAAqB,SAAQ,yBAKjD;IAEC,OAAc,OAAO,SAAkB;IAKvC,OAAc,MAAM,4BAAY;IAEhC,OAAO,CAAC,cAAc,CAAuB;IAC7C,OAAO,CAAC,gBAAgB,CAAuB;IAC/C,OAAO,CAAC,iBAAiB,CAAuB;IAGhD,OAAO,CAAC,gBAAgB,CAAC,CAAO;IAGhC,OAAO,CAAC,mBAAmB,CAAK;IAGhC,OAAO,CAAC,SAAS,CAAY;IAG7B,OAAO,CAAC,UAAU,CAA0B;IAG5C,OAAO,CAAC,SAAS,CAAyB;IAInC,eAAe,UAAS;IAIxB,SAAS,UAAQ;IAIjB,iBAAiB,EAAE,UAAU,GAAG,YAAY,CAAgB;IAI5D,WAAW,EAAE,UAAU,GAAG,YAAY,CAAgB;IAItD,aAAa,SAAK;IAIlB,UAAU,EAAE,MAAM,GAAG,QAAQ,GAAG,OAAO,CAAU;IAIjD,aAAa,EAAE,IAAI,CAAC,IAAI,CAAC,qBAAqB,EAAE,OAAO,GAAG,SAAS,CAAC,CAIvE;IAIG,eAAe,EAAE,0BAA0B,CAA+B;IAIjF,SAAS,CAAC,gBAAgB;;IAS1B,OAAO,KAAK,WAAW,GAEtB;IAED,OAAO,KAAK,mBAAmB,GAW9B;IAED,OAAO,KAAK,eAAe,GAW1B;IAED,OAAO,CAAC,gBAAgB;IAUxB,OAAO,CAAC,eAAe;IAIvB,OAAO,CAAC,aAAa,CA8OnB;YAEY,eAAe;IAe7B,OAAO,CAAC,cAAc;IAatB,OAAO,CAAC,cAAc;IAItB,OAAO,CAAC,WAAW;IAMnB,OAAO,CAAC,WAAW;IAQnB,OAAO,CAAC,UAAU;IAQlB,OAAO,CAAC,cAAc;IAKtB,OAAO,CAAC,aAAa;IAOrB,OAAO,CAAC,gBAAgB;IAQxB,OAAO,CAAC,iBAAiB;IAYzB,OAAO,CAAC,sBAAsB;IAI9B,OAAO,CAAC,SAAS;IAIjB,OAAO,CAAC,aAAa;IAIrB,OAAO,CAAC,QAAQ;IAIhB,OAAO,CAAC,YAAY;IAIpB,OAAO,CAAC,aAAa;IAQrB,OAAO,CAAC,iBAAiB;IAQzB,OAAO,CAAC,YAAY;IAUpB,OAAO,CAAC,gBAAgB;IAUxB,OAAO,CAAC,gBAAgB;IA4ExB,OAAO,CAAC,YAAY;IAiBpB,OAAO,CAAC,gBAAgB;IA0BxB,SAAS,CAAC,MAAM;CAyFjB;AAED,OAAO,CAAC,MAAM,CAAC;IACb,UAAU,qBAAqB;QAC7B,cAAc,EAAE,oBAAoB,CAAC;KACtC;CACF"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"calendar.material.css.d.ts","sourceRoot":"","sources":["../../../src/components/calendar/calendar.material.css.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,MAAM,yBAAy5M,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"calendar-base.d.ts","sourceRoot":"","sources":["../../../../src/components/calendar/common/calendar-base.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,KAAK,CAAC;AAGjC,OAAO,EAAE,QAAQ,EAAE,mBAAmB,EAAE,MAAM,kBAAkB,CAAC;AAGjE,eAAO,MAAM,cAAc,IAAI,CAAC;AAChC,eAAO,MAAM,aAAa,IAAI,CAAC;AAE/B,MAAM,WAAW,uBAAuB;IACtC,SAAS,EAAE,WAAW,CAAC,IAAI,GAAG,IAAI,EAAE,CAAC,CAAC;CACvC;AAED,qBAAa,wBAAyB,SAAQ,UAAU;IACtD,SAAS,CAAC,aAAa,WAAkB;IAQlC,KAAK,CAAC,EAAE,IAAI,GAAG,IAAI,EAAE,CAAC;IAItB,SAAS,EAAE,QAAQ,GAAG,UAAU,GAAG,OAAO,CAAY;IAItD,eAAe,UAAS;IAIxB,SAAS,EACZ,QAAQ,GACR,QAAQ,GACR,SAAS,GACT,WAAW,GACX,UAAU,GACV,QAAQ,GACR,UAAU,CAAY;IAInB,UAAU,OAAc;IAIxB,MAAM,SAAQ;IAId,aAAa,EAAG,mBAAmB,EAAE,CAAC;IAItC,YAAY,EAAG,mBAAmB,EAAE,CAAC;IAG5C,SAAS,CAAC,eAAe;IAKzB,SAAS,CAAC,eAAe;CAG1B"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"calendar.model.d.ts","sourceRoot":"","sources":["../../../../src/components/calendar/common/calendar.model.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,mBAAmB;IAClC,IAAI,EAAE,aAAa,CAAC;IACpB,SAAS,CAAC,EAAE,IAAI,EAAE,CAAC;CACpB;AAED,oBAAY,aAAa;IACvB,KAAK,IAAA;IACL,MAAM,IAAA;IACN,OAAO,IAAA;IACP,QAAQ,IAAA;IACR,QAAQ,IAAA;IACR,QAAQ,IAAA;CACT;AAKD,oBAAY,iBAAiB;IAC3B,MAAM,IAAA;IACN,MAAM,IAAA;IACN,IAAI,IAAA;IACJ,GAAG,IAAA;IACH,IAAI,IAAA;IACJ,KAAK,IAAA;IACL,OAAO,IAAA;IACP,IAAI,IAAA;CACL;AAKD,eAAO,MAAM,KAAK,oCAAqB,MAAM,4BAQ5C,CAAC;AASF,eAAO,MAAM,MAAM,SAAU,MAAM,KAAG,OACoB,CAAC;AAE3D,eAAO,MAAM,OAAO,SAAU,MAAM,SAAS,MAAM,OAAO,MAAM,KAAG,MAC9B,CAAC;AAUtC,eAAO,MAAM,UAAU,SAAU,MAAM,SAAS,MAAM,KAAG,MAAM,EAU9D,CAAC;AAEF,eAAO,MAAM,cAAc,SACnB,IAAI,UACF,mBAAmB,EAAE,KAC5B,OAqEF,CAAC;AAEF,MAAM,WAAW,aAAa;IAC5B,IAAI,EAAE,IAAI,CAAC;IACX,cAAc,EAAE,OAAO,CAAC;IACxB,WAAW,EAAE,OAAO,CAAC;IACrB,WAAW,EAAE,OAAO,CAAC;CACtB;AAED,MAAM,WAAW,eAAe;IAC9B,KAAK,EAAE,MAAM,CAAC;IACd,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,QAAQ,EAAE,MAAM,CAAC;CAClB;AAED,MAAM,WAAW,gBAAgB;IAC/B,GAAG,CAAC,EAAE,OAAO,CAAC;IACd,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB,IAAI,CAAC,EAAE,OAAO,CAAC;CAChB;AAED,oBAAY,QAAQ,GAChB,QAAQ,GACR,QAAQ,GACR,SAAS,GACT,WAAW,GACX,UAAU,GACV,QAAQ,GACR,UAAU,CAAC;AAEf,oBAAY,QAAQ;IAClB,MAAM,IAAI;IACV,MAAM,IAAI;IACV,OAAO,IAAI;IACX,SAAS,IAAI;IACb,QAAQ,IAAI;IACZ,MAAM,IAAI;IACV,QAAQ,IAAI;CACb;AAED,qBAAa,QAAQ;IACnB,OAAO,CAAC,aAAa,CAAoB;gBAE7B,YAAY,GAAE,MAAM,GAAG,QAA0B;IAK7D,IAAW,YAAY,IAAI,MAAM,CAEhC;IAGD,IAAW,YAAY,CAAC,KAAK,EAAE,MAAM,EAEpC;IAaM,QAAQ,IAAI,MAAM,EAAE;IAmBpB,UAAU,CACf,IAAI,EAAE,MAAM,EACZ,KAAK,EAAE,MAAM,EACb,SAAS,UAAQ,GAChB,aAAa,EAAE;IAyCX,kBAAkB,CACvB,IAAI,EAAE,MAAM,EACZ,KAAK,EAAE,MAAM,EACb,SAAS,UAAQ,GAChB,aAAa,EAAE,EAAE;IASb,SAAS,CACd,IAAI,EAAE,IAAI,EACV,QAAQ,EAAE,iBAAiB,EAC3B,KAAK,EAAE,MAAM,GACZ,IAAI;IA4CA,YAAY,CAAC,IAAI,EAAE,IAAI;IAKvB,YAAY,CAAC,IAAI,EAAE,IAAI;IAKvB,WAAW,CAAC,IAAI,EAAE,IAAI;IAKtB,WAAW,CAAC,IAAI,EAAE,IAAI;IAKtB,aAAa,CAAC,IAAI,EAAE,IAAI;IAY/B,OAAO,CAAC,qBAAqB;IAa7B,OAAO,CAAC,eAAe;IAOvB,OAAO,CAAC,WAAW;CAOpB"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"utils.d.ts","sourceRoot":"","sources":["../../../../src/components/calendar/common/utils.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AAc5C,eAAO,MAAM,QAAQ,MAAuB,CAAC;AAE7C,eAAO,MAAM,QAAQ,MAAwB,CAAC;AAE9C,eAAO,MAAM,MAAM,UAAW,GAAG,kBAAyC,CAAC;AAE3E,eAAO,MAAM,aAAa,UACjB,IAAI,SACJ,IAAI,oCAQZ,CAAC;AAEF,eAAO,MAAM,WAAW,SAAU,IAAI,SAAS,MAAM,SAKpD,CAAC;AAEF,eAAO,MAAM,OAAO,SAAU,GAAG,QAAQ,GAAG,KAAG,OAK9C,CAAC;AAEF,eAAO,MAAM,WAAW,UAAW,GAAG,kBAMrC,CAAC;AAEF,eAAO,MAAM,YAAY,UAAW,IAAI,SAEvC,CAAC;AAEF,eAAO,MAAM,WAAW,SAAU,IAAI,SAOrC,CAAC;AAEF,eAAO,MAAM,gBAAgB,QAAS,QAAQ,WAE7C,CAAC;AAEF,eAAO,MAAM,wBAAwB,SAAU,IAAI,cAAc,MAAM,WAKtE,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"days-view.d.ts","sourceRoot":"","sources":["../../../../src/components/calendar/days-view/days-view.ts"],"names":[],"mappings":"AAEA,OAAO,EAEL,aAAa,EAGd,MAAM,0BAA0B,CAAC;AAClC,OAAO,EACL,wBAAwB,EACxB,uBAAuB,EACxB,MAAM,yBAAyB,CAAC;AAIjC,OAAO,EAAE,WAAW,EAAE,MAAM,iCAAiC,CAAC;AAG9D,OAAO,EAEL,0BAA0B,EAC3B,MAAM,sCAAsC,CAAC;AAE9C,MAAM,WAAW,mBAAoB,SAAQ,uBAAuB;IAClE,mBAAmB,EAAE,WAAW,CAAC,aAAa,CAAC,CAAC;IAChD,yBAAyB,EAAE,WAAW,CAAC,IAAI,CAAC,CAAC;CAC9C;;AAiBD,MAAM,CAAC,OAAO,OAAO,oBAAqB,SAAQ,yBAGvB;IAIzB,OAAc,MAAM,4BAAY;IAEhC,OAAO,CAAC,gBAAgB,CAAuB;IAC/C,OAAO,CAAC,KAAK,CAAqB;IAGlC,OAAO,CAAC,SAAS,CAAe;IAIzB,eAAe,UAAS;IAIxB,gBAAgB,UAAS;IAIzB,MAAM,UAAS;IAIf,gBAAgB,CAAC,EAAE,IAAI,CAAC;IAIxB,aAAa,EAAE,MAAM,GAAG,OAAO,GAAG,QAAQ,CAAY;IAItD,eAAe,EAAE,0BAA0B,CAA+B;IAIjF,SAAS,CAAC,gBAAgB;IAM1B,SAAS,CAAC,WAAW;;IAWd,eAAe;IAItB,OAAO,CAAC,cAAc;IAMtB,OAAO,CAAC,kBAAkB;IAgB1B,OAAO,CAAC,gBAAgB;IAQxB,OAAO,CAAC,SAAS;IAIjB,OAAO,CAAC,aAAa;IAIrB,OAAO,CAAC,aAAa;IAIrB,OAAO,KAAK,iBAAiB,GAE5B;IAED,OAAO,CAAC,aAAa;IAiBrB,OAAO,CAAC,cAAc;IAiBtB,OAAO,CAAC,UAAU;IAQlB,OAAO,CAAC,aAAa;IAarB,OAAO,CAAC,WAAW;IA+BnB,OAAO,CAAC,cAAc;IAatB,OAAO,CAAC,UAAU;IAqClB,OAAO,CAAC,OAAO;IAgBf,OAAO,CAAC,SAAS;IAKjB,OAAO,CAAC,SAAS;IAQjB,OAAO,CAAC,WAAW;IAQnB,OAAO,CAAC,SAAS;IAYjB,OAAO,CAAC,UAAU;IAuBlB,OAAO,CAAC,iBAAiB;IAYzB,OAAO,CAAC,WAAW;IA4BnB,OAAO,CAAC,YAAY;IAIpB,OAAO,CAAC,cAAc;IA0BtB,OAAO,CAAC,gBAAgB;IAKxB,OAAO,CAAC,WAAW;IAOnB,OAAO,CAAC,kBAAkB;IAW1B,OAAO,CAAC,iBAAiB;IAMzB,OAAO,CAAC,mBAAmB;IAK3B,OAAO,CAAC,sBAAsB;IAwB9B,OAAO,CAAC,iBAAiB;IAqBzB,OAAO,CAAC,WAAW;IAoBnB,OAAO,CAAC,cAAc;IA6BtB,SAAS,CAAC,MAAM;CAGjB;AAED,OAAO,CAAC,MAAM,CAAC;IACb,UAAU,qBAAqB;QAC7B,eAAe,EAAE,oBAAoB,CAAC;KACvC;CACF"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"days-view.material.css.d.ts","sourceRoot":"","sources":["../../../../src/components/calendar/days-view/days-view.material.css.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,MAAM,yBAAmkQ,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"months-view.d.ts","sourceRoot":"","sources":["../../../../src/components/calendar/months-view/months-view.ts"],"names":[],"mappings":"AAAA,OAAO,EAAQ,UAAU,EAAE,MAAM,KAAK,CAAC;AAGvC,OAAO,EAAE,WAAW,EAAE,MAAM,iCAAiC,CAAC;AAG9D,OAAO,EACL,uBAAuB,EAExB,MAAM,yBAAyB,CAAC;;AAejC,MAAM,CAAC,OAAO,OAAO,sBAAuB,SAAQ,2BAGvC;IAIX,OAAc,MAAM,4BAAY;IAEhC,OAAO,CAAC,aAAa,CAAkB;IACvC,OAAO,CAAC,cAAc,CAAM;IAG5B,OAAO,CAAC,WAAW,CAAe;IAI3B,KAAK,OAAc;IAInB,MAAM,SAAQ;IAId,WAAW,EAAE,SAAS,GAAG,SAAS,GAAG,MAAM,GAAG,OAAO,GAAG,QAAQ,CAC9D;IAIT,SAAS,CAAC,YAAY;;IAWf,eAAe;IAItB,OAAO,CAAC,kBAAkB;IAM1B,OAAO,CAAC,cAAc;IAItB,OAAO,KAAK,MAAM,GAiBjB;IAED,OAAO,CAAC,oBAAoB;IAW5B,OAAO,CAAC,WAAW;IAOnB,OAAO,CAAC,YAAY;IAOpB,SAAS,CAAC,MAAM;CAkCjB;AAED,OAAO,CAAC,MAAM,CAAC;IACb,UAAU,qBAAqB;QAC7B,iBAAiB,EAAE,sBAAsB,CAAC;KAC3C;CACF"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"months-view.material.css.d.ts","sourceRoot":"","sources":["../../../../src/components/calendar/months-view/months-view.material.css.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,MAAM,yBAA48D,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"years-view.d.ts","sourceRoot":"","sources":["../../../../src/components/calendar/years-view/years-view.ts"],"names":[],"mappings":"AAAA,OAAO,EAAQ,UAAU,EAAE,MAAM,KAAK,CAAC;AAGvC,OAAO,EAAE,WAAW,EAAE,MAAM,iCAAiC,CAAC;AAG9D,OAAO,EACL,uBAAuB,EAExB,MAAM,yBAAyB,CAAC;;AAcjC,MAAM,CAAC,OAAO,OAAO,qBAAsB,SAAQ,0BAGtC;IAIX,OAAc,MAAM,4BAAY;IAEhC,OAAO,CAAC,KAAK,CAAY;IAGzB,OAAO,CAAC,UAAU,CAAe;IAI1B,KAAK,OAAc;IAInB,YAAY,SAAM;IAIzB,SAAS,CAAC,WAAW;;IAUd,eAAe;IAItB,OAAO,CAAC,aAAa;IAIrB,OAAO,CAAC,aAAa;IAsBrB,OAAO,CAAC,mBAAmB;IAS3B,OAAO,CAAC,UAAU;IAOlB,OAAO,CAAC,WAAW;IAOnB,SAAS,CAAC,MAAM;CA0BjB;AAED,OAAO,CAAC,MAAM,CAAC;IACb,UAAU,qBAAqB;QAC7B,gBAAgB,EAAE,qBAAqB,CAAC;KACzC;CACF"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"years-view.material.css.d.ts","sourceRoot":"","sources":["../../../../src/components/calendar/years-view/years-view.material.css.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,MAAM,yBAA+7D,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"card.actions.d.ts","sourceRoot":"","sources":["../../../src/components/card/card.actions.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAQ,MAAM,KAAK,CAAC;AAUvC,MAAM,CAAC,OAAO,OAAO,uBAAwB,SAAQ,UAAU;IAE7D,OAAc,OAAO,SAAsB;IAG3C,OAAc,MAAM,0BAAU;IAE9B,SAAS,CAAC,MAAM;CAOjB;AAED,OAAO,CAAC,MAAM,CAAC;IACb,UAAU,qBAAqB;QAC7B,kBAAkB,EAAE,uBAAuB,CAAC;KAC7C;CACF"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"card.actions.material.css.d.ts","sourceRoot":"","sources":["../../../src/components/card/card.actions.material.css.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,MAAM,yBAAigC,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"card.content.d.ts","sourceRoot":"","sources":["../../../src/components/card/card.content.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAQ,MAAM,KAAK,CAAC;AAQvC,MAAM,CAAC,OAAO,OAAO,uBAAwB,SAAQ,UAAU;IAE7D,OAAc,OAAO,SAAsB;IAG3C,OAAc,MAAM,0BAAU;IAE9B,SAAS,CAAC,MAAM;CAGjB;AAED,OAAO,CAAC,MAAM,CAAC;IACb,UAAU,qBAAqB;QAC7B,kBAAkB,EAAE,uBAAuB,CAAC;KAC7C;CACF"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"card.content.material.css.d.ts","sourceRoot":"","sources":["../../../src/components/card/card.content.material.css.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,MAAM,yBAAwvB,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"card.d.ts","sourceRoot":"","sources":["../../../src/components/card/card.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAQ,MAAM,KAAK,CAAC;AASvC,MAAM,CAAC,OAAO,OAAO,gBAAiB,SAAQ,UAAU;IAEtD,OAAc,OAAO,SAAc;IAGnC,OAAc,MAAM,0BAAU;IAIvB,QAAQ,UAAQ;IAEvB,SAAS,CAAC,MAAM;CAGjB;AAED,OAAO,CAAC,MAAM,CAAC;IACb,UAAU,qBAAqB;QAC7B,UAAU,EAAE,gBAAgB,CAAC;KAC9B;CACF"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"card.header.d.ts","sourceRoot":"","sources":["../../../src/components/card/card.header.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAQ,MAAM,KAAK,CAAC;AAavC,MAAM,CAAC,OAAO,OAAO,sBAAuB,SAAQ,UAAU;IAE5D,OAAc,OAAO,SAAqB;IAG1C,OAAc,MAAM,0BAAU;IAE9B,SAAS,CAAC,MAAM;CAcjB;AAED,OAAO,CAAC,MAAM,CAAC;IACb,UAAU,qBAAqB;QAC7B,iBAAiB,EAAE,sBAAsB,CAAC;KAC3C;CACF"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"card.header.material.css.d.ts","sourceRoot":"","sources":["../../../src/components/card/card.header.material.css.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,MAAM,yBAAu5D,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"card.material.css.d.ts","sourceRoot":"","sources":["../../../src/components/card/card.material.css.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,MAAM,yBAA4rC,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"card.media.d.ts","sourceRoot":"","sources":["../../../src/components/card/card.media.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAQ,MAAM,KAAK,CAAC;AAQvC,MAAM,CAAC,OAAO,OAAO,qBAAsB,SAAQ,UAAU;IAE3D,OAAc,OAAO,SAAoB;IAGzC,OAAc,MAAM,0BAAU;IAE9B,SAAS,CAAC,MAAM;CAGjB;AAED,OAAO,CAAC,MAAM,CAAC;IACb,UAAU,qBAAqB;QAC7B,gBAAgB,EAAE,qBAAqB,CAAC;KACzC;CACF"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"card.media.material.css.d.ts","sourceRoot":"","sources":["../../../src/components/card/card.media.material.css.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,MAAM,yBAAsa,CAAC"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"checkbox-base.d.ts","sourceRoot":"","sources":["../../../src/components/checkbox/checkbox-base.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,KAAK,CAAC;AAGjC,OAAO,EAAE,WAAW,EAAE,MAAM,iCAAiC,CAAC;AAG9D,MAAM,WAAW,mBAAmB;IAClC,SAAS,EAAE,WAAW,CAAC,OAAO,CAAC,CAAC;IAChC,QAAQ,EAAE,WAAW,CAAC,IAAI,CAAC,CAAC;IAC5B,OAAO,EAAE,WAAW,CAAC,IAAI,CAAC,CAAC;CAC5B;;AAED,qBAAa,wBAAyB,SAAQ,6BAGjC;IAEX,SAAS,CAAC,KAAK,EAAG,gBAAgB,CAAC;IAI5B,IAAI,EAAG,MAAM,CAAC;IAId,KAAK,EAAG,MAAM,CAAC;IAIf,QAAQ,UAAS;IAKjB,OAAO,UAAS;IAIhB,QAAQ,UAAS;IAIjB,OAAO,UAAS;IAIhB,aAAa,EAAE,QAAQ,GAAG,OAAO,CAAW;IAI5C,cAAc,EAAG,MAAM,CAAC;IAGxB,KAAK;IAML,KAAK,CAAC,OAAO,CAAC,EAAE,YAAY;IAM5B,IAAI;IAKJ,cAAc;IAQd,iBAAiB,CAAC,OAAO,EAAE,MAAM;IAKxC,SAAS,CAAC,UAAU;IAIpB,SAAS,CAAC,WAAW;IAIrB,SAAS,CAAC,eAAe,CAAC,KAAK,EAAE,UAAU;CAI5C"}
@@ -1 +0,0 @@
1
- {"version":3,"file":"checkbox.d.ts","sourceRoot":"","sources":["../../../src/components/checkbox/checkbox.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,wBAAwB,EAAE,MAAM,oBAAoB,CAAC;AAqB9D,MAAM,CAAC,OAAO,OAAO,oBAAqB,SAAQ,wBAAwB;IAExE,OAAc,OAAO,SAAkB;IAGvC,OAAc,MAAM,0BAAU;IAE9B,OAAO,CAAC,OAAO,CAA0B;IACzC,OAAO,CAAC,OAAO,CAAoC;IAI5C,aAAa,UAAS;IAE7B,OAAO,CAAC,WAAW;IAMnB,SAAS,CAAC,YAAY;IAOtB,SAAS,CAAC,MAAM;CA4CjB;AAED,OAAO,CAAC,MAAM,CAAC;IACb,UAAU,qBAAqB;QAC7B,cAAc,EAAE,oBAAoB,CAAC;KACtC;CACF"}