@shival99/z-ui 2.0.36 → 2.0.37
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 +6 -23
- 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-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 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@shival99/z-ui",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.37",
|
|
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",
|
|
@@ -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" | "open" | "error" | "disabled" | "readonly" | null | undefined;
|
|
274
274
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
275
275
|
type ZAutocompleteInputVariants = VariantProps<typeof zAutocompleteInputVariants>;
|
|
276
276
|
declare const zAutocompleteOptionVariants: (props?: ({
|
|
@@ -328,7 +328,7 @@ declare const Z_EDITOR_DEFAULT_TOOLBAR: readonly ZEditorToolbarItem[];
|
|
|
328
328
|
|
|
329
329
|
declare const zEditorVariants: (props?: ({
|
|
330
330
|
zSize?: "sm" | "default" | "lg" | null | undefined;
|
|
331
|
-
zStatus?: "default" | "
|
|
331
|
+
zStatus?: "default" | "error" | "disabled" | "readonly" | null | undefined;
|
|
332
332
|
zPlaceholderMode?: "firstLine" | "everyLine" | null | undefined;
|
|
333
333
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
334
334
|
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" | "open" | "error" | "disabled" | "readonly" | 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;
|
|
@@ -789,7 +789,7 @@ declare class ZTableComponent<T> implements AfterViewInit {
|
|
|
789
789
|
private _bulkBarTimer;
|
|
790
790
|
private readonly _activeColumnVisibilityPopover;
|
|
791
791
|
private _hasInitializedColumnPinning;
|
|
792
|
-
private
|
|
792
|
+
private _isFitColumnScheduled;
|
|
793
793
|
private _isApplyingFitColumnSizing;
|
|
794
794
|
/** Merged loading state from both zLoading input and config.loading */
|
|
795
795
|
protected readonly isLoading: _angular_core.Signal<boolean>;
|
|
@@ -1026,7 +1026,6 @@ declare class ZTableComponent<T> implements AfterViewInit {
|
|
|
1026
1026
|
private _handleColumnSizingChange;
|
|
1027
1027
|
private _syncColumnBaseSizing;
|
|
1028
1028
|
private _scheduleFitColumnWidths;
|
|
1029
|
-
private _cancelFitColumnFrame;
|
|
1030
1029
|
private _applyFitColumnWidths;
|
|
1031
1030
|
private _setColumnSizingFromFit;
|
|
1032
1031
|
private _getColumnBaseSize;
|
|
@@ -1203,7 +1202,7 @@ declare class ZTableActionsComponent<T = unknown> {
|
|
|
1203
1202
|
readonly zConfig: _angular_core.InputSignal<ZTableActionColumnConfig<T>>;
|
|
1204
1203
|
readonly zRow: _angular_core.InputSignal<T>;
|
|
1205
1204
|
readonly zRowId: _angular_core.InputSignal<string>;
|
|
1206
|
-
readonly zDropdownButtonSize: _angular_core.InputSignal<"
|
|
1205
|
+
readonly zDropdownButtonSize: _angular_core.InputSignal<"sm" | "default" | "lg" | "xs" | "xl" | null | undefined>;
|
|
1207
1206
|
readonly zActionClick: _angular_core.OutputEmitterRef<ZTableActionClickEvent<T>>;
|
|
1208
1207
|
protected readonly allActions: _angular_core.Signal<ZTableActionItem<T>[]>;
|
|
1209
1208
|
protected readonly shouldShowAsButtons: _angular_core.Signal<boolean>;
|