@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":"microinteractions.d.ts","sourceRoot":"","sources":["../../../../src/components/general/microinteractions.tsx"],"names":[],"mappings":"AACA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAEnD,OAAO,yBAAyB,CAAC;
|
|
1
|
+
{"version":3,"file":"microinteractions.d.ts","sourceRoot":"","sources":["../../../../src/components/general/microinteractions.tsx"],"names":[],"mappings":"AACA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAEnD,OAAO,yBAAyB,CAAC;AA4CjC,MAAM,MAAM,qBAAqB,GAAG,UAAU,CAAC,OAAO,iBAAiB,CAAC,SAAS,CAAC,CAAC;AACnF,wBAAgB,iBAAiB,CAAC,KAAK,EAAE,qBAAqB,4BAgB7D;yBAhBe,iBAAiB;;QApBjC,wCAAwC;;QAEvC,sDAAsD;;QAEtD,oDAAoD;;QAEpD,+DAA+D;;QAE/D,gDAAgD;;QAEhD,mDAAmD;;QAEnD,+CAA+C;;QAE/C,kDAAkD;;QAElD,2EAA2E"}
|
|
@@ -4,9 +4,13 @@ export type ModalType = InferProps<typeof Modal.propTypes>;
|
|
|
4
4
|
export declare function Modal({ modalContent, modalID, isOpen, handleCloseEvent }: ModalType): import("react/jsx-runtime").JSX.Element;
|
|
5
5
|
export declare namespace Modal {
|
|
6
6
|
var propTypes: {
|
|
7
|
+
/** Content rendered inside the modal dialog. */
|
|
7
8
|
modalContent: PropTypes.Validator<NonNullable<PropTypes.ReactNodeLike>>;
|
|
9
|
+
/** Optional id suffix for the modal; used for legacy DOM-style open/close helpers. */
|
|
8
10
|
modalID: PropTypes.Requireable<string>;
|
|
11
|
+
/** Flag indicating whether the modal is visible. */
|
|
9
12
|
isOpen: PropTypes.Requireable<boolean>;
|
|
13
|
+
/** Optional close callback invoked by escape key, overlay click, or controls. */
|
|
10
14
|
handleCloseEvent: PropTypes.Requireable<(...args: any[]) => any>;
|
|
11
15
|
};
|
|
12
16
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"modal.d.ts","sourceRoot":"","sources":["../../../../src/components/general/modal.tsx"],"names":[],"mappings":"AAGA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AACnD,OAAO,aAAa,CAAC;
|
|
1
|
+
{"version":3,"file":"modal.d.ts","sourceRoot":"","sources":["../../../../src/components/general/modal.tsx"],"names":[],"mappings":"AAGA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AACnD,OAAO,aAAa,CAAC;AAwBrB,MAAM,MAAM,SAAS,GAAG,UAAU,CAAC,OAAO,KAAK,CAAC,SAAS,CAAC,CAAC;AAC3D,wBAAgB,KAAK,CAAC,EAAE,YAAY,EAAE,OAAO,EAAE,MAAc,EAAE,gBAAgB,EAAE,EAAE,SAAS,2CA8F3F;yBA9Fe,KAAK;;QAVrB,gDAAgD;;QAE/C,sFAAsF;;QAEtF,oDAAoD;;QAEpD,iFAAiF;;;;AAoGlF,eAAO,MAAM,eAAe,GAAI,OAAO,UAAU,EAAE,UAAU,MAAM,SAKlE,CAAC"}
|
|
@@ -10,7 +10,9 @@ export type JokeButtonType = InferProps<typeof JokeButton.propTypes>;
|
|
|
10
10
|
declare function JokeButton(props: JokeButtonType): import("react/jsx-runtime").JSX.Element;
|
|
11
11
|
declare namespace JokeButton {
|
|
12
12
|
var propTypes: {
|
|
13
|
+
/** Click handler invoked when the button is pressed (e.g., pause or fetch next). */
|
|
13
14
|
clickFunction: PropTypes.Validator<(...args: any[]) => any>;
|
|
15
|
+
/** Label text to render inside the button. */
|
|
14
16
|
buttonText: PropTypes.Validator<string>;
|
|
15
17
|
};
|
|
16
18
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"nerdjoke.d.ts","sourceRoot":"","sources":["../../../../src/components/general/nerdjoke.tsx"],"names":[],"mappings":"AAGA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AACnD,OAAO,+BAA+B,CAAC;AACvC,OAAO,gBAAgB,CAAC;
|
|
1
|
+
{"version":3,"file":"nerdjoke.d.ts","sourceRoot":"","sources":["../../../../src/components/general/nerdjoke.tsx"],"names":[],"mappings":"AAGA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AACnD,OAAO,+BAA+B,CAAC;AACvC,OAAO,gBAAgB,CAAC;AAexB,MAAM,MAAM,YAAY,GAAG,UAAU,CAAC,OAAO,QAAQ,CAAC,SAAS,CAAC,CAAC;AACjE,wBAAgB,QAAQ,CAAC,KAAK,EAAE,YAAY,2CAsI3C;yBAtIe,QAAQ;;;AAgJxB,MAAM,MAAM,cAAc,GAAG,UAAU,CAAC,OAAO,UAAU,CAAC,SAAS,CAAC,CAAC;AACrE,iBAAS,UAAU,CAAC,KAAK,EAAE,cAAc,2CASxC;kBATQ,UAAU;;QANnB,oFAAoF;;QAEnF,8CAA8C"}
|
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
import { NextResponse } from "next/server";
|
|
2
2
|
import type { NextRequest } from "next/server";
|
|
3
|
+
/**
|
|
4
|
+
* STANDARD_PROXY_MATCHER
|
|
5
|
+
*
|
|
6
|
+
* A statically analyzable matcher array for Next.js middleware.
|
|
7
|
+
* Excludes static assets, images, API routes, and favicons from proxy processing.
|
|
8
|
+
*/
|
|
9
|
+
export declare const STANDARD_PROXY_MATCHER: string[];
|
|
3
10
|
/**
|
|
4
11
|
* handlePixelatedProxy
|
|
5
12
|
*
|
|
@@ -9,12 +16,5 @@ import type { NextRequest } from "next/server";
|
|
|
9
16
|
* TODO: Future enhancement - Accept an options object to allow per-site CSP overrides,
|
|
10
17
|
* enabling/disabling specific permissions (e.g., camera access), or setting custom rate limits.
|
|
11
18
|
*/
|
|
12
|
-
/**
|
|
13
|
-
* STANDARD_PROXY_MATCHER
|
|
14
|
-
*
|
|
15
|
-
* A statically analyzable matcher array for Next.js middleware.
|
|
16
|
-
* Excludes static assets, images, API routes, and favicons from proxy processing.
|
|
17
|
-
*/
|
|
18
|
-
export declare const STANDARD_PROXY_MATCHER: string[];
|
|
19
19
|
export declare function handlePixelatedProxy(req: NextRequest): NextResponse<unknown>;
|
|
20
20
|
//# sourceMappingURL=proxy-handler.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"proxy-handler.d.ts","sourceRoot":"","sources":["../../../../src/components/general/proxy-handler.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,aAAa,CAAC;AAC3C,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;
|
|
1
|
+
{"version":3,"file":"proxy-handler.d.ts","sourceRoot":"","sources":["../../../../src/components/general/proxy-handler.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,aAAa,CAAC;AAC3C,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;AAI/C;;;;;GAKG;AACH,eAAO,MAAM,sBAAsB,UAAwD,CAAC;AAE5F;;;;;;;;GAQG;AACH,wBAAgB,oBAAoB,CAAC,GAAG,EAAE,WAAW,yBAoDpD"}
|
|
@@ -18,9 +18,12 @@ export type RecipeBookType = InferProps<typeof RecipeBook.propTypes>;
|
|
|
18
18
|
export declare function RecipeBook(props: RecipeBookType): import("react/jsx-runtime").JSX.Element;
|
|
19
19
|
export declare namespace RecipeBook {
|
|
20
20
|
var propTypes: {
|
|
21
|
+
/** Object containing recipe items (schema.org/Recipe objects). */
|
|
21
22
|
recipeData: PropTypes.Validator<NonNullable<PropTypes.InferProps<{
|
|
23
|
+
/** Array of recipe items used to render the book. */
|
|
22
24
|
items: PropTypes.Validator<any[]>;
|
|
23
25
|
}>>>;
|
|
26
|
+
/** Categories used to group recipes in the book (array of strings). */
|
|
24
27
|
recipeCategories: PropTypes.Validator<any[]>;
|
|
25
28
|
};
|
|
26
29
|
}
|
|
@@ -28,9 +31,13 @@ export type RecipeCategoryType = InferProps<typeof RecipeCategory.propTypes>;
|
|
|
28
31
|
export declare function RecipeCategory(props: RecipeCategoryType): import("react/jsx-runtime").JSX.Element;
|
|
29
32
|
export declare namespace RecipeCategory {
|
|
30
33
|
var propTypes: {
|
|
34
|
+
/** DOM id for the category heading. */
|
|
31
35
|
id: PropTypes.Validator<string>;
|
|
36
|
+
/** CSS class names to apply to the heading. */
|
|
32
37
|
className: PropTypes.Validator<string>;
|
|
38
|
+
/** Category display name. */
|
|
33
39
|
category: PropTypes.Validator<string>;
|
|
40
|
+
/** Filter token used to show only a specific recipe or category. */
|
|
34
41
|
showOnly: PropTypes.Validator<string>;
|
|
35
42
|
};
|
|
36
43
|
}
|
|
@@ -38,8 +45,11 @@ export type RecipeBookItemType = InferProps<typeof RecipeBookItem.propTypes>;
|
|
|
38
45
|
export declare function RecipeBookItem(props: RecipeBookItemType): import("react/jsx-runtime").JSX.Element;
|
|
39
46
|
export declare namespace RecipeBookItem {
|
|
40
47
|
var propTypes: {
|
|
48
|
+
/** Normalized recipe data object used to render the recipe view. */
|
|
41
49
|
recipeData: PropTypes.Validator<object>;
|
|
50
|
+
/** DOM id used for deep-linking. */
|
|
42
51
|
id: PropTypes.Validator<string>;
|
|
52
|
+
/** Filter token used when deep-linking or scoping displayed recipes. */
|
|
43
53
|
showOnly: PropTypes.Validator<string>;
|
|
44
54
|
};
|
|
45
55
|
}
|
|
@@ -47,8 +57,11 @@ export type RecipePickListType = InferProps<typeof RecipePickList.propTypes>;
|
|
|
47
57
|
export declare function RecipePickList(props: RecipePickListType): import("react/jsx-runtime").JSX.Element;
|
|
48
58
|
export declare namespace RecipePickList {
|
|
49
59
|
var propTypes: {
|
|
60
|
+
/** Recipe data object containing items used to build the pick list. */
|
|
50
61
|
recipeData: PropTypes.Validator<object>;
|
|
62
|
+
/** Array of category names for grouping recipes in the select. */
|
|
51
63
|
recipeCategories: PropTypes.Validator<any[]>;
|
|
64
|
+
/** Change handler called with the selected recipe identifier when the pick list changes. */
|
|
52
65
|
handleRecipePickListChange: PropTypes.Validator<(...args: any[]) => any>;
|
|
53
66
|
};
|
|
54
67
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"recipe.d.ts","sourceRoot":"","sources":["../../../../src/components/general/recipe.tsx"],"names":[],"mappings":"AAGA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAGnD,OAAO,cAAc,CAAC;AAetB,MAAM,MAAM,gBAAgB,GAAG;IAC9B,IAAI,EAAE,MAAM,CAAC;IACb,KAAK,EAAE,MAAM,CAAC;IACd,OAAO,EAAE,MAAM,CAAC;IAChB,MAAM,EAAE,MAAM,CAAC;IACf,SAAS,EAAE,MAAM,CAAC;IAClB,QAAQ,EAAE,MAAM,CAAC;IACjB,KAAK,EAAE,MAAM,CAAC;IACd,WAAW,EAAE,MAAM,EAAE,CAAC;IACtB,YAAY,EAAE,MAAM,EAAE,CAAC;IACvB,QAAQ,EAAE,MAAM,EAAE,CAAC;IACnB,OAAO,EAAE,MAAM,CAAC;CAChB,CAAC;AAEF,wBAAgB,wBAAwB,CAAC,YAAY,EAAE,GAAG,GAAG,gBAAgB,CAuD5E;
|
|
1
|
+
{"version":3,"file":"recipe.d.ts","sourceRoot":"","sources":["../../../../src/components/general/recipe.tsx"],"names":[],"mappings":"AAGA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAGnD,OAAO,cAAc,CAAC;AAetB,MAAM,MAAM,gBAAgB,GAAG;IAC9B,IAAI,EAAE,MAAM,CAAC;IACb,KAAK,EAAE,MAAM,CAAC;IACd,OAAO,EAAE,MAAM,CAAC;IAChB,MAAM,EAAE,MAAM,CAAC;IACf,SAAS,EAAE,MAAM,CAAC;IAClB,QAAQ,EAAE,MAAM,CAAC;IACjB,KAAK,EAAE,MAAM,CAAC;IACd,WAAW,EAAE,MAAM,EAAE,CAAC;IACtB,YAAY,EAAE,MAAM,EAAE,CAAC;IACvB,QAAQ,EAAE,MAAM,EAAE,CAAC;IACnB,OAAO,EAAE,MAAM,CAAC;CAChB,CAAC;AAEF,wBAAgB,wBAAwB,CAAC,YAAY,EAAE,GAAG,GAAG,gBAAgB,CAuD5E;AAwDD,MAAM,MAAM,cAAc,GAAG,UAAU,CAAC,OAAO,UAAU,CAAC,SAAS,CAAC,CAAC;AACrE,wBAAgB,UAAU,CAAC,KAAK,EAAE,cAAc,2CAkF/C;yBAlFe,UAAU;;QAT1B,kEAAkE;;YAEhE,qDAAqD;;;QAGtD,uEAAuE;;;;AA6GxE,MAAM,MAAM,kBAAkB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,SAAS,CAAC,CAAC;AAC7E,wBAAgB,cAAc,CAAC,KAAK,EAAE,kBAAkB,2CAOvD;yBAPe,cAAc;;QAV9B,uCAAuC;;QAEtC,+CAA+C;;QAE/C,6BAA6B;;QAE7B,oEAAoE;;;;AA+BrE,MAAM,MAAM,kBAAkB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,SAAS,CAAC,CAAC;AAC7E,wBAAgB,cAAc,CAAE,KAAK,EAAE,kBAAkB,2CA0CxD;yBA1Ce,cAAc;;QAR9B,oEAAoE;;QAEnE,oCAAoC;;QAEpC,wEAAwE;;;;AAiEzE,MAAM,MAAM,kBAAkB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,SAAS,CAAC,CAAC;AAC7E,wBAAgB,cAAc,CAAC,KAAK,EAAE,kBAAkB,2CA8CvD;yBA9Ce,cAAc;;QAR9B,uEAAuE;;QAEtE,kEAAkE;;QAElE,4FAA4F;;;;AA0D7F,MAAM,MAAM,aAAa,GAAG,UAAU,CAAC,OAAO,SAAS,CAAC,SAAS,CAAC,CAAC;AACnE,wBAAgB,SAAS,4CAwBxB;yBAxBe,SAAS"}
|
|
@@ -5,6 +5,7 @@ export type ResumeType = InferProps<typeof Resume.propTypes>;
|
|
|
5
5
|
export declare function Resume(props: ResumeType): import("react/jsx-runtime").JSX.Element;
|
|
6
6
|
export declare namespace Resume {
|
|
7
7
|
var propTypes: {
|
|
8
|
+
/** Resume data object (h-resume) */
|
|
8
9
|
data: PropTypes.Validator<any>;
|
|
9
10
|
};
|
|
10
11
|
}
|
|
@@ -12,6 +13,7 @@ export type ResumeNameType = InferProps<typeof ResumeName.propTypes>;
|
|
|
12
13
|
export declare function ResumeName(props: ResumeNameType): import("react/jsx-runtime").JSX.Element;
|
|
13
14
|
export declare namespace ResumeName {
|
|
14
15
|
var propTypes: {
|
|
16
|
+
/** Array containing the name value(s) */
|
|
15
17
|
data: PropTypes.Validator<any>;
|
|
16
18
|
};
|
|
17
19
|
}
|
|
@@ -19,7 +21,9 @@ export type ResumeContactType = InferProps<typeof ResumeContact.propTypes>;
|
|
|
19
21
|
export declare function ResumeContact(props: ResumeContactType): import("react/jsx-runtime").JSX.Element;
|
|
20
22
|
export declare namespace ResumeContact {
|
|
21
23
|
var propTypes: {
|
|
24
|
+
/** Contact microformat data array */
|
|
22
25
|
data: PropTypes.Validator<any>;
|
|
26
|
+
/** Section title */
|
|
23
27
|
title: PropTypes.Validator<string>;
|
|
24
28
|
};
|
|
25
29
|
}
|
|
@@ -27,9 +31,13 @@ export type ResumeEventsType = InferProps<typeof ResumeEvents.propTypes>;
|
|
|
27
31
|
export declare function ResumeEvents(props: ResumeEventsType): import("react/jsx-runtime").JSX.Element;
|
|
28
32
|
export declare namespace ResumeEvents {
|
|
29
33
|
var propTypes: {
|
|
34
|
+
/** Array of event objects (work, education, etc.) */
|
|
30
35
|
data: PropTypes.Validator<any>;
|
|
36
|
+
/** Date format string for display */
|
|
31
37
|
dateFormat: PropTypes.Validator<string>;
|
|
38
|
+
/** When true, events are shown inside a collapsible details element */
|
|
32
39
|
collapsible: PropTypes.Requireable<boolean>;
|
|
40
|
+
/** Section title */
|
|
33
41
|
title: PropTypes.Validator<string>;
|
|
34
42
|
};
|
|
35
43
|
}
|
|
@@ -37,7 +45,9 @@ export type ResumeQualificationsType = InferProps<typeof ResumeQualifications.pr
|
|
|
37
45
|
export declare function ResumeQualifications(props: ResumeQualificationsType): import("react/jsx-runtime").JSX.Element;
|
|
38
46
|
export declare namespace ResumeQualifications {
|
|
39
47
|
var propTypes: {
|
|
48
|
+
/** Qualifications data by category */
|
|
40
49
|
data: PropTypes.Validator<any>;
|
|
50
|
+
/** Section title */
|
|
41
51
|
title: PropTypes.Validator<string>;
|
|
42
52
|
};
|
|
43
53
|
}
|
|
@@ -45,7 +55,9 @@ export type ResumeSkillsType = InferProps<typeof ResumeSkills.propTypes>;
|
|
|
45
55
|
export declare function ResumeSkills(props: ResumeSkillsType): import("react/jsx-runtime").JSX.Element;
|
|
46
56
|
export declare namespace ResumeSkills {
|
|
47
57
|
var propTypes: {
|
|
58
|
+
/** Skills data (categories and lists) */
|
|
48
59
|
data: PropTypes.Validator<any>;
|
|
60
|
+
/** Section title */
|
|
49
61
|
title: PropTypes.Validator<string>;
|
|
50
62
|
};
|
|
51
63
|
}
|
|
@@ -53,7 +65,9 @@ export type ResumeSummaryType = InferProps<typeof ResumeSummary.propTypes>;
|
|
|
53
65
|
export declare function ResumeSummary(props: ResumeSummaryType): import("react/jsx-runtime").JSX.Element;
|
|
54
66
|
export declare namespace ResumeSummary {
|
|
55
67
|
var propTypes: {
|
|
68
|
+
/** Summary text or paragraphs */
|
|
56
69
|
data: PropTypes.Validator<any>;
|
|
70
|
+
/** Section title */
|
|
57
71
|
title: PropTypes.Validator<string>;
|
|
58
72
|
};
|
|
59
73
|
}
|
|
@@ -61,8 +75,11 @@ export type ResumeReferencesType = InferProps<typeof ResumeReferences.propTypes>
|
|
|
61
75
|
export declare function ResumeReferences(props: ResumeReferencesType): import("react/jsx-runtime").JSX.Element;
|
|
62
76
|
export declare namespace ResumeReferences {
|
|
63
77
|
var propTypes: {
|
|
78
|
+
/** Reference objects array */
|
|
64
79
|
data: PropTypes.Validator<any>;
|
|
80
|
+
/** Section title */
|
|
65
81
|
title: PropTypes.Validator<any>;
|
|
82
|
+
/** When true, make the section collapsible */
|
|
66
83
|
collapsible: PropTypes.Requireable<boolean>;
|
|
67
84
|
};
|
|
68
85
|
}
|
|
@@ -70,6 +87,7 @@ export type ResumeReferenceType = InferProps<typeof ResumeReference.propTypes>;
|
|
|
70
87
|
export declare function ResumeReference(props: ResumeReferenceType): import("react/jsx-runtime").JSX.Element;
|
|
71
88
|
export declare namespace ResumeReference {
|
|
72
89
|
var propTypes: {
|
|
90
|
+
/** Reference object with contact details */
|
|
73
91
|
data: PropTypes.Validator<any>;
|
|
74
92
|
};
|
|
75
93
|
}
|
|
@@ -77,8 +95,11 @@ export type ResumeProjectsType = InferProps<typeof ResumeProjects.propTypes>;
|
|
|
77
95
|
export declare function ResumeProjects(props: ResumeProjectsType): import("react/jsx-runtime").JSX.Element;
|
|
78
96
|
export declare namespace ResumeProjects {
|
|
79
97
|
var propTypes: {
|
|
98
|
+
/** Projects array */
|
|
80
99
|
data: PropTypes.Validator<any>;
|
|
100
|
+
/** Section title */
|
|
81
101
|
title: PropTypes.Validator<any>;
|
|
102
|
+
/** When true, make the section collapsible */
|
|
82
103
|
collapsible: PropTypes.Requireable<boolean>;
|
|
83
104
|
};
|
|
84
105
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"resume.d.ts","sourceRoot":"","sources":["../../../../src/components/general/resume.tsx"],"names":[],"mappings":"AAGA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAInD,OAAO,+BAA+B,CAAC;AACvC,OAAO,cAAc,CAAC;
|
|
1
|
+
{"version":3,"file":"resume.d.ts","sourceRoot":"","sources":["../../../../src/components/general/resume.tsx"],"names":[],"mappings":"AAGA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAInD,OAAO,+BAA+B,CAAC;AACvC,OAAO,cAAc,CAAC;AAwCtB,MAAM,MAAM,UAAU,GAAG,UAAU,CAAC,OAAO,MAAM,CAAC,SAAS,CAAC,CAAC;AAC7D,wBAAgB,MAAM,CAAE,KAAK,EAAE,UAAU,2CAyDxC;yBAzDe,MAAM;;QAJtB,oCAAoC;;;;AAwEpC,MAAM,MAAM,cAAc,GAAG,UAAU,CAAC,OAAO,UAAU,CAAC,SAAS,CAAC,CAAC;AACrE,wBAAgB,UAAU,CAAC,KAAK,EAAE,cAAc,2CAO/C;yBAPe,UAAU;;QAJ1B,yCAAyC;;;;AAyBzC,MAAM,MAAM,iBAAiB,GAAG,UAAU,CAAC,OAAO,aAAa,CAAC,SAAS,CAAC,CAAC;AAC3E,wBAAgB,aAAa,CAAC,KAAK,EAAE,iBAAiB,2CAgBrD;yBAhBe,aAAa;;QAN7B,qCAAqC;;QAErC,oBAAoB;;;;AAwCpB,MAAM,MAAM,gBAAgB,GAAG,UAAU,CAAC,OAAO,YAAY,CAAC,SAAS,CAAC,CAAC;AACzE,wBAAgB,YAAY,CAAC,KAAK,EAAE,gBAAgB,2CAyDnD;yBAzDe,YAAY;;QAV5B,qDAAqD;;QAErD,qCAAqC;;QAErC,uEAAuE;;QAEvE,oBAAoB;;;;AA2EpB,MAAM,MAAM,wBAAwB,GAAG,UAAU,CAAC,OAAO,oBAAoB,CAAC,SAAS,CAAC,CAAC;AACzF,wBAAgB,oBAAoB,CAAC,KAAK,EAAE,wBAAwB,2CAkBnE;yBAlBe,oBAAoB;;QANpC,sCAAsC;;QAEtC,oBAAoB;;;;AAoCpB,MAAM,MAAM,gBAAgB,GAAG,UAAU,CAAC,OAAO,YAAY,CAAC,SAAS,CAAC,CAAC;AACzE,wBAAgB,YAAY,CAAE,KAAK,EAAE,gBAAgB,2CAiBpD;yBAjBe,YAAY;;QAN5B,yCAAyC;;QAEzC,oBAAoB;;;;AAmCpB,MAAM,MAAM,iBAAiB,GAAG,UAAU,CAAC,OAAO,aAAa,CAAC,SAAS,CAAC,CAAC;AAC3E,wBAAgB,aAAa,CAAE,KAAK,EAAE,iBAAiB,2CActD;yBAde,aAAa;;QAN7B,iCAAiC;;QAEjC,oBAAoB;;;;AAmCpB,MAAM,MAAM,oBAAoB,GAAG,UAAU,CAAC,OAAO,gBAAgB,CAAC,SAAS,CAAC,CAAC;AACjF,wBAAgB,gBAAgB,CAAE,KAAK,EAAE,oBAAoB,2CA0B5D;yBA1Be,gBAAgB;;QARhC,8BAA8B;;QAE9B,oBAAoB;;QAEpB,8CAA8C;;;;AAyC9C,MAAM,MAAM,mBAAmB,GAAG,UAAU,CAAC,OAAO,eAAe,CAAC,SAAS,CAAC,CAAC;AAC/E,wBAAgB,eAAe,CAAE,KAAK,EAAE,mBAAmB,2CAoB1D;yBApBe,eAAe;;QAJ/B,4CAA4C;;;;AAyC5C,MAAM,MAAM,kBAAkB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,SAAS,CAAC,CAAC;AAC7E,wBAAgB,cAAc,CAAC,KAAK,EAAE,kBAAkB,2CAgDvD;yBAhDe,cAAc;;QAR9B,qBAAqB;;QAErB,oBAAoB;;QAEpB,8CAA8C"}
|
|
@@ -3,6 +3,7 @@ export type SchemaBlogPostingType = InferProps<typeof SchemaBlogPosting.propType
|
|
|
3
3
|
export declare function SchemaBlogPosting(props: SchemaBlogPostingType): import("react/jsx-runtime").JSX.Element;
|
|
4
4
|
export declare namespace SchemaBlogPosting {
|
|
5
5
|
var propTypes: {
|
|
6
|
+
/** Structured BlogPosting JSON-LD object */
|
|
6
7
|
post: PropTypes.Validator<object>;
|
|
7
8
|
};
|
|
8
9
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"schema-blogposting.d.ts","sourceRoot":"","sources":["../../../../src/components/general/schema-blogposting.tsx"],"names":[],"mappings":"AACA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;
|
|
1
|
+
{"version":3,"file":"schema-blogposting.d.ts","sourceRoot":"","sources":["../../../../src/components/general/schema-blogposting.tsx"],"names":[],"mappings":"AACA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAWnD,MAAM,MAAM,qBAAqB,GAAG,UAAU,CAAC,OAAO,iBAAiB,CAAC,SAAS,CAAC,CAAC;AACnF,wBAAgB,iBAAiB,CAAC,KAAK,EAAE,qBAAqB,2CAU7D;yBAVe,iBAAiB;;QAJjC,4CAA4C;;;;AAgB5C,eAAe,iBAAiB,CAAC"}
|
|
@@ -3,21 +3,37 @@ export type LocalBusinessSchemaType = InferProps<typeof LocalBusinessSchema.prop
|
|
|
3
3
|
export declare function LocalBusinessSchema(props: LocalBusinessSchemaType): import("react/jsx-runtime").JSX.Element;
|
|
4
4
|
export declare namespace LocalBusinessSchema {
|
|
5
5
|
var propTypes: {
|
|
6
|
+
/** Business name to include in schema (falls back to siteInfo.name). */
|
|
6
7
|
name: PropTypes.Requireable<string>;
|
|
8
|
+
/** Street address for the business. */
|
|
7
9
|
streetAddress: PropTypes.Requireable<string>;
|
|
10
|
+
/** City or locality for the business address. */
|
|
8
11
|
addressLocality: PropTypes.Requireable<string>;
|
|
12
|
+
/** State/region for the business address. */
|
|
9
13
|
addressRegion: PropTypes.Requireable<string>;
|
|
14
|
+
/** Postal or ZIP code for the address. */
|
|
10
15
|
postalCode: PropTypes.Requireable<string>;
|
|
16
|
+
/** Country for the address (defaults to United States when absent). */
|
|
11
17
|
addressCountry: PropTypes.Requireable<string>;
|
|
18
|
+
/** Contact telephone number. */
|
|
12
19
|
telephone: PropTypes.Requireable<string>;
|
|
20
|
+
/** Canonical website URL. */
|
|
13
21
|
url: PropTypes.Requireable<string>;
|
|
22
|
+
/** Logo image URL for schema/logo property. */
|
|
14
23
|
logo: PropTypes.Requireable<string>;
|
|
24
|
+
/** Representative image URL. */
|
|
15
25
|
image: PropTypes.Requireable<string>;
|
|
26
|
+
/** Opening hours as a string or array in schema.org format (e.g., "Mo-Fr 09:00-17:00"). */
|
|
16
27
|
openingHours: PropTypes.Requireable<NonNullable<string | (string | null | undefined)[] | null | undefined>>;
|
|
28
|
+
/** Short description for schema. */
|
|
17
29
|
description: PropTypes.Requireable<string>;
|
|
30
|
+
/** Contact email address. */
|
|
18
31
|
email: PropTypes.Requireable<string>;
|
|
32
|
+
/** Price range string (e.g. '$$'). */
|
|
19
33
|
priceRange: PropTypes.Requireable<string>;
|
|
34
|
+
/** Array of profile/URL strings for sameAs (social links). */
|
|
20
35
|
sameAs: PropTypes.Requireable<(string | null | undefined)[]>;
|
|
36
|
+
/** Site-level fallback information object (used when props omitted). */
|
|
21
37
|
siteInfo: PropTypes.Requireable<object>;
|
|
22
38
|
};
|
|
23
39
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"schema-localbusiness.d.ts","sourceRoot":"","sources":["../../../../src/components/general/schema-localbusiness.tsx"],"names":[],"mappings":"AACA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;
|
|
1
|
+
{"version":3,"file":"schema-localbusiness.d.ts","sourceRoot":"","sources":["../../../../src/components/general/schema-localbusiness.tsx"],"names":[],"mappings":"AACA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAqEnD,MAAM,MAAM,uBAAuB,GAAG,UAAU,CAAC,OAAO,mBAAmB,CAAC,SAAS,CAAC,CAAC;AACvF,wBAAgB,mBAAmB,CAAE,KAAK,EAAE,uBAAuB,2CAiDlE;yBAjDe,mBAAmB;;QAlCnC,wEAAwE;;QAEvE,uCAAuC;;QAEvC,iDAAiD;;QAEjD,6CAA6C;;QAE7C,0CAA0C;;QAE1C,uEAAuE;;QAEvE,gCAAgC;;QAEhC,6BAA6B;;QAE7B,+CAA+C;;QAE/C,gCAAgC;;QAEhC,2FAA2F;;QAE3F,oCAAoC;;QAEpC,6BAA6B;;QAE7B,sCAAsC;;QAEtC,8DAA8D;;QAE9D,wEAAwE"}
|
|
@@ -3,6 +3,7 @@ export type RecipeSchemaType = InferProps<typeof RecipeSchema.propTypes>;
|
|
|
3
3
|
export declare function RecipeSchema(props: RecipeSchemaType): import("react/jsx-runtime").JSX.Element;
|
|
4
4
|
export declare namespace RecipeSchema {
|
|
5
5
|
var propTypes: {
|
|
6
|
+
/** Recipe information object to be serialized as JSON-LD. */
|
|
6
7
|
recipe: PropTypes.Validator<NonNullable<PropTypes.InferProps<{
|
|
7
8
|
'@context': PropTypes.Validator<string>;
|
|
8
9
|
'@type': PropTypes.Validator<string>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"schema-recipe.d.ts","sourceRoot":"","sources":["../../../../src/components/general/schema-recipe.tsx"],"names":[],"mappings":"AACA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;
|
|
1
|
+
{"version":3,"file":"schema-recipe.d.ts","sourceRoot":"","sources":["../../../../src/components/general/schema-recipe.tsx"],"names":[],"mappings":"AACA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAsDnD,MAAM,MAAM,gBAAgB,GAAG,UAAU,CAAC,OAAO,YAAY,CAAC,SAAS,CAAC,CAAC;AACzE,wBAAgB,YAAY,CAAC,KAAK,EAAE,gBAAgB,2CAQnD;yBARe,YAAY;;QA3B5B,6DAA6D;;;;;;;;;;;;;;;;;;;;;;;;;;;AAqC7D,eAAe,YAAY,CAAC"}
|
|
@@ -12,7 +12,9 @@ export type PageTitleHeaderType = InferProps<typeof PageTitleHeader.propTypes>;
|
|
|
12
12
|
export declare function PageTitleHeader({ title, url }: PageTitleHeaderType): import("react/jsx-runtime").JSX.Element;
|
|
13
13
|
export declare namespace PageTitleHeader {
|
|
14
14
|
var propTypes: {
|
|
15
|
+
/** Page title text (required) */
|
|
15
16
|
title: PropTypes.Validator<string>;
|
|
17
|
+
/** Optional URL to wrap the title with */
|
|
16
18
|
url: PropTypes.Requireable<string>;
|
|
17
19
|
};
|
|
18
20
|
}
|
|
@@ -20,26 +22,46 @@ export type PageSectionType = InferProps<typeof PageSection.propTypes>;
|
|
|
20
22
|
export declare function PageSection({ id, className, layoutType, gap, maxWidth, padding, /* 5px */ background, backgroundImage, columns, autoFlow, justifyItems, direction, wrap, justifyContent, alignItems, children, }: PageSectionType): import("react/jsx-runtime").JSX.Element;
|
|
21
23
|
export declare namespace PageSection {
|
|
22
24
|
var propTypes: {
|
|
25
|
+
/** Optional element id */
|
|
23
26
|
id: PropTypes.Requireable<string>;
|
|
27
|
+
/** Optional CSS classes */
|
|
24
28
|
className: PropTypes.Requireable<string>;
|
|
29
|
+
/** Layout mode ('grid' | 'flex' | 'none') */
|
|
25
30
|
layoutType: PropTypes.Requireable<"none" | "grid" | "flex">;
|
|
31
|
+
/** Gap between children (CSS gap) */
|
|
26
32
|
gap: PropTypes.Requireable<string>;
|
|
33
|
+
/** Max width of the content area */
|
|
27
34
|
maxWidth: PropTypes.Requireable<string>;
|
|
35
|
+
/** Padding applied to content area */
|
|
28
36
|
padding: PropTypes.Requireable<string>;
|
|
37
|
+
/** Background color/string */
|
|
29
38
|
background: PropTypes.Requireable<string>;
|
|
39
|
+
/** Background image URL */
|
|
30
40
|
backgroundImage: PropTypes.Requireable<string>;
|
|
41
|
+
/** Number of columns when using grid layout */
|
|
31
42
|
columns: PropTypes.Requireable<number>;
|
|
43
|
+
/** Grid auto-flow value */
|
|
32
44
|
autoFlow: PropTypes.Requireable<"row" | "column" | "dense" | "row dense" | "column dense">;
|
|
45
|
+
/** Grid justify-items */
|
|
33
46
|
justifyItems: PropTypes.Requireable<"start" | "center" | "end" | "stretch">;
|
|
47
|
+
/** Responsive column config */
|
|
34
48
|
responsive: PropTypes.Requireable<PropTypes.InferProps<{
|
|
49
|
+
/** Mobile column count */
|
|
35
50
|
mobile: PropTypes.Requireable<number>;
|
|
51
|
+
/** Tablet column count */
|
|
36
52
|
tablet: PropTypes.Requireable<number>;
|
|
53
|
+
/** Desktop column count */
|
|
37
54
|
desktop: PropTypes.Requireable<number>;
|
|
38
55
|
}>>;
|
|
56
|
+
/** Flex direction value */
|
|
39
57
|
direction: PropTypes.Requireable<"row" | "column" | "row-reverse" | "column-reverse">;
|
|
58
|
+
/** Flex wrap behavior */
|
|
40
59
|
wrap: PropTypes.Requireable<"nowrap" | "wrap" | "wrap-reverse">;
|
|
60
|
+
/** Flex justify-content value */
|
|
41
61
|
justifyContent: PropTypes.Requireable<"start" | "center" | "end" | "space-between" | "space-around" | "space-evenly">;
|
|
62
|
+
/** Cross-axis alignment for children */
|
|
42
63
|
alignItems: PropTypes.Requireable<"start" | "center" | "end" | "stretch" | "baseline">;
|
|
64
|
+
/** Child nodes */
|
|
43
65
|
children: PropTypes.Requireable<PropTypes.ReactNodeLike>;
|
|
44
66
|
};
|
|
45
67
|
}
|
|
@@ -47,7 +69,9 @@ export type PageSectionHeaderType = InferProps<typeof PageSectionHeader.propType
|
|
|
47
69
|
export declare function PageSectionHeader({ title, url }: PageSectionHeaderType): import("react/jsx-runtime").JSX.Element;
|
|
48
70
|
export declare namespace PageSectionHeader {
|
|
49
71
|
var propTypes: {
|
|
72
|
+
/** Section title text */
|
|
50
73
|
title: PropTypes.Validator<string>;
|
|
74
|
+
/** Optional URL to link the title */
|
|
51
75
|
url: PropTypes.Requireable<string>;
|
|
52
76
|
};
|
|
53
77
|
}
|
|
@@ -55,7 +79,9 @@ export type PageSectionBackgroundImageType = InferProps<typeof PageSectionBackgr
|
|
|
55
79
|
export declare function PageSectionBackgroundImage(props: PageSectionBackgroundImageType): import("react/jsx-runtime").JSX.Element;
|
|
56
80
|
export declare namespace PageSectionBackgroundImage {
|
|
57
81
|
var propTypes: {
|
|
82
|
+
/** Background image URL */
|
|
58
83
|
backgroundImage: PropTypes.Validator<string>;
|
|
84
|
+
/** Optional id for the image element */
|
|
59
85
|
id: PropTypes.Requireable<string>;
|
|
60
86
|
};
|
|
61
87
|
}
|
|
@@ -63,16 +89,27 @@ export type PageGridItemType = InferProps<typeof PageGridItem.propTypes>;
|
|
|
63
89
|
export declare function PageGridItem({ id, className, columnSpan, rowSpan, columnStart, columnEnd, rowStart, rowEnd, alignSelf, justifySelf, children, }: PageGridItemType): import("react/jsx-runtime").JSX.Element;
|
|
64
90
|
export declare namespace PageGridItem {
|
|
65
91
|
var propTypes: {
|
|
92
|
+
/** Optional element id */
|
|
66
93
|
id: PropTypes.Requireable<string>;
|
|
94
|
+
/** Optional CSS classes */
|
|
67
95
|
className: PropTypes.Requireable<string>;
|
|
96
|
+
/** Column span value */
|
|
68
97
|
columnSpan: PropTypes.Requireable<number>;
|
|
98
|
+
/** Row span value */
|
|
69
99
|
rowSpan: PropTypes.Requireable<number>;
|
|
100
|
+
/** Column start index */
|
|
70
101
|
columnStart: PropTypes.Requireable<number>;
|
|
102
|
+
/** Column end index */
|
|
71
103
|
columnEnd: PropTypes.Requireable<number>;
|
|
104
|
+
/** Row start index */
|
|
72
105
|
rowStart: PropTypes.Requireable<number>;
|
|
106
|
+
/** Row end index */
|
|
73
107
|
rowEnd: PropTypes.Requireable<number>;
|
|
108
|
+
/** Cross-axis alignment */
|
|
74
109
|
alignSelf: PropTypes.Requireable<string>;
|
|
110
|
+
/** Main-axis alignment */
|
|
75
111
|
justifySelf: PropTypes.Requireable<string>;
|
|
112
|
+
/** Child nodes */
|
|
76
113
|
children: PropTypes.Requireable<PropTypes.ReactNodeLike>;
|
|
77
114
|
};
|
|
78
115
|
}
|
|
@@ -80,9 +117,13 @@ export type PageFlexItemType = InferProps<typeof PageFlexItem.propTypes>;
|
|
|
80
117
|
export declare function PageFlexItem({ flex, order, alignSelf, children, }: PageFlexItemType): import("react/jsx-runtime").JSX.Element;
|
|
81
118
|
export declare namespace PageFlexItem {
|
|
82
119
|
var propTypes: {
|
|
120
|
+
/** CSS flex shorthand value */
|
|
83
121
|
flex: PropTypes.Requireable<string>;
|
|
122
|
+
/** Flex order value */
|
|
84
123
|
order: PropTypes.Requireable<number>;
|
|
124
|
+
/** Cross-axis alignment override */
|
|
85
125
|
alignSelf: PropTypes.Requireable<string>;
|
|
126
|
+
/** Child nodes */
|
|
86
127
|
children: PropTypes.Requireable<PropTypes.ReactNodeLike>;
|
|
87
128
|
};
|
|
88
129
|
}
|
|
@@ -90,14 +131,23 @@ export type PageHeaderType = InferProps<typeof PageHeader.propTypes>;
|
|
|
90
131
|
export declare function PageHeader({ className, eyebrow, headline, description, ctaLabel, ctaHref, ctaTarget, children, fixed, }: PageHeaderType): import("react/jsx-runtime").JSX.Element;
|
|
91
132
|
export declare namespace PageHeader {
|
|
92
133
|
var propTypes: {
|
|
134
|
+
/** Optional CSS classes */
|
|
93
135
|
className: PropTypes.Requireable<string>;
|
|
136
|
+
/** Eyebrow above the headline */
|
|
94
137
|
eyebrow: PropTypes.Requireable<string>;
|
|
138
|
+
/** Headline text */
|
|
95
139
|
headline: PropTypes.Requireable<string>;
|
|
140
|
+
/** Subheading or description */
|
|
96
141
|
description: PropTypes.Requireable<string>;
|
|
142
|
+
/** CTA label */
|
|
97
143
|
ctaLabel: PropTypes.Requireable<string>;
|
|
144
|
+
/** CTA href */
|
|
98
145
|
ctaHref: PropTypes.Requireable<string>;
|
|
146
|
+
/** CTA target */
|
|
99
147
|
ctaTarget: PropTypes.Requireable<string>;
|
|
148
|
+
/** Additional child nodes */
|
|
100
149
|
children: PropTypes.Requireable<PropTypes.ReactNodeLike>;
|
|
150
|
+
/** When true, header is fixed (sticky) */
|
|
101
151
|
fixed: PropTypes.Requireable<boolean>;
|
|
102
152
|
};
|
|
103
153
|
}
|
|
@@ -105,10 +155,15 @@ export type PageHeroType = InferProps<typeof PageHero.propTypes>;
|
|
|
105
155
|
export declare function PageHero({ id, className, background, backgroundImage, children, }: PageHeroType): import("react/jsx-runtime").JSX.Element;
|
|
106
156
|
export declare namespace PageHero {
|
|
107
157
|
var propTypes: {
|
|
158
|
+
/** Optional id for hero */
|
|
108
159
|
id: PropTypes.Requireable<string>;
|
|
160
|
+
/** Optional CSS classes */
|
|
109
161
|
className: PropTypes.Requireable<string>;
|
|
162
|
+
/** Background color or CSS string */
|
|
110
163
|
background: PropTypes.Requireable<string>;
|
|
164
|
+
/** Background image URL */
|
|
111
165
|
backgroundImage: PropTypes.Requireable<string>;
|
|
166
|
+
/** Child nodes */
|
|
112
167
|
children: PropTypes.Requireable<PropTypes.ReactNodeLike>;
|
|
113
168
|
};
|
|
114
169
|
}
|
|
@@ -116,10 +171,15 @@ export type PageMainType = InferProps<typeof PageMain.propTypes>;
|
|
|
116
171
|
export declare function PageMain({ id, className, maxWidth, padding, children, }: PageMainType): import("react/jsx-runtime").JSX.Element;
|
|
117
172
|
export declare namespace PageMain {
|
|
118
173
|
var propTypes: {
|
|
174
|
+
/** Optional id */
|
|
119
175
|
id: PropTypes.Requireable<string>;
|
|
176
|
+
/** Optional CSS classes */
|
|
120
177
|
className: PropTypes.Requireable<string>;
|
|
178
|
+
/** Max content width */
|
|
121
179
|
maxWidth: PropTypes.Requireable<string>;
|
|
180
|
+
/** Padding for main content */
|
|
122
181
|
padding: PropTypes.Requireable<string>;
|
|
182
|
+
/** Child nodes */
|
|
123
183
|
children: PropTypes.Requireable<PropTypes.ReactNodeLike>;
|
|
124
184
|
};
|
|
125
185
|
}
|
|
@@ -127,8 +187,11 @@ export type PageNavType = InferProps<typeof PageNav.propTypes>;
|
|
|
127
187
|
export declare function PageNav({ className, orientation, links, }: PageNavType): import("react/jsx-runtime").JSX.Element | null;
|
|
128
188
|
export declare namespace PageNav {
|
|
129
189
|
var propTypes: {
|
|
190
|
+
/** Optional CSS classes */
|
|
130
191
|
className: PropTypes.Requireable<string>;
|
|
192
|
+
/** Orientation: 'horizontal' | 'vertical' */
|
|
131
193
|
orientation: PropTypes.Requireable<string>;
|
|
194
|
+
/** Array of link objects */
|
|
132
195
|
links: PropTypes.Requireable<(PropTypes.InferProps<{
|
|
133
196
|
label: PropTypes.Validator<string>;
|
|
134
197
|
href: PropTypes.Validator<string>;
|
|
@@ -140,13 +203,17 @@ export type PageFooterType = InferProps<typeof PageFooter.propTypes>;
|
|
|
140
203
|
export declare function PageFooter({ className, text, links, children, }: PageFooterType): import("react/jsx-runtime").JSX.Element | null;
|
|
141
204
|
export declare namespace PageFooter {
|
|
142
205
|
var propTypes: {
|
|
206
|
+
/** Optional CSS classes */
|
|
143
207
|
className: PropTypes.Requireable<string>;
|
|
208
|
+
/** Footer text */
|
|
144
209
|
text: PropTypes.Requireable<string>;
|
|
210
|
+
/** Footer links */
|
|
145
211
|
links: PropTypes.Requireable<(PropTypes.InferProps<{
|
|
146
212
|
label: PropTypes.Validator<string>;
|
|
147
213
|
href: PropTypes.Validator<string>;
|
|
148
214
|
target: PropTypes.Requireable<string>;
|
|
149
215
|
}> | null | undefined)[]>;
|
|
216
|
+
/** Child nodes */
|
|
150
217
|
children: PropTypes.Requireable<PropTypes.ReactNodeLike>;
|
|
151
218
|
};
|
|
152
219
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"semantic.d.ts","sourceRoot":"","sources":["../../../../src/components/general/semantic.tsx"],"names":[],"mappings":"AAGA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAGnD,OAAO,+BAA+B,CAAC;AACvC,OAAO,iBAAiB,CAAC;AAQzB,eAAO,MAAM,WAAW,mCAAoC,CAAC;AAC7D,eAAO,MAAM,cAAc,kEAAmE,CAAC;AAC/F,eAAO,MAAM,kBAAkB,gDAAiD,CAAC;AACjF,eAAO,MAAM,cAAc,6DAA8D,CAAC;AAC1F,eAAO,MAAM,SAAS,6CAA8C,CAAC;AACrE,eAAO,MAAM,oBAAoB,sFAAuF,CAAC;AACzH,eAAO,MAAM,gBAAgB,4DAA6D,CAAC;
|
|
1
|
+
{"version":3,"file":"semantic.d.ts","sourceRoot":"","sources":["../../../../src/components/general/semantic.tsx"],"names":[],"mappings":"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"}
|
|
@@ -7,16 +7,27 @@ export type SidePanelType = InferProps<typeof SidePanel.propTypes>;
|
|
|
7
7
|
declare function SidePanel({ isOpen, onClose, onToggle, position, width, showOverlay, showTab, tabIcon, tabLabel, children, className }: SidePanelType): React.ReactPortal | null;
|
|
8
8
|
declare namespace SidePanel {
|
|
9
9
|
var propTypes: {
|
|
10
|
+
/** Whether the panel is open (controls visible state). */
|
|
10
11
|
isOpen: PropTypes.Validator<boolean>;
|
|
12
|
+
/** Function called to request closing the panel. */
|
|
11
13
|
onClose: PropTypes.Validator<(...args: any[]) => any>;
|
|
14
|
+
/** Optional toggle callback to open/close the panel. */
|
|
12
15
|
onToggle: PropTypes.Requireable<(...args: any[]) => any>;
|
|
16
|
+
/** Position of the panel on the screen ('left' or 'right'). */
|
|
13
17
|
position: PropTypes.Requireable<"left" | "right">;
|
|
18
|
+
/** CSS width value for the panel (e.g., '300px'). */
|
|
14
19
|
width: PropTypes.Requireable<string>;
|
|
20
|
+
/** When true an overlay is shown and clicking it closes the panel. */
|
|
15
21
|
showOverlay: PropTypes.Requireable<boolean>;
|
|
22
|
+
/** Whether to render a fixed tab toggle for the panel. */
|
|
16
23
|
showTab: PropTypes.Requireable<boolean>;
|
|
24
|
+
/** Optional icon node shown inside the persistent tab. */
|
|
17
25
|
tabIcon: PropTypes.Requireable<PropTypes.ReactNodeLike>;
|
|
26
|
+
/** Optional label text for the tab toggle. */
|
|
18
27
|
tabLabel: PropTypes.Requireable<string>;
|
|
28
|
+
/** Panel content as React children. */
|
|
19
29
|
children: PropTypes.Requireable<PropTypes.ReactNodeLike>;
|
|
30
|
+
/** Extra CSS class names to apply to the component. */
|
|
20
31
|
className: PropTypes.Requireable<string>;
|
|
21
32
|
};
|
|
22
33
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"sidepanel.d.ts","sourceRoot":"","sources":["../../../../src/components/general/sidepanel.tsx"],"names":[],"mappings":"AAGA,OAAO,KAAsC,MAAM,OAAO,CAAC;AAE3D,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AACnD,OAAO,iBAAiB,CAAC;AAGzB,eAAO,MAAM,SAAS,4BAA6B,CAAC;AAGpD,MAAM,MAAM,YAAY,GAAG,OAAO,SAAS,CAAC,MAAM,CAAC,CAAC;
|
|
1
|
+
{"version":3,"file":"sidepanel.d.ts","sourceRoot":"","sources":["../../../../src/components/general/sidepanel.tsx"],"names":[],"mappings":"AAGA,OAAO,KAAsC,MAAM,OAAO,CAAC;AAE3D,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AACnD,OAAO,iBAAiB,CAAC;AAGzB,eAAO,MAAM,SAAS,4BAA6B,CAAC;AAGpD,MAAM,MAAM,YAAY,GAAG,OAAO,SAAS,CAAC,MAAM,CAAC,CAAC;AAyCpD,MAAM,MAAM,aAAa,GAAG,UAAU,CAAC,OAAO,SAAS,CAAC,SAAS,CAAC,CAAC;AACnE,iBAAwB,SAAS,CAAC,EACjC,MAAM,EACN,OAAO,EACP,QAAQ,EACR,QAAiB,EACjB,KAAe,EACf,WAAkB,EAClB,OAAe,EACf,OAAO,EACP,QAAQ,EACR,QAAQ,EACR,SAAc,EACd,EAAE,aAAa,4BA2Ff;kBAvGuB,SAAS;;QAxBjC,0DAA0D;;QAEzD,oDAAoD;;QAEpD,wDAAwD;;QAExD,+DAA+D;;QAE/D,qDAAqD;;QAErD,sEAAsE;;QAEtE,0DAA0D;;QAE1D,0DAA0D;;QAE1D,8CAA8C;;QAE9C,uCAAuC;;QAEvC,uDAAuD;;;;eAIhC,SAAS;AAyGjC,OAAO,EAAE,SAAS,EAAE,CAAC"}
|
|
@@ -92,12 +92,18 @@ export declare function createContentfulURLs(props: createContentfulURLsType): P
|
|
|
92
92
|
}[]>;
|
|
93
93
|
export declare namespace createContentfulURLs {
|
|
94
94
|
var propTypes: {
|
|
95
|
+
/** Contentful API properties */
|
|
95
96
|
apiProps: PropTypes.Validator<NonNullable<PropTypes.InferProps<{
|
|
97
|
+
/** Contentful base URL */
|
|
96
98
|
base_url: PropTypes.Validator<string>;
|
|
99
|
+
/** Contentful space id */
|
|
97
100
|
space_id: PropTypes.Validator<string>;
|
|
101
|
+
/** Contentful environment */
|
|
98
102
|
environment: PropTypes.Validator<string>;
|
|
103
|
+
/** Delivery API token */
|
|
99
104
|
delivery_access_token: PropTypes.Validator<string>;
|
|
100
105
|
}>>>;
|
|
106
|
+
/** Origin used to build absolute URLs */
|
|
101
107
|
origin: PropTypes.Validator<string>;
|
|
102
108
|
};
|
|
103
109
|
}
|
|
@@ -115,12 +121,18 @@ export declare function createContentfulPageBuilderURLs(props: createContentfulP
|
|
|
115
121
|
}[]>;
|
|
116
122
|
export declare namespace createContentfulPageBuilderURLs {
|
|
117
123
|
var propTypes: {
|
|
124
|
+
/** Contentful API properties */
|
|
118
125
|
apiProps: PropTypes.Validator<NonNullable<PropTypes.InferProps<{
|
|
126
|
+
/** Contentful base URL */
|
|
119
127
|
base_url: PropTypes.Validator<string>;
|
|
128
|
+
/** Contentful space id */
|
|
120
129
|
space_id: PropTypes.Validator<string>;
|
|
130
|
+
/** Contentful environment */
|
|
121
131
|
environment: PropTypes.Validator<string>;
|
|
132
|
+
/** Delivery API token */
|
|
122
133
|
delivery_access_token: PropTypes.Validator<string>;
|
|
123
134
|
}>>>;
|
|
135
|
+
/** Origin used to build absolute URLs */
|
|
124
136
|
origin: PropTypes.Validator<string>;
|
|
125
137
|
};
|
|
126
138
|
}
|
|
@@ -128,13 +140,20 @@ export type createContentfulImageURLsType = InferProps<typeof createContentfulIm
|
|
|
128
140
|
export declare function createContentfulImageURLs(props: createContentfulImageURLsType): Promise<SitemapEntry[]>;
|
|
129
141
|
export declare namespace createContentfulImageURLs {
|
|
130
142
|
var propTypes: {
|
|
143
|
+
/** Contentful API properties */
|
|
131
144
|
apiProps: PropTypes.Validator<NonNullable<PropTypes.InferProps<{
|
|
145
|
+
/** Optional proxy URL */
|
|
132
146
|
proxyURL: PropTypes.Requireable<string>;
|
|
147
|
+
/** Contentful base URL */
|
|
133
148
|
base_url: PropTypes.Validator<string>;
|
|
149
|
+
/** Contentful space id */
|
|
134
150
|
space_id: PropTypes.Validator<string>;
|
|
151
|
+
/** Contentful environment */
|
|
135
152
|
environment: PropTypes.Validator<string>;
|
|
153
|
+
/** Access token to read assets */
|
|
136
154
|
access_token: PropTypes.Validator<string>;
|
|
137
155
|
}>>>;
|
|
156
|
+
/** Origin used to convert relative URLs to absolute */
|
|
138
157
|
origin: PropTypes.Validator<string>;
|
|
139
158
|
};
|
|
140
159
|
}
|