@omnia/fx 8.0.27-vnext → 8.0.29-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/contexts/index.d.ts +0 -1
- package/internal-do-not-import-from-here/core/messaging/BuiltInTopics.d.ts +1 -0
- package/internal-do-not-import-from-here/core/utils/gpt3utils/Encoder.d.ts +50259 -0
- package/internal-do-not-import-from-here/core/utils/gpt3utils/GPT3Utils.d.ts +5 -0
- package/internal-do-not-import-from-here/core/utils/gpt3utils/Vocab.d.ts +1 -0
- package/internal-do-not-import-from-here/core/utils/gpt3utils/index.d.ts +1 -0
- package/internal-do-not-import-from-here/core/utils/index.d.ts +1 -0
- package/internal-do-not-import-from-here/index.d.ts +1 -1
- package/internal-do-not-import-from-here/manifests/omnia.fx.context.manifest.json +1 -1
- package/internal-do-not-import-from-here/manifests/omnia.fx.core.manifest.json +1 -1
- 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.fx.ux.richtexteditor.manifest.json +1 -1
- package/internal-do-not-import-from-here/services/AzureOpenAIService.d.ts +22 -0
- package/internal-do-not-import-from-here/services/FeatureService.d.ts +1 -0
- package/internal-do-not-import-from-here/services/identities/IdentityService.d.ts +4 -1
- package/internal-do-not-import-from-here/services/identities/UserIdentityService.d.ts +3 -2
- package/internal-do-not-import-from-here/services/identities/UserService.d.ts +3 -3
- package/internal-do-not-import-from-here/services/index.d.ts +2 -0
- package/internal-do-not-import-from-here/services/permissions/PermissionService.d.ts +2 -1
- package/internal-do-not-import-from-here/services/properties/EnterprisePropertiesProvider.d.ts +45 -0
- package/internal-do-not-import-from-here/services/properties/bindings/PropertyBindingService.d.ts +17 -0
- package/internal-do-not-import-from-here/services/properties/bindings/index.d.ts +2 -0
- package/internal-do-not-import-from-here/services/properties/bindings/providers/ExtendedEnterprisePropertyBindingProvider.d.ts +9 -0
- package/internal-do-not-import-from-here/services/properties/bindings/providers/IdentityPropertyBindingProvider.d.ts +10 -0
- package/internal-do-not-import-from-here/services/properties/bindings/providers/index.d.ts +2 -0
- package/internal-do-not-import-from-here/services/properties/datasource/DataSourcePropertiesService.d.ts +79 -0
- package/internal-do-not-import-from-here/services/properties/datasource/DataSourcePropertyDefinitionHandler.d.ts +35 -0
- package/internal-do-not-import-from-here/services/properties/datasource/DataSourcePropertyProvider.d.ts +49 -0
- package/internal-do-not-import-from-here/services/properties/datasource/TestDataSourceService.d.ts +6 -0
- package/internal-do-not-import-from-here/services/properties/datasource/index.d.ts +4 -0
- package/internal-do-not-import-from-here/services/properties/index.d.ts +3 -0
- package/internal-do-not-import-from-here/shared/models/theming/BlueprintDefinition.d.ts +4 -2
- package/internal-do-not-import-from-here/shared/models/theming/BlueprintDefinition.js +2 -0
- package/internal-do-not-import-from-here/stores/EnterprisePropertyStore.d.ts +3 -2
- package/internal-do-not-import-from-here/stores/FeatureStore.d.ts +1 -0
- package/internal-do-not-import-from-here/stores/IdentityStore.d.ts +1 -1
- package/internal-do-not-import-from-here/stores/IdentitySyncProviderStore.d.ts +1 -0
- package/internal-do-not-import-from-here/stores/UserIdentityStore.d.ts +8 -2
- package/internal-do-not-import-from-here/ux/AppRollupFilterEngineContext.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/Exposes.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/ListViewComponentBase.d.ts +6 -0
- package/internal-do-not-import-from-here/ux/ScrollHelper.d.ts +28 -0
- package/internal-do-not-import-from-here/ux/SidePanelContext.d.ts +4 -3
- package/internal-do-not-import-from-here/ux/UxModels.d.ts +99 -15
- package/internal-do-not-import-from-here/ux/VueComponentBase.d.ts +2 -3
- package/internal-do-not-import-from-here/ux/app/AppPropertiesProvider.d.ts +29 -17
- package/internal-do-not-import-from-here/ux/app/appinstance/view/listing/ListView.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/app/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/app/management/core/loc.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/app/management/tabs/namingpolicies/ListingNamingPolicies.d.ts +0 -4
- package/internal-do-not-import-from-here/ux/app/management/tabs/templates/tabs/PropertyRow.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/authsetup/AuthSetup.css.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/authsetup/loc/localize.d.ts +6 -0
- package/internal-do-not-import-from-here/ux/authsetup/services/AuthSetupService.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/datetimepicker/DateTimePicker.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/datetimezonepicker/DateTimeZonePicker.d.ts +11 -11
- package/internal-do-not-import-from-here/ux/datetimezonepicker/IDateTimeZonePicker.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/datetimezonerenderer/DateTimeZoneRenderer.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/datetimezonerenderer/IDateTimeZoneRenderer.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/editorchrome/chrome/EditorChrome.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/enterpriseproperties/EnterprisePropertyComponentProps.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/enterpriseproperties/edit/tagsproperty/TagsPropertyEdit.d.ts +2 -1
- package/internal-do-not-import-from-here/ux/features/FeatureActivation.d.ts +4 -2
- package/internal-do-not-import-from-here/ux/features/loc/localize.d.ts +6 -0
- package/internal-do-not-import-from-here/ux/filterengine/FilterEngineHandlerStorage.d.ts +4 -1
- package/internal-do-not-import-from-here/ux/filterengine/FilterEngineRenderer.d.ts +6 -1
- package/internal-do-not-import-from-here/ux/filterengine/Helper.d.ts +2 -1
- package/internal-do-not-import-from-here/ux/{properties/property-renderer/PropertyDatasourceRenderer.d.ts → filterengine/components/renderer/PropertyDropdownRenderer.d.ts} +16 -21
- package/internal-do-not-import-from-here/ux/{user/components/PropertyConfigurationRenderer.d.ts → filterengine/components/renderer/PropertyListRenderer.d.ts} +11 -11
- package/internal-do-not-import-from-here/ux/filterengine/components/renderer/person/PersonPropertyChipItem.d.ts +160 -26
- package/internal-do-not-import-from-here/ux/filterengine/components/renderer/person/PersonPropertyItemRenderer.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/filterengine/components/renderer/person/PersonPropertyRenderer.d.ts +5 -0
- package/internal-do-not-import-from-here/ux/filterengine/components/renderer/tags/TagsPropertyRenderer.d.ts +57 -0
- package/internal-do-not-import-from-here/ux/filterengine/components/renderer/tags/TagsPropertyRendererStyle.css.d.ts +4 -0
- package/internal-do-not-import-from-here/ux/filterengine/components/selectionsarea/tags/SelectionsAreaTagsRenderer.d.ts +62 -0
- package/internal-do-not-import-from-here/ux/filterengine/components/settings/number/NumberPropertySettingsFixer.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/filterengine/components/settings/tags/TagsPropertyDefaultValueInput.d.ts +85 -0
- package/internal-do-not-import-from-here/ux/filterengine/components/settings/tags/TagsPropertySettings.d.ts +90 -0
- package/internal-do-not-import-from-here/ux/filterengine/components/settings/tags/TagsPropertySettingsFixer.d.ts +4 -0
- package/internal-do-not-import-from-here/ux/filterengine/components/settings/text/TextPropertySettingsFixer.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/filterengine/handler/FilterEngineHandler.d.ts +8 -8
- package/internal-do-not-import-from-here/ux/filterengine/handler/TagsFilterEngineHandler.d.ts +37 -0
- package/internal-do-not-import-from-here/ux/filterengine/shared/BasePropertySettings.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/identities/loc/Localize.d.ts +10 -9
- package/internal-do-not-import-from-here/ux/identitypicker/IdentityPicker.css.d.ts +3 -10
- package/internal-do-not-import-from-here/ux/identitypicker/IdentityPicker.d.ts +30 -65
- package/internal-do-not-import-from-here/ux/identitypicker/IdentityPickerButton.d.ts +152 -0
- package/internal-do-not-import-from-here/ux/identitypicker/IdentityPickerDialog.d.ts +132 -0
- package/internal-do-not-import-from-here/ux/identitypicker/IdentityPickerField.d.ts +177 -0
- package/internal-do-not-import-from-here/ux/identitypicker/IdentityPickerInlineField.d.ts +182 -0
- package/internal-do-not-import-from-here/ux/imagegrid/IImageGrid.d.ts +2 -1
- package/internal-do-not-import-from-here/ux/imagegrid/ImageGrid.d.ts +3 -2
- package/internal-do-not-import-from-here/ux/imagegrid/loc/localize.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/journey/index.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/journey/testbench/JourneyTest.d.ts +52 -0
- package/internal-do-not-import-from-here/ux/journey/v2/JourneyBlade.css.d.ts +7 -0
- package/internal-do-not-import-from-here/ux/journey/v2/JourneyBlade.d.ts +153 -0
- package/internal-do-not-import-from-here/ux/journey/v2/JourneyV2.css.d.ts +4 -0
- package/internal-do-not-import-from-here/ux/journey/v2/JourneyV2.d.ts +46 -0
- package/internal-do-not-import-from-here/ux/journey/v2/models/BladeInstance.d.ts +5 -0
- package/internal-do-not-import-from-here/ux/journey/v2/models/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/journey/v2/stores/JourneyStore.d.ts +23 -0
- package/internal-do-not-import-from-here/ux/journey/v2/stores/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/languagepicker/ILanguagePicker.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/languagepicker/LanguagePicker.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/blocktitle/BlockTitle.css.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/layoutcanvas/velcron_definitions/contentblocks.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/magiclink/loc/localize.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/mediapickerproviders/bingprovider/BingProvider.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/mediapickerproviders/dalleprovider/DallEProvider.css.d.ts +26 -0
- package/internal-do-not-import-from-here/ux/mediapickerproviders/dalleprovider/DallEProvider.d.ts +40 -0
- package/internal-do-not-import-from-here/ux/mediapickerproviders/dalleprovider/PollingImageComponent.d.ts +87 -0
- package/internal-do-not-import-from-here/ux/mediapickerproviders/dalleprovider/loc/localize.d.ts +22 -0
- package/internal-do-not-import-from-here/ux/mediapickerproviders/mediaproviderbase/GridViewMediaProviderComponent.d.ts +4 -1
- package/internal-do-not-import-from-here/ux/mediapickerproviders/pexelsprovider/PexelProvider.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/models/ProfileCardStyles.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/optionpicker/OptionPicker.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/oxide/draggable/Draggable.css.d.ts +6 -0
- package/internal-do-not-import-from-here/ux/oxide/draggable/Draggable.d.ts +593 -0
- package/internal-do-not-import-from-here/ux/oxide/menu/Menu.d.ts +47 -5
- package/internal-do-not-import-from-here/ux/oxide/toolbar/Toolbar.d.ts +53 -6
- package/internal-do-not-import-from-here/ux/oxide/treeview/Treeview.css.d.ts +0 -2
- package/internal-do-not-import-from-here/ux/profilecard/IProfileCard.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/profilecard/ProfileCard.d.ts +6 -1
- package/internal-do-not-import-from-here/ux/properties/builtins/birthday/BirthdayDisplay.d.ts +11 -7
- package/internal-do-not-import-from-here/ux/properties/builtins/birthday/BirthdayEditor.d.ts +16 -12
- package/internal-do-not-import-from-here/ux/properties/builtins/birthday/BirthdayPropertyDefinition.d.ts +1 -13
- package/internal-do-not-import-from-here/ux/properties/builtins/boolean/BooleanDisplay.css.d.ts +7 -0
- package/internal-do-not-import-from-here/ux/{user/components/UserPropertyProviderDisplay.d.ts → properties/builtins/boolean/BooleanDisplay.d.ts} +17 -17
- package/internal-do-not-import-from-here/ux/properties/builtins/boolean/BooleanEditor.css.d.ts +7 -0
- package/internal-do-not-import-from-here/ux/properties/builtins/boolean/BooleanEditor.d.ts +83 -0
- package/internal-do-not-import-from-here/ux/properties/builtins/boolean/BooleanPropertyDefinition.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/properties/builtins/date/DateDisplay.d.ts +11 -7
- package/internal-do-not-import-from-here/ux/properties/builtins/date/DateEditor.d.ts +16 -12
- package/internal-do-not-import-from-here/ux/properties/builtins/date/DatePropertyDefinition.d.ts +1 -11
- package/internal-do-not-import-from-here/ux/properties/builtins/date-time/DateTimeDisplay.d.ts +16 -12
- package/internal-do-not-import-from-here/ux/properties/builtins/date-time/DateTimeEditor.d.ts +16 -12
- package/internal-do-not-import-from-here/ux/properties/builtins/date-time/DateTimePropertyDefinition.d.ts +1 -16
- package/internal-do-not-import-from-here/ux/properties/builtins/email/EmailDisplay.d.ts +10 -5
- package/internal-do-not-import-from-here/ux/properties/builtins/email/EmailEditor.d.ts +15 -10
- package/internal-do-not-import-from-here/ux/properties/builtins/email/EmailPropertyDefinition.d.ts +1 -12
- package/internal-do-not-import-from-here/ux/properties/builtins/html/HtmlConfiguration.d.ts +16 -11
- package/internal-do-not-import-from-here/ux/properties/builtins/html/HtmlDisplay.d.ts +10 -5
- package/internal-do-not-import-from-here/ux/properties/builtins/html/HtmlEditor.d.ts +15 -10
- package/internal-do-not-import-from-here/ux/properties/builtins/html/HtmlPropertyDefinition.d.ts +1 -16
- package/internal-do-not-import-from-here/ux/properties/builtins/identity/IdentityConfiguration.d.ts +16 -11
- package/internal-do-not-import-from-here/ux/properties/builtins/identity/IdentityDisplay.d.ts +6 -2
- package/internal-do-not-import-from-here/ux/properties/builtins/identity/IdentityEditor.d.ts +7 -3
- package/internal-do-not-import-from-here/ux/properties/builtins/identity/IdentityPropertyDefinition.d.ts +1 -5
- package/internal-do-not-import-from-here/ux/properties/builtins/image/ImageConfiguration.d.ts +16 -11
- package/internal-do-not-import-from-here/ux/properties/builtins/image/ImageDisplay.d.ts +5 -0
- package/internal-do-not-import-from-here/ux/properties/builtins/image/ImageEditor.d.ts +6 -1
- package/internal-do-not-import-from-here/ux/properties/builtins/image/ImagePropertyDefinition.d.ts +1 -5
- package/internal-do-not-import-from-here/ux/properties/builtins/integer/IntegerDisplay.css.d.ts +7 -0
- package/internal-do-not-import-from-here/ux/properties/{legacy-enterprise-property/LegacyEnterprisePropertyDisplay.d.ts → builtins/integer/IntegerDisplay.d.ts} +17 -26
- package/internal-do-not-import-from-here/ux/properties/builtins/integer/IntegerEditor.css.d.ts +7 -0
- package/internal-do-not-import-from-here/ux/properties/builtins/integer/IntegerEditor.d.ts +83 -0
- package/internal-do-not-import-from-here/ux/properties/builtins/integer/IntegerPropertyDefinition.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/properties/builtins/language/LanguageDisplay.d.ts +11 -7
- package/internal-do-not-import-from-here/ux/properties/builtins/language/LanguageEditor.d.ts +16 -12
- package/internal-do-not-import-from-here/ux/properties/builtins/language/LanguagePropertyDefinition.d.ts +1 -15
- package/internal-do-not-import-from-here/ux/properties/builtins/link/LinkConfiguration.d.ts +16 -11
- package/internal-do-not-import-from-here/ux/properties/builtins/link/LinkDisplay.d.ts +11 -7
- package/internal-do-not-import-from-here/ux/properties/builtins/link/LinkEditor.d.ts +16 -12
- package/internal-do-not-import-from-here/ux/properties/builtins/link/LinkPropertyDefinition.d.ts +1 -12
- package/internal-do-not-import-from-here/ux/properties/builtins/media/MediaDisplay.css.d.ts +7 -0
- package/internal-do-not-import-from-here/ux/properties/builtins/media/MediaDisplay.d.ts +66 -0
- package/internal-do-not-import-from-here/ux/properties/builtins/media/MediaEditor.css.d.ts +8 -0
- package/internal-do-not-import-from-here/ux/{user/components/UserPropertiesByMicrosoftGraphDisplay.d.ts → properties/builtins/media/MediaEditor.d.ts} +33 -19
- package/internal-do-not-import-from-here/ux/properties/builtins/media/MediaPropertyDefinition.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/properties/builtins/multiline-text/MultilineTextDisplay.d.ts +11 -7
- package/internal-do-not-import-from-here/ux/properties/builtins/multiline-text/MultilineTextEditor.d.ts +16 -12
- package/internal-do-not-import-from-here/ux/properties/builtins/multiline-text/MultilineTextPropertyDefinition.d.ts +1 -11
- package/internal-do-not-import-from-here/ux/properties/builtins/multilingualText/MultilingualTextDisplay.d.ts +11 -7
- package/internal-do-not-import-from-here/ux/properties/builtins/multilingualText/MultilingualTextEditor.d.ts +16 -12
- package/internal-do-not-import-from-here/ux/properties/builtins/multilingualText/MultilingualTextPropertyDefinition.d.ts +1 -14
- package/internal-do-not-import-from-here/ux/properties/builtins/phone-number/PhoneNumberDisplay.d.ts +11 -7
- package/internal-do-not-import-from-here/ux/properties/builtins/phone-number/PhoneNumberEditor.d.ts +15 -10
- package/internal-do-not-import-from-here/ux/properties/builtins/phone-number/PhoneNumberPropertyDefinition.d.ts +1 -11
- package/internal-do-not-import-from-here/ux/properties/builtins/text/TextDisplay.d.ts +11 -7
- package/internal-do-not-import-from-here/ux/properties/builtins/text/TextEditor.d.ts +16 -12
- package/internal-do-not-import-from-here/ux/properties/builtins/text/TextPropertyDefinition.d.ts +1 -15
- package/internal-do-not-import-from-here/ux/properties/builtins/time/TimeDisplay.d.ts +16 -12
- package/internal-do-not-import-from-here/ux/properties/builtins/time/TimeEditor.d.ts +26 -22
- package/internal-do-not-import-from-here/ux/properties/builtins/time/TimePropertyDefinition.d.ts +1 -16
- package/internal-do-not-import-from-here/ux/properties/index.d.ts +0 -2
- package/internal-do-not-import-from-here/ux/properties/models/DataSource.d.ts +26 -19
- package/internal-do-not-import-from-here/ux/properties/models/PropertyApi.d.ts +14 -3
- package/internal-do-not-import-from-here/ux/properties/models/PropertyInput.d.ts +7 -1
- package/internal-do-not-import-from-here/ux/properties/models/PropertyPicker.d.ts +9 -3
- package/internal-do-not-import-from-here/ux/properties/models/index.d.ts +0 -2
- package/internal-do-not-import-from-here/ux/properties/property-configuration/LabelOptionsRenderer.d.ts +67 -0
- package/internal-do-not-import-from-here/ux/properties/property-configuration/PropertyConfiguration.d.ts +67 -0
- package/internal-do-not-import-from-here/ux/properties/property-configuration/PropertyLocking.css.d.ts +7 -0
- package/internal-do-not-import-from-here/ux/properties/property-configuration/PropertyLocking.d.ts +95 -0
- package/internal-do-not-import-from-here/ux/properties/property-picker/PropertyInput.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/properties/property-picker/PropertyPicker.d.ts +11 -10
- package/internal-do-not-import-from-here/ux/{user/UserPropertyRenderer.d.ts → properties/property-renderer/PropertyBindingValueRenderer.d.ts} +14 -20
- package/internal-do-not-import-from-here/ux/properties/property-renderer/{PropertyRenderer.d.ts → PropertyValueRenderer.d.ts} +20 -15
- package/internal-do-not-import-from-here/ux/richtexteditor/RichTextEditor.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/richtexteditor/TextCompletionPanel/TextCompletionPanel.css.d.ts +28 -0
- package/internal-do-not-import-from-here/ux/richtexteditor/TextCompletionPanel/TextCompletionPanel.d.ts +597 -0
- package/internal-do-not-import-from-here/ux/richtexteditor/TextCompletionPanel/loc/localize.d.ts +28 -0
- package/internal-do-not-import-from-here/ux/richtexteditor/extensions/TextCompletion/Registration.d.ts +5 -0
- package/internal-do-not-import-from-here/ux/richtexteditor/extensions/TextCompletion/TextCompletion.d.ts +12 -0
- package/internal-do-not-import-from-here/ux/richtexteditor/extensions/TextCompletion/TextCompletionHandler.d.ts +34 -0
- package/internal-do-not-import-from-here/ux/richtexteditor/extensions/TextCompletion/TextCompletionMenu.d.ts +24 -0
- package/internal-do-not-import-from-here/ux/richtexteditor/extensions/TextCompletion/TextCompletionNode.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/richtexteditor/extensions/TextCompletion/TextCompletionToolbar.d.ts +15 -0
- package/internal-do-not-import-from-here/ux/richtexteditor/extensions/TextCompletion/index.d.ts +4 -0
- package/internal-do-not-import-from-here/ux/richtexteditor/extensions/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/richtexteditor/extensions/loc/localize.d.ts +5 -0
- package/internal-do-not-import-from-here/ux/sidepanel/SidePanelRenderer.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/sidepanel/models/IRegistration.d.ts +11 -7
- package/internal-do-not-import-from-here/ux/signin/Shared.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/signin/loc/localize.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/social/CommentDialog.d.ts +2 -1
- package/internal-do-not-import-from-here/ux/theming-v2/styling/UseTypographyStyling.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/use/UseBreakPoint.d.ts +2 -1
- package/internal-do-not-import-from-here/ux/use/UseColorSchemaSetup.d.ts +73 -1
- package/internal-do-not-import-from-here/ux/user/UserPropertiesByMicrosoftGraphProvider.d.ts +5 -1
- package/internal-do-not-import-from-here/ux/user/UserPropertiesProvider.d.ts +6 -1
- package/internal-do-not-import-from-here/ux/velcron/blocks/content/model/ContentDefinitionRegistration.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/velcron/blocks/content/store/ContentBlockStore.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/velcron/components/properties/VelcronProperties.d.ts +7 -10
- package/internal-do-not-import-from-here/ux/velcron/core/models/Enums.d.ts +6 -6
- package/internal-do-not-import-from-here/ux/velcron/core/models/VelcronDefinitions.d.ts +14 -14
- package/internal-do-not-import-from-here/ux/velcron/core/models/VelcronEvents.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/velcron/core/parser/VelcronData.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/velcron/core/stores/VelcronBlueprint.d.ts +36 -0
- package/internal-do-not-import-from-here/ux/velcron/core/stores/VelcronColorSchema.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/velcron/core/stores/VelcronTheming.d.ts +2 -1
- package/internal-do-not-import-from-here/ux/velcron/core/stores/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/velcron/editor/VelcronEditor.d.ts +164 -159
- package/internal-do-not-import-from-here/ux/velcron/editor/stores/VelcronEditorStore.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/velcron/renderer/VelcronRenderer.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/velcron/renderer/components/Custom.d.ts +6 -6
- package/internal-do-not-import-from-here/wctypings.d.ts +57 -31
- package/package.json +2 -2
- package/internal-do-not-import-from-here/contexts/CurrentDisplayUserContext.d.ts +0 -5
- package/internal-do-not-import-from-here/ux/dynamicgroup/DynamicGroupPropertyEditorRenderer.d.ts +0 -73
- package/internal-do-not-import-from-here/ux/dynamicgroup/loc/localize.d.ts +0 -10
- package/internal-do-not-import-from-here/ux/group/GroupPropertyEditorRenderer.d.ts +0 -73
- package/internal-do-not-import-from-here/ux/group/loc/localize.d.ts +0 -10
- package/internal-do-not-import-from-here/ux/properties/LegacyEnterprisePropertiesProvider.d.ts +0 -14
- package/internal-do-not-import-from-here/ux/properties/PropertyDataSourceContext.d.ts +0 -21
- package/internal-do-not-import-from-here/ux/properties/legacy-enterprise-property/LegacyEnterprisePropertyDefinition.d.ts +0 -8
- package/internal-do-not-import-from-here/ux/properties/legacy-enterprise-property/LegacyEnterprisePropertyDisplay.css.d.ts +0 -4
- package/internal-do-not-import-from-here/ux/properties/legacy-enterprise-property/LegacyEnterprisePropertyEditor.css.d.ts +0 -4
- package/internal-do-not-import-from-here/ux/properties/legacy-enterprise-property/LegacyEnterprisePropertyEditor.d.ts +0 -92
- package/internal-do-not-import-from-here/ux/properties/models/PropertySelection.d.ts +0 -19
- package/internal-do-not-import-from-here/ux/user/UserPropertiesByMicrosoftGraphDefinition.d.ts +0 -18
- package/internal-do-not-import-from-here/ux/user/UserPropertyProviderDefinition.d.ts +0 -15
- package/internal-do-not-import-from-here/ux/user/components/UserPropertiesByMicrosoftGraphEditor.d.ts +0 -83
- package/internal-do-not-import-from-here/ux/user/components/UserPropertyProviderEditor.d.ts +0 -83
- /package/internal-do-not-import-from-here/ux/{admin/chrome/AdminChrome_old.d.ts → filterengine/api/TagsRegistration.d.ts} +0 -0
@@ -26,6 +26,7 @@ export declare const useVelcronEditorStore: (newInstanceWithName?: string) => {
|
|
26
26
|
actions: {
|
27
27
|
setAppTree: (tree: Array<TreeViewItem<AppTreeItem>>) => void;
|
28
28
|
setAppDefinitionFromJson: (newState: string) => void;
|
29
|
+
setAppDefinition: (newDefinition: VelcronAppDefinition) => void;
|
29
30
|
persistState: (jsonCode: string) => void;
|
30
31
|
setAppValidation: (newState: AppValidationState) => void;
|
31
32
|
setCodeEditorTab: (newState: codeEditorTabs) => void;
|
@@ -229,10 +229,10 @@ declare const _default: {
|
|
229
229
|
themeDefinition?: ThemeDefinitionV2;
|
230
230
|
"theme-definition"?: ThemeDefinitionV2;
|
231
231
|
context?: VelcronRenderContext;
|
232
|
-
editMode?: boolean;
|
233
232
|
eventHandlers?: unknown;
|
234
233
|
"event-handlers"?: unknown;
|
235
234
|
"color-schema-type"?: ColorSchemaTypes | ColorSchemaType;
|
235
|
+
editMode?: boolean;
|
236
236
|
"edit-mode"?: boolean;
|
237
237
|
}>, "onState:updated"> & {
|
238
238
|
"onState:updated"?: (state: object) => any;
|
@@ -1,10 +1,10 @@
|
|
1
|
-
import {
|
1
|
+
import { VelcronRenderContext } from "../../core";
|
2
2
|
declare const _default: {
|
3
3
|
new (...args: any[]): {
|
4
4
|
$: import("vue").ComponentInternalInstance;
|
5
5
|
$data: {};
|
6
6
|
$props: Partial<{}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
7
|
-
definition: import("vue").Prop<
|
7
|
+
definition: import("vue").Prop<import("../../core").VelcronComponentDefinition, import("../../core").VelcronComponentDefinition>;
|
8
8
|
renderContext: import("vue").Prop<VelcronRenderContext, VelcronRenderContext>;
|
9
9
|
}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>;
|
10
10
|
$attrs: {
|
@@ -21,7 +21,7 @@ declare const _default: {
|
|
21
21
|
$emit: (event: string, ...args: any[]) => void;
|
22
22
|
$el: any;
|
23
23
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
24
|
-
definition: import("vue").Prop<
|
24
|
+
definition: import("vue").Prop<import("../../core").VelcronComponentDefinition, import("../../core").VelcronComponentDefinition>;
|
25
25
|
renderContext: import("vue").Prop<VelcronRenderContext, VelcronRenderContext>;
|
26
26
|
}>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string> & {
|
27
27
|
beforeCreate?: (() => void) | (() => void)[];
|
@@ -44,18 +44,18 @@ declare const _default: {
|
|
44
44
|
$nextTick: typeof import("vue").nextTick;
|
45
45
|
$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;
|
46
46
|
} & Readonly<import("vue").ExtractPropTypes<{
|
47
|
-
definition: import("vue").Prop<
|
47
|
+
definition: import("vue").Prop<import("../../core").VelcronComponentDefinition, import("../../core").VelcronComponentDefinition>;
|
48
48
|
renderContext: import("vue").Prop<VelcronRenderContext, VelcronRenderContext>;
|
49
49
|
}>> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
|
50
50
|
__isFragment?: never;
|
51
51
|
__isTeleport?: never;
|
52
52
|
__isSuspense?: never;
|
53
53
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
54
|
-
definition: import("vue").Prop<
|
54
|
+
definition: import("vue").Prop<import("../../core").VelcronComponentDefinition, import("../../core").VelcronComponentDefinition>;
|
55
55
|
renderContext: import("vue").Prop<VelcronRenderContext, VelcronRenderContext>;
|
56
56
|
}>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
57
57
|
propsDefinition: Omit<Readonly<{} & {
|
58
|
-
definition?:
|
58
|
+
definition?: import("../../core").VelcronComponentDefinition;
|
59
59
|
renderContext?: VelcronRenderContext;
|
60
60
|
}>, never>;
|
61
61
|
};
|
@@ -8,8 +8,6 @@ import wcb1fca92af8524970b426823cf7ef65b5 from '../../fx-sp/internal-do-not-impo
|
|
8
8
|
import wc7332138e1e7845d1a5e62597a27e44a4 from '../../fx-sp/internal-do-not-import-from-here/ux/properties/term-set/TermSetDisplay';
|
9
9
|
import wc83dee8a1eea84537ad9544e8b9fc4cb1 from '../../fx-sp/internal-do-not-import-from-here/ux/properties/term-set/TermSetEditor';
|
10
10
|
import wca9cc1e1ff5894f4db7005bc49c6c47c5 from '../../fx-sp/internal-do-not-import-from-here/ux/properties/term-set/TermSetConfiguration';
|
11
|
-
import wcc4e43a3ff52f46c0bb86924e5d0af1e8 from '../../fx-sp/internal-do-not-import-from-here/ux/user/UserPropertiesBySharePointDisplay';
|
12
|
-
import wc8bbb21b589db4b4e88cca21a964710c9 from '../../fx-sp/internal-do-not-import-from-here/ux/user/UserPropertiesBySharePointEditor';
|
13
11
|
import wc253e469ef68e4cb5b526343736c2ff11 from './ux/admin/chrome/AdminChrome';
|
14
12
|
import wca8f8d41d8ceb43e0b16398c209fd6b32 from './ux/app/appinstance/renderer/AppInstanceRollup';
|
15
13
|
import wc450488bd95a34f368241e9b4d8c71dee from './ux/app/management/AppManagement';
|
@@ -27,7 +25,6 @@ import wc90e26d3a6e3e4bf9bd1ce81c6735eda2 from './ux/datetimezonepicker/DateTime
|
|
27
25
|
import wcd3d05fa7bb114ecab1c16f714641b678 from './ux/datetimezonerenderer/DateTimeZoneRenderer';
|
28
26
|
import wc3ff00f2d8a4c48a4ae0cff23fc0127ac from './ux/dialog/Dialog';
|
29
27
|
import wc1f31fc580b854d19895c1879120a9891 from './ux/docs/chrome/DocsChrome';
|
30
|
-
import wc2402bfd5328b4234bbedb24a71cfc2a0 from './ux/dynamicgroup/DynamicGroupPropertyEditorRenderer';
|
31
28
|
import wc4ecc566131194348b7ec8495a06d4fd6 from './ux/enterpriseproperties/settings/extendedproperty/ExtendedPropertySettings';
|
32
29
|
import wceed905b1712c498ebd5bb24f12ed10d7 from './ux/filterengine/components/settings/person/PersonPropertySettings';
|
33
30
|
import wcad26e9b3bf774d949d153b9f9d1d4b02 from './ux/filterengine/components/settings/person/PersonPropertyDefaultValueInput';
|
@@ -39,11 +36,15 @@ import wca1d7711329c24045bf72254e8d2767c8 from './ux/filterengine/components/set
|
|
39
36
|
import wcba1fad28be954b8fadb7290ccb8f8c86 from './ux/filterengine/components/settings/date/DatePropertyDefaultValueInput';
|
40
37
|
import wcee09ecc9d4fb46de8f1a408e38858030 from './ux/filterengine/components/settings/number/NumberPropertySettings';
|
41
38
|
import wcea2ad78acabc4ec0bc3609301b3713c3 from './ux/filterengine/components/settings/number/NumberPropertyDefaultValueInput';
|
39
|
+
import wc024952d88730404da854cfed0d045284 from './ux/filterengine/components/settings/tags/TagsPropertySettings';
|
40
|
+
import wcdc589fd533c8400a8dde3dad35f47248 from './ux/filterengine/components/settings/tags/TagsPropertyDefaultValueInput';
|
42
41
|
import wca91d4cd2b5744de3a672110cb1cdf7ba from './ux/filterengine/FilterEngineSettings';
|
43
42
|
import wc34e1cea969d744f1bbec4770b51d49f5 from './ux/filterengine/FilterEngineRenderer';
|
44
43
|
import wc43fc70078d114ec3a70ebbd767ef4f95 from './ux/filterengine/components/renderer/person/PersonPropertyRenderer';
|
44
|
+
import wc425ef72815f04fed9a042d48a2ac7df8 from './ux/filterengine/components/renderer/tags/TagsPropertyRenderer';
|
45
45
|
import wce2f7f245f168446980aef1473d8742d1 from './ux/filterengine/SelectionsArea';
|
46
46
|
import wccbef13c831cf4531a43fb63ef63ad39b from './ux/filterengine/components/selectionsarea/person/SelectionsAreaPersonRenderer';
|
47
|
+
import wc6e487078cbd14ee189af05260831ba5a from './ux/filterengine/components/selectionsarea/tags/SelectionsAreaTagsRenderer';
|
47
48
|
import wcc7b859fc2c5b46c09ff08ee4a9daa394 from './ux/filterengine/components/renderer/text/TextPropertyRenderer';
|
48
49
|
import wcc311e369d2d241f38e609ad50f7dec2f from './ux/filterengine/components/renderer/boolean/BooleanPropertyRenderer';
|
49
50
|
import wc0debbe4a117f46ddb9ca37231010938c from './ux/filterengine/components/renderer/date/DatePropertyRenderer';
|
@@ -53,12 +54,20 @@ import wcb11657e2b45247fc82c78a30ba131001 from './ux/filterengine/components/sel
|
|
53
54
|
import wc63a474f600324efc9148ceeab9202778 from './ux/filterengine/components/selectionsarea/date/SelectionsAreaDateRenderer';
|
54
55
|
import wc5a6940e10c51454aa5e0a4144ab01288 from './ux/filterengine/components/selectionsarea/number/SelectionsAreaNumberRenderer';
|
55
56
|
import wc937eab372066440fa95551ac8cba45d7 from './ux/filterengine/components/renderer/dialog/DialogContent';
|
56
|
-
import
|
57
|
+
import wc7813f37afbf34cb085a2ef74e71e20fa from './ux/filterengine/components/renderer/PropertyDropdownRenderer';
|
58
|
+
import wc373cd0c180af441ca9f973b1da4de7f9 from './ux/filterengine/components/renderer/PropertyListRenderer';
|
57
59
|
import wca7608d8c42184cbb994910dc06c464a1 from './ux/identities/IdentityRenderer';
|
58
60
|
import wc01c6a5e974334f06a390c9af5a7689d0 from './ux/identities/components/shared/IdentitySyncPropertyBindingSetup';
|
59
61
|
import wcc2a811dfd3774d15862abb2f6a435a5c from './ux/identities/components/shared/IdentitySyncRuleSetup';
|
60
|
-
import wcba60557e3daf48208c919a1806502df5 from './ux/identitypicker/
|
62
|
+
import wcba60557e3daf48208c919a1806502df5 from './ux/identitypicker/IdentityPickerField';
|
63
|
+
import wc9cbe10e4fe1a48929727942cea5f7338 from './ux/identitypicker/IdentityPickerInlineField';
|
64
|
+
import wcec81357974804c539bff6c58a8785c22 from './ux/identitypicker/IdentityPicker';
|
65
|
+
import wc5d74b2de65164761a3dce6a534b64bd1 from './ux/identitypicker/IdentityPickerDialog';
|
66
|
+
import wc70593d481fa54e68be9f4fe41f0f5c92 from './ux/identitypicker/IdentityPickerButton';
|
61
67
|
import wc2f4b3c8e5d6a4f7bbc9d1e0a2b3c4d5e from './ux/image/scalingsettings/ScalingSettings';
|
68
|
+
import wc2252e1bd3ac44ef9b92c68e5b1e41a49 from './ux/journey/testbench/JourneyTest';
|
69
|
+
import wcc0ba9c7ccef54093bcb0be49e7cf79df from './ux/journey/v2/JourneyV2';
|
70
|
+
import wcd308de8efcff4754826523a0f06df130 from './ux/journey/v2/JourneyBlade';
|
62
71
|
import wc4834285963564938a31a1ac1dfb1b5d8 from './ux/layoutcanvas/editor/blockplaceholder/BlockPlaceholder';
|
63
72
|
import wc4512676606d342adbd011def4b615151 from './ux/layoutcanvas/editor/canvastoolbar/CanvasToolbar';
|
64
73
|
import wc41f1eb15438a488b8b227b1ff31ca66f from './ux/layoutcanvas/editor/developertools/DeveloperTools';
|
@@ -92,6 +101,7 @@ import wc6c2ac8bf4da44a2b8e544eaf5b42099f from './ux/limited-label/LimitedLabel'
|
|
92
101
|
import wcf365f5cb3a694c20be7b96423bbc3eca from './ux/magiclink/MagicLink';
|
93
102
|
import wc744b3f31e00c4815b63ecaf638ad7a7a from './ux/markdown/MarkdownEditor';
|
94
103
|
import wcc8b990d01ddc45ab930b4409fc406435 from './ux/markdown/MarkdownRenderer';
|
104
|
+
import wc8f6c9579f26646dfb316c087e04455cc from './ux/mediapickerproviders/dalleprovider/PollingImageComponent';
|
95
105
|
import wc2e8004b49c8d44dd8edb56ce884c2b57 from './ux/monaco/MonacoEditor';
|
96
106
|
import wc7f06e68f94904b48b827b23acd148bec from './ux/optionpicker/OptionPicker';
|
97
107
|
import wc8e3534c9960c46b090f442e563d71265 from './ux/oxide/alignmentpicker/AlignmentPicker';
|
@@ -107,6 +117,7 @@ import wc900eaa8c89a9411b93b657be6feaa992 from './ux/oxide/datatable/DataTableSe
|
|
107
117
|
import wc6013b19c722b4bb781b2380b969f3c77 from './ux/oxide/datatable/DataTableVirtual';
|
108
118
|
import wc2ae3cf98c95443a199d44705ad87d994 from './ux/oxide/dialog/Dialog';
|
109
119
|
import wcd1a4678669114d9293f42409a1080756 from './ux/oxide/divider/Divider';
|
120
|
+
import wc010e7f719bf647829ef6c999e22f86ca from './ux/oxide/draggable/Draggable';
|
110
121
|
import wc1f535ab2cf154914a9bb104aa46d1e2a from './ux/oxide/expansionpanel/ExpansionPanels';
|
111
122
|
import wc170e8b8212bd45f5b8009e0efb29d7a3 from './ux/oxide/expansionpanel/ExpansionPanel';
|
112
123
|
import wcde8b25f7e81a437d9ee6b104c28b1c25 from './ux/oxide/icon/Icon';
|
@@ -140,6 +151,8 @@ import wc1a58948a606a42078da3fb919cc4f7e6 from './ux/presetupwizard/PreSetupWiza
|
|
140
151
|
import wc6d1d84cb210643c59ca8437fc36c75a1 from './ux/profilecard/ProfileCardRenderer';
|
141
152
|
import wc916c23c53dbf4d5a8e421e9449c6b203 from './ux/properties/builtins/birthday/BirthdayDisplay';
|
142
153
|
import wc644e39fe6d4f4e23b1777aefd9c23939 from './ux/properties/builtins/birthday/BirthdayEditor';
|
154
|
+
import wcf61d06a945754742a1896847765fbea5 from './ux/properties/builtins/boolean/BooleanDisplay';
|
155
|
+
import wca16c703117f44a68982a1898d6c3c31b from './ux/properties/builtins/boolean/BooleanEditor';
|
143
156
|
import wc5666ffa15ff14a64bac8854da534ff16 from './ux/properties/builtins/date-time/DateTimeDisplay';
|
144
157
|
import wc0f52758b4d0c4e02abfeea1c5c935571 from './ux/properties/builtins/date-time/DateTimeEditor';
|
145
158
|
import wc627dc53f51a442019a52bba09ac665cc from './ux/properties/builtins/date/DateDisplay';
|
@@ -155,11 +168,15 @@ import wc77d632a8bca5461fb6c429a0ff65dc83 from './ux/properties/builtins/identit
|
|
155
168
|
import wcbf51f51ebb83415085c1ac7647a65152 from './ux/properties/builtins/image/ImageDisplay';
|
156
169
|
import wc5395d36d407d46f1bf8b16a8a01ace5a from './ux/properties/builtins/image/ImageConfiguration';
|
157
170
|
import wc188dea2e3ae74c54a34a3e6567e1399e from './ux/properties/builtins/image/ImageEditor';
|
171
|
+
import wc5f9cd004b39f4340a86911e1fc225a20 from './ux/properties/builtins/integer/IntegerDisplay';
|
172
|
+
import wc49e771f49e06477fbe72da709d82dc29 from './ux/properties/builtins/integer/IntegerEditor';
|
158
173
|
import wc41b1957c2c2b456d8f14bc39f6761c77 from './ux/properties/builtins/language/LanguageDisplay';
|
159
174
|
import wc84265bdaa0054a8092a740c818daf04e from './ux/properties/builtins/language/LanguageEditor';
|
160
175
|
import wc93d3ac3a514149ebbd387d1e87008ec6 from './ux/properties/builtins/link/LinkDisplay';
|
161
176
|
import wc9911a5588ea34e9cad8a5129c82e1f0c from './ux/properties/builtins/link/LinkEditor';
|
162
177
|
import wcbdcc5c7cc8b04e9c8cba9787284281ca from './ux/properties/builtins/link/LinkConfiguration';
|
178
|
+
import wc82ed0f43e304436ba399aacf37dc10fb from './ux/properties/builtins/media/MediaDisplay';
|
179
|
+
import wc01ad88e84cd443e28c158b2fa4147924 from './ux/properties/builtins/media/MediaEditor';
|
163
180
|
import wc90552b5ea3484174bf69463a6a74f83a from './ux/properties/builtins/multiline-text/MultilineTextDisplay';
|
164
181
|
import wcc24137f2406f4ebeb414b8d11492d0d3 from './ux/properties/builtins/multiline-text/MultilineTextEditor';
|
165
182
|
import wc784d162feec24424a993d8ba812b9c94 from './ux/properties/builtins/multilingualText/MultilingualTextDisplay';
|
@@ -171,13 +188,15 @@ import wcb8cc745685f2417cacf578d9bed620b5 from './ux/properties/builtins/text/Te
|
|
171
188
|
import wceb1460af73a8467597c5d0987d38cae5 from './ux/properties/builtins/time/TimeDisplay';
|
172
189
|
import wcf6b07b9fb080465498768f4fc8c58415 from './ux/properties/builtins/time/TimeEditor';
|
173
190
|
import wc091ee9b103234b26a5e2bd5f992b2582 from './ux/properties/property-picker/PropertyPicker';
|
174
|
-
import
|
175
|
-
import
|
191
|
+
import wcf36a8a2b1c70423ebc4647aaddab8f4f from './ux/properties/property-renderer/PropertyBindingValueRenderer';
|
192
|
+
import wc48e897be803c4b5cb1db09dbadd04fe5 from './ux/properties/property-renderer/PropertyValueRenderer';
|
193
|
+
import wce012f61b652b4ab8b7e9d436ef772f54 from './ux/properties/property-configuration/PropertyConfiguration';
|
194
|
+
import wc54caefeaae1d4da7b236a3ff268b31c3 from './ux/properties/property-configuration/LabelOptionsRenderer';
|
195
|
+
import wc14f41bfbe00d46658959d3b2ebb7da69 from './ux/properties/property-configuration/PropertyLocking';
|
176
196
|
import wcb174dcf2716344b0bb02c981ae68dd73 from './ux/properties/property-picker/PropertyInput';
|
177
|
-
import wc646cfdda09044ebc9339f2ac31318512 from './ux/properties/legacy-enterprise-property/LegacyEnterprisePropertyDisplay';
|
178
|
-
import wc332ae4244d4e4b0296befadb2ad2ac6b from './ux/properties/legacy-enterprise-property/LegacyEnterprisePropertyEditor';
|
179
197
|
import wc58330f37503947799af05363e58bda3c from './ux/richtexteditor/Emoticon/EmoticonComponent';
|
180
198
|
import wc7474e75042e347b4821bbafdb1cb4ee0 from './ux/richtexteditor/RichTextEditor';
|
199
|
+
import wc327ec741777b4e1ea8017f1d0a3b8d9d from './ux/richtexteditor/TextCompletionPanel/TextCompletionPanel';
|
181
200
|
import wc8c7794090eb647eb8510b39cbefa17a7 from './ux/rollupempty/RollupEmpty';
|
182
201
|
import wcc0de4753b9fe4004b0f4e6b6b91730ab from './ux/settings/SettingsPane';
|
183
202
|
import wc539d199f69934c10a963f142e4f3056d from './ux/sidepanel/SidePanelRenderer';
|
@@ -193,12 +212,6 @@ import wc1266389c28034034921b897f788f302d from './ux/theming-v2/colorschemapicke
|
|
193
212
|
import wc252ece0016594978b3ddfafdd59adda4 from './ux/theming-v2/themedefinitionpicker/ThemeDefinitionPicker';
|
194
213
|
import wc5abbb7170e454f0d8cb537bcad180cd7 from './ux/theming-v2/themeeditor/ThemeEditor';
|
195
214
|
import wc4ff736bf8c544324883ed49f2a38f846 from './ux/theming/components/ThemeDefinitionEditor';
|
196
|
-
import wc0beecee9c6ce42c88bd468bde23f9f32 from './ux/user/components/PropertyConfigurationRenderer';
|
197
|
-
import wc8f4747f0b0884fd2a3b60baef21b67fc from './ux/user/components/UserPropertyProviderDisplay';
|
198
|
-
import wc909b95011fbe44c28440ad9cd6aaff85 from './ux/user/components/UserPropertyProviderEditor';
|
199
|
-
import wc7f2ffaf9ec9e4faba84db55101236094 from './ux/user/components/UserPropertiesByMicrosoftGraphDisplay';
|
200
|
-
import wc9920229c8d53416b884ad1ca25ad429d from './ux/user/components/UserPropertiesByMicrosoftGraphEditor';
|
201
|
-
import wc26f3558f4af24b198d2bc7a775166840 from './ux/user/UserPropertyRenderer';
|
202
215
|
import wc21a1f20b3d404602853049c1c8b8da2f from './ux/userpresence/UserPresence';
|
203
216
|
import wc30289e2b58ff48b0aabb3cb3732c3038 from './ux/usertypelayout/UserTypeLayoutRenderer';
|
204
217
|
import wc5b26d2a399c041f3beae9c1115d6e8d8 from './ux/usertypelayout/UserTypeLayoutBladeBuilder';
|
@@ -232,8 +245,6 @@ declare global {
|
|
232
245
|
"omfx-properties-term-set-display": typeof wc7332138e1e7845d1a5e62597a27e44a4.propsDefinition & VueComponentBaseProps;
|
233
246
|
"omfx-properties-term-set-editor": typeof wc83dee8a1eea84537ad9544e8b9fc4cb1.propsDefinition & VueComponentBaseProps;
|
234
247
|
"omfx-properties-term-set-configuration": typeof wca9cc1e1ff5894f4db7005bc49c6c47c5.propsDefinition & VueComponentBaseProps;
|
235
|
-
"omfx-properties-sharepoint-user-provider-display": typeof wcc4e43a3ff52f46c0bb86924e5d0af1e8.propsDefinition & VueComponentBaseProps;
|
236
|
-
"omfx-properties-sharepoint-user-provider-editor": typeof wc8bbb21b589db4b4e88cca21a964710c9.propsDefinition & VueComponentBaseProps;
|
237
248
|
"omnia-admin": typeof wc253e469ef68e4cb5b526343736c2ff11.propsDefinition & VueComponentBaseProps;
|
238
249
|
"omfx-app-instance-rollup": typeof wca8f8d41d8ceb43e0b16398c209fd6b32.propsDefinition & VueComponentBaseProps;
|
239
250
|
"omfx-app-management": typeof wc450488bd95a34f368241e9b4d8c71dee.propsDefinition & VueComponentBaseProps;
|
@@ -251,7 +262,6 @@ declare global {
|
|
251
262
|
"omfx-date-time-zone-renderer": typeof wcd3d05fa7bb114ecab1c16f714641b678.propsDefinition & VueComponentBaseProps;
|
252
263
|
"omfx-dialog": typeof wc3ff00f2d8a4c48a4ae0cff23fc0127ac.propsDefinition & VueComponentBaseProps;
|
253
264
|
"omfx-docs": typeof wc1f31fc580b854d19895c1879120a9891.propsDefinition & VueComponentBaseProps;
|
254
|
-
"omfx-dynamicgroup-property-editor-renderer": typeof wc2402bfd5328b4234bbedb24a71cfc2a0.propsDefinition & VueComponentBaseProps;
|
255
265
|
"omfx-enterpriseproperties-extended-property-settings": typeof wc4ecc566131194348b7ec8495a06d4fd6.propsDefinition & VueComponentBaseProps;
|
256
266
|
"omfx-filterengine-person-propertysettings": typeof wceed905b1712c498ebd5bb24f12ed10d7.propsDefinition & VueComponentBaseProps;
|
257
267
|
"omfx-filterengine-person-defaultvalue-input": typeof wcad26e9b3bf774d949d153b9f9d1d4b02.propsDefinition & VueComponentBaseProps;
|
@@ -263,11 +273,15 @@ declare global {
|
|
263
273
|
"omfx-filterengine-datetime-defaultvalue-input": typeof wcba1fad28be954b8fadb7290ccb8f8c86.propsDefinition & VueComponentBaseProps;
|
264
274
|
"omfx-filterengine-number-propertysettings": typeof wcee09ecc9d4fb46de8f1a408e38858030.propsDefinition & VueComponentBaseProps;
|
265
275
|
"omfx-filterengine-number-defaultvalue-input": typeof wcea2ad78acabc4ec0bc3609301b3713c3.propsDefinition & VueComponentBaseProps;
|
276
|
+
"omfx-filterengine-tags-propertysettings": typeof wc024952d88730404da854cfed0d045284.propsDefinition & VueComponentBaseProps;
|
277
|
+
"omfx-filterengine-tags-defaultvalue-input": typeof wcdc589fd533c8400a8dde3dad35f47248.propsDefinition & VueComponentBaseProps;
|
266
278
|
"omfx-filterengine-settings": typeof wca91d4cd2b5744de3a672110cb1cdf7ba.propsDefinition & VueComponentBaseProps;
|
267
279
|
"omfx-filterengine-renderer": typeof wc34e1cea969d744f1bbec4770b51d49f5.propsDefinition & VueComponentBaseProps;
|
268
280
|
"omfx-person-filterengine-renderer": typeof wc43fc70078d114ec3a70ebbd767ef4f95.propsDefinition & VueComponentBaseProps;
|
281
|
+
"omfx-tags-filterengine-renderer": typeof wc425ef72815f04fed9a042d48a2ac7df8.propsDefinition & VueComponentBaseProps;
|
269
282
|
"omfx-filterengine-selectionsarea": typeof wce2f7f245f168446980aef1473d8742d1.propsDefinition & VueComponentBaseProps;
|
270
283
|
"omfx-filterengine-selectionsarea-personproperty": typeof wccbef13c831cf4531a43fb63ef63ad39b.propsDefinition & VueComponentBaseProps;
|
284
|
+
"omfx-filterengine-selectionsarea-tagsproperty": typeof wc6e487078cbd14ee189af05260831ba5a.propsDefinition & VueComponentBaseProps;
|
271
285
|
"omfx-text-filterengine-renderer": typeof wcc7b859fc2c5b46c09ff08ee4a9daa394.propsDefinition & VueComponentBaseProps;
|
272
286
|
"omfx-boolean-filterengine-renderer": typeof wcc311e369d2d241f38e609ad50f7dec2f.propsDefinition & VueComponentBaseProps;
|
273
287
|
"omfx-date-filterengine-renderer": typeof wc0debbe4a117f46ddb9ca37231010938c.propsDefinition & VueComponentBaseProps;
|
@@ -277,12 +291,20 @@ declare global {
|
|
277
291
|
"omfx-filterengine-selectionsarea-datetimeproperty": typeof wc63a474f600324efc9148ceeab9202778.propsDefinition & VueComponentBaseProps;
|
278
292
|
"omfx-filterengine-selectionsarea-numberproperty": typeof wc5a6940e10c51454aa5e0a4144ab01288.propsDefinition & VueComponentBaseProps;
|
279
293
|
"omfx-filterengine-dialog-content": typeof wc937eab372066440fa95551ac8cba45d7.propsDefinition & VueComponentBaseProps;
|
280
|
-
"omfx-
|
294
|
+
"omfx-filterengine-property-dropdown": typeof wc7813f37afbf34cb085a2ef74e71e20fa.propsDefinition & VueComponentBaseProps;
|
295
|
+
"omfx-filterengine-property-list": typeof wc373cd0c180af441ca9f973b1da4de7f9.propsDefinition & VueComponentBaseProps;
|
281
296
|
"omfx-identity-renderer": typeof wca7608d8c42184cbb994910dc06c464a1.propsDefinition & VueComponentBaseProps;
|
282
297
|
"omfx-identity-sync-property-binding-setup": typeof wc01c6a5e974334f06a390c9af5a7689d0.propsDefinition & VueComponentBaseProps;
|
283
298
|
"omfx-identity-sync-rule-setup": typeof wcc2a811dfd3774d15862abb2f6a435a5c.propsDefinition & VueComponentBaseProps;
|
284
|
-
"omfx-identity-picker": typeof wcba60557e3daf48208c919a1806502df5.propsDefinition & VueComponentBaseProps;
|
299
|
+
"omfx-identity-picker-field": typeof wcba60557e3daf48208c919a1806502df5.propsDefinition & VueComponentBaseProps;
|
300
|
+
"omfx-identity-picker-inline-field": typeof wc9cbe10e4fe1a48929727942cea5f7338.propsDefinition & VueComponentBaseProps;
|
301
|
+
"omfx-identity-picker": typeof wcec81357974804c539bff6c58a8785c22.propsDefinition & VueComponentBaseProps;
|
302
|
+
"omfx-identity-picker-dialog": typeof wc5d74b2de65164761a3dce6a534b64bd1.propsDefinition & VueComponentBaseProps;
|
303
|
+
"omfx-identity-picker-button": typeof wc70593d481fa54e68be9f4fe41f0f5c92.propsDefinition & VueComponentBaseProps;
|
285
304
|
"omfx-media-scaling-settings": typeof wc2f4b3c8e5d6a4f7bbc9d1e0a2b3c4d5e.propsDefinition & VueComponentBaseProps;
|
305
|
+
"omfx-journey-testbench": typeof wc2252e1bd3ac44ef9b92c68e5b1e41a49.propsDefinition & VueComponentBaseProps;
|
306
|
+
"omfx-journey-v2": typeof wcc0ba9c7ccef54093bcb0be49e7cf79df.propsDefinition & VueComponentBaseProps;
|
307
|
+
"omfx-journey-blade": typeof wcd308de8efcff4754826523a0f06df130.propsDefinition & VueComponentBaseProps;
|
286
308
|
"omfx-layout-block-placeholder": typeof wc4834285963564938a31a1ac1dfb1b5d8.propsDefinition & VueComponentBaseProps;
|
287
309
|
"omfx-canvas-toolbar": typeof wc4512676606d342adbd011def4b615151.propsDefinition & VueComponentBaseProps;
|
288
310
|
"omnia-layout-developertools": typeof wc41f1eb15438a488b8b227b1ff31ca66f.propsDefinition & VueComponentBaseProps;
|
@@ -316,6 +338,7 @@ declare global {
|
|
316
338
|
"omfx-magiclink": typeof wcf365f5cb3a694c20be7b96423bbc3eca.propsDefinition & VueComponentBaseProps;
|
317
339
|
"omfx-markdown-editor": typeof wc744b3f31e00c4815b63ecaf638ad7a7a.propsDefinition & VueComponentBaseProps;
|
318
340
|
"omfx-markdown-renderer": typeof wcc8b990d01ddc45ab930b4409fc406435.propsDefinition & VueComponentBaseProps;
|
341
|
+
"omfx-media-picker-dalle-polling-image": typeof wc8f6c9579f26646dfb316c087e04455cc.propsDefinition & VueComponentBaseProps;
|
319
342
|
"monaco-editor": typeof wc2e8004b49c8d44dd8edb56ce884c2b57.propsDefinition & VueComponentBaseProps;
|
320
343
|
"omfx-option-picker": typeof wc7f06e68f94904b48b827b23acd148bec.propsDefinition & VueComponentBaseProps;
|
321
344
|
"o-alignment-picker": typeof wc8e3534c9960c46b090f442e563d71265.propsDefinition & VueComponentBaseProps;
|
@@ -331,6 +354,7 @@ declare global {
|
|
331
354
|
"o-data-table-virtual": typeof wc6013b19c722b4bb781b2380b969f3c77.propsDefinition & VueComponentBaseProps;
|
332
355
|
"o-dialog": typeof wc2ae3cf98c95443a199d44705ad87d994.propsDefinition & VueComponentBaseProps;
|
333
356
|
"o-divider": typeof wcd1a4678669114d9293f42409a1080756.propsDefinition & VueComponentBaseProps;
|
357
|
+
"o-draggable": typeof wc010e7f719bf647829ef6c999e22f86ca.propsDefinition & VueComponentBaseProps;
|
334
358
|
"o-expansion-panels": typeof wc1f535ab2cf154914a9bb104aa46d1e2a.propsDefinition & VueComponentBaseProps;
|
335
359
|
"o-expansion-panel": typeof wc170e8b8212bd45f5b8009e0efb29d7a3.propsDefinition & VueComponentBaseProps;
|
336
360
|
"o-icon": typeof wcde8b25f7e81a437d9ee6b104c28b1c25.propsDefinition & VueComponentBaseProps;
|
@@ -364,6 +388,8 @@ declare global {
|
|
364
388
|
"omfx-profilecard-renderer": typeof wc6d1d84cb210643c59ca8437fc36c75a1.propsDefinition & VueComponentBaseProps;
|
365
389
|
"omfx-properties-birthday-display": typeof wc916c23c53dbf4d5a8e421e9449c6b203.propsDefinition & VueComponentBaseProps;
|
366
390
|
"omfx-properties-birthday-editor": typeof wc644e39fe6d4f4e23b1777aefd9c23939.propsDefinition & VueComponentBaseProps;
|
391
|
+
"omfx-properties-boolean-display": typeof wcf61d06a945754742a1896847765fbea5.propsDefinition & VueComponentBaseProps;
|
392
|
+
"omfx-properties-boolean-editor": typeof wca16c703117f44a68982a1898d6c3c31b.propsDefinition & VueComponentBaseProps;
|
367
393
|
"omfx-properties-date-time-display": typeof wc5666ffa15ff14a64bac8854da534ff16.propsDefinition & VueComponentBaseProps;
|
368
394
|
"omfx-properties-date-time-editor": typeof wc0f52758b4d0c4e02abfeea1c5c935571.propsDefinition & VueComponentBaseProps;
|
369
395
|
"omfx-properties-date-display": typeof wc627dc53f51a442019a52bba09ac665cc.propsDefinition & VueComponentBaseProps;
|
@@ -379,11 +405,15 @@ declare global {
|
|
379
405
|
"omfx-properties-image-display": typeof wcbf51f51ebb83415085c1ac7647a65152.propsDefinition & VueComponentBaseProps;
|
380
406
|
"omfx-properties-image-configuration": typeof wc5395d36d407d46f1bf8b16a8a01ace5a.propsDefinition & VueComponentBaseProps;
|
381
407
|
"omfx-properties-image-editor": typeof wc188dea2e3ae74c54a34a3e6567e1399e.propsDefinition & VueComponentBaseProps;
|
408
|
+
"omfx-properties-integer-display": typeof wc5f9cd004b39f4340a86911e1fc225a20.propsDefinition & VueComponentBaseProps;
|
409
|
+
"omfx-properties-integer-editor": typeof wc49e771f49e06477fbe72da709d82dc29.propsDefinition & VueComponentBaseProps;
|
382
410
|
"omfx-properties-language-display": typeof wc41b1957c2c2b456d8f14bc39f6761c77.propsDefinition & VueComponentBaseProps;
|
383
411
|
"omfx-properties-language-editor": typeof wc84265bdaa0054a8092a740c818daf04e.propsDefinition & VueComponentBaseProps;
|
384
412
|
"omfx-properties-link-display": typeof wc93d3ac3a514149ebbd387d1e87008ec6.propsDefinition & VueComponentBaseProps;
|
385
413
|
"omfx-properties-link-editor": typeof wc9911a5588ea34e9cad8a5129c82e1f0c.propsDefinition & VueComponentBaseProps;
|
386
414
|
"omfx-properties-link-configuration": typeof wcbdcc5c7cc8b04e9c8cba9787284281ca.propsDefinition & VueComponentBaseProps;
|
415
|
+
"omfx-properties-media-display": typeof wc82ed0f43e304436ba399aacf37dc10fb.propsDefinition & VueComponentBaseProps;
|
416
|
+
"omfx-properties-media-editor": typeof wc01ad88e84cd443e28c158b2fa4147924.propsDefinition & VueComponentBaseProps;
|
387
417
|
"omfx-properties-multilinetext-display": typeof wc90552b5ea3484174bf69463a6a74f83a.propsDefinition & VueComponentBaseProps;
|
388
418
|
"omfx-properties-multilinetext-editor": typeof wcc24137f2406f4ebeb414b8d11492d0d3.propsDefinition & VueComponentBaseProps;
|
389
419
|
"omfx-properties-multilingualtext-display": typeof wc784d162feec24424a993d8ba812b9c94.propsDefinition & VueComponentBaseProps;
|
@@ -394,14 +424,16 @@ declare global {
|
|
394
424
|
"omfx-properties-text-editor": typeof wcb8cc745685f2417cacf578d9bed620b5.propsDefinition & VueComponentBaseProps;
|
395
425
|
"omfx-properties-time-display": typeof wceb1460af73a8467597c5d0987d38cae5.propsDefinition & VueComponentBaseProps;
|
396
426
|
"omfx-properties-time-editor": typeof wcf6b07b9fb080465498768f4fc8c58415.propsDefinition & VueComponentBaseProps;
|
397
|
-
"omfx-property-picker": typeof wc091ee9b103234b26a5e2bd5f992b2582.propsDefinition & VueComponentBaseProps;
|
398
|
-
"omfx-property-renderer": typeof
|
399
|
-
"omfx-property-
|
427
|
+
"omfx-datasource-property-picker": typeof wc091ee9b103234b26a5e2bd5f992b2582.propsDefinition & VueComponentBaseProps;
|
428
|
+
"omfx-property-renderer": typeof wcf36a8a2b1c70423ebc4647aaddab8f4f.propsDefinition & VueComponentBaseProps;
|
429
|
+
"omfx-property-definition-renderer": typeof wc48e897be803c4b5cb1db09dbadd04fe5.propsDefinition & VueComponentBaseProps;
|
430
|
+
"omfx-property-configuration": typeof wce012f61b652b4ab8b7e9d436ef772f54.propsDefinition & VueComponentBaseProps;
|
431
|
+
"omfx-property-label-options": typeof wc54caefeaae1d4da7b236a3ff268b31c3.propsDefinition & VueComponentBaseProps;
|
432
|
+
"omfx-property-locking": typeof wc14f41bfbe00d46658959d3b2ebb7da69.propsDefinition & VueComponentBaseProps;
|
400
433
|
"omfx-property-input": typeof wcb174dcf2716344b0bb02c981ae68dd73.propsDefinition & VueComponentBaseProps;
|
401
|
-
"omfx-app-legacy-enterprise-properties-display": typeof wc646cfdda09044ebc9339f2ac31318512.propsDefinition & VueComponentBaseProps;
|
402
|
-
"omfx-legacy-enterprise-properties-editor": typeof wc332ae4244d4e4b0296befadb2ad2ac6b.propsDefinition & VueComponentBaseProps;
|
403
434
|
"omfx-emoticon": typeof wc58330f37503947799af05363e58bda3c.propsDefinition & VueComponentBaseProps;
|
404
435
|
"omfx-rich-text-editor": typeof wc7474e75042e347b4821bbafdb1cb4ee0.propsDefinition & VueComponentBaseProps;
|
436
|
+
"omfx-textcompletion-panel": typeof wc327ec741777b4e1ea8017f1d0a3b8d9d.propsDefinition & VueComponentBaseProps;
|
405
437
|
"omfx-rollup-empty": typeof wc8c7794090eb647eb8510b39cbefa17a7.propsDefinition & VueComponentBaseProps;
|
406
438
|
"omfx-settings-pane": typeof wcc0de4753b9fe4004b0f4e6b6b91730ab.propsDefinition & VueComponentBaseProps;
|
407
439
|
"omfx-side-panel": typeof wc539d199f69934c10a963f142e4f3056d.propsDefinition & VueComponentBaseProps;
|
@@ -417,12 +449,6 @@ declare global {
|
|
417
449
|
"omfx-theme-definition-picker": typeof wc252ece0016594978b3ddfafdd59adda4.propsDefinition & VueComponentBaseProps;
|
418
450
|
"omfx-theme-editor-v2": typeof wc5abbb7170e454f0d8cb537bcad180cd7.propsDefinition & VueComponentBaseProps;
|
419
451
|
"omfx-themedefinition-editor": typeof wc4ff736bf8c544324883ed49f2a38f846.propsDefinition & VueComponentBaseProps;
|
420
|
-
"omfx-properties-user-configuration-renderer": typeof wc0beecee9c6ce42c88bd468bde23f9f32.propsDefinition & VueComponentBaseProps;
|
421
|
-
"omfx-properties-user-provider-display": typeof wc8f4747f0b0884fd2a3b60baef21b67fc.propsDefinition & VueComponentBaseProps;
|
422
|
-
"omfx-properties-user-provider-editor": typeof wc909b95011fbe44c28440ad9cd6aaff85.propsDefinition & VueComponentBaseProps;
|
423
|
-
"omfx-properties-msgraph-user-provider-display": typeof wc7f2ffaf9ec9e4faba84db55101236094.propsDefinition & VueComponentBaseProps;
|
424
|
-
"omfx-properties-msgraph-user-provider-editor": typeof wc9920229c8d53416b884ad1ca25ad429d.propsDefinition & VueComponentBaseProps;
|
425
|
-
"omfx-user-property-renderer": typeof wc26f3558f4af24b198d2bc7a775166840.propsDefinition & VueComponentBaseProps;
|
426
452
|
"omfx-user-presence": typeof wc21a1f20b3d404602853049c1c8b8da2f.propsDefinition & VueComponentBaseProps;
|
427
453
|
"omfx-usertype-layout-renderer": typeof wc30289e2b58ff48b0aabb3cb3732c3038.propsDefinition & VueComponentBaseProps;
|
428
454
|
"omfx-usertype-layout-blade-builder": typeof wc5b26d2a399c041f3beae9c1115d6e8d8.propsDefinition & VueComponentBaseProps;
|
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "@omnia/fx",
|
3
3
|
"license": "MIT",
|
4
|
-
"version": "8.0.
|
4
|
+
"version": "8.0.29-vnext",
|
5
5
|
"description": "Provide Omnia Fx typings and tooling for clientside Omnia development.",
|
6
6
|
"scripts": {
|
7
7
|
"test": "echo \"Error: no test specified\" && exit 1",
|
@@ -20,7 +20,7 @@
|
|
20
20
|
],
|
21
21
|
"author": "Precio Fishbone",
|
22
22
|
"dependencies": {
|
23
|
-
"@omnia/fx-models": "8.0.
|
23
|
+
"@omnia/fx-models": "8.0.29-vnext",
|
24
24
|
"@microsoft/signalr": "6.0.1",
|
25
25
|
"broadcast-channel": "4.8.0",
|
26
26
|
"dayjs": "1.10.7",
|
package/internal-do-not-import-from-here/ux/dynamicgroup/DynamicGroupPropertyEditorRenderer.d.ts
DELETED
@@ -1,73 +0,0 @@
|
|
1
|
-
import { PropertyDefinition, PropertyValueBinding, PropertyValue } from "@omnia/fx-models";
|
2
|
-
declare const _default: {
|
3
|
-
new (...args: any[]): {
|
4
|
-
$: import("vue").ComponentInternalInstance;
|
5
|
-
$data: {};
|
6
|
-
$props: Partial<{}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
7
|
-
valueBind: import("vue").Prop<PropertyValueBinding<PropertyDefinition<any, any, any> | PropertyValue<any, any>>, PropertyValueBinding<PropertyDefinition<any, any, any> | PropertyValue<any, any>>>;
|
8
|
-
onValueBindChanged: import("vue").Prop<(value: PropertyValueBinding<PropertyDefinition<any, any, any> | PropertyValue<any, any>>) => void, (value: PropertyValueBinding<PropertyDefinition<any, any, any> | PropertyValue<any, any>>) => void>;
|
9
|
-
disabled: import("vue").Prop<boolean, boolean>;
|
10
|
-
}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>;
|
11
|
-
$attrs: {
|
12
|
-
[x: string]: unknown;
|
13
|
-
};
|
14
|
-
$refs: {
|
15
|
-
[x: string]: unknown;
|
16
|
-
};
|
17
|
-
$slots: Readonly<{
|
18
|
-
[name: string]: import("vue").Slot;
|
19
|
-
}>;
|
20
|
-
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
21
|
-
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
22
|
-
$emit: (event: string, ...args: any[]) => void;
|
23
|
-
$el: any;
|
24
|
-
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
25
|
-
valueBind: import("vue").Prop<PropertyValueBinding<PropertyDefinition<any, any, any> | PropertyValue<any, any>>, PropertyValueBinding<PropertyDefinition<any, any, any> | PropertyValue<any, any>>>;
|
26
|
-
onValueBindChanged: import("vue").Prop<(value: PropertyValueBinding<PropertyDefinition<any, any, any> | PropertyValue<any, any>>) => void, (value: PropertyValueBinding<PropertyDefinition<any, any, any> | PropertyValue<any, any>>) => void>;
|
27
|
-
disabled: import("vue").Prop<boolean, boolean>;
|
28
|
-
}>>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
29
|
-
[key: string]: any;
|
30
|
-
}>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string> & {
|
31
|
-
beforeCreate?: (() => void) | (() => void)[];
|
32
|
-
created?: (() => void) | (() => void)[];
|
33
|
-
beforeMount?: (() => void) | (() => void)[];
|
34
|
-
mounted?: (() => void) | (() => void)[];
|
35
|
-
beforeUpdate?: (() => void) | (() => void)[];
|
36
|
-
updated?: (() => void) | (() => void)[];
|
37
|
-
activated?: (() => void) | (() => void)[];
|
38
|
-
deactivated?: (() => void) | (() => void)[];
|
39
|
-
beforeDestroy?: (() => void) | (() => void)[];
|
40
|
-
beforeUnmount?: (() => void) | (() => void)[];
|
41
|
-
destroyed?: (() => void) | (() => void)[];
|
42
|
-
unmounted?: (() => void) | (() => void)[];
|
43
|
-
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
44
|
-
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
45
|
-
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)[];
|
46
|
-
};
|
47
|
-
$forceUpdate: () => void;
|
48
|
-
$nextTick: typeof import("vue").nextTick;
|
49
|
-
$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;
|
50
|
-
} & Readonly<import("vue").ExtractPropTypes<{
|
51
|
-
valueBind: import("vue").Prop<PropertyValueBinding<PropertyDefinition<any, any, any> | PropertyValue<any, any>>, PropertyValueBinding<PropertyDefinition<any, any, any> | PropertyValue<any, any>>>;
|
52
|
-
onValueBindChanged: import("vue").Prop<(value: PropertyValueBinding<PropertyDefinition<any, any, any> | PropertyValue<any, any>>) => void, (value: PropertyValueBinding<PropertyDefinition<any, any, any> | PropertyValue<any, any>>) => void>;
|
53
|
-
disabled: import("vue").Prop<boolean, boolean>;
|
54
|
-
}>> & import("vue").ShallowUnwrapRef<() => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
55
|
-
[key: string]: any;
|
56
|
-
}>> & {} & import("vue").ComponentCustomProperties & {};
|
57
|
-
__isFragment?: never;
|
58
|
-
__isTeleport?: never;
|
59
|
-
__isSuspense?: never;
|
60
|
-
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
61
|
-
valueBind: import("vue").Prop<PropertyValueBinding<PropertyDefinition<any, any, any> | PropertyValue<any, any>>, PropertyValueBinding<PropertyDefinition<any, any, any> | PropertyValue<any, any>>>;
|
62
|
-
onValueBindChanged: import("vue").Prop<(value: PropertyValueBinding<PropertyDefinition<any, any, any> | PropertyValue<any, any>>) => void, (value: PropertyValueBinding<PropertyDefinition<any, any, any> | PropertyValue<any, any>>) => void>;
|
63
|
-
disabled: import("vue").Prop<boolean, boolean>;
|
64
|
-
}>>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
65
|
-
[key: string]: any;
|
66
|
-
}>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
67
|
-
propsDefinition: Omit<Readonly<{} & {
|
68
|
-
disabled?: boolean;
|
69
|
-
valueBind?: PropertyValueBinding<PropertyDefinition<any, any, any> | PropertyValue<any, any>>;
|
70
|
-
onValueBindChanged?: (value: PropertyValueBinding<PropertyDefinition<any, any, any> | PropertyValue<any, any>>) => void;
|
71
|
-
}>, never>;
|
72
|
-
};
|
73
|
-
export default _default;
|
@@ -1,73 +0,0 @@
|
|
1
|
-
import { PropertyDefinition, PropertyValueBinding, PropertyValue } from "@omnia/fx-models";
|
2
|
-
declare const _default: {
|
3
|
-
new (...args: any[]): {
|
4
|
-
$: import("vue").ComponentInternalInstance;
|
5
|
-
$data: {};
|
6
|
-
$props: Partial<{}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
7
|
-
valueBind: import("vue").Prop<PropertyValueBinding<PropertyDefinition<any, any, any> | PropertyValue<any, any>>, PropertyValueBinding<PropertyDefinition<any, any, any> | PropertyValue<any, any>>>;
|
8
|
-
onValueBindChanged: import("vue").Prop<(value: PropertyValueBinding<PropertyDefinition<any, any, any> | PropertyValue<any, any>>) => void, (value: PropertyValueBinding<PropertyDefinition<any, any, any> | PropertyValue<any, any>>) => void>;
|
9
|
-
disabled: import("vue").Prop<boolean, boolean>;
|
10
|
-
}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>;
|
11
|
-
$attrs: {
|
12
|
-
[x: string]: unknown;
|
13
|
-
};
|
14
|
-
$refs: {
|
15
|
-
[x: string]: unknown;
|
16
|
-
};
|
17
|
-
$slots: Readonly<{
|
18
|
-
[name: string]: import("vue").Slot;
|
19
|
-
}>;
|
20
|
-
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
21
|
-
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
22
|
-
$emit: (event: string, ...args: any[]) => void;
|
23
|
-
$el: any;
|
24
|
-
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
25
|
-
valueBind: import("vue").Prop<PropertyValueBinding<PropertyDefinition<any, any, any> | PropertyValue<any, any>>, PropertyValueBinding<PropertyDefinition<any, any, any> | PropertyValue<any, any>>>;
|
26
|
-
onValueBindChanged: import("vue").Prop<(value: PropertyValueBinding<PropertyDefinition<any, any, any> | PropertyValue<any, any>>) => void, (value: PropertyValueBinding<PropertyDefinition<any, any, any> | PropertyValue<any, any>>) => void>;
|
27
|
-
disabled: import("vue").Prop<boolean, boolean>;
|
28
|
-
}>>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
29
|
-
[key: string]: any;
|
30
|
-
}>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string> & {
|
31
|
-
beforeCreate?: (() => void) | (() => void)[];
|
32
|
-
created?: (() => void) | (() => void)[];
|
33
|
-
beforeMount?: (() => void) | (() => void)[];
|
34
|
-
mounted?: (() => void) | (() => void)[];
|
35
|
-
beforeUpdate?: (() => void) | (() => void)[];
|
36
|
-
updated?: (() => void) | (() => void)[];
|
37
|
-
activated?: (() => void) | (() => void)[];
|
38
|
-
deactivated?: (() => void) | (() => void)[];
|
39
|
-
beforeDestroy?: (() => void) | (() => void)[];
|
40
|
-
beforeUnmount?: (() => void) | (() => void)[];
|
41
|
-
destroyed?: (() => void) | (() => void)[];
|
42
|
-
unmounted?: (() => void) | (() => void)[];
|
43
|
-
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
44
|
-
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
45
|
-
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)[];
|
46
|
-
};
|
47
|
-
$forceUpdate: () => void;
|
48
|
-
$nextTick: typeof import("vue").nextTick;
|
49
|
-
$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;
|
50
|
-
} & Readonly<import("vue").ExtractPropTypes<{
|
51
|
-
valueBind: import("vue").Prop<PropertyValueBinding<PropertyDefinition<any, any, any> | PropertyValue<any, any>>, PropertyValueBinding<PropertyDefinition<any, any, any> | PropertyValue<any, any>>>;
|
52
|
-
onValueBindChanged: import("vue").Prop<(value: PropertyValueBinding<PropertyDefinition<any, any, any> | PropertyValue<any, any>>) => void, (value: PropertyValueBinding<PropertyDefinition<any, any, any> | PropertyValue<any, any>>) => void>;
|
53
|
-
disabled: import("vue").Prop<boolean, boolean>;
|
54
|
-
}>> & import("vue").ShallowUnwrapRef<() => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
55
|
-
[key: string]: any;
|
56
|
-
}>> & {} & import("vue").ComponentCustomProperties & {};
|
57
|
-
__isFragment?: never;
|
58
|
-
__isTeleport?: never;
|
59
|
-
__isSuspense?: never;
|
60
|
-
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
61
|
-
valueBind: import("vue").Prop<PropertyValueBinding<PropertyDefinition<any, any, any> | PropertyValue<any, any>>, PropertyValueBinding<PropertyDefinition<any, any, any> | PropertyValue<any, any>>>;
|
62
|
-
onValueBindChanged: import("vue").Prop<(value: PropertyValueBinding<PropertyDefinition<any, any, any> | PropertyValue<any, any>>) => void, (value: PropertyValueBinding<PropertyDefinition<any, any, any> | PropertyValue<any, any>>) => void>;
|
63
|
-
disabled: import("vue").Prop<boolean, boolean>;
|
64
|
-
}>>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
65
|
-
[key: string]: any;
|
66
|
-
}>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
67
|
-
propsDefinition: Omit<Readonly<{} & {
|
68
|
-
disabled?: boolean;
|
69
|
-
valueBind?: PropertyValueBinding<PropertyDefinition<any, any, any> | PropertyValue<any, any>>;
|
70
|
-
onValueBindChanged?: (value: PropertyValueBinding<PropertyDefinition<any, any, any> | PropertyValue<any, any>>) => void;
|
71
|
-
}>, never>;
|
72
|
-
};
|
73
|
-
export default _default;
|
package/internal-do-not-import-from-here/ux/properties/LegacyEnterprisePropertiesProvider.d.ts
DELETED
@@ -1,14 +0,0 @@
|
|
1
|
-
import { DataSourcePropertyBinding } from "@omnia/fx-models";
|
2
|
-
import { OmniaContext, ServiceContainerContext } from "@omnia/fx";
|
3
|
-
import { EnterprisePropertyCategoryStore, EnterprisePropertyStore, MultilingualStore } from "@omnia/fx/stores";
|
4
|
-
import { PropertyDataSourceBase } from "./models";
|
5
|
-
export declare class LegacyEnterprisePropertiesProvider {
|
6
|
-
id: import("@omnia/fx-models").GuidValue;
|
7
|
-
title: string;
|
8
|
-
omniaContext: OmniaContext;
|
9
|
-
enterprisePropertyStore: EnterprisePropertyStore;
|
10
|
-
multilingualStore: MultilingualStore;
|
11
|
-
serviceContainerContext: ServiceContainerContext;
|
12
|
-
enterprisePropertyCategoryStore: EnterprisePropertyCategoryStore;
|
13
|
-
getProperties(dataSource: PropertyDataSourceBase): Promise<Array<DataSourcePropertyBinding>>;
|
14
|
-
}
|
@@ -1,21 +0,0 @@
|
|
1
|
-
import { GuidValue, PropertyConfiguration, PropertyDefinition, PropertyValue, PropertyValueBinding } from "@omnia/fx-models";
|
2
|
-
import { PropertyDataSourceBase } from "./models";
|
3
|
-
export interface PropertyDataSourceValue {
|
4
|
-
dataSourceId: GuidValue;
|
5
|
-
propertyValue: PropertyValueBinding<PropertyDefinition<any, any, any> | PropertyValue<any, any>>;
|
6
|
-
}
|
7
|
-
export interface IPropertyDataSourceHandler {
|
8
|
-
onPropertyValueChanged(property: PropertyDataSourceValue): Promise<void>;
|
9
|
-
}
|
10
|
-
export declare class PropertyDataSourceContext {
|
11
|
-
private serviceContainerContext;
|
12
|
-
private handler;
|
13
|
-
private propertyDataSourceInstances;
|
14
|
-
registerPropertyDataSourceHandler(handler: IPropertyDataSourceHandler): void;
|
15
|
-
getPropertyDataSourceHandler(handler: IPropertyDataSourceHandler): IPropertyDataSourceHandler;
|
16
|
-
onPropertyValueChanged(property: PropertyDataSourceValue): Promise<void>;
|
17
|
-
savePropertiesValue(properties: PropertyDataSourceValue[]): Promise<void>;
|
18
|
-
getPropertyValue(propertyDataSourceId: GuidValue, propertyConfiguration: PropertyConfiguration<PropertyDefinition<any, any, any>>): Promise<PropertyValueBinding<PropertyDefinition<any, any, any>>>;
|
19
|
-
getPropertyDataSourceInstance(propertyDataSourceId: GuidValue): Promise<PropertyDataSourceBase>;
|
20
|
-
private savePropertyValue;
|
21
|
-
}
|
@@ -1,8 +0,0 @@
|
|
1
|
-
import { Guid, PropertyDefinition } from "@omnia/fx-models";
|
2
|
-
export type LegacyEnterprisePropertyDisplaySettings = {};
|
3
|
-
export type LegacyEnterprisePropertyEditorSettings = {};
|
4
|
-
export declare class LegacyEnterprisePropertyDefinition extends PropertyDefinition<any, LegacyEnterprisePropertyDisplaySettings, LegacyEnterprisePropertyEditorSettings> {
|
5
|
-
id: Guid;
|
6
|
-
typeName: string;
|
7
|
-
hidden: boolean;
|
8
|
-
}
|