@shival99/z-ui 1.3.11 → 1.3.13
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-input.mjs +4 -14
- package/fesm2022/shival99-z-ui-components-z-input.mjs.map +1 -1
- package/package.json +1 -1
- package/types/shival99-z-ui-components-z-input.d.ts +3 -5
|
@@ -106,7 +106,6 @@ declare class ZInputComponent implements OnInit, ControlValueAccessor {
|
|
|
106
106
|
private _onChange;
|
|
107
107
|
private _onTouched;
|
|
108
108
|
private _ngControl;
|
|
109
|
-
private _arrowInterval;
|
|
110
109
|
protected readonly isDisabled: _angular_core.Signal<boolean>;
|
|
111
110
|
protected readonly isPasswordType: _angular_core.Signal<boolean>;
|
|
112
111
|
protected readonly isColorType: _angular_core.Signal<boolean>;
|
|
@@ -164,8 +163,7 @@ declare class ZInputComponent implements OnInit, ControlValueAccessor {
|
|
|
164
163
|
private _hideSuggestPopover;
|
|
165
164
|
saveToSuggestHistory(value: string): void;
|
|
166
165
|
private _loadSuggestHistory;
|
|
167
|
-
protected
|
|
168
|
-
protected onArrowMouseUp(): void;
|
|
166
|
+
protected onArrowClick(event: MouseEvent, direction: 'up' | 'down'): void;
|
|
169
167
|
protected togglePasswordVisibility(): void;
|
|
170
168
|
protected copyColorToClipboard(): void;
|
|
171
169
|
private _incrementValue;
|
|
@@ -177,11 +175,11 @@ declare class ZInputComponent implements OnInit, ControlValueAccessor {
|
|
|
177
175
|
|
|
178
176
|
declare const zInputVariants: (props?: ({
|
|
179
177
|
zSize?: "sm" | "default" | "lg" | null | undefined;
|
|
180
|
-
zStatus?: "default" | "
|
|
178
|
+
zStatus?: "default" | "disabled" | "readonly" | "error" | null | undefined;
|
|
181
179
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
182
180
|
type ZInputVariants = VariantProps<typeof zInputVariants>;
|
|
183
181
|
declare const zTextareaVariants: (props?: ({
|
|
184
|
-
zStatus?: "default" | "
|
|
182
|
+
zStatus?: "default" | "disabled" | "readonly" | "error" | null | undefined;
|
|
185
183
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
186
184
|
type ZTextareaVariants = VariantProps<typeof zTextareaVariants>;
|
|
187
185
|
|