@bagelink/vue 0.0.142 → 0.0.147

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 (52) hide show
  1. package/dist/components/form/inputs/ColorPicker.vue.d.ts +45 -0
  2. package/dist/components/form/inputs/ColorPicker.vue.d.ts.map +1 -0
  3. package/dist/components/form/inputs/DynamicLinkField.vue.d.ts +56 -0
  4. package/dist/components/form/inputs/DynamicLinkField.vue.d.ts.map +1 -0
  5. package/dist/components/form/inputs/PlainText.vue.d.ts +47 -0
  6. package/dist/components/form/inputs/PlainText.vue.d.ts.map +1 -0
  7. package/dist/components/form/inputs/TextArea.vue.d.ts +57 -0
  8. package/dist/components/form/inputs/TextArea.vue.d.ts.map +1 -0
  9. package/dist/components/form/inputs/index.d.ts +5 -0
  10. package/dist/components/form/inputs/index.d.ts.map +1 -1
  11. package/dist/index.cjs +674 -405
  12. package/dist/index.d.ts.map +1 -1
  13. package/dist/index.mjs +674 -405
  14. package/dist/style.css +1399 -55
  15. package/package.json +1 -1
  16. package/src/components/form/inputs/DynamicLinkField.vue +0 -2
  17. package/src/components/form/inputs/index.ts +5 -0
  18. package/src/index.ts +1 -0
  19. package/src/styles/bagel.css +37 -0
  20. package/src/styles/buttons.css +56 -0
  21. package/src/styles/fonts/Ploni/ploni-black.eot +0 -0
  22. package/src/styles/fonts/Ploni/ploni-black.woff +0 -0
  23. package/src/styles/fonts/Ploni/ploni-black.woff2 +0 -0
  24. package/src/styles/fonts/Ploni/ploni-bold.eot +0 -0
  25. package/src/styles/fonts/Ploni/ploni-bold.woff +0 -0
  26. package/src/styles/fonts/Ploni/ploni-bold.woff2 +0 -0
  27. package/src/styles/fonts/Ploni/ploni-demibold.eot +0 -0
  28. package/src/styles/fonts/Ploni/ploni-demibold.woff +0 -0
  29. package/src/styles/fonts/Ploni/ploni-demibold.woff2 +0 -0
  30. package/src/styles/fonts/Ploni/ploni-light.eot +0 -0
  31. package/src/styles/fonts/Ploni/ploni-light.woff +0 -0
  32. package/src/styles/fonts/Ploni/ploni-light.woff2 +0 -0
  33. package/src/styles/fonts/Ploni/ploni-medium.eot +0 -0
  34. package/src/styles/fonts/Ploni/ploni-medium.woff +0 -0
  35. package/src/styles/fonts/Ploni/ploni-medium.woff2 +0 -0
  36. package/src/styles/fonts/Ploni/ploni-regular.eot +0 -0
  37. package/src/styles/fonts/Ploni/ploni-regular.woff +0 -0
  38. package/src/styles/fonts/Ploni/ploni-regular.woff2 +0 -0
  39. package/src/styles/fonts/Ploni/ploni-ultrabold.eot +0 -0
  40. package/src/styles/fonts/Ploni/ploni-ultrabold.woff +0 -0
  41. package/src/styles/fonts/Ploni/ploni-ultrabold.woff2 +0 -0
  42. package/src/styles/fonts/Ploni/ploni-ultralight.eot +0 -0
  43. package/src/styles/fonts/Ploni/ploni-ultralight.woff +0 -0
  44. package/src/styles/fonts/Ploni/ploni-ultralight.woff2 +0 -0
  45. package/src/styles/fonts/Ploni.css +71 -0
  46. package/src/styles/inputs.css +315 -0
  47. package/src/styles/layout.css +268 -0
  48. package/src/styles/modal.css +55 -54
  49. package/src/styles/scrollbar.css +18 -0
  50. package/src/styles/text.css +35 -0
  51. package/src/styles/theme.css +736 -0
  52. package/src/styles/transitions.css +47 -0
