@omnia/runtime 8.0.542-dev → 8.0.543-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.alert_c1e2b0f0-2f26-4ae9-b703-1347533c267d.css +12 -0
- package/dist/bundles/omnia.fx.ux.vuetify.combobox_0edad567-65c0-433f-a871-a59e460d70f0.css +2 -1
- package/dist/bundles/omnia.fx.ux.vuetify.core_8769dc42-712d-4ce2-8d32-4b8604b92ae6.css +1185 -806
- package/dist/bundles/omnia.fx.ux.vuetify.select_6d5f3edc-0fc0-4765-804b-b6583381f25d.css +2 -1
- package/dist/bundles/omnia.fx.ux.vuetify.snackbar_1f46e84f-1223-4080-ab9f-40d1489b71e6.css +10 -0
- package/dist/bundles/omnia.fx.ux.vuetify.treeview_6d7b7ee9-0839-49fd-885e-513b17b6b023.css +17 -8
- package/dist/bundles/omnia.vuetify.colorpicker_4f861c0d-75fb-49ce-913e-17cbafad5ed2.css +24 -24
- package/dist/manifests/bb000000-0000-bbbb-0000-0000000000bb_docs_manifests.json +1 -1
- package/dist/manifests/bb000000-0000-bbbb-0000-0000000000bb_public_manifests.json +1 -1
- package/package.json +5 -5
|
@@ -36,9 +36,10 @@
|
|
|
36
36
|
.v-select__content {
|
|
37
37
|
box-shadow: 0px 2px 4px -1px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 4px 5px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 1px 10px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
|
|
38
38
|
}
|
|
39
|
-
.v-select__content {
|
|
39
|
+
.v-menu > .v-overlay__content.v-select__content {
|
|
40
40
|
border-radius: 4px;
|
|
41
41
|
}
|
|
42
|
+
|
|
42
43
|
.v-select__selection {
|
|
43
44
|
display: inline-flex;
|
|
44
45
|
align-items: center;
|
|
@@ -63,6 +63,11 @@
|
|
|
63
63
|
position: absolute;
|
|
64
64
|
}
|
|
65
65
|
|
|
66
|
+
@media (forced-colors: active) {
|
|
67
|
+
.v-snackbar__wrapper {
|
|
68
|
+
border: thick solid;
|
|
69
|
+
}
|
|
70
|
+
}
|
|
66
71
|
.v-snackbar__content {
|
|
67
72
|
flex-grow: 1;
|
|
68
73
|
font-size: 0.875rem;
|
|
@@ -129,6 +134,11 @@
|
|
|
129
134
|
.v-snackbar-transition-enter-active {
|
|
130
135
|
transition-property: opacity, transform;
|
|
131
136
|
}
|
|
137
|
+
@media (prefers-reduced-motion: reduce) {
|
|
138
|
+
.v-snackbar-transition-enter-active {
|
|
139
|
+
transition-property: opacity;
|
|
140
|
+
}
|
|
141
|
+
}
|
|
132
142
|
.v-snackbar-transition-enter-from {
|
|
133
143
|
opacity: 0;
|
|
134
144
|
transform: scale(0.8);
|
|
@@ -29,13 +29,17 @@
|
|
|
29
29
|
.v-treeview .v-list-item--slim > .v-list-item__prepend:not(:has(.v-list-item-action)) > .v-icon {
|
|
30
30
|
margin-inline-start: -6px;
|
|
31
31
|
}
|
|
32
|
+
.v-treeview:has(.v-treeview-indent-lines) .v-list-item-action:first-child > .v-selection-control,
|
|
33
|
+
.v-treeview:has(.v-treeview-indent-lines) .v-treeview-indent-lines + .v-list-item-action > .v-selection-control {
|
|
34
|
+
margin-inline: min(0px, -1 * (var(--v-selection-control-size) - 28px) / 2);
|
|
35
|
+
}
|
|
32
36
|
|
|
33
37
|
.v-treeview-indent-lines {
|
|
34
38
|
position: absolute;
|
|
35
|
-
|
|
39
|
+
inset-inline-start: 0;
|
|
36
40
|
height: 100%;
|
|
37
41
|
display: grid;
|
|
38
|
-
padding-
|
|
42
|
+
padding-inline-start: 8px;
|
|
39
43
|
padding-block: 0;
|
|
40
44
|
grid-template-columns: repeat(var(--v-indent-parts, 1), var(--prepend-width));
|
|
41
45
|
opacity: 0.4;
|
|
@@ -46,7 +50,7 @@
|
|
|
46
50
|
border: 0px solid rgb(var(--v-theme-on-surface));
|
|
47
51
|
}
|
|
48
52
|
.v-treeview-indent-line--leaf, .v-treeview-indent-line--line {
|
|
49
|
-
border-
|
|
53
|
+
border-inline-start-width: 1px;
|
|
50
54
|
height: 100%;
|
|
51
55
|
width: calc(50% + 1px);
|
|
52
56
|
justify-self: end;
|
|
@@ -67,18 +71,23 @@
|
|
|
67
71
|
.v-treeview-indent-line--leaf-link {
|
|
68
72
|
border-bottom-width: 1px;
|
|
69
73
|
height: calc(50% + 1px);
|
|
70
|
-
margin-
|
|
71
|
-
margin-
|
|
74
|
+
margin-inline-start: 0;
|
|
75
|
+
margin-inline-end: 6px;
|
|
72
76
|
}
|
|
73
77
|
.v-treeview-indent-line--last-leaf {
|
|
74
|
-
border-
|
|
78
|
+
border-inline-start-width: 1px;
|
|
75
79
|
border-bottom-width: 1px;
|
|
76
80
|
height: calc(50% + 1px);
|
|
77
|
-
margin-
|
|
81
|
+
margin-inline-start: calc(50% - 1px);
|
|
78
82
|
border-bottom-left-radius: 4px;
|
|
79
83
|
}
|
|
84
|
+
.v-locale--is-rtl.v-treeview-indent-line--last-leaf, .v-locale--is-rtl .v-treeview-indent-line--last-leaf {
|
|
85
|
+
border-bottom-left-radius: 0;
|
|
86
|
+
border-bottom-right-radius: 4px;
|
|
87
|
+
}
|
|
88
|
+
|
|
80
89
|
.v-treeview-indent-line--last-leaf:last-child {
|
|
81
|
-
margin-
|
|
90
|
+
margin-inline-end: 4px;
|
|
82
91
|
}
|
|
83
92
|
|
|
84
93
|
.v-treeview-group.v-list-group {
|
|
@@ -23,30 +23,6 @@
|
|
|
23
23
|
.v-color-picker--flat .v-color-picker__track:not(.v-input--is-disabled) .v-slider__thumb {
|
|
24
24
|
box-shadow: 0px 0px 0px 0px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 0px 0px 0px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 0px 0px 0px var(--v-shadow-key-ambient-opacity, rgba(0, 0, 0, 0.12));
|
|
25
25
|
}
|
|
26
|
-
.v-color-picker-canvas {
|
|
27
|
-
display: flex;
|
|
28
|
-
position: relative;
|
|
29
|
-
overflow: hidden;
|
|
30
|
-
contain: content;
|
|
31
|
-
touch-action: none;
|
|
32
|
-
width: 100%;
|
|
33
|
-
}
|
|
34
|
-
.v-color-picker-canvas__dot {
|
|
35
|
-
position: absolute;
|
|
36
|
-
top: 0;
|
|
37
|
-
left: 0;
|
|
38
|
-
width: 15px;
|
|
39
|
-
height: 15px;
|
|
40
|
-
background: transparent;
|
|
41
|
-
border-radius: 50%;
|
|
42
|
-
box-shadow: 0px 0px 0px 1.5px rgb(255, 255, 255), inset 0px 0px 1px 1.5px rgba(0, 0, 0, 0.3);
|
|
43
|
-
}
|
|
44
|
-
.v-color-picker-canvas__dot--disabled {
|
|
45
|
-
box-shadow: 0px 0px 0px 1.5px rgba(255, 255, 255, 0.7), inset 0px 0px 1px 1.5px rgba(0, 0, 0, 0.3);
|
|
46
|
-
}
|
|
47
|
-
.v-color-picker-canvas:hover .v-color-picker-canvas__dot {
|
|
48
|
-
will-change: transform;
|
|
49
|
-
}
|
|
50
26
|
.v-color-picker-preview__alpha .v-slider-track__background {
|
|
51
27
|
background-color: transparent !important;
|
|
52
28
|
}
|
|
@@ -118,6 +94,30 @@
|
|
|
118
94
|
position: relative;
|
|
119
95
|
margin-right: 12px;
|
|
120
96
|
}
|
|
97
|
+
.v-color-picker-canvas {
|
|
98
|
+
display: flex;
|
|
99
|
+
position: relative;
|
|
100
|
+
overflow: hidden;
|
|
101
|
+
contain: content;
|
|
102
|
+
touch-action: none;
|
|
103
|
+
width: 100%;
|
|
104
|
+
}
|
|
105
|
+
.v-color-picker-canvas__dot {
|
|
106
|
+
position: absolute;
|
|
107
|
+
top: 0;
|
|
108
|
+
left: 0;
|
|
109
|
+
width: 15px;
|
|
110
|
+
height: 15px;
|
|
111
|
+
background: transparent;
|
|
112
|
+
border-radius: 50%;
|
|
113
|
+
box-shadow: 0px 0px 0px 1.5px rgb(255, 255, 255), inset 0px 0px 1px 1.5px rgba(0, 0, 0, 0.3);
|
|
114
|
+
}
|
|
115
|
+
.v-color-picker-canvas__dot--disabled {
|
|
116
|
+
box-shadow: 0px 0px 0px 1.5px rgba(255, 255, 255, 0.7), inset 0px 0px 1px 1.5px rgba(0, 0, 0, 0.3);
|
|
117
|
+
}
|
|
118
|
+
.v-color-picker-canvas:hover .v-color-picker-canvas__dot {
|
|
119
|
+
will-change: transform;
|
|
120
|
+
}
|
|
121
121
|
.v-color-picker-edit {
|
|
122
122
|
display: flex;
|
|
123
123
|
margin-top: 24px;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"target":8,"omniaServiceId":"bb000000-0000-bbbb-0000-0000000000bb","resource":[{"manifestType":"resource","resourceId":"1ca62642-45d8-47fd-b6d8-818463a8b348","resourceName":"omnia.fx.docs.api","version":{"js":"c81eb236be52574b6c2f4696d33a3237"},"availableBundleTargetTypes":["js"],"dependingOnManifests":[{"resourceId":"a5a89056-b5f5-475d-8518-a1f55090379d"}],"api":["fx.docs.registrations"]},{"manifestType":"resource","resourceId":"4b44029a-a988-4175-b503-be151c5ccc6e","resourceName":"omnia.fx.docs.components.registraions","version":{"js":"
|
|
1
|
+
{"target":8,"omniaServiceId":"bb000000-0000-bbbb-0000-0000000000bb","resource":[{"manifestType":"resource","resourceId":"1ca62642-45d8-47fd-b6d8-818463a8b348","resourceName":"omnia.fx.docs.api","version":{"js":"c81eb236be52574b6c2f4696d33a3237"},"availableBundleTargetTypes":["js"],"dependingOnManifests":[{"resourceId":"a5a89056-b5f5-475d-8518-a1f55090379d"}],"api":["fx.docs.registrations"]},{"manifestType":"resource","resourceId":"4b44029a-a988-4175-b503-be151c5ccc6e","resourceName":"omnia.fx.docs.components.registraions","version":{"js":"863e26a6715dd4c82c94ef7488d4285c"},"availableBundleTargetTypes":["js"],"dependingOnManifests":[{"resourceId":"a5a89056-b5f5-475d-8518-a1f55090379d"}],"extendApi":["fx.docs.registrations"]}]}
|