@omnia/fx 8.0.28-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/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/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
package/internal-do-not-import-from-here/ux/properties/property-configuration/PropertyLocking.d.ts
ADDED
@@ -0,0 +1,95 @@
|
|
1
|
+
import { PropertyLockStatus } 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
|
+
lockingStatus: import("vue").Prop<PropertyLockStatus, PropertyLockStatus>;
|
8
|
+
onValueChanged: import("vue").Prop<Function, Function>;
|
9
|
+
renderBody: import("vue").Prop<() => JSX.Element[], () => JSX.Element[]>;
|
10
|
+
styles: import("vue").Prop<{
|
11
|
+
lockingWrapper: import("typestyle/lib/types").NestedCSSProperties;
|
12
|
+
}, {
|
13
|
+
lockingWrapper: import("typestyle/lib/types").NestedCSSProperties;
|
14
|
+
}>;
|
15
|
+
showLockConfiguration: import("vue").Prop<boolean, boolean>;
|
16
|
+
}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>;
|
17
|
+
$attrs: {
|
18
|
+
[x: string]: unknown;
|
19
|
+
};
|
20
|
+
$refs: {
|
21
|
+
[x: string]: unknown;
|
22
|
+
};
|
23
|
+
$slots: Readonly<{
|
24
|
+
[name: string]: import("vue").Slot;
|
25
|
+
}>;
|
26
|
+
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
27
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
28
|
+
$emit: (event: string, ...args: any[]) => void;
|
29
|
+
$el: any;
|
30
|
+
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
31
|
+
lockingStatus: import("vue").Prop<PropertyLockStatus, PropertyLockStatus>;
|
32
|
+
onValueChanged: import("vue").Prop<Function, Function>;
|
33
|
+
renderBody: import("vue").Prop<() => JSX.Element[], () => JSX.Element[]>;
|
34
|
+
styles: import("vue").Prop<{
|
35
|
+
lockingWrapper: import("typestyle/lib/types").NestedCSSProperties;
|
36
|
+
}, {
|
37
|
+
lockingWrapper: import("typestyle/lib/types").NestedCSSProperties;
|
38
|
+
}>;
|
39
|
+
showLockConfiguration: import("vue").Prop<boolean, boolean>;
|
40
|
+
}>>, () => JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string> & {
|
41
|
+
beforeCreate?: (() => void) | (() => void)[];
|
42
|
+
created?: (() => void) | (() => void)[];
|
43
|
+
beforeMount?: (() => void) | (() => void)[];
|
44
|
+
mounted?: (() => void) | (() => void)[];
|
45
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
46
|
+
updated?: (() => void) | (() => void)[];
|
47
|
+
activated?: (() => void) | (() => void)[];
|
48
|
+
deactivated?: (() => void) | (() => void)[];
|
49
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
50
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
51
|
+
destroyed?: (() => void) | (() => void)[];
|
52
|
+
unmounted?: (() => void) | (() => void)[];
|
53
|
+
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
54
|
+
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
55
|
+
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)[];
|
56
|
+
};
|
57
|
+
$forceUpdate: () => void;
|
58
|
+
$nextTick: typeof import("vue").nextTick;
|
59
|
+
$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;
|
60
|
+
} & Readonly<import("vue").ExtractPropTypes<{
|
61
|
+
lockingStatus: import("vue").Prop<PropertyLockStatus, PropertyLockStatus>;
|
62
|
+
onValueChanged: import("vue").Prop<Function, Function>;
|
63
|
+
renderBody: import("vue").Prop<() => JSX.Element[], () => JSX.Element[]>;
|
64
|
+
styles: import("vue").Prop<{
|
65
|
+
lockingWrapper: import("typestyle/lib/types").NestedCSSProperties;
|
66
|
+
}, {
|
67
|
+
lockingWrapper: import("typestyle/lib/types").NestedCSSProperties;
|
68
|
+
}>;
|
69
|
+
showLockConfiguration: import("vue").Prop<boolean, boolean>;
|
70
|
+
}>> & import("vue").ShallowUnwrapRef<() => JSX.Element> & {} & import("vue").ComponentCustomProperties & {};
|
71
|
+
__isFragment?: never;
|
72
|
+
__isTeleport?: never;
|
73
|
+
__isSuspense?: never;
|
74
|
+
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
75
|
+
lockingStatus: import("vue").Prop<PropertyLockStatus, PropertyLockStatus>;
|
76
|
+
onValueChanged: import("vue").Prop<Function, Function>;
|
77
|
+
renderBody: import("vue").Prop<() => JSX.Element[], () => JSX.Element[]>;
|
78
|
+
styles: import("vue").Prop<{
|
79
|
+
lockingWrapper: import("typestyle/lib/types").NestedCSSProperties;
|
80
|
+
}, {
|
81
|
+
lockingWrapper: import("typestyle/lib/types").NestedCSSProperties;
|
82
|
+
}>;
|
83
|
+
showLockConfiguration: import("vue").Prop<boolean, boolean>;
|
84
|
+
}>>, () => JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
85
|
+
propsDefinition: Omit<Readonly<{} & {
|
86
|
+
onValueChanged?: Function;
|
87
|
+
styles?: {
|
88
|
+
lockingWrapper: import("typestyle/lib/types").NestedCSSProperties;
|
89
|
+
};
|
90
|
+
renderBody?: () => JSX.Element[];
|
91
|
+
showLockConfiguration?: boolean;
|
92
|
+
lockingStatus?: PropertyLockStatus;
|
93
|
+
}>, never>;
|
94
|
+
};
|
95
|
+
export default _default;
|
@@ -1,10 +1,11 @@
|
|
1
|
+
import { GuidValue } from "@omnia/fx-models";
|
1
2
|
declare const _default: {
|
2
3
|
new (...args: any[]): {
|
3
4
|
$: import("vue").ComponentInternalInstance;
|
4
5
|
$data: {};
|
5
6
|
$props: Partial<{}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
6
|
-
|
7
|
-
|
7
|
+
selectableDataSources: import("vue").Prop<GuidValue[], GuidValue[]>;
|
8
|
+
onDataSourcePropertySelected: import("vue").Prop<(selection: import("@omnia/fx/ux").IDataSourcePropertySelection) => Promise<void>, (selection: import("@omnia/fx/ux").IDataSourcePropertySelection) => Promise<void>>;
|
8
9
|
filled?: import("vue").Prop<boolean, boolean>;
|
9
10
|
disabled?: import("vue").Prop<boolean, boolean>;
|
10
11
|
dark?: import("vue").Prop<boolean, boolean>;
|
@@ -25,8 +26,8 @@ declare const _default: {
|
|
25
26
|
$emit: (event: string, ...args: any[]) => void;
|
26
27
|
$el: any;
|
27
28
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
28
|
-
|
29
|
-
|
29
|
+
selectableDataSources: import("vue").Prop<GuidValue[], GuidValue[]>;
|
30
|
+
onDataSourcePropertySelected: import("vue").Prop<(selection: import("@omnia/fx/ux").IDataSourcePropertySelection) => Promise<void>, (selection: import("@omnia/fx/ux").IDataSourcePropertySelection) => Promise<void>>;
|
30
31
|
filled?: import("vue").Prop<boolean, boolean>;
|
31
32
|
disabled?: import("vue").Prop<boolean, boolean>;
|
32
33
|
dark?: import("vue").Prop<boolean, boolean>;
|
@@ -53,8 +54,8 @@ declare const _default: {
|
|
53
54
|
$nextTick: typeof import("vue").nextTick;
|
54
55
|
$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;
|
55
56
|
} & Readonly<import("vue").ExtractPropTypes<{
|
56
|
-
|
57
|
-
|
57
|
+
selectableDataSources: import("vue").Prop<GuidValue[], GuidValue[]>;
|
58
|
+
onDataSourcePropertySelected: import("vue").Prop<(selection: import("@omnia/fx/ux").IDataSourcePropertySelection) => Promise<void>, (selection: import("@omnia/fx/ux").IDataSourcePropertySelection) => Promise<void>>;
|
58
59
|
filled?: import("vue").Prop<boolean, boolean>;
|
59
60
|
disabled?: import("vue").Prop<boolean, boolean>;
|
60
61
|
dark?: import("vue").Prop<boolean, boolean>;
|
@@ -65,8 +66,8 @@ declare const _default: {
|
|
65
66
|
__isTeleport?: never;
|
66
67
|
__isSuspense?: never;
|
67
68
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
68
|
-
|
69
|
-
|
69
|
+
selectableDataSources: import("vue").Prop<GuidValue[], GuidValue[]>;
|
70
|
+
onDataSourcePropertySelected: import("vue").Prop<(selection: import("@omnia/fx/ux").IDataSourcePropertySelection) => Promise<void>, (selection: import("@omnia/fx/ux").IDataSourcePropertySelection) => Promise<void>>;
|
70
71
|
filled?: import("vue").Prop<boolean, boolean>;
|
71
72
|
disabled?: import("vue").Prop<boolean, boolean>;
|
72
73
|
dark?: import("vue").Prop<boolean, boolean>;
|
@@ -78,9 +79,9 @@ declare const _default: {
|
|
78
79
|
filled?: boolean;
|
79
80
|
multiple?: boolean;
|
80
81
|
disabled?: boolean;
|
81
|
-
valueBind?: import("@omnia/fx-models").DataSourcePropertyBinding;
|
82
|
-
onValueChanged?: (model: import("@omnia/fx-models").DataSourcePropertyBinding) => void;
|
83
82
|
hideDetails?: boolean;
|
83
|
+
selectableDataSources?: GuidValue[];
|
84
|
+
onDataSourcePropertySelected?: (selection: import("@omnia/fx/ux").IDataSourcePropertySelection) => Promise<void>;
|
84
85
|
}>, never>;
|
85
86
|
};
|
86
87
|
export default _default;
|
@@ -1,11 +1,11 @@
|
|
1
|
-
import { PropertyDefinition,
|
1
|
+
import { PropertyDefinition, PropertyValue, PropertyValueBinding } from "@omnia/fx-models";
|
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
|
-
valueBind: import("vue").Prop<PropertyValueBinding<PropertyDefinition<
|
8
|
-
onValueBindChanged: import("vue").Prop<(
|
7
|
+
valueBind: import("vue").Prop<PropertyValueBinding<PropertyDefinition<PropertyValue, any, any, import("@omnia/fx-models").PropertySetupBase>>, PropertyValueBinding<PropertyDefinition<PropertyValue, any, any, import("@omnia/fx-models").PropertySetupBase>>>;
|
8
|
+
onValueBindChanged: import("vue").Prop<(newValue: PropertyValueBinding<PropertyDefinition<PropertyValue, any, any>>) => void, (newValue: PropertyValueBinding<PropertyDefinition<PropertyValue, any, any>>) => void>;
|
9
9
|
disabled: import("vue").Prop<boolean, boolean>;
|
10
10
|
editMode: import("vue").Prop<boolean, boolean>;
|
11
11
|
}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>;
|
@@ -23,13 +23,11 @@ declare const _default: {
|
|
23
23
|
$emit: (event: string, ...args: any[]) => void;
|
24
24
|
$el: any;
|
25
25
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
26
|
-
valueBind: import("vue").Prop<PropertyValueBinding<PropertyDefinition<
|
27
|
-
onValueBindChanged: import("vue").Prop<(
|
26
|
+
valueBind: import("vue").Prop<PropertyValueBinding<PropertyDefinition<PropertyValue, any, any, import("@omnia/fx-models").PropertySetupBase>>, PropertyValueBinding<PropertyDefinition<PropertyValue, any, any, import("@omnia/fx-models").PropertySetupBase>>>;
|
27
|
+
onValueBindChanged: import("vue").Prop<(newValue: PropertyValueBinding<PropertyDefinition<PropertyValue, any, any>>) => void, (newValue: PropertyValueBinding<PropertyDefinition<PropertyValue, any, any>>) => void>;
|
28
28
|
disabled: import("vue").Prop<boolean, boolean>;
|
29
29
|
editMode: import("vue").Prop<boolean, boolean>;
|
30
|
-
}>>, () =>
|
31
|
-
[key: string]: any;
|
32
|
-
}>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string> & {
|
30
|
+
}>>, () => JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string> & {
|
33
31
|
beforeCreate?: (() => void) | (() => void)[];
|
34
32
|
created?: (() => void) | (() => void)[];
|
35
33
|
beforeMount?: (() => void) | (() => void)[];
|
@@ -50,28 +48,24 @@ declare const _default: {
|
|
50
48
|
$nextTick: typeof import("vue").nextTick;
|
51
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;
|
52
50
|
} & Readonly<import("vue").ExtractPropTypes<{
|
53
|
-
valueBind: import("vue").Prop<PropertyValueBinding<PropertyDefinition<
|
54
|
-
onValueBindChanged: import("vue").Prop<(
|
51
|
+
valueBind: import("vue").Prop<PropertyValueBinding<PropertyDefinition<PropertyValue, any, any, import("@omnia/fx-models").PropertySetupBase>>, PropertyValueBinding<PropertyDefinition<PropertyValue, any, any, import("@omnia/fx-models").PropertySetupBase>>>;
|
52
|
+
onValueBindChanged: import("vue").Prop<(newValue: PropertyValueBinding<PropertyDefinition<PropertyValue, any, any>>) => void, (newValue: PropertyValueBinding<PropertyDefinition<PropertyValue, any, any>>) => void>;
|
55
53
|
disabled: import("vue").Prop<boolean, boolean>;
|
56
54
|
editMode: import("vue").Prop<boolean, boolean>;
|
57
|
-
}>> & import("vue").ShallowUnwrapRef<() =>
|
58
|
-
[key: string]: any;
|
59
|
-
}>> & {} & import("vue").ComponentCustomProperties & {};
|
55
|
+
}>> & import("vue").ShallowUnwrapRef<() => JSX.Element> & {} & import("vue").ComponentCustomProperties & {};
|
60
56
|
__isFragment?: never;
|
61
57
|
__isTeleport?: never;
|
62
58
|
__isSuspense?: never;
|
63
59
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
64
|
-
valueBind: import("vue").Prop<PropertyValueBinding<PropertyDefinition<
|
65
|
-
onValueBindChanged: import("vue").Prop<(
|
60
|
+
valueBind: import("vue").Prop<PropertyValueBinding<PropertyDefinition<PropertyValue, any, any, import("@omnia/fx-models").PropertySetupBase>>, PropertyValueBinding<PropertyDefinition<PropertyValue, any, any, import("@omnia/fx-models").PropertySetupBase>>>;
|
61
|
+
onValueBindChanged: import("vue").Prop<(newValue: PropertyValueBinding<PropertyDefinition<PropertyValue, any, any>>) => void, (newValue: PropertyValueBinding<PropertyDefinition<PropertyValue, any, any>>) => void>;
|
66
62
|
disabled: import("vue").Prop<boolean, boolean>;
|
67
63
|
editMode: import("vue").Prop<boolean, boolean>;
|
68
|
-
}>>, () => import("vue").
|
69
|
-
[key: string]: any;
|
70
|
-
}>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
64
|
+
}>>, () => JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
71
65
|
propsDefinition: Omit<Readonly<{} & {
|
72
66
|
disabled?: boolean;
|
73
|
-
valueBind?: PropertyValueBinding<PropertyDefinition<
|
74
|
-
onValueBindChanged?: (
|
67
|
+
valueBind?: PropertyValueBinding<PropertyDefinition<PropertyValue, any, any, import("@omnia/fx-models").PropertySetupBase>>;
|
68
|
+
onValueBindChanged?: (newValue: PropertyValueBinding<PropertyDefinition<PropertyValue, any, any>>) => void;
|
75
69
|
editMode?: boolean;
|
76
70
|
}>, never>;
|
77
71
|
};
|
@@ -4,9 +4,10 @@ declare const _default: {
|
|
4
4
|
$: import("vue").ComponentInternalInstance;
|
5
5
|
$data: {};
|
6
6
|
$props: Partial<{}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
7
|
-
valueBind: import("vue").Prop<PropertyValue
|
8
|
-
|
9
|
-
|
7
|
+
valueBind: import("vue").Prop<PropertyValue, PropertyValue>;
|
8
|
+
propertyDefintionId: import("vue").Prop<import("@omnia/fx-models").GuidValue, import("@omnia/fx-models").GuidValue>;
|
9
|
+
configuration: import("vue").Prop<PropertyConfiguration<PropertyDefinition<any, any, any, import("@omnia/fx-models").PropertySetupBase>>, PropertyConfiguration<PropertyDefinition<any, any, any, import("@omnia/fx-models").PropertySetupBase>>>;
|
10
|
+
onValueBindChanged: import("vue").Prop<(newValue: PropertyValue) => void, (newValue: PropertyValue) => void>;
|
10
11
|
disabled: import("vue").Prop<boolean, boolean>;
|
11
12
|
editMode: import("vue").Prop<boolean, boolean>;
|
12
13
|
}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>;
|
@@ -24,9 +25,10 @@ declare const _default: {
|
|
24
25
|
$emit: (event: string, ...args: any[]) => void;
|
25
26
|
$el: any;
|
26
27
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
27
|
-
valueBind: import("vue").Prop<PropertyValue
|
28
|
-
|
29
|
-
|
28
|
+
valueBind: import("vue").Prop<PropertyValue, PropertyValue>;
|
29
|
+
propertyDefintionId: import("vue").Prop<import("@omnia/fx-models").GuidValue, import("@omnia/fx-models").GuidValue>;
|
30
|
+
configuration: import("vue").Prop<PropertyConfiguration<PropertyDefinition<any, any, any, import("@omnia/fx-models").PropertySetupBase>>, PropertyConfiguration<PropertyDefinition<any, any, any, import("@omnia/fx-models").PropertySetupBase>>>;
|
31
|
+
onValueBindChanged: import("vue").Prop<(newValue: PropertyValue) => void, (newValue: PropertyValue) => void>;
|
30
32
|
disabled: import("vue").Prop<boolean, boolean>;
|
31
33
|
editMode: import("vue").Prop<boolean, boolean>;
|
32
34
|
}>>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
@@ -52,9 +54,10 @@ declare const _default: {
|
|
52
54
|
$nextTick: typeof import("vue").nextTick;
|
53
55
|
$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;
|
54
56
|
} & Readonly<import("vue").ExtractPropTypes<{
|
55
|
-
valueBind: import("vue").Prop<PropertyValue
|
56
|
-
|
57
|
-
|
57
|
+
valueBind: import("vue").Prop<PropertyValue, PropertyValue>;
|
58
|
+
propertyDefintionId: import("vue").Prop<import("@omnia/fx-models").GuidValue, import("@omnia/fx-models").GuidValue>;
|
59
|
+
configuration: import("vue").Prop<PropertyConfiguration<PropertyDefinition<any, any, any, import("@omnia/fx-models").PropertySetupBase>>, PropertyConfiguration<PropertyDefinition<any, any, any, import("@omnia/fx-models").PropertySetupBase>>>;
|
60
|
+
onValueBindChanged: import("vue").Prop<(newValue: PropertyValue) => void, (newValue: PropertyValue) => void>;
|
58
61
|
disabled: import("vue").Prop<boolean, boolean>;
|
59
62
|
editMode: import("vue").Prop<boolean, boolean>;
|
60
63
|
}>> & import("vue").ShallowUnwrapRef<() => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
@@ -64,20 +67,22 @@ declare const _default: {
|
|
64
67
|
__isTeleport?: never;
|
65
68
|
__isSuspense?: never;
|
66
69
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
67
|
-
valueBind: import("vue").Prop<PropertyValue
|
68
|
-
|
69
|
-
|
70
|
+
valueBind: import("vue").Prop<PropertyValue, PropertyValue>;
|
71
|
+
propertyDefintionId: import("vue").Prop<import("@omnia/fx-models").GuidValue, import("@omnia/fx-models").GuidValue>;
|
72
|
+
configuration: import("vue").Prop<PropertyConfiguration<PropertyDefinition<any, any, any, import("@omnia/fx-models").PropertySetupBase>>, PropertyConfiguration<PropertyDefinition<any, any, any, import("@omnia/fx-models").PropertySetupBase>>>;
|
73
|
+
onValueBindChanged: import("vue").Prop<(newValue: PropertyValue) => void, (newValue: PropertyValue) => void>;
|
70
74
|
disabled: import("vue").Prop<boolean, boolean>;
|
71
75
|
editMode: import("vue").Prop<boolean, boolean>;
|
72
76
|
}>>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
73
77
|
[key: string]: any;
|
74
78
|
}>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
75
79
|
propsDefinition: Omit<Readonly<{} & {
|
76
|
-
configuration?: PropertyConfiguration<PropertyDefinition<any, any, any>>;
|
80
|
+
configuration?: PropertyConfiguration<PropertyDefinition<any, any, any, import("@omnia/fx-models").PropertySetupBase>>;
|
77
81
|
disabled?: boolean;
|
78
|
-
valueBind?: PropertyValue
|
79
|
-
onValueBindChanged?: (newValue: PropertyValue
|
82
|
+
valueBind?: PropertyValue;
|
83
|
+
onValueBindChanged?: (newValue: PropertyValue) => void;
|
80
84
|
editMode?: boolean;
|
85
|
+
propertyDefintionId?: import("@omnia/fx-models").GuidValue;
|
81
86
|
}>, never>;
|
82
87
|
};
|
83
88
|
export default _default;
|
@@ -557,8 +557,8 @@ declare const _default: {
|
|
557
557
|
};
|
558
558
|
}>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
559
559
|
propsDefinition: Omit<Readonly<{
|
560
|
-
initialContent: string;
|
561
560
|
onContentChange: (content: string) => void;
|
561
|
+
initialContent: string;
|
562
562
|
} & {
|
563
563
|
disabled?: boolean;
|
564
564
|
placeholder?: RichTextEditorPlaceHolder;
|
@@ -0,0 +1,28 @@
|
|
1
|
+
declare const _default: {
|
2
|
+
container: {
|
3
|
+
fontSize: number;
|
4
|
+
};
|
5
|
+
};
|
6
|
+
export default _default;
|
7
|
+
export declare const containerInput: string;
|
8
|
+
export declare const containerInputWithoutReply: string;
|
9
|
+
export declare const componentCloseButton: string;
|
10
|
+
export declare const componentHeader: string;
|
11
|
+
export declare const componentBody: string;
|
12
|
+
export declare const componentStart: string;
|
13
|
+
export declare const componentFooter: string;
|
14
|
+
export declare const componentMessage: string;
|
15
|
+
export declare const componentMessageContainer: string;
|
16
|
+
export declare const componentMessageContainerOneline: string;
|
17
|
+
export declare const componentReply: string;
|
18
|
+
export declare const componentReplyContainer: string;
|
19
|
+
export declare const componentReplyContainerOneline: string;
|
20
|
+
export declare const link: string;
|
21
|
+
export declare const resetLink: string;
|
22
|
+
export declare const repliedMessage: string;
|
23
|
+
export declare const componentInsert: string;
|
24
|
+
export declare const componentImprove: string;
|
25
|
+
export declare const visibilityHidden: string;
|
26
|
+
export declare const bubbleLoading: string;
|
27
|
+
export declare const waitForTyping: string;
|
28
|
+
export declare const repliedUserMessage: string;
|