@limetech/lime-elements 36.1.0-next.2 → 36.1.0-next.21

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 (269) hide show
  1. package/dist/cjs/{checkbox.template-b6c6562c.js → checkbox.template-ac867c17.js} +1 -1
  2. package/dist/cjs/{format-e682e922.js → format-c0047dfb.js} +1 -1
  3. package/dist/cjs/{index-2a28697b.js → index-287e25e0.js} +424 -246
  4. package/dist/cjs/lime-elements.cjs.js +3 -3
  5. package/dist/cjs/limel-badge.cjs.entry.js +3 -2
  6. package/dist/cjs/limel-banner.cjs.entry.js +3 -1
  7. package/dist/cjs/limel-button-group.cjs.entry.js +3 -8
  8. package/dist/cjs/{limel-button.cjs.entry.js → limel-button_2.cjs.entry.js} +117 -21
  9. package/dist/cjs/limel-checkbox.cjs.entry.js +10 -26
  10. package/dist/cjs/limel-chip-set.cjs.entry.js +21 -52
  11. package/dist/cjs/limel-circular-progress.cjs.entry.js +11 -16
  12. package/dist/cjs/limel-code-editor.cjs.entry.js +110 -97
  13. package/dist/cjs/limel-collapsible-section.cjs.entry.js +4 -5
  14. package/dist/cjs/limel-color-picker-palette.cjs.entry.js +5 -1
  15. package/dist/cjs/limel-color-picker.cjs.entry.js +8 -2
  16. package/dist/cjs/limel-config.cjs.entry.js +2 -1
  17. package/dist/cjs/limel-date-picker.cjs.entry.js +15 -33
  18. package/dist/cjs/limel-dialog.cjs.entry.js +4 -12
  19. package/dist/cjs/limel-dock-button.cjs.entry.js +5 -15
  20. package/dist/cjs/limel-dock.cjs.entry.js +8 -40
  21. package/dist/cjs/limel-file.cjs.entry.js +10 -24
  22. package/dist/cjs/limel-flatpickr-adapter.cjs.entry.js +149 -48
  23. package/dist/cjs/limel-flex-container.cjs.entry.js +1 -13
  24. package/dist/cjs/limel-form.cjs.entry.js +326 -327
  25. package/dist/cjs/limel-grid.cjs.entry.js +1 -1
  26. package/dist/cjs/limel-header.cjs.entry.js +5 -1
  27. package/dist/cjs/limel-icon-button.cjs.entry.js +3 -8
  28. package/dist/cjs/limel-icon.cjs.entry.js +4 -1
  29. package/dist/cjs/limel-input-field.cjs.entry.js +28 -61
  30. package/dist/cjs/limel-linear-progress.cjs.entry.js +1 -7
  31. package/dist/cjs/limel-list_2.cjs.entry.js +9 -18
  32. package/dist/cjs/limel-menu-list.cjs.entry.js +6 -13
  33. package/dist/cjs/limel-picker.cjs.entry.js +14 -39
  34. package/dist/cjs/limel-popover_4.cjs.entry.js +14 -13
  35. package/dist/cjs/limel-portal.cjs.entry.js +63 -73
  36. package/dist/cjs/limel-progress-flow-item.cjs.entry.js +4 -13
  37. package/dist/cjs/limel-progress-flow.cjs.entry.js +4 -20
  38. package/dist/cjs/limel-select.cjs.entry.js +9 -26
  39. package/dist/cjs/limel-shortcut.cjs.entry.js +52 -0
  40. package/dist/cjs/limel-slider.cjs.entry.js +12 -33
  41. package/dist/cjs/limel-snackbar.cjs.entry.js +7 -5
  42. package/dist/cjs/limel-spinner.cjs.entry.js +1 -7
  43. package/dist/cjs/limel-split-button.cjs.entry.js +35 -0
  44. package/dist/cjs/limel-switch.cjs.entry.js +6 -19
  45. package/dist/cjs/limel-tab-bar.cjs.entry.js +2 -5
  46. package/dist/cjs/limel-tab-panel.cjs.entry.js +2 -5
  47. package/dist/cjs/limel-table.cjs.entry.js +16 -28
  48. package/dist/cjs/loader.cjs.js +3 -3
  49. package/dist/cjs/{translations-5a8d7f6c.js → translations-ca7279bc.js} +6 -0
  50. package/dist/collection/collection-manifest.json +4 -2
  51. package/dist/collection/components/badge/badge.js +35 -26
  52. package/dist/collection/components/badge/format.js +1 -1
  53. package/dist/collection/components/banner/banner.js +88 -83
  54. package/dist/collection/components/button/button.css +4 -1
  55. package/dist/collection/components/button/button.js +148 -160
  56. package/dist/collection/components/button-group/button-group.js +81 -79
  57. package/dist/collection/components/checkbox/checkbox.js +172 -176
  58. package/dist/collection/components/checkbox/checkbox.template.js +15 -23
  59. package/dist/collection/components/chip-set/chip-set.js +486 -528
  60. package/dist/collection/components/circular-progress/circular-progress.css +27 -5
  61. package/dist/collection/components/circular-progress/circular-progress.js +129 -113
  62. package/dist/collection/components/code-editor/code-editor.js +178 -182
  63. package/dist/collection/components/collapsible-section/collapsible-section.js +120 -124
  64. package/dist/collection/components/color-picker/color-picker-palette.js +102 -92
  65. package/dist/collection/components/color-picker/color-picker.js +143 -131
  66. package/dist/collection/components/config/config.js +21 -17
  67. package/dist/collection/components/date-picker/date-picker.js +254 -261
  68. package/dist/collection/components/date-picker/flatpickr-adapter/flatpickr-adapter.css +592 -166
  69. package/dist/collection/components/date-picker/flatpickr-adapter/flatpickr-adapter.js +150 -143
  70. package/dist/collection/components/date-picker/pickers/QuarterPicker.js +1 -3
  71. package/dist/collection/components/dialog/dialog.css +7 -1
  72. package/dist/collection/components/dialog/dialog.js +134 -142
  73. package/dist/collection/components/dock/dock-button/dock-button.js +138 -141
  74. package/dist/collection/components/dock/dock.js +204 -232
  75. package/dist/collection/components/file/file.js +187 -191
  76. package/dist/collection/components/flex-container/flex-container.js +96 -102
  77. package/dist/collection/components/form/form.js +158 -150
  78. package/dist/collection/components/grid/grid.js +11 -7
  79. package/dist/collection/components/header/header.js +89 -87
  80. package/dist/collection/components/icon/icon.js +79 -66
  81. package/dist/collection/components/icon-button/icon-button.js +85 -85
  82. package/dist/collection/components/input-field/input-field.css +12 -8
  83. package/dist/collection/components/input-field/input-field.js +482 -523
  84. package/dist/collection/components/linear-progress/linear-progress.js +57 -61
  85. package/dist/collection/components/list/list-renderer.js +3 -12
  86. package/dist/collection/components/list/list.js +167 -164
  87. package/dist/collection/components/list/radio-button/radio-button.template.js +2 -8
  88. package/dist/collection/components/menu/menu.js +183 -195
  89. package/dist/collection/components/menu-list/menu-list-renderer.js +2 -9
  90. package/dist/collection/components/menu-list/menu-list.js +149 -146
  91. package/dist/collection/components/menu-surface/menu-surface.js +69 -64
  92. package/dist/collection/components/picker/picker.js +412 -427
  93. package/dist/collection/components/popover/popover.js +79 -74
  94. package/dist/collection/components/popover-surface/popover-surface.css +4 -0
  95. package/dist/collection/components/popover-surface/popover-surface.js +34 -25
  96. package/dist/collection/components/portal/portal.js +145 -158
  97. package/dist/collection/components/progress-flow/progress-flow-item/progress-flow-item.js +90 -94
  98. package/dist/collection/components/progress-flow/progress-flow.js +93 -101
  99. package/dist/collection/components/select/select.css +7 -7
  100. package/dist/collection/components/select/select.js +206 -211
  101. package/dist/collection/components/select/select.template.js +9 -23
  102. package/dist/collection/components/shortcut/shortcut.css +91 -0
  103. package/dist/collection/components/shortcut/shortcut.js +194 -0
  104. package/dist/collection/components/slider/slider.js +233 -264
  105. package/dist/collection/components/snackbar/snackbar.js +175 -169
  106. package/dist/collection/components/spinner/spinner.js +56 -85
  107. package/dist/collection/components/split-button/split-button.css +84 -0
  108. package/dist/collection/components/split-button/split-button.js +176 -0
  109. package/dist/collection/components/switch/switch.js +117 -129
  110. package/dist/collection/components/tab-bar/tab-bar.js +87 -92
  111. package/dist/collection/components/tab-panel/tab-panel.js +64 -61
  112. package/dist/collection/components/table/table.js +447 -457
  113. package/dist/collection/components/tooltip/tooltip-content.js +70 -61
  114. package/dist/collection/components/tooltip/tooltip.js +96 -91
  115. package/dist/collection/style/internal/z-index.scss +0 -6
  116. package/dist/collection/translations/da.js +1 -0
  117. package/dist/collection/translations/en.js +1 -0
  118. package/dist/collection/translations/fi.js +1 -0
  119. package/dist/collection/translations/nl.js +1 -0
  120. package/dist/collection/translations/no.js +1 -0
  121. package/dist/collection/translations/sv.js +1 -0
  122. package/dist/esm/{checkbox.template-2f1bbc98.js → checkbox.template-fc7fcd06.js} +1 -1
  123. package/dist/esm/{format-ce615e29.js → format-a0e2d949.js} +1 -1
  124. package/dist/esm/{index-11cd0b60.js → index-cdfd351d.js} +424 -246
  125. package/dist/esm/lime-elements.js +3 -3
  126. package/dist/esm/limel-badge.entry.js +3 -2
  127. package/dist/esm/limel-banner.entry.js +3 -1
  128. package/dist/esm/limel-button-group.entry.js +3 -8
  129. package/dist/esm/{limel-button.entry.js → limel-button_2.entry.js} +117 -22
  130. package/dist/esm/limel-checkbox.entry.js +10 -26
  131. package/dist/esm/limel-chip-set.entry.js +21 -52
  132. package/dist/esm/limel-circular-progress.entry.js +11 -16
  133. package/dist/esm/limel-code-editor.entry.js +110 -97
  134. package/dist/esm/limel-collapsible-section.entry.js +4 -5
  135. package/dist/esm/limel-color-picker-palette.entry.js +5 -1
  136. package/dist/esm/limel-color-picker.entry.js +8 -2
  137. package/dist/esm/limel-config.entry.js +2 -1
  138. package/dist/esm/limel-date-picker.entry.js +15 -33
  139. package/dist/esm/limel-dialog.entry.js +4 -12
  140. package/dist/esm/limel-dock-button.entry.js +5 -15
  141. package/dist/esm/limel-dock.entry.js +8 -40
  142. package/dist/esm/limel-file.entry.js +10 -24
  143. package/dist/esm/limel-flatpickr-adapter.entry.js +149 -48
  144. package/dist/esm/limel-flex-container.entry.js +1 -13
  145. package/dist/esm/limel-form.entry.js +326 -327
  146. package/dist/esm/limel-grid.entry.js +1 -1
  147. package/dist/esm/limel-header.entry.js +5 -1
  148. package/dist/esm/limel-icon-button.entry.js +3 -8
  149. package/dist/esm/limel-icon.entry.js +4 -1
  150. package/dist/esm/limel-input-field.entry.js +28 -61
  151. package/dist/esm/limel-linear-progress.entry.js +1 -7
  152. package/dist/esm/limel-list_2.entry.js +9 -18
  153. package/dist/esm/limel-menu-list.entry.js +6 -13
  154. package/dist/esm/limel-picker.entry.js +14 -39
  155. package/dist/esm/limel-popover_4.entry.js +14 -13
  156. package/dist/esm/limel-portal.entry.js +63 -73
  157. package/dist/esm/limel-progress-flow-item.entry.js +4 -13
  158. package/dist/esm/limel-progress-flow.entry.js +4 -20
  159. package/dist/esm/limel-select.entry.js +9 -26
  160. package/dist/esm/limel-shortcut.entry.js +48 -0
  161. package/dist/esm/limel-slider.entry.js +12 -33
  162. package/dist/esm/limel-snackbar.entry.js +7 -5
  163. package/dist/esm/limel-spinner.entry.js +1 -7
  164. package/dist/esm/limel-split-button.entry.js +31 -0
  165. package/dist/esm/limel-switch.entry.js +6 -19
  166. package/dist/esm/limel-tab-bar.entry.js +2 -5
  167. package/dist/esm/limel-tab-panel.entry.js +2 -5
  168. package/dist/esm/limel-table.entry.js +16 -28
  169. package/dist/esm/loader.js +3 -3
  170. package/dist/esm/polyfills/css-shim.js +1 -1
  171. package/dist/esm/{translations-682e905e.js → translations-0d0ee941.js} +6 -0
  172. package/dist/lime-elements/lime-elements.esm.js +1 -1
  173. package/dist/lime-elements/p-059e0a64.entry.js +1 -0
  174. package/dist/lime-elements/{p-440454ed.entry.js → p-06f2f6b4.entry.js} +1 -1
  175. package/dist/lime-elements/{p-71efe2ca.entry.js → p-0dbde06f.entry.js} +1 -1
  176. package/dist/lime-elements/p-12a7453b.entry.js +73 -0
  177. package/dist/lime-elements/p-15c2eb16.entry.js +1 -0
  178. package/dist/lime-elements/{p-c80acfb2.entry.js → p-15ca0d70.entry.js} +4 -4
  179. package/dist/lime-elements/{p-ed65468d.entry.js → p-16eb9071.entry.js} +1 -1
  180. package/dist/lime-elements/{p-1ede893b.js → p-1af8258b.js} +1 -1
  181. package/dist/lime-elements/p-246862ec.js +1 -0
  182. package/dist/lime-elements/p-36a3b897.entry.js +1 -0
  183. package/dist/lime-elements/p-4b426b7e.entry.js +11 -0
  184. package/dist/lime-elements/p-4eda8b67.entry.js +82 -0
  185. package/dist/lime-elements/{p-9af0704c.entry.js → p-4fb4e89b.entry.js} +1 -1
  186. package/dist/lime-elements/p-4fc38050.entry.js +1 -0
  187. package/dist/lime-elements/{p-a5af84a7.entry.js → p-5338663b.entry.js} +1 -1
  188. package/dist/lime-elements/p-5ce60a32.entry.js +126 -0
  189. package/dist/lime-elements/p-5f13035a.entry.js +1 -0
  190. package/dist/lime-elements/p-5f29f099.entry.js +16 -0
  191. package/dist/lime-elements/p-600464a9.entry.js +1 -0
  192. package/dist/lime-elements/p-6534e16a.entry.js +1 -0
  193. package/dist/lime-elements/p-6a4a5ddd.entry.js +1 -0
  194. package/dist/lime-elements/p-6c38b505.entry.js +1 -0
  195. package/dist/lime-elements/p-75d01713.entry.js +1 -0
  196. package/dist/lime-elements/p-768b7cbb.entry.js +1 -0
  197. package/dist/lime-elements/{p-6e7809a6.entry.js → p-82cd7bb6.entry.js} +1 -1
  198. package/dist/lime-elements/p-84a137a7.entry.js +1 -0
  199. package/dist/lime-elements/p-8715eac0.entry.js +1 -0
  200. package/dist/lime-elements/{p-aa66620a.entry.js → p-8ab597a8.entry.js} +2 -2
  201. package/dist/lime-elements/{p-8827628d.entry.js → p-8fb83e83.entry.js} +2 -2
  202. package/dist/lime-elements/p-90961075.entry.js +1 -0
  203. package/dist/lime-elements/p-9984b31c.entry.js +1 -0
  204. package/dist/lime-elements/p-9bd76629.entry.js +59 -0
  205. package/dist/lime-elements/p-9f19e0c1.entry.js +1 -0
  206. package/dist/lime-elements/p-ace4e596.entry.js +1 -0
  207. package/dist/lime-elements/p-c87995ea.entry.js +37 -0
  208. package/dist/lime-elements/p-cad7cda1.entry.js +16 -0
  209. package/dist/lime-elements/{p-104c89e8.entry.js → p-cfaa685f.entry.js} +1 -1
  210. package/dist/lime-elements/{p-94899019.entry.js → p-d1187867.entry.js} +1 -1
  211. package/dist/lime-elements/p-d4e788e1.js +2 -0
  212. package/dist/lime-elements/p-d512656b.entry.js +1 -0
  213. package/dist/lime-elements/p-d8e5a9ee.entry.js +1 -0
  214. package/dist/lime-elements/p-de161bb5.entry.js +1 -0
  215. package/dist/lime-elements/p-e4bca82b.entry.js +1 -0
  216. package/dist/lime-elements/{p-c15da26d.entry.js → p-e7bb664f.entry.js} +1 -1
  217. package/dist/lime-elements/p-e88f7922.entry.js +1 -0
  218. package/dist/lime-elements/p-ef04b849.entry.js +82 -0
  219. package/dist/lime-elements/{p-93e92a2a.js → p-f08f504b.js} +1 -1
  220. package/dist/lime-elements/style/internal/z-index.scss +0 -6
  221. package/dist/loader/package.json +1 -0
  222. package/dist/types/components/circular-progress/circular-progress.d.ts +5 -0
  223. package/dist/types/components/picker/picker.d.ts +2 -2
  224. package/dist/types/components/shortcut/shortcut.d.ts +57 -0
  225. package/dist/types/components/split-button/split-button.d.ts +46 -0
  226. package/dist/types/components/tab-bar/tab.types.d.ts +1 -1
  227. package/dist/types/components.d.ts +324 -66
  228. package/dist/types/stencil-public-runtime.d.ts +20 -4
  229. package/dist/types/translations/da.d.ts +1 -0
  230. package/dist/types/translations/en.d.ts +1 -0
  231. package/dist/types/translations/fi.d.ts +1 -0
  232. package/dist/types/translations/nl.d.ts +1 -0
  233. package/dist/types/translations/no.d.ts +1 -0
  234. package/dist/types/translations/sv.d.ts +1 -0
  235. package/package.json +25 -24
  236. package/dist/cjs/limel-menu.cjs.entry.js +0 -137
  237. package/dist/esm/limel-menu.entry.js +0 -133
  238. package/dist/lime-elements/p-009de50e.entry.js +0 -1
  239. package/dist/lime-elements/p-0ba0c38a.entry.js +0 -11
  240. package/dist/lime-elements/p-19f72dab.entry.js +0 -1
  241. package/dist/lime-elements/p-2639edf9.entry.js +0 -73
  242. package/dist/lime-elements/p-2fc4f4ff.entry.js +0 -1
  243. package/dist/lime-elements/p-3bf54a4c.js +0 -1
  244. package/dist/lime-elements/p-3cf4aae0.entry.js +0 -1
  245. package/dist/lime-elements/p-41e902ac.entry.js +0 -126
  246. package/dist/lime-elements/p-4dc07252.entry.js +0 -82
  247. package/dist/lime-elements/p-56cf969c.entry.js +0 -1
  248. package/dist/lime-elements/p-5ef52589.entry.js +0 -1
  249. package/dist/lime-elements/p-63e25a0a.entry.js +0 -1
  250. package/dist/lime-elements/p-653faf47.entry.js +0 -1
  251. package/dist/lime-elements/p-6b1bc80f.entry.js +0 -1
  252. package/dist/lime-elements/p-93cd2268.entry.js +0 -1
  253. package/dist/lime-elements/p-93f42a32.entry.js +0 -1
  254. package/dist/lime-elements/p-95f275ab.entry.js +0 -1
  255. package/dist/lime-elements/p-995bbd2a.entry.js +0 -1
  256. package/dist/lime-elements/p-9a38a71e.entry.js +0 -1
  257. package/dist/lime-elements/p-a465084b.entry.js +0 -82
  258. package/dist/lime-elements/p-b0046fcd.entry.js +0 -1
  259. package/dist/lime-elements/p-b0e54dc2.entry.js +0 -1
  260. package/dist/lime-elements/p-c544c05b.entry.js +0 -16
  261. package/dist/lime-elements/p-c59cbd68.entry.js +0 -1
  262. package/dist/lime-elements/p-cb8db8c2.entry.js +0 -37
  263. package/dist/lime-elements/p-d74fa89e.entry.js +0 -1
  264. package/dist/lime-elements/p-e98d76e8.entry.js +0 -59
  265. package/dist/lime-elements/p-e9a95b8f.js +0 -1
  266. package/dist/lime-elements/p-f0c9dadd.entry.js +0 -1
  267. package/dist/lime-elements/p-f0e872b6.entry.js +0 -16
  268. package/dist/lime-elements/p-f41567a1.entry.js +0 -1
  269. package/dist/lime-elements/p-f5df4d4f.entry.js +0 -1
