@das-fed/ui 7.0.10 → 7.1.0-dev.2

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.
Files changed (52) hide show
  1. package/esm-map.json +2 -2
  2. package/package.json +5 -5
  3. package/packages/business-components/app-container/style.css +1 -1
  4. package/packages/business-components/app-container/style.css.gz +0 -0
  5. package/packages/business-components/area-phone-select/index.d.ts +23 -23
  6. package/packages/business-components/area-phone-select/src/Index.vue.d.ts +2 -2
  7. package/packages/business-components/area-phone-select/src/area-popover/index.vue.d.ts +2 -2
  8. package/packages/business-components/payment/api.d.ts +8 -0
  9. package/packages/business-components/payment/index.d.ts +9 -11
  10. package/packages/business-components/payment/index.js +153 -147
  11. package/packages/business-components/payment/index.js.gz +0 -0
  12. package/packages/business-components/payment/style.css +1 -1
  13. package/packages/business-components/payment/type.d.ts +2 -0
  14. package/packages/business-components/process-configuration/index.js +3 -3
  15. package/packages/business-components/process-configuration/index.js.gz +0 -0
  16. package/packages/business-components/process-configuration/style.css +1 -1
  17. package/packages/business-components/process-configuration/style.css.gz +0 -0
  18. package/packages/business-components/video-dialog/index.d.ts +10 -0
  19. package/packages/business-components/video-dialog/index.js +375 -358
  20. package/packages/business-components/video-dialog/index.js.gz +0 -0
  21. package/packages/business-components/video-dialog/src/api.d.ts +1 -0
  22. package/packages/business-components/video-dialog/src/component/Player/index.vue.d.ts +2 -0
  23. package/packages/business-components/video-dialog/src/hooks/use-video/PlayerProvider.d.ts +6 -0
  24. package/packages/business-components/video-dialog/src/index.vue.d.ts +2 -0
  25. package/packages/business-components/video-dialog/src/type.d.ts +7 -1
  26. package/packages/business-components/video-dialog/style.css +1 -1
  27. package/packages/business-components/video-dialog/style.css.gz +0 -0
  28. package/packages/components/autocomplete/index.d.ts +15 -15
  29. package/packages/components/autocomplete/src/index.vue.d.ts +2 -2
  30. package/packages/components/checkbox/index.d.ts +15 -15
  31. package/packages/components/checkbox/src/Index.vue.d.ts +2 -2
  32. package/packages/components/color-picker/index.d.ts +8 -8
  33. package/packages/components/color-picker/src/Index.vue.d.ts +2 -2
  34. package/packages/components/custom-search-item/index.d.ts +15 -15
  35. package/packages/components/custom-search-item/src/Index.vue.d.ts +2 -2
  36. package/packages/components/input/index.d.ts +5 -5
  37. package/packages/components/input/src/index.vue.d.ts +2 -2
  38. package/packages/components/input-dialog-select/index.d.ts +2 -2
  39. package/packages/components/input-dialog-select/src/Index.vue.d.ts +2 -2
  40. package/packages/components/input-number/index.d.ts +8 -8
  41. package/packages/components/input-number/src/App.vue.d.ts +2 -2
  42. package/packages/components/radio/index.d.ts +15 -15
  43. package/packages/components/radio/src/Index.vue.d.ts +2 -2
  44. package/packages/components/rich-editor/index.d.ts +8 -8
  45. package/packages/components/rich-editor/src/Index.vue.d.ts +2 -2
  46. package/packages/components/search/index.d.ts +2 -2
  47. package/packages/components/search/src/Index.vue.d.ts +2 -2
  48. package/packages/components/special-range-picker-month/index.d.ts +2 -2
  49. package/packages/components/special-range-picker-month/src/Index.vue.d.ts +2 -2
  50. package/packages/components/special-range-picker-year/index.d.ts +2 -2
  51. package/packages/components/special-range-picker-year/src/Index.vue.d.ts +2 -2
  52. package/packages/components/tree-select/src/App.vue.d.ts +2 -2
@@ -4,11 +4,11 @@ type __VLS_Slots = {} & {
4
4
  default?: (props: typeof __VLS_9) => any;
5
5
  };
6
6
  declare const __VLS_component: import("vue").DefineComponent<CustomSearchItem, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
7
- "update:modelValue": (n: any) => any;
8
7
  change: (e: any) => any;
