@bagelink/vue 0.0.1145 → 0.0.1151

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 (53) hide show
  1. package/dist/components/DataPreview.vue.d.ts +12 -35
  2. package/dist/components/DataPreview.vue.d.ts.map +1 -1
  3. package/dist/components/DataTable/DataTable.vue.d.ts +1 -1
  4. package/dist/components/DataTable/DataTable.vue.d.ts.map +1 -1
  5. package/dist/components/DataTable/useTableData.d.ts +10 -2
  6. package/dist/components/DataTable/useTableData.d.ts.map +1 -1
  7. package/dist/components/Draggable/Draggable.vue.d.ts +45 -0
  8. package/dist/components/Draggable/Draggable.vue.d.ts.map +1 -0
  9. package/dist/components/Draggable/index.d.ts +5 -0
  10. package/dist/components/Draggable/index.d.ts.map +1 -0
  11. package/dist/components/Draggable/useDraggable.d.ts +31 -0
  12. package/dist/components/Draggable/useDraggable.d.ts.map +1 -0
  13. package/dist/components/Draggable/vDraggable.d.ts +4 -0
  14. package/dist/components/Draggable/vDraggable.d.ts.map +1 -0
  15. package/dist/components/ListView.vue.d.ts.map +1 -1
  16. package/dist/components/form/BagelForm.vue.d.ts.map +1 -1
  17. package/dist/components/form/FieldArray.vue.d.ts.map +1 -1
  18. package/dist/components/form/index.d.ts +0 -1
  19. package/dist/components/form/index.d.ts.map +1 -1
  20. package/dist/components/form/inputs/FileUpload.vue.d.ts +3 -0
  21. package/dist/components/form/inputs/FileUpload.vue.d.ts.map +1 -1
  22. package/dist/components/form/inputs/NumberInput.vue.d.ts.map +1 -1
  23. package/dist/components/form/inputs/Upload/UploadInput.vue.d.ts +3 -0
  24. package/dist/components/form/inputs/Upload/UploadInput.vue.d.ts.map +1 -1
  25. package/dist/components/index.d.ts +2 -0
  26. package/dist/components/index.d.ts.map +1 -1
  27. package/dist/composables/useSchemaField.d.ts +15 -0
  28. package/dist/composables/useSchemaField.d.ts.map +1 -0
  29. package/dist/index.cjs +1256 -802
  30. package/dist/index.mjs +1258 -804
  31. package/dist/style.css +272 -285
  32. package/package.json +1 -1
  33. package/src/components/DataPreview.vue +45 -116
  34. package/src/components/DataTable/DataTable.vue +18 -12
  35. package/src/components/DataTable/useTableData.ts +50 -16
  36. package/src/components/Draggable/Draggable.vue +64 -0
  37. package/src/components/Draggable/index.ts +4 -0
  38. package/src/components/Draggable/useDraggable.ts +632 -0
  39. package/src/components/Draggable/vDraggable.ts +17 -0
  40. package/src/components/ListView.vue +6 -2
  41. package/src/components/Pill.vue +1 -1
  42. package/src/components/form/BagelForm.vue +16 -101
  43. package/src/components/form/FieldArray.vue +45 -17
  44. package/src/components/form/index.ts +0 -1
  45. package/src/components/form/inputs/FileUpload.vue +10 -6
  46. package/src/components/form/inputs/NumberInput.vue +3 -1
  47. package/src/components/form/inputs/RichText/index.vue +1 -1
  48. package/src/components/form/inputs/Upload/UploadInput.vue +12 -7
  49. package/src/components/index.ts +5 -1
  50. package/src/composables/useSchemaField.ts +193 -0
  51. package/src/styles/text.css +15 -11
  52. package/src/components/form/BglField.vue +0 -132
  53. package/src/components/form/BglForm.vue +0 -157
package/dist/style.css CHANGED
@@ -453,64 +453,41 @@ display: block;
453
453
  }
454
454
  }
455
455
 
