@grantcodes/ui 2.0.2 → 2.1.1

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 (179) hide show
  1. package/CHANGELOG.md +15 -0
  2. package/custom-elements.json +1926 -191
  3. package/package.json +22 -21
  4. package/src/components/accordion/accordion.component.js +33 -0
  5. package/src/components/accordion/accordion.js +6 -0
  6. package/src/components/accordion/accordion.stories.js +88 -0
  7. package/src/components/accordion/accordion.styles.js +66 -0
  8. package/src/components/accordion/index.js +6 -0
  9. package/src/components/app-bar/app-bar.component.js +1 -3
  10. package/src/components/app-bar/app-bar.js +0 -2
  11. package/src/components/app-bar/app-bar.styles.js +222 -221
  12. package/src/components/app-bar/app-bar.test.js +58 -17
  13. package/src/components/app-bar/index.js +0 -2
  14. package/src/components/avatar/avatar.js +0 -12
  15. package/src/components/avatar/avatar.stories.js +0 -12
  16. package/src/components/avatar/avatar.styles.js +19 -19
  17. package/src/components/avatar/avatar.test.js +4 -4
  18. package/src/components/avatar/index.js +1 -13
  19. package/src/components/badge/badge.js +0 -2
  20. package/src/components/badge/badge.styles.js +78 -81
  21. package/src/components/badge/badge.test.js +18 -5
  22. package/src/components/badge/index.js +0 -2
  23. package/src/components/breadcrumb/breadcrumb.component.js +9 -10
  24. package/src/components/breadcrumb/breadcrumb.js +6 -4
  25. package/src/components/breadcrumb/breadcrumb.styles.js +86 -90
  26. package/src/components/breadcrumb/breadcrumb.test.js +15 -5
  27. package/src/components/breadcrumb/index.js +0 -2
  28. package/src/components/button/button.component.js +2 -2
  29. package/src/components/button/button.styles.js +58 -86
  30. package/src/components/button/button.test.js +8 -4
  31. package/src/components/button/index.js +1 -1
  32. package/src/components/button-group/button-group.test.js +0 -2
  33. package/src/components/button-group/index.js +1 -1
  34. package/src/components/card/card.component.js +40 -9
  35. package/src/components/card/card.js +3 -1
  36. package/src/components/card/card.stories.js +18 -5
  37. package/src/components/card/card.styles.js +46 -20
  38. package/src/components/card/card.test.js +0 -2
  39. package/src/components/card/index.js +1 -1
  40. package/src/components/code-preview/code-preview.component.js +9 -9
  41. package/src/components/code-preview/code-preview.js +0 -1
  42. package/src/components/code-preview/code-preview.styles.js +3 -3
  43. package/src/components/code-preview/code-preview.test.js +29 -8
  44. package/src/components/code-preview/index.js +1 -1
  45. package/src/components/container/container.component.js +1 -0
  46. package/src/components/container/container.js +0 -1
  47. package/src/components/container/container.stories.js +12 -4
  48. package/src/components/container/container.styles.js +37 -35
  49. package/src/components/container/container.test.js +0 -2
  50. package/src/components/container/index.js +1 -1
  51. package/src/components/cta/cta.component.js +108 -0
  52. package/src/components/cta/cta.js +6 -0
  53. package/src/components/cta/cta.stories.js +56 -0
  54. package/src/components/cta/cta.styles.js +64 -0
  55. package/src/components/cta/index.js +1 -0
  56. package/src/components/dialog/dialog.js +0 -1
  57. package/src/components/dialog/dialog.styles.js +8 -8
  58. package/src/components/dialog/dialog.test.js +11 -5
  59. package/src/components/dialog/index.js +1 -1
  60. package/src/components/dropdown/dropdown.component.js +5 -3
  61. package/src/components/dropdown/dropdown.js +6 -4
  62. package/src/components/dropdown/dropdown.styles.js +5 -5
  63. package/src/components/dropdown/dropdown.test.js +20 -4
  64. package/src/components/dropdown/index.js +0 -2
  65. package/src/components/dropzone/dropzone.component.js +7 -6
  66. package/src/components/dropzone/dropzone.styles.js +4 -4
  67. package/src/components/dropzone/dropzone.test.js +6 -4
  68. package/src/components/dropzone/index.js +1 -1
  69. package/src/components/feature-list/feature-list.component.js +130 -0
  70. package/src/components/feature-list/feature-list.js +6 -0
  71. package/src/components/feature-list/feature-list.stories.js +117 -0
  72. package/src/components/feature-list/feature-list.styles.js +82 -0
  73. package/src/components/feature-list/index.js +1 -0
  74. package/src/components/footer/footer-column.styles.js +46 -47
  75. package/src/components/footer/footer.js +6 -2
  76. package/src/components/footer/footer.styles.js +6 -6
  77. package/src/components/footer/footer.test.js +9 -4
  78. package/src/components/footer/index.js +1 -1
  79. package/src/components/form-field/form-field.component.js +1 -3
  80. package/src/components/form-field/form-field.js +0 -1
  81. package/src/components/form-field/form-field.styles.js +35 -37
  82. package/src/components/form-field/form-field.test.js +9 -4
  83. package/src/components/form-field/index.js +1 -1
  84. package/src/components/gallery/gallery-image.js +0 -1
  85. package/src/components/gallery/gallery.js +0 -1
  86. package/src/components/gallery/gallery.styles.js +1 -1
  87. package/src/components/gallery/gallery.test.js +5 -3
  88. package/src/components/gallery/index.js +2 -2
  89. package/src/components/hero/hero.component.js +66 -0
  90. package/src/components/hero/hero.js +6 -0
  91. package/src/components/hero/hero.stories.js +53 -0
  92. package/src/components/hero/hero.styles.js +46 -0
  93. package/src/components/hero/index.js +1 -0
  94. package/src/components/icon/icon.js +3 -2
  95. package/src/components/icon/icon.stories.js +2 -1
  96. package/src/components/icon/icon.styles.js +23 -21
  97. package/src/components/icon/icon.test.js +2 -3
  98. package/src/components/icon/index.js +1 -1
  99. package/src/components/loading/index.js +1 -1
  100. package/src/components/loading/loading.js +3 -2
  101. package/src/components/loading/loading.styles.js +1 -1
  102. package/src/components/loading/loading.test.js +0 -2
  103. package/src/components/logo-cloud/index.js +1 -0
  104. package/src/components/logo-cloud/logo-cloud.component.js +81 -0
  105. package/src/components/logo-cloud/logo-cloud.js +6 -0
  106. package/src/components/logo-cloud/logo-cloud.stories.js +107 -0
  107. package/src/components/logo-cloud/logo-cloud.styles.js +68 -0
  108. package/src/components/media-text/index.js +1 -0
  109. package/src/components/media-text/media-text.component.js +100 -0
  110. package/src/components/media-text/media-text.js +6 -0
  111. package/src/components/media-text/media-text.stories.js +69 -0
  112. package/src/components/media-text/media-text.styles.js +66 -0
  113. package/src/components/newsletter/index.js +1 -0
  114. package/src/components/newsletter/newsletter.component.js +101 -0
  115. package/src/components/newsletter/newsletter.js +6 -0
  116. package/src/components/newsletter/newsletter.stories.js +59 -0
  117. package/src/components/newsletter/newsletter.styles.js +89 -0
  118. package/src/components/notice/index.js +1 -1
  119. package/src/components/notice/notice.js +0 -1
  120. package/src/components/notice/notice.styles.js +7 -7
  121. package/src/components/notice/notice.test.js +15 -5
  122. package/src/components/pagination/index.js +1 -1
  123. package/src/components/pagination/pagination.stories.js +1 -3
  124. package/src/components/pagination/pagination.styles.js +1 -1
  125. package/src/components/pagination/pagination.test.js +9 -4
  126. package/src/components/pricing/index.js +1 -0
  127. package/src/components/pricing/pricing.component.js +119 -0
  128. package/src/components/pricing/pricing.js +6 -0
  129. package/src/components/pricing/pricing.stories.js +123 -0
  130. package/src/components/pricing/pricing.styles.js +135 -0
  131. package/src/components/sidebar/index.js +0 -2
  132. package/src/components/sidebar/sidebar.component.js +12 -10
  133. package/src/components/sidebar/sidebar.js +3 -3
  134. package/src/components/sidebar/sidebar.stories.js +0 -2
  135. package/src/components/sidebar/sidebar.styles.js +181 -186
  136. package/src/components/sidebar/sidebar.test.js +48 -13
  137. package/src/components/stats/index.js +1 -0
  138. package/src/components/stats/stats.component.js +73 -0
  139. package/src/components/stats/stats.js +6 -0
  140. package/src/components/stats/stats.stories.js +64 -0
  141. package/src/components/stats/stats.styles.js +66 -0
  142. package/src/components/tabs/index.js +2 -2
  143. package/src/components/tabs/internal/tabs-button.component.js +1 -1
  144. package/src/components/tabs/internal/tabs-button.js +0 -1
  145. package/src/components/tabs/tab.js +0 -1
  146. package/src/components/tabs/tabs.js +3 -2
  147. package/src/components/tabs/tabs.styles.js +84 -74
  148. package/src/components/testimonials/index.js +1 -0
  149. package/src/components/testimonials/testimonials.component.js +97 -0
  150. package/src/components/testimonials/testimonials.js +6 -0
  151. package/src/components/testimonials/testimonials.stories.js +78 -0
  152. package/src/components/testimonials/testimonials.styles.js +82 -0
  153. package/src/components/toast/index.js +0 -2
  154. package/src/components/toast/toast.component.js +1 -3
  155. package/src/components/toast/toast.js +10 -5
  156. package/src/components/toast/toast.stories.js +9 -5
  157. package/src/components/toast/toast.styles.js +199 -201
  158. package/src/components/toast/toast.test.js +38 -10
  159. package/src/components/tooltip/index.js +1 -1
  160. package/src/components/tooltip/tooltip.js +3 -2
  161. package/src/components/tooltip/tooltip.styles.js +3 -3
  162. package/src/components/tooltip/tooltip.test.js +10 -4
  163. package/src/css/base.css +8 -5
  164. package/src/css/colors.stories.js +27 -28
  165. package/src/css/elements/forms/input.css +9 -41
  166. package/src/css/elements/media/image.css +1 -1
  167. package/src/css/themes/todomap.css +1 -0
  168. package/src/css/tokens.stories.js +26 -21
  169. package/src/css/typography.css +1 -3
  170. package/src/css/util/focus-ring.css +30 -0
  171. package/src/css/util/index.css +1 -2
  172. package/src/lib/styles/focus-ring.styles.js +34 -0
  173. package/src/main.js +10 -1
  174. package/src/pages/agency.stories.js +164 -0
  175. package/src/pages/blog-post.stories.js +381 -0
  176. package/src/pages/saas-landing.stories.js +307 -0
  177. package/src/test-utils/assert-helpers.js +10 -8
  178. package/src/css/util/functions.css +0 -16
  179. package/src/css/util/mixins.css +0 -63
@@ -2,6 +2,119 @@
2
2
  "schemaVersion": "1.0.0",
3
3
  "readme": "",
