@bagelink/vue 1.0.52 → 1.0.54

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (28) hide show
  1. package/dist/components/Modal.vue.d.ts.map +1 -1
  2. package/dist/components/Spreadsheet/Index.vue.d.ts +2 -0
  3. package/dist/components/Spreadsheet/Index.vue.d.ts.map +1 -1
  4. package/dist/components/form/BagelForm.vue.d.ts +3 -1
  5. package/dist/components/form/BagelForm.vue.d.ts.map +1 -1
  6. package/dist/components/form/inputs/NumberInput.vue.d.ts.map +1 -1
  7. package/dist/components/form/inputs/PasswordInput.vue.d.ts +1 -0
  8. package/dist/components/form/inputs/PasswordInput.vue.d.ts.map +1 -1
  9. package/dist/components/form/inputs/PhoneInput.vue.d.ts +2 -0
  10. package/dist/components/form/inputs/PhoneInput.vue.d.ts.map +1 -1
  11. package/dist/components/form/inputs/SelectInput.vue.d.ts +4 -0
  12. package/dist/components/form/inputs/SelectInput.vue.d.ts.map +1 -1
  13. package/dist/components/form/inputs/TextInput.vue.d.ts +1 -0
  14. package/dist/components/form/inputs/TextInput.vue.d.ts.map +1 -1
  15. package/dist/composables/useSchemaField.d.ts.map +1 -1
  16. package/dist/index.cjs +63 -18
  17. package/dist/index.mjs +63 -18
  18. package/dist/style.css +765 -484
  19. package/package.json +1 -1
  20. package/src/components/Modal.vue +1 -0
  21. package/src/components/form/BagelForm.vue +23 -7
  22. package/src/components/form/FieldArray.vue +2 -2
  23. package/src/components/form/inputs/NumberInput.vue +1 -1
  24. package/src/components/form/inputs/PasswordInput.vue +2 -0
  25. package/src/components/form/inputs/TextInput.vue +4 -1
  26. package/src/composables/useSchemaField.ts +34 -1
  27. package/src/styles/text.css +911 -560
  28. package/src/components/DataTable/tableTypes.d.ts +0 -0
@@ -1,206 +1,381 @@
1
1
  .txt-center {
2
- text-align: center;
2
+ text-align: center;
3
3
  }
4
4
 
5
5
  .txt-start {
6
- text-align: start;
6
+ text-align: start;
7
7
  }
8
8
 
9
9
  .txt-end {
10
- text-align: end;
10
+ text-align: end;
11
11
  }
12
12
 
13
13
  .txt-small {
14
- font-size: 12px;
14
+ font-size: 12px;
15
15
  }
16
16
 
17
17
  .txt20,
18
18
  .txt-20 {
19
- font-size: 20px;
19
+ font-size: 20px;
20
20
  }
21
21
 
22
22
  .txt24,
23
23
  .txt-24 {
24
- font-size: 24px;
24
+ font-size: 24px;
25
25
  }
26
26
 
27
27
  .txt28,
28
28
  .txt-28 {
29
- font-size: 28px;
29
+ font-size: 28px;
30
30
  }
31
31
 
32
32
  .txt30,
33
33
  .txt-30 {
34
- font-size: 30px;
34
+ font-size: 30px;
35
35
  }
36
36
 
37
37
  .txt32,
38
38
  .txt-32 {
39
- font-size: 32px;
39
+ font-size: 32px;
40
40
  }
41
41
 
42
42
  .txt36,
43
43
  .txt-36 {
44
- font-size: 36px;
44
+ font-size: 36px;
45
45
  }
46
46
 
47
47
  .txt40,
48
48
  .txt-40 {
49
- font-size: 40px;
49
+ font-size: 40px;
50
50
  }
51
51
 
52
52
  .txt44,
53
53
  .txt-44 {
54
- font-size: 44px;
54
+ font-size: 44px;
55
55
  }
56
56
 
57
57
  .txt48,
58
58
  .txt-48 {
59
- font-size: 48px;
59
+ font-size: 48px;
60
60
  }
61
61
 
62
62
  .txt50,
63
63
  .txt-50 {
64
- font-size: 50px;
64
+ font-size: 50px;
65
65
  }
66
66
 
67
67
  .txt52,
68
68
  .txt-52 {
69
- font-size: 52px;
69
+ font-size: 52px;
70
70
  }
71
71
 
72
72
  .txt56,
73
73
  .txt-56 {
74
- font-size: 56px;
74
+ font-size: 56px;
75
75
  }
76
76
 
77
77
  .txt60,
78
78
  .txt-60 {
79
- font-size: 60px;
79
+ font-size: 60px;
80
80
  }
81
81
 
82
82
  .txt64,
83
83
  .txt-64 {
84
- font-size: 64px;
84
+ font-size: 64px;
85
85
  }
86
86
 
87
87
  .txt68,
88
88
  .txt-68 {
89
- font-size: 68px;
89
+ font-size: 68px;
90
90
  }
91
91
 
92
92
  .txt70,
93
93
  .txt-70 {
94
- font-size: 70px;
94
+ font-size: 70px;
95
95
  }
96
96
 
97
97
  .txt72,
98
98
  .txt-72 {
99
- font-size: 72px;
99
+ font-size: 72px;
100
100
  }
101
101
 
102
102
  .txt80,
103
103
  .txt-80 {
104
- font-size: 80px;
104
+ font-size: 80px;
105
105
  }
106
106
 
107
107
  .txt90,
108
108
  .txt-90 {
109
- font-size: 90px;
109
+ font-size: 90px;
110
110
  }
111
111
 
112
112
  .txt100,
113
113
  .txt-100 {
114
- font-size: 100px;
114
+ font-size: 100px;
115
115
  }
116
116
 
117
117
  .txt110,
118
118
  .txt-110 {
119
- font-size: 110px;
119
+ font-size: 110px;
120
120
  }
121
121
 
122
122
  .txt120,
123
123
  .txt-120 {
124
- font-size: 120px;
124
+ font-size: 120px;
125
125
  }
126
126
 
127
127
  .txt130,
128
128
  .txt-130 {
129
- font-size: 130px;
129
+ font-size: 130px;
130
130
  }
