@omnia/runtime 8.0.188-dev → 8.0.190-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.
@@ -120,6 +120,93 @@
120
120
  }
121
121
 
122
122
 
123
+ .v-tooltip > .v-overlay__content {
124
+ background: rgb(var(--v-theme-surface-variant));
125
+ color: rgb(var(--v-theme-on-surface-variant));
126
+ border-radius: 4px;
127
+ font-size: 0.875rem;
128
+ line-height: 1.6;
129
+ display: inline-block;
130
+ padding: 5px 16px;
131
+ text-transform: initial;
132
+ width: auto;
133
+ opacity: 1;
134
+ pointer-events: none;
135
+ transition-property: opacity, transform;
136
+ overflow-wrap: break-word;
137
+ }
138
+ .v-tooltip > .v-overlay__content[class*=enter-active] {
139
+ transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
140
+ transition-duration: 150ms;
141
+ }
142
+ .v-tooltip > .v-overlay__content[class*=leave-active] {
143
+ transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
144
+ transition-duration: 75ms;
145
+ }
146
+ .v-overlay-container {
147
+ contain: layout;
148
+ left: 0;
149
+ pointer-events: none;
150
+ position: absolute;
151
+ top: 0;
152
+ display: contents;
153
+ }
154
+
155
+ .v-overlay-scroll-blocked {
156
+ padding-inline-end: var(--v-scrollbar-offset);
157
+ }
158
+ .v-overlay-scroll-blocked:not(html) {
159
+ overflow-y: hidden !important;
160
+ }
161
+ html.v-overlay-scroll-blocked {
162
+ position: fixed;
163
+ top: var(--v-body-scroll-y);
164
+ left: var(--v-body-scroll-x);
165
+ width: 100%;
166
+ height: 100%;
167
+ }
168
+
169
+ .v-overlay {
170
+ border-radius: inherit;
171
+ display: flex;
172
+ left: 0;
173
+ pointer-events: none;
174
+ position: fixed;
175
+ top: 0;
176
+ bottom: 0;
177
+ right: 0;
178
+ }
179
+
180
+ .v-overlay__content {
181
+ outline: none;
182
+ position: absolute;
183
+ pointer-events: auto;
184
+ contain: layout;
185
+ }
186
+
187
+ .v-overlay__scrim {
188
+ pointer-events: auto;
189
+ background: rgb(var(--v-theme-on-surface));
190
+ border-radius: inherit;
191
+ bottom: 0;
192
+ left: 0;
193
+ opacity: var(--v-overlay-opacity, 0.32);
194
+ position: fixed;
195
+ right: 0;
196
+ top: 0;
197
+ }
198
+
199
+ .v-overlay--absolute {
200
+ position: absolute;
201
+ }
202
+
203
+ .v-overlay--contained .v-overlay__scrim {
204
+ position: absolute;
205
+ }
206
+
207
+ .v-overlay--scroll-blocked {
208
+ padding-inline-end: var(--v-scrollbar-offset);
209
+ }
123
210
  .v-fab {
124
211
  align-items: center;
125
212
  display: inline-flex;
@@ -500,6 +587,9 @@
500
587
  .v-btn--slim {
501
588
  padding: 0 8px;
502
589
  }
590
+ .v-btn--readonly {
591
+ pointer-events: none;
592
+ }
503
593
  .v-btn--rounded {
504
594
  border-radius: 24px;
505
595
  }
@@ -679,13 +769,15 @@
679
769
  border-radius: 9999px;
680
770
  }
681
771
 
682
- .v-progress-linear__background {
772
+ .v-progress-linear__background,
773
+ .v-progress-linear__buffer {
683
774
  background: currentColor;
684
775
  bottom: 0;
685
776
  left: 0;
686
777
  opacity: var(--v-border-opacity);
687
778
  position: absolute;
688
779
  top: 0;
780
+ width: 100%;
689
781
  transition-property: width, left, right;
690
782
  transition: inherit;
691
783
  }
@@ -1399,6 +1491,26 @@
1399
1491
  margin-top: 8px;
1400
1492
  max-height: calc(100% - 16px);
1401
1493
  }