4
4
  "modules": [
5
+ {
6
+ "kind": "javascript-module",
7
+ "path": "src/components/accordion/accordion.component.js",
8
+ "declarations": [
9
+ {
10
+ "kind": "class",
11
+ "description": "",
12
+ "name": "GrantCodesAccordion",
13
+ "members": [
14
+ {
15
+ "kind": "field",
16
+ "name": "items",
17
+ "privacy": "public",
18
+ "type": {
19
+ "text": "array"
20
+ },
21
+ "default": "[]",
22
+ "attribute": "items"
23
+ }
24
+ ],
25
+ "attributes": [
26
+ {
27
+ "name": "items",
28
+ "type": {
29
+ "text": "array"
30
+ },
31
+ "default": "[]",
32
+ "fieldName": "items"
33
+ }
34
+ ],
35
+ "superclass": {
36
+ "name": "LitElement",
37
+ "package": "lit"
38
+ },
39
+ "tagName": "grantcodes-accordion",
40
+ "customElement": true,
41
+ "modulePath": "src/components/accordion/accordion.component.js",
42
+ "definitionPath": "src/components/accordion/index.js"
43
+ }
44
+ ],
45
+ "exports": [
46
+ {
47
+ "kind": "js",
48
+ "name": "GrantCodesAccordion",
49
+ "declaration": {
50
+ "name": "GrantCodesAccordion",
51
+ "module": "src/components/accordion/accordion.component.js"
52
+ }
53
+ }
54
+ ]
55
+ },
56
+ {
57
+ "kind": "javascript-module",
58
+ "path": "src/components/accordion/accordion.js",
59
+ "declarations": [],
60
+ "exports": [
61
+ {
62
+ "kind": "js",
63
+ "name": "*",
64
+ "declaration": {
65
+ "name": "*",
66
+ "module": "src/components/accordion/accordion.component.js"
67
+ }
68
+ },
69
+ {
70
+ "kind": "js",
71
+ "name": "default",
72
+ "declaration": {
73
+ "name": "GrantCodesAccordion",
74
+ "module": "src/components/accordion/accordion.js"
75
+ }
76
+ },
77
+ {
78
+ "kind": "custom-element-definition",
79
+ "name": "grantcodes-accordion",
80
+ "declaration": {
81
+ "name": "GrantCodesAccordion",
82
+ "module": "/src/components/accordion/accordion.component.js"
83
+ }
84
+ }
85
+ ]
86
+ },
87
+ {
88
+ "kind": "javascript-module",
89
+ "path": "src/components/accordion/index.js",
90
+ "declarations": [],
91
+ "exports": [
92
+ {
93
+ "kind": "js",
94
+ "name": "*",
95
+ "declaration": {
96
+ "name": "*",
97
+ "module": "src/components/accordion/accordion.component.js"
98
+ }
99
+ },
100
+ {
101
+ "kind": "js",
102
+ "name": "default",
103
+ "declaration": {
104
+ "name": "GrantCodesAccordion",
105
+ "module": "src/components/accordion/index.js"
106
+ }
107
+ },
108
+ {
109
+ "kind": "custom-element-definition",
110
+ "name": "grantcodes-accordion",
111
+ "declaration": {
112
+ "name": "GrantCodesAccordion",
113
+ "module": "/src/components/accordion/accordion.component.js"
114
+ }
115
+ }
116
+ ]
117
+ },
5
118
  {
6
119
  "kind": "javascript-module",
7
120
  "path": "src/components/app-bar/app-bar.component.js",
@@ -350,7 +463,7 @@
350
463
  "name": "*",
351
464
  "declaration": {
352
465
  "name": "*",
353
- "module": "src/components/avatar/avatar"
466
+ "module": "src/components/avatar/avatar.js"
354
467
  }
355
468
  }
356
469
  ]
@@ -364,17 +477,6 @@
364
477
  "description": "",
365
478
  "name": "GrantCodesBadge",
366
479
  "members": [
367
- {
368
- "kind": "field",
369
- "name": "style",
370
- "privacy": "public",
371
- "type": {
372
- "text": "'outline' | 'soft'"
373
- },
374
- "description": "Style of the badge",
375
- "default": "\"outline\"",
376
- "attribute": "style"
377
- },
378
480
  {
379
481
  "kind": "field",
380
482
  "name": "variant",
@@ -388,15 +490,6 @@
388
490
  }
389
491
  ],
390
492
  "attributes": [
391
- {
392
- "name": "style",
393
- "type": {
394
- "text": "'outline' | 'soft'"
395
- },
396
- "description": "Style of the badge",
397
- "default": "\"outline\"",
398
- "fieldName": "style"
399
- },
400
493
  {
401
494
  "name": "variant",
402
495
  "type": {
@@ -721,7 +814,7 @@
721
814
  "name": "*",
722
815
  "declaration": {
723
816
  "name": "*",
724
- "module": "src/components/button-group/button-group"
817
+ "module": "src/components/button-group/button-group.js"
725
818
  }
726
819
  }
727
820
  ]
@@ -891,7 +984,7 @@
891
984
  "name": "*",
892
985
  "declaration": {
893
986
  "name": "*",
894
- "module": "src/components/button/button"
987
+ "module": "src/components/button/button.js"
895
988
  }
896
989
  }
897
990
  ]
@@ -904,7 +997,52 @@
904
997
  "kind": "class",
905
998
  "description": "",
906
999
  "name": "GrantCodesCard",
907
- "members": [],
1000
+ "members": [
1001
+ {
1002
+ "kind": "method",
1003
+ "name": "_checkSlots"
1004
+ },
1005
+ {
1006
+ "kind": "field",
1007
+ "name": "hasFooter",
1008
+ "privacy": "public",
1009
+ "type": {
1010
+ "text": "boolean"
1011
+ },
1012
+ "default": "false",
1013
+ "attribute": "hasFooter",
1014
+ "reflects": true
1015
+ },
1016
+ {
1017
+ "kind": "field",
1018
+ "name": "hasHeader",
1019
+ "privacy": "public",
1020
+ "type": {
1021
+ "text": "boolean"
1022
+ },
1023
+ "default": "false",
1024
+ "attribute": "hasHeader",
1025
+ "reflects": true
1026
+ }
1027
+ ],
1028
+ "attributes": [
1029
+ {
1030
+ "name": "hasFooter",
1031
+ "type": {
1032
+ "text": "boolean"
1033
+ },
1034
+ "default": "false",
1035
+ "fieldName": "hasFooter"
1036
+ },
1037
+ {
1038
+ "name": "hasHeader",
1039
+ "type": {
1040
+ "text": "boolean"
1041
+ },
1042
+ "default": "false",
1043
+ "fieldName": "hasHeader"
1044
+ }
1045
+ ],
908
1046
  "superclass": {
909
1047
  "name": "LitElement",
910
1048
  "package": "lit"
@@ -967,7 +1105,7 @@
967
1105
  "name": "*",
968
1106
  "declaration": {
969
1107
  "name": "*",
970
- "module": "src/components/card/card"
1108
+ "module": "src/components/card/card.js"
971
1109
  }
972
1110
  }
973
1111
  ]
@@ -1094,7 +1232,7 @@
1094
1232
  "name": "*",
1095
1233
  "declaration": {
1096
1234
  "name": "*",
1097
- "module": "src/components/code-preview/code-preview"
1235
+ "module": "src/components/code-preview/code-preview.js"
1098
1236
  }
1099
1237
  }
1100
1238
  ]
@@ -1209,92 +1347,178 @@
1209
1347
  "name": "*",
1210
1348
  "declaration": {
1211
1349
  "name": "*",
1212
- "module": "src/components/container/container"
1350
+ "module": "src/components/container/container.js"
1213
1351
  }
1214
1352
  }
1215
1353
  ]
1216
1354
  },
1217
1355
  {
1218
1356
  "kind": "javascript-module",
1219
- "path": "src/components/dialog/dialog.component.js",
1357
+ "path": "src/components/cta/cta.component.js",
1220
1358
  "declarations": [
1221
1359
  {
1222
1360
  "kind": "class",
1223
1361
  "description": "",
1224
- "name": "GrantCodesDialog",
1362
+ "name": "GrantCodesCta",
1225
1363
  "members": [
1226
1364
  {
1227
- "kind": "method",
1228
- "name": "_handleOpenChange"
1365
+ "kind": "field",
1366
+ "name": "_primaryAction",
1367
+ "readonly": true
1229
1368
  },
1230
1369
  {
1231
1370
  "kind": "field",
1232
- "name": "dismissible",
1371
+ "name": "_secondaryAction",
1372
+ "readonly": true
1373
+ },
1374
+ {
1375
+ "kind": "field",
1376
+ "name": "align",
1233
1377
  "privacy": "public",
1234
1378
  "type": {
1235
- "text": "boolean"
1379
+ "text": "string"
1236
1380
  },
1237
- "default": "true",
1238
- "attribute": "dismissible"
1381
+ "description": "Text alignment of the block.",
1382
+ "default": "\"center\"",
1383
+ "attribute": "align",
1384
+ "reflects": true
1239
1385
  },
1240
1386
  {
1241
- "kind": "method",
1242
- "name": "dismissTemplate"
1387
+ "kind": "field",
1388
+ "name": "eyebrow",
1389
+ "privacy": "public",
1390
+ "type": {
1391
+ "text": "string"
1392
+ },
1393
+ "description": "Small label shown above the title.",
1394
+ "default": "\"\"",
1395
+ "attribute": "eyebrow"
1243
1396
  },
1244
1397
  {
1245
1398
  "kind": "field",
1246
- "name": "open",
1399
+ "name": "primaryAction",
1247
1400
  "privacy": "public",
1248
1401
  "type": {
1249
- "text": "boolean"
1402
+ "text": "string"
1250
1403
  },
1251
- "default": "false",
1252
- "attribute": "open",
1253
- "reflects": true
1404
+ "description": "Primary CTA as a JSON string: `{\"label\":\"...\",\"href\":\"...\"}`.",
1405
+ "default": "\"\"",
1406
+ "attribute": "primary-action"
1407
+ },
1408
+ {
1409
+ "kind": "field",
1410
+ "name": "secondaryAction",
1411
+ "privacy": "public",
1412
+ "type": {
1413
+ "text": "string"
1414
+ },
1415
+ "description": "Secondary CTA as a JSON string: `{\"label\":\"...\",\"href\":\"...\"}`.",
1416
+ "default": "\"\"",
1417
+ "attribute": "secondary-action"
1418
+ },
1419
+ {
1420
+ "kind": "field",
1421
+ "name": "text",
1422
+ "privacy": "public",
1423
+ "type": {
1424
+ "text": "string"
1425
+ },
1426
+ "description": "Supporting paragraph text.",
1427
+ "default": "\"\"",
1428
+ "attribute": "text"
1429
+ },
1430
+ {
1431
+ "kind": "field",
1432
+ "name": "title",
1433
+ "privacy": "public",
1434
+ "type": {
1435
+ "text": "string"
1436
+ },
1437
+ "description": "Main heading text.",
1438
+ "default": "\"\"",
1439
+ "attribute": "title"
1254
1440
  }
1255
1441
  ],
1256
1442
  "attributes": [
1257
1443
  {
1258
- "name": "dismissible",
1444
+ "name": "align",
1259
1445
  "type": {
1260
- "text": "boolean"
1446
+ "text": "string"
1261
1447
  },
1262
- "default": "true",
1263
- "fieldName": "dismissible"
1448
+ "description": "Text alignment of the block.",
1449
+ "default": "\"center\"",
1450
+ "fieldName": "align"
1264
1451
  },
1265
1452
  {
1266
- "name": "open",
1453
+ "name": "eyebrow",
1267
1454
  "type": {
1268
- "text": "boolean"
1455
+ "text": "string"
1269
1456
  },
1270
- "default": "false",
1271
- "fieldName": "open"
1457
+ "description": "Small label shown above the title.",
1458
+ "default": "\"\"",
1459
+ "fieldName": "eyebrow"
1460
+ },
1461
+ {
1462
+ "name": "primary-action",
1463
+ "type": {
1464
+ "text": "string"
1465
+ },
1466
+ "description": "Primary CTA as a JSON string: `{\"label\":\"...\",\"href\":\"...\"}`.",
1467
+ "default": "\"\"",
1468
+ "fieldName": "primaryAction"
1469
+ },
1470
+ {
1471
+ "name": "secondary-action",
1472
+ "type": {
1473
+ "text": "string"
1474
+ },
1475
+ "description": "Secondary CTA as a JSON string: `{\"label\":\"...\",\"href\":\"...\"}`.",
1476
+ "default": "\"\"",
1477
+ "fieldName": "secondaryAction"
1478
+ },
1479
+ {
1480
+ "name": "text",
1481
+ "type": {
1482
+ "text": "string"
1483
+ },
1484
+ "description": "Supporting paragraph text.",
1485
+ "default": "\"\"",
1486
+ "fieldName": "text"
1487
+ },
1488
+ {
1489
+ "name": "title",
1490
+ "type": {
1491
+ "text": "string"
1492
+ },
1493
+ "description": "Main heading text.",
1494
+ "default": "\"\"",
1495
+ "fieldName": "title"
1272
1496
  }
1273
1497
  ],
1274
1498
  "superclass": {
1275
1499
  "name": "LitElement",
1276
1500
  "package": "lit"
1277
1501
  },
1278
- "tagName": "grantcodes-dialog",
1502
+ "tagName": "grantcodes-cta",
1279
1503
  "customElement": true,
1280
- "modulePath": "src/components/dialog/dialog.component.js",
1281
- "definitionPath": "src/components/dialog/dialog.js"
1504
+ "modulePath": "src/components/cta/cta.component.js",
1505
+ "definitionPath": "src/components/cta/cta.js"
1282
1506
  }
1283
1507
  ],
1284
1508
  "exports": [
1285
1509
  {
1286
1510
  "kind": "js",
1287
- "name": "GrantCodesDialog",
1511
+ "name": "GrantCodesCta",
1288
1512
  "declaration": {
1289
- "name": "GrantCodesDialog",
1290
- "module": "src/components/dialog/dialog.component.js"
1513
+ "name": "GrantCodesCta",
1514
+ "module": "src/components/cta/cta.component.js"
1291
1515
  }
1292
1516
  }
1293
1517
  ]
1294
1518
  },