131
131
 
132
132
  .txt140,
133
133
  .txt-140 {
134
- font-size: 140px;
134
+ font-size: 140px;
135
135
  }
136
136
 
137
137
  .txt150,
138
138
  .txt-150 {
139
- font-size: 150px;
139
+ font-size: 150px;
140
140
  }
141
141
 
142
142
  .txt18,
143
143
  .txt-18 {
144
- font-size: 18px;
144
+ font-size: 18px;
145
145
  }
146
146
 
147
147
  .txt16,
148
148
  .txt-16 {
149
- font-size: 16px;
149
+ font-size: 16px;
150
150
  }
151
151
 
152
152
  .txt14,
153
153
  .txt-14 {
154
- font-size: 14px;
154
+ font-size: 14px;
155
155
  }
156
156
 
157
157
  .txt12,
158
158
  .txt-12 {
159
- font-size: 12px;
159
+ font-size: 12px;
160
160
  }
161
161
 
162
162
  .txt10,
163
163
  .txt-10 {
164
- font-size: 10px;
164
+ font-size: 10px;
165
165
  }
166
166
 
167
167
  .txt9,
168
168
  .txt-9 {
169
- font-size: 9px;
169
+ font-size: 9px;
170
+ }
171
+
172
+ .txt025,
173
+ .txt-025 {
174
+ font-size: 0.25rem;
175
+ }
176
+
177
+ .txt05,
178
+ .txt-05 {
179
+ font-size: 0.5rem;
180
+ }
181
+
182
+ .txt075,
183
+ .txt-075 {
184
+ font-size: 0.75rem;
185
+ }
186
+
187
+ .txt1,
188
+ .txt-1 {
189
+ font-size: 1rem;
190
+ }
191
+
192
+ .txt1-25,
193
+ .txt-1-25 {
194
+ font-size: 1.25rem;
195
+ }
196
+
197
+ .txt1-5,
198
+ .txt-1-5 {
199
+ font-size: 1.5rem;
200
+ }
201
+
202
+ .txt1-75,
203
+ .txt-1-75 {
204
+ font-size: 1.75rem;
205
+ }
206
+
207
+ .txt2,
208
+ .txt-2 {
209
+ font-size: 2rem;
210
+ }
211
+
212
+ .txt2-25,
213
+ .txt-2-25 {
214
+ font-size: 2.25rem;
215
+ }
216
+
217
+ .txt2-5,
218
+ .txt-2-5 {
219
+ font-size: 2.5rem;
220
+ }
221
+
222
+ .txt2-75,
223
+ .txt-2-75 {
224
+ font-size: 2.75rem;
225
+ }
226
+
227
+ .txt3,
228
+ .txt-3 {
229
+ font-size: 3rem;
230
+ }
231
+
232
+ .txt3-25,
233
+ .txt-3-25 {
234
+ font-size: 3.25rem;
235
+ }
236
+
237
+ .txt3-5,
238
+ .txt-3-5 {
239
+ font-size: 3.5rem;
240
+ }
241
+
242
+ .txt3-75,
243
+ .txt-3-75 {
244
+ font-size: 3.75rem;
245
+ }
246
+
247
+ .txt4,
248
+ .txt-4 {
249
+ font-size: 4rem;
250
+ }
251
+
252
+ .txt4-25,
253
+ .txt-4-25 {
254
+ font-size: 4.25rem;
255
+ }
256
+
257
+ .txt4-5,
258
+ .txt-4-5 {
259
+ font-size: 4.5rem;
260
+ }
261
+
262
+ .txt4-75,
263
+ .txt-4-75 {
264
+ font-size: 4.75rem;
265
+ }
266
+
267
+ .txt5,
268
+ .txt-5 {
269
+ font-size: 5rem;
270
+ }
271
+
272
+ .txt5-25,
273
+ .txt-5-25 {
274
+ font-size: 5.25rem;
275
+ }
276
+
277
+ .txt5-5,
278
+ .txt-5-5 {
279
+ font-size: 5.5rem;
280
+ }
281
+
282
+ .txt5-75,
283
+ .txt-5-75 {
284
+ font-size: 5.75rem;
285
+ }
286
+
287
+ .txt6,
288
+ .txt-6 {
289
+ font-size: 6rem;
290
+ }
291
+
292
+ .txt6-25,
293
+ .txt-6-25 {
294
+ font-size: 6.25rem;
295
+ }
296
+
297
+ .txt6-5,
298
+ .txt-6-5 {
299
+ font-size: 6.5rem;
300
+ }
301
+
302
+ .txt6-75,
303
+ .txt-6-75 {
304
+ font-size: 6.75rem;
305
+ }
306
+
307
+ .txt7,
308
+ .txt-7 {
309
+ font-size: 7rem;
310
+ }
311
+
312
+ .txt7-25,
313
+ .txt-7-25 {
314
+ font-size: 7.25rem;
315
+ }
316
+
317
+ .txt7-5,
318
+ .txt-7-5 {
319
+ font-size: 7.5rem;
320
+ }
321
+
322
+ .txt7-75,
323
+ .txt-7-75 {
324
+ font-size: 7.75rem;
325
+ }
326
+
327
+ .txt8,
328
+ .txt-8 {
329
+ font-size: 8rem;
330
+ }
331
+
332
+ .txt8-25,
333
+ .txt-8-25 {
334
+ font-size: 8.25rem;
335
+ }
336
+
337
+ .txt8-5,
338
+ .txt-8-5 {
339
+ font-size: 8.5rem;
340
+ }
341
+
342
+ .txt8-75,
343
+ .txt-8-75 {
344
+ font-size: 8.75rem;
170
345
  }
171
346
 
172
347
  .no-margin {
173
- margin: 0;
348
+ margin: 0;
174
349
  }
175
350
 
176
351
  .txt-gray,
177
352
  .txtgray {
178
- color: var(--bgl-gray);
353
+ color: var(--bgl-gray);
179
354
  }
180
355
 
181
356
  .txt-blue,
182
357
  .txtblue {
183
- color: var(--bgl-primary);
358
+ color: var(--bgl-primary);
184
359
  }
