@omnia/fx 8.0.28-vnext → 8.0.30-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 +5 -12
- 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
@@ -0,0 +1,35 @@
|
|
1
|
+
import { DataSourceProperty, GuidValue, PropertyConfiguration, PropertyDefinition, PropertyValueType, PropertyDefinitionId } from "../../../models";
|
2
|
+
export type DataSourcePropertyDefintionHandlerId = GuidValue;
|
3
|
+
/**
|
4
|
+
*
|
5
|
+
* A plugin module for handling the different property definitions/values that can be created from the data source properties
|
6
|
+
*
|
7
|
+
* */
|
8
|
+
export declare abstract class DataSourcePropertyDefinitionHandler<TPropertyDefinition extends PropertyDefinition<any, any, any>, TDataSourceProperty extends DataSourceProperty, DataSourceReadDataType, DataSourceWriteBackType> {
|
9
|
+
/**
|
10
|
+
* A unique constant id for this converter
|
11
|
+
* */
|
12
|
+
abstract readonly Id: DataSourcePropertyDefintionHandlerId;
|
13
|
+
/**
|
14
|
+
* Handler title, will be used if more than one handler exists for any given propertyDefinition
|
15
|
+
* E.g "Ticks to DateTimeProperty", and one other handler nemed "String to DateTimeProperty", i.e "TDataSourceData To TPropertyDefinition" or so.
|
16
|
+
* */
|
17
|
+
abstract readonly title: string;
|
18
|
+
/**
|
19
|
+
* The property defintion this handler is intended to handle
|
20
|
+
* */
|
21
|
+
readonly propertyDefintionId: PropertyDefinitionId;
|
22
|
+
/**
|
23
|
+
* The ctor for the definition which this handler is defined for, only used to link with definitionId in a typesafe way
|
24
|
+
* */
|
25
|
+
constructor(propertyDefinitionCtor: new () => TPropertyDefinition);
|
26
|
+
propertyConfiguration?: PropertyConfiguration<TPropertyDefinition>;
|
27
|
+
/**
|
28
|
+
* This method should convert from the data source value to PropertyValue matching the TPropertyDefinition
|
29
|
+
* */
|
30
|
+
abstract propertyValueCreator(dataSourceProperty: TDataSourceProperty, valueFromSource: DataSourceReadDataType): Promise<PropertyValueType<TPropertyDefinition>>;
|
31
|
+
/**
|
32
|
+
* This method should convert from PropertyValue matching the TPropertyDefinition to the write back data type expected for data source to be able to writeback
|
33
|
+
* */
|
34
|
+
abstract propertyWriteBackDataCreator(dataSourceProperty: TDataSourceProperty, propertyValue: PropertyValueType<TPropertyDefinition>): Promise<DataSourceWriteBackType>;
|
35
|
+
}
|
@@ -0,0 +1,49 @@
|
|
1
|
+
import { DataSourceProperty, DataSourcePropertyDisplayInformation, PropertyConfiguration, PropertyDataSourceId, PropertyDefinition, PropertyDefinitionId, UserIdentity } from "../../../models";
|
2
|
+
import { WritebackResult } from "./DataSourcePropertiesService";
|
3
|
+
export interface IDataSourcePropertyCreator {
|
4
|
+
createPropertyFromString(propertyName: string): Promise<DataSourceProperty>;
|
5
|
+
}
|
6
|
+
export declare abstract class PropertyDataSourceBase<TDataSourceProperty extends DataSourceProperty> {
|
7
|
+
readonly currentUser: UserIdentity;
|
8
|
+
readonly isImpersonatedUser: boolean;
|
9
|
+
abstract readonly title: string;
|
10
|
+
abstract readonly id: PropertyDataSourceId;
|
11
|
+
abstract supportsWriteback2(properties: Array<TDataSourceProperty>): Promise<Array<{
|
12
|
+
property: TDataSourceProperty;
|
13
|
+
supportsWriteBack: boolean;
|
14
|
+
}>>;
|
15
|
+
abstract writeback(properties: Array<{
|
16
|
+
dataSourceProperty: TDataSourceProperty;
|
17
|
+
valueToWriteback: any;
|
18
|
+
}>): Promise<Array<WritebackResult>>;
|
19
|
+
/**
|
20
|
+
* Get the current display information for a data source property, this is resolved from a data source property, as this information migth relay on system/source data that change over time
|
21
|
+
* */
|
22
|
+
abstract getPropertyDisplayInformation(dataSourceProperties: Array<TDataSourceProperty>): Promise<Array<{
|
23
|
+
property: TDataSourceProperty;
|
24
|
+
displayInformation: DataSourcePropertyDisplayInformation;
|
25
|
+
}>>;
|
26
|
+
/**
|
27
|
+
* Get all the properties supported by this data source, this is the @type {TDataSourceProperty} is extended to represent the information within a data source to identify a data source property
|
28
|
+
* */
|
29
|
+
abstract getProperties(): Promise<Array<TDataSourceProperty>>;
|
30
|
+
/**
|
31
|
+
* Returns the property configuration that should be used when representing this property, if the propertyconfiguration is not know by the source return null
|
32
|
+
* */
|
33
|
+
abstract getPropertyConfiguration(property: TDataSourceProperty): Promise<PropertyConfiguration<PropertyDefinition<any, any, any>>>;
|
34
|
+
/**
|
35
|
+
* Returns the property definition id that should be used for representing this property, if the propertydefinition is not know by the source return undefined, selection among source property creators can be made explicitly
|
36
|
+
* */
|
37
|
+
abstract getPropertyDefinition(property: TDataSourceProperty): Promise<PropertyDefinitionId>;
|
38
|
+
/**
|
39
|
+
* Get the value for datasource properties, the returned data type TDataSourceData must have a matching DataSourcePropertyDefinitionHandler<any,any,TDataSourceData>
|
40
|
+
* I.e. so a handler exists that can create property values from the source value type
|
41
|
+
* */
|
42
|
+
abstract getPropertyValues(properties: Array<TDataSourceProperty>): Promise<Array<{
|
43
|
+
valueFromSource: any;
|
44
|
+
dataSourceProperty: TDataSourceProperty;
|
45
|
+
}>>;
|
46
|
+
}
|
47
|
+
export declare abstract class DynamicPropertyDataSource<TDataSourceProperty extends DataSourceProperty> extends PropertyDataSourceBase<TDataSourceProperty> implements IDataSourcePropertyCreator {
|
48
|
+
abstract createPropertyFromString(propertyName: string): Promise<DataSourceProperty>;
|
49
|
+
}
|
@@ -19,9 +19,11 @@ export declare enum WebBlueprintDefintionTypes {
|
|
19
19
|
block = "block",
|
20
20
|
typography = "typography"
|
21
21
|
}
|
22
|
-
export type VelcronBlueprintDefintionType = "button";
|
22
|
+
export type VelcronBlueprintDefintionType = "button" | "typography";
|
23
23
|
export declare enum VelcronBlueprintDefintionTypes {
|
24
|
-
button = "button"
|
24
|
+
button = "button",
|
25
|
+
block = "block",
|
26
|
+
typography = "typography"
|
25
27
|
}
|
26
28
|
export interface BlueprintItemDefinition {
|
27
29
|
type: any;
|
@@ -10,4 +10,6 @@ var WebBlueprintDefintionTypes;
|
|
10
10
|
var VelcronBlueprintDefintionTypes;
|
11
11
|
(function (VelcronBlueprintDefintionTypes) {
|
12
12
|
VelcronBlueprintDefintionTypes["button"] = "button";
|
13
|
+
VelcronBlueprintDefintionTypes["block"] = "block";
|
14
|
+
VelcronBlueprintDefintionTypes["typography"] = "typography";
|
13
15
|
})(VelcronBlueprintDefintionTypes = exports.VelcronBlueprintDefintionTypes || (exports.VelcronBlueprintDefintionTypes = {}));
|
@@ -13,7 +13,7 @@ export declare class EnterprisePropertyStore extends Store {
|
|
13
13
|
enterprisePropertyDefinitions: import("./Store").StoreState<EnterprisePropertyDefinition[]>;
|
14
14
|
enterprisePropertyDataTypes: import("./Store").StoreState<EnterprisePropertyDataType[]>;
|
15
15
|
computedPropertyMapping: import("./Store").StoreState<{
|
16
|
-
[
|
16
|
+
[serviceIdWithTableKey: string]: EnterprisePropertyColumnMapping[];
|
17
17
|
}>;
|
18
18
|
getters: {
|
19
19
|
enterprisePropertyDefinitionsByIndexedTypes: (indexTypes: Array<PropertyIndexedType>) => EnterprisePropertyDefinition[];
|
@@ -42,7 +42,7 @@ export declare class EnterprisePropertyStore extends Store {
|
|
42
42
|
};
|
43
43
|
actions: {
|
44
44
|
refresh: import("./Store").StoreAction<unknown, () => void, (result: boolean) => void, (failureReason: any) => void, () => Promise<boolean>>;
|
45
|
-
ensureLoadData: import("./Store").StoreAction<unknown, () => void, (result: boolean) => void, (failureReason: any) => void, () => Promise<boolean>>;
|
45
|
+
ensureLoadData: import("./Store").StoreAction<unknown, (forceReload?: boolean) => void, (result: boolean, forceReload?: boolean) => void, (failureReason: any, forceReload?: boolean) => void, (forceReload?: boolean) => Promise<boolean>>;
|
46
46
|
addEnterprisePropertyDefinition: import("./Store").StoreAction<unknown, (enterpriseProperty: EnterprisePropertyDefinition) => void, (result: EnterprisePropertyDefinition, enterpriseProperty: EnterprisePropertyDefinition) => void, (failureReason: any, enterpriseProperty: EnterprisePropertyDefinition) => void, (enterpriseProperty: EnterprisePropertyDefinition) => Promise<EnterprisePropertyDefinition>>;
|
47
47
|
updateEnterprisePropertyDefinition: import("./Store").StoreAction<unknown, (enterpriseProperty: EnterprisePropertyDefinition) => void, (result: EnterprisePropertyDefinition, enterpriseProperty: EnterprisePropertyDefinition) => void, (failureReason: any, enterpriseProperty: EnterprisePropertyDefinition) => void, (enterpriseProperty: EnterprisePropertyDefinition) => Promise<EnterprisePropertyDefinition>>;
|
48
48
|
removeEnterprisePropertyDefinition: import("./Store").StoreAction<unknown, (enterprisePropertyId: GuidValue) => void, (result: boolean, enterprisePropertyId: GuidValue) => void, (failureReason: any, enterprisePropertyId: GuidValue) => void, (enterprisePropertyId: GuidValue) => Promise<boolean>>;
|
@@ -54,6 +54,7 @@ export declare class EnterprisePropertyStore extends Store {
|
|
54
54
|
addQueryableProperties: import("./Store").StoreAction<unknown, (serviceId: GuidValue, properties: EnterprisePropertyColumnMapping[]) => void, (result: void, serviceId: GuidValue, properties: EnterprisePropertyColumnMapping[]) => void, (failureReason: any, serviceId: GuidValue, properties: EnterprisePropertyColumnMapping[]) => void, (serviceId: GuidValue, properties: EnterprisePropertyColumnMapping[]) => Promise<void>>;
|
55
55
|
};
|
56
56
|
private ensureUniqueMultilingualTitle;
|
57
|
+
private getServiceIdWithTableKey;
|
57
58
|
onActivated(): void;
|
58
59
|
onDisposing(): void;
|
59
60
|
}
|
@@ -35,6 +35,7 @@ export declare class FeatureStore extends Store {
|
|
35
35
|
}) => Promise<FeatureInstance[]>>;
|
36
36
|
loadFeatureInstance: import("./Store").StoreAction<unknown, (featureId: GuidValue) => void, (result: FeatureInstance, featureId: GuidValue) => void, (failureReason: any, featureId: GuidValue) => void, (featureId: GuidValue) => Promise<FeatureInstance>>;
|
37
37
|
activateFeature: import("./Store").StoreAction<unknown, (featureId: GuidValue, properties: any) => void, (result: FeatureInstance, featureId: GuidValue, properties: any) => void, (failureReason: any, featureId: GuidValue, properties: any) => void, (featureId: GuidValue, properties: any) => Promise<FeatureInstance>>;
|
38
|
+
requestConsent: import("./Store").StoreAction<unknown, (featureIds: GuidValue[]) => void, (result: FeatureInstance[], featureIds: GuidValue[]) => void, (failureReason: any, featureIds: GuidValue[]) => void, (featureIds: GuidValue[]) => Promise<FeatureInstance[]>>;
|
38
39
|
upgradeFeature: import("./Store").StoreAction<unknown, (featureId: GuidValue, properties: any) => void, (result: FeatureInstance, featureId: GuidValue, properties: any) => void, (failureReason: any, featureId: GuidValue, properties: any) => void, (featureId: GuidValue, properties: any) => Promise<FeatureInstance>>;
|
39
40
|
removeFeature: import("./Store").StoreAction<unknown, (featureId: GuidValue) => void, (result: FeatureInstance, featureId: GuidValue) => void, (failureReason: any, featureId: GuidValue) => void, (featureId: GuidValue) => Promise<FeatureInstance>>;
|
40
41
|
};
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { Future, Identity, IdentityQuery, IResolvedIdentity } from "
|
1
|
+
import { Future, Identity, IdentityQuery, IResolvedIdentity } from "../models";
|
2
2
|
import { Store } from "./Store";
|
3
3
|
export declare class IdentityStore extends Store {
|
4
4
|
private identityService;
|
@@ -13,6 +13,7 @@ export declare class IdentitySyncProviderStore extends Store {
|
|
13
13
|
ended?: Date;
|
14
14
|
status: import("@omnia/fx-models").IdentityProviderRunStatus;
|
15
15
|
fullSyncOnNextRun: boolean;
|
16
|
+
fullUserSyncOnNextRun: boolean;
|
16
17
|
fullLogOnNextRun: boolean;
|
17
18
|
togglePauseOnNextRun: boolean;
|
18
19
|
setupComplete: boolean;
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { GroupIdentity,
|
1
|
+
import { EnterprisePropertyDefinition, GroupIdentity, GuidValue, Identity, IdentityProperty, PropertyBinding, PropertyDefinition, ResolvedUserIdentity, UserIdentity } from "@omnia/fx-models";
|
2
2
|
import { MediaPickerService, UserPresenceStatus } from "../services";
|
3
3
|
import { Store } from "./Store";
|
4
4
|
export declare class UserIdentityStore extends Store {
|
@@ -21,7 +21,8 @@ export declare class UserIdentityStore extends Store {
|
|
21
21
|
getUserImageUrl: (user: ResolvedUserIdentity, imageRatioId?: number, scalingId?: number) => string;
|
22
22
|
};
|
23
23
|
actions: {
|
24
|
-
addUserProperty: import("./Store").StoreAction<unknown, (property:
|
24
|
+
addUserProperty: import("./Store").StoreAction<unknown, (property: PropertyBinding<PropertyDefinition<any, any, any, import("@omnia/fx-models").PropertySetupBase>>) => void, (result: void, property: PropertyBinding<PropertyDefinition<any, any, any, import("@omnia/fx-models").PropertySetupBase>>) => void, (failureReason: any, property: PropertyBinding<PropertyDefinition<any, any, any, import("@omnia/fx-models").PropertySetupBase>>) => void, (property: PropertyBinding<PropertyDefinition<any, any, any>>) => Promise<void>>;
|
25
|
+
createUserProperty: import("./Store").StoreAction<unknown, (property: EnterprisePropertyDefinition) => void, (result: void, property: EnterprisePropertyDefinition) => void, (failureReason: any, property: EnterprisePropertyDefinition) => void, (property: EnterprisePropertyDefinition) => Promise<void>>;
|
25
26
|
removeUserProperty: import("./Store").StoreAction<unknown, (identityProperty: IdentityProperty) => void, (result: void, identityProperty: IdentityProperty) => void, (failureReason: any, identityProperty: IdentityProperty) => void, (identityProperty: IdentityProperty) => Promise<void>>;
|
26
27
|
ensureLoadUserProperties: import("./Store").StoreAction<unknown, () => void, (result: IdentityProperty[]) => void, (failureReason: any) => void, () => Promise<IdentityProperty[]>>;
|
27
28
|
resolveUsersIdentity: import("./Store").StoreAction<unknown, (users: UserIdentity[]) => void, (result: {
|
@@ -50,6 +51,11 @@ export declare class UserIdentityStore extends Store {
|
|
50
51
|
[groupUid: string]: boolean;
|
51
52
|
}>>;
|
52
53
|
getUserGroups: import("./Store").StoreAction<unknown, (user: UserIdentity) => void, (result: GroupIdentity[], user: UserIdentity) => void, (failureReason: any, user: UserIdentity) => void, (user: UserIdentity) => Promise<GroupIdentity[]>>;
|
54
|
+
getIdentitiesWithProviderIdentities: import("./Store").StoreAction<unknown, (providerId: GuidValue, userIds: GuidValue[]) => void, (result: {
|
55
|
+
[userIdentityUid: string]: Identity;
|
56
|
+
}, providerId: GuidValue, userIds: GuidValue[]) => void, (failureReason: any, providerId: GuidValue, userIds: GuidValue[]) => void, (providerId: GuidValue, userIds: GuidValue[]) => Promise<{
|
57
|
+
[userIdentityUid: string]: Identity;
|
58
|
+
}>>;
|
53
59
|
};
|
54
60
|
protected onActivated(): void;
|
55
61
|
}
|
@@ -3,5 +3,6 @@ export declare class AppRollupFilterEngineContext extends DbQueryFilterEngineCon
|
|
3
3
|
componentId: string;
|
4
4
|
uniqueId: string;
|
5
5
|
constructor(componentId: string);
|
6
|
+
readonly supportFullTextSearch: boolean;
|
6
7
|
getAvailableProperties(): import("@omnia/fx-models").EnterprisePropertyDefinition[];
|
7
8
|
}
|
@@ -72,6 +72,8 @@ export * from "./AnchorLink";
|
|
72
72
|
export * from "./LayoutFileContext";
|
73
73
|
export * from "./AppRollupFilterEngineContext";
|
74
74
|
export * from "./SidePanelContext";
|
75
|
+
export * from "./ScrollHelper";
|
76
|
+
export * from "./ListViewComponentBase";
|
75
77
|
export { OmniaTheming } from "./OmniaTheming";
|
76
78
|
export type { FocusOption, ClickOutOption, ScrollOption, LinkHandlerOptions, } from "./directives";
|
77
79
|
export { FocusDirective, ClickOutDirective, ScrollDirective, LinkHandlerDirective, } from "./directives";
|
@@ -0,0 +1,28 @@
|
|
1
|
+
export declare class StickyElementHelper {
|
2
|
+
constructor();
|
3
|
+
private blockElement;
|
4
|
+
private componentElm;
|
5
|
+
private stickyElmScrollableParent;
|
6
|
+
private scrollCallback;
|
7
|
+
private parentScrollOffset;
|
8
|
+
private lastScrollTop;
|
9
|
+
private paddingTop;
|
10
|
+
private isSticky;
|
11
|
+
private selector;
|
12
|
+
private elementWidth;
|
13
|
+
private bgColor;
|
14
|
+
private previousStyle;
|
15
|
+
private previousColumnStyle;
|
16
|
+
private static FILTER_CLASS;
|
17
|
+
private tableColumnWidth;
|
18
|
+
private applyStickyStyle;
|
19
|
+
private tableColumnStyle;
|
20
|
+
private stickyMenu;
|
21
|
+
private tableColumn;
|
22
|
+
registerStickyElement(componentElm: Element, selector: string): void;
|
23
|
+
checkSticky(elm: Element): void;
|
24
|
+
private getTopFilterHeight;
|
25
|
+
private getTableColumnWidth;
|
26
|
+
private getStickyElement;
|
27
|
+
getBackground(element: any): any;
|
28
|
+
}
|
@@ -1,4 +1,5 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
1
|
+
import { ISidePanelContext } from "../models";
|
2
|
+
export declare class SidePanelContext implements ISidePanelContext {
|
3
|
+
leftPositionDisabled: boolean;
|
4
|
+
rightPositionDisabled: boolean;
|
4
5
|
}
|
@@ -34,6 +34,7 @@ export interface OmniaUxLocalization {
|
|
34
34
|
};
|
35
35
|
Yes: string;
|
36
36
|
No: string;
|
37
|
+
NotApplicable: string;
|
37
38
|
Default: string;
|
38
39
|
Type: string;
|
39
40
|
Text: string;
|
@@ -277,7 +278,7 @@ export interface OmniaUxLocalization {
|
|
277
278
|
Subject: string;
|
278
279
|
Body: string;
|
279
280
|
};
|
280
|
-
|
281
|
+
OnBoardingLink: {
|
281
282
|
Subject: string;
|
282
283
|
Body: string;
|
283
284
|
};
|
@@ -406,14 +407,19 @@ export interface OmniaUxLocalization {
|
|
406
407
|
IncludeChildTerms: string;
|
407
408
|
IncludeEmpty: string;
|
408
409
|
AddFilter: string;
|
410
|
+
Settings: {
|
411
|
+
FixedHeader: string;
|
412
|
+
FixedFilterArea: string;
|
413
|
+
};
|
409
414
|
};
|
410
415
|
EnterpriseGlossary: {
|
411
416
|
EnterpriseGlossaryPicker: string;
|
412
417
|
};
|
413
418
|
Properties: {
|
414
|
-
|
419
|
+
PropertyType: string;
|
415
420
|
DataSource: string;
|
416
421
|
SelectProperties: string;
|
422
|
+
PropertyTypeConverter: string;
|
417
423
|
Definitions: {
|
418
424
|
Birthday: string;
|
419
425
|
Date: string;
|
@@ -421,9 +427,12 @@ export interface OmniaUxLocalization {
|
|
421
427
|
Email: string;
|
422
428
|
Html: string;
|
423
429
|
Image: string;
|
430
|
+
Media: string;
|
424
431
|
PhoneNumber: string;
|
425
432
|
MultilineText: string;
|
426
433
|
Text: string;
|
434
|
+
Integer: string;
|
435
|
+
Boolean: string;
|
427
436
|
Link: string;
|
428
437
|
Time: string;
|
429
438
|
Identity: string;
|
@@ -457,6 +466,20 @@ export interface OmniaUxLocalization {
|
|
457
466
|
PhoneNumber: {
|
458
467
|
InvalidPatternMessage: string;
|
459
468
|
};
|
469
|
+
Media: {
|
470
|
+
AddMedia: string;
|
471
|
+
};
|
472
|
+
TermSet: {
|
473
|
+
TextOnly: string;
|
474
|
+
MultiValue: string;
|
475
|
+
};
|
476
|
+
InternalName: string;
|
477
|
+
InternalNameInvalidMessage: string;
|
478
|
+
Setup: string;
|
479
|
+
Display: string;
|
480
|
+
Edit: string;
|
481
|
+
ShowLabelText: string;
|
482
|
+
ShowLabelIcon: string;
|
460
483
|
};
|
461
484
|
ValidationErrors: {
|
462
485
|
WhiteSpaceNotAllowed: string;
|
@@ -551,6 +574,7 @@ export interface OmniaUxLocalization {
|
|
551
574
|
ShowTeamsPresence: {
|
552
575
|
Category: string;
|
553
576
|
Description: string;
|
577
|
+
ConsentInformation: string;
|
554
578
|
Title: string;
|
555
579
|
};
|
556
580
|
SocialReactions: {
|
@@ -574,6 +598,12 @@ export interface OmniaUxLocalization {
|
|
574
598
|
Title: string;
|
575
599
|
};
|
576
600
|
LegacyPre7Permissions: {
|
601
|
+
Category: string;
|
602
|
+
Description: string;
|
603
|
+
ConsentInformation: string;
|
604
|
+
Title: string;
|
605
|
+
};
|
606
|
+
LegacyUserProfileCard: {
|
577
607
|
Category: string;
|
578
608
|
Description: string;
|
579
609
|
Title: string;
|
@@ -583,6 +613,11 @@ export interface OmniaUxLocalization {
|
|
583
613
|
Description: string;
|
584
614
|
Title: string;
|
585
615
|
};
|
616
|
+
TextCompletion: {
|
617
|
+
Category: string;
|
618
|
+
Description: string;
|
619
|
+
Title: string;
|
620
|
+
};
|
586
621
|
};
|
587
622
|
AuditLog: {
|
588
623
|
Title: string;
|
@@ -624,10 +659,12 @@ export interface OmniaUxLocalization {
|
|
624
659
|
};
|
625
660
|
};
|
626
661
|
FilterEngine: {
|
662
|
+
Common: {
|
663
|
+
From: string;
|
664
|
+
To: string;
|
665
|
+
};
|
627
666
|
Editor: {
|
628
667
|
Common: {
|
629
|
-
From: string;
|
630
|
-
To: string;
|
631
668
|
TermSetNotFound: string;
|
632
669
|
DefaultPosition: {
|
633
670
|
Label: string;
|
@@ -638,6 +675,7 @@ export interface OmniaUxLocalization {
|
|
638
675
|
Dialog: string;
|
639
676
|
};
|
640
677
|
};
|
678
|
+
DefaultValue: string;
|
641
679
|
};
|
642
680
|
DialogPosition: {
|
643
681
|
Label: string;
|
@@ -649,23 +687,40 @@ export interface OmniaUxLocalization {
|
|
649
687
|
GeneralTab: string;
|
650
688
|
StyleTab: string;
|
651
689
|
ShowSearchBox: string;
|
652
|
-
|
690
|
+
SearchBoxSettings: {
|
691
|
+
Mode: {
|
692
|
+
Label: string;
|
693
|
+
Properties: string;
|
694
|
+
FullText: string;
|
695
|
+
};
|
696
|
+
DefaultSearchText: string;
|
697
|
+
SearchTitleAnd: string;
|
698
|
+
SearchProperties: string;
|
699
|
+
};
|
653
700
|
Property: {
|
654
701
|
UserFilterOption: {
|
702
|
+
NoDefault: string;
|
655
703
|
CurrentUser: string;
|
656
704
|
PickedUser: string;
|
657
705
|
};
|
658
|
-
BooleanFilterOption: {
|
659
|
-
Yes: string;
|
660
|
-
No: string;
|
661
|
-
};
|
662
706
|
FilterRenderType: {
|
663
707
|
Label: string;
|
664
708
|
Option: {
|
665
|
-
Dropdown:
|
666
|
-
|
667
|
-
|
668
|
-
|
709
|
+
Dropdown: {
|
710
|
+
Label: string;
|
711
|
+
};
|
712
|
+
List: {
|
713
|
+
Label: string;
|
714
|
+
CollapsedByDefault: string;
|
715
|
+
DefaultVisibleItems: string;
|
716
|
+
};
|
717
|
+
Tags: {
|
718
|
+
Label: string;
|
719
|
+
};
|
720
|
+
IconButtons: {
|
721
|
+
Label: string;
|
722
|
+
DefaultVisibleItems: string;
|
723
|
+
};
|
669
724
|
};
|
670
725
|
};
|
671
726
|
Operator: {
|
@@ -687,32 +742,43 @@ export interface OmniaUxLocalization {
|
|
687
742
|
ShowEnterpriseGlossaryIcon: string;
|
688
743
|
ShowResultCount: string;
|
689
744
|
ShowZeroResultCountValues: string;
|
690
|
-
DefaultVisibleIconButtons: string;
|
691
745
|
IconButtonsWidth: string;
|
692
746
|
};
|
693
747
|
AddFilter: string;
|
694
748
|
SaveFilterState: string;
|
695
749
|
RunQueryOnLoad: string;
|
696
750
|
ShowSelectedValuesArea: string;
|
751
|
+
FixedFilter: string;
|
697
752
|
ShowPropertyLabel: string;
|
698
753
|
MaxVisibleValues: string;
|
699
754
|
FilterWidth: string;
|
755
|
+
FixedFilterWidth: string;
|
700
756
|
GeneralStyleLabel: string;
|
701
757
|
OutlinedStyle: string;
|
702
758
|
RoundedStyle: string;
|
703
759
|
FilledStyle: string;
|
704
760
|
ChipColorsLabel: string;
|
761
|
+
DefaultChipColor: string;
|
705
762
|
EnterpriseGlossaryChipColor: string;
|
706
|
-
CustomChipColor:
|
763
|
+
CustomChipColor: {
|
764
|
+
Label: string;
|
765
|
+
Colors: {
|
766
|
+
Background: string;
|
767
|
+
Text: string;
|
768
|
+
};
|
769
|
+
};
|
770
|
+
SearchBoxWidth: string;
|
707
771
|
};
|
708
772
|
Renderer: {
|
709
773
|
Common: {
|
710
774
|
Title: string;
|
711
775
|
ShowMore: string;
|
712
776
|
ShowLess: string;
|
777
|
+
Clear: string;
|
713
778
|
};
|
714
779
|
TermPicker: {
|
715
780
|
ClearAllButton: string;
|
781
|
+
FindTerm: string;
|
716
782
|
};
|
717
783
|
SearchValueBox: {
|
718
784
|
Label: string;
|
@@ -1122,6 +1188,24 @@ export interface OmniaUxLocalization {
|
|
1122
1188
|
Title: string;
|
1123
1189
|
Decsription: string;
|
1124
1190
|
};
|
1191
|
+
IdentityPicker: {
|
1192
|
+
User: {
|
1193
|
+
Searchbox: {
|
1194
|
+
Placeholder: string;
|
1195
|
+
};
|
1196
|
+
Type: {
|
1197
|
+
Label: string;
|
1198
|
+
};
|
1199
|
+
};
|
1200
|
+
Group: {
|
1201
|
+
Searchbox: {
|
1202
|
+
Placeholder: string;
|
1203
|
+
};
|
1204
|
+
Type: {
|
1205
|
+
Label: string;
|
1206
|
+
};
|
1207
|
+
};
|
1208
|
+
};
|
1125
1209
|
}
|
1126
1210
|
export declare const OmniaUxLocalizationNamespace = "Omnia.Ux";
|
1127
1211
|
export declare const BuiltInLocalizationKeys: {
|
@@ -1,25 +1,37 @@
|
|
1
|
-
import {
|
2
|
-
import { LegacyEnterprisePropertiesProvider, PropertyDataSourceBase } from "..";
|
1
|
+
import { DataSourceProperty, Guid, PropertyConfiguration, PropertyDefinition, PropertyDataSourceId, DataSourcePropertyDisplayInformation, GuidValue, PropertyDefinitionId } from "@omnia/fx-models";
|
3
2
|
import { EnterprisePropertyStore, MultilingualStore } from "@omnia/fx/stores";
|
4
|
-
import { LocalizationService } from "@omnia/fx/services";
|
5
|
-
export declare class
|
3
|
+
import { LocalizationService, EnterprisePropertiesProvider, PropertyDataSourceBase, WritebackResult } from "@omnia/fx/services";
|
4
|
+
export declare class AppDataSourceProperty extends DataSourceProperty {
|
5
|
+
readonly enterprisePropertyDefinitionId?: GuidValue;
|
6
|
+
readonly builtInInternalName?: string;
|
7
|
+
constructor(dataSourceId: PropertyDataSourceId, enterprisePropertyDefinitionId?: GuidValue, builtInInternalName?: string);
|
8
|
+
}
|
9
|
+
export declare class AppPropertiesProvider extends PropertyDataSourceBase<AppDataSourceProperty> {
|
6
10
|
id: Guid;
|
7
11
|
title: string;
|
8
12
|
private omniaContext;
|
9
13
|
enterprisePropertyStore: EnterprisePropertyStore;
|
10
14
|
multilingualStore: MultilingualStore;
|
11
|
-
|
15
|
+
enterprisePropertiesProvider: EnterprisePropertiesProvider;
|
12
16
|
localizationService: LocalizationService;
|
13
|
-
static
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
}[]
|
22
|
-
|
23
|
-
|
24
|
-
|
17
|
+
private static builtInProperties;
|
18
|
+
supportsWriteback2(properties: AppDataSourceProperty[]): Promise<{
|
19
|
+
property: AppDataSourceProperty;
|
20
|
+
supportsWriteBack: boolean;
|
21
|
+
}[]>;
|
22
|
+
writeback(properties: {
|
23
|
+
dataSourceProperty: AppDataSourceProperty;
|
24
|
+
valueToWriteback: any;
|
25
|
+
}[]): Promise<WritebackResult[]>;
|
26
|
+
getPropertyConfiguration(property: AppDataSourceProperty): Promise<PropertyConfiguration<PropertyDefinition<any, any, any>>>;
|
27
|
+
getPropertyDefinition(property: AppDataSourceProperty): Promise<PropertyDefinitionId>;
|
28
|
+
getPropertyValues(properties: AppDataSourceProperty[]): Promise<Array<{
|
29
|
+
valueFromSource: any;
|
30
|
+
dataSourceProperty: AppDataSourceProperty;
|
31
|
+
}>>;
|
32
|
+
getProperties(): Promise<Array<AppDataSourceProperty>>;
|
33
|
+
getPropertyDisplayInformation(dataSourceProperties: AppDataSourceProperty[]): Promise<{
|
34
|
+
property: AppDataSourceProperty;
|
35
|
+
displayInformation: DataSourcePropertyDisplayInformation;
|
36
|
+
}[]>;
|
25
37
|
}
|
@@ -68,12 +68,15 @@ export declare module AppManagementLocalization {
|
|
68
68
|
Add: string;
|
69
69
|
Edit: string;
|
70
70
|
AddDescription: string;
|
71
|
+
EmptyTitleMessage: string;
|
71
72
|
Visible: string;
|
72
73
|
Hidden: string;
|
73
74
|
CurrentUser: string;
|
75
|
+
CurrentUserValue: string;
|
74
76
|
ToDay: string;
|
75
77
|
NoDefault: string;
|
76
78
|
Fixed: string;
|
79
|
+
FixedValue: string;
|
77
80
|
Calculated: string;
|
78
81
|
Yes: string;
|
79
82
|
No: string;
|
package/internal-do-not-import-from-here/ux/app/management/tabs/templates/tabs/PropertyRow.d.ts
CHANGED
@@ -73,8 +73,8 @@ declare const _default: {
|
|
73
73
|
}>>, () => JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
74
74
|
propsDefinition: Omit<Readonly<{} & {
|
75
75
|
property?: FixedDefaultEnterprisePropertyValue;
|
76
|
-
appTemplate?: AppTemplate;
|
77
76
|
targetingProperties?: TargetingProperty<TargetingPropertyData>[];
|
77
|
+
appTemplate?: AppTemplate;
|
78
78
|
defaultPropertySetValue?: {};
|
79
79
|
templateProperties?: EnterprisePropertyItemSettings[];
|
80
80
|
visibilitySettings?: unknown;
|