@@ -0,0 +1,268 @@
1
+ .grid {
2
+ display: grid;
3
+ }
4
+
5
+ .inline-grid {
6
+ display: inline-grid;
7
+ }
8
+
9
+ .fill {
10
+ width: 100vw;
11
+ height: 100vh;
12
+ }
13
+
14
+ .justify-items-center {
15
+ justify-items: center;
16
+ }
17
+
18
+ .justify-content-center {
19
+ justify-content: center;
20
+ }
21
+
22
+ .justify-content-start {
23
+ justify-content: start;
24
+ }
25
+
26
+ .align-content-center {
27
+ align-content: center;
28
+ }
29
+
30
+ .align-items-top {
31
+ align-items: flex-start !important;
32
+ }
33
+
34
+ .align-items-center {
35
+ align-items: center;
36
+ }
37
+
38
+ .row-gap-1 {
39
+ row-gap: 0.2rem;
40
+ }
41
+
42
+ .row-gap-2 {
43
+ row-gap: 0.5rem;
44
+ }
45
+
46
+ .row-gap-3 {
47
+ row-gap: 1rem;
48
+ }
49
+
50
+ .fit-content {
51
+ width: fit-content;
52
+ height: fit-content;
53
+ }
54
+
55
+ .margin-auto {
56
+ margin-left: auto;
57
+ margin-right: auto;
58
+ }
59
+
60
+ .auto-flow-columns {
61
+ grid-auto-flow: column;
62
+ }
63
+
64
+ .justify-content-between {
65
+ justify-content: space-between;
66
+ }
67
+
68
+ .justify-self-start {
69
+ justify-self: start;
70
+ }
71
+
72
+ .columns-max-content {
73
+ grid-auto-columns: max-content;
74
+ }
75
+
76
+ .w-100 {
77
+ width: 100%;
78
+ }
79
+
80
+ .col-gap-1 {
81
+ column-gap: 1rem;
82
+ }
83
+
84
+ .col-gap-05 {
85
+ column-gap: 0.5rem;
86
+ }
87
+
88
+ .rows-max-content {
89
+ grid-auto-rows: max-content;
90
+ }
91
+
92
+ .grid.overflow>* {
93
+ min-width: 0px;
94
+ overflow: auto;
95
+ }
96
+
97
+ .ps-1 {
98
+ padding-left: 1rem;
99
+ }
100
+
101
+ .justify-content-around {
102
+ justify-content: space-between;
103
+ }
104
+
105
+ .justify-content-end {
106
+ justify-content: end;
107
+ }
108
+
109
+ .justify-self-end {
110
+ justify-self: end;
111
+ }
112
+
113
+ .justify-self-center {
114
+ justify-self: center;
115
+ }
116
+
117
+ .position-right {
118
+ position: absolute;
119
+ top: 0px;
120
+ right: 0px;
121
+ }
122
+
123
+ .position-relative {
124
+ position: relative;
125
+ }
126
+
127
+ .auto-flow-rows {
128
+ grid-auto-flow: row;
129
+ }
130
+
131
+ .align-items-start {
132
+ align-items: start !important;
133
+ }
134
+
135
+ .align-self-end {
136
+ align-self: end;
137
+ }
138
+
139
+ .h-100 {
140
+ height: 100%;
141
+ }
142
+
143
+ .vh-100 {
144
+ height: 100vh;
145
+ }
146
+
147
+ .min-100 {
148
+ min-height: 100%;
149
+ }
150
+
151
+ .w-100 {
152
+ width: 100%;
153
+ }
154
+
155
+ .gap-1 {
156
+ gap: 0.25rem;
157
+ }
158
+
159
+ .gap-2 {
160
+ gap: 0.5rem;
161
+ }
162
+
163
+ .gap-3 {
164
+ gap: 1rem;
165
+ }
166
+
167
+ .gap-col-1 {
168
+ column-gap: 0.25rem;
169
+ }
170
+
171
+ .gap-col-2 {
172
+ column-gap: 0.5rem;
173
+ }
174
+
175
+ .gap-col-3 {
176
+ column-gap: 1rem;
177
+ }
178
+
179
+ .gap-row-1 {
180
+ row-gap: 0.25rem;
181
+ }
182
+
183
+ .gap-row-2 {
184
+ row-gap: 0.5rem;
185
+ }
186
+
187
+ .gap-row-3 {
188
+ row-gap: 1rem;
189
+ }
190
+
191
+ .flex-wrap {
192
+ flex-wrap: wrap;
193
+ }
194
+
195
+ .flex-grow {
196
+ flex-grow: 1;
197
+ }
198
+
199
+ .flex-shrink {
200
+ flex-shrink: 1;
201
+ }
202
+
203
+ .flex-2-col {
204
+ max-width: 50%;
205
+ flex: 1 1 calc(50% - 2rem);
206
+ }
207
+
208
+ .flex-3-col {
209
+ flex: 1 1 33.33333%;
210
+ }
211
+
212
+ .mb-0 {
213
+ margin-bottom: 0;
214
+ }
215
+
216
+ .mb-1 {
217
+ margin-bottom: 0.25rem;
218
+ }
219
+
220
+ .mb-2 {
221
+ margin-bottom: 0.5rem;
222
+ }
223
+
224
+ .mb-3 {
225
+ margin-bottom: 1rem;
226
+ }
227
+
228
+ .mt-0 {
229
+ margin-top: 0;
230
+ }
231
+
232
+ .mt-1 {
233
+ margin-top: 0.25rem;
234
+ }
235
+
236
+
237
+ .mt-2 {
238
+ margin-top: 0.5rem;
239
+ }
240
+
241
+ .mt-3 {
242
+ margin-top: 1rem;
243
+ }
244
+
245
+ .ms-1 {
246
+ margin-inline-start: 0.25rem;
247
+ }
248
+
249
+ .ms-2 {
250
+ margin-inline-start: 0.5rem;
251
+ }
252
+
253
+ .ms-3 {
254
+ margin-inline-start: 1rem;
255
+ }
256
+
257
+ .me-1 {
258
+ margin-inline-end: 0.25rem;
259
+ }
260
+
261
+
262
+ .me-2 {
263
+ margin-inline-end: 0.5rem;
264
+ }
265
+
266
+ .me-3 {
267
+ margin-inline-end: 1rem;
268
+ }
@@ -1,90 +1,91 @@
1
1
  .bg-dark {
2
- position: fixed;
3
- top: 0;
4
- right: 0;
5
- left: 0;
6
- bottom: 0;
7
- background-color: rgba(0, 0, 0, 0.7);
8
- z-index: 999;
9
- display: flex;
10
- justify-content: center;
11
- align-items: center;
12
- pointer-events: none;
13
- opacity: 0;
14
- transition: all ease-in-out 0.3s;
2
+ position: fixed;
3
+ top: 0;
4
+ right: 0;
5
+ left: 0;
6
+ bottom: 0;
7
+ background-color: rgba(0, 0, 0, 0.7);
8
+ z-index: 999;
9
+ display: flex;
10
+ justify-content: center;
11
+ align-items: center;
12
+ pointer-events: none;
13
+ opacity: 0;
14
+ transition: all ease-in-out 0.3s;
15
15
  }
