@pixelated-tech/components 3.11.8 → 3.12.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 (286) hide show
  1. package/dist/components/admin/site-health/site-health-accessibility.js +6 -0
  2. package/dist/components/admin/site-health/site-health-axe-core.js +6 -0
  3. package/dist/components/admin/site-health/site-health-cloudwatch.js +10 -0
  4. package/dist/components/admin/site-health/site-health-dependency-vulnerabilities.js +6 -0
  5. package/dist/components/admin/site-health/site-health-github.js +10 -0
  6. package/dist/components/admin/site-health/site-health-google-analytics.js +10 -0
  7. package/dist/components/admin/site-health/site-health-google-search-console.js +10 -0
  8. package/dist/components/admin/site-health/site-health-mock-context.js +8 -0
  9. package/dist/components/admin/site-health/site-health-on-site-seo.js +6 -0
  10. package/dist/components/admin/site-health/site-health-overview.js +6 -0
  11. package/dist/components/admin/site-health/site-health-performance.js +6 -0
  12. package/dist/components/admin/site-health/site-health-security.js +6 -0
  13. package/dist/components/admin/site-health/site-health-seo.js +6 -0
  14. package/dist/components/admin/site-health/site-health-template.js +28 -0
  15. package/dist/components/admin/site-health/site-health-uptime.js +6 -0
  16. package/dist/components/config/config.server.js +8 -0
  17. package/dist/components/general/404.js +6 -0
  18. package/dist/components/general/accordion.js +11 -0
  19. package/dist/components/general/buzzwordbingo.js +18 -0
  20. package/dist/components/general/callout.js +65 -2
  21. package/dist/components/general/carousel.drag.js +12 -0
  22. package/dist/components/general/carousel.js +50 -0
  23. package/dist/components/general/faq-accordion.js +15 -0
  24. package/dist/components/general/global-error.js +12 -0
  25. package/dist/components/general/hero.js +13 -0
  26. package/dist/components/general/loading.js +10 -1
  27. package/dist/components/general/markdown.js +6 -0
  28. package/dist/components/general/menu-accordion.js +30 -1
  29. package/dist/components/general/menu-expando.js +24 -1
  30. package/dist/components/general/menu-simple.js +21 -0
  31. package/dist/components/general/metadata.components.js +10 -0
  32. package/dist/components/general/microinteractions.js +22 -0
  33. package/dist/components/general/modal.js +12 -0
  34. package/dist/components/general/nerdjoke.js +11 -1
  35. package/dist/components/general/proxy-handler.js +7 -7
  36. package/dist/components/general/recipe.js +46 -1
  37. package/dist/components/general/resume.js +82 -0
  38. package/dist/components/general/schema-blogposting.js +6 -0
  39. package/dist/components/general/schema-localbusiness.js +36 -0
  40. package/dist/components/general/schema-recipe.js +20 -0
  41. package/dist/components/general/semantic.js +178 -0
  42. package/dist/components/general/sidepanel.js +26 -0
  43. package/dist/components/general/sitemap.js +50 -0
  44. package/dist/components/general/skeleton-loading.css +5 -5
  45. package/dist/components/general/skeleton-loading.js +11 -2
  46. package/dist/components/general/skeleton.js +15 -0
  47. package/dist/components/general/smartimage.js +48 -2
  48. package/dist/components/general/splitscroll.js +21 -10
  49. package/dist/components/general/styleguide.js +6 -0
  50. package/dist/components/general/tab.js +12 -0
  51. package/dist/components/general/table.js +12 -0
  52. package/dist/components/general/tiles.js +32 -1
  53. package/dist/components/general/timeline.js +22 -0
  54. package/dist/components/integrations/calendly.js +10 -0
  55. package/dist/components/integrations/cloudinary.js +16 -0
  56. package/dist/components/integrations/contentful.delivery.js +84 -0
  57. package/dist/components/integrations/contentful.items.components.js +46 -0
  58. package/dist/components/integrations/flickr.js +34 -0
  59. package/dist/components/integrations/google.reviews.components.js +14 -0
  60. package/dist/components/integrations/googleanalytics.js +14 -0
  61. package/dist/components/integrations/googlemap.js +20 -0
  62. package/dist/components/integrations/googlesearch.js +6 -0
  63. package/dist/components/integrations/gravatar.components.js +59 -0
  64. package/dist/components/integrations/hubspot.components.js +30 -0
  65. package/dist/components/integrations/instagram.components.js +18 -0
  66. package/dist/components/integrations/lipsum.js +45 -0
  67. package/dist/components/integrations/loremipsum.js +13 -1
  68. package/dist/components/integrations/socialcard.js +20 -1
  69. package/dist/components/integrations/wordpress.components.js +40 -0
  70. package/dist/components/integrations/wordpress.functions.js +24 -0
  71. package/dist/components/integrations/yelp.js +8 -0
  72. package/dist/components/shoppingcart/ebay.components.js +70 -0
  73. package/dist/components/shoppingcart/ebay.functions.js +52 -0
  74. package/dist/components/shoppingcart/shoppingcart.components.js +89 -0
  75. package/dist/components/sitebuilder/config/CompoundFontSelector.js +32 -0
  76. package/dist/components/sitebuilder/config/ConfigBuilder.js +8 -0
  77. package/dist/components/sitebuilder/config/FontSelector.js +40 -0
  78. package/dist/components/sitebuilder/form/formbuilder.js +10 -1
  79. package/dist/components/sitebuilder/form/formcomponents.js +325 -6
  80. package/dist/components/sitebuilder/form/formengine.js +35 -1
  81. package/dist/components/sitebuilder/form/formextractor.js +33 -1
  82. package/dist/components/sitebuilder/form/formutils.js +0 -4
  83. package/dist/components/sitebuilder/form/formvalidator.js +6 -0
  84. package/dist/components/sitebuilder/page/components/ComponentPropertiesForm.js +8 -0
  85. package/dist/components/sitebuilder/page/components/ComponentSelector.js +10 -0
  86. package/dist/components/sitebuilder/page/components/ComponentTree.js +20 -0
  87. package/dist/components/sitebuilder/page/components/PageBuilderUI.js +6 -0
  88. package/dist/components/sitebuilder/page/components/PageEngine.js +20 -0
  89. package/dist/components/sitebuilder/page/components/SaveLoadSection.js +10 -0
  90. package/dist/config/pixelated.config.json.enc +1 -1
  91. package/dist/index.js +1 -0
  92. package/dist/index.server.js +1 -0
  93. package/dist/scripts/pixelated-eslint-plugin.js +56 -0
  94. package/dist/scripts/release.sh +12 -21
  95. package/dist/types/components/admin/site-health/site-health-accessibility.d.ts +1 -0
  96. package/dist/types/components/admin/site-health/site-health-accessibility.d.ts.map +1 -1
  97. package/dist/types/components/admin/site-health/site-health-axe-core.d.ts +1 -0
  98. package/dist/types/components/admin/site-health/site-health-axe-core.d.ts.map +1 -1
  99. package/dist/types/components/admin/site-health/site-health-cloudwatch.d.ts +3 -0
  100. package/dist/types/components/admin/site-health/site-health-cloudwatch.d.ts.map +1 -1
  101. package/dist/types/components/admin/site-health/site-health-dependency-vulnerabilities.d.ts +1 -0
  102. package/dist/types/components/admin/site-health/site-health-dependency-vulnerabilities.d.ts.map +1 -1
  103. package/dist/types/components/admin/site-health/site-health-github.d.ts +3 -0
  104. package/dist/types/components/admin/site-health/site-health-github.d.ts.map +1 -1
  105. package/dist/types/components/admin/site-health/site-health-google-analytics.d.ts +3 -0
  106. package/dist/types/components/admin/site-health/site-health-google-analytics.d.ts.map +1 -1
  107. package/dist/types/components/admin/site-health/site-health-google-search-console.d.ts +3 -0
  108. package/dist/types/components/admin/site-health/site-health-google-search-console.d.ts.map +1 -1
  109. package/dist/types/components/admin/site-health/site-health-mock-context.d.ts +8 -0
  110. package/dist/types/components/admin/site-health/site-health-mock-context.d.ts.map +1 -1
  111. package/dist/types/components/admin/site-health/site-health-on-site-seo.d.ts +1 -0
  112. package/dist/types/components/admin/site-health/site-health-on-site-seo.d.ts.map +1 -1
  113. package/dist/types/components/admin/site-health/site-health-overview.d.ts +1 -0
  114. package/dist/types/components/admin/site-health/site-health-overview.d.ts.map +1 -1
  115. package/dist/types/components/admin/site-health/site-health-performance.d.ts +1 -0
  116. package/dist/types/components/admin/site-health/site-health-performance.d.ts.map +1 -1
  117. package/dist/types/components/admin/site-health/site-health-security.d.ts +1 -0
  118. package/dist/types/components/admin/site-health/site-health-security.d.ts.map +1 -1
  119. package/dist/types/components/admin/site-health/site-health-seo.d.ts +1 -0
  120. package/dist/types/components/admin/site-health/site-health-seo.d.ts.map +1 -1
  121. package/dist/types/components/admin/site-health/site-health-template.d.ts +12 -0
  122. package/dist/types/components/admin/site-health/site-health-template.d.ts.map +1 -1
  123. package/dist/types/components/admin/site-health/site-health-uptime.d.ts +1 -0
  124. package/dist/types/components/admin/site-health/site-health-uptime.d.ts.map +1 -1
  125. package/dist/types/components/config/config.server.d.ts +2 -0
  126. package/dist/types/components/config/config.server.d.ts.map +1 -1
  127. package/dist/types/components/general/404.d.ts +1 -0
  128. package/dist/types/components/general/404.d.ts.map +1 -1
  129. package/dist/types/components/general/accordion.d.ts +2 -0
  130. package/dist/types/components/general/accordion.d.ts.map +1 -1
  131. package/dist/types/components/general/buzzwordbingo.d.ts +3 -0
  132. package/dist/types/components/general/buzzwordbingo.d.ts.map +1 -1
  133. package/dist/types/components/general/callout.d.ts +24 -0
  134. package/dist/types/components/general/callout.d.ts.map +1 -1
  135. package/dist/types/components/general/carousel.d.ts +13 -0
  136. package/dist/types/components/general/carousel.d.ts.map +1 -1
  137. package/dist/types/components/general/carousel.drag.d.ts +4 -0
  138. package/dist/types/components/general/carousel.drag.d.ts.map +1 -1
  139. package/dist/types/components/general/faq-accordion.d.ts +5 -0
  140. package/dist/types/components/general/faq-accordion.d.ts.map +1 -1
  141. package/dist/types/components/general/global-error.d.ts +4 -0
  142. package/dist/types/components/general/global-error.d.ts.map +1 -1
  143. package/dist/types/components/general/hero.d.ts +4 -0
  144. package/dist/types/components/general/hero.d.ts.map +1 -1
  145. package/dist/types/components/general/loading.d.ts +1 -0
  146. package/dist/types/components/general/loading.d.ts.map +1 -1
  147. package/dist/types/components/general/markdown.d.ts +1 -0
  148. package/dist/types/components/general/markdown.d.ts.map +1 -1
  149. package/dist/types/components/general/menu-accordion.d.ts +7 -0
  150. package/dist/types/components/general/menu-accordion.d.ts.map +1 -1
  151. package/dist/types/components/general/menu-expando.d.ts +6 -0
  152. package/dist/types/components/general/menu-expando.d.ts.map +1 -1
  153. package/dist/types/components/general/menu-simple.d.ts +6 -0
  154. package/dist/types/components/general/menu-simple.d.ts.map +1 -1
  155. package/dist/types/components/general/metadata.components.d.ts +3 -0
  156. package/dist/types/components/general/metadata.components.d.ts.map +1 -1
  157. package/dist/types/components/general/microinteractions.d.ts +9 -0
  158. package/dist/types/components/general/microinteractions.d.ts.map +1 -1
  159. package/dist/types/components/general/modal.d.ts +4 -0
  160. package/dist/types/components/general/modal.d.ts.map +1 -1
  161. package/dist/types/components/general/nerdjoke.d.ts +2 -0
  162. package/dist/types/components/general/nerdjoke.d.ts.map +1 -1
  163. package/dist/types/components/general/proxy-handler.d.ts +7 -7
  164. package/dist/types/components/general/proxy-handler.d.ts.map +1 -1
  165. package/dist/types/components/general/recipe.d.ts +13 -0
  166. package/dist/types/components/general/recipe.d.ts.map +1 -1
  167. package/dist/types/components/general/resume.d.ts +21 -0
  168. package/dist/types/components/general/resume.d.ts.map +1 -1
  169. package/dist/types/components/general/schema-blogposting.d.ts +1 -0
  170. package/dist/types/components/general/schema-blogposting.d.ts.map +1 -1
  171. package/dist/types/components/general/schema-localbusiness.d.ts +16 -0
  172. package/dist/types/components/general/schema-localbusiness.d.ts.map +1 -1
  173. package/dist/types/components/general/schema-recipe.d.ts +1 -0
  174. package/dist/types/components/general/schema-recipe.d.ts.map +1 -1
  175. package/dist/types/components/general/semantic.d.ts +67 -0
  176. package/dist/types/components/general/semantic.d.ts.map +1 -1
  177. package/dist/types/components/general/sidepanel.d.ts +11 -0
  178. package/dist/types/components/general/sidepanel.d.ts.map +1 -1
  179. package/dist/types/components/general/sitemap.d.ts +19 -0
  180. package/dist/types/components/general/sitemap.d.ts.map +1 -1
  181. package/dist/types/components/general/skeleton-loading.d.ts +3 -6
  182. package/dist/types/components/general/skeleton-loading.d.ts.map +1 -1
  183. package/dist/types/components/general/skeleton.d.ts +5 -0
  184. package/dist/types/components/general/skeleton.d.ts.map +1 -1
  185. package/dist/types/components/general/smartimage.d.ts +22 -0
  186. package/dist/types/components/general/smartimage.d.ts.map +1 -1
  187. package/dist/types/components/general/splitscroll.d.ts +18 -40
  188. package/dist/types/components/general/splitscroll.d.ts.map +1 -1
  189. package/dist/types/components/general/styleguide.d.ts +1 -0
  190. package/dist/types/components/general/styleguide.d.ts.map +1 -1
  191. package/dist/types/components/general/tab.d.ts +4 -0
  192. package/dist/types/components/general/tab.d.ts.map +1 -1
  193. package/dist/types/components/general/table.d.ts +4 -0
  194. package/dist/types/components/general/table.d.ts.map +1 -1
  195. package/dist/types/components/general/tiles.d.ts +12 -1
  196. package/dist/types/components/general/tiles.d.ts.map +1 -1
  197. package/dist/types/components/general/timeline.d.ts +5 -0
  198. package/dist/types/components/general/timeline.d.ts.map +1 -1
  199. package/dist/types/components/integrations/calendly.d.ts +3 -0
  200. package/dist/types/components/integrations/calendly.d.ts.map +1 -1
  201. package/dist/types/components/integrations/cloudinary.d.ts +4 -0
  202. package/dist/types/components/integrations/cloudinary.d.ts.map +1 -1
  203. package/dist/types/components/integrations/contentful.delivery.d.ts +22 -0
  204. package/dist/types/components/integrations/contentful.delivery.d.ts.map +1 -1
  205. package/dist/types/components/integrations/contentful.items.components.d.ts +10 -0
  206. package/dist/types/components/integrations/contentful.items.components.d.ts.map +1 -1
  207. package/dist/types/components/integrations/flickr.d.ts +11 -0
  208. package/dist/types/components/integrations/flickr.d.ts.map +1 -1
  209. package/dist/types/components/integrations/google.reviews.components.d.ts +5 -0
  210. package/dist/types/components/integrations/google.reviews.components.d.ts.map +1 -1
  211. package/dist/types/components/integrations/googleanalytics.d.ts +3 -0
  212. package/dist/types/components/integrations/googleanalytics.d.ts.map +1 -1
  213. package/dist/types/components/integrations/googlemap.d.ts +8 -0
  214. package/dist/types/components/integrations/googlemap.d.ts.map +1 -1
  215. package/dist/types/components/integrations/googlesearch.d.ts +1 -0
  216. package/dist/types/components/integrations/googlesearch.d.ts.map +1 -1
  217. package/dist/types/components/integrations/gravatar.components.d.ts +35 -0
  218. package/dist/types/components/integrations/gravatar.components.d.ts.map +1 -1
  219. package/dist/types/components/integrations/hubspot.components.d.ts +9 -0
  220. package/dist/types/components/integrations/hubspot.components.d.ts.map +1 -1
  221. package/dist/types/components/integrations/instagram.components.d.ts +7 -0
  222. package/dist/types/components/integrations/instagram.components.d.ts.map +1 -1
  223. package/dist/types/components/integrations/lipsum.d.ts +14 -0
  224. package/dist/types/components/integrations/lipsum.d.ts.map +1 -0
  225. package/dist/types/components/integrations/loremipsum.d.ts +4 -0
  226. package/dist/types/components/integrations/loremipsum.d.ts.map +1 -1
  227. package/dist/types/components/integrations/socialcard.d.ts +4 -0
  228. package/dist/types/components/integrations/socialcard.d.ts.map +1 -1
  229. package/dist/types/components/integrations/wordpress.components.d.ts +14 -0
  230. package/dist/types/components/integrations/wordpress.components.d.ts.map +1 -1
  231. package/dist/types/components/integrations/wordpress.functions.d.ts +6 -0
  232. package/dist/types/components/integrations/wordpress.functions.d.ts.map +1 -1
  233. package/dist/types/components/integrations/yelp.d.ts +2 -0
  234. package/dist/types/components/integrations/yelp.d.ts.map +1 -1
  235. package/dist/types/components/shoppingcart/ebay.components.d.ts +15 -0
  236. package/dist/types/components/shoppingcart/ebay.components.d.ts.map +1 -1
  237. package/dist/types/components/shoppingcart/ebay.functions.d.ts +12 -0
  238. package/dist/types/components/shoppingcart/ebay.functions.d.ts.map +1 -1
  239. package/dist/types/components/shoppingcart/shoppingcart.components.d.ts +30 -0
  240. package/dist/types/components/shoppingcart/shoppingcart.components.d.ts.map +1 -1
  241. package/dist/types/components/sitebuilder/config/CompoundFontSelector.d.ts +12 -0
  242. package/dist/types/components/sitebuilder/config/CompoundFontSelector.d.ts.map +1 -1
  243. package/dist/types/components/sitebuilder/config/ConfigBuilder.d.ts +2 -0
  244. package/dist/types/components/sitebuilder/config/ConfigBuilder.d.ts.map +1 -1
  245. package/dist/types/components/sitebuilder/config/FontSelector.d.ts +16 -0
  246. package/dist/types/components/sitebuilder/config/FontSelector.d.ts.map +1 -1
  247. package/dist/types/components/sitebuilder/form/formbuilder.d.ts +5 -1
  248. package/dist/types/components/sitebuilder/form/formbuilder.d.ts.map +1 -1
  249. package/dist/types/components/sitebuilder/form/formcomponents.d.ts +129 -0
  250. package/dist/types/components/sitebuilder/form/formcomponents.d.ts.map +1 -1
  251. package/dist/types/components/sitebuilder/form/formengine.d.ts +5 -0
  252. package/dist/types/components/sitebuilder/form/formengine.d.ts.map +1 -1
  253. package/dist/types/components/sitebuilder/form/formextractor.d.ts +6 -0
  254. package/dist/types/components/sitebuilder/form/formextractor.d.ts.map +1 -1
  255. package/dist/types/components/sitebuilder/form/formutils.d.ts +0 -2
  256. package/dist/types/components/sitebuilder/form/formutils.d.ts.map +1 -1
  257. package/dist/types/components/sitebuilder/form/formvalidator.d.ts +1 -0
  258. package/dist/types/components/sitebuilder/form/formvalidator.d.ts.map +1 -1
  259. package/dist/types/components/sitebuilder/page/components/ComponentPropertiesForm.d.ts +2 -0
  260. package/dist/types/components/sitebuilder/page/components/ComponentPropertiesForm.d.ts.map +1 -1
  261. package/dist/types/components/sitebuilder/page/components/ComponentSelector.d.ts +3 -0
  262. package/dist/types/components/sitebuilder/page/components/ComponentSelector.d.ts.map +1 -1
  263. package/dist/types/components/sitebuilder/page/components/ComponentTree.d.ts +8 -0
  264. package/dist/types/components/sitebuilder/page/components/ComponentTree.d.ts.map +1 -1
  265. package/dist/types/components/sitebuilder/page/components/PageBuilderUI.d.ts +1 -0
  266. package/dist/types/components/sitebuilder/page/components/PageBuilderUI.d.ts.map +1 -1
  267. package/dist/types/components/sitebuilder/page/components/PageEngine.d.ts +8 -0
  268. package/dist/types/components/sitebuilder/page/components/PageEngine.d.ts.map +1 -1
  269. package/dist/types/components/sitebuilder/page/components/SaveLoadSection.d.ts +3 -0
  270. package/dist/types/components/sitebuilder/page/components/SaveLoadSection.d.ts.map +1 -1
  271. package/dist/types/index.d.ts +1 -0
  272. package/dist/types/index.server.d.ts +1 -0
  273. package/dist/types/scripts/pixelated-eslint-plugin.d.ts +18 -0
  274. package/dist/types/stories/general/skeleton-loading.stories.d.ts +1 -1
  275. package/dist/types/stories/general/skeleton-loading.stories.d.ts.map +1 -1
  276. package/dist/types/stories/integrations/lipsum.stories.d.ts +38 -0
  277. package/dist/types/stories/integrations/lipsum.stories.d.ts.map +1 -0
  278. package/dist/types/stories/shoppingcart/shoppingcart.stories.d.ts +3 -1
  279. package/dist/types/stories/shoppingcart/shoppingcart.stories.d.ts.map +1 -1
  280. package/dist/types/tests/args.test.d.ts +2 -0
  281. package/dist/types/tests/args.test.d.ts.map +1 -0
  282. package/dist/types/tests/lipsum.test.d.ts +2 -0
  283. package/dist/types/tests/lipsum.test.d.ts.map +1 -0
  284. package/dist/types/tests/storybook-docgen.test.d.ts +2 -0
  285. package/dist/types/tests/storybook-docgen.test.d.ts.map +1 -0
  286. package/package.json +12 -9
