@omnia/fx 8.0.296-dev → 8.0.297-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/internal-do-not-import-from-here/contexts/OmniaContext.d.ts +2 -2
- package/internal-do-not-import-from-here/contexts/OmniaContextProvider.d.ts +2 -2
- package/internal-do-not-import-from-here/manifests/omnia.fx.ux.manifest.json +1 -1
- package/internal-do-not-import-from-here/stores/oxide/ComponentHostStore.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/Exposes.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/Styles.stylex.d.ts +87 -87
- package/internal-do-not-import-from-here/ux/VueComponentBase.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/app/ExposeToUxCore.d.ts +5 -0
- package/internal-do-not-import-from-here/ux/app/index.d.ts +1 -5
- package/internal-do-not-import-from-here/ux/app/management/tabs/instance/EditPermissionDialog.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/aurora/admin/blades/themes/models/Theme.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/aurora/admin/blades/themes/store/ThemeEditorStore.d.ts +11 -11
- package/internal-do-not-import-from-here/ux/aurora/components/backgroundstyle/BackgroundStyleViewer.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/aurora/components/borderpicker/BorderPreview.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/aurora/components/chrome/ChromeViewer.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/aurora/components/colorpickerV2/ColorPicker.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/aurora/components/colorschemapicker/ColorSchemaPicker.d.ts +7 -7
- package/internal-do-not-import-from-here/ux/aurora/components/colorschemapicker/ColorSchemaViewer.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/aurora/components/fillpicker/FillPreview.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/aurora/components/stylepicker/StylePicker.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/aurora/components/themepicker/ThemeEditor.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/aurora/components/themepicker/ThemePicker.css.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/aurora/components/themepicker/ThemePicker.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/aurora/components/themepicker/ThemeViewer.d.ts +4 -4
- package/internal-do-not-import-from-here/ux/aurora/designkits/default/themes/ThemeDefinitions.d.ts +12 -12
- package/internal-do-not-import-from-here/ux/aurora/designkits/default/useDefaultDesignKit.d.ts +11 -11
- package/internal-do-not-import-from-here/ux/aurora/designkits/documentation/themes/ThemeDefinitions.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/aurora/designkits/documentation/useDocumentationDesignKit.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/aurora/designkits/editor/themes/ThemeDefinitions.d.ts +3 -3
- package/internal-do-not-import-from-here/ux/aurora/designkits/editor/useEditorDesignKit.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/aurora/designkits/shared/ThemeDefinitionInstance.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/aurora/designkits/useDesignKits.d.ts +14 -14
- package/internal-do-not-import-from-here/ux/aurora/index.d.ts +0 -1
- package/internal-do-not-import-from-here/ux/aurora/store/ColorManager.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/aurora/store/ColorSchemaStore.d.ts +12 -3
- package/internal-do-not-import-from-here/ux/aurora/store/FontStore.d.ts +5 -6
- package/internal-do-not-import-from-here/ux/aurora/store/SpacingBlueprintStore.d.ts +24 -7428
- package/internal-do-not-import-from-here/ux/aurora/store/ThemeContextStore.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/aurora/store/ThemeService.d.ts +10 -0
- package/internal-do-not-import-from-here/ux/aurora/{themingV3/store/ThemingStore.d.ts → store/ThemeStorage.d.ts} +14 -15
- package/internal-do-not-import-from-here/ux/aurora/store/{ThemeStoreV2.d.ts → ThemeStore.d.ts} +1 -1
- package/internal-do-not-import-from-here/ux/aurora/store/TypographyBlueprintStore.d.ts +24 -7428
- package/internal-do-not-import-from-here/ux/aurora/store/index.d.ts +3 -2
- package/internal-do-not-import-from-here/ux/aurora/styling/UseStyling.d.ts +6 -12
- package/internal-do-not-import-from-here/ux/aurora/styling/styles/Blueprints.d.ts +12 -9
- package/internal-do-not-import-from-here/ux/aurora/styling/styles/Chrome.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/aurora/styling/styles/Colors.d.ts +3 -3
- package/internal-do-not-import-from-here/ux/aurora/styling/styles/General.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/aurora/styling/styles/Spacing.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/aurora/styling/styles/Typography.d.ts +18 -18
- package/internal-do-not-import-from-here/ux/aurora/themeprovider/ThemeProvider.d.ts +12 -12
- package/internal-do-not-import-from-here/ux/datetimepicker/DateTimePicker.d.ts +0 -2
- package/internal-do-not-import-from-here/ux/dialog/Dialog.d.ts +3 -3
- package/internal-do-not-import-from-here/ux/governancedashboard/BarChartIndicator.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/identitypicker/IdentityPickerDialog.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/image/scalingsettings/ScalingSettings.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/blockplaceholder/BlockPlaceholder.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/canvastoolbar/CanvasToolbar.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/TemplatePreview.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/blocktitle/BlockTitle.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/sizecontainer/SizeContainer.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/targetselector/TargetSelector.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/layoutcanvas/layoutactionhandler/LayoutAction.stylex.d.ts +3 -3
- package/internal-do-not-import-from-here/ux/layoutcanvas/renderer/LayoutRendererCanvas.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/layoutcanvas/renderer/LayoutRendererCanvas.stylex.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/layoutcanvas/shared/LayoutEditorThemingManager.d.ts +4 -4
- package/internal-do-not-import-from-here/ux/layoutcanvas/shared/ThemingRenditionManager.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/layoutcanvas/shared/layoutItemselector/LayoutItemSelection.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/layoutcanvas/shared/layoutItemselector/LayoutItemSelection.stylex.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/layoutcanvas/shared/layoutItemselector/LayoutItemSelector.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/layoutcanvas/shared/layoutItemselector/LayoutItemSelector.stylex.d.ts +11 -11
- package/internal-do-not-import-from-here/ux/layoutcanvas/shared/layoutitemsrenderer/LayoutBlockRenderer.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/layoutcanvas/shared/layoutitemsrenderer/LayoutSectionRenderer.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/layoutcanvas/stores/LayoutCanvasStore.d.ts +7 -7
- package/internal-do-not-import-from-here/ux/markdown/MarkdownEditor.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/mediapickerimage/MediaPickerImage.css.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/mediapickerimage/MediaPickerImage.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/messaging/InternalTopics.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/messaging/Topics.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/monaco/MonacoEditor.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/oxide/appbar/Appbar.stylex.d.ts +15 -15
- package/internal-do-not-import-from-here/ux/oxide/avatar/Avatar.stylex.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/oxide/btn/Button.stylex.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/oxide/btngroup/ButtonGroup.stylex.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/oxide/card/Card.css.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/oxide/checkbox/Checkbox.stylex.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/oxide/chip/Chip.stylex.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/oxide/colorpicker/ColorPicker.stylex.d.ts +6 -6
- package/internal-do-not-import-from-here/ux/oxide/column/Column.stylex.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/oxide/datatable/DataTable.stylex.d.ts +3 -3
- package/internal-do-not-import-from-here/ux/oxide/dialog/Dialog.stylex.d.ts +11 -11
- package/internal-do-not-import-from-here/ux/oxide/divider/Divider.stylex.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/oxide/draggable/Draggable.stylex.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/oxide/expansionpanel/ExpansionPanel.stylex.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/oxide/expansionpanel/ExpansionPanels.stylex.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/oxide/flex/Row.stylex.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/oxide/form/Form.stylex.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/oxide/icon/Icon.stylex.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/oxide/inputfield/InputField.stylex.d.ts +3 -3
- package/internal-do-not-import-from-here/ux/oxide/layout/Layout.stylex.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/oxide/lazy/Lazy.d.ts +2 -1
- package/internal-do-not-import-from-here/ux/oxide/link/link.stylex.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/oxide/list/List.stylex.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/oxide/list/ListItem.stylex.d.ts +3 -3
- package/internal-do-not-import-from-here/ux/oxide/menu/Menu.stylex.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/oxide/motion/Motion.d.ts +12 -4
- package/internal-do-not-import-from-here/ux/oxide/navigationdrawer/NavigationDrawer.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/oxide/navigationdrawer/NavigationDrawer.stylex.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/oxide/notification/Notification.stylex.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/oxide/pagination/Pagination.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/oxide/panel/Panel.stylex.d.ts +6 -6
- package/internal-do-not-import-from-here/ux/oxide/radio/Radio.stylex.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/oxide/radio/RadioGroup.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/oxide/radio/RadioGroup.stylex.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/oxide/rangeslider/RangeSlider.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/oxide/rangeslider/RangeSlider.stylex.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/oxide/scrollcontainer/ScrollContainer.stylex.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/oxide/select/Select.stylex.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/oxide/slidepanel/SlidePanel.stylex.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/oxide/slider/Slider.stylex.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/oxide/splitpane/Splitpane.stylex.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/oxide/stepper/Stepper.stylex.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/oxide/stickycontainer/StickyContainer.stylex.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/oxide/switch/Switch.stylex.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/oxide/tab/Tab.stylex.d.ts +4 -4
- package/internal-do-not-import-from-here/ux/oxide/tab/Tabs.stylex.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/oxide/table/Table.stylex.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/oxide/text/Text.stylex.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/oxide/textarea/TextArea.stylex.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/oxide/toolbar/Toolbar.stylex.d.ts +6 -6
- package/internal-do-not-import-from-here/ux/oxide/treeview/Treeview.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/oxide/treeview/Treeview.stylex.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/post/IPost.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/post/Post.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/post/templates/PostTemplate.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/rollupempty/RollupEmpty.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/securitytrimmer/SecurityTrimmer.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/settings/SettingsPane.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/social/Comment.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/social/templates/CommentLikeTemplate.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/theming/InternalTheming.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/theming/ThemeManager.d.ts +6 -6
- package/internal-do-not-import-from-here/ux/theming/ThemeStore.d.ts +7 -7
- package/internal-do-not-import-from-here/ux/theming/Theming.d.ts +3 -3
- package/internal-do-not-import-from-here/ux/use/UseColorSchemaSetup.d.ts +4 -0
- package/internal-do-not-import-from-here/ux/use/UseDraggable.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/velcron/VelcronStylesProvider.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/velcron/components/definitionpicker/VelcronDefinitionPicker.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/velcron/components/definitionpicker/VelcronDefinitionPreview.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/velcron/core/parser/VelcronStyles.d.ts +4 -4
- package/internal-do-not-import-from-here/ux/velcron/editor/stores/VelcronEditorStore.d.ts +3 -3
- package/internal-do-not-import-from-here/ux/velcron/renderer/VelcronRenderer.d.ts +7 -7
- package/internal-do-not-import-from-here/ux/velcron/renderer/VelcronRenderer.stylex.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/velcron/renderer/editors/AlignmentEditor.d.ts +76 -76
- package/internal-do-not-import-from-here/ux/versionedlayout/editor/LayoutEditorTabRenderer.d.ts +9 -9
- package/internal-do-not-import-from-here/ux/versionedlayout/editor/VersionedLayoutDefinitionEditorItem.d.ts +3 -3
- package/internal-do-not-import-from-here/ux/versionedlayout/editor/VersionedLayoutDefinitionEditorItemFactory.d.ts +3 -3
- package/internal-do-not-import-from-here/ux/versionedlayout/renderer/InternalVersionedLayoutRenderer.d.ts +9 -9
- package/internal-do-not-import-from-here/ux/versionedlayout/renderer/VersionedLayoutRenderer.d.ts +15 -15
- package/package.json +2 -2
- package/internal-do-not-import-from-here/ux/aurora/store/ThemingService.d.ts +0 -10
- package/internal-do-not-import-from-here/ux/aurora/themingV3/index.d.ts +0 -3
- package/internal-do-not-import-from-here/ux/aurora/themingV3/model/ThemingBoot.d.ts +0 -7
- package/internal-do-not-import-from-here/ux/aurora/themingV3/model/index.d.ts +0 -1
- package/internal-do-not-import-from-here/ux/aurora/themingV3/service/ThemingService.d.ts +0 -9
- package/internal-do-not-import-from-here/ux/aurora/themingV3/service/index.d.ts +0 -1
- package/internal-do-not-import-from-here/ux/aurora/themingV3/store/index.d.ts +0 -1
@@ -1,4 +1,4 @@
|
|
1
|
-
import { OmniaEnvironmentContext,
|
1
|
+
import { OmniaEnvironmentContext, Theme, OmniaTokenContext, IOmniaContext, IBusinessProfile, IMessageBusTopicSubscription, ITenant, guid, UserWithPropertyBag, IAppRoute } from "../models";
|
2
2
|
/**
|
3
3
|
* Provides Omnia related contexts. This context should be injected using @Inject(OmniaContext)
|
4
4
|
* @class OmniaContext
|
@@ -33,7 +33,7 @@ export declare class OmniaContext implements IOmniaContext {
|
|
33
33
|
/**
|
34
34
|
* Theming related context
|
35
35
|
*/
|
36
|
-
get theming():
|
36
|
+
get theming(): Theme;
|
37
37
|
/**
|
38
38
|
* Information about current user
|
39
39
|
*/
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { IOmniaContext, IMutableContextProvider, OmniaEnvironmentContext,
|
1
|
+
import { IOmniaContext, IMutableContextProvider, OmniaEnvironmentContext, Theme, OmniaTokenContext, IMessageBusTopicSubscription, IMutableContext, IBusinessProfile, HttpHeaders, ITenant, guid, UserWithPropertyBag, IAppRoute, AppInstanceContext } from "../models";
|
2
2
|
import { AxiosResponse } from "axios";
|
3
3
|
declare global {
|
4
4
|
let _spPageContextInfo: {
|
@@ -22,7 +22,7 @@ export declare class OmniaContextProvider implements IMutableContextProvider<IOm
|
|
22
22
|
get businessProfile(): IBusinessProfile;
|
23
23
|
get appRoute(): IAppRoute;
|
24
24
|
get tenant(): ITenant;
|
25
|
-
get theming():
|
25
|
+
get theming(): Theme;
|
26
26
|
get user(): Promise<UserWithPropertyBag>;
|
27
27
|
get tokens(): OmniaTokenContext;
|
28
28
|
get activatedFeatures(): guid[];
|
@@ -1 +1 @@
|
|
1
|
-
{"name":"omniaWebpackJsonp['bb000000-0000-bbbb-0000-0000000000bb']['dee030cc-4ab3-4158-bb06-8049f5c67542']","content":{"./node_modules/@omnia/fx/ux/AnchorLink.js":{"id":"./node_modules/@omnia/fx/ux/anchorlink.js","buildMeta":{"exportsType":"namespace"},"expo.js":["AnchorLink"]},"./node_modules/@omnia/fx/ux/appprovisioning/Enums.js":{"id":"./node_modules/@omnia/fx/ux/appprovisioning/enums.js","buildMeta":{"exportsType":"namespace"},"expo.js":["AppInstanceProgressActions"]},"./node_modules/@omnia/fx/ux/BlockInstance.js":{"id":"./node_modules/@omnia/fx/ux/blockinstance.js","buildMeta":{"exportsType":"namespace"},"expo.js":["BlockInstance"]},"./node_modules/@omnia/fx/ux/confirmdialog/IConfirmDialog.js":{"id":"./node_modules/@omnia/fx/ux/confirmdialog/iconfirmdialog.js","buildMeta":{"exportsType":"namespace"},"expo.js":["ConfirmDialogDisplay"]},"./node_modules/@omnia/fx/ux/confirmdialog/index.js":{"id":"./node_modules/@omnia/fx/ux/confirmdialog/index.js","buildMeta":{"exportsType":"namespace"},"expo.js":["ConfirmDialogDisplay","ConfirmDialogResponse"]},"./node_modules/@omnia/fx/ux/confirmdialog/IVueConfirmDialog.js":{"id":"./node_modules/@omnia/fx/ux/confirmdialog/ivueconfirmdialog.js","buildMeta":{"exportsType":"namespace"},"expo.js":["ConfirmDialogResponse"]},"./node_modules/@omnia/fx/ux/decorators/index.js":{"id":"./node_modules/@omnia/fx/ux/decorators/index.js","buildMeta":{"exportsType":"namespace"},"expo.js":["Emit","Options","Prop","Ref","Vue","Watch"]},"./node_modules/@omnia/fx/ux/dialog/IDialog.js":{"id":"./node_modules/@omnia/fx/ux/dialog/idialog.js","buildMeta":{"exportsType":"namespace"},"expo.js":["DialogPositions"]},"./node_modules/@omnia/fx/ux/dialog/index.js":{"id":"./node_modules/@omnia/fx/ux/dialog/index.js","buildMeta":{"exportsType":"namespace"},"expo.js":["DialogPositions"]},"./node_modules/@omnia/fx/ux/documenticon/IDocumentIcon.js":{"id":"./node_modules/@omnia/fx/ux/documenticon/idocumenticon.js","buildMeta":{"exportsType":"namespace"},"expo.js":[]},"./node_modules/@omnia/fx/ux/documenticon/index.js":{"id":"./node_modules/@omnia/fx/ux/documenticon/index.js","buildMeta":{"exportsType":"namespace"},"expo.js":[]},"./node_modules/@omnia/fx/ux/heading/IHeading.js":{"id":"./node_modules/@omnia/fx/ux/heading/iheading.js","buildMeta":{"exportsType":"namespace"},"expo.js":["HeadingSizes"]},"./node_modules/@omnia/fx/ux/inputlanguagepicker/stores/index.js":{"id":"./node_modules/@omnia/fx/ux/inputlanguagepicker/stores/index.js","buildMeta":{"exportsType":"namespace"},"expo.js":["useInputLanguageStore"]},"./node_modules/@omnia/fx/ux/InternalRouter.js":{"id":"./node_modules/@omnia/fx/ux/internalrouter.js","buildMeta":{"exportsType":"namespace"},"expo.js":["InternalRouter"]},"./node_modules/@omnia/fx/ux/journey/index.js":{"id":"./node_modules/@omnia/fx/ux/journey/index.js","buildMeta":{"exportsType":"namespace"},"expo.js":["BladeContexts","BladeSizeDefinitions","BladeSizeTypesName","BladeSizeWidths","BladeVariantDefinitions","BladeVariantTypesName","JourneyContext","defineBlade","useJourneyMenuStore","useJourneyRouterStore","useJourneyStore"]},"./node_modules/@omnia/fx/ux/layoutcanvas/index.js":{"id":"./node_modules/@omnia/fx/ux/layoutcanvas/index.js","buildMeta":{"exportsType":"namespace"},"expo.js":["BlockCatalogStore","BlockSettingsProvider","BlockSettingsReader","BlockSettingsWriter","BreakPointManager","ColumnsSectionSettings","CssBlockSettings","CssSectionSettings","DynamicStateStore","EditorLayoutItemFactory","GeneralSectionSettings","HeaderBlockSettings","HeaderSectionSettings","LayerIndex","LayoutBlockHeaderSettings","LayoutCanvasStore","LayoutDefinitionBuilder","LayoutEditorThemingManager","LayoutGlobalHeaderSettings","LayoutItemFactory","LayoutItemRules","LayoutLockExpansionItemDefinition","LayoutManager","LayoutSectionContainerHelper","LayoutStyleSettings","LayoutTemplateStore","ObjectRules","ReactiveLayoutItemsSettingsStore","SpacingBlockSettings","SpacingSectionSettings","StyleBlockSettings","StyleSectionSettings","TabBlockLayoutSettings","TabBlockSettings","TabSectionLayoutSettings","TabsLayoutSettings","TargetingBlockSettings","TargetingSectionSettings","ThemingRenditionManager","ThemingSectionSettings","mergeObjects","useBlockSettingsReader","useBlockSettingsWriter","useSettingsMenuStore"]},"./node_modules/@omnia/fx/ux/mediarenderer/MediaRendererComponentBase.tsx":{"id":"./node_modules/@omnia/fx/ux/mediarenderer/mediarenderercomponentbase.tsx","buildMeta":{"exportsType":"namespace"},"expo.js":["default"]},"./node_modules/@omnia/fx/ux/messaging/index.js":{"id":"./node_modules/@omnia/fx/ux/messaging/index.js","buildMeta":{"exportsType":"namespace"},"expo.js":["AdminNamespace","Topics"]},"./node_modules/@omnia/fx/ux/messaging/InternalTopics.js":{"id":"./node_modules/@omnia/fx/ux/messaging/internaltopics.js","buildMeta":{"exportsType":"namespace"},"expo.js":["InternalTopics"]},"./node_modules/@omnia/fx/ux/models/index.js":{"id":"./node_modules/@omnia/fx/ux/models/index.js","buildMeta":{"exportsType":"namespace"},"expo.js":["AboutUserStyles","ActionToolbarStyles","AdminChromeStyles","AnimatedGifStyles","AppInstanceRollupBlockStyles","AppInstanceRollupCardViewSettingsStyles","AppInstanceRollupCardViewStyles","AppInstanceRollupListViewSettingsStyles","AppInstanceRollupListViewStyles","AppInstanceRollupStyles","AppInstanceRollupViewBaseStyles","BarChartIndicatorStyles","ButtonWrapperStyles","ChipStyles","ChipStylesConst","CommentStyles","CurrentUserTokenIdentityPicker","DatatableWrapperStyles","DateTimePickerStyles","DialogStyles","EditorStyleSettings","EmoticonStyles","EnterpriseGlossaryTermComponentBaseStyles","EnterprisePropertyPickerStyles","FileUploaderStyles","ForceAnimatedClassname","GridViewMediaProviderComponentStyles","HeadingStyles","IconWrapperStyles","ImageGridStyles","ImageTransformerStyles","InputLanguagePickerStyles","InputTokenStyles","LanguagePickerStyles","LikeStyles","LinkElement","LinkPickerProviderContext","LinkPickerStyle","LocalizationAdminStyles","LocalizationInputStyles","MediaPickerProviderStyles","MentionStyles","MultilingualInputStyles","NumericIndicatorStyles","OrgTreeStyles","PersonFieldDisplayStyles","PersonaStyles","PostStyle","ProfilecardStyles","QueryablePropertiesStyles","ReporteesStyles","RichTextEditorRendererStyles","RichTextEditorStyles","RowVariant","SharePointVideoSettingsStyles","SidePanelStyles","SpecialUserConfiguration","StatusMessageOverlayStyles","TableMenuStyles","TagsFieldDisplayStyles","TermGlossaryMappingStyles","TextTranslatorStyles","TimeZonePickerStyles","UrlInputStyles","ValidationOnDefinitions","WizardStyles","appLayoutPlaceHolderRegistration","userPresenceStyles"]},"./node_modules/@omnia/fx/ux/MultilingualContext.js":{"id":"./node_modules/@omnia/fx/ux/multilingualcontext.js","buildMeta":{"exportsType":"namespace"},"expo.js":["MultilingualContext"]},"./node_modules/@omnia/fx/ux/OmniaTheming.js":{"id":"./node_modules/@omnia/fx/ux/omniatheming.js","buildMeta":{"exportsType":"namespace"},"expo.js":["OmniaTheming"]},"./node_modules/@omnia/fx/ux/oxide/appbar/Appbar.css":{"id":"./node_modules/@omnia/fx/ux/oxide/appbar/appbar.css","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/@omnia/fx/ux/oxide/avatar/Avatar.css":{"id":"./node_modules/@omnia/fx/ux/oxide/avatar/avatar.css","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/@omnia/fx/ux/oxide/btn/Button.css":{"id":"./node_modules/@omnia/fx/ux/oxide/btn/button.css","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/@omnia/fx/ux/oxide/btngroup/ButtonGroup.css":{"id":"./node_modules/@omnia/fx/ux/oxide/btngroup/buttongroup.css","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/@omnia/fx/ux/oxide/checkbox/Checkbox.css":{"id":"./node_modules/@omnia/fx/ux/oxide/checkbox/checkbox.css","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/@omnia/fx/ux/oxide/chip/Chip.css":{"id":"./node_modules/@omnia/fx/ux/oxide/chip/chip.css","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/@omnia/fx/ux/oxide/colorpicker/ColorPicker.css":{"id":"./node_modules/@omnia/fx/ux/oxide/colorpicker/colorpicker.css","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/@omnia/fx/ux/oxide/datatable/DataTable.css":{"id":"./node_modules/@omnia/fx/ux/oxide/datatable/datatable.css","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/@omnia/fx/ux/oxide/dialog/Dialog.css":{"id":"./node_modules/@omnia/fx/ux/oxide/dialog/dialog.css","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/@omnia/fx/ux/oxide/expansionpanel/ExpansionPanel.css":{"id":"./node_modules/@omnia/fx/ux/oxide/expansionpanel/expansionpanel.css","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/@omnia/fx/ux/oxide/icon/Icon.css":{"id":"./node_modules/@omnia/fx/ux/oxide/icon/icon.css","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/@omnia/fx/ux/oxide/inputfield/InputField.css":{"id":"./node_modules/@omnia/fx/ux/oxide/inputfield/inputfield.css","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/@omnia/fx/ux/oxide/list/List.css":{"id":"./node_modules/@omnia/fx/ux/oxide/list/list.css","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/@omnia/fx/ux/oxide/panel/Panel.css":{"id":"./node_modules/@omnia/fx/ux/oxide/panel/panel.css","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/@omnia/fx/ux/oxide/radio/Radio.css":{"id":"./node_modules/@omnia/fx/ux/oxide/radio/radio.css","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/@omnia/fx/ux/oxide/rangeslider/RangeSlider.css":{"id":"./node_modules/@omnia/fx/ux/oxide/rangeslider/rangeslider.css","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/@omnia/fx/ux/oxide/select/Select.css":{"id":"./node_modules/@omnia/fx/ux/oxide/select/select.css","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/@omnia/fx/ux/oxide/slider/Slider.css":{"id":"./node_modules/@omnia/fx/ux/oxide/slider/slider.css","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/@omnia/fx/ux/oxide/splitpane/Splitpane.css":{"id":"./node_modules/@omnia/fx/ux/oxide/splitpane/splitpane.css","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/@omnia/fx/ux/oxide/stepper/Stepper.css":{"id":"./node_modules/@omnia/fx/ux/oxide/stepper/stepper.css","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/@omnia/fx/ux/oxide/switch/Switch.css":{"id":"./node_modules/@omnia/fx/ux/oxide/switch/switch.css","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/@omnia/fx/ux/oxide/tab/Tab.css":{"id":"./node_modules/@omnia/fx/ux/oxide/tab/tab.css","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/@omnia/fx/ux/oxide/table/Table.css":{"id":"./node_modules/@omnia/fx/ux/oxide/table/table.css","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/@omnia/fx/ux/oxide/textarea/TextArea.css":{"id":"./node_modules/@omnia/fx/ux/oxide/textarea/textarea.css","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/@omnia/fx/ux/oxide/toolbar/Toolbar.css":{"id":"./node_modules/@omnia/fx/ux/oxide/toolbar/toolbar.css","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/@omnia/fx/ux/post/loc/localize.js":{"id":"./node_modules/@omnia/fx/ux/post/loc/localize.js","buildMeta":{"exportsType":"namespace"},"expo.js":["PostLocalization"]},"./node_modules/@omnia/fx/ux/social/loc/localize.js":{"id":"./node_modules/@omnia/fx/ux/social/loc/localize.js","buildMeta":{"exportsType":"namespace"},"expo.js":["CommentLocalization"]},"./node_modules/@omnia/fx/ux/StyleFlow.js":{"id":"./node_modules/@omnia/fx/ux/styleflow.js","buildMeta":{"exportsType":"namespace"},"expo.js":["StyleFlow"]},"./node_modules/@omnia/fx/ux/Styles.stylex.js":{"id":"./node_modules/@omnia/fx/ux/styles.stylex.js","buildMeta":{"exportsType":"namespace"},"expo.js":["createStylex","cssRules","mergeCssRules","styleToString"]},"./node_modules/@omnia/fx/ux/theming/index.js":{"id":"./node_modules/@omnia/fx/ux/theming/index.js","buildMeta":{"exportsType":"namespace"}},"./node_modules/@omnia/fx/ux/TokenRouterApi.js":{"id":"./node_modules/@omnia/fx/ux/tokenrouterapi.js","buildMeta":{"exportsType":"namespace"},"expo.js":["TokenRouterRegistration"]},"./node_modules/@omnia/fx/ux/UxCssRaw.css":{"id":"./node_modules/@omnia/fx/ux/uxcssraw.css","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/@omnia/fx/ux/UxDefaultRichtextStyle.js":{"id":"./node_modules/@omnia/fx/ux/uxdefaultrichtextstyle.js","buildMeta":{"exportsType":"namespace"},"expo.js":["DefaultRichtextStyles"]},"./node_modules/@omnia/fx/ux/UxFlags.css":{"id":"./node_modules/@omnia/fx/ux/uxflags.css","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/@omnia/fx/ux/UxFonts.css":{"id":"./node_modules/@omnia/fx/ux/uxfonts.css","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/@omnia/fx/ux/UxModels.js":{"id":"./node_modules/@omnia/fx/ux/uxmodels.js","buildMeta":{"exportsType":"namespace"},"expo.js":["BuiltInLocalizationKeys","OmniaUxLocalizationNamespace"]},"./node_modules/@omnia/fx/ux/UxStyles.js":{"id":"./node_modules/@omnia/fx/ux/uxstyles.js","buildMeta":{"exportsType":"namespace"},"expo.js":["Styles"]},"./node_modules/@omnia/fx/ux/validation/IComponentValidationEnabled.js":{"id":"./node_modules/@omnia/fx/ux/validation/icomponentvalidationenabled.js","buildMeta":{"exportsType":"namespace"},"expo.js":[]},"./node_modules/@omnia/fx/ux/validation/index.js":{"id":"./node_modules/@omnia/fx/ux/validation/index.js","buildMeta":{"exportsType":"namespace"},"expo.js":["LegacyFieldValueValidation"]},"./node_modules/@omnia/fx/ux/validation/loc/localize.js":{"id":"./node_modules/@omnia/fx/ux/validation/loc/localize.js","buildMeta":{"exportsType":"namespace"},"expo.js":["FieldValidationLocalization"]},"./node_modules/@omnia/fx/ux/versionedlayout/index.js":{"id":"./node_modules/@omnia/fx/ux/versionedlayout/index.js","buildMeta":{"exportsType":"namespace"},"expo.js":["LayoutEditorTabRendererInstance","VersionedLayoutBladeIds","VersionedLayoutDefinitionEditorItem","VersionedLayoutDefinitionEditorItemFactory","VersionedLayoutDefinitionEditorItemPrivateImutableState","VersionedLayoutDefinitionEditorItemState","VersionedLayoutEditorStore"]},"./node_modules/@omnia/fx/ux/app/index.js":{"id":"14a0ce2f-3699-49b2-92d3-428caac194a4","buildMeta":{"exportsType":"namespace"},"expo.js":["AppContextProvider","AppInstanceToken","AppManagementBladeIds","AppRendererBootstrapper","Router"]},"./node_modules/@omnia/fx/ux/VueComponentBase.js":{"id":"8610c059-395a-45c2-804a-8c236f4d60d9","buildMeta":{"exportsType":"namespace"},"expo.js":["VueComponentBase","VueComponentConnect","getVuetifyAppClasses"]},"./node_modules/@omnia/fx/ux/vuetify/index.js":{"id":"c02f415e-2efe-4333-9b1e-8d7abaa2c967","buildMeta":{"exportsType":"namespace"},"expo.js":["VAlert","VApp","VAvatar","VBadge","VBreadcrumbs","VBreadcrumbsItem","VBtn","VBtnToggle","VCard","VCardActions","VCardMedia","VCardText","VCardTitle","VCarousel","VCarouselItem","VCheckbox","VCombobox","VContainer","VContent","VDialog","VDivider","VFlex","VHover","VIcon","VImg","VLayout","VList","VListTile","VListTileAvatar","VListTileSubTitle","VListTileTitle","VMenu","VNavigationDrawer","VProgressCircular","VProgressLinear","VRadio","VRadioGroup","VRangeSlider","VResponsive","VSlider","VSnackbar","VSpacer","VSpeedDial","VStepper","VStepperContent","VStepperHeader","VStepperStep","VSubheader","VTab","VTabItem","VTabs","VTabsItems","VTabsSlider","VTextField","VTextarea","VToolbar","VToolbarItems","VToolbarSideIcon","VToolbarTitle","VTooltip"]},"./node_modules/@omnia/fx/ux/index.js":{"id":"d7327742-5647-4075-b7ab-4f9ca852addb","buildMeta":{"exportsType":"namespace"}},"./node_modules/@omnia/fx/ux/UxCore.js":{"id":"fe6d45fc-8977-4e32-bff4-e93cc636390e","buildMeta":{"exportsType":"namespace"},"expo.js":[]}}}
|
1
|
+
{"name":"omniaWebpackJsonp['bb000000-0000-bbbb-0000-0000000000bb']['dee030cc-4ab3-4158-bb06-8049f5c67542']","content":{"./node_modules/@omnia/fx/ux/AnchorLink.js":{"id":"./node_modules/@omnia/fx/ux/anchorlink.js","buildMeta":{"exportsType":"namespace"},"expo.js":["AnchorLink"]},"./node_modules/@omnia/fx/ux/appprovisioning/Enums.js":{"id":"./node_modules/@omnia/fx/ux/appprovisioning/enums.js","buildMeta":{"exportsType":"namespace"},"expo.js":["AppInstanceProgressActions"]},"./node_modules/@omnia/fx/ux/BlockInstance.js":{"id":"./node_modules/@omnia/fx/ux/blockinstance.js","buildMeta":{"exportsType":"namespace"},"expo.js":["BlockInstance"]},"./node_modules/@omnia/fx/ux/confirmdialog/IConfirmDialog.js":{"id":"./node_modules/@omnia/fx/ux/confirmdialog/iconfirmdialog.js","buildMeta":{"exportsType":"namespace"},"expo.js":["ConfirmDialogDisplay"]},"./node_modules/@omnia/fx/ux/confirmdialog/index.js":{"id":"./node_modules/@omnia/fx/ux/confirmdialog/index.js","buildMeta":{"exportsType":"namespace"},"expo.js":["ConfirmDialogDisplay","ConfirmDialogResponse"]},"./node_modules/@omnia/fx/ux/confirmdialog/IVueConfirmDialog.js":{"id":"./node_modules/@omnia/fx/ux/confirmdialog/ivueconfirmdialog.js","buildMeta":{"exportsType":"namespace"},"expo.js":["ConfirmDialogResponse"]},"./node_modules/@omnia/fx/ux/decorators/index.js":{"id":"./node_modules/@omnia/fx/ux/decorators/index.js","buildMeta":{"exportsType":"namespace"},"expo.js":["Emit","Options","Prop","Ref","Vue","Watch"]},"./node_modules/@omnia/fx/ux/dialog/IDialog.js":{"id":"./node_modules/@omnia/fx/ux/dialog/idialog.js","buildMeta":{"exportsType":"namespace"},"expo.js":["DialogPositions"]},"./node_modules/@omnia/fx/ux/dialog/index.js":{"id":"./node_modules/@omnia/fx/ux/dialog/index.js","buildMeta":{"exportsType":"namespace"},"expo.js":["DialogPositions"]},"./node_modules/@omnia/fx/ux/documenticon/IDocumentIcon.js":{"id":"./node_modules/@omnia/fx/ux/documenticon/idocumenticon.js","buildMeta":{"exportsType":"namespace"},"expo.js":[]},"./node_modules/@omnia/fx/ux/documenticon/index.js":{"id":"./node_modules/@omnia/fx/ux/documenticon/index.js","buildMeta":{"exportsType":"namespace"},"expo.js":[]},"./node_modules/@omnia/fx/ux/heading/IHeading.js":{"id":"./node_modules/@omnia/fx/ux/heading/iheading.js","buildMeta":{"exportsType":"namespace"},"expo.js":["HeadingSizes"]},"./node_modules/@omnia/fx/ux/inputlanguagepicker/stores/index.js":{"id":"./node_modules/@omnia/fx/ux/inputlanguagepicker/stores/index.js","buildMeta":{"exportsType":"namespace"},"expo.js":["useInputLanguageStore"]},"./node_modules/@omnia/fx/ux/InternalRouter.js":{"id":"./node_modules/@omnia/fx/ux/internalrouter.js","buildMeta":{"exportsType":"namespace"},"expo.js":["InternalRouter"]},"./node_modules/@omnia/fx/ux/journey/index.js":{"id":"./node_modules/@omnia/fx/ux/journey/index.js","buildMeta":{"exportsType":"namespace"},"expo.js":["BladeContexts","BladeSizeDefinitions","BladeSizeTypesName","BladeSizeWidths","BladeVariantDefinitions","BladeVariantTypesName","JourneyContext","defineBlade","useJourneyMenuStore","useJourneyRouterStore","useJourneyStore"]},"./node_modules/@omnia/fx/ux/layoutcanvas/index.js":{"id":"./node_modules/@omnia/fx/ux/layoutcanvas/index.js","buildMeta":{"exportsType":"namespace"},"expo.js":["BlockCatalogStore","BlockSettingsProvider","BlockSettingsReader","BlockSettingsWriter","BreakPointManager","ColumnsSectionSettings","CssBlockSettings","CssSectionSettings","DynamicStateStore","EditorLayoutItemFactory","GeneralSectionSettings","HeaderBlockSettings","HeaderSectionSettings","LayerIndex","LayoutBlockHeaderSettings","LayoutCanvasStore","LayoutDefinitionBuilder","LayoutEditorThemingManager","LayoutGlobalHeaderSettings","LayoutItemFactory","LayoutItemRules","LayoutLockExpansionItemDefinition","LayoutManager","LayoutSectionContainerHelper","LayoutStyleSettings","LayoutTemplateStore","ObjectRules","ReactiveLayoutItemsSettingsStore","SpacingBlockSettings","SpacingSectionSettings","StyleBlockSettings","StyleSectionSettings","TabBlockLayoutSettings","TabBlockSettings","TabSectionLayoutSettings","TabsLayoutSettings","TargetingBlockSettings","TargetingSectionSettings","ThemingRenditionManager","ThemingSectionSettings","mergeObjects","useBlockSettingsReader","useBlockSettingsWriter","useSettingsMenuStore"]},"./node_modules/@omnia/fx/ux/mediarenderer/MediaRendererComponentBase.tsx":{"id":"./node_modules/@omnia/fx/ux/mediarenderer/mediarenderercomponentbase.tsx","buildMeta":{"exportsType":"namespace"},"expo.js":["default"]},"./node_modules/@omnia/fx/ux/messaging/index.js":{"id":"./node_modules/@omnia/fx/ux/messaging/index.js","buildMeta":{"exportsType":"namespace"},"expo.js":["AdminNamespace","Topics"]},"./node_modules/@omnia/fx/ux/messaging/InternalTopics.js":{"id":"./node_modules/@omnia/fx/ux/messaging/internaltopics.js","buildMeta":{"exportsType":"namespace"},"expo.js":["InternalTopics"]},"./node_modules/@omnia/fx/ux/models/index.js":{"id":"./node_modules/@omnia/fx/ux/models/index.js","buildMeta":{"exportsType":"namespace"},"expo.js":["AboutUserStyles","ActionToolbarStyles","AdminChromeStyles","AnimatedGifStyles","AppInstanceRollupBlockStyles","AppInstanceRollupCardViewSettingsStyles","AppInstanceRollupCardViewStyles","AppInstanceRollupListViewSettingsStyles","AppInstanceRollupListViewStyles","AppInstanceRollupStyles","AppInstanceRollupViewBaseStyles","BarChartIndicatorStyles","ButtonWrapperStyles","ChipStyles","ChipStylesConst","CommentStyles","CurrentUserTokenIdentityPicker","DatatableWrapperStyles","DateTimePickerStyles","DialogStyles","EditorStyleSettings","EmoticonStyles","EnterpriseGlossaryTermComponentBaseStyles","EnterprisePropertyPickerStyles","FileUploaderStyles","ForceAnimatedClassname","GridViewMediaProviderComponentStyles","HeadingStyles","IconWrapperStyles","ImageGridStyles","ImageTransformerStyles","InputLanguagePickerStyles","InputTokenStyles","LanguagePickerStyles","LikeStyles","LinkElement","LinkPickerProviderContext","LinkPickerStyle","LocalizationAdminStyles","LocalizationInputStyles","MediaPickerProviderStyles","MentionStyles","MultilingualInputStyles","NumericIndicatorStyles","OrgTreeStyles","PersonFieldDisplayStyles","PersonaStyles","PostStyle","ProfilecardStyles","QueryablePropertiesStyles","ReporteesStyles","RichTextEditorRendererStyles","RichTextEditorStyles","RowVariant","SharePointVideoSettingsStyles","SidePanelStyles","SpecialUserConfiguration","StatusMessageOverlayStyles","TableMenuStyles","TagsFieldDisplayStyles","TermGlossaryMappingStyles","TextTranslatorStyles","TimeZonePickerStyles","UrlInputStyles","ValidationOnDefinitions","WizardStyles","appLayoutPlaceHolderRegistration","userPresenceStyles"]},"./node_modules/@omnia/fx/ux/MultilingualContext.js":{"id":"./node_modules/@omnia/fx/ux/multilingualcontext.js","buildMeta":{"exportsType":"namespace"},"expo.js":["MultilingualContext"]},"./node_modules/@omnia/fx/ux/OmniaTheming.js":{"id":"./node_modules/@omnia/fx/ux/omniatheming.js","buildMeta":{"exportsType":"namespace"},"expo.js":["OmniaTheming"]},"./node_modules/@omnia/fx/ux/oxide/appbar/Appbar.css":{"id":"./node_modules/@omnia/fx/ux/oxide/appbar/appbar.css","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/@omnia/fx/ux/oxide/avatar/Avatar.css":{"id":"./node_modules/@omnia/fx/ux/oxide/avatar/avatar.css","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/@omnia/fx/ux/oxide/btn/Button.css":{"id":"./node_modules/@omnia/fx/ux/oxide/btn/button.css","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/@omnia/fx/ux/oxide/btngroup/ButtonGroup.css":{"id":"./node_modules/@omnia/fx/ux/oxide/btngroup/buttongroup.css","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/@omnia/fx/ux/oxide/checkbox/Checkbox.css":{"id":"./node_modules/@omnia/fx/ux/oxide/checkbox/checkbox.css","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/@omnia/fx/ux/oxide/chip/Chip.css":{"id":"./node_modules/@omnia/fx/ux/oxide/chip/chip.css","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/@omnia/fx/ux/oxide/colorpicker/ColorPicker.css":{"id":"./node_modules/@omnia/fx/ux/oxide/colorpicker/colorpicker.css","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/@omnia/fx/ux/oxide/datatable/DataTable.css":{"id":"./node_modules/@omnia/fx/ux/oxide/datatable/datatable.css","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/@omnia/fx/ux/oxide/dialog/Dialog.css":{"id":"./node_modules/@omnia/fx/ux/oxide/dialog/dialog.css","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/@omnia/fx/ux/oxide/expansionpanel/ExpansionPanel.css":{"id":"./node_modules/@omnia/fx/ux/oxide/expansionpanel/expansionpanel.css","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/@omnia/fx/ux/oxide/icon/Icon.css":{"id":"./node_modules/@omnia/fx/ux/oxide/icon/icon.css","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/@omnia/fx/ux/oxide/inputfield/InputField.css":{"id":"./node_modules/@omnia/fx/ux/oxide/inputfield/inputfield.css","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/@omnia/fx/ux/oxide/list/List.css":{"id":"./node_modules/@omnia/fx/ux/oxide/list/list.css","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/@omnia/fx/ux/oxide/panel/Panel.css":{"id":"./node_modules/@omnia/fx/ux/oxide/panel/panel.css","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/@omnia/fx/ux/oxide/radio/Radio.css":{"id":"./node_modules/@omnia/fx/ux/oxide/radio/radio.css","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/@omnia/fx/ux/oxide/rangeslider/RangeSlider.css":{"id":"./node_modules/@omnia/fx/ux/oxide/rangeslider/rangeslider.css","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/@omnia/fx/ux/oxide/select/Select.css":{"id":"./node_modules/@omnia/fx/ux/oxide/select/select.css","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/@omnia/fx/ux/oxide/slider/Slider.css":{"id":"./node_modules/@omnia/fx/ux/oxide/slider/slider.css","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/@omnia/fx/ux/oxide/splitpane/Splitpane.css":{"id":"./node_modules/@omnia/fx/ux/oxide/splitpane/splitpane.css","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/@omnia/fx/ux/oxide/stepper/Stepper.css":{"id":"./node_modules/@omnia/fx/ux/oxide/stepper/stepper.css","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/@omnia/fx/ux/oxide/switch/Switch.css":{"id":"./node_modules/@omnia/fx/ux/oxide/switch/switch.css","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/@omnia/fx/ux/oxide/tab/Tab.css":{"id":"./node_modules/@omnia/fx/ux/oxide/tab/tab.css","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/@omnia/fx/ux/oxide/table/Table.css":{"id":"./node_modules/@omnia/fx/ux/oxide/table/table.css","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/@omnia/fx/ux/oxide/textarea/TextArea.css":{"id":"./node_modules/@omnia/fx/ux/oxide/textarea/textarea.css","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/@omnia/fx/ux/oxide/toolbar/Toolbar.css":{"id":"./node_modules/@omnia/fx/ux/oxide/toolbar/toolbar.css","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/@omnia/fx/ux/post/loc/localize.js":{"id":"./node_modules/@omnia/fx/ux/post/loc/localize.js","buildMeta":{"exportsType":"namespace"},"expo.js":["PostLocalization"]},"./node_modules/@omnia/fx/ux/social/loc/localize.js":{"id":"./node_modules/@omnia/fx/ux/social/loc/localize.js","buildMeta":{"exportsType":"namespace"},"expo.js":["CommentLocalization"]},"./node_modules/@omnia/fx/ux/StyleFlow.js":{"id":"./node_modules/@omnia/fx/ux/styleflow.js","buildMeta":{"exportsType":"namespace"},"expo.js":["StyleFlow"]},"./node_modules/@omnia/fx/ux/Styles.stylex.js":{"id":"./node_modules/@omnia/fx/ux/styles.stylex.js","buildMeta":{"exportsType":"namespace"},"expo.js":["createStylex","cssRules","mergeCssRules","styleToString"]},"./node_modules/@omnia/fx/ux/theming/index.js":{"id":"./node_modules/@omnia/fx/ux/theming/index.js","buildMeta":{"exportsType":"namespace"}},"./node_modules/@omnia/fx/ux/TokenRouterApi.js":{"id":"./node_modules/@omnia/fx/ux/tokenrouterapi.js","buildMeta":{"exportsType":"namespace"},"expo.js":["TokenRouterRegistration"]},"./node_modules/@omnia/fx/ux/UxCssRaw.css":{"id":"./node_modules/@omnia/fx/ux/uxcssraw.css","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/@omnia/fx/ux/UxDefaultRichtextStyle.js":{"id":"./node_modules/@omnia/fx/ux/uxdefaultrichtextstyle.js","buildMeta":{"exportsType":"namespace"},"expo.js":["DefaultRichtextStyles"]},"./node_modules/@omnia/fx/ux/UxFlags.css":{"id":"./node_modules/@omnia/fx/ux/uxflags.css","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/@omnia/fx/ux/UxFonts.css":{"id":"./node_modules/@omnia/fx/ux/uxfonts.css","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/@omnia/fx/ux/UxModels.js":{"id":"./node_modules/@omnia/fx/ux/uxmodels.js","buildMeta":{"exportsType":"namespace"},"expo.js":["BuiltInLocalizationKeys","OmniaUxLocalizationNamespace"]},"./node_modules/@omnia/fx/ux/UxStyles.js":{"id":"./node_modules/@omnia/fx/ux/uxstyles.js","buildMeta":{"exportsType":"namespace"},"expo.js":["Styles"]},"./node_modules/@omnia/fx/ux/validation/IComponentValidationEnabled.js":{"id":"./node_modules/@omnia/fx/ux/validation/icomponentvalidationenabled.js","buildMeta":{"exportsType":"namespace"},"expo.js":[]},"./node_modules/@omnia/fx/ux/validation/index.js":{"id":"./node_modules/@omnia/fx/ux/validation/index.js","buildMeta":{"exportsType":"namespace"},"expo.js":["LegacyFieldValueValidation"]},"./node_modules/@omnia/fx/ux/validation/loc/localize.js":{"id":"./node_modules/@omnia/fx/ux/validation/loc/localize.js","buildMeta":{"exportsType":"namespace"},"expo.js":["FieldValidationLocalization"]},"./node_modules/@omnia/fx/ux/versionedlayout/index.js":{"id":"./node_modules/@omnia/fx/ux/versionedlayout/index.js","buildMeta":{"exportsType":"namespace"},"expo.js":["LayoutEditorTabRendererInstance","VersionedLayoutBladeIds","VersionedLayoutDefinitionEditorItem","VersionedLayoutDefinitionEditorItemFactory","VersionedLayoutDefinitionEditorItemPrivateImutableState","VersionedLayoutDefinitionEditorItemState","VersionedLayoutEditorStore"]},"./node_modules/@omnia/fx/ux/VueComponentBase.js":{"id":"8610c059-395a-45c2-804a-8c236f4d60d9","buildMeta":{"exportsType":"namespace"},"expo.js":["VueComponentBase","VueComponentConnect","getVuetifyAppClasses"]},"./node_modules/@omnia/fx/ux/vuetify/index.js":{"id":"c02f415e-2efe-4333-9b1e-8d7abaa2c967","buildMeta":{"exportsType":"namespace"},"expo.js":["VAlert","VApp","VAvatar","VBadge","VBreadcrumbs","VBreadcrumbsItem","VBtn","VBtnToggle","VCard","VCardActions","VCardMedia","VCardText","VCardTitle","VCarousel","VCarouselItem","VCheckbox","VCombobox","VContainer","VContent","VDialog","VDivider","VFlex","VHover","VIcon","VImg","VLayout","VList","VListTile","VListTileAvatar","VListTileSubTitle","VListTileTitle","VMenu","VNavigationDrawer","VProgressCircular","VProgressLinear","VRadio","VRadioGroup","VRangeSlider","VResponsive","VSlider","VSnackbar","VSpacer","VSpeedDial","VStepper","VStepperContent","VStepperHeader","VStepperStep","VSubheader","VTab","VTabItem","VTabs","VTabsItems","VTabsSlider","VTextField","VTextarea","VToolbar","VToolbarItems","VToolbarSideIcon","VToolbarTitle","VTooltip"]},"./node_modules/@omnia/fx/ux/index.js":{"id":"d7327742-5647-4075-b7ab-4f9ca852addb","buildMeta":{"exportsType":"namespace"}},"./node_modules/@omnia/fx/ux/UxCore.js":{"id":"fe6d45fc-8977-4e32-bff4-e93cc636390e","buildMeta":{"exportsType":"namespace"},"expo.js":[]}}}
|
@@ -22,7 +22,7 @@ export declare const useCompontentHostStore: () => {
|
|
22
22
|
events: {
|
23
23
|
onMutatedHost: import("internal/fx/core").MessageBusExposeOnlySubscription<"admin" | "editor" | "docs">;
|
24
24
|
onMutatedComponentHost: import("internal/fx/core").MessageBusExposeOnlySubscription<"toolbar" | "tab" | "menu" | "dialog" | "table" | "app" | "tab-vertical" | "drawer" | "expansion-panel" | "chip" | "blade" | "appbar" | "panel" | "omfx">;
|
25
|
-
onMutatedComponentVariant: import("internal/fx/core").MessageBusExposeOnlySubscription<"toolbar" | "
|
25
|
+
onMutatedComponentVariant: import("internal/fx/core").MessageBusExposeOnlySubscription<"toolbar" | "content" | "navigation" | "default" | "section" | "footer" | "header" | "options" | "settings" | "info-section">;
|
26
26
|
onMutatedAppliedComponents: import("internal/fx/core").MessageBusExposeOnlySubscription<string[]>;
|
27
27
|
onMutatedForce: import("internal/fx/core").MessageBusExposeOnlySubscription<boolean>;
|
28
28
|
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
@@ -38,7 +38,7 @@ export declare const useCompontentHostStore: () => {
|
|
38
38
|
subscribe(fn: (type: "toolbar" | "tab" | "menu" | "dialog" | "table" | "app" | "tab-vertical" | "drawer" | "expansion-panel" | "chip" | "blade" | "appbar" | "panel" | "omfx") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
39
39
|
};
|
40
40
|
setComponentVariant: {
|
41
|
-
subscribe(fn: (variant: "toolbar" | "
|
41
|
+
subscribe(fn: (variant: "toolbar" | "content" | "navigation" | "default" | "section" | "footer" | "header" | "options" | "settings" | "info-section") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
42
42
|
};
|
43
43
|
setForce: {
|
44
44
|
subscribe(fn: (value: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
@@ -58,7 +58,7 @@ export declare const useCompontentHostStore: () => {
|
|
58
58
|
subscribe(fn: (result: void, type: "toolbar" | "tab" | "menu" | "dialog" | "table" | "app" | "tab-vertical" | "drawer" | "expansion-panel" | "chip" | "blade" | "appbar" | "panel" | "omfx") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
59
59
|
};
|
60
60
|
setComponentVariant: {
|
61
|
-
subscribe(fn: (result: void, variant: "toolbar" | "
|
61
|
+
subscribe(fn: (result: void, variant: "toolbar" | "content" | "navigation" | "default" | "section" | "footer" | "header" | "options" | "settings" | "info-section") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
62
62
|
};
|
63
63
|
setForce: {
|
64
64
|
subscribe(fn: (result: void, value: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
@@ -78,7 +78,7 @@ export declare const useCompontentHostStore: () => {
|
|
78
78
|
subscribe(fn: (failureReason: any, type: "toolbar" | "tab" | "menu" | "dialog" | "table" | "app" | "tab-vertical" | "drawer" | "expansion-panel" | "chip" | "blade" | "appbar" | "panel" | "omfx") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
79
79
|
};
|
80
80
|
setComponentVariant: {
|
81
|
-
subscribe(fn: (failureReason: any, variant: "toolbar" | "
|
81
|
+
subscribe(fn: (failureReason: any, variant: "toolbar" | "content" | "navigation" | "default" | "section" | "footer" | "header" | "options" | "settings" | "info-section") => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
82
82
|
};
|
83
83
|
setForce: {
|
84
84
|
subscribe(fn: (failureReason: any, value: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
@@ -99,7 +99,7 @@ export declare const useCompontentHostStore: () => {
|
|
99
99
|
canApplyOn: (hostType: ComponentHostTypes | HostTypes, variant?: any) => boolean;
|
100
100
|
readonly host: "admin" | "editor" | "docs";
|
101
101
|
readonly componentHost: "toolbar" | "tab" | "menu" | "dialog" | "table" | "app" | "tab-vertical" | "drawer" | "expansion-panel" | "chip" | "blade" | "appbar" | "panel" | "omfx";
|
102
|
-
readonly componentVariant: "toolbar" | "
|
102
|
+
readonly componentVariant: "toolbar" | "content" | "navigation" | "default" | "section" | "footer" | "header" | "options" | "settings" | "info-section";
|
103
103
|
readonly force: boolean;
|
104
104
|
appliedComponents(host: string): boolean;
|
105
105
|
};
|
@@ -1,6 +1,5 @@
|
|
1
1
|
export * from "./confirmdialog";
|
2
2
|
export * from "./dialog";
|
3
|
-
export * from "./app";
|
4
3
|
export * from "./datetimepicker";
|
5
4
|
export * from "./documenticon";
|
6
5
|
export * from "./heading";
|
@@ -52,6 +51,7 @@ export * from "./theming";
|
|
52
51
|
export * from "./use";
|
53
52
|
export * from "./velcron";
|
54
53
|
export * from "./versionedlayout";
|
54
|
+
export * from "./app/ExposeToUxCore";
|
55
55
|
export * from "./AnchorLink";
|
56
56
|
export * from "./AppRollupFilterEngineContext";
|
57
57
|
export * from "./BlockInstance";
|
@@ -1,6 +1,6 @@
|
|
1
1
|
import "./Styles.stylex.css";
|
2
2
|
import { type CSSProperties as StylexCssProperties } from "@stylexjs/stylex/lib/StyleXCSSTypes";
|
3
|
-
export type
|
3
|
+
export type StylexValue = {
|
4
4
|
class?: string;
|
5
5
|
style?: Readonly<{
|
6
6
|
[$$Key$$: string]: string | number;
|
@@ -16,94 +16,94 @@ type SpacingStylexType = {
|
|
16
16
|
left?: string | number;
|
17
17
|
};
|
18
18
|
export declare function styleToString(styles: CSSProperties): string;
|
19
|
-
export declare function mergeCssRules(...styles: ReadonlyArray<
|
20
|
-
export declare function createStylex(cssProperties: StylexCssProperties):
|
19
|
+
export declare function mergeCssRules(...styles: ReadonlyArray<StylexValue>): Readonly<StylexValue>;
|
20
|
+
export declare function createStylex(cssProperties: StylexCssProperties): StylexValue;
|
21
21
|
export declare const cssRules: {
|
22
|
-
position(position: string):
|
23
|
-
textFillColor(textFillColor: string):
|
24
|
-
backgroundClip(backgroundClip: string, important?: boolean):
|
25
|
-
fontFamily(fontFamily: string):
|
26
|
-
flexBasis(flexBasis: string | number):
|
27
|
-
flexGrow(flexGrow: number):
|
28
|
-
maxWidth(maxWidth: string):
|
29
|
-
alignSelf(alignSelf: string):
|
30
|
-
minWidth: (minWidth: string, important?: boolean) =>
|
31
|
-
flex: (flex: string | number, important?: boolean) =>
|
32
|
-
justifyContent(justifyContent: string):
|
33
|
-
flexWrap(flexWrap: string):
|
34
|
-
rowGap(rowGap: string):
|
35
|
-
columnGap(columnGap: string):
|
36
|
-
flexDirection(flexDirection: string):
|
37
|
-
width: (width: string, important?: boolean) =>
|
38
|
-
height: (height: string, important?: boolean) =>
|
39
|
-
maxHeight: (maxHeight: string | number, important?: boolean) =>
|
40
|
-
minHeight(minHeight: string):
|
41
|
-
alignItems(alignItems: string):
|
42
|
-
boxSizing(boxSizing: string):
|
43
|
-
display(display: string):
|
44
|
-
wordBreak(wordBreak: string):
|
45
|
-
whiteSpace(whiteSpace: string):
|
46
|
-
backDropFilter(backDropFilter: string):
|
47
|
-
transition(transition: string):
|
48
|
-
transform(transform: string):
|
49
|
-
fontSize: (fontSize: string | number, important?: boolean) =>
|
50
|
-
fontWeight(fontWeight: number):
|
51
|
-
lineHeight(lineHeight: string):
|
52
|
-
letterSpacing(letterSpacing: string):
|
53
|
-
textDecoration: (textDecoration: string, important?: boolean) =>
|
54
|
-
background: (background: string, important?: boolean) =>
|
55
|
-
opacity(opacity: string | number):
|
56
|
-
backgroundImage(backgroundImage: string, important?: boolean):
|
57
|
-
backgroundPosition(backgroundPosition: string, important?: boolean):
|
58
|
-
backgroundRepeat(backgroundRepeat: string, important?: boolean):
|
59
|
-
backgroundSize(backgroundSize: string, important?: boolean):
|
60
|
-
backgroundColor: (backgroundColor: string, important?: boolean) =>
|
61
|
-
color: (color: string, important?: boolean) =>
|
62
|
-
borderTopLeftRadius: (borderTopLeftRadius: string, important?: boolean) =>
|
63
|
-
borderTopRightRadius: (borderTopRightRadius: string, important?: boolean) =>
|
64
|
-
borderBottomRightRadius: (borderBottomRightRadius: string, important?: boolean) =>
|
65
|
-
borderBottomLeftRadius: (borderBottomLeftRadius: string, important?: boolean) =>
|
66
|
-
border: (value: SpacingStylexType | string) => Readonly<
|
67
|
-
margin: (value: SpacingStylexType | string | number, important?: boolean) => Readonly<
|
68
|
-
marginLeft: (marginLeft: string | number, important?: boolean) =>
|
69
|
-
marginBottom: (marginBottom: string | number, important?: boolean) =>
|
70
|
-
marginRight: (marginRight: string | number, important?: boolean) =>
|
71
|
-
marginTop: (marginTop: string | number, important?: boolean) =>
|
72
|
-
padding: (value: SpacingStylexType | string | number, important?: boolean) => Readonly<
|
73
|
-
paddingLeft: (paddingLeft: string | number, important?: boolean) =>
|
74
|
-
paddingRight: (paddingRight: string | number, important?: boolean) =>
|
75
|
-
paddingBottom: (paddingBottom: string | number, important?: boolean) =>
|
76
|
-
paddingTop: (paddingTop: string | number, important?: boolean) =>
|
77
|
-
borderLeft: (borderLeft: string | number, important?: boolean) =>
|
78
|
-
borderRight: (borderRight: string | number, important?: boolean) =>
|
79
|
-
borderBottom: (borderBottom: string | number, important?: boolean) =>
|
80
|
-
borderTop: (borderTop: string | number, important?: boolean) =>
|
81
|
-
borderRadius(borderRadius: string | number):
|
82
|
-
textTransform(textTransform: string):
|
83
|
-
lineCamp(lineCamp: number):
|
84
|
-
overflow: (overflow: string, important?: boolean) =>
|
85
|
-
overflowY: (overflowY: string, important?: boolean) =>
|
86
|
-
overflowX: (overflowX: string, important?: boolean) =>
|
87
|
-
boxOrient(boxOrient: string):
|
88
|
-
cursor: (cursor: string, important?: boolean) =>
|
89
|
-
top: (top: number | string, important?: boolean) =>
|
90
|
-
left(left: number | string):
|
91
|
-
right: (right: number | string, important?: boolean) =>
|
92
|
-
zIndex(zIndex: number):
|
93
|
-
textAlign(textAlign: string):
|
94
|
-
transformOrigin(transformOrigin: string):
|
95
|
-
borderColor(borderColor: string):
|
96
|
-
pointerEvents(pointerEvents: string):
|
97
|
-
verticalAlign(verticalAlign: string):
|
98
|
-
textOverflow(textOverflow: string):
|
99
|
-
flexShrink(flexShrink: string | number):
|
100
|
-
gridTemplateColumns(gridTemplateColumns: string | number):
|
22
|
+
position(position: string): StylexValue;
|
23
|
+
textFillColor(textFillColor: string): StylexValue;
|
24
|
+
backgroundClip(backgroundClip: string, important?: boolean): StylexValue;
|
25
|
+
fontFamily(fontFamily: string): StylexValue;
|
26
|
+
flexBasis(flexBasis: string | number): StylexValue;
|
27
|
+
flexGrow(flexGrow: number): StylexValue;
|
28
|
+
maxWidth(maxWidth: string): StylexValue;
|
29
|
+
alignSelf(alignSelf: string): StylexValue;
|
30
|
+
minWidth: (minWidth: string, important?: boolean) => StylexValue;
|
31
|
+
flex: (flex: string | number, important?: boolean) => StylexValue;
|
32
|
+
justifyContent(justifyContent: string): StylexValue;
|
33
|
+
flexWrap(flexWrap: string): StylexValue;
|
34
|
+
rowGap(rowGap: string): StylexValue;
|
35
|
+
columnGap(columnGap: string): StylexValue;
|
36
|
+
flexDirection(flexDirection: string): StylexValue;
|
37
|
+
width: (width: string, important?: boolean) => StylexValue;
|
38
|
+
height: (height: string, important?: boolean) => StylexValue;
|
39
|
+
maxHeight: (maxHeight: string | number, important?: boolean) => StylexValue;
|
40
|
+
minHeight(minHeight: string): StylexValue;
|
41
|
+
alignItems(alignItems: string): StylexValue;
|
42
|
+
boxSizing(boxSizing: string): StylexValue;
|
43
|
+
display(display: string): StylexValue;
|
44
|
+
wordBreak(wordBreak: string): StylexValue;
|
45
|
+
whiteSpace(whiteSpace: string): StylexValue;
|
46
|
+
backDropFilter(backDropFilter: string): StylexValue;
|
47
|
+
transition(transition: string): StylexValue;
|
48
|
+
transform(transform: string): StylexValue;
|
49
|
+
fontSize: (fontSize: string | number, important?: boolean) => StylexValue;
|
50
|
+
fontWeight(fontWeight: number): StylexValue;
|
51
|
+
lineHeight(lineHeight: string): StylexValue;
|
52
|
+
letterSpacing(letterSpacing: string): StylexValue;
|
53
|
+
textDecoration: (textDecoration: string, important?: boolean) => StylexValue;
|
54
|
+
background: (background: string, important?: boolean) => StylexValue;
|
55
|
+
opacity(opacity: string | number): StylexValue;
|
56
|
+
backgroundImage(backgroundImage: string, important?: boolean): StylexValue;
|
57
|
+
backgroundPosition(backgroundPosition: string, important?: boolean): StylexValue;
|
58
|
+
backgroundRepeat(backgroundRepeat: string, important?: boolean): StylexValue;
|
59
|
+
backgroundSize(backgroundSize: string, important?: boolean): StylexValue;
|
60
|
+
backgroundColor: (backgroundColor: string, important?: boolean) => StylexValue;
|
61
|
+
color: (color: string, important?: boolean) => StylexValue;
|
62
|
+
borderTopLeftRadius: (borderTopLeftRadius: string, important?: boolean) => StylexValue;
|
63
|
+
borderTopRightRadius: (borderTopRightRadius: string, important?: boolean) => StylexValue;
|
64
|
+
borderBottomRightRadius: (borderBottomRightRadius: string, important?: boolean) => StylexValue;
|
65
|
+
borderBottomLeftRadius: (borderBottomLeftRadius: string, important?: boolean) => StylexValue;
|
66
|
+
border: (value: SpacingStylexType | string) => Readonly<StylexValue>;
|
67
|
+
margin: (value: SpacingStylexType | string | number, important?: boolean) => Readonly<StylexValue>;
|
68
|
+
marginLeft: (marginLeft: string | number, important?: boolean) => StylexValue;
|
69
|
+
marginBottom: (marginBottom: string | number, important?: boolean) => StylexValue;
|
70
|
+
marginRight: (marginRight: string | number, important?: boolean) => StylexValue;
|
71
|
+
marginTop: (marginTop: string | number, important?: boolean) => StylexValue;
|
72
|
+
padding: (value: SpacingStylexType | string | number, important?: boolean) => Readonly<StylexValue>;
|
73
|
+
paddingLeft: (paddingLeft: string | number, important?: boolean) => StylexValue;
|
74
|
+
paddingRight: (paddingRight: string | number, important?: boolean) => StylexValue;
|
75
|
+
paddingBottom: (paddingBottom: string | number, important?: boolean) => StylexValue;
|
76
|
+
paddingTop: (paddingTop: string | number, important?: boolean) => StylexValue;
|
77
|
+
borderLeft: (borderLeft: string | number, important?: boolean) => StylexValue;
|
78
|
+
borderRight: (borderRight: string | number, important?: boolean) => StylexValue;
|
79
|
+
borderBottom: (borderBottom: string | number, important?: boolean) => StylexValue;
|
80
|
+
borderTop: (borderTop: string | number, important?: boolean) => StylexValue;
|
81
|
+
borderRadius(borderRadius: string | number): StylexValue;
|
82
|
+
textTransform(textTransform: string): StylexValue;
|
83
|
+
lineCamp(lineCamp: number): StylexValue;
|
84
|
+
overflow: (overflow: string, important?: boolean) => StylexValue;
|
85
|
+
overflowY: (overflowY: string, important?: boolean) => StylexValue;
|
86
|
+
overflowX: (overflowX: string, important?: boolean) => StylexValue;
|
87
|
+
boxOrient(boxOrient: string): StylexValue;
|
88
|
+
cursor: (cursor: string, important?: boolean) => StylexValue;
|
89
|
+
top: (top: number | string, important?: boolean) => StylexValue;
|
90
|
+
left(left: number | string): StylexValue;
|
91
|
+
right: (right: number | string, important?: boolean) => StylexValue;
|
92
|
+
zIndex(zIndex: number): StylexValue;
|
93
|
+
textAlign(textAlign: string): StylexValue;
|
94
|
+
transformOrigin(transformOrigin: string): StylexValue;
|
95
|
+
borderColor(borderColor: string): StylexValue;
|
96
|
+
pointerEvents(pointerEvents: string): StylexValue;
|
97
|
+
verticalAlign(verticalAlign: string): StylexValue;
|
98
|
+
textOverflow(textOverflow: string): StylexValue;
|
99
|
+
flexShrink(flexShrink: string | number): StylexValue;
|
100
|
+
gridTemplateColumns(gridTemplateColumns: string | number): StylexValue;
|
101
101
|
hover: {
|
102
|
-
cursor: (cursor: string, important?: boolean) =>
|
103
|
-
transform: (transform: string) =>
|
104
|
-
background: (background: string) =>
|
105
|
-
backgroundColor: (backgroundColor: string, important?: boolean) =>
|
106
|
-
boxShadow: (boxShadow: string) =>
|
102
|
+
cursor: (cursor: string, important?: boolean) => StylexValue;
|
103
|
+
transform: (transform: string) => StylexValue;
|
104
|
+
background: (background: string) => StylexValue;
|
105
|
+
backgroundColor: (backgroundColor: string, important?: boolean) => StylexValue;
|
106
|
+
boxShadow: (boxShadow: string) => StylexValue;
|
107
107
|
};
|
108
108
|
nest: {
|
109
109
|
iframe: {
|
@@ -131,7 +131,7 @@ export declare class VueComponentBase<Props = VueComponentBaseProps | {}, Events
|
|
131
131
|
inheritanceTheme?: InheritanceTheme;
|
132
132
|
themeTargetId?: string;
|
133
133
|
themeDefinitionId?: string;
|
134
|
-
themeDefinition?: models.
|
134
|
+
themeDefinition?: models.LegacyThemeDefinition;
|
135
135
|
onComponentCreated?: (instance: any) => void;
|
136
136
|
private omniaCurrentTheming;
|
137
137
|
private validations;
|
@@ -143,7 +143,7 @@ export declare class VueComponentBase<Props = VueComponentBaseProps | {}, Events
|
|
143
143
|
open: (options?: ConfirmDialogOptions) => Promise<ConfirmDialogResponse>;
|
144
144
|
};
|
145
145
|
resetInheritanceTheming(): void;
|
146
|
-
setThemeDefinition(themingDefinition: models.
|
146
|
+
setThemeDefinition(themingDefinition: models.LegacyThemeDefinition): void;
|
147
147
|
mounted(): void;
|
148
148
|
transformVSlot(slot: VSlot): {
|
149
149
|
scopedSlots: any;
|
package/internal-do-not-import-from-here/ux/app/management/tabs/instance/EditPermissionDialog.d.ts
CHANGED
@@ -22,8 +22,8 @@ declare const _default: {
|
|
22
22
|
close: import("vue").Prop<() => void, () => void>;
|
23
23
|
}>>, () => JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
24
24
|
propsDefinition: Omit<Readonly<{} & {
|
25
|
-
close?: () => void;
|
26
25
|
item?: AppInstance;
|
26
|
+
close?: () => void;
|
27
27
|
}>, never>;
|
28
28
|
};
|
29
29
|
export default _default;
|
@@ -1,9 +1,9 @@
|
|
1
|
-
import { ITemplateRegistration,
|
1
|
+
import { ITemplateRegistration, ResolvedThemeDefinition } from "@omnia/fx-models";
|
2
2
|
declare const ModeSettingDefinitions: readonly ["admin", "edit", "read"];
|
3
3
|
export type ModeSetting = typeof ModeSettingDefinitions[number];
|
4
4
|
export interface ThemingRender {
|
5
5
|
title: string;
|
6
|
-
themeDefinition: ITemplateRegistration<
|
6
|
+
themeDefinition: ITemplateRegistration<ResolvedThemeDefinition>;
|
7
7
|
modeSetting: ModeSetting;
|
8
8
|
}
|
9
9
|
export {};
|
package/internal-do-not-import-from-here/ux/aurora/admin/blades/themes/store/ThemeEditorStore.d.ts
CHANGED
@@ -1,11 +1,11 @@
|
|
1
|
-
import { guid, ITemplateRegistration,
|
1
|
+
import { guid, ITemplateRegistration, ResolvedThemeDefinition } from "@omnia/fx-models";
|
2
2
|
export declare const useThemeEditorStore: () => {
|
3
3
|
state: {
|
4
|
-
definition: ITemplateRegistration<
|
4
|
+
definition: ITemplateRegistration<ResolvedThemeDefinition>;
|
5
5
|
editMode: boolean;
|
6
6
|
};
|
7
7
|
events: {
|
8
|
-
onMutatedDefinition: import("@omnia/fx").MessageBusExposeOnlySubscription<ITemplateRegistration<
|
8
|
+
onMutatedDefinition: import("@omnia/fx").MessageBusExposeOnlySubscription<ITemplateRegistration<ResolvedThemeDefinition, import("@omnia/fx-models").TemplateRegistrationType>>;
|
9
9
|
onMutatedEditMode: import("@omnia/fx").MessageBusExposeOnlySubscription<boolean>;
|
10
10
|
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
11
11
|
actions: {
|
@@ -14,10 +14,10 @@ export declare const useThemeEditorStore: () => {
|
|
14
14
|
subscribe(fn: () => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
15
15
|
};
|
16
16
|
editThemeDefinition: {
|
17
|
-
subscribe(fn: (definition: ITemplateRegistration<
|
17
|
+
subscribe(fn: (definition: ITemplateRegistration<ResolvedThemeDefinition, import("@omnia/fx-models").TemplateRegistrationType>) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
18
18
|
};
|
19
19
|
copyDefinition: {
|
20
|
-
subscribe(fn: (definition:
|
20
|
+
subscribe(fn: (definition: ResolvedThemeDefinition) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
21
21
|
};
|
22
22
|
save: {
|
23
23
|
subscribe(fn: () => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
@@ -31,10 +31,10 @@ export declare const useThemeEditorStore: () => {
|
|
31
31
|
subscribe(fn: (result: void) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
32
32
|
};
|
33
33
|
editThemeDefinition: {
|
34
|
-
subscribe(fn: (result: void, definition: ITemplateRegistration<
|
34
|
+
subscribe(fn: (result: void, definition: ITemplateRegistration<ResolvedThemeDefinition, import("@omnia/fx-models").TemplateRegistrationType>) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
35
35
|
};
|
36
36
|
copyDefinition: {
|
37
|
-
subscribe(fn: (result: void, definition:
|
37
|
+
subscribe(fn: (result: void, definition: ResolvedThemeDefinition) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
38
38
|
};
|
39
39
|
save: {
|
40
40
|
subscribe(fn: (result: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
@@ -48,10 +48,10 @@ export declare const useThemeEditorStore: () => {
|
|
48
48
|
subscribe(fn: (failureReason: any) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
49
49
|
};
|
50
50
|
editThemeDefinition: {
|
51
|
-
subscribe(fn: (failureReason: any, definition: ITemplateRegistration<
|
51
|
+
subscribe(fn: (failureReason: any, definition: ITemplateRegistration<ResolvedThemeDefinition, import("@omnia/fx-models").TemplateRegistrationType>) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
52
52
|
};
|
53
53
|
copyDefinition: {
|
54
|
-
subscribe(fn: (failureReason: any, definition:
|
54
|
+
subscribe(fn: (failureReason: any, definition: ResolvedThemeDefinition) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
55
55
|
};
|
56
56
|
save: {
|
57
57
|
subscribe(fn: (failureReason: any) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
@@ -62,8 +62,8 @@ export declare const useThemeEditorStore: () => {
|
|
62
62
|
};
|
63
63
|
} & {
|
64
64
|
addThemeDefinition(): void;
|
65
|
-
editThemeDefinition(definition: ITemplateRegistration<
|
66
|
-
copyDefinition(definition:
|
65
|
+
editThemeDefinition(definition: ITemplateRegistration<ResolvedThemeDefinition>): void;
|
66
|
+
copyDefinition(definition: ResolvedThemeDefinition): void;
|
67
67
|
save(): Promise<boolean>;
|
68
68
|
delete(): Promise<boolean>;
|
69
69
|
};
|
@@ -69,8 +69,8 @@ declare const _default: {
|
|
69
69
|
propsDefinition: Omit<Readonly<{} & {
|
70
70
|
blueprint?: BackgroundDefinition;
|
71
71
|
container?: boolean;
|
72
|
-
colorSchemaType?: "background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "accent4" | "accent5" | "neutral" | "warning" | "notification" | "error" | "info" | "success" | "dynamic";
|
73
72
|
colors?: import("@omnia/fx/ux").ColorSchemaStoreType;
|
73
|
+
colorSchemaType?: "background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "accent4" | "accent5" | "neutral" | "warning" | "notification" | "error" | "info" | "success" | "dynamic";
|
74
74
|
}>, never>;
|
75
75
|
};
|
76
76
|
export default _default;
|
package/internal-do-not-import-from-here/ux/aurora/components/borderpicker/BorderPreview.d.ts
CHANGED
@@ -101,8 +101,8 @@ declare const _default: {
|
|
101
101
|
}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
102
102
|
propsDefinition: Omit<Readonly<{} & {
|
103
103
|
container?: boolean;
|
104
|
-
colorSchemaType?: "background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "accent4" | "accent5" | "neutral" | "warning" | "notification" | "error" | "info" | "success" | "dynamic";
|
105
104
|
colors?: import("@omnia/fx/ux").ColorSchemaStoreType;
|
105
|
+
colorSchemaType?: "background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "accent4" | "accent5" | "neutral" | "warning" | "notification" | "error" | "info" | "success" | "dynamic";
|
106
106
|
"v-model"?: BorderStylingDefinition;
|
107
107
|
modelValue?: BorderStylingDefinition;
|
108
108
|
"onUpdate:modelValue"?: (value: BorderStylingDefinition) => any | void;
|
@@ -89,8 +89,8 @@ declare const _default: {
|
|
89
89
|
text?: string;
|
90
90
|
blueprint?: ChromeBlueprint;
|
91
91
|
container?: boolean;
|
92
|
-
colorSchemaType?: "background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "accent4" | "accent5" | "neutral" | "warning" | "notification" | "error" | "info" | "success" | "dynamic";
|
93
92
|
colors?: import("@omnia/fx/ux").ColorSchemaStoreType;
|
93
|
+
colorSchemaType?: "background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "accent4" | "accent5" | "neutral" | "warning" | "notification" | "error" | "info" | "success" | "dynamic";
|
94
94
|
variant?: VariantTypes;
|
95
95
|
}>, never>;
|
96
96
|
};
|
package/internal-do-not-import-from-here/ux/aurora/components/colorpickerV2/ColorPicker.d.ts
CHANGED
@@ -439,11 +439,11 @@ declare const _default: {
|
|
439
439
|
}>;
|
440
440
|
};
|
441
441
|
container?: boolean;
|
442
|
-
label?: string;
|
443
442
|
opacity?: boolean;
|
443
|
+
label?: string;
|
444
444
|
disabled?: boolean;
|
445
|
-
colorSchemaType?: "background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "accent4" | "accent5" | "neutral" | "warning" | "notification" | "error" | "info" | "success" | "dynamic";
|
446
445
|
colors?: import("@omnia/fx/ux").ColorSchemaStoreType;
|
446
|
+
colorSchemaType?: "background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "accent4" | "accent5" | "neutral" | "warning" | "notification" | "error" | "info" | "success" | "dynamic";
|
447
447
|
"v-slots"?: {
|
448
448
|
default?: import("../../../DefineVueTypings").Slot;
|
449
449
|
} & {
|