@omnia/runtime 8.0.84-dev → 8.0.85-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 +1 -1
- package/dist/bundles/omnia.fx.ux.vuetify.combobox_0edad567-65c0-433f-a871-a59e460d70f0.css +1 -1
- package/dist/bundles/omnia.fx.ux.vuetify.datatable_188aee53-149a-4bc0-9039-59ffd918df2c.css +4 -0
- package/dist/bundles/omnia.fx.ux.vuetify.datepicker_0ab2c44b-d945-40f8-8042-0800a52d7c86.css +3 -6
- package/dist/bundles/omnia.fx.ux.vuetify.shared_8769dc42-712d-4ce2-8d32-4b8604b92ae6.css +7 -8
- package/dist/bundles/omnia.fx.ux.vuetify.textinput_181ff5d3-896f-4471-b516-3a347fe9e35d.css +4 -0
- package/dist/localizations/bb000000-0000-bbbb-0000-0000000000bb_localized.loc.editor.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_public_manifests.json +1 -1
- package/package.json +5 -5
package/dist/bundles/omnia.fx.ux.vuetify.datepicker_0ab2c44b-d945-40f8-8042-0800a52d7c86.css
CHANGED
|
@@ -246,15 +246,12 @@
|
|
|
246
246
|
grid-area: content;
|
|
247
247
|
justify-content: space-between;
|
|
248
248
|
}
|
|
249
|
+
.v-date-picker-header--clickable .v-date-picker-header__content {
|
|
250
|
+
cursor: pointer;
|
|
251
|
+
}
|
|
249
252
|
.v-date-picker-header--clickable .v-date-picker-header__content:not(:hover) {
|
|
250
253
|
opacity: 0.7;
|
|
251
254
|
}
|
|
252
|
-
.v-date-picker--month .v-date-picker-header__content {
|
|
253
|
-
opacity: 1;
|
|
254
|
-
}
|
|
255
|
-
.v-date-picker--year .v-date-picker-header__content {
|
|
256
|
-
cursor: pointer;
|
|
257
|
-
}
|
|
258
255
|
|
|
259
256
|
.date-picker-header-transition-enter-active,
|
|
260
257
|
.date-picker-header-reverse-transition-enter-active {
|
|
@@ -2449,9 +2449,6 @@ html.v-overlay-scroll-blocked {
|
|
|
2449
2449
|
.v-input--hide-spin-buttons input[type=number] {
|
|
2450
2450
|
-moz-appearance: textfield;
|
|
2451
2451
|
}
|
|
2452
|
-
.v-input--plain-underlined .v-input__details {
|
|
2453
|
-
padding: 0;
|
|
2454
|
-
}
|
|
2455
2452
|
.v-input--plain-underlined .v-input__prepend,
|
|
2456
2453
|
.v-input--plain-underlined .v-input__append {
|
|
2457
2454
|
align-items: flex-start;
|
|
@@ -2484,11 +2481,6 @@ html.v-overlay-scroll-blocked {
|
|
|
2484
2481
|
.v-table .v-table-divider {
|
|
2485
2482
|
border-right: thin solid rgba(var(--v-border-color), var(--v-border-opacity));
|
|
2486
2483
|
}
|
|
2487
|
-
.v-table .v-icon {
|
|
2488
|
-
font-size: 1.5rem;
|
|
2489
|
-
height: 1.5rem;
|
|
2490
|
-
width: 1.5rem;
|
|
2491
|
-
}
|
|
2492
2484
|
.v-table .v-table__wrapper > table > thead > tr > th {
|
|
2493
2485
|
border-bottom: thin solid rgba(var(--v-border-color), var(--v-border-opacity));
|
|
2494
2486
|
}
|
|
@@ -2888,11 +2880,17 @@ textarea.v-field__input::placeholder {
|
|
|
2888
2880
|
opacity: 1;
|
|
2889
2881
|
}
|
|
2890
2882
|
}
|
|
2883
|
+
@media (hover: none) {
|
|
2884
|
+
.v-field__clearable {
|
|
2885
|
+
opacity: 1;
|
|
2886
|
+
}
|
|
2887
|
+
}
|
|
2891
2888
|
|
|
2892
2889
|
/* endregion */
|
|
2893
2890
|
/* region LABEL */
|
|
2894
2891
|
.v-label.v-field-label {
|
|
2895
2892
|
contain: layout paint;
|
|
2893
|
+
display: block;
|
|
2896
2894
|
margin-inline-start: var(--v-field-padding-start);
|
|
2897
2895
|
margin-inline-end: var(--v-field-padding-end);
|
|
2898
2896
|
max-width: calc(100% - var(--v-field-padding-start) - var(--v-field-padding-end));
|
|
@@ -3042,6 +3040,7 @@ textarea.v-field__input::placeholder {
|
|
|
3042
3040
|
.v-field--variant-outlined .v-field__outline__notch {
|
|
3043
3041
|
flex: none;
|
|
3044
3042
|
position: relative;
|
|
3043
|
+
max-width: calc(100% - 12px);
|
|
3045
3044
|
}
|
|
3046
3045
|
.v-field--variant-outlined .v-field__outline__notch::before, .v-field--variant-outlined .v-field__outline__notch::after {
|
|
3047
3046
|
opacity: var(--v-field-border-opacity);
|
|
@@ -26,6 +26,10 @@
|
|
|
26
26
|
.v-text-field .v-input__details {
|
|
27
27
|
padding-inline: 16px;
|
|
28
28
|
}
|
|
29
|
+
.v-input--plain-underlined.v-text-field .v-input__details {
|
|
30
|
+
padding-inline: 0;
|
|
31
|
+
}
|
|
32
|
+
|
|
29
33
|
.v-text-field .v-field--no-label input,
|
|
30
34
|
.v-text-field .v-field--active input {
|
|
31
35
|
opacity: 1;
|
package/dist/localizations/bb000000-0000-bbbb-0000-0000000000bb_localized.loc.editor.en-us.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"Omnia":{"Ux":{"LayoutEngine":{"PlaceHolders":{"SelectPlaceHolder":"Select Place Holder","App":"App"},"ClipBoard":{"ClipBoardExported":"Selected items are exported to clipboard","ClipBoardCleared":"The clipboard is cleared","ImportClipboard":"Import clipboard","Title":"Clipboard","Selected":"Selected","ExportClipBoard":"Export Clipboard","EditClipboardNames":"Edit Clipboard Labels","SaveClipboardNames":"Save Clipboard Labels","ClearClipboard":"Clear Clipboard","DeleteItems":"Delete Items"},"DeveloperTools":{"DialogTitle":"Layout Tools"},"LayoutTemplates":{"Title":"Layout Templates"},"Labels":{"OrphanedBlocks":"Orphaned Blocks","Title":"Title","CustomTheme":"Custom Theme","ShowAdvancedSettings":"Show Advanced Settings","HideAdvancedSettings":"Hide Advanced Settings","AnchorName":"Anchor Name","CustomAnchorName":"Custom Anchor Name","ScrollIntoView":"Scroll anchor into view"},"Buttons":{"AddColor":"Add Color","Random":"Random","DesignLayout":"Design Layout","OpenEditor":"Open Editor"},"LayoutStructure":{"Layout":"Layout","Title":"
|
|
1
|
+
{"Omnia":{"Ux":{"LayoutEngine":{"PlaceHolders":{"SelectPlaceHolder":"Select Place Holder","App":"App"},"ClipBoard":{"ClipBoardExported":"Selected items are exported to clipboard","ClipBoardCleared":"The clipboard is cleared","ImportClipboard":"Import clipboard","Title":"Clipboard","Selected":"Selected","ExportClipBoard":"Export Clipboard","EditClipboardNames":"Edit Clipboard Labels","SaveClipboardNames":"Save Clipboard Labels","ClearClipboard":"Clear Clipboard","DeleteItems":"Delete Items"},"DeveloperTools":{"DialogTitle":"Layout Tools"},"LayoutTemplates":{"Title":"Layout Templates"},"Labels":{"OrphanedBlocks":"Orphaned Blocks","Title":"Title","CustomTheme":"Custom Theme","ShowAdvancedSettings":"Show Advanced Settings","HideAdvancedSettings":"Hide Advanced Settings","AnchorName":"Anchor Name","CustomAnchorName":"Custom Anchor Name","ScrollIntoView":"Scroll anchor into view"},"Buttons":{"AddColor":"Add Color","Random":"Random","DesignLayout":"Design Layout","OpenEditor":"Open Editor"},"LayoutStructure":{"Layout":"Layout","Title":"Layout Explorer","Section":"Section","Column":"Column","Step":"Step","Tab":"Tab","Panel":"Panel","Unknown":"Unknown"},"Panels":{"Background":{"PageImage":"Editable in write mode","MappedEnterpriseProperty":"Page Image Property","SelectedBgSize":"auto","SelectedBgPosition":"initial","SelectedBgRepeat":"repeat","SelectedBgAttachment":"scroll","Opacity":"Opacity","BlurEffect":"Blur Effect","AddImage":"Add Image","BackgroundGradient":"Background Gradient","BackgroundOverflow":"Background Overflow","BgSizes":{"CustomSize":"Custom Size","Title":"Size","Auto":"Auto","Cover":"Cover","Custom":"Custom"},"BgPositions":{"Title":"Position","Initial":"Initial","Left":"Left","Top":"Top","Center":"Center","Right":"Right","Bottom":"Bottom"},"BgRepeat":{"Title":"Repeat","Repeat":"Repeat","RepeatX":"Repeat X","RepeatY":"Repeat Y","NoRepeat":"No Repeat"},"BgAttachment":{"Title":"Scroll Behavior","Scroll":"Scroll","Fixed":"Fixed","Local":"Local "}},"BlockSettings":{"HeaderTheming":"Theming","ThemingType":"Theming Type","Inherit":"Inherit","Custom":"Custom","Advanced":"Advanced","BlockMargin":"Block Margin","General":"General","Color":"Color","Chrome":"Chrome","CSS":"Custom CSS","Settings":"Settings","Layout":"Layout","Targeting":"Targeting","Header":"Header","CSSClasses":"Custom CSS Classes","CSSStyling":"Custom CSS Style","HideControlHeader":"Visibility","HideControlLabel":"Hide Block","ChromeColor":"Chrome Color","ChromeSize":"Chrome Size","ChromeBorder":"Border","DisplayBreakPointSettings":{"Enable":"Enable display breakpoint settings"}},"Lock":{"Lock":"Lock","LockedByDefaut":"Locked by default","LockCanBeEdited":"Lock can be edited"},"BlockTitleSettings":{"BackgroundColor":"Background Color","TextMargin":"Text Margin","FontSize":"Font Size","TextColor":"Text Color","TextAlign":"Text Align","SeparatorColor":"Separator Color","SeparatorSize":"Separator Size","SeparatorPosition":"Separator Position","SeparatorPositions":{"Top":"Top","Left":"Left","Bottom":"Bottom","Right":"Right"},"Text":"Text","Style":"Style","Icon":"Icon","FollowTheming":"Follow Theming","Radius":"Border Radius","PreviewHeader":"Title Preview","UseGlobalSettings":"Use global settings","CustomSettings":"Custom settings","Save":"Save","TabHeader":"Content Header","DisplayIcon":"Display Title Icon","IconElevation":"Icon Elevation","IconSizeLabel":"Icon Size","IconPositionLabel":"Icon Position","BackgroundColorIcon":"Background Color Icon","IconColor":"Icon Color","BorderLabel":"Icon Border","BorderColor":"Icon Border Color","IconSpacing":"Icon Spacing","IconSize":{"Small":"Small","Medium":"Medium","Large":"Large","ExtraLarge":"Extra Large"},"IconPosition":{"Inline":"Inline","TopLeft":"Top Left","TopRight":"Top Right","Right":"Right","Left":"Left"}},"ColumnSettings":{"Column":"Col","Chrome":"Chrome","None":"None","Boxed":"Boxed","Color":"Color","BackgroundColor":"Background Color","CSS":"Custom CSS","CSSClasses":"Custom CSS Classes","MinWidth":"Min Width"},"TabSettings":{"Flat":"Flat Header","Collapsed":"Collapsed Accordion","SingleSelect":"Single Select","SliderColor":"Slider Color","Color":"Color","CustomSize":"Custom Size","MinHeight":"Min Height","MinWidth":"Min Width","BorderRadius":"Border Radius","BorderRadiusOnAllTabs":"Border Radius on all tabs","Vertical":"Vertical","FillSpace":"Fill Space","IconAlignment":"Icon Alignment","TextColor":"Text Color","IconColor":"Icon Color","SelectedIconColor":"Selected Icon Color","SelectedTextColor":"Selected Text Color","LabelPadding":"Label Padding","Tab":"Tab","Accordion":"Accordion","Stepper":"Stepper","Label":"Label","Tooltip":"Tooltip","Icon":"Icon","TabAlignment":"Tab Alignment","ShowActiveTabSlider":"Show Active Slider","BackgroundColorTabs":"Background Color Tabs","TabColor":"Tab Color","SelectedTabColor":"Selected Tab Color","TextColorTabs":"Text Color Tabs"},"AccordionSettings":{"AddPanel":"Add Panel","RemovePanel":"Remove Panel","RemovePanelConfirmation":"Are you sure you want to remove this panel?"},"TabsSettings":{"AddTab":"Add Tab","RemoveTab":"Remove Tab","RemoveTabConfirmation":"Are you sure you want to remove this tab?"},"ColumnsSettings":{"AddColumn":"Add Column"},"StepperSettings":{"AddStep":"Add Step","Vertical":"Vertical","AllowToJumpToAnyStep":"Allow user to jump to any step","Labels":"Labels","NoLabel":"No label","LabelsBesideNumber":"Labels beside numbers","LabelsBelowNumber":"Labels below numbers","ScrollToTopOnSelectedStep":"Scroll to top on Previous/Next","RemoveStep":"Remove Step","RemoveStepConfirmation":"Are you sure you want to remove this step?","MoveStep":"Move Step"},"LayoutSettings":{"Title":"Layout","Style":"Style","GlobalHeader":"Header","BlockHeader":"Block Header","LayoutTheming":"Layout Theming","BlockTheming":"Block Theming","MiddleAlignVertical":"Middle aligned layout"},"SectionSettings":{"BorderWidth":"Border Width","BorderColor":"Border Color","ThemingBlocks":"Block Theming","StyleHeader":"Style","SpacingHeader":"Spacing","HeaderSettings":"Header Settings","TenantHeaderBackground":"Tenant Header Background Color","AppHeaderBackground":"App Header Background Color","Title":"Section","SectionType":"Section Type","General":"General","Background":"Background","BackgroundColor":"Background Color","BorderRadiusTop":"Border Radius Top","BorderRadiusBottom":"Border Radius Bottom","AcrylicEffect":"Acrylic Transparency Effect","Alignment":"Alignment","WidthType":"Width Type","FullPage":"Full Page","Fixed":"Fixed","Blocks":"Blocks","BlockSpacing":"Block Spacing","SectionMargin":"Section Padding","HideControlHeader":"Visibility","HideControlLabel":"Hide Section","Decorations":"Decoration","BackgroundImage":"Background Image","Columns":"Columns","Panels":"Panels","Tabs":"Tabs","Steps":"Steps","Settings":"Settings","ColumnSpacing":"Column Spacing","CSS":"Custom CSS","CSSClasses":"Custom CSS Classes","CSSStyling":"Custom CSS Styling","Layout":"Layout","Advanced":"Advanced","Targeting":"Targeting","Header":"Header","MinHeight":"Minimum Height","Elevation":"Elevation","Effects":"Effects","ShapeDivider":"Divider Effects","UseFullHeight":"Use Full Height","LazyLoad":"Lazy Load","DisableLazyLoad":"Disable Lazy Load"},"CanvasSettings":{"CanvasPadding":"Canvas Padding"},"Common":{"LinearGradient":"Linear Gradient","RadialGradient":"Radial Gradient"}},"PredefinedSections":{"PlaceHolder":"Place Holder","OneColumn":"1 Column","TwoColumns":"2 Columns","ThreeColumn":"3 Columns","Center":"Center","Hero":"Hero","Tab":"Tabs","Slider":"Slider"},"DisplayBreakPoints":{"ExtraSmall":"Extra Small","Small":"Small","Medium":"Medium","Large":"Large","Email":"E-mail"},"Dialogs":{"DisplayBreakPoints":{"Title":"Display Breakpoint Settings"},"DeleteBlock":{"Title":"Delete Block","ConfirmationMessage":"Are you sure you want to delete the block?"},"DeleteSection":{"Title":"Delete Section","ConfirmationMessage":"Are you sure you want to delete the section?"},"RemoveColumn":{"Title":"Remove Column","ConfirmationMessage":"Are you sure you want to remove the column?"},"UnlockBLock":{"Title":"Unlock Block","ConfirmationMessage":"Are you sure you want unlock the block and stop inheriting block settings?"},"LockBlock":{"Title":"Lock Block","ConfirmationMessage":"Are you sure you want to discard the local block settings?"},"AddBlocks":{"Title":"Add Content","SearchForABlock":"Search for a block","NoBlocksFound":"No blocks found."}},"BlockCategories":{"Layout":"Layout","Miscellaneous":"Miscellaneous"},"BlockMessages":{"BlockRegistrationNotFound":"Block Registration is not found.","FeatureDependencyNotValid":"Feature Dependency is not valid.","LayoutDependencyNotValid":"Layout Dependency is not valid.","ClientRuntimesDependencyNotValid":"Client runtimes dependency is not valid","BackendRuntimesDependencyNotValid":"Backend runtimes dependency is not valid"}}}}}
|
|
@@ -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":"421e73ccb49e56305c4661496c4403e1"},"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":"458509ebf57809e9c535e23c62cf17a1"},"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":"71a3470ef51cf0650e9151880707551d"},"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":"b612be599d043189f3271e9369aaef61"},"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":"68d6ca7556b762b6fa8ccd768235de2d"},"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":"890391b369939bbe139abdd2795676ed"},"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":"c29da7142d5341ff1361357a08260d88"},"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":"13d261b0512010c7794682c70f7f8242"},"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":"1e08c23a5e5ef4cb434df45c2f44739e"},"availableBundleTargetTypes":["js"],"dependingOnManifests":[{"resourceId":"a5a89056-b5f5-475d-8518-a1f55090379d"},{"resourceId":"dee030cc-4ab3-4158-bb06-8049f5c67542"}]},{"elementName":"omnia-workplace-chrome-definition-journey","manifestType":"webcomponent","resourceId":"04edd88c-a5e9-495b-b845-204df6b6ac67","resourceName":"omnia.workplace.colorschemas.journey","version":{"js":"e62c8a9c028818a6931cfd962c84f864"},"availableBundleTargetTypes":["js"],"dependingOnManifests":[{"resourceId":"a5a89056-b5f5-475d-8518-a1f55090379d"},{"resourceId":"dee030cc-4ab3-4158-bb06-8049f5c67542"}]},{"elementName":"omnia-workplace-blueprints-journey","manifestType":"webcomponent","resourceId":"56efc575-579e-4da3-bb45-d3a45d8c0888","resourceName":"omnia.workplace.blueprints.journey","version":{"js":"ec6bc5c65a76c8b9b3c1526a3c927c1b"},"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":"e9eccd95111b995c50be0ea71d25f92a"},"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":"07481e69e7401d926ca7a14cc4c486ff"},"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":"8e46812fde3d3c5923f45f608fad932f"},"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":"b8284b12deadf4ec054c12a2c6a37731"},"availableBundleTargetTypes":["js"],"dependingOnManifests":[{"resourceId":"a5a89056-b5f5-475d-8518-a1f55090379d"}],"extendApi":["fx.docs.registrations"]}]}
|