@unizhen/ui 0.0.70 → 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/back/index.vue.d.ts +8 -7
- package/lib/components/camera/index.vue.d.ts +13 -16
- package/lib/components/circle/index.vue.d.ts +4 -4
- package/lib/components/form/draggable.vue.d.ts +387 -66
- package/lib/components/form/image.vue.d.ts +4 -4
- package/lib/components/form/index.d.ts +2 -1
- package/lib/components/form/index.vue.d.ts +387 -66
- package/lib/components/form/interface.d.ts +8 -1
- package/lib/components/form/item.vue.d.ts +66 -55
- package/lib/components/form/timesPicker.vue.d.ts +1568 -0
- package/lib/components/form/upload.vue.d.ts +56 -20
- package/lib/components/searchBar/components/timePickRange.vue.d.ts +5 -5
- package/lib/components/searchBar/index.vue.d.ts +81 -76
- package/lib/components/searchBar/mobile.vue.d.ts +74 -62
- package/lib/components/spin/index.vue.d.ts +44 -11
- package/lib/components/table/child.vue.d.ts +16 -29
- package/lib/components/table/child_quest.vue.d.ts +5 -20
- package/lib/components/table/drawer.vue.d.ts +46 -13
- package/lib/components/table/factory.d.ts +7 -2
- package/lib/components/table/index.vue.d.ts +100 -47
- package/lib/components/table/mobile.vue.d.ts +13 -19
- package/lib/components/thumbnail/index.vue.d.ts +18 -24
- package/lib/ui.css +1 -1
- package/lib/ui.js +2648 -2532
- package/package.json +23 -25
|
@@ -1121,23 +1121,23 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
1121
1121
|
}>> & Readonly<{}>, {
|
|
1122
1122
|
disabled: boolean;
|
|
1123
1123
|
raw: boolean;
|
|
1124
|
+
width: number | "trigger";
|
|
1125
|
+
duration: number;
|
|
1126
|
+
scrollable: boolean;
|
|
1127
|
+
trigger: PopoverTrigger;
|
|
1124
1128
|
to: string | boolean | HTMLElement;
|
|
1125
1129
|
placement: PopoverPlacement;
|
|
1126
|
-
width: number | "trigger";
|
|
1127
1130
|
show: boolean | undefined;
|
|
1128
1131
|
showArrow: boolean;
|
|
1129
|
-
trigger: PopoverTrigger;
|
|
1130
1132
|
arrow: boolean | undefined;
|
|
1131
1133
|
defaultShow: boolean;
|
|
1132
1134
|
delay: number;
|
|
1133
|
-
duration: number;
|
|
1134
1135
|
arrowPointToCenter: boolean;
|
|
1135
1136
|
displayDirective: "show" | "if";
|
|
1136
1137
|
flip: boolean;
|
|
1137
1138
|
animated: boolean;
|
|
1138
1139
|
overlap: boolean;
|
|
1139
1140
|
keepAliveOnHover: boolean;
|
|
1140
|
-
scrollable: boolean;
|
|
1141
1141
|
internalDeactivateImmediately: boolean;
|
|
1142
1142
|
internalSyncTargetWithParent: boolean;
|
|
1143
1143
|
internalInheritedEventHandlers: TriggerEventHandlers[];
|
|
@@ -3,4 +3,5 @@ export { default as UzFormItem } from './item.vue';
|
|
|
3
3
|
export { default as UzDraggableForm } from './draggable.vue';
|
|
4
4
|
export { default as UzFormItemUpload } from './upload.vue';
|
|
5
5
|
export { default as UzFormItemImage } from './image.vue';
|
|
6
|
-
export
|
|
6
|
+
export { default as UzFormItemTimesPicker } from './timesPicker.vue';
|
|
7
|
+
export type { IUzFormItemBase, IUzFormItemGroup, IUzFormItem, IUzFormItems, IUzFormItemInput, IUzFormItemAuto, IUzFormItemNumber, IUzFormItemDatePicker, IUzFormItemTime, IUzFormItemTimePicker, IUzFormItemSelect, IUzFormItemCascader, IUzFormItemSwitch, IUzFormItemUpload, IUzFormItemDivider, IUzFormItemColor, IUzFormItemCheckbox, IUzFormItemSubTable, IUzFormItemFilling, ITable, ISearch, IForm } from './interface';
|