@grantcodes/ui 2.15.7 → 2.16.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 (300) hide show
  1. package/CHANGELOG.md +60 -0
  2. package/custom-elements.json +476 -346
  3. package/package.json +23 -23
  4. package/src/components/accordion/accordion-item.component.js +17 -19
  5. package/src/components/accordion/accordion-item.css +40 -44
  6. package/src/components/accordion/accordion.component.js +7 -7
  7. package/src/components/accordion/accordion.css +5 -5
  8. package/src/components/accordion/accordion.js +6 -6
  9. package/src/components/accordion/accordion.react.js +6 -6
  10. package/src/components/accordion/accordion.stories.js +10 -10
  11. package/src/components/accordion/accordion.test.js +100 -100
  12. package/src/components/accordion/index.js +6 -6
  13. package/src/components/app-bar/app-bar.component.js +86 -92
  14. package/src/components/app-bar/app-bar.css +187 -203
  15. package/src/components/app-bar/app-bar.js +3 -3
  16. package/src/components/app-bar/app-bar.react.js +9 -9
  17. package/src/components/app-bar/app-bar.stories.js +20 -20
  18. package/src/components/app-bar/app-bar.test.js +190 -237
  19. package/src/components/app-bar/index.js +1 -1
  20. package/src/components/app-bar/nav-link.component.js +7 -9
  21. package/src/components/app-bar/nav-link.css +23 -28
  22. package/src/components/app-bar/nav-link.js +3 -3
  23. package/src/components/app-bar/nav-link.react.js +6 -6
  24. package/src/components/avatar/avatar.component.js +79 -68
  25. package/src/components/avatar/avatar.css +18 -18
  26. package/src/components/avatar/avatar.js +3 -3
  27. package/src/components/avatar/avatar.react.js +6 -6
  28. package/src/components/avatar/avatar.stories.js +24 -23
  29. package/src/components/avatar/avatar.test.js +128 -84
  30. package/src/components/avatar/index.js +1 -1
  31. package/src/components/badge/badge.component.js +23 -23
  32. package/src/components/badge/badge.css +39 -52
  33. package/src/components/badge/badge.js +3 -3
  34. package/src/components/badge/badge.react.js +6 -6
  35. package/src/components/badge/badge.stories.js +23 -23
  36. package/src/components/badge/badge.test.js +53 -68
  37. package/src/components/badge/index.js +1 -1
  38. package/src/components/breadcrumb/breadcrumb.component.js +95 -96
  39. package/src/components/breadcrumb/breadcrumb.css +42 -44
  40. package/src/components/breadcrumb/breadcrumb.js +6 -9
  41. package/src/components/breadcrumb/breadcrumb.react.js +9 -12
  42. package/src/components/breadcrumb/breadcrumb.stories.js +5 -5
  43. package/src/components/breadcrumb/breadcrumb.test.js +139 -151
  44. package/src/components/breadcrumb/index.js +1 -1
  45. package/src/components/button/button.component.js +101 -103
  46. package/src/components/button/button.css +90 -94
  47. package/src/components/button/button.js +3 -3
  48. package/src/components/button/button.react.js +6 -6
  49. package/src/components/button/button.stories.js +25 -25
  50. package/src/components/button/button.test.js +324 -344
  51. package/src/components/button/index.js +1 -1
  52. package/src/components/button-group/button-group.component.js +18 -18
  53. package/src/components/button-group/button-group.css +16 -16
  54. package/src/components/button-group/button-group.js +3 -3
  55. package/src/components/button-group/button-group.react.js +6 -6
  56. package/src/components/button-group/button-group.stories.js +23 -23
  57. package/src/components/button-group/button-group.test.js +54 -54
  58. package/src/components/button-group/index.js +1 -1
  59. package/src/components/card/card.component.js +31 -33
  60. package/src/components/card/card.css +85 -85
  61. package/src/components/card/card.js +4 -4
  62. package/src/components/card/card.react.js +6 -6
  63. package/src/components/card/card.stories.js +27 -26
  64. package/src/components/card/card.test.js +56 -56
  65. package/src/components/card/index.js +1 -1
  66. package/src/components/code-preview/code-preview.component.js +47 -48
  67. package/src/components/code-preview/code-preview.css +11 -11
  68. package/src/components/code-preview/code-preview.js +3 -3
  69. package/src/components/code-preview/code-preview.react.js +6 -6
  70. package/src/components/code-preview/code-preview.stories.js +29 -29
  71. package/src/components/code-preview/code-preview.test.js +112 -135
  72. package/src/components/code-preview/index.js +1 -1
  73. package/src/components/container/container.component.js +27 -27
  74. package/src/components/container/container.css +22 -22
  75. package/src/components/container/container.js +3 -3
  76. package/src/components/container/container.react.js +6 -6
  77. package/src/components/container/container.stories.js +44 -44
  78. package/src/components/container/container.test.js +54 -66
  79. package/src/components/container/index.js +1 -1
  80. package/src/components/countdown/countdown.component.js +160 -162
  81. package/src/components/countdown/countdown.css +50 -34
  82. package/src/components/countdown/countdown.js +3 -3
  83. package/src/components/countdown/countdown.react.js +6 -6
  84. package/src/components/countdown/countdown.stories.js +34 -34
  85. package/src/components/countdown/index.js +1 -1
  86. package/src/components/cta/cta.component.js +77 -81
  87. package/src/components/cta/cta.css +24 -24
  88. package/src/components/cta/cta.js +3 -3
  89. package/src/components/cta/cta.react.js +6 -6
  90. package/src/components/cta/cta.stories.js +32 -32
  91. package/src/components/cta/index.js +1 -1
  92. package/src/components/dialog/dialog.component.js +95 -58
  93. package/src/components/dialog/dialog.css +45 -50
  94. package/src/components/dialog/dialog.js +3 -3
  95. package/src/components/dialog/dialog.react.js +6 -6
  96. package/src/components/dialog/dialog.stories.js +38 -29
  97. package/src/components/dialog/dialog.test.js +188 -102
  98. package/src/components/dialog/index.js +1 -1
  99. package/src/components/dropdown/dropdown.component.js +220 -201
  100. package/src/components/dropdown/dropdown.css +60 -84
  101. package/src/components/dropdown/dropdown.js +6 -9
  102. package/src/components/dropdown/dropdown.react.js +15 -15
  103. package/src/components/dropdown/dropdown.stories.js +10 -10
  104. package/src/components/dropdown/dropdown.test.js +211 -157
  105. package/src/components/dropdown/index.js +1 -1
  106. package/src/components/dropzone/dropzone.component.js +126 -129
  107. package/src/components/dropzone/dropzone.css +35 -37
  108. package/src/components/dropzone/dropzone.js +3 -3
  109. package/src/components/dropzone/dropzone.react.js +6 -6
  110. package/src/components/dropzone/dropzone.stories.js +28 -28
  111. package/src/components/dropzone/dropzone.test.js +91 -99
  112. package/src/components/dropzone/index.js +1 -1
  113. package/src/components/feature-list/feature-list.component.js +78 -86
  114. package/src/components/feature-list/feature-list.css +37 -37
  115. package/src/components/feature-list/feature-list.js +3 -3
  116. package/src/components/feature-list/feature-list.react.js +6 -6
  117. package/src/components/feature-list/feature-list.stories.js +86 -90
  118. package/src/components/feature-list/index.js +1 -1
  119. package/src/components/footer/footer-column.component.js +7 -7
  120. package/src/components/footer/footer-column.css +22 -22
  121. package/src/components/footer/footer.component.js +19 -19
  122. package/src/components/footer/footer.css +38 -38
  123. package/src/components/footer/footer.js +8 -8
  124. package/src/components/footer/footer.react.js +9 -9
  125. package/src/components/footer/footer.stories.js +9 -9
  126. package/src/components/footer/footer.test.js +101 -111
  127. package/src/components/footer/index.js +2 -2
  128. package/src/components/form-field/form-field.component.js +167 -125
  129. package/src/components/form-field/form-field.css +24 -24
  130. package/src/components/form-field/form-field.js +3 -3
  131. package/src/components/form-field/form-field.react.js +6 -6
  132. package/src/components/form-field/form-field.stories.js +53 -44
  133. package/src/components/form-field/form-field.test.js +280 -134
  134. package/src/components/form-field/index.js +1 -1
  135. package/src/components/gallery/gallery-image.component.js +30 -30
  136. package/src/components/gallery/gallery-image.js +3 -3
  137. package/src/components/gallery/gallery-image.react.js +6 -6
  138. package/src/components/gallery/gallery.component.js +24 -17
  139. package/src/components/gallery/gallery.css +79 -72
  140. package/src/components/gallery/gallery.js +3 -3
  141. package/src/components/gallery/gallery.react.js +6 -6
  142. package/src/components/gallery/gallery.stories.js +69 -68
  143. package/src/components/gallery/gallery.test.js +95 -88
  144. package/src/components/gallery/index.js +2 -2
  145. package/src/components/hero/hero.component.js +53 -57
  146. package/src/components/hero/hero.css +27 -27
  147. package/src/components/hero/hero.js +3 -3
  148. package/src/components/hero/hero.react.js +6 -6
  149. package/src/components/hero/hero.stories.js +39 -39
  150. package/src/components/hero/index.js +1 -1
  151. package/src/components/icon/icon.component.js +10 -10
  152. package/src/components/icon/icon.css +13 -13
  153. package/src/components/icon/icon.js +4 -4
  154. package/src/components/icon/icon.react.js +6 -6
  155. package/src/components/icon/icon.stories.js +8 -9
  156. package/src/components/icon/icon.test.js +54 -55
  157. package/src/components/icon/index.js +1 -1
  158. package/src/components/loading/index.js +1 -1
  159. package/src/components/loading/loading.component.js +41 -14
  160. package/src/components/loading/loading.css +47 -30
  161. package/src/components/loading/loading.js +4 -4
  162. package/src/components/loading/loading.react.js +6 -6
  163. package/src/components/loading/loading.stories.js +19 -18
  164. package/src/components/loading/loading.test.js +77 -54
  165. package/src/components/logo-cloud/index.js +1 -1
  166. package/src/components/logo-cloud/logo-cloud.component.js +39 -43
  167. package/src/components/logo-cloud/logo-cloud.css +31 -31
  168. package/src/components/logo-cloud/logo-cloud.js +3 -3
  169. package/src/components/logo-cloud/logo-cloud.react.js +6 -6
  170. package/src/components/logo-cloud/logo-cloud.stories.js +80 -80
  171. package/src/components/map/index.js +1 -1
  172. package/src/components/map/map.component.js +103 -107
  173. package/src/components/map/map.css +22 -22
  174. package/src/components/map/map.js +3 -3
  175. package/src/components/map/map.react.js +6 -6
  176. package/src/components/map/map.stories.js +38 -38
  177. package/src/components/media-text/index.js +1 -1
  178. package/src/components/media-text/media-text.component.js +76 -70
  179. package/src/components/media-text/media-text.css +32 -32
  180. package/src/components/media-text/media-text.js +3 -3
  181. package/src/components/media-text/media-text.react.js +6 -6
  182. package/src/components/media-text/media-text.stories.js +45 -45
  183. package/src/components/media-text/media-text.test.js +72 -0
  184. package/src/components/newsletter/index.js +1 -1
  185. package/src/components/newsletter/newsletter.component.js +56 -64
  186. package/src/components/newsletter/newsletter.css +48 -48
  187. package/src/components/newsletter/newsletter.js +3 -3
  188. package/src/components/newsletter/newsletter.react.js +6 -6
  189. package/src/components/newsletter/newsletter.stories.js +35 -35
  190. package/src/components/notice/index.js +1 -1
  191. package/src/components/notice/notice.component.js +66 -55
  192. package/src/components/notice/notice.css +37 -38
  193. package/src/components/notice/notice.js +3 -3
  194. package/src/components/notice/notice.react.js +6 -6
  195. package/src/components/notice/notice.stories.js +54 -53
  196. package/src/components/notice/notice.test.js +210 -156
  197. package/src/components/pagination/index.js +1 -1
  198. package/src/components/pagination/pagination.component.js +44 -44
  199. package/src/components/pagination/pagination.css +6 -6
  200. package/src/components/pagination/pagination.js +4 -4
  201. package/src/components/pagination/pagination.react.js +6 -6
  202. package/src/components/pagination/pagination.stories.js +20 -18
  203. package/src/components/pagination/pagination.test.js +95 -102
  204. package/src/components/person/index.js +1 -1
  205. package/src/components/person/person.component.js +29 -29
  206. package/src/components/person/person.css +17 -17
  207. package/src/components/person/person.js +4 -4
  208. package/src/components/person/person.react.js +6 -6
  209. package/src/components/person/person.stories.js +34 -33
  210. package/src/components/person/person.test.js +55 -68
  211. package/src/components/pricing/index.js +1 -1
  212. package/src/components/pricing/pricing.component.js +58 -70
  213. package/src/components/pricing/pricing.css +65 -65
  214. package/src/components/pricing/pricing.js +3 -3
  215. package/src/components/pricing/pricing.react.js +6 -6
  216. package/src/components/pricing/pricing.stories.js +96 -96
  217. package/src/components/sidebar/index.js +1 -1
  218. package/src/components/sidebar/sidebar.component.js +157 -130
  219. package/src/components/sidebar/sidebar.css +118 -115
  220. package/src/components/sidebar/sidebar.js +4 -4
  221. package/src/components/sidebar/sidebar.react.js +10 -10
  222. package/src/components/sidebar/sidebar.stories.js +10 -10
  223. package/src/components/sidebar/sidebar.test.js +250 -230
  224. package/src/components/stats/index.js +1 -1
  225. package/src/components/stats/stats.component.js +42 -50
  226. package/src/components/stats/stats.css +29 -29
  227. package/src/components/stats/stats.js +3 -3
  228. package/src/components/stats/stats.react.js +6 -6
  229. package/src/components/stats/stats.stories.js +40 -40
  230. package/src/components/tabs/index.js +2 -2
  231. package/src/components/tabs/internal/tabs-button.component.js +16 -27
  232. package/src/components/tabs/internal/tabs-button.js +3 -3
  233. package/src/components/tabs/internal/tabs-button.react.js +6 -6
  234. package/src/components/tabs/internal/tabs-item.component.js +30 -30
  235. package/src/components/tabs/tab.component.js +9 -11
  236. package/src/components/tabs/tab.js +3 -3
  237. package/src/components/tabs/tab.react.js +6 -6
  238. package/src/components/tabs/tabs.component.js +107 -109
  239. package/src/components/tabs/tabs.css +50 -59
  240. package/src/components/tabs/tabs.js +4 -4
  241. package/src/components/tabs/tabs.react.js +6 -6
  242. package/src/components/tabs/tabs.stories.js +23 -22
  243. package/src/components/tabs/tabs.test.js +201 -147
  244. package/src/components/testimonials/index.js +1 -1
  245. package/src/components/testimonials/testimonials.component.js +47 -51
  246. package/src/components/testimonials/testimonials.css +31 -31
  247. package/src/components/testimonials/testimonials.js +3 -3
  248. package/src/components/testimonials/testimonials.react.js +6 -6
  249. package/src/components/testimonials/testimonials.stories.js +49 -51
  250. package/src/components/toast/index.js +1 -1
  251. package/src/components/toast/toast.component.js +217 -148
  252. package/src/components/toast/toast.css +101 -99
  253. package/src/components/toast/toast.js +6 -9
  254. package/src/components/toast/toast.react.js +12 -12
  255. package/src/components/toast/toast.stories.js +75 -49
  256. package/src/components/toast/toast.test.js +260 -221
  257. package/src/components/tooltip/index.js +1 -1
  258. package/src/components/tooltip/tooltip.component.js +56 -49
  259. package/src/components/tooltip/tooltip.css +61 -50
  260. package/src/components/tooltip/tooltip.js +4 -4
  261. package/src/components/tooltip/tooltip.react.js +6 -6
  262. package/src/components/tooltip/tooltip.stories.js +24 -23
  263. package/src/components/tooltip/tooltip.test.js +143 -155
  264. package/src/constructor.test.js +31 -0
  265. package/src/css/base.css +1 -0
  266. package/src/css/colors.stories.js +120 -122
  267. package/src/css/elements/a.css +28 -28
  268. package/src/css/elements/forms/button.css +1 -1
  269. package/src/css/elements/forms/input.css +80 -80
  270. package/src/css/elements/forms/label.css +3 -3
  271. package/src/css/elements/media/image.css +2 -2
  272. package/src/css/elements.stories.js +48 -49
  273. package/src/css/helpers.css +8 -8
  274. package/src/css/layers.stories.js +5 -5
  275. package/src/css/reset.css +102 -102
  276. package/src/css/themes/todomap.css +1 -1
  277. package/src/css/tokens.stories.js +50 -53
  278. package/src/css/typography.css +30 -32
  279. package/src/css/typography.stories.js +92 -92
  280. package/src/css/util/focus-ring.css +12 -20
  281. package/src/css/view-transitions.css +16 -0
  282. package/src/exports.test.js +89 -105
  283. package/src/icons.js +1 -1
  284. package/src/lib/generate-id.js +1 -1
  285. package/src/lib/slot-presence-controller.js +48 -0
  286. package/src/lib/styles/all.css +38 -37
  287. package/src/lib/styles/focus-ring.css +12 -20
  288. package/src/lib/view-transition.js +42 -0
  289. package/src/lib/view-transition.test.js +105 -0
  290. package/src/main.js +29 -29
  291. package/src/pages/agency.stories.js +59 -59
  292. package/src/pages/blog-post.stories.js +48 -48
  293. package/src/pages/saas-landing.stories.js +180 -180
  294. package/src/react.js +44 -44
  295. package/src/react.test.js +42 -51
  296. package/src/test-utils/assert-helpers.js +39 -58
  297. package/src/test-utils/events.js +32 -34
  298. package/src/test-utils/fixture.js +31 -31
  299. package/src/test-utils/index.js +3 -3
  300. package/src/types.d.ts +3 -3
