@shival99/z-ui 1.5.0 → 1.5.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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@shival99/z-ui",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.1",
|
|
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",
|
|
@@ -6,6 +6,7 @@ import { ZInputSize, ZInputControl } from '@shival99/z-ui/components/z-input';
|
|
|
6
6
|
import * as _angular_core from '@angular/core';
|
|
7
7
|
import { TemplateRef, Type, AfterViewInit, ElementRef, OnDestroy, OnInit } from '@angular/core';
|
|
8
8
|
import { CdkDragDrop } from '@angular/cdk/drag-drop';
|
|
9
|
+
import { ClassValue } from 'clsx';
|
|
9
10
|
import { NgScrollbar } from 'ngx-scrollbar';
|
|
10
11
|
import { ZButtonVariants } from '@shival99/z-ui/components/z-button';
|
|
11
12
|
import { ZIcon, ZIconVariants } from '@shival99/z-ui/components/z-icon';
|
|
@@ -150,6 +151,7 @@ interface ZTableColumnConfig<T> {
|
|
|
150
151
|
size?: number;
|
|
151
152
|
minSize?: number;
|
|
152
153
|
maxSize?: number;
|
|
154
|
+
width?: string;
|
|
153
155
|
sort?: ZTableSortConfig<T> | boolean;
|
|
154
156
|
filter?: ZTableFilterConfig<T> | boolean;
|
|
155
157
|
enableResizing?: boolean;
|
|
@@ -396,6 +398,7 @@ declare module '@tanstack/angular-table' {
|
|
|
396
398
|
declare class ZTableComponent<T> implements AfterViewInit {
|
|
397
399
|
readonly zChange: _angular_core.OutputEmitterRef<ZTableChangeEvent<T>>;
|
|
398
400
|
readonly zControl: _angular_core.OutputEmitterRef<ZTableControl<T>>;
|
|
401
|
+
readonly class: _angular_core.InputSignal<ClassValue>;
|
|
399
402
|
readonly zConfig: _angular_core.InputSignal<ZTableConfig<T>>;
|
|
400
403
|
readonly zLoading: _angular_core.InputSignal<boolean>;
|
|
401
404
|
readonly zKey: _angular_core.InputSignal<string>;
|
|
@@ -556,7 +559,7 @@ declare class ZTableComponent<T> implements AfterViewInit {
|
|
|
556
559
|
private _filterServerModeSorting;
|
|
557
560
|
private _findColumnConfig;
|
|
558
561
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ZTableComponent<any>, never>;
|
|
559
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ZTableComponent<any>, "z-table", ["zTable"], { "zConfig": { "alias": "zConfig"; "required": false; "isSignal": true; }; "zLoading": { "alias": "zLoading"; "required": false; "isSignal": true; }; "zKey": { "alias": "zKey"; "required": false; "isSignal": true; }; }, { "zChange": "zChange"; "zControl": "zControl"; }, never, never, true, never>;
|
|
562
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ZTableComponent<any>, "z-table", ["zTable"], { "class": { "alias": "class"; "required": false; "isSignal": true; }; "zConfig": { "alias": "zConfig"; "required": false; "isSignal": true; }; "zLoading": { "alias": "zLoading"; "required": false; "isSignal": true; }; "zKey": { "alias": "zKey"; "required": false; "isSignal": true; }; }, { "zChange": "zChange"; "zControl": "zControl"; }, never, never, true, never>;
|
|
560
563
|
}
|
|
561
564
|
|
|
562
565
|
declare class ZTableFilterComponent<T> implements OnDestroy {
|