@teamnovu/nuxt-statamic-formbuilder 1.0.0 → 1.1.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/module.json
CHANGED
|
@@ -30,8 +30,9 @@ export type FormFieldRadioButtonsProps<TStyle extends FormBuilderStyleConfig = F
|
|
|
30
30
|
export type FormFieldSwitchProps<TStyle extends FormBuilderStyleConfig = FormBuilderStyleConfig> = FormFieldComponentProps<InputSwitchFieldConfig, TStyle>;
|
|
31
31
|
export type FormFieldFileUploadProps<TStyle extends FormBuilderStyleConfig = FormBuilderStyleConfig> = FormFieldComponentProps<InputFileUploadFieldConfig, TStyle>;
|
|
32
32
|
/** Display-only field — no input binding required by the renderer. */
|
|
33
|
-
export type FormFieldDisplayTextProps = {
|
|
33
|
+
export type FormFieldDisplayTextProps<TStyle extends FormBuilderStyleConfig = FormBuilderStyleConfig> = {
|
|
34
34
|
config?: DisplayTextFieldConfig;
|
|
35
|
+
styleConfig?: TStyle;
|
|
35
36
|
};
|
|
36
37
|
/** Shared wrapper props used by UI layout shells (label / hint / help). */
|
|
37
38
|
export type FormFieldShellProps<TStyle extends FormBuilderStyleConfig = FormBuilderStyleConfig> = {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@teamnovu/nuxt-statamic-formbuilder",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.1.0",
|
|
4
4
|
"description": "Headless Nuxt form builder with Statamic submit adapter",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"homepage": "https://github.com/teamnovu/nuxt-statamic-formbuilder#readme",
|