@ehfuse/mui-form-controls 2.0.3 → 2.0.5
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.md +4 -15
- package/dist/index.d.ts +1 -2
- package/dist/index.js +1 -8
- package/dist/index.js.map +4 -4
- package/dist/index.mjs +1 -8
- package/dist/index.mjs.map +4 -4
- package/dist/types.d.ts +0 -18
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -148,10 +148,6 @@ export type LabelSelectOption = {
|
|
|
148
148
|
value: string | number | boolean;
|
|
149
149
|
label: string;
|
|
150
150
|
};
|
|
151
|
-
export type SelectOption = {
|
|
152
|
-
value: string | number | boolean;
|
|
153
|
-
label: string;
|
|
154
|
-
};
|
|
155
151
|
export type LabelSelectProps = Omit<MuiSelectProps, "value" | "onChange" | "defaultValue" | "form"> & BaseTextFieldProps & {
|
|
156
152
|
label: string;
|
|
157
153
|
value?: string | number;
|
|
@@ -167,19 +163,6 @@ export type LabelSelectProps = Omit<MuiSelectProps, "value" | "onChange" | "defa
|
|
|
167
163
|
formControlProps?: Omit<FormControlProps, "children">;
|
|
168
164
|
name?: string;
|
|
169
165
|
};
|
|
170
|
-
export type SelectProps = Omit<MuiSelectProps, "value" | "onChange" | "defaultValue" | "form"> & BaseTextFieldProps & {
|
|
171
|
-
value?: string | number;
|
|
172
|
-
onChange?: (event: SelectChangeEvent<string | number>) => void;
|
|
173
|
-
options: SelectOption[];
|
|
174
|
-
inputProps?: InputBaseComponentProps;
|
|
175
|
-
enableWheel?: boolean;
|
|
176
|
-
emptyLabel?: string;
|
|
177
|
-
readOnly?: boolean;
|
|
178
|
-
showEmptyOption?: boolean;
|
|
179
|
-
fullWidth?: boolean;
|
|
180
|
-
formControlProps?: Omit<FormControlProps, "children">;
|
|
181
|
-
name?: string;
|
|
182
|
-
};
|
|
183
166
|
export type StepperProps = Omit<MuiStepperProps, "activeStep"> & BaseTextFieldProps & {
|
|
184
167
|
name?: string;
|
|
185
168
|
activeStep?: number;
|
|
@@ -445,7 +428,6 @@ export type DateTimeTextFieldProps = Omit<TextFieldProps, "type"> & BaseTextFiel
|
|
|
445
428
|
showToday?: boolean;
|
|
446
429
|
showFooter?: boolean;
|
|
447
430
|
autoApply?: boolean;
|
|
448
|
-
closeOnDateSelect?: boolean;
|
|
449
431
|
minuteStep?: number;
|
|
450
432
|
secondStep?: number;
|
|
451
433
|
hideDisabledTime?: boolean;
|