@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
|
@@ -12,7 +12,9 @@ export type PageTitleHeaderType = InferProps<typeof PageTitleHeader.propTypes>;
|
|
|
12
12
|
export declare function PageTitleHeader({ title, url }: PageTitleHeaderType): import("react/jsx-runtime").JSX.Element;
|
|
13
13
|
export declare namespace PageTitleHeader {
|
|
14
14
|
var propTypes: {
|
|
15
|
+
/** Page title text (required) */
|
|
15
16
|
title: PropTypes.Validator<string>;
|
|
17
|
+
/** Optional URL to wrap the title with */
|
|
16
18
|
url: PropTypes.Requireable<string>;
|
|
17
19
|
};
|
|
18
20
|
}
|
|
@@ -20,26 +22,46 @@ export type PageSectionType = InferProps<typeof PageSection.propTypes>;
|
|
|
20
22
|
export declare function PageSection({ id, className, layoutType, gap, maxWidth, padding, /* 5px */ background, backgroundImage, columns, autoFlow, justifyItems, direction, wrap, justifyContent, alignItems, children, }: PageSectionType): import("react/jsx-runtime").JSX.Element;
|
|
21
23
|
export declare namespace PageSection {
|
|
22
24
|
var propTypes: {
|
|
25
|
+
/** Optional element id */
|
|
23
26
|
id: PropTypes.Requireable<string>;
|
|
27
|
+
/** Optional CSS classes */
|
|
24
28
|
className: PropTypes.Requireable<string>;
|
|
29
|
+
/** Layout mode ('grid' | 'flex' | 'none') */
|
|
25
30
|
layoutType: PropTypes.Requireable<"none" | "grid" | "flex">;
|
|
31
|
+
/** Gap between children (CSS gap) */
|
|
26
32
|
gap: PropTypes.Requireable<string>;
|
|
33
|
+
/** Max width of the content area */
|
|
27
34
|
maxWidth: PropTypes.Requireable<string>;
|
|
35
|
+
/** Padding applied to content area */
|
|
28
36
|
padding: PropTypes.Requireable<string>;
|
|
37
|
+
/** Background color/string */
|
|
29
38
|
background: PropTypes.Requireable<string>;
|
|
39
|
+
/** Background image URL */
|
|
30
40
|
backgroundImage: PropTypes.Requireable<string>;
|
|
41
|
+
/** Number of columns when using grid layout */
|
|
31
42
|
columns: PropTypes.Requireable<number>;
|
|
43
|
+
/** Grid auto-flow value */
|
|
32
44
|
autoFlow: PropTypes.Requireable<"row" | "column" | "dense" | "row dense" | "column dense">;
|
|
45
|
+
/** Grid justify-items */
|
|
33
46
|
justifyItems: PropTypes.Requireable<"start" | "center" | "end" | "stretch">;
|
|
47
|
+
/** Responsive column config */
|
|
34
48
|
responsive: PropTypes.Requireable<PropTypes.InferProps<{
|
|
49
|
+
/** Mobile column count */
|
|
35
50
|
mobile: PropTypes.Requireable<number>;
|
|
51
|
+
/** Tablet column count */
|
|
36
52
|
tablet: PropTypes.Requireable<number>;
|
|
53
|
+
/** Desktop column count */
|
|
37
54
|
desktop: PropTypes.Requireable<number>;
|
|
38
55
|
}>>;
|
|
56
|
+
/** Flex direction value */
|
|
39
57
|
direction: PropTypes.Requireable<"row" | "column" | "row-reverse" | "column-reverse">;
|
|
58
|
+
/** Flex wrap behavior */
|
|
40
59
|
wrap: PropTypes.Requireable<"nowrap" | "wrap" | "wrap-reverse">;
|
|
60
|
+
/** Flex justify-content value */
|
|
41
61
|
justifyContent: PropTypes.Requireable<"start" | "center" | "end" | "space-between" | "space-around" | "space-evenly">;
|
|
62
|
+
/** Cross-axis alignment for children */
|
|
42
63
|
alignItems: PropTypes.Requireable<"start" | "center" | "end" | "stretch" | "baseline">;
|
|
64
|
+
/** Child nodes */
|
|
43
65
|
children: PropTypes.Requireable<PropTypes.ReactNodeLike>;
|
|
44
66
|
};
|
|
45
67
|
}
|
|
@@ -47,7 +69,9 @@ export type PageSectionHeaderType = InferProps<typeof PageSectionHeader.propType
|
|
|
47
69
|
export declare function PageSectionHeader({ title, url }: PageSectionHeaderType): import("react/jsx-runtime").JSX.Element;
|
|
48
70
|
export declare namespace PageSectionHeader {
|
|
49
71
|
var propTypes: {
|
|
72
|
+
/** Section title text */
|
|
50
73
|
title: PropTypes.Validator<string>;
|
|
74
|
+
/** Optional URL to link the title */
|
|
51
75
|
url: PropTypes.Requireable<string>;
|
|
52
76
|
};
|
|
53
77
|
}
|
|
@@ -55,7 +79,9 @@ export type PageSectionBackgroundImageType = InferProps<typeof PageSectionBackgr
|
|
|
55
79
|
export declare function PageSectionBackgroundImage(props: PageSectionBackgroundImageType): import("react/jsx-runtime").JSX.Element;
|
|
56
80
|
export declare namespace PageSectionBackgroundImage {
|
|
57
81
|
var propTypes: {
|
|
82
|
+
/** Background image URL */
|
|
58
83
|
backgroundImage: PropTypes.Validator<string>;
|
|
84
|
+
/** Optional id for the image element */
|
|
59
85
|
id: PropTypes.Requireable<string>;
|
|
60
86
|
};
|
|
61
87
|
}
|
|
@@ -63,16 +89,27 @@ export type PageGridItemType = InferProps<typeof PageGridItem.propTypes>;
|
|
|
63
89
|
export declare function PageGridItem({ id, className, columnSpan, rowSpan, columnStart, columnEnd, rowStart, rowEnd, alignSelf, justifySelf, children, }: PageGridItemType): import("react/jsx-runtime").JSX.Element;
|
|
64
90
|
export declare namespace PageGridItem {
|
|
65
91
|
var propTypes: {
|
|
92
|
+
/** Optional element id */
|
|
66
93
|
id: PropTypes.Requireable<string>;
|
|
94
|
+
/** Optional CSS classes */
|
|
67
95
|
className: PropTypes.Requireable<string>;
|
|
96
|
+
/** Column span value */
|
|
68
97
|
columnSpan: PropTypes.Requireable<number>;
|
|
98
|
+
/** Row span value */
|
|
69
99
|
rowSpan: PropTypes.Requireable<number>;
|
|
100
|
+
/** Column start index */
|
|
70
101
|
columnStart: PropTypes.Requireable<number>;
|
|
102
|
+
/** Column end index */
|
|
71
103
|
columnEnd: PropTypes.Requireable<number>;
|
|
104
|
+
/** Row start index */
|
|
72
105
|
rowStart: PropTypes.Requireable<number>;
|
|
106
|
+
/** Row end index */
|
|
73
107
|
rowEnd: PropTypes.Requireable<number>;
|
|
108
|
+
/** Cross-axis alignment */
|
|
74
109
|
alignSelf: PropTypes.Requireable<string>;
|
|
110
|
+
/** Main-axis alignment */
|
|
75
111
|
justifySelf: PropTypes.Requireable<string>;
|
|
112
|
+
/** Child nodes */
|
|
76
113
|
children: PropTypes.Requireable<PropTypes.ReactNodeLike>;
|
|
77
114
|
};
|
|
78
115
|
}
|
|
@@ -80,9 +117,13 @@ export type PageFlexItemType = InferProps<typeof PageFlexItem.propTypes>;
|
|
|
80
117
|
export declare function PageFlexItem({ flex, order, alignSelf, children, }: PageFlexItemType): import("react/jsx-runtime").JSX.Element;
|
|
81
118
|
export declare namespace PageFlexItem {
|
|
82
119
|
var propTypes: {
|
|
120
|
+
/** CSS flex shorthand value */
|
|
83
121
|
flex: PropTypes.Requireable<string>;
|
|
122
|
+
/** Flex order value */
|
|
84
123
|
order: PropTypes.Requireable<number>;
|
|
124
|
+
/** Cross-axis alignment override */
|
|
85
125
|
alignSelf: PropTypes.Requireable<string>;
|
|
126
|
+
/** Child nodes */
|
|
86
127
|
children: PropTypes.Requireable<PropTypes.ReactNodeLike>;
|
|
87
128
|
};
|
|
88
129
|
}
|
|
@@ -90,14 +131,23 @@ export type PageHeaderType = InferProps<typeof PageHeader.propTypes>;
|
|
|
90
131
|
export declare function PageHeader({ className, eyebrow, headline, description, ctaLabel, ctaHref, ctaTarget, children, fixed, }: PageHeaderType): import("react/jsx-runtime").JSX.Element;
|
|
91
132
|
export declare namespace PageHeader {
|
|
92
133
|
var propTypes: {
|
|
134
|
+
/** Optional CSS classes */
|
|
93
135
|
className: PropTypes.Requireable<string>;
|
|
136
|
+
/** Eyebrow above the headline */
|
|
94
137
|
eyebrow: PropTypes.Requireable<string>;
|
|
138
|
+
/** Headline text */
|
|
95
139
|
headline: PropTypes.Requireable<string>;
|
|
140
|
+
/** Subheading or description */
|
|
96
141
|
description: PropTypes.Requireable<string>;
|
|
142
|
+
/** CTA label */
|
|
97
143
|
ctaLabel: PropTypes.Requireable<string>;
|
|
144
|
+
/** CTA href */
|
|
98
145
|
ctaHref: PropTypes.Requireable<string>;
|
|
146
|
+
/** CTA target */
|
|
99
147
|
ctaTarget: PropTypes.Requireable<string>;
|
|
148
|
+
/** Additional child nodes */
|
|
100
149
|
children: PropTypes.Requireable<PropTypes.ReactNodeLike>;
|
|
150
|
+
/** When true, header is fixed (sticky) */
|
|
101
151
|
fixed: PropTypes.Requireable<boolean>;
|
|
102
152
|
};
|
|
103
153
|
}
|
|
@@ -105,10 +155,15 @@ export type PageHeroType = InferProps<typeof PageHero.propTypes>;
|
|
|
105
155
|
export declare function PageHero({ id, className, background, backgroundImage, children, }: PageHeroType): import("react/jsx-runtime").JSX.Element;
|
|
106
156
|
export declare namespace PageHero {
|
|
107
157
|
var propTypes: {
|
|
158
|
+
/** Optional id for hero */
|
|
108
159
|
id: PropTypes.Requireable<string>;
|
|
160
|
+
/** Optional CSS classes */
|
|
109
161
|
className: PropTypes.Requireable<string>;
|
|
162
|
+
/** Background color or CSS string */
|
|
110
163
|
background: PropTypes.Requireable<string>;
|
|
164
|
+
/** Background image URL */
|
|
111
165
|
backgroundImage: PropTypes.Requireable<string>;
|
|
166
|
+
/** Child nodes */
|
|
112
167
|
children: PropTypes.Requireable<PropTypes.ReactNodeLike>;
|
|
113
168
|
};
|
|
114
169
|
}
|
|
@@ -116,10 +171,15 @@ export type PageMainType = InferProps<typeof PageMain.propTypes>;
|
|
|
116
171
|
export declare function PageMain({ id, className, maxWidth, padding, children, }: PageMainType): import("react/jsx-runtime").JSX.Element;
|
|
117
172
|
export declare namespace PageMain {
|
|
118
173
|
var propTypes: {
|
|
174
|
+
/** Optional id */
|
|
119
175
|
id: PropTypes.Requireable<string>;
|
|
176
|
+
/** Optional CSS classes */
|
|
120
177
|
className: PropTypes.Requireable<string>;
|
|
178
|
+
/** Max content width */
|
|
121
179
|
maxWidth: PropTypes.Requireable<string>;
|
|
180
|
+
/** Padding for main content */
|
|
122
181
|
padding: PropTypes.Requireable<string>;
|
|
182
|
+
/** Child nodes */
|
|
123
183
|
children: PropTypes.Requireable<PropTypes.ReactNodeLike>;
|
|
124
184
|
};
|
|
125
185
|
}
|
|
@@ -127,8 +187,11 @@ export type PageNavType = InferProps<typeof PageNav.propTypes>;
|
|
|
127
187
|
export declare function PageNav({ className, orientation, links, }: PageNavType): import("react/jsx-runtime").JSX.Element | null;
|
|
128
188
|
export declare namespace PageNav {
|
|
129
189
|
var propTypes: {
|
|
190
|
+
/** Optional CSS classes */
|
|
130
191
|
className: PropTypes.Requireable<string>;
|
|
192
|
+
/** Orientation: 'horizontal' | 'vertical' */
|
|
131
193
|
orientation: PropTypes.Requireable<string>;
|
|
194
|
+
/** Array of link objects */
|
|
132
195
|
links: PropTypes.Requireable<(PropTypes.InferProps<{
|
|
133
196
|
label: PropTypes.Validator<string>;
|
|
134
197
|
href: PropTypes.Validator<string>;
|
|
@@ -140,13 +203,17 @@ export type PageFooterType = InferProps<typeof PageFooter.propTypes>;
|
|
|
140
203
|
export declare function PageFooter({ className, text, links, children, }: PageFooterType): import("react/jsx-runtime").JSX.Element | null;
|
|
141
204
|
export declare namespace PageFooter {
|
|
142
205
|
var propTypes: {
|
|
206
|
+
/** Optional CSS classes */
|
|
143
207
|
className: PropTypes.Requireable<string>;
|
|
208
|
+
/** Footer text */
|
|
144
209
|
text: PropTypes.Requireable<string>;
|
|
210
|
+
/** Footer links */
|
|
145
211
|
links: PropTypes.Requireable<(PropTypes.InferProps<{
|
|
146
212
|
label: PropTypes.Validator<string>;
|
|
147
213
|
href: PropTypes.Validator<string>;
|
|
148
214
|
target: PropTypes.Requireable<string>;
|
|
149
215
|
}> | null | undefined)[]>;
|
|
216
|
+
/** Child nodes */
|
|
150
217
|
children: PropTypes.Requireable<PropTypes.ReactNodeLike>;
|
|
151
218
|
};
|
|
152
219
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"semantic.d.ts","sourceRoot":"","sources":["../../../../src/components/general/semantic.tsx"],"names":[],"mappings":"AAGA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAGnD,OAAO,+BAA+B,CAAC;AACvC,OAAO,iBAAiB,CAAC;AAQzB,eAAO,MAAM,WAAW,mCAAoC,CAAC;AAC7D,eAAO,MAAM,cAAc,kEAAmE,CAAC;AAC/F,eAAO,MAAM,kBAAkB,gDAAiD,CAAC;AACjF,eAAO,MAAM,cAAc,6DAA8D,CAAC;AAC1F,eAAO,MAAM,SAAS,6CAA8C,CAAC;AACrE,eAAO,MAAM,oBAAoB,sFAAuF,CAAC;AACzH,eAAO,MAAM,gBAAgB,4DAA6D,CAAC;
|
|
1
|
+
{"version":3,"file":"semantic.d.ts","sourceRoot":"","sources":["../../../../src/components/general/semantic.tsx"],"names":[],"mappings":"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"}
|
|
@@ -7,16 +7,27 @@ export type SidePanelType = InferProps<typeof SidePanel.propTypes>;
|
|
|
7
7
|
declare function SidePanel({ isOpen, onClose, onToggle, position, width, showOverlay, showTab, tabIcon, tabLabel, children, className }: SidePanelType): React.ReactPortal | null;
|
|
8
8
|
declare namespace SidePanel {
|
|
9
9
|
var propTypes: {
|
|
10
|
+
/** Whether the panel is open (controls visible state). */
|
|
10
11
|
isOpen: PropTypes.Validator<boolean>;
|
|
12
|
+
/** Function called to request closing the panel. */
|
|
11
13
|
onClose: PropTypes.Validator<(...args: any[]) => any>;
|
|
14
|
+
/** Optional toggle callback to open/close the panel. */
|
|
12
15
|
onToggle: PropTypes.Requireable<(...args: any[]) => any>;
|
|
16
|
+
/** Position of the panel on the screen ('left' or 'right'). */
|
|
13
17
|
position: PropTypes.Requireable<"left" | "right">;
|
|
18
|
+
/** CSS width value for the panel (e.g., '300px'). */
|
|
14
19
|
width: PropTypes.Requireable<string>;
|
|
20
|
+
/** When true an overlay is shown and clicking it closes the panel. */
|
|
15
21
|
showOverlay: PropTypes.Requireable<boolean>;
|
|
22
|
+
/** Whether to render a fixed tab toggle for the panel. */
|
|
16
23
|
showTab: PropTypes.Requireable<boolean>;
|
|
24
|
+
/** Optional icon node shown inside the persistent tab. */
|
|
17
25
|
tabIcon: PropTypes.Requireable<PropTypes.ReactNodeLike>;
|
|
26
|
+
/** Optional label text for the tab toggle. */
|
|
18
27
|
tabLabel: PropTypes.Requireable<string>;
|
|
28
|
+
/** Panel content as React children. */
|
|
19
29
|
children: PropTypes.Requireable<PropTypes.ReactNodeLike>;
|
|
30
|
+
/** Extra CSS class names to apply to the component. */
|
|
20
31
|
className: PropTypes.Requireable<string>;
|
|
21
32
|
};
|
|
22
33
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"sidepanel.d.ts","sourceRoot":"","sources":["../../../../src/components/general/sidepanel.tsx"],"names":[],"mappings":"AAGA,OAAO,KAAsC,MAAM,OAAO,CAAC;AAE3D,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AACnD,OAAO,iBAAiB,CAAC;AAGzB,eAAO,MAAM,SAAS,4BAA6B,CAAC;AAGpD,MAAM,MAAM,YAAY,GAAG,OAAO,SAAS,CAAC,MAAM,CAAC,CAAC;
|
|
1
|
+
{"version":3,"file":"sidepanel.d.ts","sourceRoot":"","sources":["../../../../src/components/general/sidepanel.tsx"],"names":[],"mappings":"AAGA,OAAO,KAAsC,MAAM,OAAO,CAAC;AAE3D,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AACnD,OAAO,iBAAiB,CAAC;AAGzB,eAAO,MAAM,SAAS,4BAA6B,CAAC;AAGpD,MAAM,MAAM,YAAY,GAAG,OAAO,SAAS,CAAC,MAAM,CAAC,CAAC;AAyCpD,MAAM,MAAM,aAAa,GAAG,UAAU,CAAC,OAAO,SAAS,CAAC,SAAS,CAAC,CAAC;AACnE,iBAAwB,SAAS,CAAC,EACjC,MAAM,EACN,OAAO,EACP,QAAQ,EACR,QAAiB,EACjB,KAAe,EACf,WAAkB,EAClB,OAAe,EACf,OAAO,EACP,QAAQ,EACR,QAAQ,EACR,SAAc,EACd,EAAE,aAAa,4BA2Ff;kBAvGuB,SAAS;;QAxBjC,0DAA0D;;QAEzD,oDAAoD;;QAEpD,wDAAwD;;QAExD,+DAA+D;;QAE/D,qDAAqD;;QAErD,sEAAsE;;QAEtE,0DAA0D;;QAE1D,0DAA0D;;QAE1D,8CAA8C;;QAE9C,uCAAuC;;QAEvC,uDAAuD;;;;eAIhC,SAAS;AAyGjC,OAAO,EAAE,SAAS,EAAE,CAAC"}
|
|
@@ -92,12 +92,18 @@ export declare function createContentfulURLs(props: createContentfulURLsType): P
|
|
|
92
92
|
}[]>;
|
|
93
93
|
export declare namespace createContentfulURLs {
|
|
94
94
|
var propTypes: {
|
|
95
|
+
/** Contentful API properties */
|
|
95
96
|
apiProps: PropTypes.Validator<NonNullable<PropTypes.InferProps<{
|
|
97
|
+
/** Contentful base URL */
|
|
96
98
|
base_url: PropTypes.Validator<string>;
|
|
99
|
+
/** Contentful space id */
|
|
97
100
|
space_id: PropTypes.Validator<string>;
|
|
101
|
+
/** Contentful environment */
|
|
98
102
|
environment: PropTypes.Validator<string>;
|
|
103
|
+
/** Delivery API token */
|
|
99
104
|
delivery_access_token: PropTypes.Validator<string>;
|
|
100
105
|
}>>>;
|
|
106
|
+
/** Origin used to build absolute URLs */
|
|
101
107
|
origin: PropTypes.Validator<string>;
|
|
102
108
|
};
|
|
103
109
|
}
|
|
@@ -115,12 +121,18 @@ export declare function createContentfulPageBuilderURLs(props: createContentfulP
|
|
|
115
121
|
}[]>;
|
|
116
122
|
export declare namespace createContentfulPageBuilderURLs {
|
|
117
123
|
var propTypes: {
|
|
124
|
+
/** Contentful API properties */
|
|
118
125
|
apiProps: PropTypes.Validator<NonNullable<PropTypes.InferProps<{
|
|
126
|
+
/** Contentful base URL */
|
|
119
127
|
base_url: PropTypes.Validator<string>;
|
|
128
|
+
/** Contentful space id */
|
|
120
129
|
space_id: PropTypes.Validator<string>;
|
|
130
|
+
/** Contentful environment */
|
|
121
131
|
environment: PropTypes.Validator<string>;
|
|
132
|
+
/** Delivery API token */
|
|
122
133
|
delivery_access_token: PropTypes.Validator<string>;
|
|
123
134
|
}>>>;
|
|
135
|
+
/** Origin used to build absolute URLs */
|
|
124
136
|
origin: PropTypes.Validator<string>;
|
|
125
137
|
};
|
|
126
138
|
}
|
|
@@ -128,13 +140,20 @@ export type createContentfulImageURLsType = InferProps<typeof createContentfulIm
|
|
|
128
140
|
export declare function createContentfulImageURLs(props: createContentfulImageURLsType): Promise<SitemapEntry[]>;
|
|
129
141
|
export declare namespace createContentfulImageURLs {
|
|
130
142
|
var propTypes: {
|
|
143
|
+
/** Contentful API properties */
|
|
131
144
|
apiProps: PropTypes.Validator<NonNullable<PropTypes.InferProps<{
|
|
145
|
+
/** Optional proxy URL */
|
|
132
146
|
proxyURL: PropTypes.Requireable<string>;
|
|
147
|
+
/** Contentful base URL */
|
|
133
148
|
base_url: PropTypes.Validator<string>;
|
|
149
|
+
/** Contentful space id */
|
|
134
150
|
space_id: PropTypes.Validator<string>;
|
|
151
|
+
/** Contentful environment */
|
|
135
152
|
environment: PropTypes.Validator<string>;
|
|
153
|
+
/** Access token to read assets */
|
|
136
154
|
access_token: PropTypes.Validator<string>;
|
|
137
155
|
}>>>;
|
|
156
|
+
/** Origin used to convert relative URLs to absolute */
|
|
138
157
|
origin: PropTypes.Validator<string>;
|
|
139
158
|
};
|
|
140
159
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"sitemap.d.ts","sourceRoot":"","sources":["../../../../src/components/general/sitemap.ts"],"names":[],"mappings":"AAAA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AACnD,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,MAAM,CAAC;AAS1C,MAAM,MAAM,YAAY,GAAG,aAAa,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC;AAWzD,MAAM,MAAM,aAAa,GAAG;IAC3B,cAAc,CAAC,EAAE,OAAO,CAAC;IACzB,mBAAmB,CAAC,EAAE,OAAO,CAAC;IAC9B,wBAAwB,CAAC,EAAE,OAAO,CAAC;IACnC,eAAe,CAAC,EAAE,OAAO,CAAC;IAC1B,uBAAuB,CAAC,EAAE,OAAO,CAAC;IAClC,oBAAoB,CAAC,EAAE,OAAO,CAAC;IAC/B,yBAAyB,CAAC,EAAE,OAAO,CAAC;IACpC,qBAAqB,CAAC,EAAE,OAAO,CAAC;IAChC,kBAAkB,CAAC,EAAE,OAAO,CAAC;IAC7B,SAAS,CAAC,EAAE;QAAE,IAAI,CAAC,EAAE,MAAM,CAAA;KAAE,CAAC;IAC9B,SAAS,CAAC,EAAE;QAAE,IAAI,CAAC,EAAE,MAAM,CAAA;KAAE,CAAC;IAC9B,UAAU,CAAC,EAAE,GAAG,CAAC;IACjB,MAAM,CAAC,EAAE,GAAG,CAAC;CACb,CAAC;AAKF;;;GAGG;AACH,wBAAgB,oBAAoB,CAAC,WAAW,CAAC,EAAE;IAAE,GAAG,EAAE,CAAC,CAAC,EAAE,MAAM,KAAK,MAAM,GAAG,IAAI,CAAA;CAAE,GAAG,SAAS,EAAE,cAAc,SAA0B,UAU7I;AAED,MAAM,MAAM,UAAU,GAAG,MAAM,GAAG,OAAO,GAAG,MAAM,CAAC;AAEnD;;;;;GAKG;AACH,wBAAgB,wBAAwB,CAAC,WAAW,CAAC,EAAE;IAAE,GAAG,EAAE,CAAC,CAAC,EAAE,MAAM,KAAK,MAAM,GAAG,IAAI,CAAA;CAAE,GAAG,SAAS,EAAE,cAAc,CAAC,EAAE,MAAM,GAAG,UAAU,CAK7I;AAED;;;;GAIG;AACH,wBAAsB,wBAAwB,CAAC,cAAc,SAA0B,mBAatF;AAID,wBAAgB,aAAa,CAAC,MAAM,EAAE,GAAG,SAGxC;AAID,wBAAgB,oBAAoB,CAAC,OAAO,EAAE,YAAY,EAAE,UAU3D;AAID;;;GAGG;AACH,wBAAsB,eAAe,CAAC,GAAG,GAAE,aAAkB,EAAE,WAAW,CAAC,EAAE,MAAM,GAAG,OAAO,CAAC,aAAa,CAAC,OAAO,CAAC,CAmEnH;AAKD,wBAAsB,cAAc,CAAC,QAAQ,EAAE;IAAE,IAAI,EAAE,MAAM,CAAA;CAAE,EAAE,EAAE,MAAM,EAAE,MAAM;;;;;;
|
|
1
|
+
{"version":3,"file":"sitemap.d.ts","sourceRoot":"","sources":["../../../../src/components/general/sitemap.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,18 +1,15 @@
|
|
|
1
1
|
import PropTypes, { InferProps } from 'prop-types';
|
|
2
2
|
import './skeleton-loading.css';
|
|
3
|
-
export type SkeletonLoadingProps = {
|
|
4
|
-
heroHeight?: number;
|
|
5
|
-
cardCount?: number;
|
|
6
|
-
className?: string;
|
|
7
|
-
};
|
|
8
3
|
export type SkeletonLoadingType = InferProps<typeof SkeletonLoading.propTypes>;
|
|
9
4
|
export declare function SkeletonLoading({ heroHeight, cardCount, className }: SkeletonLoadingType): import("react/jsx-runtime").JSX.Element;
|
|
10
5
|
export declare namespace SkeletonLoading {
|
|
11
6
|
var propTypes: {
|
|
7
|
+
/** Hero skeleton height (px) */
|
|
12
8
|
heroHeight: PropTypes.Requireable<number>;
|
|
9
|
+
/** Number of placeholder cards to render */
|
|
13
10
|
cardCount: PropTypes.Requireable<number>;
|
|
11
|
+
/** Extra CSS classes for the root element */
|
|
14
12
|
className: PropTypes.Requireable<string>;
|
|
15
13
|
};
|
|
16
14
|
}
|
|
17
|
-
export default SkeletonLoading;
|
|
18
15
|
//# sourceMappingURL=skeleton-loading.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"skeleton-loading.d.ts","sourceRoot":"","sources":["../../../../src/components/general/skeleton-loading.tsx"],"names":[],"mappings":"AAGA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAGnD,OAAO,wBAAwB,CAAC;
|
|
1
|
+
{"version":3,"file":"skeleton-loading.d.ts","sourceRoot":"","sources":["../../../../src/components/general/skeleton-loading.tsx"],"names":[],"mappings":"AAGA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAGnD,OAAO,wBAAwB,CAAC;AAiBhC,MAAM,MAAM,mBAAmB,GAAG,UAAU,CAAC,OAAO,eAAe,CAAC,SAAS,CAAC,CAAC;AAC/E,wBAAgB,eAAe,CAAC,EAAE,UAAgB,EAAE,SAAa,EAAE,SAAc,EAAE,EAAE,mBAAmB,2CAuCvG;yBAvCe,eAAe;;QAR/B,gCAAgC;;QAE/B,4CAA4C;;QAE5C,6CAA6C"}
|
|
@@ -4,10 +4,15 @@ export type SkeletonType = InferProps<typeof Skeleton.propTypes>;
|
|
|
4
4
|
export declare function Skeleton({ variant, lines, width, height, animated, }: SkeletonType): import("react/jsx-runtime").JSX.Element;
|
|
5
5
|
export declare namespace Skeleton {
|
|
6
6
|
var propTypes: {
|
|
7
|
+
/** Visual variant to render: 'text' (lines), 'rect' (rectangle), or 'avatar' (circle). */
|
|
7
8
|
variant: PropTypes.Requireable<string>;
|
|
9
|
+
/** Number of text lines to render when variant is 'text'. */
|
|
8
10
|
lines: PropTypes.Requireable<number>;
|
|
11
|
+
/** Width for text lines (percentage number) or explicit CSS/string width for rect/avatar. */
|
|
9
12
|
width: PropTypes.Requireable<NonNullable<string | number | null | undefined>>;
|
|
13
|
+
/** Height in pixels or CSS string for rect/avatar; ignored for text lines. */
|
|
10
14
|
height: PropTypes.Requireable<NonNullable<string | number | null | undefined>>;
|
|
15
|
+
/** Whether the skeleton should animate (respects prefers-reduced-motion). */
|
|
11
16
|
animated: PropTypes.Requireable<boolean>;
|
|
12
17
|
};
|
|
13
18
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"skeleton.d.ts","sourceRoot":"","sources":["../../../../src/components/general/skeleton.tsx"],"names":[],"mappings":"AACA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AACnD,OAAO,gBAAgB,CAAC;
|
|
1
|
+
{"version":3,"file":"skeleton.d.ts","sourceRoot":"","sources":["../../../../src/components/general/skeleton.tsx"],"names":[],"mappings":"AACA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AACnD,OAAO,gBAAgB,CAAC;AAyBxB,MAAM,MAAM,YAAY,GAAG,UAAU,CAAC,OAAO,QAAQ,CAAC,SAAS,CAAC,CAAC;AACjE,wBAAgB,QAAQ,CAAC,EACxB,OAAgB,EAChB,KAAS,EACT,KAAK,EACL,MAAM,EACN,QAAe,GACf,EAAE,YAAY,2CA8Bd;yBApCe,QAAQ;;QAZxB,0FAA0F;;QAEzF,6DAA6D;;QAE7D,6FAA6F;;QAE7F,8EAA8E;;QAE9E,6EAA6E"}
|
|
@@ -4,27 +4,49 @@ export type SmartImageType = InferProps<typeof SmartImage.propTypes> & React.Img
|
|
|
4
4
|
export declare function SmartImage(props: SmartImageType): import("react/jsx-runtime").JSX.Element;
|
|
5
5
|
export declare namespace SmartImage {
|
|
6
6
|
var propTypes: {
|
|
7
|
+
/** Cloudinary environment key (product environment) for URL generation. */
|
|
7
8
|
cloudinaryEnv: PropTypes.Requireable<string>;
|
|
9
|
+
/** Cloudinary domain override. */
|
|
8
10
|
cloudinaryDomain: PropTypes.Requireable<string>;
|
|
11
|
+
/** Optional Cloudinary transform presets. */
|
|
9
12
|
cloudinaryTransforms: PropTypes.Requireable<string>;
|
|
13
|
+
/** Image source URL or path. */
|
|
10
14
|
src: PropTypes.Validator<string>;
|
|
15
|
+
/** Accessible alt text for the image. */
|
|
11
16
|
alt: PropTypes.Validator<string>;
|
|
17
|
+
/** Preferred width in pixels (used to build srcset when available). */
|
|
12
18
|
width: PropTypes.Requireable<number>;
|
|
19
|
+
/** Preferred height in pixels. */
|
|
13
20
|
height: PropTypes.Requireable<number>;
|
|
21
|
+
/** Hint that the image is above the fold and should be prioritized for loading. */
|
|
14
22
|
aboveFold: PropTypes.Requireable<boolean>;
|
|
23
|
+
/** Loading hint: 'lazy' or 'eager'. */
|
|
15
24
|
loading: PropTypes.Requireable<string>;
|
|
25
|
+
/** When true suggests the image should be preloaded. */
|
|
16
26
|
preload: PropTypes.Requireable<boolean>;
|
|
27
|
+
/** Decoding hint for the browser. */
|
|
17
28
|
decoding: PropTypes.Requireable<string>;
|
|
29
|
+
/** Fetch priority hint for modern browsers. */
|
|
18
30
|
fetchPriority: PropTypes.Requireable<string>;
|
|
31
|
+
/** Sizes attribute override for responsive images. */
|
|
19
32
|
sizes: PropTypes.Requireable<string>;
|
|
33
|
+
/** Srcset override to pass explicit srcset values. */
|
|
20
34
|
srcSet: PropTypes.Requireable<string>;
|
|
35
|
+
/** Additional CSS class names for the image element. */
|
|
21
36
|
className: PropTypes.Requireable<string>;
|
|
37
|
+
/** Inline style object for the image element. */
|
|
22
38
|
style: PropTypes.Requireable<object>;
|
|
39
|
+
/** DOM id for the image. */
|
|
23
40
|
id: PropTypes.Requireable<string>;
|
|
41
|
+
/** Name used to derive a stable id or identification. */
|
|
24
42
|
name: PropTypes.Requireable<string>;
|
|
43
|
+
/** Optional title attribute for the image. */
|
|
25
44
|
title: PropTypes.Requireable<string>;
|
|
45
|
+
/** Quality hint (0-100) used for Cloudinary URL generation. */
|
|
26
46
|
quality: PropTypes.Requireable<number>;
|
|
47
|
+
/** Placeholder behavior for Next.js Image ('blur' for blurred placeholder). */
|
|
27
48
|
placeholder: PropTypes.Requireable<string>;
|
|
49
|
+
/** Variant to force: 'cloudinary' | 'nextjs' | 'img'. */
|
|
28
50
|
variant: PropTypes.Requireable<string>;
|
|
29
51
|
};
|
|
30
52
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"smartimage.d.ts","sourceRoot":"","sources":["../../../../src/components/general/smartimage.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAmB,MAAM,OAAO,CAAC;AACxC,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;
|
|
1
|
+
{"version":3,"file":"smartimage.d.ts","sourceRoot":"","sources":["../../../../src/components/general/smartimage.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAmB,MAAM,OAAO,CAAC;AACxC,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AA0HnD,MAAM,MAAM,cAAc,GAAG,UAAU,CAAC,OAAO,UAAU,CAAC,SAAS,CAAC,GAAG,KAAK,CAAC,iBAAiB,CAAC,gBAAgB,CAAC,CAAC;AACjH,wBAAgB,UAAU,CAAC,KAAK,EAAE,cAAc,2CA2I/C;yBA3Ie,UAAU;;QA/C1B,2EAA2E;;QAE1E,kCAAkC;;QAElC,6CAA6C;;QAG7C,gCAAgC;;QAEhC,yCAAyC;;QAEzC,uEAAuE;;QAEvE,kCAAkC;;QAElC,mFAAmF;;QAEnF,uCAAuC;;QAEvC,wDAAwD;;QAExD,qCAAqC;;QAErC,+CAA+C;;QAE/C,sDAAsD;;QAEtD,sDAAsD;;QAEtD,wDAAwD;;QAExD,iDAAiD;;QAEjD,4BAA4B;;QAE5B,yDAAyD;;QAEzD,8CAA8C;;QAE9C,+DAA+D;;QAE/D,+EAA+E;;QAE/E,yDAAyD"}
|
|
@@ -4,48 +4,26 @@ export type SplitScrollType = InferProps<typeof SplitScroll.propTypes>;
|
|
|
4
4
|
export declare function SplitScroll({ children }: SplitScrollType): import("react/jsx-runtime").JSX.Element;
|
|
5
5
|
export declare namespace SplitScroll {
|
|
6
6
|
var propTypes: {
|
|
7
|
+
/** Collection of `SplitScrollSection` children used to build the layout. */
|
|
7
8
|
children: PropTypes.Validator<NonNullable<PropTypes.ReactNodeLike>>;
|
|
8
9
|
};
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
10
|
+
}
|
|
11
|
+
export type SplitScrollSectionType = InferProps<typeof SplitScrollSection.propTypes>;
|
|
12
|
+
export declare function SplitScrollSection({ img, imgAlt, imgShape, title, subtitle, url, buttonText, children, aboveFold, isActive, sectionIndex, totalSections, }: SplitScrollSectionType): import("react/jsx-runtime").JSX.Element;
|
|
13
|
+
export declare namespace SplitScrollSection {
|
|
14
|
+
var propTypes: {
|
|
15
|
+
img: PropTypes.Validator<string>;
|
|
16
|
+
imgAlt: PropTypes.Requireable<string>;
|
|
17
|
+
imgShape: PropTypes.Requireable<"round" | "square" | "bevel" | "squircle">;
|
|
18
|
+
title: PropTypes.Requireable<string>;
|
|
19
|
+
subtitle: PropTypes.Requireable<string>;
|
|
20
|
+
url: PropTypes.Requireable<string>;
|
|
21
|
+
buttonText: PropTypes.Requireable<string>;
|
|
22
|
+
children: PropTypes.Requireable<PropTypes.ReactNodeLike>;
|
|
23
|
+
aboveFold: PropTypes.Requireable<boolean>;
|
|
24
|
+
isActive: PropTypes.Requireable<boolean>;
|
|
25
|
+
sectionIndex: PropTypes.Requireable<number>;
|
|
26
|
+
totalSections: PropTypes.Requireable<number>;
|
|
25
27
|
};
|
|
26
28
|
}
|
|
27
|
-
/**
|
|
28
|
-
* SplitScroll.Section - Individual section within a SplitScroll
|
|
29
|
-
*
|
|
30
|
-
* A facade for the Callout component with variant="split" preset.
|
|
31
|
-
* Automatically configured for the splitscroll layout.
|
|
32
|
-
*/
|
|
33
|
-
declare const splitscrollSectionPropTypes: {
|
|
34
|
-
img: PropTypes.Validator<string>;
|
|
35
|
-
imgAlt: PropTypes.Requireable<string>;
|
|
36
|
-
imgShape: PropTypes.Requireable<"round" | "square" | "bevel" | "squircle">;
|
|
37
|
-
title: PropTypes.Requireable<string>;
|
|
38
|
-
subtitle: PropTypes.Requireable<string>;
|
|
39
|
-
url: PropTypes.Requireable<string>;
|
|
40
|
-
buttonText: PropTypes.Requireable<string>;
|
|
41
|
-
children: PropTypes.Requireable<PropTypes.ReactNodeLike>;
|
|
42
|
-
aboveFold: PropTypes.Requireable<boolean>;
|
|
43
|
-
isActive: PropTypes.Requireable<boolean>;
|
|
44
|
-
sectionIndex: PropTypes.Requireable<number>;
|
|
45
|
-
totalSections: PropTypes.Requireable<number>;
|
|
46
|
-
};
|
|
47
|
-
type SplitScrollSectionProps = InferProps<typeof splitscrollSectionPropTypes> & {
|
|
48
|
-
imgShape?: 'square' | 'bevel' | 'squircle' | 'round';
|
|
49
|
-
};
|
|
50
|
-
export {};
|
|
51
29
|
//# sourceMappingURL=splitscroll.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"splitscroll.d.ts","sourceRoot":"","sources":["../../../../src/components/general/splitscroll.tsx"],"names":[],"mappings":"AAGA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAGnD,OAAO,mBAAmB,CAAC;
|
|
1
|
+
{"version":3,"file":"splitscroll.d.ts","sourceRoot":"","sources":["../../../../src/components/general/splitscroll.tsx"],"names":[],"mappings":"AAGA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAGnD,OAAO,mBAAmB,CAAC;AA+B3B,MAAM,MAAM,eAAe,GAAG,UAAU,CAAC,OAAO,WAAW,CAAC,SAAS,CAAC,CAAC;AACvE,wBAAgB,WAAW,CAAC,EAAE,QAAQ,EAAE,EAAE,eAAe,2CA0CxD;yBA1Ce,WAAW;;QAJ3B,4EAA4E;;;;AA2E5E,MAAM,MAAM,sBAAsB,GAAG,UAAU,CAAC,OAAO,kBAAkB,CAAC,SAAS,CAAC,CAAC;AACrF,wBAAgB,kBAAkB,CAAC,EAClC,GAAG,EACH,MAAM,EACN,QAAmB,EACnB,KAAK,EACL,QAAQ,EACR,GAAG,EACH,UAAU,EACV,QAAQ,EACR,SAAS,EACT,QAAQ,EACR,YAAY,EACZ,aAAa,GACb,EAAE,sBAAsB,2CAyBxB;yBAtCe,kBAAkB"}
|
|
@@ -3,6 +3,7 @@ export type StyleGuideUIType = InferProps<typeof StyleGuideUI.propTypes>;
|
|
|
3
3
|
export declare function StyleGuideUI(props: StyleGuideUIType): import("react/jsx-runtime").JSX.Element;
|
|
4
4
|
export declare namespace StyleGuideUI {
|
|
5
5
|
var propTypes: {
|
|
6
|
+
/** Array of route objects used to build example navigation and IA references. */
|
|
6
7
|
routes: PropTypes.Requireable<any[]>;
|
|
7
8
|
};
|
|
8
9
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"styleguide.d.ts","sourceRoot":"","sources":["../../../../src/components/general/styleguide.tsx"],"names":[],"mappings":"AAGA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;
|
|
1
|
+
{"version":3,"file":"styleguide.d.ts","sourceRoot":"","sources":["../../../../src/components/general/styleguide.tsx"],"names":[],"mappings":"AAGA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAenD,MAAM,MAAM,gBAAgB,GAAG,UAAU,CAAC,OAAO,YAAY,CAAC,SAAS,CAAC,CAAC;AACzE,wBAAgB,YAAY,CAAC,KAAK,EAAE,gBAAgB,2CAiEnD;yBAjEe,YAAY;;QAJ5B,iFAAiF"}
|
|
@@ -4,13 +4,17 @@ export type TabType = InferProps<typeof Tab.propTypes>;
|
|
|
4
4
|
export declare function Tab({ tabs, orientation, defaultActiveTab, onTabChange }: TabType): import("react/jsx-runtime").JSX.Element;
|
|
5
5
|
export declare namespace Tab {
|
|
6
6
|
var propTypes: {
|
|
7
|
+
/** Array of tabs to render, each should include id, label, and content. */
|
|
7
8
|
tabs: PropTypes.Validator<NonNullable<PropTypes.InferProps<{
|
|
8
9
|
id: PropTypes.Validator<string>;
|
|
9
10
|
label: PropTypes.Validator<string>;
|
|
10
11
|
content: PropTypes.Validator<NonNullable<PropTypes.ReactNodeLike>>;
|
|
11
12
|
}>>[]>;
|
|
13
|
+
/** Layout orientation for the tab headers. */
|
|
12
14
|
orientation: PropTypes.Requireable<string>;
|
|
15
|
+
/** Optional default active tab id. */
|
|
13
16
|
defaultActiveTab: PropTypes.Requireable<string>;
|
|
17
|
+
/** Optional change handler called with the new tab id. */
|
|
14
18
|
onTabChange: PropTypes.Requireable<(...args: any[]) => any>;
|
|
15
19
|
};
|
|
16
20
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"tab.d.ts","sourceRoot":"","sources":["../../../../src/components/general/tab.tsx"],"names":[],"mappings":"AAGA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AACnD,OAAO,WAAW,CAAC;
|
|
1
|
+
{"version":3,"file":"tab.d.ts","sourceRoot":"","sources":["../../../../src/components/general/tab.tsx"],"names":[],"mappings":"AAGA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AACnD,OAAO,WAAW,CAAC;AA2BnB,MAAM,MAAM,OAAO,GAAG,UAAU,CAAC,OAAO,GAAG,CAAC,SAAS,CAAC,CAAC;AACvD,wBAAgB,GAAG,CAAC,EACnB,IAAI,EACJ,WAAmB,EACnB,gBAAgB,EAChB,WAAW,EACX,EAAE,OAAO,2CAgCT;yBArCe,GAAG;;QAVnB,2EAA2E;;;;;;QAE1E,8CAA8C;;QAE9C,sCAAsC;;QAEtC,0DAA0D"}
|
|
@@ -4,9 +4,13 @@ export type TableType = InferProps<typeof Table.propTypes>;
|
|
|
4
4
|
export declare function Table(props: TableType): import("react/jsx-runtime").JSX.Element;
|
|
5
5
|
export declare namespace Table {
|
|
6
6
|
var propTypes: {
|
|
7
|
+
/** Array of row objects; object keys become table columns. */
|
|
7
8
|
data: PropTypes.Validator<any[]>;
|
|
9
|
+
/** DOM id used for sorting and header lookups. */
|
|
8
10
|
id: PropTypes.Validator<string>;
|
|
11
|
+
/** Enable clickable column headers for client-side sorting. */
|
|
9
12
|
sortable: PropTypes.Requireable<boolean>;
|
|
13
|
+
/** CSS color value used for alternate rows when zebra striping is desired. */
|
|
10
14
|
altRowColor: PropTypes.Requireable<string>;
|
|
11
15
|
};
|
|
12
16
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"table.d.ts","sourceRoot":"","sources":["../../../../src/components/general/table.tsx"],"names":[],"mappings":"AACA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAEnD,OAAO,aAAa,CAAC;
|
|
1
|
+
{"version":3,"file":"table.d.ts","sourceRoot":"","sources":["../../../../src/components/general/table.tsx"],"names":[],"mappings":"AACA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAEnD,OAAO,aAAa,CAAC;AA4BrB,MAAM,MAAM,SAAS,GAAG,UAAU,CAAC,OAAO,KAAK,CAAC,SAAS,CAAC,CAAC;AAC3D,wBAAgB,KAAK,CAAE,KAAK,EAAE,SAAS,2CA6HtC;yBA7He,KAAK;;QAVrB,8DAA8D;;QAE7D,kDAAkD;;QAElD,+DAA+D;;QAE/D,8EAA8E"}
|
|
@@ -7,13 +7,17 @@ export type TilesType = InferProps<typeof Tiles.propTypes>;
|
|
|
7
7
|
export declare function Tiles(props: TilesType): import("react/jsx-runtime").JSX.Element;
|
|
8
8
|
export declare namespace Tiles {
|
|
9
9
|
var propTypes: {
|
|
10
|
+
/** Array of card objects used to populate the tile grid (image, link, imageAlt, bodyText). */
|
|
10
11
|
cards: PropTypes.Validator<any[]>;
|
|
12
|
+
/** Number of rows to display in the grid (controls layout). */
|
|
11
13
|
rowCount: PropTypes.Requireable<number>;
|
|
14
|
+
/** Optional click handler for tile images; called with (event, imageUrl). */
|
|
12
15
|
imgClick: PropTypes.Requireable<(...args: any[]) => any>;
|
|
13
16
|
/**
|
|
14
17
|
* Optional visual variant. Allowed values are enumerated so consumers get
|
|
15
18
|
* a discoverable, typed API.
|
|
16
19
|
*/
|
|
20
|
+
/** Visual variant for tile rendering (e.g. 'caption' or 'overlay'). */
|
|
17
21
|
variant: PropTypes.Requireable<"caption" | "overlay">;
|
|
18
22
|
};
|
|
19
23
|
}
|
|
@@ -21,14 +25,21 @@ export type TileType = InferProps<typeof Tile.propTypes>;
|
|
|
21
25
|
declare function Tile(props: TileType): import("react/jsx-runtime").JSX.Element;
|
|
22
26
|
declare namespace Tile {
|
|
23
27
|
var propTypes: {
|
|
28
|
+
/** Zero-based index of the tile. */
|
|
24
29
|
index: PropTypes.Validator<number>;
|
|
30
|
+
/** Total number of tiles in this grid. */
|
|
25
31
|
cardLength: PropTypes.Validator<number>;
|
|
32
|
+
/** Optional href for this tile. */
|
|
26
33
|
link: PropTypes.Requireable<string>;
|
|
34
|
+
/** Image source URL to display (required). */
|
|
27
35
|
image: PropTypes.Validator<string>;
|
|
36
|
+
/** Alt text for the image; also used as caption fallback. */
|
|
28
37
|
imageAlt: PropTypes.Requireable<string>;
|
|
38
|
+
/** Optional caption or descriptive body text shown with the tile. */
|
|
29
39
|
bodyText: PropTypes.Requireable<string>;
|
|
40
|
+
/** Click handler invoked when the tile image is clicked; receives (event, imageUrl). */
|
|
30
41
|
imgClick: PropTypes.Requireable<(...args: any[]) => any>;
|
|
31
|
-
/** 'caption' -
|
|
42
|
+
/** 'caption' - caption beneath image; 'overlay' - overlay displayed on hover. */
|
|
32
43
|
variant: PropTypes.Requireable<"caption" | "overlay">;
|
|
33
44
|
};
|
|
34
45
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"tiles.d.ts","sourceRoot":"","sources":["../../../../src/components/general/tiles.tsx"],"names":[],"mappings":"AAGA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAKnD,OAAO,+BAA+B,CAAC;AACvC,OAAO,aAAa,CAAC;AAErB,eAAO,MAAM,aAAa,iCAAoC,CAAC;AAC/D,MAAM,MAAM,gBAAgB,GAAG,OAAO,aAAa,CAAC,MAAM,CAAC,GAAG,SAAS,CAAC;
|
|
1
|
+
{"version":3,"file":"tiles.d.ts","sourceRoot":"","sources":["../../../../src/components/general/tiles.tsx"],"names":[],"mappings":"AAGA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAKnD,OAAO,+BAA+B,CAAC;AACvC,OAAO,aAAa,CAAC;AAErB,eAAO,MAAM,aAAa,iCAAoC,CAAC;AAC/D,MAAM,MAAM,gBAAgB,GAAG,OAAO,aAAa,CAAC,MAAM,CAAC,GAAG,SAAS,CAAC;AAuBxE,MAAM,MAAM,SAAS,GAAG,UAAU,CAAC,OAAO,KAAK,CAAC,SAAS,CAAC,CAAC;AAC3D,wBAAgB,KAAK,CAAC,KAAK,EAAE,SAAS,2CA4BrC;yBA5Be,KAAK;;QAdrB,8FAA8F;;QAE7F,+DAA+D;;QAE/D,6EAA6E;;QAE7E;;;WAGG;QACH,uEAAuE;;;;AAmExE,MAAM,MAAM,QAAQ,GAAG,UAAU,CAAC,OAAO,IAAI,CAAC,SAAS,CAAC,CAAC;AACzD,iBAAS,IAAI,CAAE,KAAK,EAAE,QAAQ,2CA2B7B;kBA3BQ,IAAI;;QAlBb,oCAAoC;;QAEnC,0CAA0C;;QAE1C,mCAAmC;;QAEnC,8CAA8C;;QAE9C,6DAA6D;;QAE7D,qEAAqE;;QAErE,wFAAwF;;QAExF,iFAAiF"}
|