@@ -1 +1 @@
1
- {"version":3,"file":"site-health-on-site-seo.d.ts","sourceRoot":"","sources":["../../../../../src/components/admin/site-health/site-health-on-site-seo.tsx"],"names":[],"mappings":"AAGA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAkHnD,MAAM,MAAM,uBAAuB,GAAG,UAAU,CAAC,OAAO,mBAAmB,CAAC,SAAS,CAAC,CAAC;AACvF,wBAAgB,mBAAmB,CAAC,EAAE,QAAQ,EAAE,EAAE,uBAAuB,2CA8KxE;yBA9Ke,mBAAmB"}
1
+ {"version":3,"file":"site-health-on-site-seo.d.ts","sourceRoot":"","sources":["../../../../../src/components/admin/site-health/site-health-on-site-seo.tsx"],"names":[],"mappings":"AAGA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAwHnD,MAAM,MAAM,uBAAuB,GAAG,UAAU,CAAC,OAAO,mBAAmB,CAAC,SAAS,CAAC,CAAC;AACvF,wBAAgB,mBAAmB,CAAC,EAAE,QAAQ,EAAE,EAAE,uBAAuB,2CA8KxE;yBA9Ke,mBAAmB;;QAJnC,qDAAqD"}
@@ -3,6 +3,7 @@ export type SiteHealthOverviewType = InferProps<typeof SiteHealthOverview.propTy
3
3
  export declare function SiteHealthOverview({ siteName }: SiteHealthOverviewType): import("react/jsx-runtime").JSX.Element;
