@bagelink/vue 1.9.47 → 1.9.51
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/index.cjs +33 -33
- package/dist/index.mjs +4110 -4097
- package/dist/plugins/useToast.d.ts.map +1 -1
- package/dist/style.css +1 -1
- package/package.json +1 -1
- package/src/plugins/useToast.ts +5 -5
- package/src/styles/inputs.css +151 -4
package/package.json
CHANGED
package/src/plugins/useToast.ts
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
import type { App, InjectionKey, Plugin } from 'vue'
|
|
2
2
|
import type { PluginOptions as ToastOptions } from 'vue-toastification'
|
|
3
3
|
import { inject } from 'vue'
|
|
4
|
-
import
|
|
5
|
-
|
|
6
|
-
POSITION,
|
|
7
|
-
useToast as useVueToast
|
|
8
|
-
} from 'vue-toastification'
|
|
4
|
+
import * as VueToastification from 'vue-toastification'
|
|
9
5
|
import CustomToast from '../components/Toast.vue'
|
|
10
6
|
import 'vue-toastification/dist/index.css'
|
|
11
7
|
import '../styles/toast-overrides.css'
|
|
12
8
|
|
|
9
|
+
const Toast = (VueToastification as any).default || VueToastification
|
|
10
|
+
const { POSITION } = VueToastification as any
|
|
11
|
+
const useVueToast = (VueToastification as any).useToast
|
|
12
|
+
|
|
13
13
|
export interface ToastApi {
|
|
14
14
|
success: (message: string, options?: any) => void
|
|
15
15
|
error: (message: string, options?: any) => void
|
package/src/styles/inputs.css
CHANGED
|
@@ -318,10 +318,71 @@ select {
|
|
|
318
318
|
box-shadow: inset 0 0 10px #00000050;
|
|
319
319
|
}
|
|
320
320
|
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
321
|
+
|
|
322
|
+
.grid-form {
|
|
323
|
+
display: grid;
|
|
324
|
+
column-gap: 1rem;
|
|
325
|
+
grid-template-columns: repeat(12, 1fr);
|
|
326
|
+
}
|
|
327
|
+
|
|
328
|
+
.grid-form>* {
|
|
329
|
+
grid-column: 1 / -1;
|
|
330
|
+
}
|
|
331
|
+
|
|
332
|
+
.col-1\/12 {
|
|
333
|
+
grid-column: span 1 !important;
|
|
334
|
+
}
|
|
335
|
+
|
|
336
|
+
.col-1\/6,
|
|
337
|
+
.col-2\/12 {
|
|
338
|
+
grid-column: span 2 !important;
|
|
339
|
+
}
|
|
340
|
+
|
|
341
|
+
.col-1\/4,
|
|
342
|
+
.col-3\/12 {
|
|
343
|
+
grid-column: span 3 !important;
|
|
344
|
+
}
|
|
345
|
+
|
|
346
|
+
.col-1\/3,
|
|
347
|
+
.col-4\/12 {
|
|
348
|
+
grid-column: span 4 !important;
|
|
349
|
+
}
|
|
350
|
+
|
|
351
|
+
.col-5\/12 {
|
|
352
|
+
grid-column: span 5 !important;
|
|
353
|
+
}
|
|
354
|
+
|
|
355
|
+
.col-1\/2,
|
|
356
|
+
.col-6\/12 {
|
|
357
|
+
grid-column: span 6 !important;
|
|
358
|
+
}
|
|
359
|
+
|
|
360
|
+
.col-7\/12 {
|
|
361
|
+
grid-column: span 7 !important;
|
|
362
|
+
}
|
|
363
|
+
|
|
364
|
+
.col-2\/3,
|
|
365
|
+
.col-8\/12 {
|
|
366
|
+
grid-column: span 8 !important;
|
|
367
|
+
}
|
|
368
|
+
|
|
369
|
+
.col-3\/4,
|
|
370
|
+
.col-9\/12 {
|
|
371
|
+
grid-column: span 9 !important;
|
|
372
|
+
}
|
|
373
|
+
|
|
374
|
+
.col-5\/6,
|
|
375
|
+
.col-10\/12 {
|
|
376
|
+
grid-column: span 10 !important;
|
|
377
|
+
}
|
|
378
|
+
|
|
379
|
+
.col-11\/12 {
|
|
380
|
+
grid-column: span 11 !important;
|
|
381
|
+
}
|
|
382
|
+
|
|
383
|
+
.col-full,
|
|
384
|
+
.col-12\/12 {
|
|
385
|
+
grid-column: span 12 !important;
|
|
325
386
|
}
|
|
326
387
|
|
|
327
388
|
.pixel {
|
|
@@ -333,4 +394,90 @@ select {
|
|
|
333
394
|
bottom: 0 !important;
|
|
334
395
|
left: 50% !important;
|
|
335
396
|
min-width: 0 !important;
|
|
397
|
+
}
|
|
398
|
+
|
|
399
|
+
|
|
400
|
+
@media screen and (max-width: 910px) {
|
|
401
|
+
.bagel-input.wider input {
|
|
402
|
+
min-width: 120px;
|
|
403
|
+
}
|
|
404
|
+
|
|
405
|
+
.col-1\/12,
|
|
406
|
+
.col-1\/6,
|
|
407
|
+
.col-2\/12,
|
|
408
|
+
.col-1\/4,
|
|
409
|
+
.col-3\/12,
|
|
410
|
+
.col-1\/3,
|
|
411
|
+
.col-4\/12,
|
|
412
|
+
.col-5\/12,
|
|
413
|
+
.col-1\/2,
|
|
414
|
+
.col-6\/12,
|
|
415
|
+
.col-7\/12,
|
|
416
|
+
.col-2\/3,
|
|
417
|
+
.col-8\/12,
|
|
418
|
+
.col-3\/4,
|
|
419
|
+
.col-9\/12,
|
|
420
|
+
.col-5\/6,
|
|
421
|
+
.col-10\/12,
|
|
422
|
+
.col-11\/12,
|
|
423
|
+
.col-full,
|
|
424
|
+
.col-12\/12 {
|
|
425
|
+
grid-column: 1 / -1 !important;
|
|
426
|
+
}
|
|
427
|
+
|
|
428
|
+
.m_col-1\/12 {
|
|
429
|
+
grid-column: span 1 !important;
|
|
430
|
+
}
|
|
431
|
+
|
|
432
|
+
.m_col-1\/6,
|
|
433
|
+
.m_col-2\/12 {
|
|
434
|
+
grid-column: span 2 !important;
|
|
435
|
+
}
|
|
436
|
+
|
|
437
|
+
.m_col-1\/4,
|
|
438
|
+
.m_col-3\/12 {
|
|
439
|
+
grid-column: span 3 !important;
|
|
440
|
+
}
|
|
441
|
+
|
|
442
|
+
.m_col-1\/3,
|
|
443
|
+
.m_col-4\/12 {
|
|
444
|
+
grid-column: span 4 !important;
|
|
445
|
+
}
|
|
446
|
+
|
|
447
|
+
.m_col-5\/12 {
|
|
448
|
+
grid-column: span 5 !important;
|
|
449
|
+
}
|
|
450
|
+
|
|
451
|
+
.m_col-1\/2,
|
|
452
|
+
.m_col-6\/12 {
|
|
453
|
+
grid-column: span 6 !important;
|
|
454
|
+
}
|
|
455
|
+
|
|
456
|
+
.m_col-7\/12 {
|
|
457
|
+
grid-column: span 7 !important;
|
|
458
|
+
}
|
|
459
|
+
|
|
460
|
+
.m_col-2\/3,
|
|
461
|
+
.m_col-8\/12 {
|
|
462
|
+
grid-column: span 8 !important;
|
|
463
|
+
}
|
|
464
|
+
|
|
465
|
+
.m_col-3\/4,
|
|
466
|
+
.m_col-9\/12 {
|
|
467
|
+
grid-column: span 9 !important;
|
|
468
|
+
}
|
|
469
|
+
|
|
470
|
+
.m_col-5\/6,
|
|
471
|
+
.m_col-10\/12 {
|
|
472
|
+
grid-column: span 10 !important;
|
|
473
|
+
}
|
|
474
|
+
|
|
475
|
+
.m_col-11\/12 {
|
|
476
|
+
grid-column: span 11 !important;
|
|
477
|
+
}
|
|
478
|
+
|
|
479
|
+
.m_col-full,
|
|
480
|
+
.m_col-12\/12 {
|
|
481
|
+
grid-column: span 12 !important;
|
|
482
|
+
}
|
|
336
483
|
}
|