@shival99/z-ui 2.0.15 → 2.0.17
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 +5 -1
- package/fesm2022/shival99-z-ui-components-z-table.mjs.map +1 -1
- package/package.json +5 -3
- package/types/shival99-z-ui-components-z-autocomplete.d.ts +1 -1
- package/types/shival99-z-ui-components-z-calendar.d.ts +4 -4
- package/types/shival99-z-ui-components-z-editor.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 +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@shival99/z-ui",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.17",
|
|
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",
|
|
@@ -36,18 +36,20 @@
|
|
|
36
36
|
"url": "https://github.com/vuboi/z-ui/issues"
|
|
37
37
|
},
|
|
38
38
|
"peerDependencies": {
|
|
39
|
+
"@angular/cdk": ">=20.0.0",
|
|
39
40
|
"@angular/common": ">=20.0.0",
|
|
40
41
|
"@angular/core": ">=20.0.0",
|
|
41
42
|
"@angular/forms": ">=20.0.0",
|
|
43
|
+
"@angular/platform-browser": "~21.0.6",
|
|
42
44
|
"@angular/router": ">=20.0.0",
|
|
43
|
-
"@angular/cdk": ">=20.0.0",
|
|
44
45
|
"@dayflow/blossom-color-picker-angular": ">=1.0.0",
|
|
45
46
|
"@ng-icons/core": ">=33.0.0",
|
|
46
47
|
"@ng-icons/iconsax": ">=33.0.0",
|
|
47
48
|
"@ng-icons/lucide": ">=33.0.0",
|
|
48
49
|
"@ngx-translate/core": ">=17.0.0",
|
|
50
|
+
"@shival99/angular-virtual": ">=4.0.10",
|
|
51
|
+
"@shival99/ngx-sonner": ">=3.0.0",
|
|
49
52
|
"@tanstack/angular-table": ">=8.20.0",
|
|
50
|
-
"@shival99/angular-virtual": ">=4.0.0",
|
|
51
53
|
"@tiptap/core": ">=3.0.0",
|
|
52
54
|
"@tiptap/extension-code": ">=3.0.0",
|
|
53
55
|
"@tiptap/extension-horizontal-rule": ">=3.0.0",
|
|
@@ -270,7 +270,7 @@ declare class ZAutocompleteComponent<T = unknown> implements OnInit, ControlValu
|
|
|
270
270
|
|
|
271
271
|
declare const zAutocompleteInputVariants: (props?: ({
|
|
272
272
|
zSize?: "sm" | "default" | "lg" | null | undefined;
|
|
273
|
-
zStatus?: "default" | "
|
|
273
|
+
zStatus?: "default" | "disabled" | "readonly" | "open" | "error" | null | undefined;
|
|
274
274
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
275
275
|
type ZAutocompleteInputVariants = VariantProps<typeof zAutocompleteInputVariants>;
|
|
276
276
|
declare const zAutocompleteOptionVariants: (props?: ({
|
|
@@ -418,16 +418,16 @@ declare class ZCalendarComponent implements OnInit, ControlValueAccessor {
|
|
|
418
418
|
|
|
419
419
|
declare const zCalendarVariants: (props?: ({
|
|
420
420
|
zSize?: "sm" | "default" | "lg" | null | undefined;
|
|
421
|
-
zStatus?: "default" | "disabled" | "
|
|
421
|
+
zStatus?: "default" | "disabled" | "readonly" | "open" | "error" | null | undefined;
|
|
422
422
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
423
423
|
declare const zCalendarDayVariants: (props?: ({
|
|
424
|
-
state?: "default" | "today" | "selected" | "inRange" | "rangeStart" | "rangeEnd" | "rangeSingle" | "
|
|
424
|
+
state?: "default" | "disabled" | "today" | "selected" | "inRange" | "rangeStart" | "rangeEnd" | "rangeSingle" | "otherMonth" | "hovered" | null | undefined;
|
|
425
425
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
426
426
|
declare const zCalendarMonthVariants: (props?: ({
|
|
427
|
-
state?: "default" | "
|
|
427
|
+
state?: "default" | "current" | "disabled" | "selected" | null | undefined;
|
|
428
428
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
429
429
|
declare const zCalendarYearVariants: (props?: ({
|
|
430
|
-
state?: "default" | "
|
|
430
|
+
state?: "default" | "current" | "disabled" | "selected" | null | undefined;
|
|
431
431
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
432
432
|
|
|
433
433
|
export { ZCalendarComponent, zCalendarDayVariants, zCalendarMonthVariants, zCalendarVariants, zCalendarYearVariants };
|
|
@@ -320,7 +320,7 @@ declare const Z_EDITOR_DEFAULT_TOOLBAR: readonly ZEditorToolbarItem[];
|
|
|
320
320
|
|
|
321
321
|
declare const zEditorVariants: (props?: ({
|
|
322
322
|
zSize?: "sm" | "default" | "lg" | null | undefined;
|
|
323
|
-
zStatus?: "default" | "
|
|
323
|
+
zStatus?: "default" | "disabled" | "readonly" | "error" | null | undefined;
|
|
324
324
|
zPlaceholderMode?: "firstLine" | "everyLine" | null | undefined;
|
|
325
325
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
326
326
|
type ZEditorVariants = VariantProps<typeof zEditorVariants>;
|
|
@@ -315,7 +315,7 @@ declare class ZTagClassesPipe implements PipeTransform {
|
|
|
315
315
|
|
|
316
316
|
declare const zSelectVariants: (props?: ({
|
|
317
317
|
zSize?: "sm" | "default" | "lg" | null | undefined;
|
|
318
|
-
zStatus?: "default" | "
|
|
318
|
+
zStatus?: "default" | "disabled" | "readonly" | "open" | "error" | null | undefined;
|
|
319
319
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
320
320
|
declare const zSelectTagVariants: (props?: ({
|
|
321
321
|
zSize?: "sm" | "default" | "lg" | null | undefined;
|
|
@@ -1080,7 +1080,7 @@ declare class ZTableFilterComponent<T> {
|
|
|
1080
1080
|
protected readonly filterBadgeCount: _angular_core.Signal<number>;
|
|
1081
1081
|
protected readonly hasFilterValue: _angular_core.Signal<boolean>;
|
|
1082
1082
|
protected readonly isActive: _angular_core.Signal<boolean>;
|
|
1083
|
-
protected readonly draftSortValue: _angular_core.Signal<"
|
|
1083
|
+
protected readonly draftSortValue: _angular_core.Signal<"asc" | "desc" | "none">;
|
|
1084
1084
|
protected readonly rangeMinValue: _angular_core.Signal<any>;
|
|
1085
1085
|
protected readonly rangeMaxValue: _angular_core.Signal<any>;
|
|
1086
1086
|
protected readonly dateValue: _angular_core.Signal<Date | null>;
|
|
@@ -1148,7 +1148,7 @@ declare class ZTableActionsComponent<T = unknown> {
|
|
|
1148
1148
|
readonly zConfig: _angular_core.InputSignal<ZTableActionColumnConfig<T>>;
|
|
1149
1149
|
readonly zRow: _angular_core.InputSignal<T>;
|
|
1150
1150
|
readonly zRowId: _angular_core.InputSignal<string>;
|
|
1151
|
-
readonly zDropdownButtonSize: _angular_core.InputSignal<"
|
|
1151
|
+
readonly zDropdownButtonSize: _angular_core.InputSignal<"default" | "sm" | "lg" | "xs" | "xl" | null | undefined>;
|
|
1152
1152
|
readonly zActionClick: _angular_core.OutputEmitterRef<ZTableActionClickEvent<T>>;
|
|
1153
1153
|
protected readonly allActions: _angular_core.Signal<ZTableActionItem<T>[]>;
|
|
1154
1154
|
protected readonly shouldShowAsButtons: _angular_core.Signal<boolean>;
|