@bagelink/vue 0.0.544 → 0.0.552

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 (35) hide show
  1. package/dist/components/TableSchema.vue.d.ts +7 -16
  2. package/dist/components/TableSchema.vue.d.ts.map +1 -1
  3. package/dist/components/form/BglField.vue.d.ts.map +1 -1
  4. package/dist/components/form/inputs/RichText2/Toolbar.vue.d.ts +22 -0
  5. package/dist/components/form/inputs/RichText2/Toolbar.vue.d.ts.map +1 -0
  6. package/dist/components/form/inputs/RichText2/formatting.d.ts +5 -0
  7. package/dist/components/form/inputs/RichText2/formatting.d.ts.map +1 -0
  8. package/dist/components/form/inputs/RichText2/index.vue.d.ts +24 -0
  9. package/dist/components/form/inputs/RichText2/index.vue.d.ts.map +1 -0
  10. package/dist/components/form/inputs/RichText2/richtext-types.d.ts +3 -0
  11. package/dist/components/form/inputs/RichText2/richtext-types.d.ts.map +1 -0
  12. package/dist/components/form/inputs/index.d.ts +1 -0
  13. package/dist/components/form/inputs/index.d.ts.map +1 -1
  14. package/dist/index.cjs +706 -278
  15. package/dist/index.mjs +706 -278
  16. package/dist/style.css +448 -119
  17. package/dist/types/BagelForm.d.ts +5 -4
  18. package/dist/types/BagelForm.d.ts.map +1 -1
  19. package/package.json +1 -1
  20. package/src/components/Btn.vue +1 -1
  21. package/src/components/DataPreview.vue +3 -3
  22. package/src/components/TableSchema.vue +10 -10
  23. package/src/components/form/BglField.vue +19 -2
  24. package/src/components/form/inputs/RichText2/Toolbar.vue +106 -0
  25. package/src/components/form/inputs/RichText2/formatting.ts +194 -0
  26. package/src/components/form/inputs/RichText2/index.vue +204 -0
  27. package/src/components/form/inputs/RichText2/richtext-types.ts +25 -0
  28. package/src/components/form/inputs/index.ts +1 -0
  29. package/src/components/formkit/FileUploader.vue +1 -1
  30. package/src/styles/appearance.css +16 -16
  31. package/src/styles/layout.css +113 -6
  32. package/src/styles/mobilLayout.css +124 -12
  33. package/src/styles/text.css +78 -12
  34. package/src/styles/theme.css +1 -0
  35. package/src/types/BagelForm.ts +15 -1
package/dist/style.css CHANGED
@@ -248,19 +248,19 @@
248
248
  }
249
249
  }
250
250
 
251
- a[data-v-204e25fe] {
251
+ a[data-v-7f505d62] {
252
252
  text-decoration: none;
253
253
  }
254
- .loading[data-v-204e25fe] {
254
+ .loading[data-v-7f505d62] {
255
255
  border: 1px solid var(--bgl-white);
256
256
  border-bottom: 2px solid var(--bgl-white);
257
- animation: spin-204e25fe 1s linear infinite;
257
+ animation: spin-7f505d62 1s linear infinite;
258
258
  border-radius: 100px;
259
259
  width: 1rem;
260
260
  height: 1rem;
261
261
  margin: auto;
262
262
  }
263
- @keyframes spin-204e25fe {
263
+ @keyframes spin-7f505d62 {
264
264
  0% {
265
265
  transform: rotate(0deg);
266
266
  }
@@ -268,7 +268,7 @@ a[data-v-204e25fe] {
268
268
  transform: rotate(360deg);
269
269
  }
270
270
  }
271
- .bgl_btn-icon[data-v-204e25fe] {
271
+ .bgl_btn-icon[data-v-7f505d62] {
272
272
  height: var(--btn-height);
273
273
  width: var(--btn-height);
274
274
  border-radius: 100%;
@@ -278,101 +278,101 @@ a[data-v-204e25fe] {
278
278
  flex-shrink: 0;
279
279
  transition: var(--bgl-transition);
280
280
  }
281
- .bgl_btn[data-v-204e25fe] {
281
+ .bgl_btn[data-v-7f505d62] {
282
282
  padding-left: var(--btn-padding);
283
283
  padding-right: var(--btn-padding);
284
284
  transition: var(--bgl-transition);
285
285
  text-decoration: none;
286
286
  }
287
- .bgl_btn[disabled="true"][data-v-204e25fe] {
287
+ .bgl_btn[disabled="true"][data-v-7f505d62] {
288
288
  opacity: 0.5;
289
289
  cursor: not-allowed;
290
290
  }
291
- .bgl_btn-flex[data-v-204e25fe] {
291
+ .bgl_btn-flex[data-v-7f505d62] {
292
292
  display: flex;
293
293
  align-items: center;
294
294
  gap: 0.5rem;
295
295
  justify-content: center;
296
296
  }
297
- .bgl_btn .bgl_.bgl_icon-font[data-v-204e25fe] {
297
+ .bgl_btn .bgl_.bgl_icon-font[data-v-7f505d62] {
298
298
  font-size: calc(var(--input-font-size) * 1.3);
299
299
  }
300
- .bgl_btn[data-v-204e25fe],
301
- .bgl_btn-icon[data-v-204e25fe] {
302
- background-color: var(--743a2e01);
303
- color: var(--9ec72cc8);
300
+ .bgl_btn[data-v-7f505d62],
301
+ .bgl_btn-icon[data-v-7f505d62] {
302
+ background-color: var(--54b736fd);
303
+ color: var(--5c3a40d0);
304
304
  }
305
- .bgl_btn[data-v-204e25fe]:hover,
306
- .bgl_btn-icon[data-v-204e25fe]:hover {
305
+ .bgl_btn[data-v-7f505d62]:hover,
306
+ .bgl_btn-icon[data-v-7f505d62]:hover {
307
307
  filter: var(--bgl-hover-filter);
308
308
  }
309
- .bgl_btn[data-v-204e25fe]:active,
310
- .bgl_btn-icon[data-v-204e25fe]:active {
309
+ .bgl_btn[data-v-7f505d62]:active,
310
+ .bgl_btn-icon[data-v-7f505d62]:active {
311
311
  filter: var(--bgl-active-filter);
312
312
  }
313
- .bgl_btn.bgl_flatBtn[data-v-204e25fe] {
313
+ .bgl_btn.bgl_flatBtn[data-v-7f505d62] {
314
314
  padding-left: var(--btn-padding);
315
315
  padding-right: var(--btn-padding);
316
316
  background: transparent;
317
317
  }
318
- .bgl_btn-icon.bgl_flatBtn[data-v-204e25fe] {
318
+ .bgl_btn-icon.bgl_flatBtn[data-v-7f505d62] {
319
319
  background: transparent;
320
320
  }
321
- .bgl_btn.bgl_flatBtn[data-v-204e25fe]:hover,
322
- .bgl_btn-icon.bgl_flatBtn[data-v-204e25fe]:hover {
321
+ .bgl_btn.bgl_flatBtn[data-v-7f505d62]:hover,
322
+ .bgl_btn-icon.bgl_flatBtn[data-v-7f505d62]:hover {
323
323
  filter: var(--bgl-active-filter);
324
324
  }
325
- .bgl_btn.bgl_flatBtn[data-v-204e25fe]:active,
326
- .bgl_btn-icon.bgl_flatBtn[data-v-204e25fe]:active {
327
- background: var(--bgl-gray);
325
+ .bgl_btn.bgl_flatBtn[data-v-7f505d62]:active,
326
+ .bgl_btn-icon.bgl_flatBtn[data-v-7f505d62]:active {
327
+ background: var(--bgl-gray-40);
328
328
  filter: var(--bgl-hover-filter);
329
329
  }
330
- .bgl_btn.bgl_flatBtn.red[data-v-204e25fe],
331
- .bgl_btn-icon.bgl_flatBtn.red[data-v-204e25fe] {
330
+ .bgl_btn.bgl_flatBtn.red[data-v-7f505d62],
331
+ .bgl_btn-icon.bgl_flatBtn.red[data-v-7f505d62] {
332
332
  color: var(--bgl-red);
333
333
  }
334
- .bgl_btn.bgl_flatBtn.white[data-v-204e25fe],
335
- .bgl_btn-icon.bgl_flatBtn.white[data-v-204e25fe] {
334
+ .bgl_btn.bgl_flatBtn.white[data-v-7f505d62],
335
+ .bgl_btn-icon.bgl_flatBtn.white[data-v-7f505d62] {
336
336
  color: var(--bgl-white);
337
337
  }
338
- .bgl_btn.bgl_flatBtn.light[data-v-204e25fe],
339
- .bgl_btn-icon.bgl_flatBtn.light[data-v-204e25fe] {
338
+ .bgl_btn.bgl_flatBtn.light[data-v-7f505d62],
339
+ .bgl_btn-icon.bgl_flatBtn.light[data-v-7f505d62] {
340
340
  color: var(--bgl-primary-tint);
341
341
  }
342
- .bgl_btn.bgl_flatBtn.black[data-v-204e25fe],
343
- .bgl_btn-icon.bgl_flatBtn.black[data-v-204e25fe] {
342
+ .bgl_btn.bgl_flatBtn.black[data-v-7f505d62],
343
+ .bgl_btn-icon.bgl_flatBtn.black[data-v-7f505d62] {
344
344
  color: var(--bgl-black);
345
345
  }
346
- .bgl_btn.bgl_flatBtn.gray[data-v-204e25fe],
347
- .bgl_btn-icon.bgl_flatBtn.gray[data-v-204e25fe] {
346
+ .bgl_btn.bgl_flatBtn.gray[data-v-7f505d62],
347
+ .bgl_btn-icon.bgl_flatBtn.gray[data-v-7f505d62] {
348
348
  color: var(--bgl-gray);
349
349
  }
350
- .bgl_btn.thin[data-v-204e25fe] {
350
+ .bgl_btn.thin[data-v-7f505d62] {
351
351
  padding-inline: calc(var(--btn-padding) / 3);
352
352
  border-radius: calc(var(--btn-border-radius) / 1.5);
353
353
  }
354
- .bgl_btn.round[data-v-204e25fe] {
354
+ .bgl_btn.round[data-v-7f505d62] {
355
355
  border-radius: calc(var(--btn-border-radius) * 2);
356
356
  }
357
- .bgl_btn-icon.thin[data-v-204e25fe] {
357
+ .bgl_btn-icon.thin[data-v-7f505d62] {
358
358
  height: calc(var(--btn-height) / 1.5);
359
359
  width: calc(var(--btn-height) / 1.5);
360
360
  line-height: 1;
361
361
  }
362
- [dir="rtl"] .bgl_.bgl_icon-font[data-v-204e25fe] {
362
+ [dir="rtl"] .bgl_.bgl_icon-font[data-v-7f505d62] {
363
363
  transform: rotateY(180deg);
364
364
  }
365
- .bgl_btn-border[data-v-204e25fe] {
366
- outline: 1px solid var(--743a2e01);
367
- color: var(--743a2e01);
365
+ .bgl_btn-border[data-v-7f505d62] {
366
+ outline: 1px solid var(--54b736fd);
367
+ color: var(--54b736fd);
368
368
  background: transparent;
369
369
  }
370
- .bgl_btn-border[data-v-204e25fe]:hover {
370
+ .bgl_btn-border[data-v-7f505d62]:hover {
371
371
  color: var(--bgl-white);
372
- background: var(--743a2e01);
372
+ background: var(--54b736fd);
373
373
  filter: brightness(100%);
374
374
  }
375
- .bgl_btn-border[data-v-204e25fe]:active {
375
+ .bgl_btn-border[data-v-7f505d62]:active {
376
376
  filter: brightness(80%);
377
377
  }
378
378
  .bg-dark {
@@ -637,41 +637,41 @@ a[data-v-204e25fe] {
637
637
  }
638
638
  }
639
639
 
640
- .list-arrows[data-v-8113163b] {
640
+ .list-arrows[data-v-9bf1b6df] {
641
641
  opacity: 0;
642
642
  }
643
- .list-arrows .bgl_icon-font[data-v-8113163b] {
643
+ .list-arrows .bgl_icon-font[data-v-9bf1b6df] {
644
644
  transition: all ease-in-out 0.2s;
645
645
  }
646
- .list-arrows.sorted[data-v-8113163b] {
646
+ .list-arrows.sorted[data-v-9bf1b6df] {
647
647
  opacity: 1;
648
648
  }
649
- .col img[data-v-8113163b] {
649
+ .col img[data-v-9bf1b6df] {
650
650
  height: 35px;
651
651
  margin-top: -14px;
652
652
  margin-bottom: -14px;
653
653
  border-radius: 5px;
654
654
  }
655
- .list-arrows.sorted .desc[data-v-8113163b] {
655
+ .list-arrows.sorted .desc[data-v-9bf1b6df] {
656
656
  transform: rotate(180deg);
657
657
  }
658
- table[data-v-8113163b] {
658
+ table[data-v-9bf1b6df] {
659
659
  border-collapse: separate;
660
660
  border-spacing: 0 15px;
661
661
  border-collapse: collapse;
662
662
  }
663
- th[data-v-8113163b] {
663
+ th[data-v-9bf1b6df] {
664
664
  font-weight: 400;
665
665
  }
666
- .embedded-field[data-v-8113163b] {
666
+ .embedded-field[data-v-9bf1b6df] {
667
667
  margin-bottom: -0.2rem;
668
668
  margin-top: -0.2rem;
669
669
  }
670
- .row[data-v-8113163b] {
670
+ .row[data-v-9bf1b6df] {
671
671
  border-bottom: 1px solid var(--border-color);
672
672
  cursor: pointer;
673
673
  }
674
- .row.first-row[data-v-8113163b] {
674
+ .row.first-row[data-v-9bf1b6df] {
675
675
  font-size: 0.8rem;
676
676
  color: var(--bgl-black-tint);
677
677
  position: sticky;
@@ -681,10 +681,10 @@ th[data-v-8113163b] {
681
681
  /* height: 50px; */
682
682
  vertical-align: bottom;
683
683
  }
684
- .row.first-row input[type=checkbox][data-v-8113163b]{
684
+ .row.first-row input[type=checkbox][data-v-9bf1b6df]{
685
685
  margin-bottom: 0.7rem;
686
686
  }
687
- .row.first-row[data-v-8113163b]::after {
687
+ .row.first-row[data-v-9bf1b6df]::after {
688
688
  content: '';
689
689
  border-bottom: 1px solid var(--border-color);
690
690
  position: absolute;
@@ -692,30 +692,30 @@ th[data-v-8113163b] {
692
692
  right: 0;
693
693
  bottom: -1px;
694
694
  }
695
- .first-row .col[data-v-8113163b] {
695
+ .first-row .col[data-v-9bf1b6df] {
696
696
  cursor: pointer;
697
697
  background: var(--bgl-white);
698
698
  }
699
- .col[data-v-8113163b] {
699
+ .col[data-v-9bf1b6df] {
700
700
  white-space: nowrap;
701
701
  padding: 0.75rem 1rem;
702
702
  transition: var(--bgl-transition);
703
703
  line-height: 1;
704
704
  align-items: center;
705
705
  }
706
- .col[data-v-8113163b]:has(.bagel-input) {
706
+ .col[data-v-9bf1b6df]:has(.bagel-input) {
707
707
  padding: 0rem 0.25rem;
708
708
  }
709
- .col > div[data-v-8113163b] {
709
+ .col > div[data-v-9bf1b6df] {
710
710
  display: flex;
711
711
  gap: 0.5rem;
712
712
  }
713
- .max-col-width[data-v-8113163b] {
713
+ .max-col-width[data-v-9bf1b6df] {
714
714
  max-width: 30vw;
715
715
  overflow: hidden;
716
716
  text-overflow: ellipsis;
717
717
  }
718
- .col.check .bgl_icon-font[data-v-8113163b] {
718
+ .col.check .bgl_icon-font[data-v-9bf1b6df] {
719
719
  border-radius: 100%;
720
720
  background: var(--bgl-blue-20);
721
721
  color: var(--bgl-primary);
@@ -726,48 +726,48 @@ th[data-v-8113163b] {
726
726
  justify-content: center;
727
727
  margin-top: -2px;
728
728
  }
729
- .rows[data-v-8113163b] {
729
+ .rows[data-v-9bf1b6df] {
730
730
  font-size: 0.88em;
731
731
  }
732
- .table-list[data-v-8113163b] {
732
+ .table-list[data-v-9bf1b6df] {
733
733
  height: 100%;
734
734
  position: relative;
735
735
  padding-left: 0 !important;
736
736
  padding-right: 0 !important;
737
737
  overflow: auto;
738
738
  }
739
- .BagelTable .table-list[data-v-8113163b] {
739
+ .BagelTable .table-list[data-v-9bf1b6df] {
740
740
  overflow: unset;
741
741
  }
742
- .row-item[data-v-8113163b] {
742
+ .row-item[data-v-9bf1b6df] {
743
743
  height: 50px;
744
744
  transition: all 200ms ease;
745
745
  }
746
- .row-item[data-v-8113163b]:hover {
746
+ .row-item[data-v-9bf1b6df]:hover {
747
747
  background: var(--bgl-gray-light);
748
748
  }
749
- .row-item input[type=checkbox][data-v-8113163b]{
749
+ .row-item input[type=checkbox][data-v-9bf1b6df]{
750
750
  margin-top: 0.45rem !important;
751
751
  accent-color: var(--bgl-primary);
752
752
  }
753
- .infinite-wrapper[data-v-8113163b] {
753
+ .infinite-wrapper[data-v-9bf1b6df] {
754
754
  overflow-y: auto;
755
755
  width: 100%;
756
756
  }
757
757
 
758
- .data[data-v-eb1d3474] {
758
+ .data[data-v-078d6853] {
759
759
  border: 1.1px solid var(--border-color);
760
760
  padding: 20px;
761
761
  border-radius: var(--input-border-radius);
762
762
  }
763
- .data-row[data-v-eb1d3474] {
763
+ .data-row[data-v-078d6853] {
764
764
  display: flex;
765
765
  justify-content: space-between;
766
766
  padding-bottom: 0.5rem;
767
767
  margin-bottom: 0.5rem;
768
768
  border-bottom: 1px solid var(--border-color);
769
769
  }
770
- .data-link[data-v-eb1d3474] {
770
+ .data-link[data-v-078d6853] {
771
771
  display: block;
772
772
  font-size: var(--input-font-size);
773
773
  margin-bottom: 2px;
@@ -2618,6 +2618,76 @@ p {
2618
2618
  background: var(--input-disabled-bg);
2619
2619
  }
2620
2620
 
2621
+ .toolbar[data-v-ace0040e] {
2622
+ display: flex;
2623
+ flex-wrap: wrap;
2624
+ gap: 5px;
2625
+ padding: 10px;
2626
+ background-color: #f0f0f0;
2627
+ border-bottom: 1px solid #ccc;
2628
+ }
2629
+ button[data-v-ace0040e]:hover {
2630
+ background-color: #e0e0e0;
2631
+ }
2632
+ input[type="color"][data-v-ace0040e],
2633
+ input[type="number"][data-v-ace0040e] {
2634
+ width: 40px;
2635
+ height: 30px;
2636
+ padding: 0;
2637
+ border: 1px solid #ccc;
2638
+ border-radius: 3px;
2639
+ }
2640
+
2641
+ .rich-text-editor[data-v-e3cd444d] {
2642
+ font-family: Arial, sans-serif;
2643
+ max-width: 800px;
2644
+ margin: 0 auto;
2645
+ }
2646
+ [contenteditable='true'][data-v-e3cd444d] {
2647
+ white-space: pre-wrap;
2648
+ word-wrap: break-word;
2649
+ outline: none;
2650
+ border: none;
2651
+ height: 100%;
2652
+ }
2653
+ .editor-container[data-v-e3cd444d] {
2654
+ display: flex;
2655
+ border: 1px solid #ccc;
2656
+ border-radius: 4px;
2657
+ overflow: hidden;
2658
+ }
2659
+ .content-area[data-v-e3cd444d],
2660
+ .preview-area[data-v-e3cd444d] {
2661
+ flex: 1;
2662
+ min-height: 300px;
2663
+ padding: 10px;
2664
+ overflow-y: auto;
2665
+ }
2666
+ .content-area[data-v-e3cd444d]:focus {
2667
+ outline: none;
2668
+ }
2669
+ .split-view .content-area[data-v-e3cd444d],
2670
+ .split-view .preview-area[data-v-e3cd444d] {
2671
+ width: 50%;
2672
+ }
2673
+ .preview-area[data-v-e3cd444d] {
2674
+ background-color: #f9f9f9;
2675
+ border-left: 1px solid #ccc;
2676
+ }
2677
+ @media (max-width: 768px) {
2678
+ .split-view[data-v-e3cd444d] {
2679
+ flex-direction: column;
2680
+ }
2681
+ .split-view .content-area[data-v-e3cd444d],
2682
+ .split-view .preview-area[data-v-e3cd444d] {
2683
+ width: 100%;
2684
+ }
2685
+ .preview-area[data-v-e3cd444d] {
2686
+ border-left: none;
2687
+ border-top: 1px solid #ccc;
2688
+ }
2689
+ }
2690
+
2621
2691
  .chart-line {
2622
2692
  width: 100%;
2623
2693
  height: 300px;
@@ -2838,6 +2908,12 @@ p {
2838
2908
  .rounded {
2839
2909
  border-radius: calc(var(--btn-border-radius) / 2);
2840
2910
  }
2911
+ .round-extra {
2912
+ border-radius: calc(var(--btn-border-radius) * 2);
2913
+ }
2914
+ .round-none {
2915
+ border-radius: 0 ;
2916
+ }
2841
2917
  .flex-center {
2842
2918
  justify-content: center;
2843
2919
  align-items: center;
@@ -2941,6 +3017,42 @@ p {
2941
3017
  inset-inline-start: 0;
2942
3018
  inset-inline-end: 0;
2943
3019
  }
3020
+ .inset-inline-start, .start{
3021
+ inset-inline-start: 0;
3022
+ }
3023
+ .inset-inline-end, .end{
3024
+ inset-inline-end: 0;
3025
+ }
3026
+ .top, .top-0{
3027
+ top: 0;
3028
+ }
3029
+ .top-1{
3030
+ top: 1rem;
3031
+ }
3032
+ .top-2{
3033
+ top: 2rem;
3034
+ }
3035
+ .top-3{
3036
+ top: 3rem;
3037
+ }
3038
+ .top-4{
3039
+ top: 4rem;
3040
+ }
3041
+ .bottom, .bottom-0{
3042
+ bottom: 0;
3043
+ }
3044
+ .bottom-1{
3045
+ bottom: 1rem;
3046
+ }
3047
+ .bottom-2{
3048
+ bottom: 2rem;
3049
+ }
3050
+ .bottom-3{
3051
+ bottom: 3rem;
3052
+ }
3053
+ .bottom-4{
3054
+ bottom: 4rem;
3055
+ }
2944
3056
  .auto-flow-rows {
2945
3057
  grid-auto-flow: row;
2946
3058
  }
@@ -3882,11 +3994,36 @@ p {
3882
3994
  position: static !important;
3883
3995
  }
3884
3996
  .sticky,
3885
- .position-sticky {
3997
+ .position-sticky,
3998
+ .sticky-0,
3999
+ .position-sticky-0 {
3886
4000
  position: sticky !important;
3887
4001
  top: 0;
3888
4002
  align-self: start;
3889
-
4003
+ }
4004
+ .sticky-1,
4005
+ .position-sticky-1 {
4006
+ position: sticky !important;
4007
+ top: 1rem;
4008
+ align-self: start;
4009
+ }
4010
+ .sticky-2,
4011
+ .position-sticky-2 {
4012
+ position: sticky !important;
4013
+ top: 2rem;
4014
+ align-self: start;
4015
+ }
4016
+ .sticky-3,
4017
+ .position-sticky-3 {
4018
+ position: sticky !important;
4019
+ top: 3rem;
4020
+ align-self: start;
4021
+ }
4022
+ .sticky-4,
4023
+ .position-sticky-4 {
4024
+ position: sticky !important;
4025
+ top: 4rem;
4026
+ align-self: start;
3890
4027
  }
3891
4028
  .flex {
3892
4029
  display: flex;
@@ -3899,20 +4036,20 @@ p {
3899
4036
  .hide,
3900
4037
  .none,
3901
4038
  .display-none {
3902
- display: none;
4039
+ display: none !important;
3903
4040
  }
3904
4041
  .display-block {
3905
- display: block;
4042
+ display: block !important;
3906
4043
  }
3907
4044
  .block {
3908
4045
  display: block;
3909
- width: 100%;
4046
+ width: 100% !important;
3910
4047
  }
3911
4048
  .inline {
3912
- display: inline;
4049
+ display: inline !important;
3913
4050
  }
3914
4051
  .inline-block {
3915
- display: inline-block;
4052
+ display: inline-block !important;
3916
4053
  }
3917
4054
  .flex-end {
3918
4055
  justify-content: flex-end;
@@ -4203,6 +4340,24 @@ p {
4203
4340
  .grid-span-6 {
4204
4341
  grid-column: span 6;
4205
4342
  }
4343
+ .grid-span-row-1 {
4344
+ grid-row: span 1;
4345
+ }
4346
+ .grid-span-row-2 {
4347
+ grid-row: span 2;
4348
+ }
4349
+ .grid-span-row-3 {
4350
+ grid-row: span 3;
4351
+ }
4352
+ .grid-span-row-4 {
4353
+ grid-row: span 4;
4354
+ }
4355
+ .grid-span-row-5 {
4356
+ grid-row: span 5;
4357
+ }
4358
+ .grid-span-row-6 {
4359
+ grid-row: span 6;
4360
+ }
4206
4361
  .overflow-hidden {
4207
4362
  overflow: hidden;
4208
4363
  }
@@ -4320,6 +4475,18 @@ p {
4320
4475
  border-radius: var(--btn-border-radius);
4321
4476
  }
4322
4477
 
4478
+ .m_rounded {
4479
+ border-radius: calc(var(--btn-border-radius) / 2);
4480
+ }
4481
+
4482
+ .m_round-extra {
4483
+ border-radius: calc(var(--btn-border-radius) * 2);
4484
+ }
4485
+
4486
+ .m_round-none {
4487
+ border-radius: 0 !important;
4488
+ }
4489
+
4323
4490
  .m_flex-center {
4324
4491
  justify-items: center;
4325
4492
  align-items: center;
@@ -4347,7 +4514,7 @@ p {
4347
4514
  }
4348
4515
 
4349
4516
  .m_align-items-center {
4350
- align-items: center;
4517
+ align-items: center !important;
4351
4518
  }
4352
4519
 
4353
4520
  .m_align-items-end {
@@ -4442,13 +4609,6 @@ p {
4442
4609
  inset-inline-end: 0px;
4443
4610
  }
4444
4611
 
4445
- .m_positioned-full {
4446
- top: 0;
4447
- bottom: 0;
4448
- inset-inline-start: 0;
4449
- inset-inline-end: 0;
4450
- }
4451
-
4452
4612
 
4453
4613
  .m_auto-flow-rows {
4454
4614
  grid-auto-flow: row;
@@ -5582,10 +5742,42 @@ p {
5582
5742
  position: static !important;
5583
5743
  }
5584
5744
 
5745
+
5585
5746
  .m_sticky,
5586
- .m_position-sticky {
5747
+ .m_position-sticky,
5748
+ .m_sticky-0,
5749
+ .m_position-sticky-0 {
5587
5750
  position: sticky !important;
5588
5751
  top: 0;
5752
+ align-self: start;
5753
+ }
5754
+
5755
+ .m_sticky-1,
5756
+ .m_position-sticky-1 {
5757
+ position: sticky !important;
5758
+ top: 1rem;
5759
+ align-self: start;
5760
+ }
5761
+
5762
+ .m_sticky-2,
5763
+ .m_position-sticky-2 {
5764
+ position: sticky !important;
5765
+ top: 2rem;
5766
+ align-self: start;
5767
+ }
5768
+
5769
+ .m_sticky-3,
5770
+ .m_position-sticky-3 {
5771
+ position: sticky !important;
5772
+ top: 3rem;
5773
+ align-self: start;
5774
+ }
5775
+
5776
+ .m_sticky-4,
5777
+ .m_position-sticky-4 {
5778
+ position: sticky !important;
5779
+ top: 4rem;
5780
+ align-self: start;
5589
5781
  }
5590
5782
 
5591
5783
  .m_flex-stretch {
@@ -5974,6 +6166,29 @@ p {
5974
6166
  .m_grid-span-6 {
5975
6167
  grid-column: span 6;
5976
6168
  }
6169
+ .m_grid-span-row-1 {
6170
+ grid-row: span 1;
6171
+ }
6172
+
6173
+ .m_grid-span-row-2 {
6174
+ grid-row: span 2;
6175
+ }
6176
+
6177
+ .m_grid-span-row-3 {
6178
+ grid-row: span 3;
6179
+ }
6180
+
6181
+ .m_grid-span-row-4 {
6182
+ grid-row: span 4;
6183
+ }
6184
+
6185
+ .m_grid-span-row-5 {
6186
+ grid-row: span 5;
6187
+ }
6188
+
6189
+ .m_grid-span-row-6 {
6190
+ grid-row: span 6;
6191
+ }
5977
6192
 
5978
6193
  .m_overflow-hidden {
5979
6194
  overflow: hidden;
@@ -5987,15 +6202,15 @@ p {
5987
6202
  overflow: unset;
5988
6203
  }
5989
6204
 
5990
- .overflow-scroll {
6205
+ .m_overflow-scroll {
5991
6206
  overflow: scroll;
5992
6207
  }
5993
6208
 
5994
- .overflow-x-scroll {
6209
+ .m_overflow-x-scroll {
5995
6210
  overflow-x: scroll;
5996
6211
  }
5997
6212
 
5998
- .overflow-y-scroll {
6213
+ .m_overflow-y-scroll {
5999
6214
  overflow-y: scroll;
6000
6215
  }
6001
6216
 
@@ -6032,6 +6247,58 @@ p {
6032
6247
  inset-inline-start: 0;
6033
6248
  inset-inline-end: 0;
6034
6249
  }
6250
+
6251
+ .m_inset-inline-start,
6252
+ .m_start {
6253
+ inset-inline-start: 0;
6254
+ }
6255
+
6256
+ .m_inset-inline-end,
6257
+ .m_end {
6258
+ inset-inline-end: 0;
6259
+ }
6260
+
6261
+ .m_top,
6262
+ .m_top-0 {
6263
+ top: 0;
6264
+ }
6265
+
6266
+ .m_top-1 {
6267
+ top: 1rem;
6268
+ }
6269
+
6270
+ .m_top-2 {
6271
+ top: 2rem;
6272
+ }
6273
+
6274
+ .m_top-3 {
6275
+ top: 3rem;
6276
+ }
6277
+
6278
+ .m_top-4 {
6279
+ top: 4rem;
6280
+ }
6281
+
6282
+ .m_bottom,
6283
+ .m_bottom-0 {
6284
+ bottom: 0;
6285
+ }
6286
+
6287
+ .m_bottom-1 {
6288
+ bottom: 1rem;
6289
+ }
6290
+
6291
+ .m_bottom-2 {
6292
+ bottom: 2rem;
6293
+ }
6294
+
6295
+ .m_bottom-3 {
6296
+ bottom: 3rem;
6297
+ }
6298
+
6299
+ .m_bottom-4 {
6300
+ bottom: 4rem;
6301
+ }
6035
6302
  }
6036
6303
  input,
6037
6304
  textarea,
@@ -6428,20 +6695,32 @@ select {
6428
6695
  .txtwhite {
6429
6696
  color: var(--bgl-white);
6430
6697
  }
6431
- .font-light,
6432
- .txt-light {
6698
+ .font-thin,
6699
+ .txt-thin {
6433
6700
  font-weight: 100;
6434
6701
  }
6435
- .bold,
6436
- .txt-bold,
6437
- .font-bold {
6438
- font-weight: 700;
6702
+ .extra-light,
6703
+ .font-extra-light,
6704
+ .txt-extra-light,
6705
+ .font-ultra-light,
6706
+ .txt-ultra-light {
6707
+ font-weight: 200;
6708
+ }
6709
+ .light,
6710
+ .txt-light,
6711
+ .font-light {
6712
+ font-weight: 300;
6439
6713
  }
6440
6714
  .regular,
6441
6715
  .txt-regular,
6442
6716
  .font-regular {
6443
6717
  font-weight: 400;
6444
6718
  }
6719
+ .medium,
6720
+ .txt-medium,
6721
+ .font-medium {
6722
+ font-weight: 500;
6723
+ }
6445
6724
  .semi,
6446
6725
  .semibold,
6447
6726
  .txt-semi,
@@ -6451,6 +6730,23 @@ select {
6451
6730
  .font-semibold {
6452
6731
  font-weight: 600;
6453
6732
  }
6733
+ .bold,
6734
+ .txt-bold,
6735
+ .font-bold {
6736
+ font-weight: 700;
6737
+ }
6738
+ .extra-bold,
6739
+ .font-extra-bold,
6740
+ .txt-extra-bold,
6741
+ .font-ultra-bold,
6742
+ .txt-ultra-bold {
6743
+ font-weight: 800;
6744
+ }
6745
+ .black,
6746
+ .txt-black,
6747
+ .font-black {
6748
+ font-weight: 900;
6749
+ }
6454
6750
  .line-height-1 {
6455
6751
  line-height: 1;
6456
6752
  }
@@ -6736,15 +7032,23 @@ select {
6736
7032
  color: var(--bgl-white);
6737
7033
  }
6738
7034
 
6739
- .m_font-light,
6740
- .m_txt-light {
7035
+ .m_font-thin,
7036
+ .m_txt-thin {
6741
7037
  font-weight: 100;
6742
7038
  }
6743
7039
 
6744
- .m_bold,
6745
- .m_txt-bold,
6746
- .m_font-bold {
6747
- font-weight: 700;
7040
+ .m_extra-light,
7041
+ .m_font-extra-light,
7042
+ .m_txt-extra-light,
7043
+ .m_font-ultra-light,
7044
+ .m_txt-ultra-light {
7045
+ font-weight: 200;
7046
+ }
7047
+
7048
+ .m_light,
7049
+ .m_txt-light,
7050
+ .m_font-light {
7051
+ font-weight: 300;
6748
7052
  }
6749
7053
 
6750
7054
  .m_regular,
@@ -6753,6 +7057,12 @@ select {
6753
7057
  font-weight: 400;
6754
7058
  }
6755
7059
 
7060
+ .m_medium,
7061
+ .m_txt-medium,
7062
+ .m_font-medium {
7063
+ font-weight: 500;
7064
+ }
7065
+
6756
7066
  .m_semi,
6757
7067
  .m_semibold,
6758
7068
  .m_txt-semi,
@@ -6763,7 +7073,25 @@ select {
6763
7073
  font-weight: 600;
6764
7074
  }
6765
7075
 
7076
+ .m_bold,
7077
+ .m_txt-bold,
7078
+ .m_font-bold {
7079
+ font-weight: 700;
7080
+ }
7081
+
7082
+ .m_extra-bold,
7083
+ .m_font-extra-bold,
7084
+ .m_txt-extra-bold,
7085
+ .m_font-ultra-bold,
7086
+ .m_txt-ultra-bold {
7087
+ font-weight: 800;
7088
+ }
6766
7089
 
7090
+ .m_black,
7091
+ .m_txt-black,
7092
+ .m_font-black {
7093
+ font-weight: 900;
7094
+ }
6767
7095
 
6768
7096
  .m_line-height-1 {
6769
7097
  line-height: 1;
@@ -7371,28 +7699,28 @@ select {
7371
7699
  border-inline-end: 1px solid var(--border-color)
7372
7700
  }
7373
7701
  .border-bottom-none {
7374
- border-bottom: none
7702
+ border-bottom: none !important;
7375
7703
  }
7376
7704
  .border-top-none {
7377
- border-top: none
7705
+ border-top: none !important
7378
7706
  }
7379
7707
  .border-start-none {
7380
- border-inline-start: none
7708
+ border-inline-start: none !important
7381
7709
  }
7382
7710
  .border-end-none {
7383
- border-inline-end: none
7711
+ border-inline-end: none !important
7384
7712
  }
7385
7713
  .border-inner-bottom-none>* {
7386
- border-bottom: none
7714
+ border-bottom: none !important
7387
7715
  }
7388
7716
  .border-inner-top-none>* {
7389
- border-top: none
7717
+ border-top: none !important
7390
7718
  }
7391
7719
  .border-inner-start-none>* {
7392
- border-inline-start: none
7720
+ border-inline-start: none !important
7393
7721
  }
7394
7722
  .border-inner-end-none>* {
7395
- border-inline-end: none
7723
+ border-inline-end: none !important
7396
7724
  }
7397
7725
  @media screen and (max-width: 910px) {
7398
7726
  .m_opacity-0 {
@@ -7857,35 +8185,35 @@ select {
7857
8185
  }
7858
8186
 
7859
8187
  .m_border-bottom-none {
7860
- border-bottom: none
8188
+ border-bottom: none !important
7861
8189
  }
7862
8190
 
7863
8191
  .m_border-top-none {
7864
- border-top: none
8192
+ border-top: none !important
7865
8193
  }
7866
8194
 
7867
8195
  .m_border-start-none {
7868
- border-inline-start: none
8196
+ border-inline-start: none !important
7869
8197
  }
7870
8198
 
7871
8199
  .m_border-end-none {
7872
- border-inline-end: none
8200
+ border-inline-end: none !important
7873
8201
  }
7874
8202
 
7875
8203
  .m_border-inner-bottom-none>* {
7876
- border-bottom: none
8204
+ border-bottom: none !important
7877
8205
  }
7878
8206
 
7879
8207
  .m_border-inner-top-none>* {
7880
- border-top: none
8208
+ border-top: none !important
7881
8209
  }
7882
8210
 
7883
8211
  .m_border-inner-start-none>* {
7884
- border-inline-start: none
8212
+ border-inline-start: none !important
7885
8213
  }
7886
8214
 
7887
8215
  .m_border-inner-end-none>* {
7888
- border-inline-end: none
8216
+ border-inline-end: none !important
7889
8217
  }
7890
8218
  }
7891
8219
  /* @import url("https://fonts.googleapis.com/css2?family=Noto+Sans+Hebrew:wght@300;400;500;600;700&display=swap"); */
@@ -7904,6 +8232,7 @@ select {
7904
8232
  --bgl-gray-light: #f5f8fa;
7905
8233
  --bgl-gray-80: #e8ecef;
7906
8234
  --bgl-gray-20: rgba(183, 183, 183, 0.2);
8235
+ --bgl-gray-40: rgba(183, 183, 183, 0.4);
7907
8236
  --bgl-pink: #f1416c;
7908
8237
  --bgl-red: #ed6c6f;
7909
8238
  --bgl-red-tint: #fbe2e2;