@shival99/z-ui 2.4.7 → 2.4.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/assets/css/global.css +0 -11
- package/fesm2022/shival99-z-ui-components-z-drawer.mjs +3 -3
- package/fesm2022/shival99-z-ui-components-z-drawer.mjs.map +1 -1
- package/fesm2022/shival99-z-ui-components-z-hover-glide.mjs +57 -41
- package/fesm2022/shival99-z-ui-components-z-hover-glide.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-table.mjs +44 -8
- 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-hover-glide.d.ts +4 -4
- package/types/shival99-z-ui-components-z-select.d.ts +2 -2
- 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": "2.4.
|
|
3
|
+
"version": "2.4.9",
|
|
4
4
|
"description": "Z-UI: Modern Angular UI Component Library - A comprehensive, high-performance design system built with Angular 22, featuring 45+ customizable components with dark mode, accessibility, and enterprise-ready features.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"angular",
|
|
@@ -282,7 +282,7 @@ declare class ZAutocompleteComponent<T = unknown> implements OnInit, ControlValu
|
|
|
282
282
|
|
|
283
283
|
declare const zAutocompleteInputVariants: (props?: ({
|
|
284
284
|
zSize?: "sm" | "default" | "lg" | null | undefined;
|
|
285
|
-
zStatus?: "default" | "
|
|
285
|
+
zStatus?: "default" | "error" | "disabled" | "readonly" | "open" | null | undefined;
|
|
286
286
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
287
287
|
type ZAutocompleteInputVariants = VariantProps<typeof zAutocompleteInputVariants>;
|
|
288
288
|
declare const zAutocompleteOptionVariants: (props?: ({
|
|
@@ -7,10 +7,9 @@ import { OnDestroy } from '@angular/core';
|
|
|
7
7
|
* instead of each item toggling its own background — matches the "motion highlight" pattern from
|
|
8
8
|
* animate-ui.
|
|
9
9
|
*
|
|
10
|
-
* The box's
|
|
11
|
-
*
|
|
12
|
-
*
|
|
13
|
-
* between, which is what a CSS `transition` on width/height would otherwise do on every tick.
|
|
10
|
+
* The box's geometry is updated once per move. Pixel-aligned boxes use a compositor animation;
|
|
11
|
+
* fractional geometry (common at browser zoom levels) uses layout-property animation instead, so
|
|
12
|
+
* Chromium never has to rasterize a transformed text layer at a fractional device-pixel offset.
|
|
14
13
|
*
|
|
15
14
|
* Usage: put `[zHoverGlide]` on the scrollable/list container and give each hoverable item a
|
|
16
15
|
* `data-glide-item` attribute (or pass a custom `[zHoverGlideSelector]`). Works with virtualized
|
|
@@ -44,6 +43,7 @@ declare class ZHoverGlideDirective implements OnDestroy {
|
|
|
44
43
|
private _isNestedHostTarget;
|
|
45
44
|
private _ensureHighlightEl;
|
|
46
45
|
private _moveTo;
|
|
46
|
+
private _canUseTransformAnimation;
|
|
47
47
|
private _fadeOut;
|
|
48
48
|
private _cancelAnimations;
|
|
49
49
|
private _removeHighlightElements;
|
|
@@ -258,7 +258,7 @@ declare class ZSelectComponent<T = unknown> implements OnInit, ControlValueAcces
|
|
|
258
258
|
protected readonly isEmptyData: _angular_core.Signal<boolean>;
|
|
259
259
|
protected readonly isNoSearchResults: _angular_core.Signal<boolean>;
|
|
260
260
|
protected readonly optionsMaxHeight: _angular_core.Signal<number>;
|
|
261
|
-
protected readonly currentStatus: _angular_core.Signal<"default" | "
|
|
261
|
+
protected readonly currentStatus: _angular_core.Signal<"default" | "disabled" | "readonly" | "open" | "error">;
|
|
262
262
|
private readonly _shouldShowValidation;
|
|
263
263
|
protected readonly hasError: _angular_core.Signal<boolean>;
|
|
264
264
|
protected readonly errorMessage: _angular_core.Signal<string>;
|
|
@@ -369,7 +369,7 @@ declare const TAG_COLORS: ZSelectTagColor[];
|
|
|
369
369
|
declare const zSelectVariants: (props?: ({
|
|
370
370
|
zVariant?: "default" | "ghost" | null | undefined;
|
|
371
371
|
zSize?: "sm" | "default" | "lg" | null | undefined;
|
|
372
|
-
zStatus?: "default" | "
|
|
372
|
+
zStatus?: "default" | "error" | "disabled" | "readonly" | "open" | null | undefined;
|
|
373
373
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
374
374
|
declare const zSelectTagVariants: (props?: ({
|
|
375
375
|
zSize?: "sm" | "default" | "lg" | null | undefined;
|
|
@@ -2239,7 +2239,7 @@ declare class ZTableActionsComponent<T = unknown> {
|
|
|
2239
2239
|
readonly zConfig: _angular_core.InputSignal<ZTableActionColumnConfig<T>>;
|
|
2240
2240
|
readonly zRow: _angular_core.InputSignal<T>;
|
|
2241
2241
|
readonly zRowId: _angular_core.InputSignal<string>;
|
|
2242
|
-
readonly zDropdownButtonSize: _angular_core.InputSignal<"
|
|
2242
|
+
readonly zDropdownButtonSize: _angular_core.InputSignal<"default" | "sm" | "lg" | "xs" | "xl" | null | undefined>;
|
|
2243
2243
|
readonly zActionClick: _angular_core.OutputEmitterRef<ZTableActionClickEvent<T>>;
|
|
2244
2244
|
protected readonly allActions: _angular_core.Signal<ZTableActionItem<T>[]>;
|
|
2245
2245
|
protected readonly shouldShowAsButtons: _angular_core.Signal<boolean>;
|