acsi-core 0.1.1 → 0.1.3
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/components/CoreButton/index.d.ts +12 -0
- package/dist/components/CoreCheckbox/index.d.ts +10 -0
- package/dist/components/CoreError/index.d.ts +6 -0
- package/dist/components/CoreInput/index.d.ts +19 -0
- package/dist/components/CoreModal/index.d.ts +10 -0
- package/dist/components/CoreRadio/index.d.ts +14 -0
- package/dist/components/CoreRange/index.d.ts +14 -0
- package/dist/components/CoreSelect/index.d.ts +19 -0
- package/dist/components/CoreTextArea/index.d.ts +13 -0
- package/dist/components/Selects/CustomAsyncSelect.d.ts +3 -0
- package/dist/components/Selects/CustomCreatable.d.ts +3 -0
- package/dist/components/Selects/CustomSelect.d.ts +3 -0
- package/dist/components/Selects/CustomSelectOption.d.ts +3 -0
- package/dist/components/Selects/partials/index.d.ts +4 -0
- package/dist/components/Selects/theme/styles.d.ts +6 -0
- package/dist/components/index.d.ts +9 -0
- package/dist/containers/Login/configs/default.d.ts +1 -0
- package/dist/index.css +287 -35
- package/dist/index.d.ts +8 -2
- package/dist/index.js +682 -23
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +668 -25
- package/dist/index.modern.js.map +1 -1
- package/dist/redux/commons/action.d.ts +1 -0
- package/dist/utils/constants.d.ts +1 -0
- package/dist/utils/getErrorMessage.d.ts +1 -0
- package/dist/utils/icons.d.ts +3 -0
- package/package.json +3 -2
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
interface IProps {
|
|
3
|
+
type?: "primary" | "secondary" | "text";
|
|
4
|
+
children: string | JSX.Element;
|
|
5
|
+
onClick?: any;
|
|
6
|
+
icon?: JSX.Element | string;
|
|
7
|
+
disabled?: boolean;
|
|
8
|
+
background?: string;
|
|
9
|
+
color?: string;
|
|
10
|
+
}
|
|
11
|
+
declare const CoreButton: (props: IProps) => React.JSX.Element;
|
|
12
|
+
export default CoreButton;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
interface IProps {
|
|
3
|
+
name: string;
|
|
4
|
+
checked: boolean;
|
|
5
|
+
onChange: (name: string, checked: boolean) => void;
|
|
6
|
+
disabled?: boolean;
|
|
7
|
+
label?: string;
|
|
8
|
+
}
|
|
9
|
+
declare const CoreInput: (props: IProps) => React.JSX.Element;
|
|
10
|
+
export default CoreInput;
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
interface IProps {
|
|
3
|
+
name: string;
|
|
4
|
+
value: string;
|
|
5
|
+
type?: "no-outline" | "outline";
|
|
6
|
+
onChange: (name: string, value: string) => void;
|
|
7
|
+
disabled?: boolean;
|
|
8
|
+
label?: string;
|
|
9
|
+
width?: number;
|
|
10
|
+
placeholder?: string;
|
|
11
|
+
error?: boolean;
|
|
12
|
+
errorMessage?: string;
|
|
13
|
+
fontSize?: string;
|
|
14
|
+
fontWeight?: string;
|
|
15
|
+
onKeyDown?: (e: any) => void;
|
|
16
|
+
ref?: any;
|
|
17
|
+
}
|
|
18
|
+
declare const CoreInput: (props: IProps) => React.JSX.Element;
|
|
19
|
+
export default CoreInput;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
interface IOption {
|
|
3
|
+
label: string;
|
|
4
|
+
value: string;
|
|
5
|
+
}
|
|
6
|
+
interface IProps {
|
|
7
|
+
name: string;
|
|
8
|
+
value: string;
|
|
9
|
+
options: IOption[];
|
|
10
|
+
onChange: (name: string, value: string) => void;
|
|
11
|
+
disabled?: boolean;
|
|
12
|
+
}
|
|
13
|
+
declare const CoreRadio: (props: IProps) => React.JSX.Element;
|
|
14
|
+
export default CoreRadio;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
interface IProps {
|
|
3
|
+
name: string;
|
|
4
|
+
value: number;
|
|
5
|
+
onChange: (name: string, value: number) => void;
|
|
6
|
+
disabled?: boolean;
|
|
7
|
+
label?: string;
|
|
8
|
+
width?: number;
|
|
9
|
+
min?: number;
|
|
10
|
+
max?: number;
|
|
11
|
+
step?: number;
|
|
12
|
+
}
|
|
13
|
+
declare const CoreRange: (props: IProps) => React.JSX.Element;
|
|
14
|
+
export default CoreRange;
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
interface IOprion {
|
|
3
|
+
label: string;
|
|
4
|
+
value: string;
|
|
5
|
+
}
|
|
6
|
+
interface IProps {
|
|
7
|
+
name: string;
|
|
8
|
+
options: IOprion[];
|
|
9
|
+
value: string | null;
|
|
10
|
+
onChange: (name: string, value: string) => void;
|
|
11
|
+
disabled?: boolean;
|
|
12
|
+
label?: string;
|
|
13
|
+
width?: number;
|
|
14
|
+
placeholder?: string;
|
|
15
|
+
error?: boolean;
|
|
16
|
+
errorMessage?: string;
|
|
17
|
+
}
|
|
18
|
+
declare const CoreSelect: (props: IProps) => React.JSX.Element;
|
|
19
|
+
export default CoreSelect;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
interface IProps {
|
|
3
|
+
name: string;
|
|
4
|
+
value: string;
|
|
5
|
+
onChange: (name: string, value: string) => void;
|
|
6
|
+
placeholder?: string;
|
|
7
|
+
label?: string;
|
|
8
|
+
cols?: number;
|
|
9
|
+
rows?: number;
|
|
10
|
+
width?: number;
|
|
11
|
+
}
|
|
12
|
+
declare const CoreTextArea: (props: IProps) => React.JSX.Element;
|
|
13
|
+
export default CoreTextArea;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export { default as CoreButton } from "./CoreButton";
|
|
2
|
+
export { default as CoreInput } from "./CoreInput";
|
|
3
|
+
export { default as CoreSelect } from "./CoreSelect";
|
|
4
|
+
export { default as CoreCheckbox } from "./CoreCheckbox";
|
|
5
|
+
export { default as CoreRadio } from "./CoreRadio";
|
|
6
|
+
export { default as CoreError } from "./CoreError";
|
|
7
|
+
export { default as CoreModal } from "./CoreModal";
|
|
8
|
+
export { default as CoreRange } from "./CoreRange";
|
|
9
|
+
export { default as CoreTextArea } from "./CoreTextArea";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const itemLogin: string[];
|
package/dist/index.css
CHANGED
|
@@ -1,36 +1,288 @@
|
|
|
1
|
-
.
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
.
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
1
|
+
._1KLz9 {
|
|
2
|
+
margin: 40px;
|
|
3
|
+
height: 90vh;
|
|
4
|
+
position: fixed;
|
|
5
|
+
top: 0;
|
|
6
|
+
left: 0;
|
|
7
|
+
right: 0;
|
|
8
|
+
bottom: 0;
|
|
9
|
+
font-family: "Nunito", sans-serif; }
|
|
10
|
+
._1KLz9 ._2Jo1o {
|
|
11
|
+
width: 324px;
|
|
12
|
+
text-align: center; }
|
|
13
|
+
._1KLz9 ._2Jo1o ._3egBO {
|
|
14
|
+
margin-bottom: 8px; }
|
|
15
|
+
._1KLz9 ._2Jo1o ._3egBO span {
|
|
16
|
+
font-weight: 700;
|
|
17
|
+
font-size: 2rem; }
|
|
18
|
+
._1KLz9 ._2Jo1o ._1DoIT {
|
|
19
|
+
font-weight: 400;
|
|
20
|
+
font-size: 1rem;
|
|
21
|
+
line-height: 21.82px;
|
|
22
|
+
color: #585869;
|
|
23
|
+
margin-bottom: 40px; }
|
|
24
|
+
._1KLz9 ._2Jo1o ._34hK_ button {
|
|
25
|
+
width: 100%;
|
|
26
|
+
padding: 12px;
|
|
27
|
+
border-radius: 12px;
|
|
28
|
+
border: none;
|
|
29
|
+
background-color: #FFCE09;
|
|
30
|
+
font-size: 16px;
|
|
31
|
+
font-weight: 600;
|
|
32
|
+
color: #101129;
|
|
33
|
+
display: flex;
|
|
34
|
+
align-items: center;
|
|
35
|
+
justify-content: center;
|
|
36
|
+
gap: 8px;
|
|
37
|
+
margin-bottom: 19px; }
|
|
38
|
+
._1KLz9 ._2Jo1o ._2e9xO {
|
|
39
|
+
font-size: 13px;
|
|
40
|
+
color: #c6c6cc;
|
|
41
|
+
height: 18px;
|
|
42
|
+
width: 100%;
|
|
43
|
+
position: relative;
|
|
44
|
+
display: flex;
|
|
45
|
+
align-items: center;
|
|
46
|
+
justify-content: center;
|
|
47
|
+
gap: 8px; }
|
|
48
|
+
._1KLz9 ._2Jo1o ._2e9xO::before,
|
|
49
|
+
._1KLz9 ._2Jo1o ._2e9xO::after {
|
|
50
|
+
content: "";
|
|
51
|
+
display: block;
|
|
52
|
+
width: 144px;
|
|
53
|
+
height: 1px;
|
|
54
|
+
background-color: #E6E6EB;
|
|
55
|
+
position: absolute;
|
|
56
|
+
top: 50%;
|
|
57
|
+
transform: translateY(-50%); }
|
|
58
|
+
._1KLz9 ._2Jo1o ._2e9xO::before {
|
|
59
|
+
left: 0; }
|
|
60
|
+
._1KLz9 ._2Jo1o ._2e9xO::after {
|
|
61
|
+
right: 0; }
|
|
62
|
+
._1KLz9 ._2Jo1o ._3zXRp {
|
|
63
|
+
margin-top: 17px; }
|
|
64
|
+
._1KLz9 ._2Jo1o ._3zXRp input {
|
|
65
|
+
width: 100%;
|
|
66
|
+
outline: none;
|
|
67
|
+
border: 1px solid #E6E6EB;
|
|
68
|
+
border-radius: 8px;
|
|
69
|
+
font-size: 14px;
|
|
70
|
+
color: #A6A6AD;
|
|
71
|
+
height: 48px;
|
|
72
|
+
padding: 15px 16px; }
|
|
73
|
+
._1KLz9 ._2Jo1o ._21FPk {
|
|
74
|
+
background-color: #e5f9ff;
|
|
75
|
+
font-size: 16px;
|
|
76
|
+
font-weight: 600;
|
|
77
|
+
border-radius: 12px;
|
|
78
|
+
border: none;
|
|
79
|
+
width: 100%;
|
|
80
|
+
padding: 14px 24px;
|
|
81
|
+
margin-top: 12px;
|
|
82
|
+
display: flex;
|
|
83
|
+
align-items: center;
|
|
84
|
+
justify-content: center;
|
|
85
|
+
gap: 8px; }
|
|
86
|
+
._1KLz9 ._1QERu {
|
|
87
|
+
display: flex;
|
|
88
|
+
justify-content: center;
|
|
89
|
+
align-items: center;
|
|
90
|
+
position: relative;
|
|
91
|
+
height: 100%;
|
|
92
|
+
flex-direction: column;
|
|
93
|
+
width: 100%; }
|
|
94
|
+
._1KLz9 ._2-znH {
|
|
95
|
+
text-align: center;
|
|
96
|
+
position: absolute;
|
|
97
|
+
bottom: 0; }
|
|
98
|
+
._1KLz9 ._1aB2m {
|
|
22
99
|
text-align: center;
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
border-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
100
|
+
position: absolute;
|
|
101
|
+
top: 0;
|
|
102
|
+
left: 0; }
|
|
103
|
+
._1KLz9 ._3qndF {
|
|
104
|
+
border-radius: 40px;
|
|
105
|
+
background-repeat: "no-repeat";
|
|
106
|
+
background-position: center;
|
|
107
|
+
background-size: cover;
|
|
108
|
+
position: relative;
|
|
109
|
+
height: 100%; }
|
|
110
|
+
._1KLz9 ._3qndF ._JzdCr {
|
|
111
|
+
padding-top: 64px;
|
|
112
|
+
padding-left: 56px; }
|
|
113
|
+
@media (min-width: 1024px) {
|
|
114
|
+
._1KLz9 ._3qndF ._JzdCr {
|
|
115
|
+
padding-right: 21px; } }
|
|
116
|
+
._1KLz9 ._3qndF ._19aCA {
|
|
117
|
+
display: flex;
|
|
118
|
+
position: absolute;
|
|
119
|
+
bottom: 0;
|
|
120
|
+
left: 37px;
|
|
121
|
+
justify-content: space-between;
|
|
122
|
+
align-items: center; }
|
|
123
|
+
|
|
124
|
+
._xvNBN {
|
|
125
|
+
border-radius: 8px;
|
|
126
|
+
font-size: 14px;
|
|
127
|
+
border: none;
|
|
128
|
+
line-height: 18px;
|
|
129
|
+
font-weight: 600;
|
|
130
|
+
padding: 7px 12px;
|
|
131
|
+
display: flex;
|
|
132
|
+
align-items: center;
|
|
133
|
+
transition: all .3s; }
|
|
134
|
+
._xvNBN svg {
|
|
135
|
+
margin-right: 4px; }
|
|
136
|
+
._xvNBN:disabled {
|
|
137
|
+
pointer-events: none; }
|
|
138
|
+
._xvNBN:disabled path {
|
|
139
|
+
fill: #585869; }
|
|
140
|
+
|
|
141
|
+
._U9Qyp {
|
|
142
|
+
background-color: #025675;
|
|
143
|
+
color: #FFFFFF; }
|
|
144
|
+
._U9Qyp path {
|
|
145
|
+
fill: #FFFFFF; }
|
|
146
|
+
._U9Qyp:hover {
|
|
147
|
+
background-color: #007A99; }
|
|
148
|
+
|
|
149
|
+
._1VzMy {
|
|
150
|
+
background-color: #F5F9FA;
|
|
151
|
+
color: #101129; }
|
|
152
|
+
._1VzMy:hover {
|
|
153
|
+
background-color: #E6E6EB; }
|
|
154
|
+
|
|
155
|
+
._pZNuj {
|
|
156
|
+
background-color: transparent;
|
|
157
|
+
color: #101129; }
|
|
158
|
+
|
|
159
|
+
._1WdX2 {
|
|
160
|
+
display: flex;
|
|
161
|
+
flex-direction: column; }
|
|
162
|
+
._1WdX2 label {
|
|
163
|
+
font-size: 13px;
|
|
164
|
+
font-weight: 600;
|
|
165
|
+
margin-bottom: 4px; }
|
|
166
|
+
|
|
167
|
+
._3X2RJ input {
|
|
168
|
+
border-radius: 8px;
|
|
169
|
+
border: 1px solid #E6E6EB;
|
|
170
|
+
height: 32px;
|
|
171
|
+
font-size: 14px;
|
|
172
|
+
font-weight: 400;
|
|
173
|
+
padding: 7px 12px; }
|
|
174
|
+
._3X2RJ input:disabled {
|
|
175
|
+
pointer-events: none;
|
|
176
|
+
background-color: #F5F9FA; }
|
|
177
|
+
._3X2RJ input:focus-visible {
|
|
178
|
+
border: 2px solid #00AFDA;
|
|
179
|
+
outline: none; }
|
|
180
|
+
._3X2RJ input::-moz-placeholder {
|
|
181
|
+
color: #A6A6AD; }
|
|
182
|
+
._3X2RJ input::placeholder {
|
|
183
|
+
color: #A6A6AD; }
|
|
184
|
+
._3X2RJ input:hover {
|
|
185
|
+
background-color: #F5F9FA; }
|
|
186
|
+
|
|
187
|
+
._bVYtv input {
|
|
188
|
+
border: none;
|
|
189
|
+
outline: none;
|
|
190
|
+
color: #A6A6AD; }
|
|
191
|
+
._bVYtv input::-moz-placeholder {
|
|
192
|
+
color: #A6A6AD; }
|
|
193
|
+
._bVYtv input::placeholder {
|
|
194
|
+
color: #A6A6AD; }
|
|
195
|
+
|
|
196
|
+
._n7n3Q input {
|
|
197
|
+
border-color: #CE3636; }
|
|
198
|
+
._n7n3Q input:focus-visible {
|
|
199
|
+
border-color: #CE3636; }
|
|
200
|
+
|
|
201
|
+
._1Mmxr {
|
|
202
|
+
display: flex;
|
|
203
|
+
color: #CE3636;
|
|
204
|
+
margin-top: 2px; }
|
|
205
|
+
._1Mmxr p {
|
|
206
|
+
font-size: 13px;
|
|
207
|
+
font-weight: 400;
|
|
208
|
+
margin: 0;
|
|
209
|
+
margin-left: 4px; }
|
|
210
|
+
|
|
211
|
+
._2sg12 {
|
|
212
|
+
display: flex;
|
|
213
|
+
flex-direction: column; }
|
|
214
|
+
._2sg12 label {
|
|
215
|
+
font-size: 13px;
|
|
216
|
+
font-weight: 600;
|
|
217
|
+
margin-bottom: 4px; }
|
|
218
|
+
|
|
219
|
+
._3HY4f {
|
|
220
|
+
display: inline-flex;
|
|
221
|
+
align-items: center; }
|
|
222
|
+
._3HY4f label {
|
|
223
|
+
font-size: 14px;
|
|
224
|
+
font-weight: 600; }
|
|
225
|
+
._3HY4f input {
|
|
226
|
+
width: 16px;
|
|
227
|
+
height: 16px;
|
|
228
|
+
border-radius: 4px !important;
|
|
229
|
+
border: 1px solid #A6A6AD;
|
|
230
|
+
transition: all .3s; }
|
|
231
|
+
._3HY4f input:focus {
|
|
232
|
+
box-shadow: none; }
|
|
233
|
+
._3HY4f input:checked {
|
|
234
|
+
background-color: #00AFDA;
|
|
235
|
+
border-color: #00AFDA; }
|
|
236
|
+
._3HY4f input:hover {
|
|
237
|
+
cursor: pointer; }
|
|
238
|
+
._3HY4f input:not(:checked):not(:disabled):hover {
|
|
239
|
+
background-color: #E6E6EB; }
|
|
240
|
+
|
|
241
|
+
._kvUpe {
|
|
242
|
+
display: inline-flex;
|
|
243
|
+
align-items: center; }
|
|
244
|
+
._kvUpe ._3ToPe {
|
|
245
|
+
display: flex; }
|
|
246
|
+
._kvUpe label {
|
|
247
|
+
font-size: 14px;
|
|
248
|
+
font-weight: 600; }
|
|
249
|
+
._kvUpe input {
|
|
250
|
+
width: 16px;
|
|
251
|
+
height: 16px;
|
|
252
|
+
border-radius: 4px;
|
|
253
|
+
border: 1px solid #A6A6AD;
|
|
254
|
+
transition: all .3s; }
|
|
255
|
+
._kvUpe input:focus {
|
|
256
|
+
box-shadow: none; }
|
|
257
|
+
._kvUpe input:checked {
|
|
258
|
+
background-color: #00AFDA;
|
|
259
|
+
border-color: #00AFDA;
|
|
260
|
+
background-image: none; }
|
|
261
|
+
._kvUpe input:hover {
|
|
262
|
+
cursor: pointer; }
|
|
263
|
+
._kvUpe input:not(:checked):not(:disabled):hover {
|
|
264
|
+
background-color: #E6E6EB; }
|
|
265
|
+
|
|
266
|
+
._2y5ln {
|
|
267
|
+
padding: 16px 24px !important; }
|
|
268
|
+
._2y5ln h5 {
|
|
269
|
+
font-size: 18px;
|
|
270
|
+
font-weight: 700; }
|
|
271
|
+
|
|
272
|
+
._1dzD7 {
|
|
273
|
+
display: flex;
|
|
274
|
+
flex-direction: column; }
|
|
275
|
+
._1dzD7 label {
|
|
276
|
+
font-size: 13px;
|
|
277
|
+
font-weight: 600;
|
|
278
|
+
margin-bottom: 4px; }
|
|
279
|
+
|
|
280
|
+
._1b_C3 textarea {
|
|
281
|
+
border: none;
|
|
282
|
+
outline: none;
|
|
283
|
+
border-radius: 8px;
|
|
284
|
+
border: 1px solid #E6E6EB;
|
|
285
|
+
padding: 8px 12px;
|
|
286
|
+
color: #a6a6ad;
|
|
287
|
+
font-size: 14px;
|
|
288
|
+
font-weight: 400; }
|
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
declare const historyCore: import("history").History<unknown>;
|
|
2
|
-
import { setLoading, setAlert, setUser } from "./redux/commons/action";
|
|
2
|
+
import { setLoading, setAlert, setUser, setMenuCollapse } from "./redux/commons/action";
|
|
3
3
|
import { BASE_URL, ACCESS_TOKEN } from "./utils/constants";
|
|
4
4
|
import Login from "./containers/Login/views/Login";
|
|
5
5
|
import store from "./store";
|
|
@@ -13,4 +13,10 @@ import { ToastContainer, toast } from "react-toastify";
|
|
|
13
13
|
import { Role } from "./containers/Login/configs/constants";
|
|
14
14
|
import CustomPagination from "./components/Paginations/CustomPagination";
|
|
15
15
|
import useGoogleSignOut from "./utils/hooks/useGoogleSignOut";
|
|
16
|
-
|
|
16
|
+
import { CoreButton, CoreInput, CoreSelect, CoreCheckbox, CoreRadio, CoreError, CoreModal, CoreRange, CoreTextArea } from "./components";
|
|
17
|
+
import { getErrorMessage } from "./utils/getErrorMessage";
|
|
18
|
+
import CustomSelect from "./components/Selects/CustomSelect";
|
|
19
|
+
import CustomAsyncSelect from "./components/Selects/CustomAsyncSelect";
|
|
20
|
+
import CustomCreatable from "./components/Selects/CustomCreatable";
|
|
21
|
+
import CustomSelectOption from "./components/Selects/CustomSelectOption";
|
|
22
|
+
export { setLoading, BASE_URL, ACCESS_TOKEN, Login, store, historyCore, setAlert, setUser, setMenuCollapse, Loading, NotFound, LayoutContext, api, apiUpload, ConfirmDialog, CommonDialog, ToastContainer, toast, Role, CustomPagination, useGoogleSignOut, CoreButton, CoreInput, CoreSelect, CoreCheckbox, CoreRadio, CoreError, CoreModal, CoreRange, CoreTextArea, getErrorMessage, CustomSelect, CustomAsyncSelect, CustomCreatable, CustomSelectOption };
|