@ecan-bi/datav 1.3.98 → 1.3.99
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/index.es.js +9 -7
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +2 -2
- package/dist/index.umd.js.map +1 -1
- package/dist/style.css +2 -2
- package/package.json +1 -1
- package/types/control/radio/Radio.vue.d.ts +8 -0
- package/types/control/radio/index.d.ts +8 -0
- package/types/control/radio/props.d.ts +5 -0
package/package.json
CHANGED
|
@@ -60,6 +60,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
60
60
|
type?: import("vue").PropType<"" | "center">;
|
|
61
61
|
default?: "" | "center";
|
|
62
62
|
};
|
|
63
|
+
selectFirstOption: {
|
|
64
|
+
type?: import("vue").PropType<boolean>;
|
|
65
|
+
default?: boolean;
|
|
66
|
+
};
|
|
63
67
|
id: {
|
|
64
68
|
type?: import("vue").PropType<string>;
|
|
65
69
|
default?: string;
|
|
@@ -255,6 +259,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
255
259
|
type?: import("vue").PropType<"" | "center">;
|
|
256
260
|
default?: "" | "center";
|
|
257
261
|
};
|
|
262
|
+
selectFirstOption: {
|
|
263
|
+
type?: import("vue").PropType<boolean>;
|
|
264
|
+
default?: boolean;
|
|
265
|
+
};
|
|
258
266
|
id: {
|
|
259
267
|
type?: import("vue").PropType<string>;
|
|
260
268
|
default?: string;
|
|
@@ -59,6 +59,10 @@ export declare const EcanRadio: import('../../utils/withInstall').SFCWithInstall
|
|
|
59
59
|
type?: import("vue").PropType<"" | "center">;
|
|
60
60
|
default?: "" | "center";
|
|
61
61
|
};
|
|
62
|
+
selectFirstOption: {
|
|
63
|
+
type?: import("vue").PropType<boolean>;
|
|
64
|
+
default?: boolean;
|
|
65
|
+
};
|
|
62
66
|
id: {
|
|
63
67
|
type?: import("vue").PropType<string>;
|
|
64
68
|
default?: string;
|
|
@@ -254,6 +258,10 @@ export declare const EcanRadio: import('../../utils/withInstall').SFCWithInstall
|
|
|
254
258
|
type?: import("vue").PropType<"" | "center">;
|
|
255
259
|
default?: "" | "center";
|
|
256
260
|
};
|
|
261
|
+
selectFirstOption: {
|
|
262
|
+
type?: import("vue").PropType<boolean>;
|
|
263
|
+
default?: boolean;
|
|
264
|
+
};
|
|
257
265
|
id: {
|
|
258
266
|
type?: import("vue").PropType<string>;
|
|
259
267
|
default?: string;
|
|
@@ -23,6 +23,7 @@ export interface RadioProps extends Props {
|
|
|
23
23
|
[key: string]: any;
|
|
24
24
|
};
|
|
25
25
|
tabTextAlign: '' | 'center';
|
|
26
|
+
selectFirstOption: boolean;
|
|
26
27
|
}
|
|
27
28
|
export declare const radioProps: RadioProps;
|
|
28
29
|
export declare const radioComponentProps: {
|
|
@@ -86,6 +87,10 @@ export declare const radioComponentProps: {
|
|
|
86
87
|
type?: import("vue").PropType<"" | "center">;
|
|
87
88
|
default?: "" | "center";
|
|
88
89
|
};
|
|
90
|
+
selectFirstOption: {
|
|
91
|
+
type?: import("vue").PropType<boolean>;
|
|
92
|
+
default?: boolean;
|
|
93
|
+
};
|
|
89
94
|
id: {
|
|
90
95
|
type?: import("vue").PropType<string>;
|
|
91
96
|
default?: string;
|