@e1011/es-kit 1.1.52 → 1.1.54

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.
Files changed (34) hide show
  1. package/dist/hooks/esm/index.css +384 -277
  2. package/dist/hooks/index.css +384 -277
  3. package/dist/lib/cjs/index.css +107 -0
  4. package/dist/lib/cjs/src/core/ui/components/atoms/toggle/Toggle.js +2 -0
  5. package/dist/lib/cjs/src/core/ui/components/atoms/toggle/Toggle.js.map +1 -0
  6. package/dist/lib/cjs/src/core/ui/components/atoms/toggle/toggle.module.scss.js +2 -0
  7. package/dist/lib/cjs/src/core/ui/components/atoms/toggle/toggle.module.scss.js.map +1 -0
  8. package/dist/lib/cjs/src/index.js +1 -1
  9. package/dist/lib/esm/index.css +107 -0
  10. package/dist/lib/esm/src/core/ui/components/atoms/toggle/Toggle.js +2 -0
  11. package/dist/lib/esm/src/core/ui/components/atoms/toggle/Toggle.js.map +1 -0
  12. package/dist/lib/esm/src/core/ui/components/atoms/toggle/toggle.module.scss.js +2 -0
  13. package/dist/lib/esm/src/core/ui/components/atoms/toggle/toggle.module.scss.js.map +1 -0
  14. package/dist/lib/esm/src/index.js +1 -1
  15. package/dist/lib/tsconfig.tsbuildinfo +1 -1
  16. package/dist/types/src/core/ui/components/atoms/index.d.ts +1 -0
  17. package/dist/types/src/core/ui/components/atoms/index.d.ts.map +1 -1
  18. package/dist/types/src/core/ui/components/atoms/toggle/index.d.ts +2 -0
  19. package/dist/types/src/core/ui/components/atoms/toggle/index.d.ts.map +1 -0
  20. package/dist/ui/esm/index.css +107 -0
  21. package/dist/ui/esm/src/core/ui/components/atoms/toggle/Toggle.js +2 -0
  22. package/dist/ui/esm/src/core/ui/components/atoms/toggle/Toggle.js.map +1 -0
  23. package/dist/ui/esm/src/core/ui/components/atoms/toggle/toggle.module.scss.js +2 -0
  24. package/dist/ui/esm/src/core/ui/components/atoms/toggle/toggle.module.scss.js.map +1 -0
  25. package/dist/ui/esm/src/core/ui/index.js +1 -1
  26. package/dist/ui/index.css +107 -0
  27. package/dist/ui/src/core/ui/components/atoms/toggle/Toggle.js +2 -0
  28. package/dist/ui/src/core/ui/components/atoms/toggle/Toggle.js.map +1 -0
  29. package/dist/ui/src/core/ui/components/atoms/toggle/toggle.module.scss.js +2 -0
  30. package/dist/ui/src/core/ui/components/atoms/toggle/toggle.module.scss.js.map +1 -0
  31. package/dist/ui/src/core/ui/index.js +1 -1
  32. package/dist/utils/esm/index.css +384 -277
  33. package/dist/utils/index.css +384 -277
  34. package/package.json +1 -1
@@ -230,238 +230,119 @@
230
230
  stroke-dashoffset: -124;
231
231
  }
232
232
  }
233
- .popup-overlay-module_popup-modal-overlay__dlJqM {
234
- z-index: 1;
235
- position: fixed;
236
- width: 100%;
237
- height: 100%;
238
- top: 0;
239
- left: 0;
240
- background: rgba(40, 80, 120, 0.8) !important;
241
- pointer-events: all;
242
- user-select: none;
243
- will-change: opacity;
244
- transition: opacity 450ms ease-in-out;
245
- opacity: 0;
246
- visibility: hidden;
247
- }
248
- .popup-overlay-module_popup-modal-overlay__dlJqM[data-show] {
249
- opacity: 1;
250
- visibility: visible;
251
- }
252
- .popup-overlay-module_popup-modal-overlay__dlJqM[data-show=false] {
253
- opacity: 0;
254
- visibility: hidden;
255
- }
256
233
  :root {
257
234
  --divider-line: #4a4b4b;
258
235
  }
259
236
 
