@kris701/ez-ui 1.1.4 → 1.1.6
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,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kris701/ez-ui",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.6",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/common": "^22.0.0",
|
|
6
6
|
"@angular/core": "^22.0.0"
|
|
@@ -11,11 +11,11 @@
|
|
|
11
11
|
"url": "git://github.com/kris701/EzUI.git"
|
|
12
12
|
},
|
|
13
13
|
"dependencies": {
|
|
14
|
-
"@taiga-ui/addon-mobile": "^5.
|
|
15
|
-
"@taiga-ui/core": "^5.
|
|
16
|
-
"@taiga-ui/kit": "^5.
|
|
17
|
-
"@taiga-ui/icons": "^5.
|
|
18
|
-
"@taiga-ui/addon-table": "^5.
|
|
14
|
+
"@taiga-ui/addon-mobile": "^5.18.0",
|
|
15
|
+
"@taiga-ui/core": "^5.18.0",
|
|
16
|
+
"@taiga-ui/kit": "^5.18.0",
|
|
17
|
+
"@taiga-ui/icons": "^5.18.0",
|
|
18
|
+
"@taiga-ui/addon-table": "^5.18.0",
|
|
19
19
|
"compressorjs": "^1.3.0",
|
|
20
20
|
"marked": "^18.0.6",
|
|
21
21
|
"tslib": "^2.3.0",
|
package/types/kris701-ez-ui.d.ts
CHANGED
|
@@ -230,6 +230,7 @@ declare class EzUITable implements OnChanges {
|
|
|
230
230
|
showRefresh: boolean;
|
|
231
231
|
showClearFilters: boolean;
|
|
232
232
|
expandable: boolean;
|
|
233
|
+
clickable: boolean;
|
|
233
234
|
values: any[];
|
|
234
235
|
internalValues: any[];
|
|
235
236
|
displayValues: i0.WritableSignal<any[]>;
|
|
@@ -242,6 +243,7 @@ declare class EzUITable implements OnChanges {
|
|
|
242
243
|
onAddItem: EventEmitter<any>;
|
|
243
244
|
onLoadItems: EventEmitter<any>;
|
|
244
245
|
onRowExpanded: EventEmitter<any>;
|
|
246
|
+
onRowClick: EventEmitter<any>;
|
|
245
247
|
onPresetChange: EventEmitter<EzUITableSortFilterPreset | null>;
|
|
246
248
|
pageSize: i0.WritableSignal<number>;
|
|
247
249
|
page: i0.WritableSignal<number>;
|
|
@@ -257,7 +259,7 @@ declare class EzUITable implements OnChanges {
|
|
|
257
259
|
clearFilter(column: string): void;
|
|
258
260
|
clearFilters(): void;
|
|
259
261
|
static ɵfac: i0.ɵɵFactoryDeclaration<EzUITable, never>;
|
|
260
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<EzUITable, "ezui-table", never, { "disabled": { "alias": "disabled"; "required": false; }; "isLoading": { "alias": "isLoading"; "required": false; }; "showAdd": { "alias": "showAdd"; "required": false; }; "showRefresh": { "alias": "showRefresh"; "required": false; }; "showClearFilters": { "alias": "showClearFilters"; "required": false; }; "expandable": { "alias": "expandable"; "required": false; }; "values": { "alias": "values"; "required": false; }; "storageKey": { "alias": "storageKey"; "required": false; }; "allowPresets": { "alias": "allowPresets"; "required": false; }; "pageSize": { "alias": "pageSize"; "required": false; }; }, { "onAddItem": "onAddItem"; "onLoadItems": "onLoadItems"; "onRowExpanded": "onRowExpanded"; "onPresetChange": "onPresetChange"; }, ["tableHeader", "tableRows", "tableExpandedrow"], never, true, never>;
|
|
262
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<EzUITable, "ezui-table", never, { "disabled": { "alias": "disabled"; "required": false; }; "isLoading": { "alias": "isLoading"; "required": false; }; "showAdd": { "alias": "showAdd"; "required": false; }; "showRefresh": { "alias": "showRefresh"; "required": false; }; "showClearFilters": { "alias": "showClearFilters"; "required": false; }; "expandable": { "alias": "expandable"; "required": false; }; "clickable": { "alias": "clickable"; "required": false; }; "values": { "alias": "values"; "required": false; }; "storageKey": { "alias": "storageKey"; "required": false; }; "allowPresets": { "alias": "allowPresets"; "required": false; }; "pageSize": { "alias": "pageSize"; "required": false; }; }, { "onAddItem": "onAddItem"; "onLoadItems": "onLoadItems"; "onRowExpanded": "onRowExpanded"; "onRowClick": "onRowClick"; "onPresetChange": "onPresetChange"; }, ["tableHeader", "tableRows", "tableExpandedrow"], never, true, never>;
|
|
261
263
|
}
|
|
262
264
|
|
|
263
265
|
declare class EzUITableDateFilter {
|