@aplus-frontend/ui 0.0.1-beta.3 → 0.0.1-beta.4
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/es/src/ap-field/date/interface.d.ts +1 -0
- package/es/src/ap-field/interface.d.ts +7 -5
- package/es/src/config-provider/config-provider-props.mjs +1 -1
- package/es/src/config-provider/index.mjs +8 -7
- package/es/src/count-down/index.d.ts +12 -12
- package/es/src/cropper/index.d.ts +12 -12
- package/es/src/icon-picker/icon-picker.vue.d.ts +1 -1
- package/es/src/icon-picker/index.d.ts +19 -19
- package/lib/src/ap-field/date/interface.d.ts +1 -0
- package/lib/src/ap-field/interface.d.ts +7 -5
- package/lib/src/config-provider/config-provider-props.js +1 -1
- package/lib/src/config-provider/index.js +1 -1
- package/lib/src/count-down/index.d.ts +12 -12
- package/lib/src/cropper/index.d.ts +12 -12
- package/lib/src/icon-picker/icon-picker.vue.d.ts +1 -1
- package/lib/src/icon-picker/index.d.ts +19 -19
- package/package.json +1 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type OmitValue<T> = Omit<T, 'value' | 'defaultValue' | 'onChange' | 'mode' | 'format'>;
|
|
@@ -1,5 +1,8 @@
|
|
|
1
|
-
import { InputProps, CheckboxGroupProps
|
|
1
|
+
import { InputProps, CheckboxGroupProps } from 'ant-design-vue';
|
|
2
2
|
import { InputFocusOptions } from 'ant-design-vue/es/vc-input/utils/commonUtils';
|
|
3
|
+
import { OmitValue } from './date/interface';
|
|
4
|
+
import { Dayjs } from 'dayjs';
|
|
5
|
+
import { PickerBaseProps, PickerDateProps, PickerTimeProps } from 'ant-design-vue/es/date-picker/generatePicker';
|
|
3
6
|
|
|
4
7
|
export type FieldMode = 'read' | 'edit';
|
|
5
8
|
export type BasicApFieldProps<FieldPropsType = any> = {
|
|
@@ -19,11 +22,10 @@ export type ApFieldCheckboxProps = BasicApFieldProps<CheckboxGroupProps> & {
|
|
|
19
22
|
request?: () => Promise<CheckboxGroupProps['options']>;
|
|
20
23
|
};
|
|
21
24
|
export type ApFormatPresetType = 'Y' | 'Y-M' | 'Y-D' | 'Y-h' | 'Y-m' | 'Y-s';
|
|
22
|
-
export type ApFieldDateProps = BasicApFieldProps<
|
|
25
|
+
export type ApFieldDateProps = BasicApFieldProps<OmitValue<PickerBaseProps<Dayjs>> | OmitValue<PickerDateProps<Dayjs>> | OmitValue<PickerTimeProps<Dayjs>>> & {
|
|
23
26
|
emptyText?: string;
|
|
24
27
|
value?: number | null;
|
|
25
|
-
defaultValue?: number
|
|
28
|
+
defaultValue?: number;
|
|
26
29
|
onChange?: (ts: number | null, dayStr: string) => void;
|
|
27
|
-
|
|
28
|
-
format: ApFormatPresetType;
|
|
30
|
+
format?: ApFormatPresetType;
|
|
29
31
|
};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { definePropType as e } from "@aplus-frontend/utils";
|
|
2
|
-
import { configProviderProps as t } from "
|
|
2
|
+
import { configProviderProps as t } from "ant-design-vue/es/config-provider/context";
|
|
3
3
|
const p = () => ({
|
|
4
4
|
/**
|
|
5
5
|
* @description aplus-ui的locale
|
|
@@ -1,14 +1,15 @@
|
|
|
1
1
|
import { withInstall as o } from "@aplus-frontend/utils";
|
|
2
2
|
import { ConfigProvider as r } from "./config-provider.mjs";
|
|
3
|
-
import
|
|
3
|
+
import "ant-design-vue/es/config-provider/context";
|
|
4
|
+
import { keysOf as a, provideGlobalConfig as s, useGlobalConfig as d } from "./hooks/use-global-config.mjs";
|
|
4
5
|
import "vue";
|
|
5
6
|
import "lodash-unified";
|
|
6
|
-
const
|
|
7
|
+
const p = o(r);
|
|
7
8
|
export {
|
|
8
|
-
|
|
9
|
+
p as APConfigProvider,
|
|
9
10
|
r as ConfigProvider,
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
11
|
+
p as default,
|
|
12
|
+
a as keysOf,
|
|
13
|
+
s as provideGlobalConfig,
|
|
14
|
+
d as useGlobalConfig
|
|
14
15
|
};
|
|
@@ -69,12 +69,12 @@ export declare const CountdownButton: {
|
|
|
69
69
|
});
|
|
70
70
|
export declare const CountdownInput: {
|
|
71
71
|
new (...args: any[]): CreateComponentPublicInstance<Readonly< ExtractPropTypes<{
|
|
72
|
-
size: {
|
|
73
|
-
type: PropType<"small" | "middle" | "large">;
|
|
74
|
-
};
|
|
75
72
|
value: {
|
|
76
73
|
type: PropType<string>;
|
|
77
74
|
};
|
|
75
|
+
size: {
|
|
76
|
+
type: PropType<"small" | "middle" | "large">;
|
|
77
|
+
};
|
|
78
78
|
count: {
|
|
79
79
|
type: PropType<number>;
|
|
80
80
|
default: number;
|
|
@@ -83,12 +83,12 @@ export declare const CountdownInput: {
|
|
|
83
83
|
type: PropType<() => Promise<boolean>>;
|
|
84
84
|
};
|
|
85
85
|
}>>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, VNodeProps & AllowedComponentProps & ComponentCustomProps & Readonly< ExtractPropTypes<{
|
|
86
|
-
size: {
|
|
87
|
-
type: PropType<"small" | "middle" | "large">;
|
|
88
|
-
};
|
|
89
86
|
value: {
|
|
90
87
|
type: PropType<string>;
|
|
91
88
|
};
|
|
89
|
+
size: {
|
|
90
|
+
type: PropType<"small" | "middle" | "large">;
|
|
91
|
+
};
|
|
92
92
|
count: {
|
|
93
93
|
type: PropType<number>;
|
|
94
94
|
default: number;
|
|
@@ -106,12 +106,12 @@ export declare const CountdownInput: {
|
|
|
106
106
|
M: {};
|
|
107
107
|
Defaults: {};
|
|
108
108
|
}, Readonly< ExtractPropTypes<{
|
|
109
|
-
size: {
|
|
110
|
-
type: PropType<"small" | "middle" | "large">;
|
|
111
|
-
};
|
|
112
109
|
value: {
|
|
113
110
|
type: PropType<string>;
|
|
114
111
|
};
|
|
112
|
+
size: {
|
|
113
|
+
type: PropType<"small" | "middle" | "large">;
|
|
114
|
+
};
|
|
115
115
|
count: {
|
|
116
116
|
type: PropType<number>;
|
|
117
117
|
default: number;
|
|
@@ -126,12 +126,12 @@ export declare const CountdownInput: {
|
|
|
126
126
|
__isTeleport?: undefined;
|
|
127
127
|
__isSuspense?: undefined;
|
|
128
128
|
} & ComponentOptionsBase<Readonly< ExtractPropTypes<{
|
|
129
|
-
size: {
|
|
130
|
-
type: PropType<"small" | "middle" | "large">;
|
|
131
|
-
};
|
|
132
129
|
value: {
|
|
133
130
|
type: PropType<string>;
|
|
134
131
|
};
|
|
132
|
+
size: {
|
|
133
|
+
type: PropType<"small" | "middle" | "large">;
|
|
134
|
+
};
|
|
135
135
|
count: {
|
|
136
136
|
type: PropType<number>;
|
|
137
137
|
default: number;
|
|
@@ -194,13 +194,13 @@ export declare const CropperImage: {
|
|
|
194
194
|
});
|
|
195
195
|
export declare const CropperAvatar: {
|
|
196
196
|
new (...args: any[]): CreateComponentPublicInstance<Readonly< ExtractPropTypes<{
|
|
197
|
+
value: {
|
|
198
|
+
type: PropType<string>;
|
|
199
|
+
};
|
|
197
200
|
size: {
|
|
198
201
|
type: PropType<number>;
|
|
199
202
|
default: number;
|
|
200
203
|
};
|
|
201
|
-
value: {
|
|
202
|
-
type: PropType<string>;
|
|
203
|
-
};
|
|
204
204
|
width: {
|
|
205
205
|
type: PropType<string | number>;
|
|
206
206
|
default: string;
|
|
@@ -232,13 +232,13 @@ export declare const CropperAvatar: {
|
|
|
232
232
|
change: (...args: any[]) => void;
|
|
233
233
|
"update:value": (...args: any[]) => void;
|
|
234
234
|
}, VNodeProps & AllowedComponentProps & ComponentCustomProps & Readonly< ExtractPropTypes<{
|
|
235
|
+
value: {
|
|
236
|
+
type: PropType<string>;
|
|
237
|
+
};
|
|
235
238
|
size: {
|
|
236
239
|
type: PropType<number>;
|
|
237
240
|
default: number;
|
|
238
241
|
};
|
|
239
|
-
value: {
|
|
240
|
-
type: PropType<string>;
|
|
241
|
-
};
|
|
242
242
|
width: {
|
|
243
243
|
type: PropType<string | number>;
|
|
244
244
|
default: string;
|
|
@@ -276,13 +276,13 @@ export declare const CropperAvatar: {
|
|
|
276
276
|
M: {};
|
|
277
277
|
Defaults: {};
|
|
278
278
|
}, Readonly< ExtractPropTypes<{
|
|
279
|
+
value: {
|
|
280
|
+
type: PropType<string>;
|
|
281
|
+
};
|
|
279
282
|
size: {
|
|
280
283
|
type: PropType<number>;
|
|
281
284
|
default: number;
|
|
282
285
|
};
|
|
283
|
-
value: {
|
|
284
|
-
type: PropType<string>;
|
|
285
|
-
};
|
|
286
286
|
width: {
|
|
287
287
|
type: PropType<string | number>;
|
|
288
288
|
default: string;
|
|
@@ -320,13 +320,13 @@ export declare const CropperAvatar: {
|
|
|
320
320
|
__isTeleport?: undefined;
|
|
321
321
|
__isSuspense?: undefined;
|
|
322
322
|
} & ComponentOptionsBase<Readonly< ExtractPropTypes<{
|
|
323
|
+
value: {
|
|
324
|
+
type: PropType<string>;
|
|
325
|
+
};
|
|
323
326
|
size: {
|
|
324
327
|
type: PropType<number>;
|
|
325
328
|
default: number;
|
|
326
329
|
};
|
|
327
|
-
value: {
|
|
328
|
-
type: PropType<string>;
|
|
329
|
-
};
|
|
330
330
|
width: {
|
|
331
331
|
type: PropType<string | number>;
|
|
332
332
|
default: string;
|
|
@@ -25,9 +25,9 @@ declare const _default: DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRunt
|
|
|
25
25
|
"onUpdate:value"?: ((...args: any[]) => any) | undefined;
|
|
26
26
|
}, {
|
|
27
27
|
value: string;
|
|
28
|
+
mode: "svg" | "iconify";
|
|
28
29
|
readonly: boolean;
|
|
29
30
|
allowClear: boolean;
|
|
30
|
-
mode: "svg" | "iconify";
|
|
31
31
|
width: string;
|
|
32
32
|
copy: boolean;
|
|
33
33
|
pageSize: number;
|
|
@@ -6,6 +6,10 @@ export declare const IconPicker: {
|
|
|
6
6
|
type: PropType<string>;
|
|
7
7
|
default: string;
|
|
8
8
|
};
|
|
9
|
+
mode: {
|
|
10
|
+
type: PropType<"svg" | "iconify">;
|
|
11
|
+
default: string;
|
|
12
|
+
};
|
|
9
13
|
readonly: {
|
|
10
14
|
type: PropType<boolean>;
|
|
11
15
|
default: boolean;
|
|
@@ -14,10 +18,6 @@ export declare const IconPicker: {
|
|
|
14
18
|
type: PropType<boolean>;
|
|
15
19
|
default: boolean;
|
|
16
20
|
};
|
|
17
|
-
mode: {
|
|
18
|
-
type: PropType<"svg" | "iconify">;
|
|
19
|
-
default: string;
|
|
20
|
-
};
|
|
21
21
|
width: {
|
|
22
22
|
type: PropType<string>;
|
|
23
23
|
default: string;
|
|
@@ -44,6 +44,10 @@ export declare const IconPicker: {
|
|
|
44
44
|
type: PropType<string>;
|
|
45
45
|
default: string;
|
|
46
46
|
};
|
|
47
|
+
mode: {
|
|
48
|
+
type: PropType<"svg" | "iconify">;
|
|
49
|
+
default: string;
|
|
50
|
+
};
|
|
47
51
|
readonly: {
|
|
48
52
|
type: PropType<boolean>;
|
|
49
53
|
default: boolean;
|
|
@@ -52,10 +56,6 @@ export declare const IconPicker: {
|
|
|
52
56
|
type: PropType<boolean>;
|
|
53
57
|
default: boolean;
|
|
54
58
|
};
|
|
55
|
-
mode: {
|
|
56
|
-
type: PropType<"svg" | "iconify">;
|
|
57
|
-
default: string;
|
|
58
|
-
};
|
|
59
59
|
width: {
|
|
60
60
|
type: PropType<string>;
|
|
61
61
|
default: string;
|
|
@@ -76,9 +76,9 @@ export declare const IconPicker: {
|
|
|
76
76
|
"onUpdate:value"?: ((...args: any[]) => any) | undefined;
|
|
77
77
|
}, {
|
|
78
78
|
value: string;
|
|
79
|
+
mode: "svg" | "iconify";
|
|
79
80
|
readonly: boolean;
|
|
80
81
|
allowClear: boolean;
|
|
81
|
-
mode: "svg" | "iconify";
|
|
82
82
|
width: string;
|
|
83
83
|
copy: boolean;
|
|
84
84
|
pageSize: number;
|
|
@@ -94,6 +94,10 @@ export declare const IconPicker: {
|
|
|
94
94
|
type: PropType<string>;
|
|
95
95
|
default: string;
|
|
96
96
|
};
|
|
97
|
+
mode: {
|
|
98
|
+
type: PropType<"svg" | "iconify">;
|
|
99
|
+
default: string;
|
|
100
|
+
};
|
|
97
101
|
readonly: {
|
|
98
102
|
type: PropType<boolean>;
|
|
99
103
|
default: boolean;
|
|
@@ -102,10 +106,6 @@ export declare const IconPicker: {
|
|
|
102
106
|
type: PropType<boolean>;
|
|
103
107
|
default: boolean;
|
|
104
108
|
};
|
|
105
|
-
mode: {
|
|
106
|
-
type: PropType<"svg" | "iconify">;
|
|
107
|
-
default: string;
|
|
108
|
-
};
|
|
109
109
|
width: {
|
|
110
110
|
type: PropType<string>;
|
|
111
111
|
default: string;
|
|
@@ -126,9 +126,9 @@ export declare const IconPicker: {
|
|
|
126
126
|
"onUpdate:value"?: ((...args: any[]) => any) | undefined;
|
|
127
127
|
}, {}, {}, {}, {}, {
|
|
128
128
|
value: string;
|
|
129
|
+
mode: "svg" | "iconify";
|
|
129
130
|
readonly: boolean;
|
|
130
131
|
allowClear: boolean;
|
|
131
|
-
mode: "svg" | "iconify";
|
|
132
132
|
width: string;
|
|
133
133
|
copy: boolean;
|
|
134
134
|
pageSize: number;
|
|
@@ -141,6 +141,10 @@ export declare const IconPicker: {
|
|
|
141
141
|
type: PropType<string>;
|
|
142
142
|
default: string;
|
|
143
143
|
};
|
|
144
|
+
mode: {
|
|
145
|
+
type: PropType<"svg" | "iconify">;
|
|
146
|
+
default: string;
|
|
147
|
+
};
|
|
144
148
|
readonly: {
|
|
145
149
|
type: PropType<boolean>;
|
|
146
150
|
default: boolean;
|
|
@@ -149,10 +153,6 @@ export declare const IconPicker: {
|
|
|
149
153
|
type: PropType<boolean>;
|
|
150
154
|
default: boolean;
|
|
151
155
|
};
|
|
152
|
-
mode: {
|
|
153
|
-
type: PropType<"svg" | "iconify">;
|
|
154
|
-
default: string;
|
|
155
|
-
};
|
|
156
156
|
width: {
|
|
157
157
|
type: PropType<string>;
|
|
158
158
|
default: string;
|
|
@@ -176,9 +176,9 @@ export declare const IconPicker: {
|
|
|
176
176
|
"update:value": (...args: any[]) => void;
|
|
177
177
|
}, string, {
|
|
178
178
|
value: string;
|
|
179
|
+
mode: "svg" | "iconify";
|
|
179
180
|
readonly: boolean;
|
|
180
181
|
allowClear: boolean;
|
|
181
|
-
mode: "svg" | "iconify";
|
|
182
182
|
width: string;
|
|
183
183
|
copy: boolean;
|
|
184
184
|
pageSize: number;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type OmitValue<T> = Omit<T, 'value' | 'defaultValue' | 'onChange' | 'mode' | 'format'>;
|
|
@@ -1,5 +1,8 @@
|
|
|
1
|
-
import { InputProps, CheckboxGroupProps
|
|
1
|
+
import { InputProps, CheckboxGroupProps } from 'ant-design-vue';
|
|
2
2
|
import { InputFocusOptions } from 'ant-design-vue/es/vc-input/utils/commonUtils';
|
|
3
|
+
import { OmitValue } from './date/interface';
|
|
4
|
+
import { Dayjs } from 'dayjs';
|
|
5
|
+
import { PickerBaseProps, PickerDateProps, PickerTimeProps } from 'ant-design-vue/es/date-picker/generatePicker';
|
|
3
6
|
|
|
4
7
|
export type FieldMode = 'read' | 'edit';
|
|
5
8
|
export type BasicApFieldProps<FieldPropsType = any> = {
|
|
@@ -19,11 +22,10 @@ export type ApFieldCheckboxProps = BasicApFieldProps<CheckboxGroupProps> & {
|
|
|
19
22
|
request?: () => Promise<CheckboxGroupProps['options']>;
|
|
20
23
|
};
|
|
21
24
|
export type ApFormatPresetType = 'Y' | 'Y-M' | 'Y-D' | 'Y-h' | 'Y-m' | 'Y-s';
|
|
22
|
-
export type ApFieldDateProps = BasicApFieldProps<
|
|
25
|
+
export type ApFieldDateProps = BasicApFieldProps<OmitValue<PickerBaseProps<Dayjs>> | OmitValue<PickerDateProps<Dayjs>> | OmitValue<PickerTimeProps<Dayjs>>> & {
|
|
23
26
|
emptyText?: string;
|
|
24
27
|
value?: number | null;
|
|
25
|
-
defaultValue?: number
|
|
28
|
+
defaultValue?: number;
|
|
26
29
|
onChange?: (ts: number | null, dayStr: string) => void;
|
|
27
|
-
|
|
28
|
-
format: ApFormatPresetType;
|
|
30
|
+
format?: ApFormatPresetType;
|
|
29
31
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("@aplus-frontend/utils"),t=require("
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("@aplus-frontend/utils"),t=require("ant-design-vue/es/config-provider/context"),r=()=>({aplusLocale:{type:e.definePropType(Object)},namespace:{type:String,default:"aplus"},api:{type:Object,default:()=>({})},table:{type:Object},scrollbar:{type:Object,default:()=>({native:!1})},...t.configProviderProps()});exports.configProviderProps=r;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const r=require("@aplus-frontend/utils"),o=require("./config-provider.js")
|
|
1
|
+
"use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const r=require("@aplus-frontend/utils"),o=require("./config-provider.js");require("ant-design-vue/es/config-provider/context");const e=require("./hooks/use-global-config.js");require("vue");require("lodash-unified");const i=r.withInstall(o.ConfigProvider);exports.ConfigProvider=o.ConfigProvider;exports.keysOf=e.keysOf;exports.provideGlobalConfig=e.provideGlobalConfig;exports.useGlobalConfig=e.useGlobalConfig;exports.APConfigProvider=i;exports.default=i;
|
|
@@ -69,12 +69,12 @@ export declare const CountdownButton: {
|
|
|
69
69
|
});
|
|
70
70
|
export declare const CountdownInput: {
|
|
71
71
|
new (...args: any[]): CreateComponentPublicInstance<Readonly< ExtractPropTypes<{
|
|
72
|
-
size: {
|
|
73
|
-
type: PropType<"small" | "middle" | "large">;
|
|
74
|
-
};
|
|
75
72
|
value: {
|
|
76
73
|
type: PropType<string>;
|
|
77
74
|
};
|
|
75
|
+
size: {
|
|
76
|
+
type: PropType<"small" | "middle" | "large">;
|
|
77
|
+
};
|
|
78
78
|
count: {
|
|
79
79
|
type: PropType<number>;
|
|
80
80
|
default: number;
|
|
@@ -83,12 +83,12 @@ export declare const CountdownInput: {
|
|
|
83
83
|
type: PropType<() => Promise<boolean>>;
|
|
84
84
|
};
|
|
85
85
|
}>>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, VNodeProps & AllowedComponentProps & ComponentCustomProps & Readonly< ExtractPropTypes<{
|
|
86
|
-
size: {
|
|
87
|
-
type: PropType<"small" | "middle" | "large">;
|
|
88
|
-
};
|
|
89
86
|
value: {
|
|
90
87
|
type: PropType<string>;
|
|
91
88
|
};
|
|
89
|
+
size: {
|
|
90
|
+
type: PropType<"small" | "middle" | "large">;
|
|
91
|
+
};
|
|
92
92
|
count: {
|
|
93
93
|
type: PropType<number>;
|
|
94
94
|
default: number;
|
|
@@ -106,12 +106,12 @@ export declare const CountdownInput: {
|
|
|
106
106
|
M: {};
|
|
107
107
|
Defaults: {};
|
|
108
108
|
}, Readonly< ExtractPropTypes<{
|
|
109
|
-
size: {
|
|
110
|
-
type: PropType<"small" | "middle" | "large">;
|
|
111
|
-
};
|
|
112
109
|
value: {
|
|
113
110
|
type: PropType<string>;
|
|
114
111
|
};
|
|
112
|
+
size: {
|
|
113
|
+
type: PropType<"small" | "middle" | "large">;
|
|
114
|
+
};
|
|
115
115
|
count: {
|
|
116
116
|
type: PropType<number>;
|
|
117
117
|
default: number;
|
|
@@ -126,12 +126,12 @@ export declare const CountdownInput: {
|
|
|
126
126
|
__isTeleport?: undefined;
|
|
127
127
|
__isSuspense?: undefined;
|
|
128
128
|
} & ComponentOptionsBase<Readonly< ExtractPropTypes<{
|
|
129
|
-
size: {
|
|
130
|
-
type: PropType<"small" | "middle" | "large">;
|
|
131
|
-
};
|
|
132
129
|
value: {
|
|
133
130
|
type: PropType<string>;
|
|
134
131
|
};
|
|
132
|
+
size: {
|
|
133
|
+
type: PropType<"small" | "middle" | "large">;
|
|
134
|
+
};
|
|
135
135
|
count: {
|
|
136
136
|
type: PropType<number>;
|
|
137
137
|
default: number;
|
|
@@ -194,13 +194,13 @@ export declare const CropperImage: {
|
|
|
194
194
|
});
|
|
195
195
|
export declare const CropperAvatar: {
|
|
196
196
|
new (...args: any[]): CreateComponentPublicInstance<Readonly< ExtractPropTypes<{
|
|
197
|
+
value: {
|
|
198
|
+
type: PropType<string>;
|
|
199
|
+
};
|
|
197
200
|
size: {
|
|
198
201
|
type: PropType<number>;
|
|
199
202
|
default: number;
|
|
200
203
|
};
|
|
201
|
-
value: {
|
|
202
|
-
type: PropType<string>;
|
|
203
|
-
};
|
|
204
204
|
width: {
|
|
205
205
|
type: PropType<string | number>;
|
|
206
206
|
default: string;
|
|
@@ -232,13 +232,13 @@ export declare const CropperAvatar: {
|
|
|
232
232
|
change: (...args: any[]) => void;
|
|
233
233
|
"update:value": (...args: any[]) => void;
|
|
234
234
|
}, VNodeProps & AllowedComponentProps & ComponentCustomProps & Readonly< ExtractPropTypes<{
|
|
235
|
+
value: {
|
|
236
|
+
type: PropType<string>;
|
|
237
|
+
};
|
|
235
238
|
size: {
|
|
236
239
|
type: PropType<number>;
|
|
237
240
|
default: number;
|
|
238
241
|
};
|
|
239
|
-
value: {
|
|
240
|
-
type: PropType<string>;
|
|
241
|
-
};
|
|
242
242
|
width: {
|
|
243
243
|
type: PropType<string | number>;
|
|
244
244
|
default: string;
|
|
@@ -276,13 +276,13 @@ export declare const CropperAvatar: {
|
|
|
276
276
|
M: {};
|
|
277
277
|
Defaults: {};
|
|
278
278
|
}, Readonly< ExtractPropTypes<{
|
|
279
|
+
value: {
|
|
280
|
+
type: PropType<string>;
|
|
281
|
+
};
|
|
279
282
|
size: {
|
|
280
283
|
type: PropType<number>;
|
|
281
284
|
default: number;
|
|
282
285
|
};
|
|
283
|
-
value: {
|
|
284
|
-
type: PropType<string>;
|
|
285
|
-
};
|
|
286
286
|
width: {
|
|
287
287
|
type: PropType<string | number>;
|
|
288
288
|
default: string;
|
|
@@ -320,13 +320,13 @@ export declare const CropperAvatar: {
|
|
|
320
320
|
__isTeleport?: undefined;
|
|
321
321
|
__isSuspense?: undefined;
|
|
322
322
|
} & ComponentOptionsBase<Readonly< ExtractPropTypes<{
|
|
323
|
+
value: {
|
|
324
|
+
type: PropType<string>;
|
|
325
|
+
};
|
|
323
326
|
size: {
|
|
324
327
|
type: PropType<number>;
|
|
325
328
|
default: number;
|
|
326
329
|
};
|
|
327
|
-
value: {
|
|
328
|
-
type: PropType<string>;
|
|
329
|
-
};
|
|
330
330
|
width: {
|
|
331
331
|
type: PropType<string | number>;
|
|
332
332
|
default: string;
|
|
@@ -25,9 +25,9 @@ declare const _default: DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRunt
|
|
|
25
25
|
"onUpdate:value"?: ((...args: any[]) => any) | undefined;
|
|
26
26
|
}, {
|
|
27
27
|
value: string;
|
|
28
|
+
mode: "svg" | "iconify";
|
|
28
29
|
readonly: boolean;
|
|
29
30
|
allowClear: boolean;
|
|
30
|
-
mode: "svg" | "iconify";
|
|
31
31
|
width: string;
|
|
32
32
|
copy: boolean;
|
|
33
33
|
pageSize: number;
|
|
@@ -6,6 +6,10 @@ export declare const IconPicker: {
|
|
|
6
6
|
type: PropType<string>;
|
|
7
7
|
default: string;
|
|
8
8
|
};
|
|
9
|
+
mode: {
|
|
10
|
+
type: PropType<"svg" | "iconify">;
|
|
11
|
+
default: string;
|
|
12
|
+
};
|
|
9
13
|
readonly: {
|
|
10
14
|
type: PropType<boolean>;
|
|
11
15
|
default: boolean;
|
|
@@ -14,10 +18,6 @@ export declare const IconPicker: {
|
|
|
14
18
|
type: PropType<boolean>;
|
|
15
19
|
default: boolean;
|
|
16
20
|
};
|
|
17
|
-
mode: {
|
|
18
|
-
type: PropType<"svg" | "iconify">;
|
|
19
|
-
default: string;
|
|
20
|
-
};
|
|
21
21
|
width: {
|
|
22
22
|
type: PropType<string>;
|
|
23
23
|
default: string;
|
|
@@ -44,6 +44,10 @@ export declare const IconPicker: {
|
|
|
44
44
|
type: PropType<string>;
|
|
45
45
|
default: string;
|
|
46
46
|
};
|
|
47
|
+
mode: {
|
|
48
|
+
type: PropType<"svg" | "iconify">;
|
|
49
|
+
default: string;
|
|
50
|
+
};
|
|
47
51
|
readonly: {
|
|
48
52
|
type: PropType<boolean>;
|
|
49
53
|
default: boolean;
|
|
@@ -52,10 +56,6 @@ export declare const IconPicker: {
|
|
|
52
56
|
type: PropType<boolean>;
|
|
53
57
|
default: boolean;
|
|
54
58
|
};
|
|
55
|
-
mode: {
|
|
56
|
-
type: PropType<"svg" | "iconify">;
|
|
57
|
-
default: string;
|
|
58
|
-
};
|
|
59
59
|
width: {
|
|
60
60
|
type: PropType<string>;
|
|
61
61
|
default: string;
|
|
@@ -76,9 +76,9 @@ export declare const IconPicker: {
|
|
|
76
76
|
"onUpdate:value"?: ((...args: any[]) => any) | undefined;
|
|
77
77
|
}, {
|
|
78
78
|
value: string;
|
|
79
|
+
mode: "svg" | "iconify";
|
|
79
80
|
readonly: boolean;
|
|
80
81
|
allowClear: boolean;
|
|
81
|
-
mode: "svg" | "iconify";
|
|
82
82
|
width: string;
|
|
83
83
|
copy: boolean;
|
|
84
84
|
pageSize: number;
|
|
@@ -94,6 +94,10 @@ export declare const IconPicker: {
|
|
|
94
94
|
type: PropType<string>;
|
|
95
95
|
default: string;
|
|
96
96
|
};
|
|
97
|
+
mode: {
|
|
98
|
+
type: PropType<"svg" | "iconify">;
|
|
99
|
+
default: string;
|
|
100
|
+
};
|
|
97
101
|
readonly: {
|
|
98
102
|
type: PropType<boolean>;
|
|
99
103
|
default: boolean;
|
|
@@ -102,10 +106,6 @@ export declare const IconPicker: {
|
|
|
102
106
|
type: PropType<boolean>;
|
|
103
107
|
default: boolean;
|
|
104
108
|
};
|
|
105
|
-
mode: {
|
|
106
|
-
type: PropType<"svg" | "iconify">;
|
|
107
|
-
default: string;
|
|
108
|
-
};
|
|
109
109
|
width: {
|
|
110
110
|
type: PropType<string>;
|
|
111
111
|
default: string;
|
|
@@ -126,9 +126,9 @@ export declare const IconPicker: {
|
|
|
126
126
|
"onUpdate:value"?: ((...args: any[]) => any) | undefined;
|
|
127
127
|
}, {}, {}, {}, {}, {
|
|
128
128
|
value: string;
|
|
129
|
+
mode: "svg" | "iconify";
|
|
129
130
|
readonly: boolean;
|
|
130
131
|
allowClear: boolean;
|
|
131
|
-
mode: "svg" | "iconify";
|
|
132
132
|
width: string;
|
|
133
133
|
copy: boolean;
|
|
134
134
|
pageSize: number;
|
|
@@ -141,6 +141,10 @@ export declare const IconPicker: {
|
|
|
141
141
|
type: PropType<string>;
|
|
142
142
|
default: string;
|
|
143
143
|
};
|
|
144
|
+
mode: {
|
|
145
|
+
type: PropType<"svg" | "iconify">;
|
|
146
|
+
default: string;
|
|
147
|
+
};
|
|
144
148
|
readonly: {
|
|
145
149
|
type: PropType<boolean>;
|
|
146
150
|
default: boolean;
|
|
@@ -149,10 +153,6 @@ export declare const IconPicker: {
|
|
|
149
153
|
type: PropType<boolean>;
|
|
150
154
|
default: boolean;
|
|
151
155
|
};
|
|
152
|
-
mode: {
|
|
153
|
-
type: PropType<"svg" | "iconify">;
|
|
154
|
-
default: string;
|
|
155
|
-
};
|
|
156
156
|
width: {
|
|
157
157
|
type: PropType<string>;
|
|
158
158
|
default: string;
|
|
@@ -176,9 +176,9 @@ export declare const IconPicker: {
|
|
|
176
176
|
"update:value": (...args: any[]) => void;
|
|
177
177
|
}, string, {
|
|
178
178
|
value: string;
|
|
179
|
+
mode: "svg" | "iconify";
|
|
179
180
|
readonly: boolean;
|
|
180
181
|
allowClear: boolean;
|
|
181
|
-
mode: "svg" | "iconify";
|
|
182
182
|
width: string;
|
|
183
183
|
copy: boolean;
|
|
184
184
|
pageSize: number;
|