@bagelink/vue 0.0.160 → 0.0.164

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 (82) hide show
  1. package/dist/components/Btn.vue.d.ts +2 -2
  2. package/dist/components/Btn.vue.d.ts.map +1 -1
  3. package/dist/components/Comments.vue.d.ts.map +1 -1
  4. package/dist/components/DropDown.vue.d.ts.map +1 -1
  5. package/dist/components/FileUploader.vue.d.ts.map +1 -1
  6. package/dist/components/LangText.vue.d.ts.map +1 -1
  7. package/dist/components/NavBar.vue.d.ts.map +1 -1
  8. package/dist/components/PersonPreview.vue.d.ts +1 -1
  9. package/dist/components/PersonPreview.vue.d.ts.map +1 -1
  10. package/dist/components/PersonPreviewFormkit.vue.d.ts +1 -1
  11. package/dist/components/PersonPreviewFormkit.vue.d.ts.map +1 -1
  12. package/dist/components/RTXEditor.vue.d.ts.map +1 -1
  13. package/dist/components/TableSchema.vue.d.ts.map +1 -1
  14. package/dist/components/charts/BarChart.vue.d.ts.map +1 -1
  15. package/dist/components/dashboard/Lineart.vue.d.ts +1 -1
  16. package/dist/components/dashboard/Lineart.vue.d.ts.map +1 -1
  17. package/dist/components/form/inputs/CheckInput.vue.d.ts.map +1 -1
  18. package/dist/components/form/inputs/Checkbox.vue.d.ts.map +1 -1
  19. package/dist/components/form/inputs/PasswordInput.vue.d.ts.map +1 -1
  20. package/dist/components/formkit/AddressArray.vue.d.ts.map +1 -1
  21. package/dist/components/formkit/BankDetailsArray.vue.d.ts.map +1 -1
  22. package/dist/components/formkit/ContactArrayFormKit.vue.d.ts.map +1 -1
  23. package/dist/components/formkit/FileUploader.vue.d.ts.map +1 -1
  24. package/dist/components/formkit/MiscFields.vue.d.ts.map +1 -1
  25. package/dist/index.cjs +60 -49
  26. package/dist/index.mjs +60 -49
  27. package/dist/style.css +1468 -1402
  28. package/package.json +2 -2
  29. package/src/components/Btn.vue +127 -132
  30. package/src/components/Comments.vue +155 -169
  31. package/src/components/DropDown.vue +73 -77
  32. package/src/components/FileUploader.vue +133 -141
  33. package/src/components/FormKitTable.vue +191 -205
  34. package/src/components/LangText.vue +14 -14
  35. package/src/components/NavBar.vue +264 -261
  36. package/src/components/PersonPreview.vue +123 -148
  37. package/src/components/PersonPreviewFormkit.vue +124 -148
  38. package/src/components/RTXEditor.vue +91 -91
  39. package/src/components/TableSchema.vue +150 -156
  40. package/src/components/charts/BarChart.vue +212 -227
  41. package/src/components/dashboard/Lineart.vue +117 -130
  42. package/src/components/form/inputs/CheckInput.vue +90 -90
  43. package/src/components/form/inputs/Checkbox.vue +38 -41
  44. package/src/components/form/inputs/PasswordInput.vue +56 -63
  45. package/src/components/formkit/AddressArray.vue +150 -173
  46. package/src/components/formkit/BankDetailsArray.vue +175 -198
  47. package/src/components/formkit/ContactArrayFormKit.vue +124 -142
  48. package/src/components/formkit/FileUploader.vue +256 -260
  49. package/src/components/formkit/MiscFields.vue +42 -42
  50. package/src/components/formkit/Toggle.vue +97 -97
  51. package/src/styles/bagel.css +1 -0
  52. package/src/styles/buttons.css +5 -0
  53. package/src/styles/dark.css +46 -0
  54. package/src/styles/fonts/Ploni.css +8 -8
  55. package/src/styles/inputs.css +57 -13
  56. package/src/styles/layout.css +43 -0
  57. package/src/styles/text.css +83 -10
  58. package/src/styles/theme.css +25 -155
  59. package/src/styles/fonts/Ploni/ploni-black.eot +0 -0
  60. package/src/styles/fonts/Ploni/ploni-black.woff +0 -0
  61. package/src/styles/fonts/Ploni/ploni-black.woff2 +0 -0
  62. package/src/styles/fonts/Ploni/ploni-bold.eot +0 -0
  63. package/src/styles/fonts/Ploni/ploni-bold.woff +0 -0
  64. package/src/styles/fonts/Ploni/ploni-bold.woff2 +0 -0
  65. package/src/styles/fonts/Ploni/ploni-demibold.eot +0 -0
  66. package/src/styles/fonts/Ploni/ploni-demibold.woff +0 -0
  67. package/src/styles/fonts/Ploni/ploni-demibold.woff2 +0 -0
  68. package/src/styles/fonts/Ploni/ploni-light.eot +0 -0
  69. package/src/styles/fonts/Ploni/ploni-light.woff +0 -0
  70. package/src/styles/fonts/Ploni/ploni-light.woff2 +0 -0
  71. package/src/styles/fonts/Ploni/ploni-medium.eot +0 -0
  72. package/src/styles/fonts/Ploni/ploni-medium.woff +0 -0
  73. package/src/styles/fonts/Ploni/ploni-medium.woff2 +0 -0
  74. package/src/styles/fonts/Ploni/ploni-regular.eot +0 -0
  75. package/src/styles/fonts/Ploni/ploni-regular.woff +0 -0
  76. package/src/styles/fonts/Ploni/ploni-regular.woff2 +0 -0
  77. package/src/styles/fonts/Ploni/ploni-ultrabold.eot +0 -0
  78. package/src/styles/fonts/Ploni/ploni-ultrabold.woff +0 -0
  79. package/src/styles/fonts/Ploni/ploni-ultrabold.woff2 +0 -0
  80. package/src/styles/fonts/Ploni/ploni-ultralight.eot +0 -0
  81. package/src/styles/fonts/Ploni/ploni-ultralight.woff +0 -0
  82. package/src/styles/fonts/Ploni/ploni-ultralight.woff2 +0 -0
