@visactor/vue-vtable 1.7.5-alpha.2 → 1.7.9-alpha.2

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.
Files changed (165) hide show
  1. package/cjs/components/component/menu.d.ts +9 -9
  2. package/cjs/components/component/menu.js +4 -6
  3. package/cjs/components/component/tooltip.d.ts +7 -7
  4. package/cjs/components/component/tooltip.js +4 -7
  5. package/cjs/components/custom/checkBox.d.ts +16 -16
  6. package/cjs/components/custom/checkBox.js +4 -7
  7. package/cjs/components/custom/custom-layout.d.ts +16 -16
  8. package/cjs/components/custom/group.d.ts +2 -2
  9. package/cjs/components/custom/group.js +4 -7
  10. package/cjs/components/custom/image.d.ts +2 -2
  11. package/cjs/components/custom/image.js +4 -7
  12. package/cjs/components/custom/radio.d.ts +13 -13
  13. package/cjs/components/custom/radio.js +4 -7
  14. package/cjs/components/custom/tag.d.ts +12 -12
  15. package/cjs/components/custom/tag.js +4 -7
  16. package/cjs/components/custom/text.d.ts +2 -2
  17. package/cjs/components/custom/text.js +4 -7
  18. package/cjs/components/index.d.ts +15 -15
  19. package/cjs/components/list/list-column.d.ts +3 -3
  20. package/cjs/components/list/list-column.js +4 -7
  21. package/cjs/components/pivot/pivot-column-dimension.d.ts +8 -8
  22. package/cjs/components/pivot/pivot-column-dimension.js +4 -7
  23. package/cjs/components/pivot/pivot-column-header-title.d.ts +3 -3
  24. package/cjs/components/pivot/pivot-column-header-title.js +4 -7
  25. package/cjs/components/pivot/pivot-corner.d.ts +3 -3
  26. package/cjs/components/pivot/pivot-corner.js +4 -7
  27. package/cjs/components/pivot/pivot-indicator.d.ts +3 -3
  28. package/cjs/components/pivot/pivot-indicator.js +4 -7
  29. package/cjs/components/pivot/pivot-row-dimension.d.ts +8 -8
  30. package/cjs/components/pivot/pivot-row-dimension.js +4 -7
  31. package/cjs/components/pivot/pivot-row-header-title.d.ts +3 -3
  32. package/cjs/components/pivot/pivot-row-header-title.js +4 -7
  33. package/cjs/constants.d.ts +1 -1
  34. package/cjs/eventsUtils.d.ts +101 -101
  35. package/cjs/eventsUtils.js +55 -55
  36. package/cjs/index.d.ts +5 -5
  37. package/cjs/index.js +65 -34
  38. package/cjs/tables/base-table.vue.d.ts +345 -0
  39. package/cjs/tables/base-table.vue.js +168 -0
  40. package/cjs/tables/base-table.vue2.js +7 -0
  41. package/cjs/tables/chartModule.d.ts +1 -1
  42. package/cjs/tables/chartModule.js +21 -30
  43. package/cjs/tables/index.d.ts +5 -4
  44. package/cjs/tables/list-table.vue.d.ts +27 -0
  45. package/cjs/tables/list-table.vue.js +87 -0
  46. package/cjs/tables/list-table.vue2.js +7 -0
  47. package/cjs/tables/pivot-chart.vue.d.ts +27 -0
  48. package/cjs/tables/pivot-chart.vue.js +80 -0
  49. package/cjs/tables/pivot-chart.vue2.js +7 -0
  50. package/cjs/tables/pivot-table.vue.d.ts +27 -0
  51. package/cjs/tables/pivot-table.vue.js +75 -0
  52. package/cjs/tables/pivot-table.vue2.js +7 -0
  53. package/cjs/tables/utils.d.ts +2 -2
  54. package/cjs/tables/utils.js +78 -73
  55. package/dist/vue-vtable.js +45 -3445
  56. package/dist/vue-vtable.min.js +1 -18
  57. package/es/components/component/menu.d.ts +9 -9
  58. package/es/components/component/menu.js +5 -3
  59. package/es/components/component/tooltip.d.ts +7 -7
  60. package/es/components/component/tooltip.js +4 -3
  61. package/es/components/custom/checkBox.d.ts +16 -16
  62. package/es/components/custom/checkBox.js +4 -3
  63. package/es/components/custom/custom-layout.d.ts +16 -16
  64. package/es/components/custom/group.d.ts +2 -2
  65. package/es/components/custom/group.js +4 -3
  66. package/es/components/custom/image.d.ts +2 -2
  67. package/es/components/custom/image.js +4 -3
  68. package/es/components/custom/radio.d.ts +13 -13
  69. package/es/components/custom/radio.js +4 -3
  70. package/es/components/custom/tag.d.ts +12 -12
  71. package/es/components/custom/tag.js +4 -3
  72. package/es/components/custom/text.d.ts +2 -2
  73. package/es/components/custom/text.js +4 -3
  74. package/es/components/index.d.ts +15 -15
  75. package/es/components/list/list-column.d.ts +3 -3
  76. package/es/components/list/list-column.js +4 -3
  77. package/es/components/pivot/pivot-column-dimension.d.ts +8 -8
  78. package/es/components/pivot/pivot-column-dimension.js +4 -3
  79. package/es/components/pivot/pivot-column-header-title.d.ts +3 -3
  80. package/es/components/pivot/pivot-column-header-title.js +4 -3
  81. package/es/components/pivot/pivot-corner.d.ts +3 -3
  82. package/es/components/pivot/pivot-corner.js +4 -3
  83. package/es/components/pivot/pivot-indicator.d.ts +3 -3
  84. package/es/components/pivot/pivot-indicator.js +4 -3
  85. package/es/components/pivot/pivot-row-dimension.d.ts +8 -8
  86. package/es/components/pivot/pivot-row-dimension.js +4 -3
  87. package/es/components/pivot/pivot-row-header-title.d.ts +3 -3
  88. package/es/components/pivot/pivot-row-header-title.js +4 -3
  89. package/es/constants.d.ts +1 -1
  90. package/es/eventsUtils.d.ts +101 -101
  91. package/es/eventsUtils.js +53 -54
  92. package/es/index.d.ts +5 -5
  93. package/es/index.js +24 -8
  94. package/es/tables/base-table.vue.d.ts +345 -0
  95. package/es/tables/base-table.vue.js +166 -0
  96. package/es/tables/base-table.vue2.js +5 -0
  97. package/es/tables/chartModule.d.ts +1 -1
  98. package/es/tables/chartModule.js +5 -4
  99. package/es/tables/index.d.ts +5 -4
  100. package/es/tables/list-table.vue.d.ts +27 -0
  101. package/es/tables/list-table.vue.js +85 -0
  102. package/es/tables/list-table.vue2.js +5 -0
  103. package/es/tables/pivot-chart.vue.d.ts +27 -0
  104. package/es/tables/pivot-chart.vue.js +78 -0
  105. package/es/tables/pivot-chart.vue2.js +5 -0
  106. package/es/tables/pivot-table.vue.d.ts +27 -0
  107. package/es/tables/pivot-table.vue.js +73 -0
  108. package/es/tables/pivot-table.vue2.js +5 -0
  109. package/es/tables/utils.d.ts +2 -2
  110. package/es/tables/utils.js +60 -46
  111. package/package.json +3 -3
  112. package/cjs/components/component/menu.js.map +0 -1
  113. package/cjs/components/component/tooltip.js.map +0 -1
  114. package/cjs/components/custom/checkBox.js.map +0 -1
  115. package/cjs/components/custom/custom-layout.js +0 -10
  116. package/cjs/components/custom/custom-layout.js.map +0 -1
  117. package/cjs/components/custom/group.js.map +0 -1
  118. package/cjs/components/custom/image.js.map +0 -1
  119. package/cjs/components/custom/radio.js.map +0 -1
  120. package/cjs/components/custom/tag.js.map +0 -1
  121. package/cjs/components/custom/text.js.map +0 -1
  122. package/cjs/components/index.js +0 -147
  123. package/cjs/components/index.js.map +0 -1
  124. package/cjs/components/list/list-column.js.map +0 -1
  125. package/cjs/components/pivot/pivot-column-dimension.js.map +0 -1
  126. package/cjs/components/pivot/pivot-column-header-title.js.map +0 -1
  127. package/cjs/components/pivot/pivot-corner.js.map +0 -1
  128. package/cjs/components/pivot/pivot-indicator.js.map +0 -1
  129. package/cjs/components/pivot/pivot-row-dimension.js.map +0 -1
  130. package/cjs/components/pivot/pivot-row-header-title.js.map +0 -1
  131. package/cjs/constants.js +0 -5
  132. package/cjs/constants.js.map +0 -1
  133. package/cjs/eventsUtils.js.map +0 -1
  134. package/cjs/index.js.map +0 -1
  135. package/cjs/tables/chartModule.js.map +0 -1
  136. package/cjs/tables/index.js +0 -48
  137. package/cjs/tables/index.js.map +0 -1
  138. package/cjs/tables/utils.js.map +0 -1
  139. package/es/components/component/menu.js.map +0 -1
  140. package/es/components/component/tooltip.js.map +0 -1
  141. package/es/components/custom/checkBox.js.map +0 -1
  142. package/es/components/custom/custom-layout.js +0 -4
  143. package/es/components/custom/custom-layout.js.map +0 -1
  144. package/es/components/custom/group.js.map +0 -1
  145. package/es/components/custom/image.js.map +0 -1
  146. package/es/components/custom/radio.js.map +0 -1
  147. package/es/components/custom/tag.js.map +0 -1
  148. package/es/components/custom/text.js.map +0 -1
  149. package/es/components/index.js +0 -30
  150. package/es/components/index.js.map +0 -1
  151. package/es/components/list/list-column.js.map +0 -1
  152. package/es/components/pivot/pivot-column-dimension.js.map +0 -1
  153. package/es/components/pivot/pivot-column-header-title.js.map +0 -1
  154. package/es/components/pivot/pivot-corner.js.map +0 -1
  155. package/es/components/pivot/pivot-indicator.js.map +0 -1
  156. package/es/components/pivot/pivot-row-dimension.js.map +0 -1
  157. package/es/components/pivot/pivot-row-header-title.js.map +0 -1
  158. package/es/constants.js +0 -1
  159. package/es/constants.js.map +0 -1
  160. package/es/eventsUtils.js.map +0 -1
  161. package/es/index.js.map +0 -1
  162. package/es/tables/chartModule.js.map +0 -1
  163. package/es/tables/index.js +0 -8
  164. package/es/tables/index.js.map +0 -1
  165. package/es/tables/utils.js.map +0 -1