1494
+
1495
+ .v-divider__content {
1496
+ padding: 0 16px;
1497
+ }
1498
+ .v-divider__wrapper--vertical .v-divider__content {
1499
+ padding: 4px 0;
1500
+ }
1501
+
1502
+ .v-divider__wrapper {
1503
+ display: flex;
1504
+ align-items: center;
1505
+ justify-content: center;
1506
+ }
1507
+ .v-divider__wrapper--vertical {
1508
+ flex-direction: column;
1509
+ height: 100%;
1510
+ }
1511
+ .v-divider__wrapper--vertical .v-divider {
1512
+ margin: 0 auto;
1513
+ }
1402
1514
  .v-layout {
1403
1515
  --v-scrollbar-offset: 0px;
1404
1516
  display: flex;
@@ -2131,6 +2243,7 @@
2131
2243
  .v-window--show-arrows-on-hover:hover .v-window__right {
2132
2244
  transform: translateX(0);
2133
2245
  }
2246
+
2134
2247
  .v-window-x-transition-enter-active, .v-window-x-transition-leave-active, .v-window-x-reverse-transition-enter-active, .v-window-x-reverse-transition-leave-active, .v-window-y-transition-enter-active, .v-window-y-transition-leave-active, .v-window-y-reverse-transition-enter-active, .v-window-y-reverse-transition-leave-active {
2135
2248
  transition: 0.3s cubic-bezier(0.25, 0.8, 0.5, 1);
2136
2249
  }
@@ -2329,77 +2442,26 @@
2329
2442
  contain: content;
2330
2443
  display: flex;
2331
2444
  flex: 1 1 auto;
2332
- overflow: hidden;
2445
+ overflow-x: auto;
2446
+ overflow-y: hidden;
2447
+ scrollbar-width: none;
2448
+ scrollbar-color: rgba(0, 0, 0, 0);
2449
+ }
2450
+ .v-slide-group__container::-webkit-scrollbar {
2451
+ display: none;
2333
2452
  }
2334
2453
 
2454
+ .v-slide-group--vertical {
2455
+ max-height: inherit;
2456
+ }
2335
2457
  .v-slide-group--vertical,
2336
2458
  .v-slide-group--vertical .v-slide-group__container,
2337
2459
  .v-slide-group--vertical .v-slide-group__content {
2338
2460
  flex-direction: column;
2339
2461
  }