@@ -61,6 +61,10 @@
61
61
  grid-auto-flow: column;
62
62
  }
63
63
 
64
+ .grid-2-col {
65
+ grid-template-columns: 1fr 1fr;
66
+ }
67
+
64
68
  .justify-content-between {
65
69
  justify-content: space-between;
66
70
  }
@@ -265,4 +269,43 @@
265
269
 
266
270
  .me-3 {
267
271
  margin-inline-end: 1rem;
272
+ }
273
+
274
+ .pb-1 {
275
+ padding-bottom: 1rem;
276
+ }
277
+
278
+ .pb-2 {
279
+ padding-bottom: 2rem;
280
+ }
281
+
282
+ .pt-1 {
283
+ padding-top: 1rem;
284
+ }
285
+
286
+ .pt-2 {
287
+ padding-top: 2rem;
288
+ }
289
+
290
+
291
+ .flex {
292
+ display: flex;
293
+ align-items: center;
294
+ }
295
+
296
+ .flex-stretch {
297
+ display: flex;
298
+ align-items: stretch;
299
+ }
300
+
301
+ .flex-wrap {
302
+ flex-wrap: wrap;
303
+ }
304
+
305
+ .flex-end {
306
+ justify-content: flex-end;
307
+ }
308
+
309
+ .space-between {
310
+ justify-content: space-between;
268
311
  }
@@ -7,29 +7,102 @@ h6 {
7
7
  width: max-content;
8
8
  }
9
9
 