1295
1519
  {
1296
1520
  "kind": "javascript-module",
1297
- "path": "src/components/dialog/dialog.js",
1521
+ "path": "src/components/cta/cta.js",
1298
1522
  "declarations": [],
1299
1523
  "exports": [
1300
1524
  {
@@ -1302,30 +1526,30 @@
1302
1526
  "name": "*",
1303
1527
  "declaration": {
1304
1528
  "name": "*",
1305
- "module": "src/components/dialog/dialog.component.js"
1529
+ "module": "src/components/cta/cta.component.js"
1306
1530
  }
1307
1531
  },
1308
1532
  {
1309
1533
  "kind": "js",
1310
1534
  "name": "default",
1311
1535
  "declaration": {
1312
- "name": "GrantCodesDialog",
1313
- "module": "src/components/dialog/dialog.js"
1536
+ "name": "GrantCodesCta",
1537
+ "module": "src/components/cta/cta.js"
1314
1538
  }
1315
1539
  },
1316
1540
  {
1317
1541
  "kind": "custom-element-definition",
1318
- "name": "grantcodes-dialog",
1542
+ "name": "grantcodes-cta",
1319
1543
  "declaration": {
1320
- "name": "GrantCodesDialog",
1321
- "module": "/src/components/dialog/dialog.component.js"
1544
+ "name": "GrantCodesCta",
1545
+ "module": "/src/components/cta/cta.component.js"
1322
1546
  }
1323
1547
  }
1324
1548
  ]
1325
1549
  },
1326
1550
  {
1327
1551
  "kind": "javascript-module",
1328
- "path": "src/components/dialog/index.js",
1552
+ "path": "src/components/cta/index.js",
1329
1553
  "declarations": [],
1330
1554
  "exports": [
1331
1555
  {
@@ -1333,26 +1557,150 @@
1333
1557
  "name": "*",
1334
1558
  "declaration": {
1335
1559
  "name": "*",
1336
- "module": "src/components/dialog/dialog"
1560
+ "module": "src/components/cta/cta.js"
1337
1561
  }
1338
1562
  }
1339
1563
  ]
1340
1564
  },
