@shival99/z-ui 2.1.10 → 2.1.11

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shival99/z-ui",
3
- "version": "2.1.10",
3
+ "version": "2.1.11",
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",
@@ -429,16 +429,16 @@ declare class ZCalendarComponent implements OnInit, ControlValueAccessor {
429
429
 
430
430
  declare const zCalendarVariants: (props?: ({
431
431
  zSize?: "sm" | "default" | "lg" | null | undefined;
432
- zStatus?: "default" | "disabled" | "readonly" | "open" | "error" | null | undefined;
432
+ zStatus?: "default" | "disabled" | "open" | "error" | "readonly" | null | undefined;
433
433
  } & class_variance_authority_types.ClassProp) | undefined) => string;
434
434
  declare const zCalendarDayVariants: (props?: ({
435
- state?: "default" | "disabled" | "today" | "selected" | "inRange" | "rangeStart" | "rangeEnd" | "rangeSingle" | "otherMonth" | "hovered" | null | undefined;
435
+ state?: "default" | "today" | "selected" | "inRange" | "rangeStart" | "rangeEnd" | "rangeSingle" | "disabled" | "otherMonth" | "hovered" | null | undefined;
436
436
  } & class_variance_authority_types.ClassProp) | undefined) => string;
437
437
  declare const zCalendarMonthVariants: (props?: ({
438
- state?: "default" | "current" | "disabled" | "selected" | null | undefined;
438
+ state?: "default" | "selected" | "disabled" | "current" | null | undefined;
439
439
  } & class_variance_authority_types.ClassProp) | undefined) => string;
440
440
  declare const zCalendarYearVariants: (props?: ({
441
- state?: "default" | "current" | "disabled" | "selected" | null | undefined;
441
+ state?: "default" | "selected" | "disabled" | "current" | null | undefined;
442
442
  } & class_variance_authority_types.ClassProp) | undefined) => string;
443
443
 
444
444
  export { ZCalendarComponent, zCalendarDayVariants, zCalendarMonthVariants, zCalendarVariants, zCalendarYearVariants };
@@ -255,8 +255,12 @@ interface ZTableEditConfig<T = unknown> {
255
255
  min?: number;
256
256
  max?: number;
257
257
  step?: number;
258
+ mask?: string;
259
+ decimalPlaces?: number;
260
+ allowNegative?: boolean;
258
261
  rows?: number;
259
262
  thousandSeparator?: string;
263
+ decimalMarker?: '.' | ',' | ['.', ','];
260
264
  disabled?: boolean | ((row: T) => boolean);
261
265
  /** Readonly mode - input is visible but not editable */
262
266
  readonly?: boolean | ((row: T) => boolean);