@a2simcode/ui 0.0.202 → 0.0.204
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/radio/index.d.ts +18 -6
- package/dist/components/radio/src/radio.vue.d.ts +9 -3
- package/dist/simcode-ui.es.js +267 -271
- package/dist/simcode-ui.umd.js +2 -2
- package/dist/stats.html +1 -1
- package/dist/ui.css +1 -1
- package/package.json +1 -1
|
@@ -25,7 +25,9 @@ declare const JRadio: {
|
|
|
25
25
|
default: boolean;
|
|
26
26
|
};
|
|
27
27
|
colors: {
|
|
28
|
-
type: import('vue').PropType<string[]
|
|
28
|
+
type: import('vue').PropType<string[] | {
|
|
29
|
+
color: string;
|
|
30
|
+
}[]>;
|
|
29
31
|
default: () => never[];
|
|
30
32
|
};
|
|
31
33
|
readonly: BooleanConstructor;
|
|
@@ -44,7 +46,9 @@ declare const JRadio: {
|
|
|
44
46
|
readonly: boolean;
|
|
45
47
|
isButton: boolean;
|
|
46
48
|
isColor: boolean;
|
|
47
|
-
colors: string[]
|
|
49
|
+
colors: string[] | {
|
|
50
|
+
color: string;
|
|
51
|
+
}[];
|
|
48
52
|
}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
49
53
|
P: {};
|
|
50
54
|
B: {};
|
|
@@ -78,7 +82,9 @@ declare const JRadio: {
|
|
|
78
82
|
default: boolean;
|
|
79
83
|
};
|
|
80
84
|
colors: {
|
|
81
|
-
type: import('vue').PropType<string[]
|
|
85
|
+
type: import('vue').PropType<string[] | {
|
|
86
|
+
color: string;
|
|
87
|
+
}[]>;
|
|
82
88
|
default: () => never[];
|
|
83
89
|
};
|
|
84
90
|
readonly: BooleanConstructor;
|
|
@@ -95,7 +101,9 @@ declare const JRadio: {
|
|
|
95
101
|
readonly: boolean;
|
|
96
102
|
isButton: boolean;
|
|
97
103
|
isColor: boolean;
|
|
98
|
-
colors: string[]
|
|
104
|
+
colors: string[] | {
|
|
105
|
+
color: string;
|
|
106
|
+
}[];
|
|
99
107
|
}>;
|
|
100
108
|
__isFragment?: never;
|
|
101
109
|
__isTeleport?: never;
|
|
@@ -126,7 +134,9 @@ declare const JRadio: {
|
|
|
126
134
|
default: boolean;
|
|
127
135
|
};
|
|
128
136
|
colors: {
|
|
129
|
-
type: import('vue').PropType<string[]
|
|
137
|
+
type: import('vue').PropType<string[] | {
|
|
138
|
+
color: string;
|
|
139
|
+
}[]>;
|
|
130
140
|
default: () => never[];
|
|
131
141
|
};
|
|
132
142
|
readonly: BooleanConstructor;
|
|
@@ -145,7 +155,9 @@ declare const JRadio: {
|
|
|
145
155
|
readonly: boolean;
|
|
146
156
|
isButton: boolean;
|
|
147
157
|
isColor: boolean;
|
|
148
|
-
colors: string[]
|
|
158
|
+
colors: string[] | {
|
|
159
|
+
color: string;
|
|
160
|
+
}[];
|
|
149
161
|
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & {
|
|
150
162
|
install: (app: import('vue').App) => void;
|
|
151
163
|
};
|
|
@@ -44,7 +44,9 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
44
44
|
* @zh 颜色列表
|
|
45
45
|
*/
|
|
46
46
|
colors: {
|
|
47
|
-
type: PropType<string[]
|
|
47
|
+
type: PropType<string[] | {
|
|
48
|
+
color: string;
|
|
49
|
+
}[]>;
|
|
48
50
|
default: () => never[];
|
|
49
51
|
};
|
|
50
52
|
/**
|
|
@@ -98,7 +100,9 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
98
100
|
* @zh 颜色列表
|
|
99
101
|
*/
|
|
100
102
|
colors: {
|
|
101
|
-
type: PropType<string[]
|
|
103
|
+
type: PropType<string[] | {
|
|
104
|
+
color: string;
|
|
105
|
+
}[]>;
|
|
102
106
|
default: () => never[];
|
|
103
107
|
};
|
|
104
108
|
/**
|
|
@@ -118,6 +122,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
118
122
|
readonly: boolean;
|
|
119
123
|
isButton: boolean;
|
|
120
124
|
isColor: boolean;
|
|
121
|
-
colors: string[]
|
|
125
|
+
colors: string[] | {
|
|
126
|
+
color: string;
|
|
127
|
+
}[];
|
|
122
128
|
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
123
129
|
export default _default;
|