@bigtablet/design-system 1.24.0 → 1.24.2
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/index.css +392 -392
- package/dist/index.d.ts +222 -222
- package/dist/index.js +736 -629
- package/dist/next.d.ts +1 -1
- package/dist/next.js +99 -147
- package/dist/vanilla/bigtablet.min.css +1 -1
- package/dist/vanilla/bigtablet.min.js +2 -2
- package/package.json +148 -147
package/dist/index.css
CHANGED
|
@@ -234,42 +234,6 @@
|
|
|
234
234
|
animation: spinner_spin 0.8s linear infinite;
|
|
235
235
|
}
|
|
236
236
|
|
|
237
|
-
/* src/ui/feedback/top-loading/style.scss */
|
|
238
|
-
@keyframes skeleton_loading {
|
|
239
|
-
0% {
|
|
240
|
-
background-position: 100% 0;
|
|
241
|
-
}
|
|
242
|
-
100% {
|
|
243
|
-
background-position: 0 0;
|
|
244
|
-
}
|
|
245
|
-
}
|
|
246
|
-
.top_loading {
|
|
247
|
-
position: fixed;
|
|
248
|
-
top: 0;
|
|
249
|
-
left: 0;
|
|
250
|
-
right: 0;
|
|
251
|
-
z-index: 1000;
|
|
252
|
-
overflow: hidden;
|
|
253
|
-
background-color: transparent;
|
|
254
|
-
}
|
|
255
|
-
.top_loading_bar {
|
|
256
|
-
height: 100%;
|
|
257
|
-
background-color: #121212;
|
|
258
|
-
transition: width 0.2s ease-in-out;
|
|
259
|
-
}
|
|
260
|
-
.top_loading_indeterminate {
|
|
261
|
-
width: 30%;
|
|
262
|
-
animation: top_loading_indeterminate 1.5s ease-in-out infinite;
|
|
263
|
-
}
|
|
264
|
-
@keyframes top_loading_indeterminate {
|
|
265
|
-
0% {
|
|
266
|
-
transform: translateX(-100%);
|
|
267
|
-
}
|
|
268
|
-
100% {
|
|
269
|
-
transform: translateX(400%);
|
|
270
|
-
}
|
|
271
|
-
}
|
|
272
|
-
|
|
273
237
|
/* src/ui/feedback/toast/style.scss */
|
|
274
238
|
@keyframes skeleton_loading {
|
|
275
239
|
0% {
|
|
@@ -311,7 +275,7 @@
|
|
|
311
275
|
position: fixed;
|
|
312
276
|
top: 16px;
|
|
313
277
|
right: 16px;
|
|
314
|
-
z-index:
|
|
278
|
+
z-index: 200;
|
|
315
279
|
display: flex;
|
|
316
280
|
flex-direction: column;
|
|
317
281
|
gap: 8px;
|
|
@@ -413,7 +377,7 @@
|
|
|
413
377
|
background: #666666;
|
|
414
378
|
}
|
|
415
379
|
|
|
416
|
-
/* src/ui/
|
|
380
|
+
/* src/ui/feedback/top-loading/style.scss */
|
|
417
381
|
@keyframes skeleton_loading {
|
|
418
382
|
0% {
|
|
419
383
|
background-position: 100% 0;
|
|
@@ -422,89 +386,31 @@
|
|
|
422
386
|
background-position: 0 0;
|
|
423
387
|
}
|
|
424
388
|
}
|
|
425
|
-
.
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
font-weight: 500;
|
|
434
|
-
transition:
|
|
435
|
-
background 0.2s ease-in-out,
|
|
436
|
-
color 0.2s ease-in-out,
|
|
437
|
-
box-shadow 0.2s ease-in-out,
|
|
438
|
-
transform 0.2s ease-in-out;
|
|
439
|
-
}
|
|
440
|
-
.button:disabled {
|
|
441
|
-
cursor: not-allowed;
|
|
442
|
-
opacity: 0.6;
|
|
443
|
-
}
|
|
444
|
-
.button_size_sm {
|
|
445
|
-
padding: 8px 16px;
|
|
446
|
-
font-size: 12px;
|
|
447
|
-
font-weight: 400;
|
|
448
|
-
line-height: 16px;
|
|
449
|
-
letter-spacing: 0px;
|
|
450
|
-
}
|
|
451
|
-
.button_size_md {
|
|
452
|
-
padding: 12px 20px;
|
|
453
|
-
font-size: 15px;
|
|
454
|
-
font-weight: 400;
|
|
455
|
-
line-height: 22.5px;
|
|
456
|
-
letter-spacing: 0px;
|
|
457
|
-
}
|
|
458
|
-
.button_size_lg {
|
|
459
|
-
padding: 16px 24px;
|
|
460
|
-
font-size: 16px;
|
|
461
|
-
font-weight: 400;
|
|
462
|
-
line-height: 24px;
|
|
463
|
-
letter-spacing: 0px;
|
|
464
|
-
}
|
|
465
|
-
.button_variant_primary {
|
|
466
|
-
background: #121212;
|
|
467
|
-
color: #FFFFFF;
|
|
468
|
-
}
|
|
469
|
-
.button_variant_primary:hover:not(:disabled) {
|
|
470
|
-
background: #999999;
|
|
471
|
-
}
|
|
472
|
-
.button_variant_primary:active:not(:disabled) {
|
|
473
|
-
transform: scale(0.98);
|
|
474
|
-
}
|
|
475
|
-
.button_variant_secondary {
|
|
476
|
-
background: transparent;
|
|
477
|
-
border: 1px solid #E5E5E5;
|
|
478
|
-
color: #121212;
|
|
479
|
-
}
|
|
480
|
-
.button_variant_secondary:hover:not(:disabled) {
|
|
481
|
-
background: #F4F4F4;
|
|
482
|
-
}
|
|
483
|
-
.button_variant_secondary:active:not(:disabled) {
|
|
484
|
-
transform: scale(0.98);
|
|
485
|
-
}
|
|
486
|
-
.button_variant_ghost {
|
|
487
|
-
background: transparent;
|
|
488
|
-
color: #121212;
|
|
489
|
-
}
|
|
490
|
-
.button_variant_ghost:hover:not(:disabled) {
|
|
491
|
-
background: rgba(0, 0, 0, 0.05);
|
|
492
|
-
}
|
|
493
|
-
.button_variant_ghost:active:not(:disabled) {
|
|
494
|
-
transform: scale(0.96);
|
|
495
|
-
}
|
|
496
|
-
.button_variant_danger {
|
|
497
|
-
background: #EF4444;
|
|
498
|
-
color: #FFFFFF;
|
|
389
|
+
.top_loading {
|
|
390
|
+
position: fixed;
|
|
391
|
+
top: 0;
|
|
392
|
+
left: 0;
|
|
393
|
+
right: 0;
|
|
394
|
+
z-index: 500;
|
|
395
|
+
overflow: hidden;
|
|
396
|
+
background-color: transparent;
|
|
499
397
|
}
|
|
500
|
-
.
|
|
501
|
-
|
|
398
|
+
.top_loading_bar {
|
|
399
|
+
height: 100%;
|
|
400
|
+
background-color: #121212;
|
|
401
|
+
transition: width 0.2s ease-in-out;
|
|
502
402
|
}
|
|
503
|
-
.
|
|
504
|
-
|
|
403
|
+
.top_loading_indeterminate {
|
|
404
|
+
width: 30%;
|
|
405
|
+
animation: top_loading_indeterminate 1.5s ease-in-out infinite;
|
|
505
406
|
}
|
|
506
|
-
|
|
507
|
-
|
|
407
|
+
@keyframes top_loading_indeterminate {
|
|
408
|
+
0% {
|
|
409
|
+
transform: translateX(-100%);
|
|
410
|
+
}
|
|
411
|
+
100% {
|
|
412
|
+
transform: translateX(400%);
|
|
413
|
+
}
|
|
508
414
|
}
|
|
509
415
|
|
|
510
416
|
/* src/ui/form/checkbox/style.scss */
|
|
@@ -633,6 +539,122 @@
|
|
|
633
539
|
border-radius: 9999px;
|
|
634
540
|
}
|
|
635
541
|
|
|
542
|
+
/* src/ui/form/date-picker/style.scss */
|
|
543
|
+
@keyframes skeleton_loading {
|
|
544
|
+
0% {
|
|
545
|
+
background-position: 100% 0;
|
|
546
|
+
}
|
|
547
|
+
100% {
|
|
548
|
+
background-position: 0 0;
|
|
549
|
+
}
|
|
550
|
+
}
|
|
551
|
+
.date_picker {
|
|
552
|
+
display: flex;
|
|
553
|
+
flex-direction: column;
|
|
554
|
+
gap: 4px;
|
|
555
|
+
}
|
|
556
|
+
.date_picker select {
|
|
557
|
+
min-width: 88px;
|
|
558
|
+
height: 44px;
|
|
559
|
+
padding: 0 12px;
|
|
560
|
+
font-family: "Pretendard", sans-serif;
|
|
561
|
+
font-size: 15px;
|
|
562
|
+
font-weight: 400;
|
|
563
|
+
line-height: 22.5px;
|
|
564
|
+
letter-spacing: 0px;
|
|
565
|
+
color: #121212;
|
|
566
|
+
background-color: #FFFFFF;
|
|
567
|
+
border: 1px solid #E5E5E5;
|
|
568
|
+
border-radius: 6px;
|
|
569
|
+
cursor: pointer;
|
|
570
|
+
transition:
|
|
571
|
+
border-color 0.1s ease-in-out,
|
|
572
|
+
box-shadow 0.1s ease-in-out,
|
|
573
|
+
background-color 0.1s ease-in-out;
|
|
574
|
+
appearance: none;
|
|
575
|
+
background-image:
|
|
576
|
+
linear-gradient(
|
|
577
|
+
45deg,
|
|
578
|
+
transparent 50%,
|
|
579
|
+
#666666 50%),
|
|
580
|
+
linear-gradient(
|
|
581
|
+
135deg,
|
|
582
|
+
#666666 50%,
|
|
583
|
+
transparent 50%);
|
|
584
|
+
background-position: calc(100% - 16px) calc(50% - 3px), calc(100% - 11px) calc(50% - 3px);
|
|
585
|
+
background-size: 5px 5px;
|
|
586
|
+
background-repeat: no-repeat;
|
|
587
|
+
}
|
|
588
|
+
.date_picker select:hover:not(:disabled) {
|
|
589
|
+
border-color: #121212;
|
|
590
|
+
background-color: #F4F4F4;
|
|
591
|
+
}
|
|
592
|
+
.date_picker select:focus-visible {
|
|
593
|
+
outline: none;
|
|
594
|
+
border-color: #121212;
|
|
595
|
+
box-shadow: 0 0 0 3px rgba(18, 18, 18, 0.15);
|
|
596
|
+
background-color: #FFFFFF;
|
|
597
|
+
}
|
|
598
|
+
.date_picker select:disabled {
|
|
599
|
+
cursor: not-allowed;
|
|
600
|
+
color: rgba(26, 26, 26, 0.38);
|
|
601
|
+
background-color: #F4F4F4;
|
|
602
|
+
border-color: rgba(0, 0, 0, 0.08);
|
|
603
|
+
}
|
|
604
|
+
.date_picker select option {
|
|
605
|
+
color: #121212;
|
|
606
|
+
}
|
|
607
|
+
@media (max-width: 480px) {
|
|
608
|
+
.date_picker select {
|
|
609
|
+
flex: 1;
|
|
610
|
+
min-width: 0;
|
|
611
|
+
}
|
|
612
|
+
}
|
|
613
|
+
.date_picker_label {
|
|
614
|
+
color: #121212;
|
|
615
|
+
margin-bottom: 4px;
|
|
616
|
+
font-weight: 500;
|
|
617
|
+
font-size: 14px;
|
|
618
|
+
line-height: 24px;
|
|
619
|
+
}
|
|
620
|
+
.date_picker_required {
|
|
621
|
+
margin-left: 4px;
|
|
622
|
+
color: #EF4444;
|
|
623
|
+
}
|
|
624
|
+
.date_picker_fields {
|
|
625
|
+
display: flex;
|
|
626
|
+
gap: 8px;
|
|
627
|
+
}
|
|
628
|
+
@media (max-width: 480px) {
|
|
629
|
+
.date_picker_fields {
|
|
630
|
+
gap: 4px;
|
|
631
|
+
}
|
|
632
|
+
}
|
|
633
|
+
.date_picker_full_width {
|
|
634
|
+
width: 100%;
|
|
635
|
+
}
|
|
636
|
+
.date_picker_full_width .date_picker_fields {
|
|
637
|
+
width: 100%;
|
|
638
|
+
}
|
|
639
|
+
.date_picker_full_width select {
|
|
640
|
+
flex: 1;
|
|
641
|
+
min-width: 0;
|
|
642
|
+
}
|
|
643
|
+
.date_picker_disabled .date_picker_label {
|
|
644
|
+
color: rgba(26, 26, 26, 0.38);
|
|
645
|
+
}
|
|
646
|
+
.date_picker_sr_only {
|
|
647
|
+
position: absolute;
|
|
648
|
+
width: 1px;
|
|
649
|
+
height: 1px;
|
|
650
|
+
padding: 0;
|
|
651
|
+
margin: -1px;
|
|
652
|
+
overflow: hidden;
|
|
653
|
+
clip: rect(0, 0, 0, 0);
|
|
654
|
+
white-space: nowrap;
|
|
655
|
+
border: 0;
|
|
656
|
+
}
|
|
657
|
+
|
|
636
658
|
/* src/ui/form/file/style.scss */
|
|
637
659
|
@keyframes skeleton_loading {
|
|
638
660
|
0% {
|
|
@@ -794,201 +816,6 @@
|
|
|
794
816
|
cursor: not-allowed;
|
|
795
817
|
}
|
|
796
818
|
|
|
797
|
-
/* src/ui/general/select/style.scss */
|
|
798
|
-
@keyframes skeleton_loading {
|
|
799
|
-
0% {
|
|
800
|
-
background-position: 100% 0;
|
|
801
|
-
}
|
|
802
|
-
100% {
|
|
803
|
-
background-position: 0 0;
|
|
804
|
-
}
|
|
805
|
-
}
|
|
806
|
-
.select {
|
|
807
|
-
position: relative;
|
|
808
|
-
display: inline-flex;
|
|
809
|
-
flex-direction: column;
|
|
810
|
-
width: 100%;
|
|
811
|
-
gap: 4px;
|
|
812
|
-
font-family: "Pretendard", sans-serif;
|
|
813
|
-
}
|
|
814
|
-
.select_label {
|
|
815
|
-
font-size: 12px;
|
|
816
|
-
font-weight: 400;
|
|
817
|
-
line-height: 16px;
|
|
818
|
-
letter-spacing: 0px;
|
|
819
|
-
font-weight: 500;
|
|
820
|
-
color: #121212;
|
|
821
|
-
}
|
|
822
|
-
.select_control {
|
|
823
|
-
width: 100%;
|
|
824
|
-
display: inline-flex;
|
|
825
|
-
align-items: center;
|
|
826
|
-
justify-content: space-between;
|
|
827
|
-
gap: 8px;
|
|
828
|
-
cursor: pointer;
|
|
829
|
-
color: #121212;
|
|
830
|
-
background: #FFFFFF;
|
|
831
|
-
border-radius: 8px;
|
|
832
|
-
transition:
|
|
833
|
-
border-color 0.2s ease-in-out,
|
|
834
|
-
box-shadow 0.2s ease-in-out,
|
|
835
|
-
background 0.2s ease-in-out;
|
|
836
|
-
font-size: 15px;
|
|
837
|
-
font-weight: 400;
|
|
838
|
-
line-height: 22.5px;
|
|
839
|
-
letter-spacing: 0px;
|
|
840
|
-
}
|
|
841
|
-
.select_control:disabled,
|
|
842
|
-
.select_control.is_disabled {
|
|
843
|
-
cursor: not-allowed;
|
|
844
|
-
opacity: 0.7;
|
|
845
|
-
background: #F4F4F4;
|
|
846
|
-
color: #888888;
|
|
847
|
-
}
|
|
848
|
-
.select_variant_outline {
|
|
849
|
-
border: 1px solid #E5E5E5;
|
|
850
|
-
}
|
|
851
|
-
.select_variant_outline:hover:not(.is_disabled) {
|
|
852
|
-
border-color: rgba(0, 0, 0, 0.08);
|
|
853
|
-
}
|
|
854
|
-
.select_variant_outline.is_open {
|
|
855
|
-
border-color: #121212;
|
|
856
|
-
box-shadow: 0 0 0 3px rgba(18, 18, 18, 0.15);
|
|
857
|
-
}
|
|
858
|
-
.select_variant_filled {
|
|
859
|
-
background: #F4F4F4;
|
|
860
|
-
border: 1px solid transparent;
|
|
861
|
-
}
|
|
862
|
-
.select_variant_filled:hover:not(.is_disabled) {
|
|
863
|
-
background: rgb(251.7, 251.7, 251.7);
|
|
864
|
-
}
|
|
865
|
-
.select_variant_filled.is_open {
|
|
866
|
-
background: #FFFFFF;
|
|
867
|
-
border-color: #121212;
|
|
868
|
-
box-shadow: 0 0 0 3px rgba(18, 18, 18, 0.15);
|
|
869
|
-
}
|
|
870
|
-
.select_variant_ghost {
|
|
871
|
-
background: transparent;
|
|
872
|
-
border: 1px solid transparent;
|
|
873
|
-
}
|
|
874
|
-
.select_variant_ghost:hover:not(.is_disabled) {
|
|
875
|
-
background: rgba(0, 0, 0, 0.05);
|
|
876
|
-
}
|
|
877
|
-
.select_variant_ghost.is_open {
|
|
878
|
-
background: #FFFFFF;
|
|
879
|
-
border-color: #121212;
|
|
880
|
-
box-shadow: 0 0 0 3px rgba(18, 18, 18, 0.15);
|
|
881
|
-
}
|
|
882
|
-
.select_size_sm {
|
|
883
|
-
padding: 8px 16px;
|
|
884
|
-
font-size: 12px;
|
|
885
|
-
font-weight: 400;
|
|
886
|
-
line-height: 16px;
|
|
887
|
-
letter-spacing: 0px;
|
|
888
|
-
}
|
|
889
|
-
.select_size_md {
|
|
890
|
-
padding: 12px 20px;
|
|
891
|
-
font-size: 15px;
|
|
892
|
-
font-weight: 400;
|
|
893
|
-
line-height: 22.5px;
|
|
894
|
-
letter-spacing: 0px;
|
|
895
|
-
}
|
|
896
|
-
.select_size_lg {
|
|
897
|
-
padding: 16px 24px;
|
|
898
|
-
font-size: 16px;
|
|
899
|
-
font-weight: 400;
|
|
900
|
-
line-height: 24px;
|
|
901
|
-
letter-spacing: 0px;
|
|
902
|
-
}
|
|
903
|
-
.select_value {
|
|
904
|
-
flex: 1 1 auto;
|
|
905
|
-
min-width: 0;
|
|
906
|
-
overflow: hidden;
|
|
907
|
-
text-overflow: ellipsis;
|
|
908
|
-
white-space: nowrap;
|
|
909
|
-
text-align: start;
|
|
910
|
-
font-size: 15px;
|
|
911
|
-
font-weight: 400;
|
|
912
|
-
line-height: 22.5px;
|
|
913
|
-
letter-spacing: 0px;
|
|
914
|
-
}
|
|
915
|
-
.select_placeholder {
|
|
916
|
-
flex: 1 1 auto;
|
|
917
|
-
min-width: 0;
|
|
918
|
-
overflow: hidden;
|
|
919
|
-
text-overflow: ellipsis;
|
|
920
|
-
white-space: nowrap;
|
|
921
|
-
text-align: start;
|
|
922
|
-
font-size: 15px;
|
|
923
|
-
font-weight: 400;
|
|
924
|
-
line-height: 22.5px;
|
|
925
|
-
letter-spacing: 0px;
|
|
926
|
-
color: #888888;
|
|
927
|
-
}
|
|
928
|
-
.select_icon {
|
|
929
|
-
display: inline-flex;
|
|
930
|
-
align-items: center;
|
|
931
|
-
justify-content: center;
|
|
932
|
-
color: #666666;
|
|
933
|
-
}
|
|
934
|
-
.select_list {
|
|
935
|
-
position: absolute;
|
|
936
|
-
z-index: 1000;
|
|
937
|
-
top: 100%;
|
|
938
|
-
left: 0;
|
|
939
|
-
width: 100%;
|
|
940
|
-
min-width: 100%;
|
|
941
|
-
box-sizing: border-box;
|
|
942
|
-
margin-top: 4px;
|
|
943
|
-
background: #FFFFFF;
|
|
944
|
-
border: 1px solid #E5E5E5;
|
|
945
|
-
border-radius: 8px;
|
|
946
|
-
box-shadow: 0 2px 2px -2px rgba(0, 0, 0, 0.2), 0 6px 6px 0px rgba(0, 0, 0, 0.12);
|
|
947
|
-
max-height: 18rem;
|
|
948
|
-
overflow-y: auto;
|
|
949
|
-
overflow-x: hidden;
|
|
950
|
-
padding: 4px 0;
|
|
951
|
-
}
|
|
952
|
-
.select_list_up {
|
|
953
|
-
top: auto;
|
|
954
|
-
bottom: 100%;
|
|
955
|
-
margin-top: 0;
|
|
956
|
-
margin-bottom: 4px;
|
|
957
|
-
}
|
|
958
|
-
.select_option {
|
|
959
|
-
width: 100%;
|
|
960
|
-
box-sizing: border-box;
|
|
961
|
-
display: grid;
|
|
962
|
-
grid-template-columns: 1fr auto;
|
|
963
|
-
align-items: center;
|
|
964
|
-
gap: 8px;
|
|
965
|
-
padding: 8px 16px;
|
|
966
|
-
cursor: pointer;
|
|
967
|
-
color: #121212;
|
|
968
|
-
background: transparent;
|
|
969
|
-
font-size: 15px;
|
|
970
|
-
font-weight: 400;
|
|
971
|
-
line-height: 22.5px;
|
|
972
|
-
letter-spacing: 0px;
|
|
973
|
-
}
|
|
974
|
-
.select_option > span:first-child {
|
|
975
|
-
min-width: 0;
|
|
976
|
-
overflow: hidden;
|
|
977
|
-
text-overflow: ellipsis;
|
|
978
|
-
white-space: nowrap;
|
|
979
|
-
}
|
|
980
|
-
.select_option:hover,
|
|
981
|
-
.select_option.is_active {
|
|
982
|
-
background: #F4F4F4;
|
|
983
|
-
}
|
|
984
|
-
.select_option.is_selected {
|
|
985
|
-
font-weight: 500;
|
|
986
|
-
}
|
|
987
|
-
.select_option.is_disabled {
|
|
988
|
-
cursor: not-allowed;
|
|
989
|
-
color: #888888;
|
|
990
|
-
}
|
|
991
|
-
|
|
992
819
|
/* src/ui/form/switch/style.scss */
|
|
993
820
|
@keyframes skeleton_loading {
|
|
994
821
|
0% {
|
|
@@ -1213,7 +1040,7 @@
|
|
|
1213
1040
|
box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15) !important;
|
|
1214
1041
|
}
|
|
1215
1042
|
|
|
1216
|
-
/* src/ui/
|
|
1043
|
+
/* src/ui/general/button/style.scss */
|
|
1217
1044
|
@keyframes skeleton_loading {
|
|
1218
1045
|
0% {
|
|
1219
1046
|
background-position: 100% 0;
|
|
@@ -1222,111 +1049,284 @@
|
|
|
1222
1049
|
background-position: 0 0;
|
|
1223
1050
|
}
|
|
1224
1051
|
}
|
|
1225
|
-
.
|
|
1226
|
-
display: flex;
|
|
1227
|
-
|
|
1228
|
-
|
|
1052
|
+
.button {
|
|
1053
|
+
display: inline-flex;
|
|
1054
|
+
align-items: center;
|
|
1055
|
+
justify-content: center;
|
|
1056
|
+
gap: 8px;
|
|
1057
|
+
border-radius: 8px;
|
|
1058
|
+
border: none;
|
|
1059
|
+
cursor: pointer;
|
|
1060
|
+
font-weight: 500;
|
|
1061
|
+
transition:
|
|
1062
|
+
background 0.2s ease-in-out,
|
|
1063
|
+
color 0.2s ease-in-out,
|
|
1064
|
+
box-shadow 0.2s ease-in-out,
|
|
1065
|
+
transform 0.2s ease-in-out;
|
|
1229
1066
|
}
|
|
1230
|
-
.
|
|
1231
|
-
|
|
1232
|
-
|
|
1233
|
-
|
|
1234
|
-
|
|
1067
|
+
.button:disabled {
|
|
1068
|
+
cursor: not-allowed;
|
|
1069
|
+
opacity: 0.6;
|
|
1070
|
+
}
|
|
1071
|
+
.button_size_sm {
|
|
1072
|
+
padding: 8px 16px;
|
|
1073
|
+
font-size: 12px;
|
|
1074
|
+
font-weight: 400;
|
|
1075
|
+
line-height: 16px;
|
|
1076
|
+
letter-spacing: 0px;
|
|
1077
|
+
}
|
|
1078
|
+
.button_size_md {
|
|
1079
|
+
padding: 12px 20px;
|
|
1235
1080
|
font-size: 15px;
|
|
1236
1081
|
font-weight: 400;
|
|
1237
1082
|
line-height: 22.5px;
|
|
1238
1083
|
letter-spacing: 0px;
|
|
1239
|
-
color: #121212;
|
|
1240
|
-
background-color: #FFFFFF;
|
|
1241
|
-
border: 1px solid #E5E5E5;
|
|
1242
|
-
border-radius: 6px;
|
|
1243
|
-
cursor: pointer;
|
|
1244
|
-
transition:
|
|
1245
|
-
border-color 0.1s ease-in-out,
|
|
1246
|
-
box-shadow 0.1s ease-in-out,
|
|
1247
|
-
background-color 0.1s ease-in-out;
|
|
1248
|
-
appearance: none;
|
|
1249
|
-
background-image:
|
|
1250
|
-
linear-gradient(
|
|
1251
|
-
45deg,
|
|
1252
|
-
transparent 50%,
|
|
1253
|
-
#666666 50%),
|
|
1254
|
-
linear-gradient(
|
|
1255
|
-
135deg,
|
|
1256
|
-
#666666 50%,
|
|
1257
|
-
transparent 50%);
|
|
1258
|
-
background-position: calc(100% - 16px) calc(50% - 3px), calc(100% - 11px) calc(50% - 3px);
|
|
1259
|
-
background-size: 5px 5px;
|
|
1260
|
-
background-repeat: no-repeat;
|
|
1261
1084
|
}
|
|
1262
|
-
.
|
|
1263
|
-
|
|
1264
|
-
|
|
1085
|
+
.button_size_lg {
|
|
1086
|
+
padding: 16px 24px;
|
|
1087
|
+
font-size: 16px;
|
|
1088
|
+
font-weight: 400;
|
|
1089
|
+
line-height: 24px;
|
|
1090
|
+
letter-spacing: 0px;
|
|
1265
1091
|
}
|
|
1266
|
-
.
|
|
1267
|
-
|
|
1268
|
-
|
|
1269
|
-
box-shadow: 0 0 0 3px rgba(18, 18, 18, 0.15);
|
|
1270
|
-
background-color: #FFFFFF;
|
|
1092
|
+
.button_variant_primary {
|
|
1093
|
+
background: #121212;
|
|
1094
|
+
color: #FFFFFF;
|
|
1271
1095
|
}
|
|
1272
|
-
.
|
|
1273
|
-
|
|
1274
|
-
color: rgba(26, 26, 26, 0.38);
|
|
1275
|
-
background-color: #F4F4F4;
|
|
1276
|
-
border-color: rgba(0, 0, 0, 0.08);
|
|
1096
|
+
.button_variant_primary:hover:not(:disabled) {
|
|
1097
|
+
background: #999999;
|
|
1277
1098
|
}
|
|
1278
|
-
.
|
|
1099
|
+
.button_variant_primary:active:not(:disabled) {
|
|
1100
|
+
transform: scale(0.98);
|
|
1101
|
+
}
|
|
1102
|
+
.button_variant_secondary {
|
|
1103
|
+
background: transparent;
|
|
1104
|
+
border: 1px solid #E5E5E5;
|
|
1279
1105
|
color: #121212;
|
|
1280
1106
|
}
|
|
1281
|
-
|
|
1282
|
-
|
|
1283
|
-
flex: 1;
|
|
1284
|
-
min-width: 0;
|
|
1285
|
-
}
|
|
1107
|
+
.button_variant_secondary:hover:not(:disabled) {
|
|
1108
|
+
background: #F4F4F4;
|
|
1286
1109
|
}
|
|
1287
|
-
.
|
|
1110
|
+
.button_variant_secondary:active:not(:disabled) {
|
|
1111
|
+
transform: scale(0.98);
|
|
1112
|
+
}
|
|
1113
|
+
.button_variant_ghost {
|
|
1114
|
+
background: transparent;
|
|
1288
1115
|
color: #121212;
|
|
1289
|
-
margin-bottom: 4px;
|
|
1290
|
-
font-weight: 500;
|
|
1291
|
-
font-size: 14px;
|
|
1292
|
-
line-height: 24px;
|
|
1293
1116
|
}
|
|
1294
|
-
.
|
|
1295
|
-
|
|
1296
|
-
color: #EF4444;
|
|
1117
|
+
.button_variant_ghost:hover:not(:disabled) {
|
|
1118
|
+
background: rgba(0, 0, 0, 0.05);
|
|
1297
1119
|
}
|
|
1298
|
-
.
|
|
1299
|
-
|
|
1300
|
-
gap: 8px;
|
|
1120
|
+
.button_variant_ghost:active:not(:disabled) {
|
|
1121
|
+
transform: scale(0.96);
|
|
1301
1122
|
}
|
|
1302
|
-
|
|
1303
|
-
|
|
1304
|
-
|
|
1123
|
+
.button_variant_danger {
|
|
1124
|
+
background: #EF4444;
|
|
1125
|
+
color: #FFFFFF;
|
|
1126
|
+
}
|
|
1127
|
+
.button_variant_danger:hover:not(:disabled) {
|
|
1128
|
+
background: rgb(235.7842364532, 30.4157635468, 30.4157635468);
|
|
1129
|
+
}
|
|
1130
|
+
.button_variant_danger:active:not(:disabled) {
|
|
1131
|
+
transform: scale(0.98);
|
|
1132
|
+
}
|
|
1133
|
+
.button_full_width {
|
|
1134
|
+
width: 100%;
|
|
1135
|
+
}
|
|
1136
|
+
|
|
1137
|
+
/* src/ui/general/select/style.scss */
|
|
1138
|
+
@keyframes skeleton_loading {
|
|
1139
|
+
0% {
|
|
1140
|
+
background-position: 100% 0;
|
|
1141
|
+
}
|
|
1142
|
+
100% {
|
|
1143
|
+
background-position: 0 0;
|
|
1305
1144
|
}
|
|
1306
1145
|
}
|
|
1307
|
-
.
|
|
1146
|
+
.select {
|
|
1147
|
+
position: relative;
|
|
1148
|
+
display: inline-flex;
|
|
1149
|
+
flex-direction: column;
|
|
1308
1150
|
width: 100%;
|
|
1151
|
+
gap: 4px;
|
|
1152
|
+
font-family: "Pretendard", sans-serif;
|
|
1309
1153
|
}
|
|
1310
|
-
.
|
|
1154
|
+
.select_label {
|
|
1155
|
+
font-size: 12px;
|
|
1156
|
+
font-weight: 400;
|
|
1157
|
+
line-height: 16px;
|
|
1158
|
+
letter-spacing: 0px;
|
|
1159
|
+
font-weight: 500;
|
|
1160
|
+
color: #121212;
|
|
1161
|
+
}
|
|
1162
|
+
.select_control {
|
|
1311
1163
|
width: 100%;
|
|
1164
|
+
display: inline-flex;
|
|
1165
|
+
align-items: center;
|
|
1166
|
+
justify-content: space-between;
|
|
1167
|
+
gap: 8px;
|
|
1168
|
+
cursor: pointer;
|
|
1169
|
+
color: #121212;
|
|
1170
|
+
background: #FFFFFF;
|
|
1171
|
+
border-radius: 8px;
|
|
1172
|
+
transition:
|
|
1173
|
+
border-color 0.2s ease-in-out,
|
|
1174
|
+
box-shadow 0.2s ease-in-out,
|
|
1175
|
+
background 0.2s ease-in-out;
|
|
1176
|
+
font-size: 15px;
|
|
1177
|
+
font-weight: 400;
|
|
1178
|
+
line-height: 22.5px;
|
|
1179
|
+
letter-spacing: 0px;
|
|
1312
1180
|
}
|
|
1313
|
-
.
|
|
1314
|
-
|
|
1181
|
+
.select_control:disabled,
|
|
1182
|
+
.select_control.is_disabled {
|
|
1183
|
+
cursor: not-allowed;
|
|
1184
|
+
opacity: 0.7;
|
|
1185
|
+
background: #F4F4F4;
|
|
1186
|
+
color: #888888;
|
|
1187
|
+
}
|
|
1188
|
+
.select_variant_outline {
|
|
1189
|
+
border: 1px solid #E5E5E5;
|
|
1190
|
+
}
|
|
1191
|
+
.select_variant_outline:hover:not(.is_disabled) {
|
|
1192
|
+
border-color: rgba(0, 0, 0, 0.08);
|
|
1193
|
+
}
|
|
1194
|
+
.select_variant_outline.is_open {
|
|
1195
|
+
border-color: #121212;
|
|
1196
|
+
box-shadow: 0 0 0 3px rgba(18, 18, 18, 0.15);
|
|
1197
|
+
}
|
|
1198
|
+
.select_variant_filled {
|
|
1199
|
+
background: #F4F4F4;
|
|
1200
|
+
border: 1px solid transparent;
|
|
1201
|
+
}
|
|
1202
|
+
.select_variant_filled:hover:not(.is_disabled) {
|
|
1203
|
+
background: rgb(251.7, 251.7, 251.7);
|
|
1204
|
+
}
|
|
1205
|
+
.select_variant_filled.is_open {
|
|
1206
|
+
background: #FFFFFF;
|
|
1207
|
+
border-color: #121212;
|
|
1208
|
+
box-shadow: 0 0 0 3px rgba(18, 18, 18, 0.15);
|
|
1209
|
+
}
|
|
1210
|
+
.select_variant_ghost {
|
|
1211
|
+
background: transparent;
|
|
1212
|
+
border: 1px solid transparent;
|
|
1213
|
+
}
|
|
1214
|
+
.select_variant_ghost:hover:not(.is_disabled) {
|
|
1215
|
+
background: rgba(0, 0, 0, 0.05);
|
|
1216
|
+
}
|
|
1217
|
+
.select_variant_ghost.is_open {
|
|
1218
|
+
background: #FFFFFF;
|
|
1219
|
+
border-color: #121212;
|
|
1220
|
+
box-shadow: 0 0 0 3px rgba(18, 18, 18, 0.15);
|
|
1221
|
+
}
|
|
1222
|
+
.select_size_sm {
|
|
1223
|
+
padding: 8px 16px;
|
|
1224
|
+
font-size: 12px;
|
|
1225
|
+
font-weight: 400;
|
|
1226
|
+
line-height: 16px;
|
|
1227
|
+
letter-spacing: 0px;
|
|
1228
|
+
}
|
|
1229
|
+
.select_size_md {
|
|
1230
|
+
padding: 12px 20px;
|
|
1231
|
+
font-size: 15px;
|
|
1232
|
+
font-weight: 400;
|
|
1233
|
+
line-height: 22.5px;
|
|
1234
|
+
letter-spacing: 0px;
|
|
1235
|
+
}
|
|
1236
|
+
.select_size_lg {
|
|
1237
|
+
padding: 16px 24px;
|
|
1238
|
+
font-size: 16px;
|
|
1239
|
+
font-weight: 400;
|
|
1240
|
+
line-height: 24px;
|
|
1241
|
+
letter-spacing: 0px;
|
|
1242
|
+
}
|
|
1243
|
+
.select_value {
|
|
1244
|
+
flex: 1 1 auto;
|
|
1315
1245
|
min-width: 0;
|
|
1246
|
+
overflow: hidden;
|
|
1247
|
+
text-overflow: ellipsis;
|
|
1248
|
+
white-space: nowrap;
|
|
1249
|
+
text-align: start;
|
|
1250
|
+
font-size: 15px;
|
|
1251
|
+
font-weight: 400;
|
|
1252
|
+
line-height: 22.5px;
|
|
1253
|
+
letter-spacing: 0px;
|
|
1316
1254
|
}
|
|
1317
|
-
.
|
|
1318
|
-
|
|
1255
|
+
.select_placeholder {
|
|
1256
|
+
flex: 1 1 auto;
|
|
1257
|
+
min-width: 0;
|
|
1258
|
+
overflow: hidden;
|
|
1259
|
+
text-overflow: ellipsis;
|
|
1260
|
+
white-space: nowrap;
|
|
1261
|
+
text-align: start;
|
|
1262
|
+
font-size: 15px;
|
|
1263
|
+
font-weight: 400;
|
|
1264
|
+
line-height: 22.5px;
|
|
1265
|
+
letter-spacing: 0px;
|
|
1266
|
+
color: #888888;
|
|
1319
1267
|
}
|
|
1320
|
-
.
|
|
1268
|
+
.select_icon {
|
|
1269
|
+
display: inline-flex;
|
|
1270
|
+
align-items: center;
|
|
1271
|
+
justify-content: center;
|
|
1272
|
+
color: #666666;
|
|
1273
|
+
}
|
|
1274
|
+
.select_list {
|
|
1321
1275
|
position: absolute;
|
|
1322
|
-
|
|
1323
|
-
|
|
1324
|
-
|
|
1325
|
-
|
|
1276
|
+
z-index: 1000;
|
|
1277
|
+
top: 100%;
|
|
1278
|
+
left: 0;
|
|
1279
|
+
width: 100%;
|
|
1280
|
+
min-width: 100%;
|
|
1281
|
+
box-sizing: border-box;
|
|
1282
|
+
margin-top: 4px;
|
|
1283
|
+
background: #FFFFFF;
|
|
1284
|
+
border: 1px solid #E5E5E5;
|
|
1285
|
+
border-radius: 8px;
|
|
1286
|
+
box-shadow: 0 2px 2px -2px rgba(0, 0, 0, 0.2), 0 6px 6px 0px rgba(0, 0, 0, 0.12);
|
|
1287
|
+
max-height: 18rem;
|
|
1288
|
+
overflow-y: auto;
|
|
1289
|
+
overflow-x: hidden;
|
|
1290
|
+
padding: 4px 0;
|
|
1291
|
+
}
|
|
1292
|
+
.select_list_up {
|
|
1293
|
+
top: auto;
|
|
1294
|
+
bottom: 100%;
|
|
1295
|
+
margin-top: 0;
|
|
1296
|
+
margin-bottom: 4px;
|
|
1297
|
+
}
|
|
1298
|
+
.select_option {
|
|
1299
|
+
width: 100%;
|
|
1300
|
+
box-sizing: border-box;
|
|
1301
|
+
display: grid;
|
|
1302
|
+
grid-template-columns: 1fr auto;
|
|
1303
|
+
align-items: center;
|
|
1304
|
+
gap: 8px;
|
|
1305
|
+
padding: 8px 16px;
|
|
1306
|
+
cursor: pointer;
|
|
1307
|
+
color: #121212;
|
|
1308
|
+
background: transparent;
|
|
1309
|
+
font-size: 15px;
|
|
1310
|
+
font-weight: 400;
|
|
1311
|
+
line-height: 22.5px;
|
|
1312
|
+
letter-spacing: 0px;
|
|
1313
|
+
}
|
|
1314
|
+
.select_option > span:first-child {
|
|
1315
|
+
min-width: 0;
|
|
1326
1316
|
overflow: hidden;
|
|
1327
|
-
|
|
1317
|
+
text-overflow: ellipsis;
|
|
1328
1318
|
white-space: nowrap;
|
|
1329
|
-
|
|
1319
|
+
}
|
|
1320
|
+
.select_option:hover,
|
|
1321
|
+
.select_option.is_active {
|
|
1322
|
+
background: #F4F4F4;
|
|
1323
|
+
}
|
|
1324
|
+
.select_option.is_selected {
|
|
1325
|
+
font-weight: 500;
|
|
1326
|
+
}
|
|
1327
|
+
.select_option.is_disabled {
|
|
1328
|
+
cursor: not-allowed;
|
|
1329
|
+
color: #888888;
|
|
1330
1330
|
}
|
|
1331
1331
|
|
|
1332
1332
|
/* src/ui/navigation/pagination/style.scss */
|
|
@@ -1423,7 +1423,7 @@
|
|
|
1423
1423
|
display: grid;
|
|
1424
1424
|
place-items: center;
|
|
1425
1425
|
background: rgba(0, 0, 0, 0.5);
|
|
1426
|
-
z-index:
|
|
1426
|
+
z-index: 100;
|
|
1427
1427
|
}
|
|
1428
1428
|
.modal_panel {
|
|
1429
1429
|
background: #FFFFFF;
|