@opentinyvue/vue-checkbox 2.21.0 → 3.21.0
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/index.js +1 -1
- package/lib/mobile-first.js +141 -173
- package/lib/mobile.js +111 -152
- package/lib/pc.js +131 -178
- package/package.json +4 -4
- package/src/index.d.ts +139 -2
- package/src/mobile-first.vue.d.ts +89 -1
- package/src/mobile.vue.d.ts +75 -1
- package/src/pc.vue.d.ts +84 -1
package/src/mobile.vue.d.ts
CHANGED
|
@@ -1,2 +1,76 @@
|
|
|
1
|
-
declare const _default:
|
|
1
|
+
declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
2
|
+
name?: any;
|
|
3
|
+
label?: any;
|
|
4
|
+
disabled?: any;
|
|
5
|
+
text?: any;
|
|
6
|
+
tiny_mode?: any;
|
|
7
|
+
tiny_mode_root?: any;
|
|
8
|
+
tiny_template?: any;
|
|
9
|
+
tiny_renderless?: any;
|
|
10
|
+
_constants?: any;
|
|
11
|
+
tiny_theme?: any;
|
|
12
|
+
tiny_chart_theme?: any;
|
|
13
|
+
modelValue?: any;
|
|
14
|
+
events?: any;
|
|
15
|
+
id?: any;
|
|
16
|
+
checked?: any;
|
|
17
|
+
indeterminate?: any;
|
|
18
|
+
trueLabel?: any;
|
|
19
|
+
falseLabel?: any;
|
|
20
|
+
iconPosition?: any;
|
|
21
|
+
}>, {
|
|
22
|
+
t: (this: any, path: any, options?: any) => any;
|
|
23
|
+
vm: any;
|
|
24
|
+
f: (props: any, attrs?: {}) => {};
|
|
25
|
+
a: (attrs: any, filters: any, include: any) => {};
|
|
26
|
+
d: (props: any) => void;
|
|
27
|
+
dp: (props: any) => void;
|
|
28
|
+
gcls: (key: any) => any;
|
|
29
|
+
m: (...cssClasses: any[]) => string;
|
|
30
|
+
}, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, ("change" | "click" | "update:modelValue" | "complete")[], "change" | "click" | "update:modelValue" | "complete", import("@vue/runtime-core").PublicProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<Readonly<{
|
|
31
|
+
name?: any;
|
|
32
|
+
label?: any;
|
|
33
|
+
disabled?: any;
|
|
34
|
+
text?: any;
|
|
35
|
+
tiny_mode?: any;
|
|
36
|
+
tiny_mode_root?: any;
|
|
37
|
+
tiny_template?: any;
|
|
38
|
+
tiny_renderless?: any;
|
|
39
|
+
_constants?: any;
|
|
40
|
+
tiny_theme?: any;
|
|
41
|
+
tiny_chart_theme?: any;
|
|
42
|
+
modelValue?: any;
|
|
43
|
+
events?: any;
|
|
44
|
+
id?: any;
|
|
45
|
+
checked?: any;
|
|
46
|
+
indeterminate?: any;
|
|
47
|
+
trueLabel?: any;
|
|
48
|
+
falseLabel?: any;
|
|
49
|
+
iconPosition?: any;
|
|
50
|
+
}>>> & {
|
|
51
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
52
|
+
onClick?: ((...args: any[]) => any) | undefined;
|
|
53
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
54
|
+
onComplete?: ((...args: any[]) => any) | undefined;
|
|
55
|
+
}, {
|
|
56
|
+
readonly name?: any;
|
|
57
|
+
readonly label?: any;
|
|
58
|
+
readonly disabled?: any;
|
|
59
|
+
readonly text?: any;
|
|
60
|
+
readonly tiny_mode?: any;
|
|
61
|
+
readonly tiny_mode_root?: any;
|
|
62
|
+
readonly tiny_template?: any;
|
|
63
|
+
readonly tiny_renderless?: any;
|
|
64
|
+
readonly _constants?: any;
|
|
65
|
+
readonly tiny_theme?: any;
|
|
66
|
+
readonly tiny_chart_theme?: any;
|
|
67
|
+
readonly modelValue?: any;
|
|
68
|
+
readonly events?: any;
|
|
69
|
+
readonly id?: any;
|
|
70
|
+
readonly checked?: any;
|
|
71
|
+
readonly indeterminate?: any;
|
|
72
|
+
readonly trueLabel?: any;
|
|
73
|
+
readonly falseLabel?: any;
|
|
74
|
+
readonly iconPosition?: any;
|
|
75
|
+
}, {}>;
|
|
2
76
|
export default _default;
|
package/src/pc.vue.d.ts
CHANGED
|
@@ -1,2 +1,85 @@
|
|
|
1
|
-
|
|
1
|
+
import type { ICheckboxApi } from '@opentinyvue/vue-renderless/types/checkbox.type';
|
|
2
|
+
declare const _default: import("@vue/runtime-core").DefineComponent<Readonly<{
|
|
3
|
+
name?: any;
|
|
4
|
+
label?: any;
|
|
5
|
+
disabled?: any;
|
|
6
|
+
text?: any;
|
|
7
|
+
size?: any;
|
|
8
|
+
tiny_mode?: any;
|
|
9
|
+
tiny_mode_root?: any;
|
|
10
|
+
tiny_template?: any;
|
|
11
|
+
tiny_renderless?: any;
|
|
12
|
+
_constants?: any;
|
|
13
|
+
tiny_theme?: any;
|
|
14
|
+
tiny_chart_theme?: any;
|
|
15
|
+
modelValue?: any;
|
|
16
|
+
tabindex?: any;
|
|
17
|
+
border?: any;
|
|
18
|
+
events?: any;
|
|
19
|
+
validateEvent?: any;
|
|
20
|
+
displayOnly?: any;
|
|
21
|
+
shape?: any;
|
|
22
|
+
id?: any;
|
|
23
|
+
checked?: any;
|
|
24
|
+
indeterminate?: any;
|
|
25
|
+
trueLabel?: any;
|
|
26
|
+
falseLabel?: any;
|
|
27
|
+
controls?: any;
|
|
28
|
+
}>, ICheckboxApi, unknown, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, ("change" | "update:modelValue" | "complete")[], "change" | "update:modelValue" | "complete", import("@vue/runtime-core").PublicProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<Readonly<{
|
|
29
|
+
name?: any;
|
|
30
|
+
label?: any;
|
|
31
|
+
disabled?: any;
|
|
32
|
+
text?: any;
|
|
33
|
+
size?: any;
|
|
34
|
+
tiny_mode?: any;
|
|
35
|
+
tiny_mode_root?: any;
|
|
36
|
+
tiny_template?: any;
|
|
37
|
+
tiny_renderless?: any;
|
|
38
|
+
_constants?: any;
|
|
39
|
+
tiny_theme?: any;
|
|
40
|
+
tiny_chart_theme?: any;
|
|
41
|
+
modelValue?: any;
|
|
42
|
+
tabindex?: any;
|
|
43
|
+
border?: any;
|
|
44
|
+
events?: any;
|
|
45
|
+
validateEvent?: any;
|
|
46
|
+
displayOnly?: any;
|
|
47
|
+
shape?: any;
|
|
48
|
+
id?: any;
|
|
49
|
+
checked?: any;
|
|
50
|
+
indeterminate?: any;
|
|
51
|
+
trueLabel?: any;
|
|
52
|
+
falseLabel?: any;
|
|
53
|
+
controls?: any;
|
|
54
|
+
}>>> & {
|
|
55
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
56
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
57
|
+
onComplete?: ((...args: any[]) => any) | undefined;
|
|
58
|
+
}, {
|
|
59
|
+
readonly name?: any;
|
|
60
|
+
readonly label?: any;
|
|
61
|
+
readonly disabled?: any;
|
|
62
|
+
readonly text?: any;
|
|
63
|
+
readonly size?: any;
|
|
64
|
+
readonly tiny_mode?: any;
|
|
65
|
+
readonly tiny_mode_root?: any;
|
|
66
|
+
readonly tiny_template?: any;
|
|
67
|
+
readonly tiny_renderless?: any;
|
|
68
|
+
readonly _constants?: any;
|
|
69
|
+
readonly tiny_theme?: any;
|
|
70
|
+
readonly tiny_chart_theme?: any;
|
|
71
|
+
readonly modelValue?: any;
|
|
72
|
+
readonly tabindex?: any;
|
|
73
|
+
readonly border?: any;
|
|
74
|
+
readonly events?: any;
|
|
75
|
+
readonly validateEvent?: any;
|
|
76
|
+
readonly displayOnly?: any;
|
|
77
|
+
readonly shape?: any;
|
|
78
|
+
readonly id?: any;
|
|
79
|
+
readonly checked?: any;
|
|
80
|
+
readonly indeterminate?: any;
|
|
81
|
+
readonly trueLabel?: any;
|
|
82
|
+
readonly falseLabel?: any;
|
|
83
|
+
readonly controls?: any;
|
|
84
|
+
}, {}>;
|
|
2
85
|
export default _default;
|