@@ -1,9 +1,9 @@
1
- import type { VNode } from 'vue';
2
- import type { TYPES } from '@visactor/vtable';
3
- export type MenuProps = {
4
- renderMode?: 'canvas' | 'html';
5
- defaultHeaderMenuItems?: TYPES.MenuListItem[];
6
- contextMenuItems?: TYPES.MenuListItem[] | ((field: string, row: number, col: number) => TYPES.MenuListItem[]);
7
- dropDownMenuHighlight?: TYPES.DropDownMenuHighlightInfo[];
8
- };
9
- export default function Menu(props: MenuProps): VNode;
1
+ import type { VNode } from 'vue';
2
+ import type { TYPES } from '@visactor/vtable';
3
+ export type MenuProps = {
4
+ renderMode?: 'canvas' | 'html';
5
+ defaultHeaderMenuItems?: TYPES.MenuListItem[];
6
+ contextMenuItems?: TYPES.MenuListItem[] | ((field: string, row: number, col: number) => TYPES.MenuListItem[]);
7
+ dropDownMenuHighlight?: TYPES.DropDownMenuHighlightInfo[];
8
+ };
9
+ export default function Menu(props: MenuProps): VNode;
@@ -1,9 +1,7 @@
1
- "use strict";
1
+ 'use strict';
2
2
 