@@ -29,7 +29,7 @@
29
29
  "type": {
30
30
  "text": "string"
31
31
  },
32
- "default": "\"\"",
32
+ "default": "''",
33
33
  "attribute": "title"
34
34
  }
35
35
  ],
@@ -47,7 +47,7 @@
47
47
  "type": {
48
48
  "text": "string"
49
49
  },
50
- "default": "\"\"",
50
+ "default": "''",
51
51
  "fieldName": "title"
52
52
  }
53
53
  ],
@@ -56,9 +56,7 @@
56
56
  "package": "lit"
57
57
  },
58
58
  "tagName": "grantcodes-accordion-item",
59
- "customElement": true,
60
- "modulePath": "src/components/accordion/accordion-item.component.js",
61
- "definitionPath": "src/components/accordion/index.js"
59
+ "customElement": true
62
60
  }
63
61
  ],
64
62
  "exports": [
@@ -86,9 +84,7 @@
86
84
  "package": "lit"
87
85
  },
88
86
  "tagName": "grantcodes-accordion",
89
- "customElement": true,
90
- "modulePath": "src/components/accordion/accordion.component.js",
91
- "definitionPath": "src/components/accordion/index.js"
87
+ "customElement": true
92
88
  }
93
89
  ],
94
90
  "exports": [
@@ -292,9 +288,7 @@
292
288
  "package": "lit"
293
289
  },
294
290
  "tagName": "grantcodes-app-bar",
295
- "customElement": true,
296
- "modulePath": "src/components/app-bar/app-bar.component.js",
297
- "definitionPath": "src/components/app-bar/app-bar.js"
291
+ "customElement": true
298
292
  }
299
293
  ],
300
294
  "exports": [
@@ -368,9 +362,7 @@
368
362
  "package": "lit"
369
363
  },
370
364
  "tagName": "grantcodes-nav-link",
371
- "customElement": true,
372
- "modulePath": "src/components/app-bar/nav-link.component.js",
373
- "definitionPath": "src/components/app-bar/nav-link.js"
365
+ "customElement": true
374
366
  }
375
367
  ],
376
368
  "exports": [
@@ -432,7 +424,7 @@
432
424
  "text": "string"
433
425
  },
434
426
  "description": "Alt attribute text",
435
- "default": "\"\"",
427
+ "default": "''",
436
428
  "attribute": "alt"
437
429
  },
438
430
  {
@@ -466,7 +458,7 @@
466
458
  "text": "string"
467
459
  },
468
460
  "description": "Optional initials, used when there is no src set",
469
- "default": "\"\"",
461
+ "default": "''",
470
462
  "attribute": "initials"
471
463
  },
472
464
  {
@@ -477,7 +469,7 @@
477
469
  "text": "string"
478
470
  },
479
471
  "description": "The full name of the person",
480
- "default": "\"\"",
472
+ "default": "''",
481
473
  "attribute": "name"
482
474
  },
483
475
  {
@@ -488,7 +480,7 @@
488
480
  "text": "string"
489
481
  },
490
482
  "description": "Size variant: 'small', 'medium', or 'large'",
491
- "default": "\"medium\"",
483
+ "default": "'medium'",
492
484
  "attribute": "size"
493
485
  },
494
486
  {
@@ -499,7 +491,7 @@
499
491
  "text": "string"
500
492
  },
501
493
  "description": "Image source for the avatar",
502
- "default": "\"\"",
494
+ "default": "''",
503
495
  "attribute": "src"
504
496
  }
505
497
  ],
@@ -510,7 +502,7 @@
510
502
  "text": "string"
511
503
  },
512
504
  "description": "Alt attribute text",
513
- "default": "\"\"",
505
+ "default": "''",
514
506
  "fieldName": "alt"
515
507
  },
516
508
  {
@@ -519,7 +511,7 @@
519
511
  "text": "string"
520
512
  },
521
513
  "description": "Optional initials, used when there is no src set",
522
- "default": "\"\"",
514
+ "default": "''",
523
515
  "fieldName": "initials"
524
516
  },
525
517
  {
@@ -528,7 +520,7 @@
528
520
  "text": "string"
529
521
  },
530
522
  "description": "The full name of the person",
531
- "default": "\"\"",
523
+ "default": "''",
532
524
  "fieldName": "name"
533
525
  },
534
526
  {
@@ -537,7 +529,7 @@
537
529
  "text": "string"
538
530
  },
539
531
  "description": "Size variant: 'small', 'medium', or 'large'",
540
- "default": "\"medium\"",
532
+ "default": "'medium'",
541
533
  "fieldName": "size"
542
534
  },
543
535
  {
@@ -546,7 +538,7 @@
546
538
  "text": "string"
547
539
  },
548
540
  "description": "Image source for the avatar",
549
- "default": "\"\"",
541
+ "default": "''",
550
542
  "fieldName": "src"
551
543
  }
552
544
  ],
@@ -555,9 +547,7 @@
555
547
  "package": "lit"
556
548
  },
557
549
  "tagName": "grantcodes-avatar",
558
- "customElement": true,
559
- "modulePath": "src/components/avatar/avatar.component.js",
560
- "definitionPath": "src/components/avatar/avatar.js"
550
+ "customElement": true
561
551
  }
562
552
  ],
563
553
  "exports": [
@@ -634,7 +624,7 @@
634
624
  "text": "'primary' | 'success' | 'warning' | 'error' | 'info' | 'neutral'"
635
625
  },
636
626
  "description": "Visual variant of the badge",
637
- "default": "\"neutral\"",
627
+ "default": "'neutral'",
638
628
  "attribute": "variant"
639
629
  }
640
630
  ],
@@ -645,7 +635,7 @@
645
635
  "text": "'primary' | 'success' | 'warning' | 'error' | 'info' | 'neutral'"
646
636
  },
647
637
  "description": "Visual variant of the badge",
648
- "default": "\"neutral\"",
638
+ "default": "'neutral'",
649
639
  "fieldName": "variant"
650
640
  }
651
641
  ],
@@ -654,9 +644,7 @@
654
644
  "package": "lit"
655
645
  },
656
646
  "tagName": "grantcodes-badge",
657
- "customElement": true,
658
- "modulePath": "src/components/badge/badge.component.js",
659
- "definitionPath": "src/components/badge/badge.js"
647
+ "customElement": true
660
648
  }
661
649
  ],
662
650
  "exports": [
@@ -737,7 +725,7 @@
737
725
  "text": "string"
738
726
  },
739
727
  "description": "Custom separator between breadcrumb items",
740
- "default": "\"/\"",
728
+ "default": "'/'",
741
729
  "attribute": "separator"
742
730
  }
743
731
  ],
@@ -748,7 +736,7 @@
748
736
  "text": "string"
749
737
  },
750
738
  "description": "Custom separator between breadcrumb items",
751
- "default": "\"/\"",
739
+ "default": "'/'",
752
740
  "fieldName": "separator"
753
741
  }
754
742
  ],
@@ -757,9 +745,7 @@
757
745
  "package": "lit"
758
746
  },
759
747
  "tagName": "grantcodes-breadcrumb",
760
- "customElement": true,
761
- "modulePath": "src/components/breadcrumb/breadcrumb.component.js",
762
- "definitionPath": "src/components/breadcrumb/breadcrumb.js"
748
+ "customElement": true
763
749
  },
764
750
  {
765
751
  "kind": "class",
@@ -785,7 +771,7 @@
785
771
  "text": "string"
786
772
  },
787
773
  "description": "URL for the breadcrumb item",
788
- "default": "\"\"",
774
+ "default": "''",
789
775
  "attribute": "href"
790
776
  }
791
777
  ],
@@ -805,7 +791,7 @@
805
791
  "text": "string"
806
792
  },
807
793
  "description": "URL for the breadcrumb item",
808
- "default": "\"\"",
794
+ "default": "''",
809
795
  "fieldName": "href"
810
796
  }
811
797
  ],
@@ -814,9 +800,7 @@
814
800
  "package": "lit"
815
801
  },
816
802
  "tagName": "grantcodes-breadcrumb-item",
817
- "customElement": true,
818
- "modulePath": "src/components/breadcrumb/breadcrumb.component.js",
819
- "definitionPath": "src/components/breadcrumb/breadcrumb.js"
803
+ "customElement": true
820
804
  }
821
805
  ],
822
806
  "exports": [
@@ -906,9 +890,7 @@
906
890
  "package": "lit"
907
891
  },
908
892
  "tagName": "grantcodes-button-group",
909
- "customElement": true,
910
- "modulePath": "src/components/button-group/button-group.component.js",
911
- "definitionPath": "src/components/button-group/button-group.js"
893
+ "customElement": true
912
894
  }
913
895
  ],
914
896
  "exports": [
@@ -1044,7 +1026,7 @@
1044
1026
  "type": {
1045
1027
  "text": "string"
1046
1028
  },
1047
- "default": "\"\"",
1029
+ "default": "''",
1048
1030
  "attribute": "href"
1049
1031
  },
1050
1032
  {
@@ -1054,7 +1036,7 @@
1054
1036
  "type": {
1055
1037
  "text": "string"
1056
1038
  },
1057
- "default": "\"\"",
1039
+ "default": "''",
1058
1040
  "attribute": "name"
1059
1041
  },
1060
1042
  {
@@ -1064,7 +1046,7 @@
1064
1046
  "type": {
1065
1047
  "text": "string"
1066
1048
  },
1067
- "default": "\"button\"",
1049
+ "default": "'button'",
1068
1050
  "attribute": "type"
1069
1051
  },
1070
1052
  {
@@ -1074,7 +1056,7 @@
1074
1056
  "type": {
1075
1057
  "text": "string"
1076
1058
  },
1077
- "default": "\"\"",
1059
+ "default": "''",
1078
1060
  "attribute": "value"
1079
1061
  }
1080
1062
  ],
@@ -1099,7 +1081,7 @@
1099
1081
  "type": {
1100
1082
  "text": "string"
1101
1083
  },
1102
- "default": "\"\"",
1084
+ "default": "''",
1103
1085
  "fieldName": "href"
1104
1086
  },