1341
1565
  {
1342
1566
  "kind": "javascript-module",
1343
- "path": "src/components/dropdown/dropdown.component.js",
1567
+ "path": "src/components/dialog/dialog.component.js",
1344
1568
  "declarations": [
1345
1569
  {
1346
1570
  "kind": "class",
1347
1571
  "description": "",
1348
- "name": "GrantCodesDropdown",
1572
+ "name": "GrantCodesDialog",
1349
1573
  "members": [
1350
1574
  {
1351
1575
  "kind": "method",
1352
- "name": "_handleDocumentClick",
1353
- "parameters": [
1354
- {
1355
- "name": "e"
1576
+ "name": "_handleOpenChange"
1577
+ },
1578
+ {
1579
+ "kind": "field",
1580
+ "name": "dismissible",
1581
+ "privacy": "public",
1582
+ "type": {
1583
+ "text": "boolean"
1584
+ },
1585
+ "default": "true",
1586
+ "attribute": "dismissible"
1587
+ },
1588
+ {
1589
+ "kind": "method",
1590
+ "name": "dismissTemplate"
1591
+ },
1592
+ {
1593
+ "kind": "field",
1594
+ "name": "open",
1595
+ "privacy": "public",
1596
+ "type": {
1597
+ "text": "boolean"
1598
+ },
1599
+ "default": "false",
1600
+ "attribute": "open",
1601
+ "reflects": true
1602
+ }
1603
+ ],
1604
+ "attributes": [
1605
+ {
1606
+ "name": "dismissible",
1607
+ "type": {
1608
+ "text": "boolean"
1609
+ },
1610
+ "default": "true",
1611
+ "fieldName": "dismissible"
1612
+ },
1613
+ {
1614
+ "name": "open",
1615
+ "type": {
1616
+ "text": "boolean"
1617
+ },
1618
+ "default": "false",
1619
+ "fieldName": "open"
1620
+ }
1621
+ ],
1622
+ "superclass": {
1623
+ "name": "LitElement",
1624
+ "package": "lit"
1625
+ },
1626
+ "tagName": "grantcodes-dialog",
1627
+ "customElement": true,
1628
+ "modulePath": "src/components/dialog/dialog.component.js",
1629
+ "definitionPath": "src/components/dialog/dialog.js"
1630
+ }
1631
+ ],
1632
+ "exports": [
1633
+ {
1634
+ "kind": "js",
1635
+ "name": "GrantCodesDialog",
1636
+ "declaration": {
1637
+ "name": "GrantCodesDialog",
1638
+ "module": "src/components/dialog/dialog.component.js"
1639
+ }
1640
+ }
1641
+ ]
1642
+ },
1643
+ {
1644
+ "kind": "javascript-module",
1645
+ "path": "src/components/dialog/dialog.js",
1646
+ "declarations": [],
1647
+ "exports": [
1648
+ {
1649
+ "kind": "js",
1650
+ "name": "*",
1651
+ "declaration": {
1652
+ "name": "*",
1653
+ "module": "src/components/dialog/dialog.component.js"
1654
+ }
1655
+ },
1656
+ {
1657
+ "kind": "js",
1658
+ "name": "default",
1659
+ "declaration": {
1660
+ "name": "GrantCodesDialog",
1661
+ "module": "src/components/dialog/dialog.js"
1662
+ }
1663
+ },
1664
+ {
1665
+ "kind": "custom-element-definition",
1666
+ "name": "grantcodes-dialog",
1667
+ "declaration": {
1668
+ "name": "GrantCodesDialog",
1669
+ "module": "/src/components/dialog/dialog.component.js"
1670
+ }
1671
+ }
1672
+ ]
1673
+ },
1674
+ {
1675
+ "kind": "javascript-module",
1676
+ "path": "src/components/dialog/index.js",
1677
+ "declarations": [],
1678
+ "exports": [
1679
+ {
1680
+ "kind": "js",
1681
+ "name": "*",
1682
+ "declaration": {
1683
+ "name": "*",
1684
+ "module": "src/components/dialog/dialog.js"
1685
+ }
1686
+ }
1687
+ ]
1688
+ },
1689
+ {
1690
+ "kind": "javascript-module",
1691
+ "path": "src/components/dropdown/dropdown.component.js",
1692
+ "declarations": [
1693
+ {
1694
+ "kind": "class",
1695
+ "description": "",
1696
+ "name": "GrantCodesDropdown",
1697
+ "members": [
1698
+ {
1699
+ "kind": "method",
1700
+ "name": "_handleDocumentClick",
1701
+ "parameters": [
1702
+ {
1703
+ "name": "e"
1356
1704
  }
1357
1705
  ]
1358
1706
  },
@@ -1376,7 +1724,12 @@
1376
1724
  },
1377
1725
  {
1378
1726
  "kind": "method",
1379
- "name": "_handleTriggerClick"
1727
+ "name": "_handleTriggerClick",
1728
+ "parameters": [
1729
+ {
1730
+ "name": "_e"
1731
+ }
1732
+ ]
1380
1733
  },
1381
1734
  {
1382
1735
  "kind": "field",
@@ -1411,7 +1764,7 @@
1411
1764
  "name": "placement",
1412
1765
  "privacy": "public",
1413
1766
  "type": {
1414
- "text": "'bottom-start' | 'bottom-end' | 'top-start' | 'top-end'"
1767
+ "text": "string"
1415
1768
  },
1416
1769
  "description": "Placement of the dropdown menu",
1417
1770
  "default": "\"bottom-start\"",
@@ -1448,7 +1801,7 @@
1448
1801
  {
1449
1802
  "name": "placement",
1450
1803
  "type": {
1451
- "text": "'bottom-start' | 'bottom-end' | 'top-start' | 'top-end'"
1804
+ "text": "string"
1452
1805
  },
1453
1806
  "description": "Placement of the dropdown menu",
1454
1807
  "default": "\"bottom-start\"",
@@ -1749,20 +2102,43 @@
1749
2102
  "name": "*",
1750
2103
  "declaration": {
1751
2104
  "name": "*",
1752
- "module": "src/components/dropzone/dropzone"
2105
+ "module": "src/components/dropzone/dropzone.js"
1753
2106
  }
1754
2107
  }
1755
2108
  ]
1756
2109
  },
1757
2110
  {
1758
2111
  "kind": "javascript-module",
1759
- "path": "src/components/footer/footer.component.js",
2112
+ "path": "src/components/feature-list/feature-list.component.js",
1760
2113
  "declarations": [
1761
2114
  {
1762
2115
  "kind": "class",
1763
2116
  "description": "",
1764
- "name": "GrantCodesFooter",
2117
+ "name": "GrantCodesFeatureList",
1765
2118
  "members": [
2119
+ {
2120
+ "kind": "method",
2121
+ "name": "_iconSvg",
2122
+ "parameters": [
2123
+ {
2124
+ "name": "name"
2125
+ }
2126
+ ]
2127
+ },
2128
+ {
2129
+ "kind": "field",
2130
+ "name": "_items",
2131
+ "readonly": true
2132
+ },
2133
+ {
2134
+ "kind": "method",
2135
+ "name": "_renderIcon",
2136
+ "parameters": [
2137
+ {
2138
+ "name": "name"
2139
+ }
2140
+ ]
2141
+ },
1766
2142
  {
1767
2143
  "kind": "field",
1768
2144
  "name": "columns",
@@ -1770,9 +2146,42 @@
1770
2146
  "type": {
1771
2147
  "text": "number"
1772
2148
  },
1773
- "description": "Number of columns in the footer",
2149
+ "description": "Number of columns in the grid (1–4).",
1774
2150
  "default": "3",
1775
2151
  "attribute": "columns"
2152
+ },
2153
+ {
2154
+ "kind": "field",
2155
+ "name": "items",
2156
+ "privacy": "public",
2157
+ "type": {
2158
+ "text": "string"
2159
+ },
2160
+ "description": "Feature items as a JSON string array: `[{\"title\":\"...\",\"description\":\"...\",\"icon\":\"...\",\"href\":\"...\"}]`.",
2161
+ "default": "\"[]\"",
2162
+ "attribute": "items"
2163
+ },
2164
+ {
2165
+ "kind": "field",
2166
+ "name": "subtitle",
2167
+ "privacy": "public",
2168
+ "type": {
2169
+ "text": "string"
2170
+ },
2171
+ "description": "Optional supporting text below the heading.",
2172
+ "default": "\"\"",
2173
+ "attribute": "subtitle"
2174
+ },
2175
+ {
2176
+ "kind": "field",
2177
+ "name": "title",
2178
+ "privacy": "public",
2179
+ "type": {
2180
+ "text": "string"
2181
+ },
2182
+ "description": "Optional section heading.",
2183
+ "default": "\"\"",
2184
+ "attribute": "title"
1776
2185
  }
1777
2186
  ],
1778
2187
  "attributes": [
@@ -1781,35 +2190,62 @@
1781
2190
  "type": {
1782
2191
  "text": "number"
1783
2192
  },
1784
- "description": "Number of columns in the footer",
2193
+ "description": "Number of columns in the grid (1–4).",
1785
2194
  "default": "3",
1786
2195
  "fieldName": "columns"
2196
+ },
2197
+ {
2198
+ "name": "items",
2199
+ "type": {
2200
+ "text": "string"
2201
+ },
2202
+ "description": "Feature items as a JSON string array: `[{\"title\":\"...\",\"description\":\"...\",\"icon\":\"...\",\"href\":\"...\"}]`.",
2203
+ "default": "\"[]\"",
2204
+ "fieldName": "items"
2205
+ },
2206
+ {
2207
+ "name": "subtitle",
2208
+ "type": {
2209
+ "text": "string"
2210
+ },
2211
+ "description": "Optional supporting text below the heading.",
2212
+ "default": "\"\"",
2213
+ "fieldName": "subtitle"
2214
+ },
2215
+ {
2216
+ "name": "title",
2217
+ "type": {
2218
+ "text": "string"
2219
+ },
2220
+ "description": "Optional section heading.",
2221
+ "default": "\"\"",
2222
+ "fieldName": "title"
1787
2223
  }
1788
2224
  ],
1789
2225
  "superclass": {
1790
2226
  "name": "LitElement",
1791
2227
  "package": "lit"
1792
2228
  },
1793
- "tagName": "grantcodes-footer",
2229
+ "tagName": "grantcodes-feature-list",
1794
2230
  "customElement": true,
1795
- "modulePath": "src/components/footer/footer.component.js",
1796
- "definitionPath": "src/components/footer/footer.js"
2231
+ "modulePath": "src/components/feature-list/feature-list.component.js",
2232
+ "definitionPath": "src/components/feature-list/feature-list.js"
1797
2233
  }
1798
2234
  ],
1799
2235
  "exports": [
1800
2236
  {
1801
2237
  "kind": "js",
1802
- "name": "GrantCodesFooter",
2238
+ "name": "GrantCodesFeatureList",
1803
2239
  "declaration": {
1804
- "name": "GrantCodesFooter",
1805
- "module": "src/components/footer/footer.component.js"
2240
+ "name": "GrantCodesFeatureList",
2241
+ "module": "src/components/feature-list/feature-list.component.js"
1806
2242
  }
1807
2243
  }
1808
2244
  ]
1809
2245
  },
1810
2246
  {
1811
2247
  "kind": "javascript-module",
1812
- "path": "src/components/footer/footer.js",
2248
+ "path": "src/components/feature-list/feature-list.js",
1813
2249
  "declarations": [],
1814
2250
  "exports": [
1815
2251
  {
@@ -1817,30 +2253,30 @@
1817
2253
  "name": "*",
1818
2254
  "declaration": {
1819
2255
  "name": "*",
1820
- "module": "src/components/footer/footer.component.js"
2256
+ "module": "src/components/feature-list/feature-list.component.js"
1821
2257
  }
1822
2258
  },
1823
2259
  {
1824
2260
  "kind": "js",
1825
2261
  "name": "default",
1826
2262
  "declaration": {
1827
- "name": "GrantCodesFooter",
1828
- "module": "src/components/footer/footer.js"
2263
+ "name": "GrantCodesFeatureList",
2264
+ "module": "src/components/feature-list/feature-list.js"
1829
2265
  }
1830
2266
  },
1831
2267
  {
1832
2268
  "kind": "custom-element-definition",
1833
- "name": "grantcodes-footer",
2269
+ "name": "grantcodes-feature-list",
1834
2270
  "declaration": {
1835
- "name": "GrantCodesFooter",
1836
- "module": "/src/components/footer/footer.component.js"
2271
+ "name": "GrantCodesFeatureList",
2272
+ "module": "/src/components/feature-list/feature-list.component.js"
1837
2273
  }
1838
2274
  }
1839
2275
  ]
1840
2276
  },
1841
2277
  {
1842
2278
  "kind": "javascript-module",
1843
- "path": "src/components/footer/index.js",
2279
+ "path": "src/components/feature-list/index.js",
1844
2280
  "declarations": [],
1845
2281
  "exports": [
1846
2282
  {
@@ -1848,35 +2284,188 @@
1848
2284
  "name": "*",
1849
2285
  "declaration": {
1850
2286
  "name": "*",
1851
- "module": "src/components/footer/footer.js"
2287
+ "module": "src/components/feature-list/feature-list.js"
1852
2288
  }
1853
2289
  }
1854
2290
  ]
1855
2291
  },
1856
2292
  {
1857
2293
  "kind": "javascript-module",
1858
- "path": "src/components/form-field/form-field.component.js",
2294
+ "path": "src/components/footer/footer-column.component.js",
1859
2295
  "declarations": [
1860
2296
  {
1861
2297
  "kind": "class",
1862
2298
  "description": "",
1863
- "name": "GrantCodesFormField",
2299
+ "name": "GrantCodesFooterColumn",
2300
+ "members": [],
2301
+ "superclass": {
2302
+ "name": "LitElement",
2303
+ "package": "lit"
2304
+ },
2305
+ "tagName": "grantcodes-footer-column",
2306
+ "customElement": true,
2307
+ "modulePath": "src/components/footer/footer-column.component.js",
2308
+ "definitionPath": "src/components/footer/footer.js"
2309
+ }
2310
+ ],
2311
+ "exports": [
2312
+ {
2313
+ "kind": "js",
2314
+ "name": "GrantCodesFooterColumn",
2315
+ "declaration": {
2316
+ "name": "GrantCodesFooterColumn",
2317
+ "module": "src/components/footer/footer-column.component.js"
2318
+ }
2319
+ }
2320
+ ]
2321
+ },
2322
+ {
2323
+ "kind": "javascript-module",
2324
+ "path": "src/components/footer/footer.component.js",
2325
+ "declarations": [
2326
+ {
2327
+ "kind": "class",
2328
+ "description": "",
2329
+ "name": "GrantCodesFooter",
1864
2330
  "members": [
1865
2331
  {
1866
2332
  "kind": "field",
1867
- "name": "ariaDescribedBy",
1868
- "readonly": true
1869
- },
1870
- {
1871
- "kind": "field",
1872
- "name": "error",
2333
+ "name": "columns",
1873
2334
  "privacy": "public",
1874
2335
  "type": {
1875
- "text": "string"
2336
+ "text": "number"
1876
2337
  },
1877
- "default": "undefined",
1878
- "attribute": "error"
1879
- },
2338
+ "description": "Number of columns in the footer",
2339
+ "default": "3",
2340
+ "attribute": "columns"
2341
+ }
2342
+ ],
2343
+ "attributes": [
2344
+ {
2345
+ "name": "columns",
2346
+ "type": {
2347
+ "text": "number"
2348
+ },
2349
+ "description": "Number of columns in the footer",
2350
+ "default": "3",
2351
+ "fieldName": "columns"
2352
+ }
2353
+ ],
2354
+ "superclass": {
2355
+ "name": "LitElement",
2356
+ "package": "lit"
2357
+ },
2358
+ "tagName": "grantcodes-footer",
2359
+ "customElement": true,
2360
+ "modulePath": "src/components/footer/footer.component.js",
2361
+ "definitionPath": "src/components/footer/footer.js"
2362
+ }
2363
+ ],
2364
+ "exports": [
2365
+ {
2366
+ "kind": "js",
2367
+ "name": "GrantCodesFooter",
2368
+ "declaration": {
2369
+ "name": "GrantCodesFooter",
2370
+ "module": "src/components/footer/footer.component.js"
2371
+ }
2372
+ }
2373
+ ]
2374
+ },
2375
+ {
2376
+ "kind": "javascript-module",
2377
+ "path": "src/components/footer/footer.js",
2378
+ "declarations": [],
2379
+ "exports": [
2380
+ {
2381
+ "kind": "js",
2382
+ "name": "*",
2383
+ "declaration": {
2384
+ "name": "*",
2385
+ "module": "src/components/footer/footer.component.js"
2386
+ }
2387
+ },
2388
+ {
2389
+ "kind": "js",
2390
+ "name": "*",
2391
+ "declaration": {
2392
+ "name": "*",
2393
+ "module": "src/components/footer/footer-column.component.js"
2394
+ }
2395
+ },
2396
+ {
2397
+ "kind": "js",
2398
+ "name": "default",
2399
+ "declaration": {
2400
+ "name": "GrantCodesFooter",
2401
+ "module": "src/components/footer/footer.js"
2402
+ }
2403
+ },
2404
+ {
2405
+ "kind": "custom-element-definition",
2406
+ "name": "grantcodes-footer",
2407
+ "declaration": {
2408
+ "name": "GrantCodesFooter",
2409
+ "module": "/src/components/footer/footer.component.js"
2410
+ }
2411
+ },
2412
+ {
2413
+ "kind": "custom-element-definition",
2414
+ "name": "grantcodes-footer-column",
2415
+ "declaration": {
2416
+ "name": "GrantCodesFooterColumn",
2417
+ "module": "/src/components/footer/footer-column.component.js"
2418
+ }
2419
+ }
2420
+ ]
2421
+ },
2422
+ {
2423
+ "kind": "javascript-module",
2424
+ "path": "src/components/footer/index.js",
2425
+ "declarations": [],
2426
+ "exports": [
2427
+ {
2428
+ "kind": "js",
2429
+ "name": "*",
2430
+ "declaration": {
2431
+ "name": "*",
2432
+ "module": "src/components/footer/footer.js"
2433
+ }
2434
+ },
2435
+ {
2436
+ "kind": "js",
2437
+ "name": "GrantCodesFooterColumn",
2438
+ "declaration": {
2439
+ "name": "GrantCodesFooterColumn",
2440
+ "module": "./footer-column.component.js"
2441
+ }
2442
+ }
2443
+ ]
2444
+ },
2445
+ {
2446
+ "kind": "javascript-module",
2447
+ "path": "src/components/form-field/form-field.component.js",
2448
+ "declarations": [
2449
+ {
2450
+ "kind": "class",
2451
+ "description": "",
2452
+ "name": "GrantCodesFormField",
2453
+ "members": [
2454
+ {
2455
+ "kind": "field",
2456
+ "name": "ariaDescribedBy",
2457
+ "readonly": true
2458
+ },
2459
+ {
2460
+ "kind": "field",
2461
+ "name": "error",
2462
+ "privacy": "public",
2463
+ "type": {
2464
+ "text": "string"
2465
+ },
2466
+ "default": "undefined",
2467
+ "attribute": "error"
2468
+ },
1880
2469
  {
1881
2470
  "kind": "field",
1882
2471
  "name": "errorId",
@@ -2052,7 +2641,7 @@
2052
2641
  "name": "*",
2053
2642
  "declaration": {
2054
2643
  "name": "*",
2055
- "module": "src/components/form-field/form-field"
2644
+ "module": "src/components/form-field/form-field.js"
2056
2645
  }
2057
2646
  }
2058
2647
  ]
@@ -2313,7 +2902,7 @@
2313
2902
  "name": "*",
2314
2903
  "declaration": {
2315
2904
  "name": "*",
2316
- "module": "src/components/gallery/gallery"
2905
+ "module": "src/components/gallery/gallery.js"
2317
2906
  }
2318
2907
  },
2319
2908
  {
@@ -2321,44 +2910,148 @@
2321
2910
  "name": "*",
2322
2911
  "declaration": {
2323
2912
  "name": "*",
2324
- "module": "src/components/gallery/gallery-image"
2913
+ "module": "src/components/gallery/gallery-image.js"
2325
2914
  }
2326
2915
  }
2327
2916
  ]
2328
2917
  },
2329
2918
  {
2330
2919
  "kind": "javascript-module",
2331
- "path": "src/components/icon/icon.component.js",
2920
+ "path": "src/components/hero/hero.component.js",
2332
2921
  "declarations": [
2333
2922
  {
2334
2923
  "kind": "class",
2335
2924
  "description": "",
2336
- "name": "GrantCodesIcon",
2337
- "members": [],
2925
+ "name": "GrantCodesHero",
2926
+ "members": [
2927
+ {
2928
+ "kind": "field",
2929
+ "name": "button",
2930
+ "privacy": "public",
2931
+ "type": {
2932
+ "text": "string"
2933
+ },
2934
+ "description": "Label for the CTA button. Only rendered when `href` is also set.",
2935
+ "default": "\"\"",
2936
+ "attribute": "button"
2937
+ },
2938
+ {
2939
+ "kind": "field",
2940
+ "name": "href",
2941
+ "privacy": "public",
2942
+ "type": {
2943
+ "text": "string"
2944
+ },
2945
+ "description": "URL the CTA button links to.",
2946
+ "default": "\"\"",
2947
+ "attribute": "href"
2948
+ },
2949
+ {
2950
+ "kind": "field",
2951
+ "name": "size",
2952
+ "privacy": "public",
2953
+ "type": {
2954
+ "text": "string"
2955
+ },
2956
+ "description": "Controls the vertical height of the hero section.",
2957
+ "default": "\"md\"",
2958
+ "attribute": "size",
2959
+ "reflects": true
2960
+ },
2961
+ {
2962
+ "kind": "field",
2963
+ "name": "subtitle",
2964
+ "privacy": "public",
2965
+ "type": {
2966
+ "text": "string"
2967
+ },
2968
+ "description": "Supporting paragraph text shown below the title.",
2969
+ "default": "\"\"",
2970
+ "attribute": "subtitle"
2971
+ },
2972
+ {
2973
+ "kind": "field",
2974
+ "name": "title",
2975
+ "privacy": "public",
2976
+ "type": {
2977
+ "text": "string"
2978
+ },
2979
+ "description": "Main heading text.",
2980
+ "default": "\"\"",
2981
+ "attribute": "title"
2982
+ }
2983
+ ],
2984
+ "attributes": [
2985
+ {
2986
+ "name": "button",
2987
+ "type": {
2988
+ "text": "string"
2989
+ },
2990
+ "description": "Label for the CTA button. Only rendered when `href` is also set.",
2991
+ "default": "\"\"",
2992
+ "fieldName": "button"
2993
+ },
2994
+ {
2995
+ "name": "href",
2996
+ "type": {
2997
+ "text": "string"
2998
+ },
2999
+ "description": "URL the CTA button links to.",
3000
+ "default": "\"\"",
3001
+ "fieldName": "href"
3002
+ },
3003
+ {
3004
+ "name": "size",
3005
+ "type": {
3006
+ "text": "string"
3007
+ },
3008
+ "description": "Controls the vertical height of the hero section.",
3009
+ "default": "\"md\"",
3010
+ "fieldName": "size"
3011
+ },
3012
+ {
3013
+ "name": "subtitle",
3014
+ "type": {
3015
+ "text": "string"
3016
+ },
3017
+ "description": "Supporting paragraph text shown below the title.",
3018
+ "default": "\"\"",
3019
+ "fieldName": "subtitle"
3020
+ },
3021
+ {
3022
+ "name": "title",
3023
+ "type": {
3024
+ "text": "string"
3025
+ },
3026
+ "description": "Main heading text.",
3027
+ "default": "\"\"",
3028
+ "fieldName": "title"
3029
+ }
3030
+ ],
2338
3031
  "superclass": {
2339
3032
  "name": "LitElement",
2340
3033
  "package": "lit"
2341
3034
  },
2342
- "tagName": "grantcodes-icon",
3035
+ "tagName": "grantcodes-hero",
2343
3036
  "customElement": true,
2344
- "modulePath": "src/components/icon/icon.component.js",
2345
- "definitionPath": "src/components/icon/icon.js"
3037
+ "modulePath": "src/components/hero/hero.component.js",
3038
+ "definitionPath": "src/components/hero/hero.js"
2346
3039
  }
2347
3040
  ],
2348
3041
  "exports": [
2349
3042
  {
2350
3043
  "kind": "js",
2351
- "name": "GrantCodesIcon",
3044
+ "name": "GrantCodesHero",
2352
3045
  "declaration": {
2353
- "name": "GrantCodesIcon",
2354
- "module": "src/components/icon/icon.component.js"
3046
+ "name": "GrantCodesHero",
3047
+ "module": "src/components/hero/hero.component.js"
2355
3048
  }
2356
3049
  }
2357
3050
  ]
2358
3051
  },
2359
3052
  {
2360
3053
  "kind": "javascript-module",
2361
- "path": "src/components/icon/icon.js",
3054
+ "path": "src/components/hero/hero.js",
2362
3055
  "declarations": [],
2363
3056
  "exports": [
2364
3057
  {
@@ -2366,45 +3059,30 @@
2366
3059
  "name": "*",
2367
3060
  "declaration": {
2368
3061
  "name": "*",
2369
- "module": "src/components/icon/icon.component.js"
3062
+ "module": "src/components/hero/hero.component.js"
2370
3063
  }
2371
3064
  },
2372
3065
  {
2373
3066
  "kind": "js",
2374
3067
  "name": "default",
2375
3068
  "declaration": {
2376
- "name": "GrantCodesIcon",
2377
- "module": "src/components/icon/icon.js"
3069
+ "name": "GrantCodesHero",
3070
+ "module": "src/components/hero/hero.js"
2378
3071
  }
2379
3072
  },
2380
3073
  {
2381
3074
  "kind": "custom-element-definition",
2382
- "name": "grantcodes-icon",
2383
- "declaration": {
2384
- "name": "GrantCodesIcon",
2385
- "module": "/src/components/icon/icon.component.js"
2386
- }
2387
- }
2388
- ]
2389
- },
2390
- {
2391
- "kind": "javascript-module",
2392
- "path": "src/components/icon/index.js",
2393
- "declarations": [],
2394
- "exports": [
2395
- {
2396
- "kind": "js",
2397
- "name": "*",
3075
+ "name": "grantcodes-hero",
2398
3076
  "declaration": {
2399
- "name": "*",
2400
- "module": "src/components/icon/icon"
3077
+ "name": "GrantCodesHero",
3078
+ "module": "/src/components/hero/hero.component.js"
2401
3079
  }
2402
3080
  }
2403
3081
  ]
2404
3082
  },
2405
3083
  {
2406
3084
  "kind": "javascript-module",
2407
- "path": "src/components/loading/index.js",
3085
+ "path": "src/components/hero/index.js",
2408
3086
  "declarations": [],
2409
3087
  "exports": [
2410
3088
  {
@@ -2412,44 +3090,668 @@
2412
3090
  "name": "*",
2413
3091
  "declaration": {
2414
3092
  "name": "*",
2415
- "module": "src/components/loading/loading"
3093
+ "module": "src/components/hero/hero.js"
2416
3094
  }
2417
3095
  }
2418
3096
  ]
2419
3097
  },
2420
3098
  {
2421
3099
  "kind": "javascript-module",
2422
- "path": "src/components/loading/loading.component.js",
3100
+ "path": "src/components/icon/icon.component.js",
2423
3101
  "declarations": [
2424
3102
  {
2425
3103
  "kind": "class",
2426
3104
  "description": "",
2427
- "name": "GrantCodesLoading",
3105
+ "name": "GrantCodesIcon",
2428
3106
  "members": [],
2429
3107
  "superclass": {
2430
3108
  "name": "LitElement",
2431
3109
  "package": "lit"
2432
3110
  },
2433
- "tagName": "grantcodes-loading",
3111
+ "tagName": "grantcodes-icon",
2434
3112
  "customElement": true,
2435
- "modulePath": "src/components/loading/loading.component.js",
2436
- "definitionPath": "src/components/loading/loading.js"
3113
+ "modulePath": "src/components/icon/icon.component.js",
3114
+ "definitionPath": "src/components/icon/icon.js"
2437
3115
  }
2438
3116
  ],
2439
3117
  "exports": [
2440
3118
  {
2441
3119
  "kind": "js",
2442
- "name": "GrantCodesLoading",
3120
+ "name": "GrantCodesIcon",
2443
3121
  "declaration": {
2444
- "name": "GrantCodesLoading",
2445
- "module": "src/components/loading/loading.component.js"
3122
+ "name": "GrantCodesIcon",
3123
+ "module": "src/components/icon/icon.component.js"
3124
+ }
3125
+ }
3126
+ ]
3127
+ },
3128
+ {
3129
+ "kind": "javascript-module",
3130
+ "path": "src/components/icon/icon.js",
3131
+ "declarations": [],
3132
+ "exports": [
3133
+ {
3134
+ "kind": "js",
3135
+ "name": "*",
3136
+ "declaration": {
3137
+ "name": "*",
3138
+ "module": "src/components/icon/icon.component.js"
3139
+ }
3140
+ },
3141
+ {
3142
+ "kind": "js",
3143
+ "name": "default",
3144
+ "declaration": {
3145
+ "name": "GrantCodesIcon",
3146
+ "module": "src/components/icon/icon.js"
3147
+ }
3148
+ },
3149
+ {
3150
+ "kind": "custom-element-definition",
3151
+ "name": "grantcodes-icon",
3152
+ "declaration": {
3153
+ "name": "GrantCodesIcon",
3154
+ "module": "/src/components/icon/icon.component.js"
3155
+ }
3156
+ }
3157
+ ]
3158
+ },
3159
+ {
3160
+ "kind": "javascript-module",
3161
+ "path": "src/components/icon/index.js",
3162
+ "declarations": [],
3163
+ "exports": [
3164
+ {
3165
+ "kind": "js",
3166
+ "name": "*",
3167
+ "declaration": {
3168
+ "name": "*",
3169
+ "module": "src/components/icon/icon.js"
3170
+ }
3171
+ }
3172
+ ]
3173
+ },
3174
+ {
3175
+ "kind": "javascript-module",
3176
+ "path": "src/components/loading/index.js",
3177
+ "declarations": [],
3178
+ "exports": [
3179
+ {
3180
+ "kind": "js",
3181
+ "name": "*",
3182
+ "declaration": {
3183
+ "name": "*",
3184
+ "module": "src/components/loading/loading.js"
3185
+ }
3186
+ }
3187
+ ]
3188
+ },
3189
+ {
3190
+ "kind": "javascript-module",
3191
+ "path": "src/components/loading/loading.component.js",
3192
+ "declarations": [
3193
+ {
3194
+ "kind": "class",
3195
+ "description": "",
3196
+ "name": "GrantCodesLoading",
3197
+ "members": [],
3198
+ "superclass": {
3199
+ "name": "LitElement",
3200
+ "package": "lit"
3201
+ },
3202
+ "tagName": "grantcodes-loading",
3203
+ "customElement": true,
3204
+ "modulePath": "src/components/loading/loading.component.js",
3205
+ "definitionPath": "src/components/loading/loading.js"
3206
+ }
3207
+ ],
3208
+ "exports": [
3209
+ {
3210
+ "kind": "js",
3211
+ "name": "GrantCodesLoading",
3212
+ "declaration": {
3213
+ "name": "GrantCodesLoading",
3214
+ "module": "src/components/loading/loading.component.js"
3215
+ }
3216
+ }
3217
+ ]
3218
+ },
3219
+ {
3220
+ "kind": "javascript-module",
3221
+ "path": "src/components/loading/loading.js",
3222
+ "declarations": [],
3223
+ "exports": [
3224
+ {
3225
+ "kind": "js",
3226
+ "name": "*",
3227
+ "declaration": {
3228
+ "name": "*",
3229
+ "module": "src/components/loading/loading.component.js"
3230
+ }
3231
+ },
3232
+ {
3233
+ "kind": "js",
3234
+ "name": "default",
3235
+ "declaration": {
3236
+ "name": "GrantCodesLoading",
3237
+ "module": "src/components/loading/loading.js"
3238
+ }
3239
+ },
3240
+ {
3241
+ "kind": "custom-element-definition",
3242
+ "name": "grantcodes-loading",
3243
+ "declaration": {
3244
+ "name": "GrantCodesLoading",
3245
+ "module": "/src/components/loading/loading.component.js"
3246
+ }
3247
+ }
3248
+ ]
3249
+ },
3250
+ {
3251
+ "kind": "javascript-module",
3252
+ "path": "src/components/logo-cloud/index.js",
3253
+ "declarations": [],
3254
+ "exports": [
3255
+ {
3256
+ "kind": "js",
3257
+ "name": "*",
3258
+ "declaration": {
3259
+ "name": "*",
3260
+ "module": "src/components/logo-cloud/logo-cloud.js"
3261
+ }
3262
+ }
3263
+ ]
3264
+ },
3265
+ {
3266
+ "kind": "javascript-module",
3267
+ "path": "src/components/logo-cloud/logo-cloud.component.js",
3268
+ "declarations": [
3269
+ {
3270
+ "kind": "class",
3271
+ "description": "",
3272
+ "name": "GrantCodesLogoCloud",
3273
+ "members": [
3274
+ {
3275
+ "kind": "field",
3276
+ "name": "_logos",
3277
+ "readonly": true
3278
+ },
3279
+ {
3280
+ "kind": "field",
3281
+ "name": "logos",
3282
+ "privacy": "public",
3283
+ "type": {
3284
+ "text": "string"
3285
+ },
3286
+ "description": "Logo items as a JSON string array: `[{\"name\":\"...\",\"src\":\"...\",\"alt\":\"...\",\"href\":\"...\"}]`.",
3287
+ "default": "\"[]\"",
3288
+ "attribute": "logos"
3289
+ },
3290
+ {
3291
+ "kind": "field",
3292
+ "name": "title",
3293
+ "privacy": "public",
3294
+ "type": {
3295
+ "text": "string"
3296
+ },
3297
+ "description": "Optional label shown above the logos.",
3298
+ "default": "\"\"",
3299
+ "attribute": "title"
3300
+ }
3301
+ ],
3302
+ "attributes": [
3303
+ {
3304
+ "name": "logos",
3305
+ "type": {
3306
+ "text": "string"
3307
+ },
3308
+ "description": "Logo items as a JSON string array: `[{\"name\":\"...\",\"src\":\"...\",\"alt\":\"...\",\"href\":\"...\"}]`.",
3309
+ "default": "\"[]\"",
3310
+ "fieldName": "logos"
3311
+ },
3312
+ {
3313
+ "name": "title",
3314
+ "type": {
3315
+ "text": "string"
3316
+ },
3317
+ "description": "Optional label shown above the logos.",
3318
+ "default": "\"\"",
3319
+ "fieldName": "title"
3320
+ }
3321
+ ],
3322
+ "superclass": {
3323
+ "name": "LitElement",
3324
+ "package": "lit"
3325
+ },
3326
+ "tagName": "grantcodes-logo-cloud",
3327
+ "customElement": true,
3328
+ "modulePath": "src/components/logo-cloud/logo-cloud.component.js",
3329
+ "definitionPath": "src/components/logo-cloud/logo-cloud.js"
3330
+ }
3331
+ ],
3332
+ "exports": [
3333
+ {
3334
+ "kind": "js",
3335
+ "name": "GrantCodesLogoCloud",
3336
+ "declaration": {
3337
+ "name": "GrantCodesLogoCloud",
3338
+ "module": "src/components/logo-cloud/logo-cloud.component.js"
3339
+ }
3340
+ }
3341
+ ]
3342
+ },
3343
+ {
3344
+ "kind": "javascript-module",
3345
+ "path": "src/components/logo-cloud/logo-cloud.js",
3346
+ "declarations": [],
3347
+ "exports": [
3348
+ {
3349
+ "kind": "js",
3350
+ "name": "*",
3351
+ "declaration": {
3352
+ "name": "*",
3353
+ "module": "src/components/logo-cloud/logo-cloud.component.js"
3354
+ }
3355
+ },
3356
+ {
3357
+ "kind": "js",
3358
+ "name": "default",
3359
+ "declaration": {
3360
+ "name": "GrantCodesLogoCloud",
3361
+ "module": "src/components/logo-cloud/logo-cloud.js"
3362
+ }
3363
+ },
3364
+ {
3365
+ "kind": "custom-element-definition",
3366
+ "name": "grantcodes-logo-cloud",
3367
+ "declaration": {
3368
+ "name": "GrantCodesLogoCloud",
3369
+ "module": "/src/components/logo-cloud/logo-cloud.component.js"
3370
+ }
3371
+ }
3372
+ ]
3373
+ },
3374
+ {
3375
+ "kind": "javascript-module",
3376
+ "path": "src/components/media-text/index.js",
3377
+ "declarations": [],
3378
+ "exports": [
3379
+ {
3380
+ "kind": "js",
3381
+ "name": "*",
3382
+ "declaration": {
3383
+ "name": "*",
3384
+ "module": "src/components/media-text/media-text.js"
3385
+ }
3386
+ }
3387
+ ]
3388
+ },
3389
+ {
3390
+ "kind": "javascript-module",
3391
+ "path": "src/components/media-text/media-text.component.js",
3392
+ "declarations": [
3393
+ {
3394
+ "kind": "class",
3395
+ "description": "",
3396
+ "name": "GrantCodesMediaText",
3397
+ "members": [
3398
+ {
3399
+ "kind": "field",
3400
+ "name": "_cta",
3401
+ "readonly": true
3402
+ },
3403
+ {
3404
+ "kind": "field",
3405
+ "name": "_media",
3406
+ "readonly": true
3407
+ },
3408
+ {
3409
+ "kind": "field",
3410
+ "name": "cta",
3411
+ "privacy": "public",
3412
+ "type": {
3413
+ "text": "string"
3414
+ },
3415
+ "description": "Optional CTA as a JSON string: `{\"label\":\"...\",\"href\":\"...\"}`.",
3416
+ "default": "\"\"",
3417
+ "attribute": "cta"
3418
+ },
3419
+ {
3420
+ "kind": "field",
3421
+ "name": "media",
3422
+ "privacy": "public",
3423
+ "type": {
3424
+ "text": "string"
3425
+ },
3426
+ "description": "Media object as a JSON string: `{\"src\":\"...\",\"alt\":\"...\",\"kind\":\"image|video\"}`.",
3427
+ "default": "\"\"",
3428
+ "attribute": "media"
3429
+ },
3430
+ {
3431
+ "kind": "field",
3432
+ "name": "reverse",
3433
+ "privacy": "public",
3434
+ "type": {
3435
+ "text": "boolean"
3436
+ },
3437
+ "description": "When true, the media appears on the right and text on the left.",
3438
+ "default": "false",
3439
+ "attribute": "reverse",
3440
+ "reflects": true
3441
+ },
3442
+ {
3443
+ "kind": "field",
3444
+ "name": "text",
3445
+ "privacy": "public",
3446
+ "type": {
3447
+ "text": "string"
3448
+ },
3449
+ "description": "Body text paragraph.",
3450
+ "default": "\"\"",
3451
+ "attribute": "text"
3452
+ },
3453
+ {
3454
+ "kind": "field",
3455
+ "name": "title",
3456
+ "privacy": "public",
3457
+ "type": {
3458
+ "text": "string"
3459
+ },
3460
+ "description": "Section heading.",
3461
+ "default": "\"\"",
3462
+ "attribute": "title"
3463
+ }
3464
+ ],
3465
+ "attributes": [
3466
+ {
3467
+ "name": "cta",
3468
+ "type": {
3469
+ "text": "string"
3470
+ },
3471
+ "description": "Optional CTA as a JSON string: `{\"label\":\"...\",\"href\":\"...\"}`.",
3472
+ "default": "\"\"",
3473
+ "fieldName": "cta"
3474
+ },
3475
+ {
3476
+ "name": "media",
3477
+ "type": {
3478
+ "text": "string"
3479
+ },
3480
+ "description": "Media object as a JSON string: `{\"src\":\"...\",\"alt\":\"...\",\"kind\":\"image|video\"}`.",
3481
+ "default": "\"\"",
3482
+ "fieldName": "media"
3483
+ },
3484
+ {
3485
+ "name": "reverse",
3486
+ "type": {
3487
+ "text": "boolean"
3488
+ },
3489
+ "description": "When true, the media appears on the right and text on the left.",
3490
+ "default": "false",
3491
+ "fieldName": "reverse"
3492
+ },
3493
+ {
3494
+ "name": "text",
3495
+ "type": {
3496
+ "text": "string"
3497
+ },
3498
+ "description": "Body text paragraph.",
3499
+ "default": "\"\"",
3500
+ "fieldName": "text"
3501
+ },
3502
+ {
3503
+ "name": "title",
3504
+ "type": {
3505
+ "text": "string"
3506
+ },
3507
+ "description": "Section heading.",
3508
+ "default": "\"\"",
3509
+ "fieldName": "title"
3510
+ }
3511
+ ],
3512
+ "superclass": {
3513
+ "name": "LitElement",
3514
+ "package": "lit"
3515
+ },
3516
+ "tagName": "grantcodes-media-text",
3517
+ "customElement": true,
3518
+ "modulePath": "src/components/media-text/media-text.component.js",
3519
+ "definitionPath": "src/components/media-text/media-text.js"
3520
+ }
3521
+ ],
3522
+ "exports": [
3523
+ {
3524
+ "kind": "js",
3525
+ "name": "GrantCodesMediaText",
3526
+ "declaration": {
3527
+ "name": "GrantCodesMediaText",
3528
+ "module": "src/components/media-text/media-text.component.js"
3529
+ }
3530
+ }
3531
+ ]
3532
+ },
3533
+ {
3534
+ "kind": "javascript-module",
3535
+ "path": "src/components/media-text/media-text.js",
3536
+ "declarations": [],
3537
+ "exports": [
3538
+ {
3539
+ "kind": "js",
3540
+ "name": "*",
3541
+ "declaration": {
3542
+ "name": "*",
3543
+ "module": "src/components/media-text/media-text.component.js"
3544
+ }
3545
+ },
3546
+ {
3547
+ "kind": "js",
3548
+ "name": "default",
3549
+ "declaration": {
3550
+ "name": "GrantCodesMediaText",
3551
+ "module": "src/components/media-text/media-text.js"
3552
+ }
3553
+ },
3554
+ {
3555
+ "kind": "custom-element-definition",
3556
+ "name": "grantcodes-media-text",
3557
+ "declaration": {
3558
+ "name": "GrantCodesMediaText",
3559
+ "module": "/src/components/media-text/media-text.component.js"
3560
+ }
3561
+ }
3562
+ ]
3563
+ },
3564
+ {
3565
+ "kind": "javascript-module",
3566
+ "path": "src/components/newsletter/index.js",
3567
+ "declarations": [],
3568
+ "exports": [
3569
+ {
3570
+ "kind": "js",
3571
+ "name": "*",
3572
+ "declaration": {
3573
+ "name": "*",
3574
+ "module": "src/components/newsletter/newsletter.js"
3575
+ }
3576
+ }
3577
+ ]
3578
+ },
3579
+ {
3580
+ "kind": "javascript-module",
3581
+ "path": "src/components/newsletter/newsletter.component.js",
3582
+ "declarations": [
3583
+ {
3584
+ "kind": "class",
3585
+ "description": "",
3586
+ "name": "GrantCodesNewsletter",
3587
+ "members": [
3588
+ {
3589
+ "kind": "field",
3590
+ "name": "action",
3591
+ "privacy": "public",
3592
+ "type": {
3593
+ "text": "string"
3594
+ },
3595
+ "description": "Form action URL.",
3596
+ "default": "\"\"",
3597
+ "attribute": "action"
3598
+ },
3599
+ {
3600
+ "kind": "field",
3601
+ "name": "buttonLabel",
3602
+ "privacy": "public",
3603
+ "type": {
3604
+ "text": "string"
3605
+ },
3606
+ "description": "Submit button label.",
3607
+ "default": "\"Subscribe\"",
3608
+ "attribute": "button-label"
3609
+ },
3610
+ {
3611
+ "kind": "field",
3612
+ "name": "disclaimer",
3613
+ "privacy": "public",
3614
+ "type": {
3615
+ "text": "string"
3616
+ },
3617
+ "description": "Optional small disclaimer text below the form.",
3618
+ "default": "\"\"",
3619
+ "attribute": "disclaimer"
3620
+ },
3621
+ {
3622
+ "kind": "field",
3623
+ "name": "method",
3624
+ "privacy": "public",
3625
+ "type": {
3626
+ "text": "string"
3627
+ },
3628
+ "description": "Form submission method.",
3629
+ "default": "\"post\"",
3630
+ "attribute": "method"
3631
+ },
3632
+ {
3633
+ "kind": "field",
3634
+ "name": "placeholder",
3635
+ "privacy": "public",
3636
+ "type": {
3637
+ "text": "string"
3638
+ },
3639
+ "description": "Email input placeholder.",
3640
+ "default": "\"Your email address\"",
3641
+ "attribute": "placeholder"
3642
+ },
3643
+ {
3644
+ "kind": "field",
3645
+ "name": "text",
3646
+ "privacy": "public",
3647
+ "type": {
3648
+ "text": "string"
3649
+ },
3650
+ "description": "Optional supporting paragraph.",
3651
+ "default": "\"\"",
3652
+ "attribute": "text"
3653
+ },
3654
+ {
3655
+ "kind": "field",
3656
+ "name": "title",
3657
+ "privacy": "public",
3658
+ "type": {
3659
+ "text": "string"
3660
+ },
3661
+ "description": "Section heading.",
3662
+ "default": "\"\"",
3663
+ "attribute": "title"
3664
+ }
3665
+ ],
3666
+ "attributes": [
3667
+ {
3668
+ "name": "action",
3669
+ "type": {
3670
+ "text": "string"
3671
+ },
3672
+ "description": "Form action URL.",
3673
+ "default": "\"\"",
3674
+ "fieldName": "action"
3675
+ },
3676
+ {
3677
+ "name": "button-label",
3678
+ "type": {
3679
+ "text": "string"
3680
+ },
3681
+ "description": "Submit button label.",
3682
+ "default": "\"Subscribe\"",
3683
+ "fieldName": "buttonLabel"
3684
+ },
3685
+ {
3686
+ "name": "disclaimer",
3687
+ "type": {
3688
+ "text": "string"
3689
+ },
3690
+ "description": "Optional small disclaimer text below the form.",
3691
+ "default": "\"\"",
3692
+ "fieldName": "disclaimer"
3693
+ },
3694
+ {
3695
+ "name": "method",
3696
+ "type": {
3697
+ "text": "string"
3698
+ },
3699
+ "description": "Form submission method.",
3700
+ "default": "\"post\"",
3701
+ "fieldName": "method"
3702
+ },
3703
+ {
3704
+ "name": "placeholder",
3705
+ "type": {
3706
+ "text": "string"
3707
+ },
3708
+ "description": "Email input placeholder.",
3709
+ "default": "\"Your email address\"",
3710
+ "fieldName": "placeholder"
3711
+ },
3712
+ {
3713
+ "name": "text",
3714
+ "type": {
3715
+ "text": "string"
3716
+ },
3717
+ "description": "Optional supporting paragraph.",
3718
+ "default": "\"\"",
3719
+ "fieldName": "text"
3720
+ },
3721
+ {
3722
+ "name": "title",
3723
+ "type": {
3724
+ "text": "string"
3725
+ },
3726
+ "description": "Section heading.",
3727
+ "default": "\"\"",
3728
+ "fieldName": "title"
3729
+ }
3730
+ ],
3731
+ "superclass": {
3732
+ "name": "LitElement",
3733
+ "package": "lit"
3734
+ },
3735
+ "tagName": "grantcodes-newsletter",
3736
+ "customElement": true,
3737
+ "modulePath": "src/components/newsletter/newsletter.component.js",
3738
+ "definitionPath": "src/components/newsletter/newsletter.js"
3739
+ }
3740
+ ],
3741
+ "exports": [
3742
+ {
3743
+ "kind": "js",
3744
+ "name": "GrantCodesNewsletter",
3745
+ "declaration": {
3746
+ "name": "GrantCodesNewsletter",
3747
+ "module": "src/components/newsletter/newsletter.component.js"
2446
3748
  }
2447
3749
  }
2448
3750
  ]
2449
3751
  },
2450
3752
  {
2451
3753
  "kind": "javascript-module",
2452
- "path": "src/components/loading/loading.js",
3754
+ "path": "src/components/newsletter/newsletter.js",
2453
3755
  "declarations": [],
2454
3756
  "exports": [
2455
3757
  {
@@ -2457,23 +3759,23 @@
2457
3759
  "name": "*",
2458
3760
  "declaration": {
2459
3761
  "name": "*",
2460
- "module": "src/components/loading/loading.component.js"
3762
+ "module": "src/components/newsletter/newsletter.component.js"
2461
3763
  }
2462
3764
  },
2463
3765
  {
2464
3766
  "kind": "js",
2465
3767
  "name": "default",
2466
3768
  "declaration": {
2467
- "name": "GrantCodesLoading",
2468
- "module": "src/components/loading/loading.js"
3769
+ "name": "GrantCodesNewsletter",
3770
+ "module": "src/components/newsletter/newsletter.js"
2469
3771
  }
2470
3772
  },
2471
3773
  {
2472
3774
  "kind": "custom-element-definition",
2473
- "name": "grantcodes-loading",
3775
+ "name": "grantcodes-newsletter",
2474
3776
  "declaration": {
2475
- "name": "GrantCodesLoading",
2476
- "module": "/src/components/loading/loading.component.js"
3777
+ "name": "GrantCodesNewsletter",
3778
+ "module": "/src/components/newsletter/newsletter.component.js"
2477
3779
  }
2478
3780
  }
2479
3781
  ]
@@ -2488,7 +3790,7 @@
2488
3790
  "name": "*",
2489
3791
  "declaration": {
2490
3792
  "name": "*",
2491
- "module": "src/components/notice/notice"
3793
+ "module": "src/components/notice/notice.js"
2492
3794
  }
2493
3795
  }
2494
3796
  ]
@@ -2643,7 +3945,7 @@
2643
3945
  "name": "*",
2644
3946
  "declaration": {
2645
3947
  "name": "*",
2646
- "module": "src/components/pagination/pagination"
3948
+ "module": "src/components/pagination/pagination.js"
2647
3949
  }
2648
3950
  }
