@bagelink/vue 0.0.331 → 0.0.337
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.
- package/dist/components/MaterialIcon.vue.d.ts +4 -2
- package/dist/components/MaterialIcon.vue.d.ts.map +1 -1
- package/dist/components/form/inputs/SelectInput.vue.d.ts +24 -16
- package/dist/components/form/inputs/SelectInput.vue.d.ts.map +1 -1
- package/dist/components/index.d.ts +0 -2
- package/dist/components/index.d.ts.map +1 -1
- package/dist/components/layout/Layout.vue.d.ts +8 -0
- package/dist/components/layout/Layout.vue.d.ts.map +1 -1
- package/dist/components/layout/SidebarMenu.vue.d.ts.map +1 -1
- package/dist/components/layout/TabbedLayout.vue.d.ts +38 -0
- package/dist/components/layout/TabbedLayout.vue.d.ts.map +1 -0
- package/dist/components/layout/Tabs.vue.d.ts +24 -0
- package/dist/components/layout/Tabs.vue.d.ts.map +1 -0
- package/dist/components/layout/TabsBody.vue.d.ts +21 -0
- package/dist/components/layout/TabsBody.vue.d.ts.map +1 -0
- package/dist/components/layout/TabsNav.vue.d.ts +25 -0
- package/dist/components/layout/TabsNav.vue.d.ts.map +1 -0
- package/dist/components/layout/index.d.ts +4 -0
- package/dist/components/layout/index.d.ts.map +1 -1
- package/dist/components/layout/tabsManager.d.ts +4 -0
- package/dist/components/layout/tabsManager.d.ts.map +1 -0
- package/dist/index.cjs +806 -2027
- package/dist/index.mjs +808 -2029
- package/dist/style.css +420 -504
- package/dist/types/index.d.ts +7 -1
- package/dist/types/index.d.ts.map +1 -1
- package/dist/types/materialIcons.d.ts +1 -1
- package/dist/types/materialIcons.d.ts.map +1 -1
- package/dist/utils/index.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/components/MaterialIcon.vue +3 -2
- package/src/components/PageTitle.vue +10 -20
- package/src/components/form/BglField.vue +2 -2
- package/src/components/form/BglForm.vue +0 -1
- package/src/components/form/inputs/SelectInput.vue +161 -482
- package/src/components/index.ts +0 -2
- package/src/components/layout/Layout.vue +34 -13
- package/src/components/layout/SidebarMenu.vue +22 -22
- package/src/components/layout/TabbedLayout.vue +79 -0
- package/src/components/layout/Tabs.vue +19 -0
- package/src/components/layout/TabsBody.vue +15 -0
- package/src/components/layout/TabsNav.vue +48 -0
- package/src/components/layout/index.ts +4 -0
- package/src/components/layout/tabsManager.ts +18 -0
- package/src/styles/appearance.css +42 -0
- package/src/styles/layout.css +74 -12
- package/src/styles/mobilLayout.css +77 -17
- package/src/styles/text.css +153 -1
- package/src/types/index.ts +9 -1
- package/src/types/materialIcons.ts +1180 -1178
- package/src/utils/index.ts +0 -1
- package/src/components/ComboBox.vue +0 -171
- package/src/components/TabbedLayout.vue +0 -87
package/src/styles/text.css
CHANGED
|
@@ -152,7 +152,6 @@
|
|
|
152
152
|
}
|
|
153
153
|
|
|
154
154
|
@media screen and (max-width: 910px) {
|
|
155
|
-
|
|
156
155
|
.txt20,
|
|
157
156
|
.txt-20 {
|
|
158
157
|
font-size: 18px;
|
|
@@ -167,4 +166,157 @@
|
|
|
167
166
|
.txt-14 {
|
|
168
167
|
font-size: 12px;
|
|
169
168
|
}
|
|
169
|
+
|
|
170
|
+
.m_txt-center {
|
|
171
|
+
text-align: center;
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
.m_txt-start {
|
|
175
|
+
text-align: start;
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
.m_txt-end {
|
|
179
|
+
text-align: end;
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
.m_txt-small {
|
|
183
|
+
font-size: 12px;
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
.m_txt20,
|
|
187
|
+
.m_txt-20 {
|
|
188
|
+
font-size: 20px;
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
.m_txt18,
|
|
192
|
+
.m_txt-18 {
|
|
193
|
+
font-size: 18px;
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
.m_txt16,
|
|
197
|
+
.m_txt-16 {
|
|
198
|
+
font-size: 16px;
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
.m_txt14,
|
|
202
|
+
.m_txt-14 {
|
|
203
|
+
font-size: 14px;
|
|
204
|
+
}
|
|
205
|
+
|
|
206
|
+
.m_txt12,
|
|
207
|
+
.m_txt-12 {
|
|
208
|
+
font-size: 12px;
|
|
209
|
+
}
|
|
210
|
+
|
|
211
|
+
.m_txt10,
|
|
212
|
+
.m_txt-10 {
|
|
213
|
+
font-size: 10px;
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
.m_txt9,
|
|
217
|
+
.m_txt-9 {
|
|
218
|
+
font-size: 9px;
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
.m_no-margin {
|
|
222
|
+
margin: 0;
|
|
223
|
+
}
|
|
224
|
+
|
|
225
|
+
.m_txt-gray,
|
|
226
|
+
.m_txtgray {
|
|
227
|
+
color: var(--bgl-gray);
|
|
228
|
+
}
|
|
229
|
+
|
|
230
|
+
.m_txt-blue,
|
|
231
|
+
.m_txtblue {
|
|
232
|
+
color: var(--bgl-primary);
|
|
233
|
+
}
|
|
234
|
+
|
|
235
|
+
.m_txt-black,
|
|
236
|
+
.m_txtblack {
|
|
237
|
+
color: var(--bgl-black);
|
|
238
|
+
}
|
|
239
|
+
|
|
240
|
+
.m_txt-red,
|
|
241
|
+
.m_txtred {
|
|
242
|
+
color: var(--bgl-red);
|
|
243
|
+
}
|
|
244
|
+
|
|
245
|
+
.m_txt-white,
|
|
246
|
+
.m_txtwhite {
|
|
247
|
+
color: var(--bgl-white);
|
|
248
|
+
}
|
|
249
|
+
|
|
250
|
+
.m_font-light {
|
|
251
|
+
font-weight: 100;
|
|
252
|
+
}
|
|
253
|
+
|
|
254
|
+
.m_bold {
|
|
255
|
+
font-weight: 700;
|
|
256
|
+
}
|
|
257
|
+
|
|
258
|
+
.m_line-height-1 {
|
|
259
|
+
line-height: 1;
|
|
260
|
+
}
|
|
261
|
+
|
|
262
|
+
.m_ellipsis {
|
|
263
|
+
overflow: hidden;
|
|
264
|
+
display: block;
|
|
265
|
+
width: 100%;
|
|
266
|
+
text-overflow: ellipsis;
|
|
267
|
+
}
|
|
268
|
+
|
|
269
|
+
.m_ellipsis-1,
|
|
270
|
+
.m_ellipsis-2,
|
|
271
|
+
.m_ellipsis-3,
|
|
272
|
+
.m_ellipsis-4,
|
|
273
|
+
.m_ellipsis-5,
|
|
274
|
+
.m_ellipsis-6 {
|
|
275
|
+
display: block;
|
|
276
|
+
display: -webkit-box;
|
|
277
|
+
max-width: 100%;
|
|
278
|
+
-webkit-box-orient: vertical;
|
|
279
|
+
overflow: hidden;
|
|
280
|
+
text-overflow: ellipsis;
|
|
281
|
+
}
|
|
282
|
+
|
|
283
|
+
.m_ellipsis-1 {
|
|
284
|
+
-webkit-line-clamp: 1;
|
|
285
|
+
}
|
|
286
|
+
|
|
287
|
+
.m_ellipsis-2 {
|
|
288
|
+
-webkit-line-clamp: 2;
|
|
289
|
+
}
|
|
290
|
+
|
|
291
|
+
.m_ellipsis-3 {
|
|
292
|
+
-webkit-line-clamp: 3;
|
|
293
|
+
}
|
|
294
|
+
|
|
295
|
+
.m_ellipsis-4 {
|
|
296
|
+
-webkit-line-clamp: 4;
|
|
297
|
+
}
|
|
298
|
+
|
|
299
|
+
.m_ellipsis-5 {
|
|
300
|
+
-webkit-line-clamp: 5;
|
|
301
|
+
}
|
|
302
|
+
|
|
303
|
+
.m_ellipsis-6 {
|
|
304
|
+
-webkit-line-clamp: 6;
|
|
305
|
+
}
|
|
306
|
+
|
|
307
|
+
.m_pointer {
|
|
308
|
+
cursor: pointer;
|
|
309
|
+
}
|
|
310
|
+
|
|
311
|
+
.m_decoration-none {
|
|
312
|
+
text-decoration: none;
|
|
313
|
+
}
|
|
314
|
+
|
|
315
|
+
.m_bgl_icon-font {
|
|
316
|
+
font-family: "Material Symbols Outlined", serif;
|
|
317
|
+
}
|
|
318
|
+
|
|
319
|
+
.m_nowrap {
|
|
320
|
+
white-space: nowrap;
|
|
321
|
+
}
|
|
170
322
|
}
|
package/src/types/index.ts
CHANGED
|
@@ -2,7 +2,9 @@ export type {
|
|
|
2
2
|
ModalFormComponentProps, ModalApi, ModalComponentProps, ModalFormOptions, ModalOptions,
|
|
3
3
|
} from '../plugins/modal';
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
import type { MaterialIcons } from './materialIcons';
|
|
6
|
+
|
|
7
|
+
export type { MaterialIcons };
|
|
6
8
|
export type { Tables, TableToTypeMapping } from '@bagelink/sdk';
|
|
7
9
|
export type { StorageFile } from './file';
|
|
8
10
|
export type { NavLink } from './NavLink';
|
|
@@ -10,6 +12,12 @@ export type { NavLink } from './NavLink';
|
|
|
10
12
|
export * from './BtnOptions';
|
|
11
13
|
export * from './BagelForm';
|
|
12
14
|
|
|
15
|
+
export type Tab = {
|
|
16
|
+
label: string;
|
|
17
|
+
id: string;
|
|
18
|
+
icon?: MaterialIcons;
|
|
19
|
+
} | string
|
|
20
|
+
|
|
13
21
|
export type ThemeType = |
|
|
14
22
|
'light'
|
|
15
23
|
| 'red'
|