@pixelated-tech/components 3.2.14 → 3.3.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/README.COMPONENTS.md +289 -30
- package/README.md +36 -28
- package/dist/components/general/tab.css +105 -0
- package/dist/components/general/tab.js +26 -0
- package/dist/components/seo/metadata.components.js +0 -19
- package/dist/components/seo/metadata.functions.js +111 -0
- package/dist/components/seo/schema-blogposting.functions.js +42 -0
- package/dist/components/seo/schema-blogposting.js +0 -46
- package/dist/components/seo/sitemap.js +1 -1
- package/dist/components/shoppingcart/shoppingcart.components.js +4 -4
- package/dist/components/sitebuilder/config/ConfigBuilder.css +266 -0
- package/dist/components/sitebuilder/config/ConfigBuilder.js +221 -0
- package/dist/components/{pagebuilder → sitebuilder}/form/form.css +55 -34
- package/dist/components/sitebuilder/form/formbuilder.js +106 -0
- package/dist/components/sitebuilder/form/formcomponents.js +356 -0
- package/dist/components/sitebuilder/form/formengine.js +82 -0
- package/dist/components/{pagebuilder/form/form.js → sitebuilder/form/formextractor.js} +10 -211
- package/dist/components/sitebuilder/form/formutils.js +206 -0
- package/dist/components/sitebuilder/form/formvalidator.js +123 -0
- package/dist/components/{pagebuilder → sitebuilder/page}/components/ComponentPropertiesForm.js +1 -1
- package/dist/components/{pagebuilder → sitebuilder/page}/components/PageBuilderUI.js +2 -2
- package/dist/components/{pagebuilder → sitebuilder/page}/components/PageEngine.js +1 -1
- package/dist/components/sitebuilder/page/documentation/api-examples/save-route-example.js +37 -0
- package/dist/components/{pagebuilder → sitebuilder/page}/lib/componentMap.js +3 -3
- package/dist/components/{pagebuilder → sitebuilder/page}/lib/componentMetadata.js +2 -2
- package/dist/components/{pagebuilder → sitebuilder/page}/lib/pageStorageContentful.js +2 -2
- package/dist/components/sitebuilder/page/lib/pageStorageTypes.js +1 -0
- package/dist/data/form.json +18 -18
- package/dist/data/shipping.to.json +9 -9
- package/dist/data/siteinfo-form.json +200 -0
- package/dist/index.js +29 -21
- package/dist/index.server.js +24 -17
- package/dist/types/components/general/semantic.d.ts +3 -3
- package/dist/types/components/general/tab.d.ts +18 -0
- package/dist/types/components/general/tab.d.ts.map +1 -0
- package/dist/types/components/seo/metadata.components.d.ts +0 -17
- package/dist/types/components/seo/metadata.components.d.ts.map +1 -1
- package/dist/types/components/seo/{metadata.d.ts → metadata.functions.d.ts} +15 -1
- package/dist/types/components/seo/metadata.functions.d.ts.map +1 -0
- package/dist/types/components/seo/schema-blogposting.d.ts +1 -25
- package/dist/types/components/seo/schema-blogposting.d.ts.map +1 -1
- package/dist/types/components/seo/schema-blogposting.functions.d.ts +26 -0
- package/dist/types/components/seo/schema-blogposting.functions.d.ts.map +1 -0
- package/dist/types/components/seo/sitemap.d.ts.map +1 -1
- package/dist/types/components/shoppingcart/shoppingcart.components.d.ts +1 -1
- package/dist/types/components/sitebuilder/config/ConfigBuilder.d.ts +86 -0
- package/dist/types/components/sitebuilder/config/ConfigBuilder.d.ts.map +1 -0
- package/dist/types/components/sitebuilder/form/formbuilder.d.ts +11 -0
- package/dist/types/components/sitebuilder/form/formbuilder.d.ts.map +1 -0
- package/dist/types/components/{pagebuilder → sitebuilder}/form/formcomponents.d.ts +12 -16
- package/dist/types/components/sitebuilder/form/formcomponents.d.ts.map +1 -0
- package/dist/types/components/{pagebuilder/form/form.submit.d.ts → sitebuilder/form/formemailer.d.ts} +1 -1
- package/dist/types/components/sitebuilder/form/formemailer.d.ts.map +1 -0
- package/dist/types/components/sitebuilder/form/formengine.d.ts +14 -0
- package/dist/types/components/sitebuilder/form/formengine.d.ts.map +1 -0
- package/dist/types/components/sitebuilder/form/formextractor.d.ts +25 -0
- package/dist/types/components/sitebuilder/form/formextractor.d.ts.map +1 -0
- package/dist/types/components/{pagebuilder/form/formvalidations.d.ts → sitebuilder/form/formfieldvalidations.d.ts} +1 -1
- package/dist/types/components/sitebuilder/form/formfieldvalidations.d.ts.map +1 -0
- package/dist/types/components/sitebuilder/form/formtypes.d.ts +66 -0
- package/dist/types/components/sitebuilder/form/formtypes.d.ts.map +1 -0
- package/dist/types/components/sitebuilder/form/formutils.d.ts +20 -0
- package/dist/types/components/sitebuilder/form/formutils.d.ts.map +1 -0
- package/dist/types/components/sitebuilder/form/formvalidator.d.ts +20 -0
- package/dist/types/components/sitebuilder/form/formvalidator.d.ts.map +1 -0
- package/dist/types/components/sitebuilder/page/components/ComponentPropertiesForm.d.ts.map +1 -0
- package/dist/types/components/sitebuilder/page/components/ComponentSelector.d.ts.map +1 -0
- package/dist/types/components/sitebuilder/page/components/ComponentTree.d.ts.map +1 -0
- package/dist/types/components/{pagebuilder → sitebuilder/page}/components/PageBuilderUI.d.ts +1 -1
- package/dist/types/components/sitebuilder/page/components/PageBuilderUI.d.ts.map +1 -0
- package/dist/types/components/sitebuilder/page/components/PageEngine.d.ts.map +1 -0
- package/dist/types/components/sitebuilder/page/components/SaveLoadSection.d.ts.map +1 -0
- package/dist/types/components/sitebuilder/page/documentation/api-examples/save-route-example.d.ts +6 -0
- package/dist/types/components/sitebuilder/page/documentation/api-examples/save-route-example.d.ts.map +1 -0
- package/dist/types/components/sitebuilder/page/lib/componentGeneration.d.ts.map +1 -0
- package/dist/types/components/{pagebuilder → sitebuilder/page}/lib/componentMap.d.ts +3 -3
- package/dist/types/components/sitebuilder/page/lib/componentMap.d.ts.map +1 -0
- package/dist/types/components/sitebuilder/page/lib/componentMetadata.d.ts.map +1 -0
- package/dist/types/components/{pagebuilder → sitebuilder/page}/lib/pageStorageContentful.d.ts +1 -1
- package/dist/types/components/sitebuilder/page/lib/pageStorageContentful.d.ts.map +1 -0
- package/dist/types/components/sitebuilder/page/lib/pageStorageLocal.d.ts.map +1 -0
- package/dist/types/components/sitebuilder/page/lib/pageStorageTypes.d.ts.map +1 -0
- package/dist/types/components/sitebuilder/page/lib/propTypeIntrospection.d.ts.map +1 -0
- package/dist/types/components/sitebuilder/page/lib/types.d.ts.map +1 -0
- package/dist/types/components/sitebuilder/page/lib/usePageBuilder.d.ts.map +1 -0
- package/dist/types/index.d.ts +29 -20
- package/dist/types/index.server.d.ts +23 -16
- package/dist/types/stories/general/tab.stories.d.ts +45 -0
- package/dist/types/stories/general/tab.stories.d.ts.map +1 -0
- package/dist/types/stories/seo/seo.metadata.stories.d.ts +1 -1
- package/dist/types/stories/seo/seo.metadata.stories.d.ts.map +1 -1
- package/dist/types/stories/sitebuilder/configbuilder.stories.d.ts +48 -0
- package/dist/types/stories/sitebuilder/configbuilder.stories.d.ts.map +1 -0
- package/dist/types/stories/{pagebuilder → sitebuilder}/form-builder.stories.d.ts +1 -1
- package/dist/types/stories/sitebuilder/form-builder.stories.d.ts.map +1 -0
- package/dist/types/stories/{pagebuilder → sitebuilder}/form-engine.stories.d.ts +1 -1
- package/dist/types/stories/sitebuilder/form-engine.stories.d.ts.map +1 -0
- package/dist/types/stories/{pagebuilder → sitebuilder}/form-extractor.stories.d.ts +1 -1
- package/dist/types/stories/sitebuilder/form-extractor.stories.d.ts.map +1 -0
- package/dist/types/stories/{pagebuilder → sitebuilder}/pagebuilder.stories.d.ts +1 -1
- package/dist/types/stories/{pagebuilder → sitebuilder}/pagebuilder.stories.d.ts.map +1 -1
- package/dist/types/stories/{pagebuilder → sitebuilder}/pagebuilder.usageguide.stories.d.ts +1 -1
- package/dist/types/stories/{pagebuilder → sitebuilder}/pagebuilder.usageguide.stories.d.ts.map +1 -1
- package/dist/types/stories/{pagebuilder → sitebuilder}/pageengine.stories.d.ts +1 -1
- package/dist/types/stories/{pagebuilder → sitebuilder}/pageengine.stories.d.ts.map +1 -1
- package/dist/types/tests/configbuilder.test.d.ts +2 -0
- package/dist/types/tests/configbuilder.test.d.ts.map +1 -0
- package/dist/types/tests/tab.test.d.ts +2 -0
- package/dist/types/tests/tab.test.d.ts.map +1 -0
- package/package.json +5 -4
- package/dist/components/pagebuilder/form/formcomponents.js +0 -359
- package/dist/components/seo/metadata.js +0 -108
- package/dist/types/components/pagebuilder/components/ComponentPropertiesForm.d.ts.map +0 -1
- package/dist/types/components/pagebuilder/components/ComponentSelector.d.ts.map +0 -1
- package/dist/types/components/pagebuilder/components/ComponentTree.d.ts.map +0 -1
- package/dist/types/components/pagebuilder/components/PageBuilderUI.d.ts.map +0 -1
- package/dist/types/components/pagebuilder/components/PageEngine.d.ts.map +0 -1
- package/dist/types/components/pagebuilder/components/SaveLoadSection.d.ts.map +0 -1
- package/dist/types/components/pagebuilder/form/form.d.ts +0 -46
- package/dist/types/components/pagebuilder/form/form.d.ts.map +0 -1
- package/dist/types/components/pagebuilder/form/form.submit.d.ts.map +0 -1
- package/dist/types/components/pagebuilder/form/formcomponents.d.ts.map +0 -1
- package/dist/types/components/pagebuilder/form/formvalidations.d.ts.map +0 -1
- package/dist/types/components/pagebuilder/lib/componentGeneration.d.ts.map +0 -1
- package/dist/types/components/pagebuilder/lib/componentMap.d.ts.map +0 -1
- package/dist/types/components/pagebuilder/lib/componentMetadata.d.ts.map +0 -1
- package/dist/types/components/pagebuilder/lib/pageStorageContentful.d.ts.map +0 -1
- package/dist/types/components/pagebuilder/lib/pageStorageLocal.d.ts.map +0 -1
- package/dist/types/components/pagebuilder/lib/pageStorageTypes.d.ts.map +0 -1
- package/dist/types/components/pagebuilder/lib/propTypeIntrospection.d.ts.map +0 -1
- package/dist/types/components/pagebuilder/lib/types.d.ts.map +0 -1
- package/dist/types/components/pagebuilder/lib/usePageBuilder.d.ts.map +0 -1
- package/dist/types/components/seo/metadata.d.ts.map +0 -1
- package/dist/types/stories/pagebuilder/form-builder.stories.d.ts.map +0 -1
- package/dist/types/stories/pagebuilder/form-engine.stories.d.ts.map +0 -1
- package/dist/types/stories/pagebuilder/form-extractor.stories.d.ts.map +0 -1
- /package/dist/components/{pagebuilder/form/form.submit.js → sitebuilder/form/formemailer.js} +0 -0
- /package/dist/components/{pagebuilder/form/formvalidations.js → sitebuilder/form/formfieldvalidations.js} +0 -0
- /package/dist/components/{pagebuilder/lib/pageStorageTypes.js → sitebuilder/form/formtypes.js} +0 -0
- /package/dist/components/{pagebuilder → sitebuilder/page}/components/ComponentSelector.js +0 -0
- /package/dist/components/{pagebuilder → sitebuilder/page}/components/ComponentTree.js +0 -0
- /package/dist/components/{pagebuilder → sitebuilder/page}/components/SaveLoadSection.js +0 -0
- /package/dist/components/{pagebuilder → sitebuilder/page}/components/pagebuilder.scss +0 -0
- /package/dist/components/{pagebuilder → sitebuilder/page}/lib/componentGeneration.js +0 -0
- /package/dist/components/{pagebuilder → sitebuilder/page}/lib/pageStorageLocal.js +0 -0
- /package/dist/components/{pagebuilder → sitebuilder/page}/lib/propTypeIntrospection.js +0 -0
- /package/dist/components/{pagebuilder → sitebuilder/page}/lib/types.js +0 -0
- /package/dist/components/{pagebuilder → sitebuilder/page}/lib/usePageBuilder.js +0 -0
- /package/dist/types/components/{pagebuilder → sitebuilder/page}/components/ComponentPropertiesForm.d.ts +0 -0
- /package/dist/types/components/{pagebuilder → sitebuilder/page}/components/ComponentSelector.d.ts +0 -0
- /package/dist/types/components/{pagebuilder → sitebuilder/page}/components/ComponentTree.d.ts +0 -0
- /package/dist/types/components/{pagebuilder → sitebuilder/page}/components/PageEngine.d.ts +0 -0
- /package/dist/types/components/{pagebuilder → sitebuilder/page}/components/SaveLoadSection.d.ts +0 -0
- /package/dist/types/components/{pagebuilder → sitebuilder/page}/lib/componentGeneration.d.ts +0 -0
- /package/dist/types/components/{pagebuilder → sitebuilder/page}/lib/componentMetadata.d.ts +0 -0
- /package/dist/types/components/{pagebuilder → sitebuilder/page}/lib/pageStorageLocal.d.ts +0 -0
- /package/dist/types/components/{pagebuilder → sitebuilder/page}/lib/pageStorageTypes.d.ts +0 -0
- /package/dist/types/components/{pagebuilder → sitebuilder/page}/lib/propTypeIntrospection.d.ts +0 -0
- /package/dist/types/components/{pagebuilder → sitebuilder/page}/lib/types.d.ts +0 -0
- /package/dist/types/components/{pagebuilder → sitebuilder/page}/lib/usePageBuilder.d.ts +0 -0
|
@@ -16,24 +16,17 @@ declare namespace FormLabel {
|
|
|
16
16
|
};
|
|
17
17
|
}
|
|
18
18
|
export type FormTooltipType = InferProps<typeof FormTooltip.propTypes>;
|
|
19
|
-
declare function FormTooltip(props: FormTooltipType): import("react/jsx-runtime").JSX.Element;
|
|
19
|
+
declare function FormTooltip(props: FormTooltipType): import("react/jsx-runtime").JSX.Element | null;
|
|
20
20
|
declare namespace FormTooltip {
|
|
21
21
|
var propTypes: {
|
|
22
22
|
id: PropTypes.Requireable<string>;
|
|
23
|
-
text: PropTypes.
|
|
23
|
+
text: PropTypes.Validator<(string | null | undefined)[]>;
|
|
24
24
|
className: PropTypes.Requireable<string>;
|
|
25
|
+
mode: PropTypes.Requireable<string>;
|
|
25
26
|
};
|
|
26
27
|
var defaultProps: {
|
|
27
28
|
id: string;
|
|
28
|
-
|
|
29
|
-
};
|
|
30
|
-
}
|
|
31
|
-
export type FormValidateType = InferProps<typeof FormValidate.propTypes>;
|
|
32
|
-
declare function FormValidate(props: FormValidateType): import("react/jsx-runtime").JSX.Element;
|
|
33
|
-
declare namespace FormValidate {
|
|
34
|
-
var propTypes: {
|
|
35
|
-
id: PropTypes.Validator<string>;
|
|
36
|
-
valid: PropTypes.Requireable<boolean>;
|
|
29
|
+
mode: string;
|
|
37
30
|
};
|
|
38
31
|
}
|
|
39
32
|
export type FormInputType = InferProps<typeof FormInput.propTypes>;
|
|
@@ -64,6 +57,7 @@ export declare namespace FormInput {
|
|
|
64
57
|
tooltip: PropTypes.Requireable<string>;
|
|
65
58
|
className: PropTypes.Requireable<string>;
|
|
66
59
|
validate: PropTypes.Requireable<string>;
|
|
60
|
+
onChange: PropTypes.Requireable<(...args: any[]) => any>;
|
|
67
61
|
};
|
|
68
62
|
}
|
|
69
63
|
export type FormSelectType = InferProps<typeof FormSelect.propTypes>;
|
|
@@ -86,6 +80,7 @@ export declare namespace FormSelect {
|
|
|
86
80
|
tooltip: PropTypes.Requireable<string>;
|
|
87
81
|
className: PropTypes.Requireable<string>;
|
|
88
82
|
validate: PropTypes.Requireable<string>;
|
|
83
|
+
onChange: PropTypes.Requireable<(...args: any[]) => any>;
|
|
89
84
|
};
|
|
90
85
|
}
|
|
91
86
|
export type FormSelectOptionType = InferProps<typeof FormSelectOption.propTypes>;
|
|
@@ -94,7 +89,7 @@ declare namespace FormSelectOption {
|
|
|
94
89
|
var propTypes: {
|
|
95
90
|
text: PropTypes.Requireable<string>;
|
|
96
91
|
value: PropTypes.Requireable<string>;
|
|
97
|
-
disabled: PropTypes.Requireable<
|
|
92
|
+
disabled: PropTypes.Requireable<boolean>;
|
|
98
93
|
};
|
|
99
94
|
}
|
|
100
95
|
export type FormTextareaType = InferProps<typeof FormTextarea.propTypes>;
|
|
@@ -118,6 +113,7 @@ export declare namespace FormTextarea {
|
|
|
118
113
|
tooltip: PropTypes.Requireable<string>;
|
|
119
114
|
className: PropTypes.Requireable<string>;
|
|
120
115
|
validate: PropTypes.Requireable<string>;
|
|
116
|
+
onChange: PropTypes.Requireable<(...args: any[]) => any>;
|
|
121
117
|
};
|
|
122
118
|
}
|
|
123
119
|
export type FormRadioType = InferProps<typeof FormRadio.propTypes>;
|
|
@@ -135,6 +131,7 @@ export declare namespace FormRadio {
|
|
|
135
131
|
label: PropTypes.Requireable<string>;
|
|
136
132
|
tooltip: PropTypes.Requireable<string>;
|
|
137
133
|
validate: PropTypes.Requireable<string>;
|
|
134
|
+
onChange: PropTypes.Requireable<(...args: any[]) => any>;
|
|
138
135
|
};
|
|
139
136
|
}
|
|
140
137
|
export type FormRadioOptionType = InferProps<typeof FormRadioOption.propTypes>;
|
|
@@ -145,8 +142,7 @@ declare namespace FormRadioOption {
|
|
|
145
142
|
text: PropTypes.Requireable<string>;
|
|
146
143
|
value: PropTypes.Validator<string>;
|
|
147
144
|
checked: PropTypes.Requireable<string>;
|
|
148
|
-
parent:
|
|
149
|
-
setIsValid: PropTypes.Requireable<(...args: any[]) => any>;
|
|
145
|
+
parent: PropTypes.Requireable<any>;
|
|
150
146
|
};
|
|
151
147
|
}
|
|
152
148
|
export type FormCheckboxType = InferProps<typeof FormCheckbox.propTypes>;
|
|
@@ -164,6 +160,7 @@ export declare namespace FormCheckbox {
|
|
|
164
160
|
tooltip: PropTypes.Requireable<string>;
|
|
165
161
|
className: PropTypes.Requireable<string>;
|
|
166
162
|
validate: PropTypes.Requireable<string>;
|
|
163
|
+
onChange: PropTypes.Requireable<(...args: any[]) => any>;
|
|
167
164
|
};
|
|
168
165
|
}
|
|
169
166
|
export type FormCheckboxOptionType = InferProps<typeof FormCheckboxOption.propTypes>;
|
|
@@ -173,8 +170,7 @@ declare namespace FormCheckboxOption {
|
|
|
173
170
|
text: PropTypes.Validator<string>;
|
|
174
171
|
value: PropTypes.Validator<string>;
|
|
175
172
|
selected: PropTypes.Requireable<string>;
|
|
176
|
-
parent:
|
|
177
|
-
setIsValid: PropTypes.Requireable<(...args: any[]) => any>;
|
|
173
|
+
parent: PropTypes.Requireable<any>;
|
|
178
174
|
};
|
|
179
175
|
}
|
|
180
176
|
export type FormButtonType = InferProps<typeof FormButton.propTypes>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"formcomponents.d.ts","sourceRoot":"","sources":["../../../../../src/components/sitebuilder/form/formcomponents.tsx"],"names":[],"mappings":"AAEA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAInD,OAAO,YAAY,CAAC;AAsIpB,MAAM,MAAM,aAAa,GAAG,UAAU,CAAC,OAAO,SAAS,CAAC,SAAS,CAAC,CAAC;AACnE,iBAAS,SAAS,CAAC,KAAK,EAAE,aAAa,2CAYtC;kBAZQ,SAAS;;;;;;;;;;;;;AA4BlB,MAAM,MAAM,eAAe,GAAG,UAAU,CAAC,OAAO,WAAW,CAAC,SAAS,CAAC,CAAC;AACvE,iBAAS,WAAW,CAAC,KAAK,EAAE,eAAe,kDA2C1C;kBA3CQ,WAAW;;;;;;;;;;;;AAiFpB,MAAM,MAAM,aAAa,GAAG,UAAU,CAAC,OAAO,SAAS,CAAC,SAAS,CAAC,CAAC;AACnE,wBAAgB,SAAS,CAAC,KAAK,EAAE,aAAa,2CAmB7C;yBAnBe,SAAS;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAoDzB,MAAM,MAAM,cAAc,GAAG,UAAU,CAAC,OAAO,UAAU,CAAC,SAAS,CAAC,CAAC;AACrE,wBAAgB,UAAU,CAAC,KAAK,EAAE,cAAc,2CAc/C;yBAde,UAAU;;;;;;;;;;;;;;;;;;;;;AA6B1B,MAAM,MAAM,oBAAoB,GAAG,UAAU,CAAC,OAAO,gBAAgB,CAAC,SAAS,CAAC,CAAC;AACjF,iBAAS,gBAAgB,CAAC,KAAK,EAAE,oBAAoB,2CAUpD;kBAVQ,gBAAgB;;;;;;;AAyCzB,MAAM,MAAM,gBAAgB,GAAG,UAAU,CAAC,OAAO,YAAY,CAAC,SAAS,CAAC,CAAC;AACzE,wBAAgB,YAAY,CAAC,KAAK,EAAE,gBAAgB,2CAWnD;yBAXe,YAAY;;;;;;;;;;;;;;;;;;;;;;AAmC5B,MAAM,MAAM,aAAa,GAAG,UAAU,CAAC,OAAO,SAAS,CAAC,SAAS,CAAC,CAAC;AACnE,wBAAgB,SAAS,CAAC,KAAK,EAAE,aAAa,2CAY7C;yBAZe,SAAS;;;;;;;;;;;;;;;;AA4BzB,MAAM,MAAM,mBAAmB,GAAG,UAAU,CAAC,OAAO,eAAe,CAAC,SAAS,CAAC,CAAC;AAC/E,iBAAS,eAAe,CAAC,KAAK,EAAE,mBAAmB,2CAelD;kBAfQ,eAAe;;;;;;;;;AAsCxB,MAAM,MAAM,gBAAgB,GAAG,UAAU,CAAC,OAAO,YAAY,CAAC,SAAS,CAAC,CAAC;AACzE,wBAAgB,YAAY,CAAC,KAAK,EAAE,gBAAgB,2CAYnD;yBAZe,YAAY;;;;;;;;;;;;;;;;AA6B5B,MAAM,MAAM,sBAAsB,GAAG,UAAU,CAAC,OAAO,kBAAkB,CAAC,SAAS,CAAC,CAAC;AACrF,iBAAS,kBAAkB,CAAC,KAAK,EAAE,sBAAsB,2CAYxD;kBAZQ,kBAAkB;;;;;;;;AA2B3B,MAAM,MAAM,cAAc,GAAG,UAAU,CAAC,OAAO,UAAU,CAAC,SAAS,CAAC,CAAC;AACrE,wBAAgB,UAAU,CAAC,KAAK,EAAE,cAAc,2CAU/C;yBAVe,UAAU;;;;;;;;;AAuB1B,MAAM,MAAM,gBAAgB,GAAG,UAAU,CAAC,OAAO,YAAY,CAAC,SAAS,CAAC,CAAC;AACzE,wBAAgB,YAAY,CAAC,KAAK,EAAE,gBAAgB,2CAWnD;yBAXe,YAAY;;;;;;AAsB5B,MAAM,MAAM,gBAAgB,GAAG,UAAU,CAAC,OAAO,YAAY,CAAC,SAAS,CAAC,CAAC;AACzE,wBAAgB,YAAY,4CAI3B;yBAJe,YAAY"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"formemailer.d.ts","sourceRoot":"","sources":["../../../../../src/components/sitebuilder/form/formemailer.tsx"],"names":[],"mappings":"AASA,wBAAsB,aAAa,CAAC,CAAC,EAAE,KAAK,EAAE,QAAQ,EAAE,CAAC,CAAC,EAAE,KAAK,KAAK,IAAI,iBA6BzE;AAID,wBAAsB,SAAS,CAAC,QAAQ,EAAE,GAAG,EAAE,QAAQ,CAAC,EAAE,MAAM,IAAI,iBAyBnE"}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import PropTypes, { InferProps } from 'prop-types';
|
|
2
|
+
import { FormEngineProps } from './formtypes';
|
|
3
|
+
export type FormEngineType = InferProps<typeof FormEngine.propTypes>;
|
|
4
|
+
export declare function FormEngine(props: FormEngineProps): import("react/jsx-runtime").JSX.Element;
|
|
5
|
+
export declare namespace FormEngine {
|
|
6
|
+
var propTypes: {
|
|
7
|
+
name: PropTypes.Requireable<string>;
|
|
8
|
+
id: PropTypes.Requireable<string>;
|
|
9
|
+
method: PropTypes.Requireable<string>;
|
|
10
|
+
onSubmitHandler: PropTypes.Requireable<(...args: any[]) => any>;
|
|
11
|
+
formData: PropTypes.Validator<object>;
|
|
12
|
+
};
|
|
13
|
+
}
|
|
14
|
+
//# sourceMappingURL=formengine.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"formengine.d.ts","sourceRoot":"","sources":["../../../../../src/components/sitebuilder/form/formengine.tsx"],"names":[],"mappings":"AACA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAInD,OAAO,EAAE,eAAe,EAAE,MAAM,aAAa,CAAC;AAc9C,MAAM,MAAM,cAAc,GAAG,UAAU,CAAC,OAAO,UAAU,CAAC,SAAS,CAAC,CAAC;AA4ErE,wBAAgB,UAAU,CAAC,KAAK,EAAE,eAAe,2CAMhD;yBANe,UAAU"}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import PropTypes, { InferProps } from 'prop-types';
|
|
2
|
+
import { FormExtractorProps, FormExtractEngineProps, FormExtractUIProps } from './formtypes';
|
|
3
|
+
export type FormExtractorType = InferProps<typeof FormExtractor.propTypes>;
|
|
4
|
+
export declare function FormExtractor(props: FormExtractorProps): import("react/jsx-runtime").JSX.Element;
|
|
5
|
+
export declare namespace FormExtractor {
|
|
6
|
+
var propTypes: {
|
|
7
|
+
url: PropTypes.Requireable<string>;
|
|
8
|
+
htmlPaste: PropTypes.Requireable<string>;
|
|
9
|
+
};
|
|
10
|
+
}
|
|
11
|
+
export declare function FormExtractUI(props: FormExtractUIProps): import("react/jsx-runtime").JSX.Element;
|
|
12
|
+
export declare namespace FormExtractUI {
|
|
13
|
+
var propTypes: {
|
|
14
|
+
setParentState: PropTypes.Validator<(...args: any[]) => any>;
|
|
15
|
+
};
|
|
16
|
+
}
|
|
17
|
+
export declare function FormExtractEngine(props: FormExtractEngineProps): import("react/jsx-runtime").JSX.Element;
|
|
18
|
+
export declare namespace FormExtractEngine {
|
|
19
|
+
var propTypes: {
|
|
20
|
+
url: PropTypes.Requireable<string>;
|
|
21
|
+
htmlPaste: PropTypes.Requireable<string>;
|
|
22
|
+
setFormData: PropTypes.Validator<(...args: any[]) => any>;
|
|
23
|
+
};
|
|
24
|
+
}
|
|
25
|
+
//# sourceMappingURL=formextractor.d.ts.map
|
|
@@ -0,0 +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;AAKnD,OAAO,EAAE,kBAAkB,EAAE,sBAAsB,EAAE,kBAAkB,EAAE,MAAM,aAAa,CAAC;AAY7F,MAAM,MAAM,iBAAiB,GAAG,UAAU,CAAC,OAAO,aAAa,CAAC,SAAS,CAAC,CAAC;AAC3E,wBAAgB,aAAa,CAAC,KAAK,EAAE,kBAAkB,2CAyCtD;yBAzCe,aAAa;;;;;;AA8C7B,wBAAgB,aAAa,CAAC,KAAK,EAAE,kBAAkB,2CAmCtD;yBAnCe,aAAa;;;;;AA0C7B,wBAAgB,iBAAiB,CAAC,KAAK,EAAE,sBAAsB,2CAmL9D;yBAnLe,iBAAiB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"formfieldvalidations.d.ts","sourceRoot":"","sources":["../../../../../src/components/sitebuilder/form/formfieldvalidations.tsx"],"names":[],"mappings":"AAEA,eAAO,MAAM,UAAU,UAItB,CAAC;AAEF,eAAO,MAAM,QAAQ,UAAoB,CAAC;AAE1C,eAAO,MAAM,QAAQ,UASpB,CAAC;AAEF,wBAAgB,mBAAmB,aASlC;AAED,wBAAgB,YAAY,CAAE,KAAK,EAAE;IAAE,EAAE,EAAE,MAAM,CAAC;CAAE,WAQnD;AAED,wBAAgB,kBAAkB,CAAE,KAAK,EAAE;IAAE,IAAI,EAAE,MAAM,CAAC;CAAE,WAQ3D;AAED,wBAAgB,gBAAgB,CAAE,KAAK,EAAE;IAAE,KAAK,EAAE,MAAM,CAAC;CAAE,WAI1D;AAED,wBAAgB,oBAAoB,CAAE,KAAK,EAAE;IAAE,KAAK,EAAE,MAAM,CAAC;CAAE,WAI9D;AAED,wBAAgB,mBAAmB,CAAE,KAAK,EAAE;IAAE,KAAK,EAAE,GAAG,CAAC;CAAE,WAM1D;AAED,wBAAgB,WAAW,CAAE,KAAK,EAAE;IAAE,KAAK,EAAE,MAAM,GAAG,MAAM,GAAG,IAAI,CAAC;CAAE,WAGrE;AAED,wBAAgB,UAAU,CAAE,KAAK,EAAE;IAAE,KAAK,EAAE,MAAM,GAAG,GAAG,CAAC;CAAE,WAO1D;AAED,wBAAgB,mBAAmB,CAAC,KAAK,EAAE;IAAE,KAAK,EAAE,MAAM,CAAE;CAAE,gCAE7D"}
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { InferProps } from 'prop-types';
|
|
3
|
+
export interface ValidationResult {
|
|
4
|
+
isValid: boolean;
|
|
5
|
+
errors: string[];
|
|
6
|
+
}
|
|
7
|
+
export interface FormFieldProps {
|
|
8
|
+
id: string;
|
|
9
|
+
type?: string;
|
|
10
|
+
required?: boolean;
|
|
11
|
+
validate?: string;
|
|
12
|
+
label?: string;
|
|
13
|
+
value?: any;
|
|
14
|
+
placeholder?: string;
|
|
15
|
+
disabled?: boolean;
|
|
16
|
+
readonly?: boolean;
|
|
17
|
+
[key: string]: any;
|
|
18
|
+
}
|
|
19
|
+
export interface FormData {
|
|
20
|
+
fields: FormFieldConfig[];
|
|
21
|
+
[key: string]: any;
|
|
22
|
+
}
|
|
23
|
+
export interface FormFieldConfig {
|
|
24
|
+
component: string;
|
|
25
|
+
props: FormFieldProps;
|
|
26
|
+
}
|
|
27
|
+
export interface FormValidationState {
|
|
28
|
+
fieldValidity: Record<string, boolean>;
|
|
29
|
+
fieldErrors: Record<string, string[]>;
|
|
30
|
+
isFormValid: boolean;
|
|
31
|
+
}
|
|
32
|
+
export interface FormValidationContextType extends FormValidationState {
|
|
33
|
+
validateField: (fieldId: string, isValid: boolean, errors: string[]) => void;
|
|
34
|
+
validateAllFields: () => boolean;
|
|
35
|
+
resetValidation: () => void;
|
|
36
|
+
}
|
|
37
|
+
export interface FormEngineProps {
|
|
38
|
+
name?: string;
|
|
39
|
+
id?: string;
|
|
40
|
+
method?: string;
|
|
41
|
+
onSubmitHandler?: (event: React.FormEvent) => void;
|
|
42
|
+
formData: FormData;
|
|
43
|
+
}
|
|
44
|
+
export interface FormBuilderProps {
|
|
45
|
+
setFormData?: (data: any) => void;
|
|
46
|
+
}
|
|
47
|
+
export interface FormExtractorProps {
|
|
48
|
+
url?: string;
|
|
49
|
+
htmlPaste?: string;
|
|
50
|
+
}
|
|
51
|
+
export interface FormExtractEngineProps {
|
|
52
|
+
url?: string;
|
|
53
|
+
htmlPaste?: string;
|
|
54
|
+
setFormData: (data: any) => void;
|
|
55
|
+
}
|
|
56
|
+
export interface FormExtractUIProps {
|
|
57
|
+
setParentState: (state: {
|
|
58
|
+
url: string;
|
|
59
|
+
htmlPaste: string;
|
|
60
|
+
}) => void;
|
|
61
|
+
}
|
|
62
|
+
export type FormEngineType = InferProps<any>;
|
|
63
|
+
export type FormExtractorType = InferProps<any>;
|
|
64
|
+
export type FormExtractEngineType = InferProps<any>;
|
|
65
|
+
export type FormExtractUIType = InferProps<any>;
|
|
66
|
+
//# sourceMappingURL=formtypes.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"formtypes.d.ts","sourceRoot":"","sources":["../../../../../src/components/sitebuilder/form/formtypes.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAExC,MAAM,WAAW,gBAAgB;IAC/B,OAAO,EAAE,OAAO,CAAC;IACjB,MAAM,EAAE,MAAM,EAAE,CAAC;CAClB;AAED,MAAM,WAAW,cAAc;IAC7B,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,KAAK,CAAC,EAAE,GAAG,CAAC;IACZ,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,CAAC,GAAG,EAAE,MAAM,GAAG,GAAG,CAAC;CACpB;AAED,MAAM,WAAW,QAAQ;IACvB,MAAM,EAAE,eAAe,EAAE,CAAC;IAC1B,CAAC,GAAG,EAAE,MAAM,GAAG,GAAG,CAAC;CACpB;AAED,MAAM,WAAW,eAAe;IAC9B,SAAS,EAAE,MAAM,CAAC;IAClB,KAAK,EAAE,cAAc,CAAC;CACvB;AAED,MAAM,WAAW,mBAAmB;IAClC,aAAa,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;IACvC,WAAW,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,EAAE,CAAC,CAAC;IACtC,WAAW,EAAE,OAAO,CAAC;CACtB;AAED,MAAM,WAAW,yBAA0B,SAAQ,mBAAmB;IACpE,aAAa,EAAE,CAAC,OAAO,EAAE,MAAM,EAAE,OAAO,EAAE,OAAO,EAAE,MAAM,EAAE,MAAM,EAAE,KAAK,IAAI,CAAC;IAC7E,iBAAiB,EAAE,MAAM,OAAO,CAAC;IACjC,eAAe,EAAE,MAAM,IAAI,CAAC;CAC7B;AAED,MAAM,WAAW,eAAe;IAC9B,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,eAAe,CAAC,EAAE,CAAC,KAAK,EAAE,KAAK,CAAC,SAAS,KAAK,IAAI,CAAC;IACnD,QAAQ,EAAE,QAAQ,CAAC;CACpB;AAED,MAAM,WAAW,gBAAgB;IAC/B,WAAW,CAAC,EAAE,CAAC,IAAI,EAAE,GAAG,KAAK,IAAI,CAAC;CACnC;AAED,MAAM,WAAW,kBAAkB;IACjC,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB;AAED,MAAM,WAAW,sBAAsB;IACrC,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,WAAW,EAAE,CAAC,IAAI,EAAE,GAAG,KAAK,IAAI,CAAC;CAClC;AAED,MAAM,WAAW,kBAAkB;IACjC,cAAc,EAAE,CAAC,KAAK,EAAE;QAAE,GAAG,EAAE,MAAM,CAAC;QAAC,SAAS,EAAE,MAAM,CAAA;KAAE,KAAK,IAAI,CAAC;CACrE;AAGD,MAAM,MAAM,cAAc,GAAG,UAAU,CAAC,GAAG,CAAC,CAAC;AAC7C,MAAM,MAAM,iBAAiB,GAAG,UAAU,CAAC,GAAG,CAAC,CAAC;AAChD,MAAM,MAAM,qBAAqB,GAAG,UAAU,CAAC,GAAG,CAAC,CAAC;AACpD,MAAM,MAAM,iBAAiB,GAAG,UAAU,CAAC,GAAG,CAAC,CAAC"}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { generateKey, capitalize, attributeMap } from '../../utilities/functions';
|
|
2
|
+
export declare const debug = false;
|
|
3
|
+
/**
|
|
4
|
+
* Maps input type to form component name
|
|
5
|
+
*/
|
|
6
|
+
export declare function mapTypeToComponent(myType: string): string;
|
|
7
|
+
/**
|
|
8
|
+
* Generates field JSON for form building
|
|
9
|
+
*/
|
|
10
|
+
export declare function generateFieldJSON(component: string, type: string): any;
|
|
11
|
+
/**
|
|
12
|
+
* Generates type selection field for form builder
|
|
13
|
+
*/
|
|
14
|
+
export declare function generateTypeField(): any;
|
|
15
|
+
/**
|
|
16
|
+
* Converts numeric string props to numbers
|
|
17
|
+
*/
|
|
18
|
+
export declare function convertNumericProps(props: any): void;
|
|
19
|
+
export { generateKey, capitalize, attributeMap };
|
|
20
|
+
//# sourceMappingURL=formutils.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"formutils.d.ts","sourceRoot":"","sources":["../../../../../src/components/sitebuilder/form/formutils.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,WAAW,EAAE,UAAU,EAAE,YAAY,EAAE,MAAM,2BAA2B,CAAC;AAElF,eAAO,MAAM,KAAK,QAAQ,CAAC;AAE3B;;GAEG;AACH,wBAAgB,kBAAkB,CAAC,MAAM,EAAE,MAAM,GAAG,MAAM,CAWzD;AAED;;GAEG;AACH,wBAAgB,iBAAiB,CAAC,SAAS,EAAE,MAAM,EAAE,IAAI,EAAE,MAAM,GAAG,GAAG,CA+ItE;AAED;;GAEG;AACH,wBAAgB,iBAAiB,IAAI,GAAG,CAwBvC;AAED;;GAEG;AACH,wBAAgB,mBAAmB,CAAC,KAAK,EAAE,GAAG,GAAG,IAAI,CAgBpD;AAGD,OAAO,EAAE,WAAW,EAAE,UAAU,EAAE,YAAY,EAAE,CAAC"}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import { ValidationResult, FormValidationContextType } from './formtypes';
|
|
3
|
+
/**
|
|
4
|
+
* Centralized field validation service
|
|
5
|
+
*/
|
|
6
|
+
export declare function validateField(fieldProps: any, event: React.ChangeEvent<HTMLInputElement> | React.FocusEvent<HTMLInputElement>): Promise<ValidationResult>;
|
|
7
|
+
export declare function useFormValidation(): FormValidationContextType;
|
|
8
|
+
export declare function FormValidationProvider({ children }: {
|
|
9
|
+
children: React.ReactNode;
|
|
10
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
11
|
+
/**
|
|
12
|
+
* Cross-field validation functions
|
|
13
|
+
*/
|
|
14
|
+
export declare function validatePasswordMatch(formData: any): ValidationResult;
|
|
15
|
+
export declare function validateAgeRestriction(formData: any): ValidationResult;
|
|
16
|
+
/**
|
|
17
|
+
* Form-level validation orchestrator
|
|
18
|
+
*/
|
|
19
|
+
export declare function validateFormLevel(formData: any, customValidators?: ((data: any) => ValidationResult)[]): ValidationResult;
|
|
20
|
+
//# sourceMappingURL=formvalidator.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"formvalidator.d.ts","sourceRoot":"","sources":["../../../../../src/components/sitebuilder/form/formvalidator.tsx"],"names":[],"mappings":"AAAA,OAAO,KAA2D,MAAM,OAAO,CAAC;AAEhF,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,CAAC,GAAG,KAAK,CAAC,UAAU,CAAC,gBAAgB,CAAC,GAC7E,OAAO,CAAC,gBAAgB,CAAC,CAyC3B;AAOD,wBAAgB,iBAAiB,8BAMhC;AAED,wBAAgB,sBAAsB,CAAC,EAAE,QAAQ,EAAE,EAAE;IAAE,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAA;CAAE,2CAkCjF;AAED;;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"}
|
|
@@ -0,0 +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;AAcnD,KAAK,4BAA4B,GAAG,UAAU,CAAC,OAAO,uBAAuB,CAAC,SAAS,CAAC,CAAC;AAEzF,wBAAgB,uBAAuB,CAAC,EAAE,iBAAiB,EAAE,QAAQ,EAAE,EAAE,4BAA4B,2CAkBpG;yBAlBe,uBAAuB"}
|
|
@@ -0,0 +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;AAoBnD,KAAK,sBAAsB,GAAG,UAAU,CAAC,OAAO,iBAAiB,CAAC,SAAS,CAAC,CAAC;AAE7E,wBAAgB,iBAAiB,CAAC,KAAK,EAAE,sBAAsB,2CAiF9D;yBAjFe,iBAAiB"}
|
|
@@ -0,0 +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;AAmBnD,KAAK,kBAAkB,GAAG,UAAU,CAAC,OAAO,aAAa,CAAC,SAAS,CAAC,CAAC;AAErE,wBAAgB,aAAa,CAAC,EAC7B,UAAU,EACV,iBAAiB,EACjB,eAAe,EACf,iBAAiB,EACjB,QAAQ,EACR,UAAU,EACV,YAAY,EACZ,QAAQ,EACR,EAAE,kBAAkB,2CAkJpB;yBA3Je,aAAa"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PageBuilderUI.d.ts","sourceRoot":"","sources":["../../../../../../src/components/sitebuilder/page/components/PageBuilderUI.tsx"],"names":[],"mappings":"AASA,OAAO,sCAAsC,CAAC;AAC9C,OAAO,oBAAoB,CAAC;AAG5B;;;GAGG;AAEH,wBAAgB,aAAa,CAAC,EAAE,WAAgC,EAAE,GAAE;IAAE,WAAW,CAAC,EAAE,MAAM,CAAA;CAAO,2CAgIhG"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"PageEngine.d.ts","sourceRoot":"","sources":["../../../../../../src/components/sitebuilder/page/components/PageEngine.tsx"],"names":[],"mappings":"AAEA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AAGnD,OAAO,oBAAoB,CAAC;AA2B5B,MAAM,MAAM,cAAc,GAAG,UAAU,CAAC,OAAO,UAAU,CAAC,SAAS,CAAC,CAAC;AAErE,wBAAgB,UAAU,CAAC,KAAK,EAAE,cAAc,2CAiJ/C;yBAjJe,UAAU"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"SaveLoadSection.d.ts","sourceRoot":"","sources":["../../../../../../src/components/sitebuilder/page/components/SaveLoadSection.tsx"],"names":[],"mappings":"AAGA,OAAO,SAAS,EAAE,EAAE,UAAU,EAAE,MAAM,YAAY,CAAC;AASnD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,eAAe,CAAC,SAAS,CAAC,CAAC;AAEzE,wBAAgB,eAAe,CAAC,EAAE,QAAQ,EAAE,MAAM,EAAE,WAAgC,EAAE,EAAE,oBAAoB,2CAyO3G;yBAzOe,eAAe"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"save-route-example.d.ts","sourceRoot":"","sources":["../../../../../../../src/components/sitebuilder/page/documentation/api-examples/save-route-example.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,aAAa,CAAC;AAU3C,wBAAsB,IAAI,CAAC,OAAO,EAAE,OAAO;;;IAgC1C"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"componentGeneration.d.ts","sourceRoot":"","sources":["../../../../../../src/components/sitebuilder/page/lib/componentGeneration.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,aAAa,EAAE,QAAQ,EAAE,MAAM,SAAS,CAAC;AAIvD;;;GAGG;AAEH;;GAEG;AACH,wBAAgB,uBAAuB,CAAC,KAAK,EAAE,KAAK,GAAG;IACtD,SAAS,EAAE,aAAa,CAAC;IACzB,UAAU,EAAE,MAAM,GAAG,SAAS,CAAC;CAC/B,CAgDA;AAED;;GAEG;AACH,wBAAgB,iBAAiB,CAChC,SAAS,EAAE,MAAM,EACjB,aAAa,CAAC,EAAE,GAAG,EACnB,UAAU,CAAC,EAAE,MAAM,GACjB,QAAQ,CAyDV"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { PageTitleHeader, PageSectionHeader } from "
|
|
2
|
-
import { Callout } from "
|
|
3
|
-
import { PageSection, PageGridItem, PageFlexItem } from "
|
|
1
|
+
import { PageTitleHeader, PageSectionHeader } from "../../../general/semantic";
|
|
2
|
+
import { Callout } from "../../../callout/callout";
|
|
3
|
+
import { PageSection, PageGridItem, PageFlexItem } from "../../../general/semantic";
|
|
4
4
|
/**
|
|
5
5
|
* Component registry and constants
|
|
6
6
|
*/
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"componentMap.d.ts","sourceRoot":"","sources":["../../../../../../src/components/sitebuilder/page/lib/componentMap.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,eAAe,EAAE,iBAAiB,EAAE,MAAM,2BAA2B,CAAC;AAC/E,OAAO,EAAE,OAAO,EAAE,MAAM,0BAA0B,CAAC;AACnD,OAAO,EAAE,WAAW,EAAE,YAAY,EAAE,YAAY,EAAE,MAAM,2BAA2B,CAAC;AAEpF;;GAEG;AAEH,eAAO,MAAM,YAAY;;;;;;;CAOxB,CAAC;AAEF,eAAO,MAAM,gBAAgB,UAI5B,CAAC;AAEF,eAAO,MAAM,cAAc,QAAuC,CAAC;AAEnE;;GAEG;AACH,wBAAgB,iBAAiB,CAAC,aAAa,EAAE,MAAM,GAAG,OAAO,CAEhE;AAED;;GAEG;AACH,wBAAgB,gBAAgB,CAAC,aAAa,EAAE,MAAM,uIAErD"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"componentMetadata.d.ts","sourceRoot":"","sources":["../../../../../../src/components/sitebuilder/page/lib/componentMetadata.ts"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AAYH,MAAM,MAAM,YAAY,GAAG;IAC1B,IAAI,EAAE,MAAM,GAAG,QAAQ,GAAG,UAAU,GAAG,QAAQ,GAAG,QAAQ,GAAG,OAAO,GAAG,UAAU,GAAG,UAAU,CAAC;IAC/F,OAAO,CAAC,EAAE,SAAS,MAAM,EAAE,CAAC;IAC5B,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,OAAO,CAAC,EAAE,GAAG,CAAC;IACd,WAAW,CAAC,EAAE,MAAM,CAAC;CACrB,CAAC;AAEF,MAAM,MAAM,iBAAiB,GAAG;IAC/B,CAAC,QAAQ,EAAE,MAAM,GAAG,YAAY,CAAC;CACjC,CAAC;AAEF,eAAO,MAAM,iBAAiB,EAAE;IAAC,CAAC,aAAa,EAAE,MAAM,GAAG,iBAAiB,CAAA;CAuI1E,CAAC"}
|
package/dist/types/components/{pagebuilder → sitebuilder/page}/lib/pageStorageContentful.d.ts
RENAMED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
*
|
|
4
4
|
* Uses generic Contentful management functions with PageBuilder-specific logic
|
|
5
5
|
*/
|
|
6
|
-
import type { ContentfulConfig } from '
|
|
6
|
+
import type { ContentfulConfig } from '../../../cms/contentful.management';
|
|
7
7
|
import type { PageData } from './types';
|
|
8
8
|
import type { ListPagesResponse, LoadPageResponse, SavePageResponse, DeletePageResponse } from './pageStorageTypes';
|
|
9
9
|
/**
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"pageStorageContentful.d.ts","sourceRoot":"","sources":["../../../../../../src/components/sitebuilder/page/lib/pageStorageContentful.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,oCAAoC,CAAC;AAG3E,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,SAAS,CAAC;AACxC,OAAO,KAAK,EACX,iBAAiB,EACjB,gBAAgB,EAChB,gBAAgB,EAChB,kBAAkB,EAClB,MAAM,oBAAoB,CAAC;AAW5B;;GAEG;AACH,wBAAsB,mBAAmB,CACxC,MAAM,EAAE,gBAAgB,GACtB,OAAO,CAAC,iBAAiB,CAAC,CAoB5B;AAED;;GAEG;AACH,wBAAsB,kBAAkB,CACvC,IAAI,EAAE,MAAM,EACZ,MAAM,EAAE,gBAAgB,GACtB,OAAO,CAAC,gBAAgB,CAAC,CAgC3B;AAED;;GAEG;AACH,wBAAsB,kBAAkB,CACvC,IAAI,EAAE,MAAM,EACZ,IAAI,EAAE,QAAQ,EACd,MAAM,EAAE,gBAAgB,GACtB,OAAO,CAAC,gBAAgB,CAAC,CA6C3B;AAED;;GAEG;AACH,wBAAsB,oBAAoB,CACzC,IAAI,EAAE,MAAM,EACZ,MAAM,EAAE,gBAAgB,GACtB,OAAO,CAAC,kBAAkB,CAAC,CAgC7B"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"pageStorageLocal.d.ts","sourceRoot":"","sources":["../../../../../../src/components/sitebuilder/page/lib/pageStorageLocal.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,SAAS,CAAC;AACxC,OAAO,KAAK,EACX,gBAAgB,EAChB,iBAAiB,EACjB,gBAAgB,EAChB,kBAAkB,EAClB,MAAM,oBAAoB,CAAC;AAqB5B;;GAEG;AACH,wBAAgB,gBAAgB,CAAC,IAAI,EAAE,MAAM,GAAG,OAAO,CAGtD;AAED;;GAEG;AACH,wBAAsB,SAAS,IAAI,OAAO,CAAC,iBAAiB,CAAC,CAoB5D;AAED;;GAEG;AACH,wBAAsB,QAAQ,CAAC,IAAI,EAAE,MAAM,GAAG,OAAO,CAAC,gBAAgB,CAAC,CAgCtE;AAED;;GAEG;AACH,wBAAsB,QAAQ,CAAC,IAAI,EAAE,MAAM,EAAE,IAAI,EAAE,QAAQ,GAAG,OAAO,CAAC,gBAAgB,CAAC,CA2BtF;AAED;;GAEG;AACH,wBAAsB,UAAU,CAAC,IAAI,EAAE,MAAM,GAAG,OAAO,CAAC,kBAAkB,CAAC,CA+B1E"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"pageStorageTypes.d.ts","sourceRoot":"","sources":["../../../../../../src/components/sitebuilder/page/lib/pageStorageTypes.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,SAAS,CAAC;AAExC,MAAM,WAAW,eAAe;IAC/B,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,EAAE,QAAQ,CAAC;CACf;AAED,MAAM,WAAW,gBAAgB;IAChC,OAAO,EAAE,OAAO,CAAC;IACjB,OAAO,EAAE,MAAM,CAAC;IAChB,QAAQ,CAAC,EAAE,MAAM,CAAC;CAClB;AAED,MAAM,WAAW,gBAAgB;IAChC,OAAO,EAAE,OAAO,CAAC;IACjB,IAAI,CAAC,EAAE,QAAQ,CAAC;IAChB,OAAO,CAAC,EAAE,MAAM,CAAC;CACjB;AAED,MAAM,WAAW,iBAAiB;IACjC,OAAO,EAAE,OAAO,CAAC;IACjB,KAAK,EAAE,MAAM,EAAE,CAAC;IAChB,OAAO,CAAC,EAAE,MAAM,CAAC;CACjB;AAED,MAAM,WAAW,kBAAkB;IAClC,OAAO,EAAE,OAAO,CAAC;IACjB,OAAO,EAAE,MAAM,CAAC;CAChB"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"propTypeIntrospection.d.ts","sourceRoot":"","sources":["../../../../../../src/components/sitebuilder/page/lib/propTypeIntrospection.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,YAAY,EAAE,SAAS,EAAE,MAAM,SAAS,CAAC;AAGvD;;;;;;;;;;;;;GAaG;AAEH;;GAEG;AACH,wBAAgB,eAAe,CAAC,QAAQ,EAAE,GAAG,EAAE,aAAa,CAAC,EAAE,MAAM,EAAE,QAAQ,CAAC,EAAE,MAAM,GAAG,YAAY,CAiEtG;AAED;;GAEG;AACH,wBAAgB,6BAA6B,CAC5C,QAAQ,EAAE,MAAM,EAChB,QAAQ,EAAE,GAAG,EACb,KAAK,CAAC,EAAE,GAAG,EACX,aAAa,CAAC,EAAE,MAAM,GACpB,SAAS,CA0GX"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../../../../src/components/sitebuilder/page/lib/types.ts"],"names":[],"mappings":"AACA;;GAEG;AAEH,MAAM,WAAW,aAAa;IAC7B,SAAS,EAAE,MAAM,CAAC;IAClB,KAAK,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;IAC3B,QAAQ,CAAC,EAAE,aAAa,EAAE,CAAC;IAC3B,IAAI,CAAC,EAAE,MAAM,CAAC;CACd;AAED,MAAM,WAAW,QAAQ;IACxB,UAAU,EAAE,aAAa,EAAE,CAAC;CAC5B;AAED,MAAM,WAAW,QAAQ;IACxB,IAAI,EAAE,MAAM,CAAC;IACb,SAAS,EAAE,aAAa,CAAC;CACzB;AAED,MAAM,WAAW,YAAY;IAC5B,IAAI,EAAE,MAAM,CAAC;IACb,OAAO,CAAC,EAAE,MAAM,EAAE,GAAG,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;IACzC,UAAU,CAAC,EAAE,OAAO,CAAC;IACrB,WAAW,CAAC,EAAE,GAAG,CAAC;CAClB;AAED,MAAM,WAAW,SAAS;IACzB,SAAS,EAAE,MAAM,CAAC;IAClB,KAAK,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;CAC3B;AAED,MAAM,WAAW,QAAQ;IACxB,MAAM,EAAE,SAAS,EAAE,CAAC;CACpB;AAED,MAAM,MAAM,yBAAyB,GAAG;IACvC,SAAS,EAAE,MAAM,CAAC;IAClB,KAAK,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;CAC3B,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"usePageBuilder.d.ts","sourceRoot":"","sources":["../../../../../../src/components/sitebuilder/page/lib/usePageBuilder.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAE,QAAQ,EAAE,QAAQ,EAAE,aAAa,EAAE,MAAM,SAAS,CAAC;AAEjE;;;GAGG;AAEH,wBAAgB,cAAc;;;;;;;;;mCASS,KAAK;uCAyED,aAAa,QAAQ,MAAM;qCAa7B,aAAa,QAAQ,MAAM;;;kCAyB9B,MAAM;yBA0Cf,MAAM;2BAkCJ,MAAM;EAsDpC"}
|
package/dist/types/index.d.ts
CHANGED
|
@@ -18,6 +18,7 @@ export * from "./components/cms/instagram.functions";
|
|
|
18
18
|
export * from "./components/cms/instagram.components";
|
|
19
19
|
export * from "./components/cms/wordpress.components";
|
|
20
20
|
export * from "./components/cms/wordpress.functions";
|
|
21
|
+
export * from "./components/cms/yelp";
|
|
21
22
|
export * from "./components/config/config.client";
|
|
22
23
|
export * from "./components/config/config.server";
|
|
23
24
|
export * from "./components/config/config";
|
|
@@ -31,29 +32,36 @@ export * from "./components/general/modal";
|
|
|
31
32
|
export * from "./components/general/semantic";
|
|
32
33
|
export * from "./components/general/sidepanel";
|
|
33
34
|
export * from "./components/general/table";
|
|
35
|
+
export * from "./components/general/tab";
|
|
34
36
|
export * from "./components/menu/menu-accordion";
|
|
35
37
|
export * from "./components/menu/menu-expando";
|
|
36
38
|
export * from "./components/menu/menu-simple";
|
|
37
39
|
export * from "./components/nerdjoke/nerdjoke";
|
|
38
|
-
export * from "./components/
|
|
39
|
-
export * from "./components/
|
|
40
|
-
export * from "./components/
|
|
41
|
-
export * from "./components/
|
|
42
|
-
export * from "./components/
|
|
43
|
-
export * from "./components/
|
|
44
|
-
export * from "./components/
|
|
45
|
-
export * from "./components/
|
|
46
|
-
export * from "./components/
|
|
47
|
-
export * from "./components/
|
|
48
|
-
export * from "./components/
|
|
49
|
-
export * from "./components/
|
|
50
|
-
export * from "./components/
|
|
51
|
-
export * from "./components/
|
|
52
|
-
export * from "./components/
|
|
53
|
-
export * from "./components/
|
|
54
|
-
export * from "./components/
|
|
55
|
-
export * from "./components/
|
|
56
|
-
export * from "./components/
|
|
40
|
+
export * from "./components/sitebuilder/page/components/ComponentPropertiesForm";
|
|
41
|
+
export * from "./components/sitebuilder/page/components/ComponentSelector";
|
|
42
|
+
export * from "./components/sitebuilder/page/components/ComponentTree";
|
|
43
|
+
export * from "./components/sitebuilder/page/components/PageBuilderUI";
|
|
44
|
+
export * from "./components/sitebuilder/page/components/PageEngine";
|
|
45
|
+
export * from "./components/sitebuilder/page/components/SaveLoadSection";
|
|
46
|
+
export * from "./components/sitebuilder/config/ConfigBuilder";
|
|
47
|
+
export * from "./components/sitebuilder/form/formcomponents";
|
|
48
|
+
export * from "./components/sitebuilder/form/formtypes";
|
|
49
|
+
export * from "./components/sitebuilder/form/formutils";
|
|
50
|
+
export * from "./components/sitebuilder/form/formfieldvalidations";
|
|
51
|
+
export * from "./components/sitebuilder/form/formemailer";
|
|
52
|
+
export * from "./components/sitebuilder/form/formvalidator";
|
|
53
|
+
export * from "./components/sitebuilder/form/formengine";
|
|
54
|
+
export * from "./components/sitebuilder/form/formbuilder";
|
|
55
|
+
export * from "./components/sitebuilder/form/formextractor";
|
|
56
|
+
export * from "./components/sitebuilder/page/lib/componentGeneration";
|
|
57
|
+
export * from "./components/sitebuilder/page/lib/componentMap";
|
|
58
|
+
export * from "./components/sitebuilder/page/lib/componentMetadata";
|
|
59
|
+
export * from "./components/sitebuilder/page/lib/pageStorageLocal";
|
|
60
|
+
export * from "./components/sitebuilder/page/lib/pageStorageContentful";
|
|
61
|
+
export * from "./components/sitebuilder/page/lib/pageStorageTypes";
|
|
62
|
+
export * from "./components/sitebuilder/page/lib/propTypeIntrospection";
|
|
63
|
+
export * from "./components/sitebuilder/page/lib/types";
|
|
64
|
+
export * from "./components/sitebuilder/page/lib/usePageBuilder";
|
|
57
65
|
export * from "./components/seo/404";
|
|
58
66
|
export * from "./components/seo/googleanalytics";
|
|
59
67
|
export * from "./components/seo/googlemap";
|
|
@@ -63,8 +71,9 @@ export * from "./components/seo/schema-recipe";
|
|
|
63
71
|
export * from "./components/seo/schema-services";
|
|
64
72
|
export * from "./components/seo/schema-website";
|
|
65
73
|
export * from "./components/seo/schema-blogposting";
|
|
74
|
+
export * from "./components/seo/schema-blogposting.functions";
|
|
66
75
|
export * from "./components/seo/manifest";
|
|
67
|
-
export * from "./components/seo/metadata";
|
|
76
|
+
export * from "./components/seo/metadata.functions";
|
|
68
77
|
export * from "./components/seo/metadata.components";
|
|
69
78
|
export * from "./components/seo/sitemap";
|
|
70
79
|
export * from "./components/shoppingcart/ebay.components";
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
export * from "./components/cms/cloudinary";
|
|
2
1
|
export * from "./components/cms/contentful.delivery";
|
|
3
2
|
export * from "./components/cms/contentful.management";
|
|
4
3
|
export * from "./components/cms/flickr";
|
|
@@ -8,22 +7,30 @@ export * from "./components/cms/instagram.functions";
|
|
|
8
7
|
export * from "./components/cms/wordpress.functions";
|
|
9
8
|
export * from "./components/config/config";
|
|
10
9
|
export * from "./components/config/config.types";
|
|
11
|
-
export * from "./components/
|
|
12
|
-
export * from "./components/
|
|
13
|
-
export * from "./components/
|
|
14
|
-
export * from "./components/
|
|
15
|
-
export * from "./components/
|
|
16
|
-
export * from "./components/
|
|
17
|
-
export * from "./components/
|
|
18
|
-
export * from "./components/
|
|
19
|
-
export * from "./components/
|
|
20
|
-
export * from "./components/
|
|
21
|
-
export * from "./components/
|
|
22
|
-
export * from "./components/seo/metadata";
|
|
10
|
+
export * from "./components/sitebuilder/form/formtypes";
|
|
11
|
+
export * from "./components/sitebuilder/form/formutils";
|
|
12
|
+
export * from "./components/sitebuilder/page/lib/componentGeneration";
|
|
13
|
+
export * from "./components/sitebuilder/page/lib/componentMap";
|
|
14
|
+
export * from "./components/sitebuilder/page/lib/componentMetadata";
|
|
15
|
+
export * from "./components/sitebuilder/page/lib/pageStorageLocal";
|
|
16
|
+
export * from "./components/sitebuilder/page/lib/pageStorageContentful";
|
|
17
|
+
export * from "./components/sitebuilder/page/lib/pageStorageTypes";
|
|
18
|
+
export * from "./components/sitebuilder/page/lib/propTypeIntrospection";
|
|
19
|
+
export * from "./components/sitebuilder/page/lib/types";
|
|
20
|
+
export * from "./components/seo/metadata.functions";
|
|
23
21
|
export * from "./components/seo/sitemap";
|
|
22
|
+
export * from "./components/seo/manifest";
|
|
23
|
+
export * from "./components/seo/schema-localbusiness";
|
|
24
|
+
export * from "./components/seo/schema-recipe";
|
|
25
|
+
export * from "./components/seo/schema-services";
|
|
26
|
+
export * from "./components/seo/schema-website";
|
|
27
|
+
export * from "./components/seo/schema-blogposting";
|
|
28
|
+
export * from "./components/seo/schema-blogposting.functions";
|
|
24
29
|
export * from "./components/shoppingcart/ebay.functions";
|
|
25
|
-
export * from "./components/shoppingcart/shoppingcart.functions";
|
|
26
|
-
export * from "./components/utilities/functions";
|
|
27
30
|
export * from "./components/config/config.server";
|
|
28
|
-
export * from "./components/
|
|
31
|
+
export * from "./components/carousel/tiles";
|
|
32
|
+
export * from "./components/seo/googlemap";
|
|
33
|
+
export * from "./components/structured/markdown";
|
|
34
|
+
export * from "./components/structured/resume";
|
|
35
|
+
export * from "./components/structured/timeline";
|
|
29
36
|
//# sourceMappingURL=index.server.d.ts.map
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
declare namespace _default {
|
|
2
|
+
export let title: string;
|
|
3
|
+
export { Tab as component };
|
|
4
|
+
export namespace argTypes {
|
|
5
|
+
namespace orientation {
|
|
6
|
+
namespace control {
|
|
7
|
+
let type: string;
|
|
8
|
+
}
|
|
9
|
+
let options: string[];
|
|
10
|
+
let description: string;
|
|
11
|
+
}
|
|
12
|
+
namespace defaultActiveTab {
|
|
13
|
+
export namespace control_1 {
|
|
14
|
+
let type_1: string;
|
|
15
|
+
export { type_1 as type };
|
|
16
|
+
}
|
|
17
|
+
export { control_1 as control };
|
|
18
|
+
let options_1: string[];
|
|
19
|
+
export { options_1 as options };
|
|
20
|
+
let description_1: string;
|
|
21
|
+
export { description_1 as description };
|
|
22
|
+
}
|
|
23
|
+
namespace onTabChange {
|
|
24
|
+
export let action: string;
|
|
25
|
+
let description_2: string;
|
|
26
|
+
export { description_2 as description };
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
export default _default;
|
|
31
|
+
export namespace TabPlayground {
|
|
32
|
+
namespace args {
|
|
33
|
+
export let tabs: {
|
|
34
|
+
id: string;
|
|
35
|
+
label: string;
|
|
36
|
+
content: import("react/jsx-runtime").JSX.Element;
|
|
37
|
+
}[];
|
|
38
|
+
let orientation_1: string;
|
|
39
|
+
export { orientation_1 as orientation };
|
|
40
|
+
let defaultActiveTab_1: string;
|
|
41
|
+
export { defaultActiveTab_1 as defaultActiveTab };
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
import { Tab } from '@/components/general/tab';
|
|
45
|
+
//# sourceMappingURL=tab.stories.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"tab.stories.d.ts","sourceRoot":"","sources":["../../../../src/stories/general/tab.stories.js"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oBACoB,0BAA0B"}
|
|
@@ -20,6 +20,6 @@ export namespace Metadata {
|
|
|
20
20
|
export { value_1 as value };
|
|
21
21
|
}
|
|
22
22
|
}
|
|
23
|
-
import { getRouteByKey } from '@/components/seo/metadata';
|
|
23
|
+
import { getRouteByKey } from '@/components/seo/metadata.functions';
|
|
24
24
|
import myRoutes from '@/data/routes.json';
|
|
25
25
|
//# sourceMappingURL=seo.metadata.stories.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"seo.metadata.stories.d.ts","sourceRoot":"","sources":["../../../../src/stories/seo/seo.metadata.stories.js"],"names":[],"mappings":";;;;;;IAqBS,2DAAsB;;;;;;;;;;;;;;;;8BApBD,
|
|
1
|
+
{"version":3,"file":"seo.metadata.stories.d.ts","sourceRoot":"","sources":["../../../../src/stories/seo/seo.metadata.stories.js"],"names":[],"mappings":";;;;;;IAqBS,2DAAsB;;;;;;;;;;;;;;;;8BApBD,qCAAqC;qBAC9C,oBAAoB"}
|