8
+ "update:modelValue": (n: any) => any;
9
9
  }, string, import("vue").PublicProps, Readonly<CustomSearchItem> & Readonly<{
10
- "onUpdate:modelValue"?: ((n: any) => any) | undefined;
11
10
  onChange?: ((e: any) => any) | undefined;
11
+ "onUpdate:modelValue"?: ((n: any) => any) | undefined;
12
12
  }>, {
13
13
  label: string;
14
14
  defaultProps: import("./type").ValLabel<string>;
@@ -1,12 +1,12 @@
1
1
  declare const DasInput: import("@das-fed/utils").SFCWithInstall<{
2
2
  new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("./src/type.js").Props> & Readonly<{
3
- "onUpdate:modelValue"?: ((val: any) => any) | undefined;
4
3
  onChange?: ((val: string | number) => any) | undefined;
4
+ "onUpdate:modelValue"?: ((val: any) => any) | undefined;
5
5
  }>, {
6
6
  $refInput: import("vue").Ref<any, any>;
7
7
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
8
- "update:modelValue": (val: any) => any;
9
8
  change: (val: string | number) => any;
9
+ "update:modelValue": (val: any) => any;
10
10
  }, import("vue").PublicProps, {
11
11
  type: string;
12
12
  size: "default" | "table";
@@ -42,8 +42,8 @@ declare const DasInput: import("@das-fed/utils").SFCWithInstall<{
42
42
  M: {};
43
43
  Defaults: {};
44
44
  }, Readonly<import("./src/type.js").Props> & Readonly<{
45
- "onUpdate:modelValue"?: ((val: any) => any) | undefined;
46
45
  onChange?: ((val: string | number) => any) | undefined;
46
+ "onUpdate:modelValue"?: ((val: any) => any) | undefined;
47
47
  }>, {
48
48
  $refInput: import("vue").Ref<any, any>;
49
49
  }, {}, {}, {}, {
@@ -78,13 +78,13 @@ declare const DasInput: import("@das-fed/utils").SFCWithInstall<{
78
78
  __isTeleport?: never;
79
79
  __isSuspense?: never;
80
80
  } & import("vue").ComponentOptionsBase<Readonly<import("./src/type.js").Props> & Readonly<{
81
- "onUpdate:modelValue"?: ((val: any) => any) | undefined;
82
81
  onChange?: ((val: string | number) => any) | undefined;
82
+ "onUpdate:modelValue"?: ((val: any) => any) | undefined;
83
83
  }>, {
84
84
  $refInput: import("vue").Ref<any, any>;
85
85
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
86
- "update:modelValue": (val: any) => any;
87
86
  change: (val: string | number) => any;
87
+ "update:modelValue": (val: any) => any;
88
88
  }, string, {
89
89
  type: string;
90
90
  size: "default" | "table";
@@ -3,11 +3,11 @@ import type { Props } from './type';
3
3
  declare const _default: __VLS_WithSlots<import("vue").DefineComponent<Props, {
4
4
  $refInput: import("vue").Ref<any, any>;
5
5
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
6
- "update:modelValue": (val: any) => any;
7
6
  change: (val: string | number) => any;
7
+ "update:modelValue": (val: any) => any;
8
8
  }, string, import("vue").PublicProps, Readonly<Props> & Readonly<{
9
- "onUpdate:modelValue"?: ((val: any) => any) | undefined;
10
9
  onChange?: ((val: string | number) => any) | undefined;
10
+ "onUpdate:modelValue"?: ((val: any) => any) | undefined;
11
11
  }>, {
12
12
  type: string;
13
13
  size: "default" | "table";
@@ -1,12 +1,12 @@
1
1
  declare const DasInputDialogSelect: import("@das-fed/utils").SFCWithInstall<import("vue").DefineComponent<import("./src/type.js").Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
2
- "update:modelValue": (...args: any[]) => void;
3
2
  change: (...args: any[]) => void;
3
+ "update:modelValue": (...args: any[]) => void;
4
4
  "open-dialog": (...args: any[]) => void;
5
5
  "clear-dialog": (...args: any[]) => void;
6
6
  "update:selectedOptions": (...args: any[]) => void;
7
7
  }, string, import("vue").PublicProps, Readonly<import("./src/type.js").Props> & Readonly<{
8
- "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
9
8
  onChange?: ((...args: any[]) => any) | undefined;
9
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
10
10
  "onOpen-dialog"?: ((...args: any[]) => any) | undefined;
11
11
  "onClear-dialog"?: ((...args: any[]) => any) | undefined;
12
12
  "onUpdate:selectedOptions"?: ((...args: any[]) => any) | undefined;
@@ -1,13 +1,13 @@
1
1
  import type { Props } from './type';
2
2
  declare const _default: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
3
- "update:modelValue": (...args: any[]) => void;
4
3
  change: (...args: any[]) => void;
4
+ "update:modelValue": (...args: any[]) => void;
5
5
  "open-dialog": (...args: any[]) => void;
6
6
  "clear-dialog": (...args: any[]) => void;
7
7
  "update:selectedOptions": (...args: any[]) => void;
8
8
  }, string, import("vue").PublicProps, Readonly<Props> & Readonly<{
9
- "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
10
9
  onChange?: ((...args: any[]) => any) | undefined;
10
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
11
11
  "onOpen-dialog"?: ((...args: any[]) => any) | undefined;
12
12
  "onClear-dialog"?: ((...args: any[]) => any) | undefined;
13
13
  "onUpdate:selectedOptions"?: ((...args: any[]) => any) | undefined;
@@ -6,14 +6,14 @@ declare const DasInputNumber: import("@das-fed/utils").SFCWithInstall<import("vu
6
6
  "update:modelValue": (value: number) => any;
7
7
  } & {
8
8
  input: (curValue: number | null | undefined) => any;
9
- "update:modelValue": (value: number | null) => any;
10
9
  change: (curVal: number | null | undefined, oldVal: number | null | undefined) => any;
10
+ "update:modelValue": (value: number | null) => any;
11
11
  }, string, import("vue").PublicProps, Readonly<import("./src/type.js").Props & {
12
12
  modelValue?: number;
13
13
  }> & Readonly<{
14
14
  onInput?: ((curValue: number | null | undefined) => any) | undefined;
15
- "onUpdate:modelValue"?: ((value: number | null) => any) | undefined;
16
15
  onChange?: ((curVal: number | null | undefined, oldVal: number | null | undefined) => any) | undefined;
16
+ "onUpdate:modelValue"?: ((value: number | null) => any) | undefined;
17
17
  }>, {
18
18
  size: "default" | "table";
19
19
  disabled: boolean;
@@ -29,16 +29,16 @@ declare const DasInputNumberRef: () => import("vue").Ref<import("vue").CreateCom
29
29
  modelValue?: number;
30
30
  }> & Readonly<{
31
31
  onInput?: ((curValue: number | null | undefined) => any) | undefined;
32
- "onUpdate:modelValue"?: ((value: number | null) => any) | undefined;
33
32
  onChange?: ((curVal: number | null | undefined, oldVal: number | null | undefined) => any) | undefined;
33
+ "onUpdate:modelValue"?: ((value: number | null) => any) | undefined;
34
34
  }>, {
35
35
  $elInputNumber: import("vue").Ref<any, any>;
36
36
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
37
37
  "update:modelValue": (value: number) => any;
38
38
  } & {
39
39
  input: (curValue: number | null | undefined) => any;
40
- "update:modelValue": (value: number | null) => any;
41
40
  change: (curVal: number | null | undefined, oldVal: number | null | undefined) => any;
41
+ "update:modelValue": (value: number | null) => any;
42
42
  }, import("vue").PublicProps, {
43
43
  size: "default" | "table";
44
44
  disabled: boolean;
@@ -60,8 +60,8 @@ declare const DasInputNumberRef: () => import("vue").Ref<import("vue").CreateCom
60
60
  modelValue?: number;
61
61
  }> & Readonly<{
62
62
  onInput?: ((curValue: number | null | undefined) => any) | undefined;
63
- "onUpdate:modelValue"?: ((value: number | null) => any) | undefined;
64
63
  onChange?: ((curVal: number | null | undefined, oldVal: number | null | undefined) => any) | undefined;
64
+ "onUpdate:modelValue"?: ((value: number | null) => any) | undefined;
65
65
  }>, {
66
66
  $elInputNumber: import("vue").Ref<any, any>;
67
67
  }, {}, {}, {}, {
@@ -78,16 +78,16 @@ declare const DasInputNumberRef: () => import("vue").Ref<import("vue").CreateCom
78
78
  modelValue?: number;
79
79
  }> & Readonly<{
80
80
  onInput?: ((curValue: number | null | undefined) => any) | undefined;
81
- "onUpdate:modelValue"?: ((value: number | null) => any) | undefined;
82
81
  onChange?: ((curVal: number | null | undefined, oldVal: number | null | undefined) => any) | undefined;
82
+ "onUpdate:modelValue"?: ((value: number | null) => any) | undefined;
83
83
  }>, {
84
84
  $elInputNumber: import("vue").Ref<any, any>;
85
85
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
86
86
  "update:modelValue": (value: number) => any;
87
87
  } & {
88
88
  input: (curValue: number | null | undefined) => any;
89
- "update:modelValue": (value: number | null) => any;
90
89
  change: (curVal: number | null | undefined, oldVal: number | null | undefined) => any;
90
+ "update:modelValue": (value: number | null) => any;
91
91
  }, import("vue").PublicProps, {
92
92
  size: "default" | "table";
93
93
  disabled: boolean;
@@ -109,8 +109,8 @@ declare const DasInputNumberRef: () => import("vue").Ref<import("vue").CreateCom
109
109
  modelValue?: number;
110
110
  }> & Readonly<{
111
111
  onInput?: ((curValue: number | null | undefined) => any) | undefined;
112
- "onUpdate:modelValue"?: ((value: number | null) => any) | undefined;
113
112
  onChange?: ((curVal: number | null | undefined, oldVal: number | null | undefined) => any) | undefined;
113
+ "onUpdate:modelValue"?: ((value: number | null) => any) | undefined;
114
114
  }>, {
115
115
  $elInputNumber: import("vue").Ref<any, any>;
116
116
  }, {}, {}, {}, {
@@ -8,14 +8,14 @@ declare const _default: import("vue").DefineComponent<Props & {
8
8
  "update:modelValue": (value: number) => any;
9
9
  } & {
10
10
  input: (curValue: number | null | undefined) => any;
11
- "update:modelValue": (value: number | null) => any;
12
11
  change: (curVal: number | null | undefined, oldVal: number | null | undefined) => any;
12
+ "update:modelValue": (value: number | null) => any;
13
13
  }, string, import("vue").PublicProps, Readonly<Props & {
14
14
  modelValue?: number;
15
15
  }> & Readonly<{
16
16
  onInput?: ((curValue: number | null | undefined) => any) | undefined;
17
- "onUpdate:modelValue"?: ((value: number | null) => any) | undefined;
18
17
  onChange?: ((curVal: number | null | undefined, oldVal: number | null | undefined) => any) | undefined;
18
+ "onUpdate:modelValue"?: ((value: number | null) => any) | undefined;
19
19
  }>, {
20
20
  size: "default" | "table";
21
21
  disabled: boolean;
@@ -16,8 +16,8 @@ declare const DasRadioRef: () => import("vue").Ref<({
16
16
  readonly maxWidth?: string | undefined;
17
17
  readonly isSetTimeout?: boolean | undefined;
18
18
  readonly noSetDefaultVal?: boolean | undefined;
19
- readonly "onUpdate:modelValue"?: ((n: any) => any) | undefined;
20
19
  readonly onChange?: ((e: any) => any) | undefined;
20
+ readonly "onUpdate:modelValue"?: ((n: any) => any) | undefined;
21
21
  } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
22
22
  $attrs: {
23
23
  [x: string]: unknown;
@@ -31,14 +31,14 @@ declare const DasRadioRef: () => import("vue").Ref<({
31
31
  $root: import("vue").ComponentPublicInstance | null;
32
32
  $parent: import("vue").ComponentPublicInstance | null;
33
33
  $host: Element | null;
34
- $emit: ((event: "update:modelValue", n: any) => void) & ((event: "change", e: any) => void);
34
+ $emit: ((event: "change", e: any) => void) & ((event: "update:modelValue", n: any) => void);
35
35
  $el: any;
36
36
  $options: import("vue").ComponentOptionsBase<Readonly<import("./src/type.js").Props> & Readonly<{
37
- "onUpdate:modelValue"?: ((n: any) => any) | undefined;
38
37
  onChange?: ((e: any) => any) | undefined;
38
+ "onUpdate:modelValue"?: ((n: any) => any) | undefined;
39
39
  }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
40
- "update:modelValue": (n: any) => any;
41
40
  change: (e: any) => any;
41
+ "update:modelValue": (n: any) => any;
42
42
  }, string, {
43
43
  defaultProps: import("./src/type.js").ValLabel<string>;
44
44
  name: string;
@@ -82,8 +82,8 @@ declare const DasRadioRef: () => import("vue").Ref<({
82
82
  isView: boolean;
83
83
  noSetDefaultVal: boolean;
84
84
  }> & Omit<Readonly<import("./src/type.js").Props> & Readonly<{
85
- "onUpdate:modelValue"?: ((n: any) => any) | undefined;
86
85
  onChange?: ((e: any) => any) | undefined;
86
+ "onUpdate:modelValue"?: ((n: any) => any) | undefined;
87
87
  }>, "defaultProps" | "name" | "disabled" | "modelValue" | "options" | "layout" | "radioType" | "optionType" | "isView" | "noSetDefaultVal"> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {} & {
88
88
  $slots: {
89
89
  default?: (props: {}) => any;
@@ -115,8 +115,8 @@ declare const DasRadioRef: () => import("vue").Ref<({
115
115
  readonly maxWidth?: string | undefined;
116
116
  readonly isSetTimeout?: boolean | undefined;
117
117
  readonly noSetDefaultVal?: boolean | undefined;
118
- readonly "onUpdate:modelValue"?: ((n: any) => any) | undefined;
119
118
  readonly onChange?: ((e: any) => any) | undefined;
119
+ readonly "onUpdate:modelValue"?: ((n: any) => any) | undefined;
120
120
  } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
121
121
  $attrs: {
122
122
  [x: string]: unknown;
@@ -130,14 +130,14 @@ declare const DasRadioRef: () => import("vue").Ref<({
130
130
  $root: import("vue").ComponentPublicInstance | null;
131
131
  $parent: import("vue").ComponentPublicInstance | null;
132
132
  $host: Element | null;
133
- $emit: ((event: "update:modelValue", n: any) => void) & ((event: "change", e: any) => void);
133
+ $emit: ((event: "change", e: any) => void) & ((event: "update:modelValue", n: any) => void);
134
134
  $el: any;
135
135
  $options: import("vue").ComponentOptionsBase<Readonly<import("./src/type.js").Props> & Readonly<{
136
- "onUpdate:modelValue"?: ((n: any) => any) | undefined;
137
136
  onChange?: ((e: any) => any) | undefined;
137
+ "onUpdate:modelValue"?: ((n: any) => any) | undefined;
138
138
  }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
139
- "update:modelValue": (n: any) => any;
140
139
  change: (e: any) => any;
140
+ "update:modelValue": (n: any) => any;
141
141
  }, string, {
142
142
  defaultProps: import("./src/type.js").ValLabel<string>;
143
143
  name: string;
@@ -181,8 +181,8 @@ declare const DasRadioRef: () => import("vue").Ref<({
181
181
  isView: boolean;
182
182
  noSetDefaultVal: boolean;
183
183
  }> & Omit<Readonly<import("./src/type.js").Props> & Readonly<{
184
- "onUpdate:modelValue"?: ((n: any) => any) | undefined;
185
184
  onChange?: ((e: any) => any) | undefined;
185
+ "onUpdate:modelValue"?: ((n: any) => any) | undefined;
186
186
  }>, "defaultProps" | "name" | "disabled" | "modelValue" | "options" | "layout" | "radioType" | "optionType" | "isView" | "noSetDefaultVal"> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {} & {
187
187
  $slots: {
188
188
  default?: (props: {}) => any;
@@ -200,11 +200,11 @@ declare const DasRadioRef: () => import("vue").Ref<({
200
200
  }) | null>;
201
201
  declare const DasRadio: import("@das-fed/utils").SFCWithInstall<{
202
202
  new (...args: any[]): import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("./src/type.js").Props> & Readonly<{
203
- "onUpdate:modelValue"?: ((n: any) => any) | undefined;
204
203
  onChange?: ((e: any) => any) | undefined;
204
+ "onUpdate:modelValue"?: ((n: any) => any) | undefined;
205
205
  }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
206
- "update:modelValue": (n: any) => any;
207
206
  change: (e: any) => any;
207
+ "update:modelValue": (n: any) => any;
208
208
  }, import("vue").PublicProps, {
209
209
  defaultProps: import("./src/type.js").ValLabel<string>;
210
210
  name: string;
@@ -224,8 +224,8 @@ declare const DasRadio: import("@das-fed/utils").SFCWithInstall<{
224
224
  M: {};
225
225
  Defaults: {};
226
226
  }, Readonly<import("./src/type.js").Props> & Readonly<{
227
- "onUpdate:modelValue"?: ((n: any) => any) | undefined;
228
227
  onChange?: ((e: any) => any) | undefined;
228
+ "onUpdate:modelValue"?: ((n: any) => any) | undefined;
229
229
  }>, {}, {}, {}, {}, {
230
230
  defaultProps: import("./src/type.js").ValLabel<string>;
231
231
  name: string;
@@ -242,11 +242,11 @@ declare const DasRadio: import("@das-fed/utils").SFCWithInstall<{
242
242
  __isTeleport?: never;
243
243
  __isSuspense?: never;
244
244
  } & import("vue").ComponentOptionsBase<Readonly<import("./src/type.js").Props> & Readonly<{
245
- "onUpdate:modelValue"?: ((n: any) => any) | undefined;
246
245
  onChange?: ((e: any) => any) | undefined;
246
+ "onUpdate:modelValue"?: ((n: any) => any) | undefined;
247
247
  }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
248
- "update:modelValue": (n: any) => any;
249
248
  change: (e: any) => any;
249
+ "update:modelValue": (n: any) => any;
250
250
  }, string, {
251
251
  defaultProps: import("./src/type.js").ValLabel<string>;
252
252
  name: string;
@@ -15,11 +15,11 @@ type __VLS_Slots = {} & {
15
15
  default?: (props: typeof __VLS_43) => any;
16
16
  };
17
17
  declare const __VLS_component: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
18
- "update:modelValue": (n: any) => any;
19
18
  change: (e: any) => any;
19
+ "update:modelValue": (n: any) => any;
20
20
  }, string, import("vue").PublicProps, Readonly<Props> & Readonly<{
21
- "onUpdate:modelValue"?: ((n: any) => any) | undefined;
22
21
  onChange?: ((e: any) => any) | undefined;
22
+ "onUpdate:modelValue"?: ((n: any) => any) | undefined;
23
23
  }>, {
24
24
  defaultProps: import("./type").ValLabel<string>;
25
25
  name: string;
@@ -4,13 +4,13 @@ declare const DasRichEditor: import("@das-fed/utils").SFCWithInstall<import("vue
4
4
  $editor: import("vue").Ref<any, any>;
5
5
  editorRef: import("vue").ShallowRef<any, any>;
6
6
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
7
- "update:modelValue": (value: string) => any;
8
7
  change: (value: string) => any;
8
+ "update:modelValue": (value: string) => any;
9
9
  focus: () => any;
10
10
  blur: (value: string) => any;
11
11
  }, string, import("vue").PublicProps, Readonly<import("./src/type.js").Props> & Readonly<{
12
- "onUpdate:modelValue"?: ((value: string) => any) | undefined;
13
12
  onChange?: ((value: string) => any) | undefined;
13
+ "onUpdate:modelValue"?: ((value: string) => any) | undefined;
14
14
  onFocus?: (() => any) | undefined;
15
15
  onBlur?: ((value: string) => any) | undefined;
16
16
  }>, {
@@ -20,8 +20,8 @@ declare const DasRichEditor: import("@das-fed/utils").SFCWithInstall<import("vue
20
20
  excludeKeys: Array<string>;
21
21
  }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>>;
22
22
  declare const DasRichEditorRef: () => import("vue").Ref<import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("./src/type.js").Props> & Readonly<{
23
- "onUpdate:modelValue"?: ((value: string) => any) | undefined;
24
23
  onChange?: ((value: string) => any) | undefined;
24
+ "onUpdate:modelValue"?: ((value: string) => any) | undefined;
25
25
  onFocus?: (() => any) | undefined;
26
26
  onBlur?: ((value: string) => any) | undefined;
27
27
  }>, {
@@ -30,8 +30,8 @@ declare const DasRichEditorRef: () => import("vue").Ref<import("vue").CreateComp
30
30
  $editor: import("vue").Ref<any, any>;
31
31
  editorRef: import("vue").ShallowRef<any, any>;
32
32
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
33
- "update:modelValue": (value: string) => any;
34
33
  change: (value: string) => any;
34
+ "update:modelValue": (value: string) => any;
35
35
  focus: () => any;
36
36
  blur: (value: string) => any;
37
37
  }, import("vue").PublicProps, {
@@ -47,8 +47,8 @@ declare const DasRichEditorRef: () => import("vue").Ref<import("vue").CreateComp
47
47
  M: {};
48
48
  Defaults: {};
49
49
  }, Readonly<import("./src/type.js").Props> & Readonly<{
50
- "onUpdate:modelValue"?: ((value: string) => any) | undefined;
51
50
  onChange?: ((value: string) => any) | undefined;
51
+ "onUpdate:modelValue"?: ((value: string) => any) | undefined;
52
52
  onFocus?: (() => any) | undefined;
53
53
  onBlur?: ((value: string) => any) | undefined;
54
54
  }>, {
@@ -62,8 +62,8 @@ declare const DasRichEditorRef: () => import("vue").Ref<import("vue").CreateComp
62
62
  mode: "default" | "simple";
63
63
  excludeKeys: Array<string>;
64
64
  }> | null, import("vue").CreateComponentPublicInstanceWithMixins<Readonly<import("./src/type.js").Props> & Readonly<{
65
- "onUpdate:modelValue"?: ((value: string) => any) | undefined;
66
65
  onChange?: ((value: string) => any) | undefined;
66
+ "onUpdate:modelValue"?: ((value: string) => any) | undefined;
67
67
  onFocus?: (() => any) | undefined;
68
68
  onBlur?: ((value: string) => any) | undefined;
69
69
  }>, {
@@ -72,8 +72,8 @@ declare const DasRichEditorRef: () => import("vue").Ref<import("vue").CreateComp
72
72
  $editor: import("vue").Ref<any, any>;
73
73
  editorRef: import("vue").ShallowRef<any, any>;
74
74
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
75
- "update:modelValue": (value: string) => any;
76
75
  change: (value: string) => any;
76
+ "update:modelValue": (value: string) => any;
77
77
  focus: () => any;
78
78
  blur: (value: string) => any;
79
79
  }, import("vue").PublicProps, {
@@ -89,8 +89,8 @@ declare const DasRichEditorRef: () => import("vue").Ref<import("vue").CreateComp
89
89
  M: {};
90
90
  Defaults: {};
91
91
  }, Readonly<import("./src/type.js").Props> & Readonly<{
92
- "onUpdate:modelValue"?: ((value: string) => any) | undefined;
93
92
  onChange?: ((value: string) => any) | undefined;
93
+ "onUpdate:modelValue"?: ((value: string) => any) | undefined;
94
94
  onFocus?: (() => any) | undefined;
95
95
  onBlur?: ((value: string) => any) | undefined;
96
96
  }>, {
@@ -10,13 +10,13 @@ declare const _default: import("vue").DefineComponent<Props, {
10
10
  /** 编辑器实例 */
11
11
  editorRef: import("vue").ShallowRef<any, any>;
12
12
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
13
- "update:modelValue": (value: string) => any;
14
13
  change: (value: string) => any;
14
+ "update:modelValue": (value: string) => any;
15
15
  focus: () => any;
16
16
  blur: (value: string) => any;
17
17
  }, string, import("vue").PublicProps, Readonly<Props> & Readonly<{
18
- "onUpdate:modelValue"?: ((value: string) => any) | undefined;
19
18
  onChange?: ((value: string) => any) | undefined;
19
+ "onUpdate:modelValue"?: ((value: string) => any) | undefined;
20
20
  onFocus?: (() => any) | undefined;
21
21
  onBlur?: ((value: string) => any) | undefined;
22
22
  }>, {
@@ -1,9 +1,9 @@
1
1
  declare const DasSearch: import("@das-fed/utils").SFCWithInstall<import("vue").DefineComponent<import("./src/type.js").Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
2
- "update:modelValue": (val: string) => any;
3
2
  change: (val: string) => any;
3
+ "update:modelValue": (val: string) => any;
4
4
  }, string, import("vue").PublicProps, Readonly<import("./src/type.js").Props> & Readonly<{
5
- "onUpdate:modelValue"?: ((val: string) => any) | undefined;
6
5
  onChange?: ((val: string) => any) | undefined;
6
+ "onUpdate:modelValue"?: ((val: string) => any) | undefined;
7
7
  }>, {
8
8
  size: "large" | "middle" | "small" | "custom" | "middle-l" | "middle-xl";
9
9
  disabled: boolean;
@@ -1,11 +1,11 @@
1
1
  import 'element-plus/es/components/input/style/css';
2
2
  import type { Props } from './type';
3
3
  declare const _default: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
4
- "update:modelValue": (val: string) => any;
5
4
  change: (val: string) => any;
5
+ "update:modelValue": (val: string) => any;
6
6
  }, string, import("vue").PublicProps, Readonly<Props> & Readonly<{
7
- "onUpdate:modelValue"?: ((val: string) => any) | undefined;
8
7
  onChange?: ((val: string) => any) | undefined;
8
+ "onUpdate:modelValue"?: ((val: string) => any) | undefined;
9
9
  }>, {
10
10
  size: "large" | "middle" | "small" | "custom" | "middle-l" | "middle-xl";
11
11
  disabled: boolean;
@@ -1,12 +1,12 @@
1
1
  import '@das-fed/ui/packages/global/theme';
2
2
  declare const DasSpecialRangePickerMonth: import("@das-fed/utils").SFCWithInstall<import("vue").DefineComponent<import("./src/type.js").Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
3
- "update:modelValue": (currValue: import("./src/type.js").RangeValue) => any;
4
3
  change: (currValue: import("./src/type.js").RangeValue) => any;
4
+ "update:modelValue": (currValue: import("./src/type.js").RangeValue) => any;
5
5
  "update:error": (currValue: boolean) => any;
6
6
  "show-popover": () => any;
7
7
  }, string, import("vue").PublicProps, Readonly<import("./src/type.js").Props> & Readonly<{
8
- "onUpdate:modelValue"?: ((currValue: import("./src/type.js").RangeValue) => any) | undefined;
9
8
  onChange?: ((currValue: import("./src/type.js").RangeValue) => any) | undefined;
9
+ "onUpdate:modelValue"?: ((currValue: import("./src/type.js").RangeValue) => any) | undefined;
10
10
  "onUpdate:error"?: ((currValue: boolean) => any) | undefined;
11
11
  "onShow-popover"?: (() => any) | undefined;
12
12
  }>, {
@@ -1,12 +1,12 @@
1
1
  import type { Props } from './type';
2
2
  declare const _default: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
3
- "update:modelValue": (currValue: import("./type").RangeValue) => any;
4
3
  change: (currValue: import("./type").RangeValue) => any;
4
+ "update:modelValue": (currValue: import("./type").RangeValue) => any;
5
5
  "update:error": (currValue: boolean) => any;
6
6
  "show-popover": () => any;
7
7
  }, string, import("vue").PublicProps, Readonly<Props> & Readonly<{
8
- "onUpdate:modelValue"?: ((currValue: import("./type").RangeValue) => any) | undefined;
9
8
  onChange?: ((currValue: import("./type").RangeValue) => any) | undefined;
9
+ "onUpdate:modelValue"?: ((currValue: import("./type").RangeValue) => any) | undefined;
10
10
  "onUpdate:error"?: ((currValue: boolean) => any) | undefined;
11
11
  "onShow-popover"?: (() => any) | undefined;
12
12
  }>, {
@@ -1,12 +1,12 @@
1
1
  import '@das-fed/ui/packages/global/theme';
2
2
  declare const DasSpecialRangePickerYear: import("@das-fed/utils").SFCWithInstall<import("vue").DefineComponent<import("./src/type.js").Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
3
- "update:modelValue": (currValue: import("./src/type.js").RangeValue) => any;
4
3
  change: (currValue: import("./src/type.js").RangeValue) => any;
4
+ "update:modelValue": (currValue: import("./src/type.js").RangeValue) => any;
5
5
  "update:error": (crrValue: boolean) => any;
6
6
  "show-popover": () => any;
7
7
  }, string, import("vue").PublicProps, Readonly<import("./src/type.js").Props> & Readonly<{
8
- "onUpdate:modelValue"?: ((currValue: import("./src/type.js").RangeValue) => any) | undefined;
9
8
  onChange?: ((currValue: import("./src/type.js").RangeValue) => any) | undefined;
9
+ "onUpdate:modelValue"?: ((currValue: import("./src/type.js").RangeValue) => any) | undefined;
10
10
  "onUpdate:error"?: ((crrValue: boolean) => any) | undefined;
11
11
  "onShow-popover"?: (() => any) | undefined;
12
12
  }>, {
@@ -1,13 +1,13 @@
1
1
  import 'element-plus/es/components/popover/style/css';
2
2
  import type { Props } from './type';
3
3
  declare const _default: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
4
- "update:modelValue": (currValue: import("./type").RangeValue) => any;
5
4
  change: (currValue: import("./type").RangeValue) => any;
5
+ "update:modelValue": (currValue: import("./type").RangeValue) => any;
6
6
  "update:error": (crrValue: boolean) => any;
7
7
  "show-popover": () => any;
8
8
  }, string, import("vue").PublicProps, Readonly<Props> & Readonly<{
9
- "onUpdate:modelValue"?: ((currValue: import("./type").RangeValue) => any) | undefined;
10
9
  onChange?: ((currValue: import("./type").RangeValue) => any) | undefined;
10
+ "onUpdate:modelValue"?: ((currValue: import("./type").RangeValue) => any) | undefined;
11
11
  "onUpdate:error"?: ((crrValue: boolean) => any) | undefined;
12
12
  "onShow-popover"?: (() => any) | undefined;
13
13
  }>, {
@@ -6816,16 +6816,16 @@ declare const _default: __VLS_WithSlots<import("vue").DefineComponent<Props, {
6816
6816
  /** 设置默认值,当默认值为动态设置时使用(兼容老版本) */
6817
6817
  resetDefaultVal: (val: any) => void;
6818
6818
  }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
6819
- "update:modelValue": (value: string | number | string[] | number[]) => any;
6820
6819
  change: (value: string | number | string[] | number[], options: any[]) => any;
6820
+ "update:modelValue": (value: string | number | string[] | number[]) => any;
6821
6821
  "visible-change": (value: boolean) => any;
6822
6822
  focus: (val: any) => any;
6823
6823
  "update:path": (value: string | string[]) => any;
6824
6824
  blur: (val: any) => any;
6825
6825
  "update:keyword": (value: string) => any;
6826
6826
  }, string, import("vue").PublicProps, Readonly<Props> & Readonly<{
6827
- "onUpdate:modelValue"?: ((value: string | number | string[] | number[]) => any) | undefined;
6828
6827
  onChange?: ((value: string | number | string[] | number[], options: any[]) => any) | undefined;
6828
+ "onUpdate:modelValue"?: ((value: string | number | string[] | number[]) => any) | undefined;
6829
6829
  "onVisible-change"?: ((value: boolean) => any) | undefined;
6830
6830
  onFocus?: ((val: any) => any) | undefined;
6831
6831
  "onUpdate:path"?: ((value: string | string[]) => any) | undefined;