4
4
  export declare namespace SiteHealthOverview {
5
5
  var propTypes: {
6
+ /** Site identifier used to build the overview */
6
7
  siteName: PropTypes.Validator<string>;
7
8
  };
8
9
  }
@@ -1 +1 @@
1
- {"version":3,"file":"site-health-overview.d.ts","sourceRoot":"","sources":["../../../../../src/components/admin/site-health/site-health-overview.tsx"],"names":[],"mappings":"AAGA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AASnD,MAAM,MAAM,sBAAsB,GAAG,UAAU,CAAC,OAAO,kBAAkB,CAAC,SAAS,CAAC,CAAC;AACrF,wBAAgB,kBAAkB,CAAC,EAAE,QAAQ,EAAE,EAAE,sBAAsB,2CAmKtE;yBAnKe,kBAAkB"}
1
+ {"version":3,"file":"site-health-overview.d.ts","sourceRoot":"","sources":["../../../../../src/components/admin/site-health/site-health-overview.tsx"],"names":[],"mappings":"AAGA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAenD,MAAM,MAAM,sBAAsB,GAAG,UAAU,CAAC,OAAO,kBAAkB,CAAC,SAAS,CAAC,CAAC;AACrF,wBAAgB,kBAAkB,CAAC,EAAE,QAAQ,EAAE,EAAE,sBAAsB,2CAmKtE;yBAnKe,kBAAkB;;QAJlC,iDAAiD"}
@@ -3,6 +3,7 @@ export type SiteHealthPerformanceType = InferProps<typeof SiteHealthPerformance.
3
3
  export declare function SiteHealthPerformance({ siteName }: SiteHealthPerformanceType): import("react/jsx-runtime").JSX.Element;
4
4
  export declare namespace SiteHealthPerformance {
5
5
  var propTypes: {
6
+ /** Site identifier used to fetch performance metrics */
6
7
  siteName: PropTypes.Validator<string>;
7
8
  };
8
9
  }
@@ -1 +1 @@
1
- {"version":3,"file":"site-health-performance.d.ts","sourceRoot":"","sources":["../../../../../src/components/admin/site-health/site-health-performance.tsx"],"names":[],"mappings":"AAGA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AASnD,MAAM,MAAM,yBAAyB,GAAG,UAAU,CAAC,OAAO,qBAAqB,CAAC,SAAS,CAAC,CAAC;AAC3F,wBAAgB,qBAAqB,CAAC,EAAE,QAAQ,EAAE,EAAE,yBAAyB,2CAyG5E;yBAzGe,qBAAqB"}
1
+ {"version":3,"file":"site-health-performance.d.ts","sourceRoot":"","sources":["../../../../../src/components/admin/site-health/site-health-performance.tsx"],"names":[],"mappings":"AAGA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAenD,MAAM,MAAM,yBAAyB,GAAG,UAAU,CAAC,OAAO,qBAAqB,CAAC,SAAS,CAAC,CAAC;AAC3F,wBAAgB,qBAAqB,CAAC,EAAE,QAAQ,EAAE,EAAE,yBAAyB,2CAyG5E;yBAzGe,qBAAqB;;QAJrC,wDAAwD"}
@@ -3,6 +3,7 @@ export type SiteHealthSecurityType = InferProps<typeof SiteHealthSecurity.propTy
3
3
  export declare function SiteHealthSecurity({ siteName }: SiteHealthSecurityType): import("react/jsx-runtime").JSX.Element;
4
4
  export declare namespace SiteHealthSecurity {
5
5
  var propTypes: {
6
+ /** Site identifier used to fetch security data */
6
7
  siteName: PropTypes.Validator<string>;
7
8
  };
8
9
  }
@@ -1 +1 @@
1
- {"version":3,"file":"site-health-security.d.ts","sourceRoot":"","sources":["../../../../../src/components/admin/site-health/site-health-security.tsx"],"names":[],"mappings":"AAGA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAanD,MAAM,MAAM,sBAAsB,GAAG,UAAU,CAAC,OAAO,kBAAkB,CAAC,SAAS,CAAC,CAAC;AACrF,wBAAgB,kBAAkB,CAAC,EAAE,QAAQ,EAAE,EAAE,sBAAsB,2CA8GtE;yBA9Ge,kBAAkB"}
1
+ {"version":3,"file":"site-health-security.d.ts","sourceRoot":"","sources":["../../../../../src/components/admin/site-health/site-health-security.tsx"],"names":[],"mappings":"AAGA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAmBnD,MAAM,MAAM,sBAAsB,GAAG,UAAU,CAAC,OAAO,kBAAkB,CAAC,SAAS,CAAC,CAAC;AACrF,wBAAgB,kBAAkB,CAAC,EAAE,QAAQ,EAAE,EAAE,sBAAsB,2CA8GtE;yBA9Ge,kBAAkB;;QAJlC,kDAAkD"}
@@ -3,6 +3,7 @@ export type SiteHealthSEOType = InferProps<typeof SiteHealthSEO.propTypes>;
3
3
  export declare function SiteHealthSEO({ siteName }: SiteHealthSEOType): import("react/jsx-runtime").JSX.Element;
4
4
  export declare namespace SiteHealthSEO {
5
5
  var propTypes: {
6
+ /** Site identifier used to fetch SEO data */
6
7
  siteName: PropTypes.Validator<string>;
7
8
  };
8
9
  }
@@ -1 +1 @@
1
- {"version":3,"file":"site-health-seo.d.ts","sourceRoot":"","sources":["../../../../../src/components/admin/site-health/site-health-seo.tsx"],"names":[],"mappings":"AAGA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AASnD,MAAM,MAAM,iBAAiB,GAAG,UAAU,CAAC,OAAO,aAAa,CAAC,SAAS,CAAC,CAAC;AAC3E,wBAAgB,aAAa,CAAC,EAAE,QAAQ,EAAE,EAAE,iBAAiB,2CA4G5D;yBA5Ge,aAAa"}
1
+ {"version":3,"file":"site-health-seo.d.ts","sourceRoot":"","sources":["../../../../../src/components/admin/site-health/site-health-seo.tsx"],"names":[],"mappings":"AAGA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAenD,MAAM,MAAM,iBAAiB,GAAG,UAAU,CAAC,OAAO,aAAa,CAAC,SAAS,CAAC,CAAC;AAC3E,wBAAgB,aAAa,CAAC,EAAE,QAAQ,EAAE,EAAE,iBAAiB,2CA4G5D;yBA5Ge,aAAa;;QAJ7B,6CAA6C"}
@@ -4,19 +4,31 @@ export type SiteHealthTemplateType = InferProps<typeof SiteHealthTemplate.propTy
4
4
  export declare function SiteHealthTemplate<T>(props: SiteHealthTemplateType): import("react/jsx-runtime").JSX.Element | null;
5
5
  export declare namespace SiteHealthTemplate {
6
6
  var propTypes: {
7
+ /** Site identifier used to query health endpoints */
7
8
  siteName: PropTypes.Validator<string>;
9
+ /** Optional title for the panel */
8
10
  title: PropTypes.Requireable<string>;
11
+ /** Render prop receiving the fetched data */
9
12
  children: PropTypes.Validator<(...args: any[]) => any>;
13
+ /** Endpoint configuration */
10
14
  endpoint: PropTypes.Requireable<PropTypes.InferProps<{
11
15
  endpoint: PropTypes.Validator<string>;
16
+ /** HTTP method (GET/POST/PUT/DELETE) */
12
17
  method: PropTypes.Requireable<string>;
18
+ /** Optional request headers */
13
19
  headers: PropTypes.Requireable<object>;
20
+ /** Optional query parameters */
14
21
  params: PropTypes.Requireable<object>;
22
+ /** Optional request body (for POST/PUT) */
15
23
  body: PropTypes.Requireable<any>;
24
+ /** Optional response transformer function */
16
25
  responseTransformer: PropTypes.Requireable<(...args: any[]) => any>;
17
26
  }>>;
27
+ /** Respect cache control query param when true */
18
28
  enableCacheControl: PropTypes.Requireable<boolean>;
29
+ /** Grid column span for card rendering */
19
30
  columnSpan: PropTypes.Requireable<number>;
31
+ /** Optional pre-fetched data to render */
20
32
  data: PropTypes.Requireable<any>;
21
33
  };
22
34
  }
@@ -1 +1 @@
1
- {"version":3,"file":"site-health-template.d.ts","sourceRoot":"","sources":["../../../../../src/components/admin/site-health/site-health-template.tsx"],"names":[],"mappings":"AAGA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAEnD,OAAO,mBAAmB,CAAC;AA4B3B,MAAM,MAAM,sBAAsB,GAAG,UAAU,CAAC,OAAO,kBAAkB,CAAC,SAAS,CAAC,CAAC;AACrF,wBAAgB,kBAAkB,CAAC,CAAC,EACnC,KAAK,EAAE,sBAAsB,kDAyK7B;yBA1Ke,kBAAkB"}
1
+ {"version":3,"file":"site-health-template.d.ts","sourceRoot":"","sources":["../../../../../src/components/admin/site-health/site-health-template.tsx"],"names":[],"mappings":"AAGA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAEnD,OAAO,mBAAmB,CAAC;AAwD3B,MAAM,MAAM,sBAAsB,GAAG,UAAU,CAAC,OAAO,kBAAkB,CAAC,SAAS,CAAC,CAAC;AACrF,wBAAgB,kBAAkB,CAAC,CAAC,EACnC,KAAK,EAAE,sBAAsB,kDAyK7B;yBA1Ke,kBAAkB;;QA5BlC,qDAAqD;;QAEpD,mCAAmC;;QAEnC,6CAA6C;;QAE7C,6BAA6B;;;YAG5B,wCAAwC;;YAExC,+BAA+B;;YAE/B,gCAAgC;;YAEhC,2CAA2C;;YAE3C,6CAA6C;;;QAG9C,kDAAkD;;QAElD,0CAA0C;;QAE1C,0CAA0C"}
@@ -3,6 +3,7 @@ export type SiteHealthUptimeType = InferProps<typeof SiteHealthUptime.propTypes>
3
3
  export declare function SiteHealthUptime({ siteName }: SiteHealthUptimeType): import("react/jsx-runtime").JSX.Element;
