@a2simcode/ui 0.0.31 → 0.0.33
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/dist/components/inject-provide.d.ts +1 -0
- package/dist/components/page/index.d.ts +3 -3
- package/dist/components/page/src/page.vue.d.ts +1 -1
- package/dist/components/radio/index.d.ts +6 -6
- package/dist/components/radio/src/radio.vue.d.ts +3 -3
- package/dist/components/slider-captcha/index.d.ts +5 -5
- package/dist/components/slider-captcha/src/slider-captcha.vue.d.ts +2 -2
- package/dist/simcode-ui.es.js +8827 -4963
- package/dist/simcode-ui.umd.js +9 -2
- package/dist/stats.html +1 -1
- package/dist/ui.css +1 -1
- package/package.json +1 -1
|
@@ -16,7 +16,7 @@ export declare const JPage: {
|
|
|
16
16
|
init: (schema: import('..').PageSchemaConfig[]) => void;
|
|
17
17
|
call: (id: string, method: string, options: {
|
|
18
18
|
immediate?: boolean;
|
|
19
|
-
} | null, ...args: any[]) =>
|
|
19
|
+
} | null, ...args: any[]) => any;
|
|
20
20
|
on: (id: string, method: string, handler: (...args: any[]) => void) => void;
|
|
21
21
|
off: (id: string, method: string, handler?: (...args: any[]) => void) => void;
|
|
22
22
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
|
|
@@ -47,7 +47,7 @@ export declare const JPage: {
|
|
|
47
47
|
init: (schema: import('..').PageSchemaConfig[]) => void;
|
|
48
48
|
call: (id: string, method: string, options: {
|
|
49
49
|
immediate?: boolean;
|
|
50
|
-
} | null, ...args: any[]) =>
|
|
50
|
+
} | null, ...args: any[]) => any;
|
|
51
51
|
on: (id: string, method: string, handler: (...args: any[]) => void) => void;
|
|
52
52
|
off: (id: string, method: string, handler?: (...args: any[]) => void) => void;
|
|
53
53
|
}, {}, {}, {}, {
|
|
@@ -75,7 +75,7 @@ export declare const JPage: {
|
|
|
75
75
|
init: (schema: import('..').PageSchemaConfig[]) => void;
|
|
76
76
|
call: (id: string, method: string, options: {
|
|
77
77
|
immediate?: boolean;
|
|
78
|
-
} | null, ...args: any[]) =>
|
|
78
|
+
} | null, ...args: any[]) => any;
|
|
79
79
|
on: (id: string, method: string, handler: (...args: any[]) => void) => void;
|
|
80
80
|
off: (id: string, method: string, handler?: (...args: any[]) => void) => void;
|
|
81
81
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
|
|
@@ -26,7 +26,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
26
26
|
init: (schema: PageSchemaConfig[]) => void;
|
|
27
27
|
call: (id: string, method: string, options: {
|
|
28
28
|
immediate?: boolean;
|
|
29
|
-
} | null, ...args: any[]) =>
|
|
29
|
+
} | null, ...args: any[]) => any;
|
|
30
30
|
on: (id: string, method: string, handler: (...args: any[]) => void) => void;
|
|
31
31
|
off: (id: string, method: string, handler?: (...args: any[]) => void) => void;
|
|
32
32
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
declare const JRadio: {
|
|
2
2
|
new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('vue').ExtractPropTypes<{
|
|
3
3
|
modelValue: {
|
|
4
|
-
type: import('vue').PropType<string>;
|
|
4
|
+
type: import('vue').PropType<string | number>;
|
|
5
5
|
default: undefined;
|
|
6
6
|
};
|
|
7
7
|
options: {
|
|
@@ -35,7 +35,7 @@ declare const JRadio: {
|
|
|
35
35
|
"update:modelValue": (...args: any[]) => void;
|
|
36
36
|
}, import('vue').PublicProps, {
|
|
37
37
|
size: "small" | "default" | "large";
|
|
38
|
-
modelValue: string;
|
|
38
|
+
modelValue: string | number;
|
|
39
39
|
readonly: boolean;
|
|
40
40
|
options: {
|
|
41
41
|
label: string;
|
|
@@ -54,7 +54,7 @@ declare const JRadio: {
|
|
|
54
54
|
Defaults: {};
|
|
55
55
|
}, Readonly<import('vue').ExtractPropTypes<{
|
|
56
56
|
modelValue: {
|
|
57
|
-
type: import('vue').PropType<string>;
|
|
57
|
+
type: import('vue').PropType<string | number>;
|
|
58
58
|
default: undefined;
|
|
59
59
|
};
|
|
60
60
|
options: {
|
|
@@ -86,7 +86,7 @@ declare const JRadio: {
|
|
|
86
86
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
87
87
|
}>, {}, {}, {}, {}, {
|
|
88
88
|
size: "small" | "default" | "large";
|
|
89
|
-
modelValue: string;
|
|
89
|
+
modelValue: string | number;
|
|
90
90
|
readonly: boolean;
|
|
91
91
|
options: {
|
|
92
92
|
label: string;
|
|
@@ -102,7 +102,7 @@ declare const JRadio: {
|
|
|
102
102
|
__isSuspense?: never;
|
|
103
103
|
} & import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
|
|
104
104
|
modelValue: {
|
|
105
|
-
type: import('vue').PropType<string>;
|
|
105
|
+
type: import('vue').PropType<string | number>;
|
|
106
106
|
default: undefined;
|
|
107
107
|
};
|
|
108
108
|
options: {
|
|
@@ -136,7 +136,7 @@ declare const JRadio: {
|
|
|
136
136
|
"update:modelValue": (...args: any[]) => void;
|
|
137
137
|
}, string, {
|
|
138
138
|
size: "small" | "default" | "large";
|
|
139
|
-
modelValue: string;
|
|
139
|
+
modelValue: string | number;
|
|
140
140
|
readonly: boolean;
|
|
141
141
|
options: {
|
|
142
142
|
label: string;
|
|
@@ -5,7 +5,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
5
5
|
* @vModel
|
|
6
6
|
*/
|
|
7
7
|
modelValue: {
|
|
8
|
-
type: PropType<string>;
|
|
8
|
+
type: PropType<string | number>;
|
|
9
9
|
default: undefined;
|
|
10
10
|
};
|
|
11
11
|
/**
|
|
@@ -59,7 +59,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
59
59
|
* @vModel
|
|
60
60
|
*/
|
|
61
61
|
modelValue: {
|
|
62
|
-
type: PropType<string>;
|
|
62
|
+
type: PropType<string | number>;
|
|
63
63
|
default: undefined;
|
|
64
64
|
};
|
|
65
65
|
/**
|
|
@@ -109,7 +109,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
109
109
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
110
110
|
}>, {
|
|
111
111
|
size: "small" | "default" | "large";
|
|
112
|
-
modelValue: string;
|
|
112
|
+
modelValue: string | number;
|
|
113
113
|
readonly: boolean;
|
|
114
114
|
options: {
|
|
115
115
|
label: string;
|
|
@@ -3,14 +3,14 @@ export declare const JSliderCaptcha: {
|
|
|
3
3
|
modelValue?: boolean;
|
|
4
4
|
} & import('./src/types').SliderCaptchaProps> & Readonly<{
|
|
5
5
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
6
|
-
onMove?: ((args_0: import('./src/types').SliderRotateVerifyPassingData) => any) | undefined;
|
|
7
6
|
onSuccess?: ((args_0: import('./src/types').CaptchaVerifyPassingData) => any) | undefined;
|
|
7
|
+
onMove?: ((args_0: import('./src/types').SliderRotateVerifyPassingData) => any) | undefined;
|
|
8
8
|
onStart?: ((args_0: MouseEvent | TouchEvent) => any) | undefined;
|
|
9
9
|
onEnd?: ((args_0: MouseEvent | TouchEvent) => any) | undefined;
|
|
10
10
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
11
11
|
"update:modelValue": (value: boolean) => any;
|
|
12
|
-
move: (args_0: import('./src/types').SliderRotateVerifyPassingData) => any;
|
|
13
12
|
success: (args_0: import('./src/types').CaptchaVerifyPassingData) => any;
|
|
13
|
+
move: (args_0: import('./src/types').SliderRotateVerifyPassingData) => any;
|
|
14
14
|
start: (args_0: MouseEvent | TouchEvent) => any;
|
|
15
15
|
end: (args_0: MouseEvent | TouchEvent) => any;
|
|
16
16
|
}, import('vue').PublicProps, {
|
|
@@ -139,8 +139,8 @@ export declare const JSliderCaptcha: {
|
|
|
139
139
|
modelValue?: boolean;
|
|
140
140
|
} & import('./src/types').SliderCaptchaProps> & Readonly<{
|
|
141
141
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
142
|
-
onMove?: ((args_0: import('./src/types').SliderRotateVerifyPassingData) => any) | undefined;
|
|
143
142
|
onSuccess?: ((args_0: import('./src/types').CaptchaVerifyPassingData) => any) | undefined;
|
|
143
|
+
onMove?: ((args_0: import('./src/types').SliderRotateVerifyPassingData) => any) | undefined;
|
|
144
144
|
onStart?: ((args_0: MouseEvent | TouchEvent) => any) | undefined;
|
|
145
145
|
onEnd?: ((args_0: MouseEvent | TouchEvent) => any) | undefined;
|
|
146
146
|
}>, {}, {}, {}, {}, {
|
|
@@ -158,14 +158,14 @@ export declare const JSliderCaptcha: {
|
|
|
158
158
|
modelValue?: boolean;
|
|
159
159
|
} & import('./src/types').SliderCaptchaProps> & Readonly<{
|
|
160
160
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
161
|
-
onMove?: ((args_0: import('./src/types').SliderRotateVerifyPassingData) => any) | undefined;
|
|
162
161
|
onSuccess?: ((args_0: import('./src/types').CaptchaVerifyPassingData) => any) | undefined;
|
|
162
|
+
onMove?: ((args_0: import('./src/types').SliderRotateVerifyPassingData) => any) | undefined;
|
|
163
163
|
onStart?: ((args_0: MouseEvent | TouchEvent) => any) | undefined;
|
|
164
164
|
onEnd?: ((args_0: MouseEvent | TouchEvent) => any) | undefined;
|
|
165
165
|
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
166
166
|
"update:modelValue": (value: boolean) => any;
|
|
167
|
-
move: (args_0: import('./src/types').SliderRotateVerifyPassingData) => any;
|
|
168
167
|
success: (args_0: import('./src/types').CaptchaVerifyPassingData) => any;
|
|
168
|
+
move: (args_0: import('./src/types').SliderRotateVerifyPassingData) => any;
|
|
169
169
|
start: (args_0: MouseEvent | TouchEvent) => any;
|
|
170
170
|
end: (args_0: MouseEvent | TouchEvent) => any;
|
|
171
171
|
}, string, {
|
|
@@ -5,14 +5,14 @@ type __VLS_PublicProps = {
|
|
|
5
5
|
} & __VLS_Props;
|
|
6
6
|
declare const _default: import('vue').DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
7
7
|
"update:modelValue": (value: boolean) => any;
|
|
8
|
-
move: (args_0: SliderRotateVerifyPassingData) => any;
|
|
9
8
|
success: (args_0: CaptchaVerifyPassingData) => any;
|
|
9
|
+
move: (args_0: SliderRotateVerifyPassingData) => any;
|
|
10
10
|
start: (args_0: MouseEvent | TouchEvent) => any;
|
|
11
11
|
end: (args_0: MouseEvent | TouchEvent) => any;
|
|
12
12
|
}, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
13
13
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
14
|
-
onMove?: ((args_0: SliderRotateVerifyPassingData) => any) | undefined;
|
|
15
14
|
onSuccess?: ((args_0: CaptchaVerifyPassingData) => any) | undefined;
|
|
15
|
+
onMove?: ((args_0: SliderRotateVerifyPassingData) => any) | undefined;
|
|
16
16
|
onStart?: ((args_0: MouseEvent | TouchEvent) => any) | undefined;
|
|
17
17
|
onEnd?: ((args_0: MouseEvent | TouchEvent) => any) | undefined;
|
|
18
18
|
}>, {
|