1105
1087
  {
@@ -1107,7 +1089,7 @@
1107
1089
  "type": {
1108
1090
  "text": "string"
1109
1091
  },
1110
- "default": "\"\"",
1092
+ "default": "''",
1111
1093
  "fieldName": "name"
1112
1094
  },
1113
1095
  {
@@ -1115,7 +1097,7 @@
1115
1097
  "type": {
1116
1098
  "text": "string"
1117
1099
  },
1118
- "default": "\"button\"",
1100
+ "default": "'button'",
1119
1101
  "fieldName": "type"
1120
1102
  },
1121
1103
  {
@@ -1123,7 +1105,7 @@
1123
1105
  "type": {
1124
1106
  "text": "string"
1125
1107
  },
1126
- "default": "\"\"",
1108
+ "default": "''",
1127
1109
  "fieldName": "value"
1128
1110
  }
1129
1111
  ],
@@ -1132,9 +1114,7 @@
1132
1114
  "package": "lit"
1133
1115
  },
1134
1116
  "tagName": "grantcodes-button",
1135
- "customElement": true,
1136
- "modulePath": "src/components/button/button.component.js",
1137
- "definitionPath": "src/components/button/button.js"
1117
+ "customElement": true
1138
1118
  }
1139
1119
  ],
1140
1120
  "exports": [
@@ -1253,9 +1233,7 @@
1253
1233
  "package": "lit"
1254
1234
  },
1255
1235
  "tagName": "grantcodes-card",
1256
- "customElement": true,
1257
- "modulePath": "src/components/card/card.component.js",
1258
- "definitionPath": "src/components/card/card.js"
1236
+ "customElement": true
1259
1237
  }
1260
1238
  ],
1261
1239
  "exports": [
@@ -1343,7 +1321,7 @@
1343
1321
  "type": {
1344
1322
  "text": "string"
1345
1323
  },
1346
- "default": "\"html\"",
1324
+ "default": "'html'",
1347
1325
  "attribute": "language"
1348
1326
  },
1349
1327
  {
@@ -1353,7 +1331,7 @@
1353
1331
  "type": {
1354
1332
  "text": "string"
1355
1333
  },
1356
- "default": "\"aurora-x\"",
1334
+ "default": "'aurora-x'",
1357
1335
  "attribute": "theme"
1358
1336
  }
1359
1337
  ],
@@ -1363,7 +1341,7 @@
1363
1341
  "type": {
1364
1342
  "text": "string"
1365
1343
  },
1366
- "default": "\"html\"",
1344
+ "default": "'html'",
1367
1345
  "fieldName": "language"
1368
1346
  },
1369
1347
  {
@@ -1371,7 +1349,7 @@
1371
1349
  "type": {
1372
1350
  "text": "string"
1373
1351
  },
1374
- "default": "\"aurora-x\"",
1352
+ "default": "'aurora-x'",
1375
1353
  "fieldName": "theme"
1376
1354
  }
1377
1355
  ],
@@ -1380,9 +1358,7 @@
1380
1358
  "package": "lit"
1381
1359
  },
1382
1360
  "tagName": "grantcodes-code-preview",
1383
- "customElement": true,
1384
- "modulePath": "src/components/code-preview/code-preview.component.js",
1385
- "definitionPath": "src/components/code-preview/code-preview.js"
1361
+ "customElement": true
1386
1362
  }
1387
1363
  ],
1388
1364
  "exports": [
@@ -1458,7 +1434,7 @@
1458
1434
  "type": {
1459
1435
  "text": "string"
1460
1436
  },
1461
- "default": "\"default\"",
1437
+ "default": "'default'",
1462
1438
  "attribute": "align"
1463
1439
  },
1464
1440
  {
@@ -1478,7 +1454,7 @@
1478
1454
  "type": {
1479
1455
  "text": "string"
1480
1456
  },
1481
- "default": "\"default\"",
1457
+ "default": "'default'",
1482
1458
  "fieldName": "align"
1483
1459
  },
1484
1460
  {
@@ -1495,9 +1471,7 @@
1495
1471
  "package": "lit"
1496
1472
  },
1497
1473
  "tagName": "grantcodes-container",
1498
- "customElement": true,
1499
- "modulePath": "src/components/container/container.component.js",
1500
- "definitionPath": "src/components/container/container.js"
1474
+ "customElement": true
1501
1475
  }
1502
1476
  ],
1503
1477
  "exports": [
@@ -1591,7 +1565,7 @@
1591
1565
  "type": {
1592
1566
  "text": "string"
1593
1567
  },
1594
- "default": "\"---\"",
1568
+ "default": "'---'",
1595
1569
  "attribute": "_days"
1596
1570
  },
1597
1571
  {
@@ -1601,7 +1575,7 @@
1601
1575
  "type": {
1602
1576
  "text": "string"
1603
1577
  },
1604
- "default": "\"--\"",
1578
+ "default": "'--'",
1605
1579
  "attribute": "_hours"
1606
1580
  },
1607
1581
  {
@@ -1619,7 +1593,7 @@
1619
1593
  "type": {
1620
1594
  "text": "string"
1621
1595
  },
1622
- "default": "\"--\"",
1596
+ "default": "'--'",
1623
1597
  "attribute": "_minutes"
1624
1598
  },
1625
1599
  {
@@ -1639,7 +1613,7 @@
1639
1613
  "type": {
1640
1614
  "text": "string"
1641
1615
  },
1642
- "default": "\"--\"",
1616
+ "default": "'--'",
1643
1617
  "attribute": "_seconds"
1644
1618
  },
1645
1619
  {
@@ -1656,7 +1630,7 @@
1656
1630
  },
1657
1631
  {
1658
1632
  "kind": "field",
1659
- "name": "\"days-label\"",
1633
+ "name": "'days-label'",
1660
1634
  "privacy": "public",
1661
1635
  "type": {
1662
1636
  "text": "string"
@@ -1666,7 +1640,7 @@
1666
1640
  },
1667
1641
  {
1668
1642
  "kind": "field",
1669
- "name": "\"hours-label\"",
1643
+ "name": "'hours-label'",
1670
1644
  "privacy": "public",
1671
1645
  "type": {
1672
1646
  "text": "string"
@@ -1676,7 +1650,7 @@
1676
1650
  },
1677
1651
  {
1678
1652
  "kind": "field",
1679
- "name": "\"minutes-label\"",
1653
+ "name": "'minutes-label'",
1680
1654
  "privacy": "public",
1681
1655
  "type": {
1682
1656
  "text": "string"
@@ -1686,7 +1660,7 @@
1686
1660
  },
1687
1661
  {
1688
1662
  "kind": "field",
1689
- "name": "\"past-message\"",
1663
+ "name": "'past-message'",
1690
1664
  "privacy": "public",
1691
1665
  "type": {
1692
1666
  "text": "string"
@@ -1696,7 +1670,7 @@
1696
1670
  },
1697
1671
  {
1698
1672
  "kind": "field",
1699
- "name": "\"seconds-label\"",
1673
+ "name": "'seconds-label'",
1700
1674
  "privacy": "public",
1701
1675
  "type": {
1702
1676
  "text": "string"
@@ -1706,7 +1680,7 @@
1706
1680
  },
1707
1681
  {
1708
1682
  "kind": "field",
1709
- "name": "\"show-seconds\"",
1683
+ "name": "'show-seconds'",
1710
1684
  "privacy": "public",
1711
1685
  "type": {
1712
1686
  "text": "boolean"
@@ -1722,7 +1696,7 @@
1722
1696
  "text": "string"
1723
1697
  },
1724
1698
  "description": "ISO 8601 datetime string for the countdown target.",
1725
- "default": "\"\"",
1699
+ "default": "''",
1726
1700
  "attribute": "target"
1727
1701
  }
1728
1702
  ],
@@ -1732,7 +1706,7 @@
1732
1706
  "type": {
1733
1707
  "text": "string"
1734
1708
  },
1735
- "default": "\"---\"",
1709
+ "default": "'---'",
1736
1710
  "fieldName": "_days"
1737
1711
  },
1738
1712
  {
@@ -1740,7 +1714,7 @@
1740
1714
  "type": {
1741
1715
  "text": "string"
1742
1716
  },
1743
- "default": "\"--\"",
1717
+ "default": "'--'",
1744
1718
  "fieldName": "_hours"
1745
1719
  },
1746
1720
  {
@@ -1748,7 +1722,7 @@
1748
1722
  "type": {
1749
1723
  "text": "string"
1750
1724
  },
1751
- "default": "\"--\"",
1725
+ "default": "'--'",
1752
1726
  "fieldName": "_minutes"
1753
1727
  },
1754
1728
  {
@@ -1764,7 +1738,7 @@
1764
1738
  "type": {
1765
1739
  "text": "string"
1766
1740
  },
1767
- "default": "\"--\"",
1741
+ "default": "'--'",
1768
1742
  "fieldName": "_seconds"
1769
1743
  },
1770
1744
  {
@@ -1773,7 +1747,7 @@
1773
1747
  "text": "string"
1774
1748
  },
1775
1749
  "description": "Label for the days unit.",
1776
- "fieldName": "\"days-label\""
1750
+ "fieldName": "'days-label'"
1777
1751
  },
1778
1752
  {
1779
1753
  "name": "hours-label",
@@ -1781,7 +1755,7 @@
1781
1755
  "text": "string"
1782
1756
  },
1783
1757
  "description": "Label for the hours unit.",
1784
- "fieldName": "\"hours-label\""
1758
+ "fieldName": "'hours-label'"
1785
1759
  },
1786
1760
  {
1787
1761
  "name": "minutes-label",
@@ -1789,7 +1763,7 @@
1789
1763
  "text": "string"
1790
1764
  },
1791
1765
  "description": "Label for the minutes unit.",
1792
- "fieldName": "\"minutes-label\""
1766
+ "fieldName": "'minutes-label'"
1793
1767
  },
1794
1768
  {
1795
1769
  "name": "past-message",
@@ -1797,7 +1771,7 @@
1797
1771
  "text": "string"
1798
1772
  },
1799
1773
  "description": "Message displayed when the target date has passed.",
1800
- "fieldName": "\"past-message\""
1774
+ "fieldName": "'past-message'"
1801
1775
  },
1802
1776
  {
1803
1777
  "name": "seconds-label",
@@ -1805,7 +1779,7 @@
1805
1779
  "text": "string"
1806
1780
  },
1807
1781
  "description": "Label for the seconds unit (only shown when show-seconds is true).",
1808
- "fieldName": "\"seconds-label\""
1782
+ "fieldName": "'seconds-label'"
1809
1783
  },
1810
1784
  {
1811
1785
  "name": "show-seconds",
@@ -1813,7 +1787,7 @@
1813
1787
  "text": "boolean"
1814
1788
  },
1815
1789
  "description": "Whether to show a seconds unit.",
1816
- "fieldName": "\"show-seconds\""
1790
+ "fieldName": "'show-seconds'"
1817
1791
  },
1818
1792
  {
1819
1793
  "name": "target",
@@ -1821,7 +1795,7 @@
1821
1795
  "text": "string"
1822
1796
  },
1823
1797
  "description": "ISO 8601 datetime string for the countdown target.",
1824
- "default": "\"\"",
1798
+ "default": "''",
1825
1799
  "fieldName": "target"
1826
1800
  }
1827
1801
  ],
@@ -1830,9 +1804,7 @@
1830
1804
  "package": "lit"
1831
1805
  },
1832
1806
  "tagName": "grantcodes-countdown",
1833
- "customElement": true,
1834
- "modulePath": "src/components/countdown/countdown.component.js",
1835
- "definitionPath": "src/components/countdown/countdown.js"
1807
+ "customElement": true
1836
1808
  }
1837
1809
  ],
1838
1810
  "exports": [
@@ -1919,7 +1891,7 @@
1919
1891
  "text": "string"
1920
1892
  },
1921
1893
  "description": "Text alignment of the block.",
1922
- "default": "\"center\"",
1894
+ "default": "'center'",
1923
1895
  "attribute": "align",
1924
1896
  "reflects": true
1925
1897
  },
@@ -1931,7 +1903,7 @@
1931
1903
  "text": "string"
1932
1904
  },
1933
1905
  "description": "Small label shown above the title.",
1934
- "default": "\"\"",
1906
+ "default": "''",
1935
1907
  "attribute": "eyebrow"
1936
1908
  },
1937
1909
  {
@@ -1942,7 +1914,7 @@
1942
1914
  "text": "string"
1943
1915
  },
1944
1916
  "description": "Primary CTA as a JSON string: `{\"label\":\"...\",\"href\":\"...\"}`.",
1945
- "default": "\"\"",
1917
+ "default": "''",
1946
1918
  "attribute": "primary-action"
1947
1919
  },
1948
1920
  {
@@ -1953,7 +1925,7 @@
1953
1925
  "text": "string"
1954
1926
  },
1955
1927
  "description": "Secondary CTA as a JSON string: `{\"label\":\"...\",\"href\":\"...\"}`.",
1956
- "default": "\"\"",
1928
+ "default": "''",
1957
1929
  "attribute": "secondary-action"
1958
1930
  },
1959
1931
  {
@@ -1964,7 +1936,7 @@
1964
1936
  "text": "string"
1965
1937
  },
1966
1938
  "description": "Supporting paragraph text.",
1967
- "default": "\"\"",
1939
+ "default": "''",
1968
1940
  "attribute": "text"
1969
1941
  },
1970
1942
  {
@@ -1975,7 +1947,7 @@
1975
1947
  "text": "string"
1976
1948
  },
1977
1949
  "description": "Main heading text.",
1978
- "default": "\"\"",
1950
+ "default": "''",
1979
1951
  "attribute": "title"
1980
1952
  }
1981
1953
  ],
@@ -1986,7 +1958,7 @@
1986
1958
  "text": "string"
1987
1959
  },
1988
1960
  "description": "Text alignment of the block.",
1989
- "default": "\"center\"",
1961
+ "default": "'center'",
1990
1962
  "fieldName": "align"
1991
1963
  },
1992
1964
  {
@@ -1995,7 +1967,7 @@
1995
1967
  "text": "string"
1996
1968
  },
1997
1969
  "description": "Small label shown above the title.",