260
- .popup-module_overflow-hidden__uimg4, .popup-module_text-truncate__y-5c1 {
237
+ .button-module_overflow-hidden__Vc5AU, .button-module_text-truncate__a89Bp {
261
238
  overflow: hidden !important;
262
239
  }
263
240
 
264
- .popup-module_text-nowrap__eDCv3, .popup-module_text-truncate__y-5c1 {
241
+ .button-module_text-nowrap__tR-VJ, .button-module_text-truncate__a89Bp {
265
242
  white-space: nowrap !important;
266
243
  }
267
244
 
268
- .popup-module_text-ellipsis__yu8nx, .popup-module_text-truncate__y-5c1 {
245
+ .button-module_text-ellipsis__5MFA9, .button-module_text-truncate__a89Bp {
269
246
  text-overflow: ellipsis !important;
270
247
  }
271
248
 
272
- .popup-module_popup-container__PJ0oQ {
273
- --popup-width: 60vw;
274
- --popup-height: 50vh;
275
- position: fixed;
276
- width: var(--popup-width);
277
- height: var(--popup-height);
278
- --slideXFrom: 0;
279
- --slideYFrom: 0;
280
- will-change: opacity;
281
- transition: opacity 300ms ease-in-out;
282
- opacity: 0;
283
- visibility: hidden;
284
- pointer-events: none;
285
- }
286
- .popup-module_popup-container__PJ0oQ .popup-module_popup-container-inner__n83Cz {
287
- position: relative;
288
- flex-direction: column;
289
- align-items: start;
290
- width: 100%;
291
- height: 100%;
292
- overflow-x: clip;
293
- background-color: #090A0A;
294
- border-radius: 4px;
295
- box-shadow: 0px 10px 20px 4px rgba(0, 0, 0, 0.15);
296
- transition: transform 350ms ease-out;
297
- will-change: transform;
298
- transform: translateX(var(--slideXFrom)) translateY(var(--slideYFrom));
299
- }
300
- .popup-module_popup-container__PJ0oQ .popup-module_popup-container-inner__n83Cz button {
301
- margin-bottom: 0;
302
- }
303
- .popup-module_popup-container__PJ0oQ .popup-module_popup-container-inner__n83Cz .popup-module_close-button__-8sZx {
249
+ .button-module_button__NDMQS {
250
+ border: none;
251
+ color: #090A0A;
252
+ padding: 0.5rem 1rem;
253
+ text-align: center;
254
+ text-decoration: none;
255
+ font-size: 1rem;
256
+ overflow: hidden;
257
+ display: flex;
258
+ align-items: center;
259
+ justify-content: center;
260
+ min-width: "auto";
261
+ width: "auto";
262
+ user-select: all;
263
+ pointer-events: auto;
304
264
  cursor: pointer;
305
- line-height: 1px;
306
- background-color: rgba(255, 255, 255, 0);
307
265
  }
308
- .popup-module_popup-container__PJ0oQ .popup-module_popup-container-inner__n83Cz .popup-module_close-button__-8sZx .icon-base {
309
- background-color: #FDDA0D;
310
- width: 9px !important;
311
- height: 9px !important;
312
- line-height: 1px !important;
266
+ .button-module_button__NDMQS > span {
267
+ overflow: hidden;
268
+ white-space: nowrap;
269
+ display: inline-block;
313
270
  }
314
- .popup-module_popup-container__PJ0oQ .popup-module_popup-container-inner__n83Cz .popup-module_close-button__-8sZx:hover .icon-base {
315
- background-color: #FFEA00;
271
+ .button-module_button__NDMQS.button-module_info__O6gEW {
272
+ background-color: #2D8EFF;
316
273
  }
317
- .popup-module_popup-container__PJ0oQ .popup-module_popup-container-inner__n83Cz .popup-module_popup-container-inner-div__sDNBm {
318
- width: 100%;
319
- height: 100%;
320
- padding: 24px;
321
- overflow-y: auto;
322
- display: flex;
274
+ .button-module_button__NDMQS.button-module_info__O6gEW.button-module_transparent__zbeBu {
275
+ border: 1px solid #2D8EFF !important;
323
276
  }
324
- .popup-module_popup-container__PJ0oQ .popup-module_popup-container-inner__n83Cz .popup-module_popup-container-inner-div__sDNBm > * {
325
- overflow-y: auto;
277
+ .button-module_button__NDMQS.button-module_success__gM25y {
278
+ background-color: #13CE66;
326
279
  }
327
- .popup-module_popup-container__PJ0oQ[data-show] {
328
- opacity: 1;
329
- visibility: visible;
330
- pointer-events: all;
280
+ .button-module_button__NDMQS.button-module_success__gM25y.button-module_transparent__zbeBu {
281
+ border: 1px solid #13CE66 !important;
331
282
  }
332
- .popup-module_popup-container__PJ0oQ[data-show] .popup-module_popup-container-inner__n83Cz {
333
- transform: translateX(0) translateY(0);
283
+ .button-module_button__NDMQS.button-module_error__q9qqo {
284
+ background-color: #FF4949;
334
285
  }
335
- .popup-module_popup-container__PJ0oQ[data-show=false] {
336
- opacity: 0;
337
- visibility: hidden;
338
- pointer-events: none;
286
+ .button-module_button__NDMQS.button-module_error__q9qqo.button-module_transparent__zbeBu {
287
+ border: 1px solid #FF4949 !important;
339
288
  }
340
- .popup-module_popup-container__PJ0oQ[data-show=false] .popup-module_popup-container-inner__n83Cz {
341
- transform: translateX(var(--slideXFrom)) translateY(var(--slideYFrom));
289
+ .button-module_button__NDMQS.button-module_warning__MdmiZ {
290
+ background-color: #FFCC3D;
342
291
  }
343
-
344
- .cui-theme-dark .popup-module_popup-container-inner__n83Cz {
345
- background-color: #090A0A;
346
- color: #F4F4F4;
292
+ .button-module_button__NDMQS.button-module_warning__MdmiZ.button-module_transparent__zbeBu {
293
+ border: 1px solid #FFCC3D !important;
347
294
  }
348
- .cui-theme-light .popup-module_popup-container-inner__n83Cz {
349
- background-color: #090A0A;
350
- color: #F4F4F4;
295
+ .button-module_button__NDMQS.button-module_transparent__zbeBu {
296
+ border: none !important;
297
+ background-color: transparent !important;
298
+ background: transparent !important;
351
299
  }
352
- :root {
353
- --divider-line: #4a4b4b;
300
+ .button-module_button__NDMQS.button-module_tiny__pBNwo {
301
+ height: 1.4rem;
302
+ min-width: 1.5rem;
303
+ width: 1.5rem;
304
+ padding: 0.2rem;
305
+ font-size: 0.8rem;
354
306
  }
355
-
356
- .tooltip-module_overflow-hidden__YDzdx, .tooltip-module_text-truncate__CPvp3 {
357
- overflow: hidden !important;
307
+ .button-module_button__NDMQS.button-module_fluid__GXxID {
308
+ width: 100%;
358
309
  }
359
-
360
- .tooltip-module_text-nowrap__g6kzP, .tooltip-module_text-truncate__CPvp3 {
310
+ .button-module_button__NDMQS.button-module_truncate__c-G9k > span {
311
+ overflow: hidden !important;
361
312
  white-space: nowrap !important;
362
- }
363
-
364
- .tooltip-module_text-ellipsis__AYivV, .tooltip-module_text-truncate__CPvp3 {
365
313
  text-overflow: ellipsis !important;
366
314
  }
367
-
368
- .tooltip-module_popover-tooltip__sAhKa {
369
- position: fixed;
370
- z-index: 999;
371
- will-change: opacity;
372
- transition: opacity 450ms ease;
373
- opacity: 0;
374
- visibility: hidden;
375
- border-radius: 4px;
376
- background-color: #1B1D1D;
377
- box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.16);
378
- }
379
- .tooltip-module_popover-tooltip__sAhKa span, .tooltip-module_popover-tooltip__sAhKa p, .tooltip-module_popover-tooltip__sAhKa h3 {
380
- margin: 0;
381
- padding: 0;
382
- }
383
- .tooltip-module_popover-tooltip__sAhKa p {
384
- display: -webkit-box;
385
- -webkit-line-clamp: 4; /* number of lines to show */
386
- line-clamp: 4;
387
- -webkit-box-orient: vertical;
388
- margin: 0;
389
- width: 100%;
390
- white-space: normal;
391
- overflow: auto;
392
- }
393
- .tooltip-module_popover-tooltip__sAhKa[data-show] {
394
- opacity: 1;
395
- visibility: visible;
396
- }
397
- .tooltip-module_popover-tooltip__sAhKa[data-show=false] {
398
- opacity: 0;
399
- visibility: hidden;
400
- }
401
- .tooltip-module_popover-tooltip__sAhKa[data-popper-placement^=top] .tooltip-module_arrow__pqqOi {
402
- bottom: -16px;
403
- }
404
- .tooltip-module_popover-tooltip__sAhKa[data-popper-placement^=top] .tooltip-module_arrow__pqqOi .tooltip-module_arrow-inner__IqzxY {
405
- transform: rotate(0deg);
406
- }
407
- .tooltip-module_popover-tooltip__sAhKa[data-popper-placement^=bottom] .tooltip-module_arrow__pqqOi {
408
- top: -16px;
409
- }
410
- .tooltip-module_popover-tooltip__sAhKa[data-popper-placement^=bottom] .tooltip-module_arrow__pqqOi .tooltip-module_arrow-inner__IqzxY {
411
- transform: rotate(180deg);
412
- }
413
- .tooltip-module_popover-tooltip__sAhKa[data-popper-placement^=left] .tooltip-module_arrow__pqqOi {
414
- right: -16px;
415
- }
416
- .tooltip-module_popover-tooltip__sAhKa[data-popper-placement^=left] .tooltip-module_arrow__pqqOi .tooltip-module_arrow-inner__IqzxY {
417
- transform: rotate(-90deg);
418
- }
419
- .tooltip-module_popover-tooltip__sAhKa[data-popper-placement^=right] .tooltip-module_arrow__pqqOi {
420
- left: -16px;
315
+ .button-module_button__NDMQS.button-module_animated__gLwPl {
316
+ transition: transform 250ms ease-out;
421
317
  }
422
- .tooltip-module_popover-tooltip__sAhKa[data-popper-placement^=right] .tooltip-module_arrow__pqqOi .tooltip-module_arrow-inner__IqzxY {
423
- transform: rotate(90deg);
318
+ .button-module_button__NDMQS.button-module_hasShadow__42BQv {
319
+ box-shadow: 0 5px 15px 0 rgba(28, 37, 39, 0.1), 0 0 2px 0 rgba(0, 0, 0, 0.1);
424
320
  }
425
- .tooltip-module_popover-tooltip__sAhKa .tooltip-module_arrow__pqqOi {
426
- position: absolute;
321
+ .button-module_button__NDMQS.button-module_hasIcon__dXLlJ {
322
+ padding: 0.4rem;
323
+ border: none !important;
324
+ line-height: 1px;
427
325
  }
428
- .tooltip-module_popover-tooltip__sAhKa .tooltip-module_arrow__pqqOi .tooltip-module_arrow-inner__IqzxY {
429
- content: "";
430
- border-width: 8px;
431
- border-style: solid;
432
- border-color: #1B1D1D transparent transparent transparent;
326
+ .button-module_button__NDMQS.button-module_hasIcon__dXLlJ.button-module_tiny__pBNwo {
327
+ padding: 0px;
433
328
  }
434
-
435
- .tooltip-module_close-button__o8OBN {
436
- cursor: pointer;
437
- line-height: 1px;
438
- background-color: rgba(255, 255, 255, 0);
329
+ .button-module_button__NDMQS:hover {
330
+ background-color: #c5c5c5 !important;
439
331
  }
440
- .tooltip-module_close-button__o8OBN .icon-base {
441
- background-color: #FDDA0D;
442
- width: 9px !important;
443
- height: 9px !important;
444
- line-height: 1px !important;
332
+ .button-module_button__NDMQS:hover.button-module_animated__gLwPl {
333
+ transform: scale(1.2);
445
334
  }
446
- .tooltip-module_close-button__o8OBN:hover .icon-base {
447
- background-color: #FFEA00;
335
+ .button-module_button__NDMQS.button-module_disabled__hEydO {
336
+ user-select: none;
337
+ pointer-events: none;
338
+ cursor: not-allowed;
448
339
  }
449
340
 
450
- .cui-theme-dark .tooltip-module_popover-tooltip__sAhKa {
451
- background-color: #1B1D1D;
341
+ .cui-theme-dark .button-module_button__NDMQS {
452
342
  color: #F4F4F4;
453
343
  }
454
- .cui-theme-dark .tooltip-module_popover-tooltip__sAhKa .tooltip-module_arrow-inner__IqzxY {
455
- border-color: #1B1D1D transparent transparent transparent;
456
- }
457
- .cui-theme-light {
458
- color: #1B1D1D;
459
- }
460
- .cui-theme-light .tooltip-module_popover-tooltip__sAhKa {
461
- background-color: #515757;
462
- }
463
- .cui-theme-light .tooltip-module_popover-tooltip__sAhKa .tooltip-module_arrow-inner__IqzxY {
464
- border-color: #515757 transparent transparent transparent;
344
+ .cui-theme-light .button-module_button__NDMQS {
345
+ color: #090A0A;
465
346
  }
466
347
  .flowLayout-module_flowLayout__VHpnY {
467
348
  overflow: auto;
@@ -546,115 +427,97 @@
546
427
  --divider-line: #4a4b4b;
547
428
  }
548
429
 
549
- .button-module_overflow-hidden__Vc5AU, .button-module_text-truncate__a89Bp {
430
+ .popup-module_overflow-hidden__uimg4, .popup-module_text-truncate__y-5c1 {
550
431
  overflow: hidden !important;
551
432
  }
552
433
 
553
- .button-module_text-nowrap__tR-VJ, .button-module_text-truncate__a89Bp {
434
+ .popup-module_text-nowrap__eDCv3, .popup-module_text-truncate__y-5c1 {
554
435
  white-space: nowrap !important;
555
436
  }
556
437
 
557
- .button-module_text-ellipsis__5MFA9, .button-module_text-truncate__a89Bp {
438
+ .popup-module_text-ellipsis__yu8nx, .popup-module_text-truncate__y-5c1 {
558
439
  text-overflow: ellipsis !important;
559
440
  }
560
441
 
561
- .button-module_button__NDMQS {
562
- border: none;
563
- color: #090A0A;
564
- padding: 0.5rem 1rem;
565
- text-align: center;
566
- text-decoration: none;
567
- font-size: 1rem;
568
- overflow: hidden;
569
- display: flex;
570
- align-items: center;
571
- justify-content: center;
572
- min-width: "auto";
573
- width: "auto";
574
- user-select: all;
575
- pointer-events: auto;
576
- cursor: pointer;
577
- }
578
- .button-module_button__NDMQS > span {
579
- overflow: hidden;
580
- white-space: nowrap;
581
- display: inline-block;
582
- }
583
- .button-module_button__NDMQS.button-module_info__O6gEW {
584
- background-color: #2D8EFF;
585
- }
586
- .button-module_button__NDMQS.button-module_info__O6gEW.button-module_transparent__zbeBu {
587
- border: 1px solid #2D8EFF !important;
588
- }
589
- .button-module_button__NDMQS.button-module_success__gM25y {
590
- background-color: #13CE66;
591
- }
592
- .button-module_button__NDMQS.button-module_success__gM25y.button-module_transparent__zbeBu {
593
- border: 1px solid #13CE66 !important;
594
- }
595
- .button-module_button__NDMQS.button-module_error__q9qqo {
596
- background-color: #FF4949;
597
- }
598
- .button-module_button__NDMQS.button-module_error__q9qqo.button-module_transparent__zbeBu {
599
- border: 1px solid #FF4949 !important;
600
- }
601
- .button-module_button__NDMQS.button-module_warning__MdmiZ {
602
- background-color: #FFCC3D;
603
- }
604
- .button-module_button__NDMQS.button-module_warning__MdmiZ.button-module_transparent__zbeBu {
605
- border: 1px solid #FFCC3D !important;
606
- }
607
- .button-module_button__NDMQS.button-module_transparent__zbeBu {
608
- border: none !important;
609
- background-color: transparent !important;
610
- background: transparent !important;
442
+ .popup-module_popup-container__PJ0oQ {
443
+ --popup-width: 60vw;
444
+ --popup-height: 50vh;
445
+ position: fixed;
446
+ width: var(--popup-width);
447
+ height: var(--popup-height);
448
+ --slideXFrom: 0;
449
+ --slideYFrom: 0;
450
+ will-change: opacity;
451
+ transition: opacity 300ms ease-in-out;
452
+ opacity: 0;
453
+ visibility: hidden;
454
+ pointer-events: none;
611
455
  }
612
- .button-module_button__NDMQS.button-module_tiny__pBNwo {
613
- height: 1.4rem;
614
- min-width: 1.5rem;
615
- width: 1.5rem;
616
- padding: 0.2rem;
617
- font-size: 0.8rem;
456
+ .popup-module_popup-container__PJ0oQ .popup-module_popup-container-inner__n83Cz {
457
+ position: relative;
458
+ flex-direction: column;
459
+ align-items: start;
460
+ width: 100%;
461
+ height: 100%;
462
+ overflow-x: clip;
463
+ background-color: #090A0A;
464
+ border-radius: 4px;
465
+ box-shadow: 0px 10px 20px 4px rgba(0, 0, 0, 0.15);
466
+ transition: transform 350ms ease-out;
467
+ will-change: transform;
468
+ transform: translateX(var(--slideXFrom)) translateY(var(--slideYFrom));
618
469
  }
619
- .button-module_button__NDMQS.button-module_fluid__GXxID {
620
- width: 100%;
470
+ .popup-module_popup-container__PJ0oQ .popup-module_popup-container-inner__n83Cz button {
471
+ margin-bottom: 0;
621
472
  }
622
- .button-module_button__NDMQS.button-module_truncate__c-G9k > span {
623
- overflow: hidden !important;
624
- white-space: nowrap !important;
625
- text-overflow: ellipsis !important;
473
+ .popup-module_popup-container__PJ0oQ .popup-module_popup-container-inner__n83Cz .popup-module_close-button__-8sZx {
474
+ cursor: pointer;
475
+ line-height: 1px;
476
+ background-color: rgba(255, 255, 255, 0);
626
477
  }
627
- .button-module_button__NDMQS.button-module_animated__gLwPl {
628
- transition: transform 250ms ease-out;
478
+ .popup-module_popup-container__PJ0oQ .popup-module_popup-container-inner__n83Cz .popup-module_close-button__-8sZx .icon-base {
479
+ background-color: #FDDA0D;
480
+ width: 9px !important;
481
+ height: 9px !important;
482
+ line-height: 1px !important;
629
483
  }
630
- .button-module_button__NDMQS.button-module_hasShadow__42BQv {
631
- box-shadow: 0 5px 15px 0 rgba(28, 37, 39, 0.1), 0 0 2px 0 rgba(0, 0, 0, 0.1);
484
+ .popup-module_popup-container__PJ0oQ .popup-module_popup-container-inner__n83Cz .popup-module_close-button__-8sZx:hover .icon-base {
485
+ background-color: #FFEA00;
632
486
  }
633
- .button-module_button__NDMQS.button-module_hasIcon__dXLlJ {
634
- padding: 0.4rem;
635
- border: none !important;
636
- line-height: 1px;
487
+ .popup-module_popup-container__PJ0oQ .popup-module_popup-container-inner__n83Cz .popup-module_popup-container-inner-div__sDNBm {
488
+ width: 100%;
489
+ height: 100%;
490
+ padding: 24px;
491
+ overflow-y: auto;
492
+ display: flex;
637
493
  }
638
- .button-module_button__NDMQS.button-module_hasIcon__dXLlJ.button-module_tiny__pBNwo {
639
- padding: 0px;
494
+ .popup-module_popup-container__PJ0oQ .popup-module_popup-container-inner__n83Cz .popup-module_popup-container-inner-div__sDNBm > * {
495
+ overflow-y: auto;
640
496
  }
641
- .button-module_button__NDMQS:hover {
642
- background-color: #c5c5c5 !important;
497
+ .popup-module_popup-container__PJ0oQ[data-show] {
498
+ opacity: 1;
499
+ visibility: visible;
500
+ pointer-events: all;
643
501
  }
644
- .button-module_button__NDMQS:hover.button-module_animated__gLwPl {
645
- transform: scale(1.2);
502
+ .popup-module_popup-container__PJ0oQ[data-show] .popup-module_popup-container-inner__n83Cz {
503
+ transform: translateX(0) translateY(0);
646
504
  }
647
- .button-module_button__NDMQS.button-module_disabled__hEydO {
648
- user-select: none;
505
+ .popup-module_popup-container__PJ0oQ[data-show=false] {
506
+ opacity: 0;
507
+ visibility: hidden;
649
508
  pointer-events: none;
650
- cursor: not-allowed;
509
+ }
510
+ .popup-module_popup-container__PJ0oQ[data-show=false] .popup-module_popup-container-inner__n83Cz {
511
+ transform: translateX(var(--slideXFrom)) translateY(var(--slideYFrom));
651
512
  }
652
513
 
653
- .cui-theme-dark .button-module_button__NDMQS {
514
+ .cui-theme-dark .popup-module_popup-container-inner__n83Cz {
515
+ background-color: #090A0A;
654
516
  color: #F4F4F4;
655
517
  }
656
- .cui-theme-light .button-module_button__NDMQS {
657
- color: #090A0A;
518
+ .cui-theme-light .popup-module_popup-container-inner__n83Cz {
519
+ background-color: #090A0A;
520
+ color: #F4F4F4;
658
521
  }
659
522
  :root {
660
523
  --divider-line: #4a4b4b;
@@ -820,6 +683,120 @@
820
683
  border-color: #FD8F3E;
821
684
  color: #632E03;
822
685
  }
686
+ :root {
687
+ --divider-line: #4a4b4b;
688
+ }
689
+
690
+ .tooltip-module_overflow-hidden__YDzdx, .tooltip-module_text-truncate__CPvp3 {
691
+ overflow: hidden !important;
692
+ }
693
+
694
+ .tooltip-module_text-nowrap__g6kzP, .tooltip-module_text-truncate__CPvp3 {
695
+ white-space: nowrap !important;
696
+ }
697
+
698
+ .tooltip-module_text-ellipsis__AYivV, .tooltip-module_text-truncate__CPvp3 {
699
+ text-overflow: ellipsis !important;
700
+ }
701
+
702
+ .tooltip-module_popover-tooltip__sAhKa {
703
+ position: fixed;
704
+ z-index: 999;
705
+ will-change: opacity;
706
+ transition: opacity 450ms ease;
707
+ opacity: 0;
708
+ visibility: hidden;
709
+ border-radius: 4px;
710
+ background-color: #1B1D1D;
711
+ box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.16);
712
+ }
713
+ .tooltip-module_popover-tooltip__sAhKa span, .tooltip-module_popover-tooltip__sAhKa p, .tooltip-module_popover-tooltip__sAhKa h3 {
714
+ margin: 0;
715
+ padding: 0;
716
+ }
717
+ .tooltip-module_popover-tooltip__sAhKa p {
718
+ display: -webkit-box;
719
+ -webkit-line-clamp: 4; /* number of lines to show */
720
+ line-clamp: 4;
721
+ -webkit-box-orient: vertical;
722
+ margin: 0;
723
+ width: 100%;
724
+ white-space: normal;
725
+ overflow: auto;
726
+ }
727
+ .tooltip-module_popover-tooltip__sAhKa[data-show] {
728
+ opacity: 1;
729
+ visibility: visible;
730
+ }
731
+ .tooltip-module_popover-tooltip__sAhKa[data-show=false] {
732
+ opacity: 0;
733
+ visibility: hidden;
734
+ }
735
+ .tooltip-module_popover-tooltip__sAhKa[data-popper-placement^=top] .tooltip-module_arrow__pqqOi {
736
+ bottom: -16px;
737
+ }
738
+ .tooltip-module_popover-tooltip__sAhKa[data-popper-placement^=top] .tooltip-module_arrow__pqqOi .tooltip-module_arrow-inner__IqzxY {
739
+ transform: rotate(0deg);
740
+ }
741
+ .tooltip-module_popover-tooltip__sAhKa[data-popper-placement^=bottom] .tooltip-module_arrow__pqqOi {
742
+ top: -16px;
743
+ }
744
+ .tooltip-module_popover-tooltip__sAhKa[data-popper-placement^=bottom] .tooltip-module_arrow__pqqOi .tooltip-module_arrow-inner__IqzxY {
745
+ transform: rotate(180deg);
746
+ }
747
+ .tooltip-module_popover-tooltip__sAhKa[data-popper-placement^=left] .tooltip-module_arrow__pqqOi {
748
+ right: -16px;
749
+ }
750
+ .tooltip-module_popover-tooltip__sAhKa[data-popper-placement^=left] .tooltip-module_arrow__pqqOi .tooltip-module_arrow-inner__IqzxY {
751
+ transform: rotate(-90deg);
752
+ }
753
+ .tooltip-module_popover-tooltip__sAhKa[data-popper-placement^=right] .tooltip-module_arrow__pqqOi {
754
+ left: -16px;
755
+ }
756
+ .tooltip-module_popover-tooltip__sAhKa[data-popper-placement^=right] .tooltip-module_arrow__pqqOi .tooltip-module_arrow-inner__IqzxY {
757
+ transform: rotate(90deg);
758
+ }
759
+ .tooltip-module_popover-tooltip__sAhKa .tooltip-module_arrow__pqqOi {
760
+ position: absolute;
761
+ }
762
+ .tooltip-module_popover-tooltip__sAhKa .tooltip-module_arrow__pqqOi .tooltip-module_arrow-inner__IqzxY {
763
+ content: "";
764
+ border-width: 8px;
765
+ border-style: solid;
766
+ border-color: #1B1D1D transparent transparent transparent;
767
+ }
768
+
769
+ .tooltip-module_close-button__o8OBN {
770
+ cursor: pointer;
771
+ line-height: 1px;
772
+ background-color: rgba(255, 255, 255, 0);
773
+ }
774
+ .tooltip-module_close-button__o8OBN .icon-base {
775
+ background-color: #FDDA0D;
776
+ width: 9px !important;
777
+ height: 9px !important;
778
+ line-height: 1px !important;
779
+ }
780
+ .tooltip-module_close-button__o8OBN:hover .icon-base {
781
+ background-color: #FFEA00;
782
+ }
783
+
784
+ .cui-theme-dark .tooltip-module_popover-tooltip__sAhKa {
785
+ background-color: #1B1D1D;
786
+ color: #F4F4F4;
787
+ }
788
+ .cui-theme-dark .tooltip-module_popover-tooltip__sAhKa .tooltip-module_arrow-inner__IqzxY {
789
+ border-color: #1B1D1D transparent transparent transparent;
790
+ }
791
+ .cui-theme-light {
792
+ color: #1B1D1D;
793
+ }
794
+ .cui-theme-light .tooltip-module_popover-tooltip__sAhKa {
795
+ background-color: #515757;
796
+ }
797
+ .cui-theme-light .tooltip-module_popover-tooltip__sAhKa .tooltip-module_arrow-inner__IqzxY {
798
+ border-color: #515757 transparent transparent transparent;
799
+ }
823
800
  .textAndContent-module_textAndContent__X5P1n {
824
801
  align-items: baseline;
825
802
  flex-shrink: 1;
@@ -829,6 +806,136 @@
829
806
  --divider-line: #4a4b4b;
830
807
  }
831
808
 
809
+ .toggle-module_overflow-hidden__NxfFx, .toggle-module_text-truncate__Wg-Jx {
810
+ overflow: hidden !important;
811
+ }
812
+
813
+ .toggle-module_text-nowrap__F9ld6, .toggle-module_text-truncate__Wg-Jx {
814
+ white-space: nowrap !important;
815
+ }
816
+
817
+ .toggle-module_text-ellipsis__ftYlg, .toggle-module_text-truncate__Wg-Jx {
818
+ text-overflow: ellipsis !important;
819
+ }
820
+
821
+ .toggle-module_toggle__p1Ep4 {
822
+ display: inline-block;
823
+ position: relative;
824
+ max-width: 48px;
825
+ max-height: 24px;
826
+ width: 48px;
827
+ height: 24px;
828
+ border-radius: 16px !important;
829
+ }
830
+ .toggle-module_toggle__p1Ep4 input {
831
+ opacity: 0;
832
+ width: 0;
833
+ height: 0;
834
+ }
835
+ .toggle-module_toggle__p1Ep4 .toggle-module_slider__2IVaG {
836
+ box-sizing: border-box;
837
+ position: absolute;
838
+ cursor: pointer;
839
+ width: 48px;
840
+ height: 24px;
841
+ top: 0;
842
+ left: 0;
843
+ right: 0;
844
+ bottom: 0;
845
+ background-color: transparent;
846
+ border: 1px solid #F4F4F4;
847
+ transition: transform, background-color 0.4s ease;
848
+ border-radius: 16px;
849
+ }
850
+ .toggle-module_toggle__p1Ep4 .toggle-module_slider__2IVaG:before {
851
+ position: absolute;
852
+ content: "";
853
+ height: 20px;
854
+ width: 20px;
855
+ left: 1px;
856
+ bottom: 1px;
857
+ background-color: #F4F4F4;
858
+ transition: transform 0.4s ease;
859
+ border-radius: 50%;
860
+ }
861
+ .toggle-module_toggle__p1Ep4 input:checked + .toggle-module_slider__2IVaG {
862
+ background-color: #02B3E6;
863
+ border-color: #02B3E6;
864
+ }
865
+ .toggle-module_toggle__p1Ep4 input:focus + .toggle-module_slider__2IVaG {
866
+ box-shadow: 0 0 1px 1px #02B3E6;
867
+ }
868
+ .toggle-module_toggle__p1Ep4 input:checked + .toggle-module_slider__2IVaG:before {
869
+ transform: translateX(24px);
870
+ }
871
+ .toggle-module_toggle__p1Ep4.toggle-module_disabled__0nElH {
872
+ opacity: 0.65;
873
+ }
874
+ .toggle-module_toggle__p1Ep4.toggle-module_disabled__0nElH input {
875
+ pointer-events: none;
876
+ }
877
+ .toggle-module_toggle__p1Ep4.toggle-module_disabled__0nElH .toggle-module_slider__2IVaG {
878
+ cursor: not-allowed;
879
+ }
880
+ .toggle-module_toggle__p1Ep4.toggle-module_disabled__0nElH .toggle-module_slider__2IVaG:after {
881
+ content: " ";
882
+ z-index: -1;
883
+ display: block;
884
+ position: absolute;
885
+ height: 100%;
886
+ top: 0;
887
+ left: 0;
888
+ right: 0;
889
+ }
890
+
891
+ .theme-dark .toggle-module_toggle__p1Ep4 input:enabled + .toggle-module_slider__2IVaG:hover {
892
+ background-color: #003A4C;
893
+ }
894
+ .theme-dark .toggle-module_toggle__p1Ep4 input:checked:enabled + .toggle-module_slider__2IVaG:hover {
895
+ background-color: #07a7d5;
896
+ }
897
+ .theme-light .toggle-module_toggle__p1Ep4 input + .toggle-module_slider__2IVaG {
898
+ border-color: #02a1cf;
899
+ }
900
+ .theme-light .toggle-module_toggle__p1Ep4 input + .toggle-module_slider__2IVaG:hover {
901
+ background-color: rgba(2, 179, 230, 0.05);
902
+ }
903
+ .theme-light .toggle-module_toggle__p1Ep4 input + .toggle-module_slider__2IVaG:before {
904
+ background-color: #02B3E6;
905
+ }
906
+ .theme-light .toggle-module_toggle__p1Ep4 input:checked + .toggle-module_slider__2IVaG:before {
907
+ background-color: #F4F4F4;
908
+ }
909
+ .theme-light .toggle-module_toggle__p1Ep4 input:checked + .toggle-module_slider__2IVaG:hover {
910
+ background-color: #07c6fd;
911
+ }
912
+ .popup-overlay-module_popup-modal-overlay__dlJqM {
913
+ z-index: 1;
914
+ position: fixed;
915
+ width: 100%;
916
+ height: 100%;
917
+ top: 0;
918
+ left: 0;
919
+ background: rgba(40, 80, 120, 0.8) !important;
920
+ pointer-events: all;
921
+ user-select: none;
922
+ will-change: opacity;
923
+ transition: opacity 450ms ease-in-out;
924
+ opacity: 0;
925
+ visibility: hidden;
926
+ }
927
+ .popup-overlay-module_popup-modal-overlay__dlJqM[data-show] {
928
+ opacity: 1;
929
+ visibility: visible;
930
+ }
931
+ .popup-overlay-module_popup-modal-overlay__dlJqM[data-show=false] {
932
+ opacity: 0;
933
+ visibility: hidden;
934
+ }
935
+ :root {
936
+ --divider-line: #4a4b4b;
937
+ }
938
+
832
939
  .anchorLink-module_overflow-hidden__-MElA, .anchorLink-module_text-truncate__62t8P {
833
940
  overflow: hidden !important;
834
941
  }