@das-fed/upf-ui 6.4.0-dev.270 → 6.4.0-dev.272
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/front-end/i18n/front-end-page/dasui_en-US.js +1 -1
- package/front-end/i18n/front-end-page/dasui_zh-CN.js +1 -1
- package/front-end/i18n/front-end-page/dasui_zh-MO.js +1 -1
- package/package.json +3 -3
- package/packages/business-components/change-pwd/src/hooks/use-changePwd.d.ts +8 -8
- package/packages/business-components/device-panel/src/components/drag-resize/index.vue.d.ts +2 -2
- package/packages/business-components/process-configuration/index.js +124 -130
- package/packages/business-components/process-configuration/index.js.gz +0 -0
- package/packages/business-components/process-configuration/style.css +1 -1
- package/packages/business-components/process-configuration/style.css.gz +0 -0
- package/packages/business-components/process-form/src/hooks/useForm.d.ts +8 -8
- package/packages/business-components/process-search-form/hooks/useSearchOptions.d.ts +2 -2
- package/packages/business-components/urgent-panel/src/components/drag-resize/index.vue.d.ts +2 -2
- package/packages/components/date-picker/index.js +793 -647
- package/packages/components/date-picker/index.js.gz +0 -0
- package/packages/components/date-picker/src/time-zone-shortcut.d.ts +8 -0
- package/packages/components/date-picker/src/type.d.ts +22 -10
- package/packages/components/date-picker/style.css +1 -1
- package/packages/components/date-picker/style.css.gz +0 -0
- package/packages/components/form/index.d.ts +14 -14
- package/packages/components/form/index.js +44 -38
- package/packages/components/form/index.js.gz +0 -0
- package/packages/components/form/src/Index.vue.d.ts +2 -2
- package/packages/components/form/style.css +1 -1
- package/packages/components/upload/src/hook/use-upload.d.ts +1 -1
|
@@ -38,8 +38,8 @@ export declare const useForm: (props: any, emits: any, store: any) => {
|
|
|
38
38
|
$emit: (event: string, ...args: any[]) => void;
|
|
39
39
|
$el: any;
|
|
40
40
|
$options: import("vue").ComponentOptionsBase<Readonly<import("../../../../components/form/src/type").Props> & Readonly<{}>, {
|
|
41
|
-
validate: (callback:
|
|
42
|
-
validateField: (prop: string, callback:
|
|
41
|
+
validate: (callback?: (valid: boolean) => void) => Promise<boolean>;
|
|
42
|
+
validateField: (prop: string | string[], callback?: (valid: boolean) => void) => Promise<boolean>;
|
|
43
43
|
resetField: () => void;
|
|
44
44
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
45
45
|
size: "small" | "default" | "large";
|
|
@@ -90,8 +90,8 @@ export declare const useForm: (props: any, emits: any, store: any) => {
|
|
|
90
90
|
isSearchForm: boolean;
|
|
91
91
|
autoMarginRight: boolean;
|
|
92
92
|
}> & Omit<Readonly<import("../../../../components/form/src/type").Props> & Readonly<{}>, "validate" | "validateField" | "resetField" | ("size" | "alignItems" | "marginBottom" | "marginRight" | "errorMode" | "labelLength" | "contentWidth" | "labelPosition" | "alignType" | "rules" | "labelMarginRight" | "isSearchForm" | "autoMarginRight")> & import("vue").ShallowUnwrapRef<{
|
|
93
|
-
validate: (callback:
|
|
94
|
-
validateField: (prop: string, callback:
|
|
93
|
+
validate: (callback?: (valid: boolean) => void) => Promise<boolean>;
|
|
94
|
+
validateField: (prop: string | string[], callback?: (valid: boolean) => void) => Promise<boolean>;
|
|
95
95
|
resetField: () => void;
|
|
96
96
|
}> & {} & import("vue").ComponentCustomProperties & {} & {
|
|
97
97
|
$slots: {
|
|
@@ -132,8 +132,8 @@ export declare const useForm: (props: any, emits: any, store: any) => {
|
|
|
132
132
|
$emit: (event: string, ...args: any[]) => void;
|
|
133
133
|
$el: any;
|
|
134
134
|
$options: import("vue").ComponentOptionsBase<Readonly<import("../../../../components/form/src/type").Props> & Readonly<{}>, {
|
|
135
|
-
validate: (callback:
|
|
136
|
-
validateField: (prop: string, callback:
|
|
135
|
+
validate: (callback?: (valid: boolean) => void) => Promise<boolean>;
|
|
136
|
+
validateField: (prop: string | string[], callback?: (valid: boolean) => void) => Promise<boolean>;
|
|
137
137
|
resetField: () => void;
|
|
138
138
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
|
139
139
|
size: "small" | "default" | "large";
|
|
@@ -184,8 +184,8 @@ export declare const useForm: (props: any, emits: any, store: any) => {
|
|
|
184
184
|
isSearchForm: boolean;
|
|
185
185
|
autoMarginRight: boolean;
|
|
186
186
|
}> & Omit<Readonly<import("../../../../components/form/src/type").Props> & Readonly<{}>, "validate" | "validateField" | "resetField" | ("size" | "alignItems" | "marginBottom" | "marginRight" | "errorMode" | "labelLength" | "contentWidth" | "labelPosition" | "alignType" | "rules" | "labelMarginRight" | "isSearchForm" | "autoMarginRight")> & import("vue").ShallowUnwrapRef<{
|
|
187
|
-
validate: (callback:
|
|
188
|
-
validateField: (prop: string, callback:
|
|
187
|
+
validate: (callback?: (valid: boolean) => void) => Promise<boolean>;
|
|
188
|
+
validateField: (prop: string | string[], callback?: (valid: boolean) => void) => Promise<boolean>;
|
|
189
189
|
resetField: () => void;
|
|
190
190
|
}> & {} & import("vue").ComponentCustomProperties & {} & {
|
|
191
191
|
$slots: {
|
|
@@ -17,7 +17,7 @@ export declare const useSearchOptions: (prop: Props, emits: Emits) => {
|
|
|
17
17
|
value?: any;
|
|
18
18
|
checkedNodes?: any[] | undefined;
|
|
19
19
|
label?: any;
|
|
20
|
-
type?: (("input" | "select" | "textarea" | "switch" | "custom" | "password" | "treeSelect" | "radio" | "checkbox" | "cascader" | "colorPicker" | "selectInput" | "inputDialogSelect" | "inputNumber" | ("
|
|
20
|
+
type?: (("input" | "select" | "textarea" | "switch" | "custom" | "password" | "treeSelect" | "radio" | "checkbox" | "cascader" | "colorPicker" | "selectInput" | "inputDialogSelect" | "inputNumber" | ("date" | "year" | "month" | "week" | "time" | "dateTime" | "quarter") | ("dateRange" | "dateTimeRange" | "weekRange" | "monthRange" | "yearRange" | "timeRange")) | "searchInput" | "selectSearch" | "selectDateRange" | "inputSelect") | undefined;
|
|
21
21
|
layout?: ("out" | "inner") | undefined;
|
|
22
22
|
closable?: boolean | undefined;
|
|
23
23
|
custom?: boolean | undefined;
|
|
@@ -33,7 +33,7 @@ export declare const useSearchOptions: (prop: Props, emits: Emits) => {
|
|
|
33
33
|
value?: any;
|
|
34
34
|
checkedNodes?: any[] | undefined;
|
|
35
35
|
label?: any;
|
|
36
|
-
type?: (("input" | "select" | "textarea" | "switch" | "custom" | "password" | "treeSelect" | "radio" | "checkbox" | "cascader" | "colorPicker" | "selectInput" | "inputDialogSelect" | "inputNumber" | ("
|
|
36
|
+
type?: (("input" | "select" | "textarea" | "switch" | "custom" | "password" | "treeSelect" | "radio" | "checkbox" | "cascader" | "colorPicker" | "selectInput" | "inputDialogSelect" | "inputNumber" | ("date" | "year" | "month" | "week" | "time" | "dateTime" | "quarter") | ("dateRange" | "dateTimeRange" | "weekRange" | "monthRange" | "yearRange" | "timeRange")) | "searchInput" | "selectSearch" | "selectDateRange" | "inputSelect") | undefined;
|
|
37
37
|
layout?: ("out" | "inner") | undefined;
|
|
38
38
|
closable?: boolean | undefined;
|
|
39
39
|
custom?: boolean | undefined;
|
|
@@ -21,11 +21,11 @@ declare const _default: __VLS_WithSlots<import("vue").DefineComponent<Props, {
|
|
|
21
21
|
onResizing?: ((rect: rectType) => any) | undefined;
|
|
22
22
|
onResizestop?: ((rect: rectType) => any) | undefined;
|
|
23
23
|
}>, {
|
|
24
|
-
x: number;
|
|
25
24
|
y: number;
|
|
26
|
-
aspectRatio: boolean;
|
|
27
25
|
h: number | string;
|
|
28
26
|
w: number | string;
|
|
27
|
+
x: number;
|
|
28
|
+
aspectRatio: boolean;
|
|
29
29
|
isActive: boolean;
|
|
30
30
|
axis: string;
|
|
31
31
|
preventActiveBehavior: boolean;
|