@salutejs/plasma-new-hope 0.188.0-canary.1550.11767527974.0 → 0.188.0-canary.1550.11777193712.0
Sign up to get free protection for your applications and to get access to all the features.
- package/cjs/components/Pagination/Pagination.css +2 -2
- package/cjs/components/Pagination/ui/PaginationSelectPerPage/PaginationSelectPerPage.css +2 -2
- package/cjs/components/Select/Select.css +2 -2
- package/cjs/components/Select/ui/Inner/Inner.css +2 -2
- package/cjs/components/Select/ui/Inner/ui/Item/Item.css +2 -2
- package/cjs/components/Select/ui/Target/Target.css +2 -2
- package/cjs/components/Select/ui/Target/ui/Textfield/Textfield.css +2 -2
- package/cjs/components/Select/ui/Target/ui/Textfield/Textfield.styles.js +7 -7
- package/cjs/components/Select/ui/Target/ui/Textfield/Textfield.styles.js.map +1 -1
- package/cjs/components/Select/ui/Target/ui/Textfield/Textfield.styles_xyln0f.css +3 -0
- package/cjs/index.css +2 -2
- package/emotion/cjs/components/Select/ui/Target/ui/Textfield/Textfield.styles.js +3 -3
- package/emotion/es/components/Select/ui/Target/ui/Textfield/Textfield.styles.js +3 -3
- package/es/components/Pagination/Pagination.css +2 -2
- package/es/components/Pagination/ui/PaginationSelectPerPage/PaginationSelectPerPage.css +2 -2
- package/es/components/Select/Select.css +2 -2
- package/es/components/Select/ui/Inner/Inner.css +2 -2
- package/es/components/Select/ui/Inner/ui/Item/Item.css +2 -2
- package/es/components/Select/ui/Target/Target.css +2 -2
- package/es/components/Select/ui/Target/ui/Textfield/Textfield.css +2 -2
- package/es/components/Select/ui/Target/ui/Textfield/Textfield.styles.js +7 -7
- package/es/components/Select/ui/Target/ui/Textfield/Textfield.styles.js.map +1 -1
- package/es/components/Select/ui/Target/ui/Textfield/Textfield.styles_xyln0f.css +3 -0
- package/es/index.css +2 -2
- package/package.json +2 -2
- package/styled-components/cjs/components/Select/ui/Target/ui/Textfield/Textfield.styles.js +2 -2
- package/styled-components/es/components/Select/ui/Target/ui/Textfield/Textfield.styles.js +2 -2
- package/types/components/Pagination/ui/PaginationSelectPerPage/PaginationSelectPerPage.styles.d.ts +32 -32
- package/types/components/Select/Select.d.ts +2 -2
- package/types/components/Select/Select.d.ts.map +1 -1
- package/types/components/Select/Select.types.d.ts +14 -4
- package/types/components/Select/Select.types.d.ts.map +1 -1
- package/types/components/Select/index.d.ts +1 -1
- package/types/components/Select/index.d.ts.map +1 -1
- package/types/components/Select/ui/Target/Target.d.ts +2 -2
- package/types/components/Select/ui/Target/ui/Textfield/Textfield.styles.d.ts.map +1 -1
- package/types/components/Tabs/index.d.ts +2 -2
- package/types/components/Tabs/index.d.ts.map +1 -1
- package/types/examples/plasma_b2c/components/Select/Select.d.ts +32 -32
- package/types/examples/plasma_web/components/Select/Select.d.ts +32 -32
- package/cjs/components/Select/ui/Target/ui/Textfield/Textfield.styles_1mneb9u.css +0 -3
- package/es/components/Select/ui/Target/ui/Textfield/Textfield.styles_1mneb9u.css +0 -3
@@ -45,29 +45,29 @@ declare const Select: import("react").FunctionComponent<import("../../../../engi
|
|
45
45
|
onChange?: ((value: any) => void) | undefined;
|
46
46
|
listOverflow?: import("csstype").Property.Overflow | undefined;
|
47
47
|
listHeight?: import("csstype").Property.Height<string | number> | undefined;
|
48
|
-
status?: "error" | "success" | "warning" | undefined;
|
49
48
|
placeholder?: string | undefined;
|
50
49
|
helperText?: string | undefined;
|
51
50
|
disabled?: boolean | undefined;
|
52
|
-
items?: import("
|
53
|
-
onItemSelect?: ((e: import("
|
54
|
-
hasItems?: boolean | undefined;
|
51
|
+
items?: import("../../../..").DropdownNodeSelect[] | undefined;
|
52
|
+
onItemSelect?: ((e: import("../../../..").DropdownNodeSelect, event: import("react").SyntheticEvent<Element, Event>) => void) | undefined;
|
55
53
|
children?: undefined;
|
56
|
-
isOpen?: boolean | undefined;
|
57
54
|
isTargetAmount?: boolean | undefined;
|
58
|
-
renderTarget?: ((item: import("
|
55
|
+
renderTarget?: ((item: import("../../../..").DropdownNodeSelect | import("../../../..").DropdownNodeSelect[]) => import("react").ReactNode) | undefined;
|
59
56
|
placement?: ("auto" | "left" | "right" | "top" | "bottom") | ("left" | "right" | "top" | "bottom")[] | undefined;
|
60
57
|
label?: string | undefined;
|
61
58
|
onScrollBottom?: ((e: import("react").UIEvent<HTMLUListElement, UIEvent>) => void) | undefined;
|
62
59
|
variant?: "normal" | "tight" | undefined;
|
63
60
|
listWidth?: import("csstype").Property.Width<string | number> | undefined;
|
64
61
|
portal?: string | import("react").RefObject<HTMLElement> | undefined;
|
65
|
-
renderValue?: ((item: import("
|
66
|
-
renderItem?: ((item: import("
|
62
|
+
renderValue?: ((item: import("../../../..").DropdownNodeSelect) => string) | undefined;
|
63
|
+
renderItem?: ((item: import("../../../..").DropdownNodeSelect) => import("react").ReactNode) | undefined;
|
67
64
|
closeAfterSelect?: boolean | undefined;
|
68
65
|
size?: string | undefined;
|
69
66
|
view?: string | undefined;
|
70
67
|
chipView?: string | undefined;
|
68
|
+
status?: "error" | "success" | "warning" | undefined;
|
69
|
+
hasItems?: boolean | undefined;
|
70
|
+
isOpen?: boolean | undefined;
|
71
71
|
} & Omit<import("react").ButtonHTMLAttributes<HTMLButtonElement>, "onChange" | "onResize" | "onResizeCapture" | "nonce" | "value"> & import("react").RefAttributes<HTMLButtonElement>) | ({
|
72
72
|
target?: "textfield-like" | undefined;
|
73
73
|
view?: "default" | "warning" | "positive" | "negative" | undefined;
|
@@ -83,29 +83,29 @@ declare const Select: import("react").FunctionComponent<import("../../../../engi
|
|
83
83
|
onChange?: ((value: any) => void) | undefined;
|
84
84
|
listOverflow?: import("csstype").Property.Overflow | undefined;
|
85
85
|
listHeight?: import("csstype").Property.Height<string | number> | undefined;
|
86
|
-
status?: "error" | "success" | "warning" | undefined;
|
87
86
|
placeholder?: string | undefined;
|
88
87
|
helperText?: string | undefined;
|
89
88
|
disabled?: boolean | undefined;
|
90
|
-
items?: import("
|
91
|
-
onItemSelect?: ((e: import("
|
92
|
-
hasItems?: boolean | undefined;
|
89
|
+
items?: import("../../../..").DropdownNodeSelect[] | undefined;
|
90
|
+
onItemSelect?: ((e: import("../../../..").DropdownNodeSelect, event: import("react").SyntheticEvent<Element, Event>) => void) | undefined;
|
93
91
|
children?: undefined;
|
94
|
-
isOpen?: boolean | undefined;
|
95
92
|
isTargetAmount?: boolean | undefined;
|
96
|
-
renderTarget?: ((item: import("
|
93
|
+
renderTarget?: ((item: import("../../../..").DropdownNodeSelect | import("../../../..").DropdownNodeSelect[]) => import("react").ReactNode) | undefined;
|
97
94
|
placement?: ("auto" | "left" | "right" | "top" | "bottom") | ("left" | "right" | "top" | "bottom")[] | undefined;
|
98
95
|
label?: string | undefined;
|
99
96
|
onScrollBottom?: ((e: import("react").UIEvent<HTMLUListElement, UIEvent>) => void) | undefined;
|
100
97
|
variant?: "normal" | "tight" | undefined;
|
101
98
|
listWidth?: import("csstype").Property.Width<string | number> | undefined;
|
102
99
|
portal?: string | import("react").RefObject<HTMLElement> | undefined;
|
103
|
-
renderValue?: ((item: import("
|
104
|
-
renderItem?: ((item: import("
|
100
|
+
renderValue?: ((item: import("../../../..").DropdownNodeSelect) => string) | undefined;
|
101
|
+
renderItem?: ((item: import("../../../..").DropdownNodeSelect) => import("react").ReactNode) | undefined;
|
105
102
|
closeAfterSelect?: boolean | undefined;
|
106
103
|
size?: string | undefined;
|
107
104
|
view?: string | undefined;
|
108
105
|
chipView?: string | undefined;
|
106
|
+
status?: "error" | "success" | "warning" | undefined;
|
107
|
+
hasItems?: boolean | undefined;
|
108
|
+
isOpen?: boolean | undefined;
|
109
109
|
} & Omit<import("react").ButtonHTMLAttributes<HTMLButtonElement>, "onChange" | "onResize" | "onResizeCapture" | "nonce" | "value"> & import("react").RefAttributes<HTMLButtonElement>) | ({
|
110
110
|
target?: "button-like" | undefined;
|
111
111
|
view?: "default" | "black" | "white" | "dark" | "clear" | "accent" | "secondary" | "warning" | "positive" | "negative" | undefined;
|
@@ -121,29 +121,29 @@ declare const Select: import("react").FunctionComponent<import("../../../../engi
|
|
121
121
|
onChange?: ((value: any) => void) | undefined;
|
122
122
|
listOverflow?: import("csstype").Property.Overflow | undefined;
|
123
123
|
listHeight?: import("csstype").Property.Height<string | number> | undefined;
|
124
|
-
status?: "error" | "success" | "warning" | undefined;
|
125
124
|
placeholder?: string | undefined;
|
126
125
|
helperText?: string | undefined;
|
127
126
|
disabled?: boolean | undefined;
|
128
|
-
items?: import("
|
129
|
-
onItemSelect?: ((e: import("
|
130
|
-
hasItems?: boolean | undefined;
|
127
|
+
items?: import("../../../..").DropdownNodeSelect[] | undefined;
|
128
|
+
onItemSelect?: ((e: import("../../../..").DropdownNodeSelect, event: import("react").SyntheticEvent<Element, Event>) => void) | undefined;
|
131
129
|
children?: undefined;
|
132
|
-
isOpen?: boolean | undefined;
|
133
130
|
isTargetAmount?: boolean | undefined;
|
134
|
-
renderTarget?: ((item: import("
|
131
|
+
renderTarget?: ((item: import("../../../..").DropdownNodeSelect | import("../../../..").DropdownNodeSelect[]) => import("react").ReactNode) | undefined;
|
135
132
|
placement?: ("auto" | "left" | "right" | "top" | "bottom") | ("left" | "right" | "top" | "bottom")[] | undefined;
|
136
133
|
label?: string | undefined;
|
137
134
|
onScrollBottom?: ((e: import("react").UIEvent<HTMLUListElement, UIEvent>) => void) | undefined;
|
138
135
|
variant?: "normal" | "tight" | undefined;
|
139
136
|
listWidth?: import("csstype").Property.Width<string | number> | undefined;
|
140
137
|
portal?: string | import("react").RefObject<HTMLElement> | undefined;
|
141
|
-
renderValue?: ((item: import("
|
142
|
-
renderItem?: ((item: import("
|
138
|
+
renderValue?: ((item: import("../../../..").DropdownNodeSelect) => string) | undefined;
|
139
|
+
renderItem?: ((item: import("../../../..").DropdownNodeSelect) => import("react").ReactNode) | undefined;
|
143
140
|
closeAfterSelect?: boolean | undefined;
|
144
141
|
size?: string | undefined;
|
145
142
|
view?: string | undefined;
|
146
143
|
chipView?: string | undefined;
|
144
|
+
status?: "error" | "success" | "warning" | undefined;
|
145
|
+
hasItems?: boolean | undefined;
|
146
|
+
isOpen?: boolean | undefined;
|
147
147
|
} & Omit<import("react").ButtonHTMLAttributes<HTMLButtonElement>, "onChange" | "onResize" | "onResizeCapture" | "nonce" | "value"> & import("react").RefAttributes<HTMLButtonElement>) | ({
|
148
148
|
target?: "button-like" | undefined;
|
149
149
|
view?: "default" | "black" | "white" | "dark" | "clear" | "accent" | "secondary" | "warning" | "positive" | "negative" | undefined;
|
@@ -159,29 +159,29 @@ declare const Select: import("react").FunctionComponent<import("../../../../engi
|
|
159
159
|
onChange?: ((value: any) => void) | undefined;
|
160
160
|
listOverflow?: import("csstype").Property.Overflow | undefined;
|
161
161
|
listHeight?: import("csstype").Property.Height<string | number> | undefined;
|
162
|
-
status?: "error" | "success" | "warning" | undefined;
|
163
162
|
placeholder?: string | undefined;
|
164
163
|
helperText?: string | undefined;
|
165
164
|
disabled?: boolean | undefined;
|
166
|
-
items?: import("
|
167
|
-
onItemSelect?: ((e: import("
|
168
|
-
hasItems?: boolean | undefined;
|
165
|
+
items?: import("../../../..").DropdownNodeSelect[] | undefined;
|
166
|
+
onItemSelect?: ((e: import("../../../..").DropdownNodeSelect, event: import("react").SyntheticEvent<Element, Event>) => void) | undefined;
|
169
167
|
children?: undefined;
|
170
|
-
isOpen?: boolean | undefined;
|
171
168
|
isTargetAmount?: boolean | undefined;
|
172
|
-
renderTarget?: ((item: import("
|
169
|
+
renderTarget?: ((item: import("../../../..").DropdownNodeSelect | import("../../../..").DropdownNodeSelect[]) => import("react").ReactNode) | undefined;
|
173
170
|
placement?: ("auto" | "left" | "right" | "top" | "bottom") | ("left" | "right" | "top" | "bottom")[] | undefined;
|
174
171
|
label?: string | undefined;
|
175
172
|
onScrollBottom?: ((e: import("react").UIEvent<HTMLUListElement, UIEvent>) => void) | undefined;
|
176
173
|
variant?: "normal" | "tight" | undefined;
|
177
174
|
listWidth?: import("csstype").Property.Width<string | number> | undefined;
|
178
175
|
portal?: string | import("react").RefObject<HTMLElement> | undefined;
|
179
|
-
renderValue?: ((item: import("
|
180
|
-
renderItem?: ((item: import("
|
176
|
+
renderValue?: ((item: import("../../../..").DropdownNodeSelect) => string) | undefined;
|
177
|
+
renderItem?: ((item: import("../../../..").DropdownNodeSelect) => import("react").ReactNode) | undefined;
|
181
178
|
closeAfterSelect?: boolean | undefined;
|
182
179
|
size?: string | undefined;
|
183
180
|
view?: string | undefined;
|
184
181
|
chipView?: string | undefined;
|
182
|
+
status?: "error" | "success" | "warning" | undefined;
|
183
|
+
hasItems?: boolean | undefined;
|
184
|
+
isOpen?: boolean | undefined;
|
185
185
|
} & Omit<import("react").ButtonHTMLAttributes<HTMLButtonElement>, "onChange" | "onResize" | "onResizeCapture" | "nonce" | "value"> & import("react").RefAttributes<HTMLButtonElement>))>;
|
186
186
|
export { Select };
|
187
187
|
//# sourceMappingURL=Select.d.ts.map
|
@@ -45,29 +45,29 @@ declare const Select: import("react").FunctionComponent<import("../../../../engi
|
|
45
45
|
onChange?: ((value: any) => void) | undefined;
|
46
46
|
listOverflow?: import("csstype").Property.Overflow | undefined;
|
47
47
|
listHeight?: import("csstype").Property.Height<string | number> | undefined;
|
48
|
-
status?: "error" | "success" | "warning" | undefined;
|
49
48
|
placeholder?: string | undefined;
|
50
49
|
helperText?: string | undefined;
|
51
50
|
disabled?: boolean | undefined;
|
52
|
-
items?: import("
|
53
|
-
onItemSelect?: ((e: import("
|
54
|
-
hasItems?: boolean | undefined;
|
51
|
+
items?: import("../../../..").DropdownNodeSelect[] | undefined;
|
52
|
+
onItemSelect?: ((e: import("../../../..").DropdownNodeSelect, event: import("react").SyntheticEvent<Element, Event>) => void) | undefined;
|
55
53
|
children?: undefined;
|
56
|
-
isOpen?: boolean | undefined;
|
57
54
|
isTargetAmount?: boolean | undefined;
|
58
|
-
renderTarget?: ((item: import("
|
55
|
+
renderTarget?: ((item: import("../../../..").DropdownNodeSelect | import("../../../..").DropdownNodeSelect[]) => import("react").ReactNode) | undefined;
|
59
56
|
placement?: ("auto" | "left" | "right" | "top" | "bottom") | ("left" | "right" | "top" | "bottom")[] | undefined;
|
60
57
|
label?: string | undefined;
|
61
58
|
onScrollBottom?: ((e: import("react").UIEvent<HTMLUListElement, UIEvent>) => void) | undefined;
|
62
59
|
variant?: "normal" | "tight" | undefined;
|
63
60
|
listWidth?: import("csstype").Property.Width<string | number> | undefined;
|
64
61
|
portal?: string | import("react").RefObject<HTMLElement> | undefined;
|
65
|
-
renderValue?: ((item: import("
|
66
|
-
renderItem?: ((item: import("
|
62
|
+
renderValue?: ((item: import("../../../..").DropdownNodeSelect) => string) | undefined;
|
63
|
+
renderItem?: ((item: import("../../../..").DropdownNodeSelect) => import("react").ReactNode) | undefined;
|
67
64
|
closeAfterSelect?: boolean | undefined;
|
68
65
|
size?: string | undefined;
|
69
66
|
view?: string | undefined;
|
70
67
|
chipView?: string | undefined;
|
68
|
+
status?: "error" | "success" | "warning" | undefined;
|
69
|
+
hasItems?: boolean | undefined;
|
70
|
+
isOpen?: boolean | undefined;
|
71
71
|
} & Omit<import("react").ButtonHTMLAttributes<HTMLButtonElement>, "onChange" | "onResize" | "onResizeCapture" | "nonce" | "value"> & import("react").RefAttributes<HTMLButtonElement>) | ({
|
72
72
|
target?: "textfield-like" | undefined;
|
73
73
|
view?: "default" | "warning" | "positive" | "negative" | undefined;
|
@@ -83,29 +83,29 @@ declare const Select: import("react").FunctionComponent<import("../../../../engi
|
|
83
83
|
onChange?: ((value: any) => void) | undefined;
|
84
84
|
listOverflow?: import("csstype").Property.Overflow | undefined;
|
85
85
|
listHeight?: import("csstype").Property.Height<string | number> | undefined;
|
86
|
-
status?: "error" | "success" | "warning" | undefined;
|
87
86
|
placeholder?: string | undefined;
|
88
87
|
helperText?: string | undefined;
|
89
88
|
disabled?: boolean | undefined;
|
90
|
-
items?: import("
|
91
|
-
onItemSelect?: ((e: import("
|
92
|
-
hasItems?: boolean | undefined;
|
89
|
+
items?: import("../../../..").DropdownNodeSelect[] | undefined;
|
90
|
+
onItemSelect?: ((e: import("../../../..").DropdownNodeSelect, event: import("react").SyntheticEvent<Element, Event>) => void) | undefined;
|
93
91
|
children?: undefined;
|
94
|
-
isOpen?: boolean | undefined;
|
95
92
|
isTargetAmount?: boolean | undefined;
|
96
|
-
renderTarget?: ((item: import("
|
93
|
+
renderTarget?: ((item: import("../../../..").DropdownNodeSelect | import("../../../..").DropdownNodeSelect[]) => import("react").ReactNode) | undefined;
|
97
94
|
placement?: ("auto" | "left" | "right" | "top" | "bottom") | ("left" | "right" | "top" | "bottom")[] | undefined;
|
98
95
|
label?: string | undefined;
|
99
96
|
onScrollBottom?: ((e: import("react").UIEvent<HTMLUListElement, UIEvent>) => void) | undefined;
|
100
97
|
variant?: "normal" | "tight" | undefined;
|
101
98
|
listWidth?: import("csstype").Property.Width<string | number> | undefined;
|
102
99
|
portal?: string | import("react").RefObject<HTMLElement> | undefined;
|
103
|
-
renderValue?: ((item: import("
|
104
|
-
renderItem?: ((item: import("
|
100
|
+
renderValue?: ((item: import("../../../..").DropdownNodeSelect) => string) | undefined;
|
101
|
+
renderItem?: ((item: import("../../../..").DropdownNodeSelect) => import("react").ReactNode) | undefined;
|
105
102
|
closeAfterSelect?: boolean | undefined;
|
106
103
|
size?: string | undefined;
|
107
104
|
view?: string | undefined;
|
108
105
|
chipView?: string | undefined;
|
106
|
+
status?: "error" | "success" | "warning" | undefined;
|
107
|
+
hasItems?: boolean | undefined;
|
108
|
+
isOpen?: boolean | undefined;
|
109
109
|
} & Omit<import("react").ButtonHTMLAttributes<HTMLButtonElement>, "onChange" | "onResize" | "onResizeCapture" | "nonce" | "value"> & import("react").RefAttributes<HTMLButtonElement>) | ({
|
110
110
|
target?: "button-like" | undefined;
|
111
111
|
view?: "default" | "black" | "white" | "dark" | "clear" | "accent" | "secondary" | "warning" | "positive" | "negative" | undefined;
|
@@ -121,29 +121,29 @@ declare const Select: import("react").FunctionComponent<import("../../../../engi
|
|
121
121
|
onChange?: ((value: any) => void) | undefined;
|
122
122
|
listOverflow?: import("csstype").Property.Overflow | undefined;
|
123
123
|
listHeight?: import("csstype").Property.Height<string | number> | undefined;
|
124
|
-
status?: "error" | "success" | "warning" | undefined;
|
125
124
|
placeholder?: string | undefined;
|
126
125
|
helperText?: string | undefined;
|
127
126
|
disabled?: boolean | undefined;
|
128
|
-
items?: import("
|
129
|
-
onItemSelect?: ((e: import("
|
130
|
-
hasItems?: boolean | undefined;
|
127
|
+
items?: import("../../../..").DropdownNodeSelect[] | undefined;
|
128
|
+
onItemSelect?: ((e: import("../../../..").DropdownNodeSelect, event: import("react").SyntheticEvent<Element, Event>) => void) | undefined;
|
131
129
|
children?: undefined;
|
132
|
-
isOpen?: boolean | undefined;
|
133
130
|
isTargetAmount?: boolean | undefined;
|
134
|
-
renderTarget?: ((item: import("
|
131
|
+
renderTarget?: ((item: import("../../../..").DropdownNodeSelect | import("../../../..").DropdownNodeSelect[]) => import("react").ReactNode) | undefined;
|
135
132
|
placement?: ("auto" | "left" | "right" | "top" | "bottom") | ("left" | "right" | "top" | "bottom")[] | undefined;
|
136
133
|
label?: string | undefined;
|
137
134
|
onScrollBottom?: ((e: import("react").UIEvent<HTMLUListElement, UIEvent>) => void) | undefined;
|
138
135
|
variant?: "normal" | "tight" | undefined;
|
139
136
|
listWidth?: import("csstype").Property.Width<string | number> | undefined;
|
140
137
|
portal?: string | import("react").RefObject<HTMLElement> | undefined;
|
141
|
-
renderValue?: ((item: import("
|
142
|
-
renderItem?: ((item: import("
|
138
|
+
renderValue?: ((item: import("../../../..").DropdownNodeSelect) => string) | undefined;
|
139
|
+
renderItem?: ((item: import("../../../..").DropdownNodeSelect) => import("react").ReactNode) | undefined;
|
143
140
|
closeAfterSelect?: boolean | undefined;
|
144
141
|
size?: string | undefined;
|
145
142
|
view?: string | undefined;
|
146
143
|
chipView?: string | undefined;
|
144
|
+
status?: "error" | "success" | "warning" | undefined;
|
145
|
+
hasItems?: boolean | undefined;
|
146
|
+
isOpen?: boolean | undefined;
|
147
147
|
} & Omit<import("react").ButtonHTMLAttributes<HTMLButtonElement>, "onChange" | "onResize" | "onResizeCapture" | "nonce" | "value"> & import("react").RefAttributes<HTMLButtonElement>) | ({
|
148
148
|
target?: "button-like" | undefined;
|
149
149
|
view?: "default" | "black" | "white" | "dark" | "clear" | "accent" | "secondary" | "warning" | "positive" | "negative" | undefined;
|
@@ -159,29 +159,29 @@ declare const Select: import("react").FunctionComponent<import("../../../../engi
|
|
159
159
|
onChange?: ((value: any) => void) | undefined;
|
160
160
|
listOverflow?: import("csstype").Property.Overflow | undefined;
|
161
161
|
listHeight?: import("csstype").Property.Height<string | number> | undefined;
|
162
|
-
status?: "error" | "success" | "warning" | undefined;
|
163
162
|
placeholder?: string | undefined;
|
164
163
|
helperText?: string | undefined;
|
165
164
|
disabled?: boolean | undefined;
|
166
|
-
items?: import("
|
167
|
-
onItemSelect?: ((e: import("
|
168
|
-
hasItems?: boolean | undefined;
|
165
|
+
items?: import("../../../..").DropdownNodeSelect[] | undefined;
|
166
|
+
onItemSelect?: ((e: import("../../../..").DropdownNodeSelect, event: import("react").SyntheticEvent<Element, Event>) => void) | undefined;
|
169
167
|
children?: undefined;
|
170
|
-
isOpen?: boolean | undefined;
|
171
168
|
isTargetAmount?: boolean | undefined;
|
172
|
-
renderTarget?: ((item: import("
|
169
|
+
renderTarget?: ((item: import("../../../..").DropdownNodeSelect | import("../../../..").DropdownNodeSelect[]) => import("react").ReactNode) | undefined;
|
173
170
|
placement?: ("auto" | "left" | "right" | "top" | "bottom") | ("left" | "right" | "top" | "bottom")[] | undefined;
|
174
171
|
label?: string | undefined;
|
175
172
|
onScrollBottom?: ((e: import("react").UIEvent<HTMLUListElement, UIEvent>) => void) | undefined;
|
176
173
|
variant?: "normal" | "tight" | undefined;
|
177
174
|
listWidth?: import("csstype").Property.Width<string | number> | undefined;
|
178
175
|
portal?: string | import("react").RefObject<HTMLElement> | undefined;
|
179
|
-
renderValue?: ((item: import("
|
180
|
-
renderItem?: ((item: import("
|
176
|
+
renderValue?: ((item: import("../../../..").DropdownNodeSelect) => string) | undefined;
|
177
|
+
renderItem?: ((item: import("../../../..").DropdownNodeSelect) => import("react").ReactNode) | undefined;
|
181
178
|
closeAfterSelect?: boolean | undefined;
|
182
179
|
size?: string | undefined;
|
183
180
|
view?: string | undefined;
|
184
181
|
chipView?: string | undefined;
|
182
|
+
status?: "error" | "success" | "warning" | undefined;
|
183
|
+
hasItems?: boolean | undefined;
|
184
|
+
isOpen?: boolean | undefined;
|
185
185
|
} & Omit<import("react").ButtonHTMLAttributes<HTMLButtonElement>, "onChange" | "onResize" | "onResizeCapture" | "nonce" | "value"> & import("react").RefAttributes<HTMLButtonElement>))>;
|
186
186
|
export { Select };
|
187
187
|
//# sourceMappingURL=Select.d.ts.map
|
@@ -1,3 +0,0 @@
|
|
1
|
-
.s1yhwv5r{--plasma-textfield-color:var(--plasma-select-textfield-color);--plasma-textfield-bg-color:var(--plasma-select-textfield-background-color);--plasma-textfield-border-color:var(--plasma-select-textfield-border-color);--plasma-textfield__placeholder-color:var(--plasma-select-textfield-placeholder-color);--plasma-textfield__label-color:var(--plasma-select-textfield-label-color);--plasma-textfield__left-helper-color:var(--plasma-select-textfield-left-helper-color);--plasma-textfield-color-readonly:var(--plasma-select-textfield-color);--plasma-textfield-bg-color-readonly:var(--s1yhwv5r-0);--plasma-textfield__placeholder-color-readonly:var(--s1yhwv5r-1);--plasma-textfield__left-helper-color-readonly:var(--plasma-select-textfield-left-helper-color);--plasma-textfield__label-color-readonly:var(--plasma-select-textfield-label-color);--plasma-textfield-border-color-readonly:var(--plasma-select-textfield-border-color);--plasma-textfield__placeholder-color:var(--plasma-select-textfield-placeholder-color);--plasma-textfield-border-color-hover:var(--plasma-select-textfield-border-color-hover);--plasma-textfield-border-color-focus:var(--plasma-select-textfield-border-color-focus);--plasma-textfield__optional-color:var(--plasma-select-textfield-optional-color);--plasma-textfield-height:var(--plasma-select-textfield-height);--plasma-textfield-border-width:var(--plasma-select-textfield-border-width);--plasma-textfield-border-radius:var(--plasma-select-textfield-border-radius);--plasma-textfield-padding:var(--plasma-select-textfield-padding);--plasma-textfield-padding-with-chips:var(--plasma-select-textfield-padding-with-chips);--plasma-textfield__left-content-margin:var(--plasma-select-textfield-left-content-margin);--plasma-textfield__right-content-margin:var(--plasma-select-textfield-right-content-margin);--plasma-textfield-font-family:var(--plasma-select-textfield-font-family);--plasma-textfield-font-style:var(--plasma-select-textfield-font-style);--plasma-textfield-font-size:var(--plasma-select-textfield-font-size);--plasma-textfield-font-weight:var(--plasma-select-textfield-font-weight);--plasma-textfield-letter-spacing:var(--plasma-select-textfield-letter-spacing);--plasma-textfield-line-height:var(--plasma-select-textfield-line-height);--plasma-textfield-content-slot-color:var(--plasma-select-textfield-content-slot-color);--plasma-textfield-content-slot-color-hover:var(--plasma-select-textfield-content-slot-color-hover);--plasma-textfield-content-slot-color-active:var(--plasma-select-textfield-content-slot-color-active);--plasma-textfield-content-right-slot-color:var(--plasma-select-textfield-content-right-slot-color);--plasma-textfield-content-right-slot-color-hover:var(--plasma-select-textfield-content-right-slot-color-hover);--plasma-textfield-content-right-slot-color-active:var(--plasma-select-textfield-content-right-slot-color-active);--plasma-textfield__label-offset:var(--plasma-select-textfield-label-offset);--plasma-textfield__label-font-style:var(--plasma-select-textfield-label-font-style);--plasma-textfield__label-font-size:var(--plasma-select-textfield-label-font-size);--plasma-textfield__label-font-weight:var(--plasma-select-textfield-label-font-weight);--plasma-textfield__label-letter-spacing:var(--plasma-select-textfield-label-letter-spacing);--plasma-textfield__label-line-height:var(--plasma-select-textfield-label-line-height);--plasma-textfield-placement_inner__label-font-family:var(--plasma-select-textfield-placement-inner-label-font-family);--plasma-textfield-placement_inner__label-font-style:var(--plasma-select-textfield-placement-inner-label-font-style);--plasma-textfield-placement_inner__label-font-size:var(--plasma-select-textfield-placement-inner-label-font-size);--plasma-textfield-placement_inner__label-font-weight:var(--plasma-select-textfield-placement-inner-label-font-weight);--plasma-textfield-placement_inner__label-letter-spacing:var(--plasma-select-textfield-placement-inner-label-letter-spacing);--plasma-textfield-placement_inner__label-line-height:var(--plasma-select-textfield-placement-inner-label-line-height);--plasma-textfield-placement_inner__label-padding:var(--plasma-select-textfield-placement-inner-label-padding);--plasma-textfield-placement_inner__content-padding:var(--plasma-select-textfield-placement-inner-content-padding);--plasma-textfield__title-caption-color:var(--plasma-select-textfield-title-caption-color);--plasma-textfield__title-caption-label-inner-offset:var(--plasma-select-textfield-title-caption-label-inner-offset);--plasma-textfield__title-caption-font-family:var(--plasma-select-textfield-title-caption-font-family);--plasma-textfield__title-caption-font-style:var(--plasma-select-textfield-title-caption-font-style);--plasma-textfield__title-caption-font-size:var(--plasma-select-textfield-title-caption-font-size);--plasma-textfield__title-caption-font-weight:var(--plasma-select-textfield-title-caption-font-weight);--plasma-textfield__title-caption-letter-spacing:var(--plasma-select-textfield-title-caption-letter-spacing);--plasma-textfield__title-caption-line-height:var(--plasma-select-textfield-title-caption-line-height);--plasma-textfield__left-helper-offset:var(--plasma-select-textfield-left-helper-offset);--plasma-textfield__left-helper-font-family:var(--plasma-select-textfield-left-helper-font-family);--plasma-textfield__left-helper-font-style:var(--plasma-select-textfield-left-helper-font-style);--plasma-textfield__left-helper-font-size:var(--plasma-select-textfield-left-helper-font-size);--plasma-textfield__left-helper-font-weight:var(--plasma-select-textfield-left-helper-font-weight);--plasma-textfield__left-helper-letter-spacing:var(--plasma-select-textfield-left-helper-letter-spacing);--plasma-textfield__left-helper-line-height:var(--plasma-select-textfield-left-helper-line-height);--plasma-textfield__before-text-color:var(--plasma-select-textfield-before-text-color);--plasma-textfield__after-text-color:var(--plasma-select-textfield-after-text-color);--plasma-textfield__before-text-margin:var(--plasma-select-textfield-before-text-margin);--plasma-textfield__after-text-margin:var(--plasma-select-textfield-after-text-margin);--plasma-textfield-disabled-opacity:var(--plasma-select-textfield-disabled-opacity);--plasma-textfield__chip-height:var(--plasma-select-textfield-chip-height);--plasma-textfield__chip-border-radius:var(--plasma-select-textfield-chip-border-radius);--plasma-textfield__chip-gap:var(--plasma-select-textfield-chip-gap);--plasma-textfield__chip-color:var(--plasma-select-textfield-chip-color);--plasma-textfield__chip-color-hover:var(--plasma-select-textfield-chip-color-hover);--plasma-textfield__chip-scale-hover:var(--plasma-select-textfield-chip-scale-hover);--plasma-textfield__chip-background:var(--plasma-select-textfield--chip-background);--plasma-textfield__chip-background-active:var(--plasma-select-textfield-chip-background-active);--plasma-textfield__chip-color-active:var(--plasma-select-textfield-chip-color-active);--plasma-textfield__chip-scale-active:var(--plasma-select-textfield-chip-scale-active);--plasma-textfield__chip-close-icon-color:var(--plasma-select-textfield-chip-close-icons-color);--plasma-textfield__chip-outline-size:var(--plasma-select-textfield-chip-outline-size);--plasma-textfield__chip-width:var(--plasma-select-textfield-chip-width);--plasma-textfield__chip-padding-top:var(--plasma-select-textfield-chip-padding-top);--plasma-textfield__chip-padding-right:var(--plasma-select-textfield-chip-padding-right);--plasma-textfield__chip-padding-bottom:var(--plasma-select-textfield-chip-padding-bottom);--plasma-textfield__chip-padding-left:var(--plasma-select-textfield-chip-padding-left);--plasma-textfield__chip-close-icon-size:var(--plasma-select-textfield-chip-close-icon-size);--plasma-textfield__chip-font-family:var(--plasma-select-textfield-chip-font-family);--plasma-textfield__chip-font-size:var(--plasma-select-textfield-chip-font-size);--plasma-textfield__chip-font-style:var(--plasma-select-textfield-chip-font-style);--plasma-textfield__chip-font-weight:var(--plasma-select-textfield-chip-font-weight);--plasma-textfield__chip-letter-spacing:var(--plasma-select-textfield-chip-letter-spacing);--plasma-textfield__chip-line-height:var(--plasma-select-textfield-chip-line-height);--plasma-textfield__chip-color-readonly:var(--plasma-select-textfield-chip-color);--plasma-textfield__chip-color-readonly-hover:var(--plasma-select-textfield-chip-color);--plasma-textfield__chip-background-readonly:var(--plasma-select-textfield--chip-background);--plasma-textfield__chip-background-readonly-hover:var(--plasma-select-textfield-chip-background-hover);--plasma-textfield__chip-clear-content-margin-left:var(--plasma-select-textfield-chip-clear-content-margin-left);--plasma-textfield__chip-clear-content-margin-right:var(--plasma-select-textfield-chip-clear-content-margin-right);--plasma-textfield-focus-color:var(--plasma-select-textfield-focus-color);}.s1yhwv5r div[class^='InputWrapper']:focus-within{background-color:var(--plasma-select-textfield-background-color-focus);}
|
2
|
-
.i7x5udn{line-height:0;color:var(--plasma-select-disclosure-icon-color);cursor:var(--i7x5udn-0);}.i7x5udn .arrow-inverse{-webkit-transform:rotate(-180deg);-ms-transform:rotate(-180deg);transform:rotate(-180deg);}.i7x5udn:hover,.i7x5udn:active{color:var(--i7x5udn-1);}
|
3
|
-
|
@@ -1,3 +0,0 @@
|
|
1
|
-
.s1yhwv5r{--plasma-textfield-color:var(--plasma-select-textfield-color);--plasma-textfield-bg-color:var(--plasma-select-textfield-background-color);--plasma-textfield-border-color:var(--plasma-select-textfield-border-color);--plasma-textfield__placeholder-color:var(--plasma-select-textfield-placeholder-color);--plasma-textfield__label-color:var(--plasma-select-textfield-label-color);--plasma-textfield__left-helper-color:var(--plasma-select-textfield-left-helper-color);--plasma-textfield-color-readonly:var(--plasma-select-textfield-color);--plasma-textfield-bg-color-readonly:var(--s1yhwv5r-0);--plasma-textfield__placeholder-color-readonly:var(--s1yhwv5r-1);--plasma-textfield__left-helper-color-readonly:var(--plasma-select-textfield-left-helper-color);--plasma-textfield__label-color-readonly:var(--plasma-select-textfield-label-color);--plasma-textfield-border-color-readonly:var(--plasma-select-textfield-border-color);--plasma-textfield__placeholder-color:var(--plasma-select-textfield-placeholder-color);--plasma-textfield-border-color-hover:var(--plasma-select-textfield-border-color-hover);--plasma-textfield-border-color-focus:var(--plasma-select-textfield-border-color-focus);--plasma-textfield__optional-color:var(--plasma-select-textfield-optional-color);--plasma-textfield-height:var(--plasma-select-textfield-height);--plasma-textfield-border-width:var(--plasma-select-textfield-border-width);--plasma-textfield-border-radius:var(--plasma-select-textfield-border-radius);--plasma-textfield-padding:var(--plasma-select-textfield-padding);--plasma-textfield-padding-with-chips:var(--plasma-select-textfield-padding-with-chips);--plasma-textfield__left-content-margin:var(--plasma-select-textfield-left-content-margin);--plasma-textfield__right-content-margin:var(--plasma-select-textfield-right-content-margin);--plasma-textfield-font-family:var(--plasma-select-textfield-font-family);--plasma-textfield-font-style:var(--plasma-select-textfield-font-style);--plasma-textfield-font-size:var(--plasma-select-textfield-font-size);--plasma-textfield-font-weight:var(--plasma-select-textfield-font-weight);--plasma-textfield-letter-spacing:var(--plasma-select-textfield-letter-spacing);--plasma-textfield-line-height:var(--plasma-select-textfield-line-height);--plasma-textfield-content-slot-color:var(--plasma-select-textfield-content-slot-color);--plasma-textfield-content-slot-color-hover:var(--plasma-select-textfield-content-slot-color-hover);--plasma-textfield-content-slot-color-active:var(--plasma-select-textfield-content-slot-color-active);--plasma-textfield-content-right-slot-color:var(--plasma-select-textfield-content-right-slot-color);--plasma-textfield-content-right-slot-color-hover:var(--plasma-select-textfield-content-right-slot-color-hover);--plasma-textfield-content-right-slot-color-active:var(--plasma-select-textfield-content-right-slot-color-active);--plasma-textfield__label-offset:var(--plasma-select-textfield-label-offset);--plasma-textfield__label-font-style:var(--plasma-select-textfield-label-font-style);--plasma-textfield__label-font-size:var(--plasma-select-textfield-label-font-size);--plasma-textfield__label-font-weight:var(--plasma-select-textfield-label-font-weight);--plasma-textfield__label-letter-spacing:var(--plasma-select-textfield-label-letter-spacing);--plasma-textfield__label-line-height:var(--plasma-select-textfield-label-line-height);--plasma-textfield-placement_inner__label-font-family:var(--plasma-select-textfield-placement-inner-label-font-family);--plasma-textfield-placement_inner__label-font-style:var(--plasma-select-textfield-placement-inner-label-font-style);--plasma-textfield-placement_inner__label-font-size:var(--plasma-select-textfield-placement-inner-label-font-size);--plasma-textfield-placement_inner__label-font-weight:var(--plasma-select-textfield-placement-inner-label-font-weight);--plasma-textfield-placement_inner__label-letter-spacing:var(--plasma-select-textfield-placement-inner-label-letter-spacing);--plasma-textfield-placement_inner__label-line-height:var(--plasma-select-textfield-placement-inner-label-line-height);--plasma-textfield-placement_inner__label-padding:var(--plasma-select-textfield-placement-inner-label-padding);--plasma-textfield-placement_inner__content-padding:var(--plasma-select-textfield-placement-inner-content-padding);--plasma-textfield__title-caption-color:var(--plasma-select-textfield-title-caption-color);--plasma-textfield__title-caption-label-inner-offset:var(--plasma-select-textfield-title-caption-label-inner-offset);--plasma-textfield__title-caption-font-family:var(--plasma-select-textfield-title-caption-font-family);--plasma-textfield__title-caption-font-style:var(--plasma-select-textfield-title-caption-font-style);--plasma-textfield__title-caption-font-size:var(--plasma-select-textfield-title-caption-font-size);--plasma-textfield__title-caption-font-weight:var(--plasma-select-textfield-title-caption-font-weight);--plasma-textfield__title-caption-letter-spacing:var(--plasma-select-textfield-title-caption-letter-spacing);--plasma-textfield__title-caption-line-height:var(--plasma-select-textfield-title-caption-line-height);--plasma-textfield__left-helper-offset:var(--plasma-select-textfield-left-helper-offset);--plasma-textfield__left-helper-font-family:var(--plasma-select-textfield-left-helper-font-family);--plasma-textfield__left-helper-font-style:var(--plasma-select-textfield-left-helper-font-style);--plasma-textfield__left-helper-font-size:var(--plasma-select-textfield-left-helper-font-size);--plasma-textfield__left-helper-font-weight:var(--plasma-select-textfield-left-helper-font-weight);--plasma-textfield__left-helper-letter-spacing:var(--plasma-select-textfield-left-helper-letter-spacing);--plasma-textfield__left-helper-line-height:var(--plasma-select-textfield-left-helper-line-height);--plasma-textfield__before-text-color:var(--plasma-select-textfield-before-text-color);--plasma-textfield__after-text-color:var(--plasma-select-textfield-after-text-color);--plasma-textfield__before-text-margin:var(--plasma-select-textfield-before-text-margin);--plasma-textfield__after-text-margin:var(--plasma-select-textfield-after-text-margin);--plasma-textfield-disabled-opacity:var(--plasma-select-textfield-disabled-opacity);--plasma-textfield__chip-height:var(--plasma-select-textfield-chip-height);--plasma-textfield__chip-border-radius:var(--plasma-select-textfield-chip-border-radius);--plasma-textfield__chip-gap:var(--plasma-select-textfield-chip-gap);--plasma-textfield__chip-color:var(--plasma-select-textfield-chip-color);--plasma-textfield__chip-color-hover:var(--plasma-select-textfield-chip-color-hover);--plasma-textfield__chip-scale-hover:var(--plasma-select-textfield-chip-scale-hover);--plasma-textfield__chip-background:var(--plasma-select-textfield--chip-background);--plasma-textfield__chip-background-active:var(--plasma-select-textfield-chip-background-active);--plasma-textfield__chip-color-active:var(--plasma-select-textfield-chip-color-active);--plasma-textfield__chip-scale-active:var(--plasma-select-textfield-chip-scale-active);--plasma-textfield__chip-close-icon-color:var(--plasma-select-textfield-chip-close-icons-color);--plasma-textfield__chip-outline-size:var(--plasma-select-textfield-chip-outline-size);--plasma-textfield__chip-width:var(--plasma-select-textfield-chip-width);--plasma-textfield__chip-padding-top:var(--plasma-select-textfield-chip-padding-top);--plasma-textfield__chip-padding-right:var(--plasma-select-textfield-chip-padding-right);--plasma-textfield__chip-padding-bottom:var(--plasma-select-textfield-chip-padding-bottom);--plasma-textfield__chip-padding-left:var(--plasma-select-textfield-chip-padding-left);--plasma-textfield__chip-close-icon-size:var(--plasma-select-textfield-chip-close-icon-size);--plasma-textfield__chip-font-family:var(--plasma-select-textfield-chip-font-family);--plasma-textfield__chip-font-size:var(--plasma-select-textfield-chip-font-size);--plasma-textfield__chip-font-style:var(--plasma-select-textfield-chip-font-style);--plasma-textfield__chip-font-weight:var(--plasma-select-textfield-chip-font-weight);--plasma-textfield__chip-letter-spacing:var(--plasma-select-textfield-chip-letter-spacing);--plasma-textfield__chip-line-height:var(--plasma-select-textfield-chip-line-height);--plasma-textfield__chip-color-readonly:var(--plasma-select-textfield-chip-color);--plasma-textfield__chip-color-readonly-hover:var(--plasma-select-textfield-chip-color);--plasma-textfield__chip-background-readonly:var(--plasma-select-textfield--chip-background);--plasma-textfield__chip-background-readonly-hover:var(--plasma-select-textfield-chip-background-hover);--plasma-textfield__chip-clear-content-margin-left:var(--plasma-select-textfield-chip-clear-content-margin-left);--plasma-textfield__chip-clear-content-margin-right:var(--plasma-select-textfield-chip-clear-content-margin-right);--plasma-textfield-focus-color:var(--plasma-select-textfield-focus-color);}.s1yhwv5r div[class^='InputWrapper']:focus-within{background-color:var(--plasma-select-textfield-background-color-focus);}
|
2
|
-
.i7x5udn{line-height:0;color:var(--plasma-select-disclosure-icon-color);cursor:var(--i7x5udn-0);}.i7x5udn .arrow-inverse{-webkit-transform:rotate(-180deg);-ms-transform:rotate(-180deg);transform:rotate(-180deg);}.i7x5udn:hover,.i7x5udn:active{color:var(--i7x5udn-1);}
|
3
|
-
|