@unizhen/ui 0.0.71 → 0.0.72
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/lib/components/form/draggable.vue.d.ts +308 -0
- package/lib/components/form/index.d.ts +2 -1
- package/lib/components/form/index.vue.d.ts +308 -0
- package/lib/components/form/interface.d.ts +8 -1
- package/lib/components/form/timesPicker.vue.d.ts +1568 -0
- package/lib/components/table/factory.d.ts +7 -2
- package/lib/ui.css +1 -1
- package/lib/ui.js +1850 -1729
- package/package.json +1 -1
|
@@ -203,6 +203,13 @@ export interface IUzFormItemTime extends IUzFormItemBase {
|
|
|
203
203
|
format?: string;
|
|
204
204
|
};
|
|
205
205
|
}
|
|
206
|
+
export interface IUzFormItemTimePicker extends IUzFormItemBase {
|
|
207
|
+
input: 'timePicker';
|
|
208
|
+
params: {
|
|
209
|
+
placeholder: string;
|
|
210
|
+
clearable: boolean;
|
|
211
|
+
};
|
|
212
|
+
}
|
|
206
213
|
export interface IUzFormItemUpload extends IUzFormItemBase {
|
|
207
214
|
input: 'upload';
|
|
208
215
|
params: {
|
|
@@ -262,6 +269,6 @@ export interface IUzFormItemSubTable extends IUzFormItemBase {
|
|
|
262
269
|
deleteFn?: string;
|
|
263
270
|
};
|
|
264
271
|
}
|
|
265
|
-
export type IUzFormItem = IUzFormItemGroup | IUzFormItemInput | IUzFormItemAuto | IUzFormItemNumber | IUzFormItemDatePicker | IUzFormItemSelect | IUzFormItemCascader | IUzFormItemTime | IUzFormItemColor | IUzFormItemSwitch | IUzFormItemUpload | IUzFormItemDivider | IUzFormItemCheckbox | IUzFormItemSubTable | IUzFormItemFilling;
|
|
272
|
+
export type IUzFormItem = IUzFormItemGroup | IUzFormItemInput | IUzFormItemAuto | IUzFormItemNumber | IUzFormItemDatePicker | IUzFormItemSelect | IUzFormItemCascader | IUzFormItemTime | IUzFormItemTimePicker | IUzFormItemColor | IUzFormItemSwitch | IUzFormItemUpload | IUzFormItemDivider | IUzFormItemCheckbox | IUzFormItemSubTable | IUzFormItemFilling;
|
|
266
273
|
export type IUzFormItems = IUzFormItem[];
|
|
267
274
|
export {};
|