hfn-components 0.6.1 → 0.6.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 (95) hide show
  1. package/dist/index.css +1 -0
  2. package/es/_virtual/_plugin-vue_export-helper.mjs +9 -0
  3. package/es/component.d.ts +3 -0
  4. package/es/component.mjs +14 -0
  5. package/es/components/chart/index.d.ts +201 -0
  6. package/es/components/chart/index.mjs +7 -0
  7. package/es/components/chart/src/HtChart.d.ts +77 -0
  8. package/es/components/chart/src/HtChart.mjs +93 -0
  9. package/es/components/chart/src/HtChart.vue.d.ts +207 -0
  10. package/es/components/chart/src/HtChart.vue.mjs +90 -0
  11. package/es/components/chart/src/HtChart.vue2.mjs +109 -0
  12. package/es/components/chart/src/chartConfig.d.ts +7 -0
  13. package/es/components/chart/src/chartConfig.mjs +88 -0
  14. package/es/components/chart/style/index.d.ts +1 -0
  15. package/es/components/chart/style/index.mjs +1 -0
  16. package/es/components/elTable/index.d.ts +821 -0
  17. package/es/components/elTable/index.mjs +7 -0
  18. package/es/components/elTable/src/columnDeal.vue.d.ts +65 -0
  19. package/es/components/elTable/src/columnDeal.vue.mjs +42 -0
  20. package/es/components/elTable/src/columnDeal.vue2.mjs +19 -0
  21. package/es/components/elTable/src/elTable.d.ts +56 -0
  22. package/es/components/elTable/src/elTable.mjs +49 -0
  23. package/es/components/elTable/src/elTable.vue.d.ts +820 -0
  24. package/es/components/elTable/src/elTable.vue.mjs +114 -0
  25. package/es/components/elTable/src/elTable.vue2.mjs +51 -0
  26. package/es/components/htTarget/index.d.ts +2028 -0
  27. package/es/components/htTarget/index.mjs +6 -0
  28. package/es/components/htTarget/src/htTarget.d.ts +25 -0
  29. package/es/components/htTarget/src/htTarget.mjs +20 -0
  30. package/es/components/htTarget/src/htTarget.vue.d.ts +2027 -0
  31. package/es/components/htTarget/src/htTarget.vue.mjs +240 -0
  32. package/es/components/htTarget/src/htTarget.vue2.mjs +158 -0
  33. package/es/components/htTarget/style/index.d.ts +1 -0
  34. package/es/components/htTarget/style/index.mjs +1 -0
  35. package/es/components/index.d.ts +4 -0
  36. package/es/components/index.mjs +7 -0
  37. package/es/components/pieChart/index.d.ts +104 -0
  38. package/es/components/pieChart/index.mjs +7 -0
  39. package/es/components/pieChart/src/HtPieChart.d.ts +36 -0
  40. package/es/components/pieChart/src/HtPieChart.mjs +42 -0
  41. package/es/components/pieChart/src/HtPieChart.vue.d.ts +109 -0
  42. package/es/components/pieChart/src/HtPieChart.vue.mjs +61 -0
  43. package/es/components/pieChart/src/HtPieChart.vue2.mjs +103 -0
  44. package/es/components/pieChart/style/index.d.ts +1 -0
  45. package/es/components/pieChart/style/index.mjs +1 -0
  46. package/es/components/table/HtTable.d.ts +142 -0
  47. package/es/components/table/HtTable.mjs +136 -0
  48. package/es/components/table/HtTable.vue.d.ts +1847 -0
  49. package/es/components/table/HtTable.vue.mjs +449 -0
  50. package/es/components/table/HtTable.vue2.mjs +124 -0
  51. package/es/components/table/index.d.ts +1845 -0
  52. package/es/components/table/index.mjs +7 -0
  53. package/es/constants/chartConfig.d.ts +8 -0
  54. package/es/constants/chartConfig.mjs +148 -0
  55. package/es/constants/index.d.ts +4 -0
  56. package/es/constants/index.mjs +4 -0
  57. package/es/constants/key.d.ts +1 -0
  58. package/es/constants/key.mjs +3 -0
  59. package/es/constants/table.d.ts +125 -0
  60. package/es/constants/table.mjs +156 -0
  61. package/es/constants/target.d.ts +15 -0
  62. package/es/constants/target.mjs +59 -0
  63. package/es/defaults.d.ts +4 -0
  64. package/es/defaults.mjs +7 -0
  65. package/es/index.d.ts +5 -0
  66. package/es/index.mjs +13 -0
  67. package/es/make-installer.d.ts +4 -0
  68. package/es/make-installer.mjs +15 -0
  69. package/es/plugin.d.ts +2 -0
  70. package/es/plugin.mjs +3 -0
  71. package/es/utils/chart.d.ts +8 -0
  72. package/es/utils/chart.mjs +197 -0
  73. package/es/utils/common.d.ts +3 -0
  74. package/es/utils/common.mjs +15 -0
  75. package/es/utils/index.d.ts +4 -0
  76. package/es/utils/index.mjs +4 -0
  77. package/es/utils/table.d.ts +2 -0
  78. package/es/utils/table.mjs +31 -0
  79. package/es/utils/tool.d.ts +2 -0
  80. package/es/utils/tool.mjs +42 -0
  81. package/global.d.ts +14 -0
  82. package/package.json +1 -1
  83. package/theme-chalk/ht-chart.css +1 -0
  84. package/theme-chalk/ht-table.css +1 -0
  85. package/theme-chalk/ht-target.css +1 -0
  86. package/theme-chalk/index.css +1 -0
  87. package/theme-chalk/src/chart.scss +58 -0
  88. package/theme-chalk/src/index.scss +3 -0
  89. package/theme-chalk/src/table.scss +45 -0
  90. package/theme-chalk/src/target.scss +39 -0
  91. package/component.ts +0 -15
  92. package/defaults.ts +0 -5
  93. package/index.ts +0 -6
  94. package/make-installer.ts +0 -17
  95. package/plugin.ts +0 -1
