master-components-react-ts 2.1.1 → 2.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/assets/Icons/IconErrorDash.d.ts +2 -3
- package/dist/assets/Icons/IconErrorDash.js +15 -0
- package/dist/assets/Icons/IconLoading.js +22 -0
- package/dist/assets/Icons/IconSuccess.js +15 -0
- package/dist/assets/components/ActionDropdown/ActionDropdown.module-CJpBa8kB.css +85 -0
- package/dist/assets/components/Checkbox/Checkbox.module-_XqqEodq.css +82 -0
- package/dist/assets/components/DatePicker/Calendar.module-D3fcZWFD.css +316 -0
- package/dist/assets/components/DatePicker/Datepicker.module-BxWRyQpP.css +39 -0
- package/dist/assets/components/Dropdown/Dropdown.module-DgjqziBo.css +242 -0
- package/dist/assets/components/FormInput/FormInput.module-DvfUbgbC.css +240 -0
- package/dist/assets/components/InlineLoading/InlineLoading.module-iVTVTMU0.css +40 -0
- package/dist/assets/components/MainButton/MainButton.module-8Us8t8Lb.css +306 -0
- package/dist/assets/components/NotificationToast/NotificationToast.module-mSanXElM.css +179 -0
- package/dist/assets/components/Popup/Popup.module-C1XFPW6u.css +152 -0
- package/dist/assets/components/Radio/Radio.module-BvqKw6WX.css +21 -0
- package/dist/assets/components/Skeleton/Skeleton.module-BxbVrXDg.css +57 -0
- package/dist/assets/components/Textarea/Textarea.module-BxaBUjlU.css +167 -0
- package/dist/assets/components/TimePicker/TimePicker.module-DfRiUaeb.css +150 -0
- package/dist/assets/components/Toggle/Toggle.module-DBfTR8Br.css +75 -0
- package/dist/assets/components/Tooltip/Tooltip.module-DEYqvQtd.css +113 -0
- package/dist/components/Dropdown/Dropdown.js +3 -2
- package/dist/components/Dropdown/Dropdown.types.d.ts +2 -2
- package/dist/components/FormInput/FormInput.js +8 -1
- package/dist/components/InlineLoading/InlineLoading.d.ts +3 -0
- package/dist/components/InlineLoading/InlineLoading.js +24 -0
- package/dist/components/InlineLoading/InlineLoading.module.scss.js +11 -0
- package/dist/components/InlineLoading/InlineLoading.types.d.ts +24 -0
- package/dist/components/Textarea/Textarea.js +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.js +2 -2221
- package/package.json +57 -60
|
@@ -0,0 +1,242 @@
|
|
|
1
|
+
@font-face {
|
|
2
|
+
font-family: "Inter-Regular";
|
|
3
|
+
src: url("/assets/Inter_24pt-Regular-C7SEt4-L.woff2") format("woff2"), url("../../assets/fonts/Inter_24pt-Regular.woff") format("woff");
|
|
4
|
+
}
|
|
5
|
+
@font-face {
|
|
6
|
+
font-family: "Inter-SemiBold";
|
|
7
|
+
src: url("/assets/Inter_24pt-SemiBold-DIQUEucn.woff2") format("woff2"), url("../../assets/fonts/Inter_24pt-SemiBold.woff") format("woff");
|
|
8
|
+
}
|
|
9
|
+
@font-face {
|
|
10
|
+
font-family: "Inter-Medium";
|
|
11
|
+
src: url("/assets/Inter_24pt-Medium-C1cYvkz2.woff2") format("woff2"), url("../../assets/fonts/Inter_24pt-Medium.woff") format("woff");
|
|
12
|
+
}
|
|
13
|
+
.Dropdown-module__dropdownWrapper {
|
|
14
|
+
user-select: none;
|
|
15
|
+
width: 100%;
|
|
16
|
+
}
|
|
17
|
+
.Dropdown-module__dropdownWrapper .Dropdown-module__dropdownInputWrapper {
|
|
18
|
+
width: 100%;
|
|
19
|
+
cursor: pointer;
|
|
20
|
+
}
|
|
21
|
+
.Dropdown-module__dropdownWrapper .Dropdown-module__dropdownInputWrapper .Dropdown-module__dropdownInputSlot {
|
|
22
|
+
display: flex;
|
|
23
|
+
align-items: center;
|
|
24
|
+
gap: 2px;
|
|
25
|
+
border-right: 1px solid #e6e6e6;
|
|
26
|
+
}
|
|
27
|
+
.Dropdown-module__dropdownWrapper .Dropdown-module__dropdownInputWrapper .Dropdown-module__dropdownInputSlot p {
|
|
28
|
+
overflow: hidden;
|
|
29
|
+
color: #717680;
|
|
30
|
+
font-feature-settings: "liga" off, "clig" off;
|
|
31
|
+
text-overflow: ellipsis;
|
|
32
|
+
font-family: "Inter-Regular";
|
|
33
|
+
font-size: 16px;
|
|
34
|
+
font-style: normal;
|
|
35
|
+
font-weight: 400;
|
|
36
|
+
line-height: 24px; /* 171.429% */
|
|
37
|
+
letter-spacing: 0.1px;
|
|
38
|
+
}
|
|
39
|
+
.Dropdown-module__dropdownWrapper .Dropdown-module__dropdownInputWrapper .Dropdown-module__dropdownInputSlot img {
|
|
40
|
+
width: 30px;
|
|
41
|
+
height: 30px;
|
|
42
|
+
object-fit: contain;
|
|
43
|
+
}
|
|
44
|
+
.Dropdown-module__dropdownWrapper .Dropdown-module__dropdownInputWrapper .Dropdown-module__dropdownInputSlot .Dropdown-module__dropdownRightIconArrow {
|
|
45
|
+
display: flex;
|
|
46
|
+
align-items: center;
|
|
47
|
+
justify-content: center;
|
|
48
|
+
cursor: pointer;
|
|
49
|
+
transition: transform 0.2s ease-in-out;
|
|
50
|
+
width: 29px;
|
|
51
|
+
height: 24px;
|
|
52
|
+
}
|
|
53
|
+
.Dropdown-module__dropdownWrapper .Dropdown-module__dropdownInputWrapper .Dropdown-module__dropdownInputSlot .Dropdown-module__dropdownRightIconArrow.Dropdown-module__focused {
|
|
54
|
+
transform: rotate(180deg);
|
|
55
|
+
}
|
|
56
|
+
.Dropdown-module__dropdownWrapper .Dropdown-module__dropdownInputWrapper ul.Dropdown-module__dropdownInputSlot {
|
|
57
|
+
overflow: hidden;
|
|
58
|
+
width: 100%;
|
|
59
|
+
display: flex;
|
|
60
|
+
align-items: center;
|
|
61
|
+
gap: 6px;
|
|
62
|
+
}
|
|
63
|
+
.Dropdown-module__dropdownWrapper .Dropdown-module__dropdownInputWrapper ul.Dropdown-module__dropdownInputSlot li.Dropdown-module__dropdownInputSlotItem {
|
|
64
|
+
border-radius: 999px;
|
|
65
|
+
background: #f2f2f2;
|
|
66
|
+
min-width: 80px;
|
|
67
|
+
max-width: 100px;
|
|
68
|
+
display: flex;
|
|
69
|
+
align-items: center;
|
|
70
|
+
gap: 6px;
|
|
71
|
+
padding: 6px 12px;
|
|
72
|
+
cursor: default;
|
|
73
|
+
}
|
|
74
|
+
.Dropdown-module__dropdownWrapper .Dropdown-module__dropdownInputWrapper ul.Dropdown-module__dropdownInputSlot li.Dropdown-module__dropdownInputSlotItem .Dropdown-module__dropdownInputSlotItemLabel {
|
|
75
|
+
width: 100%;
|
|
76
|
+
overflow: hidden;
|
|
77
|
+
text-overflow: ellipsis;
|
|
78
|
+
white-space: nowrap;
|
|
79
|
+
color: #131314;
|
|
80
|
+
font-family: "Inter-Regular";
|
|
81
|
+
font-size: 12px;
|
|
82
|
+
font-style: normal;
|
|
83
|
+
font-weight: 400;
|
|
84
|
+
line-height: 16px; /* 133.333% */
|
|
85
|
+
letter-spacing: 0.1px;
|
|
86
|
+
}
|
|
87
|
+
.Dropdown-module__dropdownWrapper .Dropdown-module__dropdownInputWrapper ul.Dropdown-module__dropdownInputSlot li.Dropdown-module__dropdownInputSlotItem .Dropdown-module__dropdownInputSlotItemClose {
|
|
88
|
+
display: flex;
|
|
89
|
+
justify-content: center;
|
|
90
|
+
align-items: center;
|
|
91
|
+
cursor: pointer;
|
|
92
|
+
}
|
|
93
|
+
.Dropdown-module__dropdownWrapper .Dropdown-module__dropdownInputWrapper ul.Dropdown-module__dropdownInputSlot li.Dropdown-module__dropdownInputSlotItem.Dropdown-module__dropdownInputSlotItemMore {
|
|
94
|
+
justify-content: center;
|
|
95
|
+
min-width: 44px;
|
|
96
|
+
}
|
|
97
|
+
.Dropdown-module__dropdownWrapper .Dropdown-module__dropdownInputWrapper .Dropdown-module__dropdownRightIcon {
|
|
98
|
+
display: flex;
|
|
99
|
+
align-items: center;
|
|
100
|
+
gap: 8px;
|
|
101
|
+
margin: 8px;
|
|
102
|
+
}
|
|
103
|
+
.Dropdown-module__dropdownWrapper .Dropdown-module__dropdownInputWrapper .Dropdown-module__dropdownRightIcon .Dropdown-module__dropdownRightIconClose {
|
|
104
|
+
display: flex;
|
|
105
|
+
align-items: center;
|
|
106
|
+
justify-content: center;
|
|
107
|
+
cursor: pointer;
|
|
108
|
+
}
|
|
109
|
+
.Dropdown-module__dropdownWrapper .Dropdown-module__dropdownInputWrapper .Dropdown-module__dropdownRightIcon .Dropdown-module__dropdownRightIconArrow {
|
|
110
|
+
display: flex;
|
|
111
|
+
align-items: center;
|
|
112
|
+
justify-content: center;
|
|
113
|
+
cursor: pointer;
|
|
114
|
+
transition: transform 0.2s ease-in-out;
|
|
115
|
+
}
|
|
116
|
+
.Dropdown-module__dropdownWrapper .Dropdown-module__dropdownInputWrapper .Dropdown-module__dropdownRightIcon.Dropdown-module__focused .Dropdown-module__dropdownRightIconArrow {
|
|
117
|
+
transform: rotate(180deg);
|
|
118
|
+
}
|
|
119
|
+
.Dropdown-module__dropdownWrapper .Dropdown-module__dropdownListContainer {
|
|
120
|
+
width: 100%;
|
|
121
|
+
padding: 8px;
|
|
122
|
+
border-radius: 12px;
|
|
123
|
+
border: 1px solid #e6e6e6;
|
|
124
|
+
background: #fff;
|
|
125
|
+
box-shadow: 0px 2px 4px 0px rgba(19, 19, 20, 0.04);
|
|
126
|
+
display: flex;
|
|
127
|
+
flex-direction: column;
|
|
128
|
+
gap: 8px;
|
|
129
|
+
}
|
|
130
|
+
.Dropdown-module__dropdownWrapper .Dropdown-module__dropdownListContainer ul.Dropdown-module__dropdownList {
|
|
131
|
+
width: 100%;
|
|
132
|
+
max-height: 320px;
|
|
133
|
+
overflow-y: auto;
|
|
134
|
+
display: flex;
|
|
135
|
+
flex-direction: column;
|
|
136
|
+
align-items: flex-start;
|
|
137
|
+
gap: 2px;
|
|
138
|
+
align-self: stretch;
|
|
139
|
+
}
|
|
140
|
+
.Dropdown-module__dropdownWrapper .Dropdown-module__dropdownListContainer ul.Dropdown-module__dropdownList li.Dropdown-module__dropdownItem {
|
|
141
|
+
width: 100%;
|
|
142
|
+
border-radius: 4px;
|
|
143
|
+
background: #fff;
|
|
144
|
+
display: flex;
|
|
145
|
+
padding: 6px 16px 6px 6px;
|
|
146
|
+
align-items: center;
|
|
147
|
+
gap: 8px;
|
|
148
|
+
}
|
|
149
|
+
.Dropdown-module__dropdownWrapper .Dropdown-module__dropdownListContainer ul.Dropdown-module__dropdownList li.Dropdown-module__dropdownItem.Dropdown-module__selected {
|
|
150
|
+
width: 100%;
|
|
151
|
+
border-radius: 4px;
|
|
152
|
+
background: #ecf3ff;
|
|
153
|
+
}
|
|
154
|
+
.Dropdown-module__dropdownWrapper .Dropdown-module__dropdownListContainer ul.Dropdown-module__dropdownList li.Dropdown-module__dropdownItem.Dropdown-module__selected .Dropdown-module__dropdownItemLabel {
|
|
155
|
+
width: 100%;
|
|
156
|
+
}
|
|
157
|
+
.Dropdown-module__dropdownWrapper .Dropdown-module__dropdownListContainer ul.Dropdown-module__dropdownList li.Dropdown-module__dropdownItem.Dropdown-module__selected .Dropdown-module__dropdownItemLabel p {
|
|
158
|
+
width: 100%;
|
|
159
|
+
overflow: hidden;
|
|
160
|
+
color: #0058ff !important;
|
|
161
|
+
text-overflow: ellipsis;
|
|
162
|
+
font-family: "Inter-Regular";
|
|
163
|
+
font-size: 14px;
|
|
164
|
+
font-style: normal;
|
|
165
|
+
font-weight: 400;
|
|
166
|
+
line-height: 24px; /* 171.429% */
|
|
167
|
+
letter-spacing: 0.1px;
|
|
168
|
+
}
|
|
169
|
+
.Dropdown-module__dropdownWrapper .Dropdown-module__dropdownListContainer ul.Dropdown-module__dropdownList li.Dropdown-module__dropdownItem.Dropdown-module__hovered {
|
|
170
|
+
cursor: pointer;
|
|
171
|
+
}
|
|
172
|
+
.Dropdown-module__dropdownWrapper .Dropdown-module__dropdownListContainer ul.Dropdown-module__dropdownList li.Dropdown-module__dropdownItem.Dropdown-module__hovered:hover {
|
|
173
|
+
background: #f2f2f2;
|
|
174
|
+
}
|
|
175
|
+
.Dropdown-module__dropdownWrapper .Dropdown-module__dropdownListContainer ul.Dropdown-module__dropdownList li.Dropdown-module__dropdownItem.Dropdown-module__disabled p:first-of-type {
|
|
176
|
+
color: #95969c !important;
|
|
177
|
+
}
|
|
178
|
+
.Dropdown-module__dropdownWrapper .Dropdown-module__dropdownListContainer ul.Dropdown-module__dropdownList li.Dropdown-module__dropdownItem .Dropdown-module__itemCheckbox {
|
|
179
|
+
display: flex;
|
|
180
|
+
justify-content: center;
|
|
181
|
+
align-items: center;
|
|
182
|
+
}
|
|
183
|
+
.Dropdown-module__dropdownWrapper .Dropdown-module__dropdownListContainer ul.Dropdown-module__dropdownList li.Dropdown-module__dropdownItem .Dropdown-module__dropdownItemLabel {
|
|
184
|
+
width: calc(100% - 20px);
|
|
185
|
+
display: flex;
|
|
186
|
+
align-items: center;
|
|
187
|
+
justify-content: space-between;
|
|
188
|
+
}
|
|
189
|
+
.Dropdown-module__dropdownWrapper .Dropdown-module__dropdownListContainer ul.Dropdown-module__dropdownList li.Dropdown-module__dropdownItem .Dropdown-module__dropdownItemLabel .Dropdown-module__dropdownItemLabelInput {
|
|
190
|
+
display: flex;
|
|
191
|
+
align-items: center;
|
|
192
|
+
gap: 8px;
|
|
193
|
+
}
|
|
194
|
+
.Dropdown-module__dropdownWrapper .Dropdown-module__dropdownListContainer ul.Dropdown-module__dropdownList li.Dropdown-module__dropdownItem .Dropdown-module__dropdownItemLabel .Dropdown-module__dropdownItemLabelInput .Dropdown-module__countryName {
|
|
195
|
+
overflow: hidden;
|
|
196
|
+
color: #131314;
|
|
197
|
+
font-feature-settings: "liga" off, "clig" off;
|
|
198
|
+
text-overflow: ellipsis;
|
|
199
|
+
font-family: "Inter-Regular";
|
|
200
|
+
font-size: 14px;
|
|
201
|
+
font-style: normal;
|
|
202
|
+
font-weight: 400;
|
|
203
|
+
line-height: 24px; /* 171.429% */
|
|
204
|
+
letter-spacing: 0.1px;
|
|
205
|
+
}
|
|
206
|
+
.Dropdown-module__dropdownWrapper .Dropdown-module__dropdownListContainer ul.Dropdown-module__dropdownList li.Dropdown-module__dropdownItem .Dropdown-module__dropdownItemLabel .Dropdown-module__dropdownItemLabelInput .Dropdown-module__countryDialCode {
|
|
207
|
+
overflow: hidden;
|
|
208
|
+
color: #646569;
|
|
209
|
+
font-feature-settings: "liga" off, "clig" off;
|
|
210
|
+
text-overflow: ellipsis;
|
|
211
|
+
font-family: "Inter-Regular";
|
|
212
|
+
font-size: 14px;
|
|
213
|
+
font-style: normal;
|
|
214
|
+
font-weight: 400;
|
|
215
|
+
line-height: 24px; /* 171.429% */
|
|
216
|
+
letter-spacing: 0.1px;
|
|
217
|
+
}
|
|
218
|
+
.Dropdown-module__dropdownWrapper .Dropdown-module__dropdownListContainer ul.Dropdown-module__dropdownList li.Dropdown-module__dropdownItem .Dropdown-module__dropdownItemLabel p:first-of-type:not(.Dropdown-module__selectAll) {
|
|
219
|
+
width: 100%;
|
|
220
|
+
}
|
|
221
|
+
.Dropdown-module__dropdownWrapper .Dropdown-module__dropdownListContainer ul.Dropdown-module__dropdownList li.Dropdown-module__dropdownItem .Dropdown-module__dropdownItemLabel p:first-of-type {
|
|
222
|
+
overflow: hidden;
|
|
223
|
+
text-overflow: ellipsis;
|
|
224
|
+
white-space: nowrap;
|
|
225
|
+
color: #131314;
|
|
226
|
+
font-family: "Inter-Regular";
|
|
227
|
+
font-size: 14px;
|
|
228
|
+
font-style: normal;
|
|
229
|
+
font-weight: 400;
|
|
230
|
+
line-height: 24px; /* 171.429% */
|
|
231
|
+
letter-spacing: 0.1px;
|
|
232
|
+
}
|
|
233
|
+
.Dropdown-module__dropdownWrapper .Dropdown-module__dropdownListContainer ul.Dropdown-module__dropdownList li.Dropdown-module__dropdownItem .Dropdown-module__dropdownItemLabel p:last-of-type {
|
|
234
|
+
overflow: hidden;
|
|
235
|
+
color: #131314;
|
|
236
|
+
font-family: "Inter-Regular";
|
|
237
|
+
font-size: 14px;
|
|
238
|
+
font-style: normal;
|
|
239
|
+
font-weight: 400;
|
|
240
|
+
line-height: 24px; /* 171.429% */
|
|
241
|
+
letter-spacing: 0.1px;
|
|
242
|
+
}
|
|
@@ -0,0 +1,240 @@
|
|
|
1
|
+
@font-face {
|
|
2
|
+
font-family: "Inter-Regular";
|
|
3
|
+
src: url("/assets/Inter_24pt-Regular-C7SEt4-L.woff2") format("woff2"), url("../../assets/fonts/Inter_24pt-Regular.woff") format("woff");
|
|
4
|
+
}
|
|
5
|
+
@font-face {
|
|
6
|
+
font-family: "Inter-SemiBold";
|
|
7
|
+
src: url("/assets/Inter_24pt-SemiBold-DIQUEucn.woff2") format("woff2"), url("../../assets/fonts/Inter_24pt-SemiBold.woff") format("woff");
|
|
8
|
+
}
|
|
9
|
+
@font-face {
|
|
10
|
+
font-family: "Inter-Medium";
|
|
11
|
+
src: url("/assets/Inter_24pt-Medium-C1cYvkz2.woff2") format("woff2"), url("../../assets/fonts/Inter_24pt-Medium.woff") format("woff");
|
|
12
|
+
}
|
|
13
|
+
.FormInput-module__inputWrapper {
|
|
14
|
+
width: 100%;
|
|
15
|
+
display: flex;
|
|
16
|
+
flex-direction: column;
|
|
17
|
+
gap: 10px;
|
|
18
|
+
}
|
|
19
|
+
.FormInput-module__inputWrapper.FormInput-module__sm .FormInput-module__formInputWrapper {
|
|
20
|
+
height: 36px;
|
|
21
|
+
}
|
|
22
|
+
.FormInput-module__inputWrapper.FormInput-module__md .FormInput-module__formInputWrapper {
|
|
23
|
+
height: 40px;
|
|
24
|
+
}
|
|
25
|
+
.FormInput-module__inputWrapper.FormInput-module__disabled .FormInput-module__formInputLabel {
|
|
26
|
+
width: 100%;
|
|
27
|
+
overflow: hidden;
|
|
28
|
+
color: #95969c;
|
|
29
|
+
text-overflow: ellipsis;
|
|
30
|
+
font-family: "Inter-Medium";
|
|
31
|
+
font-size: 12px;
|
|
32
|
+
font-style: normal;
|
|
33
|
+
font-weight: 450;
|
|
34
|
+
line-height: 16px; /* 133.333% */
|
|
35
|
+
letter-spacing: 0.1px;
|
|
36
|
+
}
|
|
37
|
+
.FormInput-module__inputWrapper.FormInput-module__disabled .FormInput-module__formInput {
|
|
38
|
+
width: 100%;
|
|
39
|
+
overflow: hidden;
|
|
40
|
+
color: #7a7b80;
|
|
41
|
+
text-overflow: ellipsis;
|
|
42
|
+
font-family: "Inter-Regular";
|
|
43
|
+
font-size: 14px;
|
|
44
|
+
font-style: normal;
|
|
45
|
+
font-weight: 400;
|
|
46
|
+
line-height: 24px; /* 171.429% */
|
|
47
|
+
letter-spacing: 0.1px;
|
|
48
|
+
}
|
|
49
|
+
.FormInput-module__inputWrapper.FormInput-module__disabled .FormInput-module__formInputHelperText {
|
|
50
|
+
width: 100%;
|
|
51
|
+
overflow: hidden;
|
|
52
|
+
color: #95969c;
|
|
53
|
+
text-overflow: ellipsis;
|
|
54
|
+
font-family: "Inter-Medium";
|
|
55
|
+
font-size: 12px;
|
|
56
|
+
font-style: normal;
|
|
57
|
+
font-weight: 450;
|
|
58
|
+
line-height: 16px; /* 133.333% */
|
|
59
|
+
letter-spacing: 0.1px;
|
|
60
|
+
}
|
|
61
|
+
.FormInput-module__inputWrapper.FormInput-module__disabled .FormInput-module__formInputWrapper {
|
|
62
|
+
border-radius: 6px;
|
|
63
|
+
border: 1px solid #e6e6e6;
|
|
64
|
+
background: #fafafa;
|
|
65
|
+
}
|
|
66
|
+
.FormInput-module__inputWrapper.FormInput-module__disabled .FormInput-module__formInputWrapper .FormInput-module__formInput {
|
|
67
|
+
width: 100%;
|
|
68
|
+
overflow: hidden;
|
|
69
|
+
color: #7a7b80;
|
|
70
|
+
text-overflow: ellipsis;
|
|
71
|
+
font-family: "Inter-Regular";
|
|
72
|
+
font-size: 14px;
|
|
73
|
+
font-style: normal;
|
|
74
|
+
font-weight: 400;
|
|
75
|
+
line-height: 24px; /* 171.429% */
|
|
76
|
+
letter-spacing: 0.1px;
|
|
77
|
+
cursor: not-allowed;
|
|
78
|
+
}
|
|
79
|
+
.FormInput-module__inputWrapper.FormInput-module__disabled .FormInput-module__formInputWrapper .FormInput-module__formInput::placeholder {
|
|
80
|
+
width: 100%;
|
|
81
|
+
overflow: hidden;
|
|
82
|
+
color: #7a7b80;
|
|
83
|
+
text-overflow: ellipsis;
|
|
84
|
+
font-family: "Inter-Regular";
|
|
85
|
+
font-size: 14px;
|
|
86
|
+
font-style: normal;
|
|
87
|
+
font-weight: 400;
|
|
88
|
+
line-height: 24px; /* 171.429% */
|
|
89
|
+
letter-spacing: 0.1px;
|
|
90
|
+
}
|
|
91
|
+
.FormInput-module__inputWrapper .FormInput-module__formInputLabelWrapper {
|
|
92
|
+
width: 100%;
|
|
93
|
+
display: flex;
|
|
94
|
+
align-items: center;
|
|
95
|
+
justify-content: space-between;
|
|
96
|
+
}
|
|
97
|
+
.FormInput-module__inputWrapper .FormInput-module__formInputLabelWrapper .FormInput-module__formInputLabel {
|
|
98
|
+
width: 100%;
|
|
99
|
+
width: 100%;
|
|
100
|
+
overflow: hidden;
|
|
101
|
+
color: #131314;
|
|
102
|
+
font-family: "Inter-Medium";
|
|
103
|
+
font-size: 12px;
|
|
104
|
+
font-style: normal;
|
|
105
|
+
font-weight: 450;
|
|
106
|
+
line-height: 16px; /* 171.429% */
|
|
107
|
+
letter-spacing: 0.1px;
|
|
108
|
+
}
|
|
109
|
+
.FormInput-module__inputWrapper .FormInput-module__formInputLabelWrapper .FormInput-module__formInputLabel .FormInput-module__formInputRequired {
|
|
110
|
+
overflow: hidden;
|
|
111
|
+
color: #e3292f;
|
|
112
|
+
text-overflow: ellipsis;
|
|
113
|
+
font-family: "Inter-Medium";
|
|
114
|
+
font-size: 12px;
|
|
115
|
+
font-style: normal;
|
|
116
|
+
font-weight: 450;
|
|
117
|
+
line-height: 16px; /* 133.333% */
|
|
118
|
+
letter-spacing: 0.1px;
|
|
119
|
+
}
|
|
120
|
+
.FormInput-module__inputWrapper .FormInput-module__formInputLabelWrapper .FormInput-module__formInputHelperSlot {
|
|
121
|
+
display: flex;
|
|
122
|
+
align-items: center;
|
|
123
|
+
justify-content: center;
|
|
124
|
+
}
|
|
125
|
+
.FormInput-module__inputWrapper .FormInput-module__formInputWrapper {
|
|
126
|
+
width: 100%;
|
|
127
|
+
display: flex;
|
|
128
|
+
align-items: center;
|
|
129
|
+
gap: 8px;
|
|
130
|
+
padding: 8px;
|
|
131
|
+
border-radius: 6px;
|
|
132
|
+
border: 1px solid #e6e6e6;
|
|
133
|
+
background: #fff;
|
|
134
|
+
}
|
|
135
|
+
.FormInput-module__inputWrapper .FormInput-module__formInputWrapper.FormInput-module__errorState {
|
|
136
|
+
border-radius: 6px;
|
|
137
|
+
background: #fff;
|
|
138
|
+
outline: 1px solid #f63e45;
|
|
139
|
+
outline-offset: -1px;
|
|
140
|
+
box-shadow: none;
|
|
141
|
+
}
|
|
142
|
+
.FormInput-module__inputWrapper .FormInput-module__formInputWrapper.FormInput-module__focused {
|
|
143
|
+
border-radius: 6px;
|
|
144
|
+
background: #fff;
|
|
145
|
+
outline: 2px solid #0058ff;
|
|
146
|
+
outline-offset: -2px;
|
|
147
|
+
box-shadow: none;
|
|
148
|
+
}
|
|
149
|
+
.FormInput-module__inputWrapper .FormInput-module__formInputWrapper.FormInput-module__active {
|
|
150
|
+
border-radius: 6px;
|
|
151
|
+
background: #fff;
|
|
152
|
+
outline: 1.5px solid #0058ff;
|
|
153
|
+
outline-offset: -1.5px;
|
|
154
|
+
box-shadow: 0 0 0 2px #dee9fc;
|
|
155
|
+
}
|
|
156
|
+
.FormInput-module__inputWrapper .FormInput-module__formInputWrapper.FormInput-module__errorFocused {
|
|
157
|
+
border-radius: 6px;
|
|
158
|
+
background: #fff;
|
|
159
|
+
outline: 2px solid #f63e45;
|
|
160
|
+
outline-offset: -2px;
|
|
161
|
+
box-shadow: none;
|
|
162
|
+
}
|
|
163
|
+
.FormInput-module__inputWrapper .FormInput-module__formInputWrapper.FormInput-module__errorActive {
|
|
164
|
+
border-radius: 6px;
|
|
165
|
+
background: #fff;
|
|
166
|
+
outline: 1.5px solid #f63e45;
|
|
167
|
+
outline-offset: -1.5px;
|
|
168
|
+
box-shadow: 0 0 0 2px #fcdcdd;
|
|
169
|
+
}
|
|
170
|
+
.FormInput-module__inputWrapper .FormInput-module__formInputWrapper input.FormInput-module__formInput {
|
|
171
|
+
width: 100%;
|
|
172
|
+
border: none;
|
|
173
|
+
outline: none;
|
|
174
|
+
background-color: transparent;
|
|
175
|
+
caret-color: #0058ff;
|
|
176
|
+
width: 100%;
|
|
177
|
+
overflow: hidden;
|
|
178
|
+
color: #131314;
|
|
179
|
+
text-overflow: ellipsis;
|
|
180
|
+
font-family: "Inter-Regular";
|
|
181
|
+
font-size: 14px;
|
|
182
|
+
font-style: normal;
|
|
183
|
+
font-weight: 400;
|
|
184
|
+
line-height: 24px; /* 171.429% */
|
|
185
|
+
letter-spacing: 0.1px;
|
|
186
|
+
}
|
|
187
|
+
.FormInput-module__inputWrapper .FormInput-module__formInputWrapper input.FormInput-module__formInput::placeholder {
|
|
188
|
+
width: 100%;
|
|
189
|
+
overflow: hidden;
|
|
190
|
+
color: #646569;
|
|
191
|
+
text-overflow: ellipsis;
|
|
192
|
+
font-family: "Inter-Regular";
|
|
193
|
+
font-size: 14px;
|
|
194
|
+
font-style: normal;
|
|
195
|
+
font-weight: 400;
|
|
196
|
+
line-height: 24px; /* 171.429% */
|
|
197
|
+
letter-spacing: 0.1px;
|
|
198
|
+
}
|
|
199
|
+
.FormInput-module__inputWrapper .FormInput-module__formInputWrapper .FormInput-module__formInputSlot {
|
|
200
|
+
display: grid;
|
|
201
|
+
place-items: center;
|
|
202
|
+
}
|
|
203
|
+
.FormInput-module__inputWrapper .FormInput-module__formInputHelperText {
|
|
204
|
+
width: 100%;
|
|
205
|
+
overflow: hidden;
|
|
206
|
+
color: #131314;
|
|
207
|
+
text-overflow: ellipsis;
|
|
208
|
+
font-family: "Inter-Medium";
|
|
209
|
+
font-size: 12px;
|
|
210
|
+
font-style: normal;
|
|
211
|
+
font-weight: 450;
|
|
212
|
+
line-height: 16px; /* 133.333% */
|
|
213
|
+
letter-spacing: 0.1px;
|
|
214
|
+
}
|
|
215
|
+
.FormInput-module__inputWrapper .FormInput-module__formInputHelperText.FormInput-module__errorHelperText {
|
|
216
|
+
width: 100%;
|
|
217
|
+
overflow: hidden;
|
|
218
|
+
color: #e3292f;
|
|
219
|
+
text-overflow: ellipsis;
|
|
220
|
+
font-family: "Inter-Medium";
|
|
221
|
+
font-size: 12px;
|
|
222
|
+
font-style: normal;
|
|
223
|
+
font-weight: 450;
|
|
224
|
+
line-height: 16px; /* 133.333% */
|
|
225
|
+
letter-spacing: 0.1px;
|
|
226
|
+
color: #e3292f;
|
|
227
|
+
}
|
|
228
|
+
.FormInput-module__inputWrapper .FormInput-module__formInputHelperText.FormInput-module__successHelperText {
|
|
229
|
+
width: 100%;
|
|
230
|
+
overflow: hidden;
|
|
231
|
+
color: #328707;
|
|
232
|
+
text-overflow: ellipsis;
|
|
233
|
+
font-family: "Inter-Medium";
|
|
234
|
+
font-size: 12px;
|
|
235
|
+
font-style: normal;
|
|
236
|
+
font-weight: 450;
|
|
237
|
+
line-height: 16px; /* 133.333% */
|
|
238
|
+
letter-spacing: 0.1px;
|
|
239
|
+
color: #328707;
|
|
240
|
+
}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
@font-face {
|
|
2
|
+
font-family: "Inter-Regular";
|
|
3
|
+
src: url("/assets/Inter_24pt-Regular-C7SEt4-L.woff2") format("woff2"), url("../../assets/fonts/Inter_24pt-Regular.woff") format("woff");
|
|
4
|
+
}
|
|
5
|
+
@font-face {
|
|
6
|
+
font-family: "Inter-SemiBold";
|
|
7
|
+
src: url("/assets/Inter_24pt-SemiBold-DIQUEucn.woff2") format("woff2"), url("../../assets/fonts/Inter_24pt-SemiBold.woff") format("woff");
|
|
8
|
+
}
|
|
9
|
+
@font-face {
|
|
10
|
+
font-family: "Inter-Medium";
|
|
11
|
+
src: url("/assets/Inter_24pt-Medium-C1cYvkz2.woff2") format("woff2"), url("../../assets/fonts/Inter_24pt-Medium.woff") format("woff");
|
|
12
|
+
}
|
|
13
|
+
.InlineLoading-module__inlineLoadingWrapper {
|
|
14
|
+
width: 100%;
|
|
15
|
+
}
|
|
16
|
+
.InlineLoading-module__inlineLoadingWrapper div {
|
|
17
|
+
display: flex;
|
|
18
|
+
gap: 0.5rem;
|
|
19
|
+
}
|
|
20
|
+
.InlineLoading-module__inlineLoadingWrapper div.InlineLoading-module__loading svg {
|
|
21
|
+
animation: InlineLoading-module__anim 1s infinite linear;
|
|
22
|
+
}
|
|
23
|
+
@keyframes InlineLoading-module__anim {
|
|
24
|
+
to {
|
|
25
|
+
transform: rotate(1turn);
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
.InlineLoading-module__inlineLoadingWrapper div span {
|
|
29
|
+
color: #181d27;
|
|
30
|
+
font-family: "Inter-Regular", sans-serif;
|
|
31
|
+
font-size: var(--Font-size-text-md, 16px);
|
|
32
|
+
font-style: normal;
|
|
33
|
+
font-weight: 400;
|
|
34
|
+
line-height: 1.125rem;
|
|
35
|
+
font-size: 0.75rem;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
.InlineLoading-module__dark.InlineLoading-module__inlineLoadingWrapper span {
|
|
39
|
+
color: #f7f7f7;
|
|
40
|
+
}
|