@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,5 +1,4 @@
|
|
1
1
|
import { VueComponentBaseProps } from "./ux/index";
|
2
|
-
import * as base from "vue-tsx-support/types/base";
|
3
2
|
import wce6b88bd8d41949c8af6fed268ae64430 from './console/components/MessageOverlay';
|
4
3
|
import wcdb625bea89b04f32a946efe7a887c7f2 from '../../fx-sp/internal-do-not-import-from-here/ux/filterengine/components/settings/TaxonomyPropertySettings';
|
5
4
|
import wcded30c240e6c4688955867472a8d0a02 from '../../fx-sp/internal-do-not-import-from-here/ux/filterengine/components/settings/TaxonomyPropertyDefaultValueInput';
|
@@ -126,137 +125,137 @@ import wc3dd4d94bcc254f9fac2100a3ff84dc7e from './ux/velcron/renderer/VelcronRen
|
|
126
125
|
import wcba03fc7e6921468289c0a0ffe0cf942e from './ux/versionedlayout/renderer/VersionedLayoutRenderer';
|
127
126
|
import wc73154f51a92944acbe248779a3fa7ef5 from './ux/versionedlayout/editor/VersionedLayoutEditor';
|
128
127
|
declare global {
|
129
|
-
namespace
|
128
|
+
namespace JSX {
|
130
129
|
interface Element {
|
131
130
|
}
|
132
131
|
interface ElementClass {
|
133
132
|
}
|
134
133
|
interface IntrinsicElements {
|
135
|
-
"omfx-dev-message":
|
136
|
-
"omfx-filterengine-taxonomy-propertysettings":
|
137
|
-
"omfx-filterengine-taxonomy-defaultvalue-input":
|
138
|
-
"omfx-taxonomy-filterengine-renderer":
|
139
|
-
"omfx-filterengine-selectionsarea-taxonomyproperty":
|
140
|
-
"omfx-properties-term-set-display":
|
141
|
-
"omfx-properties-term-set-editor":
|
142
|
-
"omfx-properties-term-set-configuration":
|
143
|
-
"omfx-properties-sharepoint-user-provider-display":
|
144
|
-
"omfx-properties-sharepoint-user-provider-editor":
|
145
|
-
"omfx-app-instance-rollup":
|
146
|
-
"omfx-app-management":
|
147
|
-
"omfx-app-management-instance-tab":
|
148
|
-
"omfx-app-management-template-tab":
|
149
|
-
"omfx-app-management-layout-tab":
|
150
|
-
"omfx-app-management-namingpolicy-tab":
|
151
|
-
"omfx-tab-management":
|
152
|
-
"omfx-add-button":
|
153
|
-
"omfx-app-show-in-public-listings-input":
|
154
|
-
"omfx-authsetup":
|
155
|
-
"omfx-command-palette":
|
156
|
-
"omfx-date-time-zone-picker":
|
157
|
-
"omfx-date-time-zone-renderer":
|
158
|
-
"omfx-dialog":
|
159
|
-
"omfx-dynamicgroup-property-editor-renderer":
|
160
|
-
"omfx-enterpriseproperties-extended-property-settings":
|
161
|
-
"omfx-filterengine-person-propertysettings":
|
162
|
-
"omfx-filterengine-person-defaultvalue-input":
|
163
|
-
"omfx-filterengine-text-propertysettings":
|
164
|
-
"omfx-filterengine-text-defaultvalue-input":
|
165
|
-
"omfx-filterengine-boolean-propertysettings":
|
166
|
-
"omfx-filterengine-boolean-defaultvalue-input":
|
167
|
-
"omfx-filterengine-datetime-propertysettings":
|
168
|
-
"omfx-filterengine-datetime-defaultvalue-input":
|
169
|
-
"omfx-filterengine-number-propertysettings":
|
170
|
-
"omfx-filterengine-number-defaultvalue-input":
|
171
|
-
"omfx-filterengine-settings":
|
172
|
-
"omfx-filterengine-renderer":
|
173
|
-
"omfx-person-filterengine-renderer":
|
174
|
-
"omfx-filterengine-selectionsarea":
|
175
|
-
"omfx-filterengine-selectionsarea-personproperty":
|
176
|
-
"omfx-text-filterengine-renderer":
|
177
|
-
"omfx-boolean-filterengine-renderer":
|
178
|
-
"omfx-date-filterengine-renderer":
|
179
|
-
"omfx-number-filterengine-renderer":
|
180
|
-
"omfx-filterengine-selectionsarea-booleanproperty":
|
181
|
-
"omfx-filterengine-selectionsarea-textproperty":
|
182
|
-
"omfx-filterengine-selectionsarea-datetimeproperty":
|
183
|
-
"omfx-filterengine-selectionsarea-numberproperty":
|
184
|
-
"omfx-group-property-editor-renderer":
|
185
|
-
"omfx-identity-renderer":
|
186
|
-
"omfx-identity-sync-property-binding-setup":
|
187
|
-
"omfx-identity-sync-rule-setup":
|
188
|
-
"omfx-identity-picker":
|
189
|
-
"omfx-limited-label":
|
190
|
-
"omfx-magiclink":
|
191
|
-
"omfx-option-picker":
|
192
|
-
"omnia-play-2":
|
193
|
-
"omfx-presetup-wizard":
|
194
|
-
"omfx-profilecard-renderer":
|
195
|
-
"omfx-properties-birthday-display":
|
196
|
-
"omfx-properties-birthday-editor":
|
197
|
-
"omfx-properties-date-time-display":
|
198
|
-
"omfx-properties-date-time-editor":
|
199
|
-
"omfx-properties-date-display":
|
200
|
-
"omfx-properties-date-editor":
|
201
|
-
"omfx-properties-email-display":
|
202
|
-
"omfx-properties-email-editor":
|
203
|
-
"omfx-properties-html-display":
|
204
|
-
"omfx-properties-html-editor":
|
205
|
-
"omfx-properties-html-configuration":
|
206
|
-
"omfx-properties-identity-display":
|
207
|
-
"omfx-properties-identity-editor":
|
208
|
-
"omfx-properties-identity-configuration":
|
209
|
-
"omfx-properties-image-display":
|
210
|
-
"omfx-properties-image-configuration":
|
211
|
-
"omfx-properties-image-editor":
|
212
|
-
"omfx-properties-language-display":
|
213
|
-
"omfx-properties-language-editor":
|
214
|
-
"omfx-properties-link-display":
|
215
|
-
"omfx-properties-link-editor":
|
216
|
-
"omfx-properties-link-configuration":
|
217
|
-
"omfx-properties-multilinetext-display":
|
218
|
-
"omfx-properties-multilinetext-editor":
|
219
|
-
"omfx-properties-multilingualtext-display":
|
220
|
-
"omfx-properties-multilingualtext-editor":
|
221
|
-
"omfx-properties-phone-number-display":
|
222
|
-
"omfx-properties-phone-number-editor":
|
223
|
-
"omfx-properties-text-display":
|
224
|
-
"omfx-properties-text-editor":
|
225
|
-
"omfx-properties-time-display":
|
226
|
-
"omfx-properties-time-editor":
|
227
|
-
"omfx-property-picker":
|
228
|
-
"omfx-property-renderer":
|
229
|
-
"omfx-property-datasource-renderer":
|
230
|
-
"omfx-property-input":
|
231
|
-
"omfx-app-legacy-enterprise-properties-display":
|
232
|
-
"omfx-legacy-enterprise-properties-editor":
|
233
|
-
"omfx-emoticon":
|
234
|
-
"omfx-signin-page":
|
235
|
-
"omfx-signin-block":
|
236
|
-
"omfx-signin-omnia":
|
237
|
-
"omfx-signout":
|
238
|
-
"omfx-theme-definition-picker":
|
239
|
-
"omfx-theme-editor-v2":
|
240
|
-
"omfx-properties-user-configuration-renderer":
|
241
|
-
"omfx-properties-user-provider-display":
|
242
|
-
"omfx-properties-user-provider-editor":
|
243
|
-
"omfx-properties-msgraph-user-provider-display":
|
244
|
-
"omfx-properties-msgraph-user-provider-editor":
|
245
|
-
"omfx-user-property-renderer":
|
246
|
-
"omfx-user-presence":
|
247
|
-
"omfx-usertype-layout-renderer":
|
248
|
-
"omfx-usertype-layout-blade-builder":
|
249
|
-
"omfx-velcron-block":
|
250
|
-
"omfx-velcron-block-settings":
|
251
|
-
"omfx-color-picker-schema":
|
252
|
-
"omfx-color-schema-mapper":
|
253
|
-
"omfx-color-schema-picker":
|
254
|
-
"omfx-ratio-picker":
|
255
|
-
"omfx-typography-picker-schema":
|
256
|
-
"omfx-velcron-editor":
|
257
|
-
"omfx-velcron-renderer":
|
258
|
-
"omfx-versioned-layout-renderer":
|
259
|
-
"omfx-versioned-layout-editor":
|
134
|
+
"omfx-dev-message": typeof wce6b88bd8d41949c8af6fed268ae64430.propsDefinition & VueComponentBaseProps;
|
135
|
+
"omfx-filterengine-taxonomy-propertysettings": typeof wcdb625bea89b04f32a946efe7a887c7f2.propsDefinition & VueComponentBaseProps;
|
136
|
+
"omfx-filterengine-taxonomy-defaultvalue-input": typeof wcded30c240e6c4688955867472a8d0a02.propsDefinition & VueComponentBaseProps;
|
137
|
+
"omfx-taxonomy-filterengine-renderer": typeof wc28d15a1179a04eaa9f2e82abe15f7177.propsDefinition & VueComponentBaseProps;
|
138
|
+
"omfx-filterengine-selectionsarea-taxonomyproperty": typeof wcb1fca92af8524970b426823cf7ef65b5.propsDefinition & VueComponentBaseProps;
|
139
|
+
"omfx-properties-term-set-display": typeof wc7332138e1e7845d1a5e62597a27e44a4.propsDefinition & VueComponentBaseProps;
|
140
|
+
"omfx-properties-term-set-editor": typeof wc83dee8a1eea84537ad9544e8b9fc4cb1.propsDefinition & VueComponentBaseProps;
|
141
|
+
"omfx-properties-term-set-configuration": typeof wca9cc1e1ff5894f4db7005bc49c6c47c5.propsDefinition & VueComponentBaseProps;
|
142
|
+
"omfx-properties-sharepoint-user-provider-display": typeof wcc4e43a3ff52f46c0bb86924e5d0af1e8.propsDefinition & VueComponentBaseProps;
|
143
|
+
"omfx-properties-sharepoint-user-provider-editor": typeof wc8bbb21b589db4b4e88cca21a964710c9.propsDefinition & VueComponentBaseProps;
|
144
|
+
"omfx-app-instance-rollup": typeof wca8f8d41d8ceb43e0b16398c209fd6b32.propsDefinition & VueComponentBaseProps;
|
145
|
+
"omfx-app-management": typeof wc450488bd95a34f368241e9b4d8c71dee.propsDefinition & VueComponentBaseProps;
|
146
|
+
"omfx-app-management-instance-tab": typeof wcd26f1c7425484ce6adfc9165704877e5.propsDefinition & VueComponentBaseProps;
|
147
|
+
"omfx-app-management-template-tab": typeof wcdf7481b60b764c08865e658d9607387a.propsDefinition & VueComponentBaseProps;
|
148
|
+
"omfx-app-management-layout-tab": typeof wc6c400e11caad44bf8d174b145b6f122d.propsDefinition & VueComponentBaseProps;
|
149
|
+
"omfx-app-management-namingpolicy-tab": typeof wc211ad37d3c1747c2a3fce889a433ebaa.propsDefinition & VueComponentBaseProps;
|
150
|
+
"omfx-tab-management": typeof wc20bd8ac81b314379a3676ca3b31c720e.propsDefinition & VueComponentBaseProps;
|
151
|
+
"omfx-add-button": typeof wc1476702e8f24468d9185322be5931c54.propsDefinition & VueComponentBaseProps;
|
152
|
+
"omfx-app-show-in-public-listings-input": typeof wc8e21d658d6f84d70870d29805b27df86.propsDefinition & VueComponentBaseProps;
|
153
|
+
"omfx-authsetup": typeof wce4889269c6ad440da65f3acdf5bb6152.propsDefinition & VueComponentBaseProps;
|
154
|
+
"omfx-command-palette": typeof wc5dfa7b609aed43ffab03dad33c65b2da.propsDefinition & VueComponentBaseProps;
|
155
|
+
"omfx-date-time-zone-picker": typeof wc90e26d3a6e3e4bf9bd1ce81c6735eda2.propsDefinition & VueComponentBaseProps;
|
156
|
+
"omfx-date-time-zone-renderer": typeof wcd3d05fa7bb114ecab1c16f714641b678.propsDefinition & VueComponentBaseProps;
|
157
|
+
"omfx-dialog": typeof wc3ff00f2d8a4c48a4ae0cff23fc0127ac.propsDefinition & VueComponentBaseProps;
|
158
|
+
"omfx-dynamicgroup-property-editor-renderer": typeof wc2402bfd5328b4234bbedb24a71cfc2a0.propsDefinition & VueComponentBaseProps;
|
159
|
+
"omfx-enterpriseproperties-extended-property-settings": typeof wc4ecc566131194348b7ec8495a06d4fd6.propsDefinition & VueComponentBaseProps;
|
160
|
+
"omfx-filterengine-person-propertysettings": typeof wceed905b1712c498ebd5bb24f12ed10d7.propsDefinition & VueComponentBaseProps;
|
161
|
+
"omfx-filterengine-person-defaultvalue-input": typeof wcad26e9b3bf774d949d153b9f9d1d4b02.propsDefinition & VueComponentBaseProps;
|
162
|
+
"omfx-filterengine-text-propertysettings": typeof wc7b2e1b93599a4e5fb878fb68b6abd74c.propsDefinition & VueComponentBaseProps;
|
163
|
+
"omfx-filterengine-text-defaultvalue-input": typeof wc47fde3016cac4cfea002b318651b2946.propsDefinition & VueComponentBaseProps;
|
164
|
+
"omfx-filterengine-boolean-propertysettings": typeof wc031ba18d4af243d2b9f1724a56077890.propsDefinition & VueComponentBaseProps;
|
165
|
+
"omfx-filterengine-boolean-defaultvalue-input": typeof wc6003c34b7d2d49cc8a9c7440371dca4b.propsDefinition & VueComponentBaseProps;
|
166
|
+
"omfx-filterengine-datetime-propertysettings": typeof wca1d7711329c24045bf72254e8d2767c8.propsDefinition & VueComponentBaseProps;
|
167
|
+
"omfx-filterengine-datetime-defaultvalue-input": typeof wcba1fad28be954b8fadb7290ccb8f8c86.propsDefinition & VueComponentBaseProps;
|
168
|
+
"omfx-filterengine-number-propertysettings": typeof wcee09ecc9d4fb46de8f1a408e38858030.propsDefinition & VueComponentBaseProps;
|
169
|
+
"omfx-filterengine-number-defaultvalue-input": typeof wcea2ad78acabc4ec0bc3609301b3713c3.propsDefinition & VueComponentBaseProps;
|
170
|
+
"omfx-filterengine-settings": typeof wca91d4cd2b5744de3a672110cb1cdf7ba.propsDefinition & VueComponentBaseProps;
|
171
|
+
"omfx-filterengine-renderer": typeof wc34e1cea969d744f1bbec4770b51d49f5.propsDefinition & VueComponentBaseProps;
|
172
|
+
"omfx-person-filterengine-renderer": typeof wc43fc70078d114ec3a70ebbd767ef4f95.propsDefinition & VueComponentBaseProps;
|
173
|
+
"omfx-filterengine-selectionsarea": typeof wce2f7f245f168446980aef1473d8742d1.propsDefinition & VueComponentBaseProps;
|
174
|
+
"omfx-filterengine-selectionsarea-personproperty": typeof wccbef13c831cf4531a43fb63ef63ad39b.propsDefinition & VueComponentBaseProps;
|
175
|
+
"omfx-text-filterengine-renderer": typeof wcc7b859fc2c5b46c09ff08ee4a9daa394.propsDefinition & VueComponentBaseProps;
|
176
|
+
"omfx-boolean-filterengine-renderer": typeof wcc311e369d2d241f38e609ad50f7dec2f.propsDefinition & VueComponentBaseProps;
|
177
|
+
"omfx-date-filterengine-renderer": typeof wc0debbe4a117f46ddb9ca37231010938c.propsDefinition & VueComponentBaseProps;
|
178
|
+
"omfx-number-filterengine-renderer": typeof wcaac689be588e4dd3ac8166ac631a37f1.propsDefinition & VueComponentBaseProps;
|
179
|
+
"omfx-filterengine-selectionsarea-booleanproperty": typeof wc7a0ad7d8477246c2b5f1de4b59bbc5f1.propsDefinition & VueComponentBaseProps;
|
180
|
+
"omfx-filterengine-selectionsarea-textproperty": typeof wcb11657e2b45247fc82c78a30ba131001.propsDefinition & VueComponentBaseProps;
|
181
|
+
"omfx-filterengine-selectionsarea-datetimeproperty": typeof wc63a474f600324efc9148ceeab9202778.propsDefinition & VueComponentBaseProps;
|
182
|
+
"omfx-filterengine-selectionsarea-numberproperty": typeof wc5a6940e10c51454aa5e0a4144ab01288.propsDefinition & VueComponentBaseProps;
|
183
|
+
"omfx-group-property-editor-renderer": typeof wc6c7a23eae5d8435fa229c59d40d5e037.propsDefinition & VueComponentBaseProps;
|
184
|
+
"omfx-identity-renderer": typeof wca7608d8c42184cbb994910dc06c464a1.propsDefinition & VueComponentBaseProps;
|
185
|
+
"omfx-identity-sync-property-binding-setup": typeof wc01c6a5e974334f06a390c9af5a7689d0.propsDefinition & VueComponentBaseProps;
|
186
|
+
"omfx-identity-sync-rule-setup": typeof wcc2a811dfd3774d15862abb2f6a435a5c.propsDefinition & VueComponentBaseProps;
|
187
|
+
"omfx-identity-picker": typeof wcba60557e3daf48208c919a1806502df5.propsDefinition & VueComponentBaseProps;
|
188
|
+
"omfx-limited-label": typeof wc6c2ac8bf4da44a2b8e544eaf5b42099f.propsDefinition & VueComponentBaseProps;
|
189
|
+
"omfx-magiclink": typeof wcf365f5cb3a694c20be7b96423bbc3eca.propsDefinition & VueComponentBaseProps;
|
190
|
+
"omfx-option-picker": typeof wc7f06e68f94904b48b827b23acd148bec.propsDefinition & VueComponentBaseProps;
|
191
|
+
"omnia-play-2": typeof wcb6ddbf2c41224cd29b92fcecbbdd31a0.propsDefinition & VueComponentBaseProps;
|
192
|
+
"omfx-presetup-wizard": typeof wc1a58948a606a42078da3fb919cc4f7e6.propsDefinition & VueComponentBaseProps;
|
193
|
+
"omfx-profilecard-renderer": typeof wc6d1d84cb210643c59ca8437fc36c75a1.propsDefinition & VueComponentBaseProps;
|
194
|
+
"omfx-properties-birthday-display": typeof wc916c23c53dbf4d5a8e421e9449c6b203.propsDefinition & VueComponentBaseProps;
|
195
|
+
"omfx-properties-birthday-editor": typeof wc644e39fe6d4f4e23b1777aefd9c23939.propsDefinition & VueComponentBaseProps;
|
196
|
+
"omfx-properties-date-time-display": typeof wc5666ffa15ff14a64bac8854da534ff16.propsDefinition & VueComponentBaseProps;
|
197
|
+
"omfx-properties-date-time-editor": typeof wc0f52758b4d0c4e02abfeea1c5c935571.propsDefinition & VueComponentBaseProps;
|
198
|
+
"omfx-properties-date-display": typeof wc627dc53f51a442019a52bba09ac665cc.propsDefinition & VueComponentBaseProps;
|
199
|
+
"omfx-properties-date-editor": typeof wcae6a9ccc0bf24b0fb983460b7aba7fe6.propsDefinition & VueComponentBaseProps;
|
200
|
+
"omfx-properties-email-display": typeof wc2b51f4d3ea464d7aa3f5b6ab4b9f9ccc.propsDefinition & VueComponentBaseProps;
|
201
|
+
"omfx-properties-email-editor": typeof wc056a7f0a4fa444368b5c7d09c60dbcde.propsDefinition & VueComponentBaseProps;
|
202
|
+
"omfx-properties-html-display": typeof wc5f8ca1cb4e2847d4935f0ac659a3a1f8.propsDefinition & VueComponentBaseProps;
|
203
|
+
"omfx-properties-html-editor": typeof wc2d5cfa916f2946ea9ed6b9ed2c15dadf.propsDefinition & VueComponentBaseProps;
|
204
|
+
"omfx-properties-html-configuration": typeof wcae36a741825f4f209bc10b68fb677bf7.propsDefinition & VueComponentBaseProps;
|
205
|
+
"omfx-properties-identity-display": typeof wc24adf7dd588e4121b7f2b88f06d19ff0.propsDefinition & VueComponentBaseProps;
|
206
|
+
"omfx-properties-identity-editor": typeof wc512d83f1692c4d7ea3dee2653ccf15e6.propsDefinition & VueComponentBaseProps;
|
207
|
+
"omfx-properties-identity-configuration": typeof wc77d632a8bca5461fb6c429a0ff65dc83.propsDefinition & VueComponentBaseProps;
|
208
|
+
"omfx-properties-image-display": typeof wcbf51f51ebb83415085c1ac7647a65152.propsDefinition & VueComponentBaseProps;
|
209
|
+
"omfx-properties-image-configuration": typeof wc5395d36d407d46f1bf8b16a8a01ace5a.propsDefinition & VueComponentBaseProps;
|
210
|
+
"omfx-properties-image-editor": typeof wc188dea2e3ae74c54a34a3e6567e1399e.propsDefinition & VueComponentBaseProps;
|
211
|
+
"omfx-properties-language-display": typeof wc41b1957c2c2b456d8f14bc39f6761c77.propsDefinition & VueComponentBaseProps;
|
212
|
+
"omfx-properties-language-editor": typeof wc84265bdaa0054a8092a740c818daf04e.propsDefinition & VueComponentBaseProps;
|
213
|
+
"omfx-properties-link-display": typeof wc93d3ac3a514149ebbd387d1e87008ec6.propsDefinition & VueComponentBaseProps;
|
214
|
+
"omfx-properties-link-editor": typeof wc9911a5588ea34e9cad8a5129c82e1f0c.propsDefinition & VueComponentBaseProps;
|
215
|
+
"omfx-properties-link-configuration": typeof wcbdcc5c7cc8b04e9c8cba9787284281ca.propsDefinition & VueComponentBaseProps;
|
216
|
+
"omfx-properties-multilinetext-display": typeof wc90552b5ea3484174bf69463a6a74f83a.propsDefinition & VueComponentBaseProps;
|
217
|
+
"omfx-properties-multilinetext-editor": typeof wcc24137f2406f4ebeb414b8d11492d0d3.propsDefinition & VueComponentBaseProps;
|
218
|
+
"omfx-properties-multilingualtext-display": typeof wc784d162feec24424a993d8ba812b9c94.propsDefinition & VueComponentBaseProps;
|
219
|
+
"omfx-properties-multilingualtext-editor": typeof wc4abd8ef8e96f4beca6d375984132b6ec.propsDefinition & VueComponentBaseProps;
|
220
|
+
"omfx-properties-phone-number-display": typeof wcae83e3f39ff443b8abb93e483c14f48f.propsDefinition & VueComponentBaseProps;
|
221
|
+
"omfx-properties-phone-number-editor": typeof wcaad7c8da16f04a46b9503564b10a8f34.propsDefinition & VueComponentBaseProps;
|
222
|
+
"omfx-properties-text-display": typeof wcdf429c59a8ec42cf8ec34907705793a9.propsDefinition & VueComponentBaseProps;
|
223
|
+
"omfx-properties-text-editor": typeof wcb8cc745685f2417cacf578d9bed620b5.propsDefinition & VueComponentBaseProps;
|
224
|
+
"omfx-properties-time-display": typeof wceb1460af73a8467597c5d0987d38cae5.propsDefinition & VueComponentBaseProps;
|
225
|
+
"omfx-properties-time-editor": typeof wcf6b07b9fb080465498768f4fc8c58415.propsDefinition & VueComponentBaseProps;
|
226
|
+
"omfx-property-picker": typeof wc091ee9b103234b26a5e2bd5f992b2582.propsDefinition & VueComponentBaseProps;
|
227
|
+
"omfx-property-renderer": typeof wc48e897be803c4b5cb1db09dbadd04fe5.propsDefinition & VueComponentBaseProps;
|
228
|
+
"omfx-property-datasource-renderer": typeof wc089c74fc73af4e9f920237c71b475d8b.propsDefinition & VueComponentBaseProps;
|
229
|
+
"omfx-property-input": typeof wcb174dcf2716344b0bb02c981ae68dd73.propsDefinition & VueComponentBaseProps;
|
230
|
+
"omfx-app-legacy-enterprise-properties-display": typeof wc646cfdda09044ebc9339f2ac31318512.propsDefinition & VueComponentBaseProps;
|
231
|
+
"omfx-legacy-enterprise-properties-editor": typeof wc332ae4244d4e4b0296befadb2ad2ac6b.propsDefinition & VueComponentBaseProps;
|
232
|
+
"omfx-emoticon": typeof wc58330f37503947799af05363e58bda3c.propsDefinition & VueComponentBaseProps;
|
233
|
+
"omfx-signin-page": typeof wcb5315b31203e4bd1beb3c33f2122cbfe.propsDefinition & VueComponentBaseProps;
|
234
|
+
"omfx-signin-block": typeof wce4b25c06803a417a9c4aa4b7280a599b.propsDefinition & VueComponentBaseProps;
|
235
|
+
"omfx-signin-omnia": typeof wcbc3b9409639d45829a6e58a4295bc470.propsDefinition & VueComponentBaseProps;
|
236
|
+
"omfx-signout": typeof wcf297290b5ea4409a9738ca880f1ea612.propsDefinition & VueComponentBaseProps;
|
237
|
+
"omfx-theme-definition-picker": typeof wc252ece0016594978b3ddfafdd59adda4.propsDefinition & VueComponentBaseProps;
|
238
|
+
"omfx-theme-editor-v2": typeof wc5abbb7170e454f0d8cb537bcad180cd7.propsDefinition & VueComponentBaseProps;
|
239
|
+
"omfx-properties-user-configuration-renderer": typeof wc0beecee9c6ce42c88bd468bde23f9f32.propsDefinition & VueComponentBaseProps;
|
240
|
+
"omfx-properties-user-provider-display": typeof wc8f4747f0b0884fd2a3b60baef21b67fc.propsDefinition & VueComponentBaseProps;
|
241
|
+
"omfx-properties-user-provider-editor": typeof wc909b95011fbe44c28440ad9cd6aaff85.propsDefinition & VueComponentBaseProps;
|
242
|
+
"omfx-properties-msgraph-user-provider-display": typeof wc7f2ffaf9ec9e4faba84db55101236094.propsDefinition & VueComponentBaseProps;
|
243
|
+
"omfx-properties-msgraph-user-provider-editor": typeof wc9920229c8d53416b884ad1ca25ad429d.propsDefinition & VueComponentBaseProps;
|
244
|
+
"omfx-user-property-renderer": typeof wc26f3558f4af24b198d2bc7a775166840.propsDefinition & VueComponentBaseProps;
|
245
|
+
"omfx-user-presence": typeof wc21a1f20b3d404602853049c1c8b8da2f.propsDefinition & VueComponentBaseProps;
|
246
|
+
"omfx-usertype-layout-renderer": typeof wc30289e2b58ff48b0aabb3cb3732c3038.propsDefinition & VueComponentBaseProps;
|
247
|
+
"omfx-usertype-layout-blade-builder": typeof wc5b26d2a399c041f3beae9c1115d6e8d8.propsDefinition & VueComponentBaseProps;
|
248
|
+
"omfx-velcron-block": typeof wc80bd5b0978ea40439001d3d409236382.propsDefinition & VueComponentBaseProps;
|
249
|
+
"omfx-velcron-block-settings": typeof wce8526e8ed3f74e848e0dd747fd4d376d.propsDefinition & VueComponentBaseProps;
|
250
|
+
"omfx-color-picker-schema": typeof wc327aebb7d6ce4565bf119cf67e121d1a.propsDefinition & VueComponentBaseProps;
|
251
|
+
"omfx-color-schema-mapper": typeof wc511447a5fd2646af910064ed9970d82e.propsDefinition & VueComponentBaseProps;
|
252
|
+
"omfx-color-schema-picker": typeof wc1266389c28034034921b897f788f302d.propsDefinition & VueComponentBaseProps;
|
253
|
+
"omfx-ratio-picker": typeof wc3cd2da446d21461e8149e6c8334a36f4.propsDefinition & VueComponentBaseProps;
|
254
|
+
"omfx-typography-picker-schema": typeof wc8420a0b507e14a288c2d895471739f1d.propsDefinition & VueComponentBaseProps;
|
255
|
+
"omfx-velcron-editor": typeof wcc75ffd4cf2f14b6685c5c2d894fdf00f.propsDefinition & VueComponentBaseProps;
|
256
|
+
"omfx-velcron-renderer": typeof wc3dd4d94bcc254f9fac2100a3ff84dc7e.propsDefinition & VueComponentBaseProps;
|
257
|
+
"omfx-versioned-layout-renderer": typeof wcba03fc7e6921468289c0a0ffe0cf942e.propsDefinition & VueComponentBaseProps;
|
258
|
+
"omfx-versioned-layout-editor": typeof wc73154f51a92944acbe248779a3fa7ef5.propsDefinition & VueComponentBaseProps;
|
260
259
|
}
|
261
260
|
}
|
262
261
|
}
|
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "@omnia/fx",
|
3
3
|
"license": "MIT",
|
4
|
-
"version": "
|
4
|
+
"version": "8.0.0-vnext",
|
5
5
|
"description": "Provide Omnia Fx typings and tooling for clientside Omnia development.",
|
6
6
|
"scripts": {
|
7
7
|
"test": "echo \"Error: no test specified\" && exit 1",
|
@@ -20,15 +20,14 @@
|
|
20
20
|
],
|
21
21
|
"author": "Precio Fishbone",
|
22
22
|
"dependencies": {
|
23
|
-
"@omnia/fx-models": "
|
23
|
+
"@omnia/fx-models": "8.0.0-vnext",
|
24
24
|
"@microsoft/signalr": "6.0.1",
|
25
25
|
"broadcast-channel": "4.8.0",
|
26
26
|
"dayjs": "1.10.7",
|
27
27
|
"vue-virtual-scroller": "1.0.0-rc.2",
|
28
28
|
"splitpanes": "2.4.1",
|
29
|
-
"vuetify": "
|
30
|
-
"vue": "2.
|
31
|
-
"vue-tsx-support": "3.2.0",
|
29
|
+
"vuetify": "3.1.5",
|
30
|
+
"vue": "3.2.47",
|
32
31
|
"typescript": "4.9.4",
|
33
32
|
"tiptap": "1.26.4",
|
34
33
|
"tiptap-extensions": "1.28.4",
|
@@ -46,8 +45,6 @@
|
|
46
45
|
"prosemirror-inputrules": "1.0.4",
|
47
46
|
"prosemirror-keymap": "1.0.2",
|
48
47
|
"prosemirror-schema-list": "1.0.4",
|
49
|
-
"vue-property-decorator": "8.3.0",
|
50
|
-
"vue-class-component": "7.1.0",
|
51
48
|
"axios": "0.24.0",
|
52
49
|
"mousetrap": "1.6.1"
|
53
50
|
},
|
@@ -1,14 +0,0 @@
|
|
1
|
-
import { VNode } from "vue";
|
2
|
-
|
3
|
-
declare global {
|
4
|
-
namespace VueTsxSupport.JSX {
|
5
|
-
interface Element extends VNode { }
|
6
|
-
//interface ElementClass extends ComponentRenderProxy { }
|
7
|
-
//interface ElementAttributesProperty {
|
8
|
-
// $props: any; // specify the property name to use
|
9
|
-
//}
|
10
|
-
//interface IntrinsicElements {
|
11
|
-
// [elem: string]: any;
|
12
|
-
//}
|
13
|
-
}
|
14
|
-
}
|