@@ -0,0 +1,109 @@
1
+ export interface Legend {
2
+ name: string;
3
+ lineType: string;
4
+ isShow: boolean;
5
+ color: string;
6
+ }
7
+ declare const _default: import("vue").DefineComponent<{
8
+ readonly chartData: {
9
+ readonly type: import("vue").PropType<any[]>;
10
+ readonly default: () => never[];
11
+ };
12
+ readonly legendData: {
13
+ readonly type: ObjectConstructor;
14
+ readonly default: () => void;
15
+ };
16
+ readonly legendType: {
17
+ readonly type: StringConstructor;
18
+ readonly default: "scroll";
19
+ };
20
+ readonly chartId: {
21
+ readonly type: StringConstructor;
22
+ readonly default: "";
23
+ };
24
+ readonly floatNumber: {
25
+ readonly type: NumberConstructor;
26
+ readonly default: 2;
27
+ };
28
+ readonly legendFormatter: {
29
+ readonly type: FunctionConstructor;
30
+ readonly default: () => null;
31
+ };
32
+ readonly watchResize: {
33
+ readonly type: BooleanConstructor;
34
+ readonly default: false;
35
+ };
36
+ readonly lineColor: {
37
+ readonly type: import("vue").PropType<string[]>;
38
+ readonly default: readonly [];
39
+ };
40
+ }, {
41
+ props: import("@vue/shared").LooseRequired<{
42
+ readonly chartData: any[];
43
+ readonly chartId: string;
44
+ readonly floatNumber: number;
45
+ readonly watchResize: boolean;
46
+ readonly lineColor: string[];
47
+ readonly legendData: Record<string, any>;
48
+ readonly legendType: string;
49
+ readonly legendFormatter: Function;
50
+ } & {}>;
51
+ myChart: import("vue").ShallowRef<any>;
52
+ echartOptions: any;
53
+ chartResize: () => void;
54
+ noData: import("vue").Ref<boolean>;
55
+ allLegend: import("vue").Ref<{
56
+ name: string;
57
+ lineType: string;
58
+ isShow: boolean;
59
+ color: string;
60
+ }[]>;
61
+ drawGraph: () => void;
62
+ lengedDeal: () => void;
63
+ setEchartTooltip: () => void;
64
+ legendStatus: (item: Legend, index: number) => void;
65
+ echartInit: () => void;
66
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
67
+ readonly chartData: {
68
+ readonly type: import("vue").PropType<any[]>;
69
+ readonly default: () => never[];
70
+ };
71
+ readonly legendData: {
72
+ readonly type: ObjectConstructor;
73
+ readonly default: () => void;
74
+ };
75
+ readonly legendType: {
76
+ readonly type: StringConstructor;
77
+ readonly default: "scroll";
78
+ };
79
+ readonly chartId: {
80
+ readonly type: StringConstructor;
81
+ readonly default: "";
82
+ };
83
+ readonly floatNumber: {
84
+ readonly type: NumberConstructor;
85
+ readonly default: 2;
86
+ };
87
+ readonly legendFormatter: {
88
+ readonly type: FunctionConstructor;
89
+ readonly default: () => null;
90
+ };
91
+ readonly watchResize: {
92
+ readonly type: BooleanConstructor;
93
+ readonly default: false;
94
+ };
95
+ readonly lineColor: {
96
+ readonly type: import("vue").PropType<string[]>;
97
+ readonly default: readonly [];
98
+ };
99
+ }>>, {
100
+ readonly chartData: any[];
101
+ readonly chartId: string;
102
+ readonly floatNumber: number;
103
+ readonly watchResize: boolean;
104
+ readonly lineColor: string[];
105
+ readonly legendData: Record<string, any>;
106
+ readonly legendType: string;
107
+ readonly legendFormatter: Function;
108
+ }, {}>;
109
+ export default _default;
@@ -0,0 +1,61 @@
1
+ import _sfc_main from './HtPieChart.vue2.mjs';
2
+ import { openBlock, createElementBlock, createElementVNode, createCommentVNode, Fragment, renderList, normalizeStyle, toDisplayString } from 'vue';
3
+ import _export_sfc from '../../../_virtual/_plugin-vue_export-helper.mjs';
4
+
5
+ const _hoisted_1 = { class: "echart-box" };
6
+ const _hoisted_2 = { class: "echart-lenged" };
7
+ const _hoisted_3 = ["onClick"];
8
+ const _hoisted_4 = ["id"];
9
+ const _hoisted_5 = {
10
+ key: 0,
11
+ class: "noData"
12
+ };
13
+ function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
14
+ return openBlock(), createElementBlock("div", _hoisted_1, [
15
+ createElementVNode("div", _hoisted_2, [
16
+ createCommentVNode(' @mouseover="legendEnter(index)"\n @mouseleave="legendLeave()" '),
17
+ (openBlock(true), createElementBlock(
18
+ Fragment,
19
+ null,
20
+ renderList($setup.allLegend, (item, index) => {
21
+ return openBlock(), createElementBlock("div", {
22
+ class: "span-box mb10",
23
+ key: index,
24
+ onClick: ($event) => $setup.legendStatus(item, index)
25
+ }, [
26
+ createElementVNode(
27
+ "span",
28
+ {
29
+ class: "bg-span-bar",
30
+ style: normalizeStyle({ background: item.isShow ? item.color : "#ccc" })
31
+ },
32
+ null,
33
+ 4
34
+ /* STYLE */
35
+ ),
36
+ createElementVNode(
37
+ "span",
38
+ {
39
+ style: normalizeStyle({ color: item.isShow ? "#000" : "#ccc" })
40
+ },
41
+ toDisplayString(item.name),
42
+ 5
43
+ /* TEXT, STYLE */
44
+ )
45
+ ], 8, _hoisted_3);
46
+ }),
47
+ 128
48
+ /* KEYED_FRAGMENT */
49
+ ))
50
+ ]),
51
+ createElementVNode("div", {
52
+ class: "_100",
53
+ id: _ctx.chartId
54
+ }, null, 8, _hoisted_4),
55
+ createCommentVNode(" \u56FE\u4F8B\u5168\u7F6E\u7070\u76D2\u5B50 "),
56
+ $setup.noData ? (openBlock(), createElementBlock("div", _hoisted_5, "\u6682\u65E0\u6570\u636E")) : createCommentVNode("v-if", true)
57
+ ]);
58
+ }
59
+ var htPieChart = /* @__PURE__ */ _export_sfc(_sfc_main, [["render", _sfc_render], ["__file", "/Users/libiluo/Desktop/company/component-library/packages/components/pieChart/src/HtPieChart.vue"]]);
60
+
61
+ export { htPieChart as default };
@@ -0,0 +1,103 @@
1
+ import { defineComponent, shallowRef, reactive, watch, ref } from 'vue';
2
+ import { pieProps } from './HtPieChart.mjs';
3
+ import cloneDeep from 'lodash.clonedeep';
4
+ import { useBasicPieConfig } from '../../../constants/chartConfig.mjs';
5
+ import * as echarts from 'echarts/core';
6
+
7
+ var _sfc_main = /* @__PURE__ */ defineComponent({
8
+ __name: "HtPieChart",
9
+ props: pieProps,
10
+ setup(__props, { expose: __expose }) {
11
+ __expose();
12
+ const props = __props;
13
+ const myChart = shallowRef();
14
+ const echartOptions = reactive(cloneDeep(useBasicPieConfig(props.floatNumber)));
15
+ watch(
16
+ () => props.chartData,
17
+ (val) => {
18
+ echartOptions.series[0].data = cloneDeep(val);
19
+ drawGraph();
20
+ },
21
+ { deep: true }
22
+ );
23
+ watch(
24
+ () => props.watchResize,
25
+ () => {
26
+ chartResize();
27
+ }
28
+ );
29
+ watch(
30
+ () => props.lineColor,
31
+ (val) => {
32
+ if (val && val.length > 0) {
33
+ echartOptions.color = props.lineColor;
34
+ if (myChart.value) {
35
+ echartInit();
36
+ }
37
+ }
38
+ },
39
+ { deep: true, immediate: true }
40
+ );
41
+ const chartResize = () => {
42
+ myChart.value.resize();
43
+ };
44
+ const noData = ref(false);
45
+ const allLegend = ref([]);
46
+ const drawGraph = () => {
47
+ lengedDeal();
48
+ setEchartTooltip();
49
+ echartInit();
50
+ };
51
+ const lengedDeal = () => {
52
+ allLegend.value = [];
53
+ props.chartData.forEach((item, index) => {
54
+ const data = {
55
+ name: item.name,
56
+ isShow: true,
57
+ lineType: item.type,
58
+ color: echartOptions.color[index % echartOptions.color.length]
59
+ };
60
+ allLegend.value.push(data);
61
+ });
62
+ };
63
+ const setEchartTooltip = () => {
64
+ echartOptions.tooltip = {
65
+ trigger: "item",
66
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
67
+ formatter: function(params) {
68
+ let html;
69
+ html = `<div>${params.seriesName}</div>`;
70
+ html += `<span> ${params.name}:
71
+ ${params.data.percent ? (params.data.percent * 100).toFixed(props.floatNumber) : params.percent.toFixed(props.floatNumber)}%<span>`;
72
+ return html;
73
+ }
74
+ };
75
+ };
76
+ const legendStatus = (item, index) => {
77
+ const status = !item.isShow;
78
+ allLegend.value[index].isShow = status;
79
+ if (allLegend.value.every((item2) => item2.isShow === false)) {
80
+ noData.value = true;
81
+ } else {
82
+ noData.value = false;
83
+ }
84
+ myChart.value.setOption({
85
+ legend: { selected: { [item.name]: status } }
86
+ });
87
+ };
88
+ const echartInit = () => {
89
+ setTimeout(() => {
90
+ if (!myChart.value) {
91
+ const ele = document.getElementById(props.chartId);
92
+ myChart.value = echarts.init(ele, null, { devicePixelRatio: 2, locale: "ZH" });
93
+ }
94
+ myChart.value.setOption(echartOptions, true);
95
+ }, 200);
96
+ };
97
+ const __returned__ = { props, myChart, echartOptions, chartResize, noData, allLegend, drawGraph, lengedDeal, setEchartTooltip, legendStatus, echartInit };
98
+ Object.defineProperty(__returned__, "__isScriptSetup", { enumerable: false, value: true });
99
+ return __returned__;
100
+ }
101
+ });
102
+
103
+ export { _sfc_main as default };
@@ -0,0 +1 @@
1
+ import 'hfn-components/theme-chalk/src/chart.scss';
@@ -0,0 +1 @@
1
+ import 'hfn-components/theme-chalk/src/chart.scss';
@@ -0,0 +1,142 @@
1
+ import type HtTable from './HtTable.vue';
2
+ import type { ExtractPropTypes, PropType } from 'vue';
3
+ import { ColumnGroupType, ColumnType, TablePaginationConfig, SortOrder } from 'ant-design-vue/es/table/interface';
4
+ import { TableColumnType } from 'ant-design-vue';
5
+ interface CustomColumn {
6
+ title: string;
7
+ key: string;
8
+ titles: string[];
9
+ dataIndex?: string;
10
+ width?: string | number;
11
+ align?: 'left' | 'center' | 'right';
12
+ slotData?: string;
13
+ fixed?: 'left' | 'right';
14
+ filters?: any[];
15
+ filterMultiple?: boolean;
16
+ sorter?: boolean;
17
+ sortOrder?: SortOrder;
18
+ }
19
+ export type TableColumns = CustomColumn | ColumnGroupType<any> | ColumnType<any>;
20
+ export interface ActionItem {
21
+ label?: string;
22
+ disabled?: boolean;
23
+ type: string;
24
+ icon?: string;
25
+ iconType?: string;
26
+ menu?: Array<any>;
27
+ url?: string;
28
+ handler: (record: any) => void;
29
+ showAction?: (record: any) => boolean;
30
+ }
31
+ export interface HtTableColumnType extends TableColumnType {
32
+ componentType: string;
33
+ }
34
+ export declare const tableProps: {
35
+ readonly loading: {
36
+ readonly type: BooleanConstructor;
37
+ readonly default: false;
38
+ };
39
+ readonly columns: {
40
+ readonly type: PropType<TableColumns[]>;
41
+ readonly default: () => never[];
42
+ };
43
+ readonly actions: {
44
+ readonly type: PropType<ActionItem[]>;
45
+ readonly default: () => never[];
46
+ };
47
+ readonly dataSource: {
48
+ readonly type: ArrayConstructor;
49
+ readonly default: () => never[];
50
+ };
51
+ readonly total: {
52
+ readonly type: NumberConstructor;
53
+ readonly default: 0;
54
+ };
55
+ readonly pageSize: {
56
+ readonly type: NumberConstructor;
57
+ readonly default: 20;
58
+ };
59
+ readonly nowPage: {
60
+ readonly type: NumberConstructor;
61
+ readonly default: 1;
62
+ };
63
+ readonly selectShow: {
64
+ readonly type: BooleanConstructor;
65
+ readonly default: false;
66
+ };
67
+ readonly selectedKeys: {
68
+ readonly type: PropType<(string | number)[]>;
69
+ readonly default: () => never[];
70
+ };
71
+ readonly isPagination: {
72
+ readonly type: BooleanConstructor;
73
+ readonly default: true;
74
+ };
75
+ readonly showOriginalPagination: {
76
+ readonly type: PropType<false | object | TablePaginationConfig>;
77
+ readonly default: false;
78
+ };
79
+ readonly isScroll: {
80
+ readonly type: BooleanConstructor;
81
+ readonly default: true;
82
+ };
83
+ readonly categoryList: {
84
+ readonly type: ArrayConstructor;
85
+ readonly default: () => never[];
86
+ };
87
+ readonly yIsScroll: {
88
+ readonly type: BooleanConstructor;
89
+ readonly default: false;
90
+ };
91
+ readonly yHeight: {
92
+ readonly type: NumberConstructor;
93
+ readonly default: 0;
94
+ };
95
+ readonly isPeople: {
96
+ readonly type: BooleanConstructor;
97
+ readonly default: false;
98
+ };
99
+ readonly switching: {
100
+ readonly type: BooleanConstructor;
101
+ readonly default: false;
102
+ };
103
+ readonly selectKey: {
104
+ readonly type: StringConstructor;
105
+ readonly default: "";
106
+ };
107
+ readonly isTeam: {
108
+ readonly type: BooleanConstructor;
109
+ readonly default: false;
110
+ };
111
+ readonly isTotal: {
112
+ readonly type: BooleanConstructor;
113
+ readonly default: false;
114
+ };
115
+ readonly totalData: {
116
+ readonly type: ArrayConstructor;
117
+ readonly default: () => never[];
118
+ };
119
+ readonly totalIndex: {
120
+ readonly type: BooleanConstructor;
121
+ readonly default: true;
122
+ };
123
+ readonly isExcess: {
124
+ readonly type: BooleanConstructor;
125
+ readonly default: false;
126
+ };
127
+ readonly isRowKey: {
128
+ readonly type: BooleanConstructor;
129
+ readonly default: true;
130
+ };
131
+ readonly isSticky: {
132
+ readonly type: BooleanConstructor;
133
+ readonly default: false;
134
+ };
135
+ readonly smallHeader: {
136
+ readonly type: BooleanConstructor;
137
+ readonly default: true;
138
+ };
139
+ };
140
+ export type TableProps = ExtractPropTypes<typeof tableProps>;
141
+ export type HtTabletInstance = InstanceType<typeof HtTable>;
142
+ export {};
@@ -0,0 +1,136 @@
1
+ const tableProps = {
2
+ // loading状态
3
+ loading: {
4
+ type: Boolean,
5
+ default: false
6
+ },
7
+ // 表格列配置
8
+ columns: {
9
+ type: Array,
10
+ default: () => []
11
+ },
12
+ actions: {
13
+ type: Array,
14
+ default: () => []
15
+ },
16
+ // 表格数据
17
+ dataSource: {
18
+ type: Array,
19
+ default: () => []
20
+ },
21
+ // 表格数据总数
22
+ total: {
23
+ type: Number,
24
+ default: 0
25
+ },
26
+ // 每页条数
27
+ pageSize: {
28
+ type: Number,
29
+ default: 20
30
+ },
31
+ // 当前页
32
+ nowPage: {
33
+ type: Number,
34
+ default: 1
35
+ },
36
+ // 是否显示选择框
37
+ selectShow: {
38
+ type: Boolean,
39
+ default: false
40
+ },
41
+ // 选中数据
42
+ selectedKeys: {
43
+ type: Array,
44
+ default: () => []
45
+ },
46
+ // isClear: {
47
+ // type: Boolean,
48
+ // default: false
49
+ // },
50
+ // isAdvisor: {
51
+ // type: Boolean,
52
+ // default: false
53
+ // },
54
+ // 是否显示分页
55
+ isPagination: {
56
+ type: Boolean,
57
+ default: true
58
+ },
59
+ // 是否启用表格分页器
60
+ showOriginalPagination: {
61
+ type: [Boolean, Object],
62
+ default: false
63
+ },
64
+ // 表格x轴是否可滚动
65
+ isScroll: {
66
+ type: Boolean,
67
+ default: true
68
+ },
69
+ categoryList: {
70
+ type: Array,
71
+ default: () => []
72
+ },
73
+ // isStrategy: {
74
+ // type: Number,
75
+ // default: 1
76
+ // },
77
+ // 表格y轴是否可滚动
78
+ yIsScroll: {
79
+ type: Boolean,
80
+ default: false
81
+ },
82
+ // y轴滚动高度
83
+ yHeight: {
84
+ type: Number,
85
+ default: 0
86
+ },
87
+ // 是否是个人
88
+ isPeople: {
89
+ type: Boolean,
90
+ default: false
91
+ },
92
+ switching: {
93
+ type: Boolean,
94
+ default: false
95
+ },
96
+ selectKey: {
97
+ // 多选时默认选择的字段
98
+ type: String,
99
+ default: ""
100
+ },
101
+ isTeam: {
102
+ // 区分个人&团队
103
+ type: Boolean,
104
+ default: false
105
+ },
106
+ isTotal: {
107
+ type: Boolean,
108
+ default: false
109
+ },
110
+ totalData: {
111
+ type: Array,
112
+ default: () => []
113
+ },
114
+ totalIndex: {
115
+ type: Boolean,
116
+ default: true
117
+ },
118
+ isExcess: {
119
+ type: Boolean,
120
+ default: false
121
+ },
122
+ isRowKey: {
123
+ type: Boolean,
124
+ default: true
125
+ },
126
+ isSticky: {
127
+ type: Boolean,
128
+ default: false
129
+ },
130
+ smallHeader: {
131
+ type: Boolean,
132
+ default: true
133
+ }
134
+ };
135
+
136
+ export { tableProps };