@shival99/z-ui 1.6.6 → 1.6.7
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/fesm2022/shival99-z-ui-components-z-autocomplete.mjs +5 -0
- package/fesm2022/shival99-z-ui-components-z-autocomplete.mjs.map +1 -1
- package/fesm2022/shival99-z-ui-components-z-table.mjs +23 -4
- package/fesm2022/shival99-z-ui-components-z-table.mjs.map +1 -1
- package/package.json +1 -1
- package/types/shival99-z-ui-components-z-table.d.ts +9 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@shival99/z-ui",
|
|
3
|
-
"version": "1.6.
|
|
3
|
+
"version": "1.6.7",
|
|
4
4
|
"description": "Z-UI: Modern Angular UI Component Library - A comprehensive, high-performance design system built with Angular 20+, featuring 40+ customizable components with dark mode, accessibility, and enterprise-ready features.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"angular",
|
|
@@ -459,6 +459,10 @@ declare class ZTableComponent<T> implements AfterViewInit {
|
|
|
459
459
|
protected readonly hasScrollRight: _angular_core.WritableSignal<boolean>;
|
|
460
460
|
private readonly _columnPinVersion;
|
|
461
461
|
private readonly _dataForceUpdate;
|
|
462
|
+
protected readonly _rowUpdate: _angular_core.WritableSignal<{
|
|
463
|
+
rowId: string;
|
|
464
|
+
updates: Record<string, unknown>;
|
|
465
|
+
} | null>;
|
|
462
466
|
private _columnConfigCache;
|
|
463
467
|
private _lastColumnsRef;
|
|
464
468
|
protected readonly pinnedColumnIds: _angular_core.Signal<string[]>;
|
|
@@ -657,6 +661,10 @@ declare class ZTableEditCellComponent<T = unknown> implements OnInit {
|
|
|
657
661
|
readonly zColumnId: _angular_core.InputSignal<string>;
|
|
658
662
|
readonly zValue: _angular_core.InputSignal<unknown>;
|
|
659
663
|
readonly zEditConfig: _angular_core.InputSignal<ZTableEditConfig<T> | undefined>;
|
|
664
|
+
readonly zRowUpdate: _angular_core.InputSignal<{
|
|
665
|
+
rowId: string;
|
|
666
|
+
updates: Record<string, unknown>;
|
|
667
|
+
} | null>;
|
|
660
668
|
readonly zChange: _angular_core.OutputEmitterRef<ZTableEditCellChangeEvent<T>>;
|
|
661
669
|
private readonly _currentValue;
|
|
662
670
|
private readonly _valueChange$;
|
|
@@ -693,7 +701,7 @@ declare class ZTableEditCellComponent<T = unknown> implements OnInit {
|
|
|
693
701
|
ngOnInit(): void;
|
|
694
702
|
private _setupBlurWatcher;
|
|
695
703
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ZTableEditCellComponent<any>, never>;
|
|
696
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ZTableEditCellComponent<any>, "z-table-edit-cell", never, { "zRow": { "alias": "zRow"; "required": true; "isSignal": true; }; "zRowId": { "alias": "zRowId"; "required": true; "isSignal": true; }; "zRowIndex": { "alias": "zRowIndex"; "required": true; "isSignal": true; }; "zColumnId": { "alias": "zColumnId"; "required": true; "isSignal": true; }; "zValue": { "alias": "zValue"; "required": false; "isSignal": true; }; "zEditConfig": { "alias": "zEditConfig"; "required": false; "isSignal": true; }; }, { "zChange": "zChange"; }, never, never, true, never>;
|
|
704
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ZTableEditCellComponent<any>, "z-table-edit-cell", never, { "zRow": { "alias": "zRow"; "required": true; "isSignal": true; }; "zRowId": { "alias": "zRowId"; "required": true; "isSignal": true; }; "zRowIndex": { "alias": "zRowIndex"; "required": true; "isSignal": true; }; "zColumnId": { "alias": "zColumnId"; "required": true; "isSignal": true; }; "zValue": { "alias": "zValue"; "required": false; "isSignal": true; }; "zEditConfig": { "alias": "zEditConfig"; "required": false; "isSignal": true; }; "zRowUpdate": { "alias": "zRowUpdate"; "required": false; "isSignal": true; }; }, { "zChange": "zChange"; }, never, never, true, never>;
|
|
697
705
|
}
|
|
698
706
|
|
|
699
707
|
declare const isHeaderConfig: <T>(config: ZTableHeaderColumnConfig<T> | ZTableHeaderContent<T> | undefined) => config is ZTableHeaderColumnConfig<T>;
|