@pixelated-tech/components 3.11.9 → 3.13.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/admin/componentusage/componentAnalysis.js +2 -0
- package/dist/components/admin/deploy/deployment.integration.js +8 -0
- package/dist/components/admin/site-health/site-health-accessibility.js +6 -0
- package/dist/components/admin/site-health/site-health-axe-core.js +6 -0
- package/dist/components/admin/site-health/site-health-cloudwatch.js +10 -0
- package/dist/components/admin/site-health/site-health-dependency-vulnerabilities.js +6 -0
- package/dist/components/admin/site-health/site-health-github.js +10 -0
- package/dist/components/admin/site-health/site-health-google-analytics.js +10 -0
- package/dist/components/admin/site-health/site-health-google-search-console.js +10 -0
- package/dist/components/admin/site-health/site-health-mock-context.js +8 -0
- package/dist/components/admin/site-health/site-health-on-site-seo.js +6 -0
- package/dist/components/admin/site-health/site-health-overview.js +6 -0
- package/dist/components/admin/site-health/site-health-performance.js +6 -0
- package/dist/components/admin/site-health/site-health-security.js +6 -0
- package/dist/components/admin/site-health/site-health-seo.js +6 -0
- package/dist/components/admin/site-health/site-health-template.js +28 -0
- package/dist/components/admin/site-health/site-health-uptime.js +6 -0
- package/dist/components/config/config.js +41 -2
- package/dist/components/config/config.server.js +8 -0
- package/dist/components/general/404.js +6 -0
- package/dist/components/general/accordion.js +11 -0
- package/dist/components/general/buzzwordbingo.js +18 -0
- package/dist/components/general/callout.js +65 -2
- package/dist/components/general/carousel.drag.js +12 -0
- package/dist/components/general/carousel.js +50 -0
- package/dist/components/general/faq-accordion.js +15 -0
- package/dist/components/general/global-error.js +12 -0
- package/dist/components/general/hero.js +13 -0
- package/dist/components/general/loading.js +10 -1
- package/dist/components/general/markdown.js +6 -0
- package/dist/components/general/menu-accordion.js +30 -1
- package/dist/components/general/menu-expando.js +24 -1
- package/dist/components/general/menu-simple.js +21 -0
- package/dist/components/general/metadata.components.js +10 -0
- package/dist/components/general/metadata.functions.js +1 -1
- package/dist/components/general/microinteractions.js +22 -0
- package/dist/components/general/modal.js +12 -0
- package/dist/components/general/nerdjoke.js +11 -1
- package/dist/components/general/proxy-handler.js +7 -7
- package/dist/components/general/recipe.js +46 -1
- package/dist/components/general/resume.js +82 -0
- package/dist/components/general/schema-blogposting.js +6 -0
- package/dist/components/general/schema-localbusiness.js +36 -0
- package/dist/components/general/schema-recipe.js +20 -0
- package/dist/components/general/semantic.js +178 -0
- package/dist/components/general/sidepanel.js +26 -0
- package/dist/components/general/sitemap.js +50 -0
- package/dist/components/general/skeleton-loading.js +10 -1
- package/dist/components/general/skeleton.js +15 -0
- package/dist/components/general/smartimage.js +48 -2
- package/dist/components/general/splitscroll.js +21 -10
- package/dist/components/general/styleguide.js +6 -0
- package/dist/components/general/tab.js +12 -0
- package/dist/components/general/table.js +12 -0
- package/dist/components/general/tiles.js +32 -1
- package/dist/components/general/timeline.js +22 -0
- package/dist/components/general/well-known.js +137 -0
- package/dist/components/integrations/calendly.js +10 -0
- package/dist/components/integrations/cloudinary.js +16 -0
- package/dist/components/integrations/contentful.delivery.js +84 -0
- package/dist/components/integrations/contentful.items.components.js +46 -0
- package/dist/components/integrations/contentful.management.js +25 -25
- package/dist/components/integrations/flickr.js +34 -0
- package/dist/components/integrations/google.reviews.components.js +14 -0
- package/dist/components/integrations/googleanalytics.js +14 -0
- package/dist/components/integrations/googlemap.js +20 -0
- package/dist/components/integrations/googlesearch.js +6 -0
- package/dist/components/integrations/gravatar.components.js +59 -0
- package/dist/components/integrations/hubspot.components.js +30 -0
- package/dist/components/integrations/instagram.components.js +18 -0
- package/dist/components/integrations/lipsum.js +45 -0
- package/dist/components/integrations/loremipsum.js +12 -0
- package/dist/components/integrations/socialcard.js +20 -1
- package/dist/components/integrations/wordpress.components.js +40 -0
- package/dist/components/integrations/wordpress.functions.js +24 -0
- package/dist/components/integrations/yelp.js +8 -0
- package/dist/components/shoppingcart/ebay.components.js +70 -0
- package/dist/components/shoppingcart/ebay.functions.js +52 -0
- package/dist/components/shoppingcart/shoppingcart.components.js +89 -0
- package/dist/components/sitebuilder/config/CompoundFontSelector.js +32 -0
- package/dist/components/sitebuilder/config/ConfigBuilder.js +8 -0
- package/dist/components/sitebuilder/config/FontSelector.js +40 -0
- package/dist/components/sitebuilder/form/formbuilder.js +10 -1
- package/dist/components/sitebuilder/form/formcomponents.js +325 -6
- package/dist/components/sitebuilder/form/formengine.js +35 -1
- package/dist/components/sitebuilder/form/formextractor.js +33 -1
- package/dist/components/sitebuilder/form/formutils.js +0 -4
- package/dist/components/sitebuilder/form/formvalidator.js +6 -0
- package/dist/components/sitebuilder/page/components/ComponentPropertiesForm.js +8 -0
- package/dist/components/sitebuilder/page/components/ComponentSelector.js +10 -0
- package/dist/components/sitebuilder/page/components/ComponentTree.js +20 -0
- package/dist/components/sitebuilder/page/components/PageBuilderUI.js +6 -0
- package/dist/components/sitebuilder/page/components/PageEngine.js +20 -0
- package/dist/components/sitebuilder/page/components/SaveLoadSection.js +10 -0
- package/dist/components/sitebuilder/page/lib/pageStorageContentful.js +4 -4
- package/dist/config/pixelated.config.json.enc +1 -1
- package/dist/index.js +1 -1
- package/dist/index.server.js +4 -4
- package/dist/scripts/pixelated-eslint-plugin.js +105 -1
- package/dist/scripts/release.sh +12 -21
- package/dist/types/components/admin/componentusage/componentAnalysis.d.ts +2 -5
- package/dist/types/components/admin/componentusage/componentAnalysis.d.ts.map +1 -1
- package/dist/types/components/admin/deploy/deployment.integration.d.ts +1 -5
- package/dist/types/components/admin/deploy/deployment.integration.d.ts.map +1 -1
- package/dist/types/components/admin/site-health/site-health-accessibility.d.ts +1 -0
- package/dist/types/components/admin/site-health/site-health-accessibility.d.ts.map +1 -1
- package/dist/types/components/admin/site-health/site-health-axe-core.d.ts +1 -0
- package/dist/types/components/admin/site-health/site-health-axe-core.d.ts.map +1 -1
- package/dist/types/components/admin/site-health/site-health-cloudwatch.d.ts +3 -0
- package/dist/types/components/admin/site-health/site-health-cloudwatch.d.ts.map +1 -1
- package/dist/types/components/admin/site-health/site-health-dependency-vulnerabilities.d.ts +1 -0
- package/dist/types/components/admin/site-health/site-health-dependency-vulnerabilities.d.ts.map +1 -1
- package/dist/types/components/admin/site-health/site-health-github.d.ts +3 -0
- package/dist/types/components/admin/site-health/site-health-github.d.ts.map +1 -1
- package/dist/types/components/admin/site-health/site-health-github.integration.d.ts +1 -11
- package/dist/types/components/admin/site-health/site-health-github.integration.d.ts.map +1 -1
- package/dist/types/components/admin/site-health/site-health-google-analytics.d.ts +3 -0
- package/dist/types/components/admin/site-health/site-health-google-analytics.d.ts.map +1 -1
- package/dist/types/components/admin/site-health/site-health-google-search-console.d.ts +3 -0
- package/dist/types/components/admin/site-health/site-health-google-search-console.d.ts.map +1 -1
- package/dist/types/components/admin/site-health/site-health-mock-context.d.ts +8 -0
- package/dist/types/components/admin/site-health/site-health-mock-context.d.ts.map +1 -1
- package/dist/types/components/admin/site-health/site-health-on-site-seo.d.ts +1 -0
- package/dist/types/components/admin/site-health/site-health-on-site-seo.d.ts.map +1 -1
- package/dist/types/components/admin/site-health/site-health-overview.d.ts +1 -0
- package/dist/types/components/admin/site-health/site-health-overview.d.ts.map +1 -1
- package/dist/types/components/admin/site-health/site-health-performance.d.ts +1 -0
- package/dist/types/components/admin/site-health/site-health-performance.d.ts.map +1 -1
- package/dist/types/components/admin/site-health/site-health-security.d.ts +1 -0
- package/dist/types/components/admin/site-health/site-health-security.d.ts.map +1 -1
- package/dist/types/components/admin/site-health/site-health-seo.d.ts +1 -0
- package/dist/types/components/admin/site-health/site-health-seo.d.ts.map +1 -1
- package/dist/types/components/admin/site-health/site-health-template.d.ts +12 -0
- package/dist/types/components/admin/site-health/site-health-template.d.ts.map +1 -1
- package/dist/types/components/admin/site-health/site-health-uptime.d.ts +1 -0
- package/dist/types/components/admin/site-health/site-health-uptime.d.ts.map +1 -1
- package/dist/types/components/admin/sites/sites.integration.d.ts +7 -1
- package/dist/types/components/admin/sites/sites.integration.d.ts.map +1 -1
- package/dist/types/components/config/config.d.ts.map +1 -1
- package/dist/types/components/config/config.server.d.ts +2 -0
- package/dist/types/components/config/config.server.d.ts.map +1 -1
- package/dist/types/components/config/config.types.d.ts +2 -2
- package/dist/types/components/config/config.types.d.ts.map +1 -1
- package/dist/types/components/general/404.d.ts +1 -0
- package/dist/types/components/general/404.d.ts.map +1 -1
- package/dist/types/components/general/accordion.d.ts +2 -0
- package/dist/types/components/general/accordion.d.ts.map +1 -1
- package/dist/types/components/general/buzzwordbingo.d.ts +3 -0
- package/dist/types/components/general/buzzwordbingo.d.ts.map +1 -1
- package/dist/types/components/general/callout.d.ts +24 -0
- package/dist/types/components/general/callout.d.ts.map +1 -1
- package/dist/types/components/general/carousel.d.ts +13 -0
- package/dist/types/components/general/carousel.d.ts.map +1 -1
- package/dist/types/components/general/carousel.drag.d.ts +4 -0
- package/dist/types/components/general/carousel.drag.d.ts.map +1 -1
- package/dist/types/components/general/faq-accordion.d.ts +5 -0
- package/dist/types/components/general/faq-accordion.d.ts.map +1 -1
- package/dist/types/components/general/global-error.d.ts +4 -0
- package/dist/types/components/general/global-error.d.ts.map +1 -1
- package/dist/types/components/general/hero.d.ts +4 -0
- package/dist/types/components/general/hero.d.ts.map +1 -1
- package/dist/types/components/general/loading.d.ts +1 -0
- package/dist/types/components/general/loading.d.ts.map +1 -1
- package/dist/types/components/general/markdown.d.ts +1 -0
- package/dist/types/components/general/markdown.d.ts.map +1 -1
- package/dist/types/components/general/menu-accordion.d.ts +7 -0
- package/dist/types/components/general/menu-accordion.d.ts.map +1 -1
- package/dist/types/components/general/menu-expando.d.ts +6 -0
- package/dist/types/components/general/menu-expando.d.ts.map +1 -1
- package/dist/types/components/general/menu-simple.d.ts +6 -0
- package/dist/types/components/general/menu-simple.d.ts.map +1 -1
- package/dist/types/components/general/metadata.components.d.ts +3 -0
- package/dist/types/components/general/metadata.components.d.ts.map +1 -1
- package/dist/types/components/general/microinteractions.d.ts +9 -0
- package/dist/types/components/general/microinteractions.d.ts.map +1 -1
- package/dist/types/components/general/modal.d.ts +4 -0
- package/dist/types/components/general/modal.d.ts.map +1 -1
- package/dist/types/components/general/nerdjoke.d.ts +2 -0
- package/dist/types/components/general/nerdjoke.d.ts.map +1 -1
- package/dist/types/components/general/proxy-handler.d.ts +7 -7
- package/dist/types/components/general/proxy-handler.d.ts.map +1 -1
- package/dist/types/components/general/recipe.d.ts +13 -0
- package/dist/types/components/general/recipe.d.ts.map +1 -1
- package/dist/types/components/general/resume.d.ts +21 -0
- package/dist/types/components/general/resume.d.ts.map +1 -1
- package/dist/types/components/general/schema-blogposting.d.ts +1 -0
- package/dist/types/components/general/schema-blogposting.d.ts.map +1 -1
- package/dist/types/components/general/schema-localbusiness.d.ts +16 -0
- package/dist/types/components/general/schema-localbusiness.d.ts.map +1 -1
- package/dist/types/components/general/schema-recipe.d.ts +1 -0
- package/dist/types/components/general/schema-recipe.d.ts.map +1 -1
- package/dist/types/components/general/semantic.d.ts +67 -0
- package/dist/types/components/general/semantic.d.ts.map +1 -1
- package/dist/types/components/general/sidepanel.d.ts +11 -0
- package/dist/types/components/general/sidepanel.d.ts.map +1 -1
- package/dist/types/components/general/sitemap.d.ts +19 -0
- package/dist/types/components/general/sitemap.d.ts.map +1 -1
- package/dist/types/components/general/skeleton-loading.d.ts +3 -6
- package/dist/types/components/general/skeleton-loading.d.ts.map +1 -1
- package/dist/types/components/general/skeleton.d.ts +5 -0
- package/dist/types/components/general/skeleton.d.ts.map +1 -1
- package/dist/types/components/general/smartimage.d.ts +22 -0
- package/dist/types/components/general/smartimage.d.ts.map +1 -1
- package/dist/types/components/general/splitscroll.d.ts +18 -40
- package/dist/types/components/general/splitscroll.d.ts.map +1 -1
- package/dist/types/components/general/styleguide.d.ts +1 -0
- package/dist/types/components/general/styleguide.d.ts.map +1 -1
- package/dist/types/components/general/tab.d.ts +4 -0
- package/dist/types/components/general/tab.d.ts.map +1 -1
- package/dist/types/components/general/table.d.ts +4 -0
- package/dist/types/components/general/table.d.ts.map +1 -1
- package/dist/types/components/general/tiles.d.ts +12 -1
- package/dist/types/components/general/tiles.d.ts.map +1 -1
- package/dist/types/components/general/timeline.d.ts +5 -0
- package/dist/types/components/general/timeline.d.ts.map +1 -1
- package/dist/types/components/general/well-known.d.ts +56 -0
- package/dist/types/components/general/well-known.d.ts.map +1 -0
- package/dist/types/components/integrations/calendly.d.ts +3 -0
- package/dist/types/components/integrations/calendly.d.ts.map +1 -1
- package/dist/types/components/integrations/cloudinary.d.ts +4 -0
- package/dist/types/components/integrations/cloudinary.d.ts.map +1 -1
- package/dist/types/components/integrations/contentful.delivery.d.ts +22 -0
- package/dist/types/components/integrations/contentful.delivery.d.ts.map +1 -1
- package/dist/types/components/integrations/contentful.items.components.d.ts +10 -0
- package/dist/types/components/integrations/contentful.items.components.d.ts.map +1 -1
- package/dist/types/components/integrations/contentful.management.d.ts +1 -5
- package/dist/types/components/integrations/contentful.management.d.ts.map +1 -1
- package/dist/types/components/integrations/flickr.d.ts +11 -0
- package/dist/types/components/integrations/flickr.d.ts.map +1 -1
- package/dist/types/components/integrations/google.reviews.components.d.ts +5 -0
- package/dist/types/components/integrations/google.reviews.components.d.ts.map +1 -1
- package/dist/types/components/integrations/googleanalytics.d.ts +3 -0
- package/dist/types/components/integrations/googleanalytics.d.ts.map +1 -1
- package/dist/types/components/integrations/googlemap.d.ts +8 -0
- package/dist/types/components/integrations/googlemap.d.ts.map +1 -1
- package/dist/types/components/integrations/googlesearch.d.ts +1 -0
- package/dist/types/components/integrations/googlesearch.d.ts.map +1 -1
- package/dist/types/components/integrations/gravatar.components.d.ts +35 -0
- package/dist/types/components/integrations/gravatar.components.d.ts.map +1 -1
- package/dist/types/components/integrations/hubspot.components.d.ts +9 -0
- package/dist/types/components/integrations/hubspot.components.d.ts.map +1 -1
- package/dist/types/components/integrations/instagram.components.d.ts +7 -0
- package/dist/types/components/integrations/instagram.components.d.ts.map +1 -1
- package/dist/types/components/integrations/lipsum.d.ts +14 -0
- package/dist/types/components/integrations/lipsum.d.ts.map +1 -0
- package/dist/types/components/integrations/loremipsum.d.ts +4 -0
- package/dist/types/components/integrations/loremipsum.d.ts.map +1 -1
- package/dist/types/components/integrations/socialcard.d.ts +4 -0
- package/dist/types/components/integrations/socialcard.d.ts.map +1 -1
- package/dist/types/components/integrations/wordpress.components.d.ts +14 -0
- package/dist/types/components/integrations/wordpress.components.d.ts.map +1 -1
- package/dist/types/components/integrations/wordpress.functions.d.ts +6 -0
- package/dist/types/components/integrations/wordpress.functions.d.ts.map +1 -1
- package/dist/types/components/integrations/yelp.d.ts +2 -0
- package/dist/types/components/integrations/yelp.d.ts.map +1 -1
- package/dist/types/components/shoppingcart/ebay.components.d.ts +15 -0
- package/dist/types/components/shoppingcart/ebay.components.d.ts.map +1 -1
- package/dist/types/components/shoppingcart/ebay.functions.d.ts +14 -2
- package/dist/types/components/shoppingcart/ebay.functions.d.ts.map +1 -1
- package/dist/types/components/shoppingcart/paypal.d.ts.map +1 -1
- package/dist/types/components/shoppingcart/shoppingcart.components.d.ts +30 -0
- package/dist/types/components/shoppingcart/shoppingcart.components.d.ts.map +1 -1
- package/dist/types/components/shoppingcart/shoppingcart.functions.d.ts +20 -12
- package/dist/types/components/shoppingcart/shoppingcart.functions.d.ts.map +1 -1
- package/dist/types/components/sitebuilder/config/CompoundFontSelector.d.ts +12 -0
- package/dist/types/components/sitebuilder/config/CompoundFontSelector.d.ts.map +1 -1
- package/dist/types/components/sitebuilder/config/ConfigBuilder.d.ts +2 -0
- package/dist/types/components/sitebuilder/config/ConfigBuilder.d.ts.map +1 -1
- package/dist/types/components/sitebuilder/config/FontSelector.d.ts +16 -0
- package/dist/types/components/sitebuilder/config/FontSelector.d.ts.map +1 -1
- package/dist/types/components/sitebuilder/form/formbuilder.d.ts +5 -1
- package/dist/types/components/sitebuilder/form/formbuilder.d.ts.map +1 -1
- package/dist/types/components/sitebuilder/form/formcomponents.d.ts +129 -0
- package/dist/types/components/sitebuilder/form/formcomponents.d.ts.map +1 -1
- package/dist/types/components/sitebuilder/form/formengine.d.ts +5 -0
- package/dist/types/components/sitebuilder/form/formengine.d.ts.map +1 -1
- package/dist/types/components/sitebuilder/form/formextractor.d.ts +6 -0
- package/dist/types/components/sitebuilder/form/formextractor.d.ts.map +1 -1
- package/dist/types/components/sitebuilder/form/formutils.d.ts +0 -2
- package/dist/types/components/sitebuilder/form/formutils.d.ts.map +1 -1
- package/dist/types/components/sitebuilder/form/formvalidator.d.ts +1 -0
- package/dist/types/components/sitebuilder/form/formvalidator.d.ts.map +1 -1
- package/dist/types/components/sitebuilder/page/components/ComponentPropertiesForm.d.ts +2 -0
- package/dist/types/components/sitebuilder/page/components/ComponentPropertiesForm.d.ts.map +1 -1
- package/dist/types/components/sitebuilder/page/components/ComponentSelector.d.ts +3 -0
- package/dist/types/components/sitebuilder/page/components/ComponentSelector.d.ts.map +1 -1
- package/dist/types/components/sitebuilder/page/components/ComponentTree.d.ts +8 -0
- package/dist/types/components/sitebuilder/page/components/ComponentTree.d.ts.map +1 -1
- package/dist/types/components/sitebuilder/page/components/PageBuilderUI.d.ts +1 -0
- package/dist/types/components/sitebuilder/page/components/PageBuilderUI.d.ts.map +1 -1
- package/dist/types/components/sitebuilder/page/components/PageEngine.d.ts +8 -0
- package/dist/types/components/sitebuilder/page/components/PageEngine.d.ts.map +1 -1
- package/dist/types/components/sitebuilder/page/components/SaveLoadSection.d.ts +3 -0
- package/dist/types/components/sitebuilder/page/components/SaveLoadSection.d.ts.map +1 -1
- package/dist/types/components/sitebuilder/page/lib/pageStorageContentful.d.ts +1 -1
- package/dist/types/components/sitebuilder/page/lib/pageStorageContentful.d.ts.map +1 -1
- package/dist/types/index.d.ts +1 -1
- package/dist/types/index.server.d.ts +4 -4
- package/dist/types/scripts/pixelated-eslint-plugin.d.ts +36 -0
- package/dist/types/stories/general/skeleton-loading.stories.d.ts +1 -1
- package/dist/types/stories/general/skeleton-loading.stories.d.ts.map +1 -1
- package/dist/types/stories/integrations/lipsum.stories.d.ts +38 -0
- package/dist/types/stories/integrations/lipsum.stories.d.ts.map +1 -0
- package/dist/types/stories/shoppingcart/shoppingcart.stories.d.ts +3 -1
- package/dist/types/stories/shoppingcart/shoppingcart.stories.d.ts.map +1 -1
- package/dist/types/tests/args.test.d.ts +2 -0
- package/dist/types/tests/args.test.d.ts.map +1 -0
- package/dist/types/tests/lipsum.test.d.ts +2 -0
- package/dist/types/tests/lipsum.test.d.ts.map +1 -0
- package/dist/types/tests/securitytxt.test.d.ts +2 -0
- package/dist/types/tests/securitytxt.test.d.ts.map +1 -0
- package/dist/types/tests/storybook-docgen.test.d.ts +2 -0
- package/dist/types/tests/storybook-docgen.test.d.ts.map +1 -0
- package/package.json +17 -14
- package/dist/components/config/config.utils.js +0 -52
- package/dist/components/general/humanstxt.js +0 -81
- package/dist/types/components/config/config.utils.d.ts +0 -6
- package/dist/types/components/config/config.utils.d.ts.map +0 -1
- package/dist/types/components/general/humanstxt.d.ts +0 -37
- package/dist/types/components/general/humanstxt.d.ts.map +0 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ConfigBuilder.d.ts","sourceRoot":"","sources":["../../../../../src/components/sitebuilder/config/ConfigBuilder.tsx"],"names":[],"mappings":"AAGA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAanD,OAAO,qBAAqB,CAAC;AAM7B,QAAA,MAAM,cAAc;;;;;;;CAOnB,CAAC;AACF,MAAM,MAAM,SAAS,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAE1D,QAAA,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA0CtB,CAAC;AACF,MAAM,MAAM,YAAY,GAAG,UAAU,CAAC,OAAO,iBAAiB,CAAC,CAAC;AAQhE,QAAA,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAuB1B,CAAC;AACF,MAAM,MAAM,gBAAgB,GAAG,UAAU,CAAC,OAAO,qBAAqB,CAAC,CAAC;
|
|
1
|
+
{"version":3,"file":"ConfigBuilder.d.ts","sourceRoot":"","sources":["../../../../../src/components/sitebuilder/config/ConfigBuilder.tsx"],"names":[],"mappings":"AAGA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAanD,OAAO,qBAAqB,CAAC;AAM7B,QAAA,MAAM,cAAc;;;;;;;CAOnB,CAAC;AACF,MAAM,MAAM,SAAS,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAE1D,QAAA,MAAM,iBAAiB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA0CtB,CAAC;AACF,MAAM,MAAM,YAAY,GAAG,UAAU,CAAC,OAAO,iBAAiB,CAAC,CAAC;AAQhE,QAAA,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAuB1B,CAAC;AACF,MAAM,MAAM,gBAAgB,GAAG,UAAU,CAAC,OAAO,qBAAqB,CAAC,CAAC;AAuBxE,MAAM,MAAM,iBAAiB,GAAG,UAAU,CAAC,OAAO,aAAa,CAAC,SAAS,CAAC,CAAC;AAC3E,wBAAgB,aAAa,CAAC,KAAK,EAAE,iBAAiB,2CAgwBrD;yBAhwBe,aAAa;;QAN7B,yCAAyC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;QAExC,8CAA8C"}
|
|
@@ -4,22 +4,38 @@ export type FontSelectorType = InferProps<typeof FontSelector.propTypes>;
|
|
|
4
4
|
export declare function FontSelector(props: FontSelectorType): import("react/jsx-runtime").JSX.Element;
|
|
5
5
|
export declare namespace FontSelector {
|
|
6
6
|
var propTypes: {
|
|
7
|
+
/** Input id attribute */
|
|
7
8
|
id: PropTypes.Validator<string>;
|
|
9
|
+
/** Input name attribute */
|
|
8
10
|
name: PropTypes.Validator<string>;
|
|
11
|
+
/** Display label */
|
|
9
12
|
label: PropTypes.Validator<string>;
|
|
13
|
+
/** Font source type */
|
|
10
14
|
fontType: PropTypes.Validator<string>;
|
|
15
|
+
/** Required flag */
|
|
11
16
|
required: PropTypes.Requireable<boolean>;
|
|
17
|
+
/** Placeholder text */
|
|
12
18
|
placeholder: PropTypes.Requireable<string>;
|
|
19
|
+
/** Selected font value */
|
|
13
20
|
value: PropTypes.Requireable<string>;
|
|
21
|
+
/** Change handler receives new font value */
|
|
14
22
|
onChange: PropTypes.Requireable<(...args: any[]) => any>;
|
|
15
23
|
} | {
|
|
24
|
+
/** Input id attribute */
|
|
16
25
|
id: PropTypes.Validator<string>;
|
|
26
|
+
/** Input name attribute */
|
|
17
27
|
name: PropTypes.Validator<string>;
|
|
28
|
+
/** Display label */
|
|
18
29
|
label: PropTypes.Validator<string>;
|
|
30
|
+
/** Font source type */
|
|
19
31
|
fontType: PropTypes.Validator<string>;
|
|
32
|
+
/** Required flag */
|
|
20
33
|
required: PropTypes.Requireable<boolean>;
|
|
34
|
+
/** Placeholder text */
|
|
21
35
|
placeholder: PropTypes.Requireable<string>;
|
|
36
|
+
/** Selected font value */
|
|
22
37
|
value: PropTypes.Requireable<string>;
|
|
38
|
+
/** Change handler receives new font value */
|
|
23
39
|
onChange: PropTypes.Requireable<(...args: any[]) => any>;
|
|
24
40
|
};
|
|
25
41
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"FontSelector.d.ts","sourceRoot":"","sources":["../../../../../src/components/sitebuilder/config/FontSelector.tsx"],"names":[],"mappings":"AACA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAGnD,OAAO,oBAAoB,CAAC;
|
|
1
|
+
{"version":3,"file":"FontSelector.d.ts","sourceRoot":"","sources":["../../../../../src/components/sitebuilder/config/FontSelector.tsx"],"names":[],"mappings":"AACA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAGnD,OAAO,oBAAoB,CAAC;AA2C5B,MAAM,MAAM,gBAAgB,GAAG,UAAU,CAAC,OAAO,YAAY,CAAC,SAAS,CAAC,CAAC;AACzE,wBAAgB,YAAY,CAAC,KAAK,EAAE,gBAAgB,2CAsInD;yBAtIe,YAAY;;QAlB5B,yBAAyB;;QAExB,2BAA2B;;QAE3B,oBAAoB;;QAEpB,uBAAuB;;QAEvB,oBAAoB;;QAEpB,uBAAuB;;QAEvB,0BAA0B;;QAE1B,6CAA6C;;;QAyJ9C,yBAAyB;;QAExB,2BAA2B;;QAE3B,oBAAoB;;QAEpB,uBAAuB;;QAEvB,oBAAoB;;QAEpB,uBAAuB;;QAEvB,0BAA0B;;QAE1B,6CAA6C"}
|
|
@@ -3,12 +3,16 @@ import PropTypes, { InferProps } from 'prop-types';
|
|
|
3
3
|
export type FormBuilderType = InferProps<typeof FormBuilder.propTypes>;
|
|
4
4
|
export declare function FormBuilder(): JSX.Element;
|
|
5
5
|
export declare namespace FormBuilder {
|
|
6
|
-
var propTypes: {
|
|
6
|
+
var propTypes: {
|
|
7
|
+
/** Callback invoked with generated form JSON */
|
|
8
|
+
setFormData: PropTypes.Requireable<(...args: any[]) => any>;
|
|
9
|
+
};
|
|
7
10
|
}
|
|
8
11
|
export type FormBuildType = InferProps<typeof FormBuild.propTypes>;
|
|
9
12
|
export declare function FormBuild(props: FormBuildType): import("react/jsx-runtime").JSX.Element;
|
|
10
13
|
export declare namespace FormBuild {
|
|
11
14
|
var propTypes: {
|
|
15
|
+
/** Callback used to set the generated field JSON in the parent */
|
|
12
16
|
setFormData: PropTypes.Validator<(...args: any[]) => any>;
|
|
13
17
|
};
|
|
14
18
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"formbuilder.d.ts","sourceRoot":"","sources":["../../../../../src/components/sitebuilder/form/formbuilder.tsx"],"names":[],"mappings":"AAEA,OAAc,EAAY,GAAG,EAAE,MAAM,OAAO,CAAC;AAC7C,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;
|
|
1
|
+
{"version":3,"file":"formbuilder.d.ts","sourceRoot":"","sources":["../../../../../src/components/sitebuilder/form/formbuilder.tsx"],"names":[],"mappings":"AAEA,OAAc,EAAY,GAAG,EAAE,MAAM,OAAO,CAAC;AAC7C,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAmBnD,MAAM,MAAM,eAAe,GAAG,UAAU,CAAC,OAAO,WAAW,CAAC,SAAS,CAAC,CAAC;AACvE,wBAAgB,WAAW,IAAI,GAAG,CAAC,OAAO,CA4DzC;yBA5De,WAAW;;QAJ1B,gDAAgD;;;;AA8EjD,MAAM,MAAM,aAAa,GAAG,UAAU,CAAC,OAAO,SAAS,CAAC,SAAS,CAAC,CAAC;AACnE,wBAAgB,SAAS,CAAC,KAAK,EAAE,aAAa,2CA0D7C;yBA1De,SAAS;;QAJzB,kEAAkE"}
|
|
@@ -4,9 +4,13 @@ export type FormLabelType = InferProps<typeof FormLabel.propTypes>;
|
|
|
4
4
|
declare function FormLabel(props: FormLabelType): import("react/jsx-runtime").JSX.Element;
|
|
5
5
|
declare namespace FormLabel {
|
|
6
6
|
var propTypes: {
|
|
7
|
+
/** ID of the control associated with this label */
|
|
7
8
|
id: PropTypes.Validator<string>;
|
|
9
|
+
/** Label text to display */
|
|
8
10
|
label: PropTypes.Requireable<string>;
|
|
11
|
+
/** Optional tooltip text */
|
|
9
12
|
tooltip: PropTypes.Requireable<string>;
|
|
13
|
+
/** Additional CSS class names */
|
|
10
14
|
className: PropTypes.Requireable<string>;
|
|
11
15
|
};
|
|
12
16
|
var defaultProps: {
|
|
@@ -19,9 +23,13 @@ export type FormTooltipType = InferProps<typeof FormTooltip.propTypes>;
|
|
|
19
23
|
declare function FormTooltip(props: FormTooltipType): import("react/jsx-runtime").JSX.Element | null;
|
|
20
24
|
declare namespace FormTooltip {
|
|
21
25
|
var propTypes: {
|
|
26
|
+
/** Associated control id */
|
|
22
27
|
id: PropTypes.Requireable<string>;
|
|
28
|
+
/** Text lines to display in the tooltip */
|
|
23
29
|
text: PropTypes.Validator<(string | null | undefined)[]>;
|
|
30
|
+
/** Additional CSS class names */
|
|
24
31
|
className: PropTypes.Requireable<string>;
|
|
32
|
+
/** Tooltip mode */
|
|
25
33
|
mode: PropTypes.Requireable<string>;
|
|
26
34
|
};
|
|
27
35
|
var defaultProps: {
|
|
@@ -33,33 +41,59 @@ export type FormInputType = InferProps<typeof FormInput.propTypes>;
|
|
|
33
41
|
export declare function FormInput(props: FormInputType): import("react/jsx-runtime").JSX.Element;
|
|
34
42
|
export declare namespace FormInput {
|
|
35
43
|
var propTypes: {
|
|
44
|
+
/** Input type (text, number, email, etc.) */
|
|
36
45
|
type: PropTypes.Requireable<string>;
|
|
46
|
+
/** Input id attribute */
|
|
37
47
|
id: PropTypes.Validator<string>;
|
|
48
|
+
/** Input name attribute */
|
|
38
49
|
name: PropTypes.Requireable<string>;
|
|
50
|
+
/** Default value for uncontrolled inputs */
|
|
39
51
|
defaultValue: PropTypes.Requireable<string>;
|
|
52
|
+
/** Controlled value */
|
|
40
53
|
value: PropTypes.Requireable<string>;
|
|
54
|
+
/** Associated datalist id */
|
|
41
55
|
list: PropTypes.Requireable<string>;
|
|
56
|
+
/** Comma-separated datalist items */
|
|
42
57
|
listItems: PropTypes.Requireable<string>;
|
|
58
|
+
/** Input size attribute */
|
|
43
59
|
size: PropTypes.Requireable<string>;
|
|
60
|
+
/** Maximum allowed characters */
|
|
44
61
|
maxLength: PropTypes.Requireable<string>;
|
|
62
|
+
/** Placeholder text */
|
|
45
63
|
placeholder: PropTypes.Requireable<string>;
|
|
64
|
+
/** Autocomplete hint */
|
|
46
65
|
autoComplete: PropTypes.Requireable<string>;
|
|
66
|
+
/** Tab ordering index */
|
|
47
67
|
tabIndex: PropTypes.Requireable<number>;
|
|
68
|
+
/** Inline style object */
|
|
48
69
|
style: PropTypes.Requireable<object>;
|
|
49
70
|
"aria-label": PropTypes.Requireable<string>;
|
|
50
71
|
"aria-hidden": PropTypes.Requireable<string>;
|
|
72
|
+
/** Minimum value for numeric/date inputs */
|
|
51
73
|
min: PropTypes.Requireable<string>;
|
|
74
|
+
/** Maximum value for numeric/date inputs */
|
|
52
75
|
max: PropTypes.Requireable<string>;
|
|
76
|
+
/** Step increment for numeric inputs */
|
|
53
77
|
step: PropTypes.Requireable<string>;
|
|
78
|
+
/** Autofocus flag */
|
|
54
79
|
autoFocus: PropTypes.Requireable<string>;
|
|
80
|
+
/** Disabled flag */
|
|
55
81
|
disabled: PropTypes.Requireable<string>;
|
|
82
|
+
/** Read-only flag */
|
|
56
83
|
readOnly: PropTypes.Requireable<string>;
|
|
84
|
+
/** Whether this field is required (use 'required' to mark mandatory) */
|
|
57
85
|
required: PropTypes.Requireable<string>;
|
|
86
|
+
/** Layout hint; use 'vertical' to stack label and control */
|
|
58
87
|
display: PropTypes.Requireable<string>;
|
|
88
|
+
/** Text label associated with the control */
|
|
59
89
|
label: PropTypes.Requireable<string>;
|
|
90
|
+
/** Helper text shown in a tooltip for the control */
|
|
60
91
|
tooltip: PropTypes.Requireable<string>;
|
|
92
|
+
/** Additional CSS classes applied to the container */
|
|
61
93
|
className: PropTypes.Requireable<string>;
|
|
94
|
+
/** Name of the validation rule to run for this field */
|
|
62
95
|
validate: PropTypes.Requireable<string>;
|
|
96
|
+
/** Change handler invoked with the new value */
|
|
63
97
|
onChange: PropTypes.Requireable<(...args: any[]) => any>;
|
|
64
98
|
};
|
|
65
99
|
}
|
|
@@ -67,22 +101,39 @@ export type FormSelectType = InferProps<typeof FormSelect.propTypes>;
|
|
|
67
101
|
export declare function FormSelect(props: FormSelectType): import("react/jsx-runtime").JSX.Element;
|
|
68
102
|
export declare namespace FormSelect {
|
|
69
103
|
var propTypes: {
|
|
104
|
+
/** Input id */
|
|
70
105
|
id: PropTypes.Validator<string>;
|
|
106
|
+
/** Input name */
|
|
71
107
|
name: PropTypes.Requireable<string>;
|
|
108
|
+
/** Visual size for select */
|
|
72
109
|
size: PropTypes.Requireable<string>;
|
|
110
|
+
/** Autocomplete hint */
|
|
73
111
|
autoComplete: PropTypes.Requireable<string>;
|
|
112
|
+
/** Default selected value (or array for multi-select) */
|
|
74
113
|
defaultValue: PropTypes.Requireable<NonNullable<string | any[] | null | undefined>>;
|
|
114
|
+
/** Autofocus flag */
|
|
75
115
|
autoFocus: PropTypes.Requireable<string>;
|
|
116
|
+
/** Disabled flag */
|
|
76
117
|
disabled: PropTypes.Requireable<string>;
|
|
118
|
+
/** Multiple selection flag */
|
|
77
119
|
multiple: PropTypes.Requireable<string>;
|
|
120
|
+
/** Read-only flag */
|
|
78
121
|
readOnly: PropTypes.Requireable<string>;
|
|
122
|
+
/** Required flag */
|
|
79
123
|
required: PropTypes.Requireable<string>;
|
|
124
|
+
/** Option list array */
|
|
80
125
|
options: PropTypes.Requireable<any[]>;
|
|
126
|
+
/** Layout hint (e.g., 'vertical') */
|
|
81
127
|
display: PropTypes.Requireable<string>;
|
|
128
|
+
/** Label text */
|
|
82
129
|
label: PropTypes.Requireable<string>;
|
|
130
|
+
/** Helper text shown in a tooltip for the control */
|
|
83
131
|
tooltip: PropTypes.Requireable<string>;
|
|
132
|
+
/** Additional CSS classes applied to the select container */
|
|
84
133
|
className: PropTypes.Requireable<string>;
|
|
134
|
+
/** Name of the validation rule to run for this field */
|
|
85
135
|
validate: PropTypes.Requireable<string>;
|
|
136
|
+
/** Change handler invoked with the new value */
|
|
86
137
|
onChange: PropTypes.Requireable<(...args: any[]) => any>;
|
|
87
138
|
};
|
|
88
139
|
}
|
|
@@ -90,8 +141,11 @@ export type FormSelectOptionType = InferProps<typeof FormSelectOption.propTypes>
|
|
|
90
141
|
declare function FormSelectOption(props: FormSelectOptionType): import("react/jsx-runtime").JSX.Element;
|
|
91
142
|
declare namespace FormSelectOption {
|
|
92
143
|
var propTypes: {
|
|
144
|
+
/** Visible text for the option */
|
|
93
145
|
text: PropTypes.Requireable<string>;
|
|
146
|
+
/** Option value attribute */
|
|
94
147
|
value: PropTypes.Requireable<string>;
|
|
148
|
+
/** Disabled flag for the option */
|
|
95
149
|
disabled: PropTypes.Requireable<boolean>;
|
|
96
150
|
};
|
|
97
151
|
}
|
|
@@ -99,23 +153,41 @@ export type FormTextareaType = InferProps<typeof FormTextarea.propTypes>;
|
|
|
99
153
|
export declare function FormTextarea(props: FormTextareaType): import("react/jsx-runtime").JSX.Element;
|
|
100
154
|
export declare namespace FormTextarea {
|
|
101
155
|
var propTypes: {
|
|
156
|
+
/** Textarea id */
|
|
102
157
|
id: PropTypes.Validator<string>;
|
|
158
|
+
/** Textarea name */
|
|
103
159
|
name: PropTypes.Requireable<string>;
|
|
160
|
+
/** Number of rows */
|
|
104
161
|
rows: PropTypes.Requireable<string>;
|
|
162
|
+
/** Number of columns (visual width) */
|
|
105
163
|
cols: PropTypes.Requireable<string>;
|
|
164
|
+
/** Default uncontrolled text value */
|
|
106
165
|
defaultValue: PropTypes.Requireable<string>;
|
|
166
|
+
/** Maximum number of characters allowed */
|
|
107
167
|
maxLength: PropTypes.Requireable<number>;
|
|
168
|
+
/** Short hint displayed when the field is empty */
|
|
108
169
|
placeholder: PropTypes.Requireable<string>;
|
|
170
|
+
/** Browser autocomplete hint */
|
|
109
171
|
autoComplete: PropTypes.Requireable<string>;
|
|
172
|
+
/** If set, the control will receive focus on mount */
|
|
110
173
|
autoFocus: PropTypes.Requireable<string>;
|
|
174
|
+
/** Set to 'disabled' to render the control disabled */
|
|
111
175
|
disabled: PropTypes.Requireable<string>;
|
|
176
|
+
/** Set to 'readOnly' to prevent user edits */
|
|
112
177
|
readOnly: PropTypes.Requireable<string>;
|
|
178
|
+
/** Whether this field is required ('required' to mark mandatory) */
|
|
113
179
|
required: PropTypes.Requireable<string>;
|
|
180
|
+
/** Layout hint; use 'vertical' to stack label and control */
|
|
114
181
|
display: PropTypes.Requireable<string>;
|
|
182
|
+
/** Text label associated with the control */
|
|
115
183
|
label: PropTypes.Requireable<string>;
|
|
184
|
+
/** Helper text shown in a tooltip for the control */
|
|
116
185
|
tooltip: PropTypes.Requireable<string>;
|
|
186
|
+
/** Additional CSS classes applied to the container */
|
|
117
187
|
className: PropTypes.Requireable<string>;
|
|
188
|
+
/** Name of the validation rule to run for this field */
|
|
118
189
|
validate: PropTypes.Requireable<string>;
|
|
190
|
+
/** Change handler invoked with the new value */
|
|
119
191
|
onChange: PropTypes.Requireable<(...args: any[]) => any>;
|
|
120
192
|
};
|
|
121
193
|
}
|
|
@@ -123,17 +195,29 @@ export type FormRadioType = InferProps<typeof FormRadio.propTypes>;
|
|
|
123
195
|
export declare function FormRadio(props: FormRadioType): import("react/jsx-runtime").JSX.Element;
|
|
124
196
|
export declare namespace FormRadio {
|
|
125
197
|
var propTypes: {
|
|
198
|
+
/** Unique id for the control group */
|
|
126
199
|
id: PropTypes.Validator<string>;
|
|
200
|
+
/** HTML name attribute shared by all radio inputs in the group */
|
|
127
201
|
name: PropTypes.Validator<string>;
|
|
202
|
+
/** Array of option objects used to create radio options */
|
|
128
203
|
options: PropTypes.Requireable<any[]>;
|
|
204
|
+
/** If present, the control will receive focus on mount */
|
|
129
205
|
autoFocus: PropTypes.Requireable<string>;
|
|
206
|
+
/** Set to 'disabled' to disable the control group */
|
|
130
207
|
disabled: PropTypes.Requireable<string>;
|
|
208
|
+
/** Read-only flag; prevent user changes when set to 'readOnly' */
|
|
131
209
|
readOnly: PropTypes.Requireable<string>;
|
|
210
|
+
/** Set to 'required' to mark the group mandatory */
|
|
132
211
|
required: PropTypes.Requireable<string>;
|
|
212
|
+
/** Layout hint (use 'vertical' to stack options) */
|
|
133
213
|
display: PropTypes.Requireable<string>;
|
|
214
|
+
/** Optional label text shown above the group */
|
|
134
215
|
label: PropTypes.Requireable<string>;
|
|
216
|
+
/** Helper text shown in a tooltip for the group */
|
|
135
217
|
tooltip: PropTypes.Requireable<string>;
|
|
218
|
+
/** Named validation rule to apply */
|
|
136
219
|
validate: PropTypes.Requireable<string>;
|
|
220
|
+
/** Handler invoked with the new selected value */
|
|
137
221
|
onChange: PropTypes.Requireable<(...args: any[]) => any>;
|
|
138
222
|
};
|
|
139
223
|
}
|
|
@@ -141,10 +225,15 @@ export type FormRadioOptionType = InferProps<typeof FormRadioOption.propTypes>;
|
|
|
141
225
|
declare function FormRadioOption(props: FormRadioOptionType): import("react/jsx-runtime").JSX.Element;
|
|
142
226
|
declare namespace FormRadioOption {
|
|
143
227
|
var propTypes: {
|
|
228
|
+
/** HTML name attribute shared by the option */
|
|
144
229
|
name: PropTypes.Requireable<string>;
|
|
230
|
+
/** Visible label text for the option */
|
|
145
231
|
text: PropTypes.Requireable<string>;
|
|
232
|
+
/** Option value submitted when selected */
|
|
146
233
|
value: PropTypes.Validator<string>;
|
|
234
|
+
/** Whether this option is currently selected */
|
|
147
235
|
checked: PropTypes.Requireable<string>;
|
|
236
|
+
/** Reference to the parent control (used for controlled behavior) */
|
|
148
237
|
parent: PropTypes.Requireable<any>;
|
|
149
238
|
};
|
|
150
239
|
}
|
|
@@ -152,17 +241,29 @@ export type FormCheckboxType = InferProps<typeof FormCheckbox.propTypes>;
|
|
|
152
241
|
export declare function FormCheckbox(props: FormCheckboxType): import("react/jsx-runtime").JSX.Element;
|
|
153
242
|
export declare namespace FormCheckbox {
|
|
154
243
|
var propTypes: {
|
|
244
|
+
/** Unique id for the control group */
|
|
155
245
|
id: PropTypes.Validator<string>;
|
|
246
|
+
/** Base name used for generated checkbox inputs */
|
|
156
247
|
name: PropTypes.Validator<string>;
|
|
248
|
+
/** Array of option objects used to create checkbox options */
|
|
157
249
|
options: PropTypes.Requireable<any[]>;
|
|
250
|
+
/** If present, the control will receive focus on mount */
|
|
158
251
|
autoFocus: PropTypes.Requireable<string>;
|
|
252
|
+
/** Set to 'disabled' to disable the control group */
|
|
159
253
|
disabled: PropTypes.Requireable<string>;
|
|
254
|
+
/** Read-only flag; prevent user changes when set to 'readOnly' */
|
|
160
255
|
readOnly: PropTypes.Requireable<string>;
|
|
256
|
+
/** Layout hint; use 'vertical' to stack checkboxes */
|
|
161
257
|
display: PropTypes.Requireable<string>;
|
|
258
|
+
/** Optional label text shown above the group */
|
|
162
259
|
label: PropTypes.Requireable<string>;
|
|
260
|
+
/** Helper text shown in a tooltip for the group */
|
|
163
261
|
tooltip: PropTypes.Requireable<string>;
|
|
262
|
+
/** Additional CSS classes applied to the container */
|
|
164
263
|
className: PropTypes.Requireable<string>;
|
|
264
|
+
/** Named validation rule to apply to the group */
|
|
165
265
|
validate: PropTypes.Requireable<string>;
|
|
266
|
+
/** Handler invoked with the updated selected values array */
|
|
166
267
|
onChange: PropTypes.Requireable<(...args: any[]) => any>;
|
|
167
268
|
};
|
|
168
269
|
}
|
|
@@ -170,9 +271,13 @@ export type FormCheckboxOptionType = InferProps<typeof FormCheckboxOption.propTy
|
|
|
170
271
|
declare function FormCheckboxOption(props: FormCheckboxOptionType): import("react/jsx-runtime").JSX.Element;
|
|
171
272
|
declare namespace FormCheckboxOption {
|
|
172
273
|
var propTypes: {
|
|
274
|
+
/** Visible label text for the checkbox option */
|
|
173
275
|
text: PropTypes.Validator<string>;
|
|
276
|
+
/** Value attribute for the option */
|
|
174
277
|
value: PropTypes.Validator<string>;
|
|
278
|
+
/** Whether this option is selected (used for initial/default state) */
|
|
175
279
|
selected: PropTypes.Requireable<string>;
|
|
280
|
+
/** Reference to the parent control (used to update values) */
|
|
176
281
|
parent: PropTypes.Requireable<any>;
|
|
177
282
|
};
|
|
178
283
|
}
|
|
@@ -180,10 +285,15 @@ export type FormButtonType = InferProps<typeof FormButton.propTypes>;
|
|
|
180
285
|
export declare function FormButton(props: FormButtonType): import("react/jsx-runtime").JSX.Element;
|
|
181
286
|
export declare namespace FormButton {
|
|
182
287
|
var propTypes: {
|
|
288
|
+
/** Button type: 'button' | 'submit' | 'reset' */
|
|
183
289
|
type: PropTypes.Requireable<string>;
|
|
290
|
+
/** Unique identifier for the button element */
|
|
184
291
|
id: PropTypes.Validator<string>;
|
|
292
|
+
/** Text displayed inside the button */
|
|
185
293
|
text: PropTypes.Requireable<string>;
|
|
294
|
+
/** Additional CSS classes for the button */
|
|
186
295
|
className: PropTypes.Requireable<string>;
|
|
296
|
+
/** Click handler function */
|
|
187
297
|
onClick: PropTypes.Requireable<(...args: any[]) => any>;
|
|
188
298
|
};
|
|
189
299
|
}
|
|
@@ -191,7 +301,9 @@ export type FormDataListType = InferProps<typeof FormDataList.propTypes>;
|
|
|
191
301
|
export declare function FormDataList(props: FormDataListType): import("react/jsx-runtime").JSX.Element;
|
|
192
302
|
export declare namespace FormDataList {
|
|
193
303
|
var propTypes: {
|
|
304
|
+
/** Id attribute for the generated <datalist> element */
|
|
194
305
|
id: PropTypes.Validator<string>;
|
|
306
|
+
/** Array of string items to include as options */
|
|
195
307
|
items: PropTypes.Requireable<any[]>;
|
|
196
308
|
};
|
|
197
309
|
}
|
|
@@ -199,20 +311,35 @@ export type FormTagInputType = InferProps<typeof FormTagInput.propTypes>;
|
|
|
199
311
|
export declare function FormTagInput(props: FormTagInputType): import("react/jsx-runtime").JSX.Element;
|
|
200
312
|
export declare namespace FormTagInput {
|
|
201
313
|
var propTypes: {
|
|
314
|
+
/** Unique id for the tag input control */
|
|
202
315
|
id: PropTypes.Validator<string>;
|
|
316
|
+
/** Name attribute for the input element */
|
|
203
317
|
name: PropTypes.Requireable<string>;
|
|
318
|
+
/** Initial tags for uncontrolled mode */
|
|
204
319
|
defaultValue: PropTypes.Requireable<(string | null | undefined)[]>;
|
|
320
|
+
/** Controlled tags array when used as a controlled component */
|
|
205
321
|
value: PropTypes.Requireable<(string | null | undefined)[]>;
|
|
322
|
+
/** Placeholder text shown when empty */
|
|
206
323
|
placeholder: PropTypes.Requireable<string>;
|
|
324
|
+
/** Browser autocomplete hint */
|
|
207
325
|
autoComplete: PropTypes.Requireable<string>;
|
|
326
|
+
/** Set to 'disabled' to disable input */
|
|
208
327
|
disabled: PropTypes.Requireable<string>;
|
|
328
|
+
/** Set to 'readOnly' to prevent edits */
|
|
209
329
|
readOnly: PropTypes.Requireable<string>;
|
|
330
|
+
/** Mark field as required when set to 'required' */
|
|
210
331
|
required: PropTypes.Requireable<string>;
|
|
332
|
+
/** Layout hint (e.g., 'vertical' to place validation below) */
|
|
211
333
|
display: PropTypes.Requireable<string>;
|
|
334
|
+
/** Label text for the control */
|
|
212
335
|
label: PropTypes.Requireable<string>;
|
|
336
|
+
/** Helper text shown in a tooltip */
|
|
213
337
|
tooltip: PropTypes.Requireable<string>;
|
|
338
|
+
/** Additional CSS classes for the component */
|
|
214
339
|
className: PropTypes.Requireable<string>;
|
|
340
|
+
/** Named validation rule to run for this field */
|
|
215
341
|
validate: PropTypes.Requireable<string>;
|
|
342
|
+
/** Change handler invoked with the updated tags array */
|
|
216
343
|
onChange: PropTypes.Requireable<(...args: any[]) => any>;
|
|
217
344
|
};
|
|
218
345
|
}
|
|
@@ -225,7 +352,9 @@ export type FormHoneypotType = InferProps<typeof FormHoneypot.propTypes>;
|
|
|
225
352
|
export declare function FormHoneypot({ id, name }: FormHoneypotType): import("react/jsx-runtime").JSX.Element;
|
|
226
353
|
export declare namespace FormHoneypot {
|
|
227
354
|
var propTypes: {
|
|
355
|
+
/** Id for the honeypot field (defaults to 'winnie') */
|
|
228
356
|
id: PropTypes.Validator<string>;
|
|
357
|
+
/** Name attribute for the honeypot input (defaults to 'website') */
|
|
229
358
|
name: PropTypes.Requireable<string>;
|
|
230
359
|
};
|
|
231
360
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"formcomponents.d.ts","sourceRoot":"","sources":["../../../../../src/components/sitebuilder/form/formcomponents.tsx"],"names":[],"mappings":"AAIA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAMnD,OAAO,YAAY,CAAC;
|
|
1
|
+
{"version":3,"file":"formcomponents.d.ts","sourceRoot":"","sources":["../../../../../src/components/sitebuilder/form/formcomponents.tsx"],"names":[],"mappings":"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"}
|
|
@@ -5,10 +5,15 @@ export type FormEngineType = InferProps<typeof FormEngine.propTypes>;
|
|
|
5
5
|
export declare function FormEngine(props: FormEngineType): import("react/jsx-runtime").JSX.Element;
|
|
6
6
|
export declare namespace FormEngine {
|
|
7
7
|
var propTypes: {
|
|
8
|
+
/** Form name attribute */
|
|
8
9
|
name: PropTypes.Requireable<string>;
|
|
10
|
+
/** Form id attribute */
|
|
9
11
|
id: PropTypes.Requireable<string>;
|
|
12
|
+
/** HTTP method (e.g., 'post') */
|
|
10
13
|
method: PropTypes.Requireable<string>;
|
|
14
|
+
/** Submit handler called when the form is valid and submitted */
|
|
11
15
|
onSubmitHandler: PropTypes.Requireable<(...args: any[]) => any>;
|
|
16
|
+
/** JSON schema describing form fields */
|
|
12
17
|
formData: PropTypes.Validator<object>;
|
|
13
18
|
};
|
|
14
19
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"formengine.d.ts","sourceRoot":"","sources":["../../../../../src/components/sitebuilder/form/formengine.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AASnD,eAAO,MAAM,UAAU,EAAE,MAAM,CAAC,MAAM,EAAE,KAAK,CAAC,WAAW,CAIxD,CAAC;
|
|
1
|
+
{"version":3,"file":"formengine.d.ts","sourceRoot":"","sources":["../../../../../src/components/sitebuilder/form/formengine.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AASnD,eAAO,MAAM,UAAU,EAAE,MAAM,CAAC,MAAM,EAAE,KAAK,CAAC,WAAW,CAIxD,CAAC;AA6BF,MAAM,MAAM,cAAc,GAAG,UAAU,CAAC,OAAO,UAAU,CAAC,SAAS,CAAC,CAAC;AACrE,wBAAgB,UAAU,CAAC,KAAK,EAAE,cAAc,2CAM/C;yBANe,UAAU;;QAZ1B,0BAA0B;;QAEzB,wBAAwB;;QAExB,iCAAiC;;QAEjC,iEAAiE;;QAEjE,yCAAyC"}
|
|
@@ -3,7 +3,9 @@ export type FormExtractorType = InferProps<typeof FormExtractor.propTypes>;
|
|
|
3
3
|
export declare function FormExtractor(props: FormExtractorType): import("react/jsx-runtime").JSX.Element;
|
|
4
4
|
export declare namespace FormExtractor {
|
|
5
5
|
var propTypes: {
|
|
6
|
+
/** URL of the page to extract form elements from */
|
|
6
7
|
url: PropTypes.Requireable<string>;
|
|
8
|
+
/** Raw HTML string containing a form to extract */
|
|
7
9
|
htmlPaste: PropTypes.Requireable<string>;
|
|
8
10
|
};
|
|
9
11
|
}
|
|
@@ -11,6 +13,7 @@ export type FormExtractUIType = InferProps<typeof FormExtractUI.propTypes>;
|
|
|
11
13
|
export declare function FormExtractUI(props: FormExtractUIType): import("react/jsx-runtime").JSX.Element;
|
|
12
14
|
export declare namespace FormExtractUI {
|
|
13
15
|
var propTypes: {
|
|
16
|
+
/** Callback to send URL/html values back to parent */
|
|
14
17
|
setParentState: PropTypes.Validator<(...args: any[]) => any>;
|
|
15
18
|
};
|
|
16
19
|
}
|
|
@@ -18,8 +21,11 @@ export type FormExtractEngineType = InferProps<typeof FormExtractEngine.propType
|
|
|
18
21
|
export declare function FormExtractEngine(props: FormExtractEngineType): import("react/jsx-runtime").JSX.Element;
|
|
19
22
|
export declare namespace FormExtractEngine {
|
|
20
23
|
var propTypes: {
|
|
24
|
+
/** URL to fetch and parse */
|
|
21
25
|
url: PropTypes.Requireable<string>;
|
|
26
|
+
/** Raw HTML string to parse for forms */
|
|
22
27
|
htmlPaste: PropTypes.Requireable<string>;
|
|
28
|
+
/** Callback to receive the generated form JSON */
|
|
23
29
|
setFormData: PropTypes.Validator<(...args: any[]) => any>;
|
|
24
30
|
};
|
|
25
31
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"formextractor.d.ts","sourceRoot":"","sources":["../../../../../src/components/sitebuilder/form/formextractor.tsx"],"names":[],"mappings":"AACA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;
|
|
1
|
+
{"version":3,"file":"formextractor.d.ts","sourceRoot":"","sources":["../../../../../src/components/sitebuilder/form/formextractor.tsx"],"names":[],"mappings":"AACA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAyBnD,MAAM,MAAM,iBAAiB,GAAG,UAAU,CAAC,OAAO,aAAa,CAAC,SAAS,CAAC,CAAC;AAC3E,wBAAgB,aAAa,CAAC,KAAK,EAAE,iBAAiB,2CAiDrD;yBAjDe,aAAa;;QAN7B,oDAAoD;;QAEnD,mDAAmD;;;;AAgEpD,MAAM,MAAM,iBAAiB,GAAG,UAAU,CAAC,OAAO,aAAa,CAAC,SAAS,CAAC,CAAC;AAC3E,wBAAgB,aAAa,CAAC,KAAK,EAAE,iBAAiB,2CAmCrD;yBAnCe,aAAa;;QAJ7B,sDAAsD;;;;AAwDtD,MAAM,MAAM,qBAAqB,GAAG,UAAU,CAAC,OAAO,iBAAiB,CAAC,SAAS,CAAC,CAAC;AACnF,wBAAgB,iBAAiB,CAAC,KAAK,EAAE,qBAAqB,2CAmL7D;yBAnLe,iBAAiB;;QARjC,6BAA6B;;QAE5B,yCAAyC;;QAEzC,kDAAkD"}
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { generateKey, capitalize, attributeMap } from '../../general/utilities';
|
|
2
1
|
/**
|
|
3
2
|
* Maps input type to form component name
|
|
4
3
|
*/
|
|
@@ -11,5 +10,4 @@ export declare function generateTypeField(): any;
|
|
|
11
10
|
* Converts numeric string props to numbers
|
|
12
11
|
*/
|
|
13
12
|
export declare function convertNumericProps(props: any): void;
|
|
14
|
-
export { generateKey, capitalize, attributeMap };
|
|
15
13
|
//# sourceMappingURL=formutils.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"formutils.d.ts","sourceRoot":"","sources":["../../../../../src/components/sitebuilder/form/formutils.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"formutils.d.ts","sourceRoot":"","sources":["../../../../../src/components/sitebuilder/form/formutils.ts"],"names":[],"mappings":"AAKA;;GAEG;AACH,wBAAgB,kBAAkB,CAAC,MAAM,EAAE,MAAM,GAAG,MAAM,CAWzD;AAiKD;;GAEG;AACH,wBAAgB,iBAAiB,IAAI,GAAG,CAwBvC;AAED;;GAEG;AACH,wBAAgB,mBAAmB,CAAC,KAAK,EAAE,GAAG,GAAG,IAAI,CAgBpD"}
|
|
@@ -10,6 +10,7 @@ export type FormValidationProviderType = InferProps<typeof FormValidationProvide
|
|
|
10
10
|
export declare function FormValidationProvider({ children }: FormValidationProviderType): import("react/jsx-runtime").JSX.Element;
|
|
11
11
|
export declare namespace FormValidationProvider {
|
|
12
12
|
var propTypes: {
|
|
13
|
+
/** Child nodes that consume the validation context */
|
|
13
14
|
children: PropTypes.Validator<NonNullable<PropTypes.ReactNodeLike>>;
|
|
14
15
|
};
|
|
15
16
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"formvalidator.d.ts","sourceRoot":"","sources":["../../../../../src/components/sitebuilder/form/formvalidator.tsx"],"names":[],"mappings":"AAEA,OAAO,KAA2D,MAAM,OAAO,CAAC;AAChF,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAEnD,OAAO,EAAE,gBAAgB,EAAE,yBAAyB,EAAE,MAAM,aAAa,CAAC;AAE1E;;GAEG;AACH,wBAAsB,aAAa,CAClC,UAAU,EAAE,GAAG,EACf,KAAK,EAAE,KAAK,CAAC,WAAW,CAAC,gBAAgB,GAAG,iBAAiB,GAAG,mBAAmB,CAAC,GAAG,KAAK,CAAC,UAAU,CAAC,gBAAgB,GAAG,iBAAiB,GAAG,mBAAmB,CAAC,GACjK,OAAO,CAAC,gBAAgB,CAAC,CAyC3B;AAOD,wBAAgB,iBAAiB,8BAMhC;
|
|
1
|
+
{"version":3,"file":"formvalidator.d.ts","sourceRoot":"","sources":["../../../../../src/components/sitebuilder/form/formvalidator.tsx"],"names":[],"mappings":"AAEA,OAAO,KAA2D,MAAM,OAAO,CAAC;AAChF,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAEnD,OAAO,EAAE,gBAAgB,EAAE,yBAAyB,EAAE,MAAM,aAAa,CAAC;AAE1E;;GAEG;AACH,wBAAsB,aAAa,CAClC,UAAU,EAAE,GAAG,EACf,KAAK,EAAE,KAAK,CAAC,WAAW,CAAC,gBAAgB,GAAG,iBAAiB,GAAG,mBAAmB,CAAC,GAAG,KAAK,CAAC,UAAU,CAAC,gBAAgB,GAAG,iBAAiB,GAAG,mBAAmB,CAAC,GACjK,OAAO,CAAC,gBAAgB,CAAC,CAyC3B;AAOD,wBAAgB,iBAAiB,8BAMhC;AAWD,MAAM,MAAM,0BAA0B,GAAG,UAAU,CAAC,OAAO,sBAAsB,CAAC,SAAS,CAAC,CAAC;AAC7F,wBAAgB,sBAAsB,CAAC,EAAE,QAAQ,EAAE,EAAE,0BAA0B,2CAkC9E;yBAlCe,sBAAsB;;QAJtC,sDAAsD;;;;AAwCtD;;GAEG;AACH,wBAAgB,qBAAqB,CAAC,QAAQ,EAAE,GAAG,GAAG,gBAAgB,CAarE;AAED,wBAAgB,sBAAsB,CAAC,QAAQ,EAAE,GAAG,GAAG,gBAAgB,CAatE;AAED;;GAEG;AACH,wBAAgB,iBAAiB,CAAC,QAAQ,EAAE,GAAG,EAAE,gBAAgB,GAAE,CAAC,CAAC,IAAI,EAAE,GAAG,KAAK,gBAAgB,CAAC,EAAO,GAAG,gBAAgB,CAiB7H"}
|
|
@@ -3,7 +3,9 @@ export type ComponentPropertiesFormType = InferProps<typeof ComponentPropertiesF
|
|
|
3
3
|
export declare function ComponentPropertiesForm({ editableComponent, onSubmit }: ComponentPropertiesFormType): import("react/jsx-runtime").JSX.Element;
|
|
4
4
|
export declare namespace ComponentPropertiesForm {
|
|
5
5
|
var propTypes: {
|
|
6
|
+
/** JSON schema for the currently selected component */
|
|
6
7
|
editableComponent: PropTypes.Requireable<object>;
|
|
8
|
+
/** Callback invoked when component properties are submitted */
|
|
7
9
|
onSubmit: PropTypes.Validator<(...args: any[]) => any>;
|
|
8
10
|
};
|
|
9
11
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ComponentPropertiesForm.d.ts","sourceRoot":"","sources":["../../../../../../src/components/sitebuilder/page/components/ComponentPropertiesForm.tsx"],"names":[],"mappings":"AAEA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;
|
|
1
|
+
{"version":3,"file":"ComponentPropertiesForm.d.ts","sourceRoot":"","sources":["../../../../../../src/components/sitebuilder/page/components/ComponentPropertiesForm.tsx"],"names":[],"mappings":"AAEA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAqBnD,MAAM,MAAM,2BAA2B,GAAG,UAAU,CAAC,OAAO,uBAAuB,CAAC,SAAS,CAAC,CAAC;AAC/F,wBAAgB,uBAAuB,CAAC,EAAE,iBAAiB,EAAE,QAAQ,EAAE,EAAE,2BAA2B,2CAkBnG;yBAlBe,uBAAuB;;QANvC,uDAAuD;;QAEtD,+DAA+D"}
|
|
@@ -3,8 +3,11 @@ export type ComponentSelectorType = InferProps<typeof ComponentSelector.propType
|
|
|
3
3
|
export declare function ComponentSelector(props: ComponentSelectorType): import("react/jsx-runtime").JSX.Element;
|
|
4
4
|
export declare namespace ComponentSelector {
|
|
5
5
|
var propTypes: {
|
|
6
|
+
/** Callback to set the editable component schema */
|
|
6
7
|
setEditableComponent: PropTypes.Validator<(...args: any[]) => any>;
|
|
8
|
+
/** Optional parent path where children will be added */
|
|
7
9
|
parentPath: PropTypes.Requireable<string>;
|
|
10
|
+
/** Optional object used to pre-populate the selector when editing an existing component */
|
|
8
11
|
editMode: PropTypes.Requireable<PropTypes.InferProps<{
|
|
9
12
|
component: PropTypes.Requireable<string>;
|
|
10
13
|
props: PropTypes.Requireable<object>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ComponentSelector.d.ts","sourceRoot":"","sources":["../../../../../../src/components/sitebuilder/page/components/ComponentSelector.tsx"],"names":[],"mappings":"AAEA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;
|
|
1
|
+
{"version":3,"file":"ComponentSelector.d.ts","sourceRoot":"","sources":["../../../../../../src/components/sitebuilder/page/components/ComponentSelector.tsx"],"names":[],"mappings":"AAEA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AA6BnD,MAAM,MAAM,qBAAqB,GAAG,UAAU,CAAC,OAAO,iBAAiB,CAAC,SAAS,CAAC,CAAC;AACnF,wBAAgB,iBAAiB,CAAC,KAAK,EAAE,qBAAqB,2CAiF7D;yBAjFe,iBAAiB;;QAXjC,oDAAoD;;QAEnD,wDAAwD;;QAExD,2FAA2F"}
|
|
@@ -3,13 +3,21 @@ export type ComponentTreeType = InferProps<typeof ComponentTree.propTypes>;
|
|
|
3
3
|
export declare function ComponentTree({ components, onSelectComponent, onEditComponent, onDeleteComponent, onMoveUp, onMoveDown, selectedPath, editPath }: ComponentTreeType): import("react/jsx-runtime").JSX.Element;
|
|
4
4
|
export declare namespace ComponentTree {
|
|
5
5
|
var propTypes: {
|
|
6
|
+
/** Components forming the tree */
|
|
6
7
|
components: PropTypes.Validator<any[]>;
|
|
8
|
+
/** Select callback for child insertion */
|
|
7
9
|
onSelectComponent: PropTypes.Validator<(...args: any[]) => any>;
|
|
10
|
+
/** Edit callback for component properties */
|
|
8
11
|
onEditComponent: PropTypes.Validator<(...args: any[]) => any>;
|
|
12
|
+
/** Delete callback */
|
|
9
13
|
onDeleteComponent: PropTypes.Validator<(...args: any[]) => any>;
|
|
14
|
+
/** Move-up callback */
|
|
10
15
|
onMoveUp: PropTypes.Validator<(...args: any[]) => any>;
|
|
16
|
+
/** Move-down callback */
|
|
11
17
|
onMoveDown: PropTypes.Validator<(...args: any[]) => any>;
|
|
18
|
+
/** Currently selected component path */
|
|
12
19
|
selectedPath: PropTypes.Requireable<string>;
|
|
20
|
+
/** Component path currently being edited */
|
|
13
21
|
editPath: PropTypes.Requireable<string>;
|
|
14
22
|
};
|
|
15
23
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ComponentTree.d.ts","sourceRoot":"","sources":["../../../../../../src/components/sitebuilder/page/components/ComponentTree.tsx"],"names":[],"mappings":"AAEA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;
|
|
1
|
+
{"version":3,"file":"ComponentTree.d.ts","sourceRoot":"","sources":["../../../../../../src/components/sitebuilder/page/components/ComponentTree.tsx"],"names":[],"mappings":"AAEA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAsCnD,MAAM,MAAM,iBAAiB,GAAG,UAAU,CAAC,OAAO,aAAa,CAAC,SAAS,CAAC,CAAC;AAC3E,wBAAgB,aAAa,CAAC,EAC7B,UAAU,EACV,iBAAiB,EACjB,eAAe,EACf,iBAAiB,EACjB,QAAQ,EACR,UAAU,EACV,YAAY,EACZ,QAAQ,EACR,EAAE,iBAAiB,2CAkJnB;yBA3Je,aAAa;;QAlB7B,kCAAkC;;QAEjC,0CAA0C;;QAE1C,6CAA6C;;QAE7C,sBAAsB;;QAEtB,uBAAuB;;QAEvB,yBAAyB;;QAEzB,wCAAwC;;QAExC,4CAA4C"}
|
|
@@ -5,6 +5,7 @@ export type PageBuilderUIType = InferProps<typeof PageBuilderUI.propTypes>;
|
|
|
5
5
|
export declare function PageBuilderUI({ apiEndpoint }: PageBuilderUIType): import("react/jsx-runtime").JSX.Element;
|
|
6
6
|
export declare namespace PageBuilderUI {
|
|
7
7
|
var propTypes: {
|
|
8
|
+
/** API endpoint base for save/load operations (e.g., '/api/pagebuilder') */
|
|
8
9
|
apiEndpoint: PropTypes.Requireable<string>;
|
|
9
10
|
};
|
|
10
11
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"PageBuilderUI.d.ts","sourceRoot":"","sources":["../../../../../../src/components/sitebuilder/page/components/PageBuilderUI.tsx"],"names":[],"mappings":"AAGA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAOnD,OAAO,sCAAsC,CAAC;AAC9C,OAAO,oBAAoB,CAAC;
|
|
1
|
+
{"version":3,"file":"PageBuilderUI.d.ts","sourceRoot":"","sources":["../../../../../../src/components/sitebuilder/page/components/PageBuilderUI.tsx"],"names":[],"mappings":"AAGA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAOnD,OAAO,sCAAsC,CAAC;AAC9C,OAAO,oBAAoB,CAAC;AAiB5B,MAAM,MAAM,iBAAiB,GAAG,UAAU,CAAC,OAAO,aAAa,CAAC,SAAS,CAAC,CAAC;AAC3E,wBAAgB,aAAa,CAAC,EAAE,WAAgC,EAAE,EAAE,iBAAiB,2CAgIpF;yBAhIe,aAAa;;QAJ7B,4EAA4E"}
|