vuetify 3.3.13 → 3.3.14
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/json/attributes.json +70 -66
- package/dist/json/importMap-labs.json +4 -4
- package/dist/json/importMap.json +12 -12
- package/dist/json/tags.json +5 -4
- package/dist/json/web-types.json +180 -140
- package/dist/vuetify-labs.css +363 -304
- package/dist/vuetify-labs.d.ts +384 -236
- package/dist/vuetify-labs.esm.js +410 -297
- package/dist/vuetify-labs.esm.js.map +1 -1
- package/dist/vuetify-labs.js +409 -296
- package/dist/vuetify-labs.min.css +2 -2
- package/dist/vuetify.css +291 -232
- package/dist/vuetify.d.ts +232 -76
- package/dist/vuetify.esm.js +210 -160
- package/dist/vuetify.esm.js.map +1 -1
- package/dist/vuetify.js +209 -159
- package/dist/vuetify.js.map +1 -1
- package/dist/vuetify.min.css +2 -2
- package/dist/vuetify.min.js +838 -827
- package/dist/vuetify.min.js.map +1 -1
- package/lib/components/VAppBar/VAppBar.mjs.map +1 -1
- package/lib/components/VAppBar/index.d.mts +6 -6
- package/lib/components/VAutocomplete/VAutocomplete.mjs +12 -2
- package/lib/components/VAutocomplete/VAutocomplete.mjs.map +1 -1
- package/lib/components/VBadge/VBadge.css +1 -1
- package/lib/components/VBadge/_variables.scss +1 -1
- package/lib/components/VCheckbox/VCheckbox.mjs +2 -2
- package/lib/components/VCheckbox/VCheckbox.mjs.map +1 -1
- package/lib/components/VCheckbox/VCheckboxBtn.mjs +14 -11
- package/lib/components/VCheckbox/VCheckboxBtn.mjs.map +1 -1
- package/lib/components/VColorPicker/VColorPickerEdit.css +4 -2
- package/lib/components/VColorPicker/VColorPickerPreview.css +11 -6
- package/lib/components/VCombobox/VCombobox.mjs +11 -1
- package/lib/components/VCombobox/VCombobox.mjs.map +1 -1
- package/lib/components/VField/VField.css +22 -7
- package/lib/components/VField/VField.sass +8 -1
- package/lib/components/VField/_variables.scss +1 -0
- package/lib/components/VGrid/VGrid.css +153 -142
- package/lib/components/VProgressLinear/VProgressLinear.css +3 -2
- package/lib/components/VRadioGroup/VRadioGroup.mjs +2 -2
- package/lib/components/VRadioGroup/VRadioGroup.mjs.map +1 -1
- package/lib/components/VRangeSlider/index.d.mts +114 -33
- package/lib/components/VSelect/VSelect.mjs +12 -2
- package/lib/components/VSelect/VSelect.mjs.map +1 -1
- package/lib/components/VSelectionControl/VSelectionControl.mjs +2 -1
- package/lib/components/VSelectionControl/VSelectionControl.mjs.map +1 -1
- package/lib/components/VSlider/VSlider.mjs.map +1 -1
- package/lib/components/VSlider/VSliderThumb.css +8 -4
- package/lib/components/VSlider/VSliderTrack.css +22 -12
- package/lib/components/VSlider/index.d.mts +114 -33
- package/lib/components/VSwitch/VSwitch.mjs +9 -9
- package/lib/components/VSwitch/VSwitch.mjs.map +1 -1
- package/lib/components/VTimeline/VTimeline.css +19 -10
- package/lib/components/VTimeline/VTimeline.sass +5 -0
- package/lib/components/VToolbar/VToolbar.css +4 -2
- package/lib/components/index.d.mts +228 -72
- package/lib/composables/color.mjs +6 -1
- package/lib/composables/color.mjs.map +1 -1
- package/lib/composables/defaults.mjs +9 -9
- package/lib/composables/defaults.mjs.map +1 -1
- package/lib/composables/theme.mjs +2 -5
- package/lib/composables/theme.mjs.map +1 -1
- package/lib/entry-bundler.mjs +1 -1
- package/lib/framework.mjs +1 -1
- package/lib/index.d.mts +4 -4
- package/lib/labs/VDateInput/index.d.mts +2 -2
- package/lib/labs/VDatePicker/VDateCard.mjs +3 -0
- package/lib/labs/VDatePicker/VDateCard.mjs.map +1 -1
- package/lib/labs/VDatePicker/VDatePicker.mjs +51 -21
- package/lib/labs/VDatePicker/VDatePicker.mjs.map +1 -1
- package/lib/labs/VDatePicker/VDatePickerControls.css +1 -1
- package/lib/labs/VDatePicker/VDatePickerControls.mjs +53 -35
- package/lib/labs/VDatePicker/VDatePickerControls.mjs.map +1 -1
- package/lib/labs/VDatePicker/VDatePickerMonth.mjs +37 -28
- package/lib/labs/VDatePicker/VDatePickerMonth.mjs.map +1 -1
- package/lib/labs/VDatePicker/VDatePickerYears.mjs +19 -17
- package/lib/labs/VDatePicker/VDatePickerYears.mjs.map +1 -1
- package/lib/labs/VDatePicker/index.d.mts +148 -156
- package/lib/labs/VDateRangePicker/VDateRangeCard.mjs +3 -0
- package/lib/labs/VDateRangePicker/VDateRangeCard.mjs.map +1 -1
- package/lib/labs/VDateRangePicker/index.d.mts +59 -52
- package/lib/labs/VSkeletonLoader/VSkeletonLoader.mjs.map +1 -1
- package/lib/labs/VSkeletonLoader/index.d.mts +8 -8
- package/lib/labs/components.d.mts +156 -164
- package/lib/locale/no.mjs +1 -1
- package/lib/locale/no.mjs.map +1 -1
- package/lib/styles/tools/_rtl.sass +4 -2
- package/lib/util/colorUtils.mjs +6 -0
- package/lib/util/colorUtils.mjs.map +1 -1
- package/lib/util/helpers.mjs +10 -4
- package/lib/util/helpers.mjs.map +1 -1
- package/lib/util/injectSelf.mjs +2 -1
- package/lib/util/injectSelf.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -147,80 +147,91 @@
|
|
|
147
147
|
max-width: 100%;
|
|
148
148
|
}
|
|
149
149
|
|
|
150
|
-
.
|
|
150
|
+
.v-locale--is-ltr.offset-1, .v-locale--is-ltr .offset-1 {
|
|
151
151
|
margin-left: 8.3333333333%;
|
|
152
152
|
}
|
|
153
|
-
|
|
153
|
+
|
|
154
|
+
.v-locale--is-rtl.offset-1, .v-locale--is-rtl .offset-1 {
|
|
154
155
|
margin-right: 8.3333333333%;
|
|
155
156
|
}
|
|
156
157
|
|
|
157
|
-
.
|
|
158
|
+
.v-locale--is-ltr.offset-2, .v-locale--is-ltr .offset-2 {
|
|
158
159
|
margin-left: 16.6666666667%;
|
|
159
160
|
}
|
|
160
|
-
|
|
161
|
+
|
|
162
|
+
.v-locale--is-rtl.offset-2, .v-locale--is-rtl .offset-2 {
|
|
161
163
|
margin-right: 16.6666666667%;
|
|
162
164
|
}
|
|
163
165
|
|
|
164
|
-
.
|
|
166
|
+
.v-locale--is-ltr.offset-3, .v-locale--is-ltr .offset-3 {
|
|
165
167
|
margin-left: 25%;
|
|
166
168
|
}
|
|
167
|
-
|
|
169
|
+
|
|
170
|
+
.v-locale--is-rtl.offset-3, .v-locale--is-rtl .offset-3 {
|
|
168
171
|
margin-right: 25%;
|
|
169
172
|
}
|
|
170
173
|
|
|
171
|
-
.
|
|
174
|
+
.v-locale--is-ltr.offset-4, .v-locale--is-ltr .offset-4 {
|
|
172
175
|
margin-left: 33.3333333333%;
|
|
173
176
|
}
|
|
174
|
-
|
|
177
|
+
|
|
178
|
+
.v-locale--is-rtl.offset-4, .v-locale--is-rtl .offset-4 {
|
|
175
179
|
margin-right: 33.3333333333%;
|
|
176
180
|
}
|
|
177
181
|
|
|
178
|
-
.
|
|
182
|
+
.v-locale--is-ltr.offset-5, .v-locale--is-ltr .offset-5 {
|
|
179
183
|
margin-left: 41.6666666667%;
|
|
180
184
|
}
|
|
181
|
-
|
|
185
|
+
|
|
186
|
+
.v-locale--is-rtl.offset-5, .v-locale--is-rtl .offset-5 {
|
|
182
187
|
margin-right: 41.6666666667%;
|
|
183
188
|
}
|
|
184
189
|
|
|
185
|
-
.
|
|
190
|
+
.v-locale--is-ltr.offset-6, .v-locale--is-ltr .offset-6 {
|
|
186
191
|
margin-left: 50%;
|
|
187
192
|
}
|
|
188
|
-
|
|
193
|
+
|
|
194
|
+
.v-locale--is-rtl.offset-6, .v-locale--is-rtl .offset-6 {
|
|
189
195
|
margin-right: 50%;
|
|
190
196
|
}
|
|
191
197
|
|
|
192
|
-
.
|
|
198
|
+
.v-locale--is-ltr.offset-7, .v-locale--is-ltr .offset-7 {
|
|
193
199
|
margin-left: 58.3333333333%;
|
|
194
200
|
}
|
|
195
|
-
|
|
201
|
+
|
|
202
|
+
.v-locale--is-rtl.offset-7, .v-locale--is-rtl .offset-7 {
|
|
196
203
|
margin-right: 58.3333333333%;
|
|
197
204
|
}
|
|
198
205
|
|
|
199
|
-
.
|
|
206
|
+
.v-locale--is-ltr.offset-8, .v-locale--is-ltr .offset-8 {
|
|
200
207
|
margin-left: 66.6666666667%;
|
|
201
208
|
}
|
|
202
|
-
|
|
209
|
+
|
|
210
|
+
.v-locale--is-rtl.offset-8, .v-locale--is-rtl .offset-8 {
|
|
203
211
|
margin-right: 66.6666666667%;
|
|
204
212
|
}
|
|
205
213
|
|
|
206
|
-
.
|
|
214
|
+
.v-locale--is-ltr.offset-9, .v-locale--is-ltr .offset-9 {
|
|
207
215
|
margin-left: 75%;
|
|
208
216
|
}
|
|
209
|
-
|
|
217
|
+
|
|
218
|
+
.v-locale--is-rtl.offset-9, .v-locale--is-rtl .offset-9 {
|
|
210
219
|
margin-right: 75%;
|
|
211
220
|
}
|
|
212
221
|
|
|
213
|
-
.
|
|
222
|
+
.v-locale--is-ltr.offset-10, .v-locale--is-ltr .offset-10 {
|
|
214
223
|
margin-left: 83.3333333333%;
|
|
215
224
|
}
|
|
216
|
-
|
|
225
|
+
|
|
226
|
+
.v-locale--is-rtl.offset-10, .v-locale--is-rtl .offset-10 {
|
|
217
227
|
margin-right: 83.3333333333%;
|
|
218
228
|
}
|
|
219
229
|
|
|
220
|
-
.
|
|
230
|
+
.v-locale--is-ltr.offset-11, .v-locale--is-ltr .offset-11 {
|
|
221
231
|
margin-left: 91.6666666667%;
|
|
222
232
|
}
|
|
223
|
-
|
|
233
|
+
|
|
234
|
+
.v-locale--is-rtl.offset-11, .v-locale--is-rtl .offset-11 {
|
|
224
235
|
margin-right: 91.6666666667%;
|
|
225
236
|
}
|
|
226
237
|
|
|
@@ -283,76 +294,76 @@
|
|
|
283
294
|
flex: 0 0 100%;
|
|
284
295
|
max-width: 100%;
|
|
285
296
|
}
|
|
286
|
-
.
|
|
297
|
+
.v-locale--is-ltr.offset-sm-0, .v-locale--is-ltr .offset-sm-0 {
|
|
287
298
|
margin-left: 0;
|
|
288
299
|
}
|
|
289
|
-
.
|
|
300
|
+
.v-locale--is-rtl.offset-sm-0, .v-locale--is-rtl .offset-sm-0 {
|
|
290
301
|
margin-right: 0;
|
|
291
302
|
}
|
|
292
|
-
.
|
|
303
|
+
.v-locale--is-ltr.offset-sm-1, .v-locale--is-ltr .offset-sm-1 {
|
|
293
304
|
margin-left: 8.3333333333%;
|
|
294
305
|
}
|
|
295
|
-
.
|
|
306
|
+
.v-locale--is-rtl.offset-sm-1, .v-locale--is-rtl .offset-sm-1 {
|
|
296
307
|
margin-right: 8.3333333333%;
|
|
297
308
|
}
|
|
298
|
-
.
|
|
309
|
+
.v-locale--is-ltr.offset-sm-2, .v-locale--is-ltr .offset-sm-2 {
|
|
299
310
|
margin-left: 16.6666666667%;
|
|
300
311
|
}
|
|
301
|
-
.
|
|
312
|
+
.v-locale--is-rtl.offset-sm-2, .v-locale--is-rtl .offset-sm-2 {
|
|
302
313
|
margin-right: 16.6666666667%;
|
|
303
314
|
}
|
|
304
|
-
.
|
|
315
|
+
.v-locale--is-ltr.offset-sm-3, .v-locale--is-ltr .offset-sm-3 {
|
|
305
316
|
margin-left: 25%;
|
|
306
317
|
}
|
|
307
|
-
.
|
|
318
|
+
.v-locale--is-rtl.offset-sm-3, .v-locale--is-rtl .offset-sm-3 {
|
|
308
319
|
margin-right: 25%;
|
|
309
320
|
}
|
|
310
|
-
.
|
|
321
|
+
.v-locale--is-ltr.offset-sm-4, .v-locale--is-ltr .offset-sm-4 {
|
|
311
322
|
margin-left: 33.3333333333%;
|
|
312
323
|
}
|
|
313
|
-
.
|
|
324
|
+
.v-locale--is-rtl.offset-sm-4, .v-locale--is-rtl .offset-sm-4 {
|
|
314
325
|
margin-right: 33.3333333333%;
|
|
315
326
|
}
|
|
316
|
-
.
|
|
327
|
+
.v-locale--is-ltr.offset-sm-5, .v-locale--is-ltr .offset-sm-5 {
|
|
317
328
|
margin-left: 41.6666666667%;
|
|
318
329
|
}
|
|
319
|
-
.
|
|
330
|
+
.v-locale--is-rtl.offset-sm-5, .v-locale--is-rtl .offset-sm-5 {
|
|
320
331
|
margin-right: 41.6666666667%;
|
|
321
332
|
}
|
|
322
|
-
.
|
|
333
|
+
.v-locale--is-ltr.offset-sm-6, .v-locale--is-ltr .offset-sm-6 {
|
|
323
334
|
margin-left: 50%;
|
|
324
335
|
}
|
|
325
|
-
.
|
|
336
|
+
.v-locale--is-rtl.offset-sm-6, .v-locale--is-rtl .offset-sm-6 {
|
|
326
337
|
margin-right: 50%;
|
|
327
338
|
}
|
|
328
|
-
.
|
|
339
|
+
.v-locale--is-ltr.offset-sm-7, .v-locale--is-ltr .offset-sm-7 {
|
|
329
340
|
margin-left: 58.3333333333%;
|
|
330
341
|
}
|
|
331
|
-
.
|
|
342
|
+
.v-locale--is-rtl.offset-sm-7, .v-locale--is-rtl .offset-sm-7 {
|
|
332
343
|
margin-right: 58.3333333333%;
|
|
333
344
|
}
|
|
334
|
-
.
|
|
345
|
+
.v-locale--is-ltr.offset-sm-8, .v-locale--is-ltr .offset-sm-8 {
|
|
335
346
|
margin-left: 66.6666666667%;
|
|
336
347
|
}
|
|
337
|
-
.
|
|
348
|
+
.v-locale--is-rtl.offset-sm-8, .v-locale--is-rtl .offset-sm-8 {
|
|
338
349
|
margin-right: 66.6666666667%;
|
|
339
350
|
}
|
|
340
|
-
.
|
|
351
|
+
.v-locale--is-ltr.offset-sm-9, .v-locale--is-ltr .offset-sm-9 {
|
|
341
352
|
margin-left: 75%;
|
|
342
353
|
}
|
|
343
|
-
.
|
|
354
|
+
.v-locale--is-rtl.offset-sm-9, .v-locale--is-rtl .offset-sm-9 {
|
|
344
355
|
margin-right: 75%;
|
|
345
356
|
}
|
|
346
|
-
.
|
|
357
|
+
.v-locale--is-ltr.offset-sm-10, .v-locale--is-ltr .offset-sm-10 {
|
|
347
358
|
margin-left: 83.3333333333%;
|
|
348
359
|
}
|
|
349
|
-
.
|
|
360
|
+
.v-locale--is-rtl.offset-sm-10, .v-locale--is-rtl .offset-sm-10 {
|
|
350
361
|
margin-right: 83.3333333333%;
|
|
351
362
|
}
|
|
352
|
-
.
|
|
363
|
+
.v-locale--is-ltr.offset-sm-11, .v-locale--is-ltr .offset-sm-11 {
|
|
353
364
|
margin-left: 91.6666666667%;
|
|
354
365
|
}
|
|
355
|
-
.
|
|
366
|
+
.v-locale--is-rtl.offset-sm-11, .v-locale--is-rtl .offset-sm-11 {
|
|
356
367
|
margin-right: 91.6666666667%;
|
|
357
368
|
}
|
|
358
369
|
}
|
|
@@ -415,76 +426,76 @@
|
|
|
415
426
|
flex: 0 0 100%;
|
|
416
427
|
max-width: 100%;
|
|
417
428
|
}
|
|
418
|
-
.
|
|
429
|
+
.v-locale--is-ltr.offset-md-0, .v-locale--is-ltr .offset-md-0 {
|
|
419
430
|
margin-left: 0;
|
|
420
431
|
}
|
|
421
|
-
.
|
|
432
|
+
.v-locale--is-rtl.offset-md-0, .v-locale--is-rtl .offset-md-0 {
|
|
422
433
|
margin-right: 0;
|
|
423
434
|
}
|
|
424
|
-
.
|
|
435
|
+
.v-locale--is-ltr.offset-md-1, .v-locale--is-ltr .offset-md-1 {
|
|
425
436
|
margin-left: 8.3333333333%;
|
|
426
437
|
}
|
|
427
|
-
.
|
|
438
|
+
.v-locale--is-rtl.offset-md-1, .v-locale--is-rtl .offset-md-1 {
|
|
428
439
|
margin-right: 8.3333333333%;
|
|
429
440
|
}
|
|
430
|
-
.
|
|
441
|
+
.v-locale--is-ltr.offset-md-2, .v-locale--is-ltr .offset-md-2 {
|
|
431
442
|
margin-left: 16.6666666667%;
|
|
432
443
|
}
|
|
433
|
-
.
|
|
444
|
+
.v-locale--is-rtl.offset-md-2, .v-locale--is-rtl .offset-md-2 {
|
|
434
445
|
margin-right: 16.6666666667%;
|
|
435
446
|
}
|
|
436
|
-
.
|
|
447
|
+
.v-locale--is-ltr.offset-md-3, .v-locale--is-ltr .offset-md-3 {
|
|
437
448
|
margin-left: 25%;
|
|
438
449
|
}
|
|
439
|
-
.
|
|
450
|
+
.v-locale--is-rtl.offset-md-3, .v-locale--is-rtl .offset-md-3 {
|
|
440
451
|
margin-right: 25%;
|
|
441
452
|
}
|
|
442
|
-
.
|
|
453
|
+
.v-locale--is-ltr.offset-md-4, .v-locale--is-ltr .offset-md-4 {
|
|
443
454
|
margin-left: 33.3333333333%;
|
|
444
455
|
}
|
|
445
|
-
.
|
|
456
|
+
.v-locale--is-rtl.offset-md-4, .v-locale--is-rtl .offset-md-4 {
|
|
446
457
|
margin-right: 33.3333333333%;
|
|
447
458
|
}
|
|
448
|
-
.
|
|
459
|
+
.v-locale--is-ltr.offset-md-5, .v-locale--is-ltr .offset-md-5 {
|
|
449
460
|
margin-left: 41.6666666667%;
|
|
450
461
|
}
|
|
451
|
-
.
|
|
462
|
+
.v-locale--is-rtl.offset-md-5, .v-locale--is-rtl .offset-md-5 {
|
|
452
463
|
margin-right: 41.6666666667%;
|
|
453
464
|
}
|
|
454
|
-
.
|
|
465
|
+
.v-locale--is-ltr.offset-md-6, .v-locale--is-ltr .offset-md-6 {
|
|
455
466
|
margin-left: 50%;
|
|
456
467
|
}
|
|
457
|
-
.
|
|
468
|
+
.v-locale--is-rtl.offset-md-6, .v-locale--is-rtl .offset-md-6 {
|
|
458
469
|
margin-right: 50%;
|
|
459
470
|
}
|
|
460
|
-
.
|
|
471
|
+
.v-locale--is-ltr.offset-md-7, .v-locale--is-ltr .offset-md-7 {
|
|
461
472
|
margin-left: 58.3333333333%;
|
|
462
473
|
}
|
|
463
|
-
.
|
|
474
|
+
.v-locale--is-rtl.offset-md-7, .v-locale--is-rtl .offset-md-7 {
|
|
464
475
|
margin-right: 58.3333333333%;
|
|
465
476
|
}
|
|
466
|
-
.
|
|
477
|
+
.v-locale--is-ltr.offset-md-8, .v-locale--is-ltr .offset-md-8 {
|
|
467
478
|
margin-left: 66.6666666667%;
|
|
468
479
|
}
|
|
469
|
-
.
|
|
480
|
+
.v-locale--is-rtl.offset-md-8, .v-locale--is-rtl .offset-md-8 {
|
|
470
481
|
margin-right: 66.6666666667%;
|
|
471
482
|
}
|
|
472
|
-
.
|
|
483
|
+
.v-locale--is-ltr.offset-md-9, .v-locale--is-ltr .offset-md-9 {
|
|
473
484
|
margin-left: 75%;
|
|
474
485
|
}
|
|
475
|
-
.
|
|
486
|
+
.v-locale--is-rtl.offset-md-9, .v-locale--is-rtl .offset-md-9 {
|
|
476
487
|
margin-right: 75%;
|
|
477
488
|
}
|
|
478
|
-
.
|
|
489
|
+
.v-locale--is-ltr.offset-md-10, .v-locale--is-ltr .offset-md-10 {
|
|
479
490
|
margin-left: 83.3333333333%;
|
|
480
491
|
}
|
|
481
|
-
.
|
|
492
|
+
.v-locale--is-rtl.offset-md-10, .v-locale--is-rtl .offset-md-10 {
|
|
482
493
|
margin-right: 83.3333333333%;
|
|
483
494
|
}
|
|
484
|
-
.
|
|
495
|
+
.v-locale--is-ltr.offset-md-11, .v-locale--is-ltr .offset-md-11 {
|
|
485
496
|
margin-left: 91.6666666667%;
|
|
486
497
|
}
|
|
487
|
-
.
|
|
498
|
+
.v-locale--is-rtl.offset-md-11, .v-locale--is-rtl .offset-md-11 {
|
|
488
499
|
margin-right: 91.6666666667%;
|
|
489
500
|
}
|
|
490
501
|
}
|
|
@@ -547,76 +558,76 @@
|
|
|
547
558
|
flex: 0 0 100%;
|
|
548
559
|
max-width: 100%;
|
|
549
560
|
}
|
|
550
|
-
.
|
|
561
|
+
.v-locale--is-ltr.offset-lg-0, .v-locale--is-ltr .offset-lg-0 {
|
|
551
562
|
margin-left: 0;
|
|
552
563
|
}
|
|
553
|
-
.
|
|
564
|
+
.v-locale--is-rtl.offset-lg-0, .v-locale--is-rtl .offset-lg-0 {
|
|
554
565
|
margin-right: 0;
|
|
555
566
|
}
|
|
556
|
-
.
|
|
567
|
+
.v-locale--is-ltr.offset-lg-1, .v-locale--is-ltr .offset-lg-1 {
|
|
557
568
|
margin-left: 8.3333333333%;
|
|
558
569
|
}
|
|
559
|
-
.
|
|
570
|
+
.v-locale--is-rtl.offset-lg-1, .v-locale--is-rtl .offset-lg-1 {
|
|
560
571
|
margin-right: 8.3333333333%;
|
|
561
572
|
}
|
|
562
|
-
.
|
|
573
|
+
.v-locale--is-ltr.offset-lg-2, .v-locale--is-ltr .offset-lg-2 {
|
|
563
574
|
margin-left: 16.6666666667%;
|
|
564
575
|
}
|
|
565
|
-
.
|
|
576
|
+
.v-locale--is-rtl.offset-lg-2, .v-locale--is-rtl .offset-lg-2 {
|
|
566
577
|
margin-right: 16.6666666667%;
|
|
567
578
|
}
|
|
568
|
-
.
|
|
579
|
+
.v-locale--is-ltr.offset-lg-3, .v-locale--is-ltr .offset-lg-3 {
|
|
569
580
|
margin-left: 25%;
|
|
570
581
|
}
|
|
571
|
-
.
|
|
582
|
+
.v-locale--is-rtl.offset-lg-3, .v-locale--is-rtl .offset-lg-3 {
|
|
572
583
|
margin-right: 25%;
|
|
573
584
|
}
|
|
574
|
-
.
|
|
585
|
+
.v-locale--is-ltr.offset-lg-4, .v-locale--is-ltr .offset-lg-4 {
|
|
575
586
|
margin-left: 33.3333333333%;
|
|
576
587
|
}
|
|
577
|
-
.
|
|
588
|
+
.v-locale--is-rtl.offset-lg-4, .v-locale--is-rtl .offset-lg-4 {
|
|
578
589
|
margin-right: 33.3333333333%;
|
|
579
590
|
}
|
|
580
|
-
.
|
|
591
|
+
.v-locale--is-ltr.offset-lg-5, .v-locale--is-ltr .offset-lg-5 {
|
|
581
592
|
margin-left: 41.6666666667%;
|
|
582
593
|
}
|
|
583
|
-
.
|
|
594
|
+
.v-locale--is-rtl.offset-lg-5, .v-locale--is-rtl .offset-lg-5 {
|
|
584
595
|
margin-right: 41.6666666667%;
|
|
585
596
|
}
|
|
586
|
-
.
|
|
597
|
+
.v-locale--is-ltr.offset-lg-6, .v-locale--is-ltr .offset-lg-6 {
|
|
587
598
|
margin-left: 50%;
|
|
588
599
|
}
|
|
589
|
-
.
|
|
600
|
+
.v-locale--is-rtl.offset-lg-6, .v-locale--is-rtl .offset-lg-6 {
|
|
590
601
|
margin-right: 50%;
|
|
591
602
|
}
|
|
592
|
-
.
|
|
603
|
+
.v-locale--is-ltr.offset-lg-7, .v-locale--is-ltr .offset-lg-7 {
|
|
593
604
|
margin-left: 58.3333333333%;
|
|
594
605
|
}
|
|
595
|
-
.
|
|
606
|
+
.v-locale--is-rtl.offset-lg-7, .v-locale--is-rtl .offset-lg-7 {
|
|
596
607
|
margin-right: 58.3333333333%;
|
|
597
608
|
}
|
|
598
|
-
.
|
|
609
|
+
.v-locale--is-ltr.offset-lg-8, .v-locale--is-ltr .offset-lg-8 {
|
|
599
610
|
margin-left: 66.6666666667%;
|
|
600
611
|
}
|
|
601
|
-
.
|
|
612
|
+
.v-locale--is-rtl.offset-lg-8, .v-locale--is-rtl .offset-lg-8 {
|
|
602
613
|
margin-right: 66.6666666667%;
|
|
603
614
|
}
|
|
604
|
-
.
|
|
615
|
+
.v-locale--is-ltr.offset-lg-9, .v-locale--is-ltr .offset-lg-9 {
|
|
605
616
|
margin-left: 75%;
|
|
606
617
|
}
|
|
607
|
-
.
|
|
618
|
+
.v-locale--is-rtl.offset-lg-9, .v-locale--is-rtl .offset-lg-9 {
|
|
608
619
|
margin-right: 75%;
|
|
609
620
|
}
|
|
610
|
-
.
|
|
621
|
+
.v-locale--is-ltr.offset-lg-10, .v-locale--is-ltr .offset-lg-10 {
|
|
611
622
|
margin-left: 83.3333333333%;
|
|
612
623
|
}
|
|
613
|
-
.
|
|
624
|
+
.v-locale--is-rtl.offset-lg-10, .v-locale--is-rtl .offset-lg-10 {
|
|
614
625
|
margin-right: 83.3333333333%;
|
|
615
626
|
}
|
|
616
|
-
.
|
|
627
|
+
.v-locale--is-ltr.offset-lg-11, .v-locale--is-ltr .offset-lg-11 {
|
|
617
628
|
margin-left: 91.6666666667%;
|
|
618
629
|
}
|
|
619
|
-
.
|
|
630
|
+
.v-locale--is-rtl.offset-lg-11, .v-locale--is-rtl .offset-lg-11 {
|
|
620
631
|
margin-right: 91.6666666667%;
|
|
621
632
|
}
|
|
622
633
|
}
|
|
@@ -679,76 +690,76 @@
|
|
|
679
690
|
flex: 0 0 100%;
|
|
680
691
|
max-width: 100%;
|
|
681
692
|
}
|
|
682
|
-
.
|
|
693
|
+
.v-locale--is-ltr.offset-xl-0, .v-locale--is-ltr .offset-xl-0 {
|
|
683
694
|
margin-left: 0;
|
|
684
695
|
}
|
|
685
|
-
.
|
|
696
|
+
.v-locale--is-rtl.offset-xl-0, .v-locale--is-rtl .offset-xl-0 {
|
|
686
697
|
margin-right: 0;
|
|
687
698
|
}
|
|
688
|
-
.
|
|
699
|
+
.v-locale--is-ltr.offset-xl-1, .v-locale--is-ltr .offset-xl-1 {
|
|
689
700
|
margin-left: 8.3333333333%;
|
|
690
701
|
}
|
|
691
|
-
.
|
|
702
|
+
.v-locale--is-rtl.offset-xl-1, .v-locale--is-rtl .offset-xl-1 {
|
|
692
703
|
margin-right: 8.3333333333%;
|
|
693
704
|
}
|
|
694
|
-
.
|
|
705
|
+
.v-locale--is-ltr.offset-xl-2, .v-locale--is-ltr .offset-xl-2 {
|
|
695
706
|
margin-left: 16.6666666667%;
|
|
696
707
|
}
|
|
697
|
-
.
|
|
708
|
+
.v-locale--is-rtl.offset-xl-2, .v-locale--is-rtl .offset-xl-2 {
|
|
698
709
|
margin-right: 16.6666666667%;
|
|
699
710
|
}
|
|
700
|
-
.
|
|
711
|
+
.v-locale--is-ltr.offset-xl-3, .v-locale--is-ltr .offset-xl-3 {
|
|
701
712
|
margin-left: 25%;
|
|
702
713
|
}
|
|
703
|
-
.
|
|
714
|
+
.v-locale--is-rtl.offset-xl-3, .v-locale--is-rtl .offset-xl-3 {
|
|
704
715
|
margin-right: 25%;
|
|
705
716
|
}
|
|
706
|
-
.
|
|
717
|
+
.v-locale--is-ltr.offset-xl-4, .v-locale--is-ltr .offset-xl-4 {
|
|
707
718
|
margin-left: 33.3333333333%;
|
|
708
719
|
}
|
|
709
|
-
.
|
|
720
|
+
.v-locale--is-rtl.offset-xl-4, .v-locale--is-rtl .offset-xl-4 {
|
|
710
721
|
margin-right: 33.3333333333%;
|
|
711
722
|
}
|
|
712
|
-
.
|
|
723
|
+
.v-locale--is-ltr.offset-xl-5, .v-locale--is-ltr .offset-xl-5 {
|
|
713
724
|
margin-left: 41.6666666667%;
|
|
714
725
|
}
|
|
715
|
-
.
|
|
726
|
+
.v-locale--is-rtl.offset-xl-5, .v-locale--is-rtl .offset-xl-5 {
|
|
716
727
|
margin-right: 41.6666666667%;
|
|
717
728
|
}
|
|
718
|
-
.
|
|
729
|
+
.v-locale--is-ltr.offset-xl-6, .v-locale--is-ltr .offset-xl-6 {
|
|
719
730
|
margin-left: 50%;
|
|
720
731
|
}
|
|
721
|
-
.
|
|
732
|
+
.v-locale--is-rtl.offset-xl-6, .v-locale--is-rtl .offset-xl-6 {
|
|
722
733
|
margin-right: 50%;
|
|
723
734
|
}
|
|
724
|
-
.
|
|
735
|
+
.v-locale--is-ltr.offset-xl-7, .v-locale--is-ltr .offset-xl-7 {
|
|
725
736
|
margin-left: 58.3333333333%;
|
|
726
737
|
}
|
|
727
|
-
.
|
|
738
|
+
.v-locale--is-rtl.offset-xl-7, .v-locale--is-rtl .offset-xl-7 {
|
|
728
739
|
margin-right: 58.3333333333%;
|
|
729
740
|
}
|
|
730
|
-
.
|
|
741
|
+
.v-locale--is-ltr.offset-xl-8, .v-locale--is-ltr .offset-xl-8 {
|
|
731
742
|
margin-left: 66.6666666667%;
|
|
732
743
|
}
|
|
733
|
-
.
|
|
744
|
+
.v-locale--is-rtl.offset-xl-8, .v-locale--is-rtl .offset-xl-8 {
|
|
734
745
|
margin-right: 66.6666666667%;
|
|
735
746
|
}
|
|
736
|
-
.
|
|
747
|
+
.v-locale--is-ltr.offset-xl-9, .v-locale--is-ltr .offset-xl-9 {
|
|
737
748
|
margin-left: 75%;
|
|
738
749
|
}
|
|
739
|
-
.
|
|
750
|
+
.v-locale--is-rtl.offset-xl-9, .v-locale--is-rtl .offset-xl-9 {
|
|
740
751
|
margin-right: 75%;
|
|
741
752
|
}
|
|
742
|
-
.
|
|
753
|
+
.v-locale--is-ltr.offset-xl-10, .v-locale--is-ltr .offset-xl-10 {
|
|
743
754
|
margin-left: 83.3333333333%;
|
|
744
755
|
}
|
|
745
|
-
.
|
|
756
|
+
.v-locale--is-rtl.offset-xl-10, .v-locale--is-rtl .offset-xl-10 {
|
|
746
757
|
margin-right: 83.3333333333%;
|
|
747
758
|
}
|
|
748
|
-
.
|
|
759
|
+
.v-locale--is-ltr.offset-xl-11, .v-locale--is-ltr .offset-xl-11 {
|
|
749
760
|
margin-left: 91.6666666667%;
|
|
750
761
|
}
|
|
751
|
-
.
|
|
762
|
+
.v-locale--is-rtl.offset-xl-11, .v-locale--is-rtl .offset-xl-11 {
|
|
752
763
|
margin-right: 91.6666666667%;
|
|
753
764
|
}
|
|
754
765
|
}
|
|
@@ -811,76 +822,76 @@
|
|
|
811
822
|
flex: 0 0 100%;
|
|
812
823
|
max-width: 100%;
|
|
813
824
|
}
|
|
814
|
-
.
|
|
825
|
+
.v-locale--is-ltr.offset-xxl-0, .v-locale--is-ltr .offset-xxl-0 {
|
|
815
826
|
margin-left: 0;
|
|
816
827
|
}
|
|
817
|
-
.
|
|
828
|
+
.v-locale--is-rtl.offset-xxl-0, .v-locale--is-rtl .offset-xxl-0 {
|
|
818
829
|
margin-right: 0;
|
|
819
830
|
}
|
|
820
|
-
.
|
|
831
|
+
.v-locale--is-ltr.offset-xxl-1, .v-locale--is-ltr .offset-xxl-1 {
|
|
821
832
|
margin-left: 8.3333333333%;
|
|
822
833
|
}
|
|
823
|
-
.
|
|
834
|
+
.v-locale--is-rtl.offset-xxl-1, .v-locale--is-rtl .offset-xxl-1 {
|
|
824
835
|
margin-right: 8.3333333333%;
|
|
825
836
|
}
|
|
826
|
-
.
|
|
837
|
+
.v-locale--is-ltr.offset-xxl-2, .v-locale--is-ltr .offset-xxl-2 {
|
|
827
838
|
margin-left: 16.6666666667%;
|
|
828
839
|
}
|
|
829
|
-
.
|
|
840
|
+
.v-locale--is-rtl.offset-xxl-2, .v-locale--is-rtl .offset-xxl-2 {
|
|
830
841
|
margin-right: 16.6666666667%;
|
|
831
842
|
}
|
|
832
|
-
.
|
|
843
|
+
.v-locale--is-ltr.offset-xxl-3, .v-locale--is-ltr .offset-xxl-3 {
|
|
833
844
|
margin-left: 25%;
|
|
834
845
|
}
|
|
835
|
-
.
|
|
846
|
+
.v-locale--is-rtl.offset-xxl-3, .v-locale--is-rtl .offset-xxl-3 {
|
|
836
847
|
margin-right: 25%;
|
|
837
848
|
}
|
|
838
|
-
.
|
|
849
|
+
.v-locale--is-ltr.offset-xxl-4, .v-locale--is-ltr .offset-xxl-4 {
|
|
839
850
|
margin-left: 33.3333333333%;
|
|
840
851
|
}
|
|
841
|
-
.
|
|
852
|
+
.v-locale--is-rtl.offset-xxl-4, .v-locale--is-rtl .offset-xxl-4 {
|
|
842
853
|
margin-right: 33.3333333333%;
|
|
843
854
|
}
|
|
844
|
-
.
|
|
855
|
+
.v-locale--is-ltr.offset-xxl-5, .v-locale--is-ltr .offset-xxl-5 {
|
|
845
856
|
margin-left: 41.6666666667%;
|
|
846
857
|
}
|
|
847
|
-
.
|
|
858
|
+
.v-locale--is-rtl.offset-xxl-5, .v-locale--is-rtl .offset-xxl-5 {
|
|
848
859
|
margin-right: 41.6666666667%;
|
|
849
860
|
}
|
|
850
|
-
.
|
|
861
|
+
.v-locale--is-ltr.offset-xxl-6, .v-locale--is-ltr .offset-xxl-6 {
|
|
851
862
|
margin-left: 50%;
|
|
852
863
|
}
|
|
853
|
-
.
|
|
864
|
+
.v-locale--is-rtl.offset-xxl-6, .v-locale--is-rtl .offset-xxl-6 {
|
|
854
865
|
margin-right: 50%;
|
|
855
866
|
}
|
|
856
|
-
.
|
|
867
|
+
.v-locale--is-ltr.offset-xxl-7, .v-locale--is-ltr .offset-xxl-7 {
|
|
857
868
|
margin-left: 58.3333333333%;
|
|
858
869
|
}
|
|
859
|
-
.
|
|
870
|
+
.v-locale--is-rtl.offset-xxl-7, .v-locale--is-rtl .offset-xxl-7 {
|
|
860
871
|
margin-right: 58.3333333333%;
|
|
861
872
|
}
|
|
862
|
-
.
|
|
873
|
+
.v-locale--is-ltr.offset-xxl-8, .v-locale--is-ltr .offset-xxl-8 {
|
|
863
874
|
margin-left: 66.6666666667%;
|
|
864
875
|
}
|
|
865
|
-
.
|
|
876
|
+
.v-locale--is-rtl.offset-xxl-8, .v-locale--is-rtl .offset-xxl-8 {
|
|
866
877
|
margin-right: 66.6666666667%;
|
|
867
878
|
}
|
|
868
|
-
.
|
|
879
|
+
.v-locale--is-ltr.offset-xxl-9, .v-locale--is-ltr .offset-xxl-9 {
|
|
869
880
|
margin-left: 75%;
|
|
870
881
|
}
|
|
871
|
-
.
|
|
882
|
+
.v-locale--is-rtl.offset-xxl-9, .v-locale--is-rtl .offset-xxl-9 {
|
|
872
883
|
margin-right: 75%;
|
|
873
884
|
}
|
|
874
|
-
.
|
|
885
|
+
.v-locale--is-ltr.offset-xxl-10, .v-locale--is-ltr .offset-xxl-10 {
|
|
875
886
|
margin-left: 83.3333333333%;
|
|
876
887
|
}
|
|
877
|
-
.
|
|
888
|
+
.v-locale--is-rtl.offset-xxl-10, .v-locale--is-rtl .offset-xxl-10 {
|
|
878
889
|
margin-right: 83.3333333333%;
|
|
879
890
|
}
|
|
880
|
-
.
|
|
891
|
+
.v-locale--is-ltr.offset-xxl-11, .v-locale--is-ltr .offset-xxl-11 {
|
|
881
892
|
margin-left: 91.6666666667%;
|
|
882
893
|
}
|
|
883
|
-
.
|
|
894
|
+
.v-locale--is-rtl.offset-xxl-11, .v-locale--is-rtl .offset-xxl-11 {
|
|
884
895
|
margin-right: 91.6666666667%;
|
|
885
896
|
}
|
|
886
897
|
}
|
|
@@ -138,11 +138,12 @@
|
|
|
138
138
|
.v-progress-linear--rounded-bar .v-progress-linear__stream + .v-progress-linear__background {
|
|
139
139
|
border-radius: 9999px;
|
|
140
140
|
}
|
|
141
|
-
.v-progress-linear--rounded-bar .v-progress-linear__determinate
|
|
141
|
+
.v-locale--is-ltr.v-progress-linear--rounded-bar .v-progress-linear__determinate, .v-locale--is-ltr .v-progress-linear--rounded-bar .v-progress-linear__determinate {
|
|
142
142
|
border-top-left-radius: 0;
|
|
143
143
|
border-bottom-left-radius: 0;
|
|
144
144
|
}
|
|
145
|
-
|
|
145
|
+
|
|
146
|
+
.v-locale--is-rtl.v-progress-linear--rounded-bar .v-progress-linear__determinate, .v-locale--is-rtl .v-progress-linear--rounded-bar .v-progress-linear__determinate {
|
|
146
147
|
border-top-right-radius: 0;
|
|
147
148
|
border-bottom-right-radius: 0;
|
|
148
149
|
}
|
|
@@ -47,7 +47,7 @@ export const VRadioGroup = genericComponent()({
|
|
|
47
47
|
const id = computed(() => props.id || `radio-group-${uid}`);
|
|
48
48
|
const model = useProxiedModel(props, 'modelValue');
|
|
49
49
|
useRender(() => {
|
|
50
|
-
const [
|
|
50
|
+
const [rootAttrs, controlAttrs] = filterInputAttrs(attrs);
|
|
51
51
|
const [inputProps, _1] = VInput.filterProps(props);
|
|
52
52
|
const [controlProps, _2] = VSelectionControl.filterProps(props);
|
|
53
53
|
const label = slots.label ? slots.label({
|
|
@@ -59,7 +59,7 @@ export const VRadioGroup = genericComponent()({
|
|
|
59
59
|
return _createVNode(VInput, _mergeProps({
|
|
60
60
|
"class": ['v-radio-group', props.class],
|
|
61
61
|
"style": props.style
|
|
62
|
-
},
|
|
62
|
+
}, rootAttrs, inputProps, {
|
|
63
63
|
"modelValue": model.value,
|
|
64
64
|
"onUpdate:modelValue": $event => model.value = $event,
|
|
65
65
|
"id": id.value
|