@omnia/fx 8.0.289-dev → 8.0.290-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/manifests/omnia.fx.ux.manifest.json +1 -1
- package/internal-do-not-import-from-here/manifests/omnia.vendor.manifest.json +1 -1
- package/internal-do-not-import-from-here/ux/InternalDefineComponent.d.ts +9 -1
- package/internal-do-not-import-from-here/ux/docs/Docs.d.ts +4 -0
- package/internal-do-not-import-from-here/ux/docs/bestpractices/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/docs/bestpractices/typescript/index.md.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/docs/imports.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/documenticon/DocumentIcon.d.ts +7 -14
- package/internal-do-not-import-from-here/ux/flow/editor/commands/EditorCommands.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/flow/editor/commands/helpers/EditorNodeHelper.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/flow/editor/commands/helpers/HtmlNodehelper.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/flow/editor/components/EditorSelector.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/flow/editor/models/index.d.ts +0 -2
- package/internal-do-not-import-from-here/ux/flow/editor/parsers/HtmlParser.d.ts +1 -2
- package/internal-do-not-import-from-here/ux/flow/editor/parsers/JSONParser.d.ts +1 -2
- package/internal-do-not-import-from-here/ux/flow/editor/plugins/DefineEditorPlugin.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/flow/editor/plugins/bold/BoldPlugin.d.ts +2 -1
- package/internal-do-not-import-from-here/ux/flow/editor/plugins/colorstyle/ColorButton.d.ts +23 -13
- package/internal-do-not-import-from-here/ux/flow/editor/plugins/colorstyle/ColorConverter.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/flow/editor/plugins/colorstyle/ColorStylePlugin.d.ts +2 -1
- package/internal-do-not-import-from-here/ux/flow/editor/plugins/elements/ElementConverter.d.ts +1 -2
- package/internal-do-not-import-from-here/ux/flow/editor/plugins/elements/ElementPlugin.d.ts +2 -1
- package/internal-do-not-import-from-here/ux/flow/editor/plugins/eventhandlers/EditorEvents.d.ts +17 -2
- package/internal-do-not-import-from-here/ux/flow/editor/plugins/eventhandlers/KeyboardEvents.d.ts +8 -2
- package/internal-do-not-import-from-here/ux/flow/editor/plugins/eventhandlers/handlers/ClipboardHandler.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/flow/editor/plugins/italic/ItalicPlugin.d.ts +2 -1
- package/internal-do-not-import-from-here/ux/flow/editor/plugins/link/LinkButton.d.ts +451 -0
- package/internal-do-not-import-from-here/ux/flow/editor/plugins/link/LinkConverter.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/flow/editor/plugins/link/LinkPlugin.d.ts +4 -0
- package/internal-do-not-import-from-here/ux/flow/editor/plugins/sourceeditor/SourceEditorPlugin.d.ts +5 -2
- package/internal-do-not-import-from-here/ux/flow/editor/plugins/spacing/SpacingButton.d.ts +23 -13
- package/internal-do-not-import-from-here/ux/flow/editor/plugins/spacing/SpacingPlugin.d.ts +2 -1
- package/internal-do-not-import-from-here/ux/flow/editor/plugins/testdata/TestDataPlugin.d.ts +5 -2
- package/internal-do-not-import-from-here/ux/flow/editor/plugins/text/TextConverter.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/flow/editor/plugins/text/TextPlugin.d.ts +2 -1
- package/internal-do-not-import-from-here/ux/flow/editor/plugins/textalign/TextAlignPlugin.d.ts +2 -1
- package/internal-do-not-import-from-here/ux/flow/editor/plugins/typography/TypographyButton.d.ts +23 -13
- package/internal-do-not-import-from-here/ux/flow/editor/plugins/typography/TypographyPlugin.d.ts +2 -1
- package/internal-do-not-import-from-here/ux/flow/editor/plugins/velcron/VelcronPlugin.d.ts +2 -1
- package/internal-do-not-import-from-here/ux/flow/editor/stores/FlowEditorStore.d.ts +18 -8
- package/internal-do-not-import-from-here/ux/flow/editor/stores/FlowEditorToolbarStore.d.ts +145 -95
- package/internal-do-not-import-from-here/ux/flow/editor/stores/VelcronPluginStore.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/flow/renderer/plugins/link/LinkPlugin.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/flow/renderer/stores/FlowRendererStore.d.ts +6 -0
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/breakpoints/BreakPointBlockSettingsComponent.d.ts +2 -20
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/breakpoints/BreakPointSectionSettingsComponent.d.ts +2 -28
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/breakpoints/BreakPointSettingsComponent.d.ts +6 -25
- package/internal-do-not-import-from-here/ux/layoutcanvas/shared/BreakPointManager.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/linkpicker/LinkPicker.d.ts +3 -5
- package/internal-do-not-import-from-here/ux/linkpicker/LinkRenderer.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/linkpicker/factory/LinkItemFactory.d.ts +2 -7
- package/internal-do-not-import-from-here/ux/markdown/plugins/CodeComponent.d.ts +34 -0
- package/internal-do-not-import-from-here/ux/markdown/plugins/CodeMarkdownPlugin.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/models/flow/LinkNode.d.ts +13 -0
- package/internal-do-not-import-from-here/ux/models/flow/index.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/models/linkpicker/ILinkPickerProvider.d.ts +1 -2
- package/internal-do-not-import-from-here/ux/models/linkpicker/ILinkRenderer.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/models/linkpicker/LinkItemHandler.d.ts +2 -3
- package/internal-do-not-import-from-here/ux/models/linkpicker/LinkPickerRegistration.d.ts +10 -10
- package/internal-do-not-import-from-here/ux/models/linkpicker/index.d.ts +0 -1
- package/internal-do-not-import-from-here/ux/oxide/datatable/RowRenderer.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/velcron/core/models/VelcronDefinitions.d.ts +8 -0
- package/internal-do-not-import-from-here/ux/velcron/core/models/VelcronPropertyEditorDefinitions.d.ts +5 -0
- package/internal-do-not-import-from-here/ux/velcron/core/parser/VelcronConstants.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/velcron/core/templatebuilder/VelcronEditorBuilder.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/velcron/editor/models/VelcronEditorDescriptors.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/velcron/editor/templates/EditorTemplates.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/velcron/renderer/components/Grid.d.ts +32 -0
- package/internal-do-not-import-from-here/ux/velcron/renderer/editors/LinkResolverEditor.d.ts +5 -0
- package/internal-do-not-import-from-here/ux/versionedlayout/renderer/InternalVersionedLayoutRenderer.d.ts +13 -0
- package/internal-do-not-import-from-here/vue/vuecustomelement/Slots.d.ts +1 -0
- package/internal-do-not-import-from-here/wctypings.d.ts +10 -0
- package/package.json +4 -4
- package/internal-do-not-import-from-here/ux/markdown/plugins/CodeMarkdownRenderer.d.ts +0 -0
- package/internal-do-not-import-from-here/ux/models/linkpicker/LinkItem.d.ts +0 -8
- /package/internal-do-not-import-from-here/ux/{flow/editor/models → models/flow}/EditorModels.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/{flow/editor/models → models/flow}/EditorPlugin.d.ts +0 -0
@@ -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","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":["cssRules","mergeCssRules","toStylexProps"]},"./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","AppPropertiesProvider","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":["cssRules","mergeCssRules","toStylexProps"]},"./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","AppPropertiesProvider","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 +1 @@
|
|
1
|
-
{"name":"omniaVendor","content":{"./client/fx/vue/VueBundler.js":{"id":"./client/fx/vue/vuebundler.ts","buildMeta":{"exportsType":"namespace","sideEffectFree":true},"expo.js":["compile","computed","defineAsyncComponent","defineComponent","getCurrentInstance","h","nextTick","onActivated","onBeforeMount","onBeforeUnmount","onBeforeUpdate","onDeactivated","onErrorCaptured","onMounted","onRenderTriggered","onUnmounted","onUpdated","reactive","ref","unref","watch"]},"./node_modules/@stylexjs/stylex/lib/es/stylex.mjs":{"id":"./node_modules/@stylexjs/stylex/lib/es/stylex.mjs","buildMeta":{"exportsType":"namespace","strictHarmonyModule":true},"expo.js":["__monkey_patch__","attrs","create","createTheme","default","defineVars","firstThatWorks","include","keyframes","legacyMerge","props","types"]},"./node_modules/@vue/reactivity/dist/reactivity.esm-bundler.js":{"id":"./node_modules/@vue/reactivity/dist/reactivity.esm-bundler.js","buildMeta":{"exportsType":"namespace"},"expo.js":["ARRAY_ITERATE_KEY","EffectFlags","EffectScope","ITERATE_KEY","MAP_KEY_ITERATE_KEY","ReactiveEffect","ReactiveFlags","TrackOpTypes","TriggerOpTypes","WatchErrorCodes","computed","customRef","effect","effectScope","enableTracking","getCurrentScope","getCurrentWatcher","isProxy","isReactive","isReadonly","isRef","isShallow","markRaw","onEffectCleanup","onScopeDispose","onWatcherCleanup","pauseTracking","proxyRefs","reactive","reactiveReadArray","readonly","ref","resetTracking","shallowReactive","shallowReadArray","shallowReadonly","shallowRef","stop","toRaw","toReactive","toReadonly","toRef","toRefs","toValue","track","traverse","trigger","triggerRef","unref","watch"]},"./node_modules/@vue/runtime-core/dist/runtime-core.esm-bundler.js":{"id":"./node_modules/@vue/runtime-core/dist/runtime-core.esm-bundler.js","buildMeta":{"exportsType":"namespace"},"expo.js":["BaseTransition","BaseTransitionPropsValidators","Comment","DeprecationTypes","EffectScope","ErrorCodes","ErrorTypeStrings","Fragment","KeepAlive","ReactiveEffect","Static","Suspense","Teleport","Text","TrackOpTypes","TriggerOpTypes","assertNumber","callWithAsyncErrorHandling","callWithErrorHandling","camelize","capitalize","cloneVNode","compatUtils","computed","createBlock","createCommentVNode","createElementBlock","createElementVNode","createHydrationRenderer","createPropsRestProxy","createRenderer","createSlots","createStaticVNode","createTextVNode","createVNode","customRef","defineAsyncComponent","defineComponent","defineEmits","defineExpose","defineModel","defineOptions","defineProps","defineSlots","devtools","effect","effectScope","getCurrentInstance","getCurrentScope","getCurrentWatcher","getTransitionRawChildren","guardReactiveProps","h","handleError","hasInjectionContext","hydrateOnIdle","hydrateOnInteraction","hydrateOnMediaQuery","hydrateOnVisible","initCustomFormatter","inject","isMemoSame","isProxy","isReactive","isReadonly","isRef","isRuntimeOnly","isShallow","isVNode","markRaw","mergeDefaults","mergeModels","mergeProps","nextTick","normalizeClass","normalizeProps","normalizeStyle","onActivated","onBeforeMount","onBeforeUnmount","onBeforeUpdate","onDeactivated","onErrorCaptured","onMounted","onRenderTracked","onRenderTriggered","onScopeDispose","onServerPrefetch","onUnmounted","onUpdated","onWatcherCleanup","openBlock","popScopeId","provide","proxyRefs","pushScopeId","queuePostFlushCb","reactive","readonly","ref","registerRuntimeCompiler","renderList","renderSlot","resolveComponent","resolveDirective","resolveDynamicComponent","resolveFilter","resolveTransitionHooks","setBlockTracking","setDevtoolsHook","setTransitionHooks","shallowReactive","shallowReadonly","shallowRef","ssrContextKey","ssrUtils","stop","toDisplayString","toHandlerKey","toHandlers","toRaw","toRef","toRefs","toValue","transformVNodeArgs","triggerRef","unref","useAttrs","useId","useModel","useSSRContext","useSlots","useTemplateRef","useTransitionState","version","warn","watch","watchEffect","watchPostEffect","watchSyncEffect","withAsyncContext","withCtx","withDefaults","withDirectives","withMemo","withScopeId"]},"./node_modules/@vue/runtime-dom/dist/runtime-dom.esm-bundler.js":{"id":"./node_modules/@vue/runtime-dom/dist/runtime-dom.esm-bundler.js","buildMeta":{"exportsType":"namespace"},"expo.js":["BaseTransition","BaseTransitionPropsValidators","Comment","DeprecationTypes","EffectScope","ErrorCodes","ErrorTypeStrings","Fragment","KeepAlive","ReactiveEffect","Static","Suspense","Teleport","Text","TrackOpTypes","Transition","TransitionGroup","TriggerOpTypes","VueElement","assertNumber","callWithAsyncErrorHandling","callWithErrorHandling","camelize","capitalize","cloneVNode","compatUtils","computed","createApp","createBlock","createCommentVNode","createElementBlock","createElementVNode","createHydrationRenderer","createPropsRestProxy","createRenderer","createSSRApp","createSlots","createStaticVNode","createTextVNode","createVNode","customRef","defineAsyncComponent","defineComponent","defineCustomElement","defineEmits","defineExpose","defineModel","defineOptions","defineProps","defineSSRCustomElement","defineSlots","devtools","effect","effectScope","getCurrentInstance","getCurrentScope","getCurrentWatcher","getTransitionRawChildren","guardReactiveProps","h","handleError","hasInjectionContext","hydrate","hydrateOnIdle","hydrateOnInteraction","hydrateOnMediaQuery","hydrateOnVisible","initCustomFormatter","initDirectivesForSSR","inject","isMemoSame","isProxy","isReactive","isReadonly","isRef","isRuntimeOnly","isShallow","isVNode","markRaw","mergeDefaults","mergeModels","mergeProps","nextTick","normalizeClass","normalizeProps","normalizeStyle","onActivated","onBeforeMount","onBeforeUnmount","onBeforeUpdate","onDeactivated","onErrorCaptured","onMounted","onRenderTracked","onRenderTriggered","onScopeDispose","onServerPrefetch","onUnmounted","onUpdated","onWatcherCleanup","openBlock","popScopeId","provide","proxyRefs","pushScopeId","queuePostFlushCb","reactive","readonly","ref","registerRuntimeCompiler","render","renderList","renderSlot","resolveComponent","resolveDirective","resolveDynamicComponent","resolveFilter","resolveTransitionHooks","setBlockTracking","setDevtoolsHook","setTransitionHooks","shallowReactive","shallowReadonly","shallowRef","ssrContextKey","ssrUtils","stop","toDisplayString","toHandlerKey","toHandlers","toRaw","toRef","toRefs","toValue","transformVNodeArgs","triggerRef","unref","useAttrs","useCssModule","useCssVars","useHost","useId","useModel","useSSRContext","useShadowRoot","useSlots","useTemplateRef","useTransitionState","vModelCheckbox","vModelDynamic","vModelRadio","vModelSelect","vModelText","vShow","version","warn","watch","watchEffect","watchPostEffect","watchSyncEffect","withAsyncContext","withCtx","withDefaults","withDirectives","withKeys","withMemo","withModifiers","withScopeId"]},"./node_modules/@vue/shared/dist/shared.esm-bundler.js":{"id":"./node_modules/@vue/shared/dist/shared.esm-bundler.js","buildMeta":{"exportsType":"namespace"},"expo.js":["EMPTY_ARR","EMPTY_OBJ","NO","NOOP","PatchFlagNames","PatchFlags","ShapeFlags","SlotFlags","camelize","capitalize","cssVarNameEscapeSymbolsRE","def","escapeHtml","escapeHtmlComment","extend","genPropsAccessExp","generateCodeFrame","getEscapedCssVarName","getGlobalThis","hasChanged","hasOwn","hyphenate","includeBooleanAttr","invokeArrayFns","isArray","isBooleanAttr","isBuiltInDirective","isDate","isFunction","isGloballyAllowed","isGloballyWhitelisted","isHTMLTag","isIntegerKey","isKnownHtmlAttr","isKnownSvgAttr","isMap","isMathMLTag","isModelListener","isObject","isOn","isPlainObject","isPromise","isRegExp","isRenderableAttrValue","isReservedProp","isSSRSafeAttrName","isSVGTag","isSet","isSpecialBooleanAttr","isString","isSymbol","isVoidTag","looseEqual","looseIndexOf","looseToNumber","makeMap","normalizeClass","normalizeProps","normalizeStyle","objectToString","parseStringStyle","propsToAttrMap","remove","slotFlagsText","stringifyStyle","toDisplayString","toHandlerKey","toNumber","toRawType","toTypeString"]},"./node_modules/csx/lib.es2015/background.js":{"id":"./node_modules/csx/lib.es2015/background.js","buildMeta":{"exportsType":"namespace","sideEffectFree":true},"expo.js":["background"]},"./node_modules/csx/lib.es2015/border.js":{"id":"./node_modules/csx/lib.es2015/border.js","buildMeta":{"exportsType":"namespace","sideEffectFree":true},"expo.js":["border","borderColor","borderStyle","borderWidth"]},"./node_modules/csx/lib.es2015/color.js":{"id":"./node_modules/csx/lib.es2015/color.js","buildMeta":{"exportsType":"namespace"},"expo.js":["ColorHelper","color","hsl","hsla","rgb","rgba"]},"./node_modules/csx/lib.es2015/gradient.js":{"id":"./node_modules/csx/lib.es2015/gradient.js","buildMeta":{"exportsType":"namespace","sideEffectFree":true},"expo.js":["linearGradient","repeatingLinearGradient"]},"./node_modules/csx/lib.es2015/index.js":{"id":"./node_modules/csx/lib.es2015/index.js","buildMeta":{"exportsType":"namespace","sideEffectFree":true},"expo.js":["ColorHelper","background","border","borderColor","borderStyle","borderWidth","calc","coalesce","color","deg","em","hsl","hsla","important","linearGradient","list","margin","matrix","matrix3d","padding","params","percent","perspective","px","quote","rad","rem","repeatingLinearGradient","rgb","rgba","rotate","rotate3d","rotateX","rotateY","rotateZ","scale","scale3d","scaleX","scaleY","scaleZ","skew","skewX","skewY","transform","translate","translate3d","translateX","translateY","translateZ","turn","url","viewHeight","viewWidth"]},"./node_modules/csx/lib.es2015/lists.js":{"id":"./node_modules/csx/lib.es2015/lists.js","buildMeta":{"exportsType":"namespace"},"expo.js":["list","params"]},"./node_modules/csx/lib.es2015/margin.js":{"id":"./node_modules/csx/lib.es2015/margin.js","buildMeta":{"exportsType":"namespace","sideEffectFree":true},"expo.js":["margin"]},"./node_modules/csx/lib.es2015/padding.js":{"id":"./node_modules/csx/lib.es2015/padding.js","buildMeta":{"exportsType":"namespace","sideEffectFree":true},"expo.js":["padding"]},"./node_modules/csx/lib.es2015/strings.js":{"id":"./node_modules/csx/lib.es2015/strings.js","buildMeta":{"exportsType":"namespace","sideEffectFree":true},"expo.js":["calc","coalesce","important","quote","url"]},"./node_modules/csx/lib.es2015/transforms.js":{"id":"./node_modules/csx/lib.es2015/transforms.js","buildMeta":{"exportsType":"namespace"},"expo.js":["matrix","matrix3d","perspective","rotate","rotate3d","rotateX","rotateY","rotateZ","scale","scale3d","scaleX","scaleY","scaleZ","skew","skewX","skewY","transform","translate","translate3d","translateX","translateY","translateZ"]},"./node_modules/csx/lib.es2015/units.js":{"id":"./node_modules/csx/lib.es2015/units.js","buildMeta":{"exportsType":"namespace"},"expo.js":["deg","em","percent","px","rad","rem","turn","viewHeight","viewWidth"]},"./node_modules/csx/lib.es2015/utils/arrays.js":{"id":"./node_modules/csx/lib.es2015/utils/arrays.js","buildMeta":{"exportsType":"namespace","sideEffectFree":true},"expo.js":["filter","map"]},"./node_modules/csx/lib.es2015/utils/formatting.js":{"id":"./node_modules/csx/lib.es2015/utils/formatting.js","buildMeta":{"exportsType":"namespace","sideEffectFree":true},"expo.js":["createFunction","cssFunction","ensureLength","ensurePercent","formatFloat","formatPercent","formatUnit","parseCSSFunction","toFloat"]},"./node_modules/csx/lib.es2015/utils/math.js":{"id":"./node_modules/csx/lib.es2015/utils/math.js","buildMeta":{"exportsType":"namespace"},"expo.js":["round","roundFloat"]},"./node_modules/dayjs/dayjs.min.js":{"id":"./node_modules/dayjs/dayjs.min.js","buildMeta":{}},"./node_modules/dayjs/locale/da.js":{"id":"./node_modules/dayjs/locale/da.js","buildMeta":{}},"./node_modules/dayjs/locale/de.js":{"id":"./node_modules/dayjs/locale/de.js","buildMeta":{}},"./node_modules/dayjs/locale/et.js":{"id":"./node_modules/dayjs/locale/et.js","buildMeta":{}},"./node_modules/dayjs/locale/fr.js":{"id":"./node_modules/dayjs/locale/fr.js","buildMeta":{}},"./node_modules/dayjs/locale/lt.js":{"id":"./node_modules/dayjs/locale/lt.js","buildMeta":{}},"./node_modules/dayjs/locale/lv.js":{"id":"./node_modules/dayjs/locale/lv.js","buildMeta":{}},"./node_modules/dayjs/locale/pl.js":{"id":"./node_modules/dayjs/locale/pl.js","buildMeta":{}},"./node_modules/dayjs/locale/sv.js":{"id":"./node_modules/dayjs/locale/sv.js","buildMeta":{}},"./node_modules/dayjs/plugin/duration.js":{"id":"./node_modules/dayjs/plugin/duration.js","buildMeta":{}},"./node_modules/dayjs/plugin/relativeTime.js":{"id":"./node_modules/dayjs/plugin/relativetime.js","buildMeta":{}},"./node_modules/dayjs/plugin/timezone.js":{"id":"./node_modules/dayjs/plugin/timezone.js","buildMeta":{}},"./node_modules/dayjs/plugin/utc.js":{"id":"./node_modules/dayjs/plugin/utc.js","buildMeta":{}},"./node_modules/free-style/dist.es2015/index.js":{"id":"./node_modules/free-style/dist.es2015/index.js","buildMeta":{"exportsType":"namespace"},"expo.js":["Cache","FreeStyle","Rule","Selector","Style","create"]},"./node_modules/lodash.isequal/index.js":{"id":"./node_modules/lodash.isequal/index.js","buildMeta":{}},"./node_modules/mousetrap-global-bind/mousetrap-global-bind.js":{"id":"./node_modules/mousetrap-global-bind/mousetrap-global-bind.js","buildMeta":{}},"./node_modules/mousetrap/mousetrap.js":{"id":"./node_modules/mousetrap/mousetrap.js","buildMeta":{}},"./node_modules/typestyle/lib.es2015/index.js":{"id":"./node_modules/typestyle/lib.es2015/index.js","buildMeta":{"exportsType":"namespace"},"expo.js":["TypeStyle","classes","createTypeStyle","cssRaw","cssRule","extend","fontFace","forceRenderStyles","getStyles","keyframes","media","reinit","setStylesTarget","style","stylesheet","types"]},"./node_modules/typestyle/lib.es2015/internal/formatting.js":{"id":"./node_modules/typestyle/lib.es2015/internal/formatting.js","buildMeta":{"exportsType":"namespace","sideEffectFree":true},"expo.js":["convertToKeyframes","convertToStyles"]},"./node_modules/typestyle/lib.es2015/internal/typestyle.js":{"id":"./node_modules/typestyle/lib.es2015/internal/typestyle.js","buildMeta":{"exportsType":"namespace"},"expo.js":["TypeStyle"]},"./node_modules/typestyle/lib.es2015/internal/utilities.js":{"id":"./node_modules/typestyle/lib.es2015/internal/utilities.js","buildMeta":{"exportsType":"namespace"},"expo.js":["classes","extend","media","raf"]},"./node_modules/typestyle/lib.es2015/types.js":{"id":"./node_modules/typestyle/lib.es2015/types.js","buildMeta":{"sideEffectFree":true}},"./node_modules/vue/dist/vue.runtime.esm-bundler.js":{"id":"./node_modules/vue/dist/vue.runtime.esm-bundler.js","buildMeta":{"exportsType":"namespace","sideEffectFree":true},"expo.js":["BaseTransition","BaseTransitionPropsValidators","Comment","DeprecationTypes","EffectScope","ErrorCodes","ErrorTypeStrings","Fragment","KeepAlive","ReactiveEffect","Static","Suspense","Teleport","Text","TrackOpTypes","Transition","TransitionGroup","TriggerOpTypes","VueElement","assertNumber","callWithAsyncErrorHandling","callWithErrorHandling","camelize","capitalize","cloneVNode","compatUtils","compile","computed","createApp","createBlock","createCommentVNode","createElementBlock","createElementVNode","createHydrationRenderer","createPropsRestProxy","createRenderer","createSSRApp","createSlots","createStaticVNode","createTextVNode","createVNode","customRef","defineAsyncComponent","defineComponent","defineCustomElement","defineEmits","defineExpose","defineModel","defineOptions","defineProps","defineSSRCustomElement","defineSlots","devtools","effect","effectScope","getCurrentInstance","getCurrentScope","getCurrentWatcher","getTransitionRawChildren","guardReactiveProps","h","handleError","hasInjectionContext","hydrate","hydrateOnIdle","hydrateOnInteraction","hydrateOnMediaQuery","hydrateOnVisible","initCustomFormatter","initDirectivesForSSR","inject","isMemoSame","isProxy","isReactive","isReadonly","isRef","isRuntimeOnly","isShallow","isVNode","markRaw","mergeDefaults","mergeModels","mergeProps","nextTick","normalizeClass","normalizeProps","normalizeStyle","onActivated","onBeforeMount","onBeforeUnmount","onBeforeUpdate","onDeactivated","onErrorCaptured","onMounted","onRenderTracked","onRenderTriggered","onScopeDispose","onServerPrefetch","onUnmounted","onUpdated","onWatcherCleanup","openBlock","popScopeId","provide","proxyRefs","pushScopeId","queuePostFlushCb","reactive","readonly","ref","registerRuntimeCompiler","render","renderList","renderSlot","resolveComponent","resolveDirective","resolveDynamicComponent","resolveFilter","resolveTransitionHooks","setBlockTracking","setDevtoolsHook","setTransitionHooks","shallowReactive","shallowReadonly","shallowRef","ssrContextKey","ssrUtils","stop","toDisplayString","toHandlerKey","toHandlers","toRaw","toRef","toRefs","toValue","transformVNodeArgs","triggerRef","unref","useAttrs","useCssModule","useCssVars","useHost","useId","useModel","useSSRContext","useShadowRoot","useSlots","useTemplateRef","useTransitionState","vModelCheckbox","vModelDynamic","vModelRadio","vModelSelect","vModelText","vShow","version","warn","watch","watchEffect","watchPostEffect","watchSyncEffect","withAsyncContext","withCtx","withDefaults","withDirectives","withKeys","withMemo","withModifiers","withScopeId"]}}}
|
1
|
+
{"name":"omniaVendor","content":{"./client/fx/vue/VueBundler.js":{"id":"./client/fx/vue/vuebundler.ts","buildMeta":{"exportsType":"namespace","sideEffectFree":true},"expo.js":["compile","computed","defineAsyncComponent","defineComponent","getCurrentInstance","h","nextTick","onActivated","onBeforeMount","onBeforeUnmount","onBeforeUpdate","onDeactivated","onErrorCaptured","onMounted","onRenderTriggered","onUnmounted","onUpdated","reactive","ref","unref","watch"]},"./node_modules/@stylexjs/stylex/lib/es/stylex.mjs":{"id":"./node_modules/@stylexjs/stylex/lib/es/stylex.mjs","buildMeta":{"exportsType":"namespace","strictHarmonyModule":true},"expo.js":["__monkey_patch__","attrs","create","createTheme","default","defineVars","firstThatWorks","include","keyframes","legacyMerge","props","types"]},"./node_modules/@vue/reactivity/dist/reactivity.esm-bundler.js":{"id":"./node_modules/@vue/reactivity/dist/reactivity.esm-bundler.js","buildMeta":{"exportsType":"namespace"},"expo.js":["ARRAY_ITERATE_KEY","EffectFlags","EffectScope","ITERATE_KEY","MAP_KEY_ITERATE_KEY","ReactiveEffect","ReactiveFlags","TrackOpTypes","TriggerOpTypes","WatchErrorCodes","computed","customRef","effect","effectScope","enableTracking","getCurrentScope","getCurrentWatcher","isProxy","isReactive","isReadonly","isRef","isShallow","markRaw","onEffectCleanup","onScopeDispose","onWatcherCleanup","pauseTracking","proxyRefs","reactive","reactiveReadArray","readonly","ref","resetTracking","shallowReactive","shallowReadArray","shallowReadonly","shallowRef","stop","toRaw","toReactive","toReadonly","toRef","toRefs","toValue","track","traverse","trigger","triggerRef","unref","watch"]},"./node_modules/@vue/runtime-core/dist/runtime-core.esm-bundler.js":{"id":"./node_modules/@vue/runtime-core/dist/runtime-core.esm-bundler.js","buildMeta":{"exportsType":"namespace"},"expo.js":["BaseTransition","BaseTransitionPropsValidators","Comment","DeprecationTypes","EffectScope","ErrorCodes","ErrorTypeStrings","Fragment","KeepAlive","ReactiveEffect","Static","Suspense","Teleport","Text","TrackOpTypes","TriggerOpTypes","assertNumber","callWithAsyncErrorHandling","callWithErrorHandling","camelize","capitalize","cloneVNode","compatUtils","computed","createBlock","createCommentVNode","createElementBlock","createElementVNode","createHydrationRenderer","createPropsRestProxy","createRenderer","createSlots","createStaticVNode","createTextVNode","createVNode","customRef","defineAsyncComponent","defineComponent","defineEmits","defineExpose","defineModel","defineOptions","defineProps","defineSlots","devtools","effect","effectScope","getCurrentInstance","getCurrentScope","getCurrentWatcher","getTransitionRawChildren","guardReactiveProps","h","handleError","hasInjectionContext","hydrateOnIdle","hydrateOnInteraction","hydrateOnMediaQuery","hydrateOnVisible","initCustomFormatter","inject","isMemoSame","isProxy","isReactive","isReadonly","isRef","isRuntimeOnly","isShallow","isVNode","markRaw","mergeDefaults","mergeModels","mergeProps","nextTick","normalizeClass","normalizeProps","normalizeStyle","onActivated","onBeforeMount","onBeforeUnmount","onBeforeUpdate","onDeactivated","onErrorCaptured","onMounted","onRenderTracked","onRenderTriggered","onScopeDispose","onServerPrefetch","onUnmounted","onUpdated","onWatcherCleanup","openBlock","popScopeId","provide","proxyRefs","pushScopeId","queuePostFlushCb","reactive","readonly","ref","registerRuntimeCompiler","renderList","renderSlot","resolveComponent","resolveDirective","resolveDynamicComponent","resolveFilter","resolveTransitionHooks","setBlockTracking","setDevtoolsHook","setTransitionHooks","shallowReactive","shallowReadonly","shallowRef","ssrContextKey","ssrUtils","stop","toDisplayString","toHandlerKey","toHandlers","toRaw","toRef","toRefs","toValue","transformVNodeArgs","triggerRef","unref","useAttrs","useId","useModel","useSSRContext","useSlots","useTemplateRef","useTransitionState","version","warn","watch","watchEffect","watchPostEffect","watchSyncEffect","withAsyncContext","withCtx","withDefaults","withDirectives","withMemo","withScopeId"]},"./node_modules/@vue/runtime-dom/dist/runtime-dom.esm-bundler.js":{"id":"./node_modules/@vue/runtime-dom/dist/runtime-dom.esm-bundler.js","buildMeta":{"exportsType":"namespace"},"expo.js":["BaseTransition","BaseTransitionPropsValidators","Comment","DeprecationTypes","EffectScope","ErrorCodes","ErrorTypeStrings","Fragment","KeepAlive","ReactiveEffect","Static","Suspense","Teleport","Text","TrackOpTypes","Transition","TransitionGroup","TriggerOpTypes","VueElement","assertNumber","callWithAsyncErrorHandling","callWithErrorHandling","camelize","capitalize","cloneVNode","compatUtils","computed","createApp","createBlock","createCommentVNode","createElementBlock","createElementVNode","createHydrationRenderer","createPropsRestProxy","createRenderer","createSSRApp","createSlots","createStaticVNode","createTextVNode","createVNode","customRef","defineAsyncComponent","defineComponent","defineCustomElement","defineEmits","defineExpose","defineModel","defineOptions","defineProps","defineSSRCustomElement","defineSlots","devtools","effect","effectScope","getCurrentInstance","getCurrentScope","getCurrentWatcher","getTransitionRawChildren","guardReactiveProps","h","handleError","hasInjectionContext","hydrate","hydrateOnIdle","hydrateOnInteraction","hydrateOnMediaQuery","hydrateOnVisible","initCustomFormatter","initDirectivesForSSR","inject","isMemoSame","isProxy","isReactive","isReadonly","isRef","isRuntimeOnly","isShallow","isVNode","markRaw","mergeDefaults","mergeModels","mergeProps","nextTick","normalizeClass","normalizeProps","normalizeStyle","onActivated","onBeforeMount","onBeforeUnmount","onBeforeUpdate","onDeactivated","onErrorCaptured","onMounted","onRenderTracked","onRenderTriggered","onScopeDispose","onServerPrefetch","onUnmounted","onUpdated","onWatcherCleanup","openBlock","popScopeId","provide","proxyRefs","pushScopeId","queuePostFlushCb","reactive","readonly","ref","registerRuntimeCompiler","render","renderList","renderSlot","resolveComponent","resolveDirective","resolveDynamicComponent","resolveFilter","resolveTransitionHooks","setBlockTracking","setDevtoolsHook","setTransitionHooks","shallowReactive","shallowReadonly","shallowRef","ssrContextKey","ssrUtils","stop","toDisplayString","toHandlerKey","toHandlers","toRaw","toRef","toRefs","toValue","transformVNodeArgs","triggerRef","unref","useAttrs","useCssModule","useCssVars","useHost","useId","useModel","useSSRContext","useShadowRoot","useSlots","useTemplateRef","useTransitionState","vModelCheckbox","vModelDynamic","vModelRadio","vModelSelect","vModelText","vShow","version","warn","watch","watchEffect","watchPostEffect","watchSyncEffect","withAsyncContext","withCtx","withDefaults","withDirectives","withKeys","withMemo","withModifiers","withScopeId"]},"./node_modules/@vue/shared/dist/shared.esm-bundler.js":{"id":"./node_modules/@vue/shared/dist/shared.esm-bundler.js","buildMeta":{"exportsType":"namespace"},"expo.js":["EMPTY_ARR","EMPTY_OBJ","NO","NOOP","PatchFlagNames","PatchFlags","ShapeFlags","SlotFlags","camelize","capitalize","cssVarNameEscapeSymbolsRE","def","escapeHtml","escapeHtmlComment","extend","genPropsAccessExp","generateCodeFrame","getEscapedCssVarName","getGlobalThis","hasChanged","hasOwn","hyphenate","includeBooleanAttr","invokeArrayFns","isArray","isBooleanAttr","isBuiltInDirective","isDate","isFunction","isGloballyAllowed","isGloballyWhitelisted","isHTMLTag","isIntegerKey","isKnownHtmlAttr","isKnownMathMLAttr","isKnownSvgAttr","isMap","isMathMLTag","isModelListener","isObject","isOn","isPlainObject","isPromise","isRegExp","isRenderableAttrValue","isReservedProp","isSSRSafeAttrName","isSVGTag","isSet","isSpecialBooleanAttr","isString","isSymbol","isVoidTag","looseEqual","looseIndexOf","looseToNumber","makeMap","normalizeClass","normalizeProps","normalizeStyle","objectToString","parseStringStyle","propsToAttrMap","remove","slotFlagsText","stringifyStyle","toDisplayString","toHandlerKey","toNumber","toRawType","toTypeString"]},"./node_modules/csx/lib.es2015/background.js":{"id":"./node_modules/csx/lib.es2015/background.js","buildMeta":{"exportsType":"namespace","sideEffectFree":true},"expo.js":["background"]},"./node_modules/csx/lib.es2015/border.js":{"id":"./node_modules/csx/lib.es2015/border.js","buildMeta":{"exportsType":"namespace","sideEffectFree":true},"expo.js":["border","borderColor","borderStyle","borderWidth"]},"./node_modules/csx/lib.es2015/color.js":{"id":"./node_modules/csx/lib.es2015/color.js","buildMeta":{"exportsType":"namespace"},"expo.js":["ColorHelper","color","hsl","hsla","rgb","rgba"]},"./node_modules/csx/lib.es2015/gradient.js":{"id":"./node_modules/csx/lib.es2015/gradient.js","buildMeta":{"exportsType":"namespace","sideEffectFree":true},"expo.js":["linearGradient","repeatingLinearGradient"]},"./node_modules/csx/lib.es2015/index.js":{"id":"./node_modules/csx/lib.es2015/index.js","buildMeta":{"exportsType":"namespace","sideEffectFree":true},"expo.js":["ColorHelper","background","border","borderColor","borderStyle","borderWidth","calc","coalesce","color","deg","em","hsl","hsla","important","linearGradient","list","margin","matrix","matrix3d","padding","params","percent","perspective","px","quote","rad","rem","repeatingLinearGradient","rgb","rgba","rotate","rotate3d","rotateX","rotateY","rotateZ","scale","scale3d","scaleX","scaleY","scaleZ","skew","skewX","skewY","transform","translate","translate3d","translateX","translateY","translateZ","turn","url","viewHeight","viewWidth"]},"./node_modules/csx/lib.es2015/lists.js":{"id":"./node_modules/csx/lib.es2015/lists.js","buildMeta":{"exportsType":"namespace"},"expo.js":["list","params"]},"./node_modules/csx/lib.es2015/margin.js":{"id":"./node_modules/csx/lib.es2015/margin.js","buildMeta":{"exportsType":"namespace","sideEffectFree":true},"expo.js":["margin"]},"./node_modules/csx/lib.es2015/padding.js":{"id":"./node_modules/csx/lib.es2015/padding.js","buildMeta":{"exportsType":"namespace","sideEffectFree":true},"expo.js":["padding"]},"./node_modules/csx/lib.es2015/strings.js":{"id":"./node_modules/csx/lib.es2015/strings.js","buildMeta":{"exportsType":"namespace","sideEffectFree":true},"expo.js":["calc","coalesce","important","quote","url"]},"./node_modules/csx/lib.es2015/transforms.js":{"id":"./node_modules/csx/lib.es2015/transforms.js","buildMeta":{"exportsType":"namespace"},"expo.js":["matrix","matrix3d","perspective","rotate","rotate3d","rotateX","rotateY","rotateZ","scale","scale3d","scaleX","scaleY","scaleZ","skew","skewX","skewY","transform","translate","translate3d","translateX","translateY","translateZ"]},"./node_modules/csx/lib.es2015/units.js":{"id":"./node_modules/csx/lib.es2015/units.js","buildMeta":{"exportsType":"namespace"},"expo.js":["deg","em","percent","px","rad","rem","turn","viewHeight","viewWidth"]},"./node_modules/csx/lib.es2015/utils/arrays.js":{"id":"./node_modules/csx/lib.es2015/utils/arrays.js","buildMeta":{"exportsType":"namespace","sideEffectFree":true},"expo.js":["filter","map"]},"./node_modules/csx/lib.es2015/utils/formatting.js":{"id":"./node_modules/csx/lib.es2015/utils/formatting.js","buildMeta":{"exportsType":"namespace","sideEffectFree":true},"expo.js":["createFunction","cssFunction","ensureLength","ensurePercent","formatFloat","formatPercent","formatUnit","parseCSSFunction","toFloat"]},"./node_modules/csx/lib.es2015/utils/math.js":{"id":"./node_modules/csx/lib.es2015/utils/math.js","buildMeta":{"exportsType":"namespace"},"expo.js":["round","roundFloat"]},"./node_modules/dayjs/dayjs.min.js":{"id":"./node_modules/dayjs/dayjs.min.js","buildMeta":{}},"./node_modules/dayjs/locale/da.js":{"id":"./node_modules/dayjs/locale/da.js","buildMeta":{}},"./node_modules/dayjs/locale/de.js":{"id":"./node_modules/dayjs/locale/de.js","buildMeta":{}},"./node_modules/dayjs/locale/et.js":{"id":"./node_modules/dayjs/locale/et.js","buildMeta":{}},"./node_modules/dayjs/locale/fr.js":{"id":"./node_modules/dayjs/locale/fr.js","buildMeta":{}},"./node_modules/dayjs/locale/lt.js":{"id":"./node_modules/dayjs/locale/lt.js","buildMeta":{}},"./node_modules/dayjs/locale/lv.js":{"id":"./node_modules/dayjs/locale/lv.js","buildMeta":{}},"./node_modules/dayjs/locale/pl.js":{"id":"./node_modules/dayjs/locale/pl.js","buildMeta":{}},"./node_modules/dayjs/locale/sv.js":{"id":"./node_modules/dayjs/locale/sv.js","buildMeta":{}},"./node_modules/dayjs/plugin/duration.js":{"id":"./node_modules/dayjs/plugin/duration.js","buildMeta":{}},"./node_modules/dayjs/plugin/relativeTime.js":{"id":"./node_modules/dayjs/plugin/relativetime.js","buildMeta":{}},"./node_modules/dayjs/plugin/timezone.js":{"id":"./node_modules/dayjs/plugin/timezone.js","buildMeta":{}},"./node_modules/dayjs/plugin/utc.js":{"id":"./node_modules/dayjs/plugin/utc.js","buildMeta":{}},"./node_modules/free-style/dist.es2015/index.js":{"id":"./node_modules/free-style/dist.es2015/index.js","buildMeta":{"exportsType":"namespace"},"expo.js":["Cache","FreeStyle","Rule","Selector","Style","create"]},"./node_modules/lodash.isequal/index.js":{"id":"./node_modules/lodash.isequal/index.js","buildMeta":{}},"./node_modules/mousetrap-global-bind/mousetrap-global-bind.js":{"id":"./node_modules/mousetrap-global-bind/mousetrap-global-bind.js","buildMeta":{}},"./node_modules/mousetrap/mousetrap.js":{"id":"./node_modules/mousetrap/mousetrap.js","buildMeta":{}},"./node_modules/typestyle/lib.es2015/index.js":{"id":"./node_modules/typestyle/lib.es2015/index.js","buildMeta":{"exportsType":"namespace"},"expo.js":["TypeStyle","classes","createTypeStyle","cssRaw","cssRule","extend","fontFace","forceRenderStyles","getStyles","keyframes","media","reinit","setStylesTarget","style","stylesheet","types"]},"./node_modules/typestyle/lib.es2015/internal/formatting.js":{"id":"./node_modules/typestyle/lib.es2015/internal/formatting.js","buildMeta":{"exportsType":"namespace","sideEffectFree":true},"expo.js":["convertToKeyframes","convertToStyles"]},"./node_modules/typestyle/lib.es2015/internal/typestyle.js":{"id":"./node_modules/typestyle/lib.es2015/internal/typestyle.js","buildMeta":{"exportsType":"namespace"},"expo.js":["TypeStyle"]},"./node_modules/typestyle/lib.es2015/internal/utilities.js":{"id":"./node_modules/typestyle/lib.es2015/internal/utilities.js","buildMeta":{"exportsType":"namespace"},"expo.js":["classes","extend","media","raf"]},"./node_modules/typestyle/lib.es2015/types.js":{"id":"./node_modules/typestyle/lib.es2015/types.js","buildMeta":{"sideEffectFree":true}},"./node_modules/vue/dist/vue.runtime.esm-bundler.js":{"id":"./node_modules/vue/dist/vue.runtime.esm-bundler.js","buildMeta":{"exportsType":"namespace","sideEffectFree":true},"expo.js":["BaseTransition","BaseTransitionPropsValidators","Comment","DeprecationTypes","EffectScope","ErrorCodes","ErrorTypeStrings","Fragment","KeepAlive","ReactiveEffect","Static","Suspense","Teleport","Text","TrackOpTypes","Transition","TransitionGroup","TriggerOpTypes","VueElement","assertNumber","callWithAsyncErrorHandling","callWithErrorHandling","camelize","capitalize","cloneVNode","compatUtils","compile","computed","createApp","createBlock","createCommentVNode","createElementBlock","createElementVNode","createHydrationRenderer","createPropsRestProxy","createRenderer","createSSRApp","createSlots","createStaticVNode","createTextVNode","createVNode","customRef","defineAsyncComponent","defineComponent","defineCustomElement","defineEmits","defineExpose","defineModel","defineOptions","defineProps","defineSSRCustomElement","defineSlots","devtools","effect","effectScope","getCurrentInstance","getCurrentScope","getCurrentWatcher","getTransitionRawChildren","guardReactiveProps","h","handleError","hasInjectionContext","hydrate","hydrateOnIdle","hydrateOnInteraction","hydrateOnMediaQuery","hydrateOnVisible","initCustomFormatter","initDirectivesForSSR","inject","isMemoSame","isProxy","isReactive","isReadonly","isRef","isRuntimeOnly","isShallow","isVNode","markRaw","mergeDefaults","mergeModels","mergeProps","nextTick","normalizeClass","normalizeProps","normalizeStyle","onActivated","onBeforeMount","onBeforeUnmount","onBeforeUpdate","onDeactivated","onErrorCaptured","onMounted","onRenderTracked","onRenderTriggered","onScopeDispose","onServerPrefetch","onUnmounted","onUpdated","onWatcherCleanup","openBlock","popScopeId","provide","proxyRefs","pushScopeId","queuePostFlushCb","reactive","readonly","ref","registerRuntimeCompiler","render","renderList","renderSlot","resolveComponent","resolveDirective","resolveDynamicComponent","resolveFilter","resolveTransitionHooks","setBlockTracking","setDevtoolsHook","setTransitionHooks","shallowReactive","shallowReadonly","shallowRef","ssrContextKey","ssrUtils","stop","toDisplayString","toHandlerKey","toHandlers","toRaw","toRef","toRefs","toValue","transformVNodeArgs","triggerRef","unref","useAttrs","useCssModule","useCssVars","useHost","useId","useModel","useSSRContext","useShadowRoot","useSlots","useTemplateRef","useTransitionState","vModelCheckbox","vModelDynamic","vModelRadio","vModelSelect","vModelText","vShow","version","warn","watch","watchEffect","watchPostEffect","watchSyncEffect","withAsyncContext","withCtx","withDefaults","withDirectives","withKeys","withMemo","withModifiers","withScopeId"]}}}
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import { SubscriptionHandler } from "@omnia/fx";
|
2
|
-
import { ComponentInjectOptions, ComponentObjectPropsOptions, ComponentOptions, ComponentOptionsBase, ComponentOptionsMixin, ComponentPropsOptions, ComputedOptions, CreateComponentPublicInstance, DefineComponent, EmitsOptions, ExtractDefaultPropTypes, MethodOptions, ObjectEmitsOptions, Prop, PropType, RenderFunction, Slot, SlotsType, VNode, VNodeArrayChildren, VNodeProps, VNodeTypes, watch, watchEffect } from "vue";
|
2
|
+
import { ComponentInjectOptions, ComponentObjectPropsOptions, ComponentOptions, ComponentOptionsBase, ComponentOptionsMixin, ComponentPropsOptions, ComputedOptions, CreateComponentPublicInstance, DefineComponent, EmitsOptions, ExtractDefaultPropTypes, MethodOptions, ObjectEmitsOptions, Prop, PropType, RenderFunction, Slot, SlotsType, VNode, VNodeArrayChildren, VNodeChild, VNodeProps, VNodeTypes, watch, watchEffect } from "vue";
|
3
3
|
import { LooseRequired, Prettify, UnionToIntersection } from "@vue/shared";
|
4
4
|
import { ColorSchemaType, ColorSchemaTypes, ComponentBundleManifest, Directives, guid } from "@omnia/fx-models";
|
5
5
|
import { ColorSchemaStoreType, VueComponentBaseProps } from ".";
|
@@ -294,6 +294,14 @@ export declare function getElementName(componentManifestId: guid): string;
|
|
294
294
|
export declare function createVueNode(element: VNodeTypes | guid, props?: RawProps, children?: RawChildren | RawSlots): VNode;
|
295
295
|
export declare function internalDVCByFS(injectOptions: any, options: any, extraOptions: any, register: any): (props: ConstructComponentProps<Record<string, any>>) => any;
|
296
296
|
export declare function isElement<TElement = typeof omfx>(element: string, cb: (elements: TElement) => any): boolean;
|
297
|
+
declare module "@vue/runtime-dom" {
|
298
|
+
interface HTMLAttributes {
|
299
|
+
$children?: VNodeChild;
|
300
|
+
}
|
301
|
+
interface SVGAttributes {
|
302
|
+
$children?: VNodeChild;
|
303
|
+
}
|
304
|
+
}
|
297
305
|
declare global {
|
298
306
|
namespace JSX {
|
299
307
|
interface IntrinsicAttributes {
|
@@ -35,6 +35,7 @@ export declare const builtInDocumeantionAreas: {
|
|
35
35
|
oxide: DocumentationArea;
|
36
36
|
omfx: DocumentationArea;
|
37
37
|
velcron: DocumentationArea;
|
38
|
+
bestPractice: DocumentationArea;
|
38
39
|
};
|
39
40
|
export declare const builtInDocumentationCategories: {
|
40
41
|
containment: DocumentationCategory;
|
@@ -61,6 +62,9 @@ export declare const frameworkDocumentationCategories: {
|
|
61
62
|
use: DocumentationCategory;
|
62
63
|
theming: DocumentationCategory;
|
63
64
|
};
|
65
|
+
export declare const bestPracticesCategories: {
|
66
|
+
typescript: DocumentationCategory;
|
67
|
+
};
|
64
68
|
export interface ComponentSpecRegistration {
|
65
69
|
spec: DocumentationSpec;
|
66
70
|
category: DocumentationCategory;
|
@@ -0,0 +1 @@
|
|
1
|
+
export * from "./typescript/index.md";
|
@@ -0,0 +1 @@
|
|
1
|
+
export {};
|
@@ -1,18 +1,11 @@
|
|
1
|
-
import { VueComponentBase } from "@omnia/fx/ux";
|
2
|
-
import { IWebComponentInstance } from "../..";
|
3
|
-
import { IDocumentIcon } from "./IDocumentIcon";
|
4
1
|
import { ImageSources, IconSizes } from "../../models";
|
5
|
-
|
2
|
+
declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<{
|
6
3
|
color?: string;
|
4
|
+
} & {
|
7
5
|
size?: IconSizes;
|
6
|
+
} & {
|
8
7
|
source?: ImageSources;
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
mounted(): void;
|
14
|
-
extensionChange(): void;
|
15
|
-
private getFontAwesomeFileIcon;
|
16
|
-
private getBase64FileIcon;
|
17
|
-
render(): JSX.Element;
|
18
|
-
}
|
8
|
+
} & {
|
9
|
+
extension?: string;
|
10
|
+
}>) => any;
|
11
|
+
export default _default;
|
@@ -1,5 +1,4 @@
|
|
1
|
-
import {
|
2
|
-
import { FlowContent } from "@omnia/fx/ux";
|
1
|
+
import { FlowContent, FlowEditorPlugin, FlowEditorPluginContext, NodeSelection } from "@omnia/fx/ux";
|
3
2
|
export declare function useEditorCommands(state: {
|
4
3
|
editor: HTMLDivElement;
|
5
4
|
selectedRange: Range;
|
@@ -21,7 +20,7 @@ export declare function useEditorCommands(state: {
|
|
21
20
|
};
|
22
21
|
selection: {
|
23
22
|
get: {
|
24
|
-
byPluginType: (pluginType: string) => import("
|
23
|
+
byPluginType: (pluginType: string) => import("@omnia/fx/ux").FlowNodeReference[];
|
25
24
|
};
|
26
25
|
ensure: {
|
27
26
|
storedRange: () => void;
|
@@ -36,6 +35,7 @@ export declare function useEditorCommands(state: {
|
|
36
35
|
};
|
37
36
|
formatting: {
|
38
37
|
add: (element: HTMLElement) => void;
|
38
|
+
addWithTxt: (element: HTMLElement, text?: string) => void;
|
39
39
|
wrapLine: (element: HTMLElement) => void;
|
40
40
|
remove: (dataType: string | HTMLElement) => void;
|
41
41
|
has: (dataType: string | HTMLElement) => boolean;
|
@@ -70,7 +70,7 @@ export declare function useEditorCommands(state: {
|
|
70
70
|
};
|
71
71
|
editorNode: {
|
72
72
|
get: {
|
73
|
-
nodesInArrayByPluginType: (nodes: Array<import("
|
73
|
+
nodesInArrayByPluginType: (nodes: Array<import("@omnia/fx/ux").FlowNodeReference>, dataType: string) => Array<import("@omnia/fx/ux").FlowNodeReference>;
|
74
74
|
};
|
75
75
|
};
|
76
76
|
htmlNode: {
|
@@ -88,7 +88,7 @@ export declare function useEditorCommands(state: {
|
|
88
88
|
htmlElementInStructureById: (id: string, currentElement: HTMLElement) => HTMLElement;
|
89
89
|
};
|
90
90
|
remove: {
|
91
|
-
nodes: (nodes2Remove: Array<import("
|
91
|
+
nodes: (nodes2Remove: Array<import("@omnia/fx/ux").FlowNodeReference>, editor: HTMLElement) => void;
|
92
92
|
};
|
93
93
|
strip: {
|
94
94
|
after: (element: HTMLElement, splitter: string) => void;
|
@@ -1,5 +1,4 @@
|
|
1
|
-
import { FlowContent } from "@omnia/fx/ux";
|
2
|
-
import { FlowEditorPlugin, FlowEditorPluginContext } from "../models";
|
1
|
+
import { FlowContent, FlowEditorPlugin, FlowEditorPluginContext } from "@omnia/fx/ux";
|
3
2
|
export declare function useJSONParser(state: {
|
4
3
|
editor: HTMLDivElement;
|
5
4
|
plugins: Array<FlowEditorPlugin>;
|
@@ -1,8 +1,8 @@
|
|
1
1
|
import { SetupFactoryContext } from "@omnia/fx";
|
2
|
-
import { FlowEditorContentPlugin, FlowEditorPlugin } from "
|
2
|
+
import { FlowEditorContentPlugin, FlowEditorPlugin } from "@omnia/fx/ux";
|
3
3
|
interface SetupEditorPluginContext extends SetupFactoryContext {
|
4
4
|
}
|
5
|
-
export declare function defineEditorPlugin<
|
5
|
+
export declare function defineEditorPlugin<TPluginType extends FlowEditorPlugin | FlowEditorContentPlugin>(setup: (ctx: SetupEditorPluginContext) => TPluginType): () => TPluginType & {
|
6
6
|
dispose?: () => void;
|
7
7
|
};
|
8
8
|
export {};
|
@@ -1,18 +1,18 @@
|
|
1
|
+
import { FlowNodeReference } from "@omnia/fx/ux";
|
1
2
|
import { guid } from "@omnia/fx-models";
|
2
|
-
import { FlowNodeReference } from "../../models";
|
3
3
|
declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<{
|
4
4
|
store?: {
|
5
5
|
state: {
|
6
6
|
editorContent: import("@omnia/fx/ux").FlowContent;
|
7
|
-
plugins: import("
|
7
|
+
plugins: import("@omnia/fx/ux").FlowEditorPlugin[];
|
8
8
|
pluginsLoadedPromise: import("@omnia/fx-models").Future<void>;
|
9
9
|
hideToolbar: boolean;
|
10
10
|
toolbarActions: import("@omnia/fx-models").FlowEditorActionRegistration[];
|
11
11
|
editor: HTMLDivElement;
|
12
|
-
nodeSelection: import("
|
12
|
+
nodeSelection: import("@omnia/fx/ux").NodeSelection;
|
13
13
|
telePorts: JSX.Element[];
|
14
14
|
id: string;
|
15
|
-
pluginContext: import("
|
15
|
+
pluginContext: import("@omnia/fx/ux").FlowEditorPluginContext;
|
16
16
|
selectedRange: Range;
|
17
17
|
storedRange: Range;
|
18
18
|
showPlaceHolder: boolean;
|
@@ -21,18 +21,21 @@ declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<{
|
|
21
21
|
categoryFilters: guid[];
|
22
22
|
rendererTypeFilters: guid[];
|
23
23
|
};
|
24
|
+
settings: {
|
25
|
+
gridWidth: number;
|
26
|
+
};
|
24
27
|
};
|
25
28
|
events: {
|
26
29
|
onMutatedEditorContent: import("../../../../..").MessageBusExposeOnlySubscription<import("@omnia/fx/ux").FlowContent>;
|
27
|
-
onMutatedPlugins: import("../../../../..").MessageBusExposeOnlySubscription<import("
|
30
|
+
onMutatedPlugins: import("../../../../..").MessageBusExposeOnlySubscription<import("@omnia/fx/ux").FlowEditorPlugin[]>;
|
28
31
|
onMutatedPluginsLoadedPromise: import("../../../../..").MessageBusExposeOnlySubscription<import("@omnia/fx-models").Future<void>>;
|
29
32
|
onMutatedHideToolbar: import("../../../../..").MessageBusExposeOnlySubscription<boolean>;
|
30
33
|
onMutatedToolbarActions: import("../../../../..").MessageBusExposeOnlySubscription<import("@omnia/fx-models").FlowEditorActionRegistration[]>;
|
31
34
|
onMutatedEditor: import("../../../../..").MessageBusExposeOnlySubscription<HTMLDivElement>;
|
32
|
-
onMutatedNodeSelection: import("../../../../..").MessageBusExposeOnlySubscription<import("
|
35
|
+
onMutatedNodeSelection: import("../../../../..").MessageBusExposeOnlySubscription<import("@omnia/fx/ux").NodeSelection>;
|
33
36
|
onMutatedTelePorts: import("../../../../..").MessageBusExposeOnlySubscription<JSX.Element[]>;
|
34
37
|
onMutatedId: import("../../../../..").MessageBusExposeOnlySubscription<string>;
|
35
|
-
onMutatedPluginContext: import("../../../../..").MessageBusExposeOnlySubscription<import("
|
38
|
+
onMutatedPluginContext: import("../../../../..").MessageBusExposeOnlySubscription<import("@omnia/fx/ux").FlowEditorPluginContext>;
|
36
39
|
onMutatedSelectedRange: import("../../../../..").MessageBusExposeOnlySubscription<Range>;
|
37
40
|
onMutatedStoredRange: import("../../../../..").MessageBusExposeOnlySubscription<Range>;
|
38
41
|
onMutatedShowPlaceHolder: import("../../../../..").MessageBusExposeOnlySubscription<boolean>;
|
@@ -41,6 +44,9 @@ declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<{
|
|
41
44
|
categoryFilters: guid[];
|
42
45
|
rendererTypeFilters: guid[];
|
43
46
|
}>;
|
47
|
+
onMutatedSettings: import("../../../../..").MessageBusExposeOnlySubscription<{
|
48
|
+
gridWidth: number;
|
49
|
+
}>;
|
44
50
|
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
45
51
|
actions: {
|
46
52
|
onDispatching: {
|
@@ -94,7 +100,7 @@ declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<{
|
|
94
100
|
register: {
|
95
101
|
plugin: (pluginSettings: import("@omnia/fx-models").FlowEditorPluginSettings) => void;
|
96
102
|
plugins: (pluginSettings: import("@omnia/fx-models").FlowEditorPluginSettings | import("@omnia/fx-models").FlowEditorPluginSettings[]) => Promise<void>;
|
97
|
-
context: (ctx: import("
|
103
|
+
context: (ctx: import("@omnia/fx/ux").FlowEditorPluginContext) => void;
|
98
104
|
};
|
99
105
|
}) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
100
106
|
};
|
@@ -123,6 +129,7 @@ declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<{
|
|
123
129
|
subscribe(fn: (result: {
|
124
130
|
wrapLine: (element: HTMLElement) => void;
|
125
131
|
add: (element: HTMLElement) => void;
|
132
|
+
addWithText: (element: HTMLElement, text: any) => void;
|
126
133
|
toggle: (element: HTMLElement) => void;
|
127
134
|
remove: (dataType: string) => void;
|
128
135
|
}) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
@@ -170,6 +177,7 @@ declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<{
|
|
170
177
|
};
|
171
178
|
formatting: {
|
172
179
|
add: (element: HTMLElement) => void;
|
180
|
+
addWithTxt: (element: HTMLElement, text?: string) => void;
|
173
181
|
wrapLine: (element: HTMLElement) => void;
|
174
182
|
remove: (dataType: string | HTMLElement) => void;
|
175
183
|
has: (dataType: string | HTMLElement) => boolean;
|
@@ -218,7 +226,7 @@ declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<{
|
|
218
226
|
get: {
|
219
227
|
topContainerForContent: (element: HTMLElement) => HTMLElement;
|
220
228
|
topContainerForComponent: (element: HTMLElement) => HTMLElement;
|
221
|
-
nodeSelectionForRange: (range: Range) => import("
|
229
|
+
nodeSelectionForRange: (range: Range) => import("@omnia/fx/ux").NodeSelection;
|
222
230
|
htmlElementInStructureById: (id: string, currentElement: HTMLElement) => HTMLElement;
|
223
231
|
};
|
224
232
|
remove: {
|
@@ -283,7 +291,7 @@ declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<{
|
|
283
291
|
register: {
|
284
292
|
plugin: (pluginSettings: import("@omnia/fx-models").FlowEditorPluginSettings) => void;
|
285
293
|
plugins: (pluginSettings: import("@omnia/fx-models").FlowEditorPluginSettings | import("@omnia/fx-models").FlowEditorPluginSettings[]) => Promise<void>;
|
286
|
-
context: (ctx: import("
|
294
|
+
context: (ctx: import("@omnia/fx/ux").FlowEditorPluginContext) => void;
|
287
295
|
};
|
288
296
|
};
|
289
297
|
content: () => {
|
@@ -304,6 +312,7 @@ declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<{
|
|
304
312
|
formatting: () => {
|
305
313
|
wrapLine: (element: HTMLElement) => void;
|
306
314
|
add: (element: HTMLElement) => void;
|
315
|
+
addWithText: (element: HTMLElement, text: any) => void;
|
307
316
|
toggle: (element: HTMLElement) => void;
|
308
317
|
remove: (dataType: string) => void;
|
309
318
|
};
|
@@ -347,6 +356,7 @@ declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<{
|
|
347
356
|
};
|
348
357
|
formatting: {
|
349
358
|
add: (element: HTMLElement) => void;
|
359
|
+
addWithTxt: (element: HTMLElement, text?: string) => void;
|
350
360
|
wrapLine: (element: HTMLElement) => void;
|
351
361
|
remove: (dataType: string | HTMLElement) => void;
|
352
362
|
has: (dataType: string | HTMLElement) => boolean;
|
@@ -395,7 +405,7 @@ declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<{
|
|
395
405
|
get: {
|
396
406
|
topContainerForContent: (element: HTMLElement) => HTMLElement;
|
397
407
|
topContainerForComponent: (element: HTMLElement) => HTMLElement;
|
398
|
-
nodeSelectionForRange: (range: Range) => import("
|
408
|
+
nodeSelectionForRange: (range: Range) => import("@omnia/fx/ux").NodeSelection;
|
399
409
|
htmlElementInStructureById: (id: string, currentElement: HTMLElement) => HTMLElement;
|
400
410
|
};
|
401
411
|
remove: {
|
@@ -414,7 +424,7 @@ declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<{
|
|
414
424
|
};
|
415
425
|
};
|
416
426
|
get: {
|
417
|
-
plugins: import("
|
427
|
+
plugins: import("@omnia/fx/ux").FlowEditorPlugin[];
|
418
428
|
content: {
|
419
429
|
isEmpty: () => boolean;
|
420
430
|
asObject: () => import("@omnia/fx/ux").FlowContent;
|
@@ -426,7 +436,7 @@ declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<{
|
|
426
436
|
};
|
427
437
|
get: {
|
428
438
|
byType: (pluginType: string) => FlowNodeReference[];
|
429
|
-
all: () => import("
|
439
|
+
all: () => import("@omnia/fx/ux").NodeSelection;
|
430
440
|
};
|
431
441
|
};
|
432
442
|
element: {
|
package/internal-do-not-import-from-here/ux/flow/editor/plugins/colorstyle/ColorConverter.d.ts
CHANGED
@@ -1,3 +1,3 @@
|
|
1
1
|
import { ColorValue } from "@omnia/fx-models";
|
2
|
-
import { ElementConverter, FlowEditorPluginContext } from "
|
2
|
+
import { ElementConverter, FlowEditorPluginContext } from "@omnia/fx/ux";
|
3
3
|
export declare function useColorConverter(elementCreator: (value: ColorValue, ctx: FlowEditorPluginContext) => HTMLElement): ElementConverter;
|