@sankhyalabs/ezui 5.17.1 → 5.18.0-dev.1

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 (36) hide show
  1. package/dist/cjs/ez-grid.cjs.entry.js +4 -1
  2. package/dist/cjs/ez-number-input.cjs.entry.js +0 -1
  3. package/dist/cjs/ez-split-item.cjs.entry.js +19 -0
  4. package/dist/cjs/ez-split-panel.cjs.entry.js +776 -0
  5. package/dist/cjs/ezui.cjs.js +1 -1
  6. package/dist/cjs/index-1064511f.js +8 -0
  7. package/dist/cjs/loader.cjs.js +1 -1
  8. package/dist/collection/collection-manifest.json +2 -0
  9. package/dist/collection/components/ez-grid/controller/ag-grid/DataSource.js +1 -1
  10. package/dist/collection/components/ez-grid/ez-grid.js +3 -0
  11. package/dist/collection/components/ez-number-input/ez-number-input.js +0 -1
  12. package/dist/collection/components/ez-split-panel/ez-split-panel.css +8 -0
  13. package/dist/collection/components/ez-split-panel/ez-split-panel.js +122 -0
  14. package/dist/collection/components/ez-split-panel/structure/item/ez-split-item.css +12 -0
  15. package/dist/collection/components/ez-split-panel/structure/item/ez-split-item.js +17 -0
  16. package/dist/custom-elements/index.d.ts +12 -0
  17. package/dist/custom-elements/index.js +795 -7
  18. package/dist/esm/ez-grid.entry.js +4 -1
  19. package/dist/esm/ez-number-input.entry.js +0 -1
  20. package/dist/esm/ez-split-item.entry.js +15 -0
  21. package/dist/esm/ez-split-panel.entry.js +772 -0
  22. package/dist/esm/ezui.js +1 -1
  23. package/dist/esm/index-296b8458.js +8 -0
  24. package/dist/esm/loader.js +1 -1
  25. package/dist/ezui/ezui.esm.js +1 -1
  26. package/dist/ezui/p-76d16a24.entry.js +1 -0
  27. package/dist/ezui/p-d20ed286.entry.js +1 -0
  28. package/dist/ezui/{p-5eff9536.entry.js → p-e2dfd935.entry.js} +1 -1
  29. package/dist/ezui/{p-8a7533c9.entry.js → p-e309ad64.entry.js} +1 -1
  30. package/dist/types/components/ez-grid/controller/EzGridController.d.ts +5 -1
  31. package/dist/types/components/ez-split-panel/structure/item/ez-split-item.d.ts +3 -0
  32. package/dist/types/components.d.ts +28 -0
  33. package/package.json +2 -1
  34. package/react/components.d.ts +2 -0
  35. package/react/components.js +2 -0
  36. package/react/components.js.map +1 -1
@@ -118866,7 +118866,7 @@ class DataSource {
118866
118866
  break;
118867
118867
  case core.Action.PAGINATION_UPDATED:
118868
118868
  if (this._options) {
118869
- this._options.onPaginationChange(this._dataUnit.getPaginationInfo());
118869
+ this._options.onPaginationUpdate(this._dataUnit.getPaginationInfo());
118870
118870
  }
118871
118871
  break;
118872
118872
  case core.Action.RECORDS_REMOVED:
@@ -120902,6 +120902,9 @@ const EzGrid = class {
120902
120902
  }
120903
120903
  this._paginationInfo = paginationInfo;
120904
120904
  },
120905
+ onPaginationUpdate: (paginationInfo) => {
120906
+ this._paginationInfo = paginationInfo;
120907
+ },
120905
120908
  onDoubleClick: (row) => {
120906
120909
  this.ezDoubleClick.emit(row);
120907
120910
  },
@@ -146,7 +146,6 @@ const EzNumberInput = class {
146
146
  this._focused = true;
147
147
  this._changePending = true;
148
148
  this.ezStartChange.emit({ waitmessage: "", blocking: false });
149
- this.changeValue(parsedNumber);
150
149
  }
151
150
  }
152
151
  getParsedNumber(value) {
@@ -0,0 +1,19 @@
1
+ 'use strict';
2
+
3
+ Object.defineProperty(exports, '__esModule', { value: true });
4
+
5
+ const index = require('./index-1064511f.js');
6
+
7
+ const ezSplitItemCss = ".box_split-item{background-color:var(--background--xlight);padding:var(--space--nano);width:100%;height:100%;border-radius:var(--border--radius-medium);box-shadow:var(--shadow)}";
8
+
9
+ const SplitItem = class {
10
+ constructor(hostRef) {
11
+ index.registerInstance(this, hostRef);
12
+ }
13
+ render() {
14
+ return (index.h(index.Host, { class: 'box_split-item' }));
15
+ }
16
+ };
17
+ SplitItem.style = ezSplitItemCss;
18
+
19
+ exports.ez_split_item = SplitItem;