@omnia/runtime 8.0.131-dev → 8.0.133-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.autocomplete_5d79340e-c1ce-4006-b88b-ad101d2e031e.css +4 -4
- package/dist/bundles/omnia.fx.ux.vuetify.combobox_0edad567-65c0-433f-a871-a59e460d70f0.css +4 -4
- package/dist/bundles/omnia.fx.ux.vuetify.common_798d6494-70cc-47eb-9054-30b047beab19.css +24 -9
- package/dist/bundles/omnia.fx.ux.vuetify.datepicker_0ab2c44b-d945-40f8-8042-0800a52d7c86.css +21 -33
- package/dist/bundles/omnia.fx.ux.vuetify.shared_8769dc42-712d-4ce2-8d32-4b8604b92ae6.css +20 -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/package.json +5 -5
|
@@ -55,7 +55,7 @@
|
|
|
55
55
|
.v-autocomplete--selecting-index .v-field__input > input {
|
|
56
56
|
caret-color: transparent;
|
|
57
57
|
}
|
|
58
|
-
.v-autocomplete--single.v-text-field .v-field--focused input {
|
|
58
|
+
.v-autocomplete--single:not(.v-autocomplete--selection-slot).v-text-field .v-field--focused input {
|
|
59
59
|
flex: 1 1;
|
|
60
60
|
position: absolute;
|
|
61
61
|
left: 0;
|
|
@@ -63,13 +63,13 @@
|
|
|
63
63
|
width: 100%;
|
|
64
64
|
padding-inline: inherit;
|
|
65
65
|
}
|
|
66
|
-
.v-autocomplete--single .v-field--active input {
|
|
66
|
+
.v-autocomplete--single:not(.v-autocomplete--selection-slot) .v-field--active input {
|
|
67
67
|
transition: none;
|
|
68
68
|
}
|
|
69
|
-
.v-autocomplete--single .v-field--dirty:not(.v-field--focused) input {
|
|
69
|
+
.v-autocomplete--single:not(.v-autocomplete--selection-slot) .v-field--dirty:not(.v-field--focused) input {
|
|
70
70
|
opacity: 0;
|
|
71
71
|
}
|
|
72
|
-
.v-autocomplete--single .v-field--focused .v-autocomplete__selection {
|
|
72
|
+
.v-autocomplete--single:not(.v-autocomplete--selection-slot) .v-field--focused .v-autocomplete__selection {
|
|
73
73
|
opacity: 0;
|
|
74
74
|
}
|
|
75
75
|
.v-autocomplete__menu-icon {
|
|
@@ -55,7 +55,7 @@
|
|
|
55
55
|
.v-combobox--selecting-index .v-field__input > input {
|
|
56
56
|
caret-color: transparent;
|
|
57
57
|
}
|
|
58
|
-
.v-combobox--single.v-text-field .v-field--focused input {
|
|
58
|
+
.v-combobox--single:not(.v-combobox--selection-slot).v-text-field .v-field--focused input {
|
|
59
59
|
flex: 1 1;
|
|
60
60
|
position: absolute;
|
|
61
61
|
left: 0;
|
|
@@ -63,13 +63,13 @@
|
|
|
63
63
|
width: 100%;
|
|
64
64
|
padding-inline: inherit;
|
|
65
65
|
}
|
|
66
|
-
.v-combobox--single .v-field--active input {
|
|
66
|
+
.v-combobox--single:not(.v-combobox--selection-slot) .v-field--active input {
|
|
67
67
|
transition: none;
|
|
68
68
|
}
|
|
69
|
-
.v-combobox--single .v-field--dirty:not(.v-field--focused) input {
|
|
69
|
+
.v-combobox--single:not(.v-combobox--selection-slot) .v-field--dirty:not(.v-field--focused) input {
|
|
70
70
|
opacity: 0;
|
|
71
71
|
}
|
|
72
|
-
.v-combobox--single .v-field--focused .v-combobox__selection {
|
|
72
|
+
.v-combobox--single:not(.v-combobox--selection-slot) .v-field--focused .v-combobox__selection {
|
|
73
73
|
opacity: 0;
|
|
74
74
|
}
|
|
75
75
|
.v-combobox__menu-icon {
|
|
@@ -111,6 +111,7 @@
|
|
|
111
111
|
opacity: 1;
|
|
112
112
|
pointer-events: none;
|
|
113
113
|
transition-property: opacity, transform;
|
|
114
|
+
overflow-wrap: break-word;
|
|
114
115
|
}
|
|
115
116
|
.v-tooltip > .v-overlay__content[class*=enter-active] {
|
|
116
117
|
transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
|
|
@@ -468,7 +469,8 @@
|
|
|
468
469
|
overflow: hidden;
|
|
469
470
|
padding: 0;
|
|
470
471
|
text-overflow: ellipsis;
|
|
471
|
-
|
|
472
|
+
overflow-wrap: break-word;
|
|
473
|
+
word-break: initial;
|
|
472
474
|
font-size: 0.875rem;
|
|
473
475
|
font-weight: 400;
|
|
474
476
|
letter-spacing: 0.0178571429em;
|
|
@@ -807,7 +809,6 @@
|
|
|
807
809
|
flex-direction: column;
|
|
808
810
|
justify-content: space-between;
|
|
809
811
|
max-width: 100%;
|
|
810
|
-
overflow: hidden;
|
|
811
812
|
position: relative;
|
|
812
813
|
transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
|
813
814
|
transition-property: height, width, transform, max-width, left, right, top, bottom, box-shadow;
|
|
@@ -855,6 +856,9 @@
|
|
|
855
856
|
width: 100%;
|
|
856
857
|
}
|
|
857
858
|
|
|
859
|
+
.v-toolbar__content {
|
|
860
|
+
overflow: hidden;
|
|
861
|
+
}
|
|
858
862
|
.v-toolbar__content > .v-btn:first-child {
|
|
859
863
|
margin-inline-start: 10px;
|
|
860
864
|
}
|
|
@@ -1494,23 +1498,20 @@
|
|
|
1494
1498
|
opacity: calc(var(--v-focus-opacity) * var(--v-theme-overlay-multiplier));
|
|
1495
1499
|
}
|
|
1496
1500
|
}
|
|
1497
|
-
.v-expansion-panel-title--
|
|
1501
|
+
.v-expansion-panel-title--focusable.v-expansion-panel-title--active .v-expansion-panel-title__overlay {
|
|
1498
1502
|
opacity: calc(var(--v-activated-opacity) * var(--v-theme-overlay-multiplier));
|
|
1499
1503
|
}
|
|
1500
|
-
.v-expansion-panel-title--
|
|
1504
|
+
.v-expansion-panel-title--focusable.v-expansion-panel-title--active:hover .v-expansion-panel-title__overlay {
|
|
1501
1505
|
opacity: calc((var(--v-activated-opacity) + var(--v-hover-opacity)) * var(--v-theme-overlay-multiplier));
|
|
1502
1506
|
}
|
|
1503
|
-
.v-expansion-panel-title--
|
|
1507
|
+
.v-expansion-panel-title--focusable.v-expansion-panel-title--active:focus-visible .v-expansion-panel-title__overlay {
|
|
1504
1508
|
opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
|
|
1505
1509
|
}
|
|
1506
1510
|
@supports not selector(:focus-visible) {
|
|
1507
|
-
.v-expansion-panel-title--
|
|
1511
|
+
.v-expansion-panel-title--focusable.v-expansion-panel-title--active:focus .v-expansion-panel-title__overlay {
|
|
1508
1512
|
opacity: calc((var(--v-activated-opacity) + var(--v-focus-opacity)) * var(--v-theme-overlay-multiplier));
|
|
1509
1513
|
}
|
|
1510
1514
|
}
|
|
1511
|
-
.v-expansion-panel-title--active::before {
|
|
1512
|
-
opacity: 0.12;
|
|
1513
|
-
}
|
|
1514
1515
|
|
|
1515
1516
|
.v-expansion-panel-title__overlay {
|
|
1516
1517
|
position: absolute;
|
|
@@ -1561,6 +1562,20 @@
|
|
|
1561
1562
|
max-width: calc(100% - 32px);
|
|
1562
1563
|
}
|
|
1563
1564
|
|
|
1565
|
+
.v-expansion-panels--flat > .v-expansion-panel::after {
|
|
1566
|
+
border-top: none;
|
|
1567
|
+
}
|
|
1568
|
+
.v-expansion-panels--flat > .v-expansion-panel .v-expansion-panel__shadow {
|
|
1569
|
+
display: none;
|
|
1570
|
+
}
|
|
1571
|
+
|
|
1572
|
+
.v-expansion-panels--tile {
|
|
1573
|
+
border-radius: 0;
|
|
1574
|
+
}
|
|
1575
|
+
.v-expansion-panels--tile > .v-expansion-panel {
|
|
1576
|
+
border-radius: 0;
|
|
1577
|
+
}
|
|
1578
|
+
|
|
1564
1579
|
.v-carousel {
|
|
1565
1580
|
overflow: hidden;
|
|
1566
1581
|
position: relative;
|
package/dist/bundles/omnia.fx.ux.vuetify.datepicker_0ab2c44b-d945-40f8-8042-0800a52d7c86.css
CHANGED
|
@@ -1,28 +1,9 @@
|
|
|
1
|
-
.v-date-picker__input {
|
|
2
|
-
padding-top: 16px;
|
|
3
|
-
padding-left: 24px;
|
|
4
|
-
padding-right: 24px;
|
|
5
|
-
}
|
|
6
|
-
|
|
7
1
|
.v-date-picker {
|
|
8
2
|
overflow: hidden;
|
|
9
|
-
width:
|
|
3
|
+
width: 328px;
|
|
10
4
|
}
|
|
11
5
|
.v-date-picker--show-week {
|
|
12
|
-
width:
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
.v-date-picker-month {
|
|
16
|
-
padding: 0 12px 12px;
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
.v-date-picker-month__day {
|
|
20
|
-
height: 48px;
|
|
21
|
-
width: 48px;
|
|
22
|
-
}
|
|
23
|
-
.v-date-picker-month__day .v-btn {
|
|
24
|
-
--v-btn-height: 28px;
|
|
25
|
-
--v-btn-size: 0.85rem;
|
|
6
|
+
width: 368px;
|
|
26
7
|
}
|
|
27
8
|
.v-date-picker-controls {
|
|
28
9
|
display: flex;
|
|
@@ -84,28 +65,28 @@
|
|
|
84
65
|
.v-date-picker-month {
|
|
85
66
|
display: flex;
|
|
86
67
|
justify-content: center;
|
|
87
|
-
|
|
68
|
+
padding: 0 12px 8px;
|
|
88
69
|
--v-date-picker-month-day-diff: 4px;
|
|
89
70
|
}
|
|
90
71
|
|
|
91
72
|
.v-date-picker-month__weeks {
|
|
92
73
|
display: grid;
|
|
93
74
|
grid-template-rows: min-content min-content min-content min-content min-content min-content min-content;
|
|
94
|
-
|
|
95
|
-
font-size: 0.
|
|
75
|
+
column-gap: 4px;
|
|
76
|
+
font-size: 0.85rem;
|
|
96
77
|
}
|
|
97
78
|
.v-date-picker-month__weeks + .v-date-picker-month__days {
|
|
98
79
|
grid-row-gap: 0;
|
|
99
80
|
}
|
|
100
81
|
|
|
101
82
|
.v-date-picker-month__weekday {
|
|
102
|
-
font-size: 0.
|
|
83
|
+
font-size: 0.85rem;
|
|
103
84
|
}
|
|
104
85
|
|
|
105
86
|
.v-date-picker-month__days {
|
|
106
87
|
display: grid;
|
|
107
88
|
grid-template-columns: min-content min-content min-content min-content min-content min-content min-content;
|
|
108
|
-
|
|
89
|
+
column-gap: 4px;
|
|
109
90
|
flex: 1 1;
|
|
110
91
|
justify-content: space-around;
|
|
111
92
|
}
|
|
@@ -115,11 +96,17 @@
|
|
|
115
96
|
display: flex;
|
|
116
97
|
justify-content: center;
|
|
117
98
|
position: relative;
|
|
99
|
+
height: 40px;
|
|
100
|
+
width: 40px;
|
|
118
101
|
}
|
|
119
102
|
.v-date-picker-month__day--selected .v-btn {
|
|
120
103
|
background-color: rgb(var(--v-theme-surface-variant));
|
|
121
104
|
color: rgb(var(--v-theme-on-surface-variant));
|
|
122
105
|
}
|
|
106
|
+
.v-date-picker-month__day .v-btn.v-date-picker-month__day-btn {
|
|
107
|
+
--v-btn-height: 24px;
|
|
108
|
+
--v-btn-size: 0.85rem;
|
|
109
|
+
}
|
|
123
110
|
.v-date-picker-month__day--week {
|
|
124
111
|
font-size: var(--v-btn-size);
|
|
125
112
|
}
|
|
@@ -132,8 +119,7 @@
|
|
|
132
119
|
opacity: 0;
|
|
133
120
|
}
|
|
134
121
|
.v-date-picker-months {
|
|
135
|
-
height:
|
|
136
|
-
overflow-y: scroll;
|
|
122
|
+
height: 288px;
|
|
137
123
|
}
|
|
138
124
|
|
|
139
125
|
.v-date-picker-months__content {
|
|
@@ -143,7 +129,7 @@
|
|
|
143
129
|
height: inherit;
|
|
144
130
|
justify-content: space-around;
|
|
145
131
|
grid-template-columns: repeat(2, 1fr);
|
|
146
|
-
grid-gap:
|
|
132
|
+
grid-gap: 0px 24px;
|
|
147
133
|
padding-inline-start: 36px;
|
|
148
134
|
padding-inline-end: 36px;
|
|
149
135
|
}
|
|
@@ -153,7 +139,7 @@
|
|
|
153
139
|
padding-inline-end: 8px;
|
|
154
140
|
}
|
|
155
141
|
.v-date-picker-years {
|
|
156
|
-
height:
|
|
142
|
+
height: 288px;
|
|
157
143
|
overflow-y: scroll;
|
|
158
144
|
}
|
|
159
145
|
|
|
@@ -163,7 +149,7 @@
|
|
|
163
149
|
justify-content: space-around;
|
|
164
150
|
grid-template-columns: repeat(3, 1fr);
|
|
165
151
|
gap: 8px 24px;
|
|
166
|
-
padding-inline:
|
|
152
|
+
padding-inline: 32px;
|
|
167
153
|
}
|
|
168
154
|
.v-date-picker-years__content .v-btn {
|
|
169
155
|
padding-inline: 8px;
|
|
@@ -190,7 +176,7 @@
|
|
|
190
176
|
|
|
191
177
|
.v-picker__actions {
|
|
192
178
|
grid-area: actions;
|
|
193
|
-
padding: 0 12px 12px
|
|
179
|
+
padding: 0 12px 12px;
|
|
194
180
|
display: flex;
|
|
195
181
|
align-items: center;
|
|
196
182
|
justify-content: flex-end;
|
|
@@ -217,10 +203,12 @@
|
|
|
217
203
|
padding-inline: 24px 12px;
|
|
218
204
|
padding-top: 16px;
|
|
219
205
|
padding-bottom: 16px;
|
|
220
|
-
font-weight:
|
|
206
|
+
font-weight: 400;
|
|
221
207
|
letter-spacing: 0.1666666667em;
|
|
222
208
|
}
|
|
223
209
|
.v-date-picker-header {
|
|
210
|
+
align-items: flex-end;
|
|
211
|
+
height: 70px;
|
|
224
212
|
display: grid;
|
|
225
213
|
grid-template-areas: "prepend content append";
|
|
226
214
|
grid-template-columns: min-content minmax(0, 1fr) min-content;
|
|
@@ -3027,6 +3027,15 @@ textarea.v-field__input::placeholder {
|
|
|
3027
3027
|
flex-basis: calc(var(--v-input-control-height) / 2 + 2px);
|
|
3028
3028
|
}
|
|
3029
3029
|
|
|
3030
|
+
.v-field--reverse.v-field--variant-outlined .v-field__outline__start {
|
|
3031
|
+
border-start-start-radius: 0;
|
|
3032
|
+
border-start-end-radius: inherit;
|
|
3033
|
+
border-end-end-radius: inherit;
|
|
3034
|
+
border-end-start-radius: 0;
|
|
3035
|
+
border-inline-end-width: var(--v-field-border-width);
|
|
3036
|
+
border-inline-start-width: 0;
|
|
3037
|
+
}
|
|
3038
|
+
|
|
3030
3039
|
.v-field--variant-outlined .v-field__outline__notch {
|
|
3031
3040
|
flex: none;
|
|
3032
3041
|
position: relative;
|
|
@@ -3063,6 +3072,14 @@ textarea.v-field__input::placeholder {
|
|
|
3063
3072
|
border-end-end-radius: inherit;
|
|
3064
3073
|
border-end-start-radius: 0;
|
|
3065
3074
|
}
|
|
3075
|
+
.v-field--reverse.v-field--variant-outlined .v-field__outline__end {
|
|
3076
|
+
border-start-start-radius: inherit;
|
|
3077
|
+
border-start-end-radius: 0;
|
|
3078
|
+
border-end-end-radius: 0;
|
|
3079
|
+
border-end-start-radius: inherit;
|
|
3080
|
+
border-inline-end-width: 0;
|
|
3081
|
+
border-inline-start-width: var(--v-field-border-width);
|
|
3082
|
+
}
|
|
3066
3083
|
|
|
3067
3084
|
/* endregion */
|
|
3068
3085
|
/* region LOADER */
|
|
@@ -3143,7 +3160,9 @@ textarea.v-field__input::placeholder {
|
|
|
3143
3160
|
|
|
3144
3161
|
/* endregion */
|
|
3145
3162
|
/* region MODIFIERS */
|
|
3146
|
-
.v-field--reverse .v-field__field,
|
|
3163
|
+
.v-field--reverse .v-field__field,
|
|
3164
|
+
.v-field--reverse .v-field__input,
|
|
3165
|
+
.v-field--reverse .v-field__outline {
|
|
3147
3166
|
flex-direction: row-reverse;
|
|
3148
3167
|
}
|
|
3149
3168
|
.v-field--reverse .v-field__input, .v-field--reverse input {
|
|
@@ -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":"
|
|
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":"f4616ea90e374f12877392044b415f70"},"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":"451b2c9f328fa7aeaf08169db5b4bcef"},"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":"omfx-color-schema-definition-picker","manifestType":"webcomponent","resourceId":"9ed2b61f-ad8a-43f3-84ef-ef4a5dcbd184","resourceName":"omnia.fx.ux.velcron.colorschemadefinitionpicker","version":{"js":"a3ee936edf567b9b8db6a2e1c4c649cf"},"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":"81acacf7db3b28f0340cf18d5da1df14"},"availableBundleTargetTypes":["js"],"dependingOnManifests":[{"resourceId":"a5a89056-b5f5-475d-8518-a1f55090379d"},{"resourceId":"dee030cc-4ab3-4158-bb06-8049f5c67542"}]},{"elementName":"omnia-admin-renderer","manifestType":"webcomponent","resourceId":"253e469e-f68e-4cb5-b526-343736c2ff11","resourceName":"omnia.admin","version":{"js":"9cd9b60363549c56b61fc72748593e75"},"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":"f051c89752e309d697ba83b5ca01b3e3"},"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":"d5c8066cbc4e9cbc691e5cc4a4d8286f"},"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":"bad4d0686b43324b1d6f01cabfbdcdaf"},"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":"41694be2b17ba50027fd67a49d19a13c"},"availableBundleTargetTypes":["js"],"dependingOnManifests":[{"resourceId":"a5a89056-b5f5-475d-8518-a1f55090379d"},{"resourceId":"dee030cc-4ab3-4158-bb06-8049f5c67542"}]},{"elementName":"omnia-workplace-color-schemas-journey","manifestType":"webcomponent","resourceId":"d90e0352-8097-42c4-82bd-da733dc8872a","resourceName":"omnia.workplace.colorschemas.journey","version":{"js":"3a38b36495d5657e590e1da80c1999ad"},"availableBundleTargetTypes":["js"],"dependingOnManifests":[{"resourceId":"a5a89056-b5f5-475d-8518-a1f55090379d"},{"resourceId":"dee030cc-4ab3-4158-bb06-8049f5c67542"}]},{"elementName":"omnia-workplace-templates-journey","manifestType":"webcomponent","resourceId":"682077b5-75c7-4b20-86cb-f438346e0ed3","resourceName":"omnia.workplace.templates.journey","version":{"js":"7b7c924d3f06fa36963c415f446e1eb1"},"availableBundleTargetTypes":["js"],"dependingOnManifests":[{"resourceId":"a5a89056-b5f5-475d-8518-a1f55090379d"},{"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":"a623b35eeeef5415aaa5ae10357590c5"},"availableBundleTargetTypes":["js"],"dependingOnManifests":[{"resourceId":"a5a89056-b5f5-475d-8518-a1f55090379d"},{"resourceId":"dee030cc-4ab3-4158-bb06-8049f5c67542"}]},{"elementName":"omnia-workplace-components-journey","manifestType":"webcomponent","resourceId":"56efc575-579e-4da3-bb45-d3a45d8c0888","resourceName":"omnia.workplace.components.journey","version":{"js":"acc6325baba48c83018fbbe993e42865"},"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":"6b8c0fd737b9230a8c478414556bdd7d"},"availableBundleTargetTypes":["js"],"dependingOnManifests":[{"resourceId":"a5a89056-b5f5-475d-8518-a1f55090379d"},{"resourceId":"dee030cc-4ab3-4158-bb06-8049f5c67542"}]},{"elementName":"omnia-workplace-typography-journey","manifestType":"webcomponent","resourceId":"fc2401c7-c338-4790-ae7c-e17d05b0855f","resourceName":"omnia.workplace.typography.journey","version":{"js":"625d1804afa7a0e43062121862505da8"},"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":"
|
|
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":"7ec438b6f21114181ebb39052ec81d40"},"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":"413a730ffd3a05db56f3accc625b7047"},"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-hub-feed-settings","manifestType":"webcomponent","resourceId":"baecc575-9107-4830-a5ae-2dda9f6b5ed5","resourceName":"HubFeed.settings","version":{"js":"
|
|
1
|
+
{"target":4,"omniaServiceId":"bb000000-0000-bbbb-0000-0000000000bb","webcomponent":[{"elementName":"omfx-hub-feed-settings","manifestType":"webcomponent","resourceId":"baecc575-9107-4830-a5ae-2dda9f6b5ed5","resourceName":"HubFeed.settings","version":{"js":"8ad9490f7fd1fb8e48814b0d27fa0d05"},"availableBundleTargetTypes":["js"],"dependingOnManifests":[{"resourceId":"dee030cc-4ab3-4158-bb06-8049f5c67542"}]}]}
|