tsv2-library 0.1.87 → 0.1.88

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.
@@ -2,4 +2,3 @@ const a = "data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTkyIiBoZWlnaHQ9IjE5MiIgeG1
2
2
  export {
3
3
  a as default
4
4
  };
5
- //# sourceMappingURL=loading-0-cdd89cb0.js.map
@@ -2,4 +2,3 @@ const M = "data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTkyIiBoZWlnaHQ9IjE5MiIgdml
2
2
  export {
3
3
  M as default
4
4
  };
5
- //# sourceMappingURL=loading-1-656295ab.js.map
@@ -2,4 +2,3 @@ const M = "data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTkyIiBoZWlnaHQ9IjE5MiIgdml
2
2
  export {
3
3
  M as default
4
4
  };
5
- //# sourceMappingURL=loading-2-f68e4446.js.map
@@ -2,4 +2,3 @@ const M = "data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTkyIiBoZWlnaHQ9IjE5MiIgdml
2
2
  export {
3
3
  M as default
4
4
  };
5
- //# sourceMappingURL=loading-3-6f3d663b.js.map
@@ -24,7 +24,7 @@ export type TableCellComponent = {
24
24
  };
25
25
 
26
26
  export type TableColumn = {
27
- header: string;
27
+ header?: string;
28
28
  field: string;
29
29
  sortable?: boolean;
30
30
  /**
@@ -47,6 +47,7 @@ export type TableColumn = {
47
47
  * @default undefined - the export field using column 'field'
48
48
  */
49
49
  exportField?: string;
50
+ exportHeader?: string; // Value of header that will be exported
50
51
  dateValue?: boolean; // To format the date value with formatDate util
51
52
  /**
52
53
  * Specify the property or field which value in the array should be used for exporting to Excel.
@@ -5,10 +5,22 @@ declare const _sfc_main: import("vue").DefineComponent<{
5
5
  type: __PropType<User>;
6
6
  required: true;
7
7
  };
8
+ showIcon: {
9
+ type: __PropType<boolean | undefined>;
10
+ required: false;
11
+ default: boolean;
12
+ };
8
13
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
9
14
  user: {
10
15
  type: __PropType<User>;
11
16
  required: true;
12
17
  };
13
- }>>, {}, {}>;
18
+ showIcon: {
19
+ type: __PropType<boolean | undefined>;
20
+ required: false;
21
+ default: boolean;
22
+ };
23
+ }>>, {
24
+ showIcon: boolean | undefined;
25
+ }, {}>;
14
26
  export default _sfc_main;
@@ -1,4 +1,4 @@
1
1
  export declare const formatVowelSoundLabel: (label?: string) => string;
2
- export declare const formatUserName: (name: string) => string;
2
+ export declare const formatUserName: (name?: string) => string;
3
3
  export declare const formatTagCode: (tagCode?: string) => string;
4
4
  export default formatUserName;