1998
- "default": "\"\"",
1970
+ "default": "''",
1999
1971
  "fieldName": "eyebrow"
2000
1972
  },
2001
1973
  {
@@ -2004,7 +1976,7 @@
2004
1976
  "text": "string"
2005
1977
  },
2006
1978
  "description": "Primary CTA as a JSON string: `{\"label\":\"...\",\"href\":\"...\"}`.",
2007
- "default": "\"\"",
1979
+ "default": "''",
2008
1980
  "fieldName": "primaryAction"
2009
1981
  },
2010
1982
  {
@@ -2013,7 +1985,7 @@
2013
1985
  "text": "string"
2014
1986
  },
2015
1987
  "description": "Secondary CTA as a JSON string: `{\"label\":\"...\",\"href\":\"...\"}`.",
2016
- "default": "\"\"",
1988
+ "default": "''",
2017
1989
  "fieldName": "secondaryAction"
2018
1990
  },
2019
1991
  {
@@ -2022,7 +1994,7 @@
2022
1994
  "text": "string"
2023
1995
  },
2024
1996
  "description": "Supporting paragraph text.",
2025
- "default": "\"\"",
1997
+ "default": "''",
2026
1998
  "fieldName": "text"
2027
1999
  },
2028
2000
  {
@@ -2031,7 +2003,7 @@
2031
2003
  "text": "string"
2032
2004
  },
2033
2005
  "description": "Main heading text.",
2034
- "default": "\"\"",
2006
+ "default": "''",
2035
2007
  "fieldName": "title"
2036
2008
  }
2037
2009
  ],
@@ -2040,9 +2012,7 @@
2040
2012
  "package": "lit"
2041
2013
  },
2042
2014
  "tagName": "grantcodes-cta",
2043
- "customElement": true,
2044
- "modulePath": "src/components/cta/cta.component.js",
2045
- "definitionPath": "src/components/cta/cta.js"
2015
+ "customElement": true
2046
2016
  }
2047
2017
  ],
2048
2018
  "exports": [
@@ -2111,10 +2081,52 @@
2111
2081
  "description": "",
2112
2082
  "name": "GrantCodesDialog",
2113
2083
  "members": [
2084
+ {
2085
+ "kind": "field",
2086
+ "name": "_footerPresence",
2087
+ "default": "new SlotPresenceController(this, 'footer', (present) => { this._hasFooter = present; })"
2088
+ },
2089
+ {
2090
+ "kind": "method",
2091
+ "name": "_handleNativeCancel"
2092
+ },
2093
+ {
2094
+ "kind": "method",
2095
+ "name": "_handleNativeClose"
2096
+ },
2114
2097
  {
2115
2098
  "kind": "method",
2116
2099
  "name": "_handleOpenChange"
2117
2100
  },
2101
+ {
2102
+ "kind": "method",
2103
+ "name": "_handleSlotChange"
2104
+ },
2105
+ {
2106
+ "kind": "field",
2107
+ "name": "_hasFooter",
2108
+ "privacy": "public",
2109
+ "type": {
2110
+ "text": "boolean"
2111
+ },
2112
+ "default": "false",
2113
+ "attribute": "_hasFooter"
2114
+ },
2115
+ {
2116
+ "kind": "field",
2117
+ "name": "_hasHeader",
2118
+ "privacy": "public",
2119
+ "type": {
2120
+ "text": "boolean"
2121
+ },
2122
+ "default": "false",
2123
+ "attribute": "_hasHeader"
2124
+ },
2125
+ {
2126
+ "kind": "field",
2127
+ "name": "_headerPresence",
2128
+ "default": "new SlotPresenceController(this, 'header', (present) => { this._hasHeader = present; })"
2129
+ },
2118
2130
  {
2119
2131
  "kind": "field",
2120
2132
  "name": "dismissible",
@@ -2142,6 +2154,22 @@
2142
2154
  }
2143
2155
  ],
2144
2156
  "attributes": [
2157
+ {
2158
+ "name": "_hasFooter",
2159
+ "type": {
2160
+ "text": "boolean"
2161
+ },
2162
+ "default": "false",
2163
+ "fieldName": "_hasFooter"
2164
+ },
2165
+ {
2166
+ "name": "_hasHeader",
2167
+ "type": {
2168
+ "text": "boolean"
2169
+ },
2170
+ "default": "false",
2171
+ "fieldName": "_hasHeader"
2172
+ },
2145
2173
  {
2146
2174
  "name": "dismissible",
2147
2175
  "type": {
@@ -2164,9 +2192,7 @@
2164
2192
  "package": "lit"
2165
2193
  },
2166
2194
  "tagName": "grantcodes-dialog",
2167
- "customElement": true,
2168
- "modulePath": "src/components/dialog/dialog.component.js",
2169
- "definitionPath": "src/components/dialog/dialog.js"
2195
+ "customElement": true
2170
2196
  }
2171
2197
  ],
2172
2198
  "exports": [
@@ -2271,6 +2297,31 @@
2271
2297
  }
2272
2298
  ]
2273
2299
  },
2300
+ {
2301
+ "kind": "field",
2302
+ "name": "_openScheduled",
2303
+ "type": {
2304
+ "text": "boolean"
2305
+ },
2306
+ "default": "false"
2307
+ },
2308
+ {
2309
+ "kind": "field",
2310
+ "name": "_pendingOpen",
2311
+ "type": {
2312
+ "text": "null"
2313
+ },
2314
+ "default": "null"
2315
+ },
2316
+ {
2317
+ "kind": "method",
2318
+ "name": "_setOpen",
2319
+ "parameters": [
2320
+ {
2321
+ "name": "open"
2322
+ }
2323
+ ]
2324
+ },
2274
2325
  {
2275
2326
  "kind": "field",
2276
2327
  "name": "_triggerElement",
@@ -2282,6 +2333,10 @@
2282
2333
  "default": "null",
2283
2334
  "attribute": "_triggerElement"
2284
2335
  },
2336
+ {
2337
+ "kind": "field",
2338
+ "name": "_viewTransitionName"
2339
+ },
2285
2340
  {
2286
2341
  "kind": "field",
2287
2342
  "name": "menuId",
@@ -2307,7 +2362,7 @@
2307
2362
  "text": "string"
2308
2363
  },
2309
2364
  "description": "Placement of the dropdown menu",
2310
- "default": "\"bottom-start\"",
2365
+ "default": "'bottom-start'",
2311
2366
  "attribute": "placement"
2312
2367
  }
2313
2368
  ],
@@ -2344,7 +2399,7 @@
2344
2399
  "text": "string"
2345
2400
  },
2346
2401
  "description": "Placement of the dropdown menu",
2347
- "default": "\"bottom-start\"",
2402
+ "default": "'bottom-start'",
2348
2403
  "fieldName": "placement"
2349
2404
  }
2350
2405
  ],
@@ -2353,9 +2408,7 @@
2353
2408
  "package": "lit"
2354
2409
  },
2355
2410
  "tagName": "grantcodes-dropdown",
2356
- "customElement": true,
2357
- "modulePath": "src/components/dropdown/dropdown.component.js",
2358
- "definitionPath": "src/components/dropdown/dropdown.js"
2411
+ "customElement": true
2359
2412
  },
2360
2413
  {
2361
2414
  "kind": "class",
@@ -2407,9 +2460,7 @@
2407
2460
  "package": "lit"
2408
2461
  },
2409
2462
  "tagName": "grantcodes-dropdown-item",
2410
- "customElement": true,
2411
- "modulePath": "src/components/dropdown/dropdown.component.js",
2412
- "definitionPath": "src/components/dropdown/dropdown.js"
2463
+ "customElement": true
2413
2464
  }
2414
2465
  ],
2415
2466
  "exports": [
@@ -2556,7 +2607,7 @@
2556
2607
  "type": {
2557
2608
  "text": "string"
2558
2609
  },
2559
- "default": "\"\""
2610
+ "default": "''"
2560
2611
  },
2561
2612
  {
2562
2613
  "kind": "field",
@@ -2585,9 +2636,7 @@
2585
2636
  "package": "lit"
2586
2637
  },
2587
2638
  "tagName": "grantcodes-dropzone",
2588
- "customElement": true,
2589
- "modulePath": "src/components/dropzone/dropzone.component.js",
2590
- "definitionPath": "src/components/dropzone/dropzone.js"
2639
+ "customElement": true
2591
2640
  }
2592
2641
  ],
2593
2642
  "exports": [
@@ -2698,7 +2747,7 @@
2698
2747
  "text": "string"
2699
2748
  },
2700
2749
  "description": "Feature items as a JSON string array: `[{\"title\":\"...\",\"description\":\"...\",\"icon\":\"...\",\"href\":\"...\"}]`.",
2701
- "default": "\"[]\"",
2750
+ "default": "'[]'",
2702
2751
  "attribute": "items"
2703
2752
  },
2704
2753
  {
@@ -2709,7 +2758,7 @@
2709
2758
  "text": "string"
2710
2759
  },
2711
2760
  "description": "Optional supporting text below the heading.",
2712
- "default": "\"\"",
2761
+ "default": "''",
2713
2762
  "attribute": "subtitle"
2714
2763
  },
2715
2764
  {
@@ -2720,7 +2769,7 @@
2720
2769
  "text": "string"
2721
2770
  },
2722
2771
  "description": "Optional section heading.",
2723
- "default": "\"\"",
2772
+ "default": "''",
2724
2773
  "attribute": "title"
2725
2774
  }
2726
2775
  ],
@@ -2740,7 +2789,7 @@
2740
2789
  "text": "string"
2741
2790
  },
2742
2791
  "description": "Feature items as a JSON string array: `[{\"title\":\"...\",\"description\":\"...\",\"icon\":\"...\",\"href\":\"...\"}]`.",
2743
- "default": "\"[]\"",
2792
+ "default": "'[]'",
2744
2793
  "fieldName": "items"
2745
2794
  },
2746
2795
  {
@@ -2749,7 +2798,7 @@
2749
2798
  "text": "string"
2750
2799
  },
2751
2800
  "description": "Optional supporting text below the heading.",
2752
- "default": "\"\"",
2801
+ "default": "''",
2753
2802
  "fieldName": "subtitle"
2754
2803
  },
2755
2804
  {
@@ -2758,7 +2807,7 @@
2758
2807
  "text": "string"
2759
2808
  },
2760
2809
  "description": "Optional section heading.",
2761
- "default": "\"\"",
2810
+ "default": "''",
2762
2811
  "fieldName": "title"
2763
2812
  }
2764
2813
  ],
@@ -2767,9 +2816,7 @@
2767
2816
  "package": "lit"
2768
2817
  },
2769
2818
  "tagName": "grantcodes-feature-list",
2770
- "customElement": true,
2771
- "modulePath": "src/components/feature-list/feature-list.component.js",
2772
- "definitionPath": "src/components/feature-list/feature-list.js"
2819
+ "customElement": true
2773
2820
  }
2774
2821
  ],
2775
2822
  "exports": [
@@ -2843,9 +2890,7 @@
2843
2890
  "package": "lit"
2844
2891
  },
2845
2892
  "tagName": "grantcodes-footer-column",
2846
- "customElement": true,
2847
- "modulePath": "src/components/footer/footer-column.component.js",
2848
- "definitionPath": "src/components/footer/footer.js"
2893
+ "customElement": true
2849
2894
  }
2850
2895
  ],
2851
2896
  "exports": [
@@ -2896,9 +2941,7 @@
2896
2941
  "package": "lit"
2897
2942
  },
2898
2943
  "tagName": "grantcodes-footer",
2899
- "customElement": true,
2900
- "modulePath": "src/components/footer/footer.component.js",
2901
- "definitionPath": "src/components/footer/footer.js"
2944
+ "customElement": true
2902
2945
  }
2903
2946
  ],
2904
2947
  "exports": [
@@ -2991,6 +3034,23 @@
2991
3034
  "description": "",
2992
3035
  "name": "GrantCodesFormField",
2993
3036
  "members": [
3037
+ {
3038
+ "kind": "method",
3039
+ "name": "_revalidate",
3040
+ "parameters": [
3041
+ {
3042
+ "name": "event"
3043
+ }
3044
+ ]
3045
+ },
3046
+ {
3047
+ "kind": "field",
3048
+ "name": "_touched",
3049
+ "type": {
3050
+ "text": "boolean"
3051
+ },
3052
+ "default": "false"
3053
+ },
2994
3054
  {
2995
3055
  "kind": "field",
2996
3056
  "name": "ariaDescribedBy",
@@ -3004,7 +3064,7 @@
3004
3064
  "text": "'vertical' | 'horizontal'"
3005
3065
  },
3006
3066
  "description": "Direction of the field. Generally want horizontal for checkboxes and radios.",
3007
- "default": "\"vertical\"",
3067
+ "default": "'vertical'",
3008
3068
  "attribute": "direction"
3009
3069
  },
3010
3070
  {
@@ -3045,7 +3105,12 @@
3045
3105
  },
3046
3106
  {
3047
3107
  "kind": "method",
3048
- "name": "handleLabelClick"
3108
+ "name": "handleLabelClick",
3109
+ "parameters": [
3110
+ {
3111
+ "name": "event"
3112
+ }
3113
+ ]
3049
3114
  },
3050
3115
  {
3051
3116
  "kind": "field",
@@ -3073,9 +3138,20 @@
3073
3138
  "type": {
3074
3139
  "text": "string"
3075
3140
  },
3076
- "default": "\"\"",
3141
+ "default": "''",
3077
3142
  "attribute": "label",
3078
3143
  "reflects": true
3144
+ },
3145
+ {
3146
+ "kind": "field",
3147
+ "name": "showError",
3148
+ "description": "Errors stay hidden until the field is interacted with or reports :user-invalid.",
3149
+ "readonly": true
3150
+ },
3151
+ {
3152
+ "kind": "method",
3153
+ "name": "syncControlAria",
3154
+ "description": "Mirrors the current error/help state onto the first control."
3079
3155
  }
3080
3156
  ],
3081
3157
  "attributes": [
@@ -3085,7 +3161,7 @@
3085
3161
  "text": "'vertical' | 'horizontal'"
3086
3162
  },
