@grantcodes/ui 2.0.0-beta4 → 2.0.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 (310) hide show
  1. package/CHANGELOG.md +111 -0
  2. package/README.md +6 -8
  3. package/custom-elements.json +4273 -0
  4. package/package.json +80 -89
  5. package/src/components/app-bar/app-bar.component.js +90 -0
  6. package/src/components/app-bar/app-bar.js +8 -0
  7. package/src/components/app-bar/app-bar.stories.js +84 -0
  8. package/src/components/app-bar/app-bar.styles.js +227 -0
  9. package/src/components/app-bar/app-bar.test.js +174 -0
  10. package/src/components/app-bar/index.js +3 -0
  11. package/src/components/avatar/avatar.component.js +78 -0
  12. package/src/components/avatar/avatar.js +18 -0
  13. package/src/components/avatar/avatar.stories.js +45 -0
  14. package/src/components/avatar/avatar.styles.js +42 -0
  15. package/src/components/avatar/avatar.test.js +85 -0
  16. package/src/components/avatar/index.js +13 -0
  17. package/src/components/badge/badge.component.js +36 -0
  18. package/src/components/badge/badge.js +8 -0
  19. package/src/components/badge/badge.stories.js +46 -0
  20. package/src/components/badge/badge.styles.js +94 -0
  21. package/src/components/badge/badge.test.js +70 -0
  22. package/src/components/badge/index.js +3 -0
  23. package/src/components/breadcrumb/breadcrumb.component.js +110 -0
  24. package/src/components/breadcrumb/breadcrumb.js +12 -0
  25. package/src/components/breadcrumb/breadcrumb.stories.js +25 -0
  26. package/src/components/breadcrumb/breadcrumb.styles.js +96 -0
  27. package/src/components/breadcrumb/breadcrumb.test.js +144 -0
  28. package/src/components/breadcrumb/index.js +3 -0
  29. package/src/components/button/button.component.js +64 -0
  30. package/src/components/button/button.js +6 -0
  31. package/src/components/button/button.stories.js +78 -0
  32. package/src/components/button/button.styles.js +97 -0
  33. package/src/components/button/button.test.js +98 -0
  34. package/src/components/button/index.js +1 -0
  35. package/src/components/button-group/button-group.component.js +27 -0
  36. package/src/components/button-group/button-group.js +6 -0
  37. package/src/components/button-group/button-group.stories.js +33 -0
  38. package/src/components/button-group/button-group.styles.js +43 -0
  39. package/src/components/button-group/button-group.test.js +57 -0
  40. package/src/components/button-group/index.js +1 -0
  41. package/src/components/card/card.component.js +17 -0
  42. package/src/components/card/card.js +6 -0
  43. package/src/components/card/card.stories.js +36 -0
  44. package/src/components/card/card.styles.js +128 -0
  45. package/src/components/card/card.test.js +59 -0
  46. package/src/components/card/index.js +1 -0
  47. package/src/components/code-preview/code-preview.component.js +53 -0
  48. package/src/components/code-preview/code-preview.js +7 -0
  49. package/src/components/code-preview/code-preview.stories.js +67 -0
  50. package/src/components/code-preview/code-preview.styles.js +18 -0
  51. package/src/components/code-preview/code-preview.test.js +118 -0
  52. package/src/components/code-preview/index.js +1 -0
  53. package/src/components/container/container.component.js +38 -0
  54. package/src/components/container/container.js +7 -0
  55. package/src/components/container/container.stories.js +59 -0
  56. package/src/components/container/container.styles.js +43 -0
  57. package/src/components/container/container.test.js +84 -0
  58. package/src/components/container/index.js +1 -0
  59. package/src/components/dialog/dialog.component.js +78 -0
  60. package/src/components/dialog/dialog.js +7 -0
  61. package/src/components/dialog/dialog.stories.js +43 -0
  62. package/src/components/dialog/dialog.styles.js +74 -0
  63. package/src/components/dialog/dialog.test.js +97 -0
  64. package/src/components/dialog/index.js +1 -0
  65. package/src/components/dropdown/dropdown.component.js +225 -0
  66. package/src/components/dropdown/dropdown.js +12 -0
  67. package/src/components/dropdown/dropdown.stories.js +107 -0
  68. package/src/components/dropdown/dropdown.styles.js +128 -0
  69. package/src/components/dropdown/dropdown.test.js +144 -0
  70. package/src/components/dropdown/index.js +3 -0
  71. package/src/components/dropzone/dropzone.component.js +141 -0
  72. package/src/components/dropzone/dropzone.js +6 -0
  73. package/src/components/dropzone/dropzone.stories.js +41 -0
  74. package/src/components/dropzone/dropzone.styles.js +64 -0
  75. package/src/components/dropzone/dropzone.test.js +112 -0
  76. package/src/components/dropzone/index.js +1 -0
  77. package/src/components/footer/footer-column.component.js +15 -0
  78. package/src/components/footer/footer-column.styles.js +51 -0
  79. package/src/components/footer/footer.component.js +38 -0
  80. package/src/components/footer/footer.js +9 -0
  81. package/src/components/footer/footer.stories.js +143 -0
  82. package/src/components/footer/footer.styles.js +90 -0
  83. package/src/components/footer/footer.test.js +107 -0
  84. package/src/components/footer/index.js +2 -0
  85. package/src/components/form-field/form-field.component.js +173 -0
  86. package/src/components/form-field/form-field.js +7 -0
  87. package/src/components/form-field/form-field.stories.js +104 -0
  88. package/src/components/form-field/form-field.styles.js +47 -0
  89. package/src/components/form-field/form-field.test.js +118 -0
  90. package/src/components/form-field/index.js +1 -0
  91. package/src/components/gallery/gallery-image.component.js +52 -0
  92. package/src/components/gallery/gallery-image.js +7 -0
  93. package/src/components/gallery/gallery.component.js +25 -0
  94. package/src/components/gallery/gallery.js +7 -0
  95. package/src/components/gallery/gallery.stories.js +60 -0
  96. package/src/components/gallery/gallery.styles.js +56 -0
  97. package/src/components/gallery/gallery.test.js +58 -0
  98. package/src/components/gallery/index.js +2 -0
  99. package/src/components/icon/icon.component.js +14 -0
  100. package/src/components/icon/icon.js +7 -0
  101. package/src/components/icon/icon.stories.js +26 -0
  102. package/src/components/icon/icon.styles.js +28 -0
  103. package/src/components/icon/icon.test.js +57 -0
  104. package/src/components/icon/index.js +1 -0
  105. package/src/components/loading/index.js +1 -0
  106. package/src/components/loading/loading.component.js +21 -0
  107. package/src/components/loading/loading.js +7 -0
  108. package/src/components/loading/loading.stories.js +25 -0
  109. package/src/components/loading/loading.styles.js +43 -0
  110. package/src/components/loading/loading.test.js +57 -0
  111. package/src/components/notice/index.js +1 -0
  112. package/src/components/notice/notice.component.js +77 -0
  113. package/src/components/notice/notice.js +7 -0
  114. package/src/components/notice/notice.stories.js +122 -0
  115. package/src/components/notice/notice.styles.js +72 -0
  116. package/src/components/notice/notice.test.js +146 -0
  117. package/src/components/pagination/index.js +1 -0
  118. package/src/components/pagination/pagination.component.js +62 -0
  119. package/src/components/pagination/pagination.js +7 -0
  120. package/src/components/pagination/pagination.stories.js +34 -0
  121. package/src/components/pagination/pagination.styles.js +19 -0
  122. package/src/components/pagination/pagination.test.js +98 -0
  123. package/src/components/sidebar/index.js +3 -0
  124. package/src/components/sidebar/sidebar.component.js +165 -0
  125. package/src/components/sidebar/sidebar.js +8 -0
  126. package/src/components/sidebar/sidebar.stories.js +155 -0
  127. package/src/components/sidebar/sidebar.styles.js +192 -0
  128. package/src/components/sidebar/sidebar.test.js +196 -0
  129. package/src/components/tabs/index.js +2 -0
  130. package/src/components/tabs/internal/tabs-button.component.js +39 -0
  131. package/src/components/tabs/internal/tabs-button.js +7 -0
  132. package/src/components/tabs/internal/tabs-item.component.js +39 -0
  133. package/src/components/tabs/tab.component.js +20 -0
  134. package/src/components/tabs/tab.js +7 -0
  135. package/src/components/tabs/tabs.component.js +130 -0
  136. package/src/components/tabs/tabs.js +7 -0
  137. package/src/components/tabs/tabs.stories.js +39 -0
  138. package/src/components/tabs/tabs.styles.js +88 -0
  139. package/src/components/tabs/tabs.test.js +148 -0
  140. package/src/components/toast/index.js +3 -0
  141. package/src/components/toast/toast.component.js +187 -0
  142. package/src/components/toast/toast.js +9 -0
  143. package/src/components/toast/toast.stories.js +169 -0
  144. package/src/components/toast/toast.styles.js +207 -0
  145. package/src/components/toast/toast.test.js +196 -0
  146. package/src/components/tooltip/index.js +1 -0
  147. package/src/components/tooltip/tooltip.component.js +70 -0
  148. package/src/components/tooltip/tooltip.js +7 -0
  149. package/src/components/tooltip/tooltip.stories.js +33 -0
  150. package/src/components/tooltip/tooltip.styles.js +78 -0
  151. package/src/components/tooltip/tooltip.test.js +150 -0
  152. package/src/css/all.css +1 -0
  153. package/src/css/base.css +31 -0
  154. package/src/css/colors.stories.js +192 -0
  155. package/src/css/elements/a.css +50 -0
  156. package/src/css/elements/forms/button.css +15 -0
  157. package/src/css/elements/forms/input.css +183 -0
  158. package/src/css/elements/forms/label.css +5 -0
  159. package/src/css/elements/media/image.css +3 -0
  160. package/src/css/elements.css +5 -0
  161. package/src/css/elements.stories.js +108 -0
  162. package/src/css/helpers.css +16 -0
  163. package/src/css/themes/grantcodes.css +3 -0
  164. package/src/css/themes/todomap.css +2 -0
  165. package/src/css/themes/wireframe.css +2 -0
  166. package/src/css/tokens.stories.js +183 -0
  167. package/src/css/typography.css +64 -0
  168. package/src/css/typography.stories.js +179 -0
  169. package/src/css/util/functions.css +16 -0
  170. package/src/css/util/index.css +2 -0
  171. package/src/css/util/mixins.css +63 -0
  172. package/src/icons.js +3 -0
  173. package/src/lib/classnames.js +61 -0
  174. package/src/lib/generate-id.js +10 -0
  175. package/src/main.js +17 -0
  176. package/src/test-utils/assert-helpers.js +150 -0
  177. package/src/test-utils/events.js +88 -0
  178. package/src/test-utils/fixture.js +77 -0
  179. package/src/test-utils/index.js +7 -0
  180. package/dist/components/avatar/avatar.component.js +0 -3
  181. package/dist/components/avatar/avatar.js +0 -1
  182. package/dist/components/avatar/avatar.react.js +0 -1
  183. package/dist/components/avatar/avatar.scss.js +0 -1
  184. package/dist/components/avatar/index.js +0 -1
  185. package/dist/components/button/button.component.js +0 -5
  186. package/dist/components/button/button.js +0 -1
  187. package/dist/components/button/button.react.js +0 -1
  188. package/dist/components/button/button.scss.js +0 -1
  189. package/dist/components/button/index.js +0 -1
  190. package/dist/components/button-group/button-group.component.js +0 -5
  191. package/dist/components/button-group/button-group.js +0 -1
  192. package/dist/components/button-group/button-group.react.js +0 -1
  193. package/dist/components/button-group/button-group.scss.js +0 -1
  194. package/dist/components/button-group/index.js +0 -1
  195. package/dist/components/card/card.component.js +0 -8
  196. package/dist/components/card/card.js +0 -1
  197. package/dist/components/card/card.react.js +0 -1
  198. package/dist/components/card/card.scss.js +0 -1
  199. package/dist/components/card/index.js +0 -1
  200. package/dist/components/code-preview/code-preview.component.js +0 -1
  201. package/dist/components/code-preview/code-preview.js +0 -1
  202. package/dist/components/code-preview/code-preview.react.js +0 -1
  203. package/dist/components/code-preview/code-preview.scss.js +0 -1
  204. package/dist/components/code-preview/index.js +0 -1
  205. package/dist/components/container/container.component.js +0 -5
  206. package/dist/components/container/container.js +0 -1
  207. package/dist/components/container/container.react.js +0 -1
  208. package/dist/components/container/container.scss.js +0 -1
  209. package/dist/components/container/index.js +0 -1
  210. package/dist/components/dialog/dialog.component.js +0 -23
  211. package/dist/components/dialog/dialog.js +0 -1
  212. package/dist/components/dialog/dialog.react.js +0 -1
  213. package/dist/components/dialog/dialog.scss.js +0 -1
  214. package/dist/components/dialog/index.js +0 -1
  215. package/dist/components/dropzone/dropzone.component.js +0 -11
  216. package/dist/components/dropzone/dropzone.js +0 -1
  217. package/dist/components/dropzone/dropzone.react.js +0 -1
  218. package/dist/components/dropzone/dropzone.scss.js +0 -1
  219. package/dist/components/dropzone/index.js +0 -1
  220. package/dist/components/form-field/form-field.component.js +0 -22
  221. package/dist/components/form-field/form-field.js +0 -1
  222. package/dist/components/form-field/form-field.react.js +0 -1
  223. package/dist/components/form-field/form-field.scss.js +0 -1
  224. package/dist/components/form-field/index.js +0 -1
  225. package/dist/components/gallery/gallery-image.component.js +0 -14
  226. package/dist/components/gallery/gallery-image.js +0 -1
  227. package/dist/components/gallery/gallery.component.js +0 -5
  228. package/dist/components/gallery/gallery.js +0 -1
  229. package/dist/components/gallery/gallery.react.js +0 -1
  230. package/dist/components/gallery/gallery.scss.js +0 -1
  231. package/dist/components/gallery/index.js +0 -1
  232. package/dist/components/icon/icon.component.js +0 -1
  233. package/dist/components/icon/icon.js +0 -1
  234. package/dist/components/icon/icon.react.js +0 -1
  235. package/dist/components/icon/icon.scss.js +0 -1
  236. package/dist/components/icon/index.js +0 -1
  237. package/dist/components/loading/index.js +0 -1
  238. package/dist/components/loading/loading.component.js +0 -5
  239. package/dist/components/loading/loading.js +0 -1
  240. package/dist/components/loading/loading.react.js +0 -1
  241. package/dist/components/loading/loading.scss.js +0 -1
  242. package/dist/components/notice/index.js +0 -1
  243. package/dist/components/notice/notice.component.js +0 -17
  244. package/dist/components/notice/notice.js +0 -1
  245. package/dist/components/notice/notice.react.js +0 -1
  246. package/dist/components/notice/notice.scss.js +0 -1
  247. package/dist/components/pagination/index.js +0 -1
  248. package/dist/components/pagination/pagination.component.js +0 -13
  249. package/dist/components/pagination/pagination.js +0 -1
  250. package/dist/components/pagination/pagination.react.js +0 -1
  251. package/dist/components/pagination/pagination.scss.js +0 -1
  252. package/dist/components/tabs/index.js +0 -1
  253. package/dist/components/tabs/tab.component.js +0 -1
  254. package/dist/components/tabs/tab.js +0 -1
  255. package/dist/components/tabs/tabs-item.component.js +0 -1
  256. package/dist/components/tabs/tabs-panel.component.js +0 -10
  257. package/dist/components/tabs/tabs-panel.js +0 -1
  258. package/dist/components/tabs/tabs-tab.component.js +0 -12
  259. package/dist/components/tabs/tabs-tab.js +0 -1
  260. package/dist/components/tabs/tabs.component.js +0 -28
  261. package/dist/components/tabs/tabs.js +0 -1
  262. package/dist/components/tabs/tabs.react.js +0 -1
  263. package/dist/components/tabs/tabs.scss.js +0 -1
  264. package/dist/components/tooltip/index.js +0 -1
  265. package/dist/components/tooltip/tooltip.component.js +0 -10
  266. package/dist/components/tooltip/tooltip.js +0 -1
  267. package/dist/components/tooltip/tooltip.react.js +0 -1
  268. package/dist/components/tooltip/tooltip.scss.js +0 -1
  269. package/dist/css/base.css +0 -1
  270. package/dist/css/themes/grantcodes.css +0 -1
  271. package/dist/fonts/greycliff-bold-oblique.woff +0 -0
  272. package/dist/fonts/greycliff-bold-oblique.woff2 +0 -0
  273. package/dist/fonts/greycliff-bold.woff +0 -0
  274. package/dist/fonts/greycliff-bold.woff2 +0 -0
  275. package/dist/fonts/greycliff-demi-bold-oblique.woff +0 -0
  276. package/dist/fonts/greycliff-demi-bold-oblique.woff2 +0 -0
  277. package/dist/fonts/greycliff-demi-bold.woff +0 -0
  278. package/dist/fonts/greycliff-demi-bold.woff2 +0 -0
  279. package/dist/fonts/greycliff-extra-bold-oblique.woff +0 -0
  280. package/dist/fonts/greycliff-extra-bold-oblique.woff2 +0 -0
  281. package/dist/fonts/greycliff-extra-bold.woff +0 -0
  282. package/dist/fonts/greycliff-extra-bold.woff2 +0 -0
  283. package/dist/fonts/greycliff-extra-light-oblique.woff +0 -0
  284. package/dist/fonts/greycliff-extra-light-oblique.woff2 +0 -0
  285. package/dist/fonts/greycliff-extra-light.woff +0 -0
  286. package/dist/fonts/greycliff-extra-light.woff2 +0 -0
  287. package/dist/fonts/greycliff-heavy-oblique.woff +0 -0
  288. package/dist/fonts/greycliff-heavy-oblique.woff2 +0 -0
  289. package/dist/fonts/greycliff-heavy.woff +0 -0
  290. package/dist/fonts/greycliff-heavy.woff2 +0 -0
  291. package/dist/fonts/greycliff-light-oblique.woff +0 -0
  292. package/dist/fonts/greycliff-light-oblique.woff2 +0 -0
  293. package/dist/fonts/greycliff-light.woff +0 -0
  294. package/dist/fonts/greycliff-light.woff2 +0 -0
  295. package/dist/fonts/greycliff-medium-oblique.woff +0 -0
  296. package/dist/fonts/greycliff-medium-oblique.woff2 +0 -0
  297. package/dist/fonts/greycliff-medium.woff +0 -0
  298. package/dist/fonts/greycliff-medium.woff2 +0 -0
  299. package/dist/fonts/greycliff-regular-oblique.woff +0 -0
  300. package/dist/fonts/greycliff-regular-oblique.woff2 +0 -0
  301. package/dist/fonts/greycliff-regular.woff +0 -0
  302. package/dist/fonts/greycliff-regular.woff2 +0 -0
  303. package/dist/fonts/greycliff-thin-oblique.woff +0 -0
  304. package/dist/fonts/greycliff-thin-oblique.woff2 +0 -0
  305. package/dist/fonts/greycliff-thin.woff +0 -0
  306. package/dist/fonts/greycliff-thin.woff2 +0 -0
  307. package/dist/icons.js +0 -1
  308. package/dist/lib/generate-id.js +0 -1
  309. package/dist/main.js +0 -1
  310. package/dist/react.js +0 -1