456
- data[data-v-6c27f163] {
457
- font-size: var(--input-font-size);
458
- border: 1.1px solid var(--border-color);
459
- padding: 20px;
460
- border-radius: var(--input-border-radius);
461
- }
462
- .data-row[data-v-6c27f163] {
456
+ .data-preview[data-v-ad78731b] {
463
457
  display: flex;
464
- justify-content: space-between;
465
- border-bottom: 1px solid var(--border-color);
466
- align-items: center;
467
- min-height: 50px;
468
- }
469
- .data-row .bagel-input.shrink[data-v-6c27f163],
470
- .data-row .bagel-input.shrink input[data-v-6c27f163] {
471
- min-width: 140px !important;
472
- /* margin-top: -0.45rem !important; */
473
- }
474
- .data-link[data-v-6c27f163] {
475
- display: block;
476
- font-size: var(--input-font-size);
477
- margin-bottom: 2px;
478
- line-height: 1.3;
479
- color: var(--input-color);
480
- }
481
- @media screen and (max-width: 910px) {
482
- .data-row[data-v-6c27f163] {
483
- display: block;
484
- /* min-height: 80px; */
485
- padding-bottom: 1rem;
458
+ flex-direction: column;
459
+ gap: 0.5rem;
486
460
  }
461
+ .preview-field[data-v-ad78731b] {
462
+ display: flex;
463
+ flex-direction: column;
464
+ gap: 0.5rem;
487
465
  }
488
-
489
- .data-row .bagel-input,
490
- .data-row .bagel-input input {
491
- min-width: 140px !important;
492
- height: calc(var(--input-height) - 0.25rem) !important;
466
+ .field-label[data-v-ad78731b] {
467
+ font-size: 0.8rem;
468
+ color: var(--bgl-black-tint);
469
+ font-weight: 500;
493
470
  }
494
- .data-row .bagel-input.bgl-toggle input {
495
- height:20px !important;
471
+ .field-value[data-v-ad78731b] {
472
+ font-size: 0.95rem;
496
473
  }
497
474
 
498
- .table-list-wrap[data-v-cf461a0e] {
475
+ .table-list-wrap[data-v-18572328] {
499
476
  min-height: 150px;
500
477
  }
501
- .selected[data-v-cf461a0e] {
478
+ .selected[data-v-18572328] {
502
479
  background: var(--bgl-primary-tint);
503
480
  }
504
- tbody tr.selected[data-v-cf461a0e]:hover {
481
+ tbody tr.selected[data-v-18572328]:hover {
505
482
  background: var(--bgl-primary-light);
506
483
  }
507
- .loading-table[data-v-cf461a0e] {
484
+ .loading-table[data-v-18572328] {
508
485
  position: relative;
509
486
  }
510
- .inset[data-v-cf461a0e] {
487
+ .inset[data-v-18572328] {
511
488
  inset: 0;
512
489
  }
513
- .loading-table-animation[data-v-cf461a0e] {
490
+ .loading-table-animation[data-v-18572328] {
514
491
  --size: 60px;
515
492
  top: 30vh;
516
493
  inset-inline-start: calc(50% - var(--size));
@@ -518,9 +495,9 @@ tbody tr.selected[data-v-cf461a0e]:hover {
518
495
  border-top: 4px solid var(--bgl-primary);
519
496
  width: var(--size);
520
497
  height: var(--size);
521
- animation: loading-table-cf461a0e 1s linear infinite;
498
+ animation: loading-table-18572328 1s linear infinite;
522
499
  }
523
- @keyframes loading-table-cf461a0e {
500
+ @keyframes loading-table-18572328 {
524
501
  0% {
525
502
  transform: translate(-50%, -50%) rotate(0deg);
526
503
  }
@@ -528,51 +505,51 @@ tbody tr.selected[data-v-cf461a0e]:hover {
528
505
  transform: translate(-50%, -50%) rotate(360deg);
529
506
  }
530
507
  }
531
- .list-arrows[data-v-cf461a0e] {
508
+ .list-arrows[data-v-18572328] {
532
509
  opacity: 0;
533
510
  }
534
- .list-arrows .bgl_icon-font[data-v-cf461a0e] {
511
+ .list-arrows .bgl_icon-font[data-v-18572328] {
535
512
  transition: all ease-in-out 0.2s;
536
513
  }
537
- .list-arrows.sorted[data-v-cf461a0e] {
514
+ .list-arrows.sorted[data-v-18572328] {
538
515
  opacity: 1;
539
516
  }
540
- .col img[data-v-cf461a0e] {
517
+ .col img[data-v-18572328] {
541
518
  height: 35px;
542
519
  margin-top: -14px;
543
520
  margin-bottom: -14px;
544
521
  border-radius: 5px;
545
522
  }
546
- .list-arrows.sorted .desc[data-v-cf461a0e] {
523
+ .list-arrows.sorted .desc[data-v-18572328] {
547
524
  transform: rotate(180deg);
548
525
  display: inline-block;
549
526
  }
550
- table[data-v-cf461a0e] {
527
+ table[data-v-18572328] {
551
528
  border-spacing: 0 15px;
552
529
  border-collapse: collapse;
553
530
  width: 100%;
554
531
  }
555
- th[data-v-cf461a0e] {
532
+ th[data-v-18572328] {
556
533
  font-size: 0.8rem;
557
534
  color: var(--bgl-black-tint);
558
535
  position: sticky;
559
536
  top: 0;
560
537
  z-index: 2;
561
538
  background: var(--bgl-box-bg);
562
- height: var(--15d141b2);
539
+ height: var(--0984904d);
563
540
  vertical-align: bottom;
564
541
  font-weight: 400;
565
542
  text-align: start;
566
543
  }
567
- .embedded-field[data-v-cf461a0e] {
544
+ .embedded-field[data-v-18572328] {
568
545
  margin-bottom: -0.2rem;
569
546
  margin-top: -0.2rem;
570
547
  }
571
- .row[data-v-cf461a0e] {
548
+ .row[data-v-18572328] {
572
549
  border-bottom: 1px solid var(--border-color);
573
550
  cursor: pointer;
574
551
  }
575
- .row.first-row[data-v-cf461a0e] {
552
+ .row.first-row[data-v-18572328] {
576
553
  font-size: 0.8rem;
577
554
  color: var(--bgl-black-tint);
578
555
  position: sticky;
@@ -581,7 +558,7 @@ th[data-v-cf461a0e] {
581
558
  background: var(--bgl-box-bg);
582
559
  vertical-align: bottom;
583
560
  }
584
- .row.first-row[data-v-cf461a0e]::after {
561
+ .row.first-row[data-v-18572328]::after {
585
562
  content: '';
586
563
  border-bottom: 1px solid var(--border-color);
587
564
  position: absolute;
@@ -589,11 +566,11 @@ th[data-v-cf461a0e] {
589
566
  right: 0;
590
567
  bottom: -1px;
591
568
  }
592
- .first-row .col[data-v-cf461a0e] {
569
+ .first-row .col[data-v-18572328] {
593
570
  cursor: pointer;
594
571
  background: var(--bgl-box-bg);
595
572
  }
596
- .col[data-v-cf461a0e] {
573
+ .col[data-v-18572328] {
597
574
  white-space: nowrap;
598
575
  padding: 0.75rem 1rem;
599
576
  transition: var(--bgl-transition);
@@ -603,19 +580,19 @@ th[data-v-cf461a0e] {
603
580
  overflow: hidden;
604
581
  max-width: 30vw;
605
582
  }
606
- .col[data-v-cf461a0e]:has(.bagel-input) {
583
+ .col[data-v-18572328]:has(.bagel-input) {
607
584
  padding: 0rem 0.25rem;
608
585
  }
609
- .col > div[data-v-cf461a0e] {
586
+ .col > div[data-v-18572328] {
610
587
  display: flex;
611
588
  gap: 0.5rem;
612
589
  }
613
- .max-col-width[data-v-cf461a0e] {
590
+ .max-col-width[data-v-18572328] {
614
591
  max-width: 30vw;
615
592
  overflow: hidden;
616
593
  text-overflow: ellipsis;
617
594
  }
618
- .col.check .bgl_icon-font[data-v-cf461a0e] {
595
+ .col.check .bgl_icon-font[data-v-18572328] {
619
596
  border-radius: 100%;
620
597
  background: var(--bgl-blue-20);
621
598
  color: var(--bgl-primary);
@@ -626,35 +603,35 @@ th[data-v-cf461a0e] {
626
603
  justify-content: center;
627
604
  margin-top: -2px;
628
605
  }
629
- .rows[data-v-cf461a0e] {
606
+ .rows[data-v-18572328] {
630
607
  font-size: 0.88em;
631
608
  }
632
- .table-list[data-v-cf461a0e] {
609
+ .table-list[data-v-18572328] {
633
610
  height: 100%;
634
611
  position: relative;
635
612
  padding-left: 0 !important;
636
613
  padding-right: 0 !important;
637
614
  overflow: auto;
638
615
  }
639
- .BagelTable .table-list[data-v-cf461a0e] {
616
+ .BagelTable .table-list[data-v-18572328] {
640
617
  overflow: unset;
641
618
  }
642
- .row-item[data-v-cf461a0e] {
643
- height: var(--15d141b2);
619
+ .row-item[data-v-18572328] {
620
+ height: var(--0984904d);
644
621
  transition: all 200ms ease;
645
622
  }
646
- .row-item[data-v-cf461a0e]:hover {
623
+ .row-item[data-v-18572328]:hover {
647
624
  background: var(--bgl-gray-light);
648
625
  }
649
- .row-item input[type='checkbox'][data-v-cf461a0e] {
626
+ .row-item input[type='checkbox'][data-v-18572328] {
650
627
  margin-top: 0.45rem !important;
651
628
  accent-color: var(--bgl-accent-color);
652
629
  }
653
- .infinite-wrapper[data-v-cf461a0e] {
630
+ .infinite-wrapper[data-v-18572328] {
654
631
  overflow-y: auto;
655
632
  width: 100%;
656
633
  }
657
- input[type='checkbox'][data-v-cf461a0e] {
634
+ input[type='checkbox'][data-v-18572328] {
658
635
  margin-top: 0.3rem !important;
659
636
  accent-color: var(--bgl-accent-color);
660
637
  transform: scale(1.2);
@@ -666,7 +643,7 @@ input[type='checkbox'][data-v-cf461a0e] {
666
643
  height: 0.85rem;
667
644
  width: 0.85rem;
668
645
  }
669
- input[type='checkbox'][data-v-cf461a0e]::before {
646
+ input[type='checkbox'][data-v-18572328]::before {
670
647
  content: '';
671
648
  height: 0.85rem;
672
649
  width: 0.85rem;
@@ -679,18 +656,18 @@ input[type='checkbox'][data-v-cf461a0e]::before {
679
656
  transform: scale(1);
680
657
  position: absolute;
681
658
  }
682
- input[type='checkbox'][data-v-cf461a0e]:hover::before {
659
+ input[type='checkbox'][data-v-18572328]:hover::before {
683
660
  opacity: 0.2;
684
661
  transform: scale(2);
685
662
  }
686
- [lang='he'] [dir='ltr'][data-v-cf461a0e] {
663
+ [lang='he'] [dir='ltr'][data-v-18572328] {
687
664
  text-align: right;
688
665
  }
689
- th input[type='checkbox'][data-v-cf461a0e] {
666
+ th input[type='checkbox'][data-v-18572328] {
690
667
  transform: translateY(0.2rem) scale(1.2);
691
668
  accent-color: var(--bgl-accent-color);
692
669
  }
693
- th[data-v-cf461a0e]::after {
670
+ th[data-v-18572328]::after {
694
671
  content: '';
695
672
  border-bottom: 1px solid var(--border-color);
696
673
  position: absolute;
@@ -698,24 +675,24 @@ th[data-v-cf461a0e]::after {
698
675
  right: 0;
699
676
  bottom: -1px;
700
677
  }
701
- tr[data-v-cf461a0e] {
678
+ tr[data-v-18572328] {
702
679
  border-bottom: 1px solid var(--border-color);
703
680
  cursor: pointer;
704
681
  align-items: center;
705
682
  }
706
- td[data-v-cf461a0e],
707
- th[data-v-cf461a0e] {
683
+ td[data-v-18572328],
684
+ th[data-v-18572328] {
708
685
  white-space: nowrap;
709
686
  padding: 0.75rem 0.65rem;
710
687
  transition: var(--bgl-transition);
711
688
  line-height: 1;
712
689
  }
713
- tbody tr[data-v-cf461a0e] {
690
+ tbody tr[data-v-18572328] {
714
691
  font-size: 0.88em;
715
- height: var(--15d141b2);
692
+ height: var(--0984904d);
716
693
  transition: all 200ms ease;
717
694
  }
718
- tbody tr[data-v-cf461a0e]:hover {
695
+ tbody tr[data-v-18572328]:hover {
719
696
  background: var(--bgl-gray-light);
720
697
  }
721
698
 
@@ -744,101 +721,16 @@ fieldset[data-v-f7e758e5] {
744
721
  .fi[data-v-f99f1900]:before{ content:" "
745
722
  }
746
723
 
747
- .bgl_tabs_wrap[data-v-e680c2a4] {
748
- background: var(--input-bg);
749
- border-radius: calc(var(--input-border-radius) * 1.4);
750
- padding-inline: calc(var(--btn-padding) / 8);
751
- padding-block: calc(var(--btn-padding) / 8);
752
- box-shadow: inset 0 0 10px #00000012;
753
- gap: 0.25rem;
754
- }
755
- .bgl_tab[data-v-e680c2a4] {
756
- border: none;
757
- background: transparent;
758
- cursor: pointer;
759
- font-size: var(--input-font-size);
760
- font-family: inherit;
761
- padding-inline: calc(var(--btn-padding) / 2);
762
- padding-block: calc(var(--btn-padding) / 8);
763
- border-radius: var(--input-border-radius);
764
- transition: var(--bgl-transition);
765
- color: inherit
766
- }
767
- .bgl_tab[data-v-e680c2a4]:hover {
768
- background: rgba(255, 255, 255, .4);
769
- }
770
- .bgl_tabs_wrap[data-v-e680c2a4]::before {
771
- content: '';
772
- position: absolute;
773
- top: calc(var(--btn-padding) / 8);
774
- bottom: calc(var(--btn-padding) / 8);
775
- left: var(--indicator-left, 0);
776
- width: var(--indicator-width, 0);
777
- background: var(--bgl-popup-bg);
778
- border-radius: var(--input-border-radius);
779
- transition: var(--bgl-transition);
780
- z-index: 0;
781
- }
782
- .bgl_flat-tabs.bgl_tabs_wrap[data-v-e680c2a4] {
783
- background: transparent;
784
- box-shadow: none;
785
- }
786
- .bgl_flat-tabs.bgl_tabs_wrap[data-v-e680c2a4]::before{
787
- background: transparent;
788
- border-bottom: 1px solid var(--bgl-primary);
789
- border-radius: 0;
790
- top: calc(var(--btn-padding) * 1.25);
791
- bottom: unset;
792
- }
793
- .bgl_flat-tabs .active.bgl_tab[data-v-e680c2a4]{
794
- color: var(--bgl-primary)
795
- }
796
- .bgl_flat-tabs .bgl_tab[data-v-e680c2a4]:hover {
797
- background: rgba(255, 255, 255, .1);
798
- }
799
- .bgl_vertical-tabs[data-v-e680c2a4]{
800
- grid-auto-flow: row;
801
- align-items: start;
802
- justify-items: start;
803
- gap: 1rem
804
- }
805
- .bgl_vertical-tabs .bgl_tab[data-v-e680c2a4]{
806
- padding-inline: 0;
807
- border-radius: 0;
808
- border-bottom: 1px solid transparent;
809
- }
810
- .bgl_vertical-tabs .bgl_tab[data-v-e680c2a4]:hover{
811
- background: transparent;
812
- border-bottom: 1px solid var(--bgl-primary);
813
- }
814
- .bgl_vertical-tabs .bgl_tab.active[data-v-e680c2a4]{
815
- border-bottom: 1px solid var(--bgl-primary);
816
- }
817
- .bgl_vertical-tabs.bgl_tabs_wrap[data-v-e680c2a4]::before{
818
- border: none;
819
- }
820
- @media screen and (max-width: 910px) {
821
- .bgl_vertical-tabs[data-v-e680c2a4]{
822
- grid-auto-flow: column;
823
- overflow: auto;
824
- max-width: 100vw;
825
- padding-inline-end: 1rem;
826
- width: 100%;
827
- gap: 1rem;
828
- position: relative;
829
- }
830
- .bgl_vertical-tabs[data-v-e680c2a4]::-webkit-scrollbar {
831
- display: none;
832
- }
833
- .bgl_vertical-tabs .bgl_tab[data-v-e680c2a4]{
834
- white-space: nowrap;
835
- }
836
- }
837
-
838
724
  .itemBox{
839
- /* border-top: 2px solid var(--bgl-gray); */
840
- /* border-bottom: 2px solid var(--bgl-gray); */
841
725
  background: var(--input-bg);
726
+ grid-template-columns: 1fr auto;
727
+ display: grid;
728
+ --label-font-size: 0.6rem;
729
+ --input-height: 30px;
730
+ --input-font-size: 14px;
731
+ }
732
+ .pt-065{
733
+ padding-top: 0.65rem;
842
734
  }
843
735
  .itemBox .bagel-input input,
844
736
  .itemBox .bagel-input textarea,
@@ -846,6 +738,9 @@ fieldset[data-v-f7e758e5] {
846
738
  .itemBox .custom-select .input {
847
739
  background: var(--bgl-white) !important;
848
740
  }
741
+ .itemBox .bagel-input{
742
+ margin-bottom: 0.15rem !important;
743
+ }
849
744
 
850
745
  .primary-checkbox input[data-v-73f1d9ad] {
851
746
  appearance: none;
@@ -1137,7 +1032,7 @@ pre code.hljs{
1137
1032
  }
1138
1033
  }
1139
1034
 
1140
- .fileUploadWrap[data-v-9d12086d] {
1035
+ .fileUploadWrap[data-v-9939a5fb] {
1141
1036
  outline: 1px solid var(--border-color);
1142
1037
  border-radius: var(--input-border-radius);
1143
1038
  text-align: center;
@@ -1149,7 +1044,7 @@ pre code.hljs{
1149
1044
  background: var(--input-bg);
1150
1045
  height: 215px;
1151
1046
  }
1152
- .bagel-input .fileUploadWrap.fileDropZone[data-v-9d12086d] {
1047
+ .bagel-input .fileUploadWrap.fileDropZone[data-v-9939a5fb] {
1153
1048
  background: var(--input-bg);
1154
1049
  display: flex;
1155
1050
  align-items: center;
@@ -1157,14 +1052,14 @@ pre code.hljs{
1157
1052
  color: var(--bgl-gray);
1158
1053
  flex-direction: column;
1159
1054
  }
1160
- .fileUploadWrap.dragover[data-v-9d12086d],
1161
- .fileUploadWrap[data-v-9d12086d]:hover {
1055
+ .fileUploadWrap.dragover[data-v-9939a5fb],
1056
+ .fileUploadWrap[data-v-9939a5fb]:hover {
1162
1057
  box-shadow: inset 0 0 10px #00000012;
1163
1058
  }
1164
- .fileUploadWrap[style*='height: auto;'][data-v-9d12086d] {
1059
+ .fileUploadWrap[style*='height: auto;'][data-v-9939a5fb] {
1165
1060
  min-height: 215px;
1166
1061
  }
1167
- .multi-image-item-preview[data-v-9d12086d] {
1062
+ .multi-image-item-preview[data-v-9939a5fb] {
1168
1063
  border: 1px solid var(--border-color) !important;
1169
1064
  border-radius: var(--input-border-radius);
1170
1065
  margin: 0.5rem !important;
@@ -1178,12 +1073,12 @@ pre code.hljs{
1178
1073
  gap: 1rem;
1179
1074
  align-items: center;
1180
1075
  }
1181
- .multi-image-item-preview p[data-v-9d12086d] {
1076
+ .multi-image-item-preview p[data-v-9939a5fb] {
1182
1077
  overflow: hidden;
1183
1078
  text-overflow: ellipsis;
1184
1079
  white-space: nowrap;
1185
1080
  }
1186
- .multi-preview[data-v-9d12086d] {
1081
+ .multi-preview[data-v-9939a5fb] {
1187
1082
  width: 40px;
1188
1083
  height: 40px;
1189
1084
  border-radius: var(--input-border-radius);
@@ -1194,17 +1089,17 @@ pre code.hljs{
1194
1089
  align-items: center;
1195
1090
  display: flex;
1196
1091
  }
1197
- .bgl-single-preview[data-v-9d12086d] {
1092
+ .bgl-single-preview[data-v-9939a5fb] {
1198
1093
  height: 100%;
1199
1094
  position: relative;
1200
1095
  }
1201
- .bgl-single-preview + .fileUploadPlaceHolder[data-v-9d12086d] {
1096
+ .bgl-single-preview + .fileUploadPlaceHolder[data-v-9939a5fb] {
1202
1097
  position: absolute;
1203
1098
  inset: 0;
1204
1099
  margin: auto;
1205
1100
  top: calc(50% - 2rem);
1206
1101
  }
1207
- .single-image-item-preview[data-v-9d12086d] {
1102
+ .single-image-item-preview[data-v-9939a5fb] {
1208
1103
  height: 100%;
1209
1104
  min-height: 100%;
1210
1105
  position: relative;
@@ -1212,13 +1107,13 @@ pre code.hljs{
1212
1107
  align-items: center;
1213
1108
  justify-content: center;
1214
1109
  }
1215
- .fileUploadWrap[style*='height: auto'] .single-image-item-preview[data-v-9d12086d] {
1110
+ .fileUploadWrap[style*='height: auto'] .single-image-item-preview[data-v-9939a5fb] {
1216
1111
  min-height: 215px;
1217
1112
  }
1218
- .fileUploadWrap[style*='height: auto'] .single-preview[data-v-9d12086d] {
1113
+ .fileUploadWrap[style*='height: auto'] .single-preview[data-v-9939a5fb] {
1219
1114
  margin: 0rem !important;
1220
1115
  }
1221
- .single-preview[data-v-9d12086d] {
1116
+ .single-preview[data-v-9939a5fb] {
1222
1117
  border-radius: var(--input-border-radius);
1223
1118
  margin: 1rem;
1224
1119
  padding: 0px;
@@ -1228,7 +1123,7 @@ pre code.hljs{
1228
1123
  background: var(--bgl-gray-light);
1229
1124
  width: 90%;
1230
1125
  }
1231
- .single-image-item-preview[data-v-9d12086d]:hover::after {
1126
+ .single-image-item-preview[data-v-9939a5fb]:hover::after {
1232
1127
  content: 'zoom_in';
1233
1128
  font-size: 32px;
1234
1129
  font-family: 'Material Symbols Outlined', serif;
@@ -1238,20 +1133,20 @@ pre code.hljs{
1238
1133
  z-index: 9;
1239
1134
  pointer-events: none;
1240
1135
  }
1241
- .single-image-item-preview:hover img[data-v-9d12086d] {
1136
+ .single-image-item-preview:hover img[data-v-9939a5fb] {
1242
1137
  filter: brightness(70%);
1243
1138
  }
1244
- .bgl_fill-image.single-image-item-preview[data-v-9d12086d] {
1139
+ .bgl_fill-image.single-image-item-preview[data-v-9939a5fb] {
1245
1140
  height: 100%;
1246
1141
  }
1247
- .bgl_fill-image.single-image-item-preview .single-preview[data-v-9d12086d] {
1142
+ .bgl_fill-image.single-image-item-preview .single-preview[data-v-9939a5fb] {
1248
1143
  border-radius: unset;
1249
1144
  object-fit: cover;
1250
1145
  box-shadow: unset;
1251
1146
  width: 100%;
1252
1147
  height: auto;
1253
1148
  }
1254
- .single-image-item-preview .pie[data-v-9d12086d] {
1149
+ .single-image-item-preview .pie[data-v-9939a5fb] {
1255
1150
  transform-origin: top;
1256
1151
  transform: scale(1.4);
1257
1152
  position: absolute;
@@ -1265,31 +1160,31 @@ pre code.hljs{
1265
1160
  border: none !important;
1266
1161
  padding: 0 !important;
1267
1162
  }
1268
- .bgl_oval-upload[data-v-9d12086d] {
1163
+ .bgl_oval-upload[data-v-9939a5fb] {
1269
1164
  border-radius: 100% !important;
1270
1165
  overflow: hidden;
1271
1166
  }
1272
- .bgl_oval-upload p[data-v-9d12086d] {
1167
+ .bgl_oval-upload p[data-v-9939a5fb] {
1273
1168
  padding: 0.75rem !important;
1274
1169
  font-size: 12px;
1275
1170
  }
1276
- .bgl_oval-upload .fileUploadPlaceHolder[data-v-9d12086d] {
1171
+ .bgl_oval-upload .fileUploadPlaceHolder[data-v-9939a5fb] {
1277
1172
  top: 0;
1278
1173
  }
1279
- .bgl_oval-upload .pie[data-v-9d12086d] {
1174
+ .bgl_oval-upload .pie[data-v-9939a5fb] {
1280
1175
  transform: scale(1);
1281
1176
  }
1282
- .bgl_oval-upload span.bgl_icon-font.color-primary[data-v-9d12086d] {
1177
+ .bgl_oval-upload span.bgl_icon-font.color-primary[data-v-9939a5fb] {
1283
1178
  transform: scale(0.4) !important;
1284
1179
  }
1285
- .bgl_oval-upload .single-image-item-preview[data-v-9d12086d] {
1180
+ .bgl_oval-upload .single-image-item-preview[data-v-9939a5fb] {
1286
1181
  height: 100%;
1287
1182
  }
1288
- .bgl_oval-upload .single-preview[data-v-9d12086d] {
1183
+ .bgl_oval-upload .single-preview[data-v-9939a5fb] {
1289
1184
  margin: 0;
1290
1185
  height: 100% !important;
1291
1186
  }
1292
- .pie[data-v-9d12086d] {
1187
+ .pie[data-v-9939a5fb] {
1293
1188
  width: 30px;
1294
1189
  height: 30px;
1295
1190
  position: relative;
@@ -1297,7 +1192,7 @@ pre code.hljs{
1297
1192
  align-items: center;
1298
1193
  justify-content: center;
1299
1194
  }
1300
- .pie[data-v-9d12086d]:before {
1195
+ .pie[data-v-9939a5fb]:before {
1301
1196
  content: '';
1302
1197
  position: absolute;
1303
1198
  border-radius: 50%;
@@ -1315,26 +1210,26 @@ pre code.hljs{
1315
1210
  #000 calc(100% - var(--b))
1316
1211
  );
1317
1212
  }
1318
- .pie .success[data-v-9d12086d] {
1213
+ .pie .success[data-v-9939a5fb] {
1319
1214
  transform: scale(0);
1320
1215
  opacity: 0;
1321
1216
  transition: all 0.3s ease-in-out;
1322
1217
  }
1323
- .pie .progress[data-v-9d12086d] {
1218
+ .pie .progress[data-v-9939a5fb] {
1324
1219
  position: absolute;
1325
1220
  font-size: 10px;
1326
1221
  }
1327
- .pie.complete .progress[data-v-9d12086d] {
1222
+ .pie.complete .progress[data-v-9939a5fb] {
1328
1223
  display: none;
1329
1224
  }
1330
- .pie.complete .success[data-v-9d12086d] {
1225
+ .pie.complete .success[data-v-9939a5fb] {
1331
1226
  transform: scale(1.3);
1332
1227
  opacity: 1;
1333
1228
  }
1334
- .pie.complete[data-v-9d12086d]:before {
1229
+ .pie.complete[data-v-9939a5fb]:before {
1335
1230
  background: conic-gradient(var(--bgl-green) calc(var(--p) * 1%), #0000 0);
1336
1231
  }
1337
- .pie.complete[data-v-9d12086d] {
1232
+ .pie.complete[data-v-9939a5fb] {
1338
1233
  color: var(--bgl-green);
1339
1234
  }
1340
1235
 
@@ -1345,14 +1240,14 @@ pre code.hljs{
1345
1240
  direction: ltr;
1346
1241
  }
1347
1242
 
1348
- .txtInputIconStart .iconStart[data-v-cacbf10f] {
1243
+ .txtInputIconStart .iconStart[data-v-8ae5f930] {
1349
1244
  color: var(--input-color);
1350
1245
  position: absolute;
1351
1246
  inset-inline-start:calc(var(--input-height) / 3 - 0.25rem);
1352
1247
  margin-top: calc(var(--input-height) / 2 );
1353
1248
  line-height: 0;
1354
1249
  }
1355
- .textInputSpinnerWrap .spinner[data-v-cacbf10f] {
1250
+ .textInputSpinnerWrap .spinner[data-v-8ae5f930] {
1356
1251
  color: var(--input-color);
1357
1252
  position: absolute;
1358
1253
  inset-inline-end: 0;
@@ -1362,18 +1257,18 @@ pre code.hljs{
1362
1257
  flex-direction: column;
1363
1258
  gap: 0;
1364
1259
  }
1365
- .top-bgl-ctrl-num-btn[data-v-cacbf10f]{
1260
+ .top-bgl-ctrl-num-btn[data-v-8ae5f930]{
1366
1261
  margin-top: calc(var(--input-height) / 10) !important;
1367
1262
  }
1368
- .bgl-ctrl-num-btn[data-v-cacbf10f]{
1263
+ .bgl-ctrl-num-btn[data-v-8ae5f930]{
1369
1264
  height: calc(var(--input-height) / 2.5) !important;
1370
1265
  isolation: isolate;
1371
1266
  }
1372
- .bgl-big-ctrl-num-btn[data-v-cacbf10f]{
1267
+ .bgl-big-ctrl-num-btn[data-v-8ae5f930]{
1373
1268
  width: 100% !important;
1374
1269
  isolation: isolate;
1375
1270
  }
1376
- .bgl-number-input[data-v-cacbf10f]{
1271
+ .bgl-number-input[data-v-8ae5f930]{
1377
1272
  padding-inline-end: 1.75rem !important;
1378
1273
  }
1379
1274
 
@@ -1547,26 +1442,26 @@ input[type="range"][data-v-25d991e5]:active::-webkit-slider-thumb {
1547
1442
  line-height: 1.65;
1548
1443
  }
1549
1444
 
1550
- .rich-text-editor[data-v-59d7c73f] {
1445
+ .rich-text-editor[data-v-08117333] {
1551
1446
  background: var(--input-bg);
1552
1447
  border: 1px solid var(--border-color);
1553
1448
  transition: all 0.3s ease;
1554
1449
  }
1555
- .editor-container[data-v-59d7c73f] {
1450
+ .editor-container[data-v-08117333] {
1556
1451
  display: flex;
1557
1452
  gap: 1rem;
1558
1453
  }
1559
- .content-area[data-v-59d7c73f],
1560
- .preview-area[data-v-59d7c73f] {
1454
+ .content-area[data-v-08117333],
1455
+ .preview-area[data-v-08117333] {
1561
1456
  flex: 1;
1562
1457
  min-height: 200px;
1563
1458
  background: var(--bgl-richtext-color);
1564
1459
  }
1565
- .split-view[data-v-59d7c73f] {
1460
+ .split-view[data-v-08117333] {
1566
1461
  display: grid;
1567
1462
  grid-template-columns: 1fr 1fr;
1568
1463
  }
1569
- .editableContent[data-v-59d7c73f] {
1464
+ .editableContent[data-v-08117333] {
1570
1465
  width: 100%;
1571
1466
  min-height: 240px;
1572
1467
  height: 100%;
@@ -1574,7 +1469,7 @@ line-height: 1.65;
1574
1469
  outline: none;
1575
1470
  background: transparent;
1576
1471
  }
1577
- .html-editor[data-v-59d7c73f] {
1472
+ .html-editor[data-v-08117333] {
1578
1473
  width: 100%;
1579
1474
  height: 100%;
1580
1475
  min-height: 200px;
@@ -1585,12 +1480,12 @@ line-height: 1.65;
1585
1480
  color: white;
1586
1481
  background-color: var(--bgl-black);
1587
1482
  }
1588
- .preview-area[data-v-59d7c73f] {
1483
+ .preview-area[data-v-08117333] {
1589
1484
  font-family: monospace;
1590
1485
  white-space: pre-wrap;
1591
1486
  overflow-x: auto;
1592
1487
  }
1593
- .fullscreen-mode[data-v-59d7c73f] {
1488
+ .fullscreen-mode[data-v-08117333] {
1594
1489
  position: fixed;
1595
1490
  top: 0;
1596
1491
  left: 0;
@@ -1599,18 +1494,18 @@ line-height: 1.65;
1599
1494
  z-index: 9999;
1600
1495
  padding: 2rem;
1601
1496
  }
1602
- .fullscreen-mode .editor-container[data-v-59d7c73f] {
1497
+ .fullscreen-mode .editor-container[data-v-08117333] {
1603
1498
  height: calc(100vh - 4rem);
1604
1499
  }
1605
- .fullscreen-mode .content-area[data-v-59d7c73f],
1606
- .fullscreen-mode .preview-area[data-v-59d7c73f] {
1500
+ .fullscreen-mode .content-area[data-v-08117333],
1501
+ .fullscreen-mode .preview-area[data-v-08117333] {
1607
1502
  height: 100%;
1608
1503
  overflow-y: auto;
1609
1504
  }
1610
- .fullscreen-mode .code-editor[data-v-59d7c73f]{
1505
+ .fullscreen-mode .code-editor[data-v-08117333]{
1611
1506
  height: 100% !important;
1612
1507
  }
1613
- .debug-controls[data-v-59d7c73f] {
1508
+ .debug-controls[data-v-08117333] {
1614
1509
  display: flex;
1615
1510
  gap: 0.5rem;
1616
1511
  justify-content: flex-end;
@@ -2023,7 +1918,7 @@ line-height: 1.65;
2023
1918
  .bgl-toggle input:checked + label[data-v-ebe691ee] {
2024
1919
  color: var(--bgl-primary) !important;
2025
1920
  }
2026
- .fileUploadWrap[data-v-33f11d1f] {
1921
+ .fileUploadWrap[data-v-d65d0a87] {
2027
1922
  outline: 1px solid var(--border-color);
2028
1923
  border-radius: var(--input-border-radius);
2029
1924
  text-align: center;
@@ -2035,7 +1930,7 @@ line-height: 1.65;
2035
1930
  background: var(--input-bg);
2036
1931
  height: 215px;
2037
1932
  }
2038
- .bagel-input .fileUploadWrap.fileDropZone[data-v-33f11d1f] {
1933
+ .bagel-input .fileUploadWrap.fileDropZone[data-v-d65d0a87] {
2039
1934
  background: var(--input-bg);
2040
1935
  display: flex;
2041
1936
  align-items: center;
@@ -2043,14 +1938,14 @@ line-height: 1.65;
2043
1938
  color: var(--bgl-gray);
2044
1939
  flex-direction: column;
2045
1940
  }
2046
- .fileUploadWrap.dragover[data-v-33f11d1f],
2047
- .fileUploadWrap[data-v-33f11d1f]:hover {
1941
+ .fileUploadWrap.dragover[data-v-d65d0a87],
1942
+ .fileUploadWrap[data-v-d65d0a87]:hover {
2048
1943
  box-shadow: inset 0 0 10px #00000012;
2049
1944
  }
2050
- .fileUploadWrap[style*='height: auto;'][data-v-33f11d1f] {
1945
+ .fileUploadWrap[style*='height: auto;'][data-v-d65d0a87] {
2051
1946
  min-height: 215px;
2052
1947
  }
2053
- .multi-image-item-preview[data-v-33f11d1f] {
1948
+ .multi-image-item-preview[data-v-d65d0a87] {
2054
1949
  border: 1px solid var(--border-color) !important;
2055
1950
  border-radius: var(--input-border-radius);
2056
1951
  margin: 0.5rem !important;
@@ -2064,12 +1959,12 @@ line-height: 1.65;
2064
1959
  gap: 1rem;
2065
1960
  align-items: center;
2066
1961
  }
2067
- .multi-image-item-preview p[data-v-33f11d1f] {
1962
+ .multi-image-item-preview p[data-v-d65d0a87] {
2068
1963
  overflow: hidden;
2069
1964
  text-overflow: ellipsis;
2070
1965
  white-space: nowrap;
2071
1966
  }
2072
- .multi-preview[data-v-33f11d1f] {
1967
+ .multi-preview[data-v-d65d0a87] {
2073
1968
  width: 40px;
2074
1969
  height: 40px;
2075
1970
  border-radius: var(--input-border-radius);
@@ -2080,17 +1975,17 @@ line-height: 1.65;
2080
1975
  align-items: center;
2081
1976
  display: flex;
2082
1977
  }
2083
- .bgl-single-preview[data-v-33f11d1f] {
1978
+ .bgl-single-preview[data-v-d65d0a87] {
2084
1979
  height: 100%;
2085
1980
  position: relative;
2086
1981
  }
2087
- .bgl-single-preview + .fileUploadPlaceHolder[data-v-33f11d1f] {
1982
+ .bgl-single-preview + .fileUploadPlaceHolder[data-v-d65d0a87] {
2088
1983
  position: absolute;
2089
1984
  inset: 0;
2090
1985
  margin: auto;
2091
1986
  top: calc(50% - 2rem);
2092
1987
  }
2093
- .single-image-item-preview[data-v-33f11d1f] {
1988
+ .single-image-item-preview[data-v-d65d0a87] {
2094
1989
  height: 100%;
2095
1990
  min-height: 100%;
2096
1991
  position: relative;
@@ -2098,13 +1993,13 @@ line-height: 1.65;
2098
1993
  align-items: center;
2099
1994
  justify-content: center;
2100
1995
  }
2101
- .fileUploadWrap[style*='height: auto'] .single-image-item-preview[data-v-33f11d1f] {
1996
+ .fileUploadWrap[style*='height: auto'] .single-image-item-preview[data-v-d65d0a87] {
2102
1997
  min-height: 215px;
2103
1998
  }
2104
- .fileUploadWrap[style*='height: auto'] .single-preview[data-v-33f11d1f] {
1999
+ .fileUploadWrap[style*='height: auto'] .single-preview[data-v-d65d0a87] {
2105
2000
  margin: 0rem !important;
2106
2001
  }
2107
- .single-preview[data-v-33f11d1f] {
2002
+ .single-preview[data-v-d65d0a87] {
2108
2003
  border-radius: var(--input-border-radius);
2109
2004
  margin: 1rem;
2110
2005
  padding: 0px;
@@ -2114,7 +2009,7 @@ line-height: 1.65;
2114
2009
  background: var(--bgl-gray-light);
2115
2010
  width: 90%;
2116
2011
  }
2117
- .single-image-item-preview[data-v-33f11d1f]:hover::after {
2012
+ .single-image-item-preview[data-v-d65d0a87]:hover::after {
2118
2013
  content: 'zoom_in';
2119
2014
  font-size: 32px;
2120
2015
  font-family: 'Material Symbols Outlined', serif;
@@ -2124,20 +2019,20 @@ line-height: 1.65;
2124
2019
  z-index: 9;
2125
2020
  pointer-events: none;
2126
2021
  }
2127
- .single-image-item-preview:hover img[data-v-33f11d1f] {
2022
+ .single-image-item-preview:hover img[data-v-d65d0a87] {
2128
2023
  filter: brightness(70%);
2129
2024
  }
2130
- .bgl_fill-image.single-image-item-preview[data-v-33f11d1f] {
2025
+ .bgl_fill-image.single-image-item-preview[data-v-d65d0a87] {
2131
2026
  height: 100%;
2132
2027
  }
2133
- .bgl_fill-image.single-image-item-preview .single-preview[data-v-33f11d1f] {
2028
+ .bgl_fill-image.single-image-item-preview .single-preview[data-v-d65d0a87] {
2134
2029
  border-radius: unset;
2135
2030
  object-fit: cover;
2136
2031
  box-shadow: unset;
2137
2032
  width: 100%;
2138
2033
  height: auto;
2139
2034
  }
2140
- .single-image-item-preview .pie[data-v-33f11d1f] {
2035
+ .single-image-item-preview .pie[data-v-d65d0a87] {
2141
2036
  transform-origin: top;
2142
2037
  transform: scale(1.4);
2143
2038
  position: absolute;
@@ -2151,31 +2046,31 @@ line-height: 1.65;
2151
2046
  border: none !important;
2152
2047
  padding: 0 !important;
2153
2048
  }
2154
- .bgl_oval-upload[data-v-33f11d1f] {
2049
+ .bgl_oval-upload[data-v-d65d0a87] {
2155
2050
  border-radius: 100% !important;
2156
2051
  overflow: hidden;
2157
2052
  }
2158
- .bgl_oval-upload p[data-v-33f11d1f] {
2053
+ .bgl_oval-upload p[data-v-d65d0a87] {
2159
2054
  padding: 0.75rem !important;
2160
2055
  font-size: 12px;
2161
2056
  }
2162
- .bgl_oval-upload .fileUploadPlaceHolder[data-v-33f11d1f] {
2057
+ .bgl_oval-upload .fileUploadPlaceHolder[data-v-d65d0a87] {
2163
2058
  top: 0;
2164
2059
  }
2165
- .bgl_oval-upload .pie[data-v-33f11d1f] {
2060
+ .bgl_oval-upload .pie[data-v-d65d0a87] {
2166
2061
  transform: scale(1);
2167
2062
  }
2168
- .bgl_oval-upload span.bgl_icon-font.color-primary[data-v-33f11d1f] {
2063
+ .bgl_oval-upload span.bgl_icon-font.color-primary[data-v-d65d0a87] {
2169
2064
  transform: scale(0.4) !important;
2170
2065
  }
2171
- .bgl_oval-upload .single-image-item-preview[data-v-33f11d1f] {
2066
+ .bgl_oval-upload .single-image-item-preview[data-v-d65d0a87] {
2172
2067
  height: 100%;
2173
2068
  }
2174
- .bgl_oval-upload .single-preview[data-v-33f11d1f] {
2069
+ .bgl_oval-upload .single-preview[data-v-d65d0a87] {
2175
2070
  margin: 0;
2176
2071
  height: 100% !important;
2177
2072
  }
2178
- .pie[data-v-33f11d1f] {
2073
+ .pie[data-v-d65d0a87] {
2179
2074
  width: 30px;
2180
2075
  height: 30px;
2181
2076
  position: relative;
@@ -2183,7 +2078,7 @@ line-height: 1.65;
2183
2078
  align-items: center;
2184
2079
  justify-content: center;
2185
2080
  }
2186
- .pie[data-v-33f11d1f]:before {
2081
+ .pie[data-v-d65d0a87]:before {
2187
2082
  content: '';
2188
2083
  position: absolute;
2189
2084
  border-radius: 50%;
@@ -2201,26 +2096,26 @@ line-height: 1.65;
2201
2096
  #000 calc(100% - var(--b))
2202
2097
  );
2203
2098
  }
2204
- .pie .success[data-v-33f11d1f] {
2099
+ .pie .success[data-v-d65d0a87] {
2205
2100
  transform: scale(0);
2206
2101
  opacity: 0;
2207
2102
  transition: all 0.3s ease-in-out;
2208
2103
  }
2209
- .pie .progress[data-v-33f11d1f] {
2104
+ .pie .progress[data-v-d65d0a87] {
2210
2105
  position: absolute;
2211
2106
  font-size: 10px;
2212
2107
  }
2213
- .pie.complete .progress[data-v-33f11d1f] {
2108
+ .pie.complete .progress[data-v-d65d0a87] {
2214
2109
  display: none;
2215
2110
  }
2216
- .pie.complete .success[data-v-33f11d1f] {
2111
+ .pie.complete .success[data-v-d65d0a87] {
2217
2112
  transform: scale(1.3);
2218
2113
  opacity: 1;
2219
2114
  }
2220
- .pie.complete[data-v-33f11d1f]:before {
2115
+ .pie.complete[data-v-d65d0a87]:before {
2221
2116
  background: conic-gradient(var(--bgl-green) calc(var(--p) * 1%), #0000 0);
2222
2117
  }
2223
- .pie.complete[data-v-33f11d1f] {
2118
+ .pie.complete[data-v-d65d0a87] {
2224
2119
  color: var(--bgl-green);
2225
2120
  }
2226
2121
 
@@ -2374,6 +2269,97 @@ to {
2374
2269
  border: none;
2375
2270
  }
2376
2271
 
2272
+ .bgl_tabs_wrap[data-v-e680c2a4] {
2273
+ background: var(--input-bg);
2274
+ border-radius: calc(var(--input-border-radius) * 1.4);
2275
+ padding-inline: calc(var(--btn-padding) / 8);
2276
+ padding-block: calc(var(--btn-padding) / 8);
2277
+ box-shadow: inset 0 0 10px #00000012;
2278
+ gap: 0.25rem;
2279
+ }
2280
+ .bgl_tab[data-v-e680c2a4] {
2281
+ border: none;
2282
+ background: transparent;
2283
+ cursor: pointer;
2284
+ font-size: var(--input-font-size);
2285
+ font-family: inherit;
2286
+ padding-inline: calc(var(--btn-padding) / 2);
2287
+ padding-block: calc(var(--btn-padding) / 8);
2288
+ border-radius: var(--input-border-radius);
2289
+ transition: var(--bgl-transition);
2290
+ color: inherit
2291
+ }
2292
+ .bgl_tab[data-v-e680c2a4]:hover {
2293
+ background: rgba(255, 255, 255, .4);
2294
+ }
2295
+ .bgl_tabs_wrap[data-v-e680c2a4]::before {
2296
+ content: '';
2297
+ position: absolute;
2298
+ top: calc(var(--btn-padding) / 8);
2299
+ bottom: calc(var(--btn-padding) / 8);
2300
+ left: var(--indicator-left, 0);
2301
+ width: var(--indicator-width, 0);
2302
+ background: var(--bgl-popup-bg);
2303
+ border-radius: var(--input-border-radius);
2304
+ transition: var(--bgl-transition);
2305
+ z-index: 0;
2306
+ }
2307
+ .bgl_flat-tabs.bgl_tabs_wrap[data-v-e680c2a4] {
2308
+ background: transparent;
2309
+ box-shadow: none;
2310
+ }
2311
+ .bgl_flat-tabs.bgl_tabs_wrap[data-v-e680c2a4]::before{
2312
+ background: transparent;
2313
+ border-bottom: 1px solid var(--bgl-primary);
2314
+ border-radius: 0;
2315
+ top: calc(var(--btn-padding) * 1.25);
2316
+ bottom: unset;
2317
+ }
2318
+ .bgl_flat-tabs .active.bgl_tab[data-v-e680c2a4]{
2319
+ color: var(--bgl-primary)
2320
+ }
2321
+ .bgl_flat-tabs .bgl_tab[data-v-e680c2a4]:hover {
2322
+ background: rgba(255, 255, 255, .1);
2323
+ }
2324
+ .bgl_vertical-tabs[data-v-e680c2a4]{
2325
+ grid-auto-flow: row;
2326
+ align-items: start;
2327
+ justify-items: start;
2328
+ gap: 1rem
2329
+ }
2330
+ .bgl_vertical-tabs .bgl_tab[data-v-e680c2a4]{
2331
+ padding-inline: 0;
2332
+ border-radius: 0;
2333
+ border-bottom: 1px solid transparent;
2334
+ }
2335
+ .bgl_vertical-tabs .bgl_tab[data-v-e680c2a4]:hover{
2336
+ background: transparent;
2337
+ border-bottom: 1px solid var(--bgl-primary);
2338
+ }
2339
+ .bgl_vertical-tabs .bgl_tab.active[data-v-e680c2a4]{
2340
+ border-bottom: 1px solid var(--bgl-primary);
2341
+ }
2342
+ .bgl_vertical-tabs.bgl_tabs_wrap[data-v-e680c2a4]::before{
2343
+ border: none;
2344
+ }
2345
+ @media screen and (max-width: 910px) {
2346
+ .bgl_vertical-tabs[data-v-e680c2a4]{
2347
+ grid-auto-flow: column;
2348
+ overflow: auto;
2349
+ max-width: 100vw;
2350
+ padding-inline-end: 1rem;
2351
+ width: 100%;
2352
+ gap: 1rem;
2353
+ position: relative;
2354
+ }
2355
+ .bgl_vertical-tabs[data-v-e680c2a4]::-webkit-scrollbar {
2356
+ display: none;
2357
+ }
2358
+ .bgl_vertical-tabs .bgl_tab[data-v-e680c2a4]{
2359
+ white-space: nowrap;
2360
+ }
2361
+ }
2362
+
2377
2363
  .list-item {
2378
2364
  padding: 0.6rem 1rem;
2379
2365
  min-height: -webkit-fit-content;
@@ -3725,25 +3711,25 @@ body:has(.bg-dark.is-active) {
3725
3711
  }
3726
3712
  }
3727
3713
 
3728
- .bgl_pill-btn[data-v-47a928b4]{
3714
+ .bgl_pill-btn[data-v-2ca4d3a1]{
3729
3715
  color: var(--pill-btn-color);
3730
3716
  background: var(--pill-btn-bg);
3731
3717
  width: calc(var(--pill-height) / 1.25)!important;
3732
3718
  height: calc(var(--pill-height) / 1.25)!important;
3733
3719
  }
3734
- .loading[data-v-47a928b4] {
3720
+ .loading[data-v-2ca4d3a1] {
3735
3721
  border: 1px solid var(--bgl-light-text);
3736
3722
  border-bottom: 2px solid var(--bgl-light-text);
3737
- animation: spin-47a928b4 1s linear infinite;
3723
+ animation: spin-2ca4d3a1 1s linear infinite;
3738
3724
  border-radius: 100px;
3739
3725
  width: 1rem;
3740
3726
  height: 1rem;
3741
3727
  margin: auto;
3742
3728
  }
3743
- .bgl_flatPill .loading[data-v-47a928b4] {
3729
+ .bgl_flatPill .loading[data-v-2ca4d3a1] {
3744
3730
  border-bottom: 2px solid var(--bgl-text-color);
3745
3731
  }
3746
- @keyframes spin-47a928b4 {
3732
+ @keyframes spin-2ca4d3a1 {
3747
3733
  0% {
3748
3734
  transform: rotate(0deg);
3749
3735
  }
@@ -3751,11 +3737,11 @@ body:has(.bg-dark.is-active) {
3751
3737
  transform: rotate(360deg);
3752
3738
  }
3753
3739
  }
3754
- .bgl_pill[data-v-47a928b4] {
3740
+ .bgl_pill[data-v-2ca4d3a1] {
3755
3741
  padding-inline: 0.25rem;
3756
3742
  transition: var(--bgl-transition);
3757
- background-color: var(--3a60c2df);
3758
- color: var(--69137cfa);
3743
+ background-color: var(--2a89394f);
3744
+ color: var(--369cf12c);
3759
3745
  display: inline-block;
3760
3746
  margin-inline-end: 0.25rem;
3761
3747
  border-radius: var(--pill-border-radius);
@@ -3763,26 +3749,26 @@ body:has(.bg-dark.is-active) {
3763
3749
  vertical-align: middle;
3764
3750
  margin-bottom: 0.25rem;
3765
3751
  }
3766
- .bgl_pill[disabled="true"][data-v-47a928b4] {
3752
+ .bgl_pill[disabled="true"][data-v-2ca4d3a1] {
3767
3753
  opacity: 0.5;
3768
3754
  cursor: not-allowed;
3769
3755
  }
3770
- .bgl_pill-flex[data-v-47a928b4] {
3756
+ .bgl_pill-flex[data-v-2ca4d3a1] {
3771
3757
  display: flex;
3772
3758
  align-items: center;
3773
3759
  gap: 0.25rem;
3774
3760
  justify-content: center;
3775
3761
  height: 100%;
3776
3762
  }
3777
- .bgl_pill.bgl_flatPill[data-v-47a928b4] {
3763
+ .bgl_pill.bgl_flatPill[data-v-2ca4d3a1] {
3778
3764
  background: transparent;
3779
3765
  }
3780
- .bgl_pill.round[data-v-47a928b4] {
3766
+ .bgl_pill.round[data-v-2ca4d3a1] {
3781
3767
  border-radius: 1000px;
3782
3768
  }
3783
- .bgl_pill-border[data-v-47a928b4] {
3784
- outline: 1px solid var(--3a60c2df);
3785
- color: var(--3a60c2df);
3769
+ .bgl_pill-border[data-v-2ca4d3a1] {
3770
+ outline: 1px solid var(--2a89394f);
3771
+ color: var(--2a89394f);
3786
3772
  background: transparent;
3787
3773
  }
3788
3774
 
@@ -13599,6 +13585,12 @@ select {
13599
13585
  -webkit-line-clamp: 6;
13600
13586
  }.pointer {
13601
13587
  cursor: pointer;
13588
+ }.grab {
13589
+ cursor: grab;
13590
+ }.grab:active {
13591
+ cursor: grabbing;
13592
+ }.not-allowed {
13593
+ cursor: not-allowed;
13602
13594
  }.decoration-none {
13603
13595
  text-decoration: none;
13604
13596
  }.underline,
@@ -13615,7 +13607,7 @@ select {
13615
13607
  }.capitalize {
13616
13608
  text-transform: capitalize;
13617
13609
  }.bgl_icon-font {
13618
- font-family: "Material Symbols Outlined", serif !important;
13610
+ font-family: 'Material Symbols Outlined', serif !important;
13619
13611
  }.nowrap {
13620
13612
  white-space: nowrap;
13621
13613
  }.balance {
@@ -13625,7 +13617,6 @@ select {
13625
13617
  }.white-space {
13626
13618
  white-space: nowrap;
13627
13619
  }@media screen and (max-width: 910px) {
13628
-
13629
13620
  .txt20,
13630
13621
  .txt-20 {
13631
13622
  font-size: 18px;
@@ -13742,7 +13733,6 @@ select {
13742
13733
  font-size: 72px;
13743
13734
  }
13744
13735
 
13745
-
13746
13736
  .m_txt80,
13747
13737
  .m_txt-80 {
13748
13738
  font-size: 80px;
@@ -13758,7 +13748,6 @@ select {
13758
13748
  font-size: 100px;
13759
13749
  }
13760
13750
 
13761
-
13762
13751
  .m_txt110,
13763
13752
  .m_txt-110 {
13764
13753
  font-size: 110px;
@@ -14009,9 +13998,8 @@ select {
14009
13998
  text-decoration: underline !important;
14010
13999
  }
14011
14000
 
14012
-
14013
14001
  .m_bgl_icon-font {
14014
- font-family: "Material Symbols Outlined", serif;
14002
+ font-family: 'Material Symbols Outlined', serif;
14015
14003
  }
14016
14004
 
14017
14005
  .m_nowrap {
@@ -14045,7 +14033,6 @@ select {
14045
14033
  .m_capitalize {
14046
14034
  text-transform: capitalize;
14047
14035
  }
14048
-
14049
14036
  }body>div ::-webkit-scrollbar {
14050
14037
  width: 0.5em;
14051
14038
  height: 0.5rem;