3087
3163
  "description": "Direction of the field. Generally want horizontal for checkboxes and radios.",
3088
- "default": "\"vertical\"",
3164
+ "default": "'vertical'",
3089
3165
  "fieldName": "direction"
3090
3166
  },
3091
3167
  {
@@ -3109,7 +3185,7 @@
3109
3185
  "type": {
3110
3186
  "text": "string"
3111
3187
  },
3112
- "default": "\"\"",
3188
+ "default": "''",
3113
3189
  "fieldName": "label"
3114
3190
  }
3115
3191
  ],
@@ -3118,9 +3194,7 @@
3118
3194
  "package": "lit"
3119
3195
  },
3120
3196
  "tagName": "grantcodes-form-field",
3121
- "customElement": true,
3122
- "modulePath": "src/components/form-field/form-field.component.js",
3123
- "definitionPath": "src/components/form-field/form-field.js"
3197
+ "customElement": true
3124
3198
  }
3125
3199
  ],
3126
3200
  "exports": [
@@ -3196,7 +3270,7 @@
3196
3270
  "type": {
3197
3271
  "text": "string"
3198
3272
  },
3199
- "default": "\"\"",
3273
+ "default": "''",
3200
3274
  "attribute": "alt"
3201
3275
  },
3202
3276
  {
@@ -3206,7 +3280,7 @@
3206
3280
  "type": {
3207
3281
  "text": "string"
3208
3282
  },
3209
- "default": "\"\"",
3283
+ "default": "''",
3210
3284
  "attribute": "caption"
3211
3285
  },
3212
3286
  {
@@ -3230,7 +3304,7 @@
3230
3304
  "type": {
3231
3305
  "text": "string"
3232
3306
  },
3233
- "default": "\"\"",
3307
+ "default": "''",
3234
3308
  "attribute": "src"
3235
3309
  },
3236
3310
  {
@@ -3240,7 +3314,7 @@
3240
3314
  "type": {
3241
3315
  "text": "string"
3242
3316
  },
3243
- "default": "\"\"",
3317
+ "default": "''",
3244
3318
  "attribute": "thumbnail"
3245
3319
  },
3246
3320
  {
@@ -3260,7 +3334,7 @@
3260
3334
  "type": {
3261
3335
  "text": "string"
3262
3336
  },
3263
- "default": "\"\"",
3337
+ "default": "''",
3264
3338
  "fieldName": "alt"
3265
3339
  },
3266
3340
  {
@@ -3268,7 +3342,7 @@
3268
3342
  "type": {
3269
3343
  "text": "string"
3270
3344
  },
3271
- "default": "\"\"",
3345
+ "default": "''",
3272
3346
  "fieldName": "caption"
3273
3347
  },
3274
3348
  {
@@ -3284,7 +3358,7 @@
3284
3358
  "type": {
3285
3359
  "text": "string"
3286
3360
  },
3287
- "default": "\"\"",
3361
+ "default": "''",
3288
3362
  "fieldName": "src"
3289
3363
  },
3290
3364
  {
@@ -3292,7 +3366,7 @@
3292
3366
  "type": {
3293
3367
  "text": "string"
3294
3368
  },
3295
- "default": "\"\"",
3369
+ "default": "''",
3296
3370
  "fieldName": "thumbnail"
3297
3371
  },
3298
3372
  {
@@ -3309,9 +3383,7 @@
3309
3383
  "package": "lit"
3310
3384
  },
3311
3385
  "tagName": "grantcodes-gallery-image",
3312
- "customElement": true,
3313
- "modulePath": "src/components/gallery/gallery-image.component.js",
3314
- "definitionPath": "src/components/gallery/gallery-image.js"
3386
+ "customElement": true
3315
3387
  }
3316
3388
  ],
3317
3389
  "exports": [
@@ -3380,7 +3452,7 @@
3380
3452
  "type": {
3381
3453
  "text": "string"
3382
3454
  },
3383
- "default": "\"default\"",
3455
+ "default": "'default'",
3384
3456
  "attribute": "variant",
3385
3457
  "reflects": true
3386
3458
  }
@@ -3391,7 +3463,7 @@
3391
3463
  "type": {
3392
3464
  "text": "string"
3393
3465
  },
3394
- "default": "\"default\"",
3466
+ "default": "'default'",
3395
3467
  "fieldName": "variant"
3396
3468
  }
3397
3469
  ],
@@ -3400,9 +3472,7 @@
3400
3472
  "package": "lit"
3401
3473
  },
3402
3474
  "tagName": "grantcodes-gallery",
3403
- "customElement": true,
3404
- "modulePath": "src/components/gallery/gallery.component.js",
3405
- "definitionPath": "src/components/gallery/gallery.js"
3475
+ "customElement": true
3406
3476
  }
3407
3477
  ],
3408
3478
  "exports": [
@@ -3487,7 +3557,7 @@
3487
3557
  "text": "string"
3488
3558
  },
3489
3559
  "description": "Label for the CTA button. Only rendered when `href` is also set.",
3490
- "default": "\"\"",
3560
+ "default": "''",
3491
3561
  "attribute": "button"
3492
3562
  },
3493
3563
  {
@@ -3510,7 +3580,7 @@
3510
3580
  "text": "string"
3511
3581
  },
3512
3582
  "description": "URL the CTA button links to.",
3513
- "default": "\"\"",
3583
+ "default": "''",
3514
3584
  "attribute": "href"
3515
3585
  },
3516
3586
  {
@@ -3521,7 +3591,7 @@
3521
3591
  "text": "string"
3522
3592
  },
3523
3593
  "description": "Controls the vertical height of the hero section.",
3524
- "default": "\"md\"",
3594
+ "default": "'md'",
3525
3595
  "attribute": "size",
3526
3596
  "reflects": true
3527
3597
  },
@@ -3533,7 +3603,7 @@
3533
3603
  "text": "string"
3534
3604
  },
3535
3605
  "description": "Supporting paragraph text shown below the title.",
3536
- "default": "\"\"",
3606
+ "default": "''",
3537
3607
  "attribute": "subtitle"
3538
3608
  },
3539
3609
  {
@@ -3544,7 +3614,7 @@
3544
3614
  "text": "string"
3545
3615
  },
3546
3616
  "description": "Main heading text.",
3547
- "default": "\"\"",
3617
+ "default": "''",
3548
3618
  "attribute": "title"
3549
3619
  }
3550
3620
  ],
@@ -3555,7 +3625,7 @@
3555
3625
  "text": "string"
3556
3626
  },
3557
3627
  "description": "Label for the CTA button. Only rendered when `href` is also set.",
3558
- "default": "\"\"",
3628
+ "default": "''",
3559
3629
  "fieldName": "button"
3560
3630
  },
3561
3631
  {
@@ -3573,7 +3643,7 @@
3573
3643
  "text": "string"
3574
3644
  },
3575
3645
  "description": "URL the CTA button links to.",
3576
- "default": "\"\"",
3646
+ "default": "''",
3577
3647
  "fieldName": "href"
3578
3648
  },
3579
3649
  {
@@ -3582,7 +3652,7 @@
3582
3652
  "text": "string"
3583
3653
  },
3584
3654
  "description": "Controls the vertical height of the hero section.",
3585
- "default": "\"md\"",
3655
+ "default": "'md'",
3586
3656
  "fieldName": "size"
3587
3657
  },
3588
3658
  {
@@ -3591,7 +3661,7 @@
3591
3661
  "text": "string"
3592
3662
  },
3593
3663
  "description": "Supporting paragraph text shown below the title.",
3594
- "default": "\"\"",
3664
+ "default": "''",
3595
3665
  "fieldName": "subtitle"
3596
3666
  },
3597
3667
  {
@@ -3600,7 +3670,7 @@
3600
3670
  "text": "string"
3601
3671
  },
3602
3672
  "description": "Main heading text.",
3603
- "default": "\"\"",
3673
+ "default": "''",
3604
3674
  "fieldName": "title"
3605
3675
  }
3606
3676
  ],
@@ -3609,9 +3679,7 @@
3609
3679
  "package": "lit"
3610
3680
  },
3611
3681
  "tagName": "grantcodes-hero",
3612
- "customElement": true,
3613
- "modulePath": "src/components/hero/hero.component.js",
3614
- "definitionPath": "src/components/hero/hero.js"
3682
+ "customElement": true
3615
3683
  }
3616
3684
  ],
3617
3685
  "exports": [
@@ -3685,9 +3753,7 @@
3685
3753
  "package": "lit"
3686
3754
  },
3687
3755
  "tagName": "grantcodes-icon",
3688
- "customElement": true,
3689
- "modulePath": "src/components/icon/icon.component.js",
3690
- "definitionPath": "src/components/icon/icon.js"
3756
+ "customElement": true
3691
3757
  }
3692
3758
  ],
3693
3759
  "exports": [
@@ -3770,15 +3836,43 @@
3770
3836
  "kind": "class",
3771
3837
  "description": "",
3772
3838
  "name": "GrantCodesLoading",
3773
- "members": [],
3839
+ "members": [
3840
+ {
3841
+ "kind": "method",
3842
+ "name": "_handleSlotChange"
3843
+ },
3844
+ {
3845
+ "kind": "field",
3846
+ "name": "_hasLabel",
3847
+ "privacy": "public",
3848
+ "type": {
3849
+ "text": "boolean"
3850
+ },
3851
+ "default": "false",
3852
+ "attribute": "_hasLabel"
3853
+ },
3854
+ {
3855
+ "kind": "field",
3856
+ "name": "_labelPresence",
3857
+ "default": "new SlotPresenceController(this, '', (present) => { this._hasLabel = present; })"
3858
+ }
3859
+ ],
3860
+ "attributes": [
3861
+ {
3862
+ "name": "_hasLabel",
3863
+ "type": {
3864
+ "text": "boolean"
3865
+ },
3866
+ "default": "false",
3867
+ "fieldName": "_hasLabel"
3868
+ }
3869
+ ],
3774
3870
  "superclass": {
3775
3871
  "name": "LitElement",
3776
3872
  "package": "lit"
3777
3873
  },
3778
3874
  "tagName": "grantcodes-loading",
3779
- "customElement": true,
3780
- "modulePath": "src/components/loading/loading.component.js",
3781
- "definitionPath": "src/components/loading/loading.js"
3875
+ "customElement": true
3782
3876
  }
3783
3877
  ],
3784
3878
  "exports": [
@@ -3860,7 +3954,7 @@
3860
3954
  "text": "string"
3861
3955
  },
3862
3956
  "description": "Logo items as a JSON string array: `[{\"name\":\"...\",\"src\":\"...\",\"alt\":\"...\",\"href\":\"...\"}]`.",
3863
- "default": "\"[]\"",
3957
+ "default": "'[]'",
3864
3958
  "attribute": "logos"
3865
3959
  },
3866
3960
  {
@@ -3871,7 +3965,7 @@
3871
3965
  "text": "string"
3872
3966
  },
3873
3967
  "description": "Optional label shown above the logos.",
3874
- "default": "\"\"",
3968
+ "default": "''",
3875
3969
  "attribute": "title"
3876
3970
  }
3877
3971
  ],
@@ -3882,7 +3976,7 @@
3882
3976
  "text": "string"
3883
3977
  },
3884
3978
  "description": "Logo items as a JSON string array: `[{\"name\":\"...\",\"src\":\"...\",\"alt\":\"...\",\"href\":\"...\"}]`.",
3885
- "default": "\"[]\"",
3979
+ "default": "'[]'",
3886
3980
  "fieldName": "logos"
3887
3981
  },
3888
3982
  {
@@ -3891,7 +3985,7 @@
3891
3985
  "text": "string"
3892
3986
  },
3893
3987
  "description": "Optional label shown above the logos.",
3894
- "default": "\"\"",
3988
+ "default": "''",
3895
3989
  "fieldName": "title"
3896
3990
  }
3897
3991
  ],
@@ -3900,9 +3994,7 @@
3900
3994
  "package": "lit"
3901
3995
  },
3902
3996
  "tagName": "grantcodes-logo-cloud",
3903
- "customElement": true,
3904
- "modulePath": "src/components/logo-cloud/logo-cloud.component.js",
3905
- "definitionPath": "src/components/logo-cloud/logo-cloud.js"
3997
+ "customElement": true
3906
3998
  }
3907
3999
  ],
3908
4000
  "exports": [
@@ -3977,7 +4069,7 @@
3977
4069
  "type": {
3978
4070
  "text": "string"
3979
4071
  },
3980
- "default": "\"\""
4072
+ "default": "''"
3981
4073
  },
3982
4074
  {
3983
4075
  "kind": "field",
@@ -4022,7 +4114,7 @@
4022
4114
  },
4023
4115
  {
4024
4116
  "kind": "field",
4025
- "name": "\"directions-url\"",
4117
+ "name": "'directions-url'",
4026
4118
  "privacy": "public",
4027
4119
  "type": {
4028
4120
  "text": "string"
@@ -4038,7 +4130,7 @@
4038
4130
  "text": "string"
4039
4131
  },
4040
4132
  "description": "Height of the map. Accepts any CSS length value.",
4041
- "default": "\"\"",
4133
+ "default": "''",
4042
4134
  "attribute": "height"
4043
4135
  },
4044
4136
  {
@@ -4049,7 +4141,7 @@
4049
4141
  "text": "string"
4050
4142
  },
4051
4143
  "description": "Accessible label for the map iframe.",
4052
- "default": "\"Map\"",
4144
+ "default": "'Map'",
4053
4145
  "attribute": "label"
4054
4146
  },
4055
4147
  {
@@ -4060,7 +4152,7 @@
4060
4152
  "text": "string"
4061
4153
  },
4062
4154
  "description": "Latitude coordinate.",
4063
- "default": "\"\"",
4155
+ "default": "''",
4064
4156
  "attribute": "lat"
4065
4157
  },
4066
4158
  {
@@ -4071,7 +4163,7 @@
4071
4163
  "text": "string"
4072
4164
  },
4073
4165
  "description": "Longitude coordinate.",