2340
- .v-overlay-container {
2341
- contain: layout;
2342
- left: 0;
2343
- pointer-events: none;
2344
- position: absolute;
2345
- top: 0;
2346
- display: contents;
2347
- }
2348
-
2349
- .v-overlay-scroll-blocked {
2350
- padding-inline-end: var(--v-scrollbar-offset);
2351
- }
2352
- .v-overlay-scroll-blocked:not(html) {
2353
- overflow-y: hidden !important;
2354
- }
2355
- html.v-overlay-scroll-blocked {
2356
- position: fixed;
2357
- top: var(--v-body-scroll-y);
2358
- left: var(--v-body-scroll-x);
2359
- width: 100%;
2360
- height: 100%;
2361
- }
2362
-
2363
- .v-overlay {
2364
- border-radius: inherit;
2365
- display: flex;
2366
- left: 0;
2367
- pointer-events: none;
2368
- position: fixed;
2369
- top: 0;
2370
- bottom: 0;
2371
- right: 0;
2372
- }
2373
-
2374
- .v-overlay__content {
2375
- outline: none;
2376
- position: absolute;
2377
- pointer-events: auto;
2378
- contain: layout;
2379
- }
2380
-
2381
- .v-overlay__scrim {
2382
- pointer-events: auto;
2383
- background: rgb(var(--v-theme-on-surface));
2384
- border-radius: inherit;
2385
- bottom: 0;
2386
- left: 0;
2387
- opacity: var(--v-overlay-opacity, 0.32);
2388
- position: fixed;
2389
- right: 0;
2390
- top: 0;
2391
- }
2392
-
2393
- .v-overlay--absolute {
2394
- position: absolute;
2395
- }
2396
-
2397
- .v-overlay--contained .v-overlay__scrim {
2398
- position: absolute;
2399
- }
2400
-
2401
- .v-overlay--scroll-blocked {
2402
- padding-inline-end: var(--v-scrollbar-offset);
2462
+ .v-slide-group--vertical .v-slide-group__container {
2463
+ overflow-x: hidden;
2464
+ overflow-y: auto;
2403
2465
  }
2404
2466
  .v-input {
2405
2467
  display: grid;
@@ -5974,10 +6036,10 @@ progress {
5974
6036
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
5975
6037
  }
5976
6038
  .picker-transition-enter-from {
5977
- transform: translate(0, 100%);
6039
+ transform: translate(100%, 0);
5978
6040
  }
5979
6041
  .picker-transition-leave-to {
5980
- transform: translate(0, -100%);
6042
+ transform: translate(-100%, 0);
5981
6043
  }
5982
6044
 
5983
6045
  .picker-reverse-transition-enter-active {
@@ -5994,10 +6056,10 @@ progress {
5994
6056
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
5995
6057
  }
5996
6058
  .picker-reverse-transition-enter-from {
5997
- transform: translate(0, -100%);
6059
+ transform: translate(-100%, 0);
5998
6060
  }
5999
6061
  .picker-reverse-transition-leave-to {
6000
- transform: translate(0, 100%);
6062
+ transform: translate(100%, 0);
6001
6063
  }
6002
6064
 
6003
6065
  .expand-transition-enter-active {
@@ -6626,6 +6688,10 @@ html.overflow-y-hidden {
6626
6688
  overflow: visible !important;
6627
6689
  }
6628
6690
 
6691
+ .overflow-scroll {
6692
+ overflow: scroll !important;
6693
+ }
6694
+
6629
6695
  .overflow-x-auto {
6630
6696
  overflow-x: auto !important;
6631
6697
  }
@@ -6634,6 +6700,10 @@ html.overflow-y-hidden {
6634
6700
  overflow-x: hidden !important;
6635
6701
  }
6636
6702
 
6703
+ .overflow-x-scroll {
6704
+ overflow-x: scroll !important;
6705
+ }
6706
+
6637
6707
  .overflow-y-auto {
6638
6708
  overflow-y: auto !important;
6639
6709
  }
@@ -6642,6 +6712,10 @@ html.overflow-y-hidden {
6642
6712
  overflow-y: hidden !important;
6643
6713
  }
6644
6714
 
6715
+ .overflow-y-scroll {
6716
+ overflow-y: scroll !important;
6717
+ }
6718
+
6645
6719
  .d-none {
6646
6720
  display: none !important;
6647
6721
  }
@@ -9943,6 +10017,74 @@ html.overflow-y-hidden {
9943
10017
  word-break: break-word !important;
9944
10018
  }
9945
10019
 
10020
+ .opacity-hover {
10021
+ opacity: var(--v-hover-opacity) !important;
10022
+ }
10023
+
10024
+ .opacity-focus {
10025
+ opacity: var(--v-focus-opacity) !important;
10026
+ }
10027
+
10028
+ .opacity-selected {
10029
+ opacity: var(--v-selected-opacity) !important;
10030
+ }
10031
+
10032
+ .opacity-activated {
10033
+ opacity: var(--v-activated-opacity) !important;
10034
+ }
10035
+
10036
+ .opacity-pressed {
10037
+ opacity: var(--v-pressed-opacity) !important;
10038
+ }
10039
+
10040
+ .opacity-dragged {
10041
+ opacity: var(--v-dragged-opacity) !important;
10042
+ }
10043
+
10044
+ .opacity-0 {
10045
+ opacity: 0 !important;
10046
+ }
10047
+
10048
+ .opacity-10 {
10049
+ opacity: 0.1 !important;
10050
+ }
10051
+
10052
+ .opacity-20 {
10053
+ opacity: 0.2 !important;
10054
+ }
10055
+
10056
+ .opacity-30 {
10057
+ opacity: 0.3 !important;
10058
+ }
10059
+
10060
+ .opacity-40 {
10061
+ opacity: 0.4 !important;
10062
+ }
10063
+
10064
+ .opacity-50 {
10065
+ opacity: 0.5 !important;
10066
+ }
10067
+
10068
+ .opacity-60 {
10069
+ opacity: 0.6 !important;
10070
+ }
10071
+
10072
+ .opacity-70 {
10073
+ opacity: 0.7 !important;
10074
+ }
10075
+
10076
+ .opacity-80 {
10077
+ opacity: 0.8 !important;
10078
+ }
10079
+
10080
+ .opacity-90 {
10081
+ opacity: 0.9 !important;
10082
+ }
10083
+
10084
+ .opacity-100 {
10085
+ opacity: 1 !important;
10086
+ }
10087
+
9946
10088
  .text-high-emphasis {
9947
10089
  color: rgba(var(--v-theme-on-background), var(--v-high-emphasis-opacity)) !important;
9948
10090
  }
@@ -10146,6 +10288,22 @@ html.overflow-y-hidden {
10146
10288
  position: sticky !important;
10147
10289
  }
10148
10290
 
10291
+ .top-0 {
10292
+ top: 0 !important;
10293
+ }
10294
+
10295
+ .right-0 {
10296
+ right: 0 !important;
10297
+ }
10298
+
10299
+ .bottom-0 {
10300
+ bottom: 0 !important;
10301
+ }
10302
+
10303
+ .left-0 {
10304
+ left: 0 !important;
10305
+ }
10306
+
10149
10307
  .cursor-auto {
10150
10308
  cursor: auto !important;
10151
10309
  }
@@ -12251,6 +12409,51 @@ html.overflow-y-hidden {
12251
12409
  font-family: "Roboto", sans-serif;
12252
12410
  text-transform: uppercase !important;
12253
12411
  }
12412
+ .h-sm-auto {
12413
+ height: auto !important;
12414
+ }
12415
+ .h-sm-screen {
12416
+ height: 100vh !important;
12417
+ }
12418
+ .h-sm-0 {
12419
+ height: 0 !important;
12420
+ }
12421
+ .h-sm-25 {
12422
+ height: 25% !important;
12423
+ }
12424
+ .h-sm-50 {
12425
+ height: 50% !important;
12426
+ }
12427
+ .h-sm-75 {
12428
+ height: 75% !important;
12429
+ }
12430
+ .h-sm-100 {
12431
+ height: 100% !important;
12432
+ }
12433
+ .w-sm-auto {
12434
+ width: auto !important;
12435
+ }
12436
+ .w-sm-0 {
12437
+ width: 0 !important;
12438
+ }
12439
+ .w-sm-25 {
12440
+ width: 25% !important;
12441
+ }
12442
+ .w-sm-33 {
12443
+ width: 33% !important;
12444
+ }
12445
+ .w-sm-50 {
12446
+ width: 50% !important;
12447
+ }
12448
+ .w-sm-66 {
12449
+ width: 66% !important;
12450
+ }
12451
+ .w-sm-75 {
12452
+ width: 75% !important;
12453
+ }
12454
+ .w-sm-100 {
12455
+ width: 100% !important;
12456
+ }
12254
12457
  }
12255
12458
  @media (min-width: 960px) {
12256
12459
  .d-md-none {
@@ -14241,6 +14444,51 @@ html.overflow-y-hidden {
14241
14444
  font-family: "Roboto", sans-serif;
14242
14445
  text-transform: uppercase !important;
14243
14446
  }
14447
+ .h-md-auto {
14448
+ height: auto !important;
14449
+ }
14450
+ .h-md-screen {
14451
+ height: 100vh !important;
14452
+ }
14453
+ .h-md-0 {
14454
+ height: 0 !important;
14455
+ }
14456
+ .h-md-25 {
14457
+ height: 25% !important;
14458
+ }
14459
+ .h-md-50 {
14460
+ height: 50% !important;
14461
+ }
14462
+ .h-md-75 {
14463
+ height: 75% !important;
14464
+ }
14465
+ .h-md-100 {
14466
+ height: 100% !important;
14467
+ }
14468
+ .w-md-auto {
14469
+ width: auto !important;
14470
+ }
14471
+ .w-md-0 {
14472
+ width: 0 !important;
14473
+ }
14474
+ .w-md-25 {
14475
+ width: 25% !important;
14476
+ }
14477
+ .w-md-33 {
14478
+ width: 33% !important;
14479
+ }
14480
+ .w-md-50 {
14481
+ width: 50% !important;
14482
+ }
14483
+ .w-md-66 {
14484
+ width: 66% !important;
14485
+ }
14486
+ .w-md-75 {
14487
+ width: 75% !important;
14488
+ }
14489
+ .w-md-100 {
14490
+ width: 100% !important;
14491
+ }
14244
14492
  }
14245
14493
  @media (min-width: 1280px) {
14246
14494
  .d-lg-none {
@@ -16231,6 +16479,51 @@ html.overflow-y-hidden {
16231
16479
  font-family: "Roboto", sans-serif;
16232
16480
  text-transform: uppercase !important;
16233
16481
  }
16482
+ .h-lg-auto {
16483
+ height: auto !important;
16484
+ }
16485
+ .h-lg-screen {
16486
+ height: 100vh !important;
16487
+ }
16488
+ .h-lg-0 {
16489
+ height: 0 !important;
16490
+ }
16491
+ .h-lg-25 {
16492
+ height: 25% !important;
16493
+ }
16494
+ .h-lg-50 {
16495
+ height: 50% !important;
16496
+ }
16497
+ .h-lg-75 {
16498
+ height: 75% !important;
16499
+ }
16500
+ .h-lg-100 {
16501
+ height: 100% !important;
16502
+ }
16503
+ .w-lg-auto {
16504
+ width: auto !important;
16505
+ }
16506
+ .w-lg-0 {
16507
+ width: 0 !important;
16508
+ }
16509
+ .w-lg-25 {
16510
+ width: 25% !important;
16511
+ }
16512
+ .w-lg-33 {
16513
+ width: 33% !important;
16514
+ }
16515
+ .w-lg-50 {
16516
+ width: 50% !important;
16517
+ }
16518
+ .w-lg-66 {
16519
+ width: 66% !important;
16520
+ }
16521
+ .w-lg-75 {
16522
+ width: 75% !important;
16523
+ }
16524
+ .w-lg-100 {
16525
+ width: 100% !important;
16526
+ }
16234
16527
  }
16235
16528
  @media (min-width: 1920px) {
16236
16529
  .d-xl-none {
@@ -18221,6 +18514,51 @@ html.overflow-y-hidden {
18221
18514
  font-family: "Roboto", sans-serif;
18222
18515
  text-transform: uppercase !important;
18223
18516
  }
18517
+ .h-xl-auto {
18518
+ height: auto !important;
18519
+ }
18520
+ .h-xl-screen {
18521
+ height: 100vh !important;
18522
+ }
18523
+ .h-xl-0 {
18524
+ height: 0 !important;
18525
+ }
18526
+ .h-xl-25 {
18527
+ height: 25% !important;
18528
+ }
18529
+ .h-xl-50 {
18530
+ height: 50% !important;
18531
+ }
18532
+ .h-xl-75 {
18533
+ height: 75% !important;
18534
+ }
18535
+ .h-xl-100 {
18536
+ height: 100% !important;
18537
+ }
18538
+ .w-xl-auto {
18539
+ width: auto !important;
18540
+ }
18541
+ .w-xl-0 {
18542
+ width: 0 !important;
18543
+ }
18544
+ .w-xl-25 {
18545
+ width: 25% !important;
18546
+ }
18547
+ .w-xl-33 {
18548
+ width: 33% !important;
18549
+ }
18550
+ .w-xl-50 {
18551
+ width: 50% !important;
18552
+ }
18553
+ .w-xl-66 {
18554
+ width: 66% !important;
18555
+ }
18556
+ .w-xl-75 {
18557
+ width: 75% !important;
18558
+ }
18559
+ .w-xl-100 {
18560
+ width: 100% !important;
18561
+ }
18224
18562
  }
18225
18563
  @media (min-width: 2560px) {
18226
18564
  .d-xxl-none {
@@ -20211,6 +20549,51 @@ html.overflow-y-hidden {
20211
20549
  font-family: "Roboto", sans-serif;
20212
20550
  text-transform: uppercase !important;
20213
20551
  }
20552
+ .h-xxl-auto {
20553
+ height: auto !important;
20554
+ }
20555
+ .h-xxl-screen {
20556
+ height: 100vh !important;
20557
+ }
20558
+ .h-xxl-0 {
20559
+ height: 0 !important;
20560
+ }
20561
+ .h-xxl-25 {
20562
+ height: 25% !important;
20563
+ }
20564
+ .h-xxl-50 {
20565
+ height: 50% !important;
20566
+ }
20567
+ .h-xxl-75 {
20568
+ height: 75% !important;
20569
+ }
20570
+ .h-xxl-100 {
20571
+ height: 100% !important;
20572
+ }
20573
+ .w-xxl-auto {
20574
+ width: auto !important;
20575
+ }
20576
+ .w-xxl-0 {
20577
+ width: 0 !important;
20578
+ }
20579
+ .w-xxl-25 {
20580
+ width: 25% !important;
20581
+ }
20582
+ .w-xxl-33 {
20583
+ width: 33% !important;
20584
+ }
20585
+ .w-xxl-50 {
20586
+ width: 50% !important;
20587
+ }
20588
+ .w-xxl-66 {
20589
+ width: 66% !important;
20590
+ }
20591
+ .w-xxl-75 {
20592
+ width: 75% !important;
20593
+ }
20594
+ .w-xxl-100 {
20595
+ width: 100% !important;
20596
+ }
20214
20597
  }
20215
20598
  @media print {
20216
20599
  .d-print-none {
@@ -5,6 +5,9 @@
5
5
  margin-inline-end: calc(8px + var(--v-scrollbar-offset));
6
6
  padding: var(--v-layout-top) var(--v-layout-right) var(--v-layout-bottom) var(--v-layout-left);
7
7
  }
8
+ .v-snackbar:not(.v-snackbar--centered):not(.v-snackbar--top) {
9
+ align-items: flex-end;
10
+ }
8
11
  .v-snackbar__wrapper {
9
12
  align-items: center;
10
13
  display: flex;
@@ -1 +1 @@
1
- {"target":2,"omniaServiceId":"bb000000-0000-bbbb-0000-0000000000bb","resource":[{"manifestType":"resource","resourceId":"738c21ca-805e-4eaa-818d-3b3ab25c27b6","resourceName":"omfx.admin.apis.registration","version":{"js":"99e35152b10563bb1d2e12624e3d7d20"},"availableBundleTargetTypes":["js"],"dependingOnManifests":[{"resourceId":"a5a89056-b5f5-475d-8518-a1f55090379d"}],"api":["fx.ux.admin.navigations.rootNodes.registrations","fx.ux.admin.navigations.subNodes.registrations","fx.ux.admin.registration.navigationMenuNode","fx.ux.admin.registration.navigationNode","fx.ux.admin.events.initializeNavigationNode"],"registerApiConfiguration":{"fx.ux.admin.navigations.rootNodes.registrations":{"disableAutoLoadingManifests":true},"fx.ux.admin.navigations.subNodes.registrations":{"disableAutoLoadingManifests":true}}},{"manifestType":"resource","resourceId":"8a56151b-5f71-4f0d-823a-1ab34fbfd580","resourceName":"omnia.workplace.adminregistrations","version":{"js":"afca1cedcbcb60d039da91e9f72b9730"},"availableBundleTargetTypes":["js"],"dependingOnManifests":[{"resourceId":"dee030cc-4ab3-4158-bb06-8049f5c67542"}],"combinedLoadRules":[{"logicalOperator":"&&","rule":{"omniaServiceId":"bb000000-0000-bbbb-0000-0000000000bb","resourceId":"253e469e-f68e-4cb5-b526-343736c2ff11"}}]}],"webcomponent":[{"elementName":"omnia-admin-renderer","manifestType":"webcomponent","resourceId":"253e469e-f68e-4cb5-b526-343736c2ff11","resourceName":"omnia.admin","version":{"js":"7e34689a8202b81cf09bb3b948b486ae"},"availableBundleTargetTypes":["js"],"dependingOnManifests":[{"resourceId":"a5a89056-b5f5-475d-8518-a1f55090379d"},{"resourceId":"dee030cc-4ab3-4158-bb06-8049f5c67542"}]},{"elementName":"omnia-workplace-admin-tenant-design-journey","manifestType":"webcomponent","resourceId":"97cad1f2-5469-4fb2-ab76-b333cf8fe84c","resourceName":"omnia.workplace.design.journey","version":{"js":"40c45fd601f7cb8b7f417165bb5808cd"},"availableBundleTargetTypes":["js"],"dependingOnManifests":[{"resourceId":"dee030cc-4ab3-4158-bb06-8049f5c67542"}]},{"elementName":"omfx-versioned-layout-blade-builder","manifestType":"webcomponent","resourceId":"35ec8e8c-3b6e-4585-8afd-0b1832eef250","resourceName":"omnia.fx.ux.versionedlayout.blade","version":{"js":"7b1f7122b0b71f003a9bc8956bf899ab"},"availableBundleTargetTypes":["js"],"dependingOnManifests":[{"resourceId":"a5a89056-b5f5-475d-8518-a1f55090379d"},{"resourceId":"dee030cc-4ab3-4158-bb06-8049f5c67542"}]},{"elementName":"omfx-versioned-layout-creation-blade","manifestType":"webcomponent","resourceId":"e40dc8c1-d503-4296-96ce-fd8cccadc744","resourceName":"omnia.fx.ux.versionedlayout.blade.creation","version":{"js":"22c1c84109233b2ea525e8fb481c611f"},"availableBundleTargetTypes":["js"],"dependingOnManifests":[{"resourceId":"a5a89056-b5f5-475d-8518-a1f55090379d"},{"resourceId":"dee030cc-4ab3-4158-bb06-8049f5c67542"}]},{"elementName":"omfx-versioned-layout-list-blade-builder","manifestType":"webcomponent","resourceId":"cd42d83e-ed23-4ada-aea7-498795c701ee","resourceName":"omnia.fx.ux.versionedlayout.blade.list","version":{"js":"264c6d92e75cfbd84eb31f2d3ab00623"},"availableBundleTargetTypes":["js"],"dependingOnManifests":[{"resourceId":"a5a89056-b5f5-475d-8518-a1f55090379d"},{"resourceId":"dee030cc-4ab3-4158-bb06-8049f5c67542"}]},{"elementName":"omfx-color-schema-definition-picker","manifestType":"webcomponent","resourceId":"9ed2b61f-ad8a-43f3-84ef-ef4a5dcbd184","resourceName":"omnia.fx.ux.velcron.colorschemadefinitionpicker","version":{"js":"b8c03c71cae6ad7a3209a1727dc4da0e"},"availableBundleTargetTypes":["js"],"dependingOnManifests":[{"resourceId":"a5a89056-b5f5-475d-8518-a1f55090379d"},{"resourceId":"dee030cc-4ab3-4158-bb06-8049f5c67542"}]},{"elementName":"omfx-color-schema-editor","manifestType":"webcomponent","resourceId":"7abfeece-9562-45f3-ba63-c231d3c31c26","resourceName":"omnia.fx.ux.velcron.colorschemaeditor","version":{"js":"eb3ef2fd8877e01dd273e968c8b945dd"},"availableBundleTargetTypes":["js"],"dependingOnManifests":[{"resourceId":"dee030cc-4ab3-4158-bb06-8049f5c67542"}]},{"elementName":"omnia-workplace-themes-journey","manifestType":"webcomponent","resourceId":"bed95d1e-c67f-4a15-986f-c72adebdb78f","resourceName":"omnia.workplace.design.journey","version":{"js":"b8ea5b0aa2718fb1012f4525742d6242"},"availableBundleTargetTypes":["js"],"dependingOnManifests":[{"resourceId":"a5a89056-b5f5-475d-8518-a1f55090379d"},{"resourceId":"dee030cc-4ab3-4158-bb06-8049f5c67542"}]},{"elementName":"omnia-workplace-spacing-journey","manifestType":"webcomponent","resourceId":"891de93e-73cc-47b0-a552-d24fdf34c9cf","resourceName":"omnia.workplace.spacing.journey","version":{"js":"9f096dda4ee8c7689fb2f420091c667a"},"availableBundleTargetTypes":["js"],"dependingOnManifests":[{"resourceId":"a5a89056-b5f5-475d-8518-a1f55090379d"},{"resourceId":"dee030cc-4ab3-4158-bb06-8049f5c67542"}]}]}
1
+ {"target":2,"omniaServiceId":"bb000000-0000-bbbb-0000-0000000000bb","resource":[{"manifestType":"resource","resourceId":"738c21ca-805e-4eaa-818d-3b3ab25c27b6","resourceName":"omfx.admin.apis.registration","version":{"js":"99e35152b10563bb1d2e12624e3d7d20"},"availableBundleTargetTypes":["js"],"dependingOnManifests":[{"resourceId":"a5a89056-b5f5-475d-8518-a1f55090379d"}],"api":["fx.ux.admin.navigations.rootNodes.registrations","fx.ux.admin.navigations.subNodes.registrations","fx.ux.admin.registration.navigationMenuNode","fx.ux.admin.registration.navigationNode","fx.ux.admin.events.initializeNavigationNode"],"registerApiConfiguration":{"fx.ux.admin.navigations.rootNodes.registrations":{"disableAutoLoadingManifests":true},"fx.ux.admin.navigations.subNodes.registrations":{"disableAutoLoadingManifests":true}}},{"manifestType":"resource","resourceId":"8a56151b-5f71-4f0d-823a-1ab34fbfd580","resourceName":"omnia.workplace.adminregistrations","version":{"js":"1d7ef3e930f0d6ec0a7269a816521c3f"},"availableBundleTargetTypes":["js"],"dependingOnManifests":[{"resourceId":"dee030cc-4ab3-4158-bb06-8049f5c67542"}],"combinedLoadRules":[{"logicalOperator":"&&","rule":{"omniaServiceId":"bb000000-0000-bbbb-0000-0000000000bb","resourceId":"253e469e-f68e-4cb5-b526-343736c2ff11"}}]}],"webcomponent":[{"elementName":"omnia-admin-renderer","manifestType":"webcomponent","resourceId":"253e469e-f68e-4cb5-b526-343736c2ff11","resourceName":"omnia.admin","version":{"js":"504b54c41fa303cafe7e1aa171db71b6"},"availableBundleTargetTypes":["js"],"dependingOnManifests":[{"resourceId":"a5a89056-b5f5-475d-8518-a1f55090379d"},{"resourceId":"dee030cc-4ab3-4158-bb06-8049f5c67542"}]},{"elementName":"omnia-workplace-admin-tenant-design-journey","manifestType":"webcomponent","resourceId":"97cad1f2-5469-4fb2-ab76-b333cf8fe84c","resourceName":"omnia.workplace.design.journey","version":{"js":"cb764edf8a35293edb303685befb9f96"},"availableBundleTargetTypes":["js"],"dependingOnManifests":[{"resourceId":"dee030cc-4ab3-4158-bb06-8049f5c67542"}]},{"elementName":"omfx-versioned-layout-blade-builder","manifestType":"webcomponent","resourceId":"35ec8e8c-3b6e-4585-8afd-0b1832eef250","resourceName":"omnia.fx.ux.versionedlayout.blade","version":{"js":"418e1bd1e09a8675d8a38d2c874b871b"},"availableBundleTargetTypes":["js"],"dependingOnManifests":[{"resourceId":"a5a89056-b5f5-475d-8518-a1f55090379d"},{"resourceId":"dee030cc-4ab3-4158-bb06-8049f5c67542"}]},{"elementName":"omfx-versioned-layout-creation-blade","manifestType":"webcomponent","resourceId":"e40dc8c1-d503-4296-96ce-fd8cccadc744","resourceName":"omnia.fx.ux.versionedlayout.blade.creation","version":{"js":"36a9bb861ac9c580acde39c12a58255a"},"availableBundleTargetTypes":["js"],"dependingOnManifests":[{"resourceId":"a5a89056-b5f5-475d-8518-a1f55090379d"},{"resourceId":"dee030cc-4ab3-4158-bb06-8049f5c67542"}]},{"elementName":"omfx-versioned-layout-list-blade-builder","manifestType":"webcomponent","resourceId":"cd42d83e-ed23-4ada-aea7-498795c701ee","resourceName":"omnia.fx.ux.versionedlayout.blade.list","version":{"js":"b41b21a055a097c599c502401aa031d2"},"availableBundleTargetTypes":["js"],"dependingOnManifests":[{"resourceId":"a5a89056-b5f5-475d-8518-a1f55090379d"},{"resourceId":"dee030cc-4ab3-4158-bb06-8049f5c67542"}]},{"elementName":"omfx-color-schema-definition-picker","manifestType":"webcomponent","resourceId":"9ed2b61f-ad8a-43f3-84ef-ef4a5dcbd184","resourceName":"omnia.fx.ux.velcron.colorschemadefinitionpicker","version":{"js":"2e536fccf7949fb0daabc22adcc4c128"},"availableBundleTargetTypes":["js"],"dependingOnManifests":[{"resourceId":"a5a89056-b5f5-475d-8518-a1f55090379d"},{"resourceId":"dee030cc-4ab3-4158-bb06-8049f5c67542"}]},{"elementName":"omfx-color-schema-editor","manifestType":"webcomponent","resourceId":"7abfeece-9562-45f3-ba63-c231d3c31c26","resourceName":"omnia.fx.ux.velcron.colorschemaeditor","version":{"js":"dc5d4ca8832bf655615958b80d0320f7"},"availableBundleTargetTypes":["js"],"dependingOnManifests":[{"resourceId":"dee030cc-4ab3-4158-bb06-8049f5c67542"}]},{"elementName":"omnia-workplace-themes-journey","manifestType":"webcomponent","resourceId":"bed95d1e-c67f-4a15-986f-c72adebdb78f","resourceName":"omnia.workplace.design.journey","version":{"js":"fd3ef49c1e046adeb46d941505a6c109"},"availableBundleTargetTypes":["js"],"dependingOnManifests":[{"resourceId":"a5a89056-b5f5-475d-8518-a1f55090379d"},{"resourceId":"dee030cc-4ab3-4158-bb06-8049f5c67542"}]},{"elementName":"omnia-workplace-spacing-journey","manifestType":"webcomponent","resourceId":"891de93e-73cc-47b0-a552-d24fdf34c9cf","resourceName":"omnia.workplace.spacing.journey","version":{"js":"a6cd95f566f2809353f806ed9fbd1ec6"},"availableBundleTargetTypes":["js"],"dependingOnManifests":[{"resourceId":"a5a89056-b5f5-475d-8518-a1f55090379d"},{"resourceId":"dee030cc-4ab3-4158-bb06-8049f5c67542"}]}]}
@@ -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":"a5e56dc4bd7b32d5f69118f97f2b6921"},"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":"d8793b943a6630e277606bc90458b84b"},"availableBundleTargetTypes":["js"],"dependingOnManifests":[{"resourceId":"a5a89056-b5f5-475d-8518-a1f55090379d"}],"extendApi":["fx.docs.registrations"]}]}
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":"a5e56dc4bd7b32d5f69118f97f2b6921"},"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":"ce337901afdffef109fac99d423d5e56"},"availableBundleTargetTypes":["js"],"dependingOnManifests":[{"resourceId":"a5a89056-b5f5-475d-8518-a1f55090379d"}],"extendApi":["fx.docs.registrations"]}]}
@@ -1 +1 @@
1
- {"target":4,"omniaServiceId":"bb000000-0000-bbbb-0000-0000000000bb","webcomponent":[{"elementName":"omfx-sp-term-item","manifestType":"webcomponent","resourceId":"dae567bb-2f18-46ab-ad5c-0adaa64945cf","resourceName":"omfx.sp.term.item","version":{"js":"e778059b61a247a2d0f60a53388b3d2d"},"availableBundleTargetTypes":["js"],"dependingOnManifests":[{"resourceId":"a5a89056-b5f5-475d-8518-a1f55090379d"},{"resourceId":"fa502cf2-bcf9-4dc0-b4f9-13dc63c04bfc"},{"resourceId":"dee030cc-4ab3-4158-bb06-8049f5c67542"}]},{"elementName":"omfx-hub-feed-settings","manifestType":"webcomponent","resourceId":"baecc575-9107-4830-a5ae-2dda9f6b5ed5","resourceName":"HubFeed.settings","version":{"js":"82fd5895429def16e389dc599cc81174"},"availableBundleTargetTypes":["js"],"dependingOnManifests":[{"resourceId":"dee030cc-4ab3-4158-bb06-8049f5c67542"}]}]}
1
+ {"target":4,"omniaServiceId":"bb000000-0000-bbbb-0000-0000000000bb","webcomponent":[{"elementName":"omfx-sp-term-item","manifestType":"webcomponent","resourceId":"dae567bb-2f18-46ab-ad5c-0adaa64945cf","resourceName":"omfx.sp.term.item","version":{"js":"41ca031f1e5ed0c0863bb906f8e0cc73"},"availableBundleTargetTypes":["js"],"dependingOnManifests":[{"resourceId":"a5a89056-b5f5-475d-8518-a1f55090379d"},{"resourceId":"fa502cf2-bcf9-4dc0-b4f9-13dc63c04bfc"},{"resourceId":"dee030cc-4ab3-4158-bb06-8049f5c67542"}]},{"elementName":"omfx-hub-feed-settings","manifestType":"webcomponent","resourceId":"baecc575-9107-4830-a5ae-2dda9f6b5ed5","resourceName":"HubFeed.settings","version":{"js":"c9c5240b6d000ac8230a0b6ac9b8f3f7"},"availableBundleTargetTypes":["js"],"dependingOnManifests":[{"resourceId":"dee030cc-4ab3-4158-bb06-8049f5c67542"}]}]}