@@ -1,4 +1,4 @@
1
- import { Component, Element, Event, h, Prop, Watch, } from '@stencil/core';
1
+ import { h, } from '@stencil/core';
2
2
  import React from 'react';
3
3
  import { render, unmountComponentAtNode } from 'react-dom';
4
4
  import JSONSchemaForm from '@rjsf/core';
@@ -26,15 +26,13 @@ import { mapValues } from 'lodash-es';
26
26
  */
27
27
  export class Form {
28
28
  constructor() {
29
- /**
30
- * The schema used to render the form
31
- */
29
+ this.isValid = true;
32
30
  this.schema = {};
33
- /**
34
- * Set to `true` to disable the whole form.
35
- */
31
+ this.value = undefined;
36
32
  this.disabled = false;
37
- this.isValid = true;
33
+ this.propsFactory = undefined;
34
+ this.transformErrors = undefined;
35
+ this.errors = undefined;
38
36
  this.handleChange = this.handleChange.bind(this);
39
37
  this.getCustomErrorMessages = this.getCustomErrorMessages.bind(this);
40
38
  }
@@ -186,161 +184,171 @@ export class Form {
186
184
  }
187
185
  static get is() { return "limel-form"; }
188
186
  static get encapsulation() { return "shadow"; }
189
- static get originalStyleUrls() { return {
190
- "$": ["form.scss"]
191
- }; }
192
- static get styleUrls() { return {
193
- "$": ["form.css"]
194
- }; }
195
- static get properties() { return {
196
- "schema": {
197
- "type": "unknown",
198
- "mutable": false,
199
- "complexType": {
200
- "original": "{\n id?: string;\n [key: string]: any;\n }",
201
- "resolved": "{ [key: string]: any; id?: string; }",
202
- "references": {}
203
- },
204
- "required": false,
205
- "optional": false,
206
- "docs": {
207
- "tags": [],
208
- "text": "The schema used to render the form"
209
- },
210
- "defaultValue": "{}"
211
- },
212
- "value": {
213
- "type": "unknown",
214
- "mutable": false,
215
- "complexType": {
216
- "original": "object",
217
- "resolved": "object",
218
- "references": {}
187
+ static get originalStyleUrls() {
188
+ return {
189
+ "$": ["form.scss"]
190
+ };
191
+ }
192
+ static get styleUrls() {
193
+ return {
194
+ "$": ["form.css"]
195
+ };
196
+ }
197
+ static get properties() {
198
+ return {
199
+ "schema": {
200
+ "type": "unknown",
201
+ "mutable": false,
202
+ "complexType": {
203
+ "original": "{\n id?: string;\n [key: string]: any;\n }",
204
+ "resolved": "{ [key: string]: any; id?: string; }",
205
+ "references": {}
206
+ },
207
+ "required": false,
208
+ "optional": false,
209
+ "docs": {
210
+ "tags": [],
211
+ "text": "The schema used to render the form"
212
+ },
213
+ "defaultValue": "{}"
219
214
  },
220
- "required": false,
221
- "optional": false,
222
- "docs": {
223
- "tags": [],
224
- "text": "Value of the form"
225
- }
226
- },
227
- "disabled": {
228
- "type": "boolean",
229
- "mutable": false,
230
- "complexType": {
231
- "original": "boolean",
232
- "resolved": "boolean",
233
- "references": {}
215
+ "value": {
216
+ "type": "unknown",
217
+ "mutable": false,
218
+ "complexType": {
219
+ "original": "object",
220
+ "resolved": "object",
221
+ "references": {}
222
+ },
223
+ "required": false,
224
+ "optional": false,
225
+ "docs": {
226
+ "tags": [],
227
+ "text": "Value of the form"
228
+ }
234
229
  },
235
- "required": false,
236
- "optional": false,
237
- "docs": {
238
- "tags": [],
239
- "text": "Set to `true` to disable the whole form."
230
+ "disabled": {
231
+ "type": "boolean",
232
+ "mutable": false,
233
+ "complexType": {
234
+ "original": "boolean",
235
+ "resolved": "boolean",
236
+ "references": {}
237
+ },
238
+ "required": false,
239
+ "optional": false,
240
+ "docs": {
241
+ "tags": [],
242
+ "text": "Set to `true` to disable the whole form."
243
+ },
244
+ "attribute": "disabled",
245
+ "reflect": false,
246
+ "defaultValue": "false"
240
247
  },
241
- "attribute": "disabled",
242
- "reflect": false,
243
- "defaultValue": "false"
244
- },
245
- "propsFactory": {
246
- "type": "unknown",
247
- "mutable": false,
248
- "complexType": {
249
- "original": "(schema: Record<string, any>) => Record<string, any>",
250
- "resolved": "(schema: Record<string, any>) => Record<string, any>",
251
- "references": {
252
- "Record": {
253
- "location": "global"
248
+ "propsFactory": {
249
+ "type": "unknown",
250
+ "mutable": false,
251
+ "complexType": {
252
+ "original": "(schema: Record<string, any>) => Record<string, any>",
253
+ "resolved": "(schema: Record<string, any>) => Record<string, any>",
254
+ "references": {
255
+ "Record": {
256
+ "location": "global"
257
+ }
254
258
  }
259
+ },
260
+ "required": false,
261
+ "optional": true,
262
+ "docs": {
263
+ "tags": [],
264
+ "text": "Factory for creating properties for custom form components\n\nWhen using custom components in the form some properties might have to be\nset dynamically. If this factory is set, it will be called with the\ncurrent schema for the field for each custom component in the form. The\nfactory must return an object where each key is the name of the property\nthat should be set, along with its value."
255
265
  }
256
266
  },
257
- "required": false,
258
- "optional": true,
259
- "docs": {
260
- "tags": [],
261
- "text": "Factory for creating properties for custom form components\n\nWhen using custom components in the form some properties might have to be\nset dynamically. If this factory is set, it will be called with the\ncurrent schema for the field for each custom component in the form. The\nfactory must return an object where each key is the name of the property\nthat should be set, along with its value."
262
- }
263
- },
264
- "transformErrors": {
265
- "type": "unknown",
266
- "mutable": false,
267
- "complexType": {
268
- "original": "(errors: FormError[]) => FormError[]",
269
- "resolved": "(errors: FormError[]) => FormError[]",
270
- "references": {
271
- "FormError": {
272
- "location": "import",
273
- "path": "./form.types"
267
+ "transformErrors": {
268
+ "type": "unknown",
269
+ "mutable": false,
270
+ "complexType": {
271
+ "original": "(errors: FormError[]) => FormError[]",
272
+ "resolved": "(errors: FormError[]) => FormError[]",
273
+ "references": {
274
+ "FormError": {
275
+ "location": "import",
276
+ "path": "./form.types"
277
+ }
274
278
  }
279
+ },
280
+ "required": false,
281
+ "optional": true,
282
+ "docs": {
283
+ "tags": [],
284
+ "text": "Custom function to customize the default error messages"
275
285
  }
276
286
  },
277
- "required": false,
278
- "optional": true,
279
- "docs": {
280
- "tags": [],
281
- "text": "Custom function to customize the default error messages"
282
- }
283
- },
284
- "errors": {
285
- "type": "unknown",
286
- "mutable": false,
287
- "complexType": {
288
- "original": "ValidationError",
289
- "resolved": "{ [key: string]: ValidationError | string[]; }",
290
- "references": {
291
- "ValidationError": {
292
- "location": "import",
293
- "path": "./form.types"
287
+ "errors": {
288
+ "type": "unknown",
289
+ "mutable": false,
290
+ "complexType": {
291
+ "original": "ValidationError",
292
+ "resolved": "{ [key: string]: ValidationError | string[]; }",
293
+ "references": {
294
+ "ValidationError": {
295
+ "location": "import",
296
+ "path": "./form.types"
297
+ }
294
298
  }
299
+ },
300
+ "required": false,
301
+ "optional": false,
302
+ "docs": {
303
+ "tags": [],
304
+ "text": "Extra errors to display in the form. Typical use case is asynchronous\nerrors generated server side."
295
305
  }
296
- },
297
- "required": false,
298
- "optional": false,
299
- "docs": {
300
- "tags": [],
301
- "text": "Extra errors to display in the form. Typical use case is asynchronous\nerrors generated server side."
302
- }
303
- }
304
- }; }
305
- static get events() { return [{
306
- "method": "change",
307
- "name": "change",
308
- "bubbles": true,
309
- "cancelable": true,
310
- "composed": true,
311
- "docs": {
312
- "tags": [],
313
- "text": "Emitted when a change is made within the form"
314
- },
315
- "complexType": {
316
- "original": "object",
317
- "resolved": "object",
318
- "references": {}
319
306
  }
320
- }, {
321
- "method": "validate",
322
- "name": "validate",
323
- "bubbles": true,
324
- "cancelable": true,
325
- "composed": true,
326
- "docs": {
327
- "tags": [],
328
- "text": "Emitted when the validity of the form changes, or when\na change is made to an invalid form"
329
- },
330
- "complexType": {
331
- "original": "ValidationStatus",
332
- "resolved": "ValidationStatus",
333
- "references": {
334
- "ValidationStatus": {
335
- "location": "import",
336
- "path": "./form.types"
307
+ };
308
+ }
309
+ static get events() {
310
+ return [{
311
+ "method": "change",
312
+ "name": "change",
313
+ "bubbles": true,
314
+ "cancelable": true,
315
+ "composed": true,
316
+ "docs": {
317
+ "tags": [],
318
+ "text": "Emitted when a change is made within the form"
319
+ },
320
+ "complexType": {
321
+ "original": "object",
322
+ "resolved": "object",
323
+ "references": {}
324
+ }
325
+ }, {
326
+ "method": "validate",
327
+ "name": "validate",
328
+ "bubbles": true,
329
+ "cancelable": true,
330
+ "composed": true,
331
+ "docs": {
332
+ "tags": [],
333
+ "text": "Emitted when the validity of the form changes, or when\na change is made to an invalid form"
334
+ },
335
+ "complexType": {
336
+ "original": "ValidationStatus",
337
+ "resolved": "ValidationStatus",
338
+ "references": {
339
+ "ValidationStatus": {
340
+ "location": "import",
341
+ "path": "./form.types"
342
+ }
337
343
  }
338
344
  }
339
- }
340
- }]; }
345
+ }];
346
+ }
341
347
  static get elementRef() { return "host"; }
342
- static get watchers() { return [{
343
- "propName": "schema",
344
- "methodName": "setSchema"
345
- }]; }
348
+ static get watchers() {
349
+ return [{
350
+ "propName": "schema",
351
+ "methodName": "setSchema"
352
+ }];
353
+ }
346
354
  }
@@ -1,4 +1,4 @@
1
- import { Component, h } from '@stencil/core';
1
+ import { h } from '@stencil/core';
2
2
  /**
3
3
  * The `limel-grid` component creates a grid which can be used to control the
4
4
  * layout of other components. It uses CSS [grid-template-areas](https://developer.mozilla.org/en-US/docs/Web/CSS/grid-template-areas)
@@ -13,10 +13,14 @@ export class Grid {
13
13
  }
14
14
  static get is() { return "limel-grid"; }
15
15
  static get encapsulation() { return "shadow"; }
16
- static get originalStyleUrls() { return {
17
- "$": ["grid.scss"]
18
- }; }
19
- static get styleUrls() { return {
20
- "$": ["grid.css"]
21
- }; }
16
+ static get originalStyleUrls() {
17
+ return {
18
+ "$": ["grid.scss"]
19
+ };
20
+ }
21
+ static get styleUrls() {
22
+ return {
23
+ "$": ["grid.css"]
24
+ };
25
+ }
22
26
  }
@@ -1,4 +1,4 @@
1
- import { Component, h, Prop } from '@stencil/core';
1
+ import { h } from '@stencil/core';
2
2
  /**
3
3
  * A header is the top most visual element in a component, page, card, or a view.
4
4
  *
@@ -45,17 +45,16 @@ import { Component, h, Prop } from '@stencil/core';
45
45
  * @slot - Content (actions) to be put inside the far right surface of the header
46
46
  */
47
47
  export class Header {
48
+ constructor() {
49
+ this.icon = undefined;
50
+ this.heading = undefined;
51
+ this.subheading = undefined;
52
+ this.supportingText = undefined;
53
+ }
48
54
  render() {
49
55
  return [
50
- h("div", { class: "information" },
51
- this.renderIcon(),
52
- h("div", { class: "headings" },
53
- h("h1", { class: "heading", title: this.heading }, this.heading),
54
- h("h2", { class: "subheading", title: this.subheading },
55
- this.subheading,
56
- this.renderSupportingText()))),
57
- h("div", { class: "actions" },
58
- h("slot", null)),
56
+ h("div", { class: "information" }, this.renderIcon(), h("div", { class: "headings" }, h("h1", { class: "heading", title: this.heading }, this.heading), h("h2", { class: "subheading", title: this.subheading }, this.subheading, this.renderSupportingText()))),
57
+ h("div", { class: "actions" }, h("slot", null)),
59
58
  ];
60
59
  }
61
60
  renderIcon() {
@@ -68,87 +67,90 @@ export class Header {
68
67
  if (!this.supportingText) {
69
68
  return;
70
69
  }
71
- return (h("span", { class: "information__headings__subheading__supporting-text" },
72
- h("span", null, "\u00B7"),
73
- " ",
74
- this.supportingText));
70
+ return (h("span", { class: "information__headings__subheading__supporting-text" }, h("span", null, "\u00B7"), " ", this.supportingText));
75
71
  }
76
72
  static get is() { return "limel-header"; }
77
73
  static get encapsulation() { return "shadow"; }
78
- static get originalStyleUrls() { return {
79
- "$": ["header.scss"]
80
- }; }
81
- static get styleUrls() { return {
82
- "$": ["header.css"]
83
- }; }
84
- static get properties() { return {
85
- "icon": {
86
- "type": "string",
87
- "mutable": false,
88
- "complexType": {
89
- "original": "string",
90
- "resolved": "string",
91
- "references": {}
92
- },
93
- "required": false,
94
- "optional": false,
95
- "docs": {
96
- "tags": [],
97
- "text": "Icon to display"
98
- },
99
- "attribute": "icon",
100
- "reflect": false
101
- },
102
- "heading": {
103
- "type": "string",
104
- "mutable": false,
105
- "complexType": {
106
- "original": "string",
107
- "resolved": "string",
108
- "references": {}
109
- },
110
- "required": false,
111
- "optional": false,
112
- "docs": {
113
- "tags": [],
114
- "text": "Title to display"
115
- },
116
- "attribute": "heading",
117
- "reflect": false
118
- },
119
- "subheading": {
120
- "type": "string",
121
- "mutable": false,
122
- "complexType": {
123
- "original": "string",
124
- "resolved": "string",
125
- "references": {}
126
- },
127
- "required": false,
128
- "optional": false,
129
- "docs": {
130
- "tags": [],
131
- "text": "Subheading to display"
74
+ static get originalStyleUrls() {
75
+ return {
76
+ "$": ["header.scss"]
77
+ };
78
+ }
79
+ static get styleUrls() {
80
+ return {
81
+ "$": ["header.css"]
82
+ };
83
+ }
84
+ static get properties() {
85
+ return {
86
+ "icon": {
87
+ "type": "string",
88
+ "mutable": false,
89
+ "complexType": {
90
+ "original": "string",
91
+ "resolved": "string",
92
+ "references": {}
93
+ },
94
+ "required": false,
95
+ "optional": false,
96
+ "docs": {
97
+ "tags": [],
98
+ "text": "Icon to display"
99
+ },
100
+ "attribute": "icon",
101
+ "reflect": false
132
102
  },
133
- "attribute": "subheading",
134
- "reflect": false
135
- },
136
- "supportingText": {
137
- "type": "string",
138
- "mutable": false,
139
- "complexType": {
140
- "original": "string",
141
- "resolved": "string",
142
- "references": {}
103
+ "heading": {
104
+ "type": "string",
105
+ "mutable": false,
106
+ "complexType": {
107
+ "original": "string",
108
+ "resolved": "string",
109
+ "references": {}
110
+ },
111
+ "required": false,
112
+ "optional": false,
113
+ "docs": {
114
+ "tags": [],
115
+ "text": "Title to display"
116
+ },
117
+ "attribute": "heading",
118
+ "reflect": false
143
119
  },
144
- "required": false,
145
- "optional": false,
146
- "docs": {
147
- "tags": [],
148
- "text": "An extra string of text to display along with with the Subheading"
120
+ "subheading": {
121
+ "type": "string",
122
+ "mutable": false,
123
+ "complexType": {
124
+ "original": "string",
125
+ "resolved": "string",
126
+ "references": {}
127
+ },
128
+ "required": false,
129
+ "optional": false,
130
+ "docs": {
131
+ "tags": [],
132
+ "text": "Subheading to display"
133
+ },
134
+ "attribute": "subheading",
135
+ "reflect": false
149
136
  },
150
- "attribute": "supporting-text",
151
- "reflect": false
152
- }
153
- }; }
137
+ "supportingText": {
138
+ "type": "string",
139
+ "mutable": false,
140
+ "complexType": {
141
+ "original": "string",
142
+ "resolved": "string",
143
+ "references": {}
144
+ },
145
+ "required": false,
146
+ "optional": false,
147
+ "docs": {
148
+ "tags": [],
149
+ "text": "An extra string of text to display along with with the Subheading"
150
+ },
151
+ "attribute": "supporting-text",
152
+ "reflect": false
153
+ }
154
+ };
155
+ }
154
156
  }