@omnia/runtime 8.0.478-dev → 8.0.480-dev
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/bundles/omnia.fx.ux.vuetify.combobox_0edad567-65c0-433f-a871-a59e460d70f0.css +6 -6
- package/dist/bundles/omnia.fx.ux.vuetify.core_8769dc42-712d-4ce2-8d32-4b8604b92ae6.css +31 -6
- package/dist/bundles/omnia.fx.ux.vuetify.number.input_0fb99ef6-4899-4100-9e95-e33934baf823.css +15 -4
- package/dist/bundles/omnia.fx.ux.vuetify.select_6d5f3edc-0fc0-4765-804b-b6583381f25d.css +6 -0
- package/dist/localizations/bb000000-0000-bbbb-0000-0000000000bb_localized.loc.public.en-us.json +1 -1
- package/dist/manifests/bb000000-0000-bbbb-0000-0000000000bb_admin_manifests.json +1 -1
- package/dist/manifests/bb000000-0000-bbbb-0000-0000000000bb_docs_manifests.json +1 -1
- package/dist/manifests/bb000000-0000-bbbb-0000-0000000000bb_editor_manifests.json +1 -1
- package/dist/manifests/bb000000-0000-bbbb-0000-0000000000bb_public_manifests.json +1 -1
- package/dist/manifests/bb000000-0000-bbbb-0000-0000000000bb_servicemanifest.json +1 -1
- package/package.json +5 -5
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
.v-combobox--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
|
|
2
|
+
.v-combobox--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
|
|
3
|
+
.v-combobox--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
|
|
4
|
+
.v-combobox--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
|
|
5
|
+
top: 0px;
|
|
6
|
+
}
|
|
1
7
|
.v-combobox .v-field .v-text-field__prefix,
|
|
2
8
|
.v-combobox .v-field .v-text-field__suffix,
|
|
3
9
|
.v-combobox .v-field .v-field__input, .v-combobox .v-field.v-field {
|
|
@@ -44,12 +50,6 @@
|
|
|
44
50
|
.v-combobox__selection:first-child {
|
|
45
51
|
margin-inline-start: 0;
|
|
46
52
|
}
|
|
47
|
-
.v-combobox--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
|
|
48
|
-
.v-combobox--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
|
|
49
|
-
.v-combobox--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
|
|
50
|
-
.v-combobox--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
|
|
51
|
-
top: 0px;
|
|
52
|
-
}
|
|
53
53
|
.v-combobox--selecting-index .v-combobox__selection {
|
|
54
54
|
opacity: var(--v-medium-emphasis-opacity);
|
|
55
55
|
}
|
|
@@ -1680,6 +1680,19 @@ html.v-overlay-scroll-blocked {
|
|
|
1680
1680
|
height: 100%;
|
|
1681
1681
|
}
|
|
1682
1682
|
|
|
1683
|
+
.v-pagination .v-btn {
|
|
1684
|
+
width: auto;
|
|
1685
|
+
padding-inline: 5px;
|
|
1686
|
+
}
|
|
1687
|
+
.v-pagination .v-btn.v-btn--density-default {
|
|
1688
|
+
min-width: calc(var(--v-btn-height) + 12px);
|
|
1689
|
+
}
|
|
1690
|
+
.v-pagination .v-btn.v-btn--density-comfortable {
|
|
1691
|
+
min-width: calc(var(--v-btn-height) + 0px);
|
|
1692
|
+
}
|
|
1693
|
+
.v-pagination .v-btn.v-btn--density-compact {
|
|
1694
|
+
min-width: calc(var(--v-btn-height) + -8px);
|
|
1695
|
+
}
|
|
1683
1696
|
.v-pagination .v-btn {
|
|
1684
1697
|
border-radius: 4px;
|
|
1685
1698
|
}
|
|
@@ -1689,6 +1702,18 @@ html.v-overlay-scroll-blocked {
|
|
|
1689
1702
|
.v-pagination .v-btn__overlay {
|
|
1690
1703
|
transition: none;
|
|
1691
1704
|
}
|
|
1705
|
+
.v-pagination__prev .v-btn, .v-pagination__next .v-btn {
|
|
1706
|
+
padding-inline: 0;
|
|
1707
|
+
}
|
|
1708
|
+
.v-pagination__prev .v-btn.v-btn--density-default, .v-pagination__next .v-btn.v-btn--density-default {
|
|
1709
|
+
width: calc(var(--v-btn-height) + 12px);
|
|
1710
|
+
}
|
|
1711
|
+
.v-pagination__prev .v-btn.v-btn--density-comfortable, .v-pagination__next .v-btn.v-btn--density-comfortable {
|
|
1712
|
+
width: calc(var(--v-btn-height) + 0px);
|
|
1713
|
+
}
|
|
1714
|
+
.v-pagination__prev .v-btn.v-btn--density-compact, .v-pagination__next .v-btn.v-btn--density-compact {
|
|
1715
|
+
width: calc(var(--v-btn-height) + -8px);
|
|
1716
|
+
}
|
|
1692
1717
|
.v-pagination .v-pagination__item--is-active .v-btn__overlay {
|
|
1693
1718
|
opacity: var(--v-border-opacity);
|
|
1694
1719
|
}
|
|
@@ -23474,6 +23499,12 @@ html.overflow-y-hidden {
|
|
|
23474
23499
|
transition: opacity 0.2s ease-in-out;
|
|
23475
23500
|
}
|
|
23476
23501
|
|
|
23502
|
+
.v-autocomplete--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
|
|
23503
|
+
.v-autocomplete--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
|
|
23504
|
+
.v-autocomplete--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
|
|
23505
|
+
.v-autocomplete--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
|
|
23506
|
+
top: 0px;
|
|
23507
|
+
}
|
|
23477
23508
|
.v-autocomplete .v-field .v-text-field__prefix,
|
|
23478
23509
|
.v-autocomplete .v-field .v-text-field__suffix,
|
|
23479
23510
|
.v-autocomplete .v-field .v-field__input, .v-autocomplete .v-field.v-field {
|
|
@@ -23520,12 +23551,6 @@ html.overflow-y-hidden {
|
|
|
23520
23551
|
.v-autocomplete__selection:first-child {
|
|
23521
23552
|
margin-inline-start: 0;
|
|
23522
23553
|
}
|
|
23523
|
-
.v-autocomplete--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
|
|
23524
|
-
.v-autocomplete--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
|
|
23525
|
-
.v-autocomplete--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
|
|
23526
|
-
.v-autocomplete--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
|
|
23527
|
-
top: 0px;
|
|
23528
|
-
}
|
|
23529
23554
|
.v-autocomplete--selecting-index .v-autocomplete__selection {
|
|
23530
23555
|
opacity: var(--v-medium-emphasis-opacity);
|
|
23531
23556
|
}
|
package/dist/bundles/omnia.fx.ux.vuetify.number.input_0fb99ef6-4899-4100-9e95-e33934baf823.css
CHANGED
|
@@ -4,17 +4,28 @@
|
|
|
4
4
|
.v-number-input input[type=number]::-webkit-outer-spin-button, .v-number-input input[type=number]::-webkit-inner-spin-button {
|
|
5
5
|
-webkit-appearance: none;
|
|
6
6
|
}
|
|
7
|
-
.v-number-input .v-field:
|
|
7
|
+
.v-number-input .v-field:has(.v-field__prepend-inner > .v-number-input__control:first-child) {
|
|
8
8
|
padding-inline-start: 0;
|
|
9
9
|
}
|
|
10
|
-
.v-number-input .v-field:
|
|
10
|
+
.v-number-input .v-field:has(.v-field__append-inner > .v-number-input__control:last-child) {
|
|
11
11
|
padding-inline-end: 0;
|
|
12
12
|
}
|
|
13
13
|
.v-number-input .v-field__prepend-inner:has(.v-number-input__control) > .v-icon {
|
|
14
|
-
margin-inline-end:
|
|
14
|
+
margin-inline-end: 4px;
|
|
15
|
+
}
|
|
16
|
+
.v-number-input .v-field__prepend-inner:has(.v-number-input__control) > hr + .v-icon,
|
|
17
|
+
.v-number-input .v-field__prepend-inner:has(.v-number-input__control) > .v-number-input__control + .v-icon {
|
|
18
|
+
margin-inline: 8px 0;
|
|
15
19
|
}
|
|
16
20
|
.v-number-input .v-field__append-inner:has(.v-number-input__control) > .v-icon {
|
|
17
|
-
margin-inline-start:
|
|
21
|
+
margin-inline-start: 4px;
|
|
22
|
+
}
|
|
23
|
+
.v-number-input .v-field__append-inner:has(.v-number-input__control) > .v-icon:has(+ hr),
|
|
24
|
+
.v-number-input .v-field__append-inner:has(.v-number-input__control) > .v-icon:has(+ .v-number-input__control) {
|
|
25
|
+
margin-inline: 0 8px;
|
|
26
|
+
}
|
|
27
|
+
.v-number-input .v-field__clearable:has(+ .v-field__append-inner > hr:first-child) {
|
|
28
|
+
margin-inline-end: 8px;
|
|
18
29
|
}
|
|
19
30
|
.v-number-input--inset .v-divider {
|
|
20
31
|
height: 55%;
|
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
.v-select--chips.v-input--density-compact .v-field--variant-solo .v-label.v-field-label--floating,
|
|
2
|
+
.v-select--chips.v-input--density-compact .v-field--variant-solo-inverted .v-label.v-field-label--floating,
|
|
3
|
+
.v-select--chips.v-input--density-compact .v-field--variant-filled .v-label.v-field-label--floating,
|
|
4
|
+
.v-select--chips.v-input--density-compact .v-field--variant-solo-filled .v-label.v-field-label--floating {
|
|
5
|
+
top: 0px;
|
|
6
|
+
}
|
|
1
7
|
.v-select .v-field .v-text-field__prefix,
|
|
2
8
|
.v-select .v-field .v-text-field__suffix,
|
|
3
9
|
.v-select .v-field .v-field__input, .v-select .v-field.v-field {
|