2649
3951
  ]
@@ -2717,62 +4019,206 @@
2717
4019
  ],
2718
4020
  "attributes": [
2719
4021
  {
2720
- "name": "next-href",
4022
+ "name": "next-href",
4023
+ "type": {
4024
+ "text": "string"
4025
+ },
4026
+ "default": "\"\"",
4027
+ "fieldName": "nextHref"
4028
+ },
4029
+ {
4030
+ "name": "page",
4031
+ "type": {
4032
+ "text": "number"
4033
+ },
4034
+ "default": "1",
4035
+ "fieldName": "page"
4036
+ },
4037
+ {
4038
+ "name": "pages",
4039
+ "type": {
4040
+ "text": "number"
4041
+ },
4042
+ "default": "1",
4043
+ "fieldName": "pages"
4044
+ },
4045
+ {
4046
+ "name": "previous-href",
4047
+ "type": {
4048
+ "text": "string"
4049
+ },
4050
+ "default": "\"\"",
4051
+ "fieldName": "previousHref"
4052
+ }
4053
+ ],
4054
+ "superclass": {
4055
+ "name": "LitElement",
4056
+ "package": "lit"
4057
+ },
4058
+ "tagName": "grantcodes-pagination",
4059
+ "customElement": true,
4060
+ "modulePath": "src/components/pagination/pagination.component.js",
4061
+ "definitionPath": "src/components/pagination/pagination.js"
4062
+ }
4063
+ ],
4064
+ "exports": [
4065
+ {
4066
+ "kind": "js",
4067
+ "name": "GrantCodesPagination",
4068
+ "declaration": {
4069
+ "name": "GrantCodesPagination",
4070
+ "module": "src/components/pagination/pagination.component.js"
4071
+ }
4072
+ }
4073
+ ]
4074
+ },
4075
+ {
4076
+ "kind": "javascript-module",
4077
+ "path": "src/components/pagination/pagination.js",
4078
+ "declarations": [],
4079
+ "exports": [
4080
+ {
4081
+ "kind": "js",
4082
+ "name": "*",
4083
+ "declaration": {
4084
+ "name": "*",
4085
+ "module": "src/components/pagination/pagination.component.js"
4086
+ }
4087
+ },
4088
+ {
4089
+ "kind": "js",
4090
+ "name": "default",
4091
+ "declaration": {
4092
+ "name": "GrantCodesPagination",
4093
+ "module": "src/components/pagination/pagination.js"
4094
+ }
4095
+ },
4096
+ {
4097
+ "kind": "custom-element-definition",
4098
+ "name": "grantcodes-pagination",
4099
+ "declaration": {
4100
+ "name": "GrantCodesPagination",
4101
+ "module": "/src/components/pagination/pagination.component.js"
4102
+ }
4103
+ }
4104
+ ]
4105
+ },
4106
+ {
4107
+ "kind": "javascript-module",
4108
+ "path": "src/components/pricing/index.js",
4109
+ "declarations": [],
4110
+ "exports": [
4111
+ {
4112
+ "kind": "js",
4113
+ "name": "*",
4114
+ "declaration": {
4115
+ "name": "*",
4116
+ "module": "src/components/pricing/pricing.js"
4117
+ }
4118
+ }
4119
+ ]
4120
+ },
4121
+ {
4122
+ "kind": "javascript-module",
4123
+ "path": "src/components/pricing/pricing.component.js",
4124
+ "declarations": [
4125
+ {
4126
+ "kind": "class",
4127
+ "description": "",
4128
+ "name": "GrantCodesPricing",
4129
+ "members": [
4130
+ {
4131
+ "kind": "field",
4132
+ "name": "_tiers",
4133
+ "readonly": true
4134
+ },
4135
+ {
4136
+ "kind": "field",
4137
+ "name": "subtitle",
4138
+ "privacy": "public",
4139
+ "type": {
4140
+ "text": "string"
4141
+ },
4142
+ "description": "Optional supporting text below the heading.",
4143
+ "default": "\"\"",
4144
+ "attribute": "subtitle"
4145
+ },
4146
+ {
4147
+ "kind": "field",
4148
+ "name": "tiers",
4149
+ "privacy": "public",
4150
+ "type": {
4151
+ "text": "string"
4152
+ },
4153
+ "description": "Pricing tiers as a JSON string array.\nEach tier: `{\"name\":\"...\",\"price\":\"...\",\"period\":\"...\",\"description\":\"...\",\"features\":[{\"text\":\"...\",\"included\":true}],\"cta\":{\"label\":\"...\",\"href\":\"...\"},\"highlighted\":false}`.",
4154
+ "default": "\"[]\"",
4155
+ "attribute": "tiers"
4156
+ },
4157
+ {
4158
+ "kind": "field",
4159
+ "name": "title",
4160
+ "privacy": "public",
4161
+ "type": {
4162
+ "text": "string"
4163
+ },
4164
+ "description": "Optional section heading.",
4165
+ "default": "\"\"",
4166
+ "attribute": "title"
4167
+ }
4168
+ ],
4169
+ "attributes": [
4170
+ {
4171
+ "name": "subtitle",
2721
4172
  "type": {
2722
4173
  "text": "string"
2723
4174
  },
4175
+ "description": "Optional supporting text below the heading.",
2724
4176
  "default": "\"\"",
2725
- "fieldName": "nextHref"
2726
- },
2727
- {
2728
- "name": "page",
2729
- "type": {
2730
- "text": "number"
2731
- },
2732
- "default": "1",
2733
- "fieldName": "page"
4177
+ "fieldName": "subtitle"
2734
4178
  },
2735
4179
  {
2736
- "name": "pages",
4180
+ "name": "tiers",
2737
4181
  "type": {
2738
- "text": "number"
4182
+ "text": "string"
2739
4183
  },
2740
- "default": "1",
2741
- "fieldName": "pages"
4184
+ "description": "Pricing tiers as a JSON string array.\nEach tier: `{\"name\":\"...\",\"price\":\"...\",\"period\":\"...\",\"description\":\"...\",\"features\":[{\"text\":\"...\",\"included\":true}],\"cta\":{\"label\":\"...\",\"href\":\"...\"},\"highlighted\":false}`.",
4185
+ "default": "\"[]\"",
4186
+ "fieldName": "tiers"
2742
4187
  },
2743
4188
  {
2744
- "name": "previous-href",
4189
+ "name": "title",
2745
4190
  "type": {
2746
4191
  "text": "string"
2747
4192
  },
4193
+ "description": "Optional section heading.",
2748
4194
  "default": "\"\"",
2749
- "fieldName": "previousHref"
4195
+ "fieldName": "title"
2750
4196
  }
2751
4197
  ],
2752
4198
  "superclass": {
2753
4199
  "name": "LitElement",
2754
4200
  "package": "lit"
2755
4201
  },
2756
- "tagName": "grantcodes-pagination",
4202
+ "tagName": "grantcodes-pricing",
2757
4203
  "customElement": true,
2758
- "modulePath": "src/components/pagination/pagination.component.js",
2759
- "definitionPath": "src/components/pagination/pagination.js"
4204
+ "modulePath": "src/components/pricing/pricing.component.js",
4205
+ "definitionPath": "src/components/pricing/pricing.js"
2760
4206
  }
2761
4207
  ],
2762
4208
  "exports": [
2763
4209
  {
2764
4210
  "kind": "js",
2765
- "name": "GrantCodesPagination",
4211
+ "name": "GrantCodesPricing",
2766
4212
  "declaration": {
2767
- "name": "GrantCodesPagination",
2768
- "module": "src/components/pagination/pagination.component.js"
4213
+ "name": "GrantCodesPricing",
4214
+ "module": "src/components/pricing/pricing.component.js"
2769
4215
  }
2770
4216
  }
2771
4217
  ]
2772
4218
  },
