@xqmsg/ui-core 0.23.1-rc.4 → 0.23.2
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/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
#### 0.23.2 (2023-09-13)
|
|
2
|
+
##### Refactors
|
|
3
|
+
|
|
4
|
+
* Update unknow types to any for inputs
|
|
5
|
+
* Input variant optional
|
|
6
|
+
|
|
7
|
+
#### 0.23.1 (2023-09-11)
|
|
8
|
+
##### New Features
|
|
9
|
+
|
|
10
|
+
* Mobile styles for inputs
|
|
11
|
+
|
|
12
|
+
|
|
1
13
|
#### 0.22.4 (2023-07-14)
|
|
2
14
|
##### Refactors
|
|
3
15
|
* allow space in Stacled Pilled Input
|
|
@@ -13,7 +13,7 @@ export interface InputProps<T extends FieldValues> extends ValidationProps {
|
|
|
13
13
|
fullOptions?: FieldOptions;
|
|
14
14
|
maxLength?: number;
|
|
15
15
|
helperText?: React.ReactNode;
|
|
16
|
-
control: Control<T,
|
|
16
|
+
control: Control<T, any>;
|
|
17
17
|
onChange?: (value?: string) => void;
|
|
18
18
|
disabled?: boolean;
|
|
19
19
|
tooltipText?: string;
|
|
@@ -23,7 +23,7 @@ export interface InputProps<T extends FieldValues> extends ValidationProps {
|
|
|
23
23
|
leftElement?: React.ReactNode;
|
|
24
24
|
allowDefault?: boolean;
|
|
25
25
|
rightElement?: React.ReactNode;
|
|
26
|
-
variant
|
|
26
|
+
variant?: string;
|
|
27
27
|
separators?: string[];
|
|
28
28
|
}
|
|
29
29
|
/**
|