@pixelated-tech/components 3.11.9 → 3.13.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.
- package/dist/components/admin/componentusage/componentAnalysis.js +2 -0
- package/dist/components/admin/deploy/deployment.integration.js +8 -0
- package/dist/components/admin/site-health/site-health-accessibility.js +6 -0
- package/dist/components/admin/site-health/site-health-axe-core.js +6 -0
- package/dist/components/admin/site-health/site-health-cloudwatch.js +10 -0
- package/dist/components/admin/site-health/site-health-dependency-vulnerabilities.js +6 -0
- package/dist/components/admin/site-health/site-health-github.js +10 -0
- package/dist/components/admin/site-health/site-health-google-analytics.js +10 -0
- package/dist/components/admin/site-health/site-health-google-search-console.js +10 -0
- package/dist/components/admin/site-health/site-health-mock-context.js +8 -0
- package/dist/components/admin/site-health/site-health-on-site-seo.js +6 -0
- package/dist/components/admin/site-health/site-health-overview.js +6 -0
- package/dist/components/admin/site-health/site-health-performance.js +6 -0
- package/dist/components/admin/site-health/site-health-security.js +6 -0
- package/dist/components/admin/site-health/site-health-seo.js +6 -0
- package/dist/components/admin/site-health/site-health-template.js +28 -0
- package/dist/components/admin/site-health/site-health-uptime.js +6 -0
- package/dist/components/config/config.js +41 -2
- package/dist/components/config/config.server.js +8 -0
- package/dist/components/general/404.js +6 -0
- package/dist/components/general/accordion.js +11 -0
- package/dist/components/general/buzzwordbingo.js +18 -0
- package/dist/components/general/callout.js +65 -2
- package/dist/components/general/carousel.drag.js +12 -0
- package/dist/components/general/carousel.js +50 -0
- package/dist/components/general/faq-accordion.js +15 -0
- package/dist/components/general/global-error.js +12 -0
- package/dist/components/general/hero.js +13 -0
- package/dist/components/general/loading.js +10 -1
- package/dist/components/general/markdown.js +6 -0
- package/dist/components/general/menu-accordion.js +30 -1
- package/dist/components/general/menu-expando.js +24 -1
- package/dist/components/general/menu-simple.js +21 -0
- package/dist/components/general/metadata.components.js +10 -0
- package/dist/components/general/metadata.functions.js +1 -1
- package/dist/components/general/microinteractions.js +22 -0
- package/dist/components/general/modal.js +12 -0
- package/dist/components/general/nerdjoke.js +11 -1
- package/dist/components/general/proxy-handler.js +7 -7
- package/dist/components/general/recipe.js +46 -1
- package/dist/components/general/resume.js +82 -0
- package/dist/components/general/schema-blogposting.js +6 -0
- package/dist/components/general/schema-localbusiness.js +36 -0
- package/dist/components/general/schema-recipe.js +20 -0
- package/dist/components/general/semantic.js +178 -0
- package/dist/components/general/sidepanel.js +26 -0
- package/dist/components/general/sitemap.js +50 -0
- package/dist/components/general/skeleton-loading.js +10 -1
- package/dist/components/general/skeleton.js +15 -0
- package/dist/components/general/smartimage.js +48 -2
- package/dist/components/general/splitscroll.js +21 -10
- package/dist/components/general/styleguide.js +6 -0
- package/dist/components/general/tab.js +12 -0
- package/dist/components/general/table.js +12 -0
- package/dist/components/general/tiles.js +32 -1
- package/dist/components/general/timeline.js +22 -0
- package/dist/components/general/well-known.js +137 -0
- package/dist/components/integrations/calendly.js +10 -0
- package/dist/components/integrations/cloudinary.js +16 -0
- package/dist/components/integrations/contentful.delivery.js +84 -0
- package/dist/components/integrations/contentful.items.components.js +46 -0
- package/dist/components/integrations/contentful.management.js +25 -25
- package/dist/components/integrations/flickr.js +34 -0
- package/dist/components/integrations/google.reviews.components.js +14 -0
- package/dist/components/integrations/googleanalytics.js +14 -0
- package/dist/components/integrations/googlemap.js +20 -0
- package/dist/components/integrations/googlesearch.js +6 -0
- package/dist/components/integrations/gravatar.components.js +59 -0
- package/dist/components/integrations/hubspot.components.js +30 -0
- package/dist/components/integrations/instagram.components.js +18 -0
- package/dist/components/integrations/lipsum.js +45 -0
- package/dist/components/integrations/loremipsum.js +12 -0
- package/dist/components/integrations/socialcard.js +20 -1
- package/dist/components/integrations/wordpress.components.js +40 -0
- package/dist/components/integrations/wordpress.functions.js +24 -0
- package/dist/components/integrations/yelp.js +8 -0
- package/dist/components/shoppingcart/ebay.components.js +70 -0
- package/dist/components/shoppingcart/ebay.functions.js +52 -0
- package/dist/components/shoppingcart/shoppingcart.components.js +89 -0
- package/dist/components/sitebuilder/config/CompoundFontSelector.js +32 -0
- package/dist/components/sitebuilder/config/ConfigBuilder.js +8 -0
- package/dist/components/sitebuilder/config/FontSelector.js +40 -0
- package/dist/components/sitebuilder/form/formbuilder.js +10 -1
- package/dist/components/sitebuilder/form/formcomponents.js +325 -6
- package/dist/components/sitebuilder/form/formengine.js +35 -1
- package/dist/components/sitebuilder/form/formextractor.js +33 -1
- package/dist/components/sitebuilder/form/formutils.js +0 -4
- package/dist/components/sitebuilder/form/formvalidator.js +6 -0
- package/dist/components/sitebuilder/page/components/ComponentPropertiesForm.js +8 -0
- package/dist/components/sitebuilder/page/components/ComponentSelector.js +10 -0
- package/dist/components/sitebuilder/page/components/ComponentTree.js +20 -0
- package/dist/components/sitebuilder/page/components/PageBuilderUI.js +6 -0
- package/dist/components/sitebuilder/page/components/PageEngine.js +20 -0
- package/dist/components/sitebuilder/page/components/SaveLoadSection.js +10 -0
- package/dist/components/sitebuilder/page/lib/pageStorageContentful.js +4 -4
- package/dist/config/pixelated.config.json.enc +1 -1
- package/dist/index.js +1 -1
- package/dist/index.server.js +4 -4
- package/dist/scripts/pixelated-eslint-plugin.js +105 -1
- package/dist/scripts/release.sh +12 -21
- package/dist/types/components/admin/componentusage/componentAnalysis.d.ts +2 -5
- package/dist/types/components/admin/componentusage/componentAnalysis.d.ts.map +1 -1
- package/dist/types/components/admin/deploy/deployment.integration.d.ts +1 -5
- package/dist/types/components/admin/deploy/deployment.integration.d.ts.map +1 -1
- package/dist/types/components/admin/site-health/site-health-accessibility.d.ts +1 -0
- package/dist/types/components/admin/site-health/site-health-accessibility.d.ts.map +1 -1
- package/dist/types/components/admin/site-health/site-health-axe-core.d.ts +1 -0
- package/dist/types/components/admin/site-health/site-health-axe-core.d.ts.map +1 -1
- package/dist/types/components/admin/site-health/site-health-cloudwatch.d.ts +3 -0
- package/dist/types/components/admin/site-health/site-health-cloudwatch.d.ts.map +1 -1
- package/dist/types/components/admin/site-health/site-health-dependency-vulnerabilities.d.ts +1 -0
- package/dist/types/components/admin/site-health/site-health-dependency-vulnerabilities.d.ts.map +1 -1
- package/dist/types/components/admin/site-health/site-health-github.d.ts +3 -0
- package/dist/types/components/admin/site-health/site-health-github.d.ts.map +1 -1
- package/dist/types/components/admin/site-health/site-health-github.integration.d.ts +1 -11
- package/dist/types/components/admin/site-health/site-health-github.integration.d.ts.map +1 -1
- package/dist/types/components/admin/site-health/site-health-google-analytics.d.ts +3 -0
- package/dist/types/components/admin/site-health/site-health-google-analytics.d.ts.map +1 -1
- package/dist/types/components/admin/site-health/site-health-google-search-console.d.ts +3 -0
- package/dist/types/components/admin/site-health/site-health-google-search-console.d.ts.map +1 -1
- package/dist/types/components/admin/site-health/site-health-mock-context.d.ts +8 -0
- package/dist/types/components/admin/site-health/site-health-mock-context.d.ts.map +1 -1
- package/dist/types/components/admin/site-health/site-health-on-site-seo.d.ts +1 -0
- package/dist/types/components/admin/site-health/site-health-on-site-seo.d.ts.map +1 -1
- package/dist/types/components/admin/site-health/site-health-overview.d.ts +1 -0
- package/dist/types/components/admin/site-health/site-health-overview.d.ts.map +1 -1
- package/dist/types/components/admin/site-health/site-health-performance.d.ts +1 -0
- package/dist/types/components/admin/site-health/site-health-performance.d.ts.map +1 -1
- package/dist/types/components/admin/site-health/site-health-security.d.ts +1 -0
- package/dist/types/components/admin/site-health/site-health-security.d.ts.map +1 -1
- package/dist/types/components/admin/site-health/site-health-seo.d.ts +1 -0
- package/dist/types/components/admin/site-health/site-health-seo.d.ts.map +1 -1
- package/dist/types/components/admin/site-health/site-health-template.d.ts +12 -0
- package/dist/types/components/admin/site-health/site-health-template.d.ts.map +1 -1
- package/dist/types/components/admin/site-health/site-health-uptime.d.ts +1 -0
- package/dist/types/components/admin/site-health/site-health-uptime.d.ts.map +1 -1
- package/dist/types/components/admin/sites/sites.integration.d.ts +7 -1
- package/dist/types/components/admin/sites/sites.integration.d.ts.map +1 -1
- package/dist/types/components/config/config.d.ts.map +1 -1
- package/dist/types/components/config/config.server.d.ts +2 -0
- package/dist/types/components/config/config.server.d.ts.map +1 -1
- package/dist/types/components/config/config.types.d.ts +2 -2
- package/dist/types/components/config/config.types.d.ts.map +1 -1
- package/dist/types/components/general/404.d.ts +1 -0
- package/dist/types/components/general/404.d.ts.map +1 -1
- package/dist/types/components/general/accordion.d.ts +2 -0
- package/dist/types/components/general/accordion.d.ts.map +1 -1
- package/dist/types/components/general/buzzwordbingo.d.ts +3 -0
- package/dist/types/components/general/buzzwordbingo.d.ts.map +1 -1
- package/dist/types/components/general/callout.d.ts +24 -0
- package/dist/types/components/general/callout.d.ts.map +1 -1
- package/dist/types/components/general/carousel.d.ts +13 -0
- package/dist/types/components/general/carousel.d.ts.map +1 -1
- package/dist/types/components/general/carousel.drag.d.ts +4 -0
- package/dist/types/components/general/carousel.drag.d.ts.map +1 -1
- package/dist/types/components/general/faq-accordion.d.ts +5 -0
- package/dist/types/components/general/faq-accordion.d.ts.map +1 -1
- package/dist/types/components/general/global-error.d.ts +4 -0
- package/dist/types/components/general/global-error.d.ts.map +1 -1
- package/dist/types/components/general/hero.d.ts +4 -0
- package/dist/types/components/general/hero.d.ts.map +1 -1
- package/dist/types/components/general/loading.d.ts +1 -0
- package/dist/types/components/general/loading.d.ts.map +1 -1
- package/dist/types/components/general/markdown.d.ts +1 -0
- package/dist/types/components/general/markdown.d.ts.map +1 -1
- package/dist/types/components/general/menu-accordion.d.ts +7 -0
- package/dist/types/components/general/menu-accordion.d.ts.map +1 -1
- package/dist/types/components/general/menu-expando.d.ts +6 -0
- package/dist/types/components/general/menu-expando.d.ts.map +1 -1
- package/dist/types/components/general/menu-simple.d.ts +6 -0
- package/dist/types/components/general/menu-simple.d.ts.map +1 -1
- package/dist/types/components/general/metadata.components.d.ts +3 -0
- package/dist/types/components/general/metadata.components.d.ts.map +1 -1
- package/dist/types/components/general/microinteractions.d.ts +9 -0
- package/dist/types/components/general/microinteractions.d.ts.map +1 -1
- package/dist/types/components/general/modal.d.ts +4 -0
- package/dist/types/components/general/modal.d.ts.map +1 -1
- package/dist/types/components/general/nerdjoke.d.ts +2 -0
- package/dist/types/components/general/nerdjoke.d.ts.map +1 -1
- package/dist/types/components/general/proxy-handler.d.ts +7 -7
- package/dist/types/components/general/proxy-handler.d.ts.map +1 -1
- package/dist/types/components/general/recipe.d.ts +13 -0
- package/dist/types/components/general/recipe.d.ts.map +1 -1
- package/dist/types/components/general/resume.d.ts +21 -0
- package/dist/types/components/general/resume.d.ts.map +1 -1
- package/dist/types/components/general/schema-blogposting.d.ts +1 -0
- package/dist/types/components/general/schema-blogposting.d.ts.map +1 -1
- package/dist/types/components/general/schema-localbusiness.d.ts +16 -0
- package/dist/types/components/general/schema-localbusiness.d.ts.map +1 -1
- package/dist/types/components/general/schema-recipe.d.ts +1 -0
- package/dist/types/components/general/schema-recipe.d.ts.map +1 -1
- package/dist/types/components/general/semantic.d.ts +67 -0
- package/dist/types/components/general/semantic.d.ts.map +1 -1
- package/dist/types/components/general/sidepanel.d.ts +11 -0
- package/dist/types/components/general/sidepanel.d.ts.map +1 -1
- package/dist/types/components/general/sitemap.d.ts +19 -0
- package/dist/types/components/general/sitemap.d.ts.map +1 -1
- package/dist/types/components/general/skeleton-loading.d.ts +3 -6
- package/dist/types/components/general/skeleton-loading.d.ts.map +1 -1
- package/dist/types/components/general/skeleton.d.ts +5 -0
- package/dist/types/components/general/skeleton.d.ts.map +1 -1
- package/dist/types/components/general/smartimage.d.ts +22 -0
- package/dist/types/components/general/smartimage.d.ts.map +1 -1
- package/dist/types/components/general/splitscroll.d.ts +18 -40
- package/dist/types/components/general/splitscroll.d.ts.map +1 -1
- package/dist/types/components/general/styleguide.d.ts +1 -0
- package/dist/types/components/general/styleguide.d.ts.map +1 -1
- package/dist/types/components/general/tab.d.ts +4 -0
- package/dist/types/components/general/tab.d.ts.map +1 -1
- package/dist/types/components/general/table.d.ts +4 -0
- package/dist/types/components/general/table.d.ts.map +1 -1
- package/dist/types/components/general/tiles.d.ts +12 -1
- package/dist/types/components/general/tiles.d.ts.map +1 -1
- package/dist/types/components/general/timeline.d.ts +5 -0
- package/dist/types/components/general/timeline.d.ts.map +1 -1
- package/dist/types/components/general/well-known.d.ts +56 -0
- package/dist/types/components/general/well-known.d.ts.map +1 -0
- package/dist/types/components/integrations/calendly.d.ts +3 -0
- package/dist/types/components/integrations/calendly.d.ts.map +1 -1
- package/dist/types/components/integrations/cloudinary.d.ts +4 -0
- package/dist/types/components/integrations/cloudinary.d.ts.map +1 -1
- package/dist/types/components/integrations/contentful.delivery.d.ts +22 -0
- package/dist/types/components/integrations/contentful.delivery.d.ts.map +1 -1
- package/dist/types/components/integrations/contentful.items.components.d.ts +10 -0
- package/dist/types/components/integrations/contentful.items.components.d.ts.map +1 -1
- package/dist/types/components/integrations/contentful.management.d.ts +1 -5
- package/dist/types/components/integrations/contentful.management.d.ts.map +1 -1
- package/dist/types/components/integrations/flickr.d.ts +11 -0
- package/dist/types/components/integrations/flickr.d.ts.map +1 -1
- package/dist/types/components/integrations/google.reviews.components.d.ts +5 -0
- package/dist/types/components/integrations/google.reviews.components.d.ts.map +1 -1
- package/dist/types/components/integrations/googleanalytics.d.ts +3 -0
- package/dist/types/components/integrations/googleanalytics.d.ts.map +1 -1
- package/dist/types/components/integrations/googlemap.d.ts +8 -0
- package/dist/types/components/integrations/googlemap.d.ts.map +1 -1
- package/dist/types/components/integrations/googlesearch.d.ts +1 -0
- package/dist/types/components/integrations/googlesearch.d.ts.map +1 -1
- package/dist/types/components/integrations/gravatar.components.d.ts +35 -0
- package/dist/types/components/integrations/gravatar.components.d.ts.map +1 -1
- package/dist/types/components/integrations/hubspot.components.d.ts +9 -0
- package/dist/types/components/integrations/hubspot.components.d.ts.map +1 -1
- package/dist/types/components/integrations/instagram.components.d.ts +7 -0
- package/dist/types/components/integrations/instagram.components.d.ts.map +1 -1
- package/dist/types/components/integrations/lipsum.d.ts +14 -0
- package/dist/types/components/integrations/lipsum.d.ts.map +1 -0
- package/dist/types/components/integrations/loremipsum.d.ts +4 -0
- package/dist/types/components/integrations/loremipsum.d.ts.map +1 -1
- package/dist/types/components/integrations/socialcard.d.ts +4 -0
- package/dist/types/components/integrations/socialcard.d.ts.map +1 -1
- package/dist/types/components/integrations/wordpress.components.d.ts +14 -0
- package/dist/types/components/integrations/wordpress.components.d.ts.map +1 -1
- package/dist/types/components/integrations/wordpress.functions.d.ts +6 -0
- package/dist/types/components/integrations/wordpress.functions.d.ts.map +1 -1
- package/dist/types/components/integrations/yelp.d.ts +2 -0
- package/dist/types/components/integrations/yelp.d.ts.map +1 -1
- package/dist/types/components/shoppingcart/ebay.components.d.ts +15 -0
- package/dist/types/components/shoppingcart/ebay.components.d.ts.map +1 -1
- package/dist/types/components/shoppingcart/ebay.functions.d.ts +14 -2
- package/dist/types/components/shoppingcart/ebay.functions.d.ts.map +1 -1
- package/dist/types/components/shoppingcart/paypal.d.ts.map +1 -1
- package/dist/types/components/shoppingcart/shoppingcart.components.d.ts +30 -0
- package/dist/types/components/shoppingcart/shoppingcart.components.d.ts.map +1 -1
- package/dist/types/components/shoppingcart/shoppingcart.functions.d.ts +20 -12
- package/dist/types/components/shoppingcart/shoppingcart.functions.d.ts.map +1 -1
- package/dist/types/components/sitebuilder/config/CompoundFontSelector.d.ts +12 -0
- package/dist/types/components/sitebuilder/config/CompoundFontSelector.d.ts.map +1 -1
- package/dist/types/components/sitebuilder/config/ConfigBuilder.d.ts +2 -0
- package/dist/types/components/sitebuilder/config/ConfigBuilder.d.ts.map +1 -1
- package/dist/types/components/sitebuilder/config/FontSelector.d.ts +16 -0
- package/dist/types/components/sitebuilder/config/FontSelector.d.ts.map +1 -1
- package/dist/types/components/sitebuilder/form/formbuilder.d.ts +5 -1
- package/dist/types/components/sitebuilder/form/formbuilder.d.ts.map +1 -1
- package/dist/types/components/sitebuilder/form/formcomponents.d.ts +129 -0
- package/dist/types/components/sitebuilder/form/formcomponents.d.ts.map +1 -1
- package/dist/types/components/sitebuilder/form/formengine.d.ts +5 -0
- package/dist/types/components/sitebuilder/form/formengine.d.ts.map +1 -1
- package/dist/types/components/sitebuilder/form/formextractor.d.ts +6 -0
- package/dist/types/components/sitebuilder/form/formextractor.d.ts.map +1 -1
- package/dist/types/components/sitebuilder/form/formutils.d.ts +0 -2
- package/dist/types/components/sitebuilder/form/formutils.d.ts.map +1 -1
- package/dist/types/components/sitebuilder/form/formvalidator.d.ts +1 -0
- package/dist/types/components/sitebuilder/form/formvalidator.d.ts.map +1 -1
- package/dist/types/components/sitebuilder/page/components/ComponentPropertiesForm.d.ts +2 -0
- package/dist/types/components/sitebuilder/page/components/ComponentPropertiesForm.d.ts.map +1 -1
- package/dist/types/components/sitebuilder/page/components/ComponentSelector.d.ts +3 -0
- package/dist/types/components/sitebuilder/page/components/ComponentSelector.d.ts.map +1 -1
- package/dist/types/components/sitebuilder/page/components/ComponentTree.d.ts +8 -0
- package/dist/types/components/sitebuilder/page/components/ComponentTree.d.ts.map +1 -1
- package/dist/types/components/sitebuilder/page/components/PageBuilderUI.d.ts +1 -0
- package/dist/types/components/sitebuilder/page/components/PageBuilderUI.d.ts.map +1 -1
- package/dist/types/components/sitebuilder/page/components/PageEngine.d.ts +8 -0
- package/dist/types/components/sitebuilder/page/components/PageEngine.d.ts.map +1 -1
- package/dist/types/components/sitebuilder/page/components/SaveLoadSection.d.ts +3 -0
- package/dist/types/components/sitebuilder/page/components/SaveLoadSection.d.ts.map +1 -1
- package/dist/types/components/sitebuilder/page/lib/pageStorageContentful.d.ts +1 -1
- package/dist/types/components/sitebuilder/page/lib/pageStorageContentful.d.ts.map +1 -1
- package/dist/types/index.d.ts +1 -1
- package/dist/types/index.server.d.ts +4 -4
- package/dist/types/scripts/pixelated-eslint-plugin.d.ts +36 -0
- package/dist/types/stories/general/skeleton-loading.stories.d.ts +1 -1
- package/dist/types/stories/general/skeleton-loading.stories.d.ts.map +1 -1
- package/dist/types/stories/integrations/lipsum.stories.d.ts +38 -0
- package/dist/types/stories/integrations/lipsum.stories.d.ts.map +1 -0
- package/dist/types/stories/shoppingcart/shoppingcart.stories.d.ts +3 -1
- package/dist/types/stories/shoppingcart/shoppingcart.stories.d.ts.map +1 -1
- package/dist/types/tests/args.test.d.ts +2 -0
- package/dist/types/tests/args.test.d.ts.map +1 -0
- package/dist/types/tests/lipsum.test.d.ts +2 -0
- package/dist/types/tests/lipsum.test.d.ts.map +1 -0
- package/dist/types/tests/securitytxt.test.d.ts +2 -0
- package/dist/types/tests/securitytxt.test.d.ts.map +1 -0
- package/dist/types/tests/storybook-docgen.test.d.ts +2 -0
- package/dist/types/tests/storybook-docgen.test.d.ts.map +1 -0
- package/package.json +17 -14
- package/dist/components/config/config.utils.js +0 -52
- package/dist/components/general/humanstxt.js +0 -81
- package/dist/types/components/config/config.utils.d.ts +0 -6
- package/dist/types/components/config/config.utils.d.ts.map +0 -1
- package/dist/types/components/general/humanstxt.d.ts +0 -37
- package/dist/types/components/general/humanstxt.d.ts.map +0 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"site-health-accessibility.d.ts","sourceRoot":"","sources":["../../../../../src/components/admin/site-health/site-health-accessibility.tsx"],"names":[],"mappings":"AAGA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;
|
|
1
|
+
{"version":3,"file":"site-health-accessibility.d.ts","sourceRoot":"","sources":["../../../../../src/components/admin/site-health/site-health-accessibility.tsx"],"names":[],"mappings":"AAGA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAenD,MAAM,MAAM,2BAA2B,GAAG,UAAU,CAAC,OAAO,uBAAuB,CAAC,SAAS,CAAC,CAAC;AAC/F,wBAAgB,uBAAuB,CAAC,EAAE,QAAQ,EAAE,EAAE,2BAA2B,2CA8IhF;yBA9Ie,uBAAuB;;QAJvC,uDAAuD"}
|
|
@@ -3,6 +3,7 @@ export type SiteHealthAxeCoreType = InferProps<typeof SiteHealthAxeCore.propType
|
|
|
3
3
|
export declare function SiteHealthAxeCore({ siteName }: SiteHealthAxeCoreType): import("react/jsx-runtime").JSX.Element;
|
|
4
4
|
export declare namespace SiteHealthAxeCore {
|
|
5
5
|
var propTypes: {
|
|
6
|
+
/** Site identifier used to fetch axe-core data */
|
|
6
7
|
siteName: PropTypes.Validator<string>;
|
|
7
8
|
};
|
|
8
9
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"site-health-axe-core.d.ts","sourceRoot":"","sources":["../../../../../src/components/admin/site-health/site-health-axe-core.tsx"],"names":[],"mappings":"AAGA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;
|
|
1
|
+
{"version":3,"file":"site-health-axe-core.d.ts","sourceRoot":"","sources":["../../../../../src/components/admin/site-health/site-health-axe-core.tsx"],"names":[],"mappings":"AAGA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAiBnD,MAAM,MAAM,qBAAqB,GAAG,UAAU,CAAC,OAAO,iBAAiB,CAAC,SAAS,CAAC,CAAC;AACnF,wBAAgB,iBAAiB,CAAC,EAAE,QAAQ,EAAE,EAAE,qBAAqB,2CAiSpE;yBAjSe,iBAAiB;;QAJjC,kDAAkD"}
|
|
@@ -3,8 +3,11 @@ export type SiteHealthCloudwatchType = InferProps<typeof SiteHealthCloudwatch.pr
|
|
|
3
3
|
export declare function SiteHealthCloudwatch({ siteName, startDate, endDate }: SiteHealthCloudwatchType): import("react/jsx-runtime").JSX.Element;
|
|
4
4
|
export declare namespace SiteHealthCloudwatch {
|
|
5
5
|
var propTypes: {
|
|
6
|
+
/** Site identifier used to fetch CloudWatch metrics */
|
|
6
7
|
siteName: PropTypes.Validator<string>;
|
|
8
|
+
/** ISO start date for the metrics range (optional) */
|
|
7
9
|
startDate: PropTypes.Requireable<string>;
|
|
10
|
+
/** ISO end date for the metrics range (optional) */
|
|
8
11
|
endDate: PropTypes.Requireable<string>;
|
|
9
12
|
};
|
|
10
13
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"site-health-cloudwatch.d.ts","sourceRoot":"","sources":["../../../../../src/components/admin/site-health/site-health-cloudwatch.tsx"],"names":[],"mappings":"AAGA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;
|
|
1
|
+
{"version":3,"file":"site-health-cloudwatch.d.ts","sourceRoot":"","sources":["../../../../../src/components/admin/site-health/site-health-cloudwatch.tsx"],"names":[],"mappings":"AAGA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AA2BnD,MAAM,MAAM,wBAAwB,GAAG,UAAU,CAAC,OAAO,oBAAoB,CAAC,SAAS,CAAC,CAAC;AACzF,wBAAgB,oBAAoB,CAAC,EAAE,QAAQ,EAAE,SAAS,EAAE,OAAO,EAAE,EAAE,wBAAwB,2CAqH9F;yBArHe,oBAAoB;;QARpC,uDAAuD;;QAEtD,sDAAsD;;QAEtD,oDAAoD"}
|
|
@@ -3,6 +3,7 @@ export type SiteHealthDependencyVulnerabilitiesType = InferProps<typeof SiteHeal
|
|
|
3
3
|
export declare function SiteHealthDependencyVulnerabilities({ siteName }: SiteHealthDependencyVulnerabilitiesType): import("react/jsx-runtime").JSX.Element;
|
|
4
4
|
export declare namespace SiteHealthDependencyVulnerabilities {
|
|
5
5
|
var propTypes: {
|
|
6
|
+
/** Site identifier used to fetch dependency vulnerability reports */
|
|
6
7
|
siteName: PropTypes.Validator<string>;
|
|
7
8
|
};
|
|
8
9
|
}
|
package/dist/types/components/admin/site-health/site-health-dependency-vulnerabilities.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"site-health-dependency-vulnerabilities.d.ts","sourceRoot":"","sources":["../../../../../src/components/admin/site-health/site-health-dependency-vulnerabilities.tsx"],"names":[],"mappings":"AAGA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;
|
|
1
|
+
{"version":3,"file":"site-health-dependency-vulnerabilities.d.ts","sourceRoot":"","sources":["../../../../../src/components/admin/site-health/site-health-dependency-vulnerabilities.tsx"],"names":[],"mappings":"AAGA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAanD,MAAM,MAAM,uCAAuC,GAAG,UAAU,CAAC,OAAO,mCAAmC,CAAC,SAAS,CAAC,CAAC;AACvH,wBAAgB,mCAAmC,CAAC,EAAE,QAAQ,EAAE,EAAE,uCAAuC,2CA+IxG;yBA/Ie,mCAAmC;;QAJnD,qEAAqE"}
|
|
@@ -3,8 +3,11 @@ export type SiteHealthGitType = InferProps<typeof SiteHealthGit.propTypes>;
|
|
|
3
3
|
export declare function SiteHealthGit({ siteName, startDate, endDate }: SiteHealthGitType): import("react/jsx-runtime").JSX.Element;
|
|
4
4
|
export declare namespace SiteHealthGit {
|
|
5
5
|
var propTypes: {
|
|
6
|
+
/** Site identifier used to fetch Git activity */
|
|
6
7
|
siteName: PropTypes.Validator<string>;
|
|
8
|
+
/** ISO start date to filter commits (optional) */
|
|
7
9
|
startDate: PropTypes.Requireable<string>;
|
|
10
|
+
/** ISO end date to filter commits (optional) */
|
|
8
11
|
endDate: PropTypes.Requireable<string>;
|
|
9
12
|
};
|
|
10
13
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"site-health-github.d.ts","sourceRoot":"","sources":["../../../../../src/components/admin/site-health/site-health-github.tsx"],"names":[],"mappings":"AAGA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;
|
|
1
|
+
{"version":3,"file":"site-health-github.d.ts","sourceRoot":"","sources":["../../../../../src/components/admin/site-health/site-health-github.tsx"],"names":[],"mappings":"AAGA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAoBnD,MAAM,MAAM,iBAAiB,GAAG,UAAU,CAAC,OAAO,aAAa,CAAC,SAAS,CAAC,CAAC;AAC3E,wBAAgB,aAAa,CAAC,EAAE,QAAQ,EAAE,SAAS,EAAE,OAAO,EAAE,EAAE,iBAAiB,2CAyDhF;yBAzDe,aAAa;;QAR7B,iDAAiD;;QAEhD,kDAAkD;;QAElD,gDAAgD"}
|
|
@@ -1,21 +1,11 @@
|
|
|
1
1
|
import type { GitCommit } from './site-health-types';
|
|
2
|
+
import type { SiteConfig } from '../sites/sites.integration';
|
|
2
3
|
export interface GitHealthResult {
|
|
3
4
|
commits: GitCommit[];
|
|
4
5
|
timestamp: string;
|
|
5
6
|
status: 'success' | 'error';
|
|
6
7
|
error?: string;
|
|
7
8
|
}
|
|
8
|
-
export interface SiteConfig {
|
|
9
|
-
name: string;
|
|
10
|
-
/** Optional: explicit repository identifier (e.g., "owner/repo" or just "repo") */
|
|
11
|
-
repo?: string;
|
|
12
|
-
/** Optional: remote name (legacy) */
|
|
13
|
-
remote?: string;
|
|
14
|
-
/** Optional explicit repo owner */
|
|
15
|
-
owner?: string;
|
|
16
|
-
/** Optional local path used to derive repo name if needed */
|
|
17
|
-
localPath?: string;
|
|
18
|
-
}
|
|
19
9
|
/**
|
|
20
10
|
* Analyze git repository health for a site using the GitHub REST API.
|
|
21
11
|
* Expects a GitHub token to be present in the master config under `github.token`.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"site-health-github.integration.d.ts","sourceRoot":"","sources":["../../../../../src/components/admin/site-health/site-health-github.integration.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,qBAAqB,CAAC;
|
|
1
|
+
{"version":3,"file":"site-health-github.integration.d.ts","sourceRoot":"","sources":["../../../../../src/components/admin/site-health/site-health-github.integration.ts"],"names":[],"mappings":"AAIA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,qBAAqB,CAAC;AACrD,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,4BAA4B,CAAC;AAM7D,MAAM,WAAW,eAAe;IAC9B,OAAO,EAAE,SAAS,EAAE,CAAC;IACrB,SAAS,EAAE,MAAM,CAAC;IAClB,MAAM,EAAE,SAAS,GAAG,OAAO,CAAC;IAC5B,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB;AAED;;;GAGG;AACH,wBAAsB,gBAAgB,CAAC,UAAU,EAAE,UAAU,EAAE,SAAS,CAAC,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,MAAM,EAAE,SAAS,CAAC,EAAE,CAAC,KAAK,EAAE,WAAW,EAAE,IAAI,CAAC,EAAE,WAAW,KAAK,OAAO,CAAC,GAAG,CAAC,GAAG,OAAO,CAAC,eAAe,CAAC,CAgHnM"}
|
|
@@ -3,8 +3,11 @@ export type SiteHealthGoogleAnalyticsType = InferProps<typeof SiteHealthGoogleAn
|
|
|
3
3
|
export declare function SiteHealthGoogleAnalytics({ siteName, startDate, endDate }: SiteHealthGoogleAnalyticsType): import("react/jsx-runtime").JSX.Element;
|
|
4
4
|
export declare namespace SiteHealthGoogleAnalytics {
|
|
5
5
|
var propTypes: {
|
|
6
|
+
/** Site identifier used to fetch analytics metrics */
|
|
6
7
|
siteName: PropTypes.Validator<string>;
|
|
8
|
+
/** ISO start date for the metrics range (optional) */
|
|
7
9
|
startDate: PropTypes.Requireable<string>;
|
|
10
|
+
/** ISO end date for the metrics range (optional) */
|
|
8
11
|
endDate: PropTypes.Requireable<string>;
|
|
9
12
|
};
|
|
10
13
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"site-health-google-analytics.d.ts","sourceRoot":"","sources":["../../../../../src/components/admin/site-health/site-health-google-analytics.tsx"],"names":[],"mappings":"AAGA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;
|
|
1
|
+
{"version":3,"file":"site-health-google-analytics.d.ts","sourceRoot":"","sources":["../../../../../src/components/admin/site-health/site-health-google-analytics.tsx"],"names":[],"mappings":"AAGA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAyBnD,MAAM,MAAM,6BAA6B,GAAG,UAAU,CAAC,OAAO,yBAAyB,CAAC,SAAS,CAAC,CAAC;AACnG,wBAAgB,yBAAyB,CAAC,EAAE,QAAQ,EAAE,SAAS,EAAE,OAAO,EAAE,EAAE,6BAA6B,2CAoGxG;yBApGe,yBAAyB;;QARzC,sDAAsD;;QAErD,sDAAsD;;QAEtD,oDAAoD"}
|
|
@@ -3,8 +3,11 @@ export type SiteHealthGoogleSearchConsoleType = InferProps<typeof SiteHealthGoog
|
|
|
3
3
|
export declare function SiteHealthGoogleSearchConsole({ siteName, startDate, endDate }: SiteHealthGoogleSearchConsoleType): import("react/jsx-runtime").JSX.Element;
|
|
4
4
|
export declare namespace SiteHealthGoogleSearchConsole {
|
|
5
5
|
var propTypes: {
|
|
6
|
+
/** Site identifier used to fetch Search Console metrics */
|
|
6
7
|
siteName: PropTypes.Validator<string>;
|
|
8
|
+
/** ISO start date for analysis (optional) */
|
|
7
9
|
startDate: PropTypes.Requireable<string>;
|
|
10
|
+
/** ISO end date for analysis (optional) */
|
|
8
11
|
endDate: PropTypes.Requireable<string>;
|
|
9
12
|
};
|
|
10
13
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"site-health-google-search-console.d.ts","sourceRoot":"","sources":["../../../../../src/components/admin/site-health/site-health-google-search-console.tsx"],"names":[],"mappings":"AAGA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;
|
|
1
|
+
{"version":3,"file":"site-health-google-search-console.d.ts","sourceRoot":"","sources":["../../../../../src/components/admin/site-health/site-health-google-search-console.tsx"],"names":[],"mappings":"AAGA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AA2BnD,MAAM,MAAM,iCAAiC,GAAG,UAAU,CAAC,OAAO,6BAA6B,CAAC,SAAS,CAAC,CAAC;AAC3G,wBAAgB,6BAA6B,CAAC,EAAE,QAAQ,EAAE,SAAS,EAAE,OAAO,EAAE,EAAE,iCAAiC,2CAkHhH;yBAlHe,6BAA6B;;QAR7C,2DAA2D;;QAE1D,6CAA6C;;QAE7C,2CAA2C"}
|
|
@@ -7,8 +7,16 @@ export interface SiteHealthMockProviderProps {
|
|
|
7
7
|
}
|
|
8
8
|
export declare const SiteHealthMockProvider: {
|
|
9
9
|
({ mocks, children }: SiteHealthMockProviderProps): import("react/jsx-runtime").JSX.Element;
|
|
10
|
+
/**
|
|
11
|
+
* SiteHealthMockProvider — Provider that injects mock site-health data into child components for development and testing.
|
|
12
|
+
*
|
|
13
|
+
* @param {object} [props.mocks] - Map of mock data keyed by site identifier.
|
|
14
|
+
* @param {node} [props.children] - Child nodes that will receive the mock data via context.
|
|
15
|
+
*/
|
|
10
16
|
propTypes: {
|
|
17
|
+
/** Map of mock site-health data */
|
|
11
18
|
mocks: PropTypes.Validator<object>;
|
|
19
|
+
/** Child nodes that consume mock data */
|
|
12
20
|
children: PropTypes.Validator<NonNullable<PropTypes.ReactNodeLike>>;
|
|
13
21
|
};
|
|
14
22
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"site-health-mock-context.d.ts","sourceRoot":"","sources":["../../../../../src/components/admin/site-health/site-health-mock-context.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAoC,MAAM,OAAO,CAAC;AACzD,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAEnD,KAAK,qBAAqB,GAAG,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;AAIrD,MAAM,WAAW,2BAA2B;IAC1C,KAAK,EAAE,qBAAqB,CAAC;IAC7B,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;CAC3B;AAED,eAAO,MAAM,sBAAsB;0BAAyB,2BAA2B;;;;;
|
|
1
|
+
{"version":3,"file":"site-health-mock-context.d.ts","sourceRoot":"","sources":["../../../../../src/components/admin/site-health/site-health-mock-context.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAoC,MAAM,OAAO,CAAC;AACzD,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAEnD,KAAK,qBAAqB,GAAG,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;AAIrD,MAAM,WAAW,2BAA2B;IAC1C,KAAK,EAAE,qBAAqB,CAAC;IAC7B,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;CAC3B;AAED,eAAO,MAAM,sBAAsB;0BAAyB,2BAA2B;IAQvF;;;;;OAKG;;QAEH,mCAAmC;;QAElC,yCAAyC;;;CAXzC,CAAC;AAeF,MAAM,MAAM,0BAA0B,GAAG,UAAU,CAAC,OAAO,sBAAsB,CAAC,SAAS,CAAC,CAAC;AAE7F,wBAAgB,qBAAqB,IAAI,qBAAqB,GAAG,IAAI,CAEpE"}
|
|
@@ -3,6 +3,7 @@ export type SiteHealthOnSiteSEOType = InferProps<typeof SiteHealthOnSiteSEO.prop
|
|
|
3
3
|
export declare function SiteHealthOnSiteSEO({ siteName }: SiteHealthOnSiteSEOType): import("react/jsx-runtime").JSX.Element;
|
|
4
4
|
export declare namespace SiteHealthOnSiteSEO {
|
|
5
5
|
var propTypes: {
|
|
6
|
+
/** Site identifier used to fetch on-site SEO data */
|
|
6
7
|
siteName: PropTypes.Validator<string>;
|
|
7
8
|
};
|
|
8
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;
|
|
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;
|
|
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;
|
|
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;
|
|
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;
|
|
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;
|
|
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;
|
|
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"}
|
|
@@ -4,8 +4,14 @@
|
|
|
4
4
|
*/
|
|
5
5
|
export interface SiteConfig {
|
|
6
6
|
name: string;
|
|
7
|
-
|
|
7
|
+
/** Optional local path (may be absent for remote-only checks) */
|
|
8
|
+
localPath?: string;
|
|
9
|
+
/** Optional remote (e.g., full URL or owner/repo string) */
|
|
8
10
|
remote?: string;
|
|
11
|
+
/** Optional explicit repository identifier (e.g., "owner/repo" or just "repo") */
|
|
12
|
+
repo?: string;
|
|
13
|
+
/** Optional explicit repo owner */
|
|
14
|
+
owner?: string;
|
|
9
15
|
ga4PropertyId?: string;
|
|
10
16
|
searchConsoleUrl?: string;
|
|
11
17
|
[key: string]: any;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"sites.integration.d.ts","sourceRoot":"","sources":["../../../../../src/components/admin/sites/sites.integration.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAKH,MAAM,WAAW,UAAU;IACzB,IAAI,EAAE,MAAM,CAAC;IACb,SAAS,EAAE,MAAM,CAAC;
|
|
1
|
+
{"version":3,"file":"sites.integration.d.ts","sourceRoot":"","sources":["../../../../../src/components/admin/sites/sites.integration.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAKH,MAAM,WAAW,UAAU;IACzB,IAAI,EAAE,MAAM,CAAC;IACb,iEAAiE;IACjE,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,4DAA4D;IAC5D,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,kFAAkF;IAClF,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,mCAAmC;IACnC,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B,CAAC,GAAG,EAAE,MAAM,GAAG,GAAG,CAAC;CACpB;AAED;;GAEG;AACH,wBAAsB,eAAe,CAAC,UAAU,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC,UAAU,EAAE,CAAC,CAgBhF;AAED;;GAEG;AACH,wBAAsB,eAAe,CAAC,KAAK,EAAE,UAAU,EAAE,EAAE,UAAU,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC,CAe7F;AAED;;GAEG;AACH,wBAAsB,aAAa,CAAC,QAAQ,EAAE,MAAM,EAAE,UAAU,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC,UAAU,GAAG,IAAI,CAAC,CAGrG;AAED;;GAEG;AACH,wBAAgB,kBAAkB,CAAC,IAAI,EAAE,UAAU,GAAG;IAAE,KAAK,EAAE,OAAO,CAAC;IAAC,MAAM,EAAE,MAAM,EAAE,CAAA;CAAE,CAkCzF;AAED;;GAEG;AACH,wBAAsB,gBAAgB,CAAC,IAAI,EAAE,UAAU,EAAE,UAAU,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC,IAAI,CAAC,CAmB3F;AAED;;GAEG;AACH,wBAAsB,gBAAgB,CAAC,QAAQ,EAAE,MAAM,EAAE,UAAU,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC,OAAO,CAAC,CAU9F"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"config.d.ts","sourceRoot":"","sources":["../../../../src/components/config/config.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,eAAe,EAAsB,MAAM,gBAAgB,CAAC;
|
|
1
|
+
{"version":3,"file":"config.d.ts","sourceRoot":"","sources":["../../../../src/components/config/config.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,eAAe,EAAsB,MAAM,gBAAgB,CAAC;AAW1E;;;GAGG;AACH,wBAAgB,sBAAsB,IAAI,eAAe,CA4FxD;AAED;;;GAGG;AACH,wBAAgB,4BAA4B,CAAC,IAAI,CAAC,EAAE,eAAe,GAAG,eAAe,CAwCpF"}
|
|
@@ -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;
|
|
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"}
|
|
@@ -15,9 +15,9 @@ export interface CloudinaryConfig {
|
|
|
15
15
|
}
|
|
16
16
|
export interface ContentfulConfig {
|
|
17
17
|
proxyURL?: string;
|
|
18
|
-
base_url
|
|
18
|
+
base_url?: string;
|
|
19
19
|
space_id: string;
|
|
20
|
-
environment
|
|
20
|
+
environment?: string;
|
|
21
21
|
delivery_access_token?: string;
|
|
22
22
|
management_access_token?: string;
|
|
23
23
|
preview_access_token?: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"config.types.d.ts","sourceRoot":"","sources":["../../../../src/components/config/config.types.ts"],"names":[],"mappings":"AAEA,MAAM,WAAW,SAAS;IACzB,qGAAqG;IACrG,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,iBAAiB,CAAC,EAAE,MAAM,CAAC;IAC3B,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,MAAM,CAAC,EAAE,MAAM,CAAC;CAChB;AAED,MAAM,WAAW,gBAAgB;IAChC,WAAW,EAAE,MAAM,CAAC;IACpB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,UAAU,CAAC,EAAE,MAAM,CAAC;CACpB;AAED,MAAM,WAAW,gBAAgB;IAChC,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,QAAQ,EAAE,MAAM,CAAC;
|
|
1
|
+
{"version":3,"file":"config.types.d.ts","sourceRoot":"","sources":["../../../../src/components/config/config.types.ts"],"names":[],"mappings":"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"}
|
|
@@ -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;
|
|
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;
|
|
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;
|
|
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;
|
|
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;
|
|
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;
|
|
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"}
|