@bagelink/vue 0.0.302 → 0.0.308

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 (68) hide show
  1. package/dist/components/Alert.vue.d.ts +1 -0
  2. package/dist/components/Alert.vue.d.ts.map +1 -1
  3. package/dist/components/Btn.vue.d.ts.map +1 -1
  4. package/dist/components/Card.vue.d.ts +6 -2
  5. package/dist/components/Card.vue.d.ts.map +1 -1
  6. package/dist/components/Carousel.vue.d.ts +64 -0
  7. package/dist/components/Carousel.vue.d.ts.map +1 -0
  8. package/dist/components/ListView.vue.d.ts +2 -26
  9. package/dist/components/ListView.vue.d.ts.map +1 -1
  10. package/dist/components/Modal.vue.d.ts +0 -1
  11. package/dist/components/Modal.vue.d.ts.map +1 -1
  12. package/dist/components/ModalForm.vue.d.ts.map +1 -1
  13. package/dist/components/NavBar.vue.d.ts +1 -8
  14. package/dist/components/NavBar.vue.d.ts.map +1 -1
  15. package/dist/components/PageTitle.vue.d.ts.map +1 -1
  16. package/dist/components/Popover.vue.d.ts +10 -0
  17. package/dist/components/Popover.vue.d.ts.map +1 -0
  18. package/dist/components/TableSchema.vue.d.ts.map +1 -1
  19. package/dist/components/form/BglForm.vue.d.ts.map +1 -1
  20. package/dist/components/form/ItemRef.vue.d.ts +0 -1
  21. package/dist/components/form/ItemRef.vue.d.ts.map +1 -1
  22. package/dist/components/form/inputs/DateInput.vue.d.ts +0 -1
  23. package/dist/components/form/inputs/SelectField.vue.d.ts +4 -1
  24. package/dist/components/form/inputs/SelectField.vue.d.ts.map +1 -1
  25. package/dist/components/index.d.ts +1 -1
  26. package/dist/components/index.d.ts.map +1 -1
  27. package/dist/index.cjs +355 -211
  28. package/dist/index.d.ts +0 -1
  29. package/dist/index.mjs +356 -212
  30. package/dist/style.css +1166 -859
  31. package/dist/types/NavLink.d.ts +9 -0
  32. package/dist/types/NavLink.d.ts.map +1 -0
  33. package/dist/types/index.d.ts +1 -1
  34. package/dist/types/index.d.ts.map +1 -1
  35. package/dist/types/materialIcon.d.ts +2 -0
  36. package/dist/types/materialIcon.d.ts.map +1 -0
  37. package/package.json +1 -1
  38. package/src/components/Alert.vue +37 -16
  39. package/src/components/Avatar.vue +1 -1
  40. package/src/components/Badge.vue +50 -5
  41. package/src/components/Btn.vue +137 -135
  42. package/src/components/Card.vue +46 -3
  43. package/src/components/Carousel.vue +258 -0
  44. package/src/components/ListItem.vue +1 -1
  45. package/src/components/ListView.vue +47 -38
  46. package/src/components/Modal.vue +38 -2
  47. package/src/components/ModalForm.vue +4 -2
  48. package/src/components/NavBar.vue +42 -67
  49. package/src/components/PageTitle.vue +33 -11
  50. package/src/components/TabbedLayout.vue +1 -1
  51. package/src/components/TableSchema.vue +67 -77
  52. package/src/components/index.ts +1 -1
  53. package/src/components/whatsapp/form/MsgTemplate.vue +1 -1
  54. package/src/styles/bagel.css +11 -2
  55. package/src/styles/buttons.css +1 -0
  56. package/src/styles/inputs.css +91 -92
  57. package/src/styles/layout.css +337 -18
  58. package/src/styles/loginCard.css +48 -0
  59. package/src/styles/text.css +27 -11
  60. package/src/styles/theme.css +226 -515
  61. package/src/styles/transitions.css +18 -0
  62. package/src/types/NavLink.ts +9 -0
  63. package/src/types/index.ts +1 -1
  64. package/dist/components/Drop.vue.d.ts +0 -34
  65. package/dist/components/Drop.vue.d.ts.map +0 -1
  66. package/dist/components/FileUploader.vue.d.ts +0 -60
  67. package/dist/components/FileUploader.vue.d.ts.map +0 -1
  68. package/src/components/LangText.vue +0 -32
