@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":"flickr.d.ts","sourceRoot":"","sources":["../../../../src/components/integrations/flickr.ts"],"names":[],"mappings":"AACA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAEnD,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,qBAAqB,CAAC;
|
|
1
|
+
{"version":3,"file":"flickr.d.ts","sourceRoot":"","sources":["../../../../src/components/integrations/flickr.ts"],"names":[],"mappings":"AACA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAEnD,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,qBAAqB,CAAC;AA8E5D,MAAM,MAAM,iBAAiB,GAAG,UAAU,CAAC,OAAO,aAAa,CAAC,SAAS,CAAC,CAAC;AAC3E,wBAAgB,aAAa,CAAE,KAAK,EAAE,iBAAiB,gBA2DtD;yBA3De,aAAa;;QAN7B,sCAAsC;;QAErC,0DAA0D;;;;AA+E3D,MAAM,MAAM,uBAAuB,GAAG,UAAU,CAAC,OAAO,mBAAmB,CAAC,SAAS,CAAC,CAAC;AACvF,wBAAgB,mBAAmB,CAAC,KAAK,EAAE,uBAAuB;;;;;;;gBAejE;yBAfe,mBAAmB;;QANnC,yBAAyB;;QAExB,+BAA+B;;;;AAoDhC,MAAM,MAAM,iBAAiB,GAAG,UAAU,CAAC,OAAO,aAAa,CAAC,SAAS,CAAC,CAAC;AAC3E,wBAAgB,aAAa,CAAE,KAAK,EAAE,iBAAiB,2CA0CtD;yBA1Ce,aAAa;;QAjB7B,wBAAwB;;QAEvB,qBAAqB;;QAErB,qBAAqB;;QAErB,wBAAwB;;QAExB,wBAAwB;;QAExB,yDAAyD;;QAEzD,6EAA6E"}
|
|
@@ -4,10 +4,15 @@ export type GoogleReviewsCardType = InferProps<typeof GoogleReviewsCard.propType
|
|
|
4
4
|
export declare function GoogleReviewsCard(props: GoogleReviewsCardType): import("react/jsx-runtime").JSX.Element;
|
|
5
5
|
export declare namespace GoogleReviewsCard {
|
|
6
6
|
var propTypes: {
|
|
7
|
+
/** Google Place ID (required) */
|
|
7
8
|
placeId: PropTypes.Validator<string>;
|
|
9
|
+
/** Language code for localization (optional) */
|
|
8
10
|
language: PropTypes.Requireable<string>;
|
|
11
|
+
/** Max number of reviews to display */
|
|
9
12
|
maxReviews: PropTypes.Requireable<number>;
|
|
13
|
+
/** Optional proxy base URL to avoid CORS issues */
|
|
10
14
|
proxyBase: PropTypes.Requireable<string>;
|
|
15
|
+
/** Optional Google API key */
|
|
11
16
|
apiKey: PropTypes.Requireable<string>;
|
|
12
17
|
};
|
|
13
18
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"google.reviews.components.d.ts","sourceRoot":"","sources":["../../../../src/components/integrations/google.reviews.components.tsx"],"names":[],"mappings":"AAGA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAInD,OAAO,sBAAsB,CAAC;
|
|
1
|
+
{"version":3,"file":"google.reviews.components.d.ts","sourceRoot":"","sources":["../../../../src/components/integrations/google.reviews.components.tsx"],"names":[],"mappings":"AAGA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAInD,OAAO,sBAAsB,CAAC;AAwB9B,MAAM,MAAM,qBAAqB,GAAG,UAAU,CAAC,OAAO,iBAAiB,CAAC,SAAS,CAAC,CAAC;AACnF,wBAAgB,iBAAiB,CAAC,KAAK,EAAE,qBAAqB,2CAqG7D;yBArGe,iBAAiB;;QAZjC,iCAAiC;;QAEhC,gDAAgD;;QAEhD,uCAAuC;;QAEvC,mDAAmD;;QAEnD,8BAA8B"}
|
|
@@ -9,6 +9,7 @@ export type GoogleAnalyticsType = InferProps<typeof GoogleAnalytics.propTypes>;
|
|
|
9
9
|
export declare function GoogleAnalytics(props: GoogleAnalyticsType): import("react/jsx-runtime").JSX.Element | undefined;
|
|
10
10
|
export declare namespace GoogleAnalytics {
|
|
11
11
|
var propTypes: {
|
|
12
|
+
/** Google Analytics measurement ID */
|
|
12
13
|
id: PropTypes.Requireable<string>;
|
|
13
14
|
};
|
|
14
15
|
}
|
|
@@ -16,7 +17,9 @@ export type GoogleAnalyticsEventType = InferProps<typeof GoogleAnalyticsEvent.pr
|
|
|
16
17
|
export declare function GoogleAnalyticsEvent(props: GoogleAnalyticsEventType): null | undefined;
|
|
17
18
|
export declare namespace GoogleAnalyticsEvent {
|
|
18
19
|
var propTypes: {
|
|
20
|
+
/** Event name for gtag */
|
|
19
21
|
event_name: PropTypes.Validator<string>;
|
|
22
|
+
/** Event parameter object */
|
|
20
23
|
event_parameters: PropTypes.Validator<object>;
|
|
21
24
|
};
|
|
22
25
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"googleanalytics.d.ts","sourceRoot":"","sources":["../../../../src/components/integrations/googleanalytics.tsx"],"names":[],"mappings":"AAIA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAanD,OAAO,CAAC,MAAM,CAAC;IACd,UAAU,MAAM;QACf,SAAS,CAAC,EAAE,GAAG,EAAE,CAAC;QAClB,IAAI,CAAC,EAAE,CAAC,GAAG,IAAI,EAAE,GAAG,EAAE,KAAK,IAAI,CAAC;KAChC;CACD;
|
|
1
|
+
{"version":3,"file":"googleanalytics.d.ts","sourceRoot":"","sources":["../../../../src/components/integrations/googleanalytics.tsx"],"names":[],"mappings":"AAIA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAanD,OAAO,CAAC,MAAM,CAAC;IACd,UAAU,MAAM;QACf,SAAS,CAAC,EAAE,GAAG,EAAE,CAAC;QAClB,IAAI,CAAC,EAAE,CAAC,GAAG,IAAI,EAAE,GAAG,EAAE,KAAK,IAAI,CAAC;KAChC;CACD;AAsBD,MAAM,MAAM,mBAAmB,GAAG,UAAU,CAAC,OAAO,eAAe,CAAC,SAAS,CAAC,CAAC;AAC/E,wBAAgB,eAAe,CAAE,KAAK,EAAE,mBAAmB,uDAsC1D;yBAtCe,eAAe;;QAJ/B,sCAAsC;;;;AAuDtC,MAAM,MAAM,wBAAwB,GAAG,UAAU,CAAC,OAAO,oBAAoB,CAAC,SAAS,CAAC,CAAC;AACzF,wBAAgB,oBAAoB,CAAE,KAAK,EAAE,wBAAwB,oBAYpE;yBAZe,oBAAoB;;QANpC,0BAA0B;;QAEzB,6BAA6B"}
|
|
@@ -3,13 +3,21 @@ export type GoogleMapsType = InferProps<typeof GoogleMaps.propTypes>;
|
|
|
3
3
|
export declare function GoogleMaps(props: GoogleMapsType): import("react/jsx-runtime").JSX.Element;
|
|
4
4
|
export declare namespace GoogleMaps {
|
|
5
5
|
var propTypes: {
|
|
6
|
+
/** Accessible iframe title */
|
|
6
7
|
title: PropTypes.Requireable<string>;
|
|
8
|
+
/** iframe width (pixels or %) */
|
|
7
9
|
width: PropTypes.Requireable<string>;
|
|
10
|
+
/** iframe height (pixels) */
|
|
8
11
|
height: PropTypes.Requireable<string>;
|
|
12
|
+
/** iframe frameBorder attribute */
|
|
9
13
|
frameBorder: PropTypes.Requireable<string>;
|
|
14
|
+
/** Inline style object for the iframe */
|
|
10
15
|
style: PropTypes.Requireable<object>;
|
|
16
|
+
/** Maps embed mode (required) */
|
|
11
17
|
map_mode: PropTypes.Validator<string>;
|
|
18
|
+
/** Google Maps API key */
|
|
12
19
|
api_key: PropTypes.Requireable<string>;
|
|
20
|
+
/** Additional query parameters for the embed URL */
|
|
13
21
|
parameters: PropTypes.Requireable<string>;
|
|
14
22
|
};
|
|
15
23
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"googlemap.d.ts","sourceRoot":"","sources":["../../../../src/components/integrations/googlemap.tsx"],"names":[],"mappings":"AACA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;
|
|
1
|
+
{"version":3,"file":"googlemap.d.ts","sourceRoot":"","sources":["../../../../src/components/integrations/googlemap.tsx"],"names":[],"mappings":"AACA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAoCnD,MAAM,MAAM,cAAc,GAAG,UAAU,CAAC,OAAO,UAAU,CAAC,SAAS,CAAC,CAAC;AACrE,wBAAgB,UAAU,CAAC,KAAK,EAAE,cAAc,2CAkB/C;yBAlBe,UAAU;;QAlB1B,8BAA8B;;QAE7B,iCAAiC;;QAEjC,6BAA6B;;QAE7B,mCAAmC;;QAEnC,yCAAyC;;QAEzC,iCAAiC;;QAEjC,0BAA0B;;QAE1B,oDAAoD"}
|
|
@@ -4,6 +4,7 @@ export type GoogleSearchType = InferProps<typeof GoogleSearch.propTypes>;
|
|
|
4
4
|
export declare function GoogleSearch(props: GoogleSearchType): import("react/jsx-runtime").JSX.Element;
|
|
5
5
|
export declare namespace GoogleSearch {
|
|
6
6
|
var propTypes: {
|
|
7
|
+
/** CSE 'cx' id for the Google Programmable Search Engine */
|
|
7
8
|
id: PropTypes.Validator<string>;
|
|
8
9
|
};
|
|
9
10
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"googlesearch.d.ts","sourceRoot":"","sources":["../../../../src/components/integrations/googlesearch.tsx"],"names":[],"mappings":"AAGA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AACnD,OAAO,oBAAoB,CAAC;
|
|
1
|
+
{"version":3,"file":"googlesearch.d.ts","sourceRoot":"","sources":["../../../../src/components/integrations/googlesearch.tsx"],"names":[],"mappings":"AAGA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AACnD,OAAO,oBAAoB,CAAC;AA6B5B,MAAM,MAAM,gBAAgB,GAAG,UAAU,CAAC,OAAO,YAAY,CAAC,SAAS,CAAC,CAAC;AACzE,wBAAgB,YAAY,CAAC,KAAK,EAAE,gBAAgB,2CAenD;yBAfe,YAAY;;QAJ5B,4DAA4D"}
|
|
@@ -4,30 +4,54 @@ export type GravatarCardType = InferProps<typeof GravatarCard.propTypes>;
|
|
|
4
4
|
export declare function GravatarCard(props: GravatarCardType): import("react/jsx-runtime").JSX.Element;
|
|
5
5
|
export declare namespace GravatarCard {
|
|
6
6
|
var propTypes: {
|
|
7
|
+
/** Gravatar profile object with common fields */
|
|
7
8
|
profile: PropTypes.Requireable<PropTypes.InferProps<{
|
|
9
|
+
/** Gravatar hash used to construct avatar URLs */
|
|
8
10
|
hash: PropTypes.Requireable<string>;
|
|
11
|
+
/** Optional request identifier used when fetching the profile */
|
|
9
12
|
requestHash: PropTypes.Requireable<string>;
|
|
13
|
+
/** Direct URL to the Gravatar profile */
|
|
10
14
|
profileUrl: PropTypes.Requireable<string>;
|
|
15
|
+
/** Preferred username from the Gravatar profile */
|
|
11
16
|
preferredUsername: PropTypes.Requireable<string>;
|
|
17
|
+
/** Avatar thumbnail URL from the profile */
|
|
12
18
|
thumbnailUrl: PropTypes.Requireable<string>;
|
|
19
|
+
/** Display name from profile */
|
|
13
20
|
displayName: PropTypes.Requireable<string>;
|
|
21
|
+
/** Pronouns string */
|
|
14
22
|
pronouns: PropTypes.Requireable<string>;
|
|
23
|
+
/** Short bio / about text */
|
|
15
24
|
aboutMe: PropTypes.Requireable<string>;
|
|
25
|
+
/** Current location string */
|
|
16
26
|
currentLocation: PropTypes.Requireable<string>;
|
|
27
|
+
/** Job title from profile */
|
|
17
28
|
job_title: PropTypes.Requireable<string>;
|
|
29
|
+
/** Company name from profile */
|
|
18
30
|
company: PropTypes.Requireable<string>;
|
|
31
|
+
/** Social accounts array */
|
|
19
32
|
accounts: PropTypes.Requireable<(PropTypes.InferProps<{
|
|
33
|
+
/** Account domain (e.g., 'github.com') */
|
|
20
34
|
domain: PropTypes.Requireable<string>;
|
|
35
|
+
/** Display label for the account */
|
|
21
36
|
display: PropTypes.Requireable<string>;
|
|
37
|
+
/** URL for the account */
|
|
22
38
|
url: PropTypes.Requireable<string>;
|
|
39
|
+
/** Icon URL for the account */
|
|
23
40
|
iconUrl: PropTypes.Requireable<string>;
|
|
41
|
+
/** Account username */
|
|
24
42
|
username: PropTypes.Requireable<string>;
|
|
43
|
+
/** Whether the account is verified */
|
|
25
44
|
verified: PropTypes.Requireable<boolean>;
|
|
45
|
+
/** Full name associated with the account */
|
|
26
46
|
name: PropTypes.Requireable<string>;
|
|
47
|
+
/** Shortname used to identify the service (e.g., 'github') */
|
|
27
48
|
shortname: PropTypes.Requireable<string>;
|
|
28
49
|
}> | null | undefined)[]>;
|
|
50
|
+
/** Email addresses associated with the profile */
|
|
29
51
|
emails: PropTypes.Requireable<(PropTypes.InferProps<{
|
|
52
|
+
/** Email primary flag (if applicable) */
|
|
30
53
|
primary: PropTypes.Requireable<string>;
|
|
54
|
+
/** Email address value */
|
|
31
55
|
value: PropTypes.Requireable<string>;
|
|
32
56
|
}> | null | undefined)[]>;
|
|
33
57
|
}>>;
|
|
@@ -39,17 +63,28 @@ export declare namespace GravatarCard {
|
|
|
39
63
|
company: PropTypes.Requireable<string>;
|
|
40
64
|
pronouns: PropTypes.Requireable<string>;
|
|
41
65
|
profileUrl: PropTypes.Requireable<string>;
|
|
66
|
+
/** Optional custom role to display instead of job_title */
|
|
42
67
|
customRole: PropTypes.Requireable<string>;
|
|
68
|
+
/** Overrides for social links (preferred over profile accounts) */
|
|
43
69
|
socialLinks: PropTypes.Requireable<PropTypes.InferProps<{
|
|
70
|
+
/** GitHub profile URL */
|
|
44
71
|
github: PropTypes.Requireable<string>;
|
|
72
|
+
/** LinkedIn profile URL */
|
|
45
73
|
linkedin: PropTypes.Requireable<string>;
|
|
74
|
+
/** Twitter profile URL */
|
|
46
75
|
twitter: PropTypes.Requireable<string>;
|
|
76
|
+
/** Instagram profile URL */
|
|
47
77
|
instagram: PropTypes.Requireable<string>;
|
|
78
|
+
/** Personal website URL */
|
|
48
79
|
website: PropTypes.Requireable<string>;
|
|
49
80
|
}>>;
|
|
81
|
+
/** Layout style: 'horizontal' or 'vertical' */
|
|
50
82
|
layout: PropTypes.Requireable<string>;
|
|
83
|
+
/** Photo position when horizontal: 'left' or 'right' */
|
|
51
84
|
direction: PropTypes.Requireable<string>;
|
|
85
|
+
/** Avatar size in pixels */
|
|
52
86
|
avatarSize: PropTypes.Requireable<number>;
|
|
87
|
+
/** Compact card variant */
|
|
53
88
|
compact: PropTypes.Requireable<boolean>;
|
|
54
89
|
};
|
|
55
90
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"gravatar.components.d.ts","sourceRoot":"","sources":["../../../../src/components/integrations/gravatar.components.tsx"],"names":[],"mappings":"AAGA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAInD,OAAO,gBAAgB,CAAC;
|
|
1
|
+
{"version":3,"file":"gravatar.components.d.ts","sourceRoot":"","sources":["../../../../src/components/integrations/gravatar.components.tsx"],"names":[],"mappings":"AAGA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAInD,OAAO,gBAAgB,CAAC;AAmJxB,MAAM,MAAM,gBAAgB,GAAG,UAAU,CAAC,OAAO,YAAY,CAAC,SAAS,CAAC,CAAC;AACzE,wBAAgB,YAAY,CAAC,KAAK,EAAE,gBAAgB,2CAoInD;yBApIe,YAAY;;QA3F5B,iDAAiD;;YAE/C,kDAAkD;;YAElD,iEAAiE;;YAEjE,yCAAyC;;YAEzC,mDAAmD;;YAEnD,4CAA4C;;YAE5C,gCAAgC;;YAEhC,sBAAsB;;YAEtB,6BAA6B;;YAE7B,8BAA8B;;YAE9B,6BAA6B;;YAE7B,gCAAgC;;YAEhC,4BAA4B;;gBAG1B,0CAA0C;;gBAE1C,oCAAoC;;gBAEpC,0BAA0B;;gBAE1B,+BAA+B;;gBAE/B,uBAAuB;;gBAEvB,sCAAsC;;gBAEtC,4CAA4C;;gBAE5C,8DAA8D;;;YAIhE,kDAAkD;;gBAGhD,yCAAyC;;gBAEzC,0BAA0B;;;;;;;;;;;;QAe7B,2DAA2D;;QAE3D,mEAAmE;;YAElE,yBAAyB;;YAEzB,2BAA2B;;YAE3B,0BAA0B;;YAE1B,4BAA4B;;YAE5B,2BAA2B;;;QAI5B,+CAA+C;;QAE/C,wDAAwD;;QAExD,4BAA4B;;QAE5B,2BAA2B"}
|
|
@@ -4,10 +4,15 @@ export type HubSpotFormType = InferProps<typeof HubSpotForm.propTypes>;
|
|
|
4
4
|
export declare function HubSpotForm({ region, portalId, formId, target, containerId }: HubSpotFormType): import("react/jsx-runtime").JSX.Element;
|
|
5
5
|
export declare namespace HubSpotForm {
|
|
6
6
|
var propTypes: {
|
|
7
|
+
/** HubSpot region code */
|
|
7
8
|
region: PropTypes.Requireable<string>;
|
|
9
|
+
/** HubSpot portal/account ID */
|
|
8
10
|
portalId: PropTypes.Requireable<string>;
|
|
11
|
+
/** HubSpot form GUID */
|
|
9
12
|
formId: PropTypes.Requireable<string>;
|
|
13
|
+
/** CSS selector or target element for the form */
|
|
10
14
|
target: PropTypes.Requireable<string>;
|
|
15
|
+
/** DOM ID of the container element for the form */
|
|
11
16
|
containerId: PropTypes.Requireable<string>;
|
|
12
17
|
};
|
|
13
18
|
}
|
|
@@ -15,6 +20,7 @@ export type HubspotTrackingCodeType = InferProps<typeof HubspotTrackingCode.prop
|
|
|
15
20
|
export declare function HubspotTrackingCode(props: HubspotTrackingCodeType): import("react/jsx-runtime").JSX.Element;
|
|
16
21
|
export declare namespace HubspotTrackingCode {
|
|
17
22
|
var propTypes: {
|
|
23
|
+
/** HubSpot portal ID for tracking script injection */
|
|
18
24
|
hubID: PropTypes.Validator<string>;
|
|
19
25
|
};
|
|
20
26
|
}
|
|
@@ -22,8 +28,11 @@ export type getHubspotFormSubmissionsType = InferProps<typeof getHubspotFormSubm
|
|
|
22
28
|
export declare function getHubspotFormSubmissions(props: getHubspotFormSubmissionsType): Promise<any>;
|
|
23
29
|
export declare namespace getHubspotFormSubmissions {
|
|
24
30
|
var propTypes: {
|
|
31
|
+
/** Proxy base URL to route the request through */
|
|
25
32
|
proxyURL: PropTypes.Validator<string>;
|
|
33
|
+
/** HubSpot form GUID */
|
|
26
34
|
formGUID: PropTypes.Validator<string>;
|
|
35
|
+
/** Bearer API token for HubSpot requests */
|
|
27
36
|
apiToken: PropTypes.Validator<string>;
|
|
28
37
|
};
|
|
29
38
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"hubspot.components.d.ts","sourceRoot":"","sources":["../../../../src/components/integrations/hubspot.components.tsx"],"names":[],"mappings":"AAGA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAMnD,wBAAgB,uBAAuB,CAAC,MAAM,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,QAUvE;
|
|
1
|
+
{"version":3,"file":"hubspot.components.d.ts","sourceRoot":"","sources":["../../../../src/components/integrations/hubspot.components.tsx"],"names":[],"mappings":"AAGA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAMnD,wBAAgB,uBAAuB,CAAC,MAAM,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,QAUvE;AAuBD,MAAM,MAAM,eAAe,GAAG,UAAU,CAAC,OAAO,WAAW,CAAC,SAAS,CAAC,CAAC;AACvE,wBAAgB,WAAW,CAAC,EAC3B,MAAM,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,WAAsC,EACxE,EAAE,eAAe,2CA+BjB;yBAjCe,WAAW;;QAZ3B,0BAA0B;;QAEzB,gCAAgC;;QAEhC,wBAAwB;;QAExB,kDAAkD;;QAElD,mDAAmD;;;;AAmDpD,MAAM,MAAM,uBAAuB,GAAG,UAAU,CAAC,OAAO,mBAAmB,CAAC,SAAS,CAAC,CAAC;AACvF,wBAAgB,mBAAmB,CAAC,KAAK,EAAE,uBAAuB,2CAQjE;yBARe,mBAAmB;;QAJnC,sDAAsD;;;;AAiCtD,MAAM,MAAM,6BAA6B,GAAG,UAAU,CAAC,OAAO,yBAAyB,CAAC,SAAS,CAAC,CAAC;AACnG,wBAAsB,yBAAyB,CAAC,KAAK,EAAE,6BAA6B,gBAmBnF;yBAnBqB,yBAAyB;;QAR/C,kDAAkD;;QAEjD,wBAAwB;;QAExB,4CAA4C"}
|
|
@@ -3,12 +3,19 @@ export type InstagramTilesType = InferProps<typeof InstagramTiles.propTypes>;
|
|
|
3
3
|
export declare function InstagramTiles(props: InstagramTilesType): import("react/jsx-runtime").JSX.Element;
|
|
4
4
|
export declare namespace InstagramTiles {
|
|
5
5
|
var propTypes: {
|
|
6
|
+
/** Instagram access token */
|
|
6
7
|
accessToken: PropTypes.Requireable<string>;
|
|
8
|
+
/** Instagram user ID */
|
|
7
9
|
userId: PropTypes.Requireable<string>;
|
|
10
|
+
/** Max number of media items to fetch */
|
|
8
11
|
limit: PropTypes.Requireable<number>;
|
|
12
|
+
/** Number of columns/rows used by Tiles layout */
|
|
9
13
|
rowCount: PropTypes.Requireable<number>;
|
|
14
|
+
/** Prefer thumbnails when available */
|
|
10
15
|
useThumbnails: PropTypes.Requireable<boolean>;
|
|
16
|
+
/** Include video posts */
|
|
11
17
|
includeVideos: PropTypes.Requireable<boolean>;
|
|
18
|
+
/** Include captions in tile metadata */
|
|
12
19
|
includeCaptions: PropTypes.Requireable<boolean>;
|
|
13
20
|
};
|
|
14
21
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"instagram.components.d.ts","sourceRoot":"","sources":["../../../../src/components/integrations/instagram.components.tsx"],"names":[],"mappings":"AAGA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;
|
|
1
|
+
{"version":3,"file":"instagram.components.d.ts","sourceRoot":"","sources":["../../../../src/components/integrations/instagram.components.tsx"],"names":[],"mappings":"AAGA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAiCnD,MAAM,MAAM,kBAAkB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,SAAS,CAAC,CAAC;AAC7E,wBAAgB,cAAc,CAAC,KAAK,EAAE,kBAAkB,2CAyDvD;yBAzDe,cAAc;;QAhB9B,6BAA6B;;QAE5B,wBAAwB;;QAExB,yCAAyC;;QAEzC,kDAAkD;;QAElD,uCAAuC;;QAEvC,0BAA0B;;QAE1B,wCAAwC"}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import PropTypes, { InferProps } from 'prop-types';
|
|
2
|
+
export type LipsumType = InferProps<typeof getLipsum.propTypes>;
|
|
3
|
+
export declare function getLipsum(props: LipsumType): Promise<string[]>;
|
|
4
|
+
export declare namespace getLipsum {
|
|
5
|
+
var propTypes: {
|
|
6
|
+
/** Type of lipsum content to request */
|
|
7
|
+
LipsumTypeId: PropTypes.Validator<string>;
|
|
8
|
+
/** Number of items to request */
|
|
9
|
+
Amount: PropTypes.Validator<number>;
|
|
10
|
+
/** Start with the canonical Lorem Ipsum text */
|
|
11
|
+
StartWithLoremIpsum: PropTypes.Requireable<boolean>;
|
|
12
|
+
};
|
|
13
|
+
}
|
|
14
|
+
//# sourceMappingURL=lipsum.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"lipsum.d.ts","sourceRoot":"","sources":["../../../../src/components/integrations/lipsum.tsx"],"names":[],"mappings":"AAAA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAmBnD,MAAM,MAAM,UAAU,GAAG,UAAU,CAAC,OAAO,SAAS,CAAC,SAAS,CAAC,CAAC;AAChE,wBAAsB,SAAS,CAAC,KAAK,EAAE,UAAU,GAAG,OAAO,CAAC,MAAM,EAAE,CAAC,CA2BpE;yBA3BqB,SAAS;;QAR/B,wCAAwC;;QAEvC,iCAAiC;;QAEjC,gDAAgD"}
|
|
@@ -5,9 +5,13 @@ export type LoremIpsumType = InferProps<typeof LoremIpsum.propTypes> & {
|
|
|
5
5
|
export declare function LoremIpsum({ paragraphs, seed, proxyBase, className }: LoremIpsumType): import("react/jsx-runtime").JSX.Element;
|
|
6
6
|
export declare namespace LoremIpsum {
|
|
7
7
|
var propTypes: {
|
|
8
|
+
/** Paragraph count to request */
|
|
8
9
|
paragraphs: PropTypes.Requireable<number>;
|
|
10
|
+
/** Optional deterministic seed for content */
|
|
9
11
|
seed: PropTypes.Requireable<string>;
|
|
12
|
+
/** Proxy base URL used as a fallback */
|
|
10
13
|
proxyBase: PropTypes.Requireable<string>;
|
|
14
|
+
/** Wrapper CSS class name */
|
|
11
15
|
className: PropTypes.Requireable<string>;
|
|
12
16
|
};
|
|
13
17
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"loremipsum.d.ts","sourceRoot":"","sources":["../../../../src/components/integrations/loremipsum.tsx"],"names":[],"mappings":"AAGA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;
|
|
1
|
+
{"version":3,"file":"loremipsum.d.ts","sourceRoot":"","sources":["../../../../src/components/integrations/loremipsum.tsx"],"names":[],"mappings":"AAGA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAuBnD,MAAM,MAAM,cAAc,GAAG,UAAU,CAAC,OAAO,UAAU,CAAC,SAAS,CAAC,GAAG;IAAE,SAAS,CAAC,EAAE,MAAM,CAAA;CAAE,CAAC;AAC9F,wBAAgB,UAAU,CAAC,EAAE,UAAc,EAAE,IAAS,EAAE,SAAS,EAAE,SAAc,EAAE,EAAE,cAAc,2CAyGlG;yBAzGe,UAAU;;QAV1B,iCAAiC;;QAEhC,8CAA8C;;QAE9C,wCAAwC;;QAExC,6BAA6B"}
|
|
@@ -4,6 +4,7 @@ export type SocialCardsType = InferProps<typeof SocialCards.propTypes>;
|
|
|
4
4
|
export declare function SocialCards(props: SocialCardsType): import("react/jsx-runtime").JSX.Element | never[];
|
|
5
5
|
export declare namespace SocialCards {
|
|
6
6
|
var propTypes: {
|
|
7
|
+
/** Map of feed source configurations (e.g., { instagram: { userID, entryCount }, blog: { url, entryCount }, ... }) */
|
|
7
8
|
sources: PropTypes.Validator<object>;
|
|
8
9
|
};
|
|
9
10
|
}
|
|
@@ -11,8 +12,11 @@ export type SocialCardType = InferProps<typeof SocialCard.propTypes>;
|
|
|
11
12
|
export declare function SocialCard(props: SocialCardType): import("react/jsx-runtime").JSX.Element;
|
|
12
13
|
export declare namespace SocialCard {
|
|
13
14
|
var propTypes: {
|
|
15
|
+
/** Source icon image URL */
|
|
14
16
|
iconSrc: PropTypes.Validator<string>;
|
|
17
|
+
/** Alt text for the icon */
|
|
15
18
|
iconSrcAlt: PropTypes.Validator<string>;
|
|
19
|
+
/** Feed item object with title/link/description/pubDate */
|
|
16
20
|
card: PropTypes.Validator<any>;
|
|
17
21
|
};
|
|
18
22
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"socialcard.d.ts","sourceRoot":"","sources":["../../../../src/components/integrations/socialcard.tsx"],"names":[],"mappings":"AACA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAInD,OAAO,kBAAkB,CAAC;
|
|
1
|
+
{"version":3,"file":"socialcard.d.ts","sourceRoot":"","sources":["../../../../src/components/integrations/socialcard.tsx"],"names":[],"mappings":"AACA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAInD,OAAO,kBAAkB,CAAC;AAuC1B,MAAM,MAAM,eAAe,GAAG,UAAU,CAAC,OAAO,WAAW,CAAC,SAAS,CAAC,CAAC;AACvE,wBAAgB,WAAW,CAAC,KAAK,EAAE,eAAe,qDAoNjD;yBApNe,WAAW;;QAJ3B,sHAAsH;;;;AAyOtH,MAAM,MAAM,cAAc,GAAG,UAAU,CAAC,OAAO,UAAU,CAAC,SAAS,CAAC,CAAC;AACrE,wBAAgB,UAAU,CAAC,KAAK,EAAE,cAAc,2CAoB/C;yBApBe,UAAU;;QAR1B,4BAA4B;;QAE3B,4BAA4B;;QAE5B,2DAA2D;;;;AAgC5D,MAAM,MAAM,sBAAsB,GAAG,UAAU,CAAC,OAAO,kBAAkB,CAAC,SAAS,CAAC,CAAC;AACrF,wBAAgB,kBAAkB,4CAMjC;yBANe,kBAAkB"}
|
|
@@ -4,10 +4,15 @@ export type BlogPostListType = InferProps<typeof BlogPostList.propTypes>;
|
|
|
4
4
|
export declare function BlogPostList(props: BlogPostListType): import("react/jsx-runtime").JSX.Element;
|
|
5
5
|
export declare namespace BlogPostList {
|
|
6
6
|
var propTypes: {
|
|
7
|
+
/** WordPress site identifier */
|
|
7
8
|
site: PropTypes.Requireable<string>;
|
|
9
|
+
/** Optional WordPress base URL */
|
|
8
10
|
baseURL: PropTypes.Requireable<string>;
|
|
11
|
+
/** Max number of posts to fetch/display */
|
|
9
12
|
count: PropTypes.Requireable<number>;
|
|
13
|
+
/** Optional array of pre-fetched posts */
|
|
10
14
|
posts: PropTypes.Requireable<any[]>;
|
|
15
|
+
/** Show category icons next to posts */
|
|
11
16
|
showCategories: PropTypes.Requireable<boolean>;
|
|
12
17
|
};
|
|
13
18
|
}
|
|
@@ -15,13 +20,21 @@ export type BlogPostSummaryType = InferProps<typeof BlogPostSummary.propTypes>;
|
|
|
15
20
|
export declare function BlogPostSummary(props: BlogPostSummaryType): import("react/jsx-runtime").JSX.Element;
|
|
16
21
|
export declare namespace BlogPostSummary {
|
|
17
22
|
var propTypes: {
|
|
23
|
+
/** Post ID (string or number) */
|
|
18
24
|
ID: PropTypes.Requireable<NonNullable<string | number | null | undefined>>;
|
|
25
|
+
/** Post title */
|
|
19
26
|
title: PropTypes.Requireable<string>;
|
|
27
|
+
/** Post publish date (ISO string) */
|
|
20
28
|
date: PropTypes.Requireable<string>;
|
|
29
|
+
/** HTML excerpt */
|
|
21
30
|
excerpt: PropTypes.Requireable<string>;
|
|
31
|
+
/** Canonical URL for the post */
|
|
22
32
|
URL: PropTypes.Requireable<string>;
|
|
33
|
+
/** Categories object used for icons */
|
|
23
34
|
categories: PropTypes.Requireable<object>;
|
|
35
|
+
/** Featured image URL */
|
|
24
36
|
featured_image: PropTypes.Requireable<string>;
|
|
37
|
+
/** Show categories flag */
|
|
25
38
|
showCategories: PropTypes.Requireable<boolean>;
|
|
26
39
|
};
|
|
27
40
|
}
|
|
@@ -29,6 +42,7 @@ export type BlogPostCategoriesType = InferProps<typeof BlogPostCategories.propTy
|
|
|
29
42
|
export declare function BlogPostCategories(props: BlogPostCategoriesType): import("react/jsx-runtime").JSX.Element | null;
|
|
30
43
|
export declare namespace BlogPostCategories {
|
|
31
44
|
var propTypes: {
|
|
45
|
+
/** Array of category names */
|
|
32
46
|
categories: PropTypes.Requireable<(string | null | undefined)[]>;
|
|
33
47
|
};
|
|
34
48
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"wordpress.components.d.ts","sourceRoot":"","sources":["../../../../src/components/integrations/wordpress.components.tsx"],"names":[],"mappings":"AAGA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAQnD,OAAO,iBAAiB,CAAC;
|
|
1
|
+
{"version":3,"file":"wordpress.components.d.ts","sourceRoot":"","sources":["../../../../src/components/integrations/wordpress.components.tsx"],"names":[],"mappings":"AAGA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAQnD,OAAO,iBAAiB,CAAC;AAgCzB,MAAM,MAAM,gBAAgB,GAAG,UAAU,CAAC,OAAO,YAAY,CAAC,SAAS,CAAC,CAAC;AACzE,wBAAgB,YAAY,CAAC,KAAK,EAAE,gBAAgB,2CAsDnD;yBAtDe,YAAY;;QAZ5B,gCAAgC;;QAE/B,kCAAkC;;QAElC,2CAA2C;;QAE3C,0CAA0C;;QAE1C,wCAAwC;;;;AA0FzC,MAAM,MAAM,mBAAmB,GAAG,UAAU,CAAC,OAAO,eAAe,CAAC,SAAS,CAAC,CAAC;AAC/E,wBAAgB,eAAe,CAAC,KAAK,EAAE,mBAAmB,2CAgDzD;yBAhDe,eAAe;;QAlB/B,iCAAiC;;QAEhC,iBAAiB;;QAEjB,qCAAqC;;QAErC,mBAAmB;;QAEnB,iCAAiC;;QAEjC,uCAAuC;;QAEvC,yBAAyB;;QAEzB,2BAA2B;;;;AAiE5B,MAAM,MAAM,sBAAsB,GAAG,UAAU,CAAC,OAAO,kBAAkB,CAAC,SAAS,CAAC,CAAC;AACrF,wBAAgB,kBAAkB,CAAC,KAAK,EAAE,sBAAsB,kDAyB/D;yBAzBe,kBAAkB;;QAJlC,8BAA8B"}
|
|
@@ -23,8 +23,11 @@ export declare function getWordPressItems(props: {
|
|
|
23
23
|
}): Promise<BlogPostType[] | undefined>;
|
|
24
24
|
export declare namespace getWordPressItems {
|
|
25
25
|
var propTypes: {
|
|
26
|
+
/** WordPress site identifier (slug or domain) */
|
|
26
27
|
site: PropTypes.Validator<string>;
|
|
28
|
+
/** Number of posts to fetch (optional) */
|
|
27
29
|
count: PropTypes.Requireable<number>;
|
|
30
|
+
/** Base URL for WordPress API (optional) */
|
|
28
31
|
baseURL: PropTypes.Requireable<string>;
|
|
29
32
|
};
|
|
30
33
|
}
|
|
@@ -38,6 +41,7 @@ export type getWordPressItemImagesType = InferProps<typeof getWordPressItemImage
|
|
|
38
41
|
export declare function getWordPressItemImages(item: BlogPostType): WordPressSitemapImage[];
|
|
39
42
|
export declare namespace getWordPressItemImages {
|
|
40
43
|
var propTypes: {
|
|
44
|
+
/** WordPress post object */
|
|
41
45
|
item: PropTypes.Validator<object>;
|
|
42
46
|
};
|
|
43
47
|
}
|
|
@@ -56,7 +60,9 @@ export declare function getWordPressCategories(props: {
|
|
|
56
60
|
}): Promise<any[] | undefined>;
|
|
57
61
|
export declare namespace getWordPressCategories {
|
|
58
62
|
var propTypes: {
|
|
63
|
+
/** WordPress site identifier (slug or domain) */
|
|
59
64
|
site: PropTypes.Validator<string>;
|
|
65
|
+
/** Base URL for WordPress API (optional) */
|
|
60
66
|
baseURL: PropTypes.Requireable<string>;
|
|
61
67
|
};
|
|
62
68
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"wordpress.functions.d.ts","sourceRoot":"","sources":["../../../../src/components/integrations/wordpress.functions.ts"],"names":[],"mappings":"AACA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAWnD,MAAM,MAAM,YAAY,GAAG;IACvB,EAAE,EAAE,MAAM,CAAC;IACX,KAAK,EAAE,MAAM,CAAC;IACd,IAAI,EAAE,MAAM,CAAC;IACb,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,OAAO,EAAE,MAAM,CAAC;IAChB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,GAAG,EAAE,MAAM,CAAC;IACZ,UAAU,EAAE,MAAM,EAAE,CAAC;IACxB,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,cAAc,CAAC,EAAE;QAChB,GAAG,EAAE,MAAM,CAAC;KACZ,CAAA;IACD,WAAW,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;CAClC,CAAC;
|
|
1
|
+
{"version":3,"file":"wordpress.functions.d.ts","sourceRoot":"","sources":["../../../../src/components/integrations/wordpress.functions.ts"],"names":[],"mappings":"AACA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAWnD,MAAM,MAAM,YAAY,GAAG;IACvB,EAAE,EAAE,MAAM,CAAC;IACX,KAAK,EAAE,MAAM,CAAC;IACd,IAAI,EAAE,MAAM,CAAC;IACb,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,OAAO,EAAE,MAAM,CAAC;IAChB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,GAAG,EAAE,MAAM,CAAC;IACZ,UAAU,EAAE,MAAM,EAAE,CAAC;IACxB,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,cAAc,CAAC,EAAE;QAChB,GAAG,EAAE,MAAM,CAAC;KACZ,CAAA;IACD,WAAW,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;CAClC,CAAC;AAgBF,MAAM,MAAM,qBAAqB,GAAG,UAAU,CAAC,OAAO,iBAAiB,CAAC,SAAS,CAAC,CAAC;AACnF,wBAAsB,iBAAiB,CAAC,KAAK,EAAE;IAAE,IAAI,EAAE,MAAM,CAAC;IAAC,KAAK,CAAC,EAAE,MAAM,CAAC;IAAC,OAAO,CAAC,EAAE,MAAM,CAAA;CAAE,uCAkChG;yBAlCqB,iBAAiB;;QARvC,iDAAiD;;QAEhD,0CAA0C;;QAE1C,4CAA4C;;;;AA4C7C,MAAM,MAAM,qBAAqB,GAAG;IACnC,GAAG,EAAE,MAAM,CAAC;IACZ,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,aAAa,CAAC,EAAE,MAAM,CAAC;CACvB,CAAC;AAUF,MAAM,MAAM,0BAA0B,GAAG,UAAU,CAAC,OAAO,sBAAsB,CAAC,SAAS,CAAC,CAAC;AAC7F,wBAAgB,sBAAsB,CAAC,IAAI,EAAE,YAAY,GAAG,qBAAqB,EAAE,CAuClF;yBAvCe,sBAAsB;;QAJtC,4BAA4B;;;;AAkD5B,MAAM,MAAM,oBAAoB,GAAG;IAClC,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,EAAE,MAAM,CAAC;IACb,WAAW,EAAE,MAAM,CAAC;IACpB,UAAU,EAAE,MAAM,CAAC;IACnB,QAAQ,EAAE,MAAM,CAAC;CACjB,CAAC;AAaF,MAAM,MAAM,0BAA0B,GAAG,UAAU,CAAC,OAAO,sBAAsB,CAAC,SAAS,CAAC,CAAC;AAC7F,wBAAsB,sBAAsB,CAAC,KAAK,EAAE;IAAE,IAAI,EAAE,MAAM,CAAC;IAAC,OAAO,CAAC,EAAE,MAAM,CAAA;CAAE,8BAerF;yBAfqB,sBAAsB;;QAN5C,iDAAiD;;QAEhD,4CAA4C;;;;AAqB7C;;;;GAIG;AACH,wBAAgB,mBAAmB,CAAC,SAAS,EAAE,MAAM,GAAG,MAAM,CAkB7D"}
|
|
@@ -3,7 +3,9 @@ export type YelpReviewsType = InferProps<typeof YelpReviews.propTypes>;
|
|
|
3
3
|
export declare function YelpReviews(props: YelpReviewsType): import("react/jsx-runtime").JSX.Element;
|
|
4
4
|
export declare namespace YelpReviews {
|
|
5
5
|
var propTypes: {
|
|
6
|
+
/** Yelp business identifier */
|
|
6
7
|
businessID: PropTypes.Validator<string>;
|
|
8
|
+
/** Optional Yelp API key */
|
|
7
9
|
key: PropTypes.Requireable<string>;
|
|
8
10
|
};
|
|
9
11
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"yelp.d.ts","sourceRoot":"","sources":["../../../../src/components/integrations/yelp.tsx"],"names":[],"mappings":"AAIA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;
|
|
1
|
+
{"version":3,"file":"yelp.d.ts","sourceRoot":"","sources":["../../../../src/components/integrations/yelp.tsx"],"names":[],"mappings":"AAIA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AA6BnD,MAAM,MAAM,eAAe,GAAG,UAAU,CAAC,OAAO,WAAW,CAAC,SAAS,CAAC,CAAC;AACvE,wBAAgB,WAAW,CAAC,KAAK,EAAE,eAAe,2CAwDjD;yBAxDe,WAAW;;QAN3B,+BAA+B;;QAE9B,4BAA4B"}
|
|
@@ -5,7 +5,9 @@ export type EbayItemsType = InferProps<typeof EbayItems.propTypes>;
|
|
|
5
5
|
export declare function EbayItems(props: EbayItemsType): import("react/jsx-runtime").JSX.Element;
|
|
6
6
|
export declare namespace EbayItems {
|
|
7
7
|
var propTypes: {
|
|
8
|
+
/** eBay API configuration and query params */
|
|
8
9
|
apiProps: PropTypes.Validator<object>;
|
|
10
|
+
/** Optional Cloudinary product environment for image transforms */
|
|
9
11
|
cloudinaryProductEnv: PropTypes.Requireable<string>;
|
|
10
12
|
};
|
|
11
13
|
}
|
|
@@ -13,7 +15,9 @@ export type EbayListFilterType = InferProps<typeof EbayListFilter.propTypes>;
|
|
|
13
15
|
export declare function EbayListFilter(props: EbayListFilterType): import("react/jsx-runtime").JSX.Element | null;
|
|
14
16
|
export declare namespace EbayListFilter {
|
|
15
17
|
var propTypes: {
|
|
18
|
+
/** Aspect distributions used to render filter controls */
|
|
16
19
|
aspects: PropTypes.Validator<any>;
|
|
20
|
+
/** Callback to fetch filtered results */
|
|
17
21
|
callback: PropTypes.Validator<(...args: any[]) => any>;
|
|
18
22
|
};
|
|
19
23
|
}
|
|
@@ -21,8 +25,11 @@ export type EbayListItemType = InferProps<typeof EbayListItem.propTypes>;
|
|
|
21
25
|
export declare function EbayListItem(props: EbayListItemType): import("react/jsx-runtime").JSX.Element;
|
|
22
26
|
export declare namespace EbayListItem {
|
|
23
27
|
var propTypes: {
|
|
28
|
+
/** eBay item object */
|
|
24
29
|
item: PropTypes.Validator<any>;
|
|
30
|
+
/** Optional Cloudinary product environment */
|
|
25
31
|
cloudinaryProductEnv: PropTypes.Requireable<string>;
|
|
32
|
+
/** eBay API properties */
|
|
26
33
|
apiProps: PropTypes.Requireable<any>;
|
|
27
34
|
};
|
|
28
35
|
}
|
|
@@ -30,8 +37,11 @@ export type EbayItemHeaderType = InferProps<typeof EbayItemHeader.propTypes>;
|
|
|
30
37
|
export declare function EbayItemHeader(props: EbayItemHeaderType): import("react/jsx-runtime").JSX.Element;
|
|
31
38
|
export declare namespace EbayItemHeader {
|
|
32
39
|
var propTypes: {
|
|
40
|
+
/** The item title text */
|
|
33
41
|
title: PropTypes.Validator<string>;
|
|
42
|
+
/** Optional link URL for the title */
|
|
34
43
|
url: PropTypes.Requireable<string>;
|
|
44
|
+
/** Link target attribute (e.g., '_blank') */
|
|
35
45
|
target: PropTypes.Requireable<string>;
|
|
36
46
|
};
|
|
37
47
|
}
|
|
@@ -39,8 +49,11 @@ export type EbayItemDetailType = InferProps<typeof EbayItemDetail.propTypes>;
|
|
|
39
49
|
export declare function EbayItemDetail(props: EbayItemDetailType): import("react/jsx-runtime").JSX.Element;
|
|
40
50
|
export declare namespace EbayItemDetail {
|
|
41
51
|
var propTypes: {
|
|
52
|
+
/** eBay API configuration */
|
|
42
53
|
apiProps: PropTypes.Validator<object>;
|
|
54
|
+
/** eBay item ID to fetch details for */
|
|
43
55
|
itemID: PropTypes.Validator<string>;
|
|
56
|
+
/** Cloudinary product env for image transforms */
|
|
44
57
|
cloudinaryProductEnv: PropTypes.Requireable<string>;
|
|
45
58
|
};
|
|
46
59
|
}
|
|
@@ -48,7 +61,9 @@ export type EbayRateLimitsVisualizerType = InferProps<typeof EbayRateLimitsVisua
|
|
|
48
61
|
export declare function EbayRateLimitsVisualizer(props: EbayRateLimitsVisualizerType): import("react/jsx-runtime").JSX.Element;
|
|
49
62
|
export declare namespace EbayRateLimitsVisualizer {
|
|
50
63
|
var propTypes: {
|
|
64
|
+
/** OAuth access token for analytics endpoints */
|
|
51
65
|
token: PropTypes.Requireable<string>;
|
|
66
|
+
/** eBay analytics API configuration */
|
|
52
67
|
apiProps: PropTypes.Requireable<object>;
|
|
53
68
|
};
|
|
54
69
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ebay.components.d.ts","sourceRoot":"","sources":["../../../../src/components/shoppingcart/ebay.components.tsx"],"names":[],"mappings":"AAGA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AASnD,OAAO,+BAA+B,CAAC;AACvC,OAAO,YAAY,CAAC;
|
|
1
|
+
{"version":3,"file":"ebay.components.d.ts","sourceRoot":"","sources":["../../../../src/components/shoppingcart/ebay.components.tsx"],"names":[],"mappings":"AAGA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AASnD,OAAO,+BAA+B,CAAC;AACvC,OAAO,YAAY,CAAC;AAkBpB,MAAM,MAAM,aAAa,GAAG,UAAU,CAAC,OAAO,SAAS,CAAC,SAAS,CAAC,CAAC;AACnE,wBAAgB,SAAS,CAAC,KAAK,EAAE,aAAa,2CAmG7C;yBAnGe,SAAS;;QANzB,8CAA8C;;QAE7C,mEAAmE;;;;AAwHpE,MAAM,MAAM,kBAAkB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,SAAS,CAAC,CAAC;AAC7E,wBAAgB,cAAc,CAAC,KAAK,EAAE,kBAAkB,kDAqEvD;yBArEe,cAAc;;QAN9B,0DAA0D;;QAEzD,yCAAyC;;;;AA8F1C,MAAM,MAAM,gBAAgB,GAAG,UAAU,CAAC,OAAO,YAAY,CAAC,SAAS,CAAC,CAAC;AACzE,wBAAgB,YAAY,CAAC,KAAK,EAAE,gBAAgB,2CAwDnD;yBAxDe,YAAY;;QAR5B,uBAAuB;;QAEtB,8CAA8C;;QAE9C,0BAA0B;;;;AA+E3B,MAAM,MAAM,kBAAkB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,SAAS,CAAC,CAAC;AAC7E,wBAAgB,cAAc,CAAC,KAAK,EAAE,kBAAkB,2CASvD;yBATe,cAAc;;QAR9B,0BAA0B;;QAEzB,sCAAsC;;QAEtC,6CAA6C;;;;AAkC9C,MAAM,MAAM,kBAAkB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,SAAS,CAAC,CAAC;AAC7E,wBAAgB,cAAc,CAAC,KAAK,EAAE,kBAAkB,2CAuFvD;yBAvFe,cAAc;;QAR9B,6BAA6B;;QAE5B,wCAAwC;;QAExC,kDAAkD;;;;AA4GnD,MAAM,MAAM,4BAA4B,GAAG,UAAU,CAAC,OAAO,wBAAwB,CAAC,SAAS,CAAC,CAAC;AACjG,wBAAgB,wBAAwB,CAAC,KAAK,EAAE,4BAA4B,2CAgK3E;yBAhKe,wBAAwB;;QANxC,iDAAiD;;QAEhD,uCAAuC"}
|
|
@@ -18,8 +18,11 @@ export type getShoppingCartItemType = InferProps<typeof getShoppingCartItem.prop
|
|
|
18
18
|
export declare function getShoppingCartItem(props: getShoppingCartItemType): ShoppingCartType;
|
|
19
19
|
export declare namespace getShoppingCartItem {
|
|
20
20
|
var propTypes: {
|
|
21
|
+
/** Raw eBay item object */
|
|
21
22
|
thisItem: PropTypes.Validator<any>;
|
|
23
|
+
/** Optional Cloudinary product environment */
|
|
22
24
|
cloudinaryProductEnv: PropTypes.Requireable<string>;
|
|
25
|
+
/** eBay API properties */
|
|
23
26
|
apiProps: PropTypes.Requireable<any>;
|
|
24
27
|
};
|
|
25
28
|
}
|
|
@@ -27,6 +30,7 @@ export type getEbayAppTokenType = InferProps<typeof getEbayAppToken.propTypes>;
|
|
|
27
30
|
export declare function getEbayAppToken(props: getEbayAppTokenType): Promise<any>;
|
|
28
31
|
export declare namespace getEbayAppToken {
|
|
29
32
|
var propTypes: {
|
|
33
|
+
/** eBay API configuration for token retrieval */
|
|
30
34
|
apiProps: PropTypes.Validator<object>;
|
|
31
35
|
};
|
|
32
36
|
}
|
|
@@ -34,7 +38,9 @@ export type getEbayBrowseSearchType = InferProps<typeof getEbayBrowseSearch.prop
|
|
|
34
38
|
export declare function getEbayBrowseSearch(props: getEbayBrowseSearchType): Promise<any>;
|
|
35
39
|
export declare namespace getEbayBrowseSearch {
|
|
36
40
|
var propTypes: {
|
|
41
|
+
/** eBay API configuration */
|
|
37
42
|
apiProps: PropTypes.Validator<object>;
|
|
43
|
+
/** OAuth token to authorize the request */
|
|
38
44
|
token: PropTypes.Validator<string>;
|
|
39
45
|
};
|
|
40
46
|
}
|
|
@@ -42,7 +48,9 @@ export type getEbayBrowseItemType = InferProps<typeof getEbayBrowseItem.propType
|
|
|
42
48
|
export declare function getEbayBrowseItem(props: getEbayBrowseItemType): Promise<any>;
|
|
43
49
|
export declare namespace getEbayBrowseItem {
|
|
44
50
|
var propTypes: {
|
|
51
|
+
/** eBay API configuration */
|
|
45
52
|
apiProps: PropTypes.Validator<object>;
|
|
53
|
+
/** OAuth token to authorize the request */
|
|
46
54
|
token: PropTypes.Validator<string>;
|
|
47
55
|
};
|
|
48
56
|
}
|
|
@@ -53,7 +61,9 @@ export declare function getEbayRateLimits(props: getEbayRateLimitsType): Promise
|
|
|
53
61
|
} | undefined>;
|
|
54
62
|
export declare namespace getEbayRateLimits {
|
|
55
63
|
var propTypes: {
|
|
64
|
+
/** eBay analytics API configuration */
|
|
56
65
|
apiProps: PropTypes.Validator<object>;
|
|
66
|
+
/** OAuth token for analytics requests */
|
|
57
67
|
token: PropTypes.Validator<string>;
|
|
58
68
|
};
|
|
59
69
|
}
|
|
@@ -61,6 +71,7 @@ export type getEbayItemsType = InferProps<typeof getEbayItems.propTypes>;
|
|
|
61
71
|
export declare function getEbayItems(props: getEbayItemsType): Promise<any>;
|
|
62
72
|
export declare namespace getEbayItems {
|
|
63
73
|
var propTypes: {
|
|
74
|
+
/** eBay API configuration and query params */
|
|
64
75
|
apiProps: PropTypes.Validator<object>;
|
|
65
76
|
};
|
|
66
77
|
}
|
|
@@ -68,6 +79,7 @@ export type getEbayItemType = InferProps<typeof getEbayItem.propTypes>;
|
|
|
68
79
|
export declare function getEbayItem(props: getEbayItemType): Promise<any>;
|
|
69
80
|
export declare namespace getEbayItem {
|
|
70
81
|
var propTypes: {
|
|
82
|
+
/** eBay API item config */
|
|
71
83
|
apiProps: PropTypes.Validator<object>;
|
|
72
84
|
};
|
|
73
85
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ebay.functions.d.ts","sourceRoot":"","sources":["../../../../src/components/shoppingcart/ebay.functions.ts"],"names":[],"mappings":"AAAA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AACnD,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,0BAA0B,CAAC;AA4DjE,MAAM,MAAM,WAAW,GAAG;IACtB,QAAQ,EAAE,MAAM,CAAC;IACjB,YAAY,EAAE,MAAM,CAAC;IACrB,UAAU,EAAE,MAAM,CAAC;IACnB,aAAa,EAAE,MAAM,CAAC;IACtB,WAAW,EAAE,MAAM,CAAC;IACpB,WAAW,EAAE,MAAM,CAAC;IACpB,SAAS,EAAE,MAAM,CAAC;IAClB,gBAAgB,EAAE,MAAM,CAAC;IACzB,KAAK,EAAE,MAAM,CAAC;IACd,SAAS,EAAE,MAAM,CAAC;IAClB,QAAQ,EAAE,MAAM,CAAC;IACjB,YAAY,CAAC,EAAE,MAAM,CAAC;CACzB,CAAA;
|
|
1
|
+
{"version":3,"file":"ebay.functions.d.ts","sourceRoot":"","sources":["../../../../src/components/shoppingcart/ebay.functions.ts"],"names":[],"mappings":"AAAA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AACnD,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,0BAA0B,CAAC;AA4DjE,MAAM,MAAM,WAAW,GAAG;IACtB,QAAQ,EAAE,MAAM,CAAC;IACjB,YAAY,EAAE,MAAM,CAAC;IACrB,UAAU,EAAE,MAAM,CAAC;IACnB,aAAa,EAAE,MAAM,CAAC;IACtB,WAAW,EAAE,MAAM,CAAC;IACpB,WAAW,EAAE,MAAM,CAAC;IACpB,SAAS,EAAE,MAAM,CAAC;IAClB,gBAAgB,EAAE,MAAM,CAAC;IACzB,KAAK,EAAE,MAAM,CAAC;IACd,SAAS,EAAE,MAAM,CAAC;IAClB,QAAQ,EAAE,MAAM,CAAC;IACjB,YAAY,CAAC,EAAE,MAAM,CAAC;CACzB,CAAA;AAkBD,MAAM,MAAM,uBAAuB,GAAG,UAAU,CAAC,OAAO,mBAAmB,CAAC,SAAS,CAAC,CAAC;AACvF,wBAAgB,mBAAmB,CAAC,KAAK,EAAE,uBAAuB,oBA4BjE;yBA5Be,mBAAmB;;QARnC,2BAA2B;;QAE1B,8CAA8C;;QAE9C,0BAA0B;;;;AAqD3B,MAAM,MAAM,mBAAmB,GAAG,UAAU,CAAC,OAAO,eAAe,CAAC,SAAS,CAAC,CAAC;AAC/E,wBAAgB,eAAe,CAAC,KAAK,EAAE,mBAAmB,gBA8BzD;yBA9Be,eAAe;;QAJ/B,iDAAiD;;;;AAoDjD,MAAM,MAAM,uBAAuB,GAAG,UAAU,CAAC,OAAO,mBAAmB,CAAC,SAAS,CAAC,CAAC;AACvF,wBAAgB,mBAAmB,CAAC,KAAK,EAAE,uBAAuB,gBAwCjE;yBAxCe,mBAAmB;;QANnC,6BAA6B;;QAE5B,2CAA2C;;;;AA8D5C,MAAM,MAAM,qBAAqB,GAAG,UAAU,CAAC,OAAO,iBAAiB,CAAC,SAAS,CAAC,CAAC;AACnF,wBAAgB,iBAAiB,CAAC,KAAK,EAAE,qBAAqB,gBAwC7D;yBAxCe,iBAAiB;;QANjC,6BAA6B;;QAE5B,2CAA2C;;;;AA8D5C,MAAM,MAAM,qBAAqB,GAAG,UAAU,CAAC,OAAO,iBAAiB,CAAC,SAAS,CAAC,CAAC;AACnF,wBAAgB,iBAAiB,CAAC,KAAK,EAAE,qBAAqB;;;eAyC7D;yBAzCe,iBAAiB;;QANjC,uCAAuC;;QAEtC,yCAAyC;;;;AA6D1C,MAAM,MAAM,gBAAgB,GAAG,UAAU,CAAC,OAAO,YAAY,CAAC,SAAS,CAAC,CAAC;AACzE,wBAAsB,YAAY,CAAC,KAAK,EAAE,gBAAgB,gBAazD;yBAbqB,YAAY;;QAJlC,8CAA8C;;;;AA8B9C,MAAM,MAAM,eAAe,GAAG,UAAU,CAAC,OAAO,WAAW,CAAC,SAAS,CAAC,CAAC;AACvE,wBAAsB,WAAW,CAAC,KAAK,EAAE,eAAe,gBAavD;yBAbqB,WAAW;;QAJjC,2BAA2B;;;;AAwB3B,wBAAgB,kBAAkB,CAAC,KAAK,EAAE,GAAG,gBAuC5C"}
|