@shival99/z-ui 1.0.11 → 1.0.12

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.0.11",
3
+ "version": "1.0.12",
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",
@@ -34,7 +34,7 @@ interface ZAsyncValidator {
34
34
  message: string;
35
35
  validate: (value: string | number | null) => Promise<boolean> | Observable<boolean>;
36
36
  }
37
- type ZInputType = 'text' | 'number' | 'password' | 'email' | 'tel' | 'url' | 'search' | 'color' | 'textarea';
37
+ type ZInputType = 'text' | 'number' | 'password' | 'email' | 'tel' | 'url' | 'color' | 'textarea';
38
38
  type ZInputSize = 'sm' | 'default' | 'lg';
39
39
  type ZAsyncValidateOn = 'change' | 'blur';
40
40
 
@@ -176,11 +176,11 @@ declare class ZInputComponent implements OnInit, ControlValueAccessor {
176
176
 
177
177
  declare const zInputVariants: (props?: ({
178
178
  zSize?: "sm" | "default" | "lg" | null | undefined;
179
- zStatus?: "default" | "error" | "disabled" | "readonly" | null | undefined;
179
+ zStatus?: "default" | "disabled" | "readonly" | "error" | null | undefined;
180
180
  } & class_variance_authority_types.ClassProp) | undefined) => string;
181
181
  type ZInputVariants = VariantProps<typeof zInputVariants>;
182
182
  declare const zTextareaVariants: (props?: ({
183
- zStatus?: "default" | "error" | "disabled" | "readonly" | null | undefined;
183
+ zStatus?: "default" | "disabled" | "readonly" | "error" | null | undefined;
184
184
  } & class_variance_authority_types.ClassProp) | undefined) => string;
185
185
  type ZTextareaVariants = VariantProps<typeof zTextareaVariants>;
186
186