@shival99/z-ui 1.3.7 → 1.3.8
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 +2 -2
- package/fesm2022/shival99-z-ui-components-z-calendar.mjs.map +1 -1
- package/fesm2022/shival99-z-ui-components-z-table.mjs +37 -2
- package/fesm2022/shival99-z-ui-components-z-table.mjs.map +1 -1
- package/package.json +1 -1
- package/types/shival99-z-ui-components-z-calendar.d.ts +4 -4
- package/types/shival99-z-ui-components-z-table.d.ts +2 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@shival99/z-ui",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.8",
|
|
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",
|
|
@@ -321,16 +321,16 @@ declare class ZCalendarComponent implements OnInit, ControlValueAccessor {
|
|
|
321
321
|
|
|
322
322
|
declare const zCalendarVariants: (props?: ({
|
|
323
323
|
zSize?: "sm" | "default" | "lg" | null | undefined;
|
|
324
|
-
zStatus?: "default" | "disabled" | "
|
|
324
|
+
zStatus?: "default" | "disabled" | "open" | "error" | "readonly" | null | undefined;
|
|
325
325
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
326
326
|
declare const zCalendarDayVariants: (props?: ({
|
|
327
|
-
state?: "default" | "
|
|
327
|
+
state?: "default" | "today" | "selected" | "inRange" | "rangeStart" | "rangeEnd" | "rangeSingle" | "disabled" | "otherMonth" | "hovered" | null | undefined;
|
|
328
328
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
329
329
|
declare const zCalendarMonthVariants: (props?: ({
|
|
330
|
-
state?: "default" | "
|
|
330
|
+
state?: "default" | "selected" | "disabled" | "current" | null | undefined;
|
|
331
331
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
332
332
|
declare const zCalendarYearVariants: (props?: ({
|
|
333
|
-
state?: "default" | "
|
|
333
|
+
state?: "default" | "selected" | "disabled" | "current" | null | undefined;
|
|
334
334
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
335
335
|
|
|
336
336
|
export { ZCalendarComponent, zCalendarDayVariants, zCalendarMonthVariants, zCalendarVariants, zCalendarYearVariants };
|
|
@@ -104,6 +104,7 @@ interface ZTableBodyColumnConfig<T> {
|
|
|
104
104
|
contentStyle?: Record<string, string> | ((info: CellContext<T, unknown>) => Record<string, string>);
|
|
105
105
|
tooltip?: string | ZTooltipConfig | ((info: CellContext<T, unknown>) => string | ZTooltipConfig);
|
|
106
106
|
actions?: ZTableActionColumnConfig<T>;
|
|
107
|
+
enabledClick?: boolean;
|
|
107
108
|
}
|
|
108
109
|
interface ZTableFooterColumnConfig<T> {
|
|
109
110
|
content?: ZTableHeaderContent<T>;
|
|
@@ -480,6 +481,7 @@ declare class ZTableComponent<T> implements AfterViewInit {
|
|
|
480
481
|
onSearchChange(value: string | number | null): void;
|
|
481
482
|
toggleHeaderFooterShadow(): void;
|
|
482
483
|
onActionClick(event: ZTableActionClickEvent<T>): void;
|
|
484
|
+
onCellClick(row: Row<T>, columnId: string, value: unknown): void;
|
|
483
485
|
openSettingsDrawer(): void;
|
|
484
486
|
onPendingColumnDrop(event: CdkDragDrop<string[]>): void;
|
|
485
487
|
onVisibleColumnsChange(values: (string | number)[]): void;
|