@vuetify/nightly 4.0.0-dev-20230206.0 → 4.0.0-master-20230206.0
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/CHANGELOG.md +3 -2
- package/dist/json/importMap.json +48 -48
- package/dist/json/web-types.json +1 -1
- package/dist/vuetify-labs.css +278 -278
- package/dist/vuetify-labs.esm.js +5 -4
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +5 -4
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +154 -154
- package/dist/vuetify.d.ts +13 -13
- package/dist/vuetify.esm.js +5 -4
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +5 -4
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +5 -5
- package/dist/vuetify.min.js.map +1 -1
- package/lib/composables/nested/nested.mjs +2 -1
- package/lib/composables/nested/nested.mjs.map +1 -1
- package/lib/entry-bundler.mjs +1 -1
- package/lib/entry-bundler.mjs.map +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/framework.mjs.map +1 -1
- package/lib/index.d.ts +13 -13
- package/package.json +1 -1
package/dist/vuetify.css
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Vuetify v4.0.0-
|
2
|
+
* Vuetify v4.0.0-master-20230206.0
|
3
3
|
* Forged by John Leider
|
4
4
|
* Released under the MIT License.
|
5
5
|
*/
|
@@ -25293,159 +25293,6 @@ html.v-overlay-scroll-blocked {
|
|
25293
25293
|
justify-content: center;
|
25294
25294
|
width: 100%;
|
25295
25295
|
height: 100%;
|
25296
|
-
}.v-slider-track__background {
|
25297
|
-
background-color: rgb(var(--v-theme-surface-variant));
|
25298
|
-
}
|
25299
|
-
|
25300
|
-
.v-slider-track__fill {
|
25301
|
-
background-color: rgb(var(--v-theme-surface-variant));
|
25302
|
-
}
|
25303
|
-
|
25304
|
-
.v-slider-track__tick {
|
25305
|
-
background-color: rgb(var(--v-theme-surface-variant));
|
25306
|
-
}
|
25307
|
-
.v-slider-track__tick--filled {
|
25308
|
-
background-color: rgb(var(--v-theme-on-surface-variant));
|
25309
|
-
}
|
25310
|
-
|
25311
|
-
.v-slider-track {
|
25312
|
-
border-radius: 6px;
|
25313
|
-
}
|
25314
|
-
|
25315
|
-
.v-slider-track__background, .v-slider-track__fill {
|
25316
|
-
position: absolute;
|
25317
|
-
transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1);
|
25318
|
-
border-radius: inherit;
|
25319
|
-
}
|
25320
|
-
.v-slider--pressed .v-slider-track__background, .v-slider--pressed .v-slider-track__fill {
|
25321
|
-
transition: none;
|
25322
|
-
}
|
25323
|
-
.v-input--error:not(.v-input--disabled) .v-slider-track__background, .v-input--error:not(.v-input--disabled) .v-slider-track__fill {
|
25324
|
-
background-color: currentColor;
|
25325
|
-
}
|
25326
|
-
|
25327
|
-
.v-slider-track__ticks {
|
25328
|
-
height: 100%;
|
25329
|
-
width: 100%;
|
25330
|
-
position: relative;
|
25331
|
-
}
|
25332
|
-
|
25333
|
-
.v-slider-track__tick {
|
25334
|
-
position: absolute;
|
25335
|
-
opacity: 0;
|
25336
|
-
transition: 0.2s opacity cubic-bezier(0.4, 0, 0.2, 1);
|
25337
|
-
border-radius: 2px;
|
25338
|
-
width: var(--v-slider-tick-size);
|
25339
|
-
height: var(--v-slider-tick-size);
|
25340
|
-
transform: translate(calc(var(--v-slider-tick-size) / -2), calc(var(--v-slider-tick-size) / -2));
|
25341
|
-
}
|
25342
|
-
.v-slider-track__tick--first .v-slider-track__tick-label.v-locale--is-ltr, .v-locale--is-ltr .v-slider-track__tick--first .v-slider-track__tick-label {
|
25343
|
-
transform: none;
|
25344
|
-
}
|
25345
|
-
.v-slider-track__tick--first .v-slider-track__tick-label.v-locale--is-rtl, .v-locale--is-rtl .v-slider-track__tick--first .v-slider-track__tick-label {
|
25346
|
-
transform: translateX(100%);
|
25347
|
-
}
|
25348
|
-
.v-slider-track__tick--last .v-slider-track__tick-label.v-locale--is-ltr, .v-locale--is-ltr .v-slider-track__tick--last .v-slider-track__tick-label {
|
25349
|
-
transform: translateX(-100%);
|
25350
|
-
}
|
25351
|
-
.v-slider-track__tick--last .v-slider-track__tick-label.v-locale--is-rtl, .v-locale--is-rtl .v-slider-track__tick--last .v-slider-track__tick-label {
|
25352
|
-
transform: none;
|
25353
|
-
}
|
25354
|
-
|
25355
|
-
.v-slider-track__tick-label {
|
25356
|
-
position: absolute;
|
25357
|
-
-webkit-user-select: none;
|
25358
|
-
user-select: none;
|
25359
|
-
white-space: nowrap;
|
25360
|
-
}
|
25361
|
-
|
25362
|
-
.v-slider.v-input--horizontal .v-slider-track {
|
25363
|
-
display: flex;
|
25364
|
-
align-items: center;
|
25365
|
-
width: 100%;
|
25366
|
-
height: calc(var(--v-slider-track-size) + 2px);
|
25367
|
-
touch-action: pan-y;
|
25368
|
-
}
|
25369
|
-
.v-slider.v-input--horizontal .v-slider-track__background {
|
25370
|
-
height: var(--v-slider-track-size);
|
25371
|
-
}
|
25372
|
-
.v-slider.v-input--horizontal .v-slider-track__fill {
|
25373
|
-
height: inherit;
|
25374
|
-
}
|
25375
|
-
.v-slider.v-input--horizontal .v-slider-track__tick {
|
25376
|
-
margin-top: calc(calc(var(--v-slider-track-size) + 2px) / 2);
|
25377
|
-
}
|
25378
|
-
.v-slider.v-input--horizontal .v-slider-track__tick.v-locale--is-rtl, .v-locale--is-rtl .v-slider.v-input--horizontal .v-slider-track__tick {
|
25379
|
-
transform: translate(calc(var(--v-slider-tick-size) / 2), calc(var(--v-slider-tick-size) / -2));
|
25380
|
-
}
|
25381
|
-
.v-slider.v-input--horizontal .v-slider-track__tick .v-slider-track__tick-label {
|
25382
|
-
margin-top: calc(var(--v-slider-track-size) / 2 + 8px);
|
25383
|
-
}
|
25384
|
-
.v-slider.v-input--horizontal .v-slider-track__tick .v-slider-track__tick-label.v-locale--is-ltr, .v-locale--is-ltr .v-slider.v-input--horizontal .v-slider-track__tick .v-slider-track__tick-label {
|
25385
|
-
transform: translateX(-50%);
|
25386
|
-
}
|
25387
|
-
.v-slider.v-input--horizontal .v-slider-track__tick .v-slider-track__tick-label.v-locale--is-rtl, .v-locale--is-rtl .v-slider.v-input--horizontal .v-slider-track__tick .v-slider-track__tick-label {
|
25388
|
-
transform: translateX(50%);
|
25389
|
-
}
|
25390
|
-
.v-slider.v-input--horizontal .v-slider-track__tick--first {
|
25391
|
-
margin-inline-start: calc(var(--v-slider-tick-size) + 1px);
|
25392
|
-
}
|
25393
|
-
.v-slider.v-input--horizontal .v-slider-track__tick--first .v-slider-track__tick-label.v-locale--is-ltr, .v-locale--is-ltr .v-slider.v-input--horizontal .v-slider-track__tick--first .v-slider-track__tick-label {
|
25394
|
-
transform: translateX(0%);
|
25395
|
-
}
|
25396
|
-
.v-slider.v-input--horizontal .v-slider-track__tick--first .v-slider-track__tick-label.v-locale--is-rtl, .v-locale--is-rtl .v-slider.v-input--horizontal .v-slider-track__tick--first .v-slider-track__tick-label {
|
25397
|
-
transform: translateX(0%);
|
25398
|
-
}
|
25399
|
-
.v-slider.v-input--horizontal .v-slider-track__tick--last {
|
25400
|
-
margin-inline-start: calc(100% - var(--v-slider-tick-size) - 1px);
|
25401
|
-
}
|
25402
|
-
.v-slider.v-input--horizontal .v-slider-track__tick--last .v-slider-track__tick-label.v-locale--is-ltr, .v-locale--is-ltr .v-slider.v-input--horizontal .v-slider-track__tick--last .v-slider-track__tick-label {
|
25403
|
-
transform: translateX(-100%);
|
25404
|
-
}
|
25405
|
-
.v-slider.v-input--horizontal .v-slider-track__tick--last .v-slider-track__tick-label.v-locale--is-rtl, .v-locale--is-rtl .v-slider.v-input--horizontal .v-slider-track__tick--last .v-slider-track__tick-label {
|
25406
|
-
transform: translateX(100%);
|
25407
|
-
}
|
25408
|
-
|
25409
|
-
.v-slider.v-input--vertical .v-slider-track {
|
25410
|
-
height: 100%;
|
25411
|
-
display: flex;
|
25412
|
-
justify-content: center;
|
25413
|
-
width: calc(var(--v-slider-track-size) + 2px);
|
25414
|
-
touch-action: pan-x;
|
25415
|
-
}
|
25416
|
-
.v-slider.v-input--vertical .v-slider-track__background {
|
25417
|
-
width: var(--v-slider-track-size);
|
25418
|
-
}
|
25419
|
-
.v-slider.v-input--vertical .v-slider-track__fill {
|
25420
|
-
width: inherit;
|
25421
|
-
}
|
25422
|
-
.v-slider.v-input--vertical .v-slider-track__ticks {
|
25423
|
-
height: 100%;
|
25424
|
-
}
|
25425
|
-
.v-slider.v-input--vertical .v-slider-track__tick {
|
25426
|
-
margin-inline-start: calc(calc(var(--v-slider-track-size) + 2px) / 2);
|
25427
|
-
transform: translate(calc(var(--v-slider-tick-size) / -2), calc(var(--v-slider-tick-size) / 2));
|
25428
|
-
}
|
25429
|
-
.v-slider.v-input--vertical .v-slider-track__tick.v-locale--is-rtl, .v-locale--is-rtl .v-slider.v-input--vertical .v-slider-track__tick {
|
25430
|
-
transform: translate(calc(var(--v-slider-tick-size) / 2), calc(var(--v-slider-tick-size) / 2));
|
25431
|
-
}
|
25432
|
-
.v-slider.v-input--vertical .v-slider-track__tick--first {
|
25433
|
-
bottom: calc(0% + var(--v-slider-tick-size) + 1px);
|
25434
|
-
}
|
25435
|
-
.v-slider.v-input--vertical .v-slider-track__tick--last {
|
25436
|
-
bottom: calc(100% - var(--v-slider-tick-size) - 1px);
|
25437
|
-
}
|
25438
|
-
.v-slider.v-input--vertical .v-slider-track__tick .v-slider-track__tick-label {
|
25439
|
-
margin-inline-start: calc(var(--v-slider-track-size) / 2 + 12px);
|
25440
|
-
transform: translateY(-50%);
|
25441
|
-
}
|
25442
|
-
|
25443
|
-
.v-slider-track__ticks--always-show .v-slider-track__tick, .v-slider--focused .v-slider-track__tick {
|
25444
|
-
opacity: 1;
|
25445
|
-
}
|
25446
|
-
|
25447
|
-
.v-slider-track__background--opacity {
|
25448
|
-
opacity: 0.38;
|
25449
25296
|
}.v-slider-thumb {
|
25450
25297
|
touch-action: none;
|
25451
25298
|
color: rgb(var(--v-theme-surface-variant));
|
@@ -25604,4 +25451,157 @@ html.v-overlay-scroll-blocked {
|
|
25604
25451
|
.v-slider-thumb:hover:not(.v-slider-thumb--focused) .v-slider-thumb__surface::before {
|
25605
25452
|
opacity: var(--v-hover-opacity);
|
25606
25453
|
}
|
25454
|
+
}.v-slider-track__background {
|
25455
|
+
background-color: rgb(var(--v-theme-surface-variant));
|
25456
|
+
}
|
25457
|
+
|
25458
|
+
.v-slider-track__fill {
|
25459
|
+
background-color: rgb(var(--v-theme-surface-variant));
|
25460
|
+
}
|
25461
|
+
|
25462
|
+
.v-slider-track__tick {
|
25463
|
+
background-color: rgb(var(--v-theme-surface-variant));
|
25464
|
+
}
|
25465
|
+
.v-slider-track__tick--filled {
|
25466
|
+
background-color: rgb(var(--v-theme-on-surface-variant));
|
25467
|
+
}
|
25468
|
+
|
25469
|
+
.v-slider-track {
|
25470
|
+
border-radius: 6px;
|
25471
|
+
}
|
25472
|
+
|
25473
|
+
.v-slider-track__background, .v-slider-track__fill {
|
25474
|
+
position: absolute;
|
25475
|
+
transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1);
|
25476
|
+
border-radius: inherit;
|
25477
|
+
}
|
25478
|
+
.v-slider--pressed .v-slider-track__background, .v-slider--pressed .v-slider-track__fill {
|
25479
|
+
transition: none;
|
25480
|
+
}
|
25481
|
+
.v-input--error:not(.v-input--disabled) .v-slider-track__background, .v-input--error:not(.v-input--disabled) .v-slider-track__fill {
|
25482
|
+
background-color: currentColor;
|
25483
|
+
}
|
25484
|
+
|
25485
|
+
.v-slider-track__ticks {
|
25486
|
+
height: 100%;
|
25487
|
+
width: 100%;
|
25488
|
+
position: relative;
|
25489
|
+
}
|
25490
|
+
|
25491
|
+
.v-slider-track__tick {
|
25492
|
+
position: absolute;
|
25493
|
+
opacity: 0;
|
25494
|
+
transition: 0.2s opacity cubic-bezier(0.4, 0, 0.2, 1);
|
25495
|
+
border-radius: 2px;
|
25496
|
+
width: var(--v-slider-tick-size);
|
25497
|
+
height: var(--v-slider-tick-size);
|
25498
|
+
transform: translate(calc(var(--v-slider-tick-size) / -2), calc(var(--v-slider-tick-size) / -2));
|
25499
|
+
}
|
25500
|
+
.v-slider-track__tick--first .v-slider-track__tick-label.v-locale--is-ltr, .v-locale--is-ltr .v-slider-track__tick--first .v-slider-track__tick-label {
|
25501
|
+
transform: none;
|
25502
|
+
}
|
25503
|
+
.v-slider-track__tick--first .v-slider-track__tick-label.v-locale--is-rtl, .v-locale--is-rtl .v-slider-track__tick--first .v-slider-track__tick-label {
|
25504
|
+
transform: translateX(100%);
|
25505
|
+
}
|
25506
|
+
.v-slider-track__tick--last .v-slider-track__tick-label.v-locale--is-ltr, .v-locale--is-ltr .v-slider-track__tick--last .v-slider-track__tick-label {
|
25507
|
+
transform: translateX(-100%);
|
25508
|
+
}
|
25509
|
+
.v-slider-track__tick--last .v-slider-track__tick-label.v-locale--is-rtl, .v-locale--is-rtl .v-slider-track__tick--last .v-slider-track__tick-label {
|
25510
|
+
transform: none;
|
25511
|
+
}
|
25512
|
+
|
25513
|
+
.v-slider-track__tick-label {
|
25514
|
+
position: absolute;
|
25515
|
+
-webkit-user-select: none;
|
25516
|
+
user-select: none;
|
25517
|
+
white-space: nowrap;
|
25518
|
+
}
|
25519
|
+
|
25520
|
+
.v-slider.v-input--horizontal .v-slider-track {
|
25521
|
+
display: flex;
|
25522
|
+
align-items: center;
|
25523
|
+
width: 100%;
|
25524
|
+
height: calc(var(--v-slider-track-size) + 2px);
|
25525
|
+
touch-action: pan-y;
|
25526
|
+
}
|
25527
|
+
.v-slider.v-input--horizontal .v-slider-track__background {
|
25528
|
+
height: var(--v-slider-track-size);
|
25529
|
+
}
|
25530
|
+
.v-slider.v-input--horizontal .v-slider-track__fill {
|
25531
|
+
height: inherit;
|
25532
|
+
}
|
25533
|
+
.v-slider.v-input--horizontal .v-slider-track__tick {
|
25534
|
+
margin-top: calc(calc(var(--v-slider-track-size) + 2px) / 2);
|
25535
|
+
}
|
25536
|
+
.v-slider.v-input--horizontal .v-slider-track__tick.v-locale--is-rtl, .v-locale--is-rtl .v-slider.v-input--horizontal .v-slider-track__tick {
|
25537
|
+
transform: translate(calc(var(--v-slider-tick-size) / 2), calc(var(--v-slider-tick-size) / -2));
|
25538
|
+
}
|
25539
|
+
.v-slider.v-input--horizontal .v-slider-track__tick .v-slider-track__tick-label {
|
25540
|
+
margin-top: calc(var(--v-slider-track-size) / 2 + 8px);
|
25541
|
+
}
|
25542
|
+
.v-slider.v-input--horizontal .v-slider-track__tick .v-slider-track__tick-label.v-locale--is-ltr, .v-locale--is-ltr .v-slider.v-input--horizontal .v-slider-track__tick .v-slider-track__tick-label {
|
25543
|
+
transform: translateX(-50%);
|
25544
|
+
}
|
25545
|
+
.v-slider.v-input--horizontal .v-slider-track__tick .v-slider-track__tick-label.v-locale--is-rtl, .v-locale--is-rtl .v-slider.v-input--horizontal .v-slider-track__tick .v-slider-track__tick-label {
|
25546
|
+
transform: translateX(50%);
|
25547
|
+
}
|
25548
|
+
.v-slider.v-input--horizontal .v-slider-track__tick--first {
|
25549
|
+
margin-inline-start: calc(var(--v-slider-tick-size) + 1px);
|
25550
|
+
}
|
25551
|
+
.v-slider.v-input--horizontal .v-slider-track__tick--first .v-slider-track__tick-label.v-locale--is-ltr, .v-locale--is-ltr .v-slider.v-input--horizontal .v-slider-track__tick--first .v-slider-track__tick-label {
|
25552
|
+
transform: translateX(0%);
|
25553
|
+
}
|
25554
|
+
.v-slider.v-input--horizontal .v-slider-track__tick--first .v-slider-track__tick-label.v-locale--is-rtl, .v-locale--is-rtl .v-slider.v-input--horizontal .v-slider-track__tick--first .v-slider-track__tick-label {
|
25555
|
+
transform: translateX(0%);
|
25556
|
+
}
|
25557
|
+
.v-slider.v-input--horizontal .v-slider-track__tick--last {
|
25558
|
+
margin-inline-start: calc(100% - var(--v-slider-tick-size) - 1px);
|
25559
|
+
}
|
25560
|
+
.v-slider.v-input--horizontal .v-slider-track__tick--last .v-slider-track__tick-label.v-locale--is-ltr, .v-locale--is-ltr .v-slider.v-input--horizontal .v-slider-track__tick--last .v-slider-track__tick-label {
|
25561
|
+
transform: translateX(-100%);
|
25562
|
+
}
|
25563
|
+
.v-slider.v-input--horizontal .v-slider-track__tick--last .v-slider-track__tick-label.v-locale--is-rtl, .v-locale--is-rtl .v-slider.v-input--horizontal .v-slider-track__tick--last .v-slider-track__tick-label {
|
25564
|
+
transform: translateX(100%);
|
25565
|
+
}
|
25566
|
+
|
25567
|
+
.v-slider.v-input--vertical .v-slider-track {
|
25568
|
+
height: 100%;
|
25569
|
+
display: flex;
|
25570
|
+
justify-content: center;
|
25571
|
+
width: calc(var(--v-slider-track-size) + 2px);
|
25572
|
+
touch-action: pan-x;
|
25573
|
+
}
|
25574
|
+
.v-slider.v-input--vertical .v-slider-track__background {
|
25575
|
+
width: var(--v-slider-track-size);
|
25576
|
+
}
|
25577
|
+
.v-slider.v-input--vertical .v-slider-track__fill {
|
25578
|
+
width: inherit;
|
25579
|
+
}
|
25580
|
+
.v-slider.v-input--vertical .v-slider-track__ticks {
|
25581
|
+
height: 100%;
|
25582
|
+
}
|
25583
|
+
.v-slider.v-input--vertical .v-slider-track__tick {
|
25584
|
+
margin-inline-start: calc(calc(var(--v-slider-track-size) + 2px) / 2);
|
25585
|
+
transform: translate(calc(var(--v-slider-tick-size) / -2), calc(var(--v-slider-tick-size) / 2));
|
25586
|
+
}
|
25587
|
+
.v-slider.v-input--vertical .v-slider-track__tick.v-locale--is-rtl, .v-locale--is-rtl .v-slider.v-input--vertical .v-slider-track__tick {
|
25588
|
+
transform: translate(calc(var(--v-slider-tick-size) / 2), calc(var(--v-slider-tick-size) / 2));
|
25589
|
+
}
|
25590
|
+
.v-slider.v-input--vertical .v-slider-track__tick--first {
|
25591
|
+
bottom: calc(0% + var(--v-slider-tick-size) + 1px);
|
25592
|
+
}
|
25593
|
+
.v-slider.v-input--vertical .v-slider-track__tick--last {
|
25594
|
+
bottom: calc(100% - var(--v-slider-tick-size) - 1px);
|
25595
|
+
}
|
25596
|
+
.v-slider.v-input--vertical .v-slider-track__tick .v-slider-track__tick-label {
|
25597
|
+
margin-inline-start: calc(var(--v-slider-track-size) / 2 + 12px);
|
25598
|
+
transform: translateY(-50%);
|
25599
|
+
}
|
25600
|
+
|
25601
|
+
.v-slider-track__ticks--always-show .v-slider-track__tick, .v-slider--focused .v-slider-track__tick {
|
25602
|
+
opacity: 1;
|
25603
|
+
}
|
25604
|
+
|
25605
|
+
.v-slider-track__background--opacity {
|
25606
|
+
opacity: 0.38;
|
25607
25607
|
}
|
package/dist/vuetify.d.ts
CHANGED
@@ -26158,19 +26158,19 @@ declare module '@vue/runtime-core' {
|
|
26158
26158
|
|
26159
26159
|
export interface GlobalComponents {
|
26160
26160
|
VDefaultsProvider: typeof import('vuetify/components')['VDefaultsProvider']
|
26161
|
-
VForm: typeof import('vuetify/components')['VForm']
|
26162
26161
|
VContainer: typeof import('vuetify/components')['VContainer']
|
26163
26162
|
VCol: typeof import('vuetify/components')['VCol']
|
26164
26163
|
VRow: typeof import('vuetify/components')['VRow']
|
26165
26164
|
VSpacer: typeof import('vuetify/components')['VSpacer']
|
26166
26165
|
VHover: typeof import('vuetify/components')['VHover']
|
26166
|
+
VForm: typeof import('vuetify/components')['VForm']
|
26167
26167
|
VLayout: typeof import('vuetify/components')['VLayout']
|
26168
26168
|
VLayoutItem: typeof import('vuetify/components')['VLayoutItem']
|
26169
|
-
VLazy: typeof import('vuetify/components')['VLazy']
|
26170
26169
|
VLocaleProvider: typeof import('vuetify/components')['VLocaleProvider']
|
26170
|
+
VLazy: typeof import('vuetify/components')['VLazy']
|
26171
26171
|
VNoSsr: typeof import('vuetify/components')['VNoSsr']
|
26172
|
-
VParallax: typeof import('vuetify/components')['VParallax']
|
26173
26172
|
VRadio: typeof import('vuetify/components')['VRadio']
|
26173
|
+
VParallax: typeof import('vuetify/components')['VParallax']
|
26174
26174
|
VRangeSlider: typeof import('vuetify/components')['VRangeSlider']
|
26175
26175
|
VResponsive: typeof import('vuetify/components')['VResponsive']
|
26176
26176
|
VThemeProvider: typeof import('vuetify/components')['VThemeProvider']
|
@@ -26197,18 +26197,16 @@ declare module '@vue/runtime-core' {
|
|
26197
26197
|
VAppBarTitle: typeof import('vuetify/components')['VAppBarTitle']
|
26198
26198
|
VAlert: typeof import('vuetify/components')['VAlert']
|
26199
26199
|
VAlertTitle: typeof import('vuetify/components')['VAlertTitle']
|
26200
|
-
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
26201
26200
|
VAvatar: typeof import('vuetify/components')['VAvatar']
|
26201
|
+
VAutocomplete: typeof import('vuetify/components')['VAutocomplete']
|
26202
26202
|
VBadge: typeof import('vuetify/components')['VBadge']
|
26203
26203
|
VBanner: typeof import('vuetify/components')['VBanner']
|
26204
26204
|
VBannerActions: typeof import('vuetify/components')['VBannerActions']
|
26205
26205
|
VBannerText: typeof import('vuetify/components')['VBannerText']
|
26206
|
-
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
26207
26206
|
VBreadcrumbs: typeof import('vuetify/components')['VBreadcrumbs']
|
26208
26207
|
VBreadcrumbsItem: typeof import('vuetify/components')['VBreadcrumbsItem']
|
26209
26208
|
VBreadcrumbsDivider: typeof import('vuetify/components')['VBreadcrumbsDivider']
|
26210
26209
|
VBtn: typeof import('vuetify/components')['VBtn']
|
26211
|
-
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
26212
26210
|
VBtnToggle: typeof import('vuetify/components')['VBtnToggle']
|
26213
26211
|
VCard: typeof import('vuetify/components')['VCard']
|
26214
26212
|
VCardActions: typeof import('vuetify/components')['VCardActions']
|
@@ -26216,17 +26214,18 @@ declare module '@vue/runtime-core' {
|
|
26216
26214
|
VCardSubtitle: typeof import('vuetify/components')['VCardSubtitle']
|
26217
26215
|
VCardText: typeof import('vuetify/components')['VCardText']
|
26218
26216
|
VCardTitle: typeof import('vuetify/components')['VCardTitle']
|
26217
|
+
VBtnGroup: typeof import('vuetify/components')['VBtnGroup']
|
26219
26218
|
VCarousel: typeof import('vuetify/components')['VCarousel']
|
26220
26219
|
VCarouselItem: typeof import('vuetify/components')['VCarouselItem']
|
26221
26220
|
VCheckbox: typeof import('vuetify/components')['VCheckbox']
|
26222
26221
|
VCheckboxBtn: typeof import('vuetify/components')['VCheckboxBtn']
|
26223
26222
|
VChip: typeof import('vuetify/components')['VChip']
|
26224
|
-
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
26225
26223
|
VCode: typeof import('vuetify/components')['VCode']
|
26224
|
+
VBottomNavigation: typeof import('vuetify/components')['VBottomNavigation']
|
26225
|
+
VChipGroup: typeof import('vuetify/components')['VChipGroup']
|
26226
26226
|
VColorPicker: typeof import('vuetify/components')['VColorPicker']
|
26227
26227
|
VCombobox: typeof import('vuetify/components')['VCombobox']
|
26228
26228
|
VCounter: typeof import('vuetify/components')['VCounter']
|
26229
|
-
VDialog: typeof import('vuetify/components')['VDialog']
|
26230
26229
|
VDivider: typeof import('vuetify/components')['VDivider']
|
26231
26230
|
VExpansionPanels: typeof import('vuetify/components')['VExpansionPanels']
|
26232
26231
|
VExpansionPanel: typeof import('vuetify/components')['VExpansionPanel']
|
@@ -26235,12 +26234,13 @@ declare module '@vue/runtime-core' {
|
|
26235
26234
|
VField: typeof import('vuetify/components')['VField']
|
26236
26235
|
VFieldLabel: typeof import('vuetify/components')['VFieldLabel']
|
26237
26236
|
VFileInput: typeof import('vuetify/components')['VFileInput']
|
26238
|
-
|
26237
|
+
VDialog: typeof import('vuetify/components')['VDialog']
|
26239
26238
|
VIcon: typeof import('vuetify/components')['VIcon']
|
26240
26239
|
VComponentIcon: typeof import('vuetify/components')['VComponentIcon']
|
26241
26240
|
VSvgIcon: typeof import('vuetify/components')['VSvgIcon']
|
26242
26241
|
VLigatureIcon: typeof import('vuetify/components')['VLigatureIcon']
|
26243
26242
|
VClassIcon: typeof import('vuetify/components')['VClassIcon']
|
26243
|
+
VFooter: typeof import('vuetify/components')['VFooter']
|
26244
26244
|
VImg: typeof import('vuetify/components')['VImg']
|
26245
26245
|
VInput: typeof import('vuetify/components')['VInput']
|
26246
26246
|
VItemGroup: typeof import('vuetify/components')['VItemGroup']
|
@@ -26261,23 +26261,23 @@ declare module '@vue/runtime-core' {
|
|
26261
26261
|
VMessages: typeof import('vuetify/components')['VMessages']
|
26262
26262
|
VNavigationDrawer: typeof import('vuetify/components')['VNavigationDrawer']
|
26263
26263
|
VOverlay: typeof import('vuetify/components')['VOverlay']
|
26264
|
-
VPagination: typeof import('vuetify/components')['VPagination']
|
26265
26264
|
VProgressCircular: typeof import('vuetify/components')['VProgressCircular']
|
26266
|
-
|
26265
|
+
VPagination: typeof import('vuetify/components')['VPagination']
|
26267
26266
|
VRadioGroup: typeof import('vuetify/components')['VRadioGroup']
|
26267
|
+
VProgressLinear: typeof import('vuetify/components')['VProgressLinear']
|
26268
26268
|
VRating: typeof import('vuetify/components')['VRating']
|
26269
26269
|
VSelect: typeof import('vuetify/components')['VSelect']
|
26270
26270
|
VSelectionControl: typeof import('vuetify/components')['VSelectionControl']
|
26271
26271
|
VSelectionControlGroup: typeof import('vuetify/components')['VSelectionControlGroup']
|
26272
|
-
VSheet: typeof import('vuetify/components')['VSheet']
|
26273
26272
|
VSlideGroup: typeof import('vuetify/components')['VSlideGroup']
|
26274
26273
|
VSlideGroupItem: typeof import('vuetify/components')['VSlideGroupItem']
|
26274
|
+
VSheet: typeof import('vuetify/components')['VSheet']
|
26275
26275
|
VSlider: typeof import('vuetify/components')['VSlider']
|
26276
26276
|
VSnackbar: typeof import('vuetify/components')['VSnackbar']
|
26277
26277
|
VSwitch: typeof import('vuetify/components')['VSwitch']
|
26278
|
-
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
26279
26278
|
VTabs: typeof import('vuetify/components')['VTabs']
|
26280
26279
|
VTab: typeof import('vuetify/components')['VTab']
|
26280
|
+
VSystemBar: typeof import('vuetify/components')['VSystemBar']
|
26281
26281
|
VTable: typeof import('vuetify/components')['VTable']
|
26282
26282
|
VTextarea: typeof import('vuetify/components')['VTextarea']
|
26283
26283
|
VTextField: typeof import('vuetify/components')['VTextField']
|
package/dist/vuetify.esm.js
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Vuetify v4.0.0-
|
2
|
+
* Vuetify v4.0.0-master-20230206.0
|
3
3
|
* Forged by John Leider
|
4
4
|
* Released under the MIT License.
|
5
5
|
*/
|
@@ -7455,7 +7455,8 @@ const useNested = props => {
|
|
7455
7455
|
};
|
7456
7456
|
const useNestedItem = (id, isGroup) => {
|
7457
7457
|
const parent = inject$1(VNestedSymbol, emptyNested);
|
7458
|
-
const
|
7458
|
+
const uidSymbol = Symbol(getUid());
|
7459
|
+
const computedId = computed(() => id.value ?? uidSymbol);
|
7459
7460
|
const item = {
|
7460
7461
|
...parent,
|
7461
7462
|
id: computedId,
|
@@ -18454,7 +18455,7 @@ function createVuetify$1() {
|
|
18454
18455
|
locale
|
18455
18456
|
};
|
18456
18457
|
}
|
18457
|
-
const version$1 = "4.0.0-
|
18458
|
+
const version$1 = "4.0.0-master-20230206.0";
|
18458
18459
|
createVuetify$1.version = version$1;
|
18459
18460
|
|
18460
18461
|
// Vue's inject() can only be used in setup
|
@@ -18475,7 +18476,7 @@ const createVuetify = function () {
|
|
18475
18476
|
...options
|
18476
18477
|
});
|
18477
18478
|
};
|
18478
|
-
const version = "4.0.0-
|
18479
|
+
const version = "4.0.0-master-20230206.0";
|
18479
18480
|
createVuetify.version = version;
|
18480
18481
|
|
18481
18482
|
export { components, createVuetify, directives, useDisplay, useLayout, useLocale, useRtl, useTheme, version };
|