react-ui-mat 5.71.73 → 5.71.81
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/Animate.js +1 -1
- package/dist/Appip.js +1 -1
- package/dist/Badges.js +1 -1
- package/dist/Button.js +1 -1
- package/dist/CardSection.js +1 -1
- package/dist/Checkbox.js +1 -1
- package/dist/Circular.js +1 -1
- package/dist/Collapse.js +1 -1
- package/dist/Context.js +1 -1
- package/dist/DatePicker.js +1 -1
- package/dist/DateUtil.js +1 -1
- package/dist/Divider.js +1 -1
- package/dist/DragableModal.js +1 -1
- package/dist/FilterPanel.js +1 -1
- package/dist/Icons.js +1 -1
- package/dist/IncorrectEntry.js +1 -1
- package/dist/Input.js +1 -1
- package/dist/InputFields.js +1 -1
- package/dist/MUPlayer.js +1 -1
- package/dist/Multiselect.js +1 -1
- package/dist/Notes.js +1 -1
- package/dist/Numeral.js +1 -1
- package/dist/OvView.js +1 -1
- package/dist/Paginator.js +1 -1
- package/dist/PasswordInput.js +1 -1
- package/dist/Phone.d.ts +1 -0
- package/dist/Phone.js +1 -1
- package/dist/Picker.js +1 -1
- package/dist/Progress.js +1 -1
- package/dist/Radio.js +1 -1
- package/dist/Rate.js +1 -1
- package/dist/ReceiptCapture.js +1 -1
- package/dist/Select.js +1 -1
- package/dist/SortDirection.js +1 -1
- package/dist/Spinner.js +1 -1
- package/dist/Switch.js +1 -1
- package/dist/Textarea.js +1 -1
- package/dist/Tooltip.js +1 -1
- package/dist/common.js +1 -1
- package/dist/constant.js +1 -1
- package/dist/dummy-sw.js +1 -1
- package/dist/index.js +1 -1
- package/dist/logger.js +1 -1
- package/dist/reactuimat-base.css +1200 -1
- package/dist/reactuimat.css +551 -1
- package/dist/types.base.js +1 -1
- package/dist/types.d.ts +3 -2
- package/dist/types.js +1 -1
- package/dist/typesout.js +1 -1
- package/dist/utils.d.ts +6 -5
- package/dist/utils.js +1 -1
- package/package.json +1 -1
package/dist/reactuimat.css
CHANGED
|
@@ -1 +1,551 @@
|
|
|
1
|
-
|
|
1
|
+
input,
|
|
2
|
+
input[type="number"],
|
|
3
|
+
textarea,
|
|
4
|
+
select {
|
|
5
|
+
width: 100%;
|
|
6
|
+
background-color: white !important;
|
|
7
|
+
border-width: 2.25px;
|
|
8
|
+
border-style: solid;
|
|
9
|
+
border-color: rgb(209 213 219);
|
|
10
|
+
box-sizing: border-box;
|
|
11
|
+
padding: 5px 7px;
|
|
12
|
+
height: 39px;
|
|
13
|
+
min-height: 39px;
|
|
14
|
+
/* border-radius: 2px; */
|
|
15
|
+
background-color: white !important;
|
|
16
|
+
transition: 0.7s ease-out;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
textarea {
|
|
20
|
+
border-radius: 5px;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
input {
|
|
24
|
+
padding: 5px 7px;
|
|
25
|
+
border-width: 2.25px;
|
|
26
|
+
border-radius: 5px;
|
|
27
|
+
border-style: solid;
|
|
28
|
+
border-color: rgb(209 213 219);
|
|
29
|
+
box-sizing: border-box;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
input[type="date"] {
|
|
33
|
+
max-width: 29.75rem;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
input[type="radio"],
|
|
37
|
+
input[type="checkbox"] {
|
|
38
|
+
min-height: unset !important;
|
|
39
|
+
max-height: 25px;
|
|
40
|
+
width: 25px !important;
|
|
41
|
+
height: 25px !important;
|
|
42
|
+
box-shadow: none !important;
|
|
43
|
+
border-radius: 5px !important;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
input:disabled,
|
|
47
|
+
select:disabled {
|
|
48
|
+
background-color: #f5f5f5 !important;
|
|
49
|
+
opacity: 0.4;
|
|
50
|
+
pointer-events: none;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
input:focus,
|
|
54
|
+
input[type="date"]:focus,
|
|
55
|
+
input[type="number"]:focus,
|
|
56
|
+
textarea:focus,
|
|
57
|
+
select:focus,
|
|
58
|
+
input[type="radio"]:focus+span::before,
|
|
59
|
+
input[type="checkbox"]:focus+span::before {
|
|
60
|
+
box-shadow: 0px 0px 5px #979797f0 !important;
|
|
61
|
+
border: 3px solid #3b82f680;
|
|
62
|
+
outline: 3px solid transparent;
|
|
63
|
+
outline-offset: 3px;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
input[type="checkbox"] {
|
|
67
|
+
-webkit-appearance: none;
|
|
68
|
+
appearance: none;
|
|
69
|
+
background-color: #fff;
|
|
70
|
+
margin: 0;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
input[type="checkbox"] {
|
|
74
|
+
appearance: none;
|
|
75
|
+
background-color: #fff;
|
|
76
|
+
margin: 0;
|
|
77
|
+
font: inherit;
|
|
78
|
+
color: #3b82f680;
|
|
79
|
+
width: 25px;
|
|
80
|
+
height: 25px;
|
|
81
|
+
border: 3px solid #3b82f680;
|
|
82
|
+
border-radius: 2px;
|
|
83
|
+
transform: translateY(-0.075em);
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
input[type="checkbox"] {
|
|
87
|
+
display: grid;
|
|
88
|
+
place-content: center;
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
input[type="checkbox"]::before {
|
|
92
|
+
content: "";
|
|
93
|
+
width: 14px;
|
|
94
|
+
height: 14px;
|
|
95
|
+
transform: scale(0);
|
|
96
|
+
transition: 120ms transform ease-in-out;
|
|
97
|
+
box-shadow: inset 1em 1em var(--form-control-color);
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
input[type="radio"]:checked::before,
|
|
101
|
+
input[type="checkbox"]:checked::before {
|
|
102
|
+
transform: scale(1);
|
|
103
|
+
background: #2196F3;
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
.d-input-sm {
|
|
107
|
+
padding: 3px 3px !important;
|
|
108
|
+
height: 34px !important;
|
|
109
|
+
min-height: 34px !important;
|
|
110
|
+
border-width: 1px !important;
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
button:disabled {
|
|
114
|
+
opacity: 0.25;
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
button:focus {
|
|
118
|
+
outline: 2px solid transparent;
|
|
119
|
+
outline-offset: 2px;
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
button:active {
|
|
123
|
+
outline: 2px solid transparent;
|
|
124
|
+
outline-offset: 2px;
|
|
125
|
+
box-shadow: none !important;
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
.btn {
|
|
129
|
+
font-size: 1rem;
|
|
130
|
+
line-height: 1.5rem;
|
|
131
|
+
border-width: 1px;
|
|
132
|
+
border-style: solid;
|
|
133
|
+
padding-left: 1rem;
|
|
134
|
+
padding-right: 1rem;
|
|
135
|
+
padding-top: 0.5rem;
|
|
136
|
+
padding-bottom: 0.5rem;
|
|
137
|
+
font-weight: 500;
|
|
138
|
+
height: 37px;
|
|
139
|
+
border-radius: 5px;
|
|
140
|
+
background-position: center;
|
|
141
|
+
moz-transition: all .8s ease-out;
|
|
142
|
+
-o-transition: all .8s ease-out;
|
|
143
|
+
-webkit-transition: all .8s ease-out;
|
|
144
|
+
transition: all .8s ease-out;
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
.btn-sm {
|
|
148
|
+
font-size: 0.875rem;
|
|
149
|
+
line-height: 1.25rem;
|
|
150
|
+
padding-left: 0.5rem;
|
|
151
|
+
padding-right: 0.5rem;
|
|
152
|
+
padding-top: 0.25rem;
|
|
153
|
+
padding-bottom: 0.25rem;
|
|
154
|
+
height: unset !important
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
.btn-sm>div {
|
|
158
|
+
font-size: 0.75rem;
|
|
159
|
+
line-height: 1rem;
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
.btn:active {
|
|
163
|
+
top: 1px;
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
.btn:disabled {
|
|
167
|
+
opacity: 0.25;
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
.btn:focus {
|
|
171
|
+
outline: 2px solid transparent;
|
|
172
|
+
outline-offset: 2px;
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
.btn-primary {
|
|
176
|
+
color: rgb(255 255 255);
|
|
177
|
+
background-color: rgb(59 130 246);
|
|
178
|
+
border-width: 0px;
|
|
179
|
+
}
|
|
180
|
+
|
|
181
|
+
.btn-primary-outline {
|
|
182
|
+
background-color: white;
|
|
183
|
+
color: rgb(59 130 246);
|
|
184
|
+
border: 1px solid rgb(59 130 246);
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
.btn-primary:hover {
|
|
188
|
+
color: rgb(255 255 255);
|
|
189
|
+
background-color: rgb(59 130 246) radial-gradient(circle, transparent 1%, rgb(37 99 235) 1%) center/15000%;
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
.btn-primary-outline:hover {
|
|
193
|
+
color: rgb(37 99 235);
|
|
194
|
+
background-color: rgb(59 130 246) radial-gradient(circle, transparent 1%, rgb(37 99 235) 1%) center/15000%;
|
|
195
|
+
}
|
|
196
|
+
|
|
197
|
+
.btn-primary:active,
|
|
198
|
+
.btn-primary-outline:active {
|
|
199
|
+
color: rgb(255 255 255);
|
|
200
|
+
background-color: rgb(67, 83, 126);
|
|
201
|
+
background-size: 100%;
|
|
202
|
+
transition: background 0s;
|
|
203
|
+
}
|
|
204
|
+
|
|
205
|
+
.btn-success {
|
|
206
|
+
color: rgb(255 255 255);
|
|
207
|
+
background-color: rgb(34 197 94);
|
|
208
|
+
border-width: 0px;
|
|
209
|
+
}
|
|
210
|
+
|
|
211
|
+
.btn-success-outline {
|
|
212
|
+
background-color: white;
|
|
213
|
+
color: rgb(34 197 94);
|
|
214
|
+
border: 1px solid rgb(34 197 94);
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
.btn-success:hover {
|
|
218
|
+
color: rgb(255 255 255);
|
|
219
|
+
background-color: rgb(34 197 94) radial-gradient(circle, transparent 1%, rgb(22 163 74) 1%) center/15000%;
|
|
220
|
+
}
|
|
221
|
+
|
|
222
|
+
.btn-success-outline:hover {
|
|
223
|
+
color: rgb(22 163 74);
|
|
224
|
+
background-color: rgb(34 197 94) radial-gradient(circle, transparent 1%, rgb(22 163 74) 1%) center/15000%;
|
|
225
|
+
}
|
|
226
|
+
|
|
227
|
+
.btn-success:active,
|
|
228
|
+
.btn-success-outline:active {
|
|
229
|
+
color: rgb(255 255 255);
|
|
230
|
+
background-color: rgb(40, 78, 55);
|
|
231
|
+
background-size: 100%;
|
|
232
|
+
transition: background 0s;
|
|
233
|
+
}
|
|
234
|
+
|
|
235
|
+
.btn-warning {
|
|
236
|
+
color: rgb(255 255 255);
|
|
237
|
+
background-color: rgb(249 115 22);
|
|
238
|
+
border-width: 0px;
|
|
239
|
+
}
|
|
240
|
+
|
|
241
|
+
.btn-warning-outline {
|
|
242
|
+
background-color: white;
|
|
243
|
+
color: rgb(249 115 22);
|
|
244
|
+
border: 1px solid rgb(249 115 22);
|
|
245
|
+
}
|
|
246
|
+
|
|
247
|
+
.btn-warning:hover {
|
|
248
|
+
color: rgb(255 255 255);
|
|
249
|
+
background-color: rgb(249 115 22) radial-gradient(circle, transparent 1%, rgb(234 88 12) 1%) center/15000%;
|
|
250
|
+
}
|
|
251
|
+
|
|
252
|
+
.btn-warning-outline:hover {
|
|
253
|
+
color: rgb(234 88 12);
|
|
254
|
+
background-color: rgb(249 115 22) radial-gradient(circle, transparent 1%, rgb(234 88 12) 1%) center/15000%;
|
|
255
|
+
}
|
|
256
|
+
|
|
257
|
+
.btn-warning:active,
|
|
258
|
+
.btn-warning-outline:active {
|
|
259
|
+
color: rgb(255 255 255);
|
|
260
|
+
background-color: rgb(116, 70, 54);
|
|
261
|
+
background-size: 100%;
|
|
262
|
+
transition: background 0s;
|
|
263
|
+
}
|
|
264
|
+
|
|
265
|
+
.btn-secondary {
|
|
266
|
+
color: rgb(255 255 255);
|
|
267
|
+
background-color: rgb(20 184 166);
|
|
268
|
+
border-width: 0px;
|
|
269
|
+
}
|
|
270
|
+
|
|
271
|
+
.btn-secondary-outline {
|
|
272
|
+
background-color: white;
|
|
273
|
+
color: rgb(20 184 166);
|
|
274
|
+
border: 1px solid rgb(20 184 166);
|
|
275
|
+
}
|
|
276
|
+
|
|
277
|
+
.btn-secondary:hover {
|
|
278
|
+
color: rgb(255 255 255);
|
|
279
|
+
background-color: rgb(20 184 166) radial-gradient(circle, transparent 1%, rgb(13 148 136) 1%) center/15000%;
|
|
280
|
+
}
|
|
281
|
+
|
|
282
|
+
.btn-secondary-outline:hover {
|
|
283
|
+
color: rgb(13 148 136);
|
|
284
|
+
background-color: rgb(20 184 166) radial-gradient(circle, transparent 1%, rgb(13 148 136) 1%) center/15000%;
|
|
285
|
+
}
|
|
286
|
+
|
|
287
|
+
.btn-secondary:active,
|
|
288
|
+
.btn-secondary-outline:active {
|
|
289
|
+
color: rgb(30 64 175);
|
|
290
|
+
background-color: rgb(81, 182, 170);
|
|
291
|
+
background-size: 100%;
|
|
292
|
+
transition: background 0s;
|
|
293
|
+
}
|
|
294
|
+
|
|
295
|
+
.btn-danger {
|
|
296
|
+
color: rgb(255 255 255);
|
|
297
|
+
background-color: rgb(239 68 68);
|
|
298
|
+
border-width: 0px;
|
|
299
|
+
}
|
|
300
|
+
|
|
301
|
+
.btn-danger-outline {
|
|
302
|
+
background-color: white;
|
|
303
|
+
color: rgb(239 68 68);
|
|
304
|
+
border: 1px solid rgb(239 68 68);
|
|
305
|
+
}
|
|
306
|
+
|
|
307
|
+
.btn-danger:hover {
|
|
308
|
+
color: rgb(255 255 255);
|
|
309
|
+
background-color: rgb(239 68 68) radial-gradient(circle, transparent 1%, rgb(220 38 38) 1%) center/15000%;
|
|
310
|
+
}
|
|
311
|
+
|
|
312
|
+
.btn-danger-outline:hover {
|
|
313
|
+
color: rgb(220 38 38);
|
|
314
|
+
background-color: rgb(239 68 68) radial-gradient(circle, transparent 1%, rgb(220 38 38) 1%) center/15000%;
|
|
315
|
+
}
|
|
316
|
+
|
|
317
|
+
.btn-danger:active,
|
|
318
|
+
.btn-danger-outline:active {
|
|
319
|
+
color: rgb(255 255 255);
|
|
320
|
+
background-color: rgb(120, 53, 53);
|
|
321
|
+
background-size: 100%;
|
|
322
|
+
transition: background 0s;
|
|
323
|
+
}
|
|
324
|
+
|
|
325
|
+
.btn-light {
|
|
326
|
+
color: rgb(0 0 0);
|
|
327
|
+
background-color: rgb(255 255 255);
|
|
328
|
+
border-width: 1px;
|
|
329
|
+
}
|
|
330
|
+
|
|
331
|
+
.btn-light:hover {
|
|
332
|
+
background-color: rgb(255 255 255) radial-gradient(circle, transparent 1%, rgb(245 245 245) 1%) center/15000%;
|
|
333
|
+
}
|
|
334
|
+
|
|
335
|
+
.btn-light:active {
|
|
336
|
+
color: rgb(255 255 255);
|
|
337
|
+
background-color: rgb(214, 219, 225);
|
|
338
|
+
background-size: 100%;
|
|
339
|
+
transition: background 0s;
|
|
340
|
+
}
|
|
341
|
+
|
|
342
|
+
.btn-navy {
|
|
343
|
+
color: rgb(255 255 255);
|
|
344
|
+
background-color: rgb(100 116 139);
|
|
345
|
+
border-width: 1px;
|
|
346
|
+
}
|
|
347
|
+
|
|
348
|
+
.btn-navy-outline {
|
|
349
|
+
background-color: white;
|
|
350
|
+
color: rgb(100 116 139);
|
|
351
|
+
border: 1px solid rgb(100 116 139);
|
|
352
|
+
}
|
|
353
|
+
|
|
354
|
+
.btn-navy:hover {
|
|
355
|
+
background-color: rgb(100 116 139) radial-gradient(circle, transparent 1%, rgb(71 85 105) 1%) center/15000%;
|
|
356
|
+
;
|
|
357
|
+
}
|
|
358
|
+
|
|
359
|
+
.btn-navy-outline:hover {
|
|
360
|
+
color: rgb(71 85 105);
|
|
361
|
+
background-color: rgb(100 116 139) radial-gradient(circle, transparent 1%, rgb(71 85 105) 1%) center/15000%;
|
|
362
|
+
;
|
|
363
|
+
}
|
|
364
|
+
|
|
365
|
+
.btn-navy:active,
|
|
366
|
+
.btn-navy-outline:active {
|
|
367
|
+
background-color: rgb(18, 24, 39);
|
|
368
|
+
background-size: 100%;
|
|
369
|
+
transition: background 0s;
|
|
370
|
+
}
|
|
371
|
+
|
|
372
|
+
.d-switch {
|
|
373
|
+
position: relative;
|
|
374
|
+
display: inline-block;
|
|
375
|
+
width: 60px;
|
|
376
|
+
min-width: 60px;
|
|
377
|
+
height: 34px;
|
|
378
|
+
}
|
|
379
|
+
|
|
380
|
+
.d-switch-sm {
|
|
381
|
+
height: 29px !important;
|
|
382
|
+
}
|
|
383
|
+
|
|
384
|
+
.d-switch-xs {
|
|
385
|
+
width: 17px;
|
|
386
|
+
min-width: 41px;
|
|
387
|
+
height: 23px !important;
|
|
388
|
+
}
|
|
389
|
+
|
|
390
|
+
.d-switch-disabled {
|
|
391
|
+
opacity: 0.5;
|
|
392
|
+
}
|
|
393
|
+
|
|
394
|
+
.d-switch input {
|
|
395
|
+
opacity: 0 !important;
|
|
396
|
+
width: 0 !important;
|
|
397
|
+
max-width: 0 !important;
|
|
398
|
+
height: 0 !important;
|
|
399
|
+
max-height: 0 !important;
|
|
400
|
+
}
|
|
401
|
+
|
|
402
|
+
.d-switch-slider {
|
|
403
|
+
position: absolute;
|
|
404
|
+
cursor: pointer;
|
|
405
|
+
top: 0;
|
|
406
|
+
left: 0;
|
|
407
|
+
right: 0;
|
|
408
|
+
bottom: 0;
|
|
409
|
+
background-color: #ccc;
|
|
410
|
+
-webkit-transition: .4s;
|
|
411
|
+
transition: .4s;
|
|
412
|
+
border-radius: 3px;
|
|
413
|
+
}
|
|
414
|
+
|
|
415
|
+
.d-switch-slider-xs {
|
|
416
|
+
width: 41px;
|
|
417
|
+
}
|
|
418
|
+
|
|
419
|
+
.d-switch-slider:before {
|
|
420
|
+
position: absolute;
|
|
421
|
+
content: "";
|
|
422
|
+
height: 26px;
|
|
423
|
+
width: 26px;
|
|
424
|
+
left: 4px;
|
|
425
|
+
bottom: 4px;
|
|
426
|
+
background-color: white;
|
|
427
|
+
-webkit-transition: .4s;
|
|
428
|
+
transition: .4s;
|
|
429
|
+
border-radius: 5px;
|
|
430
|
+
}
|
|
431
|
+
|
|
432
|
+
.d-switch-slider-sm:before {
|
|
433
|
+
height: 21px !important;
|
|
434
|
+
}
|
|
435
|
+
|
|
436
|
+
.d-switch-slider-xs:before {
|
|
437
|
+
height: 15px !important;
|
|
438
|
+
width: 15px !important;
|
|
439
|
+
}
|
|
440
|
+
|
|
441
|
+
input:checked+.d-switch-slider {
|
|
442
|
+
background-color: #2196F3;
|
|
443
|
+
}
|
|
444
|
+
|
|
445
|
+
input:focus+.d-switch-slider {
|
|
446
|
+
box-shadow: 0 0 1px #2196F3;
|
|
447
|
+
}
|
|
448
|
+
|
|
449
|
+
input:checked+.d-switch-slider:before {
|
|
450
|
+
-webkit-transform: translateX(100%);
|
|
451
|
+
-ms-transform: translateX(100%);
|
|
452
|
+
transform: translateX(100%);
|
|
453
|
+
}
|
|
454
|
+
|
|
455
|
+
/* Rounded sliders */
|
|
456
|
+
.d-switch-slider.round {
|
|
457
|
+
border-radius: 34px;
|
|
458
|
+
}
|
|
459
|
+
|
|
460
|
+
.d-switch-slider.round:before {
|
|
461
|
+
border-radius: 50%;
|
|
462
|
+
}
|
|
463
|
+
|
|
464
|
+
.d-rate {
|
|
465
|
+
float: left;
|
|
466
|
+
height: 46px;
|
|
467
|
+
padding: 0 10px;
|
|
468
|
+
}
|
|
469
|
+
|
|
470
|
+
.d-rate>label {
|
|
471
|
+
width: 1em;
|
|
472
|
+
overflow: hidden;
|
|
473
|
+
white-space: nowrap;
|
|
474
|
+
cursor: pointer;
|
|
475
|
+
font-size: 30px;
|
|
476
|
+
color: #ccc;
|
|
477
|
+
}
|
|
478
|
+
|
|
479
|
+
.d-rate>label:before {
|
|
480
|
+
content: '★';
|
|
481
|
+
}
|
|
482
|
+
|
|
483
|
+
.d-rate>.drc-cell {
|
|
484
|
+
color: #ffc700;
|
|
485
|
+
}
|
|
486
|
+
|
|
487
|
+
.d-rate>.drh-cell {
|
|
488
|
+
color: #deb217;
|
|
489
|
+
}
|
|
490
|
+
|
|
491
|
+
.d-context-ic {
|
|
492
|
+
max-height: 0;
|
|
493
|
+
overflow: hidden;
|
|
494
|
+
position: absolute;
|
|
495
|
+
display: none;
|
|
496
|
+
z-index: 1005;
|
|
497
|
+
border-radius: 5px;
|
|
498
|
+
box-shadow: 0px 1px 11px #b3b3b3;
|
|
499
|
+
transition: 0.3s ease-out;
|
|
500
|
+
}
|
|
501
|
+
|
|
502
|
+
.d-context-item {
|
|
503
|
+
display: flex;
|
|
504
|
+
flex-direction: row;
|
|
505
|
+
align-items: center;
|
|
506
|
+
}
|
|
507
|
+
|
|
508
|
+
.d-context-pm {
|
|
509
|
+
max-height: 0;
|
|
510
|
+
overflow: hidden;
|
|
511
|
+
position: absolute;
|
|
512
|
+
display: none;
|
|
513
|
+
z-index: 1005;
|
|
514
|
+
transition: 0.2s ease-out;
|
|
515
|
+
}
|
|
516
|
+
|
|
517
|
+
.umt {
|
|
518
|
+
width: 100%;
|
|
519
|
+
border-collapse: collapse;
|
|
520
|
+
border-radius: 0.1rem;
|
|
521
|
+
}
|
|
522
|
+
|
|
523
|
+
.umt thead {
|
|
524
|
+
background-color: #f9fafb;
|
|
525
|
+
}
|
|
526
|
+
|
|
527
|
+
.umt th {
|
|
528
|
+
/* font-weight: 500; */
|
|
529
|
+
letter-spacing: 0.05em;
|
|
530
|
+
}
|
|
531
|
+
|
|
532
|
+
.umt td {
|
|
533
|
+
/* padding: 0.8rem; */
|
|
534
|
+
}
|
|
535
|
+
|
|
536
|
+
.umt tbody tr {
|
|
537
|
+
background-color: #ffffff;
|
|
538
|
+
}
|
|
539
|
+
|
|
540
|
+
.umt tbody tr:hover {
|
|
541
|
+
background-color: #f3f4f6;
|
|
542
|
+
transition: all 0.3s ease-in-out;
|
|
543
|
+
}
|
|
544
|
+
|
|
545
|
+
.umt tbody tr.umtrh {
|
|
546
|
+
background-color: inherit;
|
|
547
|
+
}
|
|
548
|
+
|
|
549
|
+
.umt tbody tr.umtrh:hover {
|
|
550
|
+
background-color: inherit;
|
|
551
|
+
}
|
package/dist/types.base.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
'use strict';var
|
|
1
|
+
'use strict';var a0_0xd118ca={};a0_0xd118ca['value']=!![],Object['defineProperty'](exports,'__esModule',a0_0xd118ca);
|
package/dist/types.d.ts
CHANGED
|
@@ -367,8 +367,9 @@ export interface PhoneRaw {
|
|
|
367
367
|
example?: string;
|
|
368
368
|
}
|
|
369
369
|
export interface PhoneUtil {
|
|
370
|
-
|
|
371
|
-
|
|
370
|
+
flag: (code: string) => string | null;
|
|
371
|
+
parseRaw: (phone: string, phoneType?: PhoneType) => PhoneRaw | null;
|
|
372
|
+
parseRawByCountryCode: (code: string, phone: string, phoneType?: PhoneType) => PhoneRaw | null;
|
|
372
373
|
pretty: (phone: string, phoneType?: PhoneType) => string;
|
|
373
374
|
}
|
|
374
375
|
export interface PhoneInputProps {
|
package/dist/types.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
'use strict';var
|
|
1
|
+
'use strict';var a0_0x128681={};a0_0x128681['value']=!![],Object['defineProperty'](exports,'__esModule',a0_0x128681);
|
package/dist/typesout.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
'use strict';var
|
|
1
|
+
'use strict';var a0_0x18bc69={};a0_0x18bc69['value']=!![],Object['defineProperty'](exports,'__esModule',a0_0x18bc69),exports['SORT_DIRECTION']=void 0x0;var a0_0x516c6d;(function(_0x12d265){_0x12d265['asc']='asc',_0x12d265['desc']='desc';}(a0_0x516c6d=exports['SORT_DIRECTION']||(exports['SORT_DIRECTION']={})));
|
package/dist/utils.d.ts
CHANGED
|
@@ -23,12 +23,13 @@ interface FullScreenCtxProps {
|
|
|
23
23
|
}
|
|
24
24
|
export declare function FullScreenCt(props: FullScreenCtxProps): JSX.Element;
|
|
25
25
|
export declare function MAlertConfirmContainer(): JSX.Element;
|
|
26
|
-
|
|
27
|
-
fitDms: (width: boolean, height: boolean) =>
|
|
28
|
-
setCloseOnClickOutside: (status: boolean) =>
|
|
29
|
-
refresh: () =>
|
|
30
|
-
close: () =>
|
|
26
|
+
type MAlertRN = {
|
|
27
|
+
fitDms: (width: boolean, height: boolean) => MAlertRN;
|
|
28
|
+
setCloseOnClickOutside: (status: boolean) => MAlertRN;
|
|
29
|
+
refresh: () => MAlertRN;
|
|
30
|
+
close: () => MAlertRN;
|
|
31
31
|
};
|
|
32
|
+
declare function showMAlertConfirm(properties: MModalProps): MAlertRN;
|
|
32
33
|
declare function closeAllMAlertConfirm(): void;
|
|
33
34
|
declare function refreshAllMAlertConfirm(): void;
|
|
34
35
|
declare function setMAlertConfirmIndex(value: number): number;
|