@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/fesm2022/shival99-z-ui-components-z-select.mjs +0 -2
- package/fesm2022/shival99-z-ui-components-z-select.mjs.map +1 -1
- package/fesm2022/shival99-z-ui-providers.mjs +6 -4
- package/fesm2022/shival99-z-ui-providers.mjs.map +1 -1
- package/fesm2022/shival99-z-ui-services.mjs +2 -4
- package/fesm2022/shival99-z-ui-services.mjs.map +1 -1
- package/package.json +1 -1
- package/types/shival99-z-ui-components-z-input.d.ts +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@shival99/z-ui",
|
|
3
|
-
"version": "1.1.
|
|
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" | "
|
|
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" | "
|
|
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
|
|