@@ -56,11 +56,6 @@
56
56
  height: fit-content;
57
57
  }
58
58
 
59
- .margin-auto {
60
- margin-left: auto;
61
- margin-right: auto;
62
- }
63
-
64
59
  .auto-flow-columns {
65
60
  grid-auto-flow: column;
66
61
  }
@@ -98,10 +93,6 @@
98
93
  overflow: auto;
99
94
  }
100
95
 
101
- .ps-1 {
102
- padding-left: 1rem;
103
- }
104
-
105
96
  .justify-content-around {
106
97
  justify-content: space-between;
107
98
  }
@@ -118,10 +109,16 @@
118
109
  justify-self: center;
119
110
  }
120
111
 
121
- .position-right {
112
+ .position-start {
122
113
  position: absolute;
123
114
  top: 0px;
124
- right: 0px;
115
+ inset-inline-start: 0px;
116
+ }
117
+
118
+ .position-end {
119
+ position: absolute;
120
+ top: 0px;
121
+ inset-inline-end: 0px;
125
122
  }
126
123
 
127
124
  .position-absolute {
@@ -144,11 +141,13 @@
144
141
  align-self: end;
145
142
  }
146
143
 
147
- .min-100 {
144
+ .min-100,
145
+ .min100 {
148
146
  min-height: 100%;
149
147
  }
150
148
 
151
- .w-100 {
149
+ .w-100,
150
+ .w100 {
152
151
  width: 100%;
153
152
  }
154
153
 
@@ -166,8 +165,8 @@
166
165
  .w970,
167
166
  .w1030,
168
167
  .w1170 {
169
- margin-left: auto;
170
- margin-right: auto;
168
+ margin-inline-start: auto;
169
+ margin-inline-end: auto;
171
170
  width: 98%;
172
171
  }
173
172
 
@@ -227,6 +226,16 @@
227
226
  max-width: 1170px;
228
227
  }
229
228
 
229
+ .w-all,
230
+ .wall {
231
+ width: -webkit-fill-available;
232
+ }
233
+
234
+ .h-all,
235
+ .hall {
236
+ height: -webkit-fill-available;
237
+ }
238
+
230
239
  .gap-1 {
231
240
  gap: 0.25rem;
232
241
  }
@@ -364,6 +373,51 @@
364
373
  margin-top: 4rem !important;
365
374
  }
366
375
 
376
+ .my-auto {
377
+ margin-top: auto !important;
378
+ margin-bottom: auto !important;
379
+ }
380
+
381
+ .my-0 {
382
+ margin-top: 0rem !important;
383
+ margin-bottom: 0rem !important;
384
+ }
385
+
386
+ .my-025 {
387
+ margin-top: 0.25rem !important;
388
+ margin-bottom: 0.25rem !important;
389
+ }
390
+
391
+ .my-05 {
392
+ margin-top: 0.5rem !important;
393
+ margin-bottom: 0.5rem !important;
394
+ }
395
+
396
+ .my-075 {
397
+ margin-top: 0.75rem !important;
398
+ margin-bottom: 0.75rem !important;
399
+ }
400
+
401
+ .my-1 {
402
+ margin-top: 1rem !important;
403
+ margin-bottom: 1rem !important;
404
+ }
405
+
406
+ .my-2 {
407
+ margin-top: 2rem !important;
408
+ margin-bottom: 2rem !important;
409
+ }
410
+
411
+ .my-3 {
412
+ margin-top: 3rem !important;
413
+ margin-bottom: 3rem !important;
414
+ }
415
+
416
+ .my-4 {
417
+ margin-top: 4rem !important;
418
+ margin-bottom: 4rem !important;
419
+ }
420
+
367
421
  .ms-auto {
368
422
  margin-inline-start: auto !important;
369
423
  }
@@ -436,6 +490,88 @@
436
490
  margin-inline-end: 4rem !important;
437
491
  }
438
492
 