2773
4219
  {
2774
4220
  "kind": "javascript-module",
2775
- "path": "src/components/pagination/pagination.js",
4221
+ "path": "src/components/pricing/pricing.js",
2776
4222
  "declarations": [],
2777
4223
  "exports": [
2778
4224
  {
@@ -2780,23 +4226,23 @@
2780
4226
  "name": "*",
2781
4227
  "declaration": {
2782
4228
  "name": "*",
2783
- "module": "src/components/pagination/pagination.component.js"
4229
+ "module": "src/components/pricing/pricing.component.js"
2784
4230
  }
2785
4231
  },
2786
4232
  {
2787
4233
  "kind": "js",
2788
4234
  "name": "default",
2789
4235
  "declaration": {
2790
- "name": "GrantCodesPagination",
2791
- "module": "src/components/pagination/pagination.js"
4236
+ "name": "GrantCodesPricing",
4237
+ "module": "src/components/pricing/pricing.js"
2792
4238
  }
2793
4239
  },
2794
4240
  {
2795
4241
  "kind": "custom-element-definition",
2796
- "name": "grantcodes-pagination",
4242
+ "name": "grantcodes-pricing",
2797
4243
  "declaration": {
2798
- "name": "GrantCodesPagination",
2799
- "module": "/src/components/pagination/pagination.component.js"
4244
+ "name": "GrantCodesPricing",
4245
+ "module": "/src/components/pricing/pricing.component.js"
2800
4246
  }
2801
4247
  }
2802
4248
  ]
@@ -3021,6 +4467,150 @@
3021
4467
  }
