@omnia/runtime 8.0.20-vnext → 8.0.22-vnext
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/omfx.monacoeditor_dd2a06c1-85a6-4fd9-a542-1cc9d34ed98e.css +2004 -1372
- package/dist/bundles/omnia.fx.ux.vuetify.common_798d6494-70cc-47eb-9054-30b047beab19.css +22 -7
- package/dist/bundles/omnia.fx.ux.vuetify.datatable_188aee53-149a-4bc0-9039-59ffd918df2c.css +12 -127
- package/dist/bundles/omnia.fx.ux.vuetify.dialog_0bf6198c-32c6-4cec-90bd-7988a979c9b0.css +16 -16
- package/dist/bundles/omnia.fx.ux.vuetify.shared_8769dc42-712d-4ce2-8d32-4b8604b92ae6.css +277 -48
- package/dist/bundles/omnia.fx.ux.vuetify.switch_81d8f551-1b9f-4f75-90c3-2fe5f25e4015.css +4 -0
- package/dist/bundles/omnia.libs.prismjs_200989af-08cf-4adc-a0bf-13e3109ca137.css +219 -0
- package/dist/bundles/omnia.vendor.prod_aaf89b2d-5ea8-4b79-946a-8c1e89f713a3.css +26273 -0
- package/dist/manifests/bb000000-0000-bbbb-0000-0000000000bb_manifests.json +1 -1
- package/package.json +5 -5
- package/task.ts +0 -4
|
@@ -98,7 +98,7 @@
|
|
|
98
98
|
width: 100%;
|
|
99
99
|
}
|
|
100
100
|
|
|
101
|
-
.v-tooltip .v-overlay__content {
|
|
101
|
+
.v-tooltip > .v-overlay__content {
|
|
102
102
|
background: rgba(var(--v-theme-surface-variant), 0.7);
|
|
103
103
|
color: rgb(var(--v-theme-on-surface-variant));
|
|
104
104
|
border-radius: 4px;
|
|
@@ -112,11 +112,11 @@
|
|
|
112
112
|
pointer-events: none;
|
|
113
113
|
transition-property: opacity, transform;
|
|
114
114
|
}
|
|
115
|
-
.v-tooltip .v-overlay__content[class*=enter-active] {
|
|
115
|
+
.v-tooltip > .v-overlay__content[class*=enter-active] {
|
|
116
116
|
transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
|
|
117
117
|
transition-duration: 150ms;
|
|
118
118
|
}
|
|
119
|
-
.v-tooltip .v-overlay__content[class*=leave-active] {
|
|
119
|
+
.v-tooltip > .v-overlay__content[class*=leave-active] {
|
|
120
120
|
transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
|
|
121
121
|
transition-duration: 75ms;
|
|
122
122
|
}
|
|
@@ -471,6 +471,10 @@
|
|
|
471
471
|
padding-top: 16px;
|
|
472
472
|
padding-bottom: 16px;
|
|
473
473
|
}
|
|
474
|
+
.v-list-item--density-default.v-list-item--three-line .v-list-item__prepend,
|
|
475
|
+
.v-list-item--density-default.v-list-item--three-line .v-list-item__append {
|
|
476
|
+
padding-top: 8px;
|
|
477
|
+
}
|
|
474
478
|
.v-list-item--density-default:not(.v-list-item--nav).v-list-item--one-line {
|
|
475
479
|
padding-inline-start: 16px;
|
|
476
480
|
padding-inline-end: 16px;
|
|
@@ -500,6 +504,10 @@
|
|
|
500
504
|
padding-top: 12px;
|
|
501
505
|
padding-bottom: 12px;
|
|
502
506
|
}
|
|
507
|
+
.v-list-item--density-comfortable.v-list-item--three-line .v-list-item__prepend,
|
|
508
|
+
.v-list-item--density-comfortable.v-list-item--three-line .v-list-item__append {
|
|
509
|
+
padding-top: 6px;
|
|
510
|
+
}
|
|
503
511
|
.v-list-item--density-comfortable:not(.v-list-item--nav).v-list-item--one-line {
|
|
504
512
|
padding-inline-start: 16px;
|
|
505
513
|
padding-inline-end: 16px;
|
|
@@ -529,6 +537,10 @@
|
|
|
529
537
|
padding-top: 8px;
|
|
530
538
|
padding-bottom: 8px;
|
|
531
539
|
}
|
|
540
|
+
.v-list-item--density-compact.v-list-item--three-line .v-list-item__prepend,
|
|
541
|
+
.v-list-item--density-compact.v-list-item--three-line .v-list-item__append {
|
|
542
|
+
padding-top: 4px;
|
|
543
|
+
}
|
|
532
544
|
.v-list-item--density-compact:not(.v-list-item--nav).v-list-item--one-line {
|
|
533
545
|
padding-inline-start: 16px;
|
|
534
546
|
padding-inline-end: 16px;
|
|
@@ -604,14 +616,14 @@
|
|
|
604
616
|
opacity: 0;
|
|
605
617
|
}
|
|
606
618
|
|
|
607
|
-
.v-menu .v-overlay__content {
|
|
619
|
+
.v-menu > .v-overlay__content {
|
|
608
620
|
display: flex;
|
|
609
621
|
flex-direction: column;
|
|
610
622
|
border-radius: 4px;
|
|
611
623
|
}
|
|
612
|
-
.v-menu .v-overlay__content > .v-card,
|
|
613
|
-
.v-menu .v-overlay__content > .v-sheet,
|
|
614
|
-
.v-menu .v-overlay__content > .v-list {
|
|
624
|
+
.v-menu > .v-overlay__content > .v-card,
|
|
625
|
+
.v-menu > .v-overlay__content > .v-sheet,
|
|
626
|
+
.v-menu > .v-overlay__content > .v-list {
|
|
615
627
|
background: rgb(var(--v-theme-surface));
|
|
616
628
|
border-radius: inherit;
|
|
617
629
|
overflow: auto;
|
|
@@ -810,6 +822,7 @@
|
|
|
810
822
|
.v-toolbar__prepend,
|
|
811
823
|
.v-toolbar__append {
|
|
812
824
|
align-items: center;
|
|
825
|
+
align-self: stretch;
|
|
813
826
|
display: flex;
|
|
814
827
|
}
|
|
815
828
|
|
|
@@ -852,6 +865,7 @@
|
|
|
852
865
|
.v-toolbar-items {
|
|
853
866
|
display: flex;
|
|
854
867
|
height: inherit;
|
|
868
|
+
align-self: stretch;
|
|
855
869
|
}
|
|
856
870
|
.v-toolbar-items > .v-btn {
|
|
857
871
|
border-radius: 0;
|
|
@@ -1551,6 +1565,7 @@
|
|
|
1551
1565
|
|
|
1552
1566
|
.v-badge__badge {
|
|
1553
1567
|
align-items: center;
|
|
1568
|
+
display: inline-flex;
|
|
1554
1569
|
border-radius: 10px;
|
|
1555
1570
|
font-size: 0.75rem;
|
|
1556
1571
|
font-weight: 500;
|
|
@@ -33,6 +33,18 @@
|
|
|
33
33
|
.v-data-table .v-table__wrapper > table tbody > tr th.v-data-table-column--align-end .v-data-table-header__content {
|
|
34
34
|
flex-direction: row-reverse;
|
|
35
35
|
}
|
|
36
|
+
.v-data-table .v-table__wrapper > table > thead > tr > td.v-data-table-column--align-center,
|
|
37
|
+
.v-data-table .v-table__wrapper > table > thead > tr th.v-data-table-column--align-center,
|
|
38
|
+
.v-data-table .v-table__wrapper > table tbody > tr > td.v-data-table-column--align-center,
|
|
39
|
+
.v-data-table .v-table__wrapper > table tbody > tr th.v-data-table-column--align-center {
|
|
40
|
+
text-align: center;
|
|
41
|
+
}
|
|
42
|
+
.v-data-table .v-table__wrapper > table > thead > tr > td.v-data-table-column--align-center .v-data-table-header__content,
|
|
43
|
+
.v-data-table .v-table__wrapper > table > thead > tr th.v-data-table-column--align-center .v-data-table-header__content,
|
|
44
|
+
.v-data-table .v-table__wrapper > table tbody > tr > td.v-data-table-column--align-center .v-data-table-header__content,
|
|
45
|
+
.v-data-table .v-table__wrapper > table tbody > tr th.v-data-table-column--align-center .v-data-table-header__content {
|
|
46
|
+
justify-content: center;
|
|
47
|
+
}
|
|
36
48
|
.v-data-table .v-table__wrapper > table > thead > tr > td.v-data-table-column--no-padding,
|
|
37
49
|
.v-data-table .v-table__wrapper > table > thead > tr th.v-data-table-column--no-padding,
|
|
38
50
|
.v-data-table .v-table__wrapper > table tbody > tr > td.v-data-table-column--no-padding,
|
|
@@ -120,133 +132,6 @@
|
|
|
120
132
|
.v-data-table-rows-no-data {
|
|
121
133
|
text-align: center;
|
|
122
134
|
}
|
|
123
|
-
.v-table {
|
|
124
|
-
background: rgb(var(--v-theme-surface));
|
|
125
|
-
color: rgba(var(--v-theme-on-surface), var(--v-high-emphasis-opacity));
|
|
126
|
-
}
|
|
127
|
-
.v-table .v-table-divider {
|
|
128
|
-
border-right: thin solid rgba(var(--v-border-color), var(--v-border-opacity));
|
|
129
|
-
}
|
|
130
|
-
.v-table .v-table__wrapper > table > thead > tr > th {
|
|
131
|
-
border-bottom: thin solid rgba(var(--v-border-color), var(--v-border-opacity));
|
|
132
|
-
color: rgba(var(--v-theme-on-surface), var(--v-medium-emphasis-opacity));
|
|
133
|
-
}
|
|
134
|
-
.v-table .v-table__wrapper > table > tbody > tr:not(:last-child) > td,
|
|
135
|
-
.v-table .v-table__wrapper > table > tbody > tr:not(:last-child) > th {
|
|
136
|
-
border-bottom: thin solid rgba(var(--v-border-color), var(--v-border-opacity));
|
|
137
|
-
}
|
|
138
|
-
.v-table .v-table__wrapper > table > tfoot > tr > td,
|
|
139
|
-
.v-table .v-table__wrapper > table > tfoot > tr > th {
|
|
140
|
-
border-top: thin solid rgba(var(--v-border-color), var(--v-border-opacity));
|
|
141
|
-
}
|
|
142
|
-
.v-table.v-table--hover > .v-table__wrapper > table > tbody > tr:hover {
|
|
143
|
-
background: rgba(var(--v-border-color), var(--v-hover-opacity));
|
|
144
|
-
}
|
|
145
|
-
.v-table.v-table--fixed-header > .v-table__wrapper > table > thead > tr > th {
|
|
146
|
-
background: rgb(var(--v-theme-surface));
|
|
147
|
-
box-shadow: inset 0 -1px 0 rgba(var(--v-border-color), var(--v-border-opacity));
|
|
148
|
-
z-index: 1;
|
|
149
|
-
}
|
|
150
|
-
.v-table.v-table--fixed-footer > tfoot > tr > th,
|
|
151
|
-
.v-table.v-table--fixed-footer > tfoot > tr > td {
|
|
152
|
-
background: rgb(var(--v-theme-surface));
|
|
153
|
-
box-shadow: inset 0 1px 0 rgba(var(--v-border-color), var(--v-border-opacity));
|
|
154
|
-
}
|
|
155
|
-
|
|
156
|
-
.v-table {
|
|
157
|
-
--v-table-header-height: 56px;
|
|
158
|
-
border-radius: inherit;
|
|
159
|
-
line-height: 1.5;
|
|
160
|
-
max-width: 100%;
|
|
161
|
-
}
|
|
162
|
-
.v-table > .v-table__wrapper > table {
|
|
163
|
-
width: 100%;
|
|
164
|
-
border-spacing: 0;
|
|
165
|
-
}
|
|
166
|
-
.v-table > .v-table__wrapper > table > tbody > tr > td,
|
|
167
|
-
.v-table > .v-table__wrapper > table > tbody > tr > th,
|
|
168
|
-
.v-table > .v-table__wrapper > table > thead > tr > td,
|
|
169
|
-
.v-table > .v-table__wrapper > table > thead > tr > th,
|
|
170
|
-
.v-table > .v-table__wrapper > table > tfoot > tr > td,
|
|
171
|
-
.v-table > .v-table__wrapper > table > tfoot > tr > th {
|
|
172
|
-
padding: 0 16px;
|
|
173
|
-
transition: height cubic-bezier(0.4, 0, 0.2, 1);
|
|
174
|
-
}
|
|
175
|
-
.v-table > .v-table__wrapper > table > tbody > tr > th,
|
|
176
|
-
.v-table > .v-table__wrapper > table > thead > tr > th,
|
|
177
|
-
.v-table > .v-table__wrapper > table > tfoot > tr > th {
|
|
178
|
-
font-weight: 500;
|
|
179
|
-
user-select: none;
|
|
180
|
-
text-align: start;
|
|
181
|
-
}
|
|
182
|
-
.v-table--density-default > .v-table__wrapper > table > tbody > tr > th,
|
|
183
|
-
.v-table--density-default > .v-table__wrapper > table > thead > tr > th,
|
|
184
|
-
.v-table--density-default > .v-table__wrapper > table > tfoot > tr > th {
|
|
185
|
-
height: calc(var(--v-table-header-height) + 0px);
|
|
186
|
-
}
|
|
187
|
-
.v-table--density-default > .v-table__wrapper > table > tbody > tr > td,
|
|
188
|
-
.v-table--density-default > .v-table__wrapper > table > thead > tr > td,
|
|
189
|
-
.v-table--density-default > .v-table__wrapper > table > tfoot > tr > td {
|
|
190
|
-
height: calc(var(--v-table-row-height, 52px) + 0px);
|
|
191
|
-
}
|
|
192
|
-
|
|
193
|
-
.v-table--density-comfortable > .v-table__wrapper > table > tbody > tr > th,
|
|
194
|
-
.v-table--density-comfortable > .v-table__wrapper > table > thead > tr > th,
|
|
195
|
-
.v-table--density-comfortable > .v-table__wrapper > table > tfoot > tr > th {
|
|
196
|
-
height: calc(var(--v-table-header-height) - 8px);
|
|
197
|
-
}
|
|
198
|
-
.v-table--density-comfortable > .v-table__wrapper > table > tbody > tr > td,
|
|
199
|
-
.v-table--density-comfortable > .v-table__wrapper > table > thead > tr > td,
|
|
200
|
-
.v-table--density-comfortable > .v-table__wrapper > table > tfoot > tr > td {
|
|
201
|
-
height: calc(var(--v-table-row-height, 52px) - 8px);
|
|
202
|
-
}
|
|
203
|
-
|
|
204
|
-
.v-table--density-compact > .v-table__wrapper > table > tbody > tr > th,
|
|
205
|
-
.v-table--density-compact > .v-table__wrapper > table > thead > tr > th,
|
|
206
|
-
.v-table--density-compact > .v-table__wrapper > table > tfoot > tr > th {
|
|
207
|
-
height: calc(var(--v-table-header-height) - 16px);
|
|
208
|
-
}
|
|
209
|
-
.v-table--density-compact > .v-table__wrapper > table > tbody > tr > td,
|
|
210
|
-
.v-table--density-compact > .v-table__wrapper > table > thead > tr > td,
|
|
211
|
-
.v-table--density-compact > .v-table__wrapper > table > tfoot > tr > td {
|
|
212
|
-
height: calc(var(--v-table-row-height, 52px) - 16px);
|
|
213
|
-
}
|
|
214
|
-
|
|
215
|
-
.v-table__wrapper {
|
|
216
|
-
border-radius: inherit;
|
|
217
|
-
overflow: auto;
|
|
218
|
-
}
|
|
219
|
-
|
|
220
|
-
.v-table--has-top > .v-table__wrapper > table > tbody > tr:first-child:hover > td:first-child {
|
|
221
|
-
border-top-left-radius: 0;
|
|
222
|
-
}
|
|
223
|
-
.v-table--has-top > .v-table__wrapper > table > tbody > tr:first-child:hover > td:last-child {
|
|
224
|
-
border-top-right-radius: 0;
|
|
225
|
-
}
|
|
226
|
-
|
|
227
|
-
.v-table--has-bottom > .v-table__wrapper > table > tbody > tr:last-child:hover > td:first-child {
|
|
228
|
-
border-bottom-left-radius: 0;
|
|
229
|
-
}
|
|
230
|
-
.v-table--has-bottom > .v-table__wrapper > table > tbody > tr:last-child:hover > td:last-child {
|
|
231
|
-
border-bottom-right-radius: 0;
|
|
232
|
-
}
|
|
233
|
-
|
|
234
|
-
.v-table--fixed-height > .v-table__wrapper {
|
|
235
|
-
overflow-y: auto;
|
|
236
|
-
}
|
|
237
|
-
|
|
238
|
-
.v-table--fixed-header > .v-table__wrapper > table > thead > tr > th {
|
|
239
|
-
border-bottom: 0px !important;
|
|
240
|
-
position: sticky;
|
|
241
|
-
top: 0;
|
|
242
|
-
}
|
|
243
|
-
|
|
244
|
-
.v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr > td,
|
|
245
|
-
.v-table--fixed-footer > .v-table__wrapper > table > tfoot > tr > th {
|
|
246
|
-
border-top: 0px !important;
|
|
247
|
-
position: sticky;
|
|
248
|
-
bottom: 0;
|
|
249
|
-
}
|
|
250
135
|
.v-data-table-footer {
|
|
251
136
|
display: flex;
|
|
252
137
|
align-items: center;
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
justify-content: center;
|
|
4
4
|
margin: auto;
|
|
5
5
|
}
|
|
6
|
-
.v-dialog .v-overlay__content {
|
|
6
|
+
.v-dialog > .v-overlay__content {
|
|
7
7
|
max-height: calc(100% - 48px);
|
|
8
8
|
width: calc(100% - 48px);
|
|
9
9
|
max-width: calc(100% - 48px);
|
|
@@ -11,24 +11,24 @@
|
|
|
11
11
|
display: flex;
|
|
12
12
|
flex-direction: column;
|
|
13
13
|
}
|
|
14
|
-
.v-dialog .v-overlay__content > .v-card,
|
|
15
|
-
.v-dialog .v-overlay__content > .v-sheet {
|
|
14
|
+
.v-dialog > .v-overlay__content > .v-card,
|
|
15
|
+
.v-dialog > .v-overlay__content > .v-sheet {
|
|
16
16
|
--v-scrollbar-offset: 0px;
|
|
17
17
|
border-radius: 4px;
|
|
18
18
|
overflow-y: auto;
|
|
19
19
|
box-shadow: 0px 11px 15px -7px var(--v-shadow-key-umbra-opacity, rgba(0, 0, 0, 0.2)), 0px 24px 38px 3px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.14)), 0px 9px 46px 8px var(--v-shadow-key-penumbra-opacity, rgba(0, 0, 0, 0.12));
|
|
20
20
|
}
|
|
21
|
-
.v-dialog .v-overlay__content > .v-card {
|
|
21
|
+
.v-dialog > .v-overlay__content > .v-card {
|
|
22
22
|
display: flex;
|
|
23
23
|
flex-direction: column;
|
|
24
24
|
}
|
|
25
|
-
.v-dialog .v-overlay__content > .v-card > .v-card-item {
|
|
25
|
+
.v-dialog > .v-overlay__content > .v-card > .v-card-item {
|
|
26
26
|
padding: 14px 24px 0;
|
|
27
27
|
}
|
|
28
|
-
.v-dialog .v-overlay__content > .v-card > .v-card-item + .v-card-text {
|
|
28
|
+
.v-dialog > .v-overlay__content > .v-card > .v-card-item + .v-card-text {
|
|
29
29
|
padding-top: 10px;
|
|
30
30
|
}
|
|
31
|
-
.v-dialog .v-overlay__content > .v-card > .v-card-text {
|
|
31
|
+
.v-dialog > .v-overlay__content > .v-card > .v-card-text {
|
|
32
32
|
font-size: inherit;
|
|
33
33
|
letter-spacing: 0.03125em;
|
|
34
34
|
line-height: inherit;
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
.v-dialog--fullscreen {
|
|
39
39
|
--v-scrollbar-offset: 0px;
|
|
40
40
|
}
|
|
41
|
-
.v-dialog--fullscreen .v-overlay__content {
|
|
41
|
+
.v-dialog--fullscreen > .v-overlay__content {
|
|
42
42
|
border-radius: 0;
|
|
43
43
|
margin: 0;
|
|
44
44
|
padding: 0;
|
|
@@ -50,27 +50,27 @@
|
|
|
50
50
|
top: 0;
|
|
51
51
|
left: 0;
|
|
52
52
|
}
|
|
53
|
-
.v-dialog--fullscreen .v-overlay__content > .v-card,
|
|
54
|
-
.v-dialog--fullscreen .v-overlay__content > .v-sheet {
|
|
53
|
+
.v-dialog--fullscreen > .v-overlay__content > .v-card,
|
|
54
|
+
.v-dialog--fullscreen > .v-overlay__content > .v-sheet {
|
|
55
55
|
min-height: 100%;
|
|
56
56
|
min-width: 100%;
|
|
57
57
|
border-radius: 0;
|
|
58
58
|
}
|
|
59
59
|
|
|
60
|
-
.v-dialog--scrollable .v-overlay__content,
|
|
61
|
-
.v-dialog--scrollable .v-overlay__content > form {
|
|
60
|
+
.v-dialog--scrollable > .v-overlay__content,
|
|
61
|
+
.v-dialog--scrollable > .v-overlay__content > form {
|
|
62
62
|
display: flex;
|
|
63
63
|
}
|
|
64
|
-
.v-dialog--scrollable .v-overlay__content > .v-card,
|
|
65
|
-
.v-dialog--scrollable .v-overlay__content > form > .v-card {
|
|
64
|
+
.v-dialog--scrollable > .v-overlay__content > .v-card,
|
|
65
|
+
.v-dialog--scrollable > .v-overlay__content > form > .v-card {
|
|
66
66
|
display: flex;
|
|
67
67
|
flex: 1 1 100%;
|
|
68
68
|
flex-direction: column;
|
|
69
69
|
max-height: 100%;
|
|
70
70
|
max-width: 100%;
|
|
71
71
|
}
|
|
72
|
-
.v-dialog--scrollable .v-overlay__content > .v-card > .v-card-text,
|
|
73
|
-
.v-dialog--scrollable .v-overlay__content > form > .v-card > .v-card-text {
|
|
72
|
+
.v-dialog--scrollable > .v-overlay__content > .v-card > .v-card-text,
|
|
73
|
+
.v-dialog--scrollable > .v-overlay__content > form > .v-card > .v-card-text {
|
|
74
74
|
backface-visibility: hidden;
|
|
75
75
|
overflow-y: auto;
|
|
76
76
|
}
|