@shival99/z-ui 1.7.8 → 1.7.9
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 +3 -1
- package/fesm2022/shival99-z-ui-components-z-autocomplete.mjs.map +1 -1
- package/fesm2022/shival99-z-ui-components-z-calendar.mjs +15 -5
- package/fesm2022/shival99-z-ui-components-z-calendar.mjs.map +1 -1
- package/fesm2022/shival99-z-ui-components-z-select.mjs +7 -1
- package/fesm2022/shival99-z-ui-components-z-select.mjs.map +1 -1
- package/fesm2022/shival99-z-ui-components-z-table.mjs +4 -0
- package/fesm2022/shival99-z-ui-components-z-table.mjs.map +1 -1
- package/package.json +1 -1
- package/types/shival99-z-ui-components-z-autocomplete.d.ts +1 -1
- package/types/shival99-z-ui-components-z-calendar.d.ts +5 -4
- package/types/shival99-z-ui-components-z-select.d.ts +2 -1
- package/types/shival99-z-ui-components-z-table.d.ts +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@shival99/z-ui",
|
|
3
|
-
"version": "1.7.
|
|
3
|
+
"version": "1.7.9",
|
|
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",
|
|
@@ -56,7 +56,7 @@ type ZAutocompleteOptionTemplate<T = unknown> = TemplateRef<{
|
|
|
56
56
|
|
|
57
57
|
declare const zAutocompleteInputVariants: (props?: ({
|
|
58
58
|
zSize?: "sm" | "default" | "lg" | null | undefined;
|
|
59
|
-
zStatus?: "default" | "
|
|
59
|
+
zStatus?: "default" | "disabled" | "readonly" | "open" | "error" | null | undefined;
|
|
60
60
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
61
61
|
type ZAutocompleteInputVariants = VariantProps<typeof zAutocompleteInputVariants>;
|
|
62
62
|
declare const zAutocompleteOptionVariants: (props?: ({
|
|
@@ -186,6 +186,7 @@ declare class ZCalendarComponent implements OnInit, ControlValueAccessor {
|
|
|
186
186
|
private _onChange;
|
|
187
187
|
private _onTouched;
|
|
188
188
|
private _ngControl;
|
|
189
|
+
private readonly _isNgModel;
|
|
189
190
|
protected readonly isOpen: _angular_core.Signal<boolean>;
|
|
190
191
|
protected readonly hoveredDate: _angular_core.WritableSignal<Date | null>;
|
|
191
192
|
protected readonly currentView: _angular_core.WritableSignal<ZCalendarView>;
|
|
@@ -396,16 +397,16 @@ declare class ZCalendarComponent implements OnInit, ControlValueAccessor {
|
|
|
396
397
|
|
|
397
398
|
declare const zCalendarVariants: (props?: ({
|
|
398
399
|
zSize?: "sm" | "default" | "lg" | null | undefined;
|
|
399
|
-
zStatus?: "default" | "disabled" | "
|
|
400
|
+
zStatus?: "default" | "disabled" | "readonly" | "open" | "error" | null | undefined;
|
|
400
401
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
401
402
|
declare const zCalendarDayVariants: (props?: ({
|
|
402
|
-
state?: "default" | "today" | "selected" | "inRange" | "rangeStart" | "rangeEnd" | "rangeSingle" | "
|
|
403
|
+
state?: "default" | "disabled" | "today" | "selected" | "inRange" | "rangeStart" | "rangeEnd" | "rangeSingle" | "otherMonth" | "hovered" | null | undefined;
|
|
403
404
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
404
405
|
declare const zCalendarMonthVariants: (props?: ({
|
|
405
|
-
state?: "default" | "
|
|
406
|
+
state?: "default" | "current" | "disabled" | "selected" | null | undefined;
|
|
406
407
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
407
408
|
declare const zCalendarYearVariants: (props?: ({
|
|
408
|
-
state?: "default" | "
|
|
409
|
+
state?: "default" | "current" | "disabled" | "selected" | null | undefined;
|
|
409
410
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
410
411
|
|
|
411
412
|
export { ZCalendarComponent, zCalendarDayVariants, zCalendarMonthVariants, zCalendarVariants, zCalendarYearVariants };
|
|
@@ -210,6 +210,7 @@ declare class ZSelectComponent<T = unknown> implements OnInit, ControlValueAcces
|
|
|
210
210
|
private _onChange;
|
|
211
211
|
private _onTouched;
|
|
212
212
|
private _ngControl;
|
|
213
|
+
private readonly _isNgModel;
|
|
213
214
|
constructor();
|
|
214
215
|
ngOnInit(): void;
|
|
215
216
|
writeValue(value: T | T[] | null): void;
|
|
@@ -272,7 +273,7 @@ declare class ZTagClassesPipe implements PipeTransform {
|
|
|
272
273
|
|
|
273
274
|
declare const zSelectVariants: (props?: ({
|
|
274
275
|
zSize?: "sm" | "default" | "lg" | null | undefined;
|
|
275
|
-
zStatus?: "default" | "
|
|
276
|
+
zStatus?: "default" | "disabled" | "readonly" | "open" | "error" | null | undefined;
|
|
276
277
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
277
278
|
declare const zSelectTagVariants: (props?: ({
|
|
278
279
|
zSize?: "sm" | "default" | "lg" | null | undefined;
|
|
@@ -653,7 +653,7 @@ declare class ZTableActionsComponent<T = unknown> {
|
|
|
653
653
|
readonly zConfig: _angular_core.InputSignal<ZTableActionColumnConfig<T>>;
|
|
654
654
|
readonly zRow: _angular_core.InputSignal<T>;
|
|
655
655
|
readonly zRowId: _angular_core.InputSignal<string>;
|
|
656
|
-
readonly zDropdownButtonSize: _angular_core.InputSignal<"
|
|
656
|
+
readonly zDropdownButtonSize: _angular_core.InputSignal<"sm" | "default" | "lg" | "xs" | "xl" | null | undefined>;
|
|
657
657
|
readonly zActionClick: _angular_core.OutputEmitterRef<ZTableActionClickEvent<T>>;
|
|
658
658
|
protected readonly allActions: _angular_core.Signal<ZTableActionItem<T>[]>;
|
|
659
659
|
protected readonly shouldShowAsButtons: _angular_core.Signal<boolean>;
|