3022
4468
  ]
3023
4469
  },
4470
+ {
4471
+ "kind": "javascript-module",
4472
+ "path": "src/components/stats/index.js",
4473
+ "declarations": [],
4474
+ "exports": [
4475
+ {
4476
+ "kind": "js",
4477
+ "name": "*",
4478
+ "declaration": {
4479
+ "name": "*",
4480
+ "module": "src/components/stats/stats.js"
4481
+ }
4482
+ }
4483
+ ]
4484
+ },
4485
+ {
4486
+ "kind": "javascript-module",
4487
+ "path": "src/components/stats/stats.component.js",
4488
+ "declarations": [
4489
+ {
4490
+ "kind": "class",
4491
+ "description": "",
4492
+ "name": "GrantCodesStats",
4493
+ "members": [
4494
+ {
4495
+ "kind": "field",
4496
+ "name": "_items",
4497
+ "readonly": true
4498
+ },
4499
+ {
4500
+ "kind": "field",
4501
+ "name": "columns",
4502
+ "privacy": "public",
4503
+ "type": {
4504
+ "text": "number"
4505
+ },
4506
+ "description": "Number of columns in the grid (1–6).",
4507
+ "default": "4",
4508
+ "attribute": "columns"
4509
+ },
4510
+ {
4511
+ "kind": "field",
4512
+ "name": "items",
4513
+ "privacy": "public",
4514
+ "type": {
4515
+ "text": "string"
4516
+ },
4517
+ "description": "Stat items as a JSON string array: `[{\"label\":\"...\",\"value\":\"...\",\"context\":\"...\"}]`.",
4518
+ "default": "\"[]\"",
4519
+ "attribute": "items"
4520
+ },
4521
+ {
4522
+ "kind": "field",
4523
+ "name": "title",
4524
+ "privacy": "public",
4525
+ "type": {
4526
+ "text": "string"
4527
+ },
4528
+ "description": "Optional section heading.",
4529
+ "default": "\"\"",
4530
+ "attribute": "title"
4531
+ }
4532
+ ],
4533
+ "attributes": [
4534
+ {
4535
+ "name": "columns",
4536
+ "type": {
4537
+ "text": "number"
4538
+ },
4539
+ "description": "Number of columns in the grid (1–6).",
4540
+ "default": "4",
4541
+ "fieldName": "columns"
4542
+ },
4543
+ {
4544
+ "name": "items",
4545
+ "type": {
4546
+ "text": "string"
4547
+ },
4548
+ "description": "Stat items as a JSON string array: `[{\"label\":\"...\",\"value\":\"...\",\"context\":\"...\"}]`.",
4549
+ "default": "\"[]\"",
4550
+ "fieldName": "items"
4551
+ },
4552
+ {
4553
+ "name": "title",
4554
+ "type": {
4555
+ "text": "string"
4556
+ },
4557
+ "description": "Optional section heading.",
4558
+ "default": "\"\"",
4559
+ "fieldName": "title"
4560
+ }
4561
+ ],
4562
+ "superclass": {
4563
+ "name": "LitElement",
4564
+ "package": "lit"
4565
+ },
4566
+ "tagName": "grantcodes-stats",
4567
+ "customElement": true,
4568
+ "modulePath": "src/components/stats/stats.component.js",
4569
+ "definitionPath": "src/components/stats/stats.js"
4570
+ }
4571
+ ],
4572
+ "exports": [
4573
+ {
4574
+ "kind": "js",
4575
+ "name": "GrantCodesStats",
4576
+ "declaration": {
4577
+ "name": "GrantCodesStats",
4578
+ "module": "src/components/stats/stats.component.js"
4579
+ }
4580
+ }
4581
+ ]
4582
+ },
4583
+ {
4584
+ "kind": "javascript-module",
4585
+ "path": "src/components/stats/stats.js",
4586
+ "declarations": [],
4587
+ "exports": [
4588
+ {
4589
+ "kind": "js",
4590
+ "name": "*",
4591
+ "declaration": {
4592
+ "name": "*",
4593
+ "module": "src/components/stats/stats.component.js"
4594
+ }
4595
+ },
4596
+ {
4597
+ "kind": "js",
4598
+ "name": "default",
4599
+ "declaration": {
4600
+ "name": "GrantCodesStats",
4601
+ "module": "src/components/stats/stats.js"
4602
+ }
4603
+ },
4604
+ {
4605
+ "kind": "custom-element-definition",
4606
+ "name": "grantcodes-stats",
4607
+ "declaration": {
4608
+ "name": "GrantCodesStats",
4609
+ "module": "/src/components/stats/stats.component.js"
4610
+ }
4611
+ }
4612
+ ]
4613
+ },
3024
4614
  {
3025
4615
  "kind": "javascript-module",
3026
4616
  "path": "src/components/tabs/index.js",
@@ -3031,7 +4621,7 @@
3031
4621
  "name": "*",
3032
4622
  "declaration": {
3033
4623
  "name": "*",
3034
- "module": "src/components/tabs/tabs"
4624
+ "module": "src/components/tabs/tabs.js"
3035
4625
  }
3036
4626
  },