10
- h1 {
10
+ h1 {}
11
+
12
+ h2 {}
13
+
14
+ h3 {}
15
+
16
+ h4 {}
17
+
18
+ h5 {}
19
+
20
+ h6 {}
21
+
22
+ .txt-center {
23
+ text-align: center;
11
24
  }
12
25
 
13
- h2 {
26
+
27
+ .smalltxt {
28
+ font-size: 12px;
14
29
  }
15
30
 
16
- h3 {
31
+
32
+ .txt20 {
33
+ font-size: 20px;
17
34
  }
18
35
 
19
- h4 {
36
+ .txt18 {
37
+ font-size: 18px;
20
38
  }
21
39
 
22
- h5 {
40
+ .txt16 {
41
+ font-size: 16px;
23
42
  }
24
43
 
25
- h6 {
44
+ .txt14 {
45
+ font-size: 14px;
26
46
  }
27
47
 
28
- .txt-center {
29
- text-align: center;
48
+ .txt12 {
49
+ font-size: 12px;
30
50
  }
31
51
 
52
+ .txt10 {
53
+ font-size: 10px;
54
+ }
32
55
 
33
- .smalltxt {
34
- font-size: 12px;
56
+ .txt9 {
57
+ font-size: 9px;
35
58
  }
59
+
60
+ .no-margin {
61
+ margin: 0;
62
+ }
63
+
64
+ .txtgray {
65
+ color: var(--bgl-gray);
66
+ }
67
+
68
+ .txtblue {
69
+ color: var(--bgl-primary);
70
+ }
71
+
72
+ .font-light {
73
+ font-weight: 100;
74
+ }
75
+
76
+ .bold {
77
+ font-weight: 700;
78
+ }
79
+
80
+ .ellipsis {
81
+ overflow: hidden;
82
+ display: block;
83
+ width: 100%;
84
+ text-overflow: ellipsis;
85
+ }
86
+
87
+ .pointer {
88
+ cursor: pointer;
89
+ }
90
+
91
+ .icon-font {
92
+ font-family: "Material Symbols Outlined", serif;
93
+ }
94
+
95
+
96
+ @media screen and (max-width: 910px) {
97
+ .txt20 {
98
+ font-size: 18px;
99
+ }
100
+
101
+ .txt16 {
102
+ font-size: 14px;
103
+ }
104
+
105
+ .txt14 {
106
+ font-size: 12px;
107
+ }
108
+ }
@@ -3,26 +3,28 @@
3
3
  @import url("https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined&display=swap");
4
4
  @import url("https://fonts.googleapis.com/css2?family=Lexend:wght@100;200;300;400;500;600;700;800;900&display=swap");
5
5
 
6
+
6
7
  :root {
7
- --bgl-blue: #19b8ea;
8
- --bgl-blue-tint: #19b8ea80;
8
+ --bgl-primary: #2E5BFF;
9
+ --bgl-primary-tint: #2E5BFF80;
10
+
9
11
  --bgl-blue-20: rgba(46, 91, 255, 20%);
10
12
  --bgl-blue-dark: #191c30;
11
- --bgl-red: #ed6c6f;
12
- --bgl-red-tint: #fbe2e2;
13
- --bgl-yellow: #ffbb00;
14
- --bgl-yellow-light: #fff6d5;
13
+ --bgl-blue-light: #eef6ff;
14
+ --bgl-black: #282929;
15
+ --bgl-black-tint: #28292980;
15
16
  --bgl-white: #fff;
16
- --bgl-pink: #f1416c;
17
17
  --bgl-gray: #b7b7b7;
18
18
  --bgl-gray-light: #f5f8fa;
19
19
  --bgl-gray-80: #e8ecef;
20
20
  --bgl-gray-20: rgba(183, 183, 183, 0.2);
21
- --bgl-blue-light: #eef6ff;
21
+ --bgl-pink: #f1416c;
22
+ --bgl-red: #ed6c6f;
23
+ --bgl-red-tint: #fbe2e2;
24
+ --bgl-yellow: #ffbb00;
25
+ --bgl-yellow-light: #fff6d5;
22
26
  --bgl-green: #75c98f;
23
27
  --border-color: #eff2f5;
24
- --bgl-black: #282929;
25
- --bgl-black-tint: #28292980;
26
28
  --bgl-bg: #f4f6fa;
27
29
  --bgl-shadow: #4c577d26;
28
30
  --whatsapp-gray: #89959f;
@@ -33,7 +35,9 @@
33
35
  --btn-border-radius: 10px;
34
36
  --btn-padding: 30px;
35
37
  --input-bg: #f5f8fa;
36
- --input-color: #00000080;
38
+ --label-color: #00000080;
39
+ --input-color: #000000;
40
+ --placeholder-color: #00000040;
37
41
  --input-height: 40px;
38
42
  --btn-height: 40px;
39
43
  --input-font-size: 12px;
@@ -43,7 +47,6 @@
43
47
  --bgl-font: "Lexend", "Ploni", sans-serif;
44
48
  }
45
49
 
46
- [theme="dark"] {}
47
50
 
48
51
  .Vue-Toastification__toast {
49
52
  border-radius: var(--card-border-radius);
@@ -51,7 +54,7 @@
51
54
  }
52
55
 
53
56
  .Vue-Toastification__toast--default {
54
- background: var(--bgl-blue);
57
+ background: var(--bgl-primary);
55
58
  }
56
59
 
57
60
  .Vue-Toastification__close-button {
@@ -153,14 +156,9 @@ body {
153
156
  margin-top: 1rem;
154
157
  }
155
158
 
156
- .btn.thin {
157
- height: calc(var(--btn-height) * 0.7);
158
- line-height: calc(var(--btn-height) * 0.7);
159
- }
160
-
161
159
  .login-card .btn {
162
160
  width: 100%;
163
- background: var(--bgl-blue);
161
+ background: var(--bgl-primary);
164
162
  color: var(--bgl-white);
165
163
  }
166
164
 
@@ -172,7 +170,7 @@ body {
172
170
 
173
171
  .login-card .forgot-password:active {
174
172
  filter: brightness(70%);
175
- color: var(--bgl-blue);
173
+ color: var(--bgl-primary);
176
174
  }
177
175
 
178
176
  .login-card .error {
@@ -191,10 +189,6 @@ body {
191
189
  text-align: center;
192
190
  }
193
191
 
194
- .icon-font {
195
- font-family: "Material Symbols Outlined", serif;
196
- }
197
-
198
192
  .tabs {
199
193
  column-gap: 1rem;
200
194
  margin-top: 20px;
@@ -211,10 +205,6 @@ body {
211
205
  margin-bottom: 1rem;
212
206
  }
213
207
 
214
- .card>.card {
215
- /* padding: 0; */
216
- }
217
-
218
208
  .card .card.tabs-top {
219
209
  padding: 0;
220
210
  }
@@ -233,12 +223,12 @@ body {
233
223
  }
234
224
 
235
225
  .tab.active {
236
- color: var(--bgl-blue);
237
- border-bottom: 2px solid var(--bgl-blue);
226
+ color: var(--bgl-primary);
227
+ border-bottom: 2px solid var(--bgl-primary);
238
228
  }
239
229
 
240
230
  .tab:hover {
241
- color: var(--bgl-blue);
231
+ color: var(--bgl-primary);
242
232
  }
243
233
 
244
234
  .tab:active {
@@ -259,12 +249,12 @@ body {
259
249
  }
260
250
 
261
251
  .router-tab.router-link-active {
262
- color: var(--bgl-blue);
263
- border-bottom: 2px solid var(--bgl-blue);
252
+ color: var(--bgl-primary);
253
+ border-bottom: 2px solid var(--bgl-primary);
264
254
  }
265
255
 
266
256
  .router-tab:hover {
267
- color: var(--bgl-blue);
257
+ color: var(--bgl-primary);
268
258
  }
269
259
 
270
260
  .router-tab:active {
@@ -282,7 +272,7 @@ body {
282
272
 
283
273
  .pill.blue {
284
274
  background: var(--bgl-blue-light);
285
- color: var(--bgl-blue);
275
+ color: var(--bgl-primary);
286
276
  }
287
277
 
288
278
  .pill.red {
@@ -367,34 +357,12 @@ body {
367
357
  transition: all 0.5s cubic-bezier(0.79, 0.01, 0.34, 0.99);
368
358
  }
369
359
 
370
- .flex {
371
- display: flex;
372
- align-items: center;
373
- }
374
-
375
- .flex-stretch {
376
- display: flex;
377
- align-items: stretch;
378
- }
379
-
380
- .flex-wrap {
381
- flex-wrap: wrap;
382
- }
383
-
384
360
  .FormRow {
385
361
  display: grid;
386
362
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
387
363
  gap: 1rem;
388
364
  }
389
365
 
390
- .flex-end {
391
- justify-content: flex-end;
392
- }
393
-
394
- .space-between {
395
- justify-content: space-between;
396
- }
397
-
398
366
  .detail-main {
399
367
  overflow-y: auto;
400
368
  }
@@ -403,42 +371,6 @@ body {
403
371
  margin: 0 0 10px 0;
404
372
  }
405
373
 
406
- .txt20 {
407
- font-size: 20px;
408
- }
409
-
410
- .txt16 {
411
- font-size: 16px;
412
- }
413
-
414
- .txt14 {
415
- font-size: 14px;
416
- }
417
-
418
- .txt12 {
419
- font-size: 12px;
420
- }
421
-
422
- .txt9 {
423
- font-size: 9px;
424
- }
425
-
426
- .no-margin {
427
- margin: 0;
428
- }
429
-
430
- .txtgray {
431
- color: var(--bgl-gray);
432
- }
433
-
434
- .txtblue {
435
- color: var(--bgl-blue);
436
- }
437
-
438
- .font-light {
439
- font-weight: 100;
440
- }
441
-
442
374
  .id {
443
375
  color: var(--bgl-gray);
444
376
  font-size: 9px;
@@ -518,10 +450,6 @@ body {
518
450
  inset-inline-start: 0;
519
451
  }
520
452
 
521
- /* [dir="rtl"] .DonationsDashbored .tabs-top {
522
- inset-inline-start: 8vw;
523
- } */
524
-
525
453
  .copy-url {
526
454
  background-color: var(--bgl-gray-light);
527
455
  border-radius: var(--btn-border-radius);
@@ -531,7 +459,6 @@ body {
531
459
  margin-bottom: 1rem;
532
460
  display: flex;
533
461
  justify-content: space-between;
534
- /* gap: 1rem; */
535
462
  }
536
463
 
537
464
  .copy-url a {
@@ -583,52 +510,8 @@ body {
583
510
  overflow: hidden;
584
511
  }
585
512
 
586
- input[type="color"] {
587
- padding: 0.025rem 0.05rem;
588
- display: block;
589
- width: var(--input-height);
590
- height: var(--input-height);
591
- border: none;
592
- -webkit-appearance: none;
593
- -moz-appearance: none;
594
- appearance: none;
595
- cursor: pointer;
596
- }
597
-
598
- input[type="color"]::-webkit-color-swatch {
599
- border-radius: var(--input-border-radius);
600
- border: none;
601
- transition: box-shadow 200ms ease;
602
- }
603
-
604
- input[type="color"]::-moz-color-swatch {
605
- border-radius: var(--input-border-radius);
606
- border: none;
607
- transition: box-shadow 200ms ease;
608
- }
609
-
610
- input[type="color"]::-webkit-color-swatch:hover {
611
- box-shadow: inset 0 0 10px #00000050;
612
- }
613
-
614
- input[type="color"]::-moz-color-swatch:hover {
615
- box-shadow: inset 0 0 10px #00000050;
616
- }
617
-
618
- .ellipsis {
619
- overflow: hidden;
620
- display: block;
621
- width: 100%;
622
- text-overflow: ellipsis;
623
- }
624
513
 
625
514
  @media screen and (max-width: 1000px) {
626
- :root {
627
- /* --input-font-size: 16px;
628
- --input-height: 46px;
629
- --btn-height: 46px; */
630
- }
631
-
632
515
  .entity-container {
633
516
  grid-template-columns: minmax(22vw, 1fr) 2fr;
634
517
  }
@@ -679,7 +562,6 @@ input[type="color"]::-moz-color-swatch:hover {
679
562
  }
680
563
 
681
564
  .login-card {
682
- /* padding: 1rem 2.3rem; */
683
565
  width: 94%;
684
566
  max-width: 400px;
685
567
  }
@@ -721,16 +603,4 @@ input[type="color"]::-moz-color-swatch:hover {
721
603
  font-weight: 400;
722
604
  margin-inline-start: 0.5rem;
723
605
  }
724
-
725
- .txt20 {
726
- font-size: 18px;
727
- }
728
-
729
- .txt16 {
730
- font-size: 14px;
731
- }
732
-
733
- .txt14 {
734
- font-size: 12px;
735
- }
736
606
  }