@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.
- package/dist/cjs/ez-grid.cjs.entry.js +4 -1
- package/dist/cjs/ez-number-input.cjs.entry.js +0 -1
- package/dist/cjs/ez-split-item.cjs.entry.js +19 -0
- package/dist/cjs/ez-split-panel.cjs.entry.js +776 -0
- package/dist/cjs/ezui.cjs.js +1 -1
- package/dist/cjs/index-1064511f.js +8 -0
- package/dist/cjs/loader.cjs.js +1 -1
- package/dist/collection/collection-manifest.json +2 -0
- package/dist/collection/components/ez-grid/controller/ag-grid/DataSource.js +1 -1
- package/dist/collection/components/ez-grid/ez-grid.js +3 -0
- package/dist/collection/components/ez-number-input/ez-number-input.js +0 -1
- package/dist/collection/components/ez-split-panel/ez-split-panel.css +8 -0
- package/dist/collection/components/ez-split-panel/ez-split-panel.js +122 -0
- package/dist/collection/components/ez-split-panel/structure/item/ez-split-item.css +12 -0
- package/dist/collection/components/ez-split-panel/structure/item/ez-split-item.js +17 -0
- package/dist/custom-elements/index.d.ts +12 -0
- package/dist/custom-elements/index.js +795 -7
- package/dist/esm/ez-grid.entry.js +4 -1
- package/dist/esm/ez-number-input.entry.js +0 -1
- package/dist/esm/ez-split-item.entry.js +15 -0
- package/dist/esm/ez-split-panel.entry.js +772 -0
- package/dist/esm/ezui.js +1 -1
- package/dist/esm/index-296b8458.js +8 -0
- package/dist/esm/loader.js +1 -1
- package/dist/ezui/ezui.esm.js +1 -1
- package/dist/ezui/p-76d16a24.entry.js +1 -0
- package/dist/ezui/p-d20ed286.entry.js +1 -0
- package/dist/ezui/{p-5eff9536.entry.js → p-e2dfd935.entry.js} +1 -1
- package/dist/ezui/{p-8a7533c9.entry.js → p-e309ad64.entry.js} +1 -1
- package/dist/types/components/ez-grid/controller/EzGridController.d.ts +5 -1
- package/dist/types/components/ez-split-panel/structure/item/ez-split-item.d.ts +3 -0
- package/dist/types/components.d.ts +28 -0
- package/package.json +2 -1
- package/react/components.d.ts +2 -0
- package/react/components.js +2 -0
- 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.
|
|
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
|
},
|
|
@@ -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;
|