@rovula/ui 0.1.0 → 0.1.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/dist/cjs/bundle.css +129 -0
- package/dist/cjs/bundle.js +9255 -3
- package/dist/cjs/bundle.js.map +1 -1
- package/dist/cjs/types/components/Dropdown/Dropdown.stories.d.ts +1 -0
- package/dist/cjs/types/components/Footer/Footer.d.ts +21 -0
- package/dist/cjs/types/components/Footer/Footer.stories.d.ts +45 -0
- package/dist/cjs/types/components/Footer/index.d.ts +2 -0
- package/dist/cjs/types/components/Icon/Icon.d.ts +1 -1
- package/dist/cjs/types/components/Icon/Icon.stories.d.ts +9 -1
- package/dist/cjs/types/components/InputFilter/InputFilter.stories.d.ts +1 -0
- package/dist/cjs/types/components/MaskedTextInput/MaskedTextInput.d.ts +1 -0
- package/dist/cjs/types/components/MaskedTextInput/MaskedTextInput.stories.d.ts +2 -0
- package/dist/cjs/types/components/Navbar/Navbar.d.ts +5 -0
- package/dist/cjs/types/components/Navbar/Navbar.stories.d.ts +14 -0
- package/dist/cjs/types/components/PasswordInput/PasswordInput.d.ts +19 -0
- package/dist/cjs/types/components/PasswordInput/PasswordInput.stories.d.ts +396 -0
- package/dist/cjs/types/components/PasswordInput/index.d.ts +2 -0
- package/dist/cjs/types/components/Search/Search.stories.d.ts +1 -0
- package/dist/cjs/types/components/TextInput/TextInput.d.ts +2 -0
- package/dist/cjs/types/components/TextInput/TextInput.stories.d.ts +10 -0
- package/dist/cjs/types/components/TextInput/TextInput.styles.d.ts +15 -0
- package/dist/cjs/types/icons/index.d.ts +1 -0
- package/dist/cjs/types/icons/lucideIconNames.d.ts +9 -0
- package/dist/cjs/types/index.d.ts +7 -1
- package/dist/cjs/types/utils/colors.d.ts +330 -0
- package/dist/components/Footer/Footer.js +11 -0
- package/dist/components/Footer/Footer.stories.js +34 -0
- package/dist/components/Footer/index.js +2 -0
- package/dist/components/Icon/Icon.js +28 -11
- package/dist/components/Icon/Icon.stories.js +39 -0
- package/dist/components/Navbar/Navbar.js +18 -4
- package/dist/components/Navbar/Navbar.stories.js +16 -9
- package/dist/components/PasswordInput/PasswordInput.js +36 -0
- package/dist/components/PasswordInput/PasswordInput.stories.js +67 -0
- package/dist/components/PasswordInput/index.js +1 -0
- package/dist/components/TextArea/TextArea.styles.js +1 -1
- package/dist/components/TextInput/TextInput.js +33 -24
- package/dist/components/TextInput/TextInput.stories.js +14 -2
- package/dist/components/TextInput/TextInput.styles.js +25 -10
- package/dist/esm/bundle.css +129 -0
- package/dist/esm/bundle.js +9255 -3
- package/dist/esm/bundle.js.map +1 -1
- package/dist/esm/types/components/Dropdown/Dropdown.stories.d.ts +1 -0
- package/dist/esm/types/components/Footer/Footer.d.ts +21 -0
- package/dist/esm/types/components/Footer/Footer.stories.d.ts +45 -0
- package/dist/esm/types/components/Footer/index.d.ts +2 -0
- package/dist/esm/types/components/Icon/Icon.d.ts +1 -1
- package/dist/esm/types/components/Icon/Icon.stories.d.ts +9 -1
- package/dist/esm/types/components/InputFilter/InputFilter.stories.d.ts +1 -0
- package/dist/esm/types/components/MaskedTextInput/MaskedTextInput.d.ts +1 -0
- package/dist/esm/types/components/MaskedTextInput/MaskedTextInput.stories.d.ts +2 -0
- package/dist/esm/types/components/Navbar/Navbar.d.ts +5 -0
- package/dist/esm/types/components/Navbar/Navbar.stories.d.ts +14 -0
- package/dist/esm/types/components/PasswordInput/PasswordInput.d.ts +19 -0
- package/dist/esm/types/components/PasswordInput/PasswordInput.stories.d.ts +396 -0
- package/dist/esm/types/components/PasswordInput/index.d.ts +2 -0
- package/dist/esm/types/components/Search/Search.stories.d.ts +1 -0
- package/dist/esm/types/components/TextInput/TextInput.d.ts +2 -0
- package/dist/esm/types/components/TextInput/TextInput.stories.d.ts +10 -0
- package/dist/esm/types/components/TextInput/TextInput.styles.d.ts +15 -0
- package/dist/esm/types/icons/index.d.ts +1 -0
- package/dist/esm/types/icons/lucideIconNames.d.ts +9 -0
- package/dist/esm/types/index.d.ts +7 -1
- package/dist/esm/types/utils/colors.d.ts +330 -0
- package/dist/icons/index.js +1 -0
- package/dist/icons/lucideIconNames.js +12 -0
- package/dist/index.d.ts +389 -2
- package/dist/index.js +4 -0
- package/dist/src/theme/global.css +200 -24
- package/dist/utils/colors.js +369 -0
- package/package.json +2 -1
- package/src/components/Footer/Footer.stories.tsx +119 -0
- package/src/components/Footer/Footer.tsx +122 -0
- package/src/components/Footer/index.ts +3 -0
- package/src/components/Icon/Icon.stories.tsx +89 -0
- package/src/components/Icon/Icon.tsx +44 -23
- package/src/components/Navbar/Navbar.stories.tsx +109 -55
- package/src/components/Navbar/Navbar.tsx +41 -3
- package/src/components/PasswordInput/PasswordInput.stories.tsx +111 -0
- package/src/components/PasswordInput/PasswordInput.tsx +50 -0
- package/src/components/PasswordInput/index.ts +2 -0
- package/src/components/TextArea/TextArea.styles.ts +1 -1
- package/src/components/TextInput/TextInput.stories.tsx +60 -2
- package/src/components/TextInput/TextInput.styles.ts +36 -19
- package/src/components/TextInput/TextInput.tsx +83 -55
- package/src/icons/index.ts +1 -0
- package/src/icons/lucideIconNames.ts +14 -0
- package/src/index.ts +15 -1
- package/src/theme/themes/skyller/typography.css +24 -24
- package/src/theme/tokens/baseline.css +1 -0
- package/src/theme/tokens/components/footer.css +9 -0
- package/src/theme/tokens/components/navbar.css +2 -1
- package/src/types/lucide-react.d.ts +5 -0
- package/src/utils/colors.ts +383 -0
|
@@ -364,6 +364,7 @@ declare const meta: {
|
|
|
364
364
|
src?: string | undefined | undefined;
|
|
365
365
|
iconMode?: "flat" | "solid" | undefined;
|
|
366
366
|
keepCloseIconOnValue?: boolean | undefined;
|
|
367
|
+
keepFooterSpace?: boolean | undefined;
|
|
367
368
|
labelClassName?: string | undefined;
|
|
368
369
|
classes?: {
|
|
369
370
|
iconWrapper?: string;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { FC, ReactNode } from "react";
|
|
2
|
+
export type FooterVariant = "default" | "simple" | "transparent";
|
|
3
|
+
export type FooterProps = {
|
|
4
|
+
/** Layout variant: default (3-column) | simple (centered) | transparent (no bg) */
|
|
5
|
+
variant?: FooterVariant;
|
|
6
|
+
/** Copyright text - renders in left (default) or center (simple) */
|
|
7
|
+
copyright?: ReactNode;
|
|
8
|
+
position?: "static" | "sticky";
|
|
9
|
+
children?: ReactNode;
|
|
10
|
+
leftNav?: ReactNode;
|
|
11
|
+
rightNav?: ReactNode;
|
|
12
|
+
center?: ReactNode;
|
|
13
|
+
container?: boolean;
|
|
14
|
+
className?: string;
|
|
15
|
+
containerClassName?: string;
|
|
16
|
+
leftNavClassName?: string;
|
|
17
|
+
centerClassName?: string;
|
|
18
|
+
rightNavClassName?: string;
|
|
19
|
+
};
|
|
20
|
+
declare const Footer: FC<FooterProps>;
|
|
21
|
+
export default Footer;
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
declare const meta: {
|
|
3
|
+
title: string;
|
|
4
|
+
component: React.FC<import("./Footer").FooterProps>;
|
|
5
|
+
tags: string[];
|
|
6
|
+
parameters: {
|
|
7
|
+
layout: string;
|
|
8
|
+
};
|
|
9
|
+
decorators: ((Story: import("@storybook/csf").PartialStoryFn<import("@storybook/react").ReactRenderer, {
|
|
10
|
+
variant?: import("./Footer").FooterVariant | undefined;
|
|
11
|
+
copyright?: React.ReactNode;
|
|
12
|
+
position?: "static" | "sticky" | undefined;
|
|
13
|
+
children?: React.ReactNode;
|
|
14
|
+
leftNav?: React.ReactNode;
|
|
15
|
+
rightNav?: React.ReactNode;
|
|
16
|
+
center?: React.ReactNode;
|
|
17
|
+
container?: boolean | undefined;
|
|
18
|
+
className?: string | undefined;
|
|
19
|
+
containerClassName?: string | undefined;
|
|
20
|
+
leftNavClassName?: string | undefined;
|
|
21
|
+
centerClassName?: string | undefined;
|
|
22
|
+
rightNavClassName?: string | undefined;
|
|
23
|
+
}>) => import("react/jsx-runtime").JSX.Element)[];
|
|
24
|
+
};
|
|
25
|
+
export default meta;
|
|
26
|
+
export declare const Default: {
|
|
27
|
+
args: {};
|
|
28
|
+
render: (args: {}) => import("react/jsx-runtime").JSX.Element;
|
|
29
|
+
};
|
|
30
|
+
export declare const WithCopyright: {
|
|
31
|
+
args: {};
|
|
32
|
+
render: (args: {}) => import("react/jsx-runtime").JSX.Element;
|
|
33
|
+
};
|
|
34
|
+
export declare const Simple: {
|
|
35
|
+
args: {};
|
|
36
|
+
render: (args: {}) => import("react/jsx-runtime").JSX.Element;
|
|
37
|
+
};
|
|
38
|
+
export declare const Transparent: {
|
|
39
|
+
args: {};
|
|
40
|
+
render: (args: {}) => import("react/jsx-runtime").JSX.Element;
|
|
41
|
+
};
|
|
42
|
+
export declare const Custom: {
|
|
43
|
+
args: {};
|
|
44
|
+
render: (args: {}) => import("react/jsx-runtime").JSX.Element;
|
|
45
|
+
};
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import React from "react";
|
|
2
2
|
export type IconProps = {
|
|
3
3
|
name: string;
|
|
4
|
-
type?: "heroicons" | "material" | "custom";
|
|
4
|
+
type?: "heroicons" | "material" | "lucide" | "custom";
|
|
5
5
|
color?: "primary" | "secondary" | "success" | "tertiary" | "info" | "warning" | "error" | "inherit";
|
|
6
6
|
variant?: "solid" | "outline";
|
|
7
7
|
size?: "sm" | "md" | "lg" | "inherit";
|
|
@@ -8,7 +8,7 @@ declare const meta: {
|
|
|
8
8
|
};
|
|
9
9
|
decorators: ((Story: import("@storybook/csf").PartialStoryFn<import("@storybook/react").ReactRenderer, {
|
|
10
10
|
name: string;
|
|
11
|
-
type?: "heroicons" | "material" | "custom" | undefined;
|
|
11
|
+
type?: "heroicons" | "material" | "lucide" | "custom" | undefined;
|
|
12
12
|
color?: "primary" | "secondary" | "success" | "tertiary" | "info" | "warning" | "error" | "inherit" | undefined;
|
|
13
13
|
variant?: "solid" | "outline" | undefined;
|
|
14
14
|
size?: "sm" | "md" | "lg" | "inherit" | undefined;
|
|
@@ -502,6 +502,14 @@ export declare const PreviewHeroIcon: {
|
|
|
502
502
|
args: {};
|
|
503
503
|
render: (args: {}) => import("react/jsx-runtime").JSX.Element;
|
|
504
504
|
};
|
|
505
|
+
export declare const PreviewLucideIcon: {
|
|
506
|
+
args: {};
|
|
507
|
+
render: (args: {}) => import("react/jsx-runtime").JSX.Element;
|
|
508
|
+
};
|
|
509
|
+
export declare const LucideIconBrowser: {
|
|
510
|
+
args: {};
|
|
511
|
+
render: () => import("react/jsx-runtime").JSX.Element;
|
|
512
|
+
};
|
|
505
513
|
export declare const PreviewMaterialIcon: {
|
|
506
514
|
args: {};
|
|
507
515
|
render: (args: {}) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -351,6 +351,7 @@ declare const meta: {
|
|
|
351
351
|
src?: string | undefined | undefined;
|
|
352
352
|
iconMode?: "flat" | "solid" | undefined;
|
|
353
353
|
keepCloseIconOnValue?: boolean | undefined;
|
|
354
|
+
keepFooterSpace?: boolean | undefined;
|
|
354
355
|
labelClassName?: string | undefined;
|
|
355
356
|
classes?: {
|
|
356
357
|
iconWrapper?: string;
|
|
@@ -46,6 +46,7 @@ export declare const MaskedTextInput: React.ForwardRefExoticComponent<{
|
|
|
46
46
|
required?: boolean;
|
|
47
47
|
isFloatingLabel?: boolean;
|
|
48
48
|
keepCloseIconOnValue?: boolean;
|
|
49
|
+
keepFooterSpace?: boolean;
|
|
49
50
|
hasClearIcon?: boolean;
|
|
50
51
|
hasSearchIcon?: boolean;
|
|
51
52
|
startIcon?: React.ReactNode;
|
|
@@ -17,6 +17,7 @@ declare const meta: {
|
|
|
17
17
|
required?: boolean;
|
|
18
18
|
isFloatingLabel?: boolean;
|
|
19
19
|
keepCloseIconOnValue?: boolean;
|
|
20
|
+
keepFooterSpace?: boolean;
|
|
20
21
|
hasClearIcon?: boolean;
|
|
21
22
|
hasSearchIcon?: boolean;
|
|
22
23
|
startIcon?: React.ReactNode;
|
|
@@ -63,6 +64,7 @@ declare const meta: {
|
|
|
63
64
|
required?: boolean | undefined;
|
|
64
65
|
isFloatingLabel?: boolean | undefined;
|
|
65
66
|
keepCloseIconOnValue?: boolean | undefined;
|
|
67
|
+
keepFooterSpace?: boolean | undefined;
|
|
66
68
|
hasClearIcon?: boolean | undefined;
|
|
67
69
|
hasSearchIcon?: boolean | undefined;
|
|
68
70
|
startIcon?: React.ReactNode;
|
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
import { FC, ReactNode } from "react";
|
|
2
|
+
export type NavbarVariant = "default" | "transparent";
|
|
2
3
|
export type NavbarProps = {
|
|
4
|
+
/** Appearance: default (solid bg) | transparent */
|
|
5
|
+
variant?: NavbarVariant;
|
|
6
|
+
/** Show shadow when page is scrolled (works with position="sticky") */
|
|
7
|
+
scrollShadow?: boolean;
|
|
3
8
|
position?: "static" | "sticky";
|
|
4
9
|
children?: ReactNode;
|
|
5
10
|
leftNav?: ReactNode;
|
|
@@ -7,6 +7,8 @@ declare const meta: {
|
|
|
7
7
|
layout: string;
|
|
8
8
|
};
|
|
9
9
|
decorators: ((Story: import("@storybook/csf").PartialStoryFn<import("@storybook/react").ReactRenderer, {
|
|
10
|
+
variant?: import("./Navbar").NavbarVariant | undefined;
|
|
11
|
+
scrollShadow?: boolean | undefined;
|
|
10
12
|
position?: "static" | "sticky" | undefined;
|
|
11
13
|
children?: React.ReactNode;
|
|
12
14
|
leftNav?: React.ReactNode;
|
|
@@ -25,6 +27,18 @@ export declare const Default: {
|
|
|
25
27
|
args: {};
|
|
26
28
|
render: (args: {}) => import("react/jsx-runtime").JSX.Element;
|
|
27
29
|
};
|
|
30
|
+
export declare const Transparent: {
|
|
31
|
+
args: {};
|
|
32
|
+
render: (args: {}) => import("react/jsx-runtime").JSX.Element;
|
|
33
|
+
};
|
|
34
|
+
export declare const WithScrollShadow: {
|
|
35
|
+
args: {};
|
|
36
|
+
parameters: {
|
|
37
|
+
layout: string;
|
|
38
|
+
};
|
|
39
|
+
decorators: ((Story: import("@storybook/csf").PartialStoryFn<import("@storybook/react").ReactRenderer, {}>) => import("react/jsx-runtime").JSX.Element)[];
|
|
40
|
+
render: (args: {}) => import("react/jsx-runtime").JSX.Element;
|
|
41
|
+
};
|
|
28
42
|
export declare const Custom: {
|
|
29
43
|
args: {};
|
|
30
44
|
render: (args: {}) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { InputProps } from "../TextInput/TextInput";
|
|
3
|
+
export type PasswordInputProps = Omit<InputProps, "type"> & {
|
|
4
|
+
/** Show toggle visibility button. Default: true */
|
|
5
|
+
showToggle?: boolean;
|
|
6
|
+
/** Icon when password is hidden (click to reveal). Default: Icon eye (lucide) */
|
|
7
|
+
hideIcon?: React.ReactNode;
|
|
8
|
+
/** Icon when password is visible (click to hide). Default: Icon eye-off (lucide) */
|
|
9
|
+
showIcon?: React.ReactNode;
|
|
10
|
+
};
|
|
11
|
+
export declare const PasswordInput: React.ForwardRefExoticComponent<Omit<InputProps, "type"> & {
|
|
12
|
+
/** Show toggle visibility button. Default: true */
|
|
13
|
+
showToggle?: boolean;
|
|
14
|
+
/** Icon when password is hidden (click to reveal). Default: Icon eye (lucide) */
|
|
15
|
+
hideIcon?: React.ReactNode;
|
|
16
|
+
/** Icon when password is visible (click to hide). Default: Icon eye-off (lucide) */
|
|
17
|
+
showIcon?: React.ReactNode;
|
|
18
|
+
} & React.RefAttributes<HTMLInputElement>>;
|
|
19
|
+
export default PasswordInput;
|
|
@@ -0,0 +1,396 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
declare const meta: {
|
|
3
|
+
title: string;
|
|
4
|
+
component: React.ForwardRefExoticComponent<Omit<import("../..").InputProps, "type"> & {
|
|
5
|
+
showToggle?: boolean;
|
|
6
|
+
hideIcon?: React.ReactNode;
|
|
7
|
+
showIcon?: React.ReactNode;
|
|
8
|
+
} & React.RefAttributes<HTMLInputElement>>;
|
|
9
|
+
tags: string[];
|
|
10
|
+
parameters: {
|
|
11
|
+
layout: string;
|
|
12
|
+
};
|
|
13
|
+
decorators: ((Story: import("@storybook/csf").PartialStoryFn<import("@storybook/react").ReactRenderer, {
|
|
14
|
+
variant?: "flat" | "outline" | "underline" | undefined;
|
|
15
|
+
suppressHydrationWarning?: boolean | undefined | undefined;
|
|
16
|
+
className?: string | undefined;
|
|
17
|
+
color?: string | undefined | undefined;
|
|
18
|
+
height?: number | string | undefined | undefined;
|
|
19
|
+
id?: string | undefined;
|
|
20
|
+
lang?: string | undefined | undefined;
|
|
21
|
+
max?: number | string | undefined | undefined;
|
|
22
|
+
min?: number | string | undefined | undefined;
|
|
23
|
+
name?: string | undefined | undefined;
|
|
24
|
+
style?: React.CSSProperties | undefined;
|
|
25
|
+
width?: number | string | undefined | undefined;
|
|
26
|
+
role?: React.AriaRole | undefined;
|
|
27
|
+
tabIndex?: number | undefined | undefined;
|
|
28
|
+
"aria-activedescendant"?: string | undefined | undefined;
|
|
29
|
+
"aria-atomic"?: (boolean | "true" | "false") | undefined;
|
|
30
|
+
"aria-autocomplete"?: "none" | "inline" | "list" | "both" | undefined | undefined;
|
|
31
|
+
"aria-braillelabel"?: string | undefined | undefined;
|
|
32
|
+
"aria-brailleroledescription"?: string | undefined | undefined;
|
|
33
|
+
"aria-busy"?: (boolean | "true" | "false") | undefined;
|
|
34
|
+
"aria-checked"?: boolean | "false" | "mixed" | "true" | undefined | undefined;
|
|
35
|
+
"aria-colcount"?: number | undefined | undefined;
|
|
36
|
+
"aria-colindex"?: number | undefined | undefined;
|
|
37
|
+
"aria-colindextext"?: string | undefined | undefined;
|
|
38
|
+
"aria-colspan"?: number | undefined | undefined;
|
|
39
|
+
"aria-controls"?: string | undefined | undefined;
|
|
40
|
+
"aria-current"?: boolean | "false" | "true" | "page" | "step" | "location" | "date" | "time" | undefined | undefined;
|
|
41
|
+
"aria-describedby"?: string | undefined | undefined;
|
|
42
|
+
"aria-description"?: string | undefined | undefined;
|
|
43
|
+
"aria-details"?: string | undefined | undefined;
|
|
44
|
+
"aria-disabled"?: (boolean | "true" | "false") | undefined;
|
|
45
|
+
"aria-dropeffect"?: "none" | "copy" | "execute" | "link" | "move" | "popup" | undefined | undefined;
|
|
46
|
+
"aria-errormessage"?: string | undefined | undefined;
|
|
47
|
+
"aria-expanded"?: (boolean | "true" | "false") | undefined;
|
|
48
|
+
"aria-flowto"?: string | undefined | undefined;
|
|
49
|
+
"aria-grabbed"?: (boolean | "true" | "false") | undefined;
|
|
50
|
+
"aria-haspopup"?: boolean | "false" | "true" | "menu" | "listbox" | "tree" | "grid" | "dialog" | undefined | undefined;
|
|
51
|
+
"aria-hidden"?: (boolean | "true" | "false") | undefined;
|
|
52
|
+
"aria-invalid"?: boolean | "false" | "true" | "grammar" | "spelling" | undefined | undefined;
|
|
53
|
+
"aria-keyshortcuts"?: string | undefined | undefined;
|
|
54
|
+
"aria-label"?: string | undefined | undefined;
|
|
55
|
+
"aria-labelledby"?: string | undefined | undefined;
|
|
56
|
+
"aria-level"?: number | undefined | undefined;
|
|
57
|
+
"aria-live"?: "off" | "assertive" | "polite" | undefined | undefined;
|
|
58
|
+
"aria-modal"?: (boolean | "true" | "false") | undefined;
|
|
59
|
+
"aria-multiline"?: (boolean | "true" | "false") | undefined;
|
|
60
|
+
"aria-multiselectable"?: (boolean | "true" | "false") | undefined;
|
|
61
|
+
"aria-orientation"?: "horizontal" | "vertical" | undefined | undefined;
|
|
62
|
+
"aria-owns"?: string | undefined | undefined;
|
|
63
|
+
"aria-placeholder"?: string | undefined | undefined;
|
|
64
|
+
"aria-posinset"?: number | undefined | undefined;
|
|
65
|
+
"aria-pressed"?: boolean | "false" | "mixed" | "true" | undefined | undefined;
|
|
66
|
+
"aria-readonly"?: (boolean | "true" | "false") | undefined;
|
|
67
|
+
"aria-relevant"?: "additions" | "additions removals" | "additions text" | "all" | "removals" | "removals additions" | "removals text" | "text" | "text additions" | "text removals" | undefined | undefined;
|
|
68
|
+
"aria-required"?: (boolean | "true" | "false") | undefined;
|
|
69
|
+
"aria-roledescription"?: string | undefined | undefined;
|
|
70
|
+
"aria-rowcount"?: number | undefined | undefined;
|
|
71
|
+
"aria-rowindex"?: number | undefined | undefined;
|
|
72
|
+
"aria-rowindextext"?: string | undefined | undefined;
|
|
73
|
+
"aria-rowspan"?: number | undefined | undefined;
|
|
74
|
+
"aria-selected"?: (boolean | "true" | "false") | undefined;
|
|
75
|
+
"aria-setsize"?: number | undefined | undefined;
|
|
76
|
+
"aria-sort"?: "none" | "ascending" | "descending" | "other" | undefined | undefined;
|
|
77
|
+
"aria-valuemax"?: number | undefined | undefined;
|
|
78
|
+
"aria-valuemin"?: number | undefined | undefined;
|
|
79
|
+
"aria-valuenow"?: number | undefined | undefined;
|
|
80
|
+
"aria-valuetext"?: string | undefined | undefined;
|
|
81
|
+
children?: React.ReactNode;
|
|
82
|
+
dangerouslySetInnerHTML?: {
|
|
83
|
+
__html: string | TrustedHTML;
|
|
84
|
+
} | undefined | undefined;
|
|
85
|
+
onCopy?: React.ClipboardEventHandler<HTMLInputElement> | undefined;
|
|
86
|
+
onCopyCapture?: React.ClipboardEventHandler<HTMLInputElement> | undefined;
|
|
87
|
+
onCut?: React.ClipboardEventHandler<HTMLInputElement> | undefined;
|
|
88
|
+
onCutCapture?: React.ClipboardEventHandler<HTMLInputElement> | undefined;
|
|
89
|
+
onPaste?: React.ClipboardEventHandler<HTMLInputElement> | undefined;
|
|
90
|
+
onPasteCapture?: React.ClipboardEventHandler<HTMLInputElement> | undefined;
|
|
91
|
+
onCompositionEnd?: React.CompositionEventHandler<HTMLInputElement> | undefined;
|
|
92
|
+
onCompositionEndCapture?: React.CompositionEventHandler<HTMLInputElement> | undefined;
|
|
93
|
+
onCompositionStart?: React.CompositionEventHandler<HTMLInputElement> | undefined;
|
|
94
|
+
onCompositionStartCapture?: React.CompositionEventHandler<HTMLInputElement> | undefined;
|
|
95
|
+
onCompositionUpdate?: React.CompositionEventHandler<HTMLInputElement> | undefined;
|
|
96
|
+
onCompositionUpdateCapture?: React.CompositionEventHandler<HTMLInputElement> | undefined;
|
|
97
|
+
onFocus?: React.FocusEventHandler<HTMLInputElement> | undefined;
|
|
98
|
+
onFocusCapture?: React.FocusEventHandler<HTMLInputElement> | undefined;
|
|
99
|
+
onBlur?: React.FocusEventHandler<HTMLInputElement> | undefined;
|
|
100
|
+
onBlurCapture?: React.FocusEventHandler<HTMLInputElement> | undefined;
|
|
101
|
+
onChange?: React.ChangeEventHandler<HTMLInputElement> | undefined;
|
|
102
|
+
onChangeCapture?: React.FormEventHandler<HTMLInputElement> | undefined;
|
|
103
|
+
onBeforeInput?: React.FormEventHandler<HTMLInputElement> | undefined;
|
|
104
|
+
onBeforeInputCapture?: React.FormEventHandler<HTMLInputElement> | undefined;
|
|
105
|
+
onInput?: React.FormEventHandler<HTMLInputElement> | undefined;
|
|
106
|
+
onInputCapture?: React.FormEventHandler<HTMLInputElement> | undefined;
|
|
107
|
+
onReset?: React.FormEventHandler<HTMLInputElement> | undefined;
|
|
108
|
+
onResetCapture?: React.FormEventHandler<HTMLInputElement> | undefined;
|
|
109
|
+
onSubmit?: React.FormEventHandler<HTMLInputElement> | undefined;
|
|
110
|
+
onSubmitCapture?: React.FormEventHandler<HTMLInputElement> | undefined;
|
|
111
|
+
onInvalid?: React.FormEventHandler<HTMLInputElement> | undefined;
|
|
112
|
+
onInvalidCapture?: React.FormEventHandler<HTMLInputElement> | undefined;
|
|
113
|
+
onLoad?: React.ReactEventHandler<HTMLInputElement> | undefined;
|
|
114
|
+
onLoadCapture?: React.ReactEventHandler<HTMLInputElement> | undefined;
|
|
115
|
+
onError?: React.ReactEventHandler<HTMLInputElement> | undefined;
|
|
116
|
+
onErrorCapture?: React.ReactEventHandler<HTMLInputElement> | undefined;
|
|
117
|
+
onKeyDown?: React.KeyboardEventHandler<HTMLInputElement> | undefined;
|
|
118
|
+
onKeyDownCapture?: React.KeyboardEventHandler<HTMLInputElement> | undefined;
|
|
119
|
+
onKeyPress?: React.KeyboardEventHandler<HTMLInputElement> | undefined;
|
|
120
|
+
onKeyPressCapture?: React.KeyboardEventHandler<HTMLInputElement> | undefined;
|
|
121
|
+
onKeyUp?: React.KeyboardEventHandler<HTMLInputElement> | undefined;
|
|
122
|
+
onKeyUpCapture?: React.KeyboardEventHandler<HTMLInputElement> | undefined;
|
|
123
|
+
onAbort?: React.ReactEventHandler<HTMLInputElement> | undefined;
|
|
124
|
+
onAbortCapture?: React.ReactEventHandler<HTMLInputElement> | undefined;
|
|
125
|
+
onCanPlay?: React.ReactEventHandler<HTMLInputElement> | undefined;
|
|
126
|
+
onCanPlayCapture?: React.ReactEventHandler<HTMLInputElement> | undefined;
|
|
127
|
+
onCanPlayThrough?: React.ReactEventHandler<HTMLInputElement> | undefined;
|
|
128
|
+
onCanPlayThroughCapture?: React.ReactEventHandler<HTMLInputElement> | undefined;
|
|
129
|
+
onDurationChange?: React.ReactEventHandler<HTMLInputElement> | undefined;
|
|
130
|
+
onDurationChangeCapture?: React.ReactEventHandler<HTMLInputElement> | undefined;
|
|
131
|
+
onEmptied?: React.ReactEventHandler<HTMLInputElement> | undefined;
|
|
132
|
+
onEmptiedCapture?: React.ReactEventHandler<HTMLInputElement> | undefined;
|
|
133
|
+
onEncrypted?: React.ReactEventHandler<HTMLInputElement> | undefined;
|
|
134
|
+
onEncryptedCapture?: React.ReactEventHandler<HTMLInputElement> | undefined;
|
|
135
|
+
onEnded?: React.ReactEventHandler<HTMLInputElement> | undefined;
|
|
136
|
+
onEndedCapture?: React.ReactEventHandler<HTMLInputElement> | undefined;
|
|
137
|
+
onLoadedData?: React.ReactEventHandler<HTMLInputElement> | undefined;
|
|
138
|
+
onLoadedDataCapture?: React.ReactEventHandler<HTMLInputElement> | undefined;
|
|
139
|
+
onLoadedMetadata?: React.ReactEventHandler<HTMLInputElement> | undefined;
|
|
140
|
+
onLoadedMetadataCapture?: React.ReactEventHandler<HTMLInputElement> | undefined;
|
|
141
|
+
onLoadStart?: React.ReactEventHandler<HTMLInputElement> | undefined;
|
|
142
|
+
onLoadStartCapture?: React.ReactEventHandler<HTMLInputElement> | undefined;
|
|
143
|
+
onPause?: React.ReactEventHandler<HTMLInputElement> | undefined;
|
|
144
|
+
onPauseCapture?: React.ReactEventHandler<HTMLInputElement> | undefined;
|
|
145
|
+
onPlay?: React.ReactEventHandler<HTMLInputElement> | undefined;
|
|
146
|
+
onPlayCapture?: React.ReactEventHandler<HTMLInputElement> | undefined;
|
|
147
|
+
onPlaying?: React.ReactEventHandler<HTMLInputElement> | undefined;
|
|
148
|
+
onPlayingCapture?: React.ReactEventHandler<HTMLInputElement> | undefined;
|
|
149
|
+
onProgress?: React.ReactEventHandler<HTMLInputElement> | undefined;
|
|
150
|
+
onProgressCapture?: React.ReactEventHandler<HTMLInputElement> | undefined;
|
|
151
|
+
onRateChange?: React.ReactEventHandler<HTMLInputElement> | undefined;
|
|
152
|
+
onRateChangeCapture?: React.ReactEventHandler<HTMLInputElement> | undefined;
|
|
153
|
+
onResize?: React.ReactEventHandler<HTMLInputElement> | undefined;
|
|
154
|
+
onResizeCapture?: React.ReactEventHandler<HTMLInputElement> | undefined;
|
|
155
|
+
onSeeked?: React.ReactEventHandler<HTMLInputElement> | undefined;
|
|
156
|
+
onSeekedCapture?: React.ReactEventHandler<HTMLInputElement> | undefined;
|
|
157
|
+
onSeeking?: React.ReactEventHandler<HTMLInputElement> | undefined;
|
|
158
|
+
onSeekingCapture?: React.ReactEventHandler<HTMLInputElement> | undefined;
|
|
159
|
+
onStalled?: React.ReactEventHandler<HTMLInputElement> | undefined;
|
|
160
|
+
onStalledCapture?: React.ReactEventHandler<HTMLInputElement> | undefined;
|
|
161
|
+
onSuspend?: React.ReactEventHandler<HTMLInputElement> | undefined;
|
|
162
|
+
onSuspendCapture?: React.ReactEventHandler<HTMLInputElement> | undefined;
|
|
163
|
+
onTimeUpdate?: React.ReactEventHandler<HTMLInputElement> | undefined;
|
|
164
|
+
onTimeUpdateCapture?: React.ReactEventHandler<HTMLInputElement> | undefined;
|
|
165
|
+
onVolumeChange?: React.ReactEventHandler<HTMLInputElement> | undefined;
|
|
166
|
+
onVolumeChangeCapture?: React.ReactEventHandler<HTMLInputElement> | undefined;
|
|
167
|
+
onWaiting?: React.ReactEventHandler<HTMLInputElement> | undefined;
|
|
168
|
+
onWaitingCapture?: React.ReactEventHandler<HTMLInputElement> | undefined;
|
|
169
|
+
onAuxClick?: React.MouseEventHandler<HTMLInputElement> | undefined;
|
|
170
|
+
onAuxClickCapture?: React.MouseEventHandler<HTMLInputElement> | undefined;
|
|
171
|
+
onClick?: React.MouseEventHandler<HTMLInputElement> | undefined;
|
|
172
|
+
onClickCapture?: React.MouseEventHandler<HTMLInputElement> | undefined;
|
|
173
|
+
onContextMenu?: React.MouseEventHandler<HTMLInputElement> | undefined;
|
|
174
|
+
onContextMenuCapture?: React.MouseEventHandler<HTMLInputElement> | undefined;
|
|
175
|
+
onDoubleClick?: React.MouseEventHandler<HTMLInputElement> | undefined;
|
|
176
|
+
onDoubleClickCapture?: React.MouseEventHandler<HTMLInputElement> | undefined;
|
|
177
|
+
onDrag?: React.DragEventHandler<HTMLInputElement> | undefined;
|
|
178
|
+
onDragCapture?: React.DragEventHandler<HTMLInputElement> | undefined;
|
|
179
|
+
onDragEnd?: React.DragEventHandler<HTMLInputElement> | undefined;
|
|
180
|
+
onDragEndCapture?: React.DragEventHandler<HTMLInputElement> | undefined;
|
|
181
|
+
onDragEnter?: React.DragEventHandler<HTMLInputElement> | undefined;
|
|
182
|
+
onDragEnterCapture?: React.DragEventHandler<HTMLInputElement> | undefined;
|
|
183
|
+
onDragExit?: React.DragEventHandler<HTMLInputElement> | undefined;
|
|
184
|
+
onDragExitCapture?: React.DragEventHandler<HTMLInputElement> | undefined;
|
|
185
|
+
onDragLeave?: React.DragEventHandler<HTMLInputElement> | undefined;
|
|
186
|
+
onDragLeaveCapture?: React.DragEventHandler<HTMLInputElement> | undefined;
|
|
187
|
+
onDragOver?: React.DragEventHandler<HTMLInputElement> | undefined;
|
|
188
|
+
onDragOverCapture?: React.DragEventHandler<HTMLInputElement> | undefined;
|
|
189
|
+
onDragStart?: React.DragEventHandler<HTMLInputElement> | undefined;
|
|
190
|
+
onDragStartCapture?: React.DragEventHandler<HTMLInputElement> | undefined;
|
|
191
|
+
onDrop?: React.DragEventHandler<HTMLInputElement> | undefined;
|
|
192
|
+
onDropCapture?: React.DragEventHandler<HTMLInputElement> | undefined;
|
|
193
|
+
onMouseDown?: React.MouseEventHandler<HTMLInputElement> | undefined;
|
|
194
|
+
onMouseDownCapture?: React.MouseEventHandler<HTMLInputElement> | undefined;
|
|
195
|
+
onMouseEnter?: React.MouseEventHandler<HTMLInputElement> | undefined;
|
|
196
|
+
onMouseLeave?: React.MouseEventHandler<HTMLInputElement> | undefined;
|
|
197
|
+
onMouseMove?: React.MouseEventHandler<HTMLInputElement> | undefined;
|
|
198
|
+
onMouseMoveCapture?: React.MouseEventHandler<HTMLInputElement> | undefined;
|
|
199
|
+
onMouseOut?: React.MouseEventHandler<HTMLInputElement> | undefined;
|
|
200
|
+
onMouseOutCapture?: React.MouseEventHandler<HTMLInputElement> | undefined;
|
|
201
|
+
onMouseOver?: React.MouseEventHandler<HTMLInputElement> | undefined;
|
|
202
|
+
onMouseOverCapture?: React.MouseEventHandler<HTMLInputElement> | undefined;
|
|
203
|
+
onMouseUp?: React.MouseEventHandler<HTMLInputElement> | undefined;
|
|
204
|
+
onMouseUpCapture?: React.MouseEventHandler<HTMLInputElement> | undefined;
|
|
205
|
+
onSelect?: React.ReactEventHandler<HTMLInputElement> | undefined;
|
|
206
|
+
onSelectCapture?: React.ReactEventHandler<HTMLInputElement> | undefined;
|
|
207
|
+
onTouchCancel?: React.TouchEventHandler<HTMLInputElement> | undefined;
|
|
208
|
+
onTouchCancelCapture?: React.TouchEventHandler<HTMLInputElement> | undefined;
|
|
209
|
+
onTouchEnd?: React.TouchEventHandler<HTMLInputElement> | undefined;
|
|
210
|
+
onTouchEndCapture?: React.TouchEventHandler<HTMLInputElement> | undefined;
|
|
211
|
+
onTouchMove?: React.TouchEventHandler<HTMLInputElement> | undefined;
|
|
212
|
+
onTouchMoveCapture?: React.TouchEventHandler<HTMLInputElement> | undefined;
|
|
213
|
+
onTouchStart?: React.TouchEventHandler<HTMLInputElement> | undefined;
|
|
214
|
+
onTouchStartCapture?: React.TouchEventHandler<HTMLInputElement> | undefined;
|
|
215
|
+
onPointerDown?: React.PointerEventHandler<HTMLInputElement> | undefined;
|
|
216
|
+
onPointerDownCapture?: React.PointerEventHandler<HTMLInputElement> | undefined;
|
|
217
|
+
onPointerMove?: React.PointerEventHandler<HTMLInputElement> | undefined;
|
|
218
|
+
onPointerMoveCapture?: React.PointerEventHandler<HTMLInputElement> | undefined;
|
|
219
|
+
onPointerUp?: React.PointerEventHandler<HTMLInputElement> | undefined;
|
|
220
|
+
onPointerUpCapture?: React.PointerEventHandler<HTMLInputElement> | undefined;
|
|
221
|
+
onPointerCancel?: React.PointerEventHandler<HTMLInputElement> | undefined;
|
|
222
|
+
onPointerCancelCapture?: React.PointerEventHandler<HTMLInputElement> | undefined;
|
|
223
|
+
onPointerEnter?: React.PointerEventHandler<HTMLInputElement> | undefined;
|
|
224
|
+
onPointerLeave?: React.PointerEventHandler<HTMLInputElement> | undefined;
|
|
225
|
+
onPointerOver?: React.PointerEventHandler<HTMLInputElement> | undefined;
|
|
226
|
+
onPointerOverCapture?: React.PointerEventHandler<HTMLInputElement> | undefined;
|
|
227
|
+
onPointerOut?: React.PointerEventHandler<HTMLInputElement> | undefined;
|
|
228
|
+
onPointerOutCapture?: React.PointerEventHandler<HTMLInputElement> | undefined;
|
|
229
|
+
onGotPointerCapture?: React.PointerEventHandler<HTMLInputElement> | undefined;
|
|
230
|
+
onGotPointerCaptureCapture?: React.PointerEventHandler<HTMLInputElement> | undefined;
|
|
231
|
+
onLostPointerCapture?: React.PointerEventHandler<HTMLInputElement> | undefined;
|
|
232
|
+
onLostPointerCaptureCapture?: React.PointerEventHandler<HTMLInputElement> | undefined;
|
|
233
|
+
onScroll?: React.UIEventHandler<HTMLInputElement> | undefined;
|
|
234
|
+
onScrollCapture?: React.UIEventHandler<HTMLInputElement> | undefined;
|
|
235
|
+
onWheel?: React.WheelEventHandler<HTMLInputElement> | undefined;
|
|
236
|
+
onWheelCapture?: React.WheelEventHandler<HTMLInputElement> | undefined;
|
|
237
|
+
onAnimationStart?: React.AnimationEventHandler<HTMLInputElement> | undefined;
|
|
238
|
+
onAnimationStartCapture?: React.AnimationEventHandler<HTMLInputElement> | undefined;
|
|
239
|
+
onAnimationEnd?: React.AnimationEventHandler<HTMLInputElement> | undefined;
|
|
240
|
+
onAnimationEndCapture?: React.AnimationEventHandler<HTMLInputElement> | undefined;
|
|
241
|
+
onAnimationIteration?: React.AnimationEventHandler<HTMLInputElement> | undefined;
|
|
242
|
+
onAnimationIterationCapture?: React.AnimationEventHandler<HTMLInputElement> | undefined;
|
|
243
|
+
onTransitionEnd?: React.TransitionEventHandler<HTMLInputElement> | undefined;
|
|
244
|
+
onTransitionEndCapture?: React.TransitionEventHandler<HTMLInputElement> | undefined;
|
|
245
|
+
form?: string | undefined | undefined;
|
|
246
|
+
list?: string | undefined | undefined;
|
|
247
|
+
step?: number | string | undefined | undefined;
|
|
248
|
+
error?: boolean | undefined;
|
|
249
|
+
size?: "sm" | "md" | "lg" | undefined;
|
|
250
|
+
disabled?: boolean | undefined;
|
|
251
|
+
fullwidth?: boolean | undefined;
|
|
252
|
+
title?: string | undefined | undefined;
|
|
253
|
+
startIcon?: React.ReactNode;
|
|
254
|
+
endIcon?: React.ReactNode;
|
|
255
|
+
formAction?: string | undefined;
|
|
256
|
+
formEncType?: string | undefined | undefined;
|
|
257
|
+
formMethod?: string | undefined | undefined;
|
|
258
|
+
formNoValidate?: boolean | undefined | undefined;
|
|
259
|
+
formTarget?: string | undefined | undefined;
|
|
260
|
+
value?: string | number | readonly string[] | undefined;
|
|
261
|
+
defaultChecked?: boolean | undefined | undefined;
|
|
262
|
+
defaultValue?: string | number | readonly string[] | undefined;
|
|
263
|
+
suppressContentEditableWarning?: boolean | undefined | undefined;
|
|
264
|
+
accessKey?: string | undefined | undefined;
|
|
265
|
+
autoCapitalize?: "off" | "none" | "on" | "sentences" | "words" | "characters" | undefined | (string & {}) | undefined;
|
|
266
|
+
autoFocus?: boolean | undefined | undefined;
|
|
267
|
+
contentEditable?: "inherit" | (boolean | "true" | "false") | "plaintext-only" | undefined;
|
|
268
|
+
contextMenu?: string | undefined | undefined;
|
|
269
|
+
dir?: string | undefined | undefined;
|
|
270
|
+
draggable?: (boolean | "true" | "false") | undefined;
|
|
271
|
+
enterKeyHint?: "enter" | "done" | "go" | "next" | "previous" | "search" | "send" | undefined | undefined;
|
|
272
|
+
hidden?: boolean | undefined | undefined;
|
|
273
|
+
nonce?: string | undefined | undefined;
|
|
274
|
+
slot?: string | undefined | undefined;
|
|
275
|
+
spellCheck?: (boolean | "true" | "false") | undefined;
|
|
276
|
+
translate?: "yes" | "no" | undefined | undefined;
|
|
277
|
+
radioGroup?: string | undefined | undefined;
|
|
278
|
+
about?: string | undefined | undefined;
|
|
279
|
+
content?: string | undefined | undefined;
|
|
280
|
+
datatype?: string | undefined | undefined;
|
|
281
|
+
inlist?: any;
|
|
282
|
+
prefix?: string | undefined | undefined;
|
|
283
|
+
property?: string | undefined | undefined;
|
|
284
|
+
rel?: string | undefined | undefined;
|
|
285
|
+
resource?: string | undefined | undefined;
|
|
286
|
+
rev?: string | undefined | undefined;
|
|
287
|
+
typeof?: string | undefined | undefined;
|
|
288
|
+
vocab?: string | undefined | undefined;
|
|
289
|
+
autoCorrect?: string | undefined | undefined;
|
|
290
|
+
autoSave?: string | undefined | undefined;
|
|
291
|
+
itemProp?: string | undefined | undefined;
|
|
292
|
+
itemScope?: boolean | undefined | undefined;
|
|
293
|
+
itemType?: string | undefined | undefined;
|
|
294
|
+
itemID?: string | undefined | undefined;
|
|
295
|
+
itemRef?: string | undefined | undefined;
|
|
296
|
+
results?: number | undefined | undefined;
|
|
297
|
+
security?: string | undefined | undefined;
|
|
298
|
+
unselectable?: "on" | "off" | undefined | undefined;
|
|
299
|
+
inputMode?: "none" | "text" | "tel" | "url" | "email" | "numeric" | "decimal" | "search" | undefined | undefined;
|
|
300
|
+
is?: string | undefined | undefined;
|
|
301
|
+
rounded?: "none" | "normal" | "full" | undefined;
|
|
302
|
+
hasClearIcon?: boolean | undefined;
|
|
303
|
+
hasSearchIcon?: boolean | undefined;
|
|
304
|
+
isFloatingLabel?: boolean | undefined;
|
|
305
|
+
accept?: string | undefined | undefined;
|
|
306
|
+
alt?: string | undefined | undefined;
|
|
307
|
+
autoComplete?: React.HTMLInputAutoCompleteAttribute | undefined;
|
|
308
|
+
capture?: boolean | "user" | "environment" | undefined | undefined;
|
|
309
|
+
checked?: boolean | undefined | undefined;
|
|
310
|
+
maxLength?: number | undefined | undefined;
|
|
311
|
+
minLength?: number | undefined | undefined;
|
|
312
|
+
multiple?: boolean | undefined | undefined;
|
|
313
|
+
pattern?: string | undefined | undefined;
|
|
314
|
+
placeholder?: string | undefined | undefined;
|
|
315
|
+
readOnly?: boolean | undefined | undefined;
|
|
316
|
+
required?: boolean | undefined;
|
|
317
|
+
src?: string | undefined | undefined;
|
|
318
|
+
label?: string | undefined;
|
|
319
|
+
iconMode?: "flat" | "solid" | undefined;
|
|
320
|
+
helperText?: string | undefined;
|
|
321
|
+
errorMessage?: string | undefined;
|
|
322
|
+
keepCloseIconOnValue?: boolean | undefined;
|
|
323
|
+
keepFooterSpace?: boolean | undefined;
|
|
324
|
+
labelClassName?: string | undefined;
|
|
325
|
+
classes?: {
|
|
326
|
+
iconWrapper?: string;
|
|
327
|
+
iconSearchWrapper?: string;
|
|
328
|
+
icon?: string;
|
|
329
|
+
startIconWrapper?: string;
|
|
330
|
+
endIconWrapper?: string;
|
|
331
|
+
} | undefined;
|
|
332
|
+
onClickStartIcon?: (() => void) | undefined;
|
|
333
|
+
onClickEndIcon?: (() => void) | undefined;
|
|
334
|
+
renderStartIcon?: (() => React.ReactNode) | undefined;
|
|
335
|
+
renderEndIcon?: (() => React.ReactNode) | undefined;
|
|
336
|
+
showToggle?: boolean | undefined;
|
|
337
|
+
hideIcon?: React.ReactNode;
|
|
338
|
+
showIcon?: React.ReactNode;
|
|
339
|
+
ref?: React.LegacyRef<HTMLInputElement> | undefined;
|
|
340
|
+
key?: React.Key | null | undefined;
|
|
341
|
+
}>) => import("react/jsx-runtime").JSX.Element)[];
|
|
342
|
+
};
|
|
343
|
+
export default meta;
|
|
344
|
+
export declare const Default: {
|
|
345
|
+
args: {
|
|
346
|
+
label: string;
|
|
347
|
+
placeholder: string;
|
|
348
|
+
fullwidth: boolean;
|
|
349
|
+
};
|
|
350
|
+
render: (args: {}) => import("react/jsx-runtime").JSX.Element;
|
|
351
|
+
};
|
|
352
|
+
export declare const WithHelperText: {
|
|
353
|
+
args: {
|
|
354
|
+
label: string;
|
|
355
|
+
placeholder: string;
|
|
356
|
+
helperText: string;
|
|
357
|
+
fullwidth: boolean;
|
|
358
|
+
};
|
|
359
|
+
render: (args: {}) => import("react/jsx-runtime").JSX.Element;
|
|
360
|
+
};
|
|
361
|
+
export declare const WithError: {
|
|
362
|
+
args: {
|
|
363
|
+
label: string;
|
|
364
|
+
placeholder: string;
|
|
365
|
+
error: boolean;
|
|
366
|
+
errorMessage: string;
|
|
367
|
+
fullwidth: boolean;
|
|
368
|
+
};
|
|
369
|
+
render: (args: {}) => import("react/jsx-runtime").JSX.Element;
|
|
370
|
+
};
|
|
371
|
+
export declare const Disabled: {
|
|
372
|
+
args: {
|
|
373
|
+
label: string;
|
|
374
|
+
value: string;
|
|
375
|
+
disabled: boolean;
|
|
376
|
+
fullwidth: boolean;
|
|
377
|
+
};
|
|
378
|
+
render: (args: {}) => import("react/jsx-runtime").JSX.Element;
|
|
379
|
+
};
|
|
380
|
+
export declare const CustomIcons: {
|
|
381
|
+
args: {
|
|
382
|
+
label: string;
|
|
383
|
+
placeholder: string;
|
|
384
|
+
fullwidth: boolean;
|
|
385
|
+
};
|
|
386
|
+
render: (args: {}) => import("react/jsx-runtime").JSX.Element;
|
|
387
|
+
};
|
|
388
|
+
export declare const WithoutToggle: {
|
|
389
|
+
args: {
|
|
390
|
+
label: string;
|
|
391
|
+
placeholder: string;
|
|
392
|
+
showToggle: boolean;
|
|
393
|
+
fullwidth: boolean;
|
|
394
|
+
};
|
|
395
|
+
render: (args: {}) => import("react/jsx-runtime").JSX.Element;
|
|
396
|
+
};
|
|
@@ -345,6 +345,7 @@ declare const meta: {
|
|
|
345
345
|
src?: string | undefined | undefined;
|
|
346
346
|
iconMode?: "flat" | "solid" | undefined;
|
|
347
347
|
keepCloseIconOnValue?: boolean | undefined;
|
|
348
|
+
keepFooterSpace?: boolean | undefined;
|
|
348
349
|
labelClassName?: string | undefined;
|
|
349
350
|
classes?: {
|
|
350
351
|
iconWrapper?: string;
|
|
@@ -15,6 +15,7 @@ export type InputProps = {
|
|
|
15
15
|
required?: boolean;
|
|
16
16
|
isFloatingLabel?: boolean;
|
|
17
17
|
keepCloseIconOnValue?: boolean;
|
|
18
|
+
keepFooterSpace?: boolean;
|
|
18
19
|
hasClearIcon?: boolean;
|
|
19
20
|
hasSearchIcon?: boolean;
|
|
20
21
|
startIcon?: ReactNode;
|
|
@@ -49,6 +50,7 @@ export declare const TextInput: React.ForwardRefExoticComponent<{
|
|
|
49
50
|
required?: boolean;
|
|
50
51
|
isFloatingLabel?: boolean;
|
|
51
52
|
keepCloseIconOnValue?: boolean;
|
|
53
|
+
keepFooterSpace?: boolean;
|
|
52
54
|
hasClearIcon?: boolean;
|
|
53
55
|
hasSearchIcon?: boolean;
|
|
54
56
|
startIcon?: ReactNode;
|