@underverse-ui/underverse 0.1.31 → 0.1.32

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/dist/index.d.cts CHANGED
@@ -138,7 +138,7 @@ interface CheckboxProps extends React$1.InputHTMLAttributes<HTMLInputElement> {
138
138
  }
139
139
  declare const Checkbox: React$1.ForwardRefExoticComponent<CheckboxProps & React$1.RefAttributes<HTMLInputElement>>;
140
140
 
141
- interface InputProps extends Omit<InputHTMLAttributes<HTMLInputElement>, 'size'> {
141
+ interface InputProps extends Omit<InputHTMLAttributes<HTMLInputElement>, "size"> {
142
142
  label?: string;
143
143
  error?: string;
144
144
  description?: string;
@@ -159,17 +159,17 @@ interface InputProps extends Omit<InputHTMLAttributes<HTMLInputElement>, 'size'>
159
159
  maxLength?: number;
160
160
  }
161
161
  declare const Input: React__default.ForwardRefExoticComponent<InputProps & React__default.RefAttributes<HTMLInputElement>>;
162
- interface SearchInputProps extends Omit<InputProps, 'leftIcon' | 'type'> {
162
+ interface SearchInputProps extends Omit<InputProps, "leftIcon" | "type"> {
163
163
  onSearch?: (value: string) => void;
164
164
  searchDelay?: number;
165
165
  }
166
166
  declare const SearchInput: React__default.ForwardRefExoticComponent<SearchInputProps & React__default.RefAttributes<HTMLInputElement>>;
167
- interface PasswordInputProps extends Omit<InputProps, 'type'> {
167
+ interface PasswordInputProps extends Omit<InputProps, "type"> {
168
168
  showStrength?: boolean;
169
169
  strengthLabels?: string[];
170
170
  }
171
171
  declare const PasswordInput: React__default.ForwardRefExoticComponent<PasswordInputProps & React__default.RefAttributes<HTMLInputElement>>;
172
- interface NumberInputProps extends Omit<InputProps, 'type' | 'value' | 'onChange'> {
172
+ interface NumberInputProps extends Omit<InputProps, "type" | "value" | "onChange"> {
173
173
  min?: number;
174
174
  max?: number;
175
175
  step?: number;
package/dist/index.d.ts CHANGED
@@ -138,7 +138,7 @@ interface CheckboxProps extends React$1.InputHTMLAttributes<HTMLInputElement> {
138
138
  }
139
139
  declare const Checkbox: React$1.ForwardRefExoticComponent<CheckboxProps & React$1.RefAttributes<HTMLInputElement>>;
140
140
 
141
- interface InputProps extends Omit<InputHTMLAttributes<HTMLInputElement>, 'size'> {
141
+ interface InputProps extends Omit<InputHTMLAttributes<HTMLInputElement>, "size"> {
142
142
  label?: string;
143
143
  error?: string;
144
144
  description?: string;
@@ -159,17 +159,17 @@ interface InputProps extends Omit<InputHTMLAttributes<HTMLInputElement>, 'size'>
159
159
  maxLength?: number;
160
160
  }
161
161
  declare const Input: React__default.ForwardRefExoticComponent<InputProps & React__default.RefAttributes<HTMLInputElement>>;
162
- interface SearchInputProps extends Omit<InputProps, 'leftIcon' | 'type'> {
162
+ interface SearchInputProps extends Omit<InputProps, "leftIcon" | "type"> {
163
163
  onSearch?: (value: string) => void;
164
164
  searchDelay?: number;
165
165
  }
166
166
  declare const SearchInput: React__default.ForwardRefExoticComponent<SearchInputProps & React__default.RefAttributes<HTMLInputElement>>;
167
- interface PasswordInputProps extends Omit<InputProps, 'type'> {
167
+ interface PasswordInputProps extends Omit<InputProps, "type"> {
168
168
  showStrength?: boolean;
169
169
  strengthLabels?: string[];
170
170
  }
171
171
  declare const PasswordInput: React__default.ForwardRefExoticComponent<PasswordInputProps & React__default.RefAttributes<HTMLInputElement>>;
172
- interface NumberInputProps extends Omit<InputProps, 'type' | 'value' | 'onChange'> {
172
+ interface NumberInputProps extends Omit<InputProps, "type" | "value" | "onChange"> {
173
173
  min?: number;
174
174
  max?: number;
175
175
  step?: number;