@ecan-bi/datav 1.4.7 → 1.4.8

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ecan-bi/datav",
3
- "version": "1.4.7",
3
+ "version": "1.4.8",
4
4
  "main": "dist/index.umd.js",
5
5
  "module": "dist/index.es.js",
6
6
  "types": "types/index.d.ts",
@@ -64,6 +64,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
64
64
  type?: import("vue").PropType<boolean>;
65
65
  default?: boolean;
66
66
  };
67
+ radioMode: {
68
+ type?: import("vue").PropType<"native" | "custom">;
69
+ default?: "native" | "custom";
70
+ };
67
71
  id: {
68
72
  type?: import("vue").PropType<string>;
69
73
  default?: string;
@@ -190,7 +194,9 @@ declare const _sfc_main: import("vue").DefineComponent<{
190
194
  display: string;
191
195
  height: string;
192
196
  lineHeight: string;
197
+ fontSize: string;
193
198
  } | {
199
+ fontSize: string;
194
200
  display?: undefined;
195
201
  height?: undefined;
196
202
  lineHeight?: undefined;
@@ -263,6 +269,10 @@ declare const _sfc_main: import("vue").DefineComponent<{
263
269
  type?: import("vue").PropType<boolean>;
264
270
  default?: boolean;
265
271
  };
272
+ radioMode: {
273
+ type?: import("vue").PropType<"native" | "custom">;
274
+ default?: "native" | "custom";
275
+ };
266
276
  id: {
267
277
  type?: import("vue").PropType<string>;
268
278
  default?: string;
@@ -63,6 +63,10 @@ export declare const EcanRadio: import('../../utils/withInstall').SFCWithInstall
63
63
  type?: import("vue").PropType<boolean>;
64
64
  default?: boolean;
65
65
  };
66
+ radioMode: {
67
+ type?: import("vue").PropType<"native" | "custom">;
68
+ default?: "native" | "custom";
69
+ };
66
70
  id: {
67
71
  type?: import("vue").PropType<string>;
68
72
  default?: string;
@@ -189,7 +193,9 @@ export declare const EcanRadio: import('../../utils/withInstall').SFCWithInstall
189
193
  display: string;
190
194
  height: string;
191
195
  lineHeight: string;
196
+ fontSize: string;
192
197
  } | {
198
+ fontSize: string;
193
199
  display?: undefined;
194
200
  height?: undefined;
195
201
  lineHeight?: undefined;
@@ -262,6 +268,10 @@ export declare const EcanRadio: import('../../utils/withInstall').SFCWithInstall
262
268
  type?: import("vue").PropType<boolean>;
263
269
  default?: boolean;
264
270
  };
271
+ radioMode: {
272
+ type?: import("vue").PropType<"native" | "custom">;
273
+ default?: "native" | "custom";
274
+ };
265
275
  id: {
266
276
  type?: import("vue").PropType<string>;
267
277
  default?: string;
@@ -24,6 +24,7 @@ export interface RadioProps extends Props {
24
24
  };
25
25
  tabTextAlign: '' | 'center';
26
26
  selectFirstOption: boolean;
27
+ radioMode: 'native' | 'custom';
27
28
  }
28
29
  export declare const radioProps: RadioProps;
29
30
  export declare const radioComponentProps: {
@@ -91,6 +92,10 @@ export declare const radioComponentProps: {
91
92
  type?: import("vue").PropType<boolean>;
92
93
  default?: boolean;
93
94
  };
95
+ radioMode: {
96
+ type?: import("vue").PropType<"native" | "custom">;
97
+ default?: "native" | "custom";
98
+ };
94
99
  id: {
95
100
  type?: import("vue").PropType<string>;
96
101
  default?: string;
@@ -361,7 +361,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
361
361
  style: import("vue").ComputedRef<import("vue").HTMLAttributes>;
362
362
  pagination: import("vue").ComputedRef<any>;
363
363
  formatFn: (value: string | number, column: any) => string | number;
364
- contrastClass: (format: "" | "boolean" | "progress" | "money" | "percentage" | "contrast" | "decimals" | "custom") => "" | "upDown";
364
+ contrastClass: (format: "" | "boolean" | "progress" | "custom" | "money" | "percentage" | "contrast" | "decimals") => "" | "upDown";
365
365
  tableChange: ({ current }: {
366
366
  current: number;
367
367
  }, _filters: any, sorter: any) => void;
@@ -361,7 +361,7 @@ export declare const EcanTable: import('../../utils/withInstall').SFCWithInstall
361
361
  style: import("vue").ComputedRef<import("vue").HTMLAttributes>;
362
362
  pagination: import("vue").ComputedRef<any>;
363
363
  formatFn: (value: string | number, column: any) => string | number;
364
- contrastClass: (format: "" | "boolean" | "progress" | "money" | "percentage" | "contrast" | "decimals" | "custom") => "" | "upDown";
364
+ contrastClass: (format: "" | "boolean" | "progress" | "custom" | "money" | "percentage" | "contrast" | "decimals") => "" | "upDown";
365
365
  tableChange: ({ current }: {
366
366
  current: number;
367
367
  }, _filters: any, sorter: any) => void;
@@ -234,7 +234,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
234
234
  }, {
235
235
  style: import("vue").ComputedRef<import("vue").HTMLAttributes>;
236
236
  formatFn: (value: string | number, column: any) => any;
237
- contrastClass: (value: string | number, format: "" | "progress" | "money" | "percentage" | "contrast" | "custom") => "" | "goUp" | "goDown";
237
+ contrastClass: (value: string | number, format: "" | "progress" | "custom" | "money" | "percentage" | "contrast") => "" | "goUp" | "goDown";
238
238
  dataSource: import("vue").Ref<{
239
239
  [key: string]: any;
240
240
  }[]>;
@@ -234,7 +234,7 @@ export declare const EcanList: import("../../utils/withInstall").SFCWithInstall<
234
234
  }, {
235
235
  style: import("vue").ComputedRef<import("vue").HTMLAttributes>;
236
236
  formatFn: (value: string | number, column: any) => any;
237
- contrastClass: (value: string | number, format: "" | "progress" | "money" | "percentage" | "contrast" | "custom") => "" | "goUp" | "goDown";
237
+ contrastClass: (value: string | number, format: "" | "progress" | "custom" | "money" | "percentage" | "contrast") => "" | "goUp" | "goDown";
238
238
  dataSource: import("vue").Ref<{
239
239
  [key: string]: any;
240
240
  }[]>;