@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 +1 @@
|
|
1
|
-
{"name":"omniaVendor","content":{"./client/tooling/vue/tasks/materials/dummy-vue-tsx-support-enable-check.js":{"id":"./client/tooling/vue/tasks/materials/dummy-vue-tsx-support-enable-check.js","buildMeta":{"sideEffectFree":true}},"./node_modules/@vue/babel-helper-vue-jsx-merge-props/dist/helper.js":{"id":"./node_modules/@vue/babel-helper-vue-jsx-merge-props/dist/helper.js","buildMeta":{}},"./node_modules/csx/lib.es2015/background.js":{"id":"./node_modules/csx/lib.es2015/background.js","buildMeta":{"exportsType":"namespace","sideEffectFree":true},"expo.js":["background"]},"./node_modules/csx/lib.es2015/border.js":{"id":"./node_modules/csx/lib.es2015/border.js","buildMeta":{"exportsType":"namespace","sideEffectFree":true},"expo.js":["border","borderColor","borderStyle","borderWidth"]},"./node_modules/csx/lib.es2015/color.js":{"id":"./node_modules/csx/lib.es2015/color.js","buildMeta":{"exportsType":"namespace"},"expo.js":["ColorHelper","color","hsl","hsla","rgb","rgba"]},"./node_modules/csx/lib.es2015/gradient.js":{"id":"./node_modules/csx/lib.es2015/gradient.js","buildMeta":{"exportsType":"namespace","sideEffectFree":true},"expo.js":["linearGradient","repeatingLinearGradient"]},"./node_modules/csx/lib.es2015/index.js":{"id":"./node_modules/csx/lib.es2015/index.js","buildMeta":{"exportsType":"namespace","sideEffectFree":true},"expo.js":["ColorHelper","background","border","borderColor","borderStyle","borderWidth","calc","coalesce","color","deg","em","hsl","hsla","important","linearGradient","list","margin","matrix","matrix3d","padding","params","percent","perspective","px","quote","rad","rem","repeatingLinearGradient","rgb","rgba","rotate","rotate3d","rotateX","rotateY","rotateZ","scale","scale3d","scaleX","scaleY","scaleZ","skew","skewX","skewY","transform","translate","translate3d","translateX","translateY","translateZ","turn","url","viewHeight","viewWidth"]},"./node_modules/csx/lib.es2015/lists.js":{"id":"./node_modules/csx/lib.es2015/lists.js","buildMeta":{"exportsType":"namespace"},"expo.js":["list","params"]},"./node_modules/csx/lib.es2015/margin.js":{"id":"./node_modules/csx/lib.es2015/margin.js","buildMeta":{"exportsType":"namespace","sideEffectFree":true},"expo.js":["margin"]},"./node_modules/csx/lib.es2015/padding.js":{"id":"./node_modules/csx/lib.es2015/padding.js","buildMeta":{"exportsType":"namespace","sideEffectFree":true},"expo.js":["padding"]},"./node_modules/csx/lib.es2015/strings.js":{"id":"./node_modules/csx/lib.es2015/strings.js","buildMeta":{"exportsType":"namespace","sideEffectFree":true},"expo.js":["calc","coalesce","important","quote","url"]},"./node_modules/csx/lib.es2015/transforms.js":{"id":"./node_modules/csx/lib.es2015/transforms.js","buildMeta":{"exportsType":"namespace"},"expo.js":["matrix","matrix3d","perspective","rotate","rotate3d","rotateX","rotateY","rotateZ","scale","scale3d","scaleX","scaleY","scaleZ","skew","skewX","skewY","transform","translate","translate3d","translateX","translateY","translateZ"]},"./node_modules/csx/lib.es2015/units.js":{"id":"./node_modules/csx/lib.es2015/units.js","buildMeta":{"exportsType":"namespace"},"expo.js":["deg","em","percent","px","rad","rem","turn","viewHeight","viewWidth"]},"./node_modules/csx/lib.es2015/utils/arrays.js":{"id":"./node_modules/csx/lib.es2015/utils/arrays.js","buildMeta":{"exportsType":"namespace","sideEffectFree":true},"expo.js":["filter","map"]},"./node_modules/csx/lib.es2015/utils/formatting.js":{"id":"./node_modules/csx/lib.es2015/utils/formatting.js","buildMeta":{"exportsType":"namespace"},"expo.js":["createFunction","cssFunction","ensureLength","ensurePercent","formatFloat","formatPercent","formatUnit","parseCSSFunction","toFloat"]},"./node_modules/csx/lib.es2015/utils/math.js":{"id":"./node_modules/csx/lib.es2015/utils/math.js","buildMeta":{"exportsType":"namespace"},"expo.js":["round","roundFloat"]},"./node_modules/dayjs/dayjs.min.js":{"id":"./node_modules/dayjs/dayjs.min.js","buildMeta":{}},"./node_modules/dayjs/locale/da.js":{"id":"./node_modules/dayjs/locale/da.js","buildMeta":{}},"./node_modules/dayjs/locale/de.js":{"id":"./node_modules/dayjs/locale/de.js","buildMeta":{}},"./node_modules/dayjs/locale/et.js":{"id":"./node_modules/dayjs/locale/et.js","buildMeta":{}},"./node_modules/dayjs/locale/fr.js":{"id":"./node_modules/dayjs/locale/fr.js","buildMeta":{}},"./node_modules/dayjs/locale/lt.js":{"id":"./node_modules/dayjs/locale/lt.js","buildMeta":{}},"./node_modules/dayjs/locale/lv.js":{"id":"./node_modules/dayjs/locale/lv.js","buildMeta":{}},"./node_modules/dayjs/locale/pl.js":{"id":"./node_modules/dayjs/locale/pl.js","buildMeta":{}},"./node_modules/dayjs/locale/sv.js":{"id":"./node_modules/dayjs/locale/sv.js","buildMeta":{}},"./node_modules/dayjs/plugin/duration.js":{"id":"./node_modules/dayjs/plugin/duration.js","buildMeta":{}},"./node_modules/dayjs/plugin/relativeTime.js":{"id":"./node_modules/dayjs/plugin/relativetime.js","buildMeta":{}},"./node_modules/dayjs/plugin/timezone.js":{"id":"./node_modules/dayjs/plugin/timezone.js","buildMeta":{}},"./node_modules/dayjs/plugin/utc.js":{"id":"./node_modules/dayjs/plugin/utc.js","buildMeta":{}},"./node_modules/free-style/dist.es2015/index.js":{"id":"./node_modules/free-style/dist.es2015/index.js","buildMeta":{"exportsType":"namespace"},"expo.js":["Cache","FreeStyle","Rule","Selector","Style","create"]},"./node_modules/mousetrap-global-bind/mousetrap-global-bind.js":{"id":"./node_modules/mousetrap-global-bind/mousetrap-global-bind.js","buildMeta":{}},"./node_modules/mousetrap/mousetrap.js":{"id":"./node_modules/mousetrap/mousetrap.js","buildMeta":{}},"./node_modules/tslib/tslib.es6.js":{"id":"./node_modules/tslib/tslib.es6.js","buildMeta":{"exportsType":"namespace"},"expo.js":["__assign","__asyncDelegator","__asyncGenerator","__asyncValues","__await","__awaiter","__classPrivateFieldGet","__classPrivateFieldSet","__createBinding","__decorate","__exportStar","__extends","__generator","__importDefault","__importStar","__makeTemplateObject","__metadata","__param","__read","__rest","__spread","__spreadArray","__spreadArrays","__values"]},"./node_modules/typestyle/lib.es2015/index.js":{"id":"./node_modules/typestyle/lib.es2015/index.js","buildMeta":{"exportsType":"namespace"},"expo.js":["TypeStyle","classes","createTypeStyle","cssRaw","cssRule","extend","fontFace","forceRenderStyles","getStyles","keyframes","media","reinit","setStylesTarget","style","stylesheet","types"]},"./node_modules/typestyle/lib.es2015/internal/formatting.js":{"id":"./node_modules/typestyle/lib.es2015/internal/formatting.js","buildMeta":{"exportsType":"namespace","sideEffectFree":true},"expo.js":["convertToKeyframes","convertToStyles"]},"./node_modules/typestyle/lib.es2015/internal/typestyle.js":{"id":"./node_modules/typestyle/lib.es2015/internal/typestyle.js","buildMeta":{"exportsType":"namespace"},"expo.js":["TypeStyle"]},"./node_modules/typestyle/lib.es2015/internal/utilities.js":{"id":"./node_modules/typestyle/lib.es2015/internal/utilities.js","buildMeta":{"exportsType":"namespace"},"expo.js":["classes","extend","media","raf"]},"./node_modules/typestyle/lib.es2015/types.js":{"id":"./node_modules/typestyle/lib.es2015/types.js","buildMeta":{"sideEffectFree":true}},"./node_modules/vue-class-component/dist/vue-class-component.esm.js":{"id":"./node_modules/vue-class-component/dist/vue-class-component.esm.js","buildMeta":{"exportsType":"namespace"},"expo.js":["createDecorator","default","mixins"]},"./node_modules/vue-property-decorator/lib/vue-property-decorator.js":{"id":"./node_modules/vue-property-decorator/lib/vue-property-decorator.js","buildMeta":{"exportsType":"namespace"},"expo.js":["Component","Emit","Inject","InjectReactive","Mixins","Model","Prop","PropSync","Provide","ProvideReactive","Ref","Vue","Watch"]},"./node_modules/vue-tsx-support/dist/esm/api.js":{"id":"./node_modules/vue-tsx-support/dist/esm/api.js","buildMeta":{"exportsType":"namespace"},"expo.js":["Component","component","componentFactory","componentFactoryOf","createComponent","emit","emitOn","emitUpdate","extendFrom","ofType","withHtmlAttrs","withNativeOn","withPropsObject","withUnknownProps"]},"./node_modules/vue-tsx-support/dist/esm/index.js":{"id":"./node_modules/vue-tsx-support/dist/esm/index.js","buildMeta":{"exportsType":"namespace","sideEffectFree":true},"expo.js":["Component","component","componentFactory","componentFactoryOf","createComponent","emit","emitOn","emitUpdate","extendFrom","modifiers","ofType","withHtmlAttrs","withNativeOn","withPropsObject","withUnknownProps"]},"./node_modules/vue-tsx-support/dist/esm/modifiers.js":{"id":"./node_modules/vue-tsx-support/dist/esm/modifiers.js","buildMeta":{"exportsType":"namespace"},"expo.js":["modifiers"]},"./node_modules/vue/dist/vue.esm.js":{"id":"./node_modules/vue/dist/vue.esm.js","buildMeta":{"exportsType":"namespace"},"expo.js":["EffectScope","computed","customRef","default","defineAsyncComponent","defineComponent","del","effectScope","getCurrentInstance","getCurrentScope","h","inject","isProxy","isReactive","isReadonly","isRef","isShallow","markRaw","mergeDefaults","nextTick","onActivated","onBeforeMount","onBeforeUnmount","onBeforeUpdate","onDeactivated","onErrorCaptured","onMounted","onRenderTracked","onRenderTriggered","onScopeDispose","onServerPrefetch","onUnmounted","onUpdated","provide","proxyRefs","reactive","readonly","ref","set","shallowReactive","shallowReadonly","shallowRef","toRaw","toRef","toRefs","triggerRef","unref","useAttrs","useCssModule","useCssVars","useListeners","useSlots","version","watch","watchEffect","watchPostEffect","watchSyncEffect"]},"./node_modules/zepto-webpack/zepto.js":{"id":"./node_modules/zepto-webpack/zepto.js","buildMeta":{}},"./wwwroot/scripts/zepto.extras.js":{"id":"./wwwroot/scripts/zepto.extras.js","buildMeta":{}}}}
|
1
|
+
{"name":"omniaVendor","content":{"./client/fx/vue/VueBundler.js":{"id":"./client/fx/vue/vuebundler.ts","buildMeta":{"exportsType":"namespace","sideEffectFree":true},"expo.js":["compile","computed","defineAsyncComponent","defineComponent","getCurrentInstance","h","nextTick","onActivated","onBeforeMount","onBeforeUnmount","onBeforeUpdate","onDeactivated","onErrorCaptured","onMounted","onRenderTriggered","onUnmounted","onUpdated","reactive","ref","unref","watch"]},"./node_modules/@vue/compiler-core/dist/compiler-core.esm-bundler.js":{"id":"./node_modules/@vue/compiler-core/dist/compiler-core.esm-bundler.js","buildMeta":{"exportsType":"namespace"},"expo.js":["BASE_TRANSITION","CAMELIZE","CAPITALIZE","CREATE_BLOCK","CREATE_COMMENT","CREATE_ELEMENT_BLOCK","CREATE_ELEMENT_VNODE","CREATE_SLOTS","CREATE_STATIC","CREATE_TEXT","CREATE_VNODE","FRAGMENT","GUARD_REACTIVE_PROPS","IS_MEMO_SAME","IS_REF","KEEP_ALIVE","MERGE_PROPS","NORMALIZE_CLASS","NORMALIZE_PROPS","NORMALIZE_STYLE","OPEN_BLOCK","POP_SCOPE_ID","PUSH_SCOPE_ID","RENDER_LIST","RENDER_SLOT","RESOLVE_COMPONENT","RESOLVE_DIRECTIVE","RESOLVE_DYNAMIC_COMPONENT","RESOLVE_FILTER","SET_BLOCK_TRACKING","SUSPENSE","TELEPORT","TO_DISPLAY_STRING","TO_HANDLERS","TO_HANDLER_KEY","UNREF","WITH_CTX","WITH_DIRECTIVES","WITH_MEMO","advancePositionWithClone","advancePositionWithMutation","assert","baseCompile","baseParse","buildDirectiveArgs","buildProps","buildSlots","checkCompatEnabled","createArrayExpression","createAssignmentExpression","createBlockStatement","createCacheExpression","createCallExpression","createCompilerError","createCompoundExpression","createConditionalExpression","createForLoopParams","createFunctionExpression","createIfStatement","createInterpolation","createObjectExpression","createObjectProperty","createReturnStatement","createRoot","createSequenceExpression","createSimpleExpression","createStructuralDirectiveTransform","createTemplateLiteral","createTransformContext","createVNodeCall","extractIdentifiers","findDir","findProp","generate","generateCodeFrame","getBaseTransformPreset","getConstantType","getInnerRange","getMemoedVNodeCall","getVNodeBlockHelper","getVNodeHelper","hasDynamicKeyVBind","hasScopeRef","helperNameMap","injectProp","isBuiltInType","isCoreComponent","isFunctionType","isInDestructureAssignment","isMemberExpression","isMemberExpressionBrowser","isMemberExpressionNode","isReferencedIdentifier","isSimpleIdentifier","isSlotOutlet","isStaticArgOf","isStaticExp","isStaticProperty","isStaticPropertyKey","isTemplateNode","isText","isVSlot","locStub","makeBlock","noopDirectiveTransform","processExpression","processFor","processIf","processSlotOutlet","registerRuntimeHelpers","resolveComponentType","stringifyExpression","toValidAssetId","trackSlotScopes","trackVForSlotScopes","transform","transformBind","transformElement","transformExpression","transformModel","transformOn","traverseNode","walkBlockDeclarations","walkFunctionParams","walkIdentifiers","warnDeprecation"]},"./node_modules/@vue/compiler-dom/dist/compiler-dom.esm-bundler.js":{"id":"./node_modules/@vue/compiler-dom/dist/compiler-dom.esm-bundler.js","buildMeta":{"exportsType":"namespace"},"expo.js":["BASE_TRANSITION","CAMELIZE","CAPITALIZE","CREATE_BLOCK","CREATE_COMMENT","CREATE_ELEMENT_BLOCK","CREATE_ELEMENT_VNODE","CREATE_SLOTS","CREATE_STATIC","CREATE_TEXT","CREATE_VNODE","DOMDirectiveTransforms","DOMNodeTransforms","FRAGMENT","GUARD_REACTIVE_PROPS","IS_MEMO_SAME","IS_REF","KEEP_ALIVE","MERGE_PROPS","NORMALIZE_CLASS","NORMALIZE_PROPS","NORMALIZE_STYLE","OPEN_BLOCK","POP_SCOPE_ID","PUSH_SCOPE_ID","RENDER_LIST","RENDER_SLOT","RESOLVE_COMPONENT","RESOLVE_DIRECTIVE","RESOLVE_DYNAMIC_COMPONENT","RESOLVE_FILTER","SET_BLOCK_TRACKING","SUSPENSE","TELEPORT","TO_DISPLAY_STRING","TO_HANDLERS","TO_HANDLER_KEY","TRANSITION","TRANSITION_GROUP","UNREF","V_MODEL_CHECKBOX","V_MODEL_DYNAMIC","V_MODEL_RADIO","V_MODEL_SELECT","V_MODEL_TEXT","V_ON_WITH_KEYS","V_ON_WITH_MODIFIERS","V_SHOW","WITH_CTX","WITH_DIRECTIVES","WITH_MEMO","advancePositionWithClone","advancePositionWithMutation","assert","baseCompile","baseParse","buildDirectiveArgs","buildProps","buildSlots","checkCompatEnabled","compile","createArrayExpression","createAssignmentExpression","createBlockStatement","createCacheExpression","createCallExpression","createCompilerError","createCompoundExpression","createConditionalExpression","createDOMCompilerError","createForLoopParams","createFunctionExpression","createIfStatement","createInterpolation","createObjectExpression","createObjectProperty","createReturnStatement","createRoot","createSequenceExpression","createSimpleExpression","createStructuralDirectiveTransform","createTemplateLiteral","createTransformContext","createVNodeCall","extractIdentifiers","findDir","findProp","generate","generateCodeFrame","getBaseTransformPreset","getConstantType","getInnerRange","getMemoedVNodeCall","getVNodeBlockHelper","getVNodeHelper","hasDynamicKeyVBind","hasScopeRef","helperNameMap","injectProp","isBuiltInType","isCoreComponent","isFunctionType","isInDestructureAssignment","isMemberExpression","isMemberExpressionBrowser","isMemberExpressionNode","isReferencedIdentifier","isSimpleIdentifier","isSlotOutlet","isStaticArgOf","isStaticExp","isStaticProperty","isStaticPropertyKey","isTemplateNode","isText","isVSlot","locStub","makeBlock","noopDirectiveTransform","parse","parserOptions","processExpression","processFor","processIf","processSlotOutlet","registerRuntimeHelpers","resolveComponentType","stringifyExpression","toValidAssetId","trackSlotScopes","trackVForSlotScopes","transform","transformBind","transformElement","transformExpression","transformModel","transformOn","transformStyle","traverseNode","walkBlockDeclarations","walkFunctionParams","walkIdentifiers","warnDeprecation"]},"./node_modules/@vue/reactivity/dist/reactivity.esm-bundler.js":{"id":"./node_modules/@vue/reactivity/dist/reactivity.esm-bundler.js","buildMeta":{"exportsType":"namespace"},"expo.js":["EffectScope","ITERATE_KEY","ReactiveEffect","computed","customRef","deferredComputed","effect","effectScope","enableTracking","getCurrentScope","isProxy","isReactive","isReadonly","isRef","isShallow","markRaw","onScopeDispose","pauseTracking","proxyRefs","reactive","readonly","ref","resetTracking","shallowReactive","shallowReadonly","shallowRef","stop","toRaw","toRef","toRefs","track","trigger","triggerRef","unref"]},"./node_modules/@vue/runtime-core/dist/runtime-core.esm-bundler.js":{"id":"./node_modules/@vue/runtime-core/dist/runtime-core.esm-bundler.js","buildMeta":{"exportsType":"namespace"},"expo.js":["BaseTransition","Comment","EffectScope","Fragment","KeepAlive","ReactiveEffect","Static","Suspense","Teleport","Text","assertNumber","callWithAsyncErrorHandling","callWithErrorHandling","camelize","capitalize","cloneVNode","compatUtils","computed","createBlock","createCommentVNode","createElementBlock","createElementVNode","createHydrationRenderer","createPropsRestProxy","createRenderer","createSlots","createStaticVNode","createTextVNode","createVNode","customRef","defineAsyncComponent","defineComponent","defineEmits","defineExpose","defineProps","devtools","effect","effectScope","getCurrentInstance","getCurrentScope","getTransitionRawChildren","guardReactiveProps","h","handleError","initCustomFormatter","inject","isMemoSame","isProxy","isReactive","isReadonly","isRef","isRuntimeOnly","isShallow","isVNode","markRaw","mergeDefaults","mergeProps","nextTick","normalizeClass","normalizeProps","normalizeStyle","onActivated","onBeforeMount","onBeforeUnmount","onBeforeUpdate","onDeactivated","onErrorCaptured","onMounted","onRenderTracked","onRenderTriggered","onScopeDispose","onServerPrefetch","onUnmounted","onUpdated","openBlock","popScopeId","provide","proxyRefs","pushScopeId","queuePostFlushCb","reactive","readonly","ref","registerRuntimeCompiler","renderList","renderSlot","resolveComponent","resolveDirective","resolveDynamicComponent","resolveFilter","resolveTransitionHooks","setBlockTracking","setDevtoolsHook","setTransitionHooks","shallowReactive","shallowReadonly","shallowRef","ssrContextKey","ssrUtils","stop","toDisplayString","toHandlerKey","toHandlers","toRaw","toRef","toRefs","transformVNodeArgs","triggerRef","unref","useAttrs","useSSRContext","useSlots","useTransitionState","version","warn","watch","watchEffect","watchPostEffect","watchSyncEffect","withAsyncContext","withCtx","withDefaults","withDirectives","withMemo","withScopeId"]},"./node_modules/@vue/runtime-dom/dist/runtime-dom.esm-bundler.js":{"id":"./node_modules/@vue/runtime-dom/dist/runtime-dom.esm-bundler.js","buildMeta":{"exportsType":"namespace"},"expo.js":["BaseTransition","Comment","EffectScope","Fragment","KeepAlive","ReactiveEffect","Static","Suspense","Teleport","Text","Transition","TransitionGroup","VueElement","assertNumber","callWithAsyncErrorHandling","callWithErrorHandling","camelize","capitalize","cloneVNode","compatUtils","computed","createApp","createBlock","createCommentVNode","createElementBlock","createElementVNode","createHydrationRenderer","createPropsRestProxy","createRenderer","createSSRApp","createSlots","createStaticVNode","createTextVNode","createVNode","customRef","defineAsyncComponent","defineComponent","defineCustomElement","defineEmits","defineExpose","defineProps","defineSSRCustomElement","devtools","effect","effectScope","getCurrentInstance","getCurrentScope","getTransitionRawChildren","guardReactiveProps","h","handleError","hydrate","initCustomFormatter","initDirectivesForSSR","inject","isMemoSame","isProxy","isReactive","isReadonly","isRef","isRuntimeOnly","isShallow","isVNode","markRaw","mergeDefaults","mergeProps","nextTick","normalizeClass","normalizeProps","normalizeStyle","onActivated","onBeforeMount","onBeforeUnmount","onBeforeUpdate","onDeactivated","onErrorCaptured","onMounted","onRenderTracked","onRenderTriggered","onScopeDispose","onServerPrefetch","onUnmounted","onUpdated","openBlock","popScopeId","provide","proxyRefs","pushScopeId","queuePostFlushCb","reactive","readonly","ref","registerRuntimeCompiler","render","renderList","renderSlot","resolveComponent","resolveDirective","resolveDynamicComponent","resolveFilter","resolveTransitionHooks","setBlockTracking","setDevtoolsHook","setTransitionHooks","shallowReactive","shallowReadonly","shallowRef","ssrContextKey","ssrUtils","stop","toDisplayString","toHandlerKey","toHandlers","toRaw","toRef","toRefs","transformVNodeArgs","triggerRef","unref","useAttrs","useCssModule","useCssVars","useSSRContext","useSlots","useTransitionState","vModelCheckbox","vModelDynamic","vModelRadio","vModelSelect","vModelText","vShow","version","warn","watch","watchEffect","watchPostEffect","watchSyncEffect","withAsyncContext","withCtx","withDefaults","withDirectives","withKeys","withMemo","withModifiers","withScopeId"]},"./node_modules/@vue/shared/dist/shared.esm-bundler.js":{"id":"./node_modules/@vue/shared/dist/shared.esm-bundler.js","buildMeta":{"exportsType":"namespace"},"expo.js":["EMPTY_ARR","EMPTY_OBJ","NO","NOOP","PatchFlagNames","camelize","capitalize","def","escapeHtml","escapeHtmlComment","extend","genPropsAccessExp","generateCodeFrame","getGlobalThis","hasChanged","hasOwn","hyphenate","includeBooleanAttr","invokeArrayFns","isArray","isBooleanAttr","isBuiltInDirective","isDate","isFunction","isGloballyWhitelisted","isHTMLTag","isIntegerKey","isKnownHtmlAttr","isKnownSvgAttr","isMap","isModelListener","isObject","isOn","isPlainObject","isPromise","isRegExp","isReservedProp","isSSRSafeAttrName","isSVGTag","isSet","isSpecialBooleanAttr","isString","isSymbol","isVoidTag","looseEqual","looseIndexOf","looseToNumber","makeMap","normalizeClass","normalizeProps","normalizeStyle","objectToString","parseStringStyle","propsToAttrMap","remove","slotFlagsText","stringifyStyle","toDisplayString","toHandlerKey","toNumber","toRawType","toTypeString"]},"./node_modules/csx/lib.es2015/background.js":{"id":"./node_modules/csx/lib.es2015/background.js","buildMeta":{"exportsType":"namespace","sideEffectFree":true},"expo.js":["background"]},"./node_modules/csx/lib.es2015/border.js":{"id":"./node_modules/csx/lib.es2015/border.js","buildMeta":{"exportsType":"namespace","sideEffectFree":true},"expo.js":["border","borderColor","borderStyle","borderWidth"]},"./node_modules/csx/lib.es2015/color.js":{"id":"./node_modules/csx/lib.es2015/color.js","buildMeta":{"exportsType":"namespace"},"expo.js":["ColorHelper","color","hsl","hsla","rgb","rgba"]},"./node_modules/csx/lib.es2015/gradient.js":{"id":"./node_modules/csx/lib.es2015/gradient.js","buildMeta":{"exportsType":"namespace","sideEffectFree":true},"expo.js":["linearGradient","repeatingLinearGradient"]},"./node_modules/csx/lib.es2015/index.js":{"id":"./node_modules/csx/lib.es2015/index.js","buildMeta":{"exportsType":"namespace","sideEffectFree":true},"expo.js":["ColorHelper","background","border","borderColor","borderStyle","borderWidth","calc","coalesce","color","deg","em","hsl","hsla","important","linearGradient","list","margin","matrix","matrix3d","padding","params","percent","perspective","px","quote","rad","rem","repeatingLinearGradient","rgb","rgba","rotate","rotate3d","rotateX","rotateY","rotateZ","scale","scale3d","scaleX","scaleY","scaleZ","skew","skewX","skewY","transform","translate","translate3d","translateX","translateY","translateZ","turn","url","viewHeight","viewWidth"]},"./node_modules/csx/lib.es2015/lists.js":{"id":"./node_modules/csx/lib.es2015/lists.js","buildMeta":{"exportsType":"namespace"},"expo.js":["list","params"]},"./node_modules/csx/lib.es2015/margin.js":{"id":"./node_modules/csx/lib.es2015/margin.js","buildMeta":{"exportsType":"namespace","sideEffectFree":true},"expo.js":["margin"]},"./node_modules/csx/lib.es2015/padding.js":{"id":"./node_modules/csx/lib.es2015/padding.js","buildMeta":{"exportsType":"namespace","sideEffectFree":true},"expo.js":["padding"]},"./node_modules/csx/lib.es2015/strings.js":{"id":"./node_modules/csx/lib.es2015/strings.js","buildMeta":{"exportsType":"namespace","sideEffectFree":true},"expo.js":["calc","coalesce","important","quote","url"]},"./node_modules/csx/lib.es2015/transforms.js":{"id":"./node_modules/csx/lib.es2015/transforms.js","buildMeta":{"exportsType":"namespace"},"expo.js":["matrix","matrix3d","perspective","rotate","rotate3d","rotateX","rotateY","rotateZ","scale","scale3d","scaleX","scaleY","scaleZ","skew","skewX","skewY","transform","translate","translate3d","translateX","translateY","translateZ"]},"./node_modules/csx/lib.es2015/units.js":{"id":"./node_modules/csx/lib.es2015/units.js","buildMeta":{"exportsType":"namespace"},"expo.js":["deg","em","percent","px","rad","rem","turn","viewHeight","viewWidth"]},"./node_modules/csx/lib.es2015/utils/arrays.js":{"id":"./node_modules/csx/lib.es2015/utils/arrays.js","buildMeta":{"exportsType":"namespace","sideEffectFree":true},"expo.js":["filter","map"]},"./node_modules/csx/lib.es2015/utils/formatting.js":{"id":"./node_modules/csx/lib.es2015/utils/formatting.js","buildMeta":{"exportsType":"namespace"},"expo.js":["createFunction","cssFunction","ensureLength","ensurePercent","formatFloat","formatPercent","formatUnit","parseCSSFunction","toFloat"]},"./node_modules/csx/lib.es2015/utils/math.js":{"id":"./node_modules/csx/lib.es2015/utils/math.js","buildMeta":{"exportsType":"namespace"},"expo.js":["round","roundFloat"]},"./node_modules/dayjs/dayjs.min.js":{"id":"./node_modules/dayjs/dayjs.min.js","buildMeta":{}},"./node_modules/dayjs/locale/da.js":{"id":"./node_modules/dayjs/locale/da.js","buildMeta":{}},"./node_modules/dayjs/locale/de.js":{"id":"./node_modules/dayjs/locale/de.js","buildMeta":{}},"./node_modules/dayjs/locale/et.js":{"id":"./node_modules/dayjs/locale/et.js","buildMeta":{}},"./node_modules/dayjs/locale/fr.js":{"id":"./node_modules/dayjs/locale/fr.js","buildMeta":{}},"./node_modules/dayjs/locale/lt.js":{"id":"./node_modules/dayjs/locale/lt.js","buildMeta":{}},"./node_modules/dayjs/locale/lv.js":{"id":"./node_modules/dayjs/locale/lv.js","buildMeta":{}},"./node_modules/dayjs/locale/pl.js":{"id":"./node_modules/dayjs/locale/pl.js","buildMeta":{}},"./node_modules/dayjs/locale/sv.js":{"id":"./node_modules/dayjs/locale/sv.js","buildMeta":{}},"./node_modules/dayjs/plugin/duration.js":{"id":"./node_modules/dayjs/plugin/duration.js","buildMeta":{}},"./node_modules/dayjs/plugin/relativeTime.js":{"id":"./node_modules/dayjs/plugin/relativetime.js","buildMeta":{}},"./node_modules/dayjs/plugin/timezone.js":{"id":"./node_modules/dayjs/plugin/timezone.js","buildMeta":{}},"./node_modules/dayjs/plugin/utc.js":{"id":"./node_modules/dayjs/plugin/utc.js","buildMeta":{}},"./node_modules/free-style/dist.es2015/index.js":{"id":"./node_modules/free-style/dist.es2015/index.js","buildMeta":{"exportsType":"namespace"},"expo.js":["Cache","FreeStyle","Rule","Selector","Style","create"]},"./node_modules/mousetrap-global-bind/mousetrap-global-bind.js":{"id":"./node_modules/mousetrap-global-bind/mousetrap-global-bind.js","buildMeta":{}},"./node_modules/mousetrap/mousetrap.js":{"id":"./node_modules/mousetrap/mousetrap.js","buildMeta":{}},"./node_modules/tslib/tslib.es6.js":{"id":"./node_modules/tslib/tslib.es6.js","buildMeta":{"exportsType":"namespace"},"expo.js":["__assign","__asyncDelegator","__asyncGenerator","__asyncValues","__await","__awaiter","__classPrivateFieldGet","__classPrivateFieldSet","__createBinding","__decorate","__exportStar","__extends","__generator","__importDefault","__importStar","__makeTemplateObject","__metadata","__param","__read","__rest","__spread","__spreadArray","__spreadArrays","__values"]},"./node_modules/typestyle/lib.es2015/index.js":{"id":"./node_modules/typestyle/lib.es2015/index.js","buildMeta":{"exportsType":"namespace"},"expo.js":["TypeStyle","classes","createTypeStyle","cssRaw","cssRule","extend","fontFace","forceRenderStyles","getStyles","keyframes","media","reinit","setStylesTarget","style","stylesheet","types"]},"./node_modules/typestyle/lib.es2015/internal/formatting.js":{"id":"./node_modules/typestyle/lib.es2015/internal/formatting.js","buildMeta":{"exportsType":"namespace","sideEffectFree":true},"expo.js":["convertToKeyframes","convertToStyles"]},"./node_modules/typestyle/lib.es2015/internal/typestyle.js":{"id":"./node_modules/typestyle/lib.es2015/internal/typestyle.js","buildMeta":{"exportsType":"namespace"},"expo.js":["TypeStyle"]},"./node_modules/typestyle/lib.es2015/internal/utilities.js":{"id":"./node_modules/typestyle/lib.es2015/internal/utilities.js","buildMeta":{"exportsType":"namespace"},"expo.js":["classes","extend","media","raf"]},"./node_modules/typestyle/lib.es2015/types.js":{"id":"./node_modules/typestyle/lib.es2015/types.js","buildMeta":{"sideEffectFree":true}},"./node_modules/vue/dist/vue.esm-bundler.js":{"id":"./node_modules/vue/dist/vue.esm-bundler.js","buildMeta":{"exportsType":"namespace"},"expo.js":["BaseTransition","Comment","EffectScope","Fragment","KeepAlive","ReactiveEffect","Static","Suspense","Teleport","Text","Transition","TransitionGroup","VueElement","assertNumber","callWithAsyncErrorHandling","callWithErrorHandling","camelize","capitalize","cloneVNode","compatUtils","compile","computed","createApp","createBlock","createCommentVNode","createElementBlock","createElementVNode","createHydrationRenderer","createPropsRestProxy","createRenderer","createSSRApp","createSlots","createStaticVNode","createTextVNode","createVNode","customRef","defineAsyncComponent","defineComponent","defineCustomElement","defineEmits","defineExpose","defineProps","defineSSRCustomElement","devtools","effect","effectScope","getCurrentInstance","getCurrentScope","getTransitionRawChildren","guardReactiveProps","h","handleError","hydrate","initCustomFormatter","initDirectivesForSSR","inject","isMemoSame","isProxy","isReactive","isReadonly","isRef","isRuntimeOnly","isShallow","isVNode","markRaw","mergeDefaults","mergeProps","nextTick","normalizeClass","normalizeProps","normalizeStyle","onActivated","onBeforeMount","onBeforeUnmount","onBeforeUpdate","onDeactivated","onErrorCaptured","onMounted","onRenderTracked","onRenderTriggered","onScopeDispose","onServerPrefetch","onUnmounted","onUpdated","openBlock","popScopeId","provide","proxyRefs","pushScopeId","queuePostFlushCb","reactive","readonly","ref","registerRuntimeCompiler","render","renderList","renderSlot","resolveComponent","resolveDirective","resolveDynamicComponent","resolveFilter","resolveTransitionHooks","setBlockTracking","setDevtoolsHook","setTransitionHooks","shallowReactive","shallowReadonly","shallowRef","ssrContextKey","ssrUtils","stop","toDisplayString","toHandlerKey","toHandlers","toRaw","toRef","toRefs","transformVNodeArgs","triggerRef","unref","useAttrs","useCssModule","useCssVars","useSSRContext","useSlots","useTransitionState","vModelCheckbox","vModelDynamic","vModelRadio","vModelSelect","vModelText","vShow","version","warn","watch","watchEffect","watchPostEffect","watchSyncEffect","withAsyncContext","withCtx","withDefaults","withDirectives","withKeys","withMemo","withModifiers","withScopeId"]},"./node_modules/zepto-webpack/zepto.js":{"id":"./node_modules/zepto-webpack/zepto.js","buildMeta":{}},"./wwwroot/scripts/zepto.extras.js":{"id":"./wwwroot/scripts/zepto.extras.js","buildMeta":{}}}}
|
@@ -1,3 +1,4 @@
|
|
1
|
+
import { TsxAllowUnknowProperties } from "@omnia/fx/ux";
|
1
2
|
import { GuidValue } from "../../models";
|
2
3
|
export interface IOmniaWPContainerSettings {
|
3
4
|
[name: string]: any;
|
@@ -5,13 +6,13 @@ export interface IOmniaWPContainerSettings {
|
|
5
6
|
onChange?: (blockManifestId: GuidValue, elementName: string) => void;
|
6
7
|
}
|
7
8
|
declare global {
|
8
|
-
namespace
|
9
|
+
namespace JSX {
|
9
10
|
interface Element {
|
10
11
|
}
|
11
12
|
interface ElementClass {
|
12
13
|
}
|
13
14
|
interface IntrinsicElements {
|
14
|
-
"omnia-fx-spfx-wp-settings": IOmniaWPContainerSettings
|
15
|
+
"omnia-fx-spfx-wp-settings": TsxAllowUnknowProperties<IOmniaWPContainerSettings>;
|
15
16
|
}
|
16
17
|
}
|
17
18
|
}
|
@@ -56,6 +56,8 @@ export * from "./filepickerprovider/mycomputerprovider";
|
|
56
56
|
export * from "./filterengine";
|
57
57
|
export * from "./use";
|
58
58
|
export * from "./tag";
|
59
|
+
export * from "./decorators";
|
60
|
+
export * from "./VueWebComponentSlot";
|
59
61
|
export * from "./TokenBasedRouter";
|
60
62
|
export * from "./StyleFlow";
|
61
63
|
export * from "./UxCoreTypings";
|
@@ -73,6 +75,5 @@ export * from "./AppRollupFilterEngineContext";
|
|
73
75
|
export { OmniaTheming } from "./OmniaTheming";
|
74
76
|
export type { FocusOption, ClickOutOption, ScrollOption, LinkHandlerOptions, } from "./directives";
|
75
77
|
export { FocusDirective, ClickOutDirective, ScrollDirective, LinkHandlerDirective, } from "./directives";
|
76
|
-
export { VueComponentBase,
|
78
|
+
export { VueComponentBase, definePropFunctionType, definePropObjectType, getVuetifyAppClasses, VueComponentConnect, defineVueComponent, } from "./VueComponentBase";
|
77
79
|
export type { VueComponentBaseProps, VueComponentBaseEvents, } from "./VueComponentBase";
|
78
|
-
export type { CombinedTsxComponentAttrs } from "vue-tsx-support/types/base";
|
@@ -1,30 +1,15 @@
|
|
1
|
-
import {
|
2
|
-
import { ComponentPublicInstance, ShallowUnwrapRef } from "vue";
|
1
|
+
import { ComputedOptions, MethodOptions, ComponentOptionsMixin, EmitsOptions, ComponentInjectOptions, ComponentOptionsWithArrayProps, ComponentPropsOptions, ComponentOptionsWithObjectProps, DefineComponent, ComponentObjectPropsOptions, ComponentOptionsWithoutProps, ExtractPropTypes } from "vue";
|
3
2
|
import { WebComponentBundleManifest } from "@omnia/fx-models";
|
4
|
-
|
5
|
-
|
6
|
-
import { InnerScopedSlots } from "vue-tsx-support";
|
7
|
-
import { TsxComponentTypeInfo } from "vue-tsx-support/types/base";
|
8
|
-
export type SetupContextExtend<PrefixedEvents = unknown, ScopedSlots = unknown, On = unknown> = SetupContext & {
|
9
|
-
slots: InnerScopedSlots<ScopedSlots>;
|
10
|
-
_tsx?: TsxComponentTypeInfo<{}, {}, PrefixedEvents, On>;
|
11
|
-
refs: {
|
12
|
-
[key: string]: Vue | Element | Vue[] | Element[];
|
13
|
-
};
|
14
|
-
readonly parent: Vue | null;
|
3
|
+
type TsxComponentV3<PropsOrPropOptions = {}, RawBindings = {}, D = {}, C extends ComputedOptions = ComputedOptions, M extends MethodOptions = MethodOptions, Mixin extends ComponentOptionsMixin = ComponentOptionsMixin, Extends extends ComponentOptionsMixin = ComponentOptionsMixin, E extends EmitsOptions = {}, EE extends string = string> = DefineComponent<PropsOrPropOptions, RawBindings, D, C, M, Mixin, Extends, E, EE> & {
|
4
|
+
propsDefinition: Readonly<PropsOrPropOptions extends ComponentPropsOptions ? ExtractPropTypes<PropsOrPropOptions> : PropsOrPropOptions>;
|
15
5
|
};
|
16
|
-
export
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
} & Pick<ComponentOptions<Vue>, "name" | "components" | "inheritAttrs" | "directives" | "filters"> & ThisType<ComponentPublicInstance<Props, RawBinding>>;
|
25
|
-
type _OmniaTsxComponentV3<V extends Vue, Attributes, Props, PrefixedEvents, On, ScopedSlotArgs> = VueConstructor<_TsxComponentInstanceV3<V, Attributes, Props, PrefixedEvents, On, ScopedSlotArgs>> & {
|
26
|
-
propsDefinition: Props;
|
27
|
-
};
|
28
|
-
export declare function defineVueWebComponent<Props, PropsDef extends RecordPropsDefinition<Props> = RecordPropsDefinition<Props>, PrefixedEvents = any, ScopedSlots = any, On = any, RawBinding = any, RequiredProps extends keyof Props = RequiredPropNames<PropsDef> & keyof Props>(options: CompositionComponentOptions<Props, PropsDef, PrefixedEvents, ScopedSlots, On> | CompositionComponentOptionsWithRender<Props, PropsDef, PrefixedEvents, ScopedSlots, On, RawBinding>, register?: (manifest: WebComponentBundleManifest, component: _TsxComponentV3<Vue, {}, PropsForOutside<Props, RequiredProps>, PrefixedEvents, On, ScopedSlots>) => void): _OmniaTsxComponentV3<Vue, {}, PropsForOutside<Props, RequiredProps>, PrefixedEvents, On, ScopedSlots> | _OmniaTsxComponentV3<Vue & ShallowUnwrapRef<RawBinding>, {}, PropsForOutside<Props, RequiredProps>, PrefixedEvents, On, ScopedSlots>;
|
6
|
+
export declare function defineVueWebComponent<Props = {}, RawBindings = {}, D = {}, C extends ComputedOptions = {}, M extends MethodOptions = {}, Mixin extends ComponentOptionsMixin = ComponentOptionsMixin, Extends extends ComponentOptionsMixin = ComponentOptionsMixin, E extends EmitsOptions = {}, EE extends string = string, I extends ComponentInjectOptions = {}, II extends string = string>(options: ComponentOptionsWithoutProps<Props, RawBindings, D, C, M, Mixin, Extends, E, EE, I, II>, register?: (manifest: WebComponentBundleManifest, component: TsxComponentV3<Props, RawBindings, D, C, M, Mixin, Extends, E, EE>) => void): TsxComponentV3<Props, RawBindings, D, C, M, Mixin, Extends, E, EE>;
|
7
|
+
export declare function defineVueWebComponent<Props extends Object, RawBindings = {}, D = {}, C extends ComputedOptions = {}, M extends MethodOptions = {}, Mixin extends ComponentOptionsMixin = ComponentOptionsMixin, Extends extends ComponentOptionsMixin = ComponentOptionsMixin, E extends EmitsOptions = {}, EE extends string = string, I extends ComponentInjectOptions = {}, II extends string = string>(options: ComponentOptionsWithObjectProps<ComponentObjectPropsOptions<Props>, RawBindings, D, C, M, Mixin, Extends, E, EE, I, II>, register?: (manifest: WebComponentBundleManifest, component: TsxComponentV3<Props, RawBindings, D, C, M, Mixin, Extends, E, EE>) => void): TsxComponentV3<ComponentObjectPropsOptions<Props>, RawBindings, D, C, M, Mixin, Extends, E, EE>;
|
8
|
+
export declare function defineVueWebComponent<PropNames extends string, RawBindings, D, C extends ComputedOptions = {}, M extends MethodOptions = {}, Mixin extends ComponentOptionsMixin = ComponentOptionsMixin, Extends extends ComponentOptionsMixin = ComponentOptionsMixin, E extends EmitsOptions = {}, EE extends string = string, I extends ComponentInjectOptions = {}, II extends string = string>(options: ComponentOptionsWithArrayProps<PropNames, RawBindings, D, C, M, Mixin, Extends, E, EE, I, II>, register?: (manifest: WebComponentBundleManifest, component: TsxComponentV3<Readonly<{
|
9
|
+
[key in PropNames]?: any;
|
10
|
+
}>, RawBindings, D, C, M, Mixin, Extends, E, EE>) => void): TsxComponentV3<Readonly<{
|
11
|
+
[key in PropNames]?: any;
|
12
|
+
}>, RawBindings, D, C, M, Mixin, Extends, E, EE>;
|
13
|
+
export declare function defineVueWebComponent<PropsOptions extends Readonly<ComponentPropsOptions>, RawBindings, D, C extends ComputedOptions = {}, M extends MethodOptions = {}, Mixin extends ComponentOptionsMixin = ComponentOptionsMixin, Extends extends ComponentOptionsMixin = ComponentOptionsMixin, E extends EmitsOptions = {}, EE extends string = string, I extends ComponentInjectOptions = {}, II extends string = string>(options: ComponentOptionsWithObjectProps<PropsOptions, RawBindings, D, C, M, Mixin, Extends, E, EE, I, II>, register?: (manifest: WebComponentBundleManifest, component: TsxComponentV3<PropsOptions, RawBindings, D, C, M, Mixin, Extends, E, EE>) => void): TsxComponentV3<PropsOptions, RawBindings, D, C, M, Mixin, Extends, E, EE>;
|
29
14
|
export declare function internaldefineVueWebComponent(omniaServiceId: any, manifestId: any, options: any, register?: (manifest: WebComponentBundleManifest, component: any) => void): any;
|
30
15
|
export {};
|
@@ -1,3 +1,6 @@
|
|
1
|
-
|
2
|
-
|
1
|
+
import { GuidValue } from "@omnia/fx-models";
|
2
|
+
import { VueComponentBaseProps } from "./VueComponentBase";
|
3
|
+
export type TsxAllowUnknowProperties<T extends {}> = T & Omit<VueComponentBaseProps, "placeholder" | "key" | "onChange" | "property"> & {
|
4
|
+
key?: string | number | GuidValue;
|
5
|
+
dark?: boolean;
|
3
6
|
};
|
@@ -1,12 +1,9 @@
|
|
1
|
-
import
|
2
|
-
import
|
1
|
+
import { VNode, PropType, VNodeProps, VNodeArrayChildren, ComputedOptions, MethodOptions, ComponentOptionsMixin, EmitsOptions, ComponentInjectOptions, DefineComponent, ComponentOptionsWithArrayProps, ComponentPropsOptions, ComponentOptionsWithObjectProps, ComponentObjectPropsOptions, ComponentOptionsWithoutProps, ExtractPropTypes, ObjectEmitsOptions, HTMLAttributes } from "vue";
|
2
|
+
import { Vue } from "./decorators";
|
3
3
|
import type { IComponentValidationEnabled, IValidator } from "./validation/IComponentValidationEnabled";
|
4
4
|
import { ConfirmDialogResponse, ConfirmDialogOptions } from "./confirmdialog/IVueConfirmDialog";
|
5
5
|
import { ITheming } from "./theming";
|
6
6
|
import * as models from "../models";
|
7
|
-
import { RecordPropsDefinition } from "vue/types/options";
|
8
|
-
import { PropsForOutside, RequiredPropNames, _TsxComponentV3 } from "vue-tsx-support";
|
9
|
-
import { CompositionComponentOptions } from "vue-tsx-support/lib/vca";
|
10
7
|
type VuetifyThemeItem = string | number | {
|
11
8
|
base: string | number;
|
12
9
|
lighten5: string | number;
|
@@ -32,19 +29,100 @@ interface VuetifyTheme {
|
|
32
29
|
type InheritanceTheme = {
|
33
30
|
id: string;
|
34
31
|
};
|
32
|
+
interface VNodeDataV2 {
|
33
|
+
key?: string | number;
|
34
|
+
slot?: string;
|
35
|
+
scopedSlots?: {
|
36
|
+
[key: string]: any | undefined;
|
37
|
+
};
|
38
|
+
ref?: string;
|
39
|
+
refInFor?: boolean;
|
40
|
+
tag?: string;
|
41
|
+
staticClass?: string;
|
42
|
+
class?: any;
|
43
|
+
staticStyle?: {
|
44
|
+
[key: string]: any;
|
45
|
+
};
|
46
|
+
style?: string | object[] | object;
|
47
|
+
props?: {
|
48
|
+
[key: string]: any;
|
49
|
+
};
|
50
|
+
attrs?: {
|
51
|
+
[key: string]: any;
|
52
|
+
};
|
53
|
+
domProps?: {
|
54
|
+
[key: string]: any;
|
55
|
+
};
|
56
|
+
hook?: {
|
57
|
+
[key: string]: Function;
|
58
|
+
};
|
59
|
+
on?: {
|
60
|
+
[key: string]: Function | Function[];
|
61
|
+
};
|
62
|
+
nativeOn?: {
|
63
|
+
[key: string]: Function | Function[];
|
64
|
+
};
|
65
|
+
transition?: object;
|
66
|
+
show?: boolean;
|
67
|
+
inlineTemplate?: {
|
68
|
+
render: Function;
|
69
|
+
staticRenderFns: Function[];
|
70
|
+
};
|
71
|
+
directives?: any[];
|
72
|
+
keepAlive?: boolean;
|
73
|
+
}
|
74
|
+
type RawProps = VNodeProps & {
|
75
|
+
__v_isVNode?: never;
|
76
|
+
[Symbol.iterator]?: never;
|
77
|
+
} & Record<string, any>;
|
78
|
+
type RawChildren = string | number | boolean | VNode | VNodeArrayChildren | (() => any);
|
79
|
+
type KnownAttrs = Pick<VNodeDataV2, "class" | "staticClass" | "key" | "ref" | "slot" | "scopedSlots"> & {
|
80
|
+
style?: VNodeDataV2["style"] | string;
|
81
|
+
id?: string;
|
82
|
+
refInFor?: boolean;
|
83
|
+
domPropsInnerHTML?: string;
|
84
|
+
};
|
85
|
+
type ScopedSlot = (props: any) => ScopedSlotReturnValue;
|
86
|
+
type ScopedSlotReturnValue = VNode | string | boolean | null | undefined | ScopedSlotReturnArray;
|
87
|
+
interface ScopedSlotReturnArray extends Array<ScopedSlotReturnValue> {
|
88
|
+
}
|
89
|
+
type ScopedSlotReturnType = ReturnType<ScopedSlot>;
|
90
|
+
type ScopedSlots<T> = {
|
91
|
+
[K in keyof T]: (props: Exclude<T[K], undefined>) => ScopedSlotReturnType;
|
92
|
+
};
|
93
|
+
type EmitsToProps<T extends EmitsOptions> = T extends string[] ? {
|
94
|
+
[K in string & `on${Capitalize<T[number]>}`]?: (...args: any[]) => any;
|
95
|
+
} : T extends ObjectEmitsOptions ? {
|
96
|
+
[K in string & `on${Capitalize<string & keyof T>}`]?: K extends `on${infer C}` ? T[Uncapitalize<C>] extends null ? (...args: any[]) => any : (...args: T[Uncapitalize<C>] extends (...args: infer P) => any ? P : never) => any : never;
|
97
|
+
} : {};
|
98
|
+
interface ComponentAdditionalAttrs {
|
99
|
+
}
|
100
|
+
type EventHandlers<E> = {
|
101
|
+
[K in keyof E]?: E[K] extends Function ? E[K] : (payload: E[K]) => void;
|
102
|
+
};
|
103
|
+
type TsxComponentAttrs<TProps = {}, TEvents = {}, TScopedSlots = {}> = ({
|
104
|
+
props: TProps;
|
105
|
+
} & Partial<TProps> & KnownAttrs & {
|
106
|
+
scopedSlots?: ScopedSlots<TScopedSlots>;
|
107
|
+
} & EventHandlers<TEvents> & ComponentAdditionalAttrs) | (TProps & KnownAttrs & {
|
108
|
+
scopedSlots?: ScopedSlots<TScopedSlots>;
|
109
|
+
} & EventHandlers<TEvents> & ComponentAdditionalAttrs);
|
110
|
+
declare class VueTsx<Props, EventsWithOn = {}, ScopedSlotArgs = {}> extends Vue {
|
111
|
+
$props: TsxComponentAttrs<Props, EventsWithOn, ScopedSlotArgs>;
|
112
|
+
}
|
35
113
|
export interface VSlot {
|
36
114
|
[name: string]: (ref?: any) => Array<JSX.Element>;
|
37
115
|
}
|
38
|
-
export interface IVueComponentBase<Props = VueComponentBaseProps, EventsWithOn = VueComponentBaseEvents, ScopedSlotArgs = {}> extends
|
116
|
+
export interface IVueComponentBase<Props = VueComponentBaseProps, EventsWithOn = VueComponentBaseEvents, ScopedSlotArgs = {}> extends VueTsx<Props, EventsWithOn, ScopedSlotArgs> {
|
39
117
|
theming: ITheming;
|
40
118
|
breakpoint: models.Breakpoint;
|
41
119
|
theme: VuetifyTheme;
|
42
120
|
$confirm: {
|
43
121
|
open: (options?: ConfirmDialogOptions) => Promise<ConfirmDialogResponse>;
|
44
122
|
};
|
45
|
-
|
123
|
+
createVueNode(element: string | models.GuidValue, props?: RawProps, children?: RawChildren, onComponentCreated?: (instance: any) => void): VNode;
|
46
124
|
}
|
47
|
-
export interface VueComponentBaseProps {
|
125
|
+
export interface VueComponentBaseProps extends Omit<HTMLAttributes, "placeholder" | "key" | "onChange" | "property"> {
|
48
126
|
themeTargetId?: string | models.GuidValue;
|
49
127
|
themeDefinitionId?: string | models.GuidValue;
|
50
128
|
themeDefinition?: object;
|
@@ -52,19 +130,19 @@ export interface VueComponentBaseProps {
|
|
52
130
|
color?: string;
|
53
131
|
useValidator?: IValidator;
|
54
132
|
key?: string;
|
133
|
+
$children?: any;
|
55
134
|
}
|
56
135
|
export interface VueComponentBaseEvents {
|
57
136
|
}
|
58
|
-
export declare function defineProps<T>(props: RecordPropsDefinition<T>): RecordPropsDefinition<T>;
|
59
137
|
export declare function definePropFunctionType<T>(): PropType<T>;
|
60
138
|
export declare function definePropObjectType<T>(): PropType<T>;
|
61
|
-
export declare class VueComponentBase<Props = VueComponentBaseProps, EventsWithOn = VueComponentBaseEvents, ScopedSlotArgs = {}> extends
|
139
|
+
export declare class VueComponentBase<Props = VueComponentBaseProps | {}, EventsWithOn = VueComponentBaseEvents, ScopedSlotArgs = {}> extends VueTsx<Props, EventsWithOn, ScopedSlotArgs> implements IVueComponentBase<Props, EventsWithOn, ScopedSlotArgs>, IComponentValidationEnabled {
|
62
140
|
inheritanceTheme?: InheritanceTheme;
|
63
141
|
themeTargetId?: string;
|
64
142
|
themeDefinitionId?: string;
|
65
143
|
themeDefinition?: models.ThemeDefinition;
|
66
144
|
onComponentCreated?: (instance: any) => void;
|
67
|
-
useValidator
|
145
|
+
useValidator?: IValidator;
|
68
146
|
private omniaCurrentTheming;
|
69
147
|
private validations;
|
70
148
|
constructor();
|
@@ -88,15 +166,26 @@ export declare class VueComponentBase<Props = VueComponentBaseProps, EventsWithO
|
|
88
166
|
* Create Vnode from manifets id.
|
89
167
|
* @param elementName that use to fallback in the case old data migration have not valid componentManifestId
|
90
168
|
*/
|
91
|
-
createElementByManifestId(componentManifestId: models.GuidValue,
|
169
|
+
createElementByManifestId(componentManifestId: models.GuidValue, props?: RawProps, children?: RawChildren, onComponentCreated?: (instance: any) => void): VNode;
|
170
|
+
createVueNode(element: string | models.GuidValue, props?: RawProps, children?: RawChildren, onComponentCreated?: (instance: any) => void): VNode;
|
92
171
|
getElementNameByManifestId(manifestId: models.GuidValue): string;
|
93
172
|
}
|
94
173
|
export declare function getVuetifyAppClasses(): string;
|
95
174
|
export interface VueComponentConnectProps {
|
96
175
|
content: () => JSX.Element;
|
97
176
|
}
|
98
|
-
export declare function defineVueComponent<Props,
|
99
|
-
export declare
|
100
|
-
|
101
|
-
|
177
|
+
export declare function defineVueComponent<Props = {}, RawBindings = {}, D = {}, C extends ComputedOptions = {}, M extends MethodOptions = {}, Mixin extends ComponentOptionsMixin = ComponentOptionsMixin, Extends extends ComponentOptionsMixin = ComponentOptionsMixin, E extends EmitsOptions = {}, EE extends string = string, I extends ComponentInjectOptions = {}, II extends string = string>(options: ComponentOptionsWithoutProps<Props, RawBindings, D, C, M, Mixin, Extends, E, EE, I, II>): DefineComponent<Props, RawBindings, D, C, M, Mixin, Extends, E, EE>;
|
178
|
+
export declare function defineVueComponent<Props extends Object, RawBindings = {}, D = {}, C extends ComputedOptions = {}, M extends MethodOptions = {}, Mixin extends ComponentOptionsMixin = ComponentOptionsMixin, Extends extends ComponentOptionsMixin = ComponentOptionsMixin, E extends EmitsOptions = {}, EE extends string = string, I extends ComponentInjectOptions = {}, II extends string = string>(options: ComponentOptionsWithObjectProps<ComponentObjectPropsOptions<Props>, RawBindings, D, C, M, Mixin, Extends, E, EE, I, II, Readonly<ExtractPropTypes<ComponentObjectPropsOptions<Props>>> & EmitsToProps<E>>): DefineComponent<ComponentObjectPropsOptions<Props>, RawBindings, D, C, M, Mixin, Extends, E, EE>;
|
179
|
+
export declare function defineVueComponent<PropNames extends string, RawBindings, D, C extends ComputedOptions = {}, M extends MethodOptions = {}, Mixin extends ComponentOptionsMixin = ComponentOptionsMixin, Extends extends ComponentOptionsMixin = ComponentOptionsMixin, E extends EmitsOptions = {}, EE extends string = string, I extends ComponentInjectOptions = {}, II extends string = string>(options: ComponentOptionsWithArrayProps<PropNames, RawBindings, D, C, M, Mixin, Extends, E, EE, I, II>): DefineComponent<Readonly<{
|
180
|
+
[key in PropNames]?: any;
|
181
|
+
}>, RawBindings, D, C, M, Mixin, Extends, E, EE>;
|
182
|
+
export declare function defineVueComponent<PropsOptions extends Readonly<ComponentPropsOptions>, RawBindings, D, C extends ComputedOptions = {}, M extends MethodOptions = {}, Mixin extends ComponentOptionsMixin = ComponentOptionsMixin, Extends extends ComponentOptionsMixin = ComponentOptionsMixin, E extends EmitsOptions = {}, EE extends string = string, I extends ComponentInjectOptions = {}, II extends string = string>(options: ComponentOptionsWithObjectProps<PropsOptions, RawBindings, D, C, M, Mixin, Extends, E, EE, I, II>): DefineComponent<PropsOptions, RawBindings, D, C, M, Mixin, Extends, E, EE>;
|
183
|
+
export declare const VueComponentConnect: DefineComponent<ComponentObjectPropsOptions<VueComponentConnectProps>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<ExtractPropTypes<ComponentObjectPropsOptions<VueComponentConnectProps>>>, {}>;
|
184
|
+
declare global {
|
185
|
+
namespace JSX {
|
186
|
+
interface IntrinsicAttributes {
|
187
|
+
$children?: {};
|
188
|
+
}
|
189
|
+
}
|
190
|
+
}
|
102
191
|
export {};
|
@@ -1,10 +1,9 @@
|
|
1
|
-
import
|
2
|
-
import * as tsx from "vue-tsx-support";
|
1
|
+
import { VueComponentBase } from "./VueComponentBase";
|
3
2
|
export interface VueWebComponentSlotProperties {
|
4
|
-
providedBy:
|
3
|
+
providedBy: any;
|
5
4
|
wcSlot?: string;
|
6
5
|
}
|
7
|
-
export declare class VueWebComponentSlot extends
|
6
|
+
export declare class VueWebComponentSlot extends VueComponentBase<VueWebComponentSlotProperties> {
|
8
7
|
providedBy: any;
|
9
8
|
wcSlot: string;
|
10
9
|
private renderDefault;
|
@@ -5,7 +5,7 @@ import { VueComponentBase } from "../../index";
|
|
5
5
|
import { InputLanguageStore } from "../../inputlanguagepicker/stores";
|
6
6
|
import "./AdminChrome.css";
|
7
7
|
type AdminNavCategory = AdminNavigationBuiltInCategory | string;
|
8
|
-
export
|
8
|
+
export declare class AdminChromeComponent extends VueComponentBase implements IWebComponentInstance {
|
9
9
|
private omniaContext;
|
10
10
|
private localizationService;
|
11
11
|
private permissionService;
|
@@ -51,9 +51,9 @@ export default class AdminChromeComponent extends VueComponentBase implements IW
|
|
51
51
|
private handleScroll;
|
52
52
|
private renderAppBar;
|
53
53
|
private getValidNodes;
|
54
|
-
render():
|
55
|
-
renderListItem(selectedNode: NavigationNode, node: NavigationNode):
|
56
|
-
renderCategory(validNodes: NavigationNode[], category: AdminNavCategory, selectedNode: NavigationNode):
|
57
|
-
renderAccessDeny():
|
54
|
+
render(): JSX.Element;
|
55
|
+
renderListItem(selectedNode: NavigationNode, node: NavigationNode): JSX.Element;
|
56
|
+
renderCategory(validNodes: NavigationNode[], category: AdminNavCategory, selectedNode: NavigationNode): JSX.Element;
|
57
|
+
renderAccessDeny(): JSX.Element;
|
58
58
|
}
|
59
59
|
export {};
|
@@ -29,6 +29,6 @@ export declare class AddBlade extends VueComponentBase<AddProperiesBladeProps> {
|
|
29
29
|
onTravelBack(): void;
|
30
30
|
onAddProperty(): void;
|
31
31
|
onRemoveFromList(res: ConfirmDialogResponse, item: EnterprisePropertyDefinition): void;
|
32
|
-
render():
|
33
|
-
renderItems():
|
32
|
+
render(): JSX.Element;
|
33
|
+
renderItems(): JSX.Element;
|
34
34
|
}
|
@@ -39,8 +39,8 @@ export declare class HomeBlade extends VueComponentBase<EditProperiesBladeProps>
|
|
39
39
|
addQueryableProperties(properties: EnterprisePropertyDefinition[]): Promise<void>;
|
40
40
|
private pollingStatus;
|
41
41
|
get hasPendingStatus(): boolean;
|
42
|
-
render():
|
43
|
-
renderActionButon(item: EnterprisePropertyDefinitionViewModel):
|
44
|
-
renderInformation(item: EnterprisePropertyDefinitionViewModel):
|
42
|
+
render(): JSX.Element;
|
43
|
+
renderActionButon(item: EnterprisePropertyDefinitionViewModel): JSX.Element | JSX.Element[];
|
44
|
+
renderInformation(item: EnterprisePropertyDefinitionViewModel): JSX.Element[];
|
45
45
|
}
|
46
46
|
export {};
|
@@ -1,32 +1,78 @@
|
|
1
1
|
import { AppInstanceInfoUser, AppInstanceRollupBlockSettings, IBlockInstance } from "@omnia/fx/models";
|
2
2
|
import "./AppInstanceRollup.css";
|
3
|
-
declare const _default:
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
3
|
+
declare const _default: {
|
4
|
+
new (...args: any[]): {
|
5
|
+
$: import("vue").ComponentInternalInstance;
|
6
|
+
$data: {};
|
7
|
+
$props: Partial<{}> & Omit<Readonly<import("vue").ExtractPropTypes<import("vue").ComponentObjectPropsOptions<{
|
8
|
+
hideBlock: (hidden: boolean) => void;
|
9
|
+
appDefinitionId: string;
|
10
|
+
settings: AppInstanceRollupBlockSettings;
|
11
|
+
blockInstance: IBlockInstance<AppInstanceRollupBlockSettings>;
|
12
|
+
onFollowAppInstanceClicked: (appInstanceInfoUser: AppInstanceInfoUser) => void;
|
13
|
+
}>>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>;
|
14
|
+
$attrs: {
|
15
|
+
[x: string]: unknown;
|
16
|
+
};
|
17
|
+
$refs: {
|
18
|
+
[x: string]: unknown;
|
19
|
+
};
|
20
|
+
$slots: Readonly<{
|
21
|
+
[name: string]: import("vue").Slot;
|
22
|
+
}>;
|
23
|
+
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
24
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
25
|
+
$emit: (event: string, ...args: any[]) => void;
|
26
|
+
$el: any;
|
27
|
+
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<import("vue").ComponentObjectPropsOptions<{
|
28
|
+
hideBlock: (hidden: boolean) => void;
|
29
|
+
appDefinitionId: string;
|
30
|
+
settings: AppInstanceRollupBlockSettings;
|
31
|
+
blockInstance: IBlockInstance<AppInstanceRollupBlockSettings>;
|
32
|
+
onFollowAppInstanceClicked: (appInstanceInfoUser: AppInstanceInfoUser) => void;
|
33
|
+
}>>>, () => JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string> & {
|
34
|
+
beforeCreate?: (() => void) | (() => void)[];
|
35
|
+
created?: (() => void) | (() => void)[];
|
36
|
+
beforeMount?: (() => void) | (() => void)[];
|
37
|
+
mounted?: (() => void) | (() => void)[];
|
38
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
39
|
+
updated?: (() => void) | (() => void)[];
|
40
|
+
activated?: (() => void) | (() => void)[];
|
41
|
+
deactivated?: (() => void) | (() => void)[];
|
42
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
43
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
44
|
+
destroyed?: (() => void) | (() => void)[];
|
45
|
+
unmounted?: (() => void) | (() => void)[];
|
46
|
+
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
47
|
+
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
48
|
+
errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void)[];
|
49
|
+
};
|
50
|
+
$forceUpdate: () => void;
|
51
|
+
$nextTick: typeof import("vue").nextTick;
|
52
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean>): import("vue").WatchStopHandle;
|
53
|
+
} & Readonly<import("vue").ExtractPropTypes<import("vue").ComponentObjectPropsOptions<{
|
11
54
|
hideBlock: (hidden: boolean) => void;
|
12
55
|
appDefinitionId: string;
|
13
56
|
settings: AppInstanceRollupBlockSettings;
|
14
57
|
blockInstance: IBlockInstance<AppInstanceRollupBlockSettings>;
|
15
58
|
onFollowAppInstanceClicked: (appInstanceInfoUser: AppInstanceInfoUser) => void;
|
16
|
-
}
|
17
|
-
|
59
|
+
}>>> & import("vue").ShallowUnwrapRef<() => JSX.Element> & {} & import("vue").ComponentCustomProperties & {};
|
60
|
+
__isFragment?: never;
|
61
|
+
__isTeleport?: never;
|
62
|
+
__isSuspense?: never;
|
63
|
+
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<import("vue").ComponentObjectPropsOptions<{
|
18
64
|
hideBlock: (hidden: boolean) => void;
|
19
65
|
appDefinitionId: string;
|
20
66
|
settings: AppInstanceRollupBlockSettings;
|
21
67
|
blockInstance: IBlockInstance<AppInstanceRollupBlockSettings>;
|
22
68
|
onFollowAppInstanceClicked: (appInstanceInfoUser: AppInstanceInfoUser) => void;
|
23
|
-
},
|
24
|
-
propsDefinition: import("vue
|
69
|
+
}>>>, () => JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
70
|
+
propsDefinition: Readonly<import("vue").ExtractPropTypes<import("vue").ComponentObjectPropsOptions<{
|
25
71
|
hideBlock: (hidden: boolean) => void;
|
26
72
|
appDefinitionId: string;
|
27
73
|
settings: AppInstanceRollupBlockSettings;
|
28
74
|
blockInstance: IBlockInstance<AppInstanceRollupBlockSettings>;
|
29
75
|
onFollowAppInstanceClicked: (appInstanceInfoUser: AppInstanceInfoUser) => void;
|
30
|
-
}
|
31
|
-
}
|
76
|
+
}>>>;
|
77
|
+
};
|
32
78
|
export default _default;
|
@@ -12,6 +12,6 @@ export declare class HeaderRenderer extends VueComponentBase<HeaderRendererProps
|
|
12
12
|
multilingualStore: MultilingualStore;
|
13
13
|
protected omniaUxLoc: OmniaUxLocalization;
|
14
14
|
private renderBlockTitle;
|
15
|
-
render():
|
15
|
+
render(): JSX.Element;
|
16
16
|
}
|
17
17
|
export {};
|