@pixelated-tech/components 3.11.8 → 3.12.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- 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.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/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.css +5 -5
- package/dist/components/general/skeleton-loading.js +11 -2
- 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/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/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 +13 -1
- 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/config/pixelated.config.json.enc +1 -1
- package/dist/index.js +1 -0
- package/dist/index.server.js +1 -0
- package/dist/scripts/pixelated-eslint-plugin.js +56 -0
- package/dist/scripts/release.sh +12 -21
- 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-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/config/config.server.d.ts +2 -0
- package/dist/types/components/config/config.server.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/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/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 +12 -0
- package/dist/types/components/shoppingcart/ebay.functions.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/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/index.d.ts +1 -0
- package/dist/types/index.server.d.ts +1 -0
- package/dist/types/scripts/pixelated-eslint-plugin.d.ts +18 -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/storybook-docgen.test.d.ts +2 -0
- package/dist/types/tests/storybook-docgen.test.d.ts.map +1 -0
- package/package.json +12 -9
|
@@ -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"}
|
|
@@ -5,6 +5,7 @@ export type TimelineType = InferProps<typeof Timeline.propTypes>;
|
|
|
5
5
|
export declare function Timeline(props: TimelineType): import("react/jsx-runtime").JSX.Element;
|
|
6
6
|
export declare namespace Timeline {
|
|
7
7
|
var propTypes: {
|
|
8
|
+
/** Array of timeline item objects with title, content, image and direction. */
|
|
8
9
|
timelineData: PropTypes.Validator<(PropTypes.InferProps<{
|
|
9
10
|
title: PropTypes.Validator<string>;
|
|
10
11
|
content: PropTypes.Requireable<string>;
|
|
@@ -19,9 +20,13 @@ export type TimelineItemType = InferProps<typeof TimelineItem.propTypes> & {
|
|
|
19
20
|
declare function TimelineItem(props: TimelineItemType): import("react/jsx-runtime").JSX.Element;
|
|
20
21
|
declare namespace TimelineItem {
|
|
21
22
|
var propTypes: {
|
|
23
|
+
/** Item title */
|
|
22
24
|
title: PropTypes.Validator<string>;
|
|
25
|
+
/** Item content or description */
|
|
23
26
|
content: PropTypes.Requireable<string>;
|
|
27
|
+
/** Optional image URL for the item */
|
|
24
28
|
image: PropTypes.Requireable<string>;
|
|
29
|
+
/** Placement direction ('left'|'right') */
|
|
25
30
|
direction: PropTypes.Validator<string>;
|
|
26
31
|
};
|
|
27
32
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"timeline.d.ts","sourceRoot":"","sources":["../../../../src/components/general/timeline.tsx"],"names":[],"mappings":"AAIA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAGnD,OAAO,+BAA+B,CAAC;AACvC,OAAO,gBAAgB,CAAC;
|
|
1
|
+
{"version":3,"file":"timeline.d.ts","sourceRoot":"","sources":["../../../../src/components/general/timeline.tsx"],"names":[],"mappings":"AAIA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAGnD,OAAO,+BAA+B,CAAC;AACvC,OAAO,gBAAgB,CAAC;AAwBxB,MAAM,MAAM,YAAY,GAAG,UAAU,CAAC,OAAO,QAAQ,CAAC,SAAS,CAAC,CAAC;AACjE,wBAAgB,QAAQ,CAAC,KAAK,EAAE,YAAY,2CAiB3C;yBAjBe,QAAQ;;QAXxB,+EAA+E;;;;;;;;;AAiD/E,MAAM,MAAM,gBAAgB,GAAG,UAAU,CAAC,OAAO,YAAY,CAAC,SAAS,CAAC,GAAG;IAAE,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAA;CAAE,CAAC;AACtG,iBAAwB,YAAY,CAAC,KAAK,EAAE,gBAAgB,2CAkB3D;kBAlBuB,YAAY;;QAXpC,iBAAiB;;QAEhB,kCAAkC;;QAElC,sCAAsC;;QAEtC,2CAA2C;;;;eAKpB,YAAY"}
|
|
@@ -3,8 +3,11 @@ export type CalendlyType = InferProps<typeof Calendly.propTypes>;
|
|
|
3
3
|
export declare function Calendly({ url, width, height }: CalendlyType): import("react/jsx-runtime").JSX.Element;
|
|
4
4
|
export declare namespace Calendly {
|
|
5
5
|
var propTypes: {
|
|
6
|
+
/** Calendly widget URL */
|
|
6
7
|
url: PropTypes.Validator<string>;
|
|
8
|
+
/** Minimum width for the widget container */
|
|
7
9
|
width: PropTypes.Validator<string>;
|
|
10
|
+
/** Height for the widget container */
|
|
8
11
|
height: PropTypes.Validator<string>;
|
|
9
12
|
};
|
|
10
13
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"calendly.d.ts","sourceRoot":"","sources":["../../../../src/components/integrations/calendly.tsx"],"names":[],"mappings":"AACA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;
|
|
1
|
+
{"version":3,"file":"calendly.d.ts","sourceRoot":"","sources":["../../../../src/components/integrations/calendly.tsx"],"names":[],"mappings":"AACA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAiBnD,MAAM,MAAM,YAAY,GAAG,UAAU,CAAC,OAAO,QAAQ,CAAC,SAAS,CAAC,CAAC;AACjE,wBAAgB,QAAQ,CAAC,EAAE,GAAG,EAAE,KAAK,EAAE,MAAM,EAAE,EAAE,YAAY,2CAmB5D;yBAnBe,QAAQ;;QARxB,0BAA0B;;QAEzB,6CAA6C;;QAE7C,sCAAsC"}
|
|
@@ -11,7 +11,9 @@ export type getCloudinaryRemoteFetchURLType = InferProps<typeof getCloudinaryRem
|
|
|
11
11
|
export declare function getCloudinaryRemoteFetchURL(props: getCloudinaryRemoteFetchURLType): string;
|
|
12
12
|
export declare namespace getCloudinaryRemoteFetchURL {
|
|
13
13
|
var propTypes: {
|
|
14
|
+
/** Image URL or path to transform via Cloudinary */
|
|
14
15
|
url: PropTypes.Validator<string>;
|
|
16
|
+
/** Cloudinary product environment (cloud name) */
|
|
15
17
|
product_env: PropTypes.Validator<string>;
|
|
16
18
|
};
|
|
17
19
|
}
|
|
@@ -20,7 +22,9 @@ export type loadAllImagesFromCloudinaryType = InferProps<typeof loadAllImagesFro
|
|
|
20
22
|
export declare function loadAllImagesFromCloudinary(props: loadAllImagesFromCloudinaryType): void;
|
|
21
23
|
export declare namespace loadAllImagesFromCloudinary {
|
|
22
24
|
var propTypes: {
|
|
25
|
+
/** Optional origin string to detect local dev */
|
|
23
26
|
origin: PropTypes.Requireable<string>;
|
|
27
|
+
/** Cloudinary product environment (cloud name) */
|
|
24
28
|
product_env: PropTypes.Validator<string>;
|
|
25
29
|
};
|
|
26
30
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"cloudinary.d.ts","sourceRoot":"","sources":["../../../../src/components/integrations/cloudinary.ts"],"names":[],"mappings":"AAAA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAiBnD,wBAAgB,kBAAkB,CAAC,MAAM,EAAE;IAAE,GAAG,EAAE,MAAM,CAAC;IAAC,UAAU,EAAE,MAAM,GAAG,IAAI,GAAG,SAAS,CAAC;IAAC,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAAC,OAAO,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAAC,KAAK,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAAC,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;CAAE,UA0CxM;
|
|
1
|
+
{"version":3,"file":"cloudinary.d.ts","sourceRoot":"","sources":["../../../../src/components/integrations/cloudinary.ts"],"names":[],"mappings":"AAAA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAiBnD,wBAAgB,kBAAkB,CAAC,MAAM,EAAE;IAAE,GAAG,EAAE,MAAM,CAAC;IAAC,UAAU,EAAE,MAAM,GAAG,IAAI,GAAG,SAAS,CAAC;IAAC,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAAC,OAAO,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAAC,KAAK,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAAC,UAAU,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;CAAE,UA0CxM;AAgBD,MAAM,MAAM,+BAA+B,GAAG,UAAU,CAAC,OAAO,2BAA2B,CAAC,SAAS,CAAC,CAAC;AACvG,wBAAgB,2BAA2B,CAAC,KAAK,EAAE,+BAA+B,UAKjF;yBALe,2BAA2B;;QAN3C,oDAAoD;;QAEnD,kDAAkD;;;;AAYnD,wBAAgB,YAAY,YAO3B;AAeD,MAAM,MAAM,+BAA+B,GAAG,UAAU,CAAC,OAAO,2BAA2B,CAAC,SAAS,CAAC,CAAC;AACvG,wBAAgB,2BAA2B,CAAC,KAAK,EAAE,+BAA+B,QAqBjF;yBArBe,2BAA2B;;QAN3C,iDAAiD;;QAEhD,kDAAkD"}
|
|
@@ -12,6 +12,7 @@ export type callContentfulDeliveryAPIType = InferProps<typeof callContentfulDeli
|
|
|
12
12
|
export declare function callContentfulDeliveryAPI(props: callContentfulDeliveryAPIType): Promise<any>;
|
|
13
13
|
export declare namespace callContentfulDeliveryAPI {
|
|
14
14
|
var propTypes: {
|
|
15
|
+
/** Full request URL to the Contentful Delivery API */
|
|
15
16
|
full_url: PropTypes.Validator<string>;
|
|
16
17
|
};
|
|
17
18
|
}
|
|
@@ -19,11 +20,17 @@ export type getContentfulEntriesType = InferProps<typeof getContentfulEntries.pr
|
|
|
19
20
|
export declare function getContentfulEntries(props: getContentfulEntriesType): Promise<any>;
|
|
20
21
|
export declare namespace getContentfulEntries {
|
|
21
22
|
var propTypes: {
|
|
23
|
+
/** Contentful API configuration */
|
|
22
24
|
apiProps: PropTypes.Validator<NonNullable<PropTypes.InferProps<{
|
|
25
|
+
/** Optional proxy base URL */
|
|
23
26
|
proxyURL: PropTypes.Requireable<string>;
|
|
27
|
+
/** Contentful CDN base URL */
|
|
24
28
|
base_url: PropTypes.Validator<string>;
|
|
29
|
+
/** Contentful space ID */
|
|
25
30
|
space_id: PropTypes.Validator<string>;
|
|
31
|
+
/** Contentful environment */
|
|
26
32
|
environment: PropTypes.Validator<string>;
|
|
33
|
+
/** Delivery API access token */
|
|
27
34
|
delivery_access_token: PropTypes.Validator<string>;
|
|
28
35
|
}>>>;
|
|
29
36
|
};
|
|
@@ -32,6 +39,7 @@ export type getContentfulEntriesByTypeType = InferProps<typeof getContentfulEntr
|
|
|
32
39
|
export declare function getContentfulEntriesByType(props: getContentfulEntriesByTypeType): Promise<any>;
|
|
33
40
|
export declare namespace getContentfulEntriesByType {
|
|
34
41
|
var propTypes: {
|
|
42
|
+
/** Contentful API configuration */
|
|
35
43
|
apiProps: PropTypes.Validator<NonNullable<PropTypes.InferProps<{
|
|
36
44
|
proxyURL: PropTypes.Requireable<string>;
|
|
37
45
|
base_url: PropTypes.Validator<string>;
|
|
@@ -39,6 +47,7 @@ export declare namespace getContentfulEntriesByType {
|
|
|
39
47
|
environment: PropTypes.Validator<string>;
|
|
40
48
|
delivery_access_token: PropTypes.Validator<string>;
|
|
41
49
|
}>>>;
|
|
50
|
+
/** Content type ID to filter by */
|
|
42
51
|
contentType: PropTypes.Validator<string>;
|
|
43
52
|
};
|
|
44
53
|
}
|
|
@@ -46,6 +55,7 @@ export type getContentfulContentTypeType = InferProps<typeof getContentfulConten
|
|
|
46
55
|
export declare function getContentfulContentType(props: getContentfulContentTypeType): Promise<any>;
|
|
47
56
|
export declare namespace getContentfulContentType {
|
|
48
57
|
var propTypes: {
|
|
58
|
+
/** Contentful API configuration */
|
|
49
59
|
apiProps: PropTypes.Validator<NonNullable<PropTypes.InferProps<{
|
|
50
60
|
proxyURL: PropTypes.Requireable<string>;
|
|
51
61
|
base_url: PropTypes.Validator<string>;
|
|
@@ -53,6 +63,7 @@ export declare namespace getContentfulContentType {
|
|
|
53
63
|
environment: PropTypes.Validator<string>;
|
|
54
64
|
access_token: PropTypes.Validator<string>;
|
|
55
65
|
}>>>;
|
|
66
|
+
/** Content type ID to retrieve */
|
|
56
67
|
contentType: PropTypes.Validator<string>;
|
|
57
68
|
};
|
|
58
69
|
}
|
|
@@ -60,6 +71,7 @@ export type getContentfulEntryByEntryIDType = InferProps<typeof getContentfulEnt
|
|
|
60
71
|
export declare function getContentfulEntryByEntryID(props: getContentfulEntryByEntryIDType): Promise<any>;
|
|
61
72
|
export declare namespace getContentfulEntryByEntryID {
|
|
62
73
|
var propTypes: {
|
|
74
|
+
/** Contentful API configuration */
|
|
63
75
|
apiProps: PropTypes.Validator<NonNullable<PropTypes.InferProps<{
|
|
64
76
|
proxyURL: PropTypes.Requireable<string>;
|
|
65
77
|
base_url: PropTypes.Validator<string>;
|
|
@@ -67,6 +79,7 @@ export declare namespace getContentfulEntryByEntryID {
|
|
|
67
79
|
environment: PropTypes.Validator<string>;
|
|
68
80
|
delivery_access_token: PropTypes.Validator<string>;
|
|
69
81
|
}>>>;
|
|
82
|
+
/** Target entry ID */
|
|
70
83
|
entry_id: PropTypes.Validator<string>;
|
|
71
84
|
};
|
|
72
85
|
}
|
|
@@ -80,6 +93,7 @@ export type getContentfulFieldValuesType = InferProps<typeof getContentfulFieldV
|
|
|
80
93
|
export declare function getContentfulFieldValues(props: getContentfulFieldValuesType): Promise<string[]>;
|
|
81
94
|
export declare namespace getContentfulFieldValues {
|
|
82
95
|
var propTypes: {
|
|
96
|
+
/** Contentful API configuration */
|
|
83
97
|
apiProps: PropTypes.Validator<NonNullable<PropTypes.InferProps<{
|
|
84
98
|
proxyURL: PropTypes.Requireable<string>;
|
|
85
99
|
base_url: PropTypes.Validator<string>;
|
|
@@ -87,7 +101,9 @@ export declare namespace getContentfulFieldValues {
|
|
|
87
101
|
environment: PropTypes.Validator<string>;
|
|
88
102
|
delivery_access_token: PropTypes.Validator<string>;
|
|
89
103
|
}>>>;
|
|
104
|
+
/** Content type ID to query */
|
|
90
105
|
contentType: PropTypes.Validator<string>;
|
|
106
|
+
/** Field name to extract values from */
|
|
91
107
|
field: PropTypes.Validator<string>;
|
|
92
108
|
};
|
|
93
109
|
}
|
|
@@ -98,7 +114,9 @@ export declare function getContentfulImagesFromEntries(props: getContentfulImage
|
|
|
98
114
|
}[]>;
|
|
99
115
|
export declare namespace getContentfulImagesFromEntries {
|
|
100
116
|
var propTypes: {
|
|
117
|
+
/** Entry image references to resolve */
|
|
101
118
|
images: PropTypes.Validator<any>;
|
|
119
|
+
/** Contentful asset objects containing file URLs and descriptions */
|
|
102
120
|
assets: PropTypes.Validator<any>;
|
|
103
121
|
};
|
|
104
122
|
}
|
|
@@ -106,6 +124,7 @@ export type getContentfulAssetsType = InferProps<typeof getContentfulAssets.prop
|
|
|
106
124
|
export declare function getContentfulAssets(props: getContentfulAssetsType): Promise<any>;
|
|
107
125
|
export declare namespace getContentfulAssets {
|
|
108
126
|
var propTypes: {
|
|
127
|
+
/** Contentful API configuration */
|
|
109
128
|
apiProps: PropTypes.Validator<NonNullable<PropTypes.InferProps<{
|
|
110
129
|
proxyURL: PropTypes.Requireable<string>;
|
|
111
130
|
base_url: PropTypes.Validator<string>;
|
|
@@ -122,6 +141,7 @@ export declare function getContentfulAssetURLs(props: getContentfulAssetURLsType
|
|
|
122
141
|
}[]>;
|
|
123
142
|
export declare namespace getContentfulAssetURLs {
|
|
124
143
|
var propTypes: {
|
|
144
|
+
/** Contentful API configuration */
|
|
125
145
|
apiProps: PropTypes.Validator<NonNullable<PropTypes.InferProps<{
|
|
126
146
|
proxyURL: PropTypes.Requireable<string>;
|
|
127
147
|
base_url: PropTypes.Validator<string>;
|
|
@@ -135,6 +155,7 @@ export type getContentfulDiscountCodesType = InferProps<typeof getContentfulDisc
|
|
|
135
155
|
export declare function getContentfulDiscountCodes(props: getContentfulDiscountCodesType): Promise<any>;
|
|
136
156
|
export declare namespace getContentfulDiscountCodes {
|
|
137
157
|
var propTypes: {
|
|
158
|
+
/** Contentful API configuration */
|
|
138
159
|
apiProps: PropTypes.Validator<NonNullable<PropTypes.InferProps<{
|
|
139
160
|
proxyURL: PropTypes.Requireable<string>;
|
|
140
161
|
base_url: PropTypes.Validator<string>;
|
|
@@ -142,6 +163,7 @@ export declare namespace getContentfulDiscountCodes {
|
|
|
142
163
|
environment: PropTypes.Validator<string>;
|
|
143
164
|
delivery_access_token: PropTypes.Validator<string>;
|
|
144
165
|
}>>>;
|
|
166
|
+
/** Contentful content type ID to fetch */
|
|
145
167
|
contentType: PropTypes.Validator<string>;
|
|
146
168
|
};
|
|
147
169
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"contentful.delivery.d.ts","sourceRoot":"","sources":["../../../../src/components/integrations/contentful.delivery.ts"],"names":[],"mappings":"AAAA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAMnD,MAAM,MAAM,iBAAiB,GAAG;IAC/B,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,QAAQ,EAAE,MAAM,CAAC;IACjB,QAAQ,EAAE,MAAM,CAAC;IACjB,WAAW,EAAE,MAAM,CAAC;IACpB,qBAAqB,EAAE,MAAM,CAAC;IAC9B,uBAAuB,CAAC,EAAE,MAAM,CAAC;IACjC,oBAAoB,CAAC,EAAE,MAAM,CAAC;CAC9B,CAAC;
|
|
1
|
+
{"version":3,"file":"contentful.delivery.d.ts","sourceRoot":"","sources":["../../../../src/components/integrations/contentful.delivery.ts"],"names":[],"mappings":"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"}
|
|
@@ -5,7 +5,9 @@ export type ContentfulItemsType = InferProps<typeof ContentfulItems.propTypes>;
|
|
|
5
5
|
export declare function ContentfulItems(props: ContentfulItemsType): import("react/jsx-runtime").JSX.Element;
|
|
6
6
|
export declare namespace ContentfulItems {
|
|
7
7
|
var propTypes: {
|
|
8
|
+
/** Contentful API configuration object */
|
|
8
9
|
apiProps: PropTypes.Validator<object>;
|
|
10
|
+
/** Optional Cloudinary product environment (cloud name) for image transforms */
|
|
9
11
|
cloudinaryProductEnv: PropTypes.Requireable<string>;
|
|
10
12
|
};
|
|
11
13
|
}
|
|
@@ -13,7 +15,9 @@ export type ContentfulListItemType = InferProps<typeof ContentfulListItem.propTy
|
|
|
13
15
|
export declare function ContentfulListItem(props: ContentfulListItemType): import("react/jsx-runtime").JSX.Element;
|
|
14
16
|
export declare namespace ContentfulListItem {
|
|
15
17
|
var propTypes: {
|
|
18
|
+
/** Contentful item entry object */
|
|
16
19
|
item: PropTypes.Validator<any>;
|
|
20
|
+
/** Optional Cloudinary product environment */
|
|
17
21
|
cloudinaryProductEnv: PropTypes.Requireable<string>;
|
|
18
22
|
};
|
|
19
23
|
}
|
|
@@ -21,8 +25,11 @@ export type ContentfulItemHeaderType = InferProps<typeof ContentfulItemHeader.pr
|
|
|
21
25
|
export declare function ContentfulItemHeader(props: ContentfulItemHeaderType): import("react/jsx-runtime").JSX.Element;
|
|
22
26
|
export declare namespace ContentfulItemHeader {
|
|
23
27
|
var propTypes: {
|
|
28
|
+
/** Item title text */
|
|
24
29
|
title: PropTypes.Validator<string>;
|
|
30
|
+
/** Optional link URL for the title */
|
|
25
31
|
url: PropTypes.Requireable<string>;
|
|
32
|
+
/** Link target attribute (e.g., '_blank') */
|
|
26
33
|
target: PropTypes.Requireable<string>;
|
|
27
34
|
};
|
|
28
35
|
}
|
|
@@ -30,8 +37,11 @@ export type ContentfulItemDetailType = InferProps<typeof ContentfulItemDetail.pr
|
|
|
30
37
|
export declare function ContentfulItemDetail(props: ContentfulItemDetailType): import("react/jsx-runtime").JSX.Element;
|
|
31
38
|
export declare namespace ContentfulItemDetail {
|
|
32
39
|
var propTypes: {
|
|
40
|
+
/** Contentful API configuration object */
|
|
33
41
|
apiProps: PropTypes.Validator<object>;
|
|
42
|
+
/** Entry ID of the item to fetch */
|
|
34
43
|
entry_id: PropTypes.Validator<string>;
|
|
44
|
+
/** Optional Cloudinary product env (cloud name) for image transforms */
|
|
35
45
|
cloudinaryProductEnv: PropTypes.Requireable<string>;
|
|
36
46
|
};
|
|
37
47
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"contentful.items.components.d.ts","sourceRoot":"","sources":["../../../../src/components/integrations/contentful.items.components.tsx"],"names":[],"mappings":"AAGA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAWnD,OAAO,+BAA+B,CAAC;AACvC,OAAO,wBAAwB,CAAC;
|
|
1
|
+
{"version":3,"file":"contentful.items.components.d.ts","sourceRoot":"","sources":["../../../../src/components/integrations/contentful.items.components.tsx"],"names":[],"mappings":"AAGA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAWnD,OAAO,+BAA+B,CAAC;AACvC,OAAO,wBAAwB,CAAC;AA8BhC,MAAM,MAAM,mBAAmB,GAAG,UAAU,CAAC,OAAO,eAAe,CAAC,SAAS,CAAC,CAAC;AAC/E,wBAAgB,eAAe,CAAC,KAAK,EAAE,mBAAmB,2CA2GzD;yBA3Ge,eAAe;;QAN/B,0CAA0C;;QAEzC,gFAAgF;;;;AAmIjF,MAAM,MAAM,sBAAsB,GAAG,UAAU,CAAC,OAAO,kBAAkB,CAAC,SAAS,CAAC,CAAC;AACrF,wBAAgB,kBAAkB,CAAC,KAAK,EAAE,sBAAsB,2CA6D/D;yBA7De,kBAAkB;;QANlC,mCAAmC;;QAElC,8CAA8C;;;;AAwF/C,MAAM,MAAM,wBAAwB,GAAG,UAAU,CAAC,OAAO,oBAAoB,CAAC,SAAS,CAAC,CAAC;AACzF,wBAAgB,oBAAoB,CAAC,KAAK,EAAE,wBAAwB,2CASnE;yBATe,oBAAoB;;QARpC,sBAAsB;;QAErB,sCAAsC;;QAEtC,6CAA6C;;;;AAoC9C,MAAM,MAAM,wBAAwB,GAAG,UAAU,CAAC,OAAO,oBAAoB,CAAC,SAAS,CAAC,CAAC;AACzF,wBAAgB,oBAAoB,CAAC,KAAK,EAAE,wBAAwB,2CAwInE;yBAxIe,oBAAoB;;QARpC,0CAA0C;;QAEzC,oCAAoC;;QAEpC,wEAAwE"}
|
|
@@ -4,7 +4,9 @@ export type GetFlickrDataType = InferProps<typeof GetFlickrData.propTypes>;
|
|
|
4
4
|
export declare function GetFlickrData(props: GetFlickrDataType): Promise<any>;
|
|
5
5
|
export declare namespace GetFlickrData {
|
|
6
6
|
var propTypes: {
|
|
7
|
+
/** Flickr-specific query overrides */
|
|
7
8
|
flickr: PropTypes.Requireable<object>;
|
|
9
|
+
/** Optional provider configuration for Flickr requests */
|
|
8
10
|
config: PropTypes.Requireable<object>;
|
|
9
11
|
};
|
|
10
12
|
}
|
|
@@ -19,7 +21,9 @@ export declare function GenerateFlickrCards(props: GenerateFlickrCardsType): {
|
|
|
19
21
|
}[] | undefined;
|
|
20
22
|
export declare namespace GenerateFlickrCards {
|
|
21
23
|
var propTypes: {
|
|
24
|
+
/** Flickr image array */
|
|
22
25
|
flickrImages: PropTypes.Validator<any[]>;
|
|
26
|
+
/** Desired photo size label */
|
|
23
27
|
photoSize: PropTypes.Validator<string>;
|
|
24
28
|
};
|
|
25
29
|
}
|
|
@@ -27,12 +31,19 @@ export type FlickrWrapperType = InferProps<typeof FlickrWrapper.propTypes>;
|
|
|
27
31
|
export declare function FlickrWrapper(props: FlickrWrapperType): Promise<CarouselCardType[] | undefined>;
|
|
28
32
|
export declare namespace FlickrWrapper {
|
|
29
33
|
var propTypes: {
|
|
34
|
+
/** Flickr API method */
|
|
30
35
|
method: PropTypes.Requireable<string>;
|
|
36
|
+
/** Flickr API key */
|
|
31
37
|
api_key: PropTypes.Validator<string>;
|
|
38
|
+
/** Flickr user id */
|
|
32
39
|
user_id: PropTypes.Validator<string>;
|
|
40
|
+
/** Tag filter string */
|
|
33
41
|
tags: PropTypes.Requireable<string>;
|
|
42
|
+
/** Photoset/album id */
|
|
34
43
|
photoset_id: PropTypes.Requireable<string>;
|
|
44
|
+
/** Desired photo size label (e.g., 'Medium', 'Large') */
|
|
35
45
|
photoSize: PropTypes.Requireable<string>;
|
|
46
|
+
/** Callback invoked with an array of Carousel cards after data is fetched */
|
|
36
47
|
callback: PropTypes.Validator<(...args: any[]) => any>;
|
|
37
48
|
};
|
|
38
49
|
}
|