kui-basic 1.1.123 → 1.1.124
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/Input/index.d.ts
CHANGED
|
@@ -12,6 +12,8 @@ interface InputProps
|
|
|
12
12
|
"value"
|
|
13
13
|
>,
|
|
14
14
|
React.AriaAttributes {
|
|
15
|
+
rows?: number
|
|
16
|
+
autoHeight?: boolean
|
|
15
17
|
isTextArea?: boolean
|
|
16
18
|
inputRef?: React.RefObject<HTMLInputElement | null>
|
|
17
19
|
inputStyles?: string
|
|
@@ -28,14 +30,14 @@ interface InputProps
|
|
|
28
30
|
value?: string | number | null
|
|
29
31
|
}
|
|
30
32
|
|
|
31
|
-
interface InputWithAdornmentsProps extends InputProps {
|
|
32
|
-
cornerLabel?: string
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
type InputWithAdornmentsType = (
|
|
36
|
-
props: InputWithAdornmentsProps
|
|
37
|
-
) => React.ReactElement
|
|
38
|
-
|
|
33
|
+
interface InputWithAdornmentsProps extends InputProps {
|
|
34
|
+
cornerLabel?: string | false
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
type InputWithAdornmentsType = (
|
|
38
|
+
props: InputWithAdornmentsProps
|
|
39
|
+
) => React.ReactElement
|
|
40
|
+
|
|
39
41
|
declare const InputWithAdornments: InputWithAdornmentsType
|
|
40
42
|
|
|
41
43
|
export { InputWithAdornmentsProps, InputWithAdornmentsType, InputWithAdornments as default };
|
|
@@ -12,6 +12,8 @@ interface InputProps
|
|
|
12
12
|
"value"
|
|
13
13
|
>,
|
|
14
14
|
React.AriaAttributes {
|
|
15
|
+
rows?: number
|
|
16
|
+
autoHeight?: boolean
|
|
15
17
|
isTextArea?: boolean
|
|
16
18
|
inputRef?: React.RefObject<HTMLInputElement | null>
|
|
17
19
|
inputStyles?: string
|
|
@@ -28,8 +30,8 @@ interface InputProps
|
|
|
28
30
|
value?: string | number | null
|
|
29
31
|
}
|
|
30
32
|
|
|
31
|
-
interface InputWithAdornmentsProps extends InputProps {
|
|
32
|
-
cornerLabel?: string
|
|
33
|
+
interface InputWithAdornmentsProps extends InputProps {
|
|
34
|
+
cornerLabel?: string | false
|
|
33
35
|
}
|
|
34
36
|
|
|
35
37
|
type CountryItem = {
|
package/InputWithMask/index.d.ts
CHANGED
|
@@ -12,6 +12,8 @@ interface InputProps
|
|
|
12
12
|
"value"
|
|
13
13
|
>,
|
|
14
14
|
React.AriaAttributes {
|
|
15
|
+
rows?: number
|
|
16
|
+
autoHeight?: boolean
|
|
15
17
|
isTextArea?: boolean
|
|
16
18
|
inputRef?: React.RefObject<HTMLInputElement | null>
|
|
17
19
|
inputStyles?: string
|
|
@@ -28,8 +30,8 @@ interface InputProps
|
|
|
28
30
|
value?: string | number | null
|
|
29
31
|
}
|
|
30
32
|
|
|
31
|
-
interface InputWithAdornmentsProps extends InputProps {
|
|
32
|
-
cornerLabel?: string
|
|
33
|
+
interface InputWithAdornmentsProps extends InputProps {
|
|
34
|
+
cornerLabel?: string | false
|
|
33
35
|
}
|
|
34
36
|
|
|
35
37
|
type InputWithMaskProps = any & InputWithAdornmentsProps
|
package/index.d.ts
CHANGED
|
@@ -317,6 +317,8 @@ interface InputProps
|
|
|
317
317
|
"value"
|
|
318
318
|
>,
|
|
319
319
|
React.AriaAttributes {
|
|
320
|
+
rows?: number
|
|
321
|
+
autoHeight?: boolean
|
|
320
322
|
isTextArea?: boolean
|
|
321
323
|
inputRef?: React.RefObject<HTMLInputElement | null>
|
|
322
324
|
inputStyles?: string
|
|
@@ -351,14 +353,14 @@ type InputFileType = (props: InputFileProps) => React.ReactElement
|
|
|
351
353
|
|
|
352
354
|
declare const InputFile: InputFileType
|
|
353
355
|
|
|
354
|
-
interface InputWithAdornmentsProps extends InputProps {
|
|
355
|
-
cornerLabel?: string
|
|
356
|
-
}
|
|
357
|
-
|
|
358
|
-
type InputWithAdornmentsType = (
|
|
359
|
-
props: InputWithAdornmentsProps
|
|
360
|
-
) => React.ReactElement
|
|
361
|
-
|
|
356
|
+
interface InputWithAdornmentsProps extends InputProps {
|
|
357
|
+
cornerLabel?: string | false
|
|
358
|
+
}
|
|
359
|
+
|
|
360
|
+
type InputWithAdornmentsType = (
|
|
361
|
+
props: InputWithAdornmentsProps
|
|
362
|
+
) => React.ReactElement
|
|
363
|
+
|
|
362
364
|
declare const InputWithAdornments: InputWithAdornmentsType
|
|
363
365
|
|
|
364
366
|
type CountryItem = {
|