3
- function Menu(props) {
4
- return null;
3
+ function Menu(props) {
4
+ return null;
5
5
  }
6
6
 
7
- Object.defineProperty(exports, "__esModule", {
8
- value: !0
9
- }), exports.default = Menu;
7
+ module.exports = Menu;
@@ -1,7 +1,7 @@
1
- import type { VNode } from 'vue';
2
- export type TooltipProps = {
3
- renderMode?: 'html';
4
- isShowOverflowTextTooltip?: boolean;
5
- confine?: boolean;
6
- };
7
- export default function Tooltip(props: TooltipProps): VNode;
1
+ import type { VNode } from 'vue';
2
+ export type TooltipProps = {
3
+ renderMode?: 'html';
4
+ isShowOverflowTextTooltip?: boolean;
5
+ confine?: boolean;
6
+ };
7
+ export default function Tooltip(props: TooltipProps): VNode;
@@ -1,10 +1,7 @@
1
- "use strict";
1
+ 'use strict';
2
2
 
3
- function Tooltip(props) {
4
- return null;
3
+ function Tooltip(props) {
4
+ return null;
5
5
  }
6
6
 
7
- Object.defineProperty(exports, "__esModule", {
8
- value: !0
9
- }), exports.default = Tooltip;
10
- //# sourceMappingURL=tooltip.js.map
7
+ module.exports = Tooltip;
@@ -1,16 +1,16 @@
1
- import type { VNode } from 'vue';
2
- export interface CheckboxProps {
3
- children?: string;
4
- textStyle?: any;
5
- boxStyle?: any;
6
- iconStyle?: any;
7
- checked?: boolean;
8
- indeterminate?: boolean;
9
- interactive?: boolean;
10
- disabled?: boolean;
11
- disableCursor?: any;
12
- spaceBetweenTextAndIcon?: number;
13
- visible?: boolean;
14
- onChange?: (checked: boolean) => void;
15
- }
16
- export default function CheckBox(props: CheckboxProps): VNode;
1
+ import type { VNode } from 'vue';
2
+ export interface CheckboxProps {
3
+ children?: string;
4
+ textStyle?: any;
5
+ boxStyle?: any;
6
+ iconStyle?: any;
7
+ checked?: boolean;
8
+ indeterminate?: boolean;
9
+ interactive?: boolean;
10
+ disabled?: boolean;
11
+ disableCursor?: any;
12
+ spaceBetweenTextAndIcon?: number;
13
+ visible?: boolean;
14
+ onChange?: (checked: boolean) => void;
15
+ }
16
+ export default function CheckBox(props: CheckboxProps): VNode;
@@ -1,10 +1,7 @@
1
- "use strict";
1
+ 'use strict';
2
2
 
3
- function CheckBox(props) {
4
- return null;
3
+ function CheckBox(props) {
4
+ return null;
5
5
  }
6
6
 
7
- Object.defineProperty(exports, "__esModule", {
8
- value: !0
9
- }), exports.default = CheckBox;
10
- //# sourceMappingURL=checkBox.js.map
7
+ module.exports = CheckBox;
@@ -1,16 +1,16 @@
1
- import type { VNode } from 'vue';
2
- export interface CustomComponentProps {
3
- style?: any;
4
- className?: string;
5
- displayMode: 'position' | 'cell';
6
- x?: number;
7
- y?: number;
8
- width?: number | string;
9
- height?: number | string;
10
- row?: number;
11
- col?: number;
12
- anchor?: 'top-left' | 'top-right' | 'bottom-left' | 'bottom-right';
13
- dx?: number | string;
14
- dy?: number | string;
15
- }
16
- export default function CustomLayout(props: CustomComponentProps): VNode;
1
+ import type { VNode } from 'vue';
2
+ export interface CustomComponentProps {
3
+ style?: any;
4
+ className?: string;
5
+ displayMode: 'position' | 'cell';
6
+ x?: number;
7
+ y?: number;
8
+ width?: number | string;
9
+ height?: number | string;
10
+ row?: number;
11
+ col?: number;
12
+ anchor?: 'top-left' | 'top-right' | 'bottom-left' | 'bottom-right';
13
+ dx?: number | string;
14
+ dy?: number | string;
15
+ }
16
+ export default function CustomLayout(props: CustomComponentProps): VNode;
@@ -1,2 +1,2 @@
1
- import type { VNode } from 'vue';
2
- export default function Group(): VNode;
1
+ import type { VNode } from 'vue';
2
+ export default function Group(): VNode;
@@ -1,10 +1,7 @@
1
- "use strict";
1
+ 'use strict';
2
2
 
3
- function Group() {
4
- return null;
3
+ function Group() {
4
+ return null;
5
5
  }
6
6
 
7
- Object.defineProperty(exports, "__esModule", {
8
- value: !0
9
- }), exports.default = Group;
10
- //# sourceMappingURL=group.js.map
7
+ module.exports = Group;
@@ -1,2 +1,2 @@
1
- import type { VNode } from 'vue';
2
- export default function Image(): VNode;
1
+ import type { VNode } from 'vue';
2
+ export default function Image(): VNode;
@@ -1,10 +1,7 @@
1
- "use strict";
1
+ 'use strict';
2
2
 
3
- function Image() {
4
- return null;
3
+ function Image() {
4
+ return null;
5
5
  }
6
6
 
7
- Object.defineProperty(exports, "__esModule", {
8
- value: !0
9
- }), exports.default = Image;
10
- //# sourceMappingURL=image.js.map
7
+ module.exports = Image;
@@ -1,13 +1,13 @@
1
- export interface RadioProps {
2
- children?: string;
3
- textStyle?: any;
4
- circleStyle?: any;
5
- checked?: boolean;
6
- interactive?: boolean;
7
- disabled?: boolean;
8
- disableCursor?: any;
9
- spaceBetweenTextAndIcon?: number;
10
- visible?: boolean;
11
- onChange?: (checked: boolean) => void;
12
- }
13
- export default function Radio(props: RadioProps): any;
1
+ export interface RadioProps {
2
+ children?: string;
3
+ textStyle?: any;
4
+ circleStyle?: any;
5
+ checked?: boolean;
6
+ interactive?: boolean;
7
+ disabled?: boolean;
8
+ disableCursor?: any;
9
+ spaceBetweenTextAndIcon?: number;
10
+ visible?: boolean;
11
+ onChange?: (checked: boolean) => void;
12
+ }
13
+ export default function Radio(props: RadioProps): any;
@@ -1,10 +1,7 @@
1
- "use strict";
1
+ 'use strict';
2
2
 
3
- function Radio(props) {
4
- return null;
3
+ function Radio(props) {
4
+ return null;
5
5
  }
6
6
 
7
- Object.defineProperty(exports, "__esModule", {
8
- value: !0
9
- }), exports.default = Radio;
10
- //# sourceMappingURL=radio.js.map
7
+ module.exports = Radio;
@@ -1,12 +1,12 @@
1
- import type { VNode } from 'vue';
2
- export interface TagProps {
3
- attribute?: any;
4
- children?: string;
5
- textStyle?: any;
6
- panelStyle?: any;
7
- padding?: any;
8
- minWidth?: number;
9
- maxWidth?: number;
10
- visible?: boolean;
11
- }
12
- export default function Tag(props: TagProps): VNode;
1
+ import type { VNode } from 'vue';
2
+ export interface TagProps {
3
+ attribute?: any;
4
+ children?: string;
5
+ textStyle?: any;
6
+ panelStyle?: any;
7
+ padding?: any;
8
+ minWidth?: number;
9
+ maxWidth?: number;
10
+ visible?: boolean;
11
+ }
12
+ export default function Tag(props: TagProps): VNode;
@@ -1,10 +1,7 @@
1
- "use strict";
1
+ 'use strict';
2
2
 
3
- function Tag(props) {
4
- return null;
3
+ function Tag(props) {
4
+ return null;
5
5
  }
6
6
 
7
- Object.defineProperty(exports, "__esModule", {
8
- value: !0
9
- }), exports.default = Tag;
10
- //# sourceMappingURL=tag.js.map
7
+ module.exports = Tag;
@@ -1,2 +1,2 @@
1
- import type { VNode } from 'vue';
2
- export default function Text(): VNode;
1
+ import type { VNode } from 'vue';
2
+ export default function Text(): VNode;
@@ -1,10 +1,7 @@
1
- "use strict";
1
+ 'use strict';
2
2
 
3
- function Text() {
4
- return null;
3
+ function Text() {
4
+ return null;
5
5
  }
6
6
 
7
- Object.defineProperty(exports, "__esModule", {
8
- value: !0
9
- }), exports.default = Text;
10
- //# sourceMappingURL=text.js.map
7
+ module.exports = Text;
@@ -1,15 +1,15 @@
1
- export { default as ListColumn } from './list/list-column';
2
- export { default as PivotColumnDimension } from './pivot/pivot-column-dimension';
3
- export { default as PivotRowDimension } from './pivot/pivot-row-dimension';
4
- export { default as PivotColumnHeaderTitle } from './pivot/pivot-column-header-title';
5
- export { default as PivotRowHeaderTitle } from './pivot/pivot-row-header-title';
6
- export { default as PivotIndicator } from './pivot/pivot-indicator';
7
- export { default as PivotCorner } from './pivot/pivot-corner';
8
- export { default as Menu } from './component/menu';
9
- export { default as Tooltip } from './component/tooltip';
10
- export { default as Group } from './custom/group';
11
- export { default as Image } from './custom/image';
12
- export { default as Text } from './custom/text';
13
- export { default as Tag } from './custom/tag';
14
- export { default as Radio } from './custom/radio';
15
- export { default as CheckBox } from './custom/checkBox';
1
+ export { default as ListColumn } from './list/list-column';
2
+ export { default as PivotColumnDimension } from './pivot/pivot-column-dimension';
3
+ export { default as PivotRowDimension } from './pivot/pivot-row-dimension';
4
+ export { default as PivotColumnHeaderTitle } from './pivot/pivot-column-header-title';
5
+ export { default as PivotRowHeaderTitle } from './pivot/pivot-row-header-title';
6
+ export { default as PivotIndicator } from './pivot/pivot-indicator';
7
+ export { default as PivotCorner } from './pivot/pivot-corner';
8
+ export { default as Menu } from './component/menu';
9
+ export { default as Tooltip } from './component/tooltip';
10
+ export { default as Group } from './custom/group';
11
+ export { default as Image } from './custom/image';
12
+ export { default as Text } from './custom/text';
13
+ export { default as Tag } from './custom/tag';
14
+ export { default as Radio } from './custom/radio';
15
+ export { default as CheckBox } from './custom/checkBox';
@@ -1,3 +1,3 @@
1
- import type { VNode } from 'vue';
2
- import type { ColumnDefine } from '@visactor/vtable';
3
- export default function ListColumn(props: ColumnDefine): VNode;
1
+ import type { VNode } from 'vue';
2
+ import type { ColumnDefine } from '@visactor/vtable';
3
+ export default function ListColumn(props: ColumnDefine): VNode;
@@ -1,10 +1,7 @@
1
- "use strict";
1
+ 'use strict';
2
2
 
3
- function ListColumn(props) {
4
- return null;
3
+ function ListColumn(props) {
4
+ return null;
5
5
  }
6
6
 
7
- Object.defineProperty(exports, "__esModule", {
8
- value: !0
9
- }), exports.default = ListColumn;
10
- //# sourceMappingURL=list-column.js.map
7
+ module.exports = ListColumn;
@@ -1,8 +1,8 @@
1
- import type { VNode } from 'vue';
2
- import type { IDimension } from '@visactor/vtable';
3
- interface ObjectHandler {
4
- objectHandler?: string | Array<string>;
5
- }
6
- export type PivotColumnDimensionProps = IDimension & ObjectHandler;
7
- export default function PivotColumnDimension(props: PivotColumnDimensionProps): VNode;
8
- export {};
1
+ import type { VNode } from 'vue';
2
+ import type { IDimension } from '@visactor/vtable';
3
+ interface ObjectHandler {
4
+ objectHandler?: string | Array<string>;
5
+ }
6
+ export type PivotColumnDimensionProps = IDimension & ObjectHandler;
7
+ export default function PivotColumnDimension(props: PivotColumnDimensionProps): VNode;
8
+ export {};
@@ -1,10 +1,7 @@
1
- "use strict";
1
+ 'use strict';
2
2
 
3
- function PivotColumnDimension(props) {
4
- return null;
3
+ function PivotColumnDimension(props) {
4
+ return null;
5
5
  }
6
6
 
7
- Object.defineProperty(exports, "__esModule", {
8
- value: !0
9
- }), exports.default = PivotColumnDimension;
10
- //# sourceMappingURL=pivot-column-dimension.js.map
7
+ module.exports = PivotColumnDimension;
@@ -1,3 +1,3 @@
1
- import type { VNode } from 'vue';
2
- import type { ITitleDefine } from '@visactor/vtable';
3
- export default function PivotColumnHeaderTitle(props: ITitleDefine): VNode;
1
+ import type { VNode } from 'vue';
2
+ import type { ITitleDefine } from '@visactor/vtable';
3
+ export default function PivotColumnHeaderTitle(props: ITitleDefine): VNode;
@@ -1,10 +1,7 @@
1
- "use strict";
1
+ 'use strict';
2
2
 
3
- function PivotColumnHeaderTitle(props) {
4
- return null;
3
+ function PivotColumnHeaderTitle(props) {
4
+ return null;
5
5
  }
6
6
 
7
- Object.defineProperty(exports, "__esModule", {
8
- value: !0
9
- }), exports.default = PivotColumnHeaderTitle;
10
- //# sourceMappingURL=pivot-column-header-title.js.map
7
+ module.exports = PivotColumnHeaderTitle;
@@ -1,3 +1,3 @@
1
- import type { VNode } from 'vue';
2
- import type { ICornerDefine } from '@visactor/vtable';
3
- export default function PivotCorner(props: ICornerDefine): VNode;
1
+ import type { VNode } from 'vue';
2
+ import type { ICornerDefine } from '@visactor/vtable';
3
+ export default function PivotCorner(props: ICornerDefine): VNode;
@@ -1,10 +1,7 @@
1
- "use strict";
1
+ 'use strict';
2
2
 
3
- function PivotCorner(props) {
4
- return null;
3
+ function PivotCorner(props) {
4
+ return null;
5
5
  }
6
6
 
7
- Object.defineProperty(exports, "__esModule", {
8
- value: !0
9
- }), exports.default = PivotCorner;
10
- //# sourceMappingURL=pivot-corner.js.map
7
+ module.exports = PivotCorner;
@@ -1,3 +1,3 @@
1
- import type { VNode } from 'vue';
2
- import type { IIndicator } from '@visactor/vtable';
3
- export default function PivotIndicator(props: IIndicator): VNode;
1
+ import type { VNode } from 'vue';
2
+ import type { IIndicator } from '@visactor/vtable';
3
+ export default function PivotIndicator(props: IIndicator): VNode;
@@ -1,10 +1,7 @@
1
- "use strict";
1
+ 'use strict';
2
2
 
3
- function PivotIndicator(props) {
4
- return null;
3
+ function PivotIndicator(props) {
4
+ return null;
5
5
  }
6
6
 
7
- Object.defineProperty(exports, "__esModule", {
8
- value: !0
9
- }), exports.default = PivotIndicator;
10
- //# sourceMappingURL=pivot-indicator.js.map
7
+ module.exports = PivotIndicator;
@@ -1,8 +1,8 @@
1
- import type { VNode } from 'vue';
2
- import type { IDimension } from '@visactor/vtable';
3
- interface ObjectHandler {
4
- objectHandler?: string | Array<string>;
5
- }
6
- export type PivotColumnDimensionProps = IDimension & ObjectHandler;
7
- export default function PivotRowDimension(props: PivotColumnDimensionProps): VNode;
8
- export {};
1
+ import type { VNode } from 'vue';
2
+ import type { IDimension } from '@visactor/vtable';
3
+ interface ObjectHandler {
4
+ objectHandler?: string | Array<string>;
5
+ }
6
+ export type PivotColumnDimensionProps = IDimension & ObjectHandler;
7
+ export default function PivotRowDimension(props: PivotColumnDimensionProps): VNode;
8
+ export {};
@@ -1,10 +1,7 @@
1
- "use strict";
1
+ 'use strict';
2
2
 
3
- function PivotRowDimension(props) {
4
- return null;
3
+ function PivotRowDimension(props) {
4
+ return null;
5
5
  }
6
6
 
7
- Object.defineProperty(exports, "__esModule", {
8
- value: !0
9
- }), exports.default = PivotRowDimension;
10
- //# sourceMappingURL=pivot-row-dimension.js.map
7
+ module.exports = PivotRowDimension;
@@ -1,3 +1,3 @@
1
- import type { VNode } from 'vue';
2
- import type { ITitleDefine } from '@visactor/vtable';
3
- export default function PivotRowHeaderTitle(props: ITitleDefine): VNode;
1
+ import type { VNode } from 'vue';
2
+ import type { ITitleDefine } from '@visactor/vtable';
3
+ export default function PivotRowHeaderTitle(props: ITitleDefine): VNode;
@@ -1,10 +1,7 @@
1
- "use strict";
1
+ 'use strict';
2
2
 
3
- function PivotRowHeaderTitle(props) {
4
- return null;
3
+ function PivotRowHeaderTitle(props) {
4
+ return null;
5
5
  }
6
6
 
7
- Object.defineProperty(exports, "__esModule", {
8
- value: !0
9
- }), exports.default = PivotRowHeaderTitle;
10
- //# sourceMappingURL=pivot-row-header-title.js.map
7
+ module.exports = PivotRowHeaderTitle;
@@ -1 +1 @@
1
- export declare const REACT_PRIVATE_PROPS: string[];
1
+ export declare const REACT_PRIVATE_PROPS: string[];