plataforma-fundacao-componentes 2.23.33 → 2.24.0
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/chip/Chip.d.ts +2 -0
- package/dist/components/chip/Chip.stories.d.ts +6 -0
- package/dist/components/searchBlocoDeNotas/SearchBlocoDeNotas.d.ts +1 -1
- package/dist/components/textEditor/components/textEditorInput/TextEditorHeaderInput.d.ts +1 -1
- package/dist/index.css +61 -247
- package/dist/index.js +19417 -15977
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +19447 -16025
- package/dist/index.modern.js.map +1 -1
- package/dist/utils/ArrayUtils.d.ts +1 -1
- package/package.json +6 -19
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import './Chip.scss';
|
|
3
|
+
declare type ChipTheme = 'primary' | 'primary-outline' | 'danger';
|
|
3
4
|
export interface ChipProps {
|
|
4
5
|
label?: string;
|
|
5
6
|
w100?: boolean;
|
|
6
7
|
allClickable?: boolean;
|
|
7
8
|
onClick: () => void;
|
|
8
9
|
disabled?: boolean;
|
|
10
|
+
theme?: ChipTheme;
|
|
9
11
|
}
|
|
10
12
|
declare function Chip(props: ChipProps): JSX.Element;
|
|
11
13
|
declare const _default: React.MemoExoticComponent<typeof Chip>;
|
|
@@ -2,7 +2,7 @@ declare function SearchBlocoDeNotas(props: any): JSX.Element;
|
|
|
2
2
|
declare namespace SearchBlocoDeNotas {
|
|
3
3
|
export namespace propTypes {
|
|
4
4
|
export const placeholder: PropTypes.Requireable<string>;
|
|
5
|
-
export const value: PropTypes.Requireable<React.
|
|
5
|
+
export const value: PropTypes.Requireable<React.Key>;
|
|
6
6
|
export const onChange: PropTypes.Requireable<(...args: any[]) => any>;
|
|
7
7
|
export const rightObject: PropTypes.Requireable<object>;
|
|
8
8
|
}
|
|
@@ -3,7 +3,7 @@ declare namespace TextEditorHeaderInput {
|
|
|
3
3
|
export namespace propTypes {
|
|
4
4
|
export const onChange: PropTypes.Requireable<(...args: any[]) => any>;
|
|
5
5
|
export const label: PropTypes.Requireable<string>;
|
|
6
|
-
export const value: PropTypes.Requireable<React.
|
|
6
|
+
export const value: PropTypes.Requireable<React.Key>;
|
|
7
7
|
export const onEnter: PropTypes.Requireable<(...args: any[]) => any>;
|
|
8
8
|
}
|
|
9
9
|
export namespace defaultProps {
|
package/dist/index.css
CHANGED
|
@@ -41,7 +41,6 @@ body.sb-show-main.sb-main-padded {
|
|
|
41
41
|
font-family: "Exo 2", sans-serif; }
|
|
42
42
|
|
|
43
43
|
.document-grabbing {
|
|
44
|
-
cursor: -webkit-grabbing !important;
|
|
45
44
|
cursor: grabbing !important; }
|
|
46
45
|
|
|
47
46
|
h1 {
|
|
@@ -185,14 +184,7 @@ h5 {
|
|
|
185
184
|
transition: stroke-dashoffset 0.3s ease, stroke-dasharray 0.3s ease; }
|
|
186
185
|
|
|
187
186
|
.percent-loader-icon.indefinido {
|
|
188
|
-
|
|
189
|
-
animation: spinNoventa 0.6s linear infinite; }
|
|
190
|
-
|
|
191
|
-
@-webkit-keyframes spinNoventa {
|
|
192
|
-
0% {
|
|
193
|
-
transform: rotateZ(-90deg); }
|
|
194
|
-
100% {
|
|
195
|
-
transform: rotateZ(270deg); } }
|
|
187
|
+
animation: spinNoventa 0.6s linear infinite; }
|
|
196
188
|
|
|
197
189
|
@keyframes spinNoventa {
|
|
198
190
|
0% {
|
|
@@ -211,14 +203,7 @@ h5 {
|
|
|
211
203
|
-moz-user-select: none;
|
|
212
204
|
user-select: none; }
|
|
213
205
|
.refresh-icon.animate {
|
|
214
|
-
|
|
215
|
-
animation: spin 0.4s linear infinite; }
|
|
216
|
-
|
|
217
|
-
@-webkit-keyframes spin {
|
|
218
|
-
0% {
|
|
219
|
-
transform: rotateZ(0); }
|
|
220
|
-
100% {
|
|
221
|
-
transform: rotateZ(180deg); } }
|
|
206
|
+
animation: spin 0.4s linear infinite; }
|
|
222
207
|
|
|
223
208
|
@keyframes spin {
|
|
224
209
|
0% {
|
|
@@ -327,21 +312,13 @@ h5 {
|
|
|
327
312
|
height: var(--tdBallSize);
|
|
328
313
|
border-radius: 50%;
|
|
329
314
|
margin: var(--marginSize);
|
|
330
|
-
-webkit-animation: loader 0.6s infinite alternate;
|
|
331
315
|
animation: loader 0.6s infinite alternate;
|
|
332
316
|
transform: translate(0, var(--tdTransformYFrom)); }
|
|
333
317
|
.loader-three-dots > div:nth-child(2) {
|
|
334
|
-
-webkit-animation-delay: 0.2s;
|
|
335
318
|
animation-delay: 0.2s; }
|
|
336
319
|
.loader-three-dots > div:nth-child(3) {
|
|
337
|
-
-webkit-animation-delay: 0.4s;
|
|
338
320
|
animation-delay: 0.4s; }
|
|
339
321
|
|
|
340
|
-
@-webkit-keyframes loader {
|
|
341
|
-
to {
|
|
342
|
-
opacity: 0.4;
|
|
343
|
-
transform: translate(0, var(--tdTransformYTo)); } }
|
|
344
|
-
|
|
345
322
|
@keyframes loader {
|
|
346
323
|
to {
|
|
347
324
|
opacity: 0.4;
|
|
@@ -351,50 +328,25 @@ h5 {
|
|
|
351
328
|
width: 100px;
|
|
352
329
|
height: 100px; }
|
|
353
330
|
.catavento-verde-icon-ui-component #um {
|
|
354
|
-
|
|
355
|
-
animation: piscar 700ms infinite; }
|
|
331
|
+
animation: piscar 700ms infinite; }
|
|
356
332
|
.catavento-verde-icon-ui-component #dois {
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
-webkit-animation-delay: 100ms;
|
|
360
|
-
animation-delay: 100ms; }
|
|
333
|
+
animation: piscar 700ms infinite;
|
|
334
|
+
animation-delay: 100ms; }
|
|
361
335
|
.catavento-verde-icon-ui-component #tres {
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
-webkit-animation-delay: 200ms;
|
|
365
|
-
animation-delay: 200ms; }
|
|
336
|
+
animation: piscar 700ms infinite;
|
|
337
|
+
animation-delay: 200ms; }
|
|
366
338
|
.catavento-verde-icon-ui-component #quatro {
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
-webkit-animation-delay: 300ms;
|
|
370
|
-
animation-delay: 300ms; }
|
|
339
|
+
animation: piscar 700ms infinite;
|
|
340
|
+
animation-delay: 300ms; }
|
|
371
341
|
.catavento-verde-icon-ui-component #cinco {
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
-webkit-animation-delay: 400ms;
|
|
375
|
-
animation-delay: 400ms; }
|
|
342
|
+
animation: piscar 700ms infinite;
|
|
343
|
+
animation-delay: 400ms; }
|
|
376
344
|
.catavento-verde-icon-ui-component #seis {
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
-webkit-animation-delay: 500ms;
|
|
380
|
-
animation-delay: 500ms; }
|
|
345
|
+
animation: piscar 700ms infinite;
|
|
346
|
+
animation-delay: 500ms; }
|
|
381
347
|
.catavento-verde-icon-ui-component #sete {
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
-webkit-animation-delay: 600ms;
|
|
385
|
-
animation-delay: 600ms; }
|
|
386
|
-
|
|
387
|
-
@-webkit-keyframes piscar {
|
|
388
|
-
0% {
|
|
389
|
-
opacity: 1; }
|
|
390
|
-
25% {
|
|
391
|
-
opacity: 0.8; }
|
|
392
|
-
50% {
|
|
393
|
-
opacity: 0.2; }
|
|
394
|
-
75% {
|
|
395
|
-
opacity: 0.8; }
|
|
396
|
-
100% {
|
|
397
|
-
opacity: 1; } }
|
|
348
|
+
animation: piscar 700ms infinite;
|
|
349
|
+
animation-delay: 600ms; }
|
|
398
350
|
|
|
399
351
|
@keyframes piscar {
|
|
400
352
|
0% {
|
|
@@ -447,41 +399,24 @@ h5 {
|
|
|
447
399
|
user-select: none; }
|
|
448
400
|
.loader-icon circle {
|
|
449
401
|
fill: #33820d;
|
|
450
|
-
-webkit-animation: loaderAnimation 1000ms linear infinite;
|
|
451
402
|
animation: loaderAnimation 1000ms linear infinite; }
|
|
452
403
|
.loader-icon #Elipse_0 {
|
|
453
|
-
-webkit-animation-delay: -875ms;
|
|
454
404
|
animation-delay: -875ms; }
|
|
455
405
|
.loader-icon #Elipse_1 {
|
|
456
|
-
-webkit-animation-delay: -750ms;
|
|
457
406
|
animation-delay: -750ms; }
|
|
458
407
|
.loader-icon #Elipse_2 {
|
|
459
|
-
-webkit-animation-delay: -625ms;
|
|
460
408
|
animation-delay: -625ms; }
|
|
461
409
|
.loader-icon #Elipse_3 {
|
|
462
|
-
-webkit-animation-delay: -500ms;
|
|
463
410
|
animation-delay: -500ms; }
|
|
464
411
|
.loader-icon #Elipse_4 {
|
|
465
|
-
-webkit-animation-delay: -375ms;
|
|
466
412
|
animation-delay: -375ms; }
|
|
467
413
|
.loader-icon #Elipse_5 {
|
|
468
|
-
-webkit-animation-delay: -250ms;
|
|
469
414
|
animation-delay: -250ms; }
|
|
470
415
|
.loader-icon #Elipse_6 {
|
|
471
|
-
-webkit-animation-delay: -125ms;
|
|
472
416
|
animation-delay: -125ms; }
|
|
473
417
|
.loader-icon #Elipse_7 {
|
|
474
|
-
-webkit-animation-delay: 0ms;
|
|
475
418
|
animation-delay: 0ms; }
|
|
476
419
|
|
|
477
|
-
@-webkit-keyframes loaderAnimation {
|
|
478
|
-
0% {
|
|
479
|
-
opacity: 1; }
|
|
480
|
-
50% {
|
|
481
|
-
opacity: 0.05; }
|
|
482
|
-
100% {
|
|
483
|
-
opacity: 0.05; } }
|
|
484
|
-
|
|
485
420
|
@keyframes loaderAnimation {
|
|
486
421
|
0% {
|
|
487
422
|
opacity: 1; }
|
|
@@ -2273,28 +2208,7 @@ h5 {
|
|
|
2273
2208
|
position: absolute;
|
|
2274
2209
|
bottom: -2px;
|
|
2275
2210
|
background-color: #33820d;
|
|
2276
|
-
|
|
2277
|
-
animation: inputLoading 2.5s linear infinite; }
|
|
2278
|
-
|
|
2279
|
-
@-webkit-keyframes inputLoading {
|
|
2280
|
-
0% {
|
|
2281
|
-
width: 0;
|
|
2282
|
-
left: 0; }
|
|
2283
|
-
50% {
|
|
2284
|
-
width: 100%;
|
|
2285
|
-
left: 0; }
|
|
2286
|
-
51% {
|
|
2287
|
-
left: unset;
|
|
2288
|
-
right: 0;
|
|
2289
|
-
width: 100%; }
|
|
2290
|
-
99% {
|
|
2291
|
-
left: unset;
|
|
2292
|
-
right: 0;
|
|
2293
|
-
width: 0; }
|
|
2294
|
-
100% {
|
|
2295
|
-
right: unset;
|
|
2296
|
-
left: 0;
|
|
2297
|
-
width: 0; } }
|
|
2211
|
+
animation: inputLoading 2.5s linear infinite; }
|
|
2298
2212
|
|
|
2299
2213
|
@keyframes inputLoading {
|
|
2300
2214
|
0% {
|
|
@@ -2342,8 +2256,7 @@ h5 {
|
|
|
2342
2256
|
position: absolute;
|
|
2343
2257
|
bottom: -2px;
|
|
2344
2258
|
background-color: #33820d;
|
|
2345
|
-
|
|
2346
|
-
animation: inputFocus 0.3s ease forwards; }
|
|
2259
|
+
animation: inputFocus 0.3s ease forwards; }
|
|
2347
2260
|
|
|
2348
2261
|
.component-input:not(.component-input-error):not(.force-focus):not(.component-input-disabled):not(.component-input-loading) .component-input-input-container:not(:focus-within):not(.force-focus)::before {
|
|
2349
2262
|
opacity: 0;
|
|
@@ -2353,8 +2266,7 @@ h5 {
|
|
|
2353
2266
|
position: absolute;
|
|
2354
2267
|
bottom: -2px;
|
|
2355
2268
|
background-color: #33820d;
|
|
2356
|
-
|
|
2357
|
-
animation: inputFocusReverse 0.3s ease forwards; }
|
|
2269
|
+
animation: inputFocusReverse 0.3s ease forwards; }
|
|
2358
2270
|
|
|
2359
2271
|
.component-input:not(.component-input-error).force-focus .component-input-input-container::before {
|
|
2360
2272
|
opacity: 1;
|
|
@@ -2365,16 +2277,7 @@ h5 {
|
|
|
2365
2277
|
position: absolute;
|
|
2366
2278
|
bottom: -2px;
|
|
2367
2279
|
background-color: #33820d;
|
|
2368
|
-
|
|
2369
|
-
animation: inputFocus 0.3s ease forwards; }
|
|
2370
|
-
|
|
2371
|
-
@-webkit-keyframes inputFocus {
|
|
2372
|
-
0% {
|
|
2373
|
-
width: 0;
|
|
2374
|
-
left: 50%; }
|
|
2375
|
-
100% {
|
|
2376
|
-
left: 0;
|
|
2377
|
-
width: 100%; } }
|
|
2280
|
+
animation: inputFocus 0.3s ease forwards; }
|
|
2378
2281
|
|
|
2379
2282
|
@keyframes inputFocus {
|
|
2380
2283
|
0% {
|
|
@@ -2384,14 +2287,6 @@ h5 {
|
|
|
2384
2287
|
left: 0;
|
|
2385
2288
|
width: 100%; } }
|
|
2386
2289
|
|
|
2387
|
-
@-webkit-keyframes inputFocusReverse {
|
|
2388
|
-
0% {
|
|
2389
|
-
left: 0;
|
|
2390
|
-
width: 100%; }
|
|
2391
|
-
100% {
|
|
2392
|
-
width: 0;
|
|
2393
|
-
left: 50%; } }
|
|
2394
|
-
|
|
2395
2290
|
@keyframes inputFocusReverse {
|
|
2396
2291
|
0% {
|
|
2397
2292
|
left: 0;
|
|
@@ -4193,17 +4088,19 @@ max-width 100% 540px 720px 960px 1140px
|
|
|
4193
4088
|
font-size: 16px;
|
|
4194
4089
|
color: #323c32;
|
|
4195
4090
|
-webkit-user-select: none;
|
|
4196
|
-
|
|
4197
|
-
|
|
4091
|
+
-moz-user-select: none;
|
|
4092
|
+
user-select: none; }
|
|
4198
4093
|
.component-date-picker-calendar .header button.month {
|
|
4199
4094
|
padding: 5px 10px;
|
|
4200
4095
|
border-radius: 50px;
|
|
4201
4096
|
-webkit-user-select: none;
|
|
4202
|
-
|
|
4203
|
-
|
|
4097
|
+
-moz-user-select: none;
|
|
4098
|
+
user-select: none;
|
|
4204
4099
|
background-color: #fefefe;
|
|
4205
4100
|
border: none;
|
|
4206
4101
|
-webkit-appearance: none;
|
|
4102
|
+
-moz-appearance: none;
|
|
4103
|
+
appearance: none;
|
|
4207
4104
|
outline: none;
|
|
4208
4105
|
transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease; }
|
|
4209
4106
|
.component-date-picker-calendar .header button.month:not(:disabled) {
|
|
@@ -4216,12 +4113,14 @@ max-width 100% 540px 720px 960px 1140px
|
|
|
4216
4113
|
.component-date-picker-calendar .header button.prev {
|
|
4217
4114
|
outline: none;
|
|
4218
4115
|
-webkit-user-select: none;
|
|
4219
|
-
|
|
4220
|
-
|
|
4116
|
+
-moz-user-select: none;
|
|
4117
|
+
user-select: none;
|
|
4221
4118
|
display: flex;
|
|
4222
4119
|
justify-content: center;
|
|
4223
4120
|
align-items: center;
|
|
4224
4121
|
-webkit-appearance: none;
|
|
4122
|
+
-moz-appearance: none;
|
|
4123
|
+
appearance: none;
|
|
4225
4124
|
padding: 8px;
|
|
4226
4125
|
border: none;
|
|
4227
4126
|
background-color: #fefefe;
|
|
@@ -4241,8 +4140,8 @@ max-width 100% 540px 720px 960px 1140px
|
|
|
4241
4140
|
max-width: 16px; }
|
|
4242
4141
|
.component-date-picker-calendar .week-days {
|
|
4243
4142
|
-webkit-user-select: none;
|
|
4244
|
-
|
|
4245
|
-
|
|
4143
|
+
-moz-user-select: none;
|
|
4144
|
+
user-select: none;
|
|
4246
4145
|
display: flex;
|
|
4247
4146
|
align-items: center;
|
|
4248
4147
|
justify-content: center; }
|
|
@@ -4257,8 +4156,8 @@ max-width 100% 540px 720px 960px 1140px
|
|
|
4257
4156
|
.component-date-picker-calendar .days {
|
|
4258
4157
|
display: flex;
|
|
4259
4158
|
-webkit-user-select: none;
|
|
4260
|
-
|
|
4261
|
-
|
|
4159
|
+
-moz-user-select: none;
|
|
4160
|
+
user-select: none;
|
|
4262
4161
|
align-items: center;
|
|
4263
4162
|
justify-content: center;
|
|
4264
4163
|
max-width: 280px;
|
|
@@ -4312,7 +4211,7 @@ max-width 100% 540px 720px 960px 1140px
|
|
|
4312
4211
|
width: 100%; }
|
|
4313
4212
|
.component-date-picker-calendar .component-date-picker-calendar-month-picker .component-date-picker-calendar-months .component-date-picker-calendar-month {
|
|
4314
4213
|
margin: 2px;
|
|
4315
|
-
width:
|
|
4214
|
+
width: calc(46px * 7 / 4);
|
|
4316
4215
|
height: 40px;
|
|
4317
4216
|
background-color: #fefefe;
|
|
4318
4217
|
border: none;
|
|
@@ -4748,7 +4647,6 @@ max-width 100% 540px 720px 960px 1140px
|
|
|
4748
4647
|
|
|
4749
4648
|
.dropdown-selector-wrapper {
|
|
4750
4649
|
position: relative;
|
|
4751
|
-
width: -webkit-fit-content;
|
|
4752
4650
|
width: -moz-fit-content;
|
|
4753
4651
|
width: fit-content; }
|
|
4754
4652
|
.dropdown-selector-wrapper.w-100 {
|
|
@@ -5160,7 +5058,6 @@ max-width 100% 540px 720px 960px 1140px
|
|
|
5160
5058
|
height: 14px;
|
|
5161
5059
|
width: 14px; }
|
|
5162
5060
|
.component-etiqueta.fit-content {
|
|
5163
|
-
width: -webkit-fit-content;
|
|
5164
5061
|
width: -moz-fit-content;
|
|
5165
5062
|
width: fit-content;
|
|
5166
5063
|
padding: 8px 12px; }
|
|
@@ -5881,8 +5778,7 @@ header.component-header {
|
|
|
5881
5778
|
transform: rotate(45deg);
|
|
5882
5779
|
width: 40px;
|
|
5883
5780
|
height: 40px;
|
|
5884
|
-
|
|
5885
|
-
animation: borderRotate 8s linear infinite; }
|
|
5781
|
+
animation: borderRotate 8s linear infinite; }
|
|
5886
5782
|
.component-header-search-field-inline-input.loading .component-header-search-field-loading-border::after {
|
|
5887
5783
|
content: '';
|
|
5888
5784
|
position: absolute;
|
|
@@ -5895,8 +5791,7 @@ header.component-header {
|
|
|
5895
5791
|
border-radius: 6px; } }
|
|
5896
5792
|
@media screen and (min-width: 575.98px) {
|
|
5897
5793
|
.component-header-search-field-inline-input.loading .component-header-search-field-loading-border {
|
|
5898
|
-
|
|
5899
|
-
animation: inputHeaderLoading 2.5s linear infinite; } }
|
|
5794
|
+
animation: inputHeaderLoading 2.5s linear infinite; } }
|
|
5900
5795
|
@media screen and (min-width: 575.98px) {
|
|
5901
5796
|
.component-header-search-field-inline-input .component-header-search-field-loading-border,
|
|
5902
5797
|
.component-header-search-field-inline-input .component-header-search-field-focus-border {
|
|
@@ -5983,26 +5878,6 @@ header.component-header {
|
|
|
5983
5878
|
transition: opacity 0.3s ease;
|
|
5984
5879
|
opacity: 0; }
|
|
5985
5880
|
|
|
5986
|
-
@-webkit-keyframes inputHeaderLoading {
|
|
5987
|
-
0% {
|
|
5988
|
-
width: 0;
|
|
5989
|
-
left: 0; }
|
|
5990
|
-
50% {
|
|
5991
|
-
width: 100%;
|
|
5992
|
-
left: 0; }
|
|
5993
|
-
51% {
|
|
5994
|
-
left: unset;
|
|
5995
|
-
right: 0;
|
|
5996
|
-
width: 100%; }
|
|
5997
|
-
99% {
|
|
5998
|
-
left: unset;
|
|
5999
|
-
right: 0;
|
|
6000
|
-
width: 0; }
|
|
6001
|
-
100% {
|
|
6002
|
-
right: unset;
|
|
6003
|
-
left: 0;
|
|
6004
|
-
width: 0; } }
|
|
6005
|
-
|
|
6006
5881
|
@keyframes inputHeaderLoading {
|
|
6007
5882
|
0% {
|
|
6008
5883
|
width: 0;
|
|
@@ -6023,23 +5898,6 @@ header.component-header {
|
|
|
6023
5898
|
left: 0;
|
|
6024
5899
|
width: 0; } }
|
|
6025
5900
|
|
|
6026
|
-
@-webkit-keyframes borderRotate {
|
|
6027
|
-
0% {
|
|
6028
|
-
top: -20px;
|
|
6029
|
-
left: -20px; }
|
|
6030
|
-
40% {
|
|
6031
|
-
top: -20px;
|
|
6032
|
-
left: calc(100% - 20px); }
|
|
6033
|
-
50% {
|
|
6034
|
-
top: calc(100% - 20px);
|
|
6035
|
-
left: calc(100% - 20px); }
|
|
6036
|
-
90% {
|
|
6037
|
-
top: calc(100% - 20px);
|
|
6038
|
-
left: -20px; }
|
|
6039
|
-
100% {
|
|
6040
|
-
left: -20px;
|
|
6041
|
-
top: -20px; } }
|
|
6042
|
-
|
|
6043
5901
|
@keyframes borderRotate {
|
|
6044
5902
|
0% {
|
|
6045
5903
|
top: -20px;
|
|
@@ -6458,28 +6316,7 @@ header.component-header {
|
|
|
6458
6316
|
position: absolute;
|
|
6459
6317
|
bottom: -2px;
|
|
6460
6318
|
background-color: #33820d;
|
|
6461
|
-
|
|
6462
|
-
animation: inputLoading 2.5s linear infinite; }
|
|
6463
|
-
|
|
6464
|
-
@-webkit-keyframes inputLoading {
|
|
6465
|
-
0% {
|
|
6466
|
-
width: 0;
|
|
6467
|
-
left: 0; }
|
|
6468
|
-
50% {
|
|
6469
|
-
width: 100%;
|
|
6470
|
-
left: 0; }
|
|
6471
|
-
51% {
|
|
6472
|
-
left: unset;
|
|
6473
|
-
right: 0;
|
|
6474
|
-
width: 100%; }
|
|
6475
|
-
99% {
|
|
6476
|
-
left: unset;
|
|
6477
|
-
right: 0;
|
|
6478
|
-
width: 0; }
|
|
6479
|
-
100% {
|
|
6480
|
-
right: unset;
|
|
6481
|
-
left: 0;
|
|
6482
|
-
width: 0; } }
|
|
6319
|
+
animation: inputLoading 2.5s linear infinite; }
|
|
6483
6320
|
|
|
6484
6321
|
@keyframes inputLoading {
|
|
6485
6322
|
0% {
|
|
@@ -6527,8 +6364,7 @@ header.component-header {
|
|
|
6527
6364
|
position: absolute;
|
|
6528
6365
|
bottom: -2px;
|
|
6529
6366
|
background-color: #33820d;
|
|
6530
|
-
|
|
6531
|
-
animation: inputFocus 0.3s ease forwards; }
|
|
6367
|
+
animation: inputFocus 0.3s ease forwards; }
|
|
6532
6368
|
|
|
6533
6369
|
.component-input-area:not(.component-input-area-error):not(.force-focus):not(.component-input-area-disabled):not(.component-input-area-loading) .component-input-area-input-container:not(:focus-within):not(.force-focus)::before {
|
|
6534
6370
|
opacity: 0;
|
|
@@ -6538,8 +6374,7 @@ header.component-header {
|
|
|
6538
6374
|
position: absolute;
|
|
6539
6375
|
bottom: -2px;
|
|
6540
6376
|
background-color: #33820d;
|
|
6541
|
-
|
|
6542
|
-
animation: inputFocusReverse 0.3s ease forwards; }
|
|
6377
|
+
animation: inputFocusReverse 0.3s ease forwards; }
|
|
6543
6378
|
|
|
6544
6379
|
.component-input-area:not(.component-input-area-error).force-focus .component-input-area-input-container::before {
|
|
6545
6380
|
opacity: 1;
|
|
@@ -6550,16 +6385,7 @@ header.component-header {
|
|
|
6550
6385
|
position: absolute;
|
|
6551
6386
|
bottom: -2px;
|
|
6552
6387
|
background-color: #33820d;
|
|
6553
|
-
|
|
6554
|
-
animation: inputFocus 0.3s ease forwards; }
|
|
6555
|
-
|
|
6556
|
-
@-webkit-keyframes inputFocus {
|
|
6557
|
-
0% {
|
|
6558
|
-
width: 0;
|
|
6559
|
-
left: 50%; }
|
|
6560
|
-
100% {
|
|
6561
|
-
left: 0;
|
|
6562
|
-
width: 100%; } }
|
|
6388
|
+
animation: inputFocus 0.3s ease forwards; }
|
|
6563
6389
|
|
|
6564
6390
|
@keyframes inputFocus {
|
|
6565
6391
|
0% {
|
|
@@ -6569,14 +6395,6 @@ header.component-header {
|
|
|
6569
6395
|
left: 0;
|
|
6570
6396
|
width: 100%; } }
|
|
6571
6397
|
|
|
6572
|
-
@-webkit-keyframes inputFocusReverse {
|
|
6573
|
-
0% {
|
|
6574
|
-
left: 0;
|
|
6575
|
-
width: 100%; }
|
|
6576
|
-
100% {
|
|
6577
|
-
width: 0;
|
|
6578
|
-
left: 50%; } }
|
|
6579
|
-
|
|
6580
6398
|
@keyframes inputFocusReverse {
|
|
6581
6399
|
0% {
|
|
6582
6400
|
left: 0;
|
|
@@ -7667,8 +7485,7 @@ header.component-header {
|
|
|
7667
7485
|
position: absolute;
|
|
7668
7486
|
bottom: -2px;
|
|
7669
7487
|
background-color: #33820d;
|
|
7670
|
-
|
|
7671
|
-
animation: inputFocus 0.3s ease forwards; }
|
|
7488
|
+
animation: inputFocus 0.3s ease forwards; }
|
|
7672
7489
|
|
|
7673
7490
|
.component-select-select-fake {
|
|
7674
7491
|
width: 100%;
|
|
@@ -8061,14 +7878,11 @@ table.component-table {
|
|
|
8061
7878
|
background-color: #f6f6f6 !important; }
|
|
8062
7879
|
|
|
8063
7880
|
.component-table-item-dragging {
|
|
8064
|
-
cursor: -webkit-grabbing;
|
|
8065
7881
|
cursor: grabbing; }
|
|
8066
7882
|
|
|
8067
7883
|
.grab-handle {
|
|
8068
|
-
cursor: -webkit-grab;
|
|
8069
7884
|
cursor: grab; }
|
|
8070
7885
|
.grab-handle:active {
|
|
8071
|
-
cursor: -webkit-grabbing;
|
|
8072
7886
|
cursor: grabbing; }
|
|
8073
7887
|
|
|
8074
7888
|
.component-table-upper-header {
|
|
@@ -8447,11 +8261,9 @@ tr:first-child th:last-child {
|
|
|
8447
8261
|
-webkit-user-select: none;
|
|
8448
8262
|
-moz-user-select: none;
|
|
8449
8263
|
user-select: none;
|
|
8450
|
-
cursor: -webkit-grab;
|
|
8451
8264
|
cursor: grab; }
|
|
8452
8265
|
.component-table-with-overflow .component-table-with-overflow-wrapper table:active th[data-draggable='true'],
|
|
8453
8266
|
.component-table-with-overflow .component-table-with-overflow-wrapper table:active td[data-draggable='true'] {
|
|
8454
|
-
cursor: -webkit-grabbing !important;
|
|
8455
8267
|
cursor: grabbing !important; }
|
|
8456
8268
|
.component-table-with-overflow .component-table-with-overflow-wrapper .absolute {
|
|
8457
8269
|
position: absolute; }
|
|
@@ -8459,7 +8271,6 @@ tr:first-child th:last-child {
|
|
|
8459
8271
|
left: 0;
|
|
8460
8272
|
width: 8px;
|
|
8461
8273
|
min-height: 44px;
|
|
8462
|
-
height: -webkit-fit-content;
|
|
8463
8274
|
height: -moz-fit-content;
|
|
8464
8275
|
height: fit-content; }
|
|
8465
8276
|
.component-table-with-overflow .component-table-with-overflow-wrapper .right-0 {
|
|
@@ -9134,11 +8945,9 @@ nav.component-tabs {
|
|
|
9134
8945
|
padding: 24px;
|
|
9135
8946
|
border-radius: 4px; }
|
|
9136
8947
|
.component-toast:hover .component-toast-fill {
|
|
9137
|
-
|
|
9138
|
-
animation-play-state: paused !important; }
|
|
8948
|
+
animation-play-state: paused !important; }
|
|
9139
8949
|
.component-toast:not(:hover) .component-toast-fill {
|
|
9140
|
-
|
|
9141
|
-
animation-play-state: running; }
|
|
8950
|
+
animation-play-state: running; }
|
|
9142
8951
|
.component-toast .component-toast-left-content {
|
|
9143
8952
|
font-family: "Nunito", sans-serif;
|
|
9144
8953
|
font-size: 14px;
|
|
@@ -9204,12 +9013,6 @@ nav.component-tabs {
|
|
|
9204
9013
|
.component-toast-error .component-toast-close-button svg {
|
|
9205
9014
|
color: #fefefe; }
|
|
9206
9015
|
|
|
9207
|
-
@-webkit-keyframes fillToZero {
|
|
9208
|
-
0% {
|
|
9209
|
-
width: 100%; }
|
|
9210
|
-
100% {
|
|
9211
|
-
width: 0; } }
|
|
9212
|
-
|
|
9213
9016
|
@keyframes fillToZero {
|
|
9214
9017
|
0% {
|
|
9215
9018
|
width: 100%; }
|
|
@@ -9259,7 +9062,6 @@ nav.component-tabs {
|
|
|
9259
9062
|
flex-direction: column-reverse !important; }
|
|
9260
9063
|
.comp-toast-manager-toasts .comp-toast-manager-toastzin {
|
|
9261
9064
|
transition: all 0.3s ease;
|
|
9262
|
-
width: -webkit-fit-content;
|
|
9263
9065
|
width: -moz-fit-content;
|
|
9264
9066
|
width: fit-content;
|
|
9265
9067
|
overflow: hidden;
|
|
@@ -9703,7 +9505,7 @@ nav.component-tabs {
|
|
|
9703
9505
|
-moz-user-select: none;
|
|
9704
9506
|
user-select: none; }
|
|
9705
9507
|
.calendar-header .calendar-header-day {
|
|
9706
|
-
flex: 0 0
|
|
9508
|
+
flex: 0 0 calc(100% / 7);
|
|
9707
9509
|
display: flex;
|
|
9708
9510
|
align-items: center;
|
|
9709
9511
|
justify-content: center;
|
|
@@ -9927,7 +9729,7 @@ nav.component-tabs {
|
|
|
9927
9729
|
.calendar-month-day {
|
|
9928
9730
|
position: relative;
|
|
9929
9731
|
transition: background-color 0.3s ease, color 0.3s ease;
|
|
9930
|
-
flex: 0 0
|
|
9732
|
+
flex: 0 0 calc(100% / 7);
|
|
9931
9733
|
max-width: calc(100% / 7);
|
|
9932
9734
|
background-color: #fefefe;
|
|
9933
9735
|
-webkit-user-select: none;
|
|
@@ -10350,10 +10152,10 @@ nav.component-tabs {
|
|
|
10350
10152
|
align-items: center;
|
|
10351
10153
|
justify-content: space-between;
|
|
10352
10154
|
border-radius: 200px;
|
|
10353
|
-
border: 1px
|
|
10354
|
-
|
|
10355
|
-
|
|
10356
|
-
|
|
10155
|
+
border-width: 1px;
|
|
10156
|
+
border-style: solid;
|
|
10157
|
+
font-weight: 600;
|
|
10158
|
+
transition: all 0.3s ease; }
|
|
10357
10159
|
.component-chip span {
|
|
10358
10160
|
max-width: calc(100% - 24px);
|
|
10359
10161
|
padding-left: 4px;
|
|
@@ -10377,3 +10179,15 @@ nav.component-tabs {
|
|
|
10377
10179
|
.component-chip .component-chip-button svg {
|
|
10378
10180
|
width: 20px;
|
|
10379
10181
|
height: 20px; }
|
|
10182
|
+
.component-chip.primary-outline {
|
|
10183
|
+
color: #3fa110;
|
|
10184
|
+
background-color: rgba(0, 0, 0, 0);
|
|
10185
|
+
border: 1px solid #3fa110; }
|
|
10186
|
+
.component-chip.primary {
|
|
10187
|
+
color: #fefefe;
|
|
10188
|
+
background-color: #3fa110;
|
|
10189
|
+
border: 1px solid #3fa110; }
|
|
10190
|
+
.component-chip.danger {
|
|
10191
|
+
color: #fefefe;
|
|
10192
|
+
background-color: #e60000;
|
|
10193
|
+
border: 1px solid #e60000; }
|