4074
- "default": "\"\"",
4166
+ "default": "''",
4075
4167
  "attribute": "lng"
4076
4168
  },
4077
4169
  {
@@ -4093,7 +4185,7 @@
4093
4185
  "text": "string"
4094
4186
  },
4095
4187
  "description": "URL for a \"Get directions\" link below the map.",
4096
- "fieldName": "\"directions-url\""
4188
+ "fieldName": "'directions-url'"
4097
4189
  },
4098
4190
  {
4099
4191
  "name": "height",
@@ -4101,7 +4193,7 @@
4101
4193
  "text": "string"
4102
4194
  },
4103
4195
  "description": "Height of the map. Accepts any CSS length value.",
4104
- "default": "\"\"",
4196
+ "default": "''",
4105
4197
  "fieldName": "height"
4106
4198
  },
4107
4199
  {
@@ -4110,7 +4202,7 @@
4110
4202
  "text": "string"
4111
4203
  },
4112
4204
  "description": "Accessible label for the map iframe.",
4113
- "default": "\"Map\"",
4205
+ "default": "'Map'",
4114
4206
  "fieldName": "label"
4115
4207
  },
4116
4208
  {
@@ -4119,7 +4211,7 @@
4119
4211
  "text": "string"
4120
4212
  },
4121
4213
  "description": "Latitude coordinate.",
4122
- "default": "\"\"",
4214
+ "default": "''",
4123
4215
  "fieldName": "lat"
4124
4216
  },
4125
4217
  {
@@ -4128,7 +4220,7 @@
4128
4220
  "text": "string"
4129
4221
  },
4130
4222
  "description": "Longitude coordinate.",
4131
- "default": "\"\"",
4223
+ "default": "''",
4132
4224
  "fieldName": "lng"
4133
4225
  },
4134
4226
  {
@@ -4146,9 +4238,7 @@
4146
4238
  "package": "lit"
4147
4239
  },
4148
4240
  "tagName": "grantcodes-map",
4149
- "customElement": true,
4150
- "modulePath": "src/components/map/map.component.js",
4151
- "definitionPath": "src/components/map/map.js"
4241
+ "customElement": true
4152
4242
  }
4153
4243
  ],
4154
4244
  "exports": [
@@ -4235,7 +4325,7 @@
4235
4325
  "text": "string"
4236
4326
  },
4237
4327
  "description": "Optional CTA as a JSON string: `{\"label\":\"...\",\"href\":\"...\"}`.",
4238
- "default": "\"\"",
4328
+ "default": "''",
4239
4329
  "attribute": "cta"
4240
4330
  },
4241
4331
  {
@@ -4245,8 +4335,8 @@
4245
4335
  "type": {
4246
4336
  "text": "string"
4247
4337
  },
4248
- "description": "Media object as a JSON string: `{\"src\":\"...\",\"alt\":\"...\",\"kind\":\"image|video\"}`.",
4249
- "default": "\"\"",
4338
+ "description": "Media object as a JSON string: `{\"src\",\"alt\",\"kind\":\"image|video\",\"width\",\"height\",\"poster\",\"loading\"}`.",
4339
+ "default": "''",
4250
4340
  "attribute": "media"
4251
4341
  },
4252
4342
  {
@@ -4269,7 +4359,7 @@
4269
4359
  "text": "string"
4270
4360
  },
4271
4361
  "description": "Body text paragraph.",
4272
- "default": "\"\"",
4362
+ "default": "''",
4273
4363
  "attribute": "text"
4274
4364
  },
4275
4365
  {
@@ -4280,7 +4370,7 @@
4280
4370
  "text": "string"
4281
4371
  },
4282
4372
  "description": "Section heading.",
4283
- "default": "\"\"",
4373
+ "default": "''",
4284
4374
  "attribute": "title"
4285
4375
  }
4286
4376
  ],
@@ -4291,7 +4381,7 @@
4291
4381
  "text": "string"
4292
4382
  },
4293
4383
  "description": "Optional CTA as a JSON string: `{\"label\":\"...\",\"href\":\"...\"}`.",
4294
- "default": "\"\"",
4384
+ "default": "''",
4295
4385
  "fieldName": "cta"
4296
4386
  },
4297
4387
  {
@@ -4299,8 +4389,8 @@
4299
4389
  "type": {
4300
4390
  "text": "string"
4301
4391
  },
4302
- "description": "Media object as a JSON string: `{\"src\":\"...\",\"alt\":\"...\",\"kind\":\"image|video\"}`.",
4303
- "default": "\"\"",
4392
+ "description": "Media object as a JSON string: `{\"src\",\"alt\",\"kind\":\"image|video\",\"width\",\"height\",\"poster\",\"loading\"}`.",
4393
+ "default": "''",
4304
4394
  "fieldName": "media"
4305
4395
  },
4306
4396
  {
@@ -4318,7 +4408,7 @@
4318
4408
  "text": "string"
4319
4409
  },
4320
4410
  "description": "Body text paragraph.",
4321
- "default": "\"\"",
4411
+ "default": "''",
4322
4412
  "fieldName": "text"
4323
4413
  },
4324
4414
  {
@@ -4327,7 +4417,7 @@
4327
4417
  "text": "string"
4328
4418
  },
4329
4419
  "description": "Section heading.",
4330
- "default": "\"\"",
4420
+ "default": "''",
4331
4421
  "fieldName": "title"
4332
4422
  }
4333
4423
  ],
@@ -4336,9 +4426,7 @@
4336
4426
  "package": "lit"
4337
4427
  },
4338
4428
  "tagName": "grantcodes-media-text",
4339
- "customElement": true,
4340
- "modulePath": "src/components/media-text/media-text.component.js",
4341
- "definitionPath": "src/components/media-text/media-text.js"
4429
+ "customElement": true
4342
4430
  }
4343
4431
  ],
4344
4432
  "exports": [
@@ -4415,7 +4503,7 @@
4415
4503
  "text": "string"
4416
4504
  },
4417
4505
  "description": "Form action URL.",
4418
- "default": "\"\"",
4506
+ "default": "''",
4419
4507
  "attribute": "action"
4420
4508
  },
4421
4509
  {
@@ -4426,7 +4514,7 @@
4426
4514
  "text": "string"
4427
4515
  },
4428
4516
  "description": "Submit button label.",
4429
- "default": "\"Subscribe\"",
4517
+ "default": "'Subscribe'",
4430
4518
  "attribute": "button-label"
4431
4519
  },
4432
4520
  {
@@ -4437,7 +4525,7 @@
4437
4525
  "text": "string"
4438
4526
  },
4439
4527
  "description": "Optional small disclaimer text below the form.",
4440
- "default": "\"\"",
4528
+ "default": "''",
4441
4529
  "attribute": "disclaimer"
4442
4530
  },
4443
4531
  {
@@ -4448,7 +4536,7 @@
4448
4536
  "text": "string"
4449
4537
  },
4450
4538
  "description": "Form submission method.",
4451
- "default": "\"post\"",
4539
+ "default": "'post'",
4452
4540
  "attribute": "method"
4453
4541
  },
4454
4542
  {
@@ -4459,7 +4547,7 @@
4459
4547
  "text": "string"
4460
4548
  },
4461
4549
  "description": "Email input placeholder.",
4462
- "default": "\"Your email address\"",
4550
+ "default": "'Your email address'",
4463
4551
  "attribute": "placeholder"
4464
4552
  },
4465
4553
  {
@@ -4470,7 +4558,7 @@
4470
4558
  "text": "string"
4471
4559
  },
4472
4560
  "description": "Optional supporting paragraph.",
4473
- "default": "\"\"",
4561
+ "default": "''",
4474
4562
  "attribute": "text"
4475
4563
  },
4476
4564
  {
@@ -4481,7 +4569,7 @@
4481
4569
  "text": "string"
4482
4570
  },
4483
4571
  "description": "Section heading.",
4484
- "default": "\"\"",
4572
+ "default": "''",
4485
4573
  "attribute": "title"
4486
4574
  }
4487
4575
  ],
@@ -4492,7 +4580,7 @@
4492
4580
  "text": "string"
4493
4581
  },
4494
4582
  "description": "Form action URL.",
4495
- "default": "\"\"",
4583
+ "default": "''",
4496
4584
  "fieldName": "action"
4497
4585
  },
4498
4586
  {
@@ -4501,7 +4589,7 @@
4501
4589
  "text": "string"
4502
4590
  },
4503
4591
  "description": "Submit button label.",
4504
- "default": "\"Subscribe\"",
4592
+ "default": "'Subscribe'",
4505
4593
  "fieldName": "buttonLabel"
4506
4594
  },
4507
4595
  {
@@ -4510,7 +4598,7 @@
4510
4598
  "text": "string"
4511
4599
  },
4512
4600
  "description": "Optional small disclaimer text below the form.",
4513
- "default": "\"\"",
4601
+ "default": "''",
4514
4602
  "fieldName": "disclaimer"
4515
4603
  },
4516
4604
  {
@@ -4519,7 +4607,7 @@
4519
4607
  "text": "string"
4520
4608
  },
4521
4609
  "description": "Form submission method.",
4522
- "default": "\"post\"",
4610
+ "default": "'post'",
4523
4611
  "fieldName": "method"
4524
4612
  },
4525
4613
  {
@@ -4528,7 +4616,7 @@
4528
4616
  "text": "string"
4529
4617
  },
4530
4618
  "description": "Email input placeholder.",
4531
- "default": "\"Your email address\"",
4619
+ "default": "'Your email address'",
4532
4620
  "fieldName": "placeholder"
4533
4621
  },
4534
4622
  {
@@ -4537,7 +4625,7 @@
4537
4625
  "text": "string"
4538
4626
  },
4539
4627
  "description": "Optional supporting paragraph.",
4540
- "default": "\"\"",
4628
+ "default": "''",
4541
4629
  "fieldName": "text"
4542
4630
  },
4543
4631
  {
@@ -4546,7 +4634,7 @@
4546
4634
  "text": "string"
4547
4635
  },
4548
4636
  "description": "Section heading.",
4549
- "default": "\"\"",
4637
+ "default": "''",
4550
4638
  "fieldName": "title"
4551
4639
  }
4552
4640
  ],
@@ -4555,9 +4643,7 @@
4555
4643
  "package": "lit"
4556
4644
  },
4557
4645
  "tagName": "grantcodes-newsletter",
4558
- "customElement": true,
4559
- "modulePath": "src/components/newsletter/newsletter.component.js",
4560
- "definitionPath": "src/components/newsletter/newsletter.js"
4646
+ "customElement": true
4561
4647
  }
4562
4648
  ],
4563
4649
  "exports": [
@@ -4626,6 +4712,10 @@
4626
4712
  "description": "",
4627
4713
  "name": "GrantCodesNotice",
4628
4714
  "members": [
4715
+ {
4716
+ "kind": "field",
4717
+ "name": "_viewTransitionName"
4718
+ },
4629
4719
  {
4630
4720
  "kind": "field",
4631
4721
  "name": "dependencies",
@@ -4633,7 +4723,7 @@
4633
4723
  "text": "object"
4634
4724
  },
4635
4725
  "static": true,
4636
- "default": "{ \"grancodes-icon\": GrantCodesIcon }"
4726
+ "default": "{ 'grancodes-icon': GrantCodesIcon }"
4637
4727
  },
4638
4728
  {
4639
4729
  "kind": "field",
@@ -4665,7 +4755,7 @@
4665
4755
  "type": {
4666
4756
  "text": "string"
4667
4757
  },
4668
- "default": "\"\"",
4758
+ "default": "''",
4669
4759
  "attribute": "title"
4670
4760
  },
4671
4761
  {
@@ -4675,7 +4765,7 @@
4675
4765
  "type": {
4676
4766
  "text": "string"
4677
4767
  },
4678
- "default": "\"info\"",
4768
+ "default": "'info'",
4679
4769
  "attribute": "variant"
4680
4770
  }
4681
4771
  ],
@@ -4693,7 +4783,7 @@
4693
4783
  "type": {
4694
4784
  "text": "string"
4695
4785
  },
4696
- "default": "\"\"",
4786
+ "default": "''",
4697
4787
  "fieldName": "title"
4698
4788
  },
4699
4789
  {
@@ -4701,7 +4791,7 @@
4701
4791
  "type": {
4702
4792
  "text": "string"
4703
4793
  },
4704
- "default": "\"info\"",
4794
+ "default": "'info'",
4705
4795
  "fieldName": "variant"
4706
4796
  }
4707
4797
  ],
@@ -4710,9 +4800,7 @@
4710
4800
  "package": "lit"
4711
4801
  },
4712
4802
  "tagName": "grantcodes-notice",
4713
- "customElement": true,
4714
- "modulePath": "src/components/notice/notice.component.js",
4715
- "definitionPath": "src/components/notice/notice.js"
4803
+ "customElement": true
4716
4804
  }
4717
4805
  ],
4718
4806
  "exports": [
@@ -4788,7 +4876,7 @@
4788
4876
  "text": "object"
4789
4877
  },
4790
4878
  "static": true,
4791
- "default": "{ \"grantcodes-button\": GrantCodesButton }"
4879
+ "default": "{ 'grantcodes-button': GrantCodesButton }"
4792
4880
  },
4793
4881
  {
4794
4882
  "kind": "field",
@@ -4797,7 +4885,7 @@
4797
4885
  "type": {
4798
4886
  "text": "string"
4799
4887
  },
4800
- "default": "\"\"",
4888
+ "default": "''",
4801
4889
  "attribute": "next-href"
4802
4890
  },
4803
4891
  {
@@ -4831,7 +4919,7 @@
4831
4919
  "type": {
4832
4920
  "text": "string"
4833
4921
  },
4834
- "default": "\"\"",
4922
+ "default": "''",
4835
4923
  "attribute": "previous-href"
4836
4924
  },
4837
4925
  {
@@ -4845,7 +4933,7 @@
4845
4933
  "type": {
4846
4934
  "text": "string"
4847
4935
  },
4848
- "default": "\"\"",
4936
+ "default": "''",
4849
4937
  "fieldName": "nextHref"
4850
4938
  },