4
4
  export declare namespace SiteHealthUptime {
5
5
  var propTypes: {
6
+ /** Site identifier used to fetch uptime metrics */
6
7
  siteName: PropTypes.Validator<string>;
7
8
  };
8
9
  }
@@ -1 +1 @@
1
- {"version":3,"file":"site-health-uptime.d.ts","sourceRoot":"","sources":["../../../../../src/components/admin/site-health/site-health-uptime.tsx"],"names":[],"mappings":"AAGA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAOnD,MAAM,MAAM,oBAAoB,GAAG,UAAU,CAAC,OAAO,gBAAgB,CAAC,SAAS,CAAC,CAAC;AACjF,wBAAgB,gBAAgB,CAAC,EAAE,QAAQ,EAAE,EAAE,oBAAoB,2CA0ElE;yBA1Ee,gBAAgB"}
1
+ {"version":3,"file":"site-health-uptime.d.ts","sourceRoot":"","sources":["../../../../../src/components/admin/site-health/site-health-uptime.tsx"],"names":[],"mappings":"AAGA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAanD,MAAM,MAAM,oBAAoB,GAAG,UAAU,CAAC,OAAO,gBAAgB,CAAC,SAAS,CAAC,CAAC;AACjF,wBAAgB,gBAAgB,CAAC,EAAE,QAAQ,EAAE,EAAE,oBAAoB,2CA0ElE;yBA1Ee,gBAAgB;;QAJhC,mDAAmD"}
@@ -3,7 +3,9 @@ export type PixelatedServerConfigProviderType = InferProps<typeof PixelatedServe
3
3
  export declare function PixelatedServerConfigProvider(props: PixelatedServerConfigProviderType): Promise<import("react/jsx-runtime").JSX.Element>;
4
4
  export declare namespace PixelatedServerConfigProvider {
5
5
  var propTypes: {
6
+ /** Optional sanitized server config object */
6
7
  config: PropTypes.Requireable<object>;
8
+ /** Child nodes rendered inside the client provider */
7
9
  children: PropTypes.Validator<NonNullable<PropTypes.ReactNodeLike>>;
8
10
  };
9
11
  }
@@ -1 +1 @@
1
- {"version":3,"file":"config.server.d.ts","sourceRoot":"","sources":["../../../../src/components/config/config.server.tsx"],"names":[],"mappings":"AAGA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAUnD,MAAM,MAAM,iCAAiC,GAAG,UAAU,CAAC,OAAO,6BAA6B,CAAC,SAAS,CAAC,CAAC;AAC3G,wBAAsB,6BAA6B,CAAC,KAAK,EAAE,iCAAiC,oDAM3F;yBANqB,6BAA6B"}
1
+ {"version":3,"file":"config.server.d.ts","sourceRoot":"","sources":["../../../../src/components/config/config.server.tsx"],"names":[],"mappings":"AAGA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAkBnD,MAAM,MAAM,iCAAiC,GAAG,UAAU,CAAC,OAAO,6BAA6B,CAAC,SAAS,CAAC,CAAC;AAC3G,wBAAsB,6BAA6B,CAAC,KAAK,EAAE,iCAAiC,oDAM3F;yBANqB,6BAA6B;;QANnD,8CAA8C;;QAE7C,sDAAsD"}
@@ -4,6 +4,7 @@ export type FourOhFourType = InferProps<typeof FourOhFour.propTypes>;
4
4
  export declare function FourOhFour(props: FourOhFourType): import("react/jsx-runtime").JSX.Element;
5
5
  export declare namespace FourOhFour {
6
6
  var propTypes: {
7
+ /** Array of image objects: { img: string, text: string, description?: string } */
7
8
  images: PropTypes.Validator<any[]>;
8
9
  };
9
10
  }
@@ -1 +1 @@
1
- {"version":3,"file":"404.d.ts","sourceRoot":"","sources":["../../../../src/components/general/404.tsx"],"names":[],"mappings":"AAGA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAInD,OAAO,WAAW,CAAC;AAKnB,MAAM,MAAM,cAAc,GAAG,UAAU,CAAC,OAAO,UAAU,CAAC,SAAS,CAAC,CAAC;AACrE,wBAAgB,UAAU,CAAE,KAAK,EAAE,cAAc,2CA4ChD;yBA5Ce,UAAU"}
1
+ {"version":3,"file":"404.d.ts","sourceRoot":"","sources":["../../../../src/components/general/404.tsx"],"names":[],"mappings":"AAGA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAInD,OAAO,WAAW,CAAC;AAWnB,MAAM,MAAM,cAAc,GAAG,UAAU,CAAC,OAAO,UAAU,CAAC,SAAS,CAAC,CAAC;AACrE,wBAAgB,UAAU,CAAE,KAAK,EAAE,cAAc,2CA4ChD;yBA5Ce,UAAU;;QAJzB,kFAAkF"}
@@ -10,11 +10,13 @@ export type AccordionType = InferProps<typeof Accordion.propTypes>;
10
10
  export declare function Accordion({ items, onToggle }: AccordionType): import("react/jsx-runtime").JSX.Element;
11
11
  export declare namespace Accordion {
12
12
  var propTypes: {
13
+ /** Array of accordion items to render. */
13
14
  items: PropTypes.Validator<(PropTypes.InferProps<{
14
15
  title: PropTypes.Validator<string>;
15
16
  content: PropTypes.Requireable<NonNullable<PropTypes.ReactNodeLike>>;
16
17
  open: PropTypes.Requireable<boolean>;
17
18
  }> | null | undefined)[]>;
19
+ /** Called when an item is toggled with (index, isOpen). */
18
20
  onToggle: PropTypes.Requireable<(...args: any[]) => any>;
19
21
  };
20
22
  }