493
+ .mx-auto,
494
+ .margin-auto {
495
+ margin-inline-start: auto !important;
496
+ margin-inline-end: auto !important;
497
+ }
498
+
499
+ .mx-0 {
500
+ margin-inline-start: 0rem !important;
501
+ margin-inline-end: 0rem !important;
502
+ }
503
+
504
+ .mx-025 {
505
+ margin-inline-start: 0.25rem !important;
506
+ margin-inline-end: 0.25rem !important;
507
+ }
508
+
509
+ .mx-05 {
510
+ margin-inline-start: 0.5rem !important;
511
+ margin-inline-end: 0.5rem !important;
512
+ }
513
+
514
+ .mx-075 {
515
+ margin-inline-start: 0.75rem !important;
516
+ margin-inline-end: 0.75rem !important;
517
+ }
518
+
519
+ .mx-1 {
520
+ margin-inline-start: 1rem !important;
521
+ margin-inline-end: 1rem !important;
522
+ }
523
+
524
+ .mx-2 {
525
+ margin-inline-start: 2rem !important;
526
+ margin-inline-end: 2rem !important;
527
+ }
528
+
529
+ .mx-3 {
530
+ margin-inline-start: 3rem !important;
531
+ margin-inline-end: 3rem !important;
532
+ }
533
+
534
+ .mx-4 {
535
+ margin-inline-start: 4rem !important;
536
+ margin-inline-end: 4rem !important;
537
+ }
538
+
539
+ .m-auto {
540
+ margin: auto !important;
541
+ }
542
+
543
+ .m-0 {
544
+ margin: 0rem !important;
545
+ }
546
+
547
+ .m-025 {
548
+ margin: 0.25rem !important;
549
+ }
550
+
551
+ .m-05 {
552
+ margin: 0.5rem !important;
553
+ }
554
+
555
+ .m-075 {
556
+ margin: 0.75rem !important;
557
+ }
558
+
559
+ .m-1 {
560
+ margin: 1rem !important;
561
+ }
562
+
563
+ .m-2 {
564
+ margin: 2rem !important;
565
+ }
566
+
567
+ .m-3 {
568
+ margin: 3rem !important;
569
+ }
570
+
571
+ .m-4 {
572
+ margin: 4rem !important;
573
+ }
574
+
439
575
  .-mb-025 {
440
576
  margin-bottom: -0.25rem !important;
441
577
  }
@@ -492,6 +628,41 @@
492
628
  margin-top: -4rem !important;
493
629
  }
494
630
 
631
+ .-my-025 {
632
+ margin-top: -0.25rem !important;
633
+ margin-bottom: -0.25rem !important;
634
+ }
635
+
636
+ .-my-05 {
637
+ margin-top: -0.5rem !important;
638
+ margin-bottom: -0.5rem !important;
639
+ }
640
+
641
+ .-my-075 {
642
+ margin-top: 0.75rem !important;
643
+ margin-bottom: 0.75rem !important;
644
+ }
645
+
646
+ .-my-1 {
647
+ margin-top: -1rem !important;
648
+ margin-bottom: -1rem !important;
649
+ }
650
+
651
+ .-my-2 {
652
+ margin-top: -2rem !important;
653
+ margin-bottom: -2rem !important;
654
+ }
655
+
656
+ .-my-3 {
657
+ margin-top: -3rem !important;
658
+ margin-bottom: -3rem !important;
659
+ }
660
+
661
+ .-my-4 {
662
+ margin-top: -4rem !important;
663
+ margin-bottom: -4rem !important;
664
+ }
665
+
495
666
  .-ms-025 {
496
667
  margin-inline-start: -0.25rem !important;
497
668
  }
@@ -676,6 +847,118 @@
676
847
  padding-inline-end: 0.25rem !important;
677
848
  }
678
849
 