4851
4939
  {
@@ -4869,7 +4957,7 @@
4869
4957
  "type": {
4870
4958
  "text": "string"
4871
4959
  },
4872
- "default": "\"\"",
4960
+ "default": "''",
4873
4961
  "fieldName": "previousHref"
4874
4962
  }
4875
4963
  ],
@@ -4878,9 +4966,7 @@
4878
4966
  "package": "lit"
4879
4967
  },
4880
4968
  "tagName": "grantcodes-pagination",
4881
- "customElement": true,
4882
- "modulePath": "src/components/pagination/pagination.component.js",
4883
- "definitionPath": "src/components/pagination/pagination.js"
4969
+ "customElement": true
4884
4970
  }
4885
4971
  ],
4886
4972
  "exports": [
@@ -4956,7 +5042,7 @@
4956
5042
  "type": {
4957
5043
  "text": "string"
4958
5044
  },
4959
- "default": "\"\"",
5045
+ "default": "''",
4960
5046
  "attribute": "alt"
4961
5047
  },
4962
5048
  {
@@ -4966,7 +5052,7 @@
4966
5052
  "type": {
4967
5053
  "text": "string"
4968
5054
  },
4969
- "default": "\"\"",
5055
+ "default": "''",
4970
5056
  "attribute": "avatar"
4971
5057
  },
4972
5058
  {
@@ -4976,7 +5062,7 @@
4976
5062
  "type": {
4977
5063
  "text": "string"
4978
5064
  },
4979
- "default": "\"\"",
5065
+ "default": "''",
4980
5066
  "attribute": "company"
4981
5067
  },
4982
5068
  {
@@ -4991,7 +5077,7 @@
4991
5077
  "type": {
4992
5078
  "text": "string"
4993
5079
  },
4994
- "default": "\"\"",
5080
+ "default": "''",
4995
5081
  "attribute": "name"
4996
5082
  },
4997
5083
  {
@@ -5001,7 +5087,7 @@
5001
5087
  "type": {
5002
5088
  "text": "string"
5003
5089
  },
5004
- "default": "\"\"",
5090
+ "default": "''",
5005
5091
  "attribute": "role"
5006
5092
  },
5007
5093
  {
@@ -5011,7 +5097,7 @@
5011
5097
  "type": {
5012
5098
  "text": "string"
5013
5099
  },
5014
- "default": "\"medium\"",
5100
+ "default": "'medium'",
5015
5101
  "attribute": "size"
5016
5102
  }
5017
5103
  ],
@@ -5021,7 +5107,7 @@
5021
5107
  "type": {
5022
5108
  "text": "string"
5023
5109
  },
5024
- "default": "\"\"",
5110
+ "default": "''",
5025
5111
  "fieldName": "alt"
5026
5112
  },
5027
5113
  {
@@ -5029,7 +5115,7 @@
5029
5115
  "type": {
5030
5116
  "text": "string"
5031
5117
  },
5032
- "default": "\"\"",
5118
+ "default": "''",
5033
5119
  "fieldName": "avatar"
5034
5120
  },
5035
5121
  {
@@ -5037,7 +5123,7 @@
5037
5123
  "type": {
5038
5124
  "text": "string"
5039
5125
  },
5040
- "default": "\"\"",
5126
+ "default": "''",
5041
5127
  "fieldName": "company"
5042
5128
  },
5043
5129
  {
@@ -5045,7 +5131,7 @@
5045
5131
  "type": {
5046
5132
  "text": "string"
5047
5133
  },
5048
- "default": "\"\"",
5134
+ "default": "''",
5049
5135
  "fieldName": "name"
5050
5136
  },
5051
5137
  {
@@ -5053,7 +5139,7 @@
5053
5139
  "type": {
5054
5140
  "text": "string"
5055
5141
  },
5056
- "default": "\"\"",
5142
+ "default": "''",
5057
5143
  "fieldName": "role"
5058
5144
  },
5059
5145
  {
@@ -5061,7 +5147,7 @@
5061
5147
  "type": {
5062
5148
  "text": "string"
5063
5149
  },
5064
- "default": "\"medium\"",
5150
+ "default": "'medium'",
5065
5151
  "fieldName": "size"
5066
5152
  }
5067
5153
  ],
@@ -5070,9 +5156,7 @@
5070
5156
  "package": "lit"
5071
5157
  },
5072
5158
  "tagName": "grantcodes-person",
5073
- "customElement": true,
5074
- "modulePath": "src/components/person/person.component.js",
5075
- "definitionPath": "src/components/person/person.js"
5159
+ "customElement": true
5076
5160
  }
5077
5161
  ],
5078
5162
  "exports": [
@@ -5154,7 +5238,7 @@
5154
5238
  "text": "string"
5155
5239
  },
5156
5240
  "description": "Optional supporting text below the heading.",
5157
- "default": "\"\"",
5241
+ "default": "''",
5158
5242
  "attribute": "subtitle"
5159
5243
  },
5160
5244
  {
@@ -5165,7 +5249,7 @@
5165
5249
  "text": "string"
5166
5250
  },
5167
5251
  "description": "Pricing tiers as a JSON string array.\nEach tier: `{\"name\":\"...\",\"price\":\"...\",\"period\":\"...\",\"description\":\"...\",\"features\":[{\"text\":\"...\",\"included\":true}],\"cta\":{\"label\":\"...\",\"href\":\"...\"},\"highlighted\":false}`.",
5168
- "default": "\"[]\"",
5252
+ "default": "'[]'",
5169
5253
  "attribute": "tiers"
5170
5254
  },
5171
5255
  {
@@ -5176,7 +5260,7 @@
5176
5260
  "text": "string"
5177
5261
  },
5178
5262
  "description": "Optional section heading.",
5179
- "default": "\"\"",
5263
+ "default": "''",
5180
5264
  "attribute": "title"
5181
5265
  }
5182
5266
  ],
@@ -5187,7 +5271,7 @@
5187
5271
  "text": "string"
5188
5272
  },
5189
5273
  "description": "Optional supporting text below the heading.",
5190
- "default": "\"\"",
5274
+ "default": "''",
5191
5275
  "fieldName": "subtitle"
5192
5276
  },
5193
5277
  {
@@ -5196,7 +5280,7 @@
5196
5280
  "text": "string"
5197
5281
  },
5198
5282
  "description": "Pricing tiers as a JSON string array.\nEach tier: `{\"name\":\"...\",\"price\":\"...\",\"period\":\"...\",\"description\":\"...\",\"features\":[{\"text\":\"...\",\"included\":true}],\"cta\":{\"label\":\"...\",\"href\":\"...\"},\"highlighted\":false}`.",
5199
- "default": "\"[]\"",
5283
+ "default": "'[]'",
5200
5284
  "fieldName": "tiers"
5201
5285
  },
5202
5286
  {
@@ -5205,7 +5289,7 @@
5205
5289
  "text": "string"
5206
5290
  },
5207
5291
  "description": "Optional section heading.",
5208
- "default": "\"\"",
5292
+ "default": "''",
5209
5293
  "fieldName": "title"
5210
5294
  }
5211
5295
  ],
@@ -5214,9 +5298,7 @@
5214
5298
  "package": "lit"
5215
5299
  },
5216
5300
  "tagName": "grantcodes-pricing",
5217
- "customElement": true,
5218
- "modulePath": "src/components/pricing/pricing.component.js",
5219
- "definitionPath": "src/components/pricing/pricing.js"
5301
+ "customElement": true
5220
5302
  }
5221
5303
  ],
5222
5304
  "exports": [
@@ -5285,6 +5367,10 @@
5285
5367
  "description": "",
5286
5368
  "name": "GrantCodesSidebar",
5287
5369
  "members": [
5370
+ {
5371
+ "kind": "method",
5372
+ "name": "_closeDrawer"
5373
+ },
5288
5374
  {
5289
5375
  "kind": "field",
5290
5376
  "name": "_drawerOpen",
@@ -5314,6 +5400,18 @@
5314
5400
  }
5315
5401
  ]
5316
5402
  },
5403
+ {
5404
+ "kind": "field",
5405
+ "name": "_pendingState",
5406
+ "type": {
5407
+ "text": "object"
5408
+ },
5409
+ "default": "{}"
5410
+ },
5411
+ {
5412
+ "kind": "method",
5413
+ "name": "_scheduleTransition"
5414
+ },
5317
5415
  {
5318
5416
  "kind": "method",
5319
5417
  "name": "_toggleCollapsed"
@@ -5322,6 +5420,18 @@
5322
5420
  "kind": "method",
5323
5421
  "name": "_toggleDrawer"
5324
5422
  },
5423
+ {
5424
+ "kind": "field",
5425
+ "name": "_transitionScheduled",
5426
+ "type": {
5427
+ "text": "boolean"
5428
+ },
5429
+ "default": "false"
5430
+ },
5431
+ {
5432
+ "kind": "field",
5433
+ "name": "_viewTransitionName"
5434
+ },
5325
5435
  {
5326
5436
  "kind": "field",
5327
5437
  "name": "collapsed",
@@ -5353,7 +5463,7 @@
5353
5463
  "text": "'left' | 'right'"
5354
5464
  },
5355
5465
  "description": "Position of the sidebar",
5356
- "default": "\"left\"",
5466
+ "default": "'left'",
5357
5467
  "attribute": "position"
5358
5468
  },
5359
5469
  {
@@ -5364,7 +5474,7 @@
5364
5474
  "text": "string"
5365
5475
  },
5366
5476
  "description": "Custom width of the sidebar",
5367
- "default": "\"280px\"",
5477
+ "default": "'280px'",
5368
5478
  "attribute": "width"
5369
5479
  }
5370
5480
  ],
@@ -5416,7 +5526,7 @@
5416
5526
  "text": "'left' | 'right'"
5417
5527
  },
5418
5528
  "description": "Position of the sidebar",
5419
- "default": "\"left\"",
5529
+ "default": "'left'",
5420
5530
  "fieldName": "position"
5421
5531
  },
5422
5532
  {
@@ -5425,7 +5535,7 @@
5425
5535
  "text": "string"
5426
5536
  },
5427
5537
  "description": "Custom width of the sidebar",
5428
- "default": "\"280px\"",
5538
+ "default": "'280px'",
5429
5539
  "fieldName": "width"
5430
5540
  }
5431
5541
  ],
@@ -5434,9 +5544,7 @@
5434
5544
  "package": "lit"
5435
5545
  },
5436
5546
  "tagName": "grantcodes-sidebar",
5437
- "customElement": true,
5438
- "modulePath": "src/components/sidebar/sidebar.component.js",
5439
- "definitionPath": "src/components/sidebar/sidebar.js"
5547
+ "customElement": true
5440
5548
  }
5441
5549
  ],
5442
5550
  "exports": [
@@ -5529,7 +5637,7 @@
5529
5637
  "text": "string"
5530
5638
  },
5531
5639
  "description": "Stat items as a JSON string array: `[{\"label\":\"...\",\"value\":\"...\",\"context\":\"...\"}]`.",
5532
- "default": "\"[]\"",
5640
+ "default": "'[]'",
5533
5641
  "attribute": "items"
5534
5642
  },
5535
5643
  {
@@ -5540,7 +5648,7 @@
5540
5648
  "text": "string"
5541
5649
  },
5542
5650
  "description": "Optional section heading.",
5543
- "default": "\"\"",
5651
+ "default": "''",
5544
5652
  "attribute": "title"
5545
5653
  }
5546
5654
  ],
@@ -5560,7 +5668,7 @@
5560
5668
  "text": "string"
5561
5669
  },
5562
5670
  "description": "Stat items as a JSON string array: `[{\"label\":\"...\",\"value\":\"...\",\"context\":\"...\"}]`.",
5563
- "default": "\"[]\"",
5671
+ "default": "'[]'",
5564
5672
  "fieldName": "items"
5565
5673
  },
5566
5674
  {
@@ -5569,7 +5677,7 @@
5569
5677
  "text": "string"
5570
5678
  },
5571
5679
  "description": "Optional section heading.",
5572
- "default": "\"\"",
5680
+ "default": "''",
5573
5681
  "fieldName": "title"
5574
5682
  }
5575
5683
  ],
@@ -5578,9 +5686,7 @@
5578
5686
  "package": "lit"
5579
5687
  },
5580
5688
  "tagName": "grantcodes-stats",
5581
- "customElement": true,
5582
- "modulePath": "src/components/stats/stats.component.js",
5583
- "definitionPath": "src/components/stats/stats.js"
5689
+ "customElement": true
5584
5690
  }
5585
5691
  ],
5586
5692
  "exports": [
@@ -5635,7 +5741,7 @@
5635
5741
  "name": "*",
5636
5742
  "declaration": {
5637
5743
  "name": "*",
5638
- "module": "src/components/tabs/tabs.js"
5744
+ "module": "src/components/tabs/tab.js"
5639
5745
  }
5640
5746
  },
5641
5747
  {
@@ -5643,7 +5749,7 @@
5643
5749
  "name": "*",
5644
5750
  "declaration": {
5645
5751
  "name": "*",
5646
- "module": "src/components/tabs/tab.js"
5752
+ "module": "src/components/tabs/tabs.js"
5647
5753
  }
5648
5754
  }
5649
5755
  ]
@@ -5693,7 +5799,7 @@
5693
5799
  "type": {
5694
5800
  "text": "string"
5695
5801
  },
5696
- "default": "\"\"",
5802
+ "default": "''",
5697
5803
  "attribute": "containerId",
