@shival99/z-ui 1.3.31 → 1.3.34
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-calendar.mjs +70 -13
- package/fesm2022/shival99-z-ui-components-z-calendar.mjs.map +1 -1
- package/fesm2022/shival99-z-ui-components-z-menu.mjs +2 -2
- package/fesm2022/shival99-z-ui-components-z-menu.mjs.map +1 -1
- package/fesm2022/shival99-z-ui-components-z-tabs.mjs +9 -9
- package/fesm2022/shival99-z-ui-components-z-tabs.mjs.map +1 -1
- package/package.json +1 -1
- package/types/shival99-z-ui-components-z-calendar.d.ts +1 -0
- package/types/shival99-z-ui-components-z-tabs.d.ts +6 -6
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@shival99/z-ui",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.34",
|
|
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",
|
|
@@ -234,6 +234,7 @@ declare class ZCalendarComponent implements OnInit, ControlValueAccessor {
|
|
|
234
234
|
protected readonly canNavigateStartNext: _angular_core.Signal<boolean>;
|
|
235
235
|
protected readonly canNavigateEndPrev: _angular_core.Signal<boolean>;
|
|
236
236
|
protected readonly displayValue: _angular_core.Signal<string>;
|
|
237
|
+
private _formatDisplayValue;
|
|
237
238
|
private readonly _inputDisplayStart;
|
|
238
239
|
private readonly _inputDisplayEnd;
|
|
239
240
|
protected readonly inputDisplayStart: _angular_core.Signal<string>;
|
|
@@ -20,7 +20,7 @@ interface ZTab {
|
|
|
20
20
|
badge?: string | number;
|
|
21
21
|
template?: TemplateRef<unknown>;
|
|
22
22
|
}
|
|
23
|
-
type
|
|
23
|
+
type ZTabsType = 'line' | 'enclosed' | 'soft' | 'pill' | 'solid' | 'underline';
|
|
24
24
|
type ZTabsSize = 'sm' | 'default' | 'lg';
|
|
25
25
|
type ZTabsOrientation = 'horizontal' | 'vertical';
|
|
26
26
|
|
|
@@ -30,7 +30,7 @@ declare class ZTabsComponent implements AfterViewInit, OnDestroy {
|
|
|
30
30
|
readonly tabButtons: _angular_core.Signal<readonly ElementRef<HTMLButtonElement>[]>;
|
|
31
31
|
readonly class: _angular_core.InputSignal<ClassValue>;
|
|
32
32
|
readonly zTabs: _angular_core.InputSignal<ZTab[]>;
|
|
33
|
-
readonly
|
|
33
|
+
readonly zType: _angular_core.InputSignal<ZTabsType>;
|
|
34
34
|
readonly zSize: _angular_core.InputSignal<ZTabsSize>;
|
|
35
35
|
readonly zOrientation: _angular_core.InputSignal<ZTabsOrientation>;
|
|
36
36
|
readonly zLazy: _angular_core.InputSignal<boolean>;
|
|
@@ -56,15 +56,15 @@ declare class ZTabsComponent implements AfterViewInit, OnDestroy {
|
|
|
56
56
|
private _setupResizeObserver;
|
|
57
57
|
protected scrollToActiveDropdownItem(): void;
|
|
58
58
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ZTabsComponent, never>;
|
|
59
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ZTabsComponent, "z-tabs", never, { "class": { "alias": "class"; "required": false; "isSignal": true; }; "zTabs": { "alias": "zTabs"; "required": true; "isSignal": true; }; "
|
|
59
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ZTabsComponent, "z-tabs", never, { "class": { "alias": "class"; "required": false; "isSignal": true; }; "zTabs": { "alias": "zTabs"; "required": true; "isSignal": true; }; "zType": { "alias": "zType"; "required": false; "isSignal": true; }; "zSize": { "alias": "zSize"; "required": false; "isSignal": true; }; "zOrientation": { "alias": "zOrientation"; "required": false; "isSignal": true; }; "zLazy": { "alias": "zLazy"; "required": false; "isSignal": true; }; "activeTab": { "alias": "activeTab"; "required": false; "isSignal": true; }; }, { "activeTab": "activeTabChange"; "zTabChange": "zTabChange"; }, ["tabPanels"], never, true, never>;
|
|
60
60
|
}
|
|
61
61
|
|
|
62
62
|
declare const zTabsVariants: (props?: ({
|
|
63
|
-
|
|
63
|
+
zType?: "line" | "enclosed" | "soft" | "pill" | "solid" | "underline" | null | undefined;
|
|
64
64
|
zOrientation?: "horizontal" | "vertical" | null | undefined;
|
|
65
65
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
66
66
|
declare const zTabItemVariants: (props?: ({
|
|
67
|
-
|
|
67
|
+
zType?: "line" | "enclosed" | "soft" | "pill" | "solid" | "underline" | null | undefined;
|
|
68
68
|
zSize?: "sm" | "default" | "lg" | null | undefined;
|
|
69
69
|
zOrientation?: "horizontal" | "vertical" | null | undefined;
|
|
70
70
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
@@ -72,4 +72,4 @@ type ZTabsVariants = VariantProps<typeof zTabsVariants>;
|
|
|
72
72
|
type ZTabItemVariants = VariantProps<typeof zTabItemVariants>;
|
|
73
73
|
|
|
74
74
|
export { ZTabPanelDirective, ZTabsComponent, zTabItemVariants, zTabsVariants };
|
|
75
|
-
export type { ZTab, ZTabItemVariants, ZTabsOrientation, ZTabsSize,
|
|
75
|
+
export type { ZTab, ZTabItemVariants, ZTabsOrientation, ZTabsSize, ZTabsType, ZTabsVariants };
|