k-vtable 1.0.24 → 1.0.25

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 (53) hide show
  1. package/cjs/core/BaseTable.js +1 -1
  2. package/cjs/core/BaseTable.js.map +1 -1
  3. package/cjs/dataset/dataset-pivot-table.js +1 -2
  4. package/cjs/edit/edit-manager.js +1 -0
  5. package/cjs/edit/edit-manager.js.map +1 -1
  6. package/cjs/edit/editors.js +2 -1
  7. package/cjs/index.d.ts +1 -1
  8. package/cjs/index.js +1 -1
  9. package/cjs/index.js.map +1 -1
  10. package/cjs/layout/index.js +1 -2
  11. package/cjs/layout/pivot-header-layout.d.ts +1 -0
  12. package/cjs/layout/pivot-header-layout.js +40 -32
  13. package/cjs/layout/pivot-header-layout.js.map +1 -1
  14. package/cjs/layout/pivot-layout.js +0 -2
  15. package/cjs/layout/row-height-map.js +1 -1
  16. package/cjs/layout/simple-header-layout.js +1 -1
  17. package/cjs/layout/tree-helper.js +1 -1
  18. package/cjs/plugins/custom-cell-style.js +2 -1
  19. package/cjs/plugins/index.js +1 -1
  20. package/cjs/plugins/interface.js +1 -1
  21. package/cjs/plugins/invert-highlight.js +1 -1
  22. package/cjs/plugins/list-tree-stick-cell.js +1 -1
  23. package/cjs/plugins/plugin-manager.js +1 -1
  24. package/cjs/state/state.js.map +1 -1
  25. package/cjs/vrender.js.map +1 -1
  26. package/dist/vtable.js +67 -49
  27. package/dist/vtable.min.js +1 -1
  28. package/es/core/BaseTable.js +1 -1
  29. package/es/core/BaseTable.js.map +1 -1
  30. package/es/dataset/dataset-pivot-table.js +1 -2
  31. package/es/edit/edit-manager.js +1 -0
  32. package/es/edit/edit-manager.js.map +1 -1
  33. package/es/edit/editors.js +2 -1
  34. package/es/index.d.ts +1 -1
  35. package/es/index.js +1 -1
  36. package/es/index.js.map +1 -1
  37. package/es/layout/index.js +1 -2
  38. package/es/layout/pivot-header-layout.d.ts +1 -0
  39. package/es/layout/pivot-header-layout.js +37 -27
  40. package/es/layout/pivot-header-layout.js.map +1 -1
  41. package/es/layout/pivot-layout.js +0 -2
  42. package/es/layout/row-height-map.js +1 -1
  43. package/es/layout/simple-header-layout.js +1 -1
  44. package/es/layout/tree-helper.js +1 -1
  45. package/es/plugins/custom-cell-style.js +2 -1
  46. package/es/plugins/index.js +1 -1
  47. package/es/plugins/interface.js +1 -1
  48. package/es/plugins/invert-highlight.js +1 -1
  49. package/es/plugins/list-tree-stick-cell.js +1 -1
  50. package/es/plugins/plugin-manager.js +1 -1
  51. package/es/state/state.js.map +1 -1
  52. package/es/vrender.js.map +1 -1
  53. package/package.json +1 -1
@@ -1,3 +1 @@
1
-
2
-
3
1
  //# sourceMappingURL=pivot-layout.js.map
@@ -178,5 +178,5 @@ function indexFirst(arr, elm) {
178
178
  return arr[tempI] === elm ? tempI : -1;
179
179
  }
180
180
 
181
- exports.NumberRangeMap = NumberRangeMap;
182
181
  //# sourceMappingURL=row-height-map.js.map
182
+ exports.NumberRangeMap = NumberRangeMap;
@@ -809,4 +809,4 @@ class SimpleHeaderLayoutMap {
809
809
  }
810
810
 
811
811
  exports.SimpleHeaderLayoutMap = SimpleHeaderLayoutMap;
812
- //# sourceMappingURL=simple-header-layout.js.map
812
+ //# sourceMappingURL=simple-header-layout.js.map
@@ -411,4 +411,4 @@ function deleteTreeHideNode(tree_children, dimensionPath, indicators, hasHideNod
411
411
  exports.DimensionTree = DimensionTree, exports.generateLayoutTree = generateLayoutTree,
412
412
  exports.countLayoutTree = countLayoutTree, exports.dealHeader = dealHeader, exports.dealHeaderForGridTreeMode = dealHeaderForGridTreeMode,
413
413
  exports.dealHeaderForTreeMode = dealHeaderForTreeMode, exports.deleteTreeHideNode = deleteTreeHideNode;
414
- //# sourceMappingURL=tree-helper.js.map
414
+ //# sourceMappingURL=tree-helper.js.map
@@ -109,4 +109,5 @@ const registerCustomCellStylePlugin = () => {
109
109
  factory_1.Factory.registerComponent("customCellStylePlugin", CustomCellStylePlugin);
110
110
  };
111
111
 
112
- exports.registerCustomCellStylePlugin = registerCustomCellStylePlugin;
112
+ exports.registerCustomCellStylePlugin = registerCustomCellStylePlugin;
113
+ //# sourceMappingURL=custom-cell-style.js.map
@@ -21,4 +21,4 @@ Object.defineProperty(exports, "CustomCellStylePlugin", {
21
21
  return custom_cell_style_1.CustomCellStylePlugin;
22
22
  }
23
23
  });
24
- //# sourceMappingURL=index.js.map
24
+ //# sourceMappingURL=index.js.map
@@ -3,4 +3,4 @@
3
3
  Object.defineProperty(exports, "__esModule", {
4
4
  value: !0
5
5
  });
6
- //# sourceMappingURL=interface.js.map
6
+ //# sourceMappingURL=interface.js.map
@@ -20,4 +20,4 @@ function onBeforeAttributeUpdateForInvertHighlight(val, attribute) {
20
20
  }
21
21
 
22
22
  exports.onBeforeAttributeUpdateForInvertHighlight = onBeforeAttributeUpdateForInvertHighlight;
23
- //# sourceMappingURL=invert-highlight.js.map
23
+ //# sourceMappingURL=invert-highlight.js.map
@@ -177,4 +177,4 @@ const registerListTreeStickCellPlugin = () => {
177
177
  };
178
178
 
179
179
  exports.registerListTreeStickCellPlugin = registerListTreeStickCellPlugin;
180
- //# sourceMappingURL=list-tree-stick-cell.js.map
180
+ //# sourceMappingURL=list-tree-stick-cell.js.map
@@ -52,4 +52,4 @@ class PluginManager {
52
52
  }
53
53
 
54
54
  exports.PluginManager = PluginManager;
55
- //# sourceMappingURL=plugin-manager.js.map
55
+ //# sourceMappingURL=plugin-manager.js.map