185
360
 
186
361
  .txt-black,
187
362
  .txtblack {
188
- color: var(--bgl-black);
363
+ color: var(--bgl-black);
189
364
  }
190
365
 
191
366
  .txt-red,
192
367
  .txtred {
193
- color: var(--bgl-red);
368
+ color: var(--bgl-red);
194
369
  }
195
370
 
196
371
  .txt-white,
197
372
  .txtwhite {
198
- color: var(--bgl-white);
373
+ color: var(--bgl-white);
199
374
  }
200
375
 
201
376
  .font-thin,
202
377
  .txt-thin {
203
- font-weight: 100;
378
+ font-weight: 100;
204
379
  }
205
380
 
206
381
  .extra-light,
@@ -208,25 +383,25 @@
208
383
  .txt-extra-light,
209
384
  .font-ultra-light,
210
385
  .txt-ultra-light {
211
- font-weight: 200;
386
+ font-weight: 200;
212
387
  }
213
388
 
214
389
  .light,
215
390
  .txt-light,
216
391
  .font-light {
217
- font-weight: 300;
392
+ font-weight: 300;
218
393
  }
219
394
 
220
395
  .regular,
221
396
  .txt-regular,
222
397
  .font-regular {
223
- font-weight: 400;
398
+ font-weight: 400;
224
399
  }
225
400
 
226
401
  .medium,
227
402
  .txt-medium,
228
403
  .font-medium {
229
- font-weight: 500;
404
+ font-weight: 500;
230
405
  }
231
406
 
232
407
  .semi,
@@ -236,13 +411,13 @@
236
411
  .font-regular,
237
412
  .font-semi,
238
413
  .font-semibold {
239
- font-weight: 600;
414
+ font-weight: 600;
240
415
  }
241
416
 
242
417
  .bold,
243
418
  .txt-bold,
244
419
  .font-bold {
245
- font-weight: 700;
420
+ font-weight: 700;
246
421
  }
247
422
 
248
423
  .extra-bold,
@@ -250,107 +425,107 @@
250
425
  .txt-extra-bold,
251
426
  .font-ultra-bold,
252
427
  .txt-ultra-bold {
253
- font-weight: 800;
428
+ font-weight: 800;
254
429
  }
255
430
 
256
431
  .black,
257
432
  .font-black {
258
- font-weight: 900;
433
+ font-weight: 900;
259
434
  }
260
435
 
261
436
  .line-height-0 {
262
- line-height: 0;
437
+ line-height: 0;
263
438
  }
264
439
 
265
440
  .line-height-01 {
266
- line-height: 0.1;
441
+ line-height: 0.1;
267
442
  }
268
443
 
269
444
  .line-height-02 {
270
- line-height: 0.2;
445
+ line-height: 0.2;
271
446
  }
272
447
 
273
448
  .line-height-03 {
274
- line-height: 0.3;
449
+ line-height: 0.3;
275
450
  }
276
451
 
277
452
  .line-height-04 {
278
- line-height: 0.4;
453
+ line-height: 0.4;
279
454
  }
280
455
 
281
456
  .line-height-05 {
282
- line-height: 0.5;
457
+ line-height: 0.5;
283
458
  }
284
459
 
285
460
  .line-height-06 {
286
- line-height: 0.6;
461
+ line-height: 0.6;
287
462
  }
288
463
 
289
464
  .line-height-07 {
290
- line-height: 0.7;
465
+ line-height: 0.7;
291
466
  }
292
467
 
293
468
  .line-height-08 {
294
- line-height: 0.8;
469
+ line-height: 0.8;
295
470
  }
296
471
 
297
472
  .line-height-09 {
298
- line-height: 0.9;
473
+ line-height: 0.9;
299
474
  }
300
475
 
301
476
  .line-height-1 {
302
- line-height: 1;
477
+ line-height: 1;
303
478
  }
304
479
 
305
480
  .line-height-11 {
306
- line-height: 1.1;
481
+ line-height: 1.1;
307
482
  }
308
483
 
309
484
  .line-height-12 {
310
- line-height: 1.2;
485
+ line-height: 1.2;
311
486
  }
312
487
 
313
488
  .line-height-13 {
314
- line-height: 1.3;
489
+ line-height: 1.3;
315
490
  }
316
491
 
317
492
  .line-height-14 {
318
- line-height: 1.4;
493
+ line-height: 1.4;
319
494
  }
320
495
 
321
496
  .line-height-15 {
322
- line-height: 1.5;
497
+ line-height: 1.5;
323
498
  }
324
499
 
325
500
  .line-height-16 {
326
- line-height: 1.6;
501
+ line-height: 1.6;
327
502
  }
328
503
 
329
504
  .line-height-17 {
330
- line-height: 1.7;
505
+ line-height: 1.7;
331
506
  }
332
507
 
333
508
  .line-height-18 {
334
- line-height: 1.8;
509
+ line-height: 1.8;
335
510
  }
336
511
 
337
512
  .line-height-19 {
338
- line-height: 1.9;
513
+ line-height: 1.9;
339
514
  }
340
515
 
341
516
  .line-height-2 {
342
- line-height: 2;
517
+ line-height: 2;
343
518
  }
344
519
 
345
520
  .line-height-normal {
346
- line-height: normal;
521
+ line-height: normal;
347
522
  }
348
523
 
349
524
  .ellipsis {
350
- overflow: hidden;
351
- display: block;
352
- width: 100%;
353
- text-overflow: ellipsis;
525
+ overflow: hidden;
526
+ display: block;
527
+ width: 100%;
528
+ text-overflow: ellipsis;
354
529
  }
355
530
 
356
531
  .ellipsis-1,
@@ -359,554 +534,730 @@
359
534
  .ellipsis-4,
360
535
  .ellipsis-5,
361
536
  .ellipsis-6 {
362
- display: block;
363
- display: -webkit-box;
364
- max-width: 100%;
365
- -webkit-box-orient: vertical;
366
- overflow: hidden;
367
- text-overflow: ellipsis;
537
+ display: block;
538
+ display: -webkit-box;
539
+ max-width: 100%;
540
+ -webkit-box-orient: vertical;
541
+ overflow: hidden;
542
+ text-overflow: ellipsis;
368
543
  }
369
544
 
370
545
  .ellipsis-1 {
371
- -webkit-line-clamp: 1;
546
+ -webkit-line-clamp: 1;
372
547
  }
373
548
 
374
549
  .ellipsis-2 {
375
- -webkit-line-clamp: 2;
550
+ -webkit-line-clamp: 2;
376
551
  }
377
552
 
378
553
  .ellipsis-3 {
379
- -webkit-line-clamp: 3;
554
+ -webkit-line-clamp: 3;
380
555
  }
381
556
 
382
557
  .ellipsis-4 {
383
- -webkit-line-clamp: 4;
558
+ -webkit-line-clamp: 4;
384
559
  }
385
560
 
386
561
  .ellipsis-5 {
387
- -webkit-line-clamp: 5;
562
+ -webkit-line-clamp: 5;
388
563
  }
389
564
 
390
565
  .ellipsis-6 {
391
- -webkit-line-clamp: 6;
566
+ -webkit-line-clamp: 6;
392
567
  }
393
568
 
394
569
  .pointer {
395
- cursor: pointer;
570
+ cursor: pointer;
396
571
  }
397
572
 
398
573
  .grab {
399
- cursor: grab;
574
+ cursor: grab;
400
575
  }
401
576
 
402
577
  .grab:active {
403
- cursor: grabbing;
578
+ cursor: grabbing;
404
579
  }
405
580
 
406
581
  .not-allowed {
407
- cursor: not-allowed;
582
+ cursor: not-allowed;
408
583
  }
409
584
 
410
585
  .decoration-none {
411
- text-decoration: none;
586
+ text-decoration: none;
412
587
  }
413
588
 
414
589
  .underline,
415
590
  .decoration-underline {
416
- text-decoration: underline !important;
591
+ text-decoration: underline !important;
417
592
  }
418
593
 
419
594
  .word-break {
420
- word-break: break-word;
595
+ word-break: break-word;
421
596
  }
422
597
 
423
598
  .word-break-all {
424
- word-break: break-all;
599
+ word-break: break-all;
425
600
  }
426
601
 
427
602
  .uppercase {
428
- text-transform: uppercase;
603
+ text-transform: uppercase;
429
604
  }
430
605
 
431
606
  .lowercase {
432
- text-transform: lowercase;
607
+ text-transform: lowercase;
433
608
  }
434
609
 
435
610
  .capitalize {
436
- text-transform: capitalize;
611
+ text-transform: capitalize;
437
612
  }
438
613
 
439
614
  .nowrap {
440
- white-space: nowrap;
615
+ white-space: nowrap;
441
616
  }
442
617
 
443
618
  .balance {
444
- text-wrap: balance;
619
+ text-wrap: balance;
445
620
  }
446
621
 
447
622
  .pretty {
448
- text-wrap: pretty;
623
+ text-wrap: pretty;
449
624
  }
450
625
 
451
626
  .white-space {
452
- white-space: nowrap;
627
+ white-space: nowrap;
453
628
  }
454
629
 
455
630
  @media screen and (max-width: 910px) {
456
- .txt20,
457
- .txt-20 {
458
- font-size: 18px;
459
- }
460
-
461
- .txt16,
462
- .txt-16 {
463
- font-size: 14px;
464
- }
465
-
466
- .txt14,
467
- .txt-14 {
468
- font-size: 12px;
469
- }
470
-
471
- .m_txt-center {
472
- text-align: center;
473
- }
474
-
475
- .m_txt-start {
476
- text-align: start;
477
- }
478
-
479
- .m_txt-end {
480
- text-align: end;
481
- }
482
-
483
- .m_txt-small {
484
- font-size: 12px;
485
- }
486
-
487
- .m_txt20,
488
- .m_txt-20 {
489
- font-size: 20px;
490
- }
491
-
492
- .m_txt24,
493
- .m_txt-24 {
494
- font-size: 24px;
495
- }
496
-
497
- .m_txt28,
498
- .m_txt-28 {
499
- font-size: 28px;
500
- }
501
-
502
- .m_txt30,
503
- .m_txt-30 {
504
- font-size: 30px;
505
- }
506
-
507
- .m_txt32,
508
- .m_txt-32 {
509
- font-size: 32px;
510
- }
511
-
512
- .m_txt36,
513
- .m_txt-36 {
514
- font-size: 36px;
515
- }
516
-
517
- .m_txt40,
518
- .m_txt-40 {
519
- font-size: 40px;
520
- }
521
-
522
- .m_txt44,
523
- .m_txt-44 {
524
- font-size: 44px;
525
- }
526
-
527
- .m_txt48,
528
- .m_txt-48 {
529
- font-size: 48px;
530
- }
531
-
532
- .m_txt50,
533
- .m_txt-50 {
534
- font-size: 50px;
535
- }
536
-
537
- .m_txt52,
538
- .m_txt-52 {
539
- font-size: 52px;
540
- }
541
-
542
- .m_txt56,
543
- .m_txt-56 {
544
- font-size: 56px;
545
- }
546
-
547
- .m_txt60,
548
- .m_txt-60 {
549
- font-size: 60px;
550
- }
551
-
552
- .m_txt64,
553
- .m_txt-64 {
554
- font-size: 64px;
555
- }
556
-
557
- .m_txt68,
558
- .m_txt-68 {
559
- font-size: 68px;
560
- }
561
-
562
- .m_txt70,
563
- .m_txt-70 {
564
- font-size: 70px;
565
- }
566
-
567
- .m_txt72,
568
- .m_txt-72 {
569
- font-size: 72px;
570
- }
571
-
572
- .m_txt80,
573
- .m_txt-80 {
574
- font-size: 80px;
575
- }
576
-
577
- .m_txt90,
578
- .m_txt-90 {
579
- font-size: 90px;
580
- }
581
-
582
- .m_txt100,
583
- .m_txt-100 {
584
- font-size: 100px;
585
- }
586
-
587
- .m_txt110,
588
- .m_txt-110 {
589
- font-size: 110px;
590
- }
591
-
592
- .m_txt120,
593
- .m_txt-120 {
594
- font-size: 120px;
595
- }
596
-
597
- .m_txt130,
598
- .m_txt-130 {
599
- font-size: 130px;
600
- }
601
-
602
- .m_txt140,
603
- .m_txt-140 {
604
- font-size: 140px;
605
- }
606
-
607
- .m_txt150,
608
- .m_txt-150 {
609
- font-size: 150px;
610
- }
611
-
612
- .m_txt18,
613
- .m_txt-18 {
614
- font-size: 18px;
615
- }
616
-
617
- .m_txt16,
618
- .m_txt-16 {
619
- font-size: 16px;
620
- }
621
-
622
- .m_txt14,
623
- .m_txt-14 {
624
- font-size: 14px;
625
- }
626
-
627
- .m_txt12,
628
- .m_txt-12 {
629
- font-size: 12px;
630
- }
631
-
632
- .m_txt10,
633
- .m_txt-10 {
634
- font-size: 10px;
635
- }
636
-
637
- .m_txt9,
638
- .m_txt-9 {
639
- font-size: 9px;
640
- }
641
-
642
- .m_no-margin {
643
- margin: 0;
644
- }
645
-
646
- .m_txt-gray,
647
- .m_txtgray {
648
- color: var(--bgl-gray);
649
- }
650
-
651
- .m_txt-blue,
652
- .m_txtblue {
653
- color: var(--bgl-primary);
654
- }
655
-
656
- .m_txt-black,
657
- .m_txtblack {
658
- color: var(--bgl-black);
659
- }
660
-
661
- .m_txt-red,
662
- .m_txtred {
663
- color: var(--bgl-red);
664
- }
665
-
666
- .m_txt-white,
667
- .m_txtwhite {
668
- color: var(--bgl-white);
669
- }
670
-
671
- .m_font-thin,
672
- .m_txt-thin {
673
- font-weight: 100;
674
- }
675
-
676
- .m_extra-light,
677
- .m_font-extra-light,
678
- .m_txt-extra-light,
679
- .m_font-ultra-light,
680
- .m_txt-ultra-light {
681
- font-weight: 200;
682
- }
683
-
684
- .m_light,
685
- .m_txt-light,
686
- .m_font-light {
687
- font-weight: 300;
688
- }
689
-
690
- .m_regular,
691
- .m_txt-regular,
692
- .m_font-regular {
693
- font-weight: 400;
694
- }
695
-
696
- .m_medium,
697
- .m_txt-medium,
698
- .m_font-medium {
699
- font-weight: 500;
700
- }
701
-
702
- .m_semi,
703
- .m_semibold,
704
- .m_txt-semi,
705
- .m_txt-semibold,
706
- .m_font-regular,
707
- .m_font-semi,
708
- .m_font-semibold {
709
- font-weight: 600;
710
- }
711
-
712
- .m_bold,
713
- .m_txt-bold,
714
- .m_font-bold {
715
- font-weight: 700;
716
- }
717
-
718
- .m_extra-bold,
719
- .m_font-extra-bold,
720
- .m_txt-extra-bold,
721
- .m_font-ultra-bold,
722
- .m_txt-ultra-bold {
723
- font-weight: 800;
724
- }
725
-
726
- .m_black,
727
- .m_font-black {
728
- font-weight: 900;
729
- }
730
-
731
- .m_line-height-0 {
732
- line-height: 0;
733
- }
734
-
735
- .m_line-height-01 {
736
- line-height: 0.1;
737
- }
738
-
739
- .m_line-height-02 {
740
- line-height: 0.2;
741
- }
742
-
743
- .m_line-height-03 {
744
- line-height: 0.3;
745
- }
746
-
747
- .m_line-height-04 {
748
- line-height: 0.4;
749
- }
750
-
751
- .m_line-height-05 {
752
- line-height: 0.5;
753
- }
754
-
755
- .m_line-height-06 {
756
- line-height: 0.6;
757
- }
758
-
759
- .m_line-height-07 {
760
- line-height: 0.7;
761
- }
762
-
763
- .m_line-height-08 {
764
- line-height: 0.8;
765
- }
766
-
767
- .m_line-height-09 {
768
- line-height: 0.9;
769
- }
770
-
771
- .m_line-height-1 {
772
- line-height: 1;
773
- }
774
-
775
- .m_line-height-11 {
776
- line-height: 1.1;
777
- }
778
-
779
- .m_line-height-12 {
780
- line-height: 1.2;
781
- }
782
-
783
- .m_line-height-13 {
784
- line-height: 1.3;
785
- }
786
-
787
- .m_line-height-14 {
788
- line-height: 1.4;
789
- }
790
-
791
- .m_line-height-15 {
792
- line-height: 1.5;
793
- }
794
-
795
- .m_line-height-16 {
796
- line-height: 1.6;
797
- }
798
-
799
- .m_line-height-17 {
800
- line-height: 1.7;
801
- }
802
-
803
- .m_line-height-18 {
804
- line-height: 1.8;
805
- }
806
-
807
- .m_line-height-19 {
808
- line-height: 1.9;
809
- }
810
-
811
- .m_line-height-2 {
812
- line-height: 2;
813
- }
814
-
815
- .m_line-height-normal {
816
- line-height: normal;
817
- }
818
-
819
- .m_ellipsis {
820
- overflow: hidden;
821
- display: block;
822
- width: 100%;
823
- text-overflow: ellipsis;
824
- }
825
-
826
- .m_ellipsis-1,
827
- .m_ellipsis-2,
828
- .m_ellipsis-3,
829
- .m_ellipsis-4,
830
- .m_ellipsis-5,
831
- .m_ellipsis-6 {
832
- display: block;
833
- display: -webkit-box;
834
- max-width: 100%;
835
- -webkit-box-orient: vertical;
836
- overflow: hidden;
837
- text-overflow: ellipsis;
838
- }
839
-
840
- .m_ellipsis-1 {
841
- -webkit-line-clamp: 1;
842
- }
843
-
844
- .m_ellipsis-2 {
845
- -webkit-line-clamp: 2;
846
- }
847
-
848
- .m_ellipsis-3 {
849
- -webkit-line-clamp: 3;
850
- }
851
-
852
- .m_ellipsis-4 {
853
- -webkit-line-clamp: 4;
854
- }
855
-
856
- .m_ellipsis-5 {
857
- -webkit-line-clamp: 5;
858
- }
859
-
860
- .m_ellipsis-6 {
861
- -webkit-line-clamp: 6;
862
- }
863
-
864
- .m_pointer {
865
- cursor: pointer;
866
- }
867
-
868
- .m_decoration-none {
869
- text-decoration: none;
870
- }
871
-
872
- .m_underline,
873
- .m_decoration-underline {
874
- text-decoration: underline !important;
875
- }
876
-
877
- .m_bgl_icon-font {
878
- font-family: 'Material Symbols Outlined', serif;
879
- }
880
-
881
- .m_nowrap {
882
- white-space: nowrap;
883
- }
884
-
885
- .m_balance {
886
- text-wrap: balance;
887
- }
888
-
889
- .m_pretty {
890
- text-wrap: pretty;
891
- }
892
-
893
- .m_word-break {
894
- word-break: break-word;
895
- }
896
-
897
- .m_word-break-all {
898
- word-break: break-all;
899
- }
900
-
901
- .m_uppercase {
902
- text-transform: uppercase;
903
- }
904
-
905
- .m_lowercase {
906
- text-transform: lowercase;
907
- }
908
-
909
- .m_capitalize {
910
- text-transform: capitalize;
911
- }
912
- }
631
+
632
+ .txt20,
633
+ .txt-20 {
634
+ font-size: 18px;
635
+ }
636
+
637
+ .txt16,
638
+ .txt-16 {
639
+ font-size: 14px;
640
+ }
641
+
642
+ .txt14,
643
+ .txt-14 {
644
+ font-size: 12px;
645
+ }
646
+
647
+ .m_txt-center {
648
+ text-align: center;
649
+ }
650
+
651
+ .m_txt-start {
652
+ text-align: start;
653
+ }
654
+
655
+ .m_txt-end {
656
+ text-align: end;
657
+ }
658
+
659
+ .m_txt-small {
660
+ font-size: 12px;
661
+ }
662
+
663
+ .m_txt20,
664
+ .m_txt-20 {
665
+ font-size: 20px;
666
+ }
667
+
668
+ .m_txt24,
669
+ .m_txt-24 {
670
+ font-size: 24px;
671
+ }
672
+
673
+ .m_txt28,
674
+ .m_txt-28 {
675
+ font-size: 28px;
676
+ }
677
+
678
+ .m_txt30,
679
+ .m_txt-30 {
680
+ font-size: 30px;
681
+ }
682
+
683
+ .m_txt32,
684
+ .m_txt-32 {
685
+ font-size: 32px;
686
+ }
687
+
688
+ .m_txt36,
689
+ .m_txt-36 {
690
+ font-size: 36px;
691
+ }
692
+
693
+ .m_txt40,
694
+ .m_txt-40 {
695
+ font-size: 40px;
696
+ }
697
+
698
+ .m_txt44,
699
+ .m_txt-44 {
700
+ font-size: 44px;
701
+ }
702
+
703
+ .m_txt48,
704
+ .m_txt-48 {
705
+ font-size: 48px;
706
+ }
707
+
708
+ .m_txt50,
709
+ .m_txt-50 {
710
+ font-size: 50px;
711
+ }
712
+
713
+ .m_txt52,
714
+ .m_txt-52 {
715
+ font-size: 52px;
716
+ }
717
+
718
+ .m_txt56,
719
+ .m_txt-56 {
720
+ font-size: 56px;
721
+ }
722
+
723
+ .m_txt60,
724
+ .m_txt-60 {
725
+ font-size: 60px;
726
+ }
727
+
728
+ .m_txt64,
729
+ .m_txt-64 {
730
+ font-size: 64px;
731
+ }
732
+
733
+ .m_txt68,
734
+ .m_txt-68 {
735
+ font-size: 68px;
736
+ }
737
+
738
+ .m_txt70,
739
+ .m_txt-70 {
740
+ font-size: 70px;
741
+ }
742
+
743
+ .m_txt72,
744
+ .m_txt-72 {
745
+ font-size: 72px;
746
+ }
747
+
748
+ .m_txt80,
749
+ .m_txt-80 {
750
+ font-size: 80px;
751
+ }
752
+
753
+ .m_txt90,
754
+ .m_txt-90 {
755
+ font-size: 90px;
756
+ }
757
+
758
+ .m_txt100,
759
+ .m_txt-100 {
760
+ font-size: 100px;
761
+ }
762
+
763
+ .m_txt110,
764
+ .m_txt-110 {
765
+ font-size: 110px;
766
+ }
767
+
768
+ .m_txt120,
769
+ .m_txt-120 {
770
+ font-size: 120px;
771
+ }
772
+
773
+ .m_txt130,
774
+ .m_txt-130 {
775
+ font-size: 130px;
776
+ }
777
+
778
+ .m_txt140,
779
+ .m_txt-140 {
780
+ font-size: 140px;
781
+ }
782
+
783
+ .m_txt150,
784
+ .m_txt-150 {
785
+ font-size: 150px;
786
+ }
787
+
788
+ .m_txt18,
789
+ .m_txt-18 {
790
+ font-size: 18px;
791
+ }
792
+
793
+ .m_txt16,
794
+ .m_txt-16 {
795
+ font-size: 16px;
796
+ }
797
+
798
+ .m_txt14,
799
+ .m_txt-14 {
800
+ font-size: 14px;
801
+ }
802
+
803
+ .m_txt12,
804
+ .m_txt-12 {
805
+ font-size: 12px;
806
+ }
807
+
808
+ .m_txt10,
809
+ .m_txt-10 {
810
+ font-size: 10px;
811
+ }
812
+
813
+ .m_txt9,
814
+ .m_txt-9 {
815
+ font-size: 9px;
816
+ }
817
+
818
+ .m_txt025,
819
+ .m_txt-025 {
820
+ font-size: 0.25rem;
821
+ }
822
+
823
+ .m_txt05,
824
+ .m_txt-05 {
825
+ font-size: 0.5rem;
826
+ }
827
+
828
+ .m_txt075,
829
+ .m_txt-075 {
830
+ font-size: 0.75rem;
831
+ }
832
+
833
+ .m_txt1,
834
+ .m_txt-1 {
835
+ font-size: 1rem;
836
+ }
837
+
838
+ .m_txt1-25,
839
+ .m_txt-1-25 {
840
+ font-size: 1.25rem;
841
+ }
842
+
843
+ .m_txt1-5,
844
+ .m_txt-1-5 {
845
+ font-size: 1.5rem;
846
+ }
847
+
848
+ .m_txt1-75,
849
+ .m_txt-1-75 {
850
+ font-size: 1.75rem;
851
+ }
852
+
853
+ .m_txt2,
854
+ .m_txt-2 {
855
+ font-size: 2rem;
856
+ }
857
+
858
+ .m_txt2-25,
859
+ .m_txt-2-25 {
860
+ font-size: 2.25rem;
861
+ }
862
+
863
+ .m_txt2-5,
864
+ .m_txt-2-5 {
865
+ font-size: 2.5rem;
866
+ }
867
+
868
+ .m_txt2-75,
869
+ .m_txt-2-75 {
870
+ font-size: 2.75rem;
871
+ }
872
+
873
+ .m_txt3,
874
+ .m_txt-3 {
875
+ font-size: 3rem;
876
+ }
877
+
878
+ .m_txt3-25,
879
+ .m_txt-3-25 {
880
+ font-size: 3.25rem;
881
+ }
882
+
883
+ .m_txt3-5,
884
+ .m_txt-3-5 {
885
+ font-size: 3.5rem;
886
+ }
887
+
888
+ .m_txt3-75,
889
+ .m_txt-3-75 {
890
+ font-size: 3.75rem;
891
+ }
892
+
893
+ .m_txt4,
894
+ .m_txt-4 {
895
+ font-size: 4rem;
896
+ }
897
+
898
+ .m_txt4-25,
899
+ .m_txt-4-25 {
900
+ font-size: 4.25rem;
901
+ }
902
+
903
+ .m_txt4-5,
904
+ .m_txt-4-5 {
905
+ font-size: 4.5rem;
906
+ }
907
+
908
+ .m_txt4-75,
909
+ .m_txt-4-75 {
910
+ font-size: 4.75rem;
911
+ }
912
+
913
+ .m_txt5,
914
+ .m_txt-5 {
915
+ font-size: 5rem;
916
+ }
917
+
918
+ .m_txt5-25,
919
+ .m_txt-5-25 {
920
+ font-size: 5.25rem;
921
+ }
922
+
923
+ .m_txt5-5,
924
+ .m_txt-5-5 {
925
+ font-size: 5.5rem;
926
+ }
927
+
928
+ .m_txt5-75,
929
+ .m_txt-5-75 {
930
+ font-size: 5.75rem;
931
+ }
932
+
933
+ .m_txt6,
934
+ .m_txt-6 {
935
+ font-size: 6rem;
936
+ }
937
+
938
+ .m_txt6-25,
939
+ .m_txt-6-25 {
940
+ font-size: 6.25rem;
941
+ }
942
+
943
+ .m_txt6-5,
944
+ .m_txt-6-5 {
945
+ font-size: 6.5rem;
946
+ }
947
+
948
+ .m_txt6-75,
949
+ .m_txt-6-75 {
950
+ font-size: 6.75rem;
951
+ }
952
+
953
+ .m_txt7,
954
+ .m_txt-7 {
955
+ font-size: 7rem;
956
+ }
957
+
958
+ .m_txt7-25,
959
+ .m_txt-7-25 {
960
+ font-size: 7.25rem;
961
+ }
962
+
963
+ .m_txt7-5,
964
+ .m_txt-7-5 {
965
+ font-size: 7.5rem;
966
+ }
967
+
968
+ .m_txt7-75,
969
+ .m_txt-7-75 {
970
+ font-size: 7.75rem;
971
+ }
972
+
973
+ .m_txt8,
974
+ .m_txt-8 {
975
+ font-size: 8rem;
976
+ }
977
+
978
+ .m_txt8-25,
979
+ .m_txt-8-25 {
980
+ font-size: 8.25rem;
981
+ }
982
+
983
+ .m_txt8-5,
984
+ .m_txt-8-5 {
985
+ font-size: 8.5rem;
986
+ }
987
+
988
+ .m_txt8-75,
989
+ .m_txt-8-75 {
990
+ font-size: 8.75rem;
991
+ }
992
+
993
+ .m_no-margin {
994
+ margin: 0;
995
+ }
996
+
997
+ .m_txt-gray,
998
+ .m_txtgray {
999
+ color: var(--bgl-gray);
1000
+ }
1001
+
1002
+ .m_txt-blue,
1003
+ .m_txtblue {
1004
+ color: var(--bgl-primary);
1005
+ }
1006
+
1007
+ .m_txt-black,
1008
+ .m_txtblack {
1009
+ color: var(--bgl-black);
1010
+ }
1011
+
1012
+ .m_txt-red,
1013
+ .m_txtred {
1014
+ color: var(--bgl-red);
1015
+ }
1016
+
1017
+ .m_txt-white,
1018
+ .m_txtwhite {
1019
+ color: var(--bgl-white);
1020
+ }
1021
+
1022
+ .m_font-thin,
1023
+ .m_txt-thin {
1024
+ font-weight: 100;
1025
+ }
1026
+
1027
+ .m_extra-light,
1028
+ .m_font-extra-light,
1029
+ .m_txt-extra-light,
1030
+ .m_font-ultra-light,
1031
+ .m_txt-ultra-light {
1032
+ font-weight: 200;
1033
+ }
1034
+
1035
+ .m_light,
1036
+ .m_txt-light,
1037
+ .m_font-light {
1038
+ font-weight: 300;
1039
+ }
1040
+
1041
+ .m_regular,
1042
+ .m_txt-regular,
1043
+ .m_font-regular {
1044
+ font-weight: 400;
1045
+ }
1046
+
1047
+ .m_medium,
1048
+ .m_txt-medium,
1049
+ .m_font-medium {
1050
+ font-weight: 500;
1051
+ }
1052
+
1053
+ .m_semi,
1054
+ .m_semibold,
1055
+ .m_txt-semi,
1056
+ .m_txt-semibold,
1057
+ .m_font-regular,
1058
+ .m_font-semi,
1059
+ .m_font-semibold {
1060
+ font-weight: 600;
1061
+ }
1062
+
1063
+ .m_bold,
1064
+ .m_txt-bold,
1065
+ .m_font-bold {
1066
+ font-weight: 700;
1067
+ }
1068
+
1069
+ .m_extra-bold,
1070
+ .m_font-extra-bold,
1071
+ .m_txt-extra-bold,
1072
+ .m_font-ultra-bold,
1073
+ .m_txt-ultra-bold {
1074
+ font-weight: 800;
1075
+ }
1076
+
1077
+ .m_black,
1078
+ .m_font-black {
1079
+ font-weight: 900;
1080
+ }
1081
+
1082
+ .m_line-height-0 {
1083
+ line-height: 0;
1084
+ }
1085
+
1086
+ .m_line-height-01 {
1087
+ line-height: 0.1;
1088
+ }
1089
+
1090
+ .m_line-height-02 {
1091
+ line-height: 0.2;
1092
+ }
1093
+
1094
+ .m_line-height-03 {
1095
+ line-height: 0.3;
1096
+ }
1097
+
1098
+ .m_line-height-04 {
1099
+ line-height: 0.4;
1100
+ }
1101
+
1102
+ .m_line-height-05 {
1103
+ line-height: 0.5;
1104
+ }
1105
+
1106
+ .m_line-height-06 {
1107
+ line-height: 0.6;
1108
+ }
1109
+
1110
+ .m_line-height-07 {
1111
+ line-height: 0.7;
1112
+ }
1113
+
1114
+ .m_line-height-08 {
1115
+ line-height: 0.8;
1116
+ }
1117
+
1118
+ .m_line-height-09 {
1119
+ line-height: 0.9;
1120
+ }
1121
+
1122
+ .m_line-height-1 {
1123
+ line-height: 1;
1124
+ }
1125
+
1126
+ .m_line-height-11 {
1127
+ line-height: 1.1;
1128
+ }
1129
+
1130
+ .m_line-height-12 {
1131
+ line-height: 1.2;
1132
+ }
1133
+
1134
+ .m_line-height-13 {
1135
+ line-height: 1.3;
1136
+ }
1137
+
1138
+ .m_line-height-14 {
1139
+ line-height: 1.4;
1140
+ }
1141
+
1142
+ .m_line-height-15 {
1143
+ line-height: 1.5;
1144
+ }
1145
+
1146
+ .m_line-height-16 {
1147
+ line-height: 1.6;
1148
+ }
1149
+
1150
+ .m_line-height-17 {
1151
+ line-height: 1.7;
1152
+ }
1153
+
1154
+ .m_line-height-18 {
1155
+ line-height: 1.8;
1156
+ }
1157
+
1158
+ .m_line-height-19 {
1159
+ line-height: 1.9;
1160
+ }
1161
+
1162
+ .m_line-height-2 {
1163
+ line-height: 2;
1164
+ }
1165
+
1166
+ .m_line-height-normal {
1167
+ line-height: normal;
1168
+ }
1169
+
1170
+ .m_ellipsis {
1171
+ overflow: hidden;
1172
+ display: block;
1173
+ width: 100%;
1174
+ text-overflow: ellipsis;
1175
+ }
1176
+
1177
+ .m_ellipsis-1,
1178
+ .m_ellipsis-2,
1179
+ .m_ellipsis-3,
1180
+ .m_ellipsis-4,
1181
+ .m_ellipsis-5,
1182
+ .m_ellipsis-6 {
1183
+ display: block;
1184
+ display: -webkit-box;
1185
+ max-width: 100%;
1186
+ -webkit-box-orient: vertical;
1187
+ overflow: hidden;
1188
+ text-overflow: ellipsis;
1189
+ }
1190
+
1191
+ .m_ellipsis-1 {
1192
+ -webkit-line-clamp: 1;
1193
+ }
1194
+
1195
+ .m_ellipsis-2 {
1196
+ -webkit-line-clamp: 2;
1197
+ }
1198
+
1199
+ .m_ellipsis-3 {
1200
+ -webkit-line-clamp: 3;
1201
+ }
1202
+
1203
+ .m_ellipsis-4 {
1204
+ -webkit-line-clamp: 4;
1205
+ }
1206
+
1207
+ .m_ellipsis-5 {
1208
+ -webkit-line-clamp: 5;
1209
+ }
1210
+
1211
+ .m_ellipsis-6 {
1212
+ -webkit-line-clamp: 6;
1213
+ }
1214
+
1215
+ .m_pointer {
1216
+ cursor: pointer;
1217
+ }
1218
+
1219
+ .m_decoration-none {
1220
+ text-decoration: none;
1221
+ }
1222
+
1223
+ .m_underline,
1224
+ .m_decoration-underline {
1225
+ text-decoration: underline !important;
1226
+ }
1227
+
1228
+ .m_bgl_icon-font {
1229
+ font-family: 'Material Symbols Outlined', serif;
1230
+ }
1231
+
1232
+ .m_nowrap {
1233
+ white-space: nowrap;
1234
+ }
1235
+
1236
+ .m_balance {
1237
+ text-wrap: balance;
1238
+ }
1239
+
1240
+ .m_pretty {
1241
+ text-wrap: pretty;
1242
+ }
1243
+
1244
+ .m_word-break {
1245
+ word-break: break-word;
1246
+ }
1247
+
1248
+ .m_word-break-all {
1249
+ word-break: break-all;
1250
+ }
1251
+
1252
+ .m_uppercase {
1253
+ text-transform: uppercase;
1254
+ }
1255
+
1256
+ .m_lowercase {
1257
+ text-transform: lowercase;
1258
+ }
1259
+
1260
+ .m_capitalize {
1261
+ text-transform: capitalize;
1262
+ }
1263
+ }