16
16
 
17
17
  .modal {
18
- width: 96%;
19
- max-width: 680px;
20
- transform: scale(0.5);
21
- opacity: 0;
22
- transition: all ease-in-out 0.15s;
23
- overflow: auto;
24
- max-height: 96vh;
18
+ width: 96%;
19
+ max-width: 680px;
20
+ transform: scale(0.5);
21
+ opacity: 0;
22
+ transition: all ease-in-out 0.15s;
23
+ overflow: auto;
24
+ max-height: 96vh;
25
25
  }
26
26
 
27
27
  .small-modal .modal {
28
- max-width: 300px;
29
- text-align: center;
28
+ max-width: 300px;
29
+ text-align: center;
30
30
  }
31
31
 
32
32
  .tool-bar {
33
- margin: -2rem -1rem 1rem;
34
- display: flex;
35
- justify-content: space-between;
36
- position: sticky;
37
- padding-top: 1rem;
38
- top: -2rem;
39
- z-index: 3;
40
- background: var(--bgl-white);
33
+ margin: -2rem -1rem 1rem;
34
+ display: flex;
35
+ justify-content: space-between;
36
+ position: -webkit-sticky;
37
+ position: sticky;
38
+ padding-top: 1rem;
39
+ top: -2rem;
40
+ z-index: 3;
41
+ background: var(--bgl-white);
41
42
  }