@@ -1 +1 @@
1
- {"version":3,"file":"accordion.d.ts","sourceRoot":"","sources":["../../../../src/components/general/accordion.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AACnD,OAAO,iBAAiB,CAAC;AAEzB,MAAM,WAAW,aAAa;IAC5B,KAAK,EAAE,MAAM,CAAC;IACd,OAAO,EAAE,MAAM,GAAG,KAAK,CAAC,SAAS,CAAC;IAClC,IAAI,CAAC,EAAE,OAAO,GAAG,IAAI,CAAC;CACvB;AAYD,MAAM,MAAM,aAAa,GAAG,UAAU,CAAC,OAAO,SAAS,CAAC,SAAS,CAAC,CAAC;AACnE,wBAAgB,SAAS,CAAC,EAAE,KAAK,EAAE,QAAQ,EAAE,EAAE,aAAa,2CAgC3D;yBAhCe,SAAS"}
1
+ {"version":3,"file":"accordion.d.ts","sourceRoot":"","sources":["../../../../src/components/general/accordion.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AACnD,OAAO,iBAAiB,CAAC;AAEzB,MAAM,WAAW,aAAa;IAC5B,KAAK,EAAE,MAAM,CAAC;IACd,OAAO,EAAE,MAAM,GAAG,KAAK,CAAC,SAAS,CAAC;IAClC,IAAI,CAAC,EAAE,OAAO,GAAG,IAAI,CAAC;CACvB;AAuBD,MAAM,MAAM,aAAa,GAAG,UAAU,CAAC,OAAO,SAAS,CAAC,SAAS,CAAC,CAAC;AACnE,wBAAgB,SAAS,CAAC,EAAE,KAAK,EAAE,QAAQ,EAAE,EAAE,aAAa,2CAgC3D;yBAhCe,SAAS;;QAZxB,0CAA0C;;;;;;QAQ1C,2DAA2D"}
@@ -5,6 +5,7 @@ export type BuzzwordBingoType = InferProps<typeof BuzzwordBingo.propTypes>;
5
5
  export declare function BuzzwordBingo(props: BuzzwordBingoType): import("react/jsx-runtime").JSX.Element;
6
6
  export declare namespace BuzzwordBingo {
7
7
  var propTypes: {
8
+ /** List of buzzwords used to populate the bingo card. */
8
9
  buzzwords: PropTypes.Requireable<any[]>;
9
10
  };
10
11
  }
@@ -12,6 +13,7 @@ export type BingoHeaderType = InferProps<typeof BingoHeader.propTypes>;
12
13
  declare function BingoHeader({ word }: BingoHeaderType): import("react/jsx-runtime").JSX.Element;
13
14
  declare namespace BingoHeader {
14
15
  var propTypes: {
16
+ /** Header label character. */
15
17
  word: PropTypes.Validator<string>;
16
18
  };
17
19
  }
@@ -19,6 +21,7 @@ export type BingoBoxType = InferProps<typeof BingoBox.propTypes>;
19
21
  declare function BingoBox({ word }: BingoBoxType): import("react/jsx-runtime").JSX.Element;
20
22
  declare namespace BingoBox {
21
23
  var propTypes: {
24
+ /** Word displayed in the bingo cell. */
22
25
  word: PropTypes.Validator<string>;
23
26
  };
24
27
  }
@@ -1 +1 @@
1
- {"version":3,"file":"buzzwordbingo.d.ts","sourceRoot":"","sources":["../../../../src/components/general/buzzwordbingo.tsx"],"names":[],"mappings":"AACA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AACnD,OAAO,+BAA+B,CAAC;AACvC,OAAO,qBAAqB,CAAC;AAa7B,MAAM,MAAM,iBAAiB,GAAG,UAAU,CAAC,OAAO,aAAa,CAAC,SAAS,CAAC,CAAC;AAC3E,wBAAgB,aAAa,CAAC,KAAK,EAAE,iBAAiB,2CAiBrD;yBAjBe,aAAa;;;;;AAwB7B,MAAM,MAAM,eAAe,GAAG,UAAU,CAAC,OAAO,WAAW,CAAC,SAAS,CAAC,CAAC;AACvE,iBAAS,WAAW,CAAC,EAAE,IAAI,EAAE,EAAE,eAAe,2CAQ7C;kBARQ,WAAW;;;;;AAcpB,MAAM,MAAM,YAAY,GAAG,UAAU,CAAC,OAAO,QAAQ,CAAC,SAAS,CAAC,CAAC;AACjE,iBAAS,QAAQ,CAAC,EAAE,IAAI,EAAE,EAAE,YAAY,2CAQvC;kBARQ,QAAQ"}
1
+ {"version":3,"file":"buzzwordbingo.d.ts","sourceRoot":"","sources":["../../../../src/components/general/buzzwordbingo.tsx"],"names":[],"mappings":"AACA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AACnD,OAAO,+BAA+B,CAAC;AACvC,OAAO,qBAAqB,CAAC;AAmB7B,MAAM,MAAM,iBAAiB,GAAG,UAAU,CAAC,OAAO,aAAa,CAAC,SAAS,CAAC,CAAC;AAC3E,wBAAgB,aAAa,CAAC,KAAK,EAAE,iBAAiB,2CAiBrD;yBAjBe,aAAa;;QAJ7B,yDAAyD;;;;AAkCzD,MAAM,MAAM,eAAe,GAAG,UAAU,CAAC,OAAO,WAAW,CAAC,SAAS,CAAC,CAAC;AACvE,iBAAS,WAAW,CAAC,EAAE,IAAI,EAAE,EAAE,eAAe,2CAQ7C;kBARQ,WAAW;;QAJpB,8BAA8B;;;;AAwB9B,MAAM,MAAM,YAAY,GAAG,UAAU,CAAC,OAAO,QAAQ,CAAC,SAAS,CAAC,CAAC;AACjE,iBAAS,QAAQ,CAAC,EAAE,IAAI,EAAE,EAAE,YAAY,2CAQvC;kBARQ,QAAQ;;QAJhB,wCAAwC"}
@@ -12,24 +12,42 @@ export type CalloutType = InferProps<typeof Callout.propTypes>;
12
12
  export declare function Callout({ variant, boxShape, layout, direction, gridColumns, url, img, imgAlt, imgShape, imgClick, title, subtitle, content, children, buttonText, aboveFold, }: CalloutType): import("react/jsx-runtime").JSX.Element;
13
13
  export declare namespace Callout {
14
14
  var propTypes: {
15
+ /** Visual variant selector (e.g., 'default', 'boxed', 'grid', 'full'). */
15
16
  variant: PropTypes.Requireable<"split" | "grid" | "overlay" | "default" | "boxed" | "boxed grid" | "full">;
17
+ /** Corner/box shape for boxed variants. */
16
18
  boxShape: PropTypes.Requireable<"round" | "square" | "bevel" | "squircle">;
19
+ /** Layout direction: 'horizontal' or 'vertical'. */
17
20
  layout: PropTypes.Requireable<"horizontal" | "vertical">;
21
+ /** When horizontal layout is used, position image on 'left' or 'right'. */
18
22
  direction: PropTypes.Requireable<"left" | "right">;
23
+ /** Grid column sizing used for 'boxed grid' variants. */
19
24
  gridColumns: PropTypes.Requireable<PropTypes.InferProps<{
25
+ /** Left column width in the grid configuration. */
20
26
  left: PropTypes.Requireable<number>;
27
+ /** Right column width in the grid configuration. */
21
28
  right: PropTypes.Requireable<number>;
22
29
  }>>;
30
+ /** Optional CTA URL used by CalloutButton. */
23
31
  url: PropTypes.Requireable<string>;
32
+ /** Image URL to display in the callout. */
24
33
  img: PropTypes.Requireable<string>;
34
+ /** Alt text for the image (used for accessibility and caption fallback). */
25
35
  imgAlt: PropTypes.Requireable<string>;
36
+ /** Visual shape applied to the image container (e.g., 'square', 'round'). */
26
37
  imgShape: PropTypes.Requireable<"round" | "square" | "bevel" | "squircle">;
38
+ /** Optional click handler for the image (event, url). */
27
39
  imgClick: PropTypes.Requireable<(...args: any[]) => any>;
40
+ /** Primary title text for the callout. */
28
41
  title: PropTypes.Requireable<string>;
42
+ /** Optional subtitle/secondary heading. */
29
43
  subtitle: PropTypes.Requireable<string>;
44
+ /** Content string or React node to render inside the body area. */
30
45
  content: PropTypes.Requireable<NonNullable<PropTypes.ReactNodeLike>>;
46
+ /** React children to render in the content area (takes precedence over content prop). */
31
47
  children: PropTypes.Requireable<PropTypes.ReactNodeLike>;
48
+ /** Button or CTA text used when `url` is provided. */
32
49
  buttonText: PropTypes.Requireable<string>;
50
+ /** Hint to prioritize image loading (treat as above-the-fold). */
33
51
  aboveFold: PropTypes.Requireable<boolean>;
34
52
  };
35
53
  }
@@ -37,8 +55,11 @@ export type CalloutHeaderType = InferProps<typeof CalloutHeader.propTypes>;
37
55
  export declare function CalloutHeader({ title, url, target }: CalloutHeaderType): import("react/jsx-runtime").JSX.Element;
38
56
  export declare namespace CalloutHeader {
39
57
  var propTypes: {
58
+ /** Heading title text (required). */
40
59
  title: PropTypes.Validator<string>;
60
+ /** Optional link URL for the heading. */
41
61
  url: PropTypes.Requireable<string>;
62
+ /** Optional link target attribute. */
42
63
  target: PropTypes.Requireable<string>;
43
64
  };
44
65
  }
@@ -46,8 +67,11 @@ export type CalloutButtonType = InferProps<typeof CalloutButton.propTypes>;
46
67
  export declare function CalloutButton({ title, url, target }: CalloutButtonType): import("react/jsx-runtime").JSX.Element;
47
68
  export declare namespace CalloutButton {
48
69
  var propTypes: {
70
+ /** Button label text. */
49
71
  title: PropTypes.Validator<string>;
72
+ /** CTA URL that the button will navigate to when clicked. */
50
73
  url: PropTypes.Validator<string>;
74
+ /** Optional target attribute for link behavior. */
51
75
  target: PropTypes.Requireable<string>;
52
76
  };
53
77
  }
@@ -1 +1 @@
1
- {"version":3,"file":"callout.d.ts","sourceRoot":"","sources":["../../../../src/components/general/callout.tsx"],"names":[],"mappings":"AAGA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAInD,OAAO,gBAAgB,CAAC;AAiBxB,eAAO,MAAM,QAAQ,iFAAkF,CAAC;AACxG,eAAO,MAAM,MAAM,mDAAoD,CAAC;AACxE,eAAO,MAAM,OAAO,qCAAsC,CAAC;AAC3D,eAAO,MAAM,UAAU,4BAA6B,CAAC;AAGrD,MAAM,MAAM,SAAS,GAAG,OAAO,MAAM,CAAC,MAAM,CAAC,CAAC;AAC9C,MAAM,MAAM,WAAW,GAAG,OAAO,QAAQ,CAAC,MAAM,CAAC,CAAC;AAClD,MAAM,MAAM,UAAU,GAAG,OAAO,OAAO,CAAC,MAAM,CAAC,CAAC;AAChD,MAAM,MAAM,aAAa,GAAG,OAAO,UAAU,CAAC,MAAM,CAAC,CAAC;AA2BtD,MAAM,MAAM,WAAW,GAAG,UAAU,CAAC,OAAO,OAAO,CAAC,SAAS,CAAC,CAAC;AAC/D,wBAAgB,OAAO,CAAC,EACvB,OAAmB,EACnB,QAAqB,EACrB,MAAqB,EACrB,SAAkB,EAClB,WAAiC,EACjC,GAAG,EAAE,GAAG,EAAE,MAAM,EAChB,QAAmB,EACnB,QAAQ,EACR,KAAK,EAAE,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,UAAU,EAC9C,SAAS,GAGgB,EAAE,WAAW,2CAwEtC;yBArFe,OAAO;;;;;;;;;;;;;;;;;;;;;;;AA+FvB,MAAM,MAAM,iBAAiB,GAAG,UAAU,CAAC,OAAO,aAAa,CAAC,SAAS,CAAC,CAAC;AAC3E,wBAAgB,aAAa,CAAE,EAAC,KAAK,EAAE,GAAG,EAAE,MAAM,EAAC,EAAE,iBAAiB,2CASrE;yBATe,aAAa;;;;;;;AAmB7B,MAAM,MAAM,iBAAiB,GAAG,UAAU,CAAC,OAAO,aAAa,CAAC,SAAS,CAAC,CAAC;AAC3E,wBAAgB,aAAa,CAAE,EAAE,KAAK,EAAE,GAAG,EAAE,MAAM,EAAE,EAAG,iBAAiB,2CAgBxE;yBAhBe,aAAa"}
1
+ {"version":3,"file":"callout.d.ts","sourceRoot":"","sources":["../../../../src/components/general/callout.tsx"],"names":[],"mappings":"AAGA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAInD,OAAO,gBAAgB,CAAC;AAiBxB,eAAO,MAAM,QAAQ,iFAAkF,CAAC;AACxG,eAAO,MAAM,MAAM,mDAAoD,CAAC;AACxE,eAAO,MAAM,OAAO,qCAAsC,CAAC;AAC3D,eAAO,MAAM,UAAU,4BAA6B,CAAC;AAGrD,MAAM,MAAM,SAAS,GAAG,OAAO,MAAM,CAAC,MAAM,CAAC,CAAC;AAC9C,MAAM,MAAM,WAAW,GAAG,OAAO,QAAQ,CAAC,MAAM,CAAC,CAAC;AAClD,MAAM,MAAM,UAAU,GAAG,OAAO,OAAO,CAAC,MAAM,CAAC,CAAC;AAChD,MAAM,MAAM,aAAa,GAAG,OAAO,UAAU,CAAC,MAAM,CAAC,CAAC;AAsEtD,MAAM,MAAM,WAAW,GAAG,UAAU,CAAC,OAAO,OAAO,CAAC,SAAS,CAAC,CAAC;AAC/D,wBAAgB,OAAO,CAAC,EACvB,OAAmB,EACnB,QAAqB,EACrB,MAAqB,EACrB,SAAkB,EAClB,WAAiC,EACjC,GAAG,EAAE,GAAG,EAAE,MAAM,EAChB,QAAmB,EACnB,QAAQ,EACR,KAAK,EAAE,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,UAAU,EAC9C,SAAS,GAGgB,EAAE,WAAW,2CAwEtC;yBArFe,OAAO;;QA3CtB,0EAA0E;;QAE1E,2CAA2C;;QAE3C,oDAAoD;;QAEpD,2EAA2E;;QAE3E,yDAAyD;;YAExD,mDAAmD;;YAEnD,oDAAoD;;;QAGrD,8CAA8C;;QAE9C,2CAA2C;;QAE3C,4EAA4E;;QAE5E,6EAA6E;;QAE7E,yDAAyD;;QAEzD,0CAA0C;;QAE1C,2CAA2C;;QAE3C,mEAAmE;;QAEnE,yFAAyF;;QAEzF,sDAAsD;;QAGtD,kEAAkE;;;;AAgHnE,MAAM,MAAM,iBAAiB,GAAG,UAAU,CAAC,OAAO,aAAa,CAAC,SAAS,CAAC,CAAC;AAC3E,wBAAgB,aAAa,CAAE,EAAC,KAAK,EAAE,GAAG,EAAE,MAAM,EAAC,EAAE,iBAAiB,2CASrE;yBATe,aAAa;;QAR7B,qCAAqC;;QAEpC,yCAAyC;;QAEzC,sCAAsC;;;;AAiCvC,MAAM,MAAM,iBAAiB,GAAG,UAAU,CAAC,OAAO,aAAa,CAAC,SAAS,CAAC,CAAC;AAC3E,wBAAgB,aAAa,CAAE,EAAE,KAAK,EAAE,GAAG,EAAE,MAAM,EAAE,EAAG,iBAAiB,2CAgBxE;yBAhBe,aAAa;;QAR7B,yBAAyB;;QAExB,6DAA6D;;QAE7D,mDAAmD"}
@@ -17,19 +17,32 @@ export type CarouselType = InferProps<typeof Carousel.propTypes>;
17
17
  export declare function Carousel(props: CarouselType): import("react/jsx-runtime").JSX.Element;
18
18
  export declare namespace Carousel {
19
19
  var propTypes: {
20
+ /** Array of card objects used to render slides. */
20
21
  cards: PropTypes.Validator<(PropTypes.InferProps<{
22
+ /** Zero-based index of this card within the source array. */
21
23
  index: PropTypes.Validator<number>;
24
+ /** Index of the currently active card as passed to each card. */
22
25
  cardIndex: PropTypes.Validator<number>;
26
+ /** Total number of cards in the carousel (used for z-index/stacking). */
23
27
  cardLength: PropTypes.Validator<number>;
28
+ /** Optional href for this card. */
24
29
  link: PropTypes.Requireable<string>;
30
+ /** Optional link target attribute (e.g., '_self', '_blank'). */
25
31
  linkTarget: PropTypes.Requireable<string>;
32
+ /** Image URL for the slide (required). */
26
33
  image: PropTypes.Validator<string>;
34
+ /** Alt text for the image (used for accessibility). */
27
35
  imageAlt: PropTypes.Requireable<string>;
36
+ /** Image fitting mode: 'contain' | 'cover' | 'fill'. */
28
37
  imgFit: PropTypes.Requireable<string>;
38
+ /** Title or header text shown on the card. */
29
39
  headerText: PropTypes.Requireable<string>;
40
+ /** Optional subtitle text for the card. */
30
41
  subHeaderText: PropTypes.Requireable<string>;
42
+ /** Optional body content for the card. */
31
43
  bodyText: PropTypes.Requireable<string>;
32
44
  }> | null | undefined)[]>;
45
+ /** Enable swipe/drag interactions on touch and pointer devices. */
33
46
  draggable: PropTypes.Requireable<boolean>;
34
47
  imgFit: PropTypes.Requireable<string>;
35
48
  };
@@ -1 +1 @@
1
- {"version":3,"file":"carousel.d.ts","sourceRoot":"","sources":["../../../../src/components/general/carousel.tsx"],"names":[],"mappings":"AAGA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAInD,OAAO,gBAAgB,CAAC;AAYxB,MAAM,MAAM,gBAAgB,GAAG;IAC9B,KAAK,EAAE,MAAM,CAAC;IACd,SAAS,EAAE,MAAM,CAAC;IAClB,UAAU,EAAE,MAAM,CAAC;IACnB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,KAAK,EAAE,MAAM,CAAC;IACd,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,MAAM,CAAC,EAAE,SAAS,GAAG,OAAO,GAAG,MAAM,CAAC;IACtC,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,QAAQ,CAAC,EAAE,MAAM,CAAC;CAClB,CAAC;AA2BF,MAAM,MAAM,YAAY,GAAG,UAAU,CAAC,OAAO,QAAQ,CAAC,SAAS,CAAC,CAAC;AACjE,wBAAgB,QAAQ,CAAC,KAAK,EAAE,YAAY,2CAgG3C;yBAhGe,QAAQ"}
1
+ {"version":3,"file":"carousel.d.ts","sourceRoot":"","sources":["../../../../src/components/general/carousel.tsx"],"names":[],"mappings":"AAGA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAInD,OAAO,gBAAgB,CAAC;AAYxB,MAAM,MAAM,gBAAgB,GAAG;IAC9B,KAAK,EAAE,MAAM,CAAC;IACd,SAAS,EAAE,MAAM,CAAC;IAClB,UAAU,EAAE,MAAM,CAAC;IACnB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,KAAK,EAAE,MAAM,CAAC;IACd,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,MAAM,CAAC,EAAE,SAAS,GAAG,OAAO,GAAG,MAAM,CAAC;IACtC,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,QAAQ,CAAC,EAAE,MAAM,CAAC;CAClB,CAAC;AAyDF,MAAM,MAAM,YAAY,GAAG,UAAU,CAAC,OAAO,QAAQ,CAAC,SAAS,CAAC,CAAC;AACjE,wBAAgB,QAAQ,CAAC,KAAK,EAAE,YAAY,2CAgG3C;yBAhGe,QAAQ;;QAhCxB,mDAAmD;;YAGhD,6DAA6D;;YAE7D,iEAAiE;;YAEjE,yEAAyE;;YAEzE,mCAAmC;;YAEnC,gEAAgE;;YAEhE,0CAA0C;;YAE1C,uDAAuD;;YAEvD,wDAAwD;;YAExD,8CAA8C;;YAE9C,2CAA2C;;YAE3C,0CAA0C;;;QAI5C,mEAAmE"}
@@ -3,9 +3,13 @@ export type DragHandlerType = InferProps<typeof DragHandler.propTypes>;
3
3
  export declare function DragHandler(props: DragHandlerType): void;
4
4
  export declare namespace DragHandler {
5
5
  var propTypes: {
6
+ /** Current active slide index. */
6
7
  activeIndex: PropTypes.Validator<number>;
8
+ /** CSS class of the container element to attach drag handlers to (without the leading dot). */
7
9
  targetDiv: PropTypes.Validator<string>;
10
+ /** Callback to show the next image/slide. */
8
11
  nextImage: PropTypes.Validator<(...args: any[]) => any>;
12
+ /** Callback to show the previous image/slide. */
9
13
  previousImage: PropTypes.Validator<(...args: any[]) => any>;
10
14
  };
11
15
  }
@@ -1 +1 @@
1
- {"version":3,"file":"carousel.drag.d.ts","sourceRoot":"","sources":["../../../../src/components/general/carousel.drag.tsx"],"names":[],"mappings":"AAEA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAiBnD,MAAM,MAAM,eAAe,GAAG,UAAU,CAAC,OAAO,WAAW,CAAC,SAAS,CAAC,CAAC;AACvE,wBAAgB,WAAW,CAAC,KAAK,EAAE,eAAe,QAiLjD;yBAjLe,WAAW"}
1
+ {"version":3,"file":"carousel.drag.d.ts","sourceRoot":"","sources":["../../../../src/components/general/carousel.drag.tsx"],"names":[],"mappings":"AAEA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AA6BnD,MAAM,MAAM,eAAe,GAAG,UAAU,CAAC,OAAO,WAAW,CAAC,SAAS,CAAC,CAAC;AACvE,wBAAgB,WAAW,CAAC,KAAK,EAAE,eAAe,QAiLjD;yBAjLe,WAAW;;QAV1B,kCAAkC;;QAElC,+FAA+F;;QAE/F,6CAA6C;;QAE7C,iDAAiD"}
@@ -4,10 +4,15 @@ export type FAQAccordionType = InferProps<typeof FAQAccordion.propTypes>;
4
4
  export declare function FAQAccordion({ faqsData }: FAQAccordionType): import("react/jsx-runtime").JSX.Element;
5
5
  export declare namespace FAQAccordion {
6
6
  var propTypes: {
7
+ /** FAQ data wrapper object; should contain mainEntity array. */
7
8
  faqsData: PropTypes.Validator<NonNullable<PropTypes.InferProps<{
9
+ /** Array of FAQ objects to render as accordion items. */
8
10
  mainEntity: PropTypes.Requireable<(PropTypes.InferProps<{
11
+ /** Question text/title. */
9
12
  name: PropTypes.Requireable<string>;
13
+ /** Category key for grouping or icons. */
10
14
  category: PropTypes.Requireable<string>;
15
+ /** Accepted answer object with text or list of paragraphs. */
11
16
  acceptedAnswer: PropTypes.Requireable<PropTypes.InferProps<{
12
17
  text: PropTypes.Requireable<NonNullable<string | (string | null | undefined)[] | null | undefined>>;
13
18
  }>>;
@@ -1 +1 @@
1
- {"version":3,"file":"faq-accordion.d.ts","sourceRoot":"","sources":["../../../../src/components/general/faq-accordion.tsx"],"names":[],"mappings":"AACA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAEnD,OAAO,qBAAqB,CAAC;AA+B7B,MAAM,MAAM,gBAAgB,GAAG,UAAU,CAAC,OAAO,YAAY,CAAC,SAAS,CAAC,CAAC;AACzE,wBAAgB,YAAY,CAAC,EAAE,QAAQ,EAAE,EAAE,gBAAgB,2CAuF1D;yBAvFe,YAAY"}
1
+ {"version":3,"file":"faq-accordion.d.ts","sourceRoot":"","sources":["../../../../src/components/general/faq-accordion.tsx"],"names":[],"mappings":"AACA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAEnD,OAAO,qBAAqB,CAAC;AA8C7B,MAAM,MAAM,gBAAgB,GAAG,UAAU,CAAC,OAAO,YAAY,CAAC,SAAS,CAAC,CAAC;AACzE,wBAAgB,YAAY,CAAC,EAAE,QAAQ,EAAE,EAAE,gBAAgB,2CAuF1D;yBAvFe,YAAY;;QArB3B,gEAAgE;;YAE/D,yDAAyD;;gBAGvD,2BAA2B;;gBAE3B,0CAA0C;;gBAE1C,8DAA8D"}
@@ -4,9 +4,13 @@ export type GlobalErrorUIType = InferProps<typeof GlobalErrorUI.propTypes>;
4
4
  export declare function GlobalErrorUI({ error, reset, siteInfo, className }: GlobalErrorUIType): import("react/jsx-runtime").JSX.Element;
5
5
  export declare namespace GlobalErrorUI {
6
6
  var propTypes: {
7
+ /** Error object; message and stack will be shown when details are expanded. */
7
8
  error: PropTypes.Requireable<any>;
9
+ /** Optional retry/reset function called when the user clicks 'Try again'. */
8
10
  reset: PropTypes.Requireable<(...args: any[]) => any>;
11
+ /** Optional site information (used to build a contact mailto link when an email is available). */
9
12
  siteInfo: PropTypes.Requireable<object>;
13
+ /** Additional class names to apply to the component root. */
10
14
  className: PropTypes.Requireable<string>;
11
15
  };
12
16
  }
@@ -1 +1 @@
1
- {"version":3,"file":"global-error.d.ts","sourceRoot":"","sources":["../../../../src/components/general/global-error.tsx"],"names":[],"mappings":"AAGA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAEnD,OAAO,oBAAoB,CAAC;AAQ5B,MAAM,MAAM,iBAAiB,GAAG,UAAU,CAAC,OAAO,aAAa,CAAC,SAAS,CAAC,CAAC;AAC3E,wBAAgB,aAAa,CAAC,EAAE,KAAY,EAAE,KAAK,EAAE,QAAQ,EAAE,SAAc,EAAE,EAAG,iBAAiB,2CA2ClG;yBA3Ce,aAAa"}
1
+ {"version":3,"file":"global-error.d.ts","sourceRoot":"","sources":["../../../../src/components/general/global-error.tsx"],"names":[],"mappings":"AAGA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAEnD,OAAO,oBAAoB,CAAC;AAoB5B,MAAM,MAAM,iBAAiB,GAAG,UAAU,CAAC,OAAO,aAAa,CAAC,SAAS,CAAC,CAAC;AAC3E,wBAAgB,aAAa,CAAC,EAAE,KAAY,EAAE,KAAK,EAAE,QAAQ,EAAE,SAAc,EAAE,EAAG,iBAAiB,2CA2ClG;yBA3Ce,aAAa;;QAV5B,+EAA+E;;QAE/E,6EAA6E;;QAE7E,kGAAkG;;QAElG,6DAA6D"}
@@ -4,9 +4,13 @@ export type HeroType = InferProps<typeof Hero.propTypes>;
4
4
  export declare function Hero({ img, /* imgAlt, */ variant, height, children }: HeroType): import("react/jsx-runtime").JSX.Element;
5
5
  export declare namespace Hero {
6
6
  var propTypes: {
7
+ /** Background image URL (required) */
7
8
  img: PropTypes.Validator<string>;
9
+ /** Layout variant: 'static' or 'anchored' */
8
10
  variant: PropTypes.Requireable<string>;
11
+ /** Height for hero section (string like '60vh' or number) */
9
12
  height: PropTypes.Requireable<NonNullable<string | number | null | undefined>>;
13
+ /** Child nodes to render over the background */
10
14
  children: PropTypes.Requireable<PropTypes.ReactNodeLike>;
11
15
  };
12
16
  }
@@ -1 +1 @@
1
- {"version":3,"file":"hero.d.ts","sourceRoot":"","sources":["../../../../src/components/general/hero.tsx"],"names":[],"mappings":"AAEA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AACnD,OAAO,YAAY,CAAC;AASpB,MAAM,MAAM,QAAQ,GAAG,UAAU,CAAC,OAAO,IAAI,CAAC,SAAS,CAAC,CAAC;AACzD,wBAAgB,IAAI,CAAC,EAAE,GAAG,EAAE,aAAa,CAAC,OAAkB,EAAE,MAAe,EAAE,QAAQ,EAAE,EAAE,QAAQ,2CASlG;yBATe,IAAI"}
1
+ {"version":3,"file":"hero.d.ts","sourceRoot":"","sources":["../../../../src/components/general/hero.tsx"],"names":[],"mappings":"AAEA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AACnD,OAAO,YAAY,CAAC;AAsBpB,MAAM,MAAM,QAAQ,GAAG,UAAU,CAAC,OAAO,IAAI,CAAC,SAAS,CAAC,CAAC;AACzD,wBAAgB,IAAI,CAAC,EAAE,GAAG,EAAE,aAAa,CAAC,OAAkB,EAAE,MAAe,EAAE,QAAQ,EAAE,EAAE,QAAQ,2CASlG;yBATe,IAAI;;QAXnB,sCAAsC;;QAGtC,6CAA6C;;QAE7C,6DAA6D;;QAE7D,gDAAgD"}
@@ -9,6 +9,7 @@ export type ToggleLoadingType = InferProps<typeof ToggleLoading.propTypes>;
9
9
  export declare function ToggleLoading(props: ToggleLoadingType): void;
10
10
  export declare namespace ToggleLoading {
11
11
  var propTypes: {
12
+ /** When true shows the global loading spinner; false hides it; omitted toggles the current state. */
12
13
  show: PropTypes.Requireable<boolean>;
13
14
  };
14
15
  }
@@ -1 +1 @@
1
- {"version":3,"file":"loading.d.ts","sourceRoot":"","sources":["../../../../src/components/general/loading.tsx"],"names":[],"mappings":"AAGA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AACnD,OAAO,gBAAgB,CAAC;AAUxB,MAAM,MAAM,WAAW,GAAG,UAAU,CAAC,OAAO,OAAO,CAAC,SAAS,CAAC,CAAC;AAC/D,wBAAgB,OAAO,CAAC,KAAK,EAAE,WAAW,2CAqBzC;yBArBe,OAAO;;;AA0BvB,MAAM,MAAM,iBAAiB,GAAG,UAAU,CAAC,OAAO,aAAa,CAAC,SAAS,CAAC,CAAC;AAC3E,wBAAgB,aAAa,CAAC,KAAK,EAAE,iBAAiB,QAkBrD;yBAlBe,aAAa"}
1
+ {"version":3,"file":"loading.d.ts","sourceRoot":"","sources":["../../../../src/components/general/loading.tsx"],"names":[],"mappings":"AAGA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AACnD,OAAO,gBAAgB,CAAC;AAmBxB,MAAM,MAAM,WAAW,GAAG,UAAU,CAAC,OAAO,OAAO,CAAC,SAAS,CAAC,CAAC;AAC/D,wBAAgB,OAAO,CAAC,KAAK,EAAE,WAAW,2CAqBzC;yBArBe,OAAO;;;AA2BvB,MAAM,MAAM,iBAAiB,GAAG,UAAU,CAAC,OAAO,aAAa,CAAC,SAAS,CAAC,CAAC;AAC3E,wBAAgB,aAAa,CAAC,KAAK,EAAE,iBAAiB,QAkBrD;yBAlBe,aAAa;;QAJ7B,qGAAqG"}
@@ -4,6 +4,7 @@ export type MarkdownType = InferProps<typeof Markdown.propTypes>;
4
4
  export declare function Markdown(props: MarkdownType): import("react/jsx-runtime").JSX.Element;
5
5
  export declare namespace Markdown {
6
6
  var propTypes: {
7
+ /** Markdown input (string) to render */
7
8
  markdowndata: PropTypes.Validator<string>;
8
9
  };
9
10
  }
@@ -1 +1 @@
1
- {"version":3,"file":"markdown.d.ts","sourceRoot":"","sources":["../../../../src/components/general/markdown.tsx"],"names":[],"mappings":"AAMA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAGnD,OAAO,gBAAgB,CAAC;AAMxB,MAAM,MAAM,YAAY,GAAG,UAAU,CAAC,OAAO,QAAQ,CAAC,SAAS,CAAC,CAAC;AACjE,wBAAgB,QAAQ,CAAC,KAAK,EAAE,YAAY,2CAqC3C;yBArCe,QAAQ"}
1
+ {"version":3,"file":"markdown.d.ts","sourceRoot":"","sources":["../../../../src/components/general/markdown.tsx"],"names":[],"mappings":"AAMA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAGnD,OAAO,gBAAgB,CAAC;AAYxB,MAAM,MAAM,YAAY,GAAG,UAAU,CAAC,OAAO,QAAQ,CAAC,SAAS,CAAC,CAAC;AACjE,wBAAgB,QAAQ,CAAC,KAAK,EAAE,YAAY,2CAqC3C;yBArCe,QAAQ;;QAJvB,wCAAwC"}
@@ -10,6 +10,7 @@ export type MenuAccordionType = InferProps<typeof MenuAccordion.propTypes>;
10
10
  export declare function MenuAccordion(props: MenuAccordionType): import("react/jsx-runtime").JSX.Element;
11
11
  export declare namespace MenuAccordion {
12
12
  var propTypes: {
13
+ /** Array of menu items (can contain nested `routes`) */
13
14
  menuItems: PropTypes.Validator<(PropTypes.InferProps<{
14
15
  name: PropTypes.Validator<string>;
15
16
  path: PropTypes.Requireable<string>;
@@ -17,6 +18,7 @@ export declare namespace MenuAccordion {
17
18
  routes: PropTypes.Requireable<any[]>;
18
19
  hidden: PropTypes.Requireable<boolean>;
19
20
  }> | null | undefined)[]>;
21
+ /** Show items marked `hidden` */
20
22
  showHidden: PropTypes.Requireable<boolean>;
21
23
  };
22
24
  }
@@ -24,6 +26,7 @@ export type MenuAccordionGroupType = InferProps<typeof MenuAccordionGroup.propTy
24
26
  export declare function MenuAccordionGroup(props: MenuAccordionGroupType): import("react/jsx-runtime").JSX.Element;
25
27
  export declare namespace MenuAccordionGroup {
26
28
  var propTypes: {
29
+ /** Menu item or array of menu items (routes) */
27
30
  menuItems: PropTypes.Validator<NonNullable<NonNullable<PropTypes.InferProps<{
28
31
  name: PropTypes.Validator<string>;
29
32
  path: PropTypes.Requireable<string>;
@@ -37,6 +40,7 @@ export declare namespace MenuAccordionGroup {
37
40
  routes: PropTypes.Requireable<any[]>;
38
41
  hidden: PropTypes.Requireable<boolean>;
39
42
  }> | null | undefined)[] | null | undefined>>>;
43
+ /** Visibility state 'hide' | 'show' */
40
44
  state: PropTypes.Requireable<string>;
41
45
  };
42
46
  }
@@ -44,8 +48,11 @@ export type MenuAccordionItemType = InferProps<typeof MenuAccordionItem.propType
44
48
  export declare function MenuAccordionItem(props: MenuAccordionItemType): import("react/jsx-runtime").JSX.Element;
45
49
  export declare namespace MenuAccordionItem {
46
50
  var propTypes: {
51
+ /** Display text for the menu item */
47
52
  name: PropTypes.Validator<string>;
53
+ /** Link href (or empty string for toggle items) */
48
54
  href: PropTypes.Validator<string>;
55
+ /** Optional link target attribute */
49
56
  target: PropTypes.Requireable<string>;
50
57
  };
51
58
  }
@@ -1 +1 @@
1
- {"version":3,"file":"menu-accordion.d.ts","sourceRoot":"","sources":["../../../../src/components/general/menu-accordion.tsx"],"names":[],"mappings":"AAGA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AACnD,OAAO,sBAAsB,CAAC;AAI9B,OAAO,CAAC,MAAM,CAAC;IACd,UAAU,MAAM;QACf,QAAQ,EAAE,MAAM,IAAI,CAAC;KACrB;CACD;AAUD,MAAM,MAAM,QAAQ,GAAG,iBAAiB,CAAC,WAAW,CAAC,CAAC,CAAC,CAAC,CAAC;AAqCzD,MAAM,MAAM,iBAAiB,GAAG,UAAU,CAAC,OAAO,aAAa,CAAC,SAAS,CAAC,CAAC;AAC3E,wBAAgB,aAAa,CAAC,KAAK,EAAE,iBAAiB,2CAyGrD;yBAzGe,aAAa;;;;;;;;;;;;AAuH7B,MAAM,MAAM,sBAAsB,GAAG,UAAU,CAAC,OAAO,kBAAkB,CAAC,SAAS,CAAC,CAAC;AACrF,wBAAgB,kBAAkB,CAAC,KAAK,EAAE,sBAAsB,2CAO/D;yBAPe,kBAAkB;;;;;;;;;;;;;;;;;;AAkBlC,MAAM,MAAM,qBAAqB,GAAG,UAAU,CAAC,OAAO,iBAAiB,CAAC,SAAS,CAAC,CAAC;AACnF,wBAAgB,iBAAiB,CAAC,KAAK,EAAE,qBAAqB,2CAQ7D;yBARe,iBAAiB;;;;;;;AAmBjC,MAAM,MAAM,uBAAuB,GAAG,UAAU,CAAC,OAAO,mBAAmB,CAAC,SAAS,CAAC,CAAC;AACvF,wBAAgB,mBAAmB,CAAC,KAAK,EAAE,uBAAuB,2CAkBjE;yBAlBe,mBAAmB"}
1
+ {"version":3,"file":"menu-accordion.d.ts","sourceRoot":"","sources":["../../../../src/components/general/menu-accordion.tsx"],"names":[],"mappings":"AAGA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AACnD,OAAO,sBAAsB,CAAC;AAI9B,OAAO,CAAC,MAAM,CAAC;IACd,UAAU,MAAM;QACf,QAAQ,EAAE,MAAM,IAAI,CAAC;KACrB;CACD;AAUD,MAAM,MAAM,QAAQ,GAAG,iBAAiB,CAAC,WAAW,CAAC,CAAC,CAAC,CAAC,CAAC;AA6CzD,MAAM,MAAM,iBAAiB,GAAG,UAAU,CAAC,OAAO,aAAa,CAAC,SAAS,CAAC,CAAC;AAC3E,wBAAgB,aAAa,CAAC,KAAK,EAAE,iBAAiB,2CAyGrD;yBAzGe,aAAa;;QAN7B,wDAAwD;;;;;;;;QAEvD,iCAAiC;;;;AAmIlC,MAAM,MAAM,sBAAsB,GAAG,UAAU,CAAC,OAAO,kBAAkB,CAAC,SAAS,CAAC,CAAC;AACrF,wBAAgB,kBAAkB,CAAC,KAAK,EAAE,sBAAsB,2CAO/D;yBAPe,kBAAkB;;QATlC,gDAAgD;;;;;;;;;;;;;;QAK/C,uCAAuC;;;;AAgCxC,MAAM,MAAM,qBAAqB,GAAG,UAAU,CAAC,OAAO,iBAAiB,CAAC,SAAS,CAAC,CAAC;AACnF,wBAAgB,iBAAiB,CAAC,KAAK,EAAE,qBAAqB,2CAQ7D;yBARe,iBAAiB;;QARjC,qCAAqC;;QAEpC,mDAAmD;;QAEnD,qCAAqC;;;;AA4BtC,MAAM,MAAM,uBAAuB,GAAG,UAAU,CAAC,OAAO,mBAAmB,CAAC,SAAS,CAAC,CAAC;AACvF,wBAAgB,mBAAmB,CAAC,KAAK,EAAE,uBAAuB,2CAkBjE;yBAlBe,mBAAmB"}
@@ -4,11 +4,15 @@ export type MenuExpandoType = InferProps<typeof MenuExpando.propTypes>;
4
4
  export declare function MenuExpando(props: MenuExpandoType): import("react/jsx-runtime").JSX.Element;
5
5
  export declare namespace MenuExpando {
6
6
  var propTypes: {
7
+ /** Menu items can be provided as { name: href } or as an array of items with optional nested routes. */
7
8
  menuItems: PropTypes.Validator<NonNullable<NonNullable<{
8
9
  [x: string]: string | null | undefined;
9
10
  } | (PropTypes.InferProps<{
11
+ /** Menu item display name */
10
12
  name: PropTypes.Validator<string>;
13
+ /** Href/path for the menu item */
11
14
  path: PropTypes.Validator<string>;
15
+ /** Optional nested routes (array of route objects) */
12
16
  routes: PropTypes.Requireable<any[]>;
13
17
  }> | null | undefined)[] | null | undefined>>>;
14
18
  };
@@ -17,7 +21,9 @@ export type MenuExpandoItemType = InferProps<typeof MenuExpandoItem.propTypes>;
17
21
  export declare function MenuExpandoItem(props: MenuExpandoItemType): import("react/jsx-runtime").JSX.Element;
18
22
  export declare namespace MenuExpandoItem {
19
23
  var propTypes: {
24
+ /** Display text for the menu item. */
20
25
  name: PropTypes.Validator<string>;
26
+ /** Href or path for the menu item. */
21
27
  href: PropTypes.Validator<string>;
22
28
  };
23
29
  }
@@ -1 +1 @@
1
- {"version":3,"file":"menu-expando.d.ts","sourceRoot":"","sources":["../../../../src/components/general/menu-expando.tsx"],"names":[],"mappings":"AAIA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAEnD,OAAO,oBAAoB,CAAC;AAY5B,MAAM,MAAM,eAAe,GAAG,UAAU,CAAC,OAAO,WAAW,CAAC,SAAS,CAAC,CAAC;AACvE,wBAAgB,WAAW,CAAC,KAAK,EAAE,eAAe,2CAqJjD;yBArJe,WAAW;;;;;;;;;;;AA2J3B,MAAM,MAAM,mBAAmB,GAAG,UAAU,CAAC,OAAO,eAAe,CAAC,SAAS,CAAC,CAAC;AAC/E,wBAAgB,eAAe,CAAC,KAAK,EAAE,mBAAmB,2CAIzD;yBAJe,eAAe;;;;;;AAQ/B,MAAM,MAAM,qBAAqB,GAAG,UAAU,CAAC,OAAO,iBAAiB,CAAC,SAAS,CAAC,CAAC;AACnF,wBAAgB,iBAAiB,CAAC,KAAK,EAAE,qBAAqB,2CA4B7D;yBA5Be,iBAAiB"}
1
+ {"version":3,"file":"menu-expando.d.ts","sourceRoot":"","sources":["../../../../src/components/general/menu-expando.tsx"],"names":[],"mappings":"AAIA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAEnD,OAAO,oBAAoB,CAAC;AAwB5B,MAAM,MAAM,eAAe,GAAG,UAAU,CAAC,OAAO,WAAW,CAAC,SAAS,CAAC,CAAC;AACvE,wBAAgB,WAAW,CAAC,KAAK,EAAE,eAAe,2CAqJjD;yBArJe,WAAW;;QAd3B,wGAAwG;;;;YAIrG,6BAA6B;;YAE7B,kCAAkC;;YAElC,sDAAsD;;;;;AAyKzD,MAAM,MAAM,mBAAmB,GAAG,UAAU,CAAC,OAAO,eAAe,CAAC,SAAS,CAAC,CAAC;AAC/E,wBAAgB,eAAe,CAAC,KAAK,EAAE,mBAAmB,2CAIzD;yBAJe,eAAe;;QAN/B,sCAAsC;;QAErC,sCAAsC;;;;AAevC,MAAM,MAAM,qBAAqB,GAAG,UAAU,CAAC,OAAO,iBAAiB,CAAC,SAAS,CAAC,CAAC;AACnF,wBAAgB,iBAAiB,CAAC,KAAK,EAAE,qBAAqB,2CA4B7D;yBA5Be,iBAAiB"}
@@ -4,6 +4,7 @@ export type MenuSimpleType = InferProps<typeof MenuSimple.propTypes>;
4
4
  export declare function MenuSimple(props: MenuSimpleType): import("react/jsx-runtime").JSX.Element;
5
5
  export declare namespace MenuSimple {
6
6
  var propTypes: {
7
+ /** Array of menu items to render (flat list). */
7
8
  menuItems: PropTypes.Validator<(PropTypes.InferProps<{
8
9
  name: PropTypes.Validator<string>;
9
10
  path: PropTypes.Requireable<string>;
@@ -17,10 +18,15 @@ export type MenuSimpleItemType = InferProps<typeof MenuSimpleItem.propTypes>;
17
18
  export declare function MenuSimpleItem(props: MenuSimpleItemType): import("react/jsx-runtime").JSX.Element;
18
19
  export declare namespace MenuSimpleItem {
19
20
  var propTypes: {
21
+ /** Display text for the item */
20
22
  name: PropTypes.Validator<string>;
23
+ /** Destination href or path */
21
24
  path: PropTypes.Validator<string>;
25
+ /** Optional link target */
22
26
  target: PropTypes.Requireable<string>;
27
+ /** When true, the item is hidden */
23
28
  hidden: PropTypes.Requireable<boolean>;
29
+ /** Optional nested routes (ignored by this renderer) */
24
30
  routes: PropTypes.Requireable<any[]>;
25
31
  };
26
32
  }
@@ -1 +1 @@
1
- {"version":3,"file":"menu-simple.d.ts","sourceRoot":"","sources":["../../../../src/components/general/menu-simple.tsx"],"names":[],"mappings":"AAGA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AACnD,OAAO,mBAAmB,CAAC;AAa3B,MAAM,MAAM,cAAc,GAAG,UAAU,CAAC,OAAO,UAAU,CAAC,SAAS,CAAC,CAAC;AACrE,wBAAgB,UAAU,CAAC,KAAK,EAAE,cAAc,2CAuC/C;yBAvCe,UAAU;;;;;;;;;;;AAmD1B,MAAM,MAAM,kBAAkB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,SAAS,CAAC,CAAC;AAC7E,wBAAgB,cAAc,CAAC,KAAK,EAAE,kBAAkB,2CAavD;yBAbe,cAAc"}
1
+ {"version":3,"file":"menu-simple.d.ts","sourceRoot":"","sources":["../../../../src/components/general/menu-simple.tsx"],"names":[],"mappings":"AAGA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AACnD,OAAO,mBAAmB,CAAC;AAmB3B,MAAM,MAAM,cAAc,GAAG,UAAU,CAAC,OAAO,UAAU,CAAC,SAAS,CAAC,CAAC;AACrE,wBAAgB,UAAU,CAAC,KAAK,EAAE,cAAc,2CAwC/C;yBAxCe,UAAU;;QAJ1B,iDAAiD;;;;;;;;;;AAsEjD,MAAM,MAAM,kBAAkB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,SAAS,CAAC,CAAC;AAC7E,wBAAgB,cAAc,CAAC,KAAK,EAAE,kBAAkB,2CAavD;yBAbe,cAAc;;QAZ9B,gCAAgC;;QAE/B,+BAA+B;;QAE/B,2BAA2B;;QAE3B,oCAAoC;;QAEpC,wDAAwD"}
@@ -3,8 +3,11 @@ export type SetClientMetadataType = InferProps<typeof setClientMetadata.propType
3
3
  export declare function setClientMetadata(props: SetClientMetadataType): void;
4
4
  export declare namespace setClientMetadata {
5
5
  var propTypes: {
6
+ /** Title to set as document.title and og:title. */
6
7
  title: PropTypes.Validator<string>;
8
+ /** Meta description text applied to several description tags. */
7
9
  description: PropTypes.Validator<string>;
10
+ /** Comma-separated keywords string applied to meta[name='keywords']. */
8
11
  keywords: PropTypes.Validator<string>;
9
12
  };
10
13
  }
@@ -1 +1 @@
1
- {"version":3,"file":"metadata.components.d.ts","sourceRoot":"","sources":["../../../../src/components/general/metadata.components.tsx"],"names":[],"mappings":"AACA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAQnD,MAAM,MAAM,qBAAqB,GAAG,UAAU,CAAC,OAAO,iBAAiB,CAAC,SAAS,CAAC,CAAC;AACnF,wBAAgB,iBAAiB,CAAC,KAAK,EAAE,qBAAqB,QAQ7D;yBARe,iBAAiB"}
1
+ {"version":3,"file":"metadata.components.d.ts","sourceRoot":"","sources":["../../../../src/components/general/metadata.components.tsx"],"names":[],"mappings":"AACA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAkBnD,MAAM,MAAM,qBAAqB,GAAG,UAAU,CAAC,OAAO,iBAAiB,CAAC,SAAS,CAAC,CAAC;AACnF,wBAAgB,iBAAiB,CAAC,KAAK,EAAE,qBAAqB,QAQ7D;yBARe,iBAAiB;;QARjC,mDAAmD;;QAElD,iEAAiE;;QAEjE,wEAAwE"}
@@ -4,14 +4,23 @@ export type MicroInteractionsType = InferProps<typeof MicroInteractions.propType
4
4
  export declare function MicroInteractions(props: MicroInteractionsType): (() => void) | undefined;
5
5
  export declare namespace MicroInteractions {
6
6
  var propTypes: {
7
+ /** Enable ring animation on buttons. */
7
8
  buttonring: PropTypes.Requireable<boolean>;
9
+ /** Enable pulse animation on cart icon or similar. */
8
10
  cartpulse: PropTypes.Requireable<boolean>;
11
+ /** Enable glow effects on focused form elements. */
9
12
  formglow: PropTypes.Requireable<boolean>;
13
+ /** Enable grayscale hover-to-color transitions on elements. */
10
14
  grayscalehover: PropTypes.Requireable<boolean>;
15
+ /** Enable scale-up animation on image hover. */
11
16
  imgscale: PropTypes.Requireable<boolean>;
17
+ /** Enable slight twist/rotation on image hover. */
12
18
  imgtwist: PropTypes.Requireable<boolean>;
19
+ /** Enable hue-shift color changes on hover. */
13
20
  imghue: PropTypes.Requireable<boolean>;
21
+ /** Toggle simplified menu button interactions. */
14
22
  simplemenubutton: PropTypes.Requireable<boolean>;
23
+ /** Selector for elements that should receive the scroll-fade animation. */
15
24
  scrollfadeElements: PropTypes.Requireable<string>;
16
25
  };
17
26
  }