@opentinyvue/vue-grid 2.24.0 → 2.25.0

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,29 +1,29 @@
1
1
  {
2
2
  "name": "@opentinyvue/vue-grid",
3
3
  "type": "module",
4
- "version": "2.24.0",
4
+ "version": "2.25.0",
5
5
  "description": "",
6
6
  "license": "MIT",
7
7
  "sideEffects": false,
8
8
  "main": "./lib/index.js",
9
9
  "module": "./lib/index.js",
10
10
  "dependencies": {
11
- "@opentinyvue/vue-common": "~2.24.0",
12
- "@opentinyvue/vue-directive": "~2.24.0",
13
- "@opentinyvue/vue-dropdown": "~2.24.0",
14
- "@opentinyvue/vue-dropdown-item": "~2.24.0",
15
- "@opentinyvue/vue-dropdown-menu": "~2.24.0",
16
- "@opentinyvue/vue-exception": "~2.24.0",
17
- "@opentinyvue/vue-icon": "~2.24.0",
18
- "@opentinyvue/vue-loading": "~2.24.0",
19
- "@opentinyvue/vue-locale": "~2.24.0",
20
- "@opentinyvue/vue-modal": "~2.24.0",
21
- "@opentinyvue/vue-pager": "~2.24.0",
22
- "@opentinyvue/vue-renderless": "~3.24.0",
23
- "@opentinyvue/vue-tag": "~2.24.0",
24
- "@opentinyvue/vue-theme": "~3.24.0",
25
- "@opentinyvue/vue-tooltip": "~2.24.0",
26
- "@opentinyvue/utils": "~3.24.0"
11
+ "@opentinyvue/vue-common": "~2.25.0",
12
+ "@opentinyvue/vue-directive": "~2.25.0",
13
+ "@opentinyvue/vue-dropdown": "~2.25.0",
14
+ "@opentinyvue/vue-dropdown-item": "~2.25.0",
15
+ "@opentinyvue/vue-dropdown-menu": "~2.25.0",
16
+ "@opentinyvue/vue-exception": "~2.25.0",
17
+ "@opentinyvue/vue-icon": "~2.25.0",
18
+ "@opentinyvue/vue-loading": "~2.25.0",
19
+ "@opentinyvue/vue-locale": "~2.25.0",
20
+ "@opentinyvue/vue-modal": "~2.25.0",
21
+ "@opentinyvue/vue-pager": "~2.25.0",
22
+ "@opentinyvue/vue-renderless": "~3.25.0",
23
+ "@opentinyvue/vue-tag": "~2.25.0",
24
+ "@opentinyvue/vue-theme": "~3.25.0",
25
+ "@opentinyvue/vue-tooltip": "~2.25.0",
26
+ "@opentinyvue/utils": "~3.25.0"
27
27
  },
28
28
  "types": "index.d.ts",
29
29
  "scripts": {
@@ -0,0 +1,5 @@
1
+ export declare const usePool: (props: any) => {
2
+ columnPool: any;
3
+ rowPool: any;
4
+ isNoData: any;
5
+ };
@@ -11,7 +11,10 @@
11
11
  */
12
12
  import CellDefault from './src/cell';
13
13
  export declare const Cell: {
14
- createColumn($table: any, colProps: any): any;
14
+ createColumn($table: any, colProps: any): {
15
+ fixed: any;
16
+ readonly fixedDetails: any;
17
+ };
15
18
  renderHeader(h: any, params: any, type?: string | undefined): any[];
16
19
  renderCell(h: any, params: any): any;
17
20
  renderTreeCell(h: any, params: any): any[];
@@ -1,6 +1,9 @@
1
1
  export declare const runRender: (render: any, ...params: any[]) => any;
2
2
  export declare const Cell: {
3
- createColumn($table: any, colProps: any): any;
3
+ createColumn($table: any, colProps: any): {
4
+ fixed: any;
5
+ readonly fixedDetails: any;
6
+ };
4
7
  renderHeader(h: any, params: any, type?: string): any[];
5
8
  renderCell(h: any, params: any): any;
6
9
  renderTreeCell(h: any, params: any): any[];
@@ -1,2 +1,7 @@
1
1
  export * from './useDrag';
2
2
  export * from './useRowGroup';
3
+ export * from './useCellStatus';
4
+ export * from './useData';
5
+ export * from './useHeader';
6
+ export * from './useCellEvent';
7
+ export * from './useCellSpan';
@@ -0,0 +1,16 @@
1
+ export declare const getConfigOverflow: (column: any, $table: any) => {
2
+ cellTip: any;
3
+ cellOverflowTitle: boolean;
4
+ cellOverflowTooltip: boolean;
5
+ cellOverflowEllipsis: boolean;
6
+ cellOverflowHint: boolean;
7
+ headerTip: any;
8
+ headerOverflowTitle: boolean;
9
+ headerOverflowTooltip: boolean;
10
+ headerOverflowEllipsis: boolean;
11
+ headerOverflowHint: boolean;
12
+ };
13
+ export declare const useCellEvent: ({ table, $table }: {
14
+ table: any;
15
+ $table: any;
16
+ }) => void;
@@ -0,0 +1,4 @@
1
+ export declare const useCellSpan: (bodyVm: any, bodyProps: any) => {
2
+ normalRows: any;
3
+ footerRows: any;
4
+ };
@@ -0,0 +1,3 @@
1
+ export declare const getCellKey: ($table: any, row: any, column: any) => string;
2
+ export declare const updateRowStatus: ($table: any, row: any) => void;
3
+ export declare const getCellStatus: ($table: any, row: any, column: any) => any;
@@ -0,0 +1,6 @@
1
+ export declare const buildRenderGraph: ($table: any) => void;
2
+ export declare const tileFullData: ($table: any) => void;
3
+ export declare const graphFullData: ($table: any) => void;
4
+ export declare const useData: (props: any) => {
5
+ tiledLength: any;
6
+ };
@@ -1,5 +1,5 @@
1
- export declare const useDrag: ({ dropConfig, collectColumn, tableColumn }: {
2
- dropConfig: any;
1
+ export declare const useDrag: ({ props, collectColumn, tableColumn }: {
2
+ props: any;
3
3
  collectColumn: any;
4
4
  tableColumn: any;
5
5
  }) => void;
@@ -0,0 +1,9 @@
1
+ export declare const calcHeader: (collectColumn: any) => {
2
+ leafColumns: never[];
3
+ headerTable: never[];
4
+ rowspanMap: WeakMap<object, any>;
5
+ maxLevel: number;
6
+ };
7
+ export declare const useHeader: (props: any, bodyVm: any, headerRowHeight: any) => {
8
+ headerTable: any;
9
+ };
@@ -1,6 +1,7 @@
1
- export declare const useRowGroup: ({ rowGroup, visibleColumn, tableFullColumn, tableColumn }: {
2
- rowGroup: any;
1
+ export declare const useRowGroup: ({ props, visibleColumn, tableFullColumn, tableColumn, columnStore }: {
2
+ props: any;
3
3
  visibleColumn: any;
4
4
  tableFullColumn: any;
5
5
  tableColumn: any;
6
+ columnStore: any;
6
7
  }) => void;
package/src/config.d.ts CHANGED
@@ -3,6 +3,11 @@ declare const GlobalConfig: {
3
3
  message: string;
4
4
  icon: any;
5
5
  };
6
+ editConfig: {
7
+ trigger: string;
8
+ mode: string;
9
+ showStatus: boolean;
10
+ };
6
11
  sortConfig: {
7
12
  multipleColumnSort: boolean;
8
13
  };
@@ -22,6 +27,7 @@ declare const GlobalConfig: {
22
27
  optimization: {
23
28
  animat: boolean;
24
29
  delayHover: number;
30
+ scrollDelay: number;
25
31
  scrollX: {
26
32
  gt: number;
27
33
  };
@@ -188,6 +194,35 @@ declare const GlobalConfig: {
188
194
  TINY: string;
189
195
  SAAS: string;
190
196
  };
197
+ rowHeight: {
198
+ tiny: {
199
+ mini: number;
200
+ small: number;
201
+ default: number;
202
+ medium: number;
203
+ };
204
+ saas: {
205
+ mini: number;
206
+ small: number;
207
+ default: number;
208
+ medium: number;
209
+ };
210
+ };
211
+ headerRowHeight: {
212
+ tiny: {
213
+ mini: number;
214
+ small: number;
215
+ default: number;
216
+ medium: number;
217
+ };
218
+ saas: {
219
+ mini: number;
220
+ small: number;
221
+ default: number;
222
+ medium: number;
223
+ };
224
+ };
225
+ emptyMinHeight: number;
191
226
  columnLevelKey: string;
192
227
  defaultColumnName: string;
193
228
  };
@@ -74,6 +74,6 @@ declare const _default: {
74
74
  /**
75
75
  * 处理选中源
76
76
  */
77
- handleSelected(params: any, event: any): any;
77
+ handleSelected(params: any, event: any, noDebounce: any): any;
78
78
  };
79
79
  export default _default;
@@ -1,5 +1,7 @@
1
1
  import { handleGlobalMousedownEvent, handleGlobalBlurEvent, handleGlobalMousewheelEvent, handleArrowKeyDown, handleCopyKeyDown, handleCtxMenu, handleDelKeyDown, handleEnterKeyDown, handleEscKeyDown, handleF2KeyDown, handleOtherKeyDown, handleSpaceKeyDown, handleTabKeyDown, handleGlobalKeydownEvent, handleGlobalResizeEvent, handleGlobalMousedownCaptureEvent } from './events';
2
2
  declare const Methods: {
3
+ addIntersectionObserver(): void;
4
+ removeIntersectionObserver(): void;
3
5
  getParentElem(): any;
4
6
  updateParentHeight(): void;
5
7
  getParentHeight(): any;
@@ -11,22 +13,40 @@ declare const Methods: {
11
13
  loadTableData(datas: any, notRefresh: any): any;
12
14
  reloadData(datas: any): any;
13
15
  loadData(datas: any): Promise<unknown>;
16
+ getOriginRow(row: any): any;
17
+ setOriginRow(row: any, record: any): void;
14
18
  reloadRow(row: any, record: any, field: any): any;
15
19
  reloadColumn(columns: any): any;
16
20
  loadColumn(columns: any): Promise<any>;
17
- updateCache(source: any): void;
18
- cacheColumnMap(): void;
19
- getRowNode(tr: any): any;
20
- getColumnNode(cell: any): any;
21
+ /** 设置数据查找缓存,对数据进行备份,深度克隆 */
22
+ updateCache(backup?: boolean, deepCopy?: boolean): void;
23
+ cacheColumnMap(options: any): void;
24
+ getRowNode(tr: any): {
25
+ item: any;
26
+ index: any;
27
+ items: any;
28
+ } | null;
29
+ getColumnNode(cell: any): {
30
+ index: any;
31
+ item: any;
32
+ items: any;
33
+ } | null;
21
34
  getRowIndex(row: any): any;
22
35
  getColumnIndex(column: any): any;
23
- hasIndexColumn(column: any): any;
36
+ hasIndexColumn(column: any): boolean;
24
37
  defineField(row: any, copy: any): any;
25
38
  isTemporaryRow(row: any): any;
26
39
  createData(records: any, copy: any): Promise<unknown>;
27
40
  createRow(records: any): Promise<unknown>;
41
+ /**
42
+ * 清空单元格内容:
43
+ * 如果不传参数,则清空整个表格内容;
44
+ * 如果传row,则清空一行内容;
45
+ * 如果传rows,则清空多行内容;
46
+ * 如果还额外传了field,则清空指定单元格内容;
47
+ */
28
48
  clearData(rows: any, field: any): any;
29
- hasRowInsert(row: any): number;
49
+ hasRowInsert(row: any): any;
30
50
  compareRow(row: any, originalRow: any, field: any): any;
31
51
  hasRowChange(row: any, field: any): any;
32
52
  getColumns(columnIndex: any): any;
@@ -41,6 +61,12 @@ declare const Methods: {
41
61
  getData(rowIndex: any): any;
42
62
  getSelectRecords(notCopy: any): any;
43
63
  updateAfterFullData(): any;
64
+ /** 处理后数据,构建分组数据和构建渲染图 */
65
+ handleAfterFullData(): void;
66
+ /** 处理外部过滤和重置,区别于表头过滤 */
67
+ handleExternalFilter(value: any, filter: any): Promise<unknown>;
68
+ updateSelectionStatus(): void;
69
+ getRowCount(): any;
44
70
  getRowById(rowid: any): any;
45
71
  getTableData(): {
46
72
  visibleData: any;
@@ -51,10 +77,10 @@ declare const Methods: {
51
77
  handleDefault(): void;
52
78
  mergeCustomColumn(customColumns: any, sort: any, colWidth: any): void;
53
79
  resetAll(): void;
54
- hideColumn(tableColumn: any): any;
55
- showColumn(tableColumn: any): any;
80
+ showColumn(column: any): any;
81
+ hideColumn(column: any): any;
82
+ handleVisibleColumn(column: any, visible: any): any;
56
83
  resetCustoms(): any;
57
- handleVisibleColumn(tableColumn: any, visible: any): any;
58
84
  reloadCustoms(customColumns: any, sort: any, colWidth: any): any;
59
85
  watchColumn(value: any): void;
60
86
  refreshColumn(): any;
@@ -64,10 +90,9 @@ declare const Methods: {
64
90
  * 支持(width=?、width=?px、width=?%、min-width=?、min-width=?px、min-width=?%)
65
91
  */
66
92
  recalculate(): any;
67
- autoCellWidth(headerEl: any, bodyEl: any, footerEl: any): void;
68
- syncHeaderHeight(): void;
93
+ autoCellWidth(): void;
69
94
  resetResizable(): any;
70
- updateStyle(): any;
95
+ updateStyle(): void;
71
96
  preventEvent(event: any, type: any, args: any, next: any, end: any): void;
72
97
  blurOutside({ row, args, column }: {
73
98
  row: any;
@@ -133,8 +158,6 @@ declare const Methods: {
133
158
  getRowHeight(): any;
134
159
  computeScrollLoad(): any;
135
160
  updateScrollXData(): void;
136
- updateScrollXSpace(): void;
137
- debounceRaf(handlerKey: any, callback: any): void;
138
161
  updateScrollYData(): void;
139
162
  updateScrollYSpace(): void;
140
163
  updateScrollLoadBar(event: any): void;
@@ -165,14 +188,15 @@ declare const Methods: {
165
188
  targetElem?: undefined;
166
189
  };
167
190
  handleVisibilityChange(visible: any, entry: any): void;
168
- updateTableBodyHeight(): void;
169
191
  toggleColumnOrder(column: any): "asc" | "desc" | null;
170
- watchDataForVue3(): void;
192
+ handleDataChange(): void;
171
193
  getVm(name: any): any;
172
194
  assembleColumns(): void;
173
195
  isValidCustomColumn(columnName: any): any;
174
196
  computeCollectKey(): string;
175
197
  getAllSelection(): any;
176
- attemptRestoreScoll(options: any): any;
198
+ attemptRestoreScroll(options: any): any;
199
+ updateRowStatus(row: any): void;
200
+ getCellStatus(row: any, column: any): any;
177
201
  };
178
202
  export default Methods;
@@ -1,34 +1,24 @@
1
- declare const getRowUniqueId: () => string;
2
- declare const setTableRowKey: ($table: any) => any;
3
- declare const getTableRowKey: ($table: any) => any;
4
- declare const getTableCellKey: ({ $table, column, row }: {
5
- $table: any;
6
- column: any;
7
- row: any;
8
- }) => string;
9
- declare const setTreeScrollYCache: (_vm: any) => void;
10
- declare const sliceFullData: (_vm: any) => any;
11
- declare const getTotalRows: (_vm: any) => any;
12
- declare const getTreeChildrenKey: ({ scrollYLoad, treeConfig }: {
13
- scrollYLoad: any;
14
- treeConfig: any;
15
- }) => any;
16
- declare const getTreeShowKey: ({ scrollYLoad, treeConfig }: {
17
- scrollYLoad: any;
18
- treeConfig: any;
19
- }) => string | undefined;
20
- declare const sliceVisibleColumn: (tableVm: any) => {
1
+ declare const sliceVisibleColumn: (args: any) => {
21
2
  tableColumn: any;
22
3
  lastStartIndex: any;
23
4
  visibleColumnChanged: any;
24
5
  sliced: boolean;
6
+ addedColumn: never[];
25
7
  };
26
- declare const clearOnTableUnmount: ($table: any) => void;
27
- declare const setSliceColumnTree: (_vm: any) => any;
28
8
  /** 判断是否是虚拟行 */
29
9
  declare const isVirtualRow: (row: any) => any;
30
10
  /** 普通表分组场景,在全量数据筛选排序之后,进行分组处理生成虚拟行 */
31
11
  declare const buildRowGroupFullData: (fullData: any, _vm: any) => void;
32
12
  /** 普通表分组场景,分组行点击处理 */
33
13
  declare const handleRowGroupFold: (row: any, _vm: any) => void;
34
- export { clearOnTableUnmount, getRowUniqueId, getTableCellKey, getTableRowKey, getTotalRows, getTreeChildrenKey, getTreeShowKey, setTreeScrollYCache, setTableRowKey, sliceFullData, sliceVisibleColumn, setSliceColumnTree, buildRowGroupFullData, handleRowGroupFold, isVirtualRow };
14
+ declare const getFixedStyle: ({ fixedDetails }: {
15
+ fixedDetails: any;
16
+ }, { overflowX }: {
17
+ overflowX: any;
18
+ }) => any;
19
+ declare const getFixedClass: ({ fixedDetails }: {
20
+ fixedDetails: any;
21
+ }, { overflowX }: {
22
+ overflowX: any;
23
+ }) => any;
24
+ export { sliceVisibleColumn, buildRowGroupFullData, handleRowGroupFold, isVirtualRow, getFixedStyle, getFixedClass };
@@ -1,34 +1,8 @@
1
- /**
2
- * MIT License
3
- *
4
- * Copyright (c) 2019 Xu Liangzhan
5
- *
6
- * Permission is hereby granted, free of charge, to any person obtaining a copy
7
- * of this software and associated documentation files (the "Software"), to deal
8
- * in the Software without restriction, including without limitation the rights
9
- * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10
- * copies of the Software, and to permit persons to whom the Software is
11
- * furnished to do so, subject to the following conditions:
12
- *
13
- * The above copyright notice and this permission notice shall be included in all
14
- * copies or substantial portions of the Software.
15
- *
16
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18
- * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19
- * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20
- * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21
- * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22
- * SOFTWARE.
23
- *
24
- */
25
- export declare const calcTableWidth: ({ bodyWidth, columnStore, fit, minCellWidth, remainWidth }: {
26
- bodyWidth: any;
27
- columnStore: any;
28
- fit: any;
29
- minCellWidth: any;
30
- remainWidth: any;
31
- }) => number;
1
+ export declare const calcTableWidth: ($table: any) => {
2
+ totalWidth: number;
3
+ offsetWidth: any;
4
+ offsetHeight: any;
5
+ };
32
6
  export declare const calcFixedStickyPosition: ({ headerEl, bodyEl, columnStore, scrollbarWidth, columnChart, isGroup }: {
33
7
  headerEl: any;
34
8
  bodyEl: any;
@@ -37,3 +11,4 @@ export declare const calcFixedStickyPosition: ({ headerEl, bodyEl, columnStore,
37
11
  columnChart: any;
38
12
  isGroup: any;
39
13
  }) => void;
14
+ export declare function calcFixedDetails(_vm: any): void;
@@ -1,5 +1 @@
1
- export declare function handleLayout(params: any): {
2
- tableColumn: any;
3
- maxHeight: any;
4
- minHeight: any;
5
- };
1
+ export declare function handleLayout(_vm: any): void;
@@ -3,7 +3,7 @@ declare const _default: {
3
3
  row: any;
4
4
  }): any;
5
5
  toggleTreeExpansion(row: any): any;
6
- handleDefaultTreeExpand(): void;
6
+ handleDefaultTreeExpand(): any;
7
7
  setAllTreeExpansion(expanded: any): any;
8
8
  setTreeExpansion(rows: any, expanded: any): any;
9
9
  hasTreeExpand(row: any): any;
@@ -1,26 +0,0 @@
1
- /**
2
- * MIT License
3
- *
4
- * Copyright (c) 2019 Xu Liangzhan
5
- *
6
- * Permission is hereby granted, free of charge, to any person obtaining a copy
7
- * of this software and associated documentation files (the "Software"), to deal
8
- * in the Software without restriction, including without limitation the rights
9
- * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10
- * copies of the Software, and to permit persons to whom the Software is
11
- * furnished to do so, subject to the following conditions:
12
- *
13
- * The above copyright notice and this permission notice shall be included in all
14
- * copies or substantial portions of the Software.
15
- *
16
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18
- * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19
- * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20
- * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21
- * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22
- * SOFTWARE.
23
- *
24
- */
25
- import Footer from './src/footer';
26
- export default Footer;
@@ -1,26 +0,0 @@
1
- /**
2
- * MIT License
3
- *
4
- * Copyright (c) 2019 Xu Liangzhan
5
- *
6
- * Permission is hereby granted, free of charge, to any person obtaining a copy
7
- * of this software and associated documentation files (the "Software"), to deal
8
- * in the Software without restriction, including without limitation the rights
9
- * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10
- * copies of the Software, and to permit persons to whom the Software is
11
- * furnished to do so, subject to the following conditions:
12
- *
13
- * The above copyright notice and this permission notice shall be included in all
14
- * copies or substantial portions of the Software.
15
- *
16
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18
- * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19
- * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20
- * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21
- * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22
- * SOFTWARE.
23
- *
24
- */
25
- declare const _default: any;
26
- export default _default;
@@ -1,26 +0,0 @@
1
- /**
2
- * MIT License
3
- *
4
- * Copyright (c) 2019 Xu Liangzhan
5
- *
6
- * Permission is hereby granted, free of charge, to any person obtaining a copy
7
- * of this software and associated documentation files (the "Software"), to deal
8
- * in the Software without restriction, including without limitation the rights
9
- * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10
- * copies of the Software, and to permit persons to whom the Software is
11
- * furnished to do so, subject to the following conditions:
12
- *
13
- * The above copyright notice and this permission notice shall be included in all
14
- * copies or substantial portions of the Software.
15
- *
16
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18
- * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19
- * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20
- * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21
- * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22
- * SOFTWARE.
23
- *
24
- */
25
- import Header from './src/header';
26
- export default Header;
@@ -1,26 +0,0 @@
1
- /**
2
- * MIT License
3
- *
4
- * Copyright (c) 2019 Xu Liangzhan
5
- *
6
- * Permission is hereby granted, free of charge, to any person obtaining a copy
7
- * of this software and associated documentation files (the "Software"), to deal
8
- * in the Software without restriction, including without limitation the rights
9
- * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10
- * copies of the Software, and to permit persons to whom the Software is
11
- * furnished to do so, subject to the following conditions:
12
- *
13
- * The above copyright notice and this permission notice shall be included in all
14
- * copies or substantial portions of the Software.
15
- *
16
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18
- * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19
- * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20
- * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21
- * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22
- * SOFTWARE.
23
- *
24
- */
25
- declare const _default: any;
26
- export default _default;
@@ -1,6 +0,0 @@
1
- export declare const generateFixedClassName: ({ $table, bodyElem, leftList, rightList }: {
2
- $table: any;
3
- bodyElem: any;
4
- leftList: any;
5
- rightList: any;
6
- }) => void;