42
43
 
43
44
  .modal-size {
44
- cursor: pointer;
45
+ cursor: pointer;
45
46
  }
46
47
 
47
48
  .is-side .modal {
48
- inset-inline-end: -600px;
49
- transform: scale(1);
50
- opacity: 1;
51
- position: fixed;
52
- top: 20px;
53
- bottom: 20px;
54
- max-width: 600px;
55
- width: 90%;
49
+ inset-inline-end: -600px;
50
+ transform: scale(1);
51
+ opacity: 1;
52
+ position: fixed;
53
+ top: 20px;
54
+ bottom: 20px;
55
+ max-width: 600px;
56
+ width: 90%;
56
57
  }
57
58
 
58
59
  .is-active .modal {
59
- transform: scale(1);
60
- opacity: 1;
61
- box-shadow: 6px 6px 20px 20px #0000001c;
60
+ transform: scale(1);
61
+ opacity: 1;
62
+ box-shadow: 6px 6px 20px 20px #0000001c;
62
63
  }
63
64
 
64
65
  .is-active.is-side .modal {
65
- inset-inline-end: 20px;
66
+ inset-inline-end: 20px;
66
67
  }
67
68
 
68
69
  .bg-dark.is-active {
69
- opacity: 1;
70
- pointer-events: all;
70
+ opacity: 1;
71
+ pointer-events: all;
71
72
  }
72
73
 
73
74
  .is-side.bg-dark.is-active {
74
- opacity: 1;
75
+ opacity: 1;
75
76
  }
76
77
 
77
78
  .is-side.is-active .modal {
78
- pointer-events: all;
79
+ pointer-events: all;
79
80
  }
80
81
 
81
82
  @media screen and (max-width: 910px) {
82
- .tool-bar {
83
- margin: -2rem 0 1rem;
84
- align-items: center;
85
- }
83
+ .tool-bar {
84
+ margin: -2rem 0 1rem;
85
+ align-items: center;
86
+ }
86
87
 
87
- .is-active.is-side .modal {
88
- inset-inline-end: 5%;
89
- }
88
+ .is-active.is-side .modal {
89
+ inset-inline-end: 5%;
90
+ }
90
91
  }
@@ -0,0 +1,18 @@
1
+ ::-webkit-scrollbar {
2
+ width: 0.5em;
3
+ height: 0.5rem;
4
+ }
5
+
6
+ ::-webkit-scrollbar-track {
7
+ /* border-left: 1px solid var(--bgl-gray-light); */
8
+ /*-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);*/
9
+ }
10
+
11
+ ::-webkit-scrollbar-thumb {
12
+ background-color: var(--bgl-gray);
13
+ border-radius: 5px;
14
+ }
15
+
16
+ ::-webkit-scrollbar-corner {
17
+ background: transparent;
18
+ }
@@ -0,0 +1,35 @@
1
+ h1,
2
+ h2,
3
+ h3,
4
+ h4,
5
+ h5,
6
+ h6 {
7
+ width: max-content;
8
+ }
9
+
10
+ h1 {
11
+ }
12
+
13
+ h2 {
14
+ }
15
+
16
+ h3 {
17
+ }
18
+
19
+ h4 {
20
+ }
21
+
22
+ h5 {
23
+ }
24
+
25
+ h6 {
26
+ }
27
+
28
+ .txt-center {
29
+ text-align: center;
30
+ }
31
+
32
+
33
+ .smalltxt {
34
+ font-size: 12px;
35
+ }