3037
4627
  {
@@ -3039,7 +4629,7 @@
3039
4629
  "name": "*",
3040
4630
  "declaration": {
3041
4631
  "name": "*",
3042
- "module": "src/components/tabs/tab"
4632
+ "module": "src/components/tabs/tab.js"
3043
4633
  }
3044
4634
  }
3045
4635
  ]
@@ -3852,6 +5442,151 @@
3852
5442
  }
3853
5443
  ]
3854
5444
  },
5445
+ {
5446
+ "kind": "javascript-module",
5447
+ "path": "src/components/testimonials/index.js",
5448
+ "declarations": [],
5449
+ "exports": [
5450
+ {
5451
+ "kind": "js",
5452
+ "name": "*",
5453
+ "declaration": {
5454
+ "name": "*",
5455
+ "module": "src/components/testimonials/testimonials.js"
5456
+ }
5457
+ }
5458
+ ]
5459
+ },
5460
+ {
5461
+ "kind": "javascript-module",
5462
+ "path": "src/components/testimonials/testimonials.component.js",
5463
+ "declarations": [
5464
+ {
5465
+ "kind": "class",
5466
+ "description": "",
5467
+ "name": "GrantCodesTestimonials",
5468
+ "members": [
5469
+ {
5470
+ "kind": "field",
5471
+ "name": "_items",
5472
+ "readonly": true
5473
+ },
5474
+ {
5475
+ "kind": "field",
5476
+ "name": "items",
5477
+ "privacy": "public",
5478
+ "type": {
5479
+ "text": "string"
5480
+ },
5481
+ "description": "Testimonial items as a JSON string array: `[{\"quote\":\"...\",\"name\":\"...\",\"role\":\"...\",\"company\":\"...\",\"avatar\":\"...\"}]`.",
5482
+ "default": "\"[]\"",
5483
+ "attribute": "items"
5484
+ },
5485
+ {
5486
+ "kind": "field",
5487
+ "name": "layout",
5488
+ "privacy": "public",
5489
+ "type": {
5490
+ "text": "string"
5491
+ },
5492
+ "description": "Display layout of the testimonials.",
5493
+ "default": "\"cards\"",
5494
+ "attribute": "layout",
5495
+ "reflects": true
5496
+ },
5497
+ {
5498
+ "kind": "field",
5499
+ "name": "title",
5500
+ "privacy": "public",
5501
+ "type": {
5502
+ "text": "string"
5503
+ },
5504
+ "description": "Optional section heading.",
5505
+ "default": "\"\"",
5506
+ "attribute": "title"
5507
+ }
5508
+ ],
5509
+ "attributes": [
5510
+ {
5511
+ "name": "items",
5512
+ "type": {
5513
+ "text": "string"
5514
+ },
5515
+ "description": "Testimonial items as a JSON string array: `[{\"quote\":\"...\",\"name\":\"...\",\"role\":\"...\",\"company\":\"...\",\"avatar\":\"...\"}]`.",
5516
+ "default": "\"[]\"",
5517
+ "fieldName": "items"
5518
+ },
5519
+ {
5520
+ "name": "layout",
5521
+ "type": {
5522
+ "text": "string"
5523
+ },
5524
+ "description": "Display layout of the testimonials.",
5525
+ "default": "\"cards\"",
5526
+ "fieldName": "layout"
5527
+ },
5528
+ {
5529
+ "name": "title",
5530
+ "type": {
5531
+ "text": "string"
5532
+ },
5533
+ "description": "Optional section heading.",
5534
+ "default": "\"\"",
5535
+ "fieldName": "title"
5536
+ }
5537
+ ],
5538
+ "superclass": {
5539
+ "name": "LitElement",
5540
+ "package": "lit"
5541
+ },
5542
+ "tagName": "grantcodes-testimonials",
5543
+ "customElement": true,
5544
+ "modulePath": "src/components/testimonials/testimonials.component.js",
5545
+ "definitionPath": "src/components/testimonials/testimonials.js"
5546
+ }
5547
+ ],
5548
+ "exports": [
5549
+ {
5550
+ "kind": "js",
5551
+ "name": "GrantCodesTestimonials",
5552
+ "declaration": {
5553
+ "name": "GrantCodesTestimonials",
5554
+ "module": "src/components/testimonials/testimonials.component.js"
5555
+ }
5556
+ }
5557
+ ]
5558
+ },
5559
+ {
5560
+ "kind": "javascript-module",
5561
+ "path": "src/components/testimonials/testimonials.js",
5562
+ "declarations": [],
5563
+ "exports": [
5564
+ {
5565
+ "kind": "js",
5566
+ "name": "*",
5567
+ "declaration": {
5568
+ "name": "*",
5569
+ "module": "src/components/testimonials/testimonials.component.js"
5570
+ }
5571
+ },
5572
+ {
5573
+ "kind": "js",
5574
+ "name": "default",
5575
+ "declaration": {
5576
+ "name": "GrantCodesTestimonials",
5577
+ "module": "src/components/testimonials/testimonials.js"
5578
+ }
5579
+ },
5580
+ {
5581
+ "kind": "custom-element-definition",
5582
+ "name": "grantcodes-testimonials",
5583
+ "declaration": {
5584
+ "name": "GrantCodesTestimonials",
5585
+ "module": "/src/components/testimonials/testimonials.component.js"
5586
+ }
5587
+ }
5588
+ ]
5589
+ },
3855
5590
  {
3856
5591
  "kind": "javascript-module",
3857
5592
  "path": "src/components/toast/index.js",
@@ -4148,7 +5883,7 @@
4148
5883
  "name": "*",
4149
5884
  "declaration": {
4150
5885
  "name": "*",
4151
- "module": "src/components/tooltip/tooltip"
5886
+ "module": "src/components/tooltip/tooltip.js"
4152
5887
  }
4153
5888
  }
4154
5889
  ]