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
@@ -171,4 +171,4 @@ function indexFirst(arr, elm) {
171
171
  const tempI = high < 0 ? 0 : high;
172
172
  return arr[tempI] === elm ? tempI : -1;
173
173
  }
174
- //# sourceMappingURL=row-height-map.js.map
174
+ //# sourceMappingURL=row-height-map.js.map
@@ -812,4 +812,4 @@ export class SimpleHeaderLayoutMap {
812
812
  if (col >= 0) return col < this.leftRowSeriesNumberColumnCount ? this.leftRowSeriesNumberColumn[col].define : this.transpose ? this._columns[row].define : this._columns[col - this.leftRowSeriesNumberColumnCount].define;
813
813
  }
814
814
  }
815
- //# sourceMappingURL=simple-header-layout.js.map
815
+ //# sourceMappingURL=simple-header-layout.js.map
@@ -407,4 +407,4 @@ export function deleteTreeHideNode(tree_children, dimensionPath, indicators, has
407
407
  dimensionPath.pop();
408
408
  }
409
409
  }
410
- //# sourceMappingURL=tree-helper.js.map
410
+ //# sourceMappingURL=tree-helper.js.map
@@ -103,4 +103,5 @@ export function mergeStyle(cacheStyle, customCellStyle) {
103
103
 
104
104
  export const registerCustomCellStylePlugin = () => {
105
105
  Factory.registerComponent("customCellStylePlugin", CustomCellStylePlugin);
106
- };
106
+ };
107
+ //# sourceMappingURL=custom-cell-style.js.map
@@ -1,4 +1,4 @@
1
1
  export { PluginManager } from "./plugin-manager";
2
2
 
3
3
  export { CustomCellStylePlugin } from "./custom-cell-style";
4
- //# sourceMappingURL=index.js.map
4
+ //# sourceMappingURL=index.js.map
@@ -1,2 +1,2 @@
1
1
  export { };
2
- //# sourceMappingURL=interface.js.map
2
+ //# sourceMappingURL=interface.js.map
@@ -11,4 +11,4 @@ export function onBeforeAttributeUpdateForInvertHighlight(val, attribute) {
11
11
  });
12
12
  }
13
13
  }
14
- //# sourceMappingURL=invert-highlight.js.map
14
+ //# sourceMappingURL=invert-highlight.js.map
@@ -175,4 +175,4 @@ function scrollToRow(row, table) {
175
175
  export const registerListTreeStickCellPlugin = () => {
176
176
  Factory.registerComponent("listTreeStickCellPlugin", ListTreeStickCellPlugin);
177
177
  };
178
- //# sourceMappingURL=list-tree-stick-cell.js.map
178
+ //# sourceMappingURL=list-tree-stick-cell.js.map
@@ -44,4 +44,4 @@ export class PluginManager {
44
44
  }));
45
45
  }
46
46
  }
47
- //# sourceMappingURL=plugin-manager.js.map
47
+ //# sourceMappingURL=plugin-manager.js.map