@omnia/fx 7.0.528-dev → 8.0.0-vnext
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/console/components/Console.d.ts +4 -5
- package/internal-do-not-import-from-here/console/components/MessageBusSubscriptionsViewer.d.ts +3 -3
- package/internal-do-not-import-from-here/console/components/MessageOverlay.d.ts +45 -5
- package/internal-do-not-import-from-here/console/components/StoreLogviewer.d.ts +3 -3
- package/internal-do-not-import-from-here/core/messaging/InternalTopics.d.ts +6 -3
- package/internal-do-not-import-from-here/index.d.ts +22 -4
- package/internal-do-not-import-from-here/manifests/omnia.fx.manifest.json +1 -1
- 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/spfx/components/IOmniaWPContainerSettings.d.ts +3 -2
- package/internal-do-not-import-from-here/spfx/components/OmniaWPContainer.d.ts +1 -1
- package/internal-do-not-import-from-here/spfx/components/OmniaWPContainerSettings.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/Exposes.d.ts +3 -2
- package/internal-do-not-import-from-here/ux/InternalDefineWebComponent.d.ts +11 -26
- package/internal-do-not-import-from-here/ux/TsxAllowUnknowProperties.d.ts +5 -2
- package/internal-do-not-import-from-here/ux/UxModels.d.ts +0 -3
- package/internal-do-not-import-from-here/ux/VueComponentBase.d.ts +105 -16
- package/internal-do-not-import-from-here/{vue → ux}/VueWebComponentSlot.d.ts +3 -4
- package/internal-do-not-import-from-here/ux/admin/chrome/AdminChrome.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/admin/queryableproperties/IQueryablePropertiesJourney.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/admin/queryableproperties/QueryablePropertiesAddBlade.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/admin/queryableproperties/QueryablePropertiesHomeBlade.d.ts +3 -3
- package/internal-do-not-import-from-here/ux/admin/queryableproperties/QueryablePropertiesJourney.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/app/appinstance/renderer/AppInstanceRollup.d.ts +60 -14
- package/internal-do-not-import-from-here/ux/app/appinstance/renderer/HeaderRenderer.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/app/appinstance/renderer/MainRenderer.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/app/appinstance/settings/AppInstanceRollupSettings.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/app/appinstance/settings/IAppInstanceRollupSettings.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/app/appinstance/settings/components/DisplayTab.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/app/appinstance/settings/components/FilterTab.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/app/appinstance/settings/components/GeneralTab.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/app/appinstance/settings/components/QueryTab.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/app/appinstance/view/BaseView.d.ts +3 -3
- package/internal-do-not-import-from-here/ux/app/appinstance/view/card/CardView.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/app/appinstance/view/card/CardViewSettings.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/app/appinstance/view/listing/ListView.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/app/appinstance/view/listing/ListViewSettings.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/app/management/AppManagement.d.ts +62 -15
- package/internal-do-not-import-from-here/ux/app/management/api/AppManagementApi.d.ts +3 -1
- package/internal-do-not-import-from-here/ux/app/management/components/TabsManagement.d.ts +62 -15
- package/internal-do-not-import-from-here/ux/app/management/tabs/instance/EditAliasDialog.d.ts +6 -2
- package/internal-do-not-import-from-here/ux/app/management/tabs/instance/EditItem.d.ts +5 -2
- package/internal-do-not-import-from-here/ux/app/management/tabs/instance/EditPermissionDialog.d.ts +5 -2
- package/internal-do-not-import-from-here/ux/app/management/tabs/instance/Features.d.ts +5 -2
- package/internal-do-not-import-from-here/ux/app/management/tabs/instance/InstanceTab.d.ts +65 -5
- package/internal-do-not-import-from-here/ux/app/management/tabs/instance/Item.d.ts +11 -2
- package/internal-do-not-import-from-here/ux/app/management/tabs/instance/ItemAction.d.ts +8 -2
- package/internal-do-not-import-from-here/ux/app/management/tabs/instance/ItemAdmin.d.ts +4 -2
- package/internal-do-not-import-from-here/ux/app/management/tabs/instance/Listing.d.ts +7 -2
- package/internal-do-not-import-from-here/ux/app/management/tabs/layouts/EditLayout.d.ts +5 -2
- package/internal-do-not-import-from-here/ux/app/management/tabs/layouts/LayoutListing.d.ts +7 -2
- package/internal-do-not-import-from-here/ux/app/management/tabs/layouts/LayoutTab.d.ts +65 -5
- package/internal-do-not-import-from-here/ux/app/management/tabs/layouts/addlayout/AddLayout.d.ts +5 -2
- package/internal-do-not-import-from-here/ux/app/management/tabs/namingpolicies/AffixRow.d.ts +6 -6
- package/internal-do-not-import-from-here/ux/app/management/tabs/namingpolicies/BlockWords.d.ts +4 -2
- package/internal-do-not-import-from-here/ux/app/management/tabs/namingpolicies/EditNamingPolicies.d.ts +5 -2
- package/internal-do-not-import-from-here/ux/app/management/tabs/namingpolicies/ListingNamingPolicies.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/app/management/tabs/namingpolicies/NamingPolicyTab.d.ts +65 -5
- package/internal-do-not-import-from-here/ux/app/management/tabs/namingpolicies/PreviewPolicyNaming.d.ts +5 -2
- package/internal-do-not-import-from-here/ux/app/management/tabs/shared/addbutton/AddButton.d.ts +58 -13
- package/internal-do-not-import-from-here/ux/app/management/tabs/templates/Template.d.ts +7 -2
- package/internal-do-not-import-from-here/ux/app/management/tabs/templates/TemplateDetail.d.ts +4 -2
- package/internal-do-not-import-from-here/ux/app/management/tabs/templates/TemplateTab.d.ts +65 -5
- package/internal-do-not-import-from-here/ux/app/management/tabs/templates/TemplatesListing.d.ts +5 -2
- package/internal-do-not-import-from-here/ux/app/management/tabs/templates/tabs/CustomSteps.d.ts +9 -2
- package/internal-do-not-import-from-here/ux/app/management/tabs/templates/tabs/Features.d.ts +9 -2
- package/internal-do-not-import-from-here/ux/app/management/tabs/templates/tabs/GeneralTab.d.ts +9 -2
- package/internal-do-not-import-from-here/ux/app/management/tabs/templates/tabs/PoliciesTab.d.ts +10 -3
- package/internal-do-not-import-from-here/ux/app/management/tabs/templates/tabs/PropertiesTab.d.ts +9 -2
- package/internal-do-not-import-from-here/ux/app/management/tabs/templates/tabs/PropertyRow.d.ts +9 -2
- package/internal-do-not-import-from-here/ux/app/management/tabs/templates/tabs/StepRow.d.ts +5 -2
- package/internal-do-not-import-from-here/ux/appprovisioning/appimageinput/AppImageInput.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/appprovisioning/appinstancedeleteblade/AppInstanceDeleteBlade.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/appprovisioning/appinstancedeleteblade/IAppInstanceDeleteBlade.d.ts +3 -2
- package/internal-do-not-import-from-here/ux/appprovisioning/appinstanceeditingjourney/AppInstanceEditingJourney.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/appprovisioning/appinstanceeditingjourney/EditEnterprisePropertiesBlade.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/appprovisioning/appinstanceeditingjourney/EditProperiesBlade.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/appprovisioning/appinstanceeditingjourney/IAppInstanceEditingJourney.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/appprovisioning/appinstancepermissionblade/AppInstancePermissionBlade.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/appprovisioning/appinstancepermissionblade/IAppInstancePermissionBlade.d.ts +3 -2
- package/internal-do-not-import-from-here/ux/appprovisioning/appinstanceprogressblade/AppInstanceProgressBlade.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/appprovisioning/appinstanceprogressblade/IAppInstanceProgressBlade.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/appprovisioning/appinstanceroutepathblade/AppInstanceRoutePathBlade.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/appprovisioning/appinstanceroutepathblade/IAppInstanceRoutePathBlade.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/appprovisioning/apppropertiesinput/AppPropertiesInput.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/appprovisioning/apppropertiesinput/IAppPropertiesInput.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/appprovisioning/apppropertynamingpolicyinput/AppPropertyNamingPolicyInput.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/appprovisioning/apppropertynamingpolicyinput/IAppPropertyNamingPolicyInput.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/appprovisioning/appprovisioningsteps/appinstanceenterprisepropertiesstep/AppInstanceEnterprisePropertiesStep.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/appprovisioning/appprovisioningsteps/appinstanceenterprisepropertiesstep/IAppInstanceEnterprisePropertiesStep.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/appprovisioning/appprovisioningsteps/appinstanceinformationstep/AppInstanceInformationStep.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/appprovisioning/appprovisioningsteps/appinstanceinformationstep/IAppInstanceInformationStep.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/appprovisioning/appprovisioningsteps/appinstancesummarystep/AppInstanceSummaryStep.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/appprovisioning/appprovisioningsteps/appinstancesummarystep/IAppInstanceSummaryStep.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/appprovisioning/appprovisioningsteps/appinstanceusersstep/AppInstanceUsersStep.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/appprovisioning/appprovisioningsteps/appinstanceusersstep/IAppInstanceUsersStep.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/appprovisioning/appprovisioningwizard/AppProvisioningWizard.d.ts +7 -5
- package/internal-do-not-import-from-here/ux/appprovisioning/appprovisioningwizard/IAppProvisioningWizard.d.ts +10 -1
- package/internal-do-not-import-from-here/ux/appprovisioning/approuteinput/AppRouteInput.d.ts +4 -2
- package/internal-do-not-import-from-here/ux/appprovisioning/approuteinput/IAppRouteInput.d.ts +2 -1
- package/internal-do-not-import-from-here/ux/appprovisioning/appshowinpubliclistingsinput/AppShowInPublicListingsInput.d.ts +52 -10
- package/internal-do-not-import-from-here/ux/appprovisioning/apptitledescription/AppDescriptionInput.d.ts +3 -1
- package/internal-do-not-import-from-here/ux/appprovisioning/apptitledescription/IAppDescriptionInput.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/appprovisioning/apptitleinput/AppTitleInput.d.ts +3 -1
- package/internal-do-not-import-from-here/ux/appprovisioning/apptitleinput/IAppTitleInput.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/appprovisioning/components/AppInstanceCompletedStepVueComponent.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/appprovisioning/components/AppInstanceEnterprisePropertiesVueComponent.d.ts +5 -3
- package/internal-do-not-import-from-here/ux/appprovisioning/components/AppInstanceFeatureVueComponent.d.ts +4 -2
- package/internal-do-not-import-from-here/ux/appprovisioning/components/AppInstanceInformationVueComponent.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/appprovisioning/components/AppInstancePermissionsVueComponent.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/appprovisioning/components/AppInstanceTemplatePickerVueComponent.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/appprovisioning/components/AppProvisioningComponentBase.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/appprovisioning/renderer/IValidatorWrapper.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/appprovisioning/renderer/Renderer.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/appprovisioning/summary/InformationStepSummary.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/appprovisioning/summary/PropertiesStepSummary.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/appprovisioning/summary/UsersStepSummary.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/authenticationchecker/AuthenticationChecker.d.ts +3 -3
- package/internal-do-not-import-from-here/ux/authsetup/AuthSetup.d.ts +45 -5
- package/internal-do-not-import-from-here/ux/authsetup/steps/EmailVerify.d.ts +4 -2
- package/internal-do-not-import-from-here/ux/authsetup/steps/OTP.d.ts +4 -2
- package/internal-do-not-import-from-here/ux/authsetup/steps/Password.d.ts +4 -2
- package/internal-do-not-import-from-here/ux/blades/BladeHeader.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/blades/IBladeHeader.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/button/Button.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/button/IButton.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/colorpicker/ColorPicker.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/colorpicker/IColorPicker.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/commandpalette/CommandPalette.d.ts +45 -5
- package/internal-do-not-import-from-here/ux/compositiontests/CompositionBlockCurrent.d.ts +54 -11
- package/internal-do-not-import-from-here/ux/compositiontests/CompositionBlockFuture.d.ts +54 -11
- package/internal-do-not-import-from-here/ux/compositiontests/OptionsBlockCurrent.d.ts +45 -5
- package/internal-do-not-import-from-here/ux/compositiontests/TestInjectComponent.d.ts +45 -5
- package/internal-do-not-import-from-here/ux/confirmdialog/ConfirmDialog.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/confirmdialog/IConfirmDialog.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/confirmdialog/VueConfirmDialog.d.ts +3 -2
- package/internal-do-not-import-from-here/ux/connectedtenantpicker/ConnectedTenantPicker.d.ts +3 -3
- package/internal-do-not-import-from-here/ux/connectedtenantpicker/IConnectedTenantPicker.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/contentdialog/ContentDialog.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/contextlanguagepicker/ContextLanguagePicker.d.ts +3 -3
- package/internal-do-not-import-from-here/ux/contextlanguagepicker/IContextLanguagePicker.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/datatable/Datatable.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/datatable/IDatatable.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/datetimepicker/IDateTimePicker.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/datetimezonepicker/DateTimeZonePicker.d.ts +45 -5
- package/internal-do-not-import-from-here/ux/datetimezonerenderer/DateTimeZoneRenderer.d.ts +45 -5
- package/internal-do-not-import-from-here/ux/decorators/Emit.d.ts +6 -0
- package/internal-do-not-import-from-here/ux/decorators/Helpers.d.ts +16 -0
- package/internal-do-not-import-from-here/ux/decorators/Prop.d.ts +9 -0
- package/internal-do-not-import-from-here/ux/decorators/Props.d.ts +33 -0
- package/internal-do-not-import-from-here/ux/decorators/Vue.d.ts +91 -0
- package/internal-do-not-import-from-here/ux/decorators/Watch.d.ts +8 -0
- package/internal-do-not-import-from-here/ux/decorators/index.d.ts +5 -0
- package/internal-do-not-import-from-here/ux/dialog/Dialog.d.ts +97 -32
- package/internal-do-not-import-from-here/ux/directives/LinkHandler/LinkHandler.d.ts +17 -2
- package/internal-do-not-import-from-here/ux/documenticon/DocumentIcon.d.ts +3 -3
- package/internal-do-not-import-from-here/ux/documenticon/IDocumentIcon.d.ts +3 -2
- package/internal-do-not-import-from-here/ux/dynamicgroup/DynamicGroupPropertyEditorRenderer.d.ts +62 -12
- package/internal-do-not-import-from-here/ux/editorchrome/action_toolbar/ActionToolbar.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/editorchrome/action_toolbar/DisplaySettingsToolbar.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/editorchrome/action_toolbar/IActionToolbar.d.ts +3 -3
- package/internal-do-not-import-from-here/ux/editorchrome/action_toolbar/IDisplaySettingsToolbar.d.ts +3 -2
- package/internal-do-not-import-from-here/ux/editorchrome/app_bar/AppBar.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/editorchrome/chrome/EditorChrome.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/editorchrome/chrome/IEditorChrome.d.ts +3 -2
- package/internal-do-not-import-from-here/ux/editorchrome/navigation/EditorChromeNavigation.d.ts +3 -4
- package/internal-do-not-import-from-here/ux/editorchrome/navigation_drawer/NavigationDrawer.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/editorchrome/panel_tabs/TabsPanel.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/enterpriseglossary/EnterpriseGlossaryPicker.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/enterpriseglossary/IEnterpriseGlossaryPicker.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/enterpriseproperties/display/booleanfield/BooleanFieldDisplay.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/enterpriseproperties/display/booleanfield/IBooleanFieldDisplay.d.ts +3 -2
- package/internal-do-not-import-from-here/ux/enterpriseproperties/display/datafield/DataFieldDisplay.d.ts +6 -4
- package/internal-do-not-import-from-here/ux/enterpriseproperties/display/datafield/IDataFieldDisplay.d.ts +3 -2
- package/internal-do-not-import-from-here/ux/enterpriseproperties/display/datetimefield/DatetimeFieldDisplay.d.ts +3 -3
- package/internal-do-not-import-from-here/ux/enterpriseproperties/display/datetimefield/IDatetimeFieldDisplay.d.ts +3 -2
- package/internal-do-not-import-from-here/ux/enterpriseproperties/display/languagefield/ILanguageFieldDisplay.d.ts +3 -2
- package/internal-do-not-import-from-here/ux/enterpriseproperties/display/languagefield/LanguageFieldDisplay.d.ts +3 -3
- package/internal-do-not-import-from-here/ux/enterpriseproperties/display/personfield/IPersonFieldDisplay.d.ts +3 -2
- package/internal-do-not-import-from-here/ux/enterpriseproperties/display/personfield/PersonFieldDisplay.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/enterpriseproperties/display/richtextfield/IRichTextFieldDisplay.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/enterpriseproperties/display/richtextfield/RichTextFieldDisplay.d.ts +3 -3
- package/internal-do-not-import-from-here/ux/enterpriseproperties/display/tagsproperty/ITagsPropertyDisplay.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/enterpriseproperties/display/tagsproperty/TagsPropertyDisplay.d.ts +4 -4
- package/internal-do-not-import-from-here/ux/enterpriseproperties/display/textfield/ITextFieldDisplay.d.ts +3 -2
- package/internal-do-not-import-from-here/ux/enterpriseproperties/display/textfield/TextFieldDisplay.d.ts +3 -3
- package/internal-do-not-import-from-here/ux/enterpriseproperties/edit/booleanfield/BooleanFieldEdit.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/enterpriseproperties/edit/booleanfield/IBooleanFieldEdit.d.ts +3 -2
- package/internal-do-not-import-from-here/ux/enterpriseproperties/edit/datafield/DataFieldEdit.d.ts +4 -2
- package/internal-do-not-import-from-here/ux/enterpriseproperties/edit/datafield/IDataFieldEdit.d.ts +3 -2
- package/internal-do-not-import-from-here/ux/enterpriseproperties/edit/datetimefield/DateTimeFieldEdit.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/enterpriseproperties/edit/datetimefield/IDateTimeFieldEdit.d.ts +3 -2
- package/internal-do-not-import-from-here/ux/enterpriseproperties/edit/languagefield/ILanguageFieldEdit.d.ts +3 -2
- package/internal-do-not-import-from-here/ux/enterpriseproperties/edit/languagefield/LanguageFieldEdit.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/enterpriseproperties/edit/numberfield/INumberFieldEdit.d.ts +3 -2
- package/internal-do-not-import-from-here/ux/enterpriseproperties/edit/numberfield/NumberFieldEdit.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/enterpriseproperties/edit/personfield/IPersonFieldEdit.d.ts +3 -2
- package/internal-do-not-import-from-here/ux/enterpriseproperties/edit/personfield/PersonFieldEdit.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/enterpriseproperties/edit/richtextfield/IRichTextFieldEdit.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/enterpriseproperties/edit/richtextfield/RichTextFieldEdit.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/enterpriseproperties/edit/tagsproperty/ITagsPropertyEdit.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/enterpriseproperties/edit/tagsproperty/TagsPropertyEdit.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/enterpriseproperties/edit/textfield/ITextFieldEdit.d.ts +3 -2
- package/internal-do-not-import-from-here/ux/enterpriseproperties/edit/textfield/TextFieldEdit.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/enterpriseproperties/picker/EnterprisePropertyPicker.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/enterpriseproperties/picker/IEnterprisePropertyPicker.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/enterpriseproperties/settings/extendedproperty/ExtendedPropertySettings.d.ts +58 -13
- package/internal-do-not-import-from-here/ux/enterpriseproperties/valuedefinition/booleanfield/BooleanFieldValueDefinition.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/enterpriseproperties/valuedefinition/booleanfield/IBooleanFieldValueDefinition.d.ts +3 -2
- package/internal-do-not-import-from-here/ux/enterpriseproperties/valuedefinition/datafield/DataFieldValueDefinition.d.ts +4 -2
- package/internal-do-not-import-from-here/ux/enterpriseproperties/valuedefinition/datafield/IDataFieldValueDefinition.d.ts +3 -2
- package/internal-do-not-import-from-here/ux/enterpriseproperties/valuedefinition/datetimefield/DateTimeFieldValueDefinition.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/enterpriseproperties/valuedefinition/datetimefield/IDateTimeFieldValueDefinition.d.ts +3 -2
- package/internal-do-not-import-from-here/ux/enterpriseproperties/valuedefinition/languagefield/ILanguageFieldValueDefinition.d.ts +3 -2
- package/internal-do-not-import-from-here/ux/enterpriseproperties/valuedefinition/languagefield/LanguageFieldValueDefinition.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/enterpriseproperties/valuedefinition/mediafield/IMediaFieldValueDefinition.d.ts +3 -2
- package/internal-do-not-import-from-here/ux/enterpriseproperties/valuedefinition/mediafield/MediaFieldValueDefinition.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/enterpriseproperties/valuedefinition/numberfield/INumberFieldValueDefinition.d.ts +3 -2
- package/internal-do-not-import-from-here/ux/enterpriseproperties/valuedefinition/numberfield/NumberFieldValueDefinition.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/enterpriseproperties/valuedefinition/persionfield/IPersonFieldValueDefinition.d.ts +3 -2
- package/internal-do-not-import-from-here/ux/enterpriseproperties/valuedefinition/persionfield/PersonFieldValueDefinition.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/enterpriseproperties/valuedefinition/richtextfield/IRichTextFieldValueDefinition.d.ts +3 -2
- package/internal-do-not-import-from-here/ux/enterpriseproperties/valuedefinition/richtextfield/RichTextFieldValueDefinition.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/enterpriseproperties/valuedefinition/tagsproperty/ITagsPropertyValueDefinition.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/enterpriseproperties/valuedefinition/tagsproperty/TagsPropertyValueDefinition.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/enterpriseproperties/valuedefinition/textfield/ITextFieldValueDefinition.d.ts +3 -2
- package/internal-do-not-import-from-here/ux/enterpriseproperties/valuedefinition/textfield/TextFieldValueDefinition.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/enterprisepropertysets/picker/EnterprisePropertySetPicker.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/enterprisepropertysets/picker/IEnterprisePropertySetPicker.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/errormessage/ErrorMessage.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/errormessage/IErrorMessage.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/features/FeatureActivation.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/features/FeaturesJourney.d.ts +3 -3
- package/internal-do-not-import-from-here/ux/features/FeaturesJourneyAppInstance.d.ts +3 -3
- package/internal-do-not-import-from-here/ux/features/FeaturesJourneyTenant.d.ts +3 -3
- package/internal-do-not-import-from-here/ux/features/IFeaturesJourney.d.ts +3 -2
- package/internal-do-not-import-from-here/ux/features/blades/FeatureHomeBlade.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/features/blades/FeaturePropertiesBlade.d.ts +4 -2
- package/internal-do-not-import-from-here/ux/features/testfeaturescomponent/ITestFeaturesComponent.d.ts +3 -2
- package/internal-do-not-import-from-here/ux/features/testfeaturescomponent/TestFeaturesComponent.d.ts +3 -1
- package/internal-do-not-import-from-here/ux/filepicker/FilePickerRenderer.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/fileuploader/FileUploader.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/fileuploader/IFileUploader.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/filterengine/DialogRenderer.d.ts +5 -2
- package/internal-do-not-import-from-here/ux/filterengine/FilterEngineRenderer.d.ts +68 -18
- package/internal-do-not-import-from-here/ux/filterengine/FilterEngineSection.d.ts +4 -2
- package/internal-do-not-import-from-here/ux/filterengine/FilterEngineSettings.d.ts +56 -12
- package/internal-do-not-import-from-here/ux/filterengine/SelectionsArea.d.ts +65 -5
- package/internal-do-not-import-from-here/ux/filterengine/components/renderer/boolean/BooleanPropertyRenderer.d.ts +52 -10
- package/internal-do-not-import-from-here/ux/filterengine/components/renderer/date/DatePropertyRenderer.d.ts +52 -10
- package/internal-do-not-import-from-here/ux/filterengine/components/renderer/dialog/DialogContent.d.ts +6 -2
- package/internal-do-not-import-from-here/ux/filterengine/components/renderer/number/NumberPropertyRenderer.d.ts +52 -10
- package/internal-do-not-import-from-here/ux/filterengine/components/renderer/person/PersonPropertyChipItem.d.ts +8 -2
- package/internal-do-not-import-from-here/ux/filterengine/components/renderer/person/PersonPropertyChips.d.ts +4 -2
- package/internal-do-not-import-from-here/ux/filterengine/components/renderer/person/PersonPropertyItemRenderer.d.ts +8 -2
- package/internal-do-not-import-from-here/ux/filterengine/components/renderer/person/PersonPropertyList.d.ts +5 -2
- package/internal-do-not-import-from-here/ux/filterengine/components/renderer/person/PersonPropertyRenderer.d.ts +52 -10
- package/internal-do-not-import-from-here/ux/filterengine/components/renderer/text/TextPropertyRenderer.d.ts +52 -10
- package/internal-do-not-import-from-here/ux/filterengine/components/selectionsarea/boolean/SelectionsAreaBooleanRenderer.d.ts +54 -11
- package/internal-do-not-import-from-here/ux/filterengine/components/selectionsarea/date/SelectionsAreaDateRenderer.d.ts +54 -11
- package/internal-do-not-import-from-here/ux/filterengine/components/selectionsarea/number/SelectionsAreaNumberRenderer.d.ts +54 -11
- package/internal-do-not-import-from-here/ux/filterengine/components/selectionsarea/person/SelectionsAreaPersonRenderer.d.ts +54 -11
- package/internal-do-not-import-from-here/ux/filterengine/components/selectionsarea/text/SelectionsAreaTextRenderer.d.ts +54 -11
- package/internal-do-not-import-from-here/ux/filterengine/components/settings/PropertyList.d.ts +6 -2
- package/internal-do-not-import-from-here/ux/filterengine/components/settings/boolean/BooleanPropertyDefaultValueInput.d.ts +60 -14
- package/internal-do-not-import-from-here/ux/filterengine/components/settings/boolean/BooleanPropertySettings.d.ts +62 -15
- package/internal-do-not-import-from-here/ux/filterengine/components/settings/date/DatePropertyDefaultValueInput.d.ts +60 -14
- package/internal-do-not-import-from-here/ux/filterengine/components/settings/date/DatePropertySettings.d.ts +62 -15
- package/internal-do-not-import-from-here/ux/filterengine/components/settings/number/NumberPropertyDefaultValueInput.d.ts +60 -14
- package/internal-do-not-import-from-here/ux/filterengine/components/settings/number/NumberPropertySettings.d.ts +62 -15
- package/internal-do-not-import-from-here/ux/filterengine/components/settings/person/PersonPropertyDefaultValueInput.d.ts +60 -14
- package/internal-do-not-import-from-here/ux/filterengine/components/settings/person/PersonPropertySettings.d.ts +62 -15
- package/internal-do-not-import-from-here/ux/filterengine/components/settings/text/TextPropertyDefaultValueInput.d.ts +60 -14
- package/internal-do-not-import-from-here/ux/filterengine/components/settings/text/TextPropertySettings.d.ts +62 -15
- package/internal-do-not-import-from-here/ux/filterengine/shared/BasePropertySettings.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/governancedashboard/BarChartIndicator.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/governancedashboard/IBarChartIndicator.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/governancedashboard/INumericIndicator.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/governancedashboard/NumericIndicator.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/group/GroupPropertyEditorRenderer.d.ts +62 -12
- package/internal-do-not-import-from-here/ux/heading/EditTitleComponent.d.ts +3 -3
- package/internal-do-not-import-from-here/ux/heading/Heading.d.ts +6 -6
- package/internal-do-not-import-from-here/ux/heading/IHeading.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/helptext/HelpText.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/helptext/IHelpText.d.ts +3 -2
- package/internal-do-not-import-from-here/ux/icon/IIcon.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/icon/Icon.d.ts +6 -6
- package/internal-do-not-import-from-here/ux/iconpicker/IIconPicker.d.ts +3 -1
- package/internal-do-not-import-from-here/ux/iconpicker/IconPicker.d.ts +6 -6
- package/internal-do-not-import-from-here/ux/identities/IdentityRenderer.d.ts +107 -33
- package/internal-do-not-import-from-here/ux/identities/components/settings/AzureAdSyncProviderSettings.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/identities/components/shared/IdentitySyncPropertyBindingSetup.d.ts +56 -12
- package/internal-do-not-import-from-here/ux/identities/components/shared/IdentitySyncRuleBlade.d.ts +7 -2
- package/internal-do-not-import-from-here/ux/identities/components/shared/IdentitySyncRuleSetup.d.ts +56 -12
- package/internal-do-not-import-from-here/ux/identitypicker/IdentityPicker.d.ts +102 -35
- package/internal-do-not-import-from-here/ux/iframe/IResizingIFrame.d.ts +3 -2
- package/internal-do-not-import-from-here/ux/iframe/ResizingIFrame.d.ts +3 -3
- package/internal-do-not-import-from-here/ux/imagegrid/IImageGrid.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/imagegrid/ImageGrid.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/imagetransformer/Components/ImageRollup/ImageRollup.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/imagetransformer/Components/ImageSetting/ImageSetting.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/imagetransformer/Components/ImageTransformCropper/ImageTransformCropper.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/imagetransformer/Components/ImageTransformEditor/ImageTransformEditor.d.ts +3 -3
- package/internal-do-not-import-from-here/ux/imagetransformer/Components/ImageTransformFilter/ImageTransformFilter.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/imagetransformer/Components/ImageTransformFlipper/ImageTransformFlipper.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/imagetransformer/IImageTransformer.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/imagetransformer/ImageTransformer.d.ts +4 -4
- package/internal-do-not-import-from-here/ux/index.d.ts +0 -2
- package/internal-do-not-import-from-here/ux/inputlanguagepicker/IInputLanguagePicker.d.ts +3 -2
- package/internal-do-not-import-from-here/ux/inputlanguagepicker/InputLanguagePicker.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/inputtoken/IInputToken.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/inputtoken/InputToken.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/journey/IJourney.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/journey/IMenuBlade.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/journey/Journey.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/journey/MenuBlade.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/languagepicker/ILanguagePicker.d.ts +2 -1
- package/internal-do-not-import-from-here/ux/languagepicker/LanguagePicker.d.ts +3 -3
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/ILayoutEditorCanvas.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/LayoutEditorCanvas.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/blockplaceholder/BlockPlaceholder.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/blockplaceholder/IBlockPlaceholder.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/canvastoolbar/CanvasToolbar.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/canvastoolbar/ICanvasToolbar.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/developertools/DeveloperTools.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/developertools/IDeveloperTools.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/devicepreviewer/DevicePreviewer.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/devicepreviewer/IDevicePreviewer.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/icons/OneColumnIcon.d.ts +4 -4
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/icons/ThreeColumnHeroIcon.d.ts +4 -4
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/icons/ThreeColumnIcon.d.ts +4 -4
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/icons/ThreeColumnPageIcon.d.ts +4 -4
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/icons/TwoColumnIcon.d.ts +4 -4
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/layoutItemselector/LayoutItemSelection.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/layoutItemselector/LayoutItemSelector.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/layoutitemactiontoolbar/LayoutItemActionToolbar.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/layoutitems/LayoutBlock.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/layoutitems/LayoutColumn.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/layoutitems/LayoutSection.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/layoutitems/LayoutSectionStepper.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/layoutitems/LayoutSectionTab.d.ts +7 -7
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/layoutitems/LayoutStep.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/layoutitems/LayoutTab.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/layouttemplates/ILayoutTemplateSelector.d.ts +2 -1
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/layouttemplates/LayoutTemplateSelector.d.ts +4 -4
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/BackgroundSettings.d.ts +3 -3
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/BlockSettingsPanel.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/ColorSettings.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/IBackgroundSettings.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/IImageBackgroundSettings.d.ts +2 -1
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/ILayoutClipboard.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/ImageBackgroundSettings.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/LayoutClipboard.d.ts +3 -3
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/LayoutSettingsPanel.d.ts +3 -3
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/LayoutStructure.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/SectionSettingsPanel.d.ts +3 -3
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/TabsSettingsStylePanel.d.ts +7 -7
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/TemplatePreview.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/block/Css.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/block/Header.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/block/Spacing.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/block/Style.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/block/Targeting.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/block/Theming.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/settings/blocktitle/BlockTitleSettings.d.ts +9 -9
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/blocktitle/IBlockTitle.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/blocktitle/IBlockTitleSettings.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/breakpoints/BreakPointBlockSettingsComponent.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/breakpoints/BreakPointSectionSettingsComponent.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/breakpoints/BreakPointSettingsComponent.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/canvas/Spacing.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/layout/BlockHeader.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/layout/BlockTheming.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/layout/GlobalHeaderStyling.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/layout/LayoutTheming.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/layout/Style.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/lock/Lock.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/section/Css.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/section/General.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/section/Header.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/section/Spacing.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/section/Style.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/section/Targeting.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/section/Theming.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/section/items/AccordionListingSettingsPanel.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/section/items/ColumnListingSettingsPanel.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/section/items/SectionItemListing.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/section/items/StepListingSettingsPanel.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/section/items/TabListingSettingsPanel.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/tabs/TabLayoutSettings.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/targetselector/TargetSelector.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/layoutcanvas/renderer/ILayoutBlockRendererHelper.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/layoutcanvas/renderer/ILayoutRendererCanvas.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/layoutcanvas/renderer/LayoutRendererCanvas.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/layoutcanvas/shared/layoutitemsdesigner/StepperSectionDesigner.d.ts +1 -1
- 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/LayoutColumnRenderer.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/shared/layoutitemsrenderer/LayoutSectionStepperRenderer.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/layoutcanvas/shared/layoutitemsrenderer/LayoutSectionTabRenderer.d.ts +7 -7
- package/internal-do-not-import-from-here/ux/layoutcanvas/shared/layoutitemsrenderer/LayoutStepRenderer.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/layoutcanvas/shared/layoutitemsrenderer/LayoutTabRenderer.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/layoutcanvas/stores/ReactiveLayoutItemsSettingsStore.d.ts +0 -1
- package/internal-do-not-import-from-here/ux/letteravatar/ILetterAvatar.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/letteravatar/LetterAvatar.d.ts +3 -3
- package/internal-do-not-import-from-here/ux/limited-label/LimitedLabel.d.ts +56 -12
- package/internal-do-not-import-from-here/ux/magiclink/MagicLink.d.ts +45 -5
- package/internal-do-not-import-from-here/ux/mediapicker/IMediaPicker.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/mediapicker/MediaPicker.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/mediapicker/MediaPickerRenderer.d.ts +3 -3
- package/internal-do-not-import-from-here/ux/mediapickerimage/IMediaPickerImage.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/mediapickerimage/MediaPickerImage.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/mediapickerproviders/MicrosoftStream/IMicrosoftStreamProvider.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/mediapickerproviders/MicrosoftStream/MicrosoftStreamProvider.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/mediapickerproviders/Youtube/IYouTubeProvider.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/mediapickerproviders/Youtube/YouTubeProvider.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/mediapickerproviders/bingprovider/BingProvider.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/mediapickerproviders/bingprovider/IBingProvider.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/mediapickerproviders/centralimagelocationprovider/CentralImageLocationProvider.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/mediapickerproviders/centralimagelocationprovider/ICentralImageLocationProvider.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/mediapickerproviders/mediaproviderbase/GridViewMediaProviderComponent.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/mediapickerproviders/mediaproviderbase/MediaProviderComponentBase.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/mediapickerproviders/mycomputerprovider/IMyComputerProvider.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/mediapickerproviders/mycomputerprovider/MyComputerProvider.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/mediapickerproviders/pexelsprovider/IPexelProvider.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/mediapickerproviders/pexelsprovider/PexelProvider.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/mediapickerproviders/sharepointvideosettings/SharePointVideoSettings.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/mediapickervideo/IMediaPickerVideo.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/mediapickervideo/MediaPickerVideo.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/monaco/MonacoEditor.d.ts +3 -1
- package/internal-do-not-import-from-here/ux/multilingualinput/IMultilingualInput.d.ts +3 -3
- package/internal-do-not-import-from-here/ux/multilingualinput/MultilingualInput.d.ts +6 -6
- package/internal-do-not-import-from-here/ux/optionpicker/OptionPicker.d.ts +68 -18
- package/internal-do-not-import-from-here/ux/organizationtree/IOrganizationTree.d.ts +3 -2
- package/internal-do-not-import-from-here/ux/organizationtree/OrganizationTree.d.ts +1 -2
- package/internal-do-not-import-from-here/ux/organizationtree/reportees/IReportees.d.ts +3 -2
- package/internal-do-not-import-from-here/ux/organizationtree/reportees/Reportees.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/permissioninput/IPermissionInput.d.ts +3 -2
- package/internal-do-not-import-from-here/ux/permissioninput/PermissionInput.d.ts +3 -3
- package/internal-do-not-import-from-here/ux/persona/IPersona.d.ts +3 -2
- package/internal-do-not-import-from-here/ux/persona/Persona.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/playground_test/Play2Component.d.ts +45 -5
- package/internal-do-not-import-from-here/ux/playground_test/PlayComponent.d.ts +8 -8
- package/internal-do-not-import-from-here/ux/playground_test/play2tabs/FileUploaderTab.d.ts +3 -3
- package/internal-do-not-import-from-here/ux/playground_test/play2tabs/MediaPickerTab.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/playground_test/play2tabs/MultilingualInputTab.d.ts +3 -3
- package/internal-do-not-import-from-here/ux/playground_test/play2tabs/RichtextEditorTab.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/playground_test/play2tabs/SharePointPermissionTab.d.ts +4 -4
- package/internal-do-not-import-from-here/ux/playground_test/play2tabs/TermPickerTab.d.ts +3 -3
- package/internal-do-not-import-from-here/ux/playground_test/play2tabs/TestChart.d.ts +3 -3
- package/internal-do-not-import-from-here/ux/playground_test/play2tabs/TimePeriodPickerTab.d.ts +3 -3
- package/internal-do-not-import-from-here/ux/playground_test/testvalidate/DemoValidate.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/playground_test/testvalidate/IDemoValidate.d.ts +3 -2
- package/internal-do-not-import-from-here/ux/playground_test/testvalidate/SubComponent1.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/post/Post.d.ts +7 -7
- package/internal-do-not-import-from-here/ux/post/templates/PostCardDisplay.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/post/templates/PostTemplate.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/presetupwizard/PreSetupWizard.d.ts +65 -5
- package/internal-do-not-import-from-here/ux/profilecard/IProfileCard.d.ts +3 -3
- package/internal-do-not-import-from-here/ux/profilecard/IProfileCardDialog.d.ts +3 -2
- package/internal-do-not-import-from-here/ux/profilecard/ProfileCard.d.ts +4 -1
- package/internal-do-not-import-from-here/ux/profilecard/ProfileCardDialog.d.ts +2 -3
- package/internal-do-not-import-from-here/ux/profilecard/ProfileCardRenderer.d.ts +54 -11
- package/internal-do-not-import-from-here/ux/profilecard/aboutuser/AboutUser.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/profilecard/aboutuser/IAboutUser.d.ts +3 -2
- package/internal-do-not-import-from-here/ux/properties/builtins/birthday/BirthdayDisplay.d.ts +45 -5
- package/internal-do-not-import-from-here/ux/properties/builtins/birthday/BirthdayEditor.d.ts +45 -5
- package/internal-do-not-import-from-here/ux/properties/builtins/date/DateDisplay.d.ts +45 -5
- package/internal-do-not-import-from-here/ux/properties/builtins/date/DateEditor.d.ts +45 -5
- package/internal-do-not-import-from-here/ux/properties/builtins/date-time/DateTimeDisplay.d.ts +45 -5
- package/internal-do-not-import-from-here/ux/properties/builtins/date-time/DateTimeEditor.d.ts +45 -5
- package/internal-do-not-import-from-here/ux/properties/builtins/email/EmailDisplay.d.ts +45 -5
- package/internal-do-not-import-from-here/ux/properties/builtins/email/EmailEditor.d.ts +45 -5
- package/internal-do-not-import-from-here/ux/properties/builtins/html/HtmlConfiguration.d.ts +45 -5
- package/internal-do-not-import-from-here/ux/properties/builtins/html/HtmlDisplay.d.ts +45 -5
- package/internal-do-not-import-from-here/ux/properties/builtins/html/HtmlEditor.d.ts +45 -5
- package/internal-do-not-import-from-here/ux/properties/builtins/identity/IdentityConfiguration.d.ts +45 -5
- package/internal-do-not-import-from-here/ux/properties/builtins/identity/IdentityDisplay.d.ts +45 -5
- package/internal-do-not-import-from-here/ux/properties/builtins/identity/IdentityEditor.d.ts +45 -5
- package/internal-do-not-import-from-here/ux/properties/builtins/image/ImageConfiguration.d.ts +45 -5
- package/internal-do-not-import-from-here/ux/properties/builtins/image/ImageDisplay.d.ts +45 -5
- package/internal-do-not-import-from-here/ux/properties/builtins/image/ImageEditor.d.ts +45 -5
- package/internal-do-not-import-from-here/ux/properties/builtins/language/LanguageDisplay.d.ts +45 -5
- package/internal-do-not-import-from-here/ux/properties/builtins/language/LanguageEditor.d.ts +45 -5
- package/internal-do-not-import-from-here/ux/properties/builtins/link/LinkConfiguration.d.ts +45 -5
- package/internal-do-not-import-from-here/ux/properties/builtins/link/LinkDisplay.d.ts +45 -5
- package/internal-do-not-import-from-here/ux/properties/builtins/link/LinkEditor.d.ts +45 -5
- package/internal-do-not-import-from-here/ux/properties/builtins/multiline-text/MultilineTextDisplay.d.ts +45 -5
- package/internal-do-not-import-from-here/ux/properties/builtins/multiline-text/MultilineTextEditor.d.ts +45 -5
- package/internal-do-not-import-from-here/ux/properties/builtins/multilingualText/MultilingualTextDisplay.d.ts +45 -5
- package/internal-do-not-import-from-here/ux/properties/builtins/multilingualText/MultilingualTextEditor.d.ts +45 -5
- package/internal-do-not-import-from-here/ux/properties/builtins/phone-number/PhoneNumberDisplay.d.ts +45 -5
- package/internal-do-not-import-from-here/ux/properties/builtins/phone-number/PhoneNumberEditor.d.ts +45 -5
- package/internal-do-not-import-from-here/ux/properties/builtins/text/TextDisplay.d.ts +45 -5
- package/internal-do-not-import-from-here/ux/properties/builtins/text/TextEditor.d.ts +45 -5
- package/internal-do-not-import-from-here/ux/properties/builtins/text/TextPropertyDefinition.d.ts +0 -1
- package/internal-do-not-import-from-here/ux/properties/builtins/time/TimeDisplay.d.ts +45 -5
- package/internal-do-not-import-from-here/ux/properties/builtins/time/TimeEditor.d.ts +45 -5
- package/internal-do-not-import-from-here/ux/properties/legacy-enterprise-property/LegacyEnterprisePropertyDisplay.d.ts +45 -5
- package/internal-do-not-import-from-here/ux/properties/legacy-enterprise-property/LegacyEnterprisePropertyEditor.d.ts +45 -5
- package/internal-do-not-import-from-here/ux/properties/models/Properties.d.ts +0 -21
- package/internal-do-not-import-from-here/ux/properties/models/index.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/properties/property-picker/PropertyInput.d.ts +46 -5
- package/internal-do-not-import-from-here/ux/properties/property-picker/PropertyPicker.d.ts +45 -5
- package/internal-do-not-import-from-here/ux/properties/property-renderer/PropertyDatasourceRenderer.d.ts +58 -13
- package/internal-do-not-import-from-here/ux/properties/property-renderer/PropertyRenderer.d.ts +66 -14
- package/internal-do-not-import-from-here/ux/richtexteditor/Emoticon/EmoticonComponent.d.ts +52 -10
- package/internal-do-not-import-from-here/ux/richtexteditor/IRichTextEditor.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/richtexteditor/IRichTextEditorSettings.d.ts +3 -2
- package/internal-do-not-import-from-here/ux/richtexteditor/MarkExtension.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/richtexteditor/MentionComponent/MentionComponent.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/richtexteditor/NodeExtension.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/richtexteditor/RichTextEditor.d.ts +12 -6
- package/internal-do-not-import-from-here/ux/richtexteditor/RichTextEditorSettings.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/richtexteditor/RichTextEditorTester.d.ts +3 -3
- package/internal-do-not-import-from-here/ux/richtexteditor/extensions/Alignment/AlignmentToolbar.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/richtexteditor/extensions/AnchorLink/AnchorLinkMenu.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/richtexteditor/extensions/AnimatedGif/AnimatedGifMenu.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/richtexteditor/extensions/AnimatedGif/AnimatedGifToolbar.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/richtexteditor/extensions/Blockquote/BlockquoteToolbar.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/richtexteditor/extensions/Bold/BoldToolbar.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/richtexteditor/extensions/BulletList/BulletListToolbar.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/richtexteditor/extensions/Code/CodeToolbar.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/richtexteditor/extensions/CodeBlock/CodeBlockToolbar.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/richtexteditor/extensions/EmoticonPicker/EmoticonPickerToolbar.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/richtexteditor/extensions/EnterpriseGlossaryLink/components/SuggestionComponent.d.ts +3 -1
- package/internal-do-not-import-from-here/ux/richtexteditor/extensions/HashTag/HashTagToolbar.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/richtexteditor/extensions/Heading/HeadingToolbar.d.ts +4 -2
- package/internal-do-not-import-from-here/ux/richtexteditor/extensions/History/HistoryToolbar.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/richtexteditor/extensions/HorizontalRule/HorizontalRuleToolbar.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/richtexteditor/extensions/Html/HtmlToolbar.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/richtexteditor/extensions/Italic/ItalicToolbar.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/richtexteditor/extensions/LanguagePicker/LanguagePickerToolbar.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/richtexteditor/extensions/MediaPicker/MediaPickerToolbar.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/richtexteditor/extensions/Mention/MentionToolbar.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/richtexteditor/extensions/OrderedList/OrderedListToolbar.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/richtexteditor/extensions/RemoveFormatting/RemoveFormattingMenu.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/richtexteditor/extensions/Strike/StrikeToolbar.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/richtexteditor/extensions/Table/TableSubToolbar.d.ts +14 -14
- package/internal-do-not-import-from-here/ux/richtexteditor/extensions/Table/TableToolbar.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/richtexteditor/extensions/TextColor/TextColorToolbar.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/richtexteditor/extensions/TextTranslator/TextTranslatorToolbar.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/richtexteditor/extensions/TodoList/TodoListToolbar.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/richtexteditor/extensions/Underline/UnderlineToolbar.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/richtexteditorrenderer/IRichTextEditorRenderer.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/richtexteditorrenderer/RichTextEditorRenderer.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/rollupempty/RollupEmpty.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/rollupfilter/IRollupFilter.d.ts +3 -2
- package/internal-do-not-import-from-here/ux/rollupfilter/IRollupFilterPicker.d.ts +3 -2
- package/internal-do-not-import-from-here/ux/rollupfilter/RollupFilter.d.ts +17 -13
- package/internal-do-not-import-from-here/ux/rollupfilter/RollupFilterPicker.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/securitytrimer/ISecurityTrimer.d.ts +3 -2
- package/internal-do-not-import-from-here/ux/securitytrimer/SecurityTrimer.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/selection/ISelection.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/selection/SelectionComponent.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/settings/ISettingsPane.d.ts +3 -2
- package/internal-do-not-import-from-here/ux/settings/SettingsPane.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/shapedivider/IShapeDivider.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/shapedivider/IShapeDividerSettings.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/shapedivider/ShapeDivider.d.ts +13 -13
- package/internal-do-not-import-from-here/ux/shapedivider/ShapeDividerSettings.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/sharepointvideo/SharepointVideo.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/signin/SignInBlock.d.ts +45 -5
- package/internal-do-not-import-from-here/ux/signin/SignInPage.d.ts +45 -5
- package/internal-do-not-import-from-here/ux/signin/omnia/Renderer.d.ts +60 -14
- package/internal-do-not-import-from-here/ux/signin/omnia/providers/MagicLinkProvider.d.ts +5 -2
- package/internal-do-not-import-from-here/ux/signin/omnia/providers/OtpProvider.d.ts +5 -2
- package/internal-do-not-import-from-here/ux/signin/omnia/providers/PasswordProvider.d.ts +5 -2
- package/internal-do-not-import-from-here/ux/signout/SignOut.d.ts +45 -5
- package/internal-do-not-import-from-here/ux/sitelogoicon/ISiteLogoIcon.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/sitelogoicon/SiteLogoIcon.d.ts +3 -3
- package/internal-do-not-import-from-here/ux/social/Comment.d.ts +7 -7
- package/internal-do-not-import-from-here/ux/social/CommentDialog.d.ts +3 -3
- package/internal-do-not-import-from-here/ux/social/IComment.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/social/ILike.d.ts +2 -1
- package/internal-do-not-import-from-here/ux/social/IPeopleTagging.d.ts +2 -1
- package/internal-do-not-import-from-here/ux/social/Like.d.ts +7 -5
- package/internal-do-not-import-from-here/ux/social/PeopleTagging.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/social/likehandler/LikeActionSettings.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/social/templates/CommentLikeTemplate.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/social/templates/ILikeListingTemplate.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/social/templates/LikeListingTemplate.d.ts +3 -3
- package/internal-do-not-import-from-here/ux/spacingpicker/ISpacingPicker.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/spacingpicker/SpacingPicker.d.ts +3 -3
- package/internal-do-not-import-from-here/ux/statusmessageoverlay/IStatusMessageOverlay.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/statusmessageoverlay/StatusMessageOverlay.d.ts +3 -3
- package/internal-do-not-import-from-here/ux/tag/HashTagList.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/templatepicker/ITemplatePicker.d.ts +5 -1
- package/internal-do-not-import-from-here/ux/templatepicker/TemplatePicker.d.ts +3 -3
- package/internal-do-not-import-from-here/ux/texttranslator/ITextTranslator.d.ts +3 -2
- package/internal-do-not-import-from-here/ux/texttranslator/TextTranslator.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/theming/InternalTheming.d.ts +3 -3
- package/internal-do-not-import-from-here/ux/theming/components/IThemeDefinitionEditor.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/theming/components/ThemeDefinitionEditor.d.ts +9 -9
- package/internal-do-not-import-from-here/ux/theming-v2/themedefinitionpicker/ThemeDefinitionPicker.d.ts +54 -11
- package/internal-do-not-import-from-here/ux/theming-v2/themeeditor/ThemeEditor.d.ts +66 -5
- package/internal-do-not-import-from-here/ux/theming-v2/themeeditor/components/ColorSelector.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/theming-v2/themeeditor/components/ThemeCodeEditor.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/theming-v2/themeeditor/components/ThemeViewer.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/timeperiodpicker/ITimePeriodPicker.d.ts +2 -1
- package/internal-do-not-import-from-here/ux/timeperiodpicker/TimePeriodPicker.d.ts +3 -3
- package/internal-do-not-import-from-here/ux/timezonepicker/ITimeZonePicker.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/timezonepicker/TimeZonePicker.d.ts +3 -3
- package/internal-do-not-import-from-here/ux/urlinput/IUrlInput.d.ts +3 -3
- package/internal-do-not-import-from-here/ux/urlinput/UrlInput.d.ts +3 -3
- package/internal-do-not-import-from-here/ux/use/Types.d.ts +4 -4
- package/internal-do-not-import-from-here/ux/use/UseBreakPoint.d.ts +1 -2
- package/internal-do-not-import-from-here/ux/use/UseVueInstance.d.ts +10 -4
- package/internal-do-not-import-from-here/ux/user/UserPropertyRenderer.d.ts +64 -13
- package/internal-do-not-import-from-here/ux/user/components/PropertyConfigurationRenderer.d.ts +54 -11
- package/internal-do-not-import-from-here/ux/user/components/UserPropertiesByMicrosoftGraphDisplay.d.ts +45 -5
- package/internal-do-not-import-from-here/ux/user/components/UserPropertiesByMicrosoftGraphEditor.d.ts +45 -5
- package/internal-do-not-import-from-here/ux/user/components/UserPropertyProviderDisplay.d.ts +45 -5
- package/internal-do-not-import-from-here/ux/user/components/UserPropertyProviderEditor.d.ts +45 -5
- package/internal-do-not-import-from-here/ux/userpresence/UserPresence.d.ts +62 -15
- package/internal-do-not-import-from-here/ux/usertypelayout/UserTypeLayoutBladeBuilder.d.ts +52 -10
- package/internal-do-not-import-from-here/ux/usertypelayout/UserTypeLayoutRenderer.d.ts +58 -13
- package/internal-do-not-import-from-here/ux/validation/FieldValidation.d.ts +3 -1
- package/internal-do-not-import-from-here/ux/validation/IFieldValidation.d.ts +3 -2
- package/internal-do-not-import-from-here/ux/velcron/blocks/VelcronBlock.d.ts +45 -5
- package/internal-do-not-import-from-here/ux/velcron/blocks/VelcronBlockSettings.d.ts +45 -5
- package/internal-do-not-import-from-here/ux/velcron/editor/VelcronEditor.d.ts +61 -14
- package/internal-do-not-import-from-here/ux/velcron/editor/components/AddComponent.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/velcron/editor/components/AddDataObject.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/velcron/editor/components/AppExplorer.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/velcron/editor/components/CodeEditor.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/velcron/editor/components/ContainerRenderer.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/velcron/editor/components/EditComponentPane.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/velcron/editor/components/EditDataPane.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/velcron/editor/components/ShareApp.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/velcron/editor/components/panels/edit-component/ConditionalStatements.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/velcron/editor/components/panels/edit-component/EventsPanel.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/velcron/editor/components/panels/edit-component/PropertiesPanel.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/velcron/editor/components/panels/edit-component/StylingPanel.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/velcron/editor/components/panels/edit-data/EditDataMemberPanel.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/velcron/editor/components/pickers/ColorSchemaPicker/ColorSchemaPicker.d.ts +56 -12
- package/internal-do-not-import-from-here/ux/velcron/editor/components/pickers/colorpicker/ColorPicker.d.ts +54 -11
- package/internal-do-not-import-from-here/ux/velcron/editor/components/pickers/colorschemamapper/ColorSchemaMapper.d.ts +54 -11
- package/internal-do-not-import-from-here/ux/velcron/editor/components/pickers/colorschemareferencepicker/ColorSchemaReferencePicker.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/velcron/editor/components/pickers/ratiopicker/RatioPicker.d.ts +54 -11
- package/internal-do-not-import-from-here/ux/velcron/editor/components/pickers/typographypicker/TypographyPicker.d.ts +54 -11
- package/internal-do-not-import-from-here/ux/velcron/renderer/VelcronRenderer.d.ts +62 -15
- package/internal-do-not-import-from-here/ux/velcron/renderer/components/App.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/velcron/renderer/components/Button.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/velcron/renderer/components/Card.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/velcron/renderer/components/Chip.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/velcron/renderer/components/ComponentCreator.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/velcron/renderer/components/Custom.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/velcron/renderer/components/Dialog.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/velcron/renderer/components/FlexView.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/velcron/renderer/components/Icon.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/velcron/renderer/components/Image.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/velcron/renderer/components/ProgressCircle.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/velcron/renderer/components/Text.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/velcron/renderer/components/TextInput.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/velcron/renderer/components/View.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/velcron/renderer/components/WebView.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/versionedlayout/blade/LayoutAliasBlade.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/versionedlayout/blade/VersionedLayoutListBladeBuilder.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/versionedlayout/controller/Chrome.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/versionedlayout/controller/VersionedLayoutController.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/versionedlayout/editor/LayoutEditorTabRenderer.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/versionedlayout/editor/LayoutEditorTabRendererSizeMonitor.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/versionedlayout/editor/VersionedLayoutEditor.d.ts +64 -16
- package/internal-do-not-import-from-here/ux/versionedlayout/editor/alternatelayout/AlternateLayoutCreationForm.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/versionedlayout/editor/alternatelayout/AlternateLayoutMappingAction.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/versionedlayout/editor/alternatelayout/AlternateLayoutRenameForm.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/versionedlayout/editor/displaybreakpoint/DisplayBreakpointAction.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/versionedlayout/editor/messages/checkedbyother/CheckedOutByOtherMessage.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/versionedlayout/editor/panels/Panels.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/versionedlayout/editor/panels/versionhistory/VersionHistory.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/versionedlayout/editor/panels/versionhistory/VersionUserInfo.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/versionedlayout/layoutbackgroundimage/LayoutBackgroundImage.d.ts +3 -3
- package/internal-do-not-import-from-here/ux/versionedlayout/renderer/VersionedLayoutRenderer.d.ts +69 -19
- package/internal-do-not-import-from-here/ux/versionedlayout/urlinput/VersionedLayoutUrlInput.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/vuetify/VuetifyCore.d.ts +4 -65
- package/internal-do-not-import-from-here/ux/vuetify/input/VSelect.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/vuetify/stepper/VStepperItems.d.ts +1 -4
- package/internal-do-not-import-from-here/ux/vuetify/types.d.ts +10 -2
- package/internal-do-not-import-from-here/ux/welcome/Welcome.d.ts +3 -3
- package/internal-do-not-import-from-here/ux/wizard/IWizard.d.ts +2 -1
- package/internal-do-not-import-from-here/ux/wizard/WizardComponent.d.ts +4 -4
- package/internal-do-not-import-from-here/vue/VueApp.d.ts +2 -0
- package/internal-do-not-import-from-here/vue/VueBundler.d.ts +1 -0
- package/internal-do-not-import-from-here/vue/VueHooks.d.ts +20 -0
- package/internal-do-not-import-from-here/vue/VueHotReloadApi.d.ts +1 -12
- package/internal-do-not-import-from-here/vue/index.d.ts +2 -1
- package/internal-do-not-import-from-here/vue/vuecustomelement/CreateVueInstance.d.ts +1 -1
- package/internal-do-not-import-from-here/vue/vuecustomelement/VueCustomElement.d.ts +2 -7
- package/internal-do-not-import-from-here/wcdefinitions.json +1 -1
- package/internal-do-not-import-from-here/wctypings.d.ts +126 -127
- package/package.json +4 -7
- package/internal-do-not-import-from-here/ux/filterengine/components/renderer/person/PersonPropertyItemRendererStyles.css.d.ts +0 -4
- package/internal-do-not-import-from-here/ux/shim-tsx.d.ts +0 -14
@@ -1,8 +1,8 @@
|
|
1
|
-
import { IWebComponentInstance } from "../../";
|
1
|
+
import { IWebComponentInstance, SubscriptionHandler } from "../../";
|
2
2
|
import { ConsoleMessage, ConsoleStateStorageMessage } from "../../models";
|
3
|
-
import { VueComponentBase } from "
|
3
|
+
import { VueComponentBase } from "@omnia/fx/ux";
|
4
4
|
export declare class ConsoleComponent extends VueComponentBase implements IWebComponentInstance {
|
5
|
-
|
5
|
+
subscriptionHandler: SubscriptionHandler;
|
6
6
|
private terminal;
|
7
7
|
private minimized;
|
8
8
|
private updateHeight;
|
@@ -14,7 +14,6 @@ export declare class ConsoleComponent extends VueComponentBase implements IWebCo
|
|
14
14
|
private omniaCtx;
|
15
15
|
private loc;
|
16
16
|
terminalHolder: HTMLElement;
|
17
|
-
created(): void;
|
18
17
|
mounted(): void;
|
19
18
|
destroyed(): void;
|
20
19
|
command(): void;
|
@@ -34,7 +33,7 @@ export declare class ConsoleComponent extends VueComponentBase implements IWebCo
|
|
34
33
|
private getWindowState;
|
35
34
|
private restoreWindowState;
|
36
35
|
private getTerminalHeight;
|
37
|
-
render():
|
36
|
+
render(): JSX.Element;
|
38
37
|
}
|
39
38
|
export declare enum WindowStates {
|
40
39
|
Maximized = "max",
|
package/internal-do-not-import-from-here/console/components/MessageBusSubscriptionsViewer.d.ts
CHANGED
@@ -1,5 +1,5 @@
|
|
1
|
-
import * as tsx from "vue-tsx-support";
|
2
1
|
import { VDataGridHeader } from "../../ux/vuetify";
|
2
|
+
import { VueComponentBase } from "@omnia/fx/ux";
|
3
3
|
export interface MessageBusSubscriptionsViewerProps {
|
4
4
|
height: any;
|
5
5
|
}
|
@@ -7,7 +7,7 @@ export interface MessageBusSubscriptionsViewerEvents {
|
|
7
7
|
}
|
8
8
|
export interface MessageBusSubscriptionsViewerScopedSlots {
|
9
9
|
}
|
10
|
-
export default class MessageBusSubscriptionsViewer extends
|
10
|
+
export default class MessageBusSubscriptionsViewer extends VueComponentBase<MessageBusSubscriptionsViewerProps, MessageBusSubscriptionsViewerEvents, MessageBusSubscriptionsViewerScopedSlots> {
|
11
11
|
height: number;
|
12
12
|
private subscribers;
|
13
13
|
private subscriptions;
|
@@ -17,5 +17,5 @@ export default class MessageBusSubscriptionsViewer extends tsx.Component<Message
|
|
17
17
|
beforeDestroy(): void;
|
18
18
|
private getSubscriptions;
|
19
19
|
renderChildItems(item: any): void;
|
20
|
-
render():
|
20
|
+
render(): JSX.Element;
|
21
21
|
}
|
@@ -1,7 +1,47 @@
|
|
1
1
|
import "./MessageOverlay.css";
|
2
|
-
declare const _default:
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
})
|
2
|
+
declare const _default: {
|
3
|
+
new (...args: any[]): {
|
4
|
+
$: import("vue").ComponentInternalInstance;
|
5
|
+
$data: {};
|
6
|
+
$props: Partial<{}> & Omit<Readonly<import("vue").ExtractPropTypes<{}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>;
|
7
|
+
$attrs: {
|
8
|
+
[x: string]: unknown;
|
9
|
+
};
|
10
|
+
$refs: {
|
11
|
+
[x: string]: unknown;
|
12
|
+
};
|
13
|
+
$slots: Readonly<{
|
14
|
+
[name: string]: import("vue").Slot;
|
15
|
+
}>;
|
16
|
+
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
17
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
18
|
+
$emit: (event: string, ...args: any[]) => void;
|
19
|
+
$el: any;
|
20
|
+
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{}>>, () => JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string> & {
|
21
|
+
beforeCreate?: (() => void) | (() => void)[];
|
22
|
+
created?: (() => void) | (() => void)[];
|
23
|
+
beforeMount?: (() => void) | (() => void)[];
|
24
|
+
mounted?: (() => void) | (() => void)[];
|
25
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
26
|
+
updated?: (() => void) | (() => void)[];
|
27
|
+
activated?: (() => void) | (() => void)[];
|
28
|
+
deactivated?: (() => void) | (() => void)[];
|
29
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
30
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
31
|
+
destroyed?: (() => void) | (() => void)[];
|
32
|
+
unmounted?: (() => void) | (() => void)[];
|
33
|
+
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
34
|
+
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
35
|
+
errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void)[];
|
36
|
+
};
|
37
|
+
$forceUpdate: () => void;
|
38
|
+
$nextTick: typeof import("vue").nextTick;
|
39
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean>): import("vue").WatchStopHandle;
|
40
|
+
} & Readonly<import("vue").ExtractPropTypes<{}>> & import("vue").ShallowUnwrapRef<() => JSX.Element> & {} & import("vue").ComponentCustomProperties & {};
|
41
|
+
__isFragment?: never;
|
42
|
+
__isTeleport?: never;
|
43
|
+
__isSuspense?: never;
|
44
|
+
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{}>>, () => JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
45
|
+
propsDefinition: Readonly<import("vue").ExtractPropTypes<{}>>;
|
46
|
+
};
|
7
47
|
export default _default;
|
@@ -1,5 +1,5 @@
|
|
1
|
-
import * as tsx from "vue-tsx-support";
|
2
1
|
import { VDataGridHeader } from "../../ux/vuetify";
|
2
|
+
import { VueComponentBase } from "@omnia/fx/ux";
|
3
3
|
export interface StoreLogviewerProps {
|
4
4
|
height: number;
|
5
5
|
}
|
@@ -7,9 +7,9 @@ export interface StoreLogviewerEvents {
|
|
7
7
|
}
|
8
8
|
export interface StoreLogviewerScopedSlots {
|
9
9
|
}
|
10
|
-
export default class StoreLogviewer extends
|
10
|
+
export default class StoreLogviewer extends VueComponentBase<StoreLogviewerProps, StoreLogviewerEvents, StoreLogviewerScopedSlots> {
|
11
11
|
height: number;
|
12
12
|
headers: Array<VDataGridHeader>;
|
13
13
|
mounted(): void;
|
14
|
-
render():
|
14
|
+
render(): JSX.Element;
|
15
15
|
}
|
@@ -1,6 +1,6 @@
|
|
1
1
|
import { GuidValue, Log, IRouteContext, AdminVisibility, IMessageBusTopicPublishSubscriber, BusinessProfileWithProperties, Guid, AppRouteWithProperties, LoadableBundleManifest, NotificationMessage } from "../../models";
|
2
|
-
import { VueInject } from "../../models/VueInject";
|
3
2
|
import { AxiosError } from "axios";
|
3
|
+
import { ComponentInternalInstance } from "vue";
|
4
4
|
export declare class InternalTopics {
|
5
5
|
static Admin: {
|
6
6
|
new (): {};
|
@@ -24,9 +24,12 @@ export declare class InternalTopics {
|
|
24
24
|
responseError: AxiosError;
|
25
25
|
enableCircuitBreaker: () => void;
|
26
26
|
}>;
|
27
|
-
static get vueInjectOnCreated(): IMessageBusTopicPublishSubscriber<
|
27
|
+
static get vueInjectOnCreated(): IMessageBusTopicPublishSubscriber<{
|
28
|
+
instance: any;
|
29
|
+
object: any;
|
30
|
+
}>;
|
28
31
|
static get vueOnDestroyed(): IMessageBusTopicPublishSubscriber<{
|
29
|
-
instance:
|
32
|
+
instance: ComponentInternalInstance;
|
30
33
|
}>;
|
31
34
|
static get onError(): IMessageBusTopicPublishSubscriber<string>;
|
32
35
|
static get notificationMessage(): IMessageBusTopicPublishSubscriber<NotificationMessage>;
|
@@ -93,11 +93,29 @@ export declare function setCurrentManifest(omniaServiceId: any, resourceId: any)
|
|
93
93
|
TokenService: typeof Exposes.TokenService;
|
94
94
|
AuthenticationSessionService: typeof Exposes.AuthenticationSessionService;
|
95
95
|
GraphClient: typeof Exposes.GraphClient;
|
96
|
-
VueWebComponentSlot: typeof Exposes.VueWebComponentSlot;
|
97
96
|
Localize(namespace?: string): any;
|
98
97
|
useLocalize<T_4>(namespace: string): T_4;
|
99
|
-
|
100
|
-
|
98
|
+
registerVuePlugin(plugin: (((app: import("vue").App<any>, ...options: any[]) => any) & {
|
99
|
+
install?: (app: import("vue").App<any>, ...options: any[]) => any;
|
100
|
+
}) | {
|
101
|
+
install: (app: import("vue").App<any>, ...options: any[]) => any;
|
102
|
+
}, ...options: any[]): void;
|
103
|
+
getVuePlugins(): {
|
104
|
+
plugin: (((app: import("vue").App<any>, ...options: any[]) => any) & {
|
105
|
+
install?: (app: import("vue").App<any>, ...options: any[]) => any;
|
106
|
+
}) | {
|
107
|
+
install: (app: import("vue").App<any>, ...options: any[]) => any;
|
108
|
+
};
|
109
|
+
options: any[];
|
110
|
+
}[];
|
111
|
+
registerVueMixin(mixin: import("vue").ComponentOptions<{}, any, any, any, any, any, any, any>): void;
|
112
|
+
getVueMixins(): import("vue").ComponentOptions<{}, any, any, any, any, any, any, any>[];
|
113
|
+
registerVueOptionsHook(fn: () => void): void;
|
114
|
+
getVueOptionsHooks(): ((classComponentConstructor?: any) => void)[];
|
115
|
+
registerAsyncVueComponent(app: import("vue").App<any>, component: Models.WebComponentBundleManifest): void;
|
116
|
+
resolveAsyncVueComponent(elementName: string, definition: import("vue").DefineComponent<{}, {}, {}, import("vue").ComputedOptions, import("vue").MethodOptions, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>): void;
|
117
|
+
createVueApp: import("vue").CreateAppFunction<Element>;
|
118
|
+
vueCustomElement(tag: string, componentDefinition: Object | Exposes.ComponentDefinitionFunc, options?: Exposes.VueCustomElementOptions): HTMLElement;
|
101
119
|
DisplayRules: typeof Exposes.DisplayRules;
|
102
120
|
ApiHelper: typeof Exposes.ApiHelper;
|
103
121
|
omniaScriptApi: Exposes.IOmniaScriptApi;
|
@@ -113,7 +131,7 @@ declare global {
|
|
113
131
|
[name: string]: any;
|
114
132
|
}
|
115
133
|
}
|
116
|
-
namespace
|
134
|
+
namespace JSX {
|
117
135
|
interface Element {
|
118
136
|
}
|
119
137
|
interface ElementClass {
|
@@ -1 +1 @@
|
|
1
|
-
{"name":"omniaWebpackJsonp['bb000000-0000-bbbb-0000-0000000000bb']['a5a89056-b5f5-475d-8518-a1f55090379d']","content":{"./node_modules/@omnia/fx/Bootstrapper.js":{"id":"./node_modules/@omnia/fx/bootstrapper.js","buildMeta":{"exportsType":"namespace"},"expo.js":[]},"./node_modules/@omnia/fx/index.js":{"id":"14a8d443-2e58-450b-a462-258bdaf69b49","buildMeta":{"exportsType":"namespace"},"expo.js":["ApiHelper","AppRoutePropertyBagFactory","AuthenticationSessionService","BusinessProfilePathPropertyBagFactory","BusinessProfilePropertyBagFactory","Console","ConsoleUIService","ContextProviderCollection","Cookies","CurrentDisplayUserContext","DisplayRules","Encoder","EnterprisePropertyHandler","ErrorBus","Extend","GraphClient","HttpClient","HttpContextProviderCollection","IAppRouteFactory","IBusinessProfileFactory","ITenantFactory","ImageProxyService","Inject","Injectable","LocalStorage","Localize","MD5Util","ManifestResourceLoader","MessageBusExposeOnlyPublication","MessageBusExposeOnlySubscription","MessageBusTopicMediator","MigrationUtils","NamedPropertyOperationsFactory","OmniaContext","OmniaContextProvider","OmniaPropertyBagBase","Provide","ReplaceToken","Require","ScrollPagingUtils","ServiceContainer","ServiceContainerContext","ServiceLocator","ServiceManifestProvider","SubscriptionHandler","TenantPropertyBagFactory","TokenService","Topics","UserAgentUtils","UserPropertyBagFactory","Utils","
|
1
|
+
{"name":"omniaWebpackJsonp['bb000000-0000-bbbb-0000-0000000000bb']['a5a89056-b5f5-475d-8518-a1f55090379d']","content":{"./node_modules/@omnia/fx/Bootstrapper.js":{"id":"./node_modules/@omnia/fx/bootstrapper.js","buildMeta":{"exportsType":"namespace"},"expo.js":[]},"./node_modules/@omnia/fx/index.js":{"id":"14a8d443-2e58-450b-a462-258bdaf69b49","buildMeta":{"exportsType":"namespace"},"expo.js":["ApiHelper","AppRoutePropertyBagFactory","AuthenticationSessionService","BusinessProfilePathPropertyBagFactory","BusinessProfilePropertyBagFactory","Console","ConsoleUIService","ContextProviderCollection","Cookies","CurrentDisplayUserContext","DisplayRules","Encoder","EnterprisePropertyHandler","ErrorBus","Extend","GraphClient","HttpClient","HttpContextProviderCollection","IAppRouteFactory","IBusinessProfileFactory","ITenantFactory","ImageProxyService","Inject","Injectable","LocalStorage","Localize","MD5Util","ManifestResourceLoader","MessageBusExposeOnlyPublication","MessageBusExposeOnlySubscription","MessageBusTopicMediator","MigrationUtils","NamedPropertyOperationsFactory","OmniaContext","OmniaContextProvider","OmniaPropertyBagBase","Provide","ReplaceToken","Require","ScrollPagingUtils","ServiceContainer","ServiceContainerContext","ServiceLocator","ServiceManifestProvider","SubscriptionHandler","TenantPropertyBagFactory","TokenService","Topics","UserAgentUtils","UserPropertyBagFactory","Utils","WebComponentBootstrapper","WebUtils","createVueApp","extendApi","getVueMixins","getVueOptionsHooks","getVuePlugins","isInjectable","omniaScriptApi","propertyPath","propertyPathValue","registerApi","registerAsyncVueComponent","registerVueMixin","registerVueOptionsHook","registerVuePlugin","resolveAsyncVueComponent","setCurrentManifest","useInject","useLocalize","useOmniaClient","useProvide","vueCustomElement"]},"./node_modules/@omnia/fx/stores/index.js":{"id":"5e618f4d-d014-414e-a681-89e34cbeda0f","buildMeta":{"exportsType":"namespace"},"expo.js":["AppNamingPolicyStore","AppStore","AuditLogStore","AzureAdUserStore","BlockTitleGlobalSettingsStore","BlockTitleSettingsStore","BusinessProfileStore","ClipboardStore","CommentLikeStore","ConnectedTenantStore","DirectionRuleStore","DynamicGroupStore","EnterpriseGlossaryStore","EnterprisePropertyCategoryStore","EnterprisePropertySetStore","EnterprisePropertyStore","ExtensionStore","FeatureStore","FileUploaderStore","GroupIdentityStore","IdentityStore","IdentitySyncProviderStore","LocalizationStore","MSTeamsStore","MediaPickerStore","MultilingualStore","OrganizationTreeStore","PostStore","ProfileCardStore","PromotedTagStore","SiteStore","Store","StoreAction","StoreLogTypes","StoreLogger","StoreMutation","StoreState","SystemLogStore","TargetingPropertyStore","TimeZoneStore","TokenStatus","TokenStore","UserIdentityStore","UserTargetingStore","UserTypeStore","VersionedLayoutStore","defineStore","defineStore2"]},"./node_modules/@omnia/fx/vue/index.js":{"id":"c041fe9f-1e14-443d-9407-5aa8829fbc21","buildMeta":{"exportsType":"namespace"},"expo.js":["Localize","createVueApp","getVueMixins","getVueOptionsHooks","getVuePlugins","registerAsyncVueComponent","registerVueMixin","registerVueOptionsHook","registerVuePlugin","resolveAsyncVueComponent","useLocalize","vueCustomElement"]},"./node_modules/@omnia/fx/services/index.js":{"id":"e25b9dd8-6dd7-4437-8ddd-0b9fadba73ac","buildMeta":{"exportsType":"namespace"},"expo.js":["AppNamingPolicyService","AppRouteService","AppService","AuditLogService","AzureAdUserService","BusinessProfileService","ConnectedTenantService","DynamicGroupService","EnterpriseGlossaryService","EnterprisePropertyCategoryService","EnterprisePropertySetService","ExtensionsService","FileStorageService","GroupIdentityService","GroupService","IdentityService","IdentitySyncProviderService","ImageProxyService","LocalizationService","ManifestService","MediaPickerService","MicrosoftStreamService","OrganizationTreeService","PermissionNode","PermissionService","PostService","ProfileCardService","QueryablePropertiesService","QueueService","RealtimeService","SecretsService","SecurityRoles","SecurityService","SettingsService","SiteService","TagsService","TargetingPropertyService","TenantContactService","TenantPreSetupService","TimeZoneService","TranslationService","UserIdentityService","UserPresenceStatus","UserService","UserTypeService","VersionedDataService","VersionedLayoutService","WebImageService"]}}}
|
@@ -1 +1 @@
|
|
1
|
-
{"name":"omniaWebpackJsonp['bb000000-0000-bbbb-0000-0000000000bb']['dee030cc-4ab3-4158-bb06-8049f5c67542']","content":{"./node_modules/@omnia/fx/ux/admin/BusinessProfileRouter.js":{"id":"./node_modules/@omnia/fx/ux/admin/businessprofilerouter.js","buildMeta":{"exportsType":"namespace"},"expo.js":["BusinessProfileRouter"]},"./node_modules/@omnia/fx/ux/admin/chrome/AdminVisibiltyController.js":{"id":"./node_modules/@omnia/fx/ux/admin/chrome/adminvisibiltycontroller.js","buildMeta":{"exportsType":"namespace"},"expo.js":[]},"./node_modules/@omnia/fx/ux/admin/store/AdminStore.js":{"id":"./node_modules/@omnia/fx/ux/admin/store/adminstore.js","buildMeta":{"exportsType":"namespace"},"expo.js":["AdminStore"]},"./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/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/enterpriseglossary/componentbase/index.js":{"id":"./node_modules/@omnia/fx/ux/enterpriseglossary/componentbase/index.js","buildMeta":{"exportsType":"namespace"}},"./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/imagetransformation/constants.js":{"id":"./node_modules/@omnia/fx/ux/imagetransformation/constants.js","buildMeta":{"exportsType":"namespace"},"expo.js":["Constants"]},"./node_modules/@omnia/fx/ux/imagetransformation/enums.js":{"id":"./node_modules/@omnia/fx/ux/imagetransformation/enums.js","buildMeta":{"exportsType":"namespace"},"expo.js":["Filters","ImageEditorMenu"]},"./node_modules/@omnia/fx/ux/imagetransformation/image-svg-transfomer.js":{"id":"./node_modules/@omnia/fx/ux/imagetransformation/image-svg-transfomer.js","buildMeta":{"exportsType":"namespace"},"expo.js":["ImageSvgTransformer"]},"./node_modules/@omnia/fx/ux/imagetransformation/image-transfomer.js":{"id":"./node_modules/@omnia/fx/ux/imagetransformation/image-transfomer.js","buildMeta":{"exportsType":"namespace"},"expo.js":["ImageTransformer"]},"./node_modules/@omnia/fx/ux/imagetransformation/index.js":{"id":"./node_modules/@omnia/fx/ux/imagetransformation/index.js","buildMeta":{"exportsType":"namespace"},"expo.js":["ImageSvgTransformer","ImageTransformer","getComputedProp","isEmpty","onApplyFilter","onApplyStyle","onFlipX","onFlipY","onReset"]},"./node_modules/@omnia/fx/ux/imagetransformation/interfaces.js":{"id":"./node_modules/@omnia/fx/ux/imagetransformation/interfaces.js","buildMeta":{"exportsType":"namespace"},"expo.js":[]},"./node_modules/@omnia/fx/ux/imagetransformation/utils.js":{"id":"./node_modules/@omnia/fx/ux/imagetransformation/utils.js","buildMeta":{"exportsType":"namespace"},"expo.js":["getComputedProp","isEmpty","onApplyFilter","onApplyStyle","onFlipX","onFlipY","onReset"]},"./node_modules/@omnia/fx/ux/imagetransformer/Constants.js":{"id":"./node_modules/@omnia/fx/ux/imagetransformer/constants.js","buildMeta":{"exportsType":"namespace"},"expo.js":["Constants"]},"./node_modules/@omnia/fx/ux/imagetransformer/ImageTransformer.css.js":{"id":"./node_modules/@omnia/fx/ux/imagetransformer/imagetransformer.css.js","buildMeta":{"exportsType":"namespace"},"expo.js":["MediaStyles","transformer"]},"./node_modules/@omnia/fx/ux/imagetransformer/loc/localize.js":{"id":"./node_modules/@omnia/fx/ux/imagetransformer/loc/localize.js","buildMeta":{"exportsType":"namespace"},"expo.js":["ImageTransformerLocalization"]},"./node_modules/@omnia/fx/ux/inputlanguagepicker/stores/index.js":{"id":"./node_modules/@omnia/fx/ux/inputlanguagepicker/stores/index.js","buildMeta":{"exportsType":"namespace"},"expo.js":["InputLanguageStore"]},"./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/IJourney.js":{"id":"./node_modules/@omnia/fx/ux/journey/ijourney.js","buildMeta":{"exportsType":"namespace"},"expo.js":[]},"./node_modules/@omnia/fx/ux/journey/index.js":{"id":"./node_modules/@omnia/fx/ux/journey/index.js","buildMeta":{"exportsType":"namespace"},"expo.js":["JourneyContext"]},"./node_modules/@omnia/fx/ux/layoutcanvas/index.js":{"id":"./node_modules/@omnia/fx/ux/layoutcanvas/index.js","buildMeta":{"exportsType":"namespace"}},"./node_modules/@omnia/fx/ux/mediapicker/IMediaPicker.js":{"id":"./node_modules/@omnia/fx/ux/mediapicker/imediapicker.js","buildMeta":{"exportsType":"namespace"},"expo.js":[]},"./node_modules/@omnia/fx/ux/messaging/index.js":{"id":"./node_modules/@omnia/fx/ux/messaging/index.js","buildMeta":{"exportsType":"namespace"},"expo.js":["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","ContentDialogStyles","CurrentUserTokenIdentityPicker","DatatableWrapperStyles","DateTimePickerStyles","DialogStyles","EditorStyleSettings","EmoticonStyles","EnterpriseGlossaryTermComponentBaseStyles","EnterprisePropertyPickerStyles","EnterprisePropertySetPickerStyles","FileUploaderStyles","ForceAnimatedClassname","GridViewMediaProviderComponentStyles","HeadingStyles","IconWrapperStyles","ImageGridStyles","ImageTransformerStyles","InputLanguagePickerStyles","InputTokenStyles","LanguagePickerStyles","LikeStyles","MediaPickerProviderStyles","MentionStyles","MultilingualInputStyles","NumericIndicatorStyles","OrgTreeStyles","PersonFieldDisplayStyles","PersonaStyles","PostStyle","ProfilecardStyles","QueryablePropertiesStyles","ReporteesStyles","RichTextEditorRendererStyles","RichTextEditorStyles","SharePointVideoSettingsStyles","StatusMessageOverlayStyles","TableMenuStyles","TagsFieldDisplayStyles","TermGlossaryMappingStyles","TextTranslatorStyles","TimeZonePickerStyles","UrlInputStyles","WizardStyles","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/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/theming/index.js":{"id":"./node_modules/@omnia/fx/ux/theming/index.js","buildMeta":{"exportsType":"namespace"}},"./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":["FieldValueValidation","FormValidator"]},"./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"}},"./node_modules/@material-design-icons/font/index.css":{"id":"./node_modules/@material-design-icons/font/index.css","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/splitpanes/dist/splitpanes.es.js":{"id":"./node_modules/splitpanes/dist/splitpanes.es.js","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/typestyle/lib/index.js":{"id":"./node_modules/typestyle/lib/index.js","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/typestyle/lib/internal/formatting.js":{"id":"./node_modules/typestyle/lib/internal/formatting.js","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/typestyle/lib/internal/typestyle.js":{"id":"./node_modules/typestyle/lib/internal/typestyle.js","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/typestyle/lib/internal/utilities.js":{"id":"./node_modules/typestyle/lib/internal/utilities.js","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/typestyle/lib/types.js":{"id":"./node_modules/typestyle/lib/types.js","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vue-virtual-scroller/dist/vue-virtual-scroller.esm.js":{"id":"./node_modules/vue-virtual-scroller/dist/vue-virtual-scroller.esm.js","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/components/transitions/index.js":{"id":"./node_modules/vuetify/lib/components/transitions/index.js","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/components/VApp/index.js":{"id":"./node_modules/vuetify/lib/components/vapp/index.js","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/components/VApp/VApp.js":{"id":"./node_modules/vuetify/lib/components/vapp/vapp.js","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/components/VBtn/index.js":{"id":"./node_modules/vuetify/lib/components/vbtn/index.js","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/components/VBtn/VBtn.js":{"id":"./node_modules/vuetify/lib/components/vbtn/vbtn.js","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/components/VContent/index.js":{"id":"./node_modules/vuetify/lib/components/vcontent/index.js","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/components/VContent/VContent.js":{"id":"./node_modules/vuetify/lib/components/vcontent/vcontent.js","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/components/VCounter/index.js":{"id":"./node_modules/vuetify/lib/components/vcounter/index.js","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/components/VGrid/index.js":{"id":"./node_modules/vuetify/lib/components/vgrid/index.js","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/components/VIcon/index.js":{"id":"./node_modules/vuetify/lib/components/vicon/index.js","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/components/VIcon/VIcon.js":{"id":"./node_modules/vuetify/lib/components/vicon/vicon.js","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/components/VImg/index.js":{"id":"./node_modules/vuetify/lib/components/vimg/index.js","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/components/VImg/VImg.js":{"id":"./node_modules/vuetify/lib/components/vimg/vimg.js","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/components/VInput/index.js":{"id":"./node_modules/vuetify/lib/components/vinput/index.js","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/components/VItemGroup/index.js":{"id":"./node_modules/vuetify/lib/components/vitemgroup/index.js","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/components/VItemGroup/VItemGroup.js":{"id":"./node_modules/vuetify/lib/components/vitemgroup/vitemgroup.js","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/components/VLabel/index.js":{"id":"./node_modules/vuetify/lib/components/vlabel/index.js","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/components/VLazy/index.js":{"id":"./node_modules/vuetify/lib/components/vlazy/index.js","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/components/VLazy/VLazy.js":{"id":"./node_modules/vuetify/lib/components/vlazy/vlazy.js","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/components/VMain/index.js":{"id":"./node_modules/vuetify/lib/components/vmain/index.js","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/components/VMain/VMain.js":{"id":"./node_modules/vuetify/lib/components/vmain/vmain.js","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/components/VMessages/index.js":{"id":"./node_modules/vuetify/lib/components/vmessages/index.js","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/components/VOverlay/index.js":{"id":"./node_modules/vuetify/lib/components/voverlay/index.js","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/components/VOverlay/VOverlay.js":{"id":"./node_modules/vuetify/lib/components/voverlay/voverlay.js","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/components/VProgressCircular/index.js":{"id":"./node_modules/vuetify/lib/components/vprogresscircular/index.js","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/components/VProgressCircular/VProgressCircular.js":{"id":"./node_modules/vuetify/lib/components/vprogresscircular/vprogresscircular.js","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/components/VProgressLinear/index.js":{"id":"./node_modules/vuetify/lib/components/vprogresslinear/index.js","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/components/VSheet/index.js":{"id":"./node_modules/vuetify/lib/components/vsheet/index.js","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/components/VSheet/VSheet.js":{"id":"./node_modules/vuetify/lib/components/vsheet/vsheet.js","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/components/VSkeletonLoader/index.js":{"id":"./node_modules/vuetify/lib/components/vskeletonloader/index.js","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/components/VSkeletonLoader/VSkeletonLoader.js":{"id":"./node_modules/vuetify/lib/components/vskeletonloader/vskeletonloader.js","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/components/VSlideGroup/index.js":{"id":"./node_modules/vuetify/lib/components/vslidegroup/index.js","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/components/VSlideGroup/VSlideGroup.js":{"id":"./node_modules/vuetify/lib/components/vslidegroup/vslidegroup.js","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/components/VSubheader/index.js":{"id":"./node_modules/vuetify/lib/components/vsubheader/index.js","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/components/VThemeProvider/index.js":{"id":"./node_modules/vuetify/lib/components/vthemeprovider/index.js","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/components/VThemeProvider/VThemeProvider.js":{"id":"./node_modules/vuetify/lib/components/vthemeprovider/vthemeprovider.js","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/components/VWindow/index.js":{"id":"./node_modules/vuetify/lib/components/vwindow/index.js","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/components/VWindow/VWindow.js":{"id":"./node_modules/vuetify/lib/components/vwindow/vwindow.js","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/components/VWindow/VWindowItem.js":{"id":"./node_modules/vuetify/lib/components/vwindow/vwindowitem.js","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/directives/click-outside/index.js":{"id":"./node_modules/vuetify/lib/directives/click-outside/index.js","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/directives/color/index.js":{"id":"./node_modules/vuetify/lib/directives/color/index.js","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/directives/index.js":{"id":"./node_modules/vuetify/lib/directives/index.js","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/directives/intersect/index.js":{"id":"./node_modules/vuetify/lib/directives/intersect/index.js","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/directives/mutate/index.js":{"id":"./node_modules/vuetify/lib/directives/mutate/index.js","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/directives/resize/index.js":{"id":"./node_modules/vuetify/lib/directives/resize/index.js","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/directives/ripple/index.js":{"id":"./node_modules/vuetify/lib/directives/ripple/index.js","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/directives/scroll/index.js":{"id":"./node_modules/vuetify/lib/directives/scroll/index.js","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/directives/touch/index.js":{"id":"./node_modules/vuetify/lib/directives/touch/index.js","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/framework.js":{"id":"./node_modules/vuetify/lib/framework.js","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/mixins/activatable/index.js":{"id":"./node_modules/vuetify/lib/mixins/activatable/index.js","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/mixins/applicationable/index.js":{"id":"./node_modules/vuetify/lib/mixins/applicationable/index.js","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/mixins/binds-attrs/index.js":{"id":"./node_modules/vuetify/lib/mixins/binds-attrs/index.js","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/mixins/bootable/index.js":{"id":"./node_modules/vuetify/lib/mixins/bootable/index.js","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/mixins/button-group/index.js":{"id":"./node_modules/vuetify/lib/mixins/button-group/index.js","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/mixins/colorable/index.js":{"id":"./node_modules/vuetify/lib/mixins/colorable/index.js","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/mixins/comparable/index.js":{"id":"./node_modules/vuetify/lib/mixins/comparable/index.js","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/mixins/delayable/index.js":{"id":"./node_modules/vuetify/lib/mixins/delayable/index.js","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/mixins/dependent/index.js":{"id":"./node_modules/vuetify/lib/mixins/dependent/index.js","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/mixins/detachable/index.js":{"id":"./node_modules/vuetify/lib/mixins/detachable/index.js","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/mixins/elevatable/index.js":{"id":"./node_modules/vuetify/lib/mixins/elevatable/index.js","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/mixins/filterable/index.js":{"id":"./node_modules/vuetify/lib/mixins/filterable/index.js","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/mixins/groupable/index.js":{"id":"./node_modules/vuetify/lib/mixins/groupable/index.js","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/mixins/intersectable/index.js":{"id":"./node_modules/vuetify/lib/mixins/intersectable/index.js","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/mixins/loadable/index.js":{"id":"./node_modules/vuetify/lib/mixins/loadable/index.js","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/mixins/localable/index.js":{"id":"./node_modules/vuetify/lib/mixins/localable/index.js","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/mixins/measurable/index.js":{"id":"./node_modules/vuetify/lib/mixins/measurable/index.js","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/mixins/menuable/index.js":{"id":"./node_modules/vuetify/lib/mixins/menuable/index.js","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/mixins/mobile/index.js":{"id":"./node_modules/vuetify/lib/mixins/mobile/index.js","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/mixins/overlayable/index.js":{"id":"./node_modules/vuetify/lib/mixins/overlayable/index.js","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/mixins/picker-button/index.js":{"id":"./node_modules/vuetify/lib/mixins/picker-button/index.js","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/mixins/picker/index.js":{"id":"./node_modules/vuetify/lib/mixins/picker/index.js","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/mixins/positionable/index.js":{"id":"./node_modules/vuetify/lib/mixins/positionable/index.js","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/mixins/proxyable/index.js":{"id":"./node_modules/vuetify/lib/mixins/proxyable/index.js","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/mixins/registrable/index.js":{"id":"./node_modules/vuetify/lib/mixins/registrable/index.js","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/mixins/returnable/index.js":{"id":"./node_modules/vuetify/lib/mixins/returnable/index.js","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/mixins/rippleable/index.js":{"id":"./node_modules/vuetify/lib/mixins/rippleable/index.js","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/mixins/roundable/index.js":{"id":"./node_modules/vuetify/lib/mixins/roundable/index.js","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/mixins/routable/index.js":{"id":"./node_modules/vuetify/lib/mixins/routable/index.js","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/mixins/scrollable/index.js":{"id":"./node_modules/vuetify/lib/mixins/scrollable/index.js","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/mixins/selectable/index.js":{"id":"./node_modules/vuetify/lib/mixins/selectable/index.js","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/mixins/sizeable/index.js":{"id":"./node_modules/vuetify/lib/mixins/sizeable/index.js","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/mixins/ssr-bootable/index.js":{"id":"./node_modules/vuetify/lib/mixins/ssr-bootable/index.js","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/mixins/stackable/index.js":{"id":"./node_modules/vuetify/lib/mixins/stackable/index.js","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/mixins/themeable/index.js":{"id":"./node_modules/vuetify/lib/mixins/themeable/index.js","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/mixins/toggleable/index.js":{"id":"./node_modules/vuetify/lib/mixins/toggleable/index.js","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/mixins/transitionable/index.js":{"id":"./node_modules/vuetify/lib/mixins/transitionable/index.js","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/mixins/translatable/index.js":{"id":"./node_modules/vuetify/lib/mixins/translatable/index.js","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/mixins/validatable/index.js":{"id":"./node_modules/vuetify/lib/mixins/validatable/index.js","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/services/goto/easing-patterns.js":{"id":"./node_modules/vuetify/lib/services/goto/easing-patterns.js","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/services/goto/index.js":{"id":"./node_modules/vuetify/lib/services/goto/index.js","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/services/goto/util.js":{"id":"./node_modules/vuetify/lib/services/goto/util.js","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/services/index.js":{"id":"./node_modules/vuetify/lib/services/index.js","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/util/color/transformCIELAB.js":{"id":"./node_modules/vuetify/lib/util/color/transformcielab.js","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/util/color/transformSRGB.js":{"id":"./node_modules/vuetify/lib/util/color/transformsrgb.js","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/util/colors.js":{"id":"./node_modules/vuetify/lib/util/colors.js","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/util/colorUtils.js":{"id":"./node_modules/vuetify/lib/util/colorutils.js","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/util/console.js":{"id":"./node_modules/vuetify/lib/util/console.js","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/util/dateTimeUtils.js":{"id":"./node_modules/vuetify/lib/util/datetimeutils.js","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/util/dedupeModelListeners.js":{"id":"./node_modules/vuetify/lib/util/dedupemodellisteners.js","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/util/dom.js":{"id":"./node_modules/vuetify/lib/util/dom.js","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/util/helpers.js":{"id":"./node_modules/vuetify/lib/util/helpers.js","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/util/mergeData.js":{"id":"./node_modules/vuetify/lib/util/mergedata.js","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/util/mixins.js":{"id":"./node_modules/vuetify/lib/util/mixins.js","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/util/rebuildFunctionalSlots.js":{"id":"./node_modules/vuetify/lib/util/rebuildfunctionalslots.js","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/src/components/VBtn/VBtn.sass":{"id":"./node_modules/vuetify/src/components/vbtn/vbtn.sass","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/src/components/VCard/VCard.sass":{"id":"./node_modules/vuetify/src/components/vcard/vcard.sass","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/src/components/VWindow/VWindow.sass":{"id":"./node_modules/vuetify/src/components/vwindow/vwindow.sass","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/@omnia/fx/ux/admin/index.js":{"id":"0111486e-5dc8-4705-8247-d91fb2aba33d","buildMeta":{"exportsType":"namespace"},"expo.js":["AdminChromeInstance","AdminRouter","AdminStore","BusinessProfileRouter"]},"./node_modules/@omnia/fx/ux/app/index.js":{"id":"14a0ce2f-3699-49b2-92d3-428caac194a4","buildMeta":{"exportsType":"namespace"},"expo.js":["AppContextProvider","Router"]},"./node_modules/@omnia/fx/ux/mediapickerproviders/mediaproviderbase/GridViewMediaProviderComponent.tsx":{"id":"1682f669-2a99-45e6-aa8b-7ed3d4e538d5","buildMeta":{"exportsType":"namespace"},"expo.js":["GridViewMediaProviderComponent"]},"./node_modules/@omnia/fx/ux/VueComponentBase.js":{"id":"8610c059-395a-45c2-804a-8c236f4d60d9","buildMeta":{"exportsType":"namespace"},"expo.js":["VueComponentBase","VueComponentConnect","definePropFunctionType","definePropObjectType","defineProps","defineVueComponent","getVuetifyAppClasses"]},"./node_modules/@omnia/fx/ux/VueTags.js":{"id":"9affb03a-b09d-49d2-8d18-df53485f8eda","buildMeta":{"exportsType":"namespace"},"expo.js":["Draggable","MonacoEditor","VAlertTag","VAppBar","VAppBarNavIcon","VAppTag","VAutocompleteTag","VAvatarTag","VBadgeTag","VBottomNavTag","VBreadcrumbsItemTag","VBreadcrumbsTag","VBtnTag","VBtnToggleTag","VCalendarCategory","VCalendarDaily","VCalendarMonthly","VCalendarTag","VCalendarWeekly","VCardActionsTag","VCardMediaTag","VCardTag","VCardTextTag","VCardTitleTag","VCarouselItemTag","VCarouselTag","VCheckboxTag","VChipTag","VComboboxTag","VContainerTag","VContentTag","VDataTableTag","VDatePickerDateTableTag","VDatePickerHeaderTag","VDatePickerMonthTableTag","VDatePickerTag","VDatePickerTitleTag","VDatePickerYearsTag","VDialogTag","VDividerTag","VEditDialogTag","VExpansionPanelContentTag","VExpansionPanelHeaderTag","VExpansionPanelTag","VExpansionPanelsTag","VFlexTag","VFooter","VHoverTag","VIconTag","VImgTag","VLayoutTag","VListGroupTag","VListItemActionTag","VListItemActionTextTag","VListItemAvatarTag","VListItemContentTag","VListItemGroupTag","VListItemIconTag","VListItemSubTitleTag","VListItemTag","VListItemTitleTag","VListTag","VMenuTag","VNavigationDrawerTag","VPaginationTag","VProgressCircularTag","VProgressLinearTag","VRadioGroupTag","VRadioTag","VRangeSliderTag","VRating","VResponsiveTag","VSelectTag","VSimpleCheckboxTag","VSliderTag","VSnackbar","VSpacerTag","VSpeedDialTag","VStepperContentTag","VStepperHeaderTag","VStepperItemsTag","VStepperStepTag","VStepperTag","VSubheaderTag","VSwitchTag","VSystemBar","VTabItemTag","VTabTag","VTabsContentTag","VTabsItemsTag","VTabsSliderTag","VTabsTag","VTextFieldTag","VTextareaTag","VThemeProviderTag","VTimePickerClockTag","VTimePickerTag","VTimePickerTitleTag","VTimeline","VTimelineItem","VToolbarItemsTag","VToolbarSideIconTag","VToolbarTag","VToolbarTitleTag","VTooltipTag","VTreeViewNodeTag","VTreeViewTag","VirtualScrollTag","Vue2Editor","VueChartJSBarChart","VueChartJSBubbleChart","VueChartJSDoughnutChart","VueChartJSHorizontalBarChart","VueChartJSLineChart","VueChartJSPieChart","VueChartJSPolarAreaChart","VueChartJSRadarChart","VueChartJSScatterChart"]},"./node_modules/@omnia/fx/ux/mediapickerproviders/mediaproviderbase/MediaProviderComponentBase.tsx":{"id":"a3e11883-9574-4070-b80e-40faef6801d2","buildMeta":{"exportsType":"namespace"},"expo.js":["MediaProviderComponentBase"]},"./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","VDataTable","VDialog","VDivider","VFlex","VHover","VIcon","VImg","VLayout","VList","VListTile","VListTileAvatar","VListTileContent","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":["VuetifyComponentLoader","getProvided","setProvided"]}}}
|
1
|
+
{"name":"omniaWebpackJsonp['bb000000-0000-bbbb-0000-0000000000bb']['dee030cc-4ab3-4158-bb06-8049f5c67542']","content":{"./node_modules/@omnia/fx/ux/admin/BusinessProfileRouter.js":{"id":"./node_modules/@omnia/fx/ux/admin/businessprofilerouter.js","buildMeta":{"exportsType":"namespace"},"expo.js":["BusinessProfileRouter"]},"./node_modules/@omnia/fx/ux/admin/chrome/AdminVisibiltyController.js":{"id":"./node_modules/@omnia/fx/ux/admin/chrome/adminvisibiltycontroller.js","buildMeta":{"exportsType":"namespace"},"expo.js":[]},"./node_modules/@omnia/fx/ux/admin/store/AdminStore.js":{"id":"./node_modules/@omnia/fx/ux/admin/store/adminstore.js","buildMeta":{"exportsType":"namespace"},"expo.js":["AdminStore"]},"./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","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/enterpriseglossary/componentbase/index.js":{"id":"./node_modules/@omnia/fx/ux/enterpriseglossary/componentbase/index.js","buildMeta":{"exportsType":"namespace"}},"./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/imagetransformation/constants.js":{"id":"./node_modules/@omnia/fx/ux/imagetransformation/constants.js","buildMeta":{"exportsType":"namespace"},"expo.js":["Constants"]},"./node_modules/@omnia/fx/ux/imagetransformation/enums.js":{"id":"./node_modules/@omnia/fx/ux/imagetransformation/enums.js","buildMeta":{"exportsType":"namespace"},"expo.js":["Filters","ImageEditorMenu"]},"./node_modules/@omnia/fx/ux/imagetransformation/image-svg-transfomer.js":{"id":"./node_modules/@omnia/fx/ux/imagetransformation/image-svg-transfomer.js","buildMeta":{"exportsType":"namespace"},"expo.js":["ImageSvgTransformer"]},"./node_modules/@omnia/fx/ux/imagetransformation/image-transfomer.js":{"id":"./node_modules/@omnia/fx/ux/imagetransformation/image-transfomer.js","buildMeta":{"exportsType":"namespace"},"expo.js":["ImageTransformer"]},"./node_modules/@omnia/fx/ux/imagetransformation/index.js":{"id":"./node_modules/@omnia/fx/ux/imagetransformation/index.js","buildMeta":{"exportsType":"namespace"},"expo.js":["ImageSvgTransformer","ImageTransformer","getComputedProp","isEmpty","onApplyFilter","onApplyStyle","onFlipX","onFlipY","onReset"]},"./node_modules/@omnia/fx/ux/imagetransformation/interfaces.js":{"id":"./node_modules/@omnia/fx/ux/imagetransformation/interfaces.js","buildMeta":{"exportsType":"namespace"},"expo.js":[]},"./node_modules/@omnia/fx/ux/imagetransformation/utils.js":{"id":"./node_modules/@omnia/fx/ux/imagetransformation/utils.js","buildMeta":{"exportsType":"namespace"},"expo.js":["getComputedProp","isEmpty","onApplyFilter","onApplyStyle","onFlipX","onFlipY","onReset"]},"./node_modules/@omnia/fx/ux/imagetransformer/Constants.js":{"id":"./node_modules/@omnia/fx/ux/imagetransformer/constants.js","buildMeta":{"exportsType":"namespace"},"expo.js":["Constants"]},"./node_modules/@omnia/fx/ux/imagetransformer/ImageTransformer.css.js":{"id":"./node_modules/@omnia/fx/ux/imagetransformer/imagetransformer.css.js","buildMeta":{"exportsType":"namespace"},"expo.js":["MediaStyles","transformer"]},"./node_modules/@omnia/fx/ux/imagetransformer/loc/localize.js":{"id":"./node_modules/@omnia/fx/ux/imagetransformer/loc/localize.js","buildMeta":{"exportsType":"namespace"},"expo.js":["ImageTransformerLocalization"]},"./node_modules/@omnia/fx/ux/inputlanguagepicker/stores/index.js":{"id":"./node_modules/@omnia/fx/ux/inputlanguagepicker/stores/index.js","buildMeta":{"exportsType":"namespace"},"expo.js":["InputLanguageStore"]},"./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/IJourney.js":{"id":"./node_modules/@omnia/fx/ux/journey/ijourney.js","buildMeta":{"exportsType":"namespace"},"expo.js":[]},"./node_modules/@omnia/fx/ux/journey/index.js":{"id":"./node_modules/@omnia/fx/ux/journey/index.js","buildMeta":{"exportsType":"namespace"},"expo.js":["JourneyContext"]},"./node_modules/@omnia/fx/ux/layoutcanvas/index.js":{"id":"./node_modules/@omnia/fx/ux/layoutcanvas/index.js","buildMeta":{"exportsType":"namespace"}},"./node_modules/@omnia/fx/ux/mediapicker/IMediaPicker.js":{"id":"./node_modules/@omnia/fx/ux/mediapicker/imediapicker.js","buildMeta":{"exportsType":"namespace"},"expo.js":[]},"./node_modules/@omnia/fx/ux/messaging/index.js":{"id":"./node_modules/@omnia/fx/ux/messaging/index.js","buildMeta":{"exportsType":"namespace"},"expo.js":["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","ContentDialogStyles","CurrentUserTokenIdentityPicker","DatatableWrapperStyles","DateTimePickerStyles","DialogStyles","EditorStyleSettings","EmoticonStyles","EnterpriseGlossaryTermComponentBaseStyles","EnterprisePropertyPickerStyles","EnterprisePropertySetPickerStyles","FileUploaderStyles","ForceAnimatedClassname","GridViewMediaProviderComponentStyles","HeadingStyles","IconWrapperStyles","ImageGridStyles","ImageTransformerStyles","InputLanguagePickerStyles","InputTokenStyles","LanguagePickerStyles","LikeStyles","MediaPickerProviderStyles","MentionStyles","MultilingualInputStyles","NumericIndicatorStyles","OrgTreeStyles","PersonFieldDisplayStyles","PersonaStyles","PostStyle","ProfilecardStyles","QueryablePropertiesStyles","ReporteesStyles","RichTextEditorRendererStyles","RichTextEditorStyles","SharePointVideoSettingsStyles","StatusMessageOverlayStyles","TableMenuStyles","TagsFieldDisplayStyles","TermGlossaryMappingStyles","TextTranslatorStyles","TimeZonePickerStyles","UrlInputStyles","WizardStyles","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/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/theming/index.js":{"id":"./node_modules/@omnia/fx/ux/theming/index.js","buildMeta":{"exportsType":"namespace"}},"./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":["FieldValueValidation","FormValidator"]},"./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"}},"./node_modules/@material-design-icons/font/index.css":{"id":"./node_modules/@material-design-icons/font/index.css","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/splitpanes/dist/splitpanes.es.js":{"id":"./node_modules/splitpanes/dist/splitpanes.es.js","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/typestyle/lib/index.js":{"id":"./node_modules/typestyle/lib/index.js","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/typestyle/lib/internal/formatting.js":{"id":"./node_modules/typestyle/lib/internal/formatting.js","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/typestyle/lib/internal/typestyle.js":{"id":"./node_modules/typestyle/lib/internal/typestyle.js","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/typestyle/lib/internal/utilities.js":{"id":"./node_modules/typestyle/lib/internal/utilities.js","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/typestyle/lib/types.js":{"id":"./node_modules/typestyle/lib/types.js","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/components/transitions/createTransition.mjs":{"id":"./node_modules/vuetify/lib/components/transitions/createtransition.mjs","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/components/transitions/dialog-transition.mjs":{"id":"./node_modules/vuetify/lib/components/transitions/dialog-transition.mjs","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/components/transitions/expand-transition.mjs":{"id":"./node_modules/vuetify/lib/components/transitions/expand-transition.mjs","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/components/transitions/index.mjs":{"id":"./node_modules/vuetify/lib/components/transitions/index.mjs","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/components/VAvatar/index.mjs":{"id":"./node_modules/vuetify/lib/components/vavatar/index.mjs","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/components/VBtn/index.mjs":{"id":"./node_modules/vuetify/lib/components/vbtn/index.mjs","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/components/VBtnGroup/index.mjs":{"id":"./node_modules/vuetify/lib/components/vbtngroup/index.mjs","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/components/VBtnToggle/index.mjs":{"id":"./node_modules/vuetify/lib/components/vbtntoggle/index.mjs","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/components/VBtnToggle/VBtnToggle.mjs":{"id":"./node_modules/vuetify/lib/components/vbtntoggle/vbtntoggle.mjs","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/components/VCheckbox/index.mjs":{"id":"./node_modules/vuetify/lib/components/vcheckbox/index.mjs","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/components/VChip/index.mjs":{"id":"./node_modules/vuetify/lib/components/vchip/index.mjs","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/components/VChipGroup/index.mjs":{"id":"./node_modules/vuetify/lib/components/vchipgroup/index.mjs","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/components/VCounter/index.mjs":{"id":"./node_modules/vuetify/lib/components/vcounter/index.mjs","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/components/VDefaultsProvider/index.mjs":{"id":"./node_modules/vuetify/lib/components/vdefaultsprovider/index.mjs","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/components/VDivider/index.mjs":{"id":"./node_modules/vuetify/lib/components/vdivider/index.mjs","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/components/VField/index.mjs":{"id":"./node_modules/vuetify/lib/components/vfield/index.mjs","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/components/VField/VField.mjs":{"id":"./node_modules/vuetify/lib/components/vfield/vfield.mjs","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/components/VIcon/index.mjs":{"id":"./node_modules/vuetify/lib/components/vicon/index.mjs","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/components/VImg/index.mjs":{"id":"./node_modules/vuetify/lib/components/vimg/index.mjs","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/components/VInput/index.mjs":{"id":"./node_modules/vuetify/lib/components/vinput/index.mjs","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/components/VInput/VInput.mjs":{"id":"./node_modules/vuetify/lib/components/vinput/vinput.mjs","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/components/VLabel/index.mjs":{"id":"./node_modules/vuetify/lib/components/vlabel/index.mjs","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/components/VList/index.mjs":{"id":"./node_modules/vuetify/lib/components/vlist/index.mjs","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/components/VMenu/index.mjs":{"id":"./node_modules/vuetify/lib/components/vmenu/index.mjs","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/components/VMenu/shared.mjs":{"id":"./node_modules/vuetify/lib/components/vmenu/shared.mjs","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/components/VMenu/VMenu.mjs":{"id":"./node_modules/vuetify/lib/components/vmenu/vmenu.mjs","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/components/VMessages/index.mjs":{"id":"./node_modules/vuetify/lib/components/vmessages/index.mjs","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/components/VOverlay/index.mjs":{"id":"./node_modules/vuetify/lib/components/voverlay/index.mjs","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/components/VOverlay/locationStrategies.mjs":{"id":"./node_modules/vuetify/lib/components/voverlay/locationstrategies.mjs","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/components/VOverlay/requestNewFrame.mjs":{"id":"./node_modules/vuetify/lib/components/voverlay/requestnewframe.mjs","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/components/VOverlay/scrollStrategies.mjs":{"id":"./node_modules/vuetify/lib/components/voverlay/scrollstrategies.mjs","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/components/VOverlay/useActivator.mjs":{"id":"./node_modules/vuetify/lib/components/voverlay/useactivator.mjs","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/components/VOverlay/util/point.mjs":{"id":"./node_modules/vuetify/lib/components/voverlay/util/point.mjs","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/components/VOverlay/VOverlay.mjs":{"id":"./node_modules/vuetify/lib/components/voverlay/voverlay.mjs","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/components/VProgressCircular/index.mjs":{"id":"./node_modules/vuetify/lib/components/vprogresscircular/index.mjs","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/components/VProgressLinear/index.mjs":{"id":"./node_modules/vuetify/lib/components/vprogresslinear/index.mjs","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/components/VSelect/index.mjs":{"id":"./node_modules/vuetify/lib/components/vselect/index.mjs","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/components/VSelect/VSelect.mjs":{"id":"./node_modules/vuetify/lib/components/vselect/vselect.mjs","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/components/VSelectionControl/index.mjs":{"id":"./node_modules/vuetify/lib/components/vselectioncontrol/index.mjs","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/components/VSelectionControl/VSelectionControl.mjs":{"id":"./node_modules/vuetify/lib/components/vselectioncontrol/vselectioncontrol.mjs","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/components/VSelectionControlGroup/index.mjs":{"id":"./node_modules/vuetify/lib/components/vselectioncontrolgroup/index.mjs","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/components/VSelectionControlGroup/VSelectionControlGroup.mjs":{"id":"./node_modules/vuetify/lib/components/vselectioncontrolgroup/vselectioncontrolgroup.mjs","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/components/VSlideGroup/index.mjs":{"id":"./node_modules/vuetify/lib/components/vslidegroup/index.mjs","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/components/VTextField/index.mjs":{"id":"./node_modules/vuetify/lib/components/vtextfield/index.mjs","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/components/VTextField/VTextField.css":{"id":"./node_modules/vuetify/lib/components/vtextfield/vtextfield.css","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/components/VTextField/VTextField.mjs":{"id":"./node_modules/vuetify/lib/components/vtextfield/vtextfield.mjs","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/components/VWindow/index.mjs":{"id":"./node_modules/vuetify/lib/components/vwindow/index.mjs","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/composables/border.mjs":{"id":"./node_modules/vuetify/lib/composables/border.mjs","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/composables/color.mjs":{"id":"./node_modules/vuetify/lib/composables/color.mjs","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/composables/defaults.mjs":{"id":"./node_modules/vuetify/lib/composables/defaults.mjs","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/composables/delay.mjs":{"id":"./node_modules/vuetify/lib/composables/delay.mjs","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/composables/density.mjs":{"id":"./node_modules/vuetify/lib/composables/density.mjs","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/composables/dimensions.mjs":{"id":"./node_modules/vuetify/lib/composables/dimensions.mjs","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/composables/display.mjs":{"id":"./node_modules/vuetify/lib/composables/display.mjs","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/composables/elevation.mjs":{"id":"./node_modules/vuetify/lib/composables/elevation.mjs","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/composables/filter.mjs":{"id":"./node_modules/vuetify/lib/composables/filter.mjs","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/composables/focus.mjs":{"id":"./node_modules/vuetify/lib/composables/focus.mjs","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/composables/form.mjs":{"id":"./node_modules/vuetify/lib/composables/form.mjs","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/composables/forwardRefs.mjs":{"id":"./node_modules/vuetify/lib/composables/forwardrefs.mjs","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/composables/group.mjs":{"id":"./node_modules/vuetify/lib/composables/group.mjs","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/composables/hydration.mjs":{"id":"./node_modules/vuetify/lib/composables/hydration.mjs","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/composables/icons.mjs":{"id":"./node_modules/vuetify/lib/composables/icons.mjs","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/composables/index.mjs":{"id":"./node_modules/vuetify/lib/composables/index.mjs","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/composables/intersectionObserver.mjs":{"id":"./node_modules/vuetify/lib/composables/intersectionobserver.mjs","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/composables/items.mjs":{"id":"./node_modules/vuetify/lib/composables/items.mjs","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/composables/layout.mjs":{"id":"./node_modules/vuetify/lib/composables/layout.mjs","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/composables/lazy.mjs":{"id":"./node_modules/vuetify/lib/composables/lazy.mjs","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/composables/loader.mjs":{"id":"./node_modules/vuetify/lib/composables/loader.mjs","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/composables/locale.mjs":{"id":"./node_modules/vuetify/lib/composables/locale.mjs","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/composables/location.mjs":{"id":"./node_modules/vuetify/lib/composables/location.mjs","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/composables/mutationObserver.mjs":{"id":"./node_modules/vuetify/lib/composables/mutationobserver.mjs","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/composables/nested/nested.mjs":{"id":"./node_modules/vuetify/lib/composables/nested/nested.mjs","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/composables/nested/openStrategies.mjs":{"id":"./node_modules/vuetify/lib/composables/nested/openstrategies.mjs","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/composables/nested/selectStrategies.mjs":{"id":"./node_modules/vuetify/lib/composables/nested/selectstrategies.mjs","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/composables/position.mjs":{"id":"./node_modules/vuetify/lib/composables/position.mjs","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/composables/proxiedModel.mjs":{"id":"./node_modules/vuetify/lib/composables/proxiedmodel.mjs","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/composables/refs.mjs":{"id":"./node_modules/vuetify/lib/composables/refs.mjs","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/composables/resizeObserver.mjs":{"id":"./node_modules/vuetify/lib/composables/resizeobserver.mjs","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/composables/rounded.mjs":{"id":"./node_modules/vuetify/lib/composables/rounded.mjs","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/composables/router.mjs":{"id":"./node_modules/vuetify/lib/composables/router.mjs","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/composables/scopeId.mjs":{"id":"./node_modules/vuetify/lib/composables/scopeid.mjs","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/composables/scroll.mjs":{"id":"./node_modules/vuetify/lib/composables/scroll.mjs","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/composables/selectLink.mjs":{"id":"./node_modules/vuetify/lib/composables/selectlink.mjs","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/composables/size.mjs":{"id":"./node_modules/vuetify/lib/composables/size.mjs","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/composables/ssrBoot.mjs":{"id":"./node_modules/vuetify/lib/composables/ssrboot.mjs","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/composables/stack.mjs":{"id":"./node_modules/vuetify/lib/composables/stack.mjs","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/composables/tag.mjs":{"id":"./node_modules/vuetify/lib/composables/tag.mjs","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/composables/teleport.mjs":{"id":"./node_modules/vuetify/lib/composables/teleport.mjs","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/composables/theme.mjs":{"id":"./node_modules/vuetify/lib/composables/theme.mjs","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/composables/toggleScope.mjs":{"id":"./node_modules/vuetify/lib/composables/togglescope.mjs","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/composables/touch.mjs":{"id":"./node_modules/vuetify/lib/composables/touch.mjs","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/composables/transition.mjs":{"id":"./node_modules/vuetify/lib/composables/transition.mjs","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/composables/validation.mjs":{"id":"./node_modules/vuetify/lib/composables/validation.mjs","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/composables/variant.mjs":{"id":"./node_modules/vuetify/lib/composables/variant.mjs","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/directives/click-outside/index.mjs":{"id":"./node_modules/vuetify/lib/directives/click-outside/index.mjs","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/directives/color/index.mjs":{"id":"./node_modules/vuetify/lib/directives/color/index.mjs","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/directives/index.mjs":{"id":"./node_modules/vuetify/lib/directives/index.mjs","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/directives/intersect/index.mjs":{"id":"./node_modules/vuetify/lib/directives/intersect/index.mjs","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/directives/mutate/index.mjs":{"id":"./node_modules/vuetify/lib/directives/mutate/index.mjs","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/directives/resize/index.mjs":{"id":"./node_modules/vuetify/lib/directives/resize/index.mjs","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/directives/ripple/index.mjs":{"id":"./node_modules/vuetify/lib/directives/ripple/index.mjs","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/directives/scroll/index.mjs":{"id":"./node_modules/vuetify/lib/directives/scroll/index.mjs","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/directives/touch/index.mjs":{"id":"./node_modules/vuetify/lib/directives/touch/index.mjs","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/framework.mjs":{"id":"./node_modules/vuetify/lib/framework.mjs","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/styles/main.css":{"id":"./node_modules/vuetify/lib/styles/main.css","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/util/anchor.mjs":{"id":"./node_modules/vuetify/lib/util/anchor.mjs","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/util/animation.mjs":{"id":"./node_modules/vuetify/lib/util/animation.mjs","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/util/box.mjs":{"id":"./node_modules/vuetify/lib/util/box.mjs","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/util/color/APCA.mjs":{"id":"./node_modules/vuetify/lib/util/color/apca.mjs","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/util/color/transformCIELAB.mjs":{"id":"./node_modules/vuetify/lib/util/color/transformcielab.mjs","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/util/color/transformSRGB.mjs":{"id":"./node_modules/vuetify/lib/util/color/transformsrgb.mjs","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/util/colors.mjs":{"id":"./node_modules/vuetify/lib/util/colors.mjs","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/util/colorUtils.mjs":{"id":"./node_modules/vuetify/lib/util/colorutils.mjs","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/util/console.mjs":{"id":"./node_modules/vuetify/lib/util/console.mjs","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/util/createSimpleFunctional.mjs":{"id":"./node_modules/vuetify/lib/util/createsimplefunctional.mjs","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/util/dateTimeUtils.mjs":{"id":"./node_modules/vuetify/lib/util/datetimeutils.mjs","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/util/defineComponent.mjs":{"id":"./node_modules/vuetify/lib/util/definecomponent.mjs","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/util/dom.mjs":{"id":"./node_modules/vuetify/lib/util/dom.mjs","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/util/easing.mjs":{"id":"./node_modules/vuetify/lib/util/easing.mjs","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/util/getCurrentInstance.mjs":{"id":"./node_modules/vuetify/lib/util/getcurrentinstance.mjs","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/util/getScrollParent.mjs":{"id":"./node_modules/vuetify/lib/util/getscrollparent.mjs","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/util/globals.mjs":{"id":"./node_modules/vuetify/lib/util/globals.mjs","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/util/helpers.mjs":{"id":"./node_modules/vuetify/lib/util/helpers.mjs","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/util/index.mjs":{"id":"./node_modules/vuetify/lib/util/index.mjs","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/util/injectSelf.mjs":{"id":"./node_modules/vuetify/lib/util/injectself.mjs","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/util/isFixedPosition.mjs":{"id":"./node_modules/vuetify/lib/util/isfixedposition.mjs","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/util/propsFactory.mjs":{"id":"./node_modules/vuetify/lib/util/propsfactory.mjs","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/vuetify/lib/util/useRender.mjs":{"id":"./node_modules/vuetify/lib/util/userender.mjs","buildMeta":{"async":false,"exportsType":"dynamic"}},"./node_modules/@omnia/fx/ux/admin/index.js":{"id":"0111486e-5dc8-4705-8247-d91fb2aba33d","buildMeta":{"exportsType":"namespace"},"expo.js":["AdminChromeInstance","AdminRouter","AdminStore","BusinessProfileRouter"]},"./node_modules/@omnia/fx/ux/app/index.js":{"id":"14a0ce2f-3699-49b2-92d3-428caac194a4","buildMeta":{"exportsType":"namespace"},"expo.js":["AppContextProvider","Router"]},"./node_modules/@omnia/fx/ux/mediapickerproviders/mediaproviderbase/GridViewMediaProviderComponent.tsx":{"id":"1682f669-2a99-45e6-aa8b-7ed3d4e538d5","buildMeta":{"exportsType":"namespace"},"expo.js":["GridViewMediaProviderComponent"]},"./node_modules/@omnia/fx/ux/VueComponentBase.js":{"id":"8610c059-395a-45c2-804a-8c236f4d60d9","buildMeta":{"exportsType":"namespace"},"expo.js":["VueComponentBase","VueComponentConnect","definePropFunctionType","definePropObjectType","defineVueComponent","getVuetifyAppClasses"]},"./node_modules/@omnia/fx/ux/VueTags.js":{"id":"9affb03a-b09d-49d2-8d18-df53485f8eda","buildMeta":{"exportsType":"namespace"},"expo.js":["Draggable","MonacoEditor","VAlertTag","VAppBar","VAppBarNavIcon","VAppTag","VAutocompleteTag","VAvatarTag","VBadgeTag","VBottomNavTag","VBreadcrumbsItemTag","VBreadcrumbsTag","VBtnTag","VBtnToggleTag","VCalendarCategory","VCalendarDaily","VCalendarMonthly","VCalendarTag","VCalendarWeekly","VCardActionsTag","VCardMediaTag","VCardTag","VCardTextTag","VCardTitleTag","VCarouselItemTag","VCarouselTag","VCheckboxTag","VChipTag","VComboboxTag","VContainerTag","VContentTag","VDataTableTag","VDatePickerDateTableTag","VDatePickerHeaderTag","VDatePickerMonthTableTag","VDatePickerTag","VDatePickerTitleTag","VDatePickerYearsTag","VDialogTag","VDividerTag","VEditDialogTag","VExpansionPanelContentTag","VExpansionPanelHeaderTag","VExpansionPanelTag","VExpansionPanelsTag","VFlexTag","VFooter","VHoverTag","VIconTag","VImgTag","VLayoutTag","VListGroupTag","VListItemActionTag","VListItemActionTextTag","VListItemAvatarTag","VListItemContentTag","VListItemGroupTag","VListItemIconTag","VListItemSubTitleTag","VListItemTag","VListItemTitleTag","VListTag","VMenuTag","VNavigationDrawerTag","VPaginationTag","VProgressCircularTag","VProgressLinearTag","VRadioGroupTag","VRadioTag","VRangeSliderTag","VRating","VResponsiveTag","VSelectTag","VSimpleCheckboxTag","VSliderTag","VSnackbar","VSpacerTag","VSpeedDialTag","VStepperContentTag","VStepperHeaderTag","VStepperItemsTag","VStepperStepTag","VStepperTag","VSubheaderTag","VSwitchTag","VSystemBar","VTabItemTag","VTabTag","VTabsContentTag","VTabsItemsTag","VTabsSliderTag","VTabsTag","VTextFieldTag","VTextareaTag","VThemeProviderTag","VTimePickerClockTag","VTimePickerTag","VTimePickerTitleTag","VTimeline","VTimelineItem","VToolbarItemsTag","VToolbarSideIconTag","VToolbarTag","VToolbarTitleTag","VTooltipTag","VTreeViewNodeTag","VTreeViewTag","VirtualScrollTag","Vue2Editor","VueChartJSBarChart","VueChartJSBubbleChart","VueChartJSDoughnutChart","VueChartJSHorizontalBarChart","VueChartJSLineChart","VueChartJSPieChart","VueChartJSPolarAreaChart","VueChartJSRadarChart","VueChartJSScatterChart"]},"./node_modules/@omnia/fx/ux/mediapickerproviders/mediaproviderbase/MediaProviderComponentBase.tsx":{"id":"a3e11883-9574-4070-b80e-40faef6801d2","buildMeta":{"exportsType":"namespace"},"expo.js":["MediaProviderComponentBase"]},"./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","VDataTable","VDialog","VDivider","VFlex","VHover","VIcon","VImg","VLayout","VList","VListTile","VListTileAvatar","VListTileContent","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":["VuetifyComponentLoader","getProvided","setProvided"]}}}
|