@@ -0,0 +1,4273 @@
1
+ {
2
+ "schemaVersion": "1.0.0",
3
+ "readme": "",
4
+ "modules": [
5
+ {
6
+ "kind": "javascript-module",
7
+ "path": "src/components/app-bar/app-bar.component.js",
8
+ "declarations": [
9
+ {
10
+ "kind": "class",
11
+ "description": "",
12
+ "name": "GrantCodesAppBar",
13
+ "members": [
14
+ {
15
+ "kind": "field",
16
+ "name": "_mobileMenuOpen",
17
+ "privacy": "public",
18
+ "type": {
19
+ "text": "boolean"
20
+ },
21
+ "description": "Mobile menu open state",
22
+ "default": "false",
23
+ "attribute": "_mobileMenuOpen"
24
+ },
25
+ {
26
+ "kind": "method",
27
+ "name": "_toggleMobileMenu"
28
+ },
29
+ {
30
+ "kind": "field",
31
+ "name": "sticky",
32
+ "privacy": "public",
33
+ "type": {
34
+ "text": "boolean"
35
+ },
36
+ "description": "Whether the app bar is sticky",
37
+ "default": "false",
38
+ "attribute": "sticky"
39
+ },
40
+ {
41
+ "kind": "field",
42
+ "name": "transparent",
43
+ "privacy": "public",
44
+ "type": {
45
+ "text": "boolean"
46
+ },
47
+ "description": "Whether the app bar has transparent background",
48
+ "default": "false",
49
+ "attribute": "transparent"
50
+ }
51
+ ],
52
+ "events": [
53
+ {
54
+ "name": "menu-toggle",
55
+ "type": {
56
+ "text": "CustomEvent"
57
+ }
58
+ }
59
+ ],
60
+ "attributes": [
61
+ {
62
+ "name": "_mobileMenuOpen",
63
+ "type": {
64
+ "text": "boolean"
65
+ },
66
+ "description": "Mobile menu open state",
67
+ "default": "false",
68
+ "fieldName": "_mobileMenuOpen"
69
+ },
70
+ {
71
+ "name": "sticky",
72
+ "type": {
73
+ "text": "boolean"
74
+ },
75
+ "description": "Whether the app bar is sticky",
76
+ "default": "false",
77
+ "fieldName": "sticky"
78
+ },
79
+ {
80
+ "name": "transparent",
81
+ "type": {
82
+ "text": "boolean"
83
+ },
84
+ "description": "Whether the app bar has transparent background",
85
+ "default": "false",
86
+ "fieldName": "transparent"
87
+ }
88
+ ],
89
+ "superclass": {
90
+ "name": "LitElement",
91
+ "package": "lit"
92
+ },
93
+ "tagName": "grantcodes-app-bar",
94
+ "customElement": true,
95
+ "modulePath": "src/components/app-bar/app-bar.component.js",
96
+ "definitionPath": "src/components/app-bar/app-bar.js"
97
+ }
98
+ ],
99
+ "exports": [
100
+ {
101
+ "kind": "js",
102
+ "name": "GrantCodesAppBar",
103
+ "declaration": {
104
+ "name": "GrantCodesAppBar",
105
+ "module": "src/components/app-bar/app-bar.component.js"
106
+ }
107
+ }
108
+ ]
109
+ },
110
+ {
111
+ "kind": "javascript-module",
112
+ "path": "src/components/app-bar/app-bar.js",
113
+ "declarations": [],
114
+ "exports": [
115
+ {
116
+ "kind": "js",
117
+ "name": "*",
118
+ "declaration": {
119
+ "name": "*",
120
+ "module": "src/components/app-bar/app-bar.component.js"
121
+ }
122
+ },
123
+ {
124
+ "kind": "js",
125
+ "name": "default",
126
+ "declaration": {
127
+ "name": "GrantCodesAppBar",
128
+ "module": "src/components/app-bar/app-bar.js"
129
+ }
130
+ },
131
+ {
132
+ "kind": "custom-element-definition",
133
+ "name": "grantcodes-app-bar",
134
+ "declaration": {
135
+ "name": "GrantCodesAppBar",
136
+ "module": "/src/components/app-bar/app-bar.component.js"
137
+ }
138
+ }
139
+ ]
140
+ },
141
+ {
142
+ "kind": "javascript-module",
143
+ "path": "src/components/app-bar/index.js",
144
+ "declarations": [],
145
+ "exports": [
146
+ {
147
+ "kind": "js",
148
+ "name": "*",
149
+ "declaration": {
150
+ "name": "*",
151
+ "module": "src/components/app-bar/app-bar.js"
152
+ }
153
+ }
154
+ ]
155
+ },
156
+ {
157
+ "kind": "javascript-module",
158
+ "path": "src/components/avatar/avatar.component.js",
159
+ "declarations": [
160
+ {
161
+ "kind": "class",
162
+ "description": "",
163
+ "name": "GrantCodesAvatar",
164
+ "members": [
165
+ {
166
+ "kind": "field",
167
+ "name": "alt",
168
+ "privacy": "public",
169
+ "type": {
170
+ "text": "string"
171
+ },
172
+ "description": "Alt attribute text",
173
+ "default": "\"\"",
174
+ "attribute": "alt"
175
+ },
176
+ {
177
+ "kind": "method",
178
+ "name": "getAlt"
179
+ },
180
+ {
181
+ "kind": "method",
182
+ "name": "getImg",
183
+ "return": {
184
+ "type": {
185
+ "text": "TemplateResult"
186
+ }
187
+ }
188
+ },
189
+ {
190
+ "kind": "method",
191
+ "name": "getInitials",
192
+ "description": "Helper function to get initials from the name (if not already provided)",
193
+ "return": {
194
+ "type": {
195
+ "text": "String"
196
+ }
197
+ }
198
+ },
199
+ {
200
+ "kind": "field",
201
+ "name": "initials",
202
+ "privacy": "public",
203
+ "type": {
204
+ "text": "string"
205
+ },
206
+ "description": "Optional initials, used when there is no src set",
207
+ "default": "\"\"",
208
+ "attribute": "initials"
209
+ },
210
+ {
211
+ "kind": "field",
212
+ "name": "name",
213
+ "privacy": "public",
214
+ "type": {
215
+ "text": "string"
216
+ },
217
+ "description": "The full name of the person",
218
+ "default": "\"\"",
219
+ "attribute": "name"
220
+ },
221
+ {
222
+ "kind": "field",
223
+ "name": "size",
224
+ "privacy": "public",
225
+ "type": {
226
+ "text": "string"
227
+ },
228
+ "description": "Size variant: 'small', 'medium', or 'large'",
229
+ "default": "\"medium\"",
230
+ "attribute": "size"
231
+ },
232
+ {
233
+ "kind": "field",
234
+ "name": "src",
235
+ "privacy": "public",
236
+ "type": {
237
+ "text": "string"
238
+ },
239
+ "description": "Image source for the avatar",
240
+ "default": "\"\"",
241
+ "attribute": "src"
242
+ }
243
+ ],
244
+ "attributes": [
245
+ {
246
+ "name": "alt",
247
+ "type": {
248
+ "text": "string"
249
+ },
250
+ "description": "Alt attribute text",
251
+ "default": "\"\"",
252
+ "fieldName": "alt"
253
+ },
254
+ {
255
+ "name": "initials",
256
+ "type": {
257
+ "text": "string"
258
+ },
259
+ "description": "Optional initials, used when there is no src set",
260
+ "default": "\"\"",
261
+ "fieldName": "initials"
262
+ },
263
+ {
264
+ "name": "name",
265
+ "type": {
266
+ "text": "string"
267
+ },
268
+ "description": "The full name of the person",
269
+ "default": "\"\"",
270
+ "fieldName": "name"
271
+ },
272
+ {
273
+ "name": "size",
274
+ "type": {
275
+ "text": "string"
276
+ },
277
+ "description": "Size variant: 'small', 'medium', or 'large'",
278
+ "default": "\"medium\"",
279
+ "fieldName": "size"
280
+ },
281
+ {
282
+ "name": "src",
283
+ "type": {
284
+ "text": "string"
285
+ },
286
+ "description": "Image source for the avatar",
287
+ "default": "\"\"",
288
+ "fieldName": "src"
289
+ }
290
+ ],
291
+ "superclass": {
292
+ "name": "LitElement",
293
+ "package": "lit"
294
+ },
295
+ "tagName": "grantcodes-avatar",
296
+ "customElement": true,
297
+ "modulePath": "src/components/avatar/avatar.component.js",
298
+ "definitionPath": "src/components/avatar/avatar.js"
299
+ }
300
+ ],
301
+ "exports": [
302
+ {
303
+ "kind": "js",
304
+ "name": "GrantCodesAvatar",
305
+ "declaration": {
306
+ "name": "GrantCodesAvatar",
307
+ "module": "src/components/avatar/avatar.component.js"
308
+ }
309
+ }
310
+ ]
311
+ },
312
+ {
313
+ "kind": "javascript-module",
314
+ "path": "src/components/avatar/avatar.js",
315
+ "declarations": [],
316
+ "exports": [
317
+ {
318
+ "kind": "js",
319
+ "name": "*",
320
+ "declaration": {
321
+ "name": "*",
322
+ "module": "src/components/avatar/avatar.component.js"
323
+ }
324
+ },
325
+ {
326
+ "kind": "js",
327
+ "name": "default",
328
+ "declaration": {
329
+ "name": "GrantCodesAvatar",
330
+ "module": "src/components/avatar/avatar.js"
331
+ }
332
+ },
333
+ {
334
+ "kind": "custom-element-definition",
335
+ "name": "grantcodes-avatar",
336
+ "declaration": {
337
+ "name": "GrantCodesAvatar",
338
+ "module": "/src/components/avatar/avatar.component.js"
339
+ }
340
+ }
341
+ ]
342
+ },
343
+ {
344
+ "kind": "javascript-module",
345
+ "path": "src/components/avatar/index.js",
346
+ "declarations": [],
347
+ "exports": [
348
+ {
349
+ "kind": "js",
350
+ "name": "*",
351
+ "declaration": {
352
+ "name": "*",
353
+ "module": "src/components/avatar/avatar"
354
+ }
355
+ }
356
+ ]
357
+ },
358
+ {
359
+ "kind": "javascript-module",
360
+ "path": "src/components/badge/badge.component.js",
361
+ "declarations": [
362
+ {
363
+ "kind": "class",
364
+ "description": "",
365
+ "name": "GrantCodesBadge",
366
+ "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
+ {
379
+ "kind": "field",
380
+ "name": "variant",
381
+ "privacy": "public",
382
+ "type": {
383
+ "text": "'primary' | 'success' | 'warning' | 'error' | 'info' | 'neutral'"
384
+ },
385
+ "description": "Visual variant of the badge",
386
+ "default": "\"neutral\"",
387
+ "attribute": "variant"
388
+ }
389
+ ],
390
+ "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
+ {
401
+ "name": "variant",
402
+ "type": {
403
+ "text": "'primary' | 'success' | 'warning' | 'error' | 'info' | 'neutral'"
404
+ },
405
+ "description": "Visual variant of the badge",
406
+ "default": "\"neutral\"",
407
+ "fieldName": "variant"
408
+ }
409
+ ],
410
+ "superclass": {
411
+ "name": "LitElement",
412
+ "package": "lit"
413
+ },
414
+ "tagName": "grantcodes-badge",
415
+ "customElement": true,
416
+ "modulePath": "src/components/badge/badge.component.js",
417
+ "definitionPath": "src/components/badge/badge.js"
418
+ }
419
+ ],
420
+ "exports": [
421
+ {
422
+ "kind": "js",
423
+ "name": "GrantCodesBadge",
424
+ "declaration": {
425
+ "name": "GrantCodesBadge",
426
+ "module": "src/components/badge/badge.component.js"
427
+ }
428
+ }
429
+ ]
430
+ },
431
+ {
432
+ "kind": "javascript-module",
433
+ "path": "src/components/badge/badge.js",
434
+ "declarations": [],
435
+ "exports": [
436
+ {
437
+ "kind": "js",
438
+ "name": "*",
439
+ "declaration": {
440
+ "name": "*",
441
+ "module": "src/components/badge/badge.component.js"
442
+ }
443
+ },
444
+ {
445
+ "kind": "js",
446
+ "name": "default",
447
+ "declaration": {
448
+ "name": "GrantCodesBadge",
449
+ "module": "src/components/badge/badge.js"
450
+ }
451
+ },
452
+ {
453
+ "kind": "custom-element-definition",
454
+ "name": "grantcodes-badge",
455
+ "declaration": {
456
+ "name": "GrantCodesBadge",
457
+ "module": "/src/components/badge/badge.component.js"
458
+ }
459
+ }
460
+ ]
461
+ },
462
+ {
463
+ "kind": "javascript-module",
464
+ "path": "src/components/badge/index.js",
465
+ "declarations": [],
466
+ "exports": [
467
+ {
468
+ "kind": "js",
469
+ "name": "*",
470
+ "declaration": {
471
+ "name": "*",
472
+ "module": "src/components/badge/badge.js"
473
+ }
474
+ }
475
+ ]
476
+ },
477
+ {
478
+ "kind": "javascript-module",
479
+ "path": "src/components/breadcrumb/breadcrumb.component.js",
480
+ "declarations": [
481
+ {
482
+ "kind": "class",
483
+ "description": "",
484
+ "name": "GrantCodesBreadcrumb",
485
+ "members": [
486
+ {
487
+ "kind": "method",
488
+ "name": "_updateSeparators"
489
+ },
490
+ {
491
+ "kind": "field",
492
+ "name": "separator",
493
+ "privacy": "public",
494
+ "type": {
495
+ "text": "string"
496
+ },
497
+ "description": "Custom separator between breadcrumb items",
498
+ "default": "\"/\"",
499
+ "attribute": "separator"
500
+ }
501
+ ],
502
+ "attributes": [
503
+ {
504
+ "name": "separator",
505
+ "type": {
506
+ "text": "string"
507
+ },
508
+ "description": "Custom separator between breadcrumb items",
509
+ "default": "\"/\"",
510
+ "fieldName": "separator"
511
+ }
512
+ ],
513
+ "superclass": {
514
+ "name": "LitElement",
515
+ "package": "lit"
516
+ },
517
+ "tagName": "grantcodes-breadcrumb",
518
+ "customElement": true,
519
+ "modulePath": "src/components/breadcrumb/breadcrumb.component.js",
520
+ "definitionPath": "src/components/breadcrumb/breadcrumb.js"
521
+ },
522
+ {
523
+ "kind": "class",
524
+ "description": "",
525
+ "name": "GrantCodesBreadcrumbItem",
526
+ "members": [
527
+ {
528
+ "kind": "field",
529
+ "name": "current",
530
+ "privacy": "public",
531
+ "type": {
532
+ "text": "boolean"
533
+ },
534
+ "description": "Whether this is the current page",
535
+ "default": "false",
536
+ "attribute": "current"
537
+ },
538
+ {
539
+ "kind": "field",
540
+ "name": "href",
541
+ "privacy": "public",
542
+ "type": {
543
+ "text": "string"
544
+ },
545
+ "description": "URL for the breadcrumb item",
546
+ "default": "\"\"",
547
+ "attribute": "href"
548
+ }
549
+ ],
550
+ "attributes": [
551
+ {
552
+ "name": "current",
553
+ "type": {
554
+ "text": "boolean"
555
+ },
556
+ "description": "Whether this is the current page",
557
+ "default": "false",
558
+ "fieldName": "current"
559
+ },
560
+ {
561
+ "name": "href",
562
+ "type": {
563
+ "text": "string"
564
+ },
565
+ "description": "URL for the breadcrumb item",
566
+ "default": "\"\"",
567
+ "fieldName": "href"
568
+ }
569
+ ],
570
+ "superclass": {
571
+ "name": "LitElement",
572
+ "package": "lit"
573
+ },
574
+ "tagName": "grantcodes-breadcrumb-item",
575
+ "customElement": true,
576
+ "modulePath": "src/components/breadcrumb/breadcrumb.component.js",
577
+ "definitionPath": "src/components/breadcrumb/breadcrumb.js"
578
+ }
579
+ ],
580
+ "exports": [
581
+ {
582
+ "kind": "js",
583
+ "name": "GrantCodesBreadcrumb",
584
+ "declaration": {
585
+ "name": "GrantCodesBreadcrumb",
586
+ "module": "src/components/breadcrumb/breadcrumb.component.js"
587
+ }
588
+ },
589
+ {
590
+ "kind": "js",
591
+ "name": "GrantCodesBreadcrumbItem",
592
+ "declaration": {
593
+ "name": "GrantCodesBreadcrumbItem",
594
+ "module": "src/components/breadcrumb/breadcrumb.component.js"
595
+ }
596
+ }
597
+ ]
598
+ },
599
+ {
600
+ "kind": "javascript-module",
601
+ "path": "src/components/breadcrumb/breadcrumb.js",
602
+ "declarations": [],
603
+ "exports": [
604
+ {
605
+ "kind": "js",
606
+ "name": "*",
607
+ "declaration": {
608
+ "name": "*",
609
+ "module": "src/components/breadcrumb/breadcrumb.component.js"
610
+ }
611
+ },
612
+ {
613
+ "kind": "js",
614
+ "name": "default",
615
+ "declaration": {
616
+ "name": "GrantCodesBreadcrumb",
617
+ "module": "src/components/breadcrumb/breadcrumb.js"
618
+ }
619
+ },
620
+ {
621
+ "kind": "custom-element-definition",
622
+ "name": "grantcodes-breadcrumb",
623
+ "declaration": {
624
+ "name": "GrantCodesBreadcrumb",
625
+ "module": "/src/components/breadcrumb/breadcrumb.component.js"
626
+ }
627
+ },
628
+ {
629
+ "kind": "custom-element-definition",
630
+ "name": "grantcodes-breadcrumb-item",
631
+ "declaration": {
632
+ "name": "GrantCodesBreadcrumbItem",
633
+ "module": "/src/components/breadcrumb/breadcrumb.component.js"
634
+ }
635
+ }
636
+ ]
637
+ },
638
+ {
639
+ "kind": "javascript-module",
640
+ "path": "src/components/breadcrumb/index.js",
641
+ "declarations": [],
642
+ "exports": [
643
+ {
644
+ "kind": "js",
645
+ "name": "*",
646
+ "declaration": {
647
+ "name": "*",
648
+ "module": "src/components/breadcrumb/breadcrumb.js"
649
+ }
650
+ }
651
+ ]
652
+ },
653
+ {
654
+ "kind": "javascript-module",
655
+ "path": "src/components/button-group/button-group.component.js",
656
+ "declarations": [
657
+ {
658
+ "kind": "class",
659
+ "description": "",
660
+ "name": "GrantCodesButtonGroup",
661
+ "members": [],
662
+ "superclass": {
663
+ "name": "LitElement",
664
+ "package": "lit"
665
+ },
666
+ "tagName": "grantcodes-button-group",
667
+ "customElement": true,
668
+ "modulePath": "src/components/button-group/button-group.component.js",
669
+ "definitionPath": "src/components/button-group/button-group.js"
670
+ }
671
+ ],
672
+ "exports": [
673
+ {
674
+ "kind": "js",
675
+ "name": "GrantCodesButtonGroup",
676
+ "declaration": {
677
+ "name": "GrantCodesButtonGroup",
678
+ "module": "src/components/button-group/button-group.component.js"
679
+ }
680
+ }
681
+ ]
682
+ },
683
+ {
684
+ "kind": "javascript-module",
685
+ "path": "src/components/button-group/button-group.js",
686
+ "declarations": [],
687
+ "exports": [
688
+ {
689
+ "kind": "js",
690
+ "name": "*",
691
+ "declaration": {
692
+ "name": "*",
693
+ "module": "src/components/button-group/button-group.component.js"
694
+ }
695
+ },
696
+ {
697
+ "kind": "js",
698
+ "name": "default",
699
+ "declaration": {
700
+ "name": "GrantCodesButtonGroup",
701
+ "module": "src/components/button-group/button-group.js"
702
+ }
703
+ },
704
+ {
705
+ "kind": "custom-element-definition",
706
+ "name": "grantcodes-button-group",
707
+ "declaration": {
708
+ "name": "GrantCodesButtonGroup",
709
+ "module": "/src/components/button-group/button-group.component.js"
710
+ }
711
+ }
712
+ ]
713
+ },
714
+ {
715
+ "kind": "javascript-module",
716
+ "path": "src/components/button-group/index.js",
717
+ "declarations": [],
718
+ "exports": [
719
+ {
720
+ "kind": "js",
721
+ "name": "*",
722
+ "declaration": {
723
+ "name": "*",
724
+ "module": "src/components/button-group/button-group"
725
+ }
726
+ }
727
+ ]
728
+ },
729
+ {
730
+ "kind": "javascript-module",
731
+ "path": "src/components/button/button.component.js",
732
+ "declarations": [
733
+ {
734
+ "kind": "class",
735
+ "description": "",
736
+ "name": "GrantCodesButton",
737
+ "members": [
738
+ {
739
+ "kind": "field",
740
+ "name": "disabled",
741
+ "privacy": "public",
742
+ "type": {
743
+ "text": "boolean"
744
+ },
745
+ "default": "false",
746
+ "attribute": "disabled",
747
+ "reflects": true
748
+ },
749
+ {
750
+ "kind": "field",
751
+ "name": "href",
752
+ "privacy": "public",
753
+ "type": {
754
+ "text": "string"
755
+ },
756
+ "default": "\"\"",
757
+ "attribute": "href"
758
+ },
759
+ {
760
+ "kind": "field",
761
+ "name": "name",
762
+ "privacy": "public",
763
+ "type": {
764
+ "text": "string"
765
+ },
766
+ "default": "\"\"",
767
+ "attribute": "name"
768
+ },
769
+ {
770
+ "kind": "field",
771
+ "name": "type",
772
+ "privacy": "public",
773
+ "type": {
774
+ "text": "string"
775
+ },
776
+ "default": "\"button\"",
777
+ "attribute": "type"
778
+ },
779
+ {
780
+ "kind": "field",
781
+ "name": "value",
782
+ "privacy": "public",
783
+ "type": {
784
+ "text": "string"
785
+ },
786
+ "default": "\"\"",
787
+ "attribute": "value"
788
+ }
789
+ ],
790
+ "attributes": [
791
+ {
792
+ "name": "disabled",
793
+ "type": {
794
+ "text": "boolean"
795
+ },
796
+ "default": "false",
797
+ "fieldName": "disabled"
798
+ },
799
+ {
800
+ "name": "href",
801
+ "type": {
802
+ "text": "string"
803
+ },
804
+ "default": "\"\"",
805
+ "fieldName": "href"
806
+ },
807
+ {
808
+ "name": "name",
809
+ "type": {
810
+ "text": "string"
811
+ },
812
+ "default": "\"\"",
813
+ "fieldName": "name"
814
+ },
815
+ {
816
+ "name": "type",
817
+ "type": {
818
+ "text": "string"
819
+ },
820
+ "default": "\"button\"",
821
+ "fieldName": "type"
822
+ },
823
+ {
824
+ "name": "value",
825
+ "type": {
826
+ "text": "string"
827
+ },
828
+ "default": "\"\"",
829
+ "fieldName": "value"
830
+ }
831
+ ],
832
+ "superclass": {
833
+ "name": "LitElement",
834
+ "package": "lit"
835
+ },
836
+ "tagName": "grantcodes-button",
837
+ "customElement": true,
838
+ "modulePath": "src/components/button/button.component.js",
839
+ "definitionPath": "src/components/button/button.js"
840
+ }
841
+ ],
842
+ "exports": [
843
+ {
844
+ "kind": "js",
845
+ "name": "GrantCodesButton",
846
+ "declaration": {
847
+ "name": "GrantCodesButton",
848
+ "module": "src/components/button/button.component.js"
849
+ }
850
+ }
851
+ ]
852
+ },
853
+ {
854
+ "kind": "javascript-module",
855
+ "path": "src/components/button/button.js",
856
+ "declarations": [],
857
+ "exports": [
858
+ {
859
+ "kind": "js",
860
+ "name": "*",
861
+ "declaration": {
862
+ "name": "*",
863
+ "module": "src/components/button/button.component.js"
864
+ }
865
+ },
866
+ {
867
+ "kind": "js",
868
+ "name": "default",
869
+ "declaration": {
870
+ "name": "GrantCodesButton",
871
+ "module": "src/components/button/button.js"
872
+ }
873
+ },
874
+ {
875
+ "kind": "custom-element-definition",
876
+ "name": "grantcodes-button",
877
+ "declaration": {
878
+ "name": "GrantCodesButton",
879
+ "module": "/src/components/button/button.component.js"
880
+ }
881
+ }
882
+ ]
883
+ },
884
+ {
885
+ "kind": "javascript-module",
886
+ "path": "src/components/button/index.js",
887
+ "declarations": [],
888
+ "exports": [
889
+ {
890
+ "kind": "js",
891
+ "name": "*",
892
+ "declaration": {
893
+ "name": "*",
894
+ "module": "src/components/button/button"
895
+ }
896
+ }
897
+ ]
898
+ },
899
+ {
900
+ "kind": "javascript-module",
901
+ "path": "src/components/card/card.component.js",
902
+ "declarations": [
903
+ {
904
+ "kind": "class",
905
+ "description": "",
906
+ "name": "GrantCodesCard",
907
+ "members": [],
908
+ "superclass": {
909
+ "name": "LitElement",
910
+ "package": "lit"
911
+ },
912
+ "tagName": "grantcodes-card",
913
+ "customElement": true,
914
+ "modulePath": "src/components/card/card.component.js",
915
+ "definitionPath": "src/components/card/card.js"
916
+ }
917
+ ],
918
+ "exports": [
919
+ {
920
+ "kind": "js",
921
+ "name": "GrantCodesCard",
922
+ "declaration": {
923
+ "name": "GrantCodesCard",
924
+ "module": "src/components/card/card.component.js"
925
+ }
926
+ }
927
+ ]
928
+ },
929
+ {
930
+ "kind": "javascript-module",
931
+ "path": "src/components/card/card.js",
932
+ "declarations": [],
933
+ "exports": [
934
+ {
935
+ "kind": "js",
936
+ "name": "*",
937
+ "declaration": {
938
+ "name": "*",
939
+ "module": "src/components/card/card.component.js"
940
+ }
941
+ },
942
+ {
943
+ "kind": "js",
944
+ "name": "default",
945
+ "declaration": {
946
+ "name": "GrantCodesCard",
947
+ "module": "src/components/card/card.js"
948
+ }
949
+ },
950
+ {
951
+ "kind": "custom-element-definition",
952
+ "name": "grantcodes-card",
953
+ "declaration": {
954
+ "name": "GrantCodesCard",
955
+ "module": "/src/components/card/card.component.js"
956
+ }
957
+ }
958
+ ]
959
+ },
960
+ {
961
+ "kind": "javascript-module",
962
+ "path": "src/components/card/index.js",
963
+ "declarations": [],
964
+ "exports": [
965
+ {
966
+ "kind": "js",
967
+ "name": "*",
968
+ "declaration": {
969
+ "name": "*",
970
+ "module": "src/components/card/card"
971
+ }
972
+ }
973
+ ]
974
+ },
975
+ {
976
+ "kind": "javascript-module",
977
+ "path": "src/components/code-preview/code-preview.component.js",
978
+ "declarations": [
979
+ {
980
+ "kind": "class",
981
+ "description": "",
982
+ "name": "GrantCodesCodePreview",
983
+ "members": [
984
+ {
985
+ "kind": "field",
986
+ "name": "codePreview",
987
+ "type": {
988
+ "text": "null"
989
+ },
990
+ "default": "null"
991
+ },
992
+ {
993
+ "kind": "method",
994
+ "name": "doHighlight"
995
+ },
996
+ {
997
+ "kind": "field",
998
+ "name": "language",
999
+ "privacy": "public",
1000
+ "type": {
1001
+ "text": "string"
1002
+ },
1003
+ "default": "\"html\"",
1004
+ "attribute": "language"
1005
+ },
1006
+ {
1007
+ "kind": "field",
1008
+ "name": "theme",
1009
+ "privacy": "public",
1010
+ "type": {
1011
+ "text": "string"
1012
+ },
1013
+ "default": "\"aurora-x\"",
1014
+ "attribute": "theme"
1015
+ }
1016
+ ],
1017
+ "attributes": [
1018
+ {
1019
+ "name": "language",
1020
+ "type": {
1021
+ "text": "string"
1022
+ },
1023
+ "default": "\"html\"",
1024
+ "fieldName": "language"
1025
+ },
1026
+ {
1027
+ "name": "theme",
1028
+ "type": {
1029
+ "text": "string"
1030
+ },
1031
+ "default": "\"aurora-x\"",
1032
+ "fieldName": "theme"
1033
+ }
1034
+ ],
1035
+ "superclass": {
1036
+ "name": "LitElement",
1037
+ "package": "lit"
1038
+ },
1039
+ "tagName": "grantcodes-code-preview",
1040
+ "customElement": true,
1041
+ "modulePath": "src/components/code-preview/code-preview.component.js",
1042
+ "definitionPath": "src/components/code-preview/code-preview.js"
1043
+ }
1044
+ ],
1045
+ "exports": [
1046
+ {
1047
+ "kind": "js",
1048
+ "name": "GrantCodesCodePreview",
1049
+ "declaration": {
1050
+ "name": "GrantCodesCodePreview",
1051
+ "module": "src/components/code-preview/code-preview.component.js"
1052
+ }
1053
+ }
1054
+ ]
1055
+ },
1056
+ {
1057
+ "kind": "javascript-module",
1058
+ "path": "src/components/code-preview/code-preview.js",
1059
+ "declarations": [],
1060
+ "exports": [
1061
+ {
1062
+ "kind": "js",
1063
+ "name": "*",
1064
+ "declaration": {
1065
+ "name": "*",
1066
+ "module": "src/components/code-preview/code-preview.component.js"
1067
+ }
1068
+ },
1069
+ {
1070
+ "kind": "js",
1071
+ "name": "default",
1072
+ "declaration": {
1073
+ "name": "GrantCodesCodePreview",
1074
+ "module": "src/components/code-preview/code-preview.js"
1075
+ }
1076
+ },
1077
+ {
1078
+ "kind": "custom-element-definition",
1079
+ "name": "grantcodes-code-preview",
1080
+ "declaration": {
1081
+ "name": "GrantCodesCodePreview",
1082
+ "module": "/src/components/code-preview/code-preview.component.js"
1083
+ }
1084
+ }
1085
+ ]
1086
+ },
1087
+ {
1088
+ "kind": "javascript-module",
1089
+ "path": "src/components/code-preview/index.js",
1090
+ "declarations": [],
1091
+ "exports": [
1092
+ {
1093
+ "kind": "js",
1094
+ "name": "*",
1095
+ "declaration": {
1096
+ "name": "*",
1097
+ "module": "src/components/code-preview/code-preview"
1098
+ }
1099
+ }
1100
+ ]
1101
+ },
1102
+ {
1103
+ "kind": "javascript-module",
1104
+ "path": "src/components/container/container.component.js",
1105
+ "declarations": [
1106
+ {
1107
+ "kind": "class",
1108
+ "description": "",
1109
+ "name": "GrantCodesContainer",
1110
+ "members": [
1111
+ {
1112
+ "kind": "field",
1113
+ "name": "align",
1114
+ "privacy": "public",
1115
+ "type": {
1116
+ "text": "string"
1117
+ },
1118
+ "default": "\"default\"",
1119
+ "attribute": "align"
1120
+ },
1121
+ {
1122
+ "kind": "field",
1123
+ "name": "nopad",
1124
+ "privacy": "public",
1125
+ "type": {
1126
+ "text": "boolean"
1127
+ },
1128
+ "default": "false",
1129
+ "attribute": "nopad"
1130
+ }
1131
+ ],
1132
+ "attributes": [
1133
+ {
1134
+ "name": "align",
1135
+ "type": {
1136
+ "text": "string"
1137
+ },
1138
+ "default": "\"default\"",
1139
+ "fieldName": "align"
1140
+ },
1141
+ {
1142
+ "name": "nopad",
1143
+ "type": {
1144
+ "text": "boolean"
1145
+ },
1146
+ "default": "false",
1147
+ "fieldName": "nopad"
1148
+ }
1149
+ ],
1150
+ "superclass": {
1151
+ "name": "LitElement",
1152
+ "package": "lit"
1153
+ },
1154
+ "tagName": "grantcodes-container",
1155
+ "customElement": true,
1156
+ "modulePath": "src/components/container/container.component.js",
1157
+ "definitionPath": "src/components/container/container.js"
1158
+ }
1159
+ ],
1160
+ "exports": [
1161
+ {
1162
+ "kind": "js",
1163
+ "name": "GrantCodesContainer",
1164
+ "declaration": {
1165
+ "name": "GrantCodesContainer",
1166
+ "module": "src/components/container/container.component.js"
1167
+ }
1168
+ }
1169
+ ]
1170
+ },
1171
+ {
1172
+ "kind": "javascript-module",
1173
+ "path": "src/components/container/container.js",
1174
+ "declarations": [],
1175
+ "exports": [
1176
+ {
1177
+ "kind": "js",
1178
+ "name": "*",
1179
+ "declaration": {
1180
+ "name": "*",
1181
+ "module": "src/components/container/container.component.js"
1182
+ }
1183
+ },
1184
+ {
1185
+ "kind": "js",
1186
+ "name": "default",
1187
+ "declaration": {
1188
+ "name": "GrantCodesContainer",
1189
+ "module": "src/components/container/container.js"
1190
+ }
1191
+ },
1192
+ {
1193
+ "kind": "custom-element-definition",
1194
+ "name": "grantcodes-container",
1195
+ "declaration": {
1196
+ "name": "GrantCodesContainer",
1197
+ "module": "/src/components/container/container.component.js"
1198
+ }
1199
+ }
1200
+ ]
1201
+ },
1202
+ {
1203
+ "kind": "javascript-module",
1204
+ "path": "src/components/container/index.js",
1205
+ "declarations": [],
1206
+ "exports": [
1207
+ {
1208
+ "kind": "js",
1209
+ "name": "*",
1210
+ "declaration": {
1211
+ "name": "*",
1212
+ "module": "src/components/container/container"
1213
+ }
1214
+ }
1215
+ ]
1216
+ },
1217
+ {
1218
+ "kind": "javascript-module",
1219
+ "path": "src/components/dialog/dialog.component.js",
1220
+ "declarations": [
1221
+ {
1222
+ "kind": "class",
1223
+ "description": "",
1224
+ "name": "GrantCodesDialog",
1225
+ "members": [
1226
+ {
1227
+ "kind": "method",
1228
+ "name": "_handleOpenChange"
1229
+ },
1230
+ {
1231
+ "kind": "field",
1232
+ "name": "dismissible",
1233
+ "privacy": "public",
1234
+ "type": {
1235
+ "text": "boolean"
1236
+ },
1237
+ "default": "true",
1238
+ "attribute": "dismissible"
1239
+ },
1240
+ {
1241
+ "kind": "method",
1242
+ "name": "dismissTemplate"
1243
+ },
1244
+ {
1245
+ "kind": "field",
1246
+ "name": "open",
1247
+ "privacy": "public",
1248
+ "type": {
1249
+ "text": "boolean"
1250
+ },
1251
+ "default": "false",
1252
+ "attribute": "open",
1253
+ "reflects": true
1254
+ }
1255
+ ],
1256
+ "attributes": [
1257
+ {
1258
+ "name": "dismissible",
1259
+ "type": {
1260
+ "text": "boolean"
1261
+ },
1262
+ "default": "true",
1263
+ "fieldName": "dismissible"
1264
+ },
1265
+ {
1266
+ "name": "open",
1267
+ "type": {
1268
+ "text": "boolean"
1269
+ },
1270
+ "default": "false",
1271
+ "fieldName": "open"
1272
+ }
1273
+ ],
1274
+ "superclass": {
1275
+ "name": "LitElement",
1276
+ "package": "lit"
1277
+ },
1278
+ "tagName": "grantcodes-dialog",
1279
+ "customElement": true,
1280
+ "modulePath": "src/components/dialog/dialog.component.js",
1281
+ "definitionPath": "src/components/dialog/dialog.js"
1282
+ }
1283
+ ],
1284
+ "exports": [
1285
+ {
1286
+ "kind": "js",
1287
+ "name": "GrantCodesDialog",
1288
+ "declaration": {
1289
+ "name": "GrantCodesDialog",
1290
+ "module": "src/components/dialog/dialog.component.js"
1291
+ }
1292
+ }
1293
+ ]
1294
+ },
1295
+ {
1296
+ "kind": "javascript-module",
1297
+ "path": "src/components/dialog/dialog.js",
1298
+ "declarations": [],
1299
+ "exports": [
1300
+ {
1301
+ "kind": "js",
1302
+ "name": "*",
1303
+ "declaration": {
1304
+ "name": "*",
1305
+ "module": "src/components/dialog/dialog.component.js"
1306
+ }
1307
+ },
1308
+ {
1309
+ "kind": "js",
1310
+ "name": "default",
1311
+ "declaration": {
1312
+ "name": "GrantCodesDialog",
1313
+ "module": "src/components/dialog/dialog.js"
1314
+ }
1315
+ },
1316
+ {
1317
+ "kind": "custom-element-definition",
1318
+ "name": "grantcodes-dialog",
1319
+ "declaration": {
1320
+ "name": "GrantCodesDialog",
1321
+ "module": "/src/components/dialog/dialog.component.js"
1322
+ }
1323
+ }
1324
+ ]
1325
+ },
1326
+ {
1327
+ "kind": "javascript-module",
1328
+ "path": "src/components/dialog/index.js",
1329
+ "declarations": [],
1330
+ "exports": [
1331
+ {
1332
+ "kind": "js",
1333
+ "name": "*",
1334
+ "declaration": {
1335
+ "name": "*",
1336
+ "module": "src/components/dialog/dialog"
1337
+ }
1338
+ }
1339
+ ]
1340
+ },
1341
+ {
1342
+ "kind": "javascript-module",
1343
+ "path": "src/components/dropdown/dropdown.component.js",
1344
+ "declarations": [
1345
+ {
1346
+ "kind": "class",
1347
+ "description": "",
1348
+ "name": "GrantCodesDropdown",
1349
+ "members": [
1350
+ {
1351
+ "kind": "method",
1352
+ "name": "_handleDocumentClick",
1353
+ "parameters": [
1354
+ {
1355
+ "name": "e"
1356
+ }
1357
+ ]
1358
+ },
1359
+ {
1360
+ "kind": "method",
1361
+ "name": "_handleEscape",
1362
+ "parameters": [
1363
+ {
1364
+ "name": "e"
1365
+ }
1366
+ ]
1367
+ },
1368
+ {
1369
+ "kind": "method",
1370
+ "name": "_handleMenuKeydown",
1371
+ "parameters": [
1372
+ {
1373
+ "name": "e"
1374
+ }
1375
+ ]
1376
+ },
1377
+ {
1378
+ "kind": "method",
1379
+ "name": "_handleTriggerClick"
1380
+ },
1381
+ {
1382
+ "kind": "field",
1383
+ "name": "_triggerElement",
1384
+ "privacy": "public",
1385
+ "type": {
1386
+ "text": "HTMLElement | null"
1387
+ },
1388
+ "description": "Reference to the trigger element",
1389
+ "default": "null",
1390
+ "attribute": "_triggerElement"
1391
+ },
1392
+ {
1393
+ "kind": "field",
1394
+ "name": "menuId",
1395
+ "readonly": true
1396
+ },
1397
+ {
1398
+ "kind": "field",
1399
+ "name": "open",
1400
+ "privacy": "public",
1401
+ "type": {
1402
+ "text": "boolean"
1403
+ },
1404
+ "description": "Whether the dropdown is open",
1405
+ "default": "false",
1406
+ "attribute": "open",
1407
+ "reflects": true
1408
+ },
1409
+ {
1410
+ "kind": "field",
1411
+ "name": "placement",
1412
+ "privacy": "public",
1413
+ "type": {
1414
+ "text": "'bottom-start' | 'bottom-end' | 'top-start' | 'top-end'"
1415
+ },
1416
+ "description": "Placement of the dropdown menu",
1417
+ "default": "\"bottom-start\"",
1418
+ "attribute": "placement"
1419
+ }
1420
+ ],
1421
+ "events": [
1422
+ {
1423
+ "name": "toggle",
1424
+ "type": {
1425
+ "text": "CustomEvent"
1426
+ }
1427
+ }
1428
+ ],
1429
+ "attributes": [
1430
+ {
1431
+ "name": "_triggerElement",
1432
+ "type": {
1433
+ "text": "HTMLElement | null"
1434
+ },
1435
+ "description": "Reference to the trigger element",
1436
+ "default": "null",
1437
+ "fieldName": "_triggerElement"
1438
+ },
1439
+ {
1440
+ "name": "open",
1441
+ "type": {
1442
+ "text": "boolean"
1443
+ },
1444
+ "description": "Whether the dropdown is open",
1445
+ "default": "false",
1446
+ "fieldName": "open"
1447
+ },
1448
+ {
1449
+ "name": "placement",
1450
+ "type": {
1451
+ "text": "'bottom-start' | 'bottom-end' | 'top-start' | 'top-end'"
1452
+ },
1453
+ "description": "Placement of the dropdown menu",
1454
+ "default": "\"bottom-start\"",
1455
+ "fieldName": "placement"
1456
+ }
1457
+ ],
1458
+ "superclass": {
1459
+ "name": "LitElement",
1460
+ "package": "lit"
1461
+ },
1462
+ "tagName": "grantcodes-dropdown",
1463
+ "customElement": true,
1464
+ "modulePath": "src/components/dropdown/dropdown.component.js",
1465
+ "definitionPath": "src/components/dropdown/dropdown.js"
1466
+ },
1467
+ {
1468
+ "kind": "class",
1469
+ "description": "",
1470
+ "name": "GrantCodesDropdownItem",
1471
+ "members": [
1472
+ {
1473
+ "kind": "method",
1474
+ "name": "_handleClick",
1475
+ "parameters": [
1476
+ {
1477
+ "name": "e"
1478
+ }
1479
+ ]
1480
+ },
1481
+ {
1482
+ "kind": "field",
1483
+ "name": "disabled",
1484
+ "privacy": "public",
1485
+ "type": {
1486
+ "text": "boolean"
1487
+ },
1488
+ "description": "Whether the item is disabled",
1489
+ "default": "false",
1490
+ "attribute": "disabled"
1491
+ }
1492
+ ],
1493
+ "events": [
1494
+ {
1495
+ "name": "select",
1496
+ "type": {
1497
+ "text": "CustomEvent"
1498
+ }
1499
+ }
1500
+ ],
1501
+ "attributes": [
1502
+ {
1503
+ "name": "disabled",
1504
+ "type": {
1505
+ "text": "boolean"
1506
+ },
1507
+ "description": "Whether the item is disabled",
1508
+ "default": "false",
1509
+ "fieldName": "disabled"
1510
+ }
1511
+ ],
1512
+ "superclass": {
1513
+ "name": "LitElement",
1514
+ "package": "lit"
1515
+ },
1516
+ "tagName": "grantcodes-dropdown-item",
1517
+ "customElement": true,
1518
+ "modulePath": "src/components/dropdown/dropdown.component.js",
1519
+ "definitionPath": "src/components/dropdown/dropdown.js"
1520
+ }
1521
+ ],
1522
+ "exports": [
1523
+ {
1524
+ "kind": "js",
1525
+ "name": "GrantCodesDropdown",
1526
+ "declaration": {
1527
+ "name": "GrantCodesDropdown",
1528
+ "module": "src/components/dropdown/dropdown.component.js"
1529
+ }
1530
+ },
1531
+ {
1532
+ "kind": "js",
1533
+ "name": "GrantCodesDropdownItem",
1534
+ "declaration": {
1535
+ "name": "GrantCodesDropdownItem",
1536
+ "module": "src/components/dropdown/dropdown.component.js"
1537
+ }
1538
+ }
1539
+ ]
1540
+ },
1541
+ {
1542
+ "kind": "javascript-module",
1543
+ "path": "src/components/dropdown/dropdown.js",
1544
+ "declarations": [],
1545
+ "exports": [
1546
+ {
1547
+ "kind": "js",
1548
+ "name": "*",
1549
+ "declaration": {
1550
+ "name": "*",
1551
+ "module": "src/components/dropdown/dropdown.component.js"
1552
+ }
1553
+ },
1554
+ {
1555
+ "kind": "js",
1556
+ "name": "default",
1557
+ "declaration": {
1558
+ "name": "GrantCodesDropdown",
1559
+ "module": "src/components/dropdown/dropdown.js"
1560
+ }
1561
+ },
1562
+ {
1563
+ "kind": "custom-element-definition",
1564
+ "name": "grantcodes-dropdown",
1565
+ "declaration": {
1566
+ "name": "GrantCodesDropdown",
1567
+ "module": "/src/components/dropdown/dropdown.component.js"
1568
+ }
1569
+ },
1570
+ {
1571
+ "kind": "custom-element-definition",
1572
+ "name": "grantcodes-dropdown-item",
1573
+ "declaration": {
1574
+ "name": "GrantCodesDropdownItem",
1575
+ "module": "/src/components/dropdown/dropdown.component.js"
1576
+ }
1577
+ }
1578
+ ]
1579
+ },
1580
+ {
1581
+ "kind": "javascript-module",
1582
+ "path": "src/components/dropdown/index.js",
1583
+ "declarations": [],
1584
+ "exports": [
1585
+ {
1586
+ "kind": "js",
1587
+ "name": "*",
1588
+ "declaration": {
1589
+ "name": "*",
1590
+ "module": "src/components/dropdown/dropdown.js"
1591
+ }
1592
+ }
1593
+ ]
1594
+ },
1595
+ {
1596
+ "kind": "javascript-module",
1597
+ "path": "src/components/dropzone/dropzone.component.js",
1598
+ "declarations": [
1599
+ {
1600
+ "kind": "class",
1601
+ "description": "",
1602
+ "name": "GrantCodesDropzone",
1603
+ "members": [
1604
+ {
1605
+ "kind": "field",
1606
+ "name": "_clearFullscreenTimeout"
1607
+ },
1608
+ {
1609
+ "kind": "field",
1610
+ "name": "_disableFullscreen"
1611
+ },
1612
+ {
1613
+ "kind": "field",
1614
+ "name": "_dragDepth",
1615
+ "type": {
1616
+ "text": "number"
1617
+ },
1618
+ "default": "0"
1619
+ },
1620
+ {
1621
+ "kind": "field",
1622
+ "name": "_enableFullscreen"
1623
+ },
1624
+ {
1625
+ "kind": "field",
1626
+ "name": "_forceDisableFullscreen"
1627
+ },
1628
+ {
1629
+ "kind": "field",
1630
+ "name": "_fullscreen",
1631
+ "type": {
1632
+ "text": "boolean"
1633
+ },
1634
+ "default": "false"
1635
+ },
1636
+ {
1637
+ "kind": "field",
1638
+ "name": "_fullscreenTimeout",
1639
+ "type": {
1640
+ "text": "number | null"
1641
+ },
1642
+ "default": "null"
1643
+ },
1644
+ {
1645
+ "kind": "field",
1646
+ "name": "_handleDragOver"
1647
+ },
1648
+ {
1649
+ "kind": "field",
1650
+ "name": "_handleDrop"
1651
+ },
1652
+ {
1653
+ "kind": "field",
1654
+ "name": "_input",
1655
+ "type": {
1656
+ "text": "HTMLInputElement[]"
1657
+ },
1658
+ "default": "[]"
1659
+ },
1660
+ {
1661
+ "kind": "field",
1662
+ "name": "_placeholder",
1663
+ "type": {
1664
+ "text": "string"
1665
+ },
1666
+ "default": "\"\""
1667
+ },
1668
+ {
1669
+ "kind": "field",
1670
+ "name": "fullscreenOnDrag",
1671
+ "privacy": "public",
1672
+ "type": {
1673
+ "text": "boolean"
1674
+ },
1675
+ "default": "false",
1676
+ "attribute": "fullscreenOnDrag",
1677
+ "reflects": true
1678
+ }
1679
+ ],
1680
+ "attributes": [
1681
+ {
1682
+ "name": "fullscreenOnDrag",
1683
+ "type": {
1684
+ "text": "boolean"
1685
+ },
1686
+ "default": "false",
1687
+ "fieldName": "fullscreenOnDrag"
1688
+ }
1689
+ ],
1690
+ "superclass": {
1691
+ "name": "LitElement",
1692
+ "package": "lit"
1693
+ },
1694
+ "tagName": "grantcodes-dropzone",
1695
+ "customElement": true,
1696
+ "modulePath": "src/components/dropzone/dropzone.component.js",
1697
+ "definitionPath": "src/components/dropzone/dropzone.js"
1698
+ }
1699
+ ],
1700
+ "exports": [
1701
+ {
1702
+ "kind": "js",
1703
+ "name": "GrantCodesDropzone",
1704
+ "declaration": {
1705
+ "name": "GrantCodesDropzone",
1706
+ "module": "src/components/dropzone/dropzone.component.js"
1707
+ }
1708
+ }
1709
+ ]
1710
+ },
1711
+ {
1712
+ "kind": "javascript-module",
1713
+ "path": "src/components/dropzone/dropzone.js",
1714
+ "declarations": [],
1715
+ "exports": [
1716
+ {
1717
+ "kind": "js",
1718
+ "name": "*",
1719
+ "declaration": {
1720
+ "name": "*",
1721
+ "module": "src/components/dropzone/dropzone.component.js"
1722
+ }
1723
+ },
1724
+ {
1725
+ "kind": "js",
1726
+ "name": "default",
1727
+ "declaration": {
1728
+ "name": "GrantCodesDropzone",
1729
+ "module": "src/components/dropzone/dropzone.js"
1730
+ }
1731
+ },
1732
+ {
1733
+ "kind": "custom-element-definition",
1734
+ "name": "grantcodes-dropzone",
1735
+ "declaration": {
1736
+ "name": "GrantCodesDropzone",
1737
+ "module": "/src/components/dropzone/dropzone.component.js"
1738
+ }
1739
+ }
1740
+ ]
1741
+ },
1742
+ {
1743
+ "kind": "javascript-module",
1744
+ "path": "src/components/dropzone/index.js",
1745
+ "declarations": [],
1746
+ "exports": [
1747
+ {
1748
+ "kind": "js",
1749
+ "name": "*",
1750
+ "declaration": {
1751
+ "name": "*",
1752
+ "module": "src/components/dropzone/dropzone"
1753
+ }
1754
+ }
1755
+ ]
1756
+ },
1757
+ {
1758
+ "kind": "javascript-module",
1759
+ "path": "src/components/footer/footer.component.js",
1760
+ "declarations": [
1761
+ {
1762
+ "kind": "class",
1763
+ "description": "",
1764
+ "name": "GrantCodesFooter",
1765
+ "members": [
1766
+ {
1767
+ "kind": "field",
1768
+ "name": "columns",
1769
+ "privacy": "public",
1770
+ "type": {
1771
+ "text": "number"
1772
+ },
1773
+ "description": "Number of columns in the footer",
1774
+ "default": "3",
1775
+ "attribute": "columns"
1776
+ }
1777
+ ],
1778
+ "attributes": [
1779
+ {
1780
+ "name": "columns",
1781
+ "type": {
1782
+ "text": "number"
1783
+ },
1784
+ "description": "Number of columns in the footer",
1785
+ "default": "3",
1786
+ "fieldName": "columns"
1787
+ }
1788
+ ],
1789
+ "superclass": {
1790
+ "name": "LitElement",
1791
+ "package": "lit"
1792
+ },
1793
+ "tagName": "grantcodes-footer",
1794
+ "customElement": true,
1795
+ "modulePath": "src/components/footer/footer.component.js",
1796
+ "definitionPath": "src/components/footer/footer.js"
1797
+ }
1798
+ ],
1799
+ "exports": [
1800
+ {
1801
+ "kind": "js",
1802
+ "name": "GrantCodesFooter",
1803
+ "declaration": {
1804
+ "name": "GrantCodesFooter",
1805
+ "module": "src/components/footer/footer.component.js"
1806
+ }
1807
+ }
1808
+ ]
1809
+ },
1810
+ {
1811
+ "kind": "javascript-module",
1812
+ "path": "src/components/footer/footer.js",
1813
+ "declarations": [],
1814
+ "exports": [
1815
+ {
1816
+ "kind": "js",
1817
+ "name": "*",
1818
+ "declaration": {
1819
+ "name": "*",
1820
+ "module": "src/components/footer/footer.component.js"
1821
+ }
1822
+ },
1823
+ {
1824
+ "kind": "js",
1825
+ "name": "default",
1826
+ "declaration": {
1827
+ "name": "GrantCodesFooter",
1828
+ "module": "src/components/footer/footer.js"
1829
+ }
1830
+ },
1831
+ {
1832
+ "kind": "custom-element-definition",
1833
+ "name": "grantcodes-footer",
1834
+ "declaration": {
1835
+ "name": "GrantCodesFooter",
1836
+ "module": "/src/components/footer/footer.component.js"
1837
+ }
1838
+ }
1839
+ ]
1840
+ },
1841
+ {
1842
+ "kind": "javascript-module",
1843
+ "path": "src/components/footer/index.js",
1844
+ "declarations": [],
1845
+ "exports": [
1846
+ {
1847
+ "kind": "js",
1848
+ "name": "*",
1849
+ "declaration": {
1850
+ "name": "*",
1851
+ "module": "src/components/footer/footer.js"
1852
+ }
1853
+ }
1854
+ ]
1855
+ },
1856
+ {
1857
+ "kind": "javascript-module",
1858
+ "path": "src/components/form-field/form-field.component.js",
1859
+ "declarations": [
1860
+ {
1861
+ "kind": "class",
1862
+ "description": "",
1863
+ "name": "GrantCodesFormField",
1864
+ "members": [
1865
+ {
1866
+ "kind": "field",
1867
+ "name": "ariaDescribedBy",
1868
+ "readonly": true
1869
+ },
1870
+ {
1871
+ "kind": "field",
1872
+ "name": "error",
1873
+ "privacy": "public",
1874
+ "type": {
1875
+ "text": "string"
1876
+ },
1877
+ "default": "undefined",
1878
+ "attribute": "error"
1879
+ },
1880
+ {
1881
+ "kind": "field",
1882
+ "name": "errorId",
1883
+ "readonly": true
1884
+ },
1885
+ {
1886
+ "kind": "method",
1887
+ "name": "errorTemplate"
1888
+ },
1889
+ {
1890
+ "kind": "field",
1891
+ "name": "formAssociated",
1892
+ "type": {
1893
+ "text": "boolean"
1894
+ },
1895
+ "static": true,
1896
+ "default": "true"
1897
+ },
1898
+ {
1899
+ "kind": "field",
1900
+ "name": "groupInput",
1901
+ "type": {
1902
+ "text": "boolean"
1903
+ },
1904
+ "default": "false"
1905
+ },
1906
+ {
1907
+ "kind": "method",
1908
+ "name": "groupTemplate",
1909
+ "parameters": [
1910
+ {
1911
+ "name": "className",
1912
+ "description": "html class attribute",
1913
+ "type": {
1914
+ "text": "string"
1915
+ }
1916
+ }
1917
+ ],
1918
+ "description": "Template for a group of form components",
1919
+ "return": {
1920
+ "type": {
1921
+ "text": ""
1922
+ }
1923
+ }
1924
+ },
1925
+ {
1926
+ "kind": "method",
1927
+ "name": "handleLabelClick"
1928
+ },
1929
+ {
1930
+ "kind": "field",
1931
+ "name": "help",
1932
+ "privacy": "public",
1933
+ "type": {
1934
+ "text": "string"
1935
+ },
1936
+ "default": "undefined",
1937
+ "attribute": "help"
1938
+ },
1939
+ {
1940
+ "kind": "field",
1941
+ "name": "helpId",
1942
+ "readonly": true
1943
+ },
1944
+ {
1945
+ "kind": "method",
1946
+ "name": "helpTemplate"
1947
+ },
1948
+ {
1949
+ "kind": "field",
1950
+ "name": "inlineInput",
1951
+ "type": {
1952
+ "text": "boolean"
1953
+ },
1954
+ "default": "false"
1955
+ },
1956
+ {
1957
+ "kind": "field",
1958
+ "name": "label",
1959
+ "privacy": "public",
1960
+ "type": {
1961
+ "text": "string"
1962
+ },
1963
+ "default": "\"\"",
1964
+ "attribute": "label"
1965
+ }
1966
+ ],
1967
+ "attributes": [
1968
+ {
1969
+ "name": "error",
1970
+ "type": {
1971
+ "text": "string"
1972
+ },
1973
+ "default": "undefined",
1974
+ "fieldName": "error"
1975
+ },
1976
+ {
1977
+ "name": "help",
1978
+ "type": {
1979
+ "text": "string"
1980
+ },
1981
+ "default": "undefined",
1982
+ "fieldName": "help"
1983
+ },
1984
+ {
1985
+ "name": "label",
1986
+ "type": {
1987
+ "text": "string"
1988
+ },
1989
+ "default": "\"\"",
1990
+ "fieldName": "label"
1991
+ }
1992
+ ],
1993
+ "superclass": {
1994
+ "name": "LitElement",
1995
+ "package": "lit"
1996
+ },
1997
+ "tagName": "grantcodes-form-field",
1998
+ "customElement": true,
1999
+ "modulePath": "src/components/form-field/form-field.component.js",
2000
+ "definitionPath": "src/components/form-field/form-field.js"
2001
+ }
2002
+ ],
2003
+ "exports": [
2004
+ {
2005
+ "kind": "js",
2006
+ "name": "GrantCodesFormField",
2007
+ "declaration": {
2008
+ "name": "GrantCodesFormField",
2009
+ "module": "src/components/form-field/form-field.component.js"
2010
+ }
2011
+ }
2012
+ ]
2013
+ },
2014
+ {
2015
+ "kind": "javascript-module",
2016
+ "path": "src/components/form-field/form-field.js",
2017
+ "declarations": [],
2018
+ "exports": [
2019
+ {
2020
+ "kind": "js",
2021
+ "name": "*",
2022
+ "declaration": {
2023
+ "name": "*",
2024
+ "module": "src/components/form-field/form-field.component.js"
2025
+ }
2026
+ },
2027
+ {
2028
+ "kind": "js",
2029
+ "name": "default",
2030
+ "declaration": {
2031
+ "name": "GrantCodesFormField",
2032
+ "module": "src/components/form-field/form-field.js"
2033
+ }
2034
+ },
2035
+ {
2036
+ "kind": "custom-element-definition",
2037
+ "name": "grantcodes-form-field",
2038
+ "declaration": {
2039
+ "name": "GrantCodesFormField",
2040
+ "module": "/src/components/form-field/form-field.component.js"
2041
+ }
2042
+ }
2043
+ ]
2044
+ },
2045
+ {
2046
+ "kind": "javascript-module",
2047
+ "path": "src/components/form-field/index.js",
2048
+ "declarations": [],
2049
+ "exports": [
2050
+ {
2051
+ "kind": "js",
2052
+ "name": "*",
2053
+ "declaration": {
2054
+ "name": "*",
2055
+ "module": "src/components/form-field/form-field"
2056
+ }
2057
+ }
2058
+ ]
2059
+ },
2060
+ {
2061
+ "kind": "javascript-module",
2062
+ "path": "src/components/gallery/gallery-image.component.js",
2063
+ "declarations": [
2064
+ {
2065
+ "kind": "class",
2066
+ "description": "",
2067
+ "name": "GrantCodesGalleryImage",
2068
+ "members": [
2069
+ {
2070
+ "kind": "field",
2071
+ "name": "alt",
2072
+ "privacy": "public",
2073
+ "type": {
2074
+ "text": "string"
2075
+ },
2076
+ "default": "\"\"",
2077
+ "attribute": "alt"
2078
+ },
2079
+ {
2080
+ "kind": "field",
2081
+ "name": "caption",
2082
+ "privacy": "public",
2083
+ "type": {
2084
+ "text": "string"
2085
+ },
2086
+ "default": "\"\"",
2087
+ "attribute": "caption"
2088
+ },
2089
+ {
2090
+ "kind": "method",
2091
+ "name": "captionTemplate"
2092
+ },
2093
+ {
2094
+ "kind": "field",
2095
+ "name": "height",
2096
+ "privacy": "public",
2097
+ "type": {
2098
+ "text": "number"
2099
+ },
2100
+ "default": "0",
2101
+ "attribute": "height"
2102
+ },
2103
+ {
2104
+ "kind": "field",
2105
+ "name": "src",
2106
+ "privacy": "public",
2107
+ "type": {
2108
+ "text": "string"
2109
+ },
2110
+ "default": "\"\"",
2111
+ "attribute": "src"
2112
+ },
2113
+ {
2114
+ "kind": "field",
2115
+ "name": "thumbnail",
2116
+ "privacy": "public",
2117
+ "type": {
2118
+ "text": "string"
2119
+ },
2120
+ "default": "\"\"",
2121
+ "attribute": "thumbnail"
2122
+ },
2123
+ {
2124
+ "kind": "field",
2125
+ "name": "width",
2126
+ "privacy": "public",
2127
+ "type": {
2128
+ "text": "number"
2129
+ },
2130
+ "default": "0",
2131
+ "attribute": "width"
2132
+ }
2133
+ ],
2134
+ "attributes": [
2135
+ {
2136
+ "name": "alt",
2137
+ "type": {
2138
+ "text": "string"
2139
+ },
2140
+ "default": "\"\"",
2141
+ "fieldName": "alt"
2142
+ },
2143
+ {
2144
+ "name": "caption",
2145
+ "type": {
2146
+ "text": "string"
2147
+ },
2148
+ "default": "\"\"",
2149
+ "fieldName": "caption"
2150
+ },
2151
+ {
2152
+ "name": "height",
2153
+ "type": {
2154
+ "text": "number"
2155
+ },
2156
+ "default": "0",
2157
+ "fieldName": "height"
2158
+ },
2159
+ {
2160
+ "name": "src",
2161
+ "type": {
2162
+ "text": "string"
2163
+ },
2164
+ "default": "\"\"",
2165
+ "fieldName": "src"
2166
+ },
2167
+ {
2168
+ "name": "thumbnail",
2169
+ "type": {
2170
+ "text": "string"
2171
+ },
2172
+ "default": "\"\"",
2173
+ "fieldName": "thumbnail"
2174
+ },
2175
+ {
2176
+ "name": "width",
2177
+ "type": {
2178
+ "text": "number"
2179
+ },
2180
+ "default": "0",
2181
+ "fieldName": "width"
2182
+ }
2183
+ ],
2184
+ "superclass": {
2185
+ "name": "LitElement",
2186
+ "package": "lit"
2187
+ },
2188
+ "tagName": "grantcodes-gallery-image",
2189
+ "customElement": true,
2190
+ "modulePath": "src/components/gallery/gallery-image.component.js",
2191
+ "definitionPath": "src/components/gallery/gallery-image.js"
2192
+ }
2193
+ ],
2194
+ "exports": [
2195
+ {
2196
+ "kind": "js",
2197
+ "name": "GrantCodesGalleryImage",
2198
+ "declaration": {
2199
+ "name": "GrantCodesGalleryImage",
2200
+ "module": "src/components/gallery/gallery-image.component.js"
2201
+ }
2202
+ }
2203
+ ]
2204
+ },
2205
+ {
2206
+ "kind": "javascript-module",
2207
+ "path": "src/components/gallery/gallery-image.js",
2208
+ "declarations": [],
2209
+ "exports": [
2210
+ {
2211
+ "kind": "js",
2212
+ "name": "*",
2213
+ "declaration": {
2214
+ "name": "*",
2215
+ "module": "src/components/gallery/gallery-image.component.js"
2216
+ }
2217
+ },
2218
+ {
2219
+ "kind": "js",
2220
+ "name": "default",
2221
+ "declaration": {
2222
+ "name": "GrantCodesGalleryImage",
2223
+ "module": "src/components/gallery/gallery-image.js"
2224
+ }
2225
+ },
2226
+ {
2227
+ "kind": "custom-element-definition",
2228
+ "name": "grantcodes-gallery-image",
2229
+ "declaration": {
2230
+ "name": "GrantCodesGalleryImage",
2231
+ "module": "/src/components/gallery/gallery-image.component.js"
2232
+ }
2233
+ }
2234
+ ]
2235
+ },
2236
+ {
2237
+ "kind": "javascript-module",
2238
+ "path": "src/components/gallery/gallery.component.js",
2239
+ "declarations": [
2240
+ {
2241
+ "kind": "class",
2242
+ "description": "",
2243
+ "name": "GrantCodesGallery",
2244
+ "members": [
2245
+ {
2246
+ "kind": "field",
2247
+ "name": "images",
2248
+ "type": {
2249
+ "text": "any[]"
2250
+ },
2251
+ "default": "[]"
2252
+ }
2253
+ ],
2254
+ "superclass": {
2255
+ "name": "LitElement",
2256
+ "package": "lit"
2257
+ },
2258
+ "tagName": "grantcodes-gallery",
2259
+ "customElement": true,
2260
+ "modulePath": "src/components/gallery/gallery.component.js",
2261
+ "definitionPath": "src/components/gallery/gallery.js"
2262
+ }
2263
+ ],
2264
+ "exports": [
2265
+ {
2266
+ "kind": "js",
2267
+ "name": "GrantCodesGallery",
2268
+ "declaration": {
2269
+ "name": "GrantCodesGallery",
2270
+ "module": "src/components/gallery/gallery.component.js"
2271
+ }
2272
+ }
2273
+ ]
2274
+ },
2275
+ {
2276
+ "kind": "javascript-module",
2277
+ "path": "src/components/gallery/gallery.js",
2278
+ "declarations": [],
2279
+ "exports": [
2280
+ {
2281
+ "kind": "js",
2282
+ "name": "*",
2283
+ "declaration": {
2284
+ "name": "*",
2285
+ "module": "src/components/gallery/gallery.component.js"
2286
+ }
2287
+ },
2288
+ {
2289
+ "kind": "js",
2290
+ "name": "default",
2291
+ "declaration": {
2292
+ "name": "GrantCodesGallery",
2293
+ "module": "src/components/gallery/gallery.js"
2294
+ }
2295
+ },
2296
+ {
2297
+ "kind": "custom-element-definition",
2298
+ "name": "grantcodes-gallery",
2299
+ "declaration": {
2300
+ "name": "GrantCodesGallery",
2301
+ "module": "/src/components/gallery/gallery.component.js"
2302
+ }
2303
+ }
2304
+ ]
2305
+ },
2306
+ {
2307
+ "kind": "javascript-module",
2308
+ "path": "src/components/gallery/index.js",
2309
+ "declarations": [],
2310
+ "exports": [
2311
+ {
2312
+ "kind": "js",
2313
+ "name": "*",
2314
+ "declaration": {
2315
+ "name": "*",
2316
+ "module": "src/components/gallery/gallery"
2317
+ }
2318
+ },
2319
+ {
2320
+ "kind": "js",
2321
+ "name": "*",
2322
+ "declaration": {
2323
+ "name": "*",
2324
+ "module": "src/components/gallery/gallery-image"
2325
+ }
2326
+ }
2327
+ ]
2328
+ },
2329
+ {
2330
+ "kind": "javascript-module",
2331
+ "path": "src/components/icon/icon.component.js",
2332
+ "declarations": [
2333
+ {
2334
+ "kind": "class",
2335
+ "description": "",
2336
+ "name": "GrantCodesIcon",
2337
+ "members": [],
2338
+ "superclass": {
2339
+ "name": "LitElement",
2340
+ "package": "lit"
2341
+ },
2342
+ "tagName": "grantcodes-icon",
2343
+ "customElement": true,
2344
+ "modulePath": "src/components/icon/icon.component.js",
2345
+ "definitionPath": "src/components/icon/icon.js"
2346
+ }
2347
+ ],
2348
+ "exports": [
2349
+ {
2350
+ "kind": "js",
2351
+ "name": "GrantCodesIcon",
2352
+ "declaration": {
2353
+ "name": "GrantCodesIcon",
2354
+ "module": "src/components/icon/icon.component.js"
2355
+ }
2356
+ }
2357
+ ]
2358
+ },
2359
+ {
2360
+ "kind": "javascript-module",
2361
+ "path": "src/components/icon/icon.js",
2362
+ "declarations": [],
2363
+ "exports": [
2364
+ {
2365
+ "kind": "js",
2366
+ "name": "*",
2367
+ "declaration": {
2368
+ "name": "*",
2369
+ "module": "src/components/icon/icon.component.js"
2370
+ }
2371
+ },
2372
+ {
2373
+ "kind": "js",
2374
+ "name": "default",
2375
+ "declaration": {
2376
+ "name": "GrantCodesIcon",
2377
+ "module": "src/components/icon/icon.js"
2378
+ }
2379
+ },
2380
+ {
2381
+ "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": "*",
2398
+ "declaration": {
2399
+ "name": "*",
2400
+ "module": "src/components/icon/icon"
2401
+ }
2402
+ }
2403
+ ]
2404
+ },
2405
+ {
2406
+ "kind": "javascript-module",
2407
+ "path": "src/components/loading/index.js",
2408
+ "declarations": [],
2409
+ "exports": [
2410
+ {
2411
+ "kind": "js",
2412
+ "name": "*",
2413
+ "declaration": {
2414
+ "name": "*",
2415
+ "module": "src/components/loading/loading"
2416
+ }
2417
+ }
2418
+ ]
2419
+ },
2420
+ {
2421
+ "kind": "javascript-module",
2422
+ "path": "src/components/loading/loading.component.js",
2423
+ "declarations": [
2424
+ {
2425
+ "kind": "class",
2426
+ "description": "",
2427
+ "name": "GrantCodesLoading",
2428
+ "members": [],
2429
+ "superclass": {
2430
+ "name": "LitElement",
2431
+ "package": "lit"
2432
+ },
2433
+ "tagName": "grantcodes-loading",
2434
+ "customElement": true,
2435
+ "modulePath": "src/components/loading/loading.component.js",
2436
+ "definitionPath": "src/components/loading/loading.js"
2437
+ }
2438
+ ],
2439
+ "exports": [
2440
+ {
2441
+ "kind": "js",
2442
+ "name": "GrantCodesLoading",
2443
+ "declaration": {
2444
+ "name": "GrantCodesLoading",
2445
+ "module": "src/components/loading/loading.component.js"
2446
+ }
2447
+ }
2448
+ ]
2449
+ },
2450
+ {
2451
+ "kind": "javascript-module",
2452
+ "path": "src/components/loading/loading.js",
2453
+ "declarations": [],
2454
+ "exports": [
2455
+ {
2456
+ "kind": "js",
2457
+ "name": "*",
2458
+ "declaration": {
2459
+ "name": "*",
2460
+ "module": "src/components/loading/loading.component.js"
2461
+ }
2462
+ },
2463
+ {
2464
+ "kind": "js",
2465
+ "name": "default",
2466
+ "declaration": {
2467
+ "name": "GrantCodesLoading",
2468
+ "module": "src/components/loading/loading.js"
2469
+ }
2470
+ },
2471
+ {
2472
+ "kind": "custom-element-definition",
2473
+ "name": "grantcodes-loading",
2474
+ "declaration": {
2475
+ "name": "GrantCodesLoading",
2476
+ "module": "/src/components/loading/loading.component.js"
2477
+ }
2478
+ }
2479
+ ]
2480
+ },
2481
+ {
2482
+ "kind": "javascript-module",
2483
+ "path": "src/components/notice/index.js",
2484
+ "declarations": [],
2485
+ "exports": [
2486
+ {
2487
+ "kind": "js",
2488
+ "name": "*",
2489
+ "declaration": {
2490
+ "name": "*",
2491
+ "module": "src/components/notice/notice"
2492
+ }
2493
+ }
2494
+ ]
2495
+ },
2496
+ {
2497
+ "kind": "javascript-module",
2498
+ "path": "src/components/notice/notice.component.js",
2499
+ "declarations": [
2500
+ {
2501
+ "kind": "class",
2502
+ "description": "",
2503
+ "name": "GrantCodesNotice",
2504
+ "members": [
2505
+ {
2506
+ "kind": "field",
2507
+ "name": "dependencies",
2508
+ "type": {
2509
+ "text": "object"
2510
+ },
2511
+ "static": true,
2512
+ "default": "{ \"grancodes-icon\": GrantCodesIcon }"
2513
+ },
2514
+ {
2515
+ "kind": "field",
2516
+ "name": "dismissable",
2517
+ "privacy": "public",
2518
+ "type": {
2519
+ "text": "boolean"
2520
+ },
2521
+ "default": "false",
2522
+ "attribute": "dismissable"
2523
+ },
2524
+ {
2525
+ "kind": "method",
2526
+ "name": "onDismiss",
2527
+ "parameters": [
2528
+ {
2529
+ "name": "_e"
2530
+ }
2531
+ ]
2532
+ },
2533
+ {
2534
+ "kind": "method",
2535
+ "name": "renderDismiss"
2536
+ },
2537
+ {
2538
+ "kind": "field",
2539
+ "name": "title",
2540
+ "privacy": "public",
2541
+ "type": {
2542
+ "text": "string"
2543
+ },
2544
+ "default": "\"\"",
2545
+ "attribute": "title"
2546
+ },
2547
+ {
2548
+ "kind": "field",
2549
+ "name": "variant",
2550
+ "privacy": "public",
2551
+ "type": {
2552
+ "text": "string"
2553
+ },
2554
+ "default": "\"info\"",
2555
+ "attribute": "variant"
2556
+ }
2557
+ ],
2558
+ "attributes": [
2559
+ {
2560
+ "name": "dismissable",
2561
+ "type": {
2562
+ "text": "boolean"
2563
+ },
2564
+ "default": "false",
2565
+ "fieldName": "dismissable"
2566
+ },
2567
+ {
2568
+ "name": "title",
2569
+ "type": {
2570
+ "text": "string"
2571
+ },
2572
+ "default": "\"\"",
2573
+ "fieldName": "title"
2574
+ },
2575
+ {
2576
+ "name": "variant",
2577
+ "type": {
2578
+ "text": "string"
2579
+ },
2580
+ "default": "\"info\"",
2581
+ "fieldName": "variant"
2582
+ }
2583
+ ],
2584
+ "superclass": {
2585
+ "name": "LitElement",
2586
+ "package": "lit"
2587
+ },
2588
+ "tagName": "grantcodes-notice",
2589
+ "customElement": true,
2590
+ "modulePath": "src/components/notice/notice.component.js",
2591
+ "definitionPath": "src/components/notice/notice.js"
2592
+ }
2593
+ ],
2594
+ "exports": [
2595
+ {
2596
+ "kind": "js",
2597
+ "name": "GrantCodesNotice",
2598
+ "declaration": {
2599
+ "name": "GrantCodesNotice",
2600
+ "module": "src/components/notice/notice.component.js"
2601
+ }
2602
+ }
2603
+ ]
2604
+ },
2605
+ {
2606
+ "kind": "javascript-module",
2607
+ "path": "src/components/notice/notice.js",
2608
+ "declarations": [],
2609
+ "exports": [
2610
+ {
2611
+ "kind": "js",
2612
+ "name": "*",
2613
+ "declaration": {
2614
+ "name": "*",
2615
+ "module": "src/components/notice/notice.component.js"
2616
+ }
2617
+ },
2618
+ {
2619
+ "kind": "js",
2620
+ "name": "default",
2621
+ "declaration": {
2622
+ "name": "GrantCodesNotice",
2623
+ "module": "src/components/notice/notice.js"
2624
+ }
2625
+ },
2626
+ {
2627
+ "kind": "custom-element-definition",
2628
+ "name": "grantcodes-notice",
2629
+ "declaration": {
2630
+ "name": "GrantCodesNotice",
2631
+ "module": "/src/components/notice/notice.component.js"
2632
+ }
2633
+ }
2634
+ ]
2635
+ },
2636
+ {
2637
+ "kind": "javascript-module",
2638
+ "path": "src/components/pagination/index.js",
2639
+ "declarations": [],
2640
+ "exports": [
2641
+ {
2642
+ "kind": "js",
2643
+ "name": "*",
2644
+ "declaration": {
2645
+ "name": "*",
2646
+ "module": "src/components/pagination/pagination"
2647
+ }
2648
+ }
2649
+ ]
2650
+ },
2651
+ {
2652
+ "kind": "javascript-module",
2653
+ "path": "src/components/pagination/pagination.component.js",
2654
+ "declarations": [
2655
+ {
2656
+ "kind": "class",
2657
+ "description": "",
2658
+ "name": "GrantCodesPagination",
2659
+ "members": [
2660
+ {
2661
+ "kind": "field",
2662
+ "name": "dependencies",
2663
+ "type": {
2664
+ "text": "object"
2665
+ },
2666
+ "static": true,
2667
+ "default": "{ \"grantcodes-button\": GrantCodesButton }"
2668
+ },
2669
+ {
2670
+ "kind": "field",
2671
+ "name": "nextHref",
2672
+ "privacy": "public",
2673
+ "type": {
2674
+ "text": "string"
2675
+ },
2676
+ "default": "\"\"",
2677
+ "attribute": "next-href"
2678
+ },
2679
+ {
2680
+ "kind": "method",
2681
+ "name": "nextTemplate"
2682
+ },
2683
+ {
2684
+ "kind": "field",
2685
+ "name": "page",
2686
+ "privacy": "public",
2687
+ "type": {
2688
+ "text": "number"
2689
+ },
2690
+ "default": "1",
2691
+ "attribute": "page"
2692
+ },
2693
+ {
2694
+ "kind": "field",
2695
+ "name": "pages",
2696
+ "privacy": "public",
2697
+ "type": {
2698
+ "text": "number"
2699
+ },
2700
+ "default": "1",
2701
+ "attribute": "pages"
2702
+ },
2703
+ {
2704
+ "kind": "field",
2705
+ "name": "previousHref",
2706
+ "privacy": "public",
2707
+ "type": {
2708
+ "text": "string"
2709
+ },
2710
+ "default": "\"\"",
2711
+ "attribute": "previous-href"
2712
+ },
2713
+ {
2714
+ "kind": "method",
2715
+ "name": "previousTemplate"
2716
+ }
2717
+ ],
2718
+ "attributes": [
2719
+ {
2720
+ "name": "next-href",
2721
+ "type": {
2722
+ "text": "string"
2723
+ },
2724
+ "default": "\"\"",
2725
+ "fieldName": "nextHref"
2726
+ },
2727
+ {
2728
+ "name": "page",
2729
+ "type": {
2730
+ "text": "number"
2731
+ },
2732
+ "default": "1",
2733
+ "fieldName": "page"
2734
+ },
2735
+ {
2736
+ "name": "pages",
2737
+ "type": {
2738
+ "text": "number"
2739
+ },
2740
+ "default": "1",
2741
+ "fieldName": "pages"
2742
+ },
2743
+ {
2744
+ "name": "previous-href",
2745
+ "type": {
2746
+ "text": "string"
2747
+ },
2748
+ "default": "\"\"",
2749
+ "fieldName": "previousHref"
2750
+ }
2751
+ ],
2752
+ "superclass": {
2753
+ "name": "LitElement",
2754
+ "package": "lit"
2755
+ },
2756
+ "tagName": "grantcodes-pagination",
2757
+ "customElement": true,
2758
+ "modulePath": "src/components/pagination/pagination.component.js",
2759
+ "definitionPath": "src/components/pagination/pagination.js"
2760
+ }
2761
+ ],
2762
+ "exports": [
2763
+ {
2764
+ "kind": "js",
2765
+ "name": "GrantCodesPagination",
2766
+ "declaration": {
2767
+ "name": "GrantCodesPagination",
2768
+ "module": "src/components/pagination/pagination.component.js"
2769
+ }
2770
+ }
2771
+ ]
2772
+ },
2773
+ {
2774
+ "kind": "javascript-module",
2775
+ "path": "src/components/pagination/pagination.js",
2776
+ "declarations": [],
2777
+ "exports": [
2778
+ {
2779
+ "kind": "js",
2780
+ "name": "*",
2781
+ "declaration": {
2782
+ "name": "*",
2783
+ "module": "src/components/pagination/pagination.component.js"
2784
+ }
2785
+ },
2786
+ {
2787
+ "kind": "js",
2788
+ "name": "default",
2789
+ "declaration": {
2790
+ "name": "GrantCodesPagination",
2791
+ "module": "src/components/pagination/pagination.js"
2792
+ }
2793
+ },
2794
+ {
2795
+ "kind": "custom-element-definition",
2796
+ "name": "grantcodes-pagination",
2797
+ "declaration": {
2798
+ "name": "GrantCodesPagination",
2799
+ "module": "/src/components/pagination/pagination.component.js"
2800
+ }
2801
+ }
2802
+ ]
2803
+ },
2804
+ {
2805
+ "kind": "javascript-module",
2806
+ "path": "src/components/sidebar/index.js",
2807
+ "declarations": [],
2808
+ "exports": [
2809
+ {
2810
+ "kind": "js",
2811
+ "name": "*",
2812
+ "declaration": {
2813
+ "name": "*",
2814
+ "module": "src/components/sidebar/sidebar.js"
2815
+ }
2816
+ }
2817
+ ]
2818
+ },
2819
+ {
2820
+ "kind": "javascript-module",
2821
+ "path": "src/components/sidebar/sidebar.component.js",
2822
+ "declarations": [
2823
+ {
2824
+ "kind": "class",
2825
+ "description": "",
2826
+ "name": "GrantCodesSidebar",
2827
+ "members": [
2828
+ {
2829
+ "kind": "field",
2830
+ "name": "_drawerOpen",
2831
+ "privacy": "public",
2832
+ "type": {
2833
+ "text": "boolean"
2834
+ },
2835
+ "description": "Whether mobile drawer is open",
2836
+ "default": "false",
2837
+ "attribute": "_drawerOpen"
2838
+ },
2839
+ {
2840
+ "kind": "method",
2841
+ "name": "_handleDocumentClick",
2842
+ "parameters": [
2843
+ {
2844
+ "name": "e"
2845
+ }
2846
+ ]
2847
+ },
2848
+ {
2849
+ "kind": "method",
2850
+ "name": "_handleEscape",
2851
+ "parameters": [
2852
+ {
2853
+ "name": "e"
2854
+ }
2855
+ ]
2856
+ },
2857
+ {
2858
+ "kind": "method",
2859
+ "name": "_toggleCollapsed"
2860
+ },
2861
+ {
2862
+ "kind": "method",
2863
+ "name": "_toggleDrawer"
2864
+ },
2865
+ {
2866
+ "kind": "field",
2867
+ "name": "collapsed",
2868
+ "privacy": "public",
2869
+ "type": {
2870
+ "text": "boolean"
2871
+ },
2872
+ "description": "Whether the sidebar is collapsed on desktop",
2873
+ "default": "false",
2874
+ "attribute": "collapsed",
2875
+ "reflects": true
2876
+ },
2877
+ {
2878
+ "kind": "field",
2879
+ "name": "collapsible",
2880
+ "privacy": "public",
2881
+ "type": {
2882
+ "text": "boolean"
2883
+ },
2884
+ "description": "Whether the sidebar can be collapsed",
2885
+ "default": "true",
2886
+ "attribute": "collapsible"
2887
+ },
2888
+ {
2889
+ "kind": "field",
2890
+ "name": "position",
2891
+ "privacy": "public",
2892
+ "type": {
2893
+ "text": "'left' | 'right'"
2894
+ },
2895
+ "description": "Position of the sidebar",
2896
+ "default": "\"left\"",
2897
+ "attribute": "position"
2898
+ },
2899
+ {
2900
+ "kind": "field",
2901
+ "name": "width",
2902
+ "privacy": "public",
2903
+ "type": {
2904
+ "text": "string"
2905
+ },
2906
+ "description": "Custom width of the sidebar",
2907
+ "default": "\"280px\"",
2908
+ "attribute": "width"
2909
+ }
2910
+ ],
2911
+ "events": [
2912
+ {
2913
+ "name": "drawer-toggle",
2914
+ "type": {
2915
+ "text": "CustomEvent"
2916
+ }
2917
+ },
2918
+ {
2919
+ "name": "toggle",
2920
+ "type": {
2921
+ "text": "CustomEvent"
2922
+ }
2923
+ }
2924
+ ],
2925
+ "attributes": [
2926
+ {
2927
+ "name": "_drawerOpen",
2928
+ "type": {
2929
+ "text": "boolean"
2930
+ },
2931
+ "description": "Whether mobile drawer is open",
2932
+ "default": "false",
2933
+ "fieldName": "_drawerOpen"
2934
+ },
2935
+ {
2936
+ "name": "collapsed",
2937
+ "type": {
2938
+ "text": "boolean"
2939
+ },
2940
+ "description": "Whether the sidebar is collapsed on desktop",
2941
+ "default": "false",
2942
+ "fieldName": "collapsed"
2943
+ },
2944
+ {
2945
+ "name": "collapsible",
2946
+ "type": {
2947
+ "text": "boolean"
2948
+ },
2949
+ "description": "Whether the sidebar can be collapsed",
2950
+ "default": "true",
2951
+ "fieldName": "collapsible"
2952
+ },
2953
+ {
2954
+ "name": "position",
2955
+ "type": {
2956
+ "text": "'left' | 'right'"
2957
+ },
2958
+ "description": "Position of the sidebar",
2959
+ "default": "\"left\"",
2960
+ "fieldName": "position"
2961
+ },
2962
+ {
2963
+ "name": "width",
2964
+ "type": {
2965
+ "text": "string"
2966
+ },
2967
+ "description": "Custom width of the sidebar",
2968
+ "default": "\"280px\"",
2969
+ "fieldName": "width"
2970
+ }
2971
+ ],
2972
+ "superclass": {
2973
+ "name": "LitElement",
2974
+ "package": "lit"
2975
+ },
2976
+ "tagName": "grantcodes-sidebar",
2977
+ "customElement": true,
2978
+ "modulePath": "src/components/sidebar/sidebar.component.js",
2979
+ "definitionPath": "src/components/sidebar/sidebar.js"
2980
+ }
2981
+ ],
2982
+ "exports": [
2983
+ {
2984
+ "kind": "js",
2985
+ "name": "GrantCodesSidebar",
2986
+ "declaration": {
2987
+ "name": "GrantCodesSidebar",
2988
+ "module": "src/components/sidebar/sidebar.component.js"
2989
+ }
2990
+ }
2991
+ ]
2992
+ },
2993
+ {
2994
+ "kind": "javascript-module",
2995
+ "path": "src/components/sidebar/sidebar.js",
2996
+ "declarations": [],
2997
+ "exports": [
2998
+ {
2999
+ "kind": "js",
3000
+ "name": "*",
3001
+ "declaration": {
3002
+ "name": "*",
3003
+ "module": "src/components/sidebar/sidebar.component.js"
3004
+ }
3005
+ },
3006
+ {
3007
+ "kind": "js",
3008
+ "name": "default",
3009
+ "declaration": {
3010
+ "name": "GrantCodesSidebar",
3011
+ "module": "src/components/sidebar/sidebar.js"
3012
+ }
3013
+ },
3014
+ {
3015
+ "kind": "custom-element-definition",
3016
+ "name": "grantcodes-sidebar",
3017
+ "declaration": {
3018
+ "name": "GrantCodesSidebar",
3019
+ "module": "/src/components/sidebar/sidebar.component.js"
3020
+ }
3021
+ }
3022
+ ]
3023
+ },
3024
+ {
3025
+ "kind": "javascript-module",
3026
+ "path": "src/components/tabs/index.js",
3027
+ "declarations": [],
3028
+ "exports": [
3029
+ {
3030
+ "kind": "js",
3031
+ "name": "*",
3032
+ "declaration": {
3033
+ "name": "*",
3034
+ "module": "src/components/tabs/tabs"
3035
+ }
3036
+ },
3037
+ {
3038
+ "kind": "js",
3039
+ "name": "*",
3040
+ "declaration": {
3041
+ "name": "*",
3042
+ "module": "src/components/tabs/tab"
3043
+ }
3044
+ }
3045
+ ]
3046
+ },
3047
+ {
3048
+ "kind": "javascript-module",
3049
+ "path": "src/components/tabs/internal/tabs-button.component.js",
3050
+ "declarations": [
3051
+ {
3052
+ "kind": "class",
3053
+ "description": "",
3054
+ "name": "GrantCodesTabsButton",
3055
+ "members": [
3056
+ {
3057
+ "kind": "field",
3058
+ "name": "active",
3059
+ "privacy": "public",
3060
+ "type": {
3061
+ "text": "boolean"
3062
+ },
3063
+ "default": "false",
3064
+ "attribute": "active",
3065
+ "inheritedFrom": {
3066
+ "name": "GrantCodesTabsItem",
3067
+ "module": "src/components/tabs/internal/tabs-item.component.js"
3068
+ }
3069
+ },
3070
+ {
3071
+ "kind": "field",
3072
+ "name": "buttonId",
3073
+ "privacy": "public",
3074
+ "type": {
3075
+ "text": "string"
3076
+ },
3077
+ "readonly": true,
3078
+ "attribute": "buttonId",
3079
+ "reflects": true,
3080
+ "inheritedFrom": {
3081
+ "name": "GrantCodesTabsItem",
3082
+ "module": "src/components/tabs/internal/tabs-item.component.js"
3083
+ }
3084
+ },
3085
+ {
3086
+ "kind": "field",
3087
+ "name": "containerId",
3088
+ "privacy": "public",
3089
+ "type": {
3090
+ "text": "string"
3091
+ },
3092
+ "default": "\"\"",
3093
+ "attribute": "containerId",
3094
+ "inheritedFrom": {
3095
+ "name": "GrantCodesTabsItem",
3096
+ "module": "src/components/tabs/internal/tabs-item.component.js"
3097
+ }
3098
+ },
3099
+ {
3100
+ "kind": "field",
3101
+ "name": "content",
3102
+ "privacy": "public",
3103
+ "type": {
3104
+ "text": "string"
3105
+ },
3106
+ "readonly": true,
3107
+ "attribute": "content",
3108
+ "inheritedFrom": {
3109
+ "name": "GrantCodesTabsItem",
3110
+ "module": "src/components/tabs/internal/tabs-item.component.js"
3111
+ }
3112
+ },
3113
+ {
3114
+ "kind": "field",
3115
+ "name": "index",
3116
+ "privacy": "public",
3117
+ "type": {
3118
+ "text": "number"
3119
+ },
3120
+ "default": "-1",
3121
+ "attribute": "index",
3122
+ "inheritedFrom": {
3123
+ "name": "GrantCodesTabsItem",
3124
+ "module": "src/components/tabs/internal/tabs-item.component.js"
3125
+ }
3126
+ },
3127
+ {
3128
+ "kind": "field",
3129
+ "name": "label",
3130
+ "privacy": "public",
3131
+ "type": {
3132
+ "text": "string"
3133
+ },
3134
+ "default": "\"\"",
3135
+ "attribute": "label",
3136
+ "inheritedFrom": {
3137
+ "name": "GrantCodesTabsItem",
3138
+ "module": "src/components/tabs/internal/tabs-item.component.js"
3139
+ }
3140
+ },
3141
+ {
3142
+ "kind": "field",
3143
+ "name": "panelId",
3144
+ "privacy": "public",
3145
+ "type": {
3146
+ "text": "string"
3147
+ },
3148
+ "readonly": true,
3149
+ "attribute": "panelId",
3150
+ "inheritedFrom": {
3151
+ "name": "GrantCodesTabsItem",
3152
+ "module": "src/components/tabs/internal/tabs-item.component.js"
3153
+ }
3154
+ },
3155
+ {
3156
+ "kind": "field",
3157
+ "name": "shadowRootOptions",
3158
+ "type": {
3159
+ "text": "object"
3160
+ },
3161
+ "static": true,
3162
+ "default": "{ ...LitElement.shadowRootOptions, delegatesFocus: true, }"
3163
+ }
3164
+ ],
3165
+ "superclass": {
3166
+ "name": "GrantCodesTabsItem",
3167
+ "module": "/src/components/tabs/internal/tabs-item.component.js"
3168
+ },
3169
+ "tagName": "grantcodes-tabs-button",
3170
+ "customElement": true,
3171
+ "attributes": [
3172
+ {
3173
+ "name": "active",
3174
+ "type": {
3175
+ "text": "boolean"
3176
+ },
3177
+ "default": "false",
3178
+ "fieldName": "active",
3179
+ "inheritedFrom": {
3180
+ "name": "GrantCodesTabsItem",
3181
+ "module": "src/components/tabs/internal/tabs-item.component.js"
3182
+ }
3183
+ },
3184
+ {
3185
+ "name": "buttonId",
3186
+ "type": {
3187
+ "text": "string"
3188
+ },
3189
+ "readonly": true,
3190
+ "fieldName": "buttonId",
3191
+ "inheritedFrom": {
3192
+ "name": "GrantCodesTabsItem",
3193
+ "module": "src/components/tabs/internal/tabs-item.component.js"
3194
+ }
3195
+ },
3196
+ {
3197
+ "name": "containerId",
3198
+ "type": {
3199
+ "text": "string"
3200
+ },
3201
+ "default": "\"\"",
3202
+ "fieldName": "containerId",
3203
+ "inheritedFrom": {
3204
+ "name": "GrantCodesTabsItem",
3205
+ "module": "src/components/tabs/internal/tabs-item.component.js"
3206
+ }
3207
+ },
3208
+ {
3209
+ "name": "content",
3210
+ "type": {
3211
+ "text": "string"
3212
+ },
3213
+ "readonly": true,
3214
+ "fieldName": "content",
3215
+ "inheritedFrom": {
3216
+ "name": "GrantCodesTabsItem",
3217
+ "module": "src/components/tabs/internal/tabs-item.component.js"
3218
+ }
3219
+ },
3220
+ {
3221
+ "name": "index",
3222
+ "type": {
3223
+ "text": "number"
3224
+ },
3225
+ "default": "-1",
3226
+ "fieldName": "index",
3227
+ "inheritedFrom": {
3228
+ "name": "GrantCodesTabsItem",
3229
+ "module": "src/components/tabs/internal/tabs-item.component.js"
3230
+ }
3231
+ },
3232
+ {
3233
+ "name": "label",
3234
+ "type": {
3235
+ "text": "string"
3236
+ },
3237
+ "default": "\"\"",
3238
+ "fieldName": "label",
3239
+ "inheritedFrom": {
3240
+ "name": "GrantCodesTabsItem",
3241
+ "module": "src/components/tabs/internal/tabs-item.component.js"
3242
+ }
3243
+ },
3244
+ {
3245
+ "name": "panelId",
3246
+ "type": {
3247
+ "text": "string"
3248
+ },
3249
+ "readonly": true,
3250
+ "fieldName": "panelId",
3251
+ "inheritedFrom": {
3252
+ "name": "GrantCodesTabsItem",
3253
+ "module": "src/components/tabs/internal/tabs-item.component.js"
3254
+ }
3255
+ }
3256
+ ],
3257
+ "modulePath": "src/components/tabs/internal/tabs-button.component.js",
3258
+ "definitionPath": "src/components/tabs/internal/tabs-button.js",
3259
+ "cssProperties": [],
3260
+ "cssParts": [],
3261
+ "cssStates": [],
3262
+ "events": [],
3263
+ "slots": []
3264
+ }
3265
+ ],
3266
+ "exports": [
3267
+ {
3268
+ "kind": "js",
3269
+ "name": "GrantCodesTabsButton",
3270
+ "declaration": {
3271
+ "name": "GrantCodesTabsButton",
3272
+ "module": "src/components/tabs/internal/tabs-button.component.js"
3273
+ }
3274
+ }
3275
+ ]
3276
+ },
3277
+ {
3278
+ "kind": "javascript-module",
3279
+ "path": "src/components/tabs/internal/tabs-button.js",
3280
+ "declarations": [],
3281
+ "exports": [
3282
+ {
3283
+ "kind": "js",
3284
+ "name": "*",
3285
+ "declaration": {
3286
+ "name": "*",
3287
+ "module": "src/components/tabs/internal/tabs-button.component.js"
3288
+ }
3289
+ },
3290
+ {
3291
+ "kind": "js",
3292
+ "name": "default",
3293
+ "declaration": {
3294
+ "name": "GrantCodesTabsButton",
3295
+ "module": "src/components/tabs/internal/tabs-button.js"
3296
+ }
3297
+ },
3298
+ {
3299
+ "kind": "custom-element-definition",
3300
+ "name": "grantcodes-tabs-button",
3301
+ "declaration": {
3302
+ "name": "GrantCodesTabsButton",
3303
+ "module": "/src/components/tabs/internal/tabs-button.component.js"
3304
+ }
3305
+ }
3306
+ ]
3307
+ },
3308
+ {
3309
+ "kind": "javascript-module",
3310
+ "path": "src/components/tabs/internal/tabs-item.component.js",
3311
+ "declarations": [
3312
+ {
3313
+ "kind": "class",
3314
+ "description": "",
3315
+ "name": "GrantCodesTabsItem",
3316
+ "members": [
3317
+ {
3318
+ "kind": "field",
3319
+ "name": "active",
3320
+ "privacy": "public",
3321
+ "type": {
3322
+ "text": "boolean"
3323
+ },
3324
+ "default": "false",
3325
+ "attribute": "active"
3326
+ },
3327
+ {
3328
+ "kind": "field",
3329
+ "name": "buttonId",
3330
+ "privacy": "public",
3331
+ "type": {
3332
+ "text": "string"
3333
+ },
3334
+ "readonly": true,
3335
+ "attribute": "buttonId",
3336
+ "reflects": true
3337
+ },
3338
+ {
3339
+ "kind": "field",
3340
+ "name": "containerId",
3341
+ "privacy": "public",
3342
+ "type": {
3343
+ "text": "string"
3344
+ },
3345
+ "default": "\"\"",
3346
+ "attribute": "containerId"
3347
+ },
3348
+ {
3349
+ "kind": "field",
3350
+ "name": "content",
3351
+ "privacy": "public",
3352
+ "type": {
3353
+ "text": "string"
3354
+ },
3355
+ "readonly": true,
3356
+ "attribute": "content"
3357
+ },
3358
+ {
3359
+ "kind": "field",
3360
+ "name": "index",
3361
+ "privacy": "public",
3362
+ "type": {
3363
+ "text": "number"
3364
+ },
3365
+ "default": "-1",
3366
+ "attribute": "index"
3367
+ },
3368
+ {
3369
+ "kind": "field",
3370
+ "name": "label",
3371
+ "privacy": "public",
3372
+ "type": {
3373
+ "text": "string"
3374
+ },
3375
+ "default": "\"\"",
3376
+ "attribute": "label"
3377
+ },
3378
+ {
3379
+ "kind": "field",
3380
+ "name": "panelId",
3381
+ "privacy": "public",
3382
+ "type": {
3383
+ "text": "string"
3384
+ },
3385
+ "readonly": true,
3386
+ "attribute": "panelId"
3387
+ }
3388
+ ],
3389
+ "attributes": [
3390
+ {
3391
+ "name": "active",
3392
+ "type": {
3393
+ "text": "boolean"
3394
+ },
3395
+ "default": "false",
3396
+ "fieldName": "active"
3397
+ },
3398
+ {
3399
+ "name": "buttonId",
3400
+ "type": {
3401
+ "text": "string"
3402
+ },
3403
+ "readonly": true,
3404
+ "fieldName": "buttonId"
3405
+ },
3406
+ {
3407
+ "name": "containerId",
3408
+ "type": {
3409
+ "text": "string"
3410
+ },
3411
+ "default": "\"\"",
3412
+ "fieldName": "containerId"
3413
+ },
3414
+ {
3415
+ "name": "content",
3416
+ "type": {
3417
+ "text": "string"
3418
+ },
3419
+ "readonly": true,
3420
+ "fieldName": "content"
3421
+ },
3422
+ {
3423
+ "name": "index",
3424
+ "type": {
3425
+ "text": "number"
3426
+ },
3427
+ "default": "-1",
3428
+ "fieldName": "index"
3429
+ },
3430
+ {
3431
+ "name": "label",
3432
+ "type": {
3433
+ "text": "string"
3434
+ },
3435
+ "default": "\"\"",
3436
+ "fieldName": "label"
3437
+ },
3438
+ {
3439
+ "name": "panelId",
3440
+ "type": {
3441
+ "text": "string"
3442
+ },
3443
+ "readonly": true,
3444
+ "fieldName": "panelId"
3445
+ }
3446
+ ],
3447
+ "superclass": {
3448
+ "name": "LitElement",
3449
+ "package": "lit"
3450
+ },
3451
+ "customElement": true,
3452
+ "modulePath": "src/components/tabs/internal/tabs-item.component.js"
3453
+ }
3454
+ ],
3455
+ "exports": [
3456
+ {
3457
+ "kind": "js",
3458
+ "name": "GrantCodesTabsItem",
3459
+ "declaration": {
3460
+ "name": "GrantCodesTabsItem",
3461
+ "module": "src/components/tabs/internal/tabs-item.component.js"
3462
+ }
3463
+ }
3464
+ ]
3465
+ },
3466
+ {
3467
+ "kind": "javascript-module",
3468
+ "path": "src/components/tabs/tab.component.js",
3469
+ "declarations": [
3470
+ {
3471
+ "kind": "class",
3472
+ "description": "",
3473
+ "name": "GrantCodesTab",
3474
+ "members": [
3475
+ {
3476
+ "kind": "field",
3477
+ "name": "active",
3478
+ "privacy": "public",
3479
+ "type": {
3480
+ "text": "boolean"
3481
+ },
3482
+ "default": "false",
3483
+ "attribute": "active",
3484
+ "inheritedFrom": {
3485
+ "name": "GrantCodesTabsItem",
3486
+ "module": "src/components/tabs/internal/tabs-item.component.js"
3487
+ }
3488
+ },
3489
+ {
3490
+ "kind": "field",
3491
+ "name": "buttonId",
3492
+ "privacy": "public",
3493
+ "type": {
3494
+ "text": "string"
3495
+ },
3496
+ "readonly": true,
3497
+ "attribute": "buttonId",
3498
+ "reflects": true,
3499
+ "inheritedFrom": {
3500
+ "name": "GrantCodesTabsItem",
3501
+ "module": "src/components/tabs/internal/tabs-item.component.js"
3502
+ }
3503
+ },
3504
+ {
3505
+ "kind": "field",
3506
+ "name": "containerId",
3507
+ "privacy": "public",
3508
+ "type": {
3509
+ "text": "string"
3510
+ },
3511
+ "default": "\"\"",
3512
+ "attribute": "containerId",
3513
+ "inheritedFrom": {
3514
+ "name": "GrantCodesTabsItem",
3515
+ "module": "src/components/tabs/internal/tabs-item.component.js"
3516
+ }
3517
+ },
3518
+ {
3519
+ "kind": "field",
3520
+ "name": "content",
3521
+ "privacy": "public",
3522
+ "type": {
3523
+ "text": "string"
3524
+ },
3525
+ "readonly": true,
3526
+ "attribute": "content",
3527
+ "inheritedFrom": {
3528
+ "name": "GrantCodesTabsItem",
3529
+ "module": "src/components/tabs/internal/tabs-item.component.js"
3530
+ }
3531
+ },
3532
+ {
3533
+ "kind": "field",
3534
+ "name": "index",
3535
+ "privacy": "public",
3536
+ "type": {
3537
+ "text": "number"
3538
+ },
3539
+ "default": "-1",
3540
+ "attribute": "index",
3541
+ "inheritedFrom": {
3542
+ "name": "GrantCodesTabsItem",
3543
+ "module": "src/components/tabs/internal/tabs-item.component.js"
3544
+ }
3545
+ },
3546
+ {
3547
+ "kind": "field",
3548
+ "name": "label",
3549
+ "privacy": "public",
3550
+ "type": {
3551
+ "text": "string"
3552
+ },
3553
+ "default": "\"\"",
3554
+ "attribute": "label",
3555
+ "inheritedFrom": {
3556
+ "name": "GrantCodesTabsItem",
3557
+ "module": "src/components/tabs/internal/tabs-item.component.js"
3558
+ }
3559
+ },
3560
+ {
3561
+ "kind": "field",
3562
+ "name": "panelId",
3563
+ "privacy": "public",
3564
+ "type": {
3565
+ "text": "string"
3566
+ },
3567
+ "readonly": true,
3568
+ "attribute": "panelId",
3569
+ "inheritedFrom": {
3570
+ "name": "GrantCodesTabsItem",
3571
+ "module": "src/components/tabs/internal/tabs-item.component.js"
3572
+ }
3573
+ }
3574
+ ],
3575
+ "superclass": {
3576
+ "name": "GrantCodesTabsItem",
3577
+ "module": "/src/components/tabs/internal/tabs-item.component.js"
3578
+ },
3579
+ "tagName": "grantcodes-tab",
3580
+ "customElement": true,
3581
+ "attributes": [
3582
+ {
3583
+ "name": "active",
3584
+ "type": {
3585
+ "text": "boolean"
3586
+ },
3587
+ "default": "false",
3588
+ "fieldName": "active",
3589
+ "inheritedFrom": {
3590
+ "name": "GrantCodesTabsItem",
3591
+ "module": "src/components/tabs/internal/tabs-item.component.js"
3592
+ }
3593
+ },
3594
+ {
3595
+ "name": "buttonId",
3596
+ "type": {
3597
+ "text": "string"
3598
+ },
3599
+ "readonly": true,
3600
+ "fieldName": "buttonId",
3601
+ "inheritedFrom": {
3602
+ "name": "GrantCodesTabsItem",
3603
+ "module": "src/components/tabs/internal/tabs-item.component.js"
3604
+ }
3605
+ },
3606
+ {
3607
+ "name": "containerId",
3608
+ "type": {
3609
+ "text": "string"
3610
+ },
3611
+ "default": "\"\"",
3612
+ "fieldName": "containerId",
3613
+ "inheritedFrom": {
3614
+ "name": "GrantCodesTabsItem",
3615
+ "module": "src/components/tabs/internal/tabs-item.component.js"
3616
+ }
3617
+ },
3618
+ {
3619
+ "name": "content",
3620
+ "type": {
3621
+ "text": "string"
3622
+ },
3623
+ "readonly": true,
3624
+ "fieldName": "content",
3625
+ "inheritedFrom": {
3626
+ "name": "GrantCodesTabsItem",
3627
+ "module": "src/components/tabs/internal/tabs-item.component.js"
3628
+ }
3629
+ },
3630
+ {
3631
+ "name": "index",
3632
+ "type": {
3633
+ "text": "number"
3634
+ },
3635
+ "default": "-1",
3636
+ "fieldName": "index",
3637
+ "inheritedFrom": {
3638
+ "name": "GrantCodesTabsItem",
3639
+ "module": "src/components/tabs/internal/tabs-item.component.js"
3640
+ }
3641
+ },
3642
+ {
3643
+ "name": "label",
3644
+ "type": {
3645
+ "text": "string"
3646
+ },
3647
+ "default": "\"\"",
3648
+ "fieldName": "label",
3649
+ "inheritedFrom": {
3650
+ "name": "GrantCodesTabsItem",
3651
+ "module": "src/components/tabs/internal/tabs-item.component.js"
3652
+ }
3653
+ },
3654
+ {
3655
+ "name": "panelId",
3656
+ "type": {
3657
+ "text": "string"
3658
+ },
3659
+ "readonly": true,
3660
+ "fieldName": "panelId",
3661
+ "inheritedFrom": {
3662
+ "name": "GrantCodesTabsItem",
3663
+ "module": "src/components/tabs/internal/tabs-item.component.js"
3664
+ }
3665
+ }
3666
+ ],
3667
+ "modulePath": "src/components/tabs/tab.component.js",
3668
+ "definitionPath": "src/components/tabs/tab.js",
3669
+ "cssProperties": [],
3670
+ "cssParts": [],
3671
+ "cssStates": [],
3672
+ "events": [],
3673
+ "slots": []
3674
+ }
3675
+ ],
3676
+ "exports": [
3677
+ {
3678
+ "kind": "js",
3679
+ "name": "GrantCodesTab",
3680
+ "declaration": {
3681
+ "name": "GrantCodesTab",
3682
+ "module": "src/components/tabs/tab.component.js"
3683
+ }
3684
+ }
3685
+ ]
3686
+ },
3687
+ {
3688
+ "kind": "javascript-module",
3689
+ "path": "src/components/tabs/tab.js",
3690
+ "declarations": [],
3691
+ "exports": [
3692
+ {
3693
+ "kind": "js",
3694
+ "name": "*",
3695
+ "declaration": {
3696
+ "name": "*",
3697
+ "module": "src/components/tabs/tab.component.js"
3698
+ }
3699
+ },
3700
+ {
3701
+ "kind": "js",
3702
+ "name": "default",
3703
+ "declaration": {
3704
+ "name": "GrantCodesTab",
3705
+ "module": "src/components/tabs/tab.js"
3706
+ }
3707
+ },
3708
+ {
3709
+ "kind": "custom-element-definition",
3710
+ "name": "grantcodes-tab",
3711
+ "declaration": {
3712
+ "name": "GrantCodesTab",
3713
+ "module": "/src/components/tabs/tab.component.js"
3714
+ }
3715
+ }
3716
+ ]
3717
+ },
3718
+ {
3719
+ "kind": "javascript-module",
3720
+ "path": "src/components/tabs/tabs.component.js",
3721
+ "declarations": [
3722
+ {
3723
+ "kind": "class",
3724
+ "description": "",
3725
+ "name": "GrantCodesTabs",
3726
+ "members": [
3727
+ {
3728
+ "kind": "field",
3729
+ "name": "_focusedTabIndex",
3730
+ "privacy": "public",
3731
+ "type": {
3732
+ "text": "number"
3733
+ },
3734
+ "default": "-1",
3735
+ "attribute": "_focusedTabIndex"
3736
+ },
3737
+ {
3738
+ "kind": "field",
3739
+ "name": "activeTab"
3740
+ },
3741
+ {
3742
+ "kind": "method",
3743
+ "name": "handleTabKeyDown",
3744
+ "parameters": [
3745
+ {
3746
+ "name": "e"
3747
+ }
3748
+ ]
3749
+ },
3750
+ {
3751
+ "kind": "method",
3752
+ "name": "initializeTabs"
3753
+ },
3754
+ {
3755
+ "kind": "field",
3756
+ "name": "label",
3757
+ "privacy": "public",
3758
+ "type": {
3759
+ "text": "string"
3760
+ },
3761
+ "default": "\"\"",
3762
+ "attribute": "label"
3763
+ },
3764
+ {
3765
+ "kind": "method",
3766
+ "name": "renderTabButtons"
3767
+ },
3768
+ {
3769
+ "kind": "field",
3770
+ "name": "tabButtons",
3771
+ "type": {
3772
+ "text": "GrantCodesTabsButton[]"
3773
+ },
3774
+ "default": "[]"
3775
+ },
3776
+ {
3777
+ "kind": "field",
3778
+ "name": "tabs",
3779
+ "type": {
3780
+ "text": "GrantCodesTab[]"
3781
+ },
3782
+ "default": "[]"
3783
+ }
3784
+ ],
3785
+ "attributes": [
3786
+ {
3787
+ "name": "_focusedTabIndex",
3788
+ "type": {
3789
+ "text": "number"
3790
+ },
3791
+ "default": "-1",
3792
+ "fieldName": "_focusedTabIndex"
3793
+ },
3794
+ {
3795
+ "name": "label",
3796
+ "type": {
3797
+ "text": "string"
3798
+ },
3799
+ "default": "\"\"",
3800
+ "fieldName": "label"
3801
+ }
3802
+ ],
3803
+ "superclass": {
3804
+ "name": "LitElement",
3805
+ "package": "lit"
3806
+ },
3807
+ "tagName": "grantcodes-tabs",
3808
+ "customElement": true,
3809
+ "modulePath": "src/components/tabs/tabs.component.js",
3810
+ "definitionPath": "src/components/tabs/tabs.js"
3811
+ }
3812
+ ],
3813
+ "exports": [
3814
+ {
3815
+ "kind": "js",
3816
+ "name": "GrantCodesTabs",
3817
+ "declaration": {
3818
+ "name": "GrantCodesTabs",
3819
+ "module": "src/components/tabs/tabs.component.js"
3820
+ }
3821
+ }
3822
+ ]
3823
+ },
3824
+ {
3825
+ "kind": "javascript-module",
3826
+ "path": "src/components/tabs/tabs.js",
3827
+ "declarations": [],
3828
+ "exports": [
3829
+ {
3830
+ "kind": "js",
3831
+ "name": "*",
3832
+ "declaration": {
3833
+ "name": "*",
3834
+ "module": "src/components/tabs/tabs.component.js"
3835
+ }
3836
+ },
3837
+ {
3838
+ "kind": "js",
3839
+ "name": "default",
3840
+ "declaration": {
3841
+ "name": "GrantCodesTabs",
3842
+ "module": "src/components/tabs/tabs.js"
3843
+ }
3844
+ },
3845
+ {
3846
+ "kind": "custom-element-definition",
3847
+ "name": "grantcodes-tabs",
3848
+ "declaration": {
3849
+ "name": "GrantCodesTabs",
3850
+ "module": "/src/components/tabs/tabs.component.js"
3851
+ }
3852
+ }
3853
+ ]
3854
+ },
3855
+ {
3856
+ "kind": "javascript-module",
3857
+ "path": "src/components/toast/index.js",
3858
+ "declarations": [],
3859
+ "exports": [
3860
+ {
3861
+ "kind": "js",
3862
+ "name": "*",
3863
+ "declaration": {
3864
+ "name": "*",
3865
+ "module": "src/components/toast/toast.js"
3866
+ }
3867
+ }
3868
+ ]
3869
+ },
3870
+ {
3871
+ "kind": "javascript-module",
3872
+ "path": "src/components/toast/toast.component.js",
3873
+ "declarations": [
3874
+ {
3875
+ "kind": "class",
3876
+ "description": "",
3877
+ "name": "GrantCodesToast",
3878
+ "members": [
3879
+ {
3880
+ "kind": "field",
3881
+ "name": "_dismissTimeout",
3882
+ "type": {
3883
+ "text": "number | null"
3884
+ },
3885
+ "description": "Timeout ID for auto-dismiss",
3886
+ "default": "null"
3887
+ },
3888
+ {
3889
+ "kind": "method",
3890
+ "name": "_handleDismiss"
3891
+ },
3892
+ {
3893
+ "kind": "method",
3894
+ "name": "_renderDismissButton"
3895
+ },
3896
+ {
3897
+ "kind": "field",
3898
+ "name": "_visible",
3899
+ "privacy": "public",
3900
+ "type": {
3901
+ "text": "boolean"
3902
+ },
3903
+ "description": "Internal visibility state",
3904
+ "default": "false",
3905
+ "attribute": "_visible"
3906
+ },
3907
+ {
3908
+ "kind": "field",
3909
+ "name": "dependencies",
3910
+ "type": {
3911
+ "text": "object"
3912
+ },
3913
+ "static": true,
3914
+ "default": "{ \"grancodes-icon\": GrantCodesIcon }"
3915
+ },
3916
+ {
3917
+ "kind": "field",
3918
+ "name": "dismissible",
3919
+ "privacy": "public",
3920
+ "type": {
3921
+ "text": "boolean"
3922
+ },
3923
+ "description": "Whether toast can be manually dismissed",
3924
+ "default": "true",
3925
+ "attribute": "dismissible"
3926
+ },
3927
+ {
3928
+ "kind": "field",
3929
+ "name": "duration",
3930
+ "privacy": "public",
3931
+ "type": {
3932
+ "text": "number"
3933
+ },
3934
+ "description": "Auto-dismiss duration in milliseconds (0 = no auto-dismiss)",
3935
+ "default": "5000",
3936
+ "attribute": "duration"
3937
+ },
3938
+ {
3939
+ "kind": "field",
3940
+ "name": "position",
3941
+ "privacy": "public",
3942
+ "type": {
3943
+ "text": "'top-left' | 'top-center' | 'top-right' | 'bottom-left' | 'bottom-center' | 'bottom-right'"
3944
+ },
3945
+ "description": "Toast position",
3946
+ "default": "\"top-right\"",
3947
+ "attribute": "position"
3948
+ },
3949
+ {
3950
+ "kind": "field",
3951
+ "name": "title",
3952
+ "privacy": "public",
3953
+ "type": {
3954
+ "text": "string"
3955
+ },
3956
+ "description": "Toast title",
3957
+ "default": "\"\"",
3958
+ "attribute": "title"
3959
+ },
3960
+ {
3961
+ "kind": "field",
3962
+ "name": "variant",
3963
+ "privacy": "public",
3964
+ "type": {
3965
+ "text": "'info' | 'success' | 'warning' | 'error'"
3966
+ },
3967
+ "description": "Visual variant",
3968
+ "default": "\"info\"",
3969
+ "attribute": "variant"
3970
+ }
3971
+ ],
3972
+ "events": [
3973
+ {
3974
+ "name": "dismiss",
3975
+ "type": {
3976
+ "text": "CustomEvent"
3977
+ }
3978
+ }
3979
+ ],
3980
+ "attributes": [
3981
+ {
3982
+ "name": "_visible",
3983
+ "type": {
3984
+ "text": "boolean"
3985
+ },
3986
+ "description": "Internal visibility state",
3987
+ "default": "false",
3988
+ "fieldName": "_visible"
3989
+ },
3990
+ {
3991
+ "name": "dismissible",
3992
+ "type": {
3993
+ "text": "boolean"
3994
+ },
3995
+ "description": "Whether toast can be manually dismissed",
3996
+ "default": "true",
3997
+ "fieldName": "dismissible"
3998
+ },
3999
+ {
4000
+ "name": "duration",
4001
+ "type": {
4002
+ "text": "number"
4003
+ },
4004
+ "description": "Auto-dismiss duration in milliseconds (0 = no auto-dismiss)",
4005
+ "default": "5000",
4006
+ "fieldName": "duration"
4007
+ },
4008
+ {
4009
+ "name": "position",
4010
+ "type": {
4011
+ "text": "'top-left' | 'top-center' | 'top-right' | 'bottom-left' | 'bottom-center' | 'bottom-right'"
4012
+ },
4013
+ "description": "Toast position",
4014
+ "default": "\"top-right\"",
4015
+ "fieldName": "position"
4016
+ },
4017
+ {
4018
+ "name": "title",
4019
+ "type": {
4020
+ "text": "string"
4021
+ },
4022
+ "description": "Toast title",
4023
+ "default": "\"\"",
4024
+ "fieldName": "title"
4025
+ },
4026
+ {
4027
+ "name": "variant",
4028
+ "type": {
4029
+ "text": "'info' | 'success' | 'warning' | 'error'"
4030
+ },
4031
+ "description": "Visual variant",
4032
+ "default": "\"info\"",
4033
+ "fieldName": "variant"
4034
+ }
4035
+ ],
4036
+ "superclass": {
4037
+ "name": "LitElement",
4038
+ "package": "lit"
4039
+ },
4040
+ "tagName": "grantcodes-toast",
4041
+ "customElement": true,
4042
+ "modulePath": "src/components/toast/toast.component.js",
4043
+ "definitionPath": "src/components/toast/toast.js"
4044
+ },
4045
+ {
4046
+ "kind": "class",
4047
+ "description": "Toast container for managing multiple toasts",
4048
+ "name": "GrantCodesToastContainer",
4049
+ "members": [
4050
+ {
4051
+ "kind": "field",
4052
+ "name": "position",
4053
+ "privacy": "public",
4054
+ "type": {
4055
+ "text": "'top-left' | 'top-center' | 'top-right' | 'bottom-left' | 'bottom-center' | 'bottom-right'"
4056
+ },
4057
+ "description": "Position of the toast container",
4058
+ "default": "\"top-right\"",
4059
+ "attribute": "position"
4060
+ }
4061
+ ],
4062
+ "attributes": [
4063
+ {
4064
+ "name": "position",
4065
+ "type": {
4066
+ "text": "'top-left' | 'top-center' | 'top-right' | 'bottom-left' | 'bottom-center' | 'bottom-right'"
4067
+ },
4068
+ "description": "Position of the toast container",
4069
+ "default": "\"top-right\"",
4070
+ "fieldName": "position"
4071
+ }
4072
+ ],
4073
+ "superclass": {
4074
+ "name": "LitElement",
4075
+ "package": "lit"
4076
+ },
4077
+ "tagName": "grantcodes-toast-container",
4078
+ "customElement": true,
4079
+ "modulePath": "src/components/toast/toast.component.js",
4080
+ "definitionPath": "src/components/toast/toast.js"
4081
+ }
4082
+ ],
4083
+ "exports": [
4084
+ {
4085
+ "kind": "js",
4086
+ "name": "GrantCodesToast",
4087
+ "declaration": {
4088
+ "name": "GrantCodesToast",
4089
+ "module": "src/components/toast/toast.component.js"
4090
+ }
4091
+ },
4092
+ {
4093
+ "kind": "js",
4094
+ "name": "GrantCodesToastContainer",
4095
+ "declaration": {
4096
+ "name": "GrantCodesToastContainer",
4097
+ "module": "src/components/toast/toast.component.js"
4098
+ }
4099
+ }
4100
+ ]
4101
+ },
4102
+ {
4103
+ "kind": "javascript-module",
4104
+ "path": "src/components/toast/toast.js",
4105
+ "declarations": [],
4106
+ "exports": [
4107
+ {
4108
+ "kind": "js",
4109
+ "name": "*",
4110
+ "declaration": {
4111
+ "name": "*",
4112
+ "module": "src/components/toast/toast.component.js"
4113
+ }
4114
+ },
4115
+ {
4116
+ "kind": "js",
4117
+ "name": "default",
4118
+ "declaration": {
4119
+ "name": "GrantCodesToast",
4120
+ "module": "src/components/toast/toast.js"
4121
+ }
4122
+ },
4123
+ {
4124
+ "kind": "custom-element-definition",
4125
+ "name": "grantcodes-toast",
4126
+ "declaration": {
4127
+ "name": "GrantCodesToast",
4128
+ "module": "/src/components/toast/toast.component.js"
4129
+ }
4130
+ },
4131
+ {
4132
+ "kind": "custom-element-definition",
4133
+ "name": "grantcodes-toast-container",
4134
+ "declaration": {
4135
+ "name": "GrantCodesToastContainer",
4136
+ "module": "/src/components/toast/toast.component.js"
4137
+ }
4138
+ }
4139
+ ]
4140
+ },
4141
+ {
4142
+ "kind": "javascript-module",
4143
+ "path": "src/components/tooltip/index.js",
4144
+ "declarations": [],
4145
+ "exports": [
4146
+ {
4147
+ "kind": "js",
4148
+ "name": "*",
4149
+ "declaration": {
4150
+ "name": "*",
4151
+ "module": "src/components/tooltip/tooltip"
4152
+ }
4153
+ }
4154
+ ]
4155
+ },
4156
+ {
4157
+ "kind": "javascript-module",
4158
+ "path": "src/components/tooltip/tooltip.component.js",
4159
+ "declarations": [
4160
+ {
4161
+ "kind": "class",
4162
+ "description": "",
4163
+ "name": "GrantCodesTooltip",
4164
+ "members": [
4165
+ {
4166
+ "kind": "field",
4167
+ "name": "description",
4168
+ "privacy": "public",
4169
+ "type": {
4170
+ "text": "string"
4171
+ },
4172
+ "description": "Description for the tooltip, used when the tooltip is additional descriptive text for the item.",
4173
+ "default": "\"\"",
4174
+ "attribute": "description"
4175
+ },
4176
+ {
4177
+ "kind": "field",
4178
+ "name": "id"
4179
+ },
4180
+ {
4181
+ "kind": "field",
4182
+ "name": "label",
4183
+ "privacy": "public",
4184
+ "type": {
4185
+ "text": "string"
4186
+ },
4187
+ "description": "Label for the tooltip, used when the tooltip is the main label for the item.",
4188
+ "default": "\"\"",
4189
+ "attribute": "label"
4190
+ },
4191
+ {
4192
+ "kind": "field",
4193
+ "name": "slotted",
4194
+ "type": {
4195
+ "text": "Element[]"
4196
+ },
4197
+ "default": "[]"
4198
+ }
4199
+ ],
4200
+ "attributes": [
4201
+ {
4202
+ "name": "description",
4203
+ "type": {
4204
+ "text": "string"
4205
+ },
4206
+ "description": "Description for the tooltip, used when the tooltip is additional descriptive text for the item.",
4207
+ "default": "\"\"",
4208
+ "fieldName": "description"
4209
+ },
4210
+ {
4211
+ "name": "label",
4212
+ "type": {
4213
+ "text": "string"
4214
+ },
4215
+ "description": "Label for the tooltip, used when the tooltip is the main label for the item.",
4216
+ "default": "\"\"",
4217
+ "fieldName": "label"
4218
+ }
4219
+ ],
4220
+ "superclass": {
4221
+ "name": "LitElement",
4222
+ "package": "lit"
4223
+ },
4224
+ "tagName": "grantcodes-tooltip",
4225
+ "customElement": true,
4226
+ "modulePath": "src/components/tooltip/tooltip.component.js",
4227
+ "definitionPath": "src/components/tooltip/tooltip.js"
4228
+ }
4229
+ ],
4230
+ "exports": [
4231
+ {
4232
+ "kind": "js",
4233
+ "name": "GrantCodesTooltip",
4234
+ "declaration": {
4235
+ "name": "GrantCodesTooltip",
4236
+ "module": "src/components/tooltip/tooltip.component.js"
4237
+ }
4238
+ }
4239
+ ]
4240
+ },
4241
+ {
4242
+ "kind": "javascript-module",
4243
+ "path": "src/components/tooltip/tooltip.js",
4244
+ "declarations": [],
4245
+ "exports": [
4246
+ {
4247
+ "kind": "js",
4248
+ "name": "*",
4249
+ "declaration": {
4250
+ "name": "*",
4251
+ "module": "src/components/tooltip/tooltip.component.js"
4252
+ }
4253
+ },
4254
+ {
4255
+ "kind": "js",
4256
+ "name": "default",
4257
+ "declaration": {
4258
+ "name": "GrantCodesTooltip",
4259
+ "module": "src/components/tooltip/tooltip.js"
4260
+ }
4261
+ },
4262
+ {
4263
+ "kind": "custom-element-definition",
4264
+ "name": "grantcodes-tooltip",
4265
+ "declaration": {
4266
+ "name": "GrantCodesTooltip",
4267
+ "module": "/src/components/tooltip/tooltip.component.js"
4268
+ }
4269
+ }
4270
+ ]
4271
+ }
4272
+ ]
4273
+ }