5698
5804
  "inheritedFrom": {
5699
5805
  "name": "GrantCodesTabsItem",
@@ -5735,7 +5841,7 @@
5735
5841
  "type": {
5736
5842
  "text": "string"
5737
5843
  },
5738
- "default": "\"\"",
5844
+ "default": "''",
5739
5845
  "attribute": "label",
5740
5846
  "inheritedFrom": {
5741
5847
  "name": "GrantCodesTabsItem",
@@ -5802,7 +5908,7 @@
5802
5908
  "type": {
5803
5909
  "text": "string"
5804
5910
  },
5805
- "default": "\"\"",
5911
+ "default": "''",
5806
5912
  "fieldName": "containerId",
5807
5913
  "inheritedFrom": {
5808
5914
  "name": "GrantCodesTabsItem",
@@ -5838,7 +5944,7 @@
5838
5944
  "type": {
5839
5945
  "text": "string"
5840
5946
  },
5841
- "default": "\"\"",
5947
+ "default": "''",
5842
5948
  "fieldName": "label",
5843
5949
  "inheritedFrom": {
5844
5950
  "name": "GrantCodesTabsItem",
@@ -5857,9 +5963,7 @@
5857
5963
  "module": "src/components/tabs/internal/tabs-item.component.js"
5858
5964
  }
5859
5965
  }
5860
- ],
5861
- "modulePath": "src/components/tabs/internal/tabs-button.component.js",
5862
- "definitionPath": "src/components/tabs/internal/tabs-button.js"
5966
+ ]
5863
5967
  }
5864
5968
  ],
5865
5969
  "exports": [
@@ -5955,7 +6059,7 @@
5955
6059
  "type": {
5956
6060
  "text": "string"
5957
6061
  },
5958
- "default": "\"\"",
6062
+ "default": "''",
5959
6063
  "attribute": "containerId",
5960
6064
  "inheritedFrom": {
5961
6065
  "name": "GrantCodesTabsItem",
@@ -5997,7 +6101,7 @@
5997
6101
  "type": {
5998
6102
  "text": "string"
5999
6103
  },
6000
- "default": "\"\"",
6104
+ "default": "''",
6001
6105
  "attribute": "label",
6002
6106
  "inheritedFrom": {
6003
6107
  "name": "GrantCodesTabsItem",
@@ -6055,7 +6159,7 @@
6055
6159
  "type": {
6056
6160
  "text": "string"
6057
6161
  },
6058
- "default": "\"\"",
6162
+ "default": "''",
6059
6163
  "fieldName": "containerId",
6060
6164
  "inheritedFrom": {
6061
6165
  "name": "GrantCodesTabsItem",
@@ -6091,7 +6195,7 @@
6091
6195
  "type": {
6092
6196
  "text": "string"
6093
6197
  },
6094
- "default": "\"\"",
6198
+ "default": "''",
6095
6199
  "fieldName": "label",
6096
6200
  "inheritedFrom": {
6097
6201
  "name": "GrantCodesTabsItem",
@@ -6110,9 +6214,7 @@
6110
6214
  "module": "src/components/tabs/internal/tabs-item.component.js"
6111
6215
  }
6112
6216
  }
6113
- ],
6114
- "modulePath": "src/components/tabs/tab.component.js",
6115
- "definitionPath": "src/components/tabs/tab.js"
6217
+ ]
6116
6218
  }
6117
6219
  ],
6118
6220
  "exports": [
@@ -6200,7 +6302,7 @@
6200
6302
  "type": {
6201
6303
  "text": "string"
6202
6304
  },
6203
- "default": "\"\"",
6305
+ "default": "''",
6204
6306
  "attribute": "label"
6205
6307
  },
6206
6308
  {
@@ -6238,7 +6340,7 @@
6238
6340
  "type": {
6239
6341
  "text": "string"
6240
6342
  },
6241
- "default": "\"\"",
6343
+ "default": "''",
6242
6344
  "fieldName": "label"
6243
6345
  }
6244
6346
  ],
@@ -6247,9 +6349,7 @@
6247
6349
  "package": "lit"
6248
6350
  },
6249
6351
  "tagName": "grantcodes-tabs",
6250
- "customElement": true,
6251
- "modulePath": "src/components/tabs/tabs.component.js",
6252
- "definitionPath": "src/components/tabs/tabs.js"
6352
+ "customElement": true
6253
6353
  }
6254
6354
  ],
6255
6355
  "exports": [
@@ -6347,7 +6447,7 @@
6347
6447
  "text": "string"
6348
6448
  },
6349
6449
  "description": "Testimonial items as a JSON string array: `[{\"quote\":\"...\",\"name\":\"...\",\"role\":\"...\",\"company\":\"...\",\"avatar\":\"...\"}]`.",
6350
- "default": "\"[]\"",
6450
+ "default": "'[]'",
6351
6451
  "attribute": "items"
6352
6452
  },
6353
6453
  {
@@ -6358,7 +6458,7 @@
6358
6458
  "text": "string"
6359
6459
  },
6360
6460
  "description": "Display layout of the testimonials.",
6361
- "default": "\"cards\"",
6461
+ "default": "'cards'",
6362
6462
  "attribute": "layout",
6363
6463
  "reflects": true
6364
6464
  },
@@ -6370,7 +6470,7 @@
6370
6470
  "text": "string"
6371
6471
  },
6372
6472
  "description": "Optional section heading.",
6373
- "default": "\"\"",
6473
+ "default": "''",
6374
6474
  "attribute": "title"
6375
6475
  }
6376
6476
  ],
@@ -6381,7 +6481,7 @@
6381
6481
  "text": "string"
6382
6482
  },
6383
6483
  "description": "Testimonial items as a JSON string array: `[{\"quote\":\"...\",\"name\":\"...\",\"role\":\"...\",\"company\":\"...\",\"avatar\":\"...\"}]`.",
6384
- "default": "\"[]\"",
6484
+ "default": "'[]'",
6385
6485
  "fieldName": "items"
6386
6486
  },
6387
6487
  {
@@ -6390,7 +6490,7 @@
6390
6490
  "text": "string"
6391
6491
  },
6392
6492
  "description": "Display layout of the testimonials.",
6393
- "default": "\"cards\"",
6493
+ "default": "'cards'",
6394
6494
  "fieldName": "layout"
6395
6495
  },
6396
6496
  {
@@ -6399,7 +6499,7 @@
6399
6499
  "text": "string"
6400
6500
  },
6401
6501
  "description": "Optional section heading.",
6402
- "default": "\"\"",
6502
+ "default": "''",
6403
6503
  "fieldName": "title"
6404
6504
  }
6405
6505
  ],
@@ -6408,9 +6508,7 @@
6408
6508
  "package": "lit"
6409
6509
  },
6410
6510
  "tagName": "grantcodes-testimonials",
6411
- "customElement": true,
6412
- "modulePath": "src/components/testimonials/testimonials.component.js",
6413
- "definitionPath": "src/components/testimonials/testimonials.js"
6511
+ "customElement": true
6414
6512
  }
6415
6513
  ],
6416
6514
  "exports": [
@@ -6492,10 +6590,52 @@
6492
6590
  "kind": "method",
6493
6591
  "name": "_handleDismiss"
6494
6592
  },
6593
+ {
6594
+ "kind": "method",
6595
+ "name": "_pauseDismiss"
6596
+ },
6597
+ {
6598
+ "kind": "method",
6599
+ "name": "_remove"
6600
+ },
6601
+ {
6602
+ "kind": "field",
6603
+ "name": "_removeTimeout",
6604
+ "type": {
6605
+ "text": "number | null"
6606
+ },
6607
+ "description": "Timeout ID for removing the toast after its exit animation",
6608
+ "default": "null"
6609
+ },
6610
+ {
6611
+ "kind": "field",
6612
+ "name": "_removing",
6613
+ "type": {
6614
+ "text": "boolean"
6615
+ },
6616
+ "description": "Guards against dismissing twice (close click plus auto-dismiss)",
6617
+ "default": "false"
6618
+ },
6495
6619
  {
6496
6620
  "kind": "method",
6497
6621
  "name": "_renderDismissButton"
6498
6622
  },
6623
+ {
6624
+ "kind": "method",
6625
+ "name": "_resumeDismiss"
6626
+ },
6627
+ {
6628
+ "kind": "method",
6629
+ "name": "_startDismissTimer"
6630
+ },
6631
+ {
6632
+ "kind": "field",
6633
+ "name": "_useViewTransition"
6634
+ },
6635
+ {
6636
+ "kind": "field",
6637
+ "name": "_viewTransitionName"
6638
+ },
6499
6639
  {
6500
6640
  "kind": "field",
6501
6641
  "name": "_visible",
@@ -6514,7 +6654,7 @@
6514
6654
  "text": "object"
6515
6655
  },
6516
6656
  "static": true,
6517
- "default": "{ \"grancodes-icon\": GrantCodesIcon }"
6657
+ "default": "{ 'grancodes-icon': GrantCodesIcon }"
6518
6658
  },
6519
6659
  {
6520
6660
  "kind": "field",
@@ -6546,7 +6686,7 @@
6546
6686
  "text": "'top-left' | 'top-center' | 'top-right' | 'bottom-left' | 'bottom-center' | 'bottom-right'"
6547
6687
  },
6548
6688
  "description": "Toast position",
6549
- "default": "\"top-right\"",
6689
+ "default": "'top-right'",
6550
6690
  "attribute": "position"
6551
6691
  },
6552
6692
  {
@@ -6557,7 +6697,7 @@
6557
6697
  "text": "string"
6558
6698
  },
6559
6699
  "description": "Toast title",
6560
- "default": "\"\"",
6700
+ "default": "''",
6561
6701
  "attribute": "title"
6562
6702
  },
6563
6703
  {
@@ -6568,7 +6708,7 @@
6568
6708
  "text": "'info' | 'success' | 'warning' | 'error'"
6569
6709
  },
6570
6710
  "description": "Visual variant",
6571
- "default": "\"info\"",
6711
+ "default": "'info'",
6572
6712
  "attribute": "variant"
6573
6713
  }
6574
6714
  ],
@@ -6614,7 +6754,7 @@
6614
6754
  "text": "'top-left' | 'top-center' | 'top-right' | 'bottom-left' | 'bottom-center' | 'bottom-right'"
6615
6755
  },
6616
6756
  "description": "Toast position",
6617
- "default": "\"top-right\"",
6757
+ "default": "'top-right'",
6618
6758
  "fieldName": "position"
6619
6759
  },
6620
6760
  {
@@ -6623,7 +6763,7 @@
6623
6763
  "text": "string"
6624
6764
  },
6625
6765
  "description": "Toast title",
6626
- "default": "\"\"",
6766
+ "default": "''",
6627
6767
  "fieldName": "title"
6628
6768
  },
6629
6769
  {
@@ -6632,7 +6772,7 @@
6632
6772
  "text": "'info' | 'success' | 'warning' | 'error'"
6633
6773
  },
6634
6774
  "description": "Visual variant",
6635
- "default": "\"info\"",
6775
+ "default": "'info'",
6636
6776
  "fieldName": "variant"
6637
6777
  }
6638
6778
  ],
@@ -6641,9 +6781,7 @@
6641
6781
  "package": "lit"
6642
6782
  },
6643
6783
  "tagName": "grantcodes-toast",
6644
- "customElement": true,
6645
- "modulePath": "src/components/toast/toast.component.js",
6646
- "definitionPath": "src/components/toast/toast.js"
6784
+ "customElement": true
6647
6785
  },
6648
6786
  {
6649
6787
  "kind": "class",
@@ -6658,7 +6796,7 @@
6658
6796
  "text": "'top-left' | 'top-center' | 'top-right' | 'bottom-left' | 'bottom-center' | 'bottom-right'"
6659
6797
  },
6660
6798
  "description": "Position of the toast container",
6661
- "default": "\"top-right\"",
6799
+ "default": "'top-right'",
6662
6800
  "attribute": "position"
6663
6801
  }
6664
6802
  ],
@@ -6669,7 +6807,7 @@
6669
6807
  "text": "'top-left' | 'top-center' | 'top-right' | 'bottom-left' | 'bottom-center' | 'bottom-right'"
6670
6808
  },
6671
6809
  "description": "Position of the toast container",
6672
- "default": "\"top-right\"",
6810
+ "default": "'top-right'",
6673
6811
  "fieldName": "position"
6674
6812
  }
6675
6813
  ],
@@ -6678,9 +6816,7 @@
6678
6816
  "package": "lit"
6679
6817
  },
6680
6818
  "tagName": "grantcodes-toast-container",
6681
- "customElement": true,
6682
- "modulePath": "src/components/toast/toast.component.js",
6683
- "definitionPath": "src/components/toast/toast.js"
6819
+ "customElement": true
6684
6820
  }
6685
6821
  ],
6686
6822
  "exports": [
@@ -6773,13 +6909,9 @@
6773
6909
  "text": "string"
6774
6910
  },
6775
6911
  "description": "Description for the tooltip, used when the tooltip is additional descriptive text for the item.",
6776
- "default": "\"\"",
6912
+ "default": "''",
6777
6913
  "attribute": "description"
6778
6914
  },
6779
- {
6780
- "kind": "field",
6781
- "name": "id"
6782
- },
6783
6915
  {
6784
6916
  "kind": "field",
6785
6917
  "name": "label",
@@ -6788,7 +6920,7 @@
6788
6920
  "text": "string"
6789
6921
  },
6790
6922
  "description": "Label for the tooltip, used when the tooltip is the main label for the item.",
6791
- "default": "\"\"",
6923
+ "default": "''",
6792
6924
  "attribute": "label"
6793
6925
  },
6794
6926
  {
@@ -6807,7 +6939,7 @@
6807
6939
  "text": "string"
6808
6940
  },
6809
6941
  "description": "Description for the tooltip, used when the tooltip is additional descriptive text for the item.",
6810
- "default": "\"\"",
6942
+ "default": "''",
6811
6943
  "fieldName": "description"
6812
6944
  },
6813
6945
  {
@@ -6816,7 +6948,7 @@
6816
6948
  "text": "string"
6817
6949
  },
6818
6950
  "description": "Label for the tooltip, used when the tooltip is the main label for the item.",
6819
- "default": "\"\"",
6951
+ "default": "''",
6820
6952
  "fieldName": "label"
6821
6953
  }
6822
6954
  ],
@@ -6825,9 +6957,7 @@
6825
6957
  "package": "lit"
6826
6958
  },
6827
6959
  "tagName": "grantcodes-tooltip",
6828
- "customElement": true,
6829
- "modulePath": "src/components/tooltip/tooltip.component.js",
6830
- "definitionPath": "src/components/tooltip/tooltip.js"
6960
+ "customElement": true
6831
6961
  }
6832
6962
  ],
6833
6963
  "exports": [