@shival99/z-ui 1.2.22 → 1.2.24
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-table.mjs +316 -150
- package/fesm2022/shival99-z-ui-components-z-table.mjs.map +1 -1
- package/fesm2022/shival99-z-ui-services.mjs +3 -5
- package/fesm2022/shival99-z-ui-services.mjs.map +1 -1
- package/package.json +1 -1
- package/types/shival99-z-ui-components-z-calendar.d.ts +4 -4
- package/types/shival99-z-ui-components-z-popover.d.ts +1 -1
- package/types/shival99-z-ui-components-z-select.d.ts +1 -1
- package/types/shival99-z-ui-components-z-table.d.ts +11 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@shival99/z-ui",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.24",
|
|
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",
|
|
@@ -286,16 +286,16 @@ declare class ZCalendarComponent implements OnInit, ControlValueAccessor {
|
|
|
286
286
|
|
|
287
287
|
declare const zCalendarVariants: (props?: ({
|
|
288
288
|
zSize?: "sm" | "default" | "lg" | null | undefined;
|
|
289
|
-
zStatus?: "default" | "disabled" | "
|
|
289
|
+
zStatus?: "default" | "disabled" | "open" | "error" | "readonly" | null | undefined;
|
|
290
290
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
291
291
|
declare const zCalendarDayVariants: (props?: ({
|
|
292
|
-
state?: "default" | "
|
|
292
|
+
state?: "default" | "today" | "selected" | "inRange" | "rangeStart" | "rangeEnd" | "rangeSingle" | "disabled" | "otherMonth" | "hovered" | null | undefined;
|
|
293
293
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
294
294
|
declare const zCalendarMonthVariants: (props?: ({
|
|
295
|
-
state?: "default" | "
|
|
295
|
+
state?: "default" | "selected" | "disabled" | "current" | null | undefined;
|
|
296
296
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
297
297
|
declare const zCalendarYearVariants: (props?: ({
|
|
298
|
-
state?: "default" | "
|
|
298
|
+
state?: "default" | "selected" | "disabled" | "current" | null | undefined;
|
|
299
299
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
300
300
|
|
|
301
301
|
export { ZCalendarComponent, zCalendarDayVariants, zCalendarMonthVariants, zCalendarVariants, zCalendarYearVariants };
|
|
@@ -77,7 +77,7 @@ declare class ZPopoverDirective implements OnInit, OnDestroy {
|
|
|
77
77
|
readonly zHideDelay: _angular_core.InputSignal<number>;
|
|
78
78
|
readonly zDisabled: _angular_core.InputSignalWithTransform<boolean, string | boolean>;
|
|
79
79
|
readonly zOffset: _angular_core.InputSignal<number>;
|
|
80
|
-
readonly zPopoverWidth: _angular_core.InputSignal<number | "
|
|
80
|
+
readonly zPopoverWidth: _angular_core.InputSignal<number | "trigger" | "auto">;
|
|
81
81
|
readonly zManualClose: _angular_core.InputSignalWithTransform<boolean, string | boolean>;
|
|
82
82
|
readonly zScrollClose: _angular_core.InputSignalWithTransform<boolean, string | boolean>;
|
|
83
83
|
readonly zShowArrow: _angular_core.InputSignalWithTransform<boolean, string | boolean>;
|
|
@@ -258,7 +258,7 @@ declare class ZTagClassesPipe implements PipeTransform {
|
|
|
258
258
|
|
|
259
259
|
declare const zSelectVariants: (props?: ({
|
|
260
260
|
zSize?: "sm" | "default" | "lg" | null | undefined;
|
|
261
|
-
zStatus?: "default" | "
|
|
261
|
+
zStatus?: "default" | "open" | "error" | "disabled" | "readonly" | null | undefined;
|
|
262
262
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
263
263
|
declare const zSelectTagVariants: (props?: ({
|
|
264
264
|
zSize?: "sm" | "default" | "lg" | null | undefined;
|
|
@@ -390,7 +390,11 @@ declare class ZTableComponent<T> implements AfterViewInit {
|
|
|
390
390
|
} | null>;
|
|
391
391
|
protected readonly hasActionColumn: _angular_core.Signal<boolean>;
|
|
392
392
|
protected readonly hasFiltering: _angular_core.Signal<boolean>;
|
|
393
|
+
protected readonly hasLocalFiltering: _angular_core.Signal<boolean>;
|
|
393
394
|
protected readonly hasSorting: _angular_core.Signal<boolean>;
|
|
395
|
+
protected readonly hasLocalSorting: _angular_core.Signal<boolean>;
|
|
396
|
+
protected readonly hasServerFiltering: _angular_core.Signal<boolean>;
|
|
397
|
+
protected readonly hasServerSorting: _angular_core.Signal<boolean>;
|
|
394
398
|
protected readonly searchConfig: _angular_core.Signal<{
|
|
395
399
|
enabled: boolean;
|
|
396
400
|
placeholder: string;
|
|
@@ -475,6 +479,12 @@ declare class ZTableComponent<T> implements AfterViewInit {
|
|
|
475
479
|
private _collectColumnInfo;
|
|
476
480
|
private _loadConfig;
|
|
477
481
|
private _isColumnConfigValid;
|
|
482
|
+
private _getChangedFilterColumnIds;
|
|
483
|
+
private _getChangedSortColumnIds;
|
|
484
|
+
private _isColumnFilterModeLocal;
|
|
485
|
+
private _isColumnSortModeLocal;
|
|
486
|
+
private _filterServerModeColumnFilters;
|
|
487
|
+
private _filterServerModeSorting;
|
|
478
488
|
private _findColumnConfig;
|
|
479
489
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ZTableComponent<any>, never>;
|
|
480
490
|
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>;
|
|
@@ -529,7 +539,7 @@ declare class ZTableActionsComponent<T = unknown> {
|
|
|
529
539
|
readonly zConfig: _angular_core.InputSignal<ZTableActionColumnConfig<T>>;
|
|
530
540
|
readonly zRow: _angular_core.InputSignal<T>;
|
|
531
541
|
readonly zRowId: _angular_core.InputSignal<string>;
|
|
532
|
-
readonly zDropdownButtonSize: _angular_core.InputSignal<"default" | "
|
|
542
|
+
readonly zDropdownButtonSize: _angular_core.InputSignal<"default" | "sm" | "lg" | "xs" | "xl" | null | undefined>;
|
|
533
543
|
readonly zActionClick: _angular_core.OutputEmitterRef<ZTableActionClickEvent<T>>;
|
|
534
544
|
protected readonly allActions: _angular_core.Signal<ZTableActionItem<T>[]>;
|
|
535
545
|
protected readonly shouldShowAsButtons: _angular_core.Signal<boolean>;
|