@shival99/z-ui 1.9.9 → 1.9.11
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 +79 -3
- package/fesm2022/shival99-z-ui-components-z-table.mjs.map +1 -1
- package/fesm2022/shival99-z-ui-components-z-tabs.mjs +11 -4
- package/fesm2022/shival99-z-ui-components-z-tabs.mjs.map +1 -1
- package/fesm2022/shival99-z-ui-services.mjs +9 -2
- 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-select.d.ts +1 -1
- package/types/shival99-z-ui-components-z-table.d.ts +1 -1
- package/types/shival99-z-ui-components-z-tabs.d.ts +3 -3
- package/types/shival99-z-ui-services.d.ts +2 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@shival99/z-ui",
|
|
3
|
-
"version": "1.9.
|
|
3
|
+
"version": "1.9.11",
|
|
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",
|
|
@@ -396,16 +396,16 @@ declare class ZCalendarComponent implements OnInit, ControlValueAccessor {
|
|
|
396
396
|
|
|
397
397
|
declare const zCalendarVariants: (props?: ({
|
|
398
398
|
zSize?: "sm" | "default" | "lg" | null | undefined;
|
|
399
|
-
zStatus?: "default" | "disabled" | "
|
|
399
|
+
zStatus?: "default" | "disabled" | "open" | "error" | "readonly" | null | undefined;
|
|
400
400
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
401
401
|
declare const zCalendarDayVariants: (props?: ({
|
|
402
|
-
state?: "default" | "
|
|
402
|
+
state?: "default" | "today" | "selected" | "inRange" | "rangeStart" | "rangeEnd" | "rangeSingle" | "disabled" | "otherMonth" | "hovered" | null | undefined;
|
|
403
403
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
404
404
|
declare const zCalendarMonthVariants: (props?: ({
|
|
405
|
-
state?: "default" | "
|
|
405
|
+
state?: "default" | "selected" | "disabled" | "current" | null | undefined;
|
|
406
406
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
407
407
|
declare const zCalendarYearVariants: (props?: ({
|
|
408
|
-
state?: "default" | "
|
|
408
|
+
state?: "default" | "selected" | "disabled" | "current" | null | undefined;
|
|
409
409
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
410
410
|
|
|
411
411
|
export { ZCalendarComponent, zCalendarDayVariants, zCalendarMonthVariants, zCalendarVariants, zCalendarYearVariants };
|
|
@@ -275,7 +275,7 @@ declare class ZTagClassesPipe implements PipeTransform {
|
|
|
275
275
|
|
|
276
276
|
declare const zSelectVariants: (props?: ({
|
|
277
277
|
zSize?: "sm" | "default" | "lg" | null | undefined;
|
|
278
|
-
zStatus?: "default" | "
|
|
278
|
+
zStatus?: "default" | "open" | "error" | "disabled" | "readonly" | null | undefined;
|
|
279
279
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
280
280
|
declare const zSelectTagVariants: (props?: ({
|
|
281
281
|
zSize?: "sm" | "default" | "lg" | null | undefined;
|
|
@@ -711,7 +711,7 @@ declare class ZTableActionsComponent<T = unknown> {
|
|
|
711
711
|
readonly zConfig: _angular_core.InputSignal<ZTableActionColumnConfig<T>>;
|
|
712
712
|
readonly zRow: _angular_core.InputSignal<T>;
|
|
713
713
|
readonly zRowId: _angular_core.InputSignal<string>;
|
|
714
|
-
readonly zDropdownButtonSize: _angular_core.InputSignal<"
|
|
714
|
+
readonly zDropdownButtonSize: _angular_core.InputSignal<"sm" | "default" | "lg" | "xs" | "xl" | null | undefined>;
|
|
715
715
|
readonly zActionClick: _angular_core.OutputEmitterRef<ZTableActionClickEvent<T>>;
|
|
716
716
|
protected readonly allActions: _angular_core.Signal<ZTableActionItem<T>[]>;
|
|
717
717
|
protected readonly shouldShowAsButtons: _angular_core.Signal<boolean>;
|
|
@@ -20,7 +20,7 @@ interface ZTab {
|
|
|
20
20
|
badge?: string | number;
|
|
21
21
|
template?: TemplateRef<unknown>;
|
|
22
22
|
}
|
|
23
|
-
type ZTabsType = 'line' | 'enclosed' | 'soft' | 'pill' | 'solid' | 'underline';
|
|
23
|
+
type ZTabsType = 'line' | 'enclosed' | 'enclosed-solid' | 'soft' | 'pill' | 'solid' | 'underline';
|
|
24
24
|
type ZTabsSize = 'sm' | 'default' | 'lg';
|
|
25
25
|
type ZTabsOrientation = 'horizontal' | 'vertical';
|
|
26
26
|
|
|
@@ -62,11 +62,11 @@ declare class ZTabsComponent implements AfterViewInit, OnDestroy {
|
|
|
62
62
|
}
|
|
63
63
|
|
|
64
64
|
declare const zTabsVariants: (props?: ({
|
|
65
|
-
zType?: "line" | "enclosed" | "soft" | "pill" | "solid" | "underline" | null | undefined;
|
|
65
|
+
zType?: "line" | "enclosed" | "enclosed-solid" | "soft" | "pill" | "solid" | "underline" | null | undefined;
|
|
66
66
|
zOrientation?: "horizontal" | "vertical" | null | undefined;
|
|
67
67
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
68
68
|
declare const zTabItemVariants: (props?: ({
|
|
69
|
-
zType?: "line" | "enclosed" | "soft" | "pill" | "solid" | "underline" | null | undefined;
|
|
69
|
+
zType?: "line" | "enclosed" | "enclosed-solid" | "soft" | "pill" | "solid" | "underline" | null | undefined;
|
|
70
70
|
zSize?: "sm" | "default" | "lg" | null | undefined;
|
|
71
71
|
zOrientation?: "horizontal" | "vertical" | null | undefined;
|
|
72
72
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
@@ -244,6 +244,7 @@ interface ZHttpOptions<TParams extends object = object, TApiType extends string
|
|
|
244
244
|
skipToken?: boolean;
|
|
245
245
|
params?: HttpParams | ZHttpParamsType<TParams>;
|
|
246
246
|
enableCache?: boolean;
|
|
247
|
+
keyCache?: string;
|
|
247
248
|
timeCache?: number;
|
|
248
249
|
skipErrorToast?: boolean;
|
|
249
250
|
}
|
|
@@ -423,6 +424,7 @@ declare abstract class ZHttpAbstractService<TApiType extends string = string> {
|
|
|
423
424
|
private _handleCacheAndRequest;
|
|
424
425
|
private _executeHttpCall;
|
|
425
426
|
private _generateCacheKey;
|
|
427
|
+
private _resolveCacheKey;
|
|
426
428
|
private _cacheData;
|
|
427
429
|
private _getCachedData;
|
|
428
430
|
private _detectNetworkStatus;
|