@shival99/z-ui 1.1.5 → 1.1.6

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": "1.1.5",
3
+ "version": "1.1.6",
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",
@@ -178,11 +178,11 @@ declare class ZInputComponent implements OnInit, ControlValueAccessor {
178
178
 
179
179
  declare const zInputVariants: (props?: ({
180
180
  zSize?: "sm" | "default" | "lg" | null | undefined;
181
- zStatus?: "default" | "disabled" | "readonly" | "error" | null | undefined;
181
+ zStatus?: "default" | "error" | "disabled" | "readonly" | null | undefined;
182
182
  } & class_variance_authority_types.ClassProp) | undefined) => string;
183
183
  type ZInputVariants = VariantProps<typeof zInputVariants>;
184
184
  declare const zTextareaVariants: (props?: ({
185
- zStatus?: "default" | "disabled" | "readonly" | "error" | null | undefined;
185
+ zStatus?: "default" | "error" | "disabled" | "readonly" | null | undefined;
186
186
  } & class_variance_authority_types.ClassProp) | undefined) => string;
187
187
  type ZTextareaVariants = VariantProps<typeof zTextareaVariants>;
188
188