850
+ .px-0 {
851
+ padding-inline-end: 0rem !important;
852
+ padding-inline-start: 0rem !important;
853
+ }
854
+
855
+ .px-1 {
856
+ padding-inline-end: 1rem !important;
857
+ padding-inline-start: 1rem !important;
858
+ }
859
+
860
+ .px-2 {
861
+ padding-inline-end: 2rem !important;
862
+ padding-inline-start: 2rem !important;
863
+ }
864
+
865
+ .px-3 {
866
+ padding-inline-end: 3rem !important;
867
+ padding-inline-start: 3rem !important;
868
+ }
869
+
870
+ .px-4 {
871
+ padding-inline-end: 4rem !important;
872
+ padding-inline-start: 4rem !important;
873
+ }
874
+
875
+ .px-075 {
876
+ padding-inline-end: 0.75rem !important;
877
+ padding-inline-start: 0.75rem !important;
878
+ }
879
+
880
+ .px-05 {
881
+ padding-inline-end: 0.5rem !important;
882
+ padding-inline-start: 0.5rem !important;
883
+ }
884
+
885
+ .px-025 {
886
+ padding-inline-end: 0.25rem !important;
887
+ padding-inline-start: 0.25rem !important;
888
+ }
889
+
890
+ .py-0 {
891
+ padding-top: 0rem !important;
892
+ padding-bottom: 0rem !important;
893
+ }
894
+
895
+ .py-1 {
896
+ padding-top: 1rem !important;
897
+ padding-bottom: 1rem !important;
898
+ }
899
+
900
+ .py-2 {
901
+ padding-top: 2rem !important;
902
+ padding-bottom: 2rem !important;
903
+ }
904
+
905
+ .py-3 {
906
+ padding-top: 3rem !important;
907
+ padding-bottom: 3rem !important;
908
+ }
909
+
910
+ .py-4 {
911
+ padding-top: 4rem !important;
912
+ padding-bottom: 4rem !important;
913
+ }
914
+
915
+ .py-075 {
916
+ padding-top: 0.75rem !important;
917
+ padding-bottom: 0.75rem !important;
918
+ }
919
+
920
+ .py-05 {
921
+ padding-top: 0.5rem !important;
922
+ padding-bottom: 0.5rem !important;
923
+ }
924
+
925
+ .py-025 {
926
+ padding-top: 0.25rem !important;
927
+ padding-bottom: 0.25rem !important;
928
+ }
929
+
930
+ .p-0 {
931
+ padding: 0rem !important;
932
+ }
933
+
934
+ .p-1 {
935
+ padding: 1rem !important;
936
+ }
937
+
938
+ .p-2 {
939
+ padding: 2rem !important;
940
+ }
941
+
942
+ .p-3 {
943
+ padding: 3rem !important;
944
+ }
945
+
946
+ .p-4 {
947
+ padding: 4rem !important;
948
+ }
949
+
950
+ .p-075 {
951
+ padding: 0.75rem !important;
952
+ }
953
+
954
+ .p-05 {
955
+ padding: 0.5rem !important;
956
+ }
957
+
958
+ .p-025 {
959
+ padding: 0.25rem !important;
960
+ }
961
+
679
962
  .flex {
680
963
  display: flex;
681
964
  align-items: center;
@@ -686,6 +969,20 @@
686
969
  align-items: stretch;
687
970
  }
688
971
 
972
+ .hide,
973
+ .display-hide {
974
+ display: none;
975
+ }
976
+
977
+ .display-block {
978
+ display: block;
979
+ }
980
+
981
+ .block {
982
+ display: block;
983
+ width: 100%;
984
+ }
985
+
689
986
  .flex-wrap {
690
987
  flex-wrap: wrap;
691
988
  }
@@ -706,8 +1003,6 @@
706
1003
  color: var(--label-color);
707
1004
  }
708
1005
 
709
-
710
-
711
1006
  .h-10 {
712
1007
  height: 10%;
713
1008
  }
@@ -901,6 +1196,11 @@
901
1196
  height: 600px;
902
1197
  }
903
1198
 
1199
+ .layout-h-100 {
1200
+ height: 100vh;
1201
+ overflow-y: hidden;
1202
+ }
1203
+
904
1204
  .grid-wrap-1 {
905
1205
  grid-template-columns: repeat(1, 1fr);
906
1206
  height: max-content;
@@ -942,7 +1242,26 @@
942
1242
  height: max-content;
943
1243
  }
944
1244
 
945
- /* grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr)); */
1245
+ .overflow-hidden {
1246
+ overflow: hidden;
1247
+ }
1248
+
1249
+ .overflow-x {
1250
+ overflow-x: auto;
1251
+ }
1252
+
1253
+ .overflow-y {
1254
+ overflow-y: auto;
1255
+ }
1256
+
1257
+ .overflow-x-hidden {
1258
+ overflow-x: hidden;
1259
+ }
1260
+
1261
+ .overflow-y-hidden {
1262
+ overflow-y: hidden;
1263
+ }
1264
+
946
1265
  @media screen and (max-width: 910px) {
947
1266
  .grid-wrap-2 {
948
1267
  grid-template-columns: repeat(1, 1fr);
@@ -0,0 +1,48 @@
1
+ .login-card h3 {
2
+ font-size: 1.4rem;
3
+ }
4
+
5
+ .login-card .bagel-input input {
6
+ min-width: calc(var(--input-height) * 2);
7
+ }
8
+
9
+ .login-card .loader-wrapper {
10
+ width: 100%;
11
+ margin-top: 1rem;
12
+ }
13
+
14
+ .login-card .bgl_btn {
15
+ width: 100%;
16
+ background: var(--bgl-primary);
17
+ color: var(--bgl-white);
18
+ }
19
+
20
+ .login-card .forgot-password {
21
+ margin: -5px 0 10px;
22
+ color: var(--bgl-black);
23
+ text-decoration: none;
24
+ }
25
+
26
+ .login-card .forgot-password:active {
27
+ -webkit-filter: brightness(70%);
28
+ filter: brightness(70%);
29
+ color: var(--bgl-primary);
30
+ }
31
+
32
+ .login-card .error {
33
+ color: var(--bgl-red);
34
+ font-size: 0.8rem;
35
+ margin-top: -0.75rem;
36
+ margin-bottom: 0.75rem;
37
+ }
38
+
39
+ @media screen and (max-width: 910px) {
40
+ .login-card {
41
+ width: 94%;
42
+ max-width: 400px;
43
+ }
44
+
45
+ .login-card .bagel-input.wider input {
46
+ min-width: 220px;
47
+ }
48
+ }
@@ -10,35 +10,42 @@
10
10
  text-align: end;
11
11
  }
12
12
 
13
- .smalltxt {
13
+ .txt-small {
14
14
  font-size: 12px;
15
15
  }
16
16
 
17
- .txt20 {
17
+ .txt20,
18
+ .txt-20 {
18
19
  font-size: 20px;
19
20
  }
20
21
 
21
- .txt18 {
22
+ .txt18,
23
+ .txt-18 {
22
24
  font-size: 18px;
23
25
  }
24
26
 
25
- .txt16 {
27
+ .txt16,
28
+ .txt-16 {
26
29
  font-size: 16px;
27
30
  }
28
31
 
29
- .txt14 {
32
+ .txt14,
33
+ .txt-14 {
30
34
  font-size: 14px;
31
35
  }
32
36
 
33
- .txt12 {
37
+ .txt12,
38
+ .txt-12 {
34
39
  font-size: 12px;
35
40
  }
36
41
 
37
- .txt10 {
42
+ .txt10,
43
+ .txt-10 {
38
44
  font-size: 10px;
39
45
  }
40
46
 
41
- .txt9 {
47
+ .txt9,
48
+ .txt-9 {
42
49
  font-size: 9px;
43
50
  }
44
51
 
@@ -46,22 +53,27 @@
46
53
  margin: 0;
47
54
  }
48
55
 
56
+ .txt-gray,
49
57
  .txtgray {
50
58
  color: var(--bgl-gray);
51
59
  }
52
60
 
61
+ .txt-blue,
53
62
  .txtblue {
54
63
  color: var(--bgl-primary);
55
64
  }
56
65
 
66
+ .txt-black,
57
67
  .txtblack {
58
68
  color: var(--bgl-black);
59
69
  }
60
70
 
71
+ .txt-red,
61
72
  .txtred {
62
73
  color: var(--bgl-red);
63
74
  }
64
75
 
76
+ .txt-white,
65
77
  .txtwhite {
66
78
  color: var(--bgl-white);
67
79
  }
@@ -136,15 +148,19 @@
136
148
  }
137
149
 
138
150
  @media screen and (max-width: 910px) {
139
- .txt20 {
151
+
152
+ .txt20,
153
+ .txt-20 {
140
154
  font-size: 18px;
141
155
  }
142
156
 
143
- .txt16 {
157
+ .txt16,
158
+ .txt-16 {
144
159
  font-size: 14px;
145
160
  }
146
161
 
147
- .txt14 {
162
+ .txt14,
163
+ .txt-14 {
148
164
  font-size: 12px;
149
165
  }
150
166
  }