@bagelink/vue 0.0.322 → 0.0.335

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 (72) hide show
  1. package/dist/components/ComboBox.vue.d.ts.map +1 -1
  2. package/dist/components/MaterialIcon.vue.d.ts +4 -2
  3. package/dist/components/MaterialIcon.vue.d.ts.map +1 -1
  4. package/dist/components/Modal.vue.d.ts +0 -1
  5. package/dist/components/ModalBglForm.vue.d.ts.map +1 -1
  6. package/dist/components/Popover.vue.d.ts +10 -0
  7. package/dist/components/Popover.vue.d.ts.map +1 -0
  8. package/dist/components/form/BglForm.vue.d.ts +1 -9
  9. package/dist/components/form/BglForm.vue.d.ts.map +1 -1
  10. package/dist/components/form/inputs/DateInput.vue.d.ts +0 -1
  11. package/dist/components/form/inputs/SelectInput.vue.d.ts +22 -16
  12. package/dist/components/form/inputs/SelectInput.vue.d.ts.map +1 -1
  13. package/dist/components/form/inputs/TextArea.vue.d.ts +3 -1
  14. package/dist/components/form/inputs/TextArea.vue.d.ts.map +1 -1
  15. package/dist/components/form/inputs/TextInput.vue.d.ts.map +1 -1
  16. package/dist/components/formkit/index.d.ts +1 -14
  17. package/dist/components/formkit/index.d.ts.map +1 -1
  18. package/dist/components/index.d.ts +0 -2
  19. package/dist/components/index.d.ts.map +1 -1
  20. package/dist/components/layout/Layout.vue.d.ts +8 -0
  21. package/dist/components/layout/Layout.vue.d.ts.map +1 -1
  22. package/dist/components/layout/SidebarMenu.vue.d.ts.map +1 -1
  23. package/dist/components/layout/TabbedLayout.vue.d.ts +38 -0
  24. package/dist/components/layout/TabbedLayout.vue.d.ts.map +1 -0
  25. package/dist/components/layout/Tabs.vue.d.ts +24 -0
  26. package/dist/components/layout/Tabs.vue.d.ts.map +1 -0
  27. package/dist/components/layout/TabsBody.vue.d.ts +21 -0
  28. package/dist/components/layout/TabsBody.vue.d.ts.map +1 -0
  29. package/dist/components/layout/TabsNav.vue.d.ts +25 -0
  30. package/dist/components/layout/TabsNav.vue.d.ts.map +1 -0
  31. package/dist/components/layout/index.d.ts +4 -0
  32. package/dist/components/layout/index.d.ts.map +1 -1
  33. package/dist/components/layout/tabsManager.d.ts +4 -0
  34. package/dist/components/layout/tabsManager.d.ts.map +1 -0
  35. package/dist/index.cjs +783 -2035
  36. package/dist/index.d.ts +0 -1
  37. package/dist/index.mjs +785 -2037
  38. package/dist/style.css +2129 -695
  39. package/dist/types/index.d.ts +7 -1
  40. package/dist/types/index.d.ts.map +1 -1
  41. package/dist/types/materialIcon.d.ts +2 -0
  42. package/dist/types/materialIcon.d.ts.map +1 -0
  43. package/dist/types/materialIcons.d.ts +1 -1
  44. package/dist/types/materialIcons.d.ts.map +1 -1
  45. package/dist/utils/index.d.ts.map +1 -1
  46. package/package.json +1 -1
  47. package/src/components/MaterialIcon.vue +3 -2
  48. package/src/components/PageTitle.vue +10 -20
  49. package/src/components/form/BglField.vue +2 -2
  50. package/src/components/form/BglForm.vue +49 -53
  51. package/src/components/form/inputs/SelectInput.vue +128 -484
  52. package/src/components/form/inputs/TextInput.vue +158 -112
  53. package/src/components/index.ts +0 -2
  54. package/src/components/layout/Layout.vue +34 -13
  55. package/src/components/layout/SidebarMenu.vue +22 -22
  56. package/src/components/layout/TabbedLayout.vue +79 -0
  57. package/src/components/layout/Tabs.vue +19 -0
  58. package/src/components/layout/TabsBody.vue +15 -0
  59. package/src/components/layout/TabsNav.vue +48 -0
  60. package/src/components/layout/index.ts +4 -0
  61. package/src/components/layout/tabsManager.ts +18 -0
  62. package/src/styles/appearance.css +81 -0
  63. package/src/styles/bagel.css +2 -0
  64. package/src/styles/layout.css +162 -17
  65. package/src/styles/mobilLayout.css +1476 -0
  66. package/src/styles/text.css +153 -1
  67. package/src/types/index.ts +9 -1
  68. package/src/types/materialIcons.ts +1180 -1178
  69. package/src/utils/BagelFormUtils.ts +1 -1
  70. package/src/utils/index.ts +0 -1
  71. package/src/components/ComboBox.vue +0 -165
  72. package/src/components/TabbedLayout.vue +0 -87
@@ -0,0 +1,1476 @@
1
+ @media screen and (max-width: 910px) {
2
+ .m_block {
3
+ display: block !important;
4
+ }
5
+
6
+ .m_inline {
7
+ display: inline !important;
8
+ }
9
+
10
+ .m_inline-block {
11
+ display: inline-block !important;
12
+ }
13
+
14
+ .m_flex {
15
+ display: flex !important;
16
+ }
17
+
18
+ .m_grid {
19
+ display: grid !important;
20
+ }
21
+
22
+ .m_hide,
23
+ .m_none,
24
+ .m_display-none {
25
+ display: none !important;
26
+ }
27
+
28
+ .m_inline-grid {
29
+ display: inline-grid;
30
+ }
31
+
32
+ .m_fill {
33
+ width: 100vw;
34
+ height: 100vh;
35
+ }
36
+
37
+ .m_justify-items-center {
38
+ justify-items: center;
39
+ }
40
+
41
+ .m_justify-content-center {
42
+ justify-content: center;
43
+ }
44
+
45
+ .m_justify-content-start {
46
+ justify-content: start;
47
+ }
48
+
49
+ .m_align-content-center {
50
+ align-content: center;
51
+ }
52
+
53
+ .m_align-items-top {
54
+ align-items: flex-start !important;
55
+ }
56
+
57
+ .m_align-items-center {
58
+ align-items: center;
59
+ }
60
+
61
+ .m_align-items-end {
62
+ align-items: end !important;
63
+ }
64
+
65
+ .m_fit-content {
66
+ width: fit-content;
67
+ height: fit-content;
68
+ }
69
+
70
+ .m_auto-flow-columns {
71
+ grid-auto-flow: column;
72
+ }
73
+
74
+ .m_grid-2-col {
75
+ grid-template-columns: 1fr 1fr;
76
+ }
77
+
78
+ .m_justify-content-between {
79
+ justify-content: space-between;
80
+ }
81
+
82
+ .m_justify-self-start {
83
+ justify-self: start;
84
+ }
85
+
86
+ .m_columns-max-content {
87
+ grid-auto-columns: max-content;
88
+ }
89
+
90
+ .m_rows-max-content {
91
+ grid-auto-rows: max-content;
92
+ }
93
+
94
+ .m_grid.overflow>* {
95
+ min-width: 0px;
96
+ overflow: auto;
97
+ }
98
+
99
+ .m_justify-content-around {
100
+ justify-content: space-between;
101
+ }
102
+
103
+ .m_justify-content-end {
104
+ justify-content: end;
105
+ }
106
+
107
+ .m_justify-self-end {
108
+ justify-self: end;
109
+ }
110
+
111
+ .m_justify-self-center {
112
+ justify-self: center;
113
+ }
114
+
115
+ .m_position-start {
116
+ position: absolute;
117
+ top: 0px;
118
+ inset-inline-start: 0px;
119
+ }
120
+
121
+ .m_position-end {
122
+ position: absolute;
123
+ top: 0px;
124
+ inset-inline-end: 0px;
125
+ }
126
+
127
+ .m_positioned-full {
128
+ top: 0;
129
+ bottom: 0;
130
+ inset-inline-start: 0;
131
+ inset-inline-end: 0;
132
+ }
133
+
134
+ .m_auto-flow-rows {
135
+ grid-auto-flow: row;
136
+ }
137
+
138
+ .m_align-items-start {
139
+ align-items: start !important;
140
+ }
141
+
142
+ .m_align-self-end {
143
+ align-self: end;
144
+ }
145
+
146
+ .min-100,
147
+ .m_min100 {
148
+ min-height: 100%;
149
+ }
150
+
151
+ .m_w-100,
152
+ .m_width-100 {
153
+ width: 100% !important;
154
+ }
155
+
156
+ .m_w300,
157
+ .m_w350,
158
+ .m_w400,
159
+ .m_w450,
160
+ .m_w500,
161
+ .m_w550,
162
+ .m_w600,
163
+ .m_w650,
164
+ .m_w700,
165
+ .m_w750,
166
+ .m_w770,
167
+ .m_w800,
168
+ .m_w850,
169
+ .m_w900 {
170
+ margin-inline-start: auto;
171
+ margin-inline-end: auto;
172
+ width: 98%;
173
+ }
174
+
175
+ .m_w10 {
176
+ max-width: 10px;
177
+ }
178
+
179
+ .m_w20 {
180
+ max-width: 20px;
181
+ }
182
+
183
+ .m_w20 {
184
+ max-width: 20px;
185
+ }
186
+
187
+ .m_w30 {
188
+ max-width: 30px;
189
+ }
190
+
191
+ .m_w40 {
192
+ max-width: 40px;
193
+ }
194
+
195
+ .m_w50 {
196
+ max-width: 50px;
197
+ }
198
+
199
+ .m_w60 {
200
+ max-width: 60px;
201
+ }
202
+
203
+ .m_w70 {
204
+ max-width: 70px;
205
+ }
206
+
207
+ .m_w80 {
208
+ max-width: 80px;
209
+ }
210
+
211
+ .m_w90 {
212
+ max-width: 90px;
213
+ }
214
+
215
+ .m_w100 {
216
+ max-width: 100px;
217
+ }
218
+
219
+ .m_w150 {
220
+ max-width: 150px;
221
+ }
222
+
223
+ .m_w200 {
224
+ max-width: 200px;
225
+ }
226
+
227
+ .m_w250 {
228
+ max-width: 250px;
229
+ }
230
+
231
+ .m_w300 {
232
+ max-width: 300px;
233
+ }
234
+
235
+ .m_w350 {
236
+ max-width: 350px;
237
+ }
238
+
239
+ .m_w400 {
240
+ max-width: 400px;
241
+ }
242
+
243
+ .m_w450 {
244
+ max-width: 450px;
245
+ }
246
+
247
+ .m_w500 {
248
+ max-width: 500px;
249
+ }
250
+
251
+ .m_w550 {
252
+ max-width: 550px;
253
+ }
254
+
255
+ .m_w600 {
256
+ max-width: 600px;
257
+ }
258
+
259
+ .m_w650 {
260
+ max-width: 650px;
261
+ }
262
+
263
+ .m_w700 {
264
+ max-width: 700px;
265
+ }
266
+
267
+ .m_w750 {
268
+ max-width: 750px;
269
+ }
270
+
271
+ .m_w770 {
272
+ max-width: 770px;
273
+ }
274
+
275
+ .m_w800 {
276
+ max-width: 800px;
277
+ }
278
+
279
+ .m_w850 {
280
+ max-width: 850px;
281
+ }
282
+
283
+ .m_w-all,
284
+ .m_wall {
285
+ width: -webkit-fill-available;
286
+ }
287
+
288
+ .m_h-all,
289
+ .m_hall {
290
+ height: -webkit-fill-available;
291
+ }
292
+
293
+ .m_gap-0 {
294
+ gap: 0;
295
+ }
296
+
297
+ .m_gap-025 {
298
+ gap: 0.25rem;
299
+ }
300
+
301
+ .m_gap-05 {
302
+ gap: 0.5rem;
303
+ }
304
+
305
+ .m_gap-075 {
306
+ gap: 0.75rem;
307
+ }
308
+
309
+ .m_gap-1 {
310
+ gap: 1rem;
311
+ }
312
+
313
+ .m_gap-2 {
314
+ gap: 2rem;
315
+ }
316
+
317
+ .m_gap-3 {
318
+ gap: 3rem;
319
+ }
320
+
321
+ .m_gap-4 {
322
+ gap: 4rem;
323
+ }
324
+
325
+ .m_gap-5 {
326
+ gap: 5rem;
327
+ }
328
+
329
+ .m_gap-col-0,
330
+ .m_col-gap-0 {
331
+ column-gap: 0rem;
332
+ }
333
+
334
+ .m_gap-col-025,
335
+ .m_col-gap-025 {
336
+ column-gap: 0.25rem;
337
+ }
338
+
339
+ .m_gap-col-05,
340
+ .m_col-gap-05 {
341
+ column-gap: 0.5rem;
342
+ }
343
+
344
+ .m_gap-col-075,
345
+ .m_col-gap-075 {
346
+ column-gap: 0.75rem;
347
+ }
348
+
349
+ .m_gap-col-1,
350
+ .m_col-gap-1 {
351
+ column-gap: 1rem;
352
+ }
353
+
354
+ .m_gap-col-2,
355
+ .m_col-gap-2 {
356
+ column-gap: 2rem;
357
+ }
358
+
359
+ .m_gap-col-3,
360
+ .m_col-gap-3 {
361
+ column-gap: 3rem;
362
+ }
363
+
364
+ .m_gap-col-4,
365
+ .m_col-gap-4 {
366
+ column-gap: 4rem;
367
+ }
368
+
369
+ .m_gap-col-5,
370
+ .m_col-gap-5 {
371
+ column-gap: 5rem;
372
+ }
373
+
374
+ .m_gap-row-0,
375
+ .m_row-gap-0 {
376
+ row-gap: 0rem;
377
+ }
378
+
379
+ .m_gap-row-025,
380
+ .m_row-gap-025 {
381
+ row-gap: 0.25rem;
382
+ }
383
+
384
+ .m_gap-row-05,
385
+ .m_row-gap-05 {
386
+ row-gap: 0.5rem;
387
+ }
388
+
389
+ .m_gap-row-075,
390
+ .m_row-gap-075 {
391
+ row-gap: 0.75rem;
392
+ }
393
+
394
+ .m_gap-row-1,
395
+ .m_row-gap-1 {
396
+ row-gap: 1rem;
397
+ }
398
+
399
+ .m_gap-row-2,
400
+ .m_row-gap-2 {
401
+ row-gap: 2rem;
402
+ }
403
+
404
+ .m_gap-row-3,
405
+ .m_row-gap-3 {
406
+ row-gap: 3rem;
407
+ }
408
+
409
+ .m_gap-row-4,
410
+ .m_row-gap-4 {
411
+ row-gap: 4rem;
412
+ }
413
+
414
+ .m_gap-row-5,
415
+ .m_row-gap-5 {
416
+ row-gap: 5rem;
417
+ }
418
+
419
+ .m_flex-wrap {
420
+ flex-wrap: wrap;
421
+ }
422
+
423
+ .m_column {
424
+ flex-direction: column;
425
+ }
426
+
427
+ .m_row {
428
+ flex-direction: row;
429
+ }
430
+
431
+ .m_flex-grow {
432
+ flex-grow: 1;
433
+ }
434
+
435
+ .m_flex-shrink {
436
+ flex-shrink: 1;
437
+ }
438
+
439
+ .m_flex-2-col {
440
+ max-width: 50%;
441
+ flex: 1 1 calc(50% - 2rem);
442
+ }
443
+
444
+ .m_flex-3-col {
445
+ flex: 1 1 33.33333%;
446
+ }
447
+
448
+ .m_mb-auto {
449
+ margin-bottom: auto !important;
450
+ }
451
+
452
+ .m_mb-0 {
453
+ margin-bottom: 0rem !important;
454
+ }
455
+
456
+ .m_mb-025 {
457
+ margin-bottom: 0.25rem !important;
458
+ }
459
+
460
+ .m_mb-05 {
461
+ margin-bottom: 0.5rem !important;
462
+ }
463
+
464
+ .m_mb-075 {
465
+ margin-bottom: 0.75rem !important;
466
+ }
467
+
468
+ .m_mb-1 {
469
+ margin-bottom: 1rem !important;
470
+ }
471
+
472
+ .m_mb-2 {
473
+ margin-bottom: 2rem !important;
474
+ }
475
+
476
+ .m_mb-3 {
477
+ margin-bottom: 3rem !important;
478
+ }
479
+
480
+ .m_mb-4 {
481
+ margin-bottom: 4rem !important;
482
+ }
483
+
484
+ .m_mt-auto {
485
+ margin-top: auto !important;
486
+ }
487
+
488
+ .m_mt-0 {
489
+ margin-top: 0rem !important;
490
+ }
491
+
492
+ .m_mt-025 {
493
+ margin-top: 0.25rem !important;
494
+ }
495
+
496
+ .m_mt-05 {
497
+ margin-top: 0.5rem !important;
498
+ }
499
+
500
+ .m_mt-075 {
501
+ margin-top: 0.75rem !important;
502
+ }
503
+
504
+ .m_mt-1 {
505
+ margin-top: 1rem !important;
506
+ }
507
+
508
+ .m_mt-2 {
509
+ margin-top: 2rem !important;
510
+ }
511
+
512
+ .m_mt-3 {
513
+ margin-top: 3rem !important;
514
+ }
515
+
516
+ .m_mt-4 {
517
+ margin-top: 4rem !important;
518
+ }
519
+
520
+ .m_my-auto {
521
+ margin-top: auto !important;
522
+ margin-bottom: auto !important;
523
+ }
524
+
525
+ .m_my-0 {
526
+ margin-top: 0rem !important;
527
+ margin-bottom: 0rem !important;
528
+ }
529
+
530
+ .m_my-025 {
531
+ margin-top: 0.25rem !important;
532
+ margin-bottom: 0.25rem !important;
533
+ }
534
+
535
+ .m_my-05 {
536
+ margin-top: 0.5rem !important;
537
+ margin-bottom: 0.5rem !important;
538
+ }
539
+
540
+ .m_my-075 {
541
+ margin-top: 0.75rem !important;
542
+ margin-bottom: 0.75rem !important;
543
+ }
544
+
545
+ .m_my-1 {
546
+ margin-top: 1rem !important;
547
+ margin-bottom: 1rem !important;
548
+ }
549
+
550
+ .m_my-2 {
551
+ margin-top: 2rem !important;
552
+ margin-bottom: 2rem !important;
553
+ }
554
+
555
+ .m_my-3 {
556
+ margin-top: 3rem !important;
557
+ margin-bottom: 3rem !important;
558
+ }
559
+
560
+ .m_my-4 {
561
+ margin-top: 4rem !important;
562
+ margin-bottom: 4rem !important;
563
+ }
564
+
565
+ .m_ms-auto {
566
+ margin-inline-start: auto !important;
567
+ }
568
+
569
+ .m_ms-0 {
570
+ margin-inline-start: 0rem !important;
571
+ }
572
+
573
+ .m_ms-025 {
574
+ margin-inline-start: 0.25rem !important;
575
+ }
576
+
577
+ .m_ms-05 {
578
+ margin-inline-start: 0.5rem !important;
579
+ }
580
+
581
+ .m_ms-075 {
582
+ margin-inline-start: 0.75rem !important;
583
+ }
584
+
585
+ .m_ms-1 {
586
+ margin-inline-start: 1rem !important;
587
+ }
588
+
589
+ .m_ms-2 {
590
+ margin-inline-start: 2rem !important;
591
+ }
592
+
593
+ .m_ms-3 {
594
+ margin-inline-start: 3rem !important;
595
+ }
596
+
597
+ .m_ms-4 {
598
+ margin-inline-start: 4rem !important;
599
+ }
600
+
601
+ .m_me-auto {
602
+ margin-inline-end: auto !important;
603
+ }
604
+
605
+ .m_me-0 {
606
+ margin-inline-end: 0rem !important;
607
+ }
608
+
609
+ .m_me-025 {
610
+ margin-inline-end: 0.25rem !important;
611
+ }
612
+
613
+ .m_me-05 {
614
+ margin-inline-end: 0.5rem !important;
615
+ }
616
+
617
+ .m_me-075 {
618
+ margin-inline-end: 0.75rem !important;
619
+ }
620
+
621
+ .m_me-1 {
622
+ margin-inline-end: 1rem !important;
623
+ }
624
+
625
+ .m_me-2 {
626
+ margin-inline-end: 2rem !important;
627
+ }
628
+
629
+ .m_me-3 {
630
+ margin-inline-end: 3rem !important;
631
+ }
632
+
633
+ .m_me-4 {
634
+ margin-inline-end: 4rem !important;
635
+ }
636
+
637
+ .mx-auto,
638
+ .m_margin-auto {
639
+ margin-inline-start: auto !important;
640
+ margin-inline-end: auto !important;
641
+ }
642
+
643
+ .m_mx-0 {
644
+ margin-inline-start: 0rem !important;
645
+ margin-inline-end: 0rem !important;
646
+ }
647
+
648
+ .m_mx-025 {
649
+ margin-inline-start: 0.25rem !important;
650
+ margin-inline-end: 0.25rem !important;
651
+ }
652
+
653
+ .m_mx-05 {
654
+ margin-inline-start: 0.5rem !important;
655
+ margin-inline-end: 0.5rem !important;
656
+ }
657
+
658
+ .m_mx-075 {
659
+ margin-inline-start: 0.75rem !important;
660
+ margin-inline-end: 0.75rem !important;
661
+ }
662
+
663
+ .m_mx-1 {
664
+ margin-inline-start: 1rem !important;
665
+ margin-inline-end: 1rem !important;
666
+ }
667
+
668
+ .m_mx-2 {
669
+ margin-inline-start: 2rem !important;
670
+ margin-inline-end: 2rem !important;
671
+ }
672
+
673
+ .m_mx-3 {
674
+ margin-inline-start: 3rem !important;
675
+ margin-inline-end: 3rem !important;
676
+ }
677
+
678
+ .m_mx-4 {
679
+ margin-inline-start: 4rem !important;
680
+ margin-inline-end: 4rem !important;
681
+ }
682
+
683
+ .m_m-auto {
684
+ margin: auto !important;
685
+ }
686
+
687
+ .m_m-0 {
688
+ margin: 0rem !important;
689
+ }
690
+
691
+ .m_m-025 {
692
+ margin: 0.25rem !important;
693
+ }
694
+
695
+ .m_m-05 {
696
+ margin: 0.5rem !important;
697
+ }
698
+
699
+ .m_m-075 {
700
+ margin: 0.75rem !important;
701
+ }
702
+
703
+ .m_m-1 {
704
+ margin: 1rem !important;
705
+ }
706
+
707
+ .m_m-2 {
708
+ margin: 2rem !important;
709
+ }
710
+
711
+ .m_m-3 {
712
+ margin: 3rem !important;
713
+ }
714
+
715
+ .m_m-4 {
716
+ margin: 4rem !important;
717
+ }
718
+
719
+ .m_-mb-025 {
720
+ margin-bottom: -0.25rem !important;
721
+ }
722
+
723
+ .m_-mb-05 {
724
+ margin-bottom: -0.5rem !important;
725
+ }
726
+
727
+ .m_-mb-075 {
728
+ margin-bottom: -0.75rem !important;
729
+ }
730
+
731
+ .m_-mb-1 {
732
+ margin-bottom: -1rem !important;
733
+ }
734
+
735
+ .m_-mb-2 {
736
+ margin-bottom: -2rem !important;
737
+ }
738
+
739
+ .m_-mb-3 {
740
+ margin-bottom: -3rem !important;
741
+ }
742
+
743
+ .m_-mb-4 {
744
+ margin-bottom: -4rem !important;
745
+ }
746
+
747
+ .m_-mt-025 {
748
+ margin-top: -0.25rem !important;
749
+ }
750
+
751
+ .m_-mt-05 {
752
+ margin-top: -0.5rem !important;
753
+ }
754
+
755
+ .m_-mt-075 {
756
+ margin-top: 0.75rem !important;
757
+ }
758
+
759
+ .m_-mt-1 {
760
+ margin-top: -1rem !important;
761
+ }
762
+
763
+ .m_-mt-2 {
764
+ margin-top: -2rem !important;
765
+ }
766
+
767
+ .m_-mt-3 {
768
+ margin-top: -3rem !important;
769
+ }
770
+
771
+ .m_-mt-4 {
772
+ margin-top: -4rem !important;
773
+ }
774
+
775
+ .m_-my-025 {
776
+ margin-top: -0.25rem !important;
777
+ margin-bottom: -0.25rem !important;
778
+ }
779
+
780
+ .m_-my-05 {
781
+ margin-top: -0.5rem !important;
782
+ margin-bottom: -0.5rem !important;
783
+ }
784
+
785
+ .m_-my-075 {
786
+ margin-top: 0.75rem !important;
787
+ margin-bottom: 0.75rem !important;
788
+ }
789
+
790
+ .m_-my-1 {
791
+ margin-top: -1rem !important;
792
+ margin-bottom: -1rem !important;
793
+ }
794
+
795
+ .m_-my-2 {
796
+ margin-top: -2rem !important;
797
+ margin-bottom: -2rem !important;
798
+ }
799
+
800
+ .m_-my-3 {
801
+ margin-top: -3rem !important;
802
+ margin-bottom: -3rem !important;
803
+ }
804
+
805
+ .m_-my-4 {
806
+ margin-top: -4rem !important;
807
+ margin-bottom: -4rem !important;
808
+ }
809
+
810
+ .m_-ms-025 {
811
+ margin-inline-start: -0.25rem !important;
812
+ }
813
+
814
+ .m_-ms-05 {
815
+ margin-inline-start: -0.5rem !important;
816
+ }
817
+
818
+ .m_-ms-075 {
819
+ margin-inline-start: -0.75rem !important;
820
+ }
821
+
822
+ .m_-ms-1 {
823
+ margin-inline-start: -1rem !important;
824
+ }
825
+
826
+ .m_-ms-2 {
827
+ margin-inline-start: -2rem !important;
828
+ }
829
+
830
+ .m_-ms-3 {
831
+ margin-inline-start: -3rem !important;
832
+ }
833
+
834
+ .m_-ms-4 {
835
+ margin-inline-start: -4rem !important;
836
+ }
837
+
838
+ .m_-me-025 {
839
+ margin-inline-end: -0.25rem !important;
840
+ }
841
+
842
+ .m_-me-05 {
843
+ margin-inline-end: -0.5rem !important;
844
+ }
845
+
846
+ .m_-me-075 {
847
+ margin-inline-end: -0.75rem !important;
848
+ }
849
+
850
+ .m_-me-1 {
851
+ margin-inline-end: -1rem !important;
852
+ }
853
+
854
+ .m_-me-2 {
855
+ margin-inline-end: -2rem !important;
856
+ }
857
+
858
+ .m_-me-3 {
859
+ margin-inline-end: -3rem !important;
860
+ }
861
+
862
+ .m_-me-4 {
863
+ margin-inline-end: -4rem !important;
864
+ }
865
+
866
+ .m_pb-0 {
867
+ padding-bottom: 0rem !important;
868
+ }
869
+
870
+ .m_pb-1 {
871
+ padding-bottom: 1rem !important;
872
+ }
873
+
874
+ .m_pb-2 {
875
+ padding-bottom: 2rem !important;
876
+ }
877
+
878
+ .m_pb-3 {
879
+ padding-bottom: 3rem !important;
880
+ }
881
+
882
+ .m_pb-4 {
883
+ padding-bottom: 4rem !important;
884
+ }
885
+
886
+ .m_pb-075 {
887
+ padding-bottom: 0.75rem !important;
888
+ }
889
+
890
+ .m_pb-05 {
891
+ padding-bottom: 0.5rem !important;
892
+ }
893
+
894
+ .m_pb-025 {
895
+ padding-bottom: 0.25rem !important;
896
+ }
897
+
898
+ .m_pt-0 {
899
+ padding-top: 0rem !important;
900
+ }
901
+
902
+ .m_pt-1 {
903
+ padding-top: 1rem !important;
904
+ }
905
+
906
+ .m_pt-2 {
907
+ padding-top: 2rem !important;
908
+ }
909
+
910
+ .m_pt-3 {
911
+ padding-top: 3rem !important;
912
+ }
913
+
914
+ .m_pt-4 {
915
+ padding-top: 4rem !important;
916
+ }
917
+
918
+ .m_pt-075 {
919
+ padding-top: 0.75rem !important;
920
+ }
921
+
922
+ .m_pt-05 {
923
+ padding-top: 0.5rem !important;
924
+ }
925
+
926
+ .m_pt-025 {
927
+ padding-top: 0.25rem !important;
928
+ }
929
+
930
+ .m_ps-0 {
931
+ padding-inline-start: 0rem !important;
932
+ }
933
+
934
+ .m_ps-1 {
935
+ padding-inline-start: 1rem !important;
936
+ }
937
+
938
+ .m_ps-2 {
939
+ padding-inline-start: 2rem !important;
940
+ }
941
+
942
+ .m_ps-3 {
943
+ padding-inline-start: 3rem !important;
944
+ }
945
+
946
+ .m_ps-4 {
947
+ padding-inline-start: 4rem !important;
948
+ }
949
+
950
+ .m_ps-075 {
951
+ padding-inline-start: 0.75rem !important;
952
+ }
953
+
954
+ .m_ps-05 {
955
+ padding-inline-start: 0.5rem !important;
956
+ }
957
+
958
+ .m_ps-025 {
959
+ padding-inline-start: 0.25rem !important;
960
+ }
961
+
962
+ .m_pe-0 {
963
+ padding-inline-end: 0rem !important;
964
+ }
965
+
966
+ .m_pe-1 {
967
+ padding-inline-end: 1rem !important;
968
+ }
969
+
970
+ .m_pe-2 {
971
+ padding-inline-end: 2rem !important;
972
+ }
973
+
974
+ .m_pe-3 {
975
+ padding-inline-end: 3rem !important;
976
+ }
977
+
978
+ .m_pe-4 {
979
+ padding-inline-end: 4rem !important;
980
+ }
981
+
982
+ .m_pe-075 {
983
+ padding-inline-end: 0.75rem !important;
984
+ }
985
+
986
+ .m_pe-05 {
987
+ padding-inline-end: 0.5rem !important;
988
+ }
989
+
990
+ .m_pe-025 {
991
+ padding-inline-end: 0.25rem !important;
992
+ }
993
+
994
+ .m_px-0 {
995
+ padding-inline-end: 0rem !important;
996
+ padding-inline-start: 0rem !important;
997
+ }
998
+
999
+ .m_px-1 {
1000
+ padding-inline-end: 1rem !important;
1001
+ padding-inline-start: 1rem !important;
1002
+ }
1003
+
1004
+ .m_px-2 {
1005
+ padding-inline-end: 2rem !important;
1006
+ padding-inline-start: 2rem !important;
1007
+ }
1008
+
1009
+ .m_px-3 {
1010
+ padding-inline-end: 3rem !important;
1011
+ padding-inline-start: 3rem !important;
1012
+ }
1013
+
1014
+ .m_px-4 {
1015
+ padding-inline-end: 4rem !important;
1016
+ padding-inline-start: 4rem !important;
1017
+ }
1018
+
1019
+ .m_px-075 {
1020
+ padding-inline-end: 0.75rem !important;
1021
+ padding-inline-start: 0.75rem !important;
1022
+ }
1023
+
1024
+ .m_px-05 {
1025
+ padding-inline-end: 0.5rem !important;
1026
+ padding-inline-start: 0.5rem !important;
1027
+ }
1028
+
1029
+ .m_px-025 {
1030
+ padding-inline-end: 0.25rem !important;
1031
+ padding-inline-start: 0.25rem !important;
1032
+ }
1033
+
1034
+ .m_py-0 {
1035
+ padding-top: 0rem !important;
1036
+ padding-bottom: 0rem !important;
1037
+ }
1038
+
1039
+ .m_py-1 {
1040
+ padding-top: 1rem !important;
1041
+ padding-bottom: 1rem !important;
1042
+ }
1043
+
1044
+ .m_py-2 {
1045
+ padding-top: 2rem !important;
1046
+ padding-bottom: 2rem !important;
1047
+ }
1048
+
1049
+ .m_py-3 {
1050
+ padding-top: 3rem !important;
1051
+ padding-bottom: 3rem !important;
1052
+ }
1053
+
1054
+ .m_py-4 {
1055
+ padding-top: 4rem !important;
1056
+ padding-bottom: 4rem !important;
1057
+ }
1058
+
1059
+ .m_py-075 {
1060
+ padding-top: 0.75rem !important;
1061
+ padding-bottom: 0.75rem !important;
1062
+ }
1063
+
1064
+ .m_py-05 {
1065
+ padding-top: 0.5rem !important;
1066
+ padding-bottom: 0.5rem !important;
1067
+ }
1068
+
1069
+ .m_py-025 {
1070
+ padding-top: 0.25rem !important;
1071
+ padding-bottom: 0.25rem !important;
1072
+ }
1073
+
1074
+ .m_p-0 {
1075
+ padding: 0rem !important;
1076
+ }
1077
+
1078
+ .m_p-1 {
1079
+ padding: 1rem !important;
1080
+ }
1081
+
1082
+ .m_p-2 {
1083
+ padding: 2rem !important;
1084
+ }
1085
+
1086
+ .m_p-3 {
1087
+ padding: 3rem !important;
1088
+ }
1089
+
1090
+ .m_p-4 {
1091
+ padding: 4rem !important;
1092
+ }
1093
+
1094
+ .m_p-075 {
1095
+ padding: 0.75rem !important;
1096
+ }
1097
+
1098
+ .m_p-05 {
1099
+ padding: 0.5rem !important;
1100
+ }
1101
+
1102
+ .m_p-025 {
1103
+ padding: 0.25rem !important;
1104
+ }
1105
+
1106
+ .m_relative,
1107
+ .m_position-relative {
1108
+ position: relative !important;
1109
+ }
1110
+
1111
+ .m_absolute,
1112
+ .m_position-absolute {
1113
+ position: absolute !important;
1114
+ }
1115
+
1116
+ .m_fixed,
1117
+ .m_position-fixed {
1118
+ position: fixed !important;
1119
+ }
1120
+
1121
+ .m_static,
1122
+ .m_position-static {
1123
+ position: static !important;
1124
+ }
1125
+
1126
+ .m_sticky,
1127
+ .m_position-sticky {
1128
+ position: sticky !important;
1129
+ }
1130
+
1131
+ .m_flex-stretch {
1132
+ display: flex;
1133
+ align-items: stretch;
1134
+ }
1135
+
1136
+ .m_flex-end {
1137
+ justify-content: flex-end;
1138
+ }
1139
+
1140
+ .m_space-between {
1141
+ justify-content: space-between;
1142
+ }
1143
+
1144
+ .m_label {
1145
+ display: block;
1146
+ font-size: var(--label-font-size);
1147
+ margin-bottom: 2px;
1148
+ line-height: 1.3;
1149
+ color: var(--label-color);
1150
+ }
1151
+
1152
+ .m_h-10 {
1153
+ height: 10%;
1154
+ }
1155
+
1156
+ .m_vh-10 {
1157
+ height: 10vh;
1158
+ }
1159
+
1160
+ .m_h-10px {
1161
+ height: 10px;
1162
+ }
1163
+
1164
+ .m_hm-10px {
1165
+ max-height: 10px;
1166
+ }
1167
+
1168
+
1169
+ .m_h-20 {
1170
+ height: 20%;
1171
+ }
1172
+
1173
+ .m_vh-20 {
1174
+ height: 20vh;
1175
+ }
1176
+
1177
+ .m_h-20px {
1178
+ height: 20px;
1179
+ }
1180
+
1181
+ .m_hm-20px {
1182
+ max-height: 20px;
1183
+ }
1184
+
1185
+ .m_h-30 {
1186
+ height: 30%;
1187
+ }
1188
+
1189
+ .m_vh-30 {
1190
+ height: 30vh;
1191
+ }
1192
+
1193
+ .m_h-30px {
1194
+ height: 30px;
1195
+ }
1196
+
1197
+ .m_hm-30px {
1198
+ max-height: 30px;
1199
+ }
1200
+
1201
+ .m_h-40 {
1202
+ height: 40%;
1203
+ }
1204
+
1205
+ .m_vh-40 {
1206
+ height: 40vh;
1207
+ }
1208
+
1209
+ .m_h-40px {
1210
+ height: 40px;
1211
+ }
1212
+
1213
+ .m_hm-40px {
1214
+ max-height: 40px;
1215
+ }
1216
+
1217
+ .m_h-50 {
1218
+ height: 50%;
1219
+ }
1220
+
1221
+ .m_vh-50 {
1222
+ height: 50vh;
1223
+ }
1224
+
1225
+ .m_h-50px {
1226
+ height: 50px;
1227
+ }
1228
+
1229
+ .m_hm-50px {
1230
+ max-height: 50px;
1231
+ }
1232
+
1233
+ .m_h-60 {
1234
+ height: 60%;
1235
+ }
1236
+
1237
+ .m_vh-60 {
1238
+ height: 60vh;
1239
+ }
1240
+
1241
+ .m_h-60px {
1242
+ height: 60px;
1243
+ }
1244
+
1245
+ .m_hm-60px {
1246
+ max-height: 60px;
1247
+ }
1248
+
1249
+ .m_h-70 {
1250
+ height: 70%;
1251
+ }
1252
+
1253
+ .m_vh-70 {
1254
+ height: 70vh;
1255
+ }
1256
+
1257
+ .m_h-70px {
1258
+ height: 70px;
1259
+ }
1260
+
1261
+ .m_hm-70px {
1262
+ max-height: 70px;
1263
+ }
1264
+
1265
+ .m_h-80 {
1266
+ height: 80%;
1267
+ }
1268
+
1269
+ .m_vh-80 {
1270
+ height: 80vh;
1271
+ }
1272
+
1273
+ .m_h-80px {
1274
+ height: 80px;
1275
+ }
1276
+
1277
+ .m_hm-80px {
1278
+ max-height: 80px;
1279
+ }
1280
+
1281
+ .m_h-90 {
1282
+ height: 90%;
1283
+ }
1284
+
1285
+ .m_vh-90 {
1286
+ height: 90vh;
1287
+ }
1288
+
1289
+ .m_h-90px {
1290
+ height: 90px;
1291
+ }
1292
+
1293
+ .m_hm-90px {
1294
+ max-height: 90px;
1295
+ }
1296
+
1297
+
1298
+ .m_h-100 {
1299
+ height: 100%;
1300
+ }
1301
+
1302
+ .m_vh-100 {
1303
+ height: 100vh;
1304
+ }
1305
+
1306
+ .m_h-100px {
1307
+ height: 100px;
1308
+ }
1309
+
1310
+ .m_hm-100px {
1311
+ max-height: 100px;
1312
+ }
1313
+
1314
+ .m_h-150 {
1315
+ height: 150%;
1316
+ }
1317
+
1318
+ .m_vh-150 {
1319
+ height: 150vh;
1320
+ }
1321
+
1322
+ .m_h-150px {
1323
+ height: 150px;
1324
+ }
1325
+
1326
+ .m_hm-150px {
1327
+ max-height: 150px;
1328
+ }
1329
+
1330
+ .m_h-200 {
1331
+ height: 200%;
1332
+ }
1333
+
1334
+ .m_vh-200 {
1335
+ height: 200vh;
1336
+ }
1337
+
1338
+ .m_h-200px {
1339
+ height: 200px;
1340
+ }
1341
+
1342
+ .m_hm-200px {
1343
+ max-height: 200px;
1344
+ }
1345
+
1346
+ .m_h-300 {
1347
+ height: 300%;
1348
+ }
1349
+
1350
+ .m_vh-300 {
1351
+ height: 300vh;
1352
+ }
1353
+
1354
+ .m_h-300px {
1355
+ height: 300px;
1356
+ }
1357
+
1358
+ .m_hm-300px {
1359
+ max-height: 300px;
1360
+ }
1361
+
1362
+ .m_h-400 {
1363
+ height: 400%;
1364
+ }
1365
+
1366
+ .m_vh-400 {
1367
+ height: 400vh;
1368
+ }
1369
+
1370
+ .m_h-400px {
1371
+ height: 400px;
1372
+ }
1373
+
1374
+ .m_hm-400px {
1375
+ max-height: 400px;
1376
+ }
1377
+
1378
+ .m_h-500 {
1379
+ height: 500%;
1380
+ }
1381
+
1382
+ .m_vh-500 {
1383
+ height: 500vh;
1384
+ }
1385
+
1386
+ .m_h-500px {
1387
+ height: 500px;
1388
+ }
1389
+
1390
+ .m_hm-500px {
1391
+ max-height: 500px;
1392
+ }
1393
+
1394
+ .m_h-600 {
1395
+ height: 600%;
1396
+ }
1397
+
1398
+ .m_vh-600 {
1399
+ height: 600vh;
1400
+ }
1401
+
1402
+ .m_h-600px {
1403
+ height: 600px;
1404
+ }
1405
+
1406
+ .m_hm-600px {
1407
+ max-height: 600px;
1408
+ }
1409
+
1410
+
1411
+ .m_layout-h-100 {
1412
+ height: 100vh;
1413
+ overflow-y: hidden;
1414
+ }
1415
+
1416
+ .m_grid-wrap-1 {
1417
+ grid-template-columns: repeat(1, 1fr);
1418
+ height: max-content;
1419
+ }
1420
+
1421
+ .m_grid-wrap-2 {
1422
+ grid-template-columns: repeat(2, 1fr);
1423
+ height: max-content;
1424
+ }
1425
+
1426
+ .m_grid-wrap-3 {
1427
+ grid-template-columns: repeat(3, 1fr);
1428
+ height: max-content;
1429
+ }
1430
+
1431
+ .m_grid-wrap-4 {
1432
+ grid-template-columns: repeat(4, 1fr);
1433
+ height: max-content;
1434
+
1435
+ }
1436
+
1437
+ .m_grid-wrap-5 {
1438
+ grid-template-columns: repeat(5, 1fr);
1439
+ height: max-content;
1440
+ }
1441
+
1442
+ .m_grid-wrap-6 {
1443
+ grid-template-columns: repeat(6, 1fr);
1444
+ height: max-content;
1445
+ }
1446
+
1447
+ .m_grid-wrap-7 {
1448
+ grid-template-columns: repeat(7, 1fr);
1449
+ height: max-content;
1450
+ }
1451
+
1452
+ .m_grid-wrap-8 {
1453
+ grid-template-columns: repeat(8, 1fr);
1454
+ height: max-content;
1455
+ }
1456
+
1457
+ .m_overflow-hidden {
1458
+ overflow: hidden;
1459
+ }
1460
+
1461
+ .m_overflow-x {
1462
+ overflow-x: auto;
1463
+ }
1464
+
1465
+ .m_overflow-y {
1466
+ overflow-y: auto;
1467
+ }
1468
+
1469
+ .m_overflow-x-hidden {
1470
+ overflow-x: hidden;
1471
+ }
1472
+
1473
+ .m_overflow-y-hidden {
1474
+ overflow-y: hidden;
1475
+ }
1476
+ }