@itcase/forms 1.1.62 → 1.1.64
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/constants/index.d.ts +7 -0
- package/dist/constants/messages.constant.d.ts +10 -0
- package/dist/constants/messages.interface.d.ts +5 -0
- package/dist/css/form/Field/Checkbox/FormFieldCheckbox.css +6 -2
- package/dist/css/form/Field/Code/FormFieldCode.css +7 -5
- package/dist/css/form/Field/Input/FormFieldInput.css +2 -0
- package/dist/css/form/Form/Form.css +2 -2
- package/dist/css/form/Form/css/form-notification/form-notification.css +1 -1
- package/dist/css/form/FormField/FormField.css +25 -12
- package/dist/form/Field/Checkbox/FormFieldCheckbox.d.ts +4 -0
- package/dist/form/Field/Checkbox/FormFieldCheckbox.interface.d.ts +18 -0
- package/dist/form/Field/Checkbox/appearance/default.d.ts +3 -0
- package/dist/form/Field/Checkbox/index.d.ts +3 -0
- package/dist/form/Field/Checkbox/stories/FormFieldCheckbox.stories.d.ts +99 -0
- package/dist/form/Field/Chips/FormFieldChips.d.ts +3 -0
- package/dist/form/Field/Chips/FormFieldChips.interface.d.ts +27 -0
- package/dist/form/Field/Chips/appearance/default.d.ts +3 -0
- package/dist/form/Field/Chips/index.d.ts +3 -0
- package/dist/form/Field/Chips/stories/FormFieldChips.stories.d.ts +30 -0
- package/dist/form/Field/Chips/stories/__mock__/index.d.ts +76 -0
- package/dist/form/Field/Choice/FormFieldChoice.d.ts +4 -0
- package/dist/form/Field/Choice/FormFieldChoice.interface.d.ts +23 -0
- package/dist/form/Field/Choice/appearance/default.d.ts +3 -0
- package/dist/form/Field/Choice/index.d.ts +3 -0
- package/dist/form/Field/Choice/stories/FormFieldChoice.stories.d.ts +104 -0
- package/dist/form/Field/Code/FormFieldCode.d.ts +4 -0
- package/dist/form/Field/Code/FormFieldCode.interface.d.ts +16 -0
- package/dist/form/Field/Code/appearance/default.d.ts +3 -0
- package/dist/form/Field/Code/index.d.ts +3 -0
- package/dist/form/Field/Code/stories/FormFieldCode.stories.d.ts +101 -0
- package/dist/form/Field/Custom/FormFieldCustom.d.ts +4 -0
- package/dist/form/Field/Custom/FormFieldCustom.interface.d.ts +18 -0
- package/dist/form/Field/Custom/index.d.ts +2 -0
- package/dist/form/Field/Dadata/FormFieldDadataInput.d.ts +4 -0
- package/dist/form/Field/Dadata/FormFieldDadataInput.interface.d.ts +19 -0
- package/dist/form/Field/Dadata/appearance/default.d.ts +3 -0
- package/dist/form/Field/Dadata/index.d.ts +3 -0
- package/dist/form/Field/Dadata/stories/FormFieldDadataInput.stories.d.ts +90 -0
- package/dist/form/Field/DatePicker/FormFieldDatePicker.d.ts +3 -0
- package/dist/form/Field/DatePicker/FormFieldDatePicker.interface.d.ts +10 -0
- package/dist/form/Field/DatePicker/appearance/default.d.ts +12 -0
- package/dist/form/Field/DatePicker/index.d.ts +3 -0
- package/dist/form/Field/DatePicker/stories/FormFieldDatePicker.stories.d.ts +114 -0
- package/dist/form/Field/FileInput/FormFieldFileInputDropzone.d.ts +2 -0
- package/dist/form/Field/FileInput/appearance/default.d.ts +19 -0
- package/dist/form/Field/FileInput/index.d.ts +4 -0
- package/dist/form/Field/FileInput/stories/FormFieldFileInput.stories.d.ts +51 -0
- package/dist/form/Field/Group/FormGroup.d.ts +4 -0
- package/dist/form/Field/Group/FormGroup.interface.d.ts +47 -0
- package/dist/form/Field/Group/appearance/default.d.ts +3 -0
- package/dist/form/Field/Group/index.d.ts +3 -0
- package/dist/form/Field/Input/FormFieldInput.d.ts +4 -0
- package/dist/form/Field/Input/FormFieldInput.interface.d.ts +25 -0
- package/dist/form/Field/Input/appearance/default.d.ts +3 -0
- package/dist/form/Field/Input/index.d.ts +3 -0
- package/dist/form/Field/Input/stories/FormFieldInputClassic.stories.d.ts +296 -0
- package/dist/form/Field/Input/stories/FormFieldInputFloat.stories.d.ts +296 -0
- package/dist/form/Field/Input/stories/FormFieldInputIFTA.stories.d.ts +296 -0
- package/dist/form/Field/InputNumber/FormFieldInputNumber.d.ts +4 -0
- package/dist/form/Field/InputNumber/FormFieldInputNumber.interface.d.ts +20 -0
- package/dist/form/Field/InputNumber/appearance/default.d.ts +3 -0
- package/dist/form/Field/InputNumber/index.d.ts +3 -0
- package/dist/form/Field/MaskedInput/FormFieldMaskedInput.d.ts +4 -0
- package/dist/form/Field/MaskedInput/FormFieldMaskedInput.interface.d.ts +27 -0
- package/dist/form/Field/MaskedInput/appearance/default.d.ts +3 -0
- package/dist/form/Field/MaskedInput/index.d.ts +3 -0
- package/dist/form/Field/MaskedInput/stories/FormFieldMaskedInputClassic.stories.d.ts +127 -0
- package/dist/form/Field/MaskedInput/stories/FormFieldMaskedInputFTA.stories.d.ts +119 -0
- package/dist/form/Field/MaskedInput/stories/FormFieldMaskedInputFloating.stories.d.ts +119 -0
- package/dist/form/Field/Password/FormFieldPassword.d.ts +4 -0
- package/dist/form/Field/Password/FormFieldPassword.interface.d.ts +17 -0
- package/dist/form/Field/Password/appearance/default.d.ts +3 -0
- package/dist/form/Field/Password/index.d.ts +3 -0
- package/dist/form/Field/Password/stories/FormFieldPasswordClassic.stories.d.ts +104 -0
- package/dist/form/Field/Password/stories/FormFieldPasswordFTA.stories.d.ts +104 -0
- package/dist/form/Field/Password/stories/FormFieldPasswordFloating.stories.d.ts +104 -0
- package/dist/form/Field/RadioGroup/FormFieldRadioGroup.d.ts +4 -0
- package/dist/form/Field/RadioGroup/FormFieldRadioGroup.interface.d.ts +23 -0
- package/dist/form/Field/RadioGroup/FormFieldRadioGroupList.d.ts +3 -0
- package/dist/form/Field/RadioGroup/appearance/default.d.ts +3 -0
- package/dist/form/Field/RadioGroup/index.d.ts +3 -0
- package/dist/form/Field/RadioGroup/stories/FormFieldRadioGroup.stories.d.ts +101 -0
- package/dist/form/Field/Segmented/FormFieldSegmented.d.ts +3 -0
- package/dist/form/Field/Segmented/FormFieldSegmented.interface.d.ts +15 -0
- package/dist/form/Field/Segmented/appearance/default.d.ts +3 -0
- package/dist/form/Field/Segmented/index.d.ts +3 -0
- package/dist/form/Field/Segmented/stories/FormFieldSegmented.stories.d.ts +101 -0
- package/dist/form/Field/Select/FormFieldSelect.d.ts +4 -0
- package/dist/form/Field/Select/FormFieldSelect.interface.d.ts +33 -0
- package/dist/form/Field/Select/appearance/default.d.ts +3 -0
- package/dist/form/Field/Select/index.d.ts +3 -0
- package/dist/form/Field/Select/stories/FormFieldSelect.stories.d.ts +101 -0
- package/dist/form/Field/Switch/FormFieldSwitch.d.ts +5 -0
- package/dist/form/Field/Switch/FormFieldSwitch.interface.d.ts +16 -0
- package/dist/form/Field/Switch/appearance/default.d.ts +3 -0
- package/dist/form/Field/Switch/index.d.ts +3 -0
- package/dist/form/Field/Switch/stories/FormFieldSwitch.stories.d.ts +86 -0
- package/dist/form/Field/Switch/stories/FormFieldSwitchLeft.stories.d.ts +98 -0
- package/dist/form/Field/Switch/stories/FormFieldSwitchRight.stories.d.ts +98 -0
- package/dist/form/Field/Textarea/FormFieldTextarea.d.ts +4 -0
- package/dist/form/Field/Textarea/FormFieldTextarea.interface.d.ts +13 -0
- package/dist/form/Field/Textarea/appearance/default.d.ts +3 -0
- package/dist/form/Field/Textarea/index.d.ts +3 -0
- package/dist/form/Field/Textarea/stories/FormFieldTextareaClassic.stories.d.ts +104 -0
- package/dist/form/Field/Textarea/stories/FormFieldTextareaFloating.stories.d.ts +104 -0
- package/dist/form/Field/Textarea/stories/FormFieldTextareaIFTA.stories.d.ts +104 -0
- package/dist/form/Field/index.d.ts +20 -0
- package/dist/form/FieldWrapper/FieldWrapper.d.ts +4 -0
- package/dist/form/FieldWrapper/FieldWrapper.interface.d.ts +77 -0
- package/dist/form/FieldWrapper/appearance/default.d.ts +7 -0
- package/dist/form/FieldWrapper/index.d.ts +3 -0
- package/dist/form/Form/FinalForm.d.ts +4 -0
- package/dist/form/Form/FinalForm.interface.d.ts +119 -0
- package/dist/form/generator/generator.constants.d.ts +25 -0
- package/dist/form/generator/generator.d.ts +3 -0
- package/dist/form/generator/generator.interface.d.ts +62 -0
- package/dist/form/generator/index.d.ts +4 -0
- package/dist/form/index.d.ts +5 -0
- package/dist/form/utils.d.ts +22 -0
- package/dist/hooks/form/form.d.ts +3 -0
- package/dist/hooks/form/index.d.ts +2 -0
- package/dist/hooks/index.d.ts +4 -0
- package/dist/hooks/useFieldValidationState/index.d.ts +2 -0
- package/dist/hooks/useFieldValidationState/useFieldValidationState.d.ts +9 -0
- package/dist/hooks/useFieldValidationState/useFieldValidationState.interface.d.ts +8 -0
- package/dist/hooks/useValidationAppearanceInputProps/index.d.ts +2 -0
- package/dist/hooks/useValidationAppearanceInputProps/useValidationAppearanceInputProps.d.ts +3 -0
- package/dist/hooks/useValidationAppearanceInputProps/useValidationAppearanceInputProps.interface.d.ts +5 -0
- package/dist/index.d.ts +5 -0
- package/dist/itcase-forms.cjs.js +3 -3767
- package/dist/itcase-forms.esm.js +3 -3688
- package/dist/services/index.d.ts +2 -0
- package/dist/services/utils.d.ts +4 -0
- package/dist/validators/index.d.ts +2 -0
- package/dist/validators/validation.d.ts +6 -0
- package/dist/validators/validation.interface.d.ts +6 -0
- package/package.json +35 -20
|
@@ -0,0 +1,296 @@
|
|
|
1
|
+
export default meta;
|
|
2
|
+
export namespace Default {
|
|
3
|
+
function render(args: any): import("react/jsx-runtime").JSX.Element;
|
|
4
|
+
}
|
|
5
|
+
export namespace Error {
|
|
6
|
+
export namespace args {
|
|
7
|
+
let validationSchema: yup.ObjectSchema<{
|
|
8
|
+
text: string;
|
|
9
|
+
}, yup.AnyObject, {
|
|
10
|
+
text: undefined;
|
|
11
|
+
}, "">;
|
|
12
|
+
}
|
|
13
|
+
export namespace parameters {
|
|
14
|
+
let error: boolean;
|
|
15
|
+
}
|
|
16
|
+
export function render_1(args: any): import("react/jsx-runtime").JSX.Element;
|
|
17
|
+
export { render_1 as render };
|
|
18
|
+
}
|
|
19
|
+
export namespace Filled {
|
|
20
|
+
export namespace args_1 {
|
|
21
|
+
let config: {
|
|
22
|
+
field: {
|
|
23
|
+
type: "text";
|
|
24
|
+
name: string;
|
|
25
|
+
fieldProps: {
|
|
26
|
+
direction?: import("@itcase/types-ui").DirectionProps;
|
|
27
|
+
dividerFill?: import("@itcase/ui-web/components/Divider").DividerProps["fill"];
|
|
28
|
+
errorMessageTextColor?: import("@itcase/ui-web/components/Text").TextProps["textColor"];
|
|
29
|
+
helpTextColor?: import("@itcase/ui-web/components/Text").TextProps["textColor"];
|
|
30
|
+
labelTextColor?: import("@itcase/ui-web/components/Text").TextProps["textColor"];
|
|
31
|
+
messageTextColor?: import("@itcase/ui-web/components/Text").TextProps["textColor"];
|
|
32
|
+
requiredMessageTextColor?: import("@itcase/ui-web/components/Text").TextProps["textColor"];
|
|
33
|
+
showMessage?: boolean;
|
|
34
|
+
width?: import("@itcase/types-ui").WidthProps;
|
|
35
|
+
id?: string;
|
|
36
|
+
after?: React.ReactNode;
|
|
37
|
+
afterItem?: React.ReactNode;
|
|
38
|
+
before?: React.ReactNode;
|
|
39
|
+
beforeItem?: React.ReactNode;
|
|
40
|
+
children?: React.ReactNode;
|
|
41
|
+
className?: string;
|
|
42
|
+
dataTestId?: string;
|
|
43
|
+
dataTour?: string;
|
|
44
|
+
desc?: string;
|
|
45
|
+
descTextColor?: import("@itcase/ui-web/components/Text").TextProps["textColor"];
|
|
46
|
+
descTextSize?: import("@itcase/ui-web/components/Text").TextProps["size"];
|
|
47
|
+
descTextWeight?: import("@itcase/ui-web/components/Text").TextProps["textWeight"];
|
|
48
|
+
dividerDirection?: import("@itcase/ui-web/components/Divider").DividerProps["direction"];
|
|
49
|
+
dividerSize?: import("@itcase/ui-web/components/Divider").DividerProps["size"];
|
|
50
|
+
dividerWidth?: import("@itcase/ui-web/components/Divider").DividerProps["width"];
|
|
51
|
+
errorKey?: "error" | "required";
|
|
52
|
+
errorMessage?: string;
|
|
53
|
+
errorMessageTextSize?: import("@itcase/ui-web/components/Text").TextProps["size"];
|
|
54
|
+
errorMessageTextWeight?: import("@itcase/ui-web/components/Text").TextProps["textWeight"];
|
|
55
|
+
fieldClassName?: string;
|
|
56
|
+
helpText: string;
|
|
57
|
+
helpTextColorSuccess?: import("@itcase/ui-web/components/Text").TextProps["textColor"];
|
|
58
|
+
helpTextSize?: import("@itcase/ui-web/components/Text").TextProps["size"];
|
|
59
|
+
helpTextSizeMobile?: import("@itcase/ui-web/components/Text").TextProps["size"];
|
|
60
|
+
helpTextWeight?: import("@itcase/ui-web/components/Text").TextProps["textWeight"];
|
|
61
|
+
inputName?: string;
|
|
62
|
+
inputValue?: boolean | object | string;
|
|
63
|
+
isDisabled?: boolean;
|
|
64
|
+
isErrorState?: boolean;
|
|
65
|
+
isHidden?: boolean;
|
|
66
|
+
isRequired?: boolean;
|
|
67
|
+
isValidState?: boolean;
|
|
68
|
+
label: string;
|
|
69
|
+
labelHidden?: string;
|
|
70
|
+
labelTextSize?: import("@itcase/ui-web/components/Text").TextProps["size"];
|
|
71
|
+
labelTextWeight?: import("@itcase/ui-web/components/Text").TextProps["textWeight"];
|
|
72
|
+
messageTextSize?: import("@itcase/ui-web/components/Text").TextProps["size"];
|
|
73
|
+
metaActive?: boolean;
|
|
74
|
+
metaError?: boolean;
|
|
75
|
+
requiredMessageTextSize?: import("@itcase/ui-web/components/Text").TextProps["size"];
|
|
76
|
+
requiredMessageTextWeight?: import("@itcase/ui-web/components/Text").TextProps["textWeight"];
|
|
77
|
+
showDivider?: boolean;
|
|
78
|
+
tag?: "div" | "label";
|
|
79
|
+
type: string;
|
|
80
|
+
size?: import("@itcase/ui-web/components/Text").TextProps["size"];
|
|
81
|
+
};
|
|
82
|
+
inputProps: {
|
|
83
|
+
placeholder: string;
|
|
84
|
+
appearance: import("@itcase/types-ui").CompositeAppearanceStateDefault;
|
|
85
|
+
errorAppearance: import("@itcase/types-ui").CompositeAppearanceStateDefault;
|
|
86
|
+
requiredAppearance: import("@itcase/types-ui").CompositeAppearanceStateDefault;
|
|
87
|
+
successAppearance: import("@itcase/types-ui").CompositeAppearanceStateDefault;
|
|
88
|
+
width: import("@itcase/types-ui").WidthProps;
|
|
89
|
+
};
|
|
90
|
+
};
|
|
91
|
+
} & {
|
|
92
|
+
field: {
|
|
93
|
+
inputProps: {
|
|
94
|
+
value: string;
|
|
95
|
+
};
|
|
96
|
+
};
|
|
97
|
+
};
|
|
98
|
+
}
|
|
99
|
+
export { args_1 as args };
|
|
100
|
+
export function render_2(args: any): import("react/jsx-runtime").JSX.Element;
|
|
101
|
+
export { render_2 as render };
|
|
102
|
+
}
|
|
103
|
+
export namespace Require {
|
|
104
|
+
export namespace args_2 {
|
|
105
|
+
let validationSchema_1: yup.ObjectSchema<{
|
|
106
|
+
text: string;
|
|
107
|
+
}, yup.AnyObject, {
|
|
108
|
+
text: undefined;
|
|
109
|
+
}, "">;
|
|
110
|
+
export { validationSchema_1 as validationSchema };
|
|
111
|
+
}
|
|
112
|
+
export { args_2 as args };
|
|
113
|
+
export namespace parameters_1 {
|
|
114
|
+
let require: boolean;
|
|
115
|
+
}
|
|
116
|
+
export { parameters_1 as parameters };
|
|
117
|
+
export function render_3(args: any): import("react/jsx-runtime").JSX.Element;
|
|
118
|
+
export { render_3 as render };
|
|
119
|
+
}
|
|
120
|
+
export namespace Disabled {
|
|
121
|
+
export namespace args_3 {
|
|
122
|
+
let config_1: {
|
|
123
|
+
field: {
|
|
124
|
+
type: "text";
|
|
125
|
+
name: string;
|
|
126
|
+
fieldProps: {
|
|
127
|
+
direction?: import("@itcase/types-ui").DirectionProps;
|
|
128
|
+
dividerFill?: import("@itcase/ui-web/components/Divider").DividerProps["fill"];
|
|
129
|
+
errorMessageTextColor?: import("@itcase/ui-web/components/Text").TextProps["textColor"];
|
|
130
|
+
helpTextColor?: import("@itcase/ui-web/components/Text").TextProps["textColor"];
|
|
131
|
+
labelTextColor?: import("@itcase/ui-web/components/Text").TextProps["textColor"];
|
|
132
|
+
messageTextColor?: import("@itcase/ui-web/components/Text").TextProps["textColor"];
|
|
133
|
+
requiredMessageTextColor?: import("@itcase/ui-web/components/Text").TextProps["textColor"];
|
|
134
|
+
showMessage?: boolean;
|
|
135
|
+
width?: import("@itcase/types-ui").WidthProps;
|
|
136
|
+
id?: string;
|
|
137
|
+
after?: React.ReactNode;
|
|
138
|
+
afterItem?: React.ReactNode;
|
|
139
|
+
before?: React.ReactNode;
|
|
140
|
+
beforeItem?: React.ReactNode;
|
|
141
|
+
children?: React.ReactNode;
|
|
142
|
+
className?: string;
|
|
143
|
+
dataTestId?: string;
|
|
144
|
+
dataTour?: string;
|
|
145
|
+
desc?: string;
|
|
146
|
+
descTextColor?: import("@itcase/ui-web/components/Text").TextProps["textColor"];
|
|
147
|
+
descTextSize?: import("@itcase/ui-web/components/Text").TextProps["size"];
|
|
148
|
+
descTextWeight?: import("@itcase/ui-web/components/Text").TextProps["textWeight"];
|
|
149
|
+
dividerDirection?: import("@itcase/ui-web/components/Divider").DividerProps["direction"];
|
|
150
|
+
dividerSize?: import("@itcase/ui-web/components/Divider").DividerProps["size"];
|
|
151
|
+
dividerWidth?: import("@itcase/ui-web/components/Divider").DividerProps["width"];
|
|
152
|
+
errorKey?: "error" | "required";
|
|
153
|
+
errorMessage?: string;
|
|
154
|
+
errorMessageTextSize?: import("@itcase/ui-web/components/Text").TextProps["size"];
|
|
155
|
+
errorMessageTextWeight?: import("@itcase/ui-web/components/Text").TextProps["textWeight"];
|
|
156
|
+
fieldClassName?: string;
|
|
157
|
+
helpText: string;
|
|
158
|
+
helpTextColorSuccess?: import("@itcase/ui-web/components/Text").TextProps["textColor"];
|
|
159
|
+
helpTextSize?: import("@itcase/ui-web/components/Text").TextProps["size"];
|
|
160
|
+
helpTextSizeMobile?: import("@itcase/ui-web/components/Text").TextProps["size"];
|
|
161
|
+
helpTextWeight?: import("@itcase/ui-web/components/Text").TextProps["textWeight"];
|
|
162
|
+
inputName?: string;
|
|
163
|
+
inputValue?: boolean | object | string;
|
|
164
|
+
isDisabled?: boolean;
|
|
165
|
+
isErrorState?: boolean;
|
|
166
|
+
isHidden?: boolean;
|
|
167
|
+
isRequired?: boolean;
|
|
168
|
+
isValidState?: boolean;
|
|
169
|
+
label: string;
|
|
170
|
+
labelHidden?: string;
|
|
171
|
+
labelTextSize?: import("@itcase/ui-web/components/Text").TextProps["size"];
|
|
172
|
+
labelTextWeight?: import("@itcase/ui-web/components/Text").TextProps["textWeight"];
|
|
173
|
+
messageTextSize?: import("@itcase/ui-web/components/Text").TextProps["size"];
|
|
174
|
+
metaActive?: boolean;
|
|
175
|
+
metaError?: boolean;
|
|
176
|
+
requiredMessageTextSize?: import("@itcase/ui-web/components/Text").TextProps["size"];
|
|
177
|
+
requiredMessageTextWeight?: import("@itcase/ui-web/components/Text").TextProps["textWeight"];
|
|
178
|
+
showDivider?: boolean;
|
|
179
|
+
tag?: "div" | "label";
|
|
180
|
+
type: string;
|
|
181
|
+
size?: import("@itcase/ui-web/components/Text").TextProps["size"];
|
|
182
|
+
};
|
|
183
|
+
inputProps: {
|
|
184
|
+
placeholder: string;
|
|
185
|
+
appearance: import("@itcase/types-ui").CompositeAppearanceStateDefault;
|
|
186
|
+
errorAppearance: import("@itcase/types-ui").CompositeAppearanceStateDefault;
|
|
187
|
+
requiredAppearance: import("@itcase/types-ui").CompositeAppearanceStateDefault;
|
|
188
|
+
successAppearance: import("@itcase/types-ui").CompositeAppearanceStateDefault;
|
|
189
|
+
width: import("@itcase/types-ui").WidthProps;
|
|
190
|
+
};
|
|
191
|
+
};
|
|
192
|
+
} & {
|
|
193
|
+
field: {
|
|
194
|
+
inputProps: {
|
|
195
|
+
isDisabled: boolean;
|
|
196
|
+
};
|
|
197
|
+
};
|
|
198
|
+
};
|
|
199
|
+
export { config_1 as config };
|
|
200
|
+
}
|
|
201
|
+
export { args_3 as args };
|
|
202
|
+
export namespace parameters_2 {
|
|
203
|
+
let disabled: boolean;
|
|
204
|
+
}
|
|
205
|
+
export { parameters_2 as parameters };
|
|
206
|
+
export function render_4(args: any): import("react/jsx-runtime").JSX.Element;
|
|
207
|
+
export { render_4 as render };
|
|
208
|
+
}
|
|
209
|
+
declare namespace meta {
|
|
210
|
+
export let title: string;
|
|
211
|
+
export { FormFieldInput as component };
|
|
212
|
+
export namespace args_4 {
|
|
213
|
+
export namespace config_2 {
|
|
214
|
+
namespace field {
|
|
215
|
+
let type: "text";
|
|
216
|
+
let name: string;
|
|
217
|
+
let fieldProps: {
|
|
218
|
+
direction?: import("@itcase/types-ui").DirectionProps;
|
|
219
|
+
dividerFill?: import("@itcase/ui-web/components/Divider").DividerProps["fill"];
|
|
220
|
+
errorMessageTextColor?: import("@itcase/ui-web/components/Text").TextProps["textColor"];
|
|
221
|
+
helpTextColor?: import("@itcase/ui-web/components/Text").TextProps["textColor"];
|
|
222
|
+
labelTextColor?: import("@itcase/ui-web/components/Text").TextProps["textColor"];
|
|
223
|
+
messageTextColor?: import("@itcase/ui-web/components/Text").TextProps["textColor"];
|
|
224
|
+
requiredMessageTextColor?: import("@itcase/ui-web/components/Text").TextProps["textColor"];
|
|
225
|
+
showMessage?: boolean;
|
|
226
|
+
width?: import("@itcase/types-ui").WidthProps;
|
|
227
|
+
id?: string;
|
|
228
|
+
after?: React.ReactNode;
|
|
229
|
+
afterItem?: React.ReactNode;
|
|
230
|
+
before?: React.ReactNode;
|
|
231
|
+
beforeItem?: React.ReactNode;
|
|
232
|
+
children?: React.ReactNode;
|
|
233
|
+
className?: string;
|
|
234
|
+
dataTestId?: string;
|
|
235
|
+
dataTour?: string;
|
|
236
|
+
desc?: string;
|
|
237
|
+
descTextColor?: import("@itcase/ui-web/components/Text").TextProps["textColor"];
|
|
238
|
+
descTextSize?: import("@itcase/ui-web/components/Text").TextProps["size"];
|
|
239
|
+
descTextWeight?: import("@itcase/ui-web/components/Text").TextProps["textWeight"];
|
|
240
|
+
dividerDirection?: import("@itcase/ui-web/components/Divider").DividerProps["direction"];
|
|
241
|
+
dividerSize?: import("@itcase/ui-web/components/Divider").DividerProps["size"];
|
|
242
|
+
dividerWidth?: import("@itcase/ui-web/components/Divider").DividerProps["width"];
|
|
243
|
+
errorKey?: "error" | "required";
|
|
244
|
+
errorMessage?: string;
|
|
245
|
+
errorMessageTextSize?: import("@itcase/ui-web/components/Text").TextProps["size"];
|
|
246
|
+
errorMessageTextWeight?: import("@itcase/ui-web/components/Text").TextProps["textWeight"];
|
|
247
|
+
fieldClassName?: string;
|
|
248
|
+
helpText: string;
|
|
249
|
+
helpTextColorSuccess?: import("@itcase/ui-web/components/Text").TextProps["textColor"];
|
|
250
|
+
helpTextSize?: import("@itcase/ui-web/components/Text").TextProps["size"];
|
|
251
|
+
helpTextSizeMobile?: import("@itcase/ui-web/components/Text").TextProps["size"];
|
|
252
|
+
helpTextWeight?: import("@itcase/ui-web/components/Text").TextProps["textWeight"];
|
|
253
|
+
inputName?: string;
|
|
254
|
+
inputValue?: boolean | object | string;
|
|
255
|
+
isDisabled?: boolean;
|
|
256
|
+
isErrorState?: boolean;
|
|
257
|
+
isHidden?: boolean;
|
|
258
|
+
isRequired?: boolean;
|
|
259
|
+
isValidState?: boolean;
|
|
260
|
+
label: string;
|
|
261
|
+
labelHidden?: string;
|
|
262
|
+
labelTextSize?: import("@itcase/ui-web/components/Text").TextProps["size"];
|
|
263
|
+
labelTextWeight?: import("@itcase/ui-web/components/Text").TextProps["textWeight"];
|
|
264
|
+
messageTextSize?: import("@itcase/ui-web/components/Text").TextProps["size"];
|
|
265
|
+
metaActive?: boolean;
|
|
266
|
+
metaError?: boolean;
|
|
267
|
+
requiredMessageTextSize?: import("@itcase/ui-web/components/Text").TextProps["size"];
|
|
268
|
+
requiredMessageTextWeight?: import("@itcase/ui-web/components/Text").TextProps["textWeight"];
|
|
269
|
+
showDivider?: boolean;
|
|
270
|
+
tag?: "div" | "label";
|
|
271
|
+
type: string;
|
|
272
|
+
size?: import("@itcase/ui-web/components/Text").TextProps["size"];
|
|
273
|
+
};
|
|
274
|
+
let inputProps: {
|
|
275
|
+
placeholder: string;
|
|
276
|
+
appearance: import("@itcase/types-ui").CompositeAppearanceStateDefault;
|
|
277
|
+
errorAppearance: import("@itcase/types-ui").CompositeAppearanceStateDefault;
|
|
278
|
+
requiredAppearance: import("@itcase/types-ui").CompositeAppearanceStateDefault;
|
|
279
|
+
successAppearance: import("@itcase/types-ui").CompositeAppearanceStateDefault;
|
|
280
|
+
width: import("@itcase/types-ui").WidthProps;
|
|
281
|
+
};
|
|
282
|
+
}
|
|
283
|
+
}
|
|
284
|
+
export { config_2 as config };
|
|
285
|
+
export function onSubmit(): void;
|
|
286
|
+
}
|
|
287
|
+
export { args_4 as args };
|
|
288
|
+
export namespace parameters_3 {
|
|
289
|
+
let maxWidth: string;
|
|
290
|
+
let layout: string;
|
|
291
|
+
let formUrl: string;
|
|
292
|
+
}
|
|
293
|
+
export { parameters_3 as parameters };
|
|
294
|
+
}
|
|
295
|
+
import * as yup from 'yup';
|
|
296
|
+
import { FormFieldInput } from '../index';
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { CompositeAppearanceStateDefault, WidthProps } from '@itcase/types-ui';
|
|
2
|
+
import { InputNumberProps } from '@itcase/ui-web/components/InputNumber';
|
|
3
|
+
import { BaseField, FormTypes } from 'src/form/generator/generator.interface';
|
|
4
|
+
type InputNumberField = BaseField & {
|
|
5
|
+
inputType: InputNumberProps['type'];
|
|
6
|
+
type: Extract<FormTypes, 'inputNumber'>;
|
|
7
|
+
};
|
|
8
|
+
type FormFieldInputNumberProps = InputNumberField & {
|
|
9
|
+
initialValue?: number | string;
|
|
10
|
+
onChange?: (value: string) => void;
|
|
11
|
+
parse?: (value: number, name: string) => number;
|
|
12
|
+
};
|
|
13
|
+
type DefaultInputNumberProps = {
|
|
14
|
+
appearance: CompositeAppearanceStateDefault;
|
|
15
|
+
errorAppearance: CompositeAppearanceStateDefault;
|
|
16
|
+
requiredAppearance: CompositeAppearanceStateDefault;
|
|
17
|
+
successAppearance: CompositeAppearanceStateDefault;
|
|
18
|
+
width: WidthProps;
|
|
19
|
+
};
|
|
20
|
+
export type { DefaultInputNumberProps, FormFieldInputNumberProps, InputNumberField, };
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { CompositeAppearanceStateDefault, WidthProps } from '@itcase/types-ui';
|
|
2
|
+
import { IconProps } from '@itcase/ui-web/components/Icon';
|
|
3
|
+
import { InputNumberProps } from '@itcase/ui-web/components/InputNumber';
|
|
4
|
+
import { BaseField, FormTypes } from 'src/form/generator/generator.interface';
|
|
5
|
+
type MaskedInputField = BaseField & {
|
|
6
|
+
inputType: InputNumberProps['type'];
|
|
7
|
+
type: Extract<FormTypes, 'maskedInput'>;
|
|
8
|
+
};
|
|
9
|
+
type FormFieldMaskedInputProps = MaskedInputField & {
|
|
10
|
+
clearIcon?: IconProps['SvgImage'];
|
|
11
|
+
clearIconFill?: IconProps['iconFill'];
|
|
12
|
+
clearIconFillHover?: IconProps['iconFillHover'];
|
|
13
|
+
clearIconShape?: IconProps['shape'];
|
|
14
|
+
clearIconSize?: IconProps['size'];
|
|
15
|
+
initialValue?: string;
|
|
16
|
+
onClickClearIcon?: IconProps['onClick'];
|
|
17
|
+
optionsMask?: object;
|
|
18
|
+
unmasked?: string;
|
|
19
|
+
};
|
|
20
|
+
type DefaultMaskedInputProps = {
|
|
21
|
+
appearance: CompositeAppearanceStateDefault;
|
|
22
|
+
errorAppearance: CompositeAppearanceStateDefault;
|
|
23
|
+
requiredAppearance: CompositeAppearanceStateDefault;
|
|
24
|
+
successAppearance: CompositeAppearanceStateDefault;
|
|
25
|
+
width: WidthProps;
|
|
26
|
+
};
|
|
27
|
+
export type { DefaultMaskedInputProps, FormFieldMaskedInputProps, MaskedInputField, };
|
|
@@ -0,0 +1,127 @@
|
|
|
1
|
+
export default meta;
|
|
2
|
+
export namespace Default {
|
|
3
|
+
function render(args: any): import("react/jsx-runtime").JSX.Element;
|
|
4
|
+
}
|
|
5
|
+
export namespace Error {
|
|
6
|
+
export function render_1(args: any): import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export { render_1 as render };
|
|
8
|
+
}
|
|
9
|
+
export namespace Filled {
|
|
10
|
+
export namespace args {
|
|
11
|
+
namespace config {
|
|
12
|
+
namespace field {
|
|
13
|
+
let initialValue: string;
|
|
14
|
+
let type: "maskedInput";
|
|
15
|
+
let name: string;
|
|
16
|
+
let fieldProps: {
|
|
17
|
+
label: string;
|
|
18
|
+
direction?: import("@itcase/types-ui").DirectionProps;
|
|
19
|
+
dividerFill?: import("@itcase/ui-web/components/Divider").DividerProps["fill"];
|
|
20
|
+
errorMessageTextColor?: import("@itcase/ui-web/components/Text").TextProps["textColor"];
|
|
21
|
+
helpTextColor?: import("@itcase/ui-web/components/Text").TextProps["textColor"];
|
|
22
|
+
labelTextColor?: import("@itcase/ui-web/components/Text").TextProps["textColor"];
|
|
23
|
+
messageTextColor?: import("@itcase/ui-web/components/Text").TextProps["textColor"];
|
|
24
|
+
requiredMessageTextColor?: import("@itcase/ui-web/components/Text").TextProps["textColor"];
|
|
25
|
+
showMessage?: boolean;
|
|
26
|
+
width?: import("@itcase/types-ui").WidthProps;
|
|
27
|
+
id?: string;
|
|
28
|
+
after?: React.ReactNode;
|
|
29
|
+
afterItem?: React.ReactNode;
|
|
30
|
+
before?: React.ReactNode;
|
|
31
|
+
beforeItem?: React.ReactNode;
|
|
32
|
+
children?: React.ReactNode;
|
|
33
|
+
className?: string;
|
|
34
|
+
dataTestId?: string;
|
|
35
|
+
dataTour?: string;
|
|
36
|
+
desc?: string;
|
|
37
|
+
descTextColor?: import("@itcase/ui-web/components/Text").TextProps["textColor"];
|
|
38
|
+
descTextSize?: import("@itcase/ui-web/components/Text").TextProps["size"];
|
|
39
|
+
descTextWeight?: import("@itcase/ui-web/components/Text").TextProps["textWeight"];
|
|
40
|
+
dividerDirection?: import("@itcase/ui-web/components/Divider").DividerProps["direction"];
|
|
41
|
+
dividerSize?: import("@itcase/ui-web/components/Divider").DividerProps["size"];
|
|
42
|
+
dividerWidth?: import("@itcase/ui-web/components/Divider").DividerProps["width"];
|
|
43
|
+
errorKey?: "error" | "required";
|
|
44
|
+
errorMessage?: string;
|
|
45
|
+
errorMessageTextSize?: import("@itcase/ui-web/components/Text").TextProps["size"];
|
|
46
|
+
errorMessageTextWeight?: import("@itcase/ui-web/components/Text").TextProps["textWeight"];
|
|
47
|
+
fieldClassName?: string;
|
|
48
|
+
helpText?: string;
|
|
49
|
+
helpTextColorSuccess?: import("@itcase/ui-web/components/Text").TextProps["textColor"];
|
|
50
|
+
helpTextSize?: import("@itcase/ui-web/components/Text").TextProps["size"];
|
|
51
|
+
helpTextSizeMobile?: import("@itcase/ui-web/components/Text").TextProps["size"];
|
|
52
|
+
helpTextWeight?: import("@itcase/ui-web/components/Text").TextProps["textWeight"];
|
|
53
|
+
inputName?: string;
|
|
54
|
+
inputValue?: boolean | object | string;
|
|
55
|
+
isDisabled?: boolean;
|
|
56
|
+
isErrorState?: boolean;
|
|
57
|
+
isHidden?: boolean;
|
|
58
|
+
isRequired?: boolean;
|
|
59
|
+
isValidState?: boolean;
|
|
60
|
+
labelHidden?: string;
|
|
61
|
+
labelTextSize?: import("@itcase/ui-web/components/Text").TextProps["size"];
|
|
62
|
+
labelTextWeight?: import("@itcase/ui-web/components/Text").TextProps["textWeight"];
|
|
63
|
+
messageTextSize?: import("@itcase/ui-web/components/Text").TextProps["size"];
|
|
64
|
+
metaActive?: boolean;
|
|
65
|
+
metaError?: boolean;
|
|
66
|
+
requiredMessageTextSize?: import("@itcase/ui-web/components/Text").TextProps["size"];
|
|
67
|
+
requiredMessageTextWeight?: import("@itcase/ui-web/components/Text").TextProps["textWeight"];
|
|
68
|
+
showDivider?: boolean;
|
|
69
|
+
tag?: "div" | "label";
|
|
70
|
+
type?: import("../../../generator/generator.interface").FormTypes;
|
|
71
|
+
size?: import("@itcase/ui-web/components/Text").TextProps["size"];
|
|
72
|
+
};
|
|
73
|
+
let inputProps: {
|
|
74
|
+
placeholder: string;
|
|
75
|
+
appearance: import("@itcase/types-ui").CompositeAppearanceStateDefault;
|
|
76
|
+
errorAppearance: import("@itcase/types-ui").CompositeAppearanceStateDefault;
|
|
77
|
+
requiredAppearance: import("@itcase/types-ui").CompositeAppearanceStateDefault;
|
|
78
|
+
successAppearance: import("@itcase/types-ui").CompositeAppearanceStateDefault;
|
|
79
|
+
width: import("@itcase/types-ui").WidthProps;
|
|
80
|
+
};
|
|
81
|
+
namespace optionsMask {
|
|
82
|
+
let lazy: boolean;
|
|
83
|
+
let mask: string;
|
|
84
|
+
}
|
|
85
|
+
let unmasked: string;
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
let validationSchema: yup.ObjectSchema<{
|
|
89
|
+
input: string;
|
|
90
|
+
}, yup.AnyObject, {
|
|
91
|
+
input: undefined;
|
|
92
|
+
}, "">;
|
|
93
|
+
function onSubmit(): void;
|
|
94
|
+
}
|
|
95
|
+
export function render_2(args: any): import("react/jsx-runtime").JSX.Element;
|
|
96
|
+
export { render_2 as render };
|
|
97
|
+
}
|
|
98
|
+
export namespace Require {
|
|
99
|
+
export function render_3(args: any): import("react/jsx-runtime").JSX.Element;
|
|
100
|
+
export { render_3 as render };
|
|
101
|
+
}
|
|
102
|
+
export namespace Disabled {
|
|
103
|
+
export function render_4(args: any): import("react/jsx-runtime").JSX.Element;
|
|
104
|
+
export { render_4 as render };
|
|
105
|
+
}
|
|
106
|
+
declare namespace meta {
|
|
107
|
+
let validationSchema_1: yup.ObjectSchema<{
|
|
108
|
+
input: string;
|
|
109
|
+
}, yup.AnyObject, {
|
|
110
|
+
input: undefined;
|
|
111
|
+
}, "">;
|
|
112
|
+
export { validationSchema_1 as validationSchema };
|
|
113
|
+
export let title: string;
|
|
114
|
+
export { FormFieldMaskedInput as component };
|
|
115
|
+
export { args };
|
|
116
|
+
export function onSubmit_1(): void;
|
|
117
|
+
export { onSubmit_1 as onSubmit };
|
|
118
|
+
}
|
|
119
|
+
import * as yup from 'yup';
|
|
120
|
+
import { FormFieldMaskedInput } from '../index';
|
|
121
|
+
declare namespace args_1 {
|
|
122
|
+
export namespace config_1 {
|
|
123
|
+
export namespace field_1 { }
|
|
124
|
+
export { field_1 as field };
|
|
125
|
+
}
|
|
126
|
+
export { config_1 as config };
|
|
127
|
+
}
|
|
@@ -0,0 +1,119 @@
|
|
|
1
|
+
export default meta;
|
|
2
|
+
export namespace Default {
|
|
3
|
+
function render(args: any): import("react/jsx-runtime").JSX.Element;
|
|
4
|
+
}
|
|
5
|
+
export namespace Error {
|
|
6
|
+
export function render_1(args: any): import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export { render_1 as render };
|
|
8
|
+
}
|
|
9
|
+
export namespace Filled {
|
|
10
|
+
export namespace args {
|
|
11
|
+
namespace config {
|
|
12
|
+
namespace field {
|
|
13
|
+
let initialValue: string;
|
|
14
|
+
let type: "maskedInput";
|
|
15
|
+
let name: string;
|
|
16
|
+
let fieldProps: {
|
|
17
|
+
type: string;
|
|
18
|
+
label: string;
|
|
19
|
+
direction?: import("@itcase/types-ui").DirectionProps;
|
|
20
|
+
dividerFill?: import("@itcase/ui-web/components/Divider").DividerProps["fill"];
|
|
21
|
+
errorMessageTextColor?: import("@itcase/ui-web/components/Text").TextProps["textColor"];
|
|
22
|
+
helpTextColor?: import("@itcase/ui-web/components/Text").TextProps["textColor"];
|
|
23
|
+
labelTextColor?: import("@itcase/ui-web/components/Text").TextProps["textColor"];
|
|
24
|
+
messageTextColor?: import("@itcase/ui-web/components/Text").TextProps["textColor"];
|
|
25
|
+
requiredMessageTextColor?: import("@itcase/ui-web/components/Text").TextProps["textColor"];
|
|
26
|
+
showMessage?: boolean;
|
|
27
|
+
width?: import("@itcase/types-ui").WidthProps;
|
|
28
|
+
id?: string;
|
|
29
|
+
after?: React.ReactNode;
|
|
30
|
+
afterItem?: React.ReactNode;
|
|
31
|
+
before?: React.ReactNode;
|
|
32
|
+
beforeItem?: React.ReactNode;
|
|
33
|
+
children?: React.ReactNode;
|
|
34
|
+
className?: string;
|
|
35
|
+
dataTestId?: string;
|
|
36
|
+
dataTour?: string;
|
|
37
|
+
desc?: string;
|
|
38
|
+
descTextColor?: import("@itcase/ui-web/components/Text").TextProps["textColor"];
|
|
39
|
+
descTextSize?: import("@itcase/ui-web/components/Text").TextProps["size"];
|
|
40
|
+
descTextWeight?: import("@itcase/ui-web/components/Text").TextProps["textWeight"];
|
|
41
|
+
dividerDirection?: import("@itcase/ui-web/components/Divider").DividerProps["direction"];
|
|
42
|
+
dividerSize?: import("@itcase/ui-web/components/Divider").DividerProps["size"];
|
|
43
|
+
dividerWidth?: import("@itcase/ui-web/components/Divider").DividerProps["width"];
|
|
44
|
+
errorKey?: "error" | "required";
|
|
45
|
+
errorMessage?: string;
|
|
46
|
+
errorMessageTextSize?: import("@itcase/ui-web/components/Text").TextProps["size"];
|
|
47
|
+
errorMessageTextWeight?: import("@itcase/ui-web/components/Text").TextProps["textWeight"];
|
|
48
|
+
fieldClassName?: string;
|
|
49
|
+
helpText?: string;
|
|
50
|
+
helpTextColorSuccess?: import("@itcase/ui-web/components/Text").TextProps["textColor"];
|
|
51
|
+
helpTextSize?: import("@itcase/ui-web/components/Text").TextProps["size"];
|
|
52
|
+
helpTextSizeMobile?: import("@itcase/ui-web/components/Text").TextProps["size"];
|
|
53
|
+
helpTextWeight?: import("@itcase/ui-web/components/Text").TextProps["textWeight"];
|
|
54
|
+
inputName?: string;
|
|
55
|
+
inputValue?: boolean | object | string;
|
|
56
|
+
isDisabled?: boolean;
|
|
57
|
+
isErrorState?: boolean;
|
|
58
|
+
isHidden?: boolean;
|
|
59
|
+
isRequired?: boolean;
|
|
60
|
+
isValidState?: boolean;
|
|
61
|
+
labelHidden?: string;
|
|
62
|
+
labelTextSize?: import("@itcase/ui-web/components/Text").TextProps["size"];
|
|
63
|
+
labelTextWeight?: import("@itcase/ui-web/components/Text").TextProps["textWeight"];
|
|
64
|
+
messageTextSize?: import("@itcase/ui-web/components/Text").TextProps["size"];
|
|
65
|
+
metaActive?: boolean;
|
|
66
|
+
metaError?: boolean;
|
|
67
|
+
requiredMessageTextSize?: import("@itcase/ui-web/components/Text").TextProps["size"];
|
|
68
|
+
requiredMessageTextWeight?: import("@itcase/ui-web/components/Text").TextProps["textWeight"];
|
|
69
|
+
showDivider?: boolean;
|
|
70
|
+
tag?: "div" | "label";
|
|
71
|
+
size?: import("@itcase/ui-web/components/Text").TextProps["size"];
|
|
72
|
+
};
|
|
73
|
+
let inputProps: {
|
|
74
|
+
placeholder: string;
|
|
75
|
+
appearance: import("@itcase/types-ui").CompositeAppearanceStateDefault;
|
|
76
|
+
errorAppearance: import("@itcase/types-ui").CompositeAppearanceStateDefault;
|
|
77
|
+
requiredAppearance: import("@itcase/types-ui").CompositeAppearanceStateDefault;
|
|
78
|
+
successAppearance: import("@itcase/types-ui").CompositeAppearanceStateDefault;
|
|
79
|
+
width: import("@itcase/types-ui").WidthProps;
|
|
80
|
+
};
|
|
81
|
+
namespace optionsMask {
|
|
82
|
+
let lazy: boolean;
|
|
83
|
+
let mask: string;
|
|
84
|
+
}
|
|
85
|
+
let unmasked: string;
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
let validationSchema: yup.ObjectSchema<{
|
|
89
|
+
input: string;
|
|
90
|
+
}, yup.AnyObject, {
|
|
91
|
+
input: undefined;
|
|
92
|
+
}, "">;
|
|
93
|
+
function onSubmit(): void;
|
|
94
|
+
}
|
|
95
|
+
export function render_2(args: any): import("react/jsx-runtime").JSX.Element;
|
|
96
|
+
export { render_2 as render };
|
|
97
|
+
}
|
|
98
|
+
export namespace Require {
|
|
99
|
+
export function render_3(args: any): import("react/jsx-runtime").JSX.Element;
|
|
100
|
+
export { render_3 as render };
|
|
101
|
+
}
|
|
102
|
+
export namespace Disabled {
|
|
103
|
+
export function render_4(args: any): import("react/jsx-runtime").JSX.Element;
|
|
104
|
+
export { render_4 as render };
|
|
105
|
+
}
|
|
106
|
+
declare namespace meta {
|
|
107
|
+
export let title: string;
|
|
108
|
+
export { FormFieldMaskedInput as component };
|
|
109
|
+
export { args };
|
|
110
|
+
}
|
|
111
|
+
import * as yup from 'yup';
|
|
112
|
+
import { FormFieldMaskedInput } from '../index';
|
|
113
|
+
declare namespace args_1 {
|
|
114
|
+
export namespace config_1 {
|
|
115
|
+
export namespace field_1 { }
|
|
116
|
+
export { field_1 as field };
|
|
117
|
+
}
|
|
118
|
+
export { config_1 as config };
|
|
119
|
+
}
|