@omnia/fx 8.0.27-vnext → 8.0.29-vnext
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/internal-do-not-import-from-here/contexts/index.d.ts +0 -1
- package/internal-do-not-import-from-here/core/messaging/BuiltInTopics.d.ts +1 -0
- package/internal-do-not-import-from-here/core/utils/gpt3utils/Encoder.d.ts +50259 -0
- package/internal-do-not-import-from-here/core/utils/gpt3utils/GPT3Utils.d.ts +5 -0
- package/internal-do-not-import-from-here/core/utils/gpt3utils/Vocab.d.ts +1 -0
- package/internal-do-not-import-from-here/core/utils/gpt3utils/index.d.ts +1 -0
- package/internal-do-not-import-from-here/core/utils/index.d.ts +1 -0
- package/internal-do-not-import-from-here/index.d.ts +1 -1
- package/internal-do-not-import-from-here/manifests/omnia.fx.context.manifest.json +1 -1
- package/internal-do-not-import-from-here/manifests/omnia.fx.core.manifest.json +1 -1
- package/internal-do-not-import-from-here/manifests/omnia.fx.manifest.json +1 -1
- package/internal-do-not-import-from-here/manifests/omnia.fx.ux.manifest.json +1 -1
- package/internal-do-not-import-from-here/manifests/omnia.fx.ux.richtexteditor.manifest.json +1 -1
- package/internal-do-not-import-from-here/services/AzureOpenAIService.d.ts +22 -0
- package/internal-do-not-import-from-here/services/FeatureService.d.ts +1 -0
- package/internal-do-not-import-from-here/services/identities/IdentityService.d.ts +4 -1
- package/internal-do-not-import-from-here/services/identities/UserIdentityService.d.ts +3 -2
- package/internal-do-not-import-from-here/services/identities/UserService.d.ts +3 -3
- package/internal-do-not-import-from-here/services/index.d.ts +2 -0
- package/internal-do-not-import-from-here/services/permissions/PermissionService.d.ts +2 -1
- package/internal-do-not-import-from-here/services/properties/EnterprisePropertiesProvider.d.ts +45 -0
- package/internal-do-not-import-from-here/services/properties/bindings/PropertyBindingService.d.ts +17 -0
- package/internal-do-not-import-from-here/services/properties/bindings/index.d.ts +2 -0
- package/internal-do-not-import-from-here/services/properties/bindings/providers/ExtendedEnterprisePropertyBindingProvider.d.ts +9 -0
- package/internal-do-not-import-from-here/services/properties/bindings/providers/IdentityPropertyBindingProvider.d.ts +10 -0
- package/internal-do-not-import-from-here/services/properties/bindings/providers/index.d.ts +2 -0
- package/internal-do-not-import-from-here/services/properties/datasource/DataSourcePropertiesService.d.ts +79 -0
- package/internal-do-not-import-from-here/services/properties/datasource/DataSourcePropertyDefinitionHandler.d.ts +35 -0
- package/internal-do-not-import-from-here/services/properties/datasource/DataSourcePropertyProvider.d.ts +49 -0
- package/internal-do-not-import-from-here/services/properties/datasource/TestDataSourceService.d.ts +6 -0
- package/internal-do-not-import-from-here/services/properties/datasource/index.d.ts +4 -0
- package/internal-do-not-import-from-here/services/properties/index.d.ts +3 -0
- package/internal-do-not-import-from-here/shared/models/theming/BlueprintDefinition.d.ts +4 -2
- package/internal-do-not-import-from-here/shared/models/theming/BlueprintDefinition.js +2 -0
- package/internal-do-not-import-from-here/stores/EnterprisePropertyStore.d.ts +3 -2
- package/internal-do-not-import-from-here/stores/FeatureStore.d.ts +1 -0
- package/internal-do-not-import-from-here/stores/IdentityStore.d.ts +1 -1
- package/internal-do-not-import-from-here/stores/IdentitySyncProviderStore.d.ts +1 -0
- package/internal-do-not-import-from-here/stores/UserIdentityStore.d.ts +8 -2
- package/internal-do-not-import-from-here/ux/AppRollupFilterEngineContext.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/Exposes.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/ListViewComponentBase.d.ts +6 -0
- package/internal-do-not-import-from-here/ux/ScrollHelper.d.ts +28 -0
- package/internal-do-not-import-from-here/ux/SidePanelContext.d.ts +4 -3
- package/internal-do-not-import-from-here/ux/UxModels.d.ts +99 -15
- package/internal-do-not-import-from-here/ux/VueComponentBase.d.ts +2 -3
- package/internal-do-not-import-from-here/ux/app/AppPropertiesProvider.d.ts +29 -17
- package/internal-do-not-import-from-here/ux/app/appinstance/view/listing/ListView.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/app/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/app/management/core/loc.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/app/management/tabs/namingpolicies/ListingNamingPolicies.d.ts +0 -4
- package/internal-do-not-import-from-here/ux/app/management/tabs/templates/tabs/PropertyRow.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/authsetup/AuthSetup.css.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/authsetup/loc/localize.d.ts +6 -0
- package/internal-do-not-import-from-here/ux/authsetup/services/AuthSetupService.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/datetimepicker/DateTimePicker.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/datetimezonepicker/DateTimeZonePicker.d.ts +11 -11
- package/internal-do-not-import-from-here/ux/datetimezonepicker/IDateTimeZonePicker.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/datetimezonerenderer/DateTimeZoneRenderer.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/datetimezonerenderer/IDateTimeZoneRenderer.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/editorchrome/chrome/EditorChrome.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/enterpriseproperties/EnterprisePropertyComponentProps.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/enterpriseproperties/edit/tagsproperty/TagsPropertyEdit.d.ts +2 -1
- package/internal-do-not-import-from-here/ux/features/FeatureActivation.d.ts +4 -2
- package/internal-do-not-import-from-here/ux/features/loc/localize.d.ts +6 -0
- package/internal-do-not-import-from-here/ux/filterengine/FilterEngineHandlerStorage.d.ts +4 -1
- package/internal-do-not-import-from-here/ux/filterengine/FilterEngineRenderer.d.ts +6 -1
- package/internal-do-not-import-from-here/ux/filterengine/Helper.d.ts +2 -1
- package/internal-do-not-import-from-here/ux/{properties/property-renderer/PropertyDatasourceRenderer.d.ts → filterengine/components/renderer/PropertyDropdownRenderer.d.ts} +16 -21
- package/internal-do-not-import-from-here/ux/{user/components/PropertyConfigurationRenderer.d.ts → filterengine/components/renderer/PropertyListRenderer.d.ts} +11 -11
- package/internal-do-not-import-from-here/ux/filterengine/components/renderer/person/PersonPropertyChipItem.d.ts +160 -26
- package/internal-do-not-import-from-here/ux/filterengine/components/renderer/person/PersonPropertyItemRenderer.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/filterengine/components/renderer/person/PersonPropertyRenderer.d.ts +5 -0
- package/internal-do-not-import-from-here/ux/filterengine/components/renderer/tags/TagsPropertyRenderer.d.ts +57 -0
- package/internal-do-not-import-from-here/ux/filterengine/components/renderer/tags/TagsPropertyRendererStyle.css.d.ts +4 -0
- package/internal-do-not-import-from-here/ux/filterengine/components/selectionsarea/tags/SelectionsAreaTagsRenderer.d.ts +62 -0
- package/internal-do-not-import-from-here/ux/filterengine/components/settings/number/NumberPropertySettingsFixer.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/filterengine/components/settings/tags/TagsPropertyDefaultValueInput.d.ts +85 -0
- package/internal-do-not-import-from-here/ux/filterengine/components/settings/tags/TagsPropertySettings.d.ts +90 -0
- package/internal-do-not-import-from-here/ux/filterengine/components/settings/tags/TagsPropertySettingsFixer.d.ts +4 -0
- package/internal-do-not-import-from-here/ux/filterengine/components/settings/text/TextPropertySettingsFixer.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/filterengine/handler/FilterEngineHandler.d.ts +8 -8
- package/internal-do-not-import-from-here/ux/filterengine/handler/TagsFilterEngineHandler.d.ts +37 -0
- package/internal-do-not-import-from-here/ux/filterengine/shared/BasePropertySettings.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/identities/loc/Localize.d.ts +10 -9
- package/internal-do-not-import-from-here/ux/identitypicker/IdentityPicker.css.d.ts +3 -10
- package/internal-do-not-import-from-here/ux/identitypicker/IdentityPicker.d.ts +30 -65
- package/internal-do-not-import-from-here/ux/identitypicker/IdentityPickerButton.d.ts +152 -0
- package/internal-do-not-import-from-here/ux/identitypicker/IdentityPickerDialog.d.ts +132 -0
- package/internal-do-not-import-from-here/ux/identitypicker/IdentityPickerField.d.ts +177 -0
- package/internal-do-not-import-from-here/ux/identitypicker/IdentityPickerInlineField.d.ts +182 -0
- package/internal-do-not-import-from-here/ux/imagegrid/IImageGrid.d.ts +2 -1
- package/internal-do-not-import-from-here/ux/imagegrid/ImageGrid.d.ts +3 -2
- package/internal-do-not-import-from-here/ux/imagegrid/loc/localize.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/journey/index.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/journey/testbench/JourneyTest.d.ts +52 -0
- package/internal-do-not-import-from-here/ux/journey/v2/JourneyBlade.css.d.ts +7 -0
- package/internal-do-not-import-from-here/ux/journey/v2/JourneyBlade.d.ts +153 -0
- package/internal-do-not-import-from-here/ux/journey/v2/JourneyV2.css.d.ts +4 -0
- package/internal-do-not-import-from-here/ux/journey/v2/JourneyV2.d.ts +46 -0
- package/internal-do-not-import-from-here/ux/journey/v2/models/BladeInstance.d.ts +5 -0
- package/internal-do-not-import-from-here/ux/journey/v2/models/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/journey/v2/stores/JourneyStore.d.ts +23 -0
- package/internal-do-not-import-from-here/ux/journey/v2/stores/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/languagepicker/ILanguagePicker.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/languagepicker/LanguagePicker.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/blocktitle/BlockTitle.css.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/layoutcanvas/velcron_definitions/contentblocks.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/magiclink/loc/localize.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/mediapickerproviders/bingprovider/BingProvider.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/mediapickerproviders/dalleprovider/DallEProvider.css.d.ts +26 -0
- package/internal-do-not-import-from-here/ux/mediapickerproviders/dalleprovider/DallEProvider.d.ts +40 -0
- package/internal-do-not-import-from-here/ux/mediapickerproviders/dalleprovider/PollingImageComponent.d.ts +87 -0
- package/internal-do-not-import-from-here/ux/mediapickerproviders/dalleprovider/loc/localize.d.ts +22 -0
- package/internal-do-not-import-from-here/ux/mediapickerproviders/mediaproviderbase/GridViewMediaProviderComponent.d.ts +4 -1
- package/internal-do-not-import-from-here/ux/mediapickerproviders/pexelsprovider/PexelProvider.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/models/ProfileCardStyles.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/optionpicker/OptionPicker.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/oxide/draggable/Draggable.css.d.ts +6 -0
- package/internal-do-not-import-from-here/ux/oxide/draggable/Draggable.d.ts +593 -0
- package/internal-do-not-import-from-here/ux/oxide/menu/Menu.d.ts +47 -5
- package/internal-do-not-import-from-here/ux/oxide/toolbar/Toolbar.d.ts +53 -6
- package/internal-do-not-import-from-here/ux/oxide/treeview/Treeview.css.d.ts +0 -2
- package/internal-do-not-import-from-here/ux/profilecard/IProfileCard.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/profilecard/ProfileCard.d.ts +6 -1
- package/internal-do-not-import-from-here/ux/properties/builtins/birthday/BirthdayDisplay.d.ts +11 -7
- package/internal-do-not-import-from-here/ux/properties/builtins/birthday/BirthdayEditor.d.ts +16 -12
- package/internal-do-not-import-from-here/ux/properties/builtins/birthday/BirthdayPropertyDefinition.d.ts +1 -13
- package/internal-do-not-import-from-here/ux/properties/builtins/boolean/BooleanDisplay.css.d.ts +7 -0
- package/internal-do-not-import-from-here/ux/{user/components/UserPropertyProviderDisplay.d.ts → properties/builtins/boolean/BooleanDisplay.d.ts} +17 -17
- package/internal-do-not-import-from-here/ux/properties/builtins/boolean/BooleanEditor.css.d.ts +7 -0
- package/internal-do-not-import-from-here/ux/properties/builtins/boolean/BooleanEditor.d.ts +83 -0
- package/internal-do-not-import-from-here/ux/properties/builtins/boolean/BooleanPropertyDefinition.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/properties/builtins/date/DateDisplay.d.ts +11 -7
- package/internal-do-not-import-from-here/ux/properties/builtins/date/DateEditor.d.ts +16 -12
- package/internal-do-not-import-from-here/ux/properties/builtins/date/DatePropertyDefinition.d.ts +1 -11
- package/internal-do-not-import-from-here/ux/properties/builtins/date-time/DateTimeDisplay.d.ts +16 -12
- package/internal-do-not-import-from-here/ux/properties/builtins/date-time/DateTimeEditor.d.ts +16 -12
- package/internal-do-not-import-from-here/ux/properties/builtins/date-time/DateTimePropertyDefinition.d.ts +1 -16
- package/internal-do-not-import-from-here/ux/properties/builtins/email/EmailDisplay.d.ts +10 -5
- package/internal-do-not-import-from-here/ux/properties/builtins/email/EmailEditor.d.ts +15 -10
- package/internal-do-not-import-from-here/ux/properties/builtins/email/EmailPropertyDefinition.d.ts +1 -12
- package/internal-do-not-import-from-here/ux/properties/builtins/html/HtmlConfiguration.d.ts +16 -11
- package/internal-do-not-import-from-here/ux/properties/builtins/html/HtmlDisplay.d.ts +10 -5
- package/internal-do-not-import-from-here/ux/properties/builtins/html/HtmlEditor.d.ts +15 -10
- package/internal-do-not-import-from-here/ux/properties/builtins/html/HtmlPropertyDefinition.d.ts +1 -16
- package/internal-do-not-import-from-here/ux/properties/builtins/identity/IdentityConfiguration.d.ts +16 -11
- package/internal-do-not-import-from-here/ux/properties/builtins/identity/IdentityDisplay.d.ts +6 -2
- package/internal-do-not-import-from-here/ux/properties/builtins/identity/IdentityEditor.d.ts +7 -3
- package/internal-do-not-import-from-here/ux/properties/builtins/identity/IdentityPropertyDefinition.d.ts +1 -5
- package/internal-do-not-import-from-here/ux/properties/builtins/image/ImageConfiguration.d.ts +16 -11
- package/internal-do-not-import-from-here/ux/properties/builtins/image/ImageDisplay.d.ts +5 -0
- package/internal-do-not-import-from-here/ux/properties/builtins/image/ImageEditor.d.ts +6 -1
- package/internal-do-not-import-from-here/ux/properties/builtins/image/ImagePropertyDefinition.d.ts +1 -5
- package/internal-do-not-import-from-here/ux/properties/builtins/integer/IntegerDisplay.css.d.ts +7 -0
- package/internal-do-not-import-from-here/ux/properties/{legacy-enterprise-property/LegacyEnterprisePropertyDisplay.d.ts → builtins/integer/IntegerDisplay.d.ts} +17 -26
- package/internal-do-not-import-from-here/ux/properties/builtins/integer/IntegerEditor.css.d.ts +7 -0
- package/internal-do-not-import-from-here/ux/properties/builtins/integer/IntegerEditor.d.ts +83 -0
- package/internal-do-not-import-from-here/ux/properties/builtins/integer/IntegerPropertyDefinition.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/properties/builtins/language/LanguageDisplay.d.ts +11 -7
- package/internal-do-not-import-from-here/ux/properties/builtins/language/LanguageEditor.d.ts +16 -12
- package/internal-do-not-import-from-here/ux/properties/builtins/language/LanguagePropertyDefinition.d.ts +1 -15
- package/internal-do-not-import-from-here/ux/properties/builtins/link/LinkConfiguration.d.ts +16 -11
- package/internal-do-not-import-from-here/ux/properties/builtins/link/LinkDisplay.d.ts +11 -7
- package/internal-do-not-import-from-here/ux/properties/builtins/link/LinkEditor.d.ts +16 -12
- package/internal-do-not-import-from-here/ux/properties/builtins/link/LinkPropertyDefinition.d.ts +1 -12
- package/internal-do-not-import-from-here/ux/properties/builtins/media/MediaDisplay.css.d.ts +7 -0
- package/internal-do-not-import-from-here/ux/properties/builtins/media/MediaDisplay.d.ts +66 -0
- package/internal-do-not-import-from-here/ux/properties/builtins/media/MediaEditor.css.d.ts +8 -0
- package/internal-do-not-import-from-here/ux/{user/components/UserPropertiesByMicrosoftGraphDisplay.d.ts → properties/builtins/media/MediaEditor.d.ts} +33 -19
- package/internal-do-not-import-from-here/ux/properties/builtins/media/MediaPropertyDefinition.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/properties/builtins/multiline-text/MultilineTextDisplay.d.ts +11 -7
- package/internal-do-not-import-from-here/ux/properties/builtins/multiline-text/MultilineTextEditor.d.ts +16 -12
- package/internal-do-not-import-from-here/ux/properties/builtins/multiline-text/MultilineTextPropertyDefinition.d.ts +1 -11
- package/internal-do-not-import-from-here/ux/properties/builtins/multilingualText/MultilingualTextDisplay.d.ts +11 -7
- package/internal-do-not-import-from-here/ux/properties/builtins/multilingualText/MultilingualTextEditor.d.ts +16 -12
- package/internal-do-not-import-from-here/ux/properties/builtins/multilingualText/MultilingualTextPropertyDefinition.d.ts +1 -14
- package/internal-do-not-import-from-here/ux/properties/builtins/phone-number/PhoneNumberDisplay.d.ts +11 -7
- package/internal-do-not-import-from-here/ux/properties/builtins/phone-number/PhoneNumberEditor.d.ts +15 -10
- package/internal-do-not-import-from-here/ux/properties/builtins/phone-number/PhoneNumberPropertyDefinition.d.ts +1 -11
- package/internal-do-not-import-from-here/ux/properties/builtins/text/TextDisplay.d.ts +11 -7
- package/internal-do-not-import-from-here/ux/properties/builtins/text/TextEditor.d.ts +16 -12
- package/internal-do-not-import-from-here/ux/properties/builtins/text/TextPropertyDefinition.d.ts +1 -15
- package/internal-do-not-import-from-here/ux/properties/builtins/time/TimeDisplay.d.ts +16 -12
- package/internal-do-not-import-from-here/ux/properties/builtins/time/TimeEditor.d.ts +26 -22
- package/internal-do-not-import-from-here/ux/properties/builtins/time/TimePropertyDefinition.d.ts +1 -16
- package/internal-do-not-import-from-here/ux/properties/index.d.ts +0 -2
- package/internal-do-not-import-from-here/ux/properties/models/DataSource.d.ts +26 -19
- package/internal-do-not-import-from-here/ux/properties/models/PropertyApi.d.ts +14 -3
- package/internal-do-not-import-from-here/ux/properties/models/PropertyInput.d.ts +7 -1
- package/internal-do-not-import-from-here/ux/properties/models/PropertyPicker.d.ts +9 -3
- package/internal-do-not-import-from-here/ux/properties/models/index.d.ts +0 -2
- package/internal-do-not-import-from-here/ux/properties/property-configuration/LabelOptionsRenderer.d.ts +67 -0
- package/internal-do-not-import-from-here/ux/properties/property-configuration/PropertyConfiguration.d.ts +67 -0
- package/internal-do-not-import-from-here/ux/properties/property-configuration/PropertyLocking.css.d.ts +7 -0
- package/internal-do-not-import-from-here/ux/properties/property-configuration/PropertyLocking.d.ts +95 -0
- package/internal-do-not-import-from-here/ux/properties/property-picker/PropertyInput.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/properties/property-picker/PropertyPicker.d.ts +11 -10
- package/internal-do-not-import-from-here/ux/{user/UserPropertyRenderer.d.ts → properties/property-renderer/PropertyBindingValueRenderer.d.ts} +14 -20
- package/internal-do-not-import-from-here/ux/properties/property-renderer/{PropertyRenderer.d.ts → PropertyValueRenderer.d.ts} +20 -15
- package/internal-do-not-import-from-here/ux/richtexteditor/RichTextEditor.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/richtexteditor/TextCompletionPanel/TextCompletionPanel.css.d.ts +28 -0
- package/internal-do-not-import-from-here/ux/richtexteditor/TextCompletionPanel/TextCompletionPanel.d.ts +597 -0
- package/internal-do-not-import-from-here/ux/richtexteditor/TextCompletionPanel/loc/localize.d.ts +28 -0
- package/internal-do-not-import-from-here/ux/richtexteditor/extensions/TextCompletion/Registration.d.ts +5 -0
- package/internal-do-not-import-from-here/ux/richtexteditor/extensions/TextCompletion/TextCompletion.d.ts +12 -0
- package/internal-do-not-import-from-here/ux/richtexteditor/extensions/TextCompletion/TextCompletionHandler.d.ts +34 -0
- package/internal-do-not-import-from-here/ux/richtexteditor/extensions/TextCompletion/TextCompletionMenu.d.ts +24 -0
- package/internal-do-not-import-from-here/ux/richtexteditor/extensions/TextCompletion/TextCompletionNode.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/richtexteditor/extensions/TextCompletion/TextCompletionToolbar.d.ts +15 -0
- package/internal-do-not-import-from-here/ux/richtexteditor/extensions/TextCompletion/index.d.ts +4 -0
- package/internal-do-not-import-from-here/ux/richtexteditor/extensions/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/richtexteditor/extensions/loc/localize.d.ts +5 -0
- package/internal-do-not-import-from-here/ux/sidepanel/SidePanelRenderer.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/sidepanel/models/IRegistration.d.ts +11 -7
- package/internal-do-not-import-from-here/ux/signin/Shared.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/signin/loc/localize.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/social/CommentDialog.d.ts +2 -1
- package/internal-do-not-import-from-here/ux/theming-v2/styling/UseTypographyStyling.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/use/UseBreakPoint.d.ts +2 -1
- package/internal-do-not-import-from-here/ux/use/UseColorSchemaSetup.d.ts +73 -1
- package/internal-do-not-import-from-here/ux/user/UserPropertiesByMicrosoftGraphProvider.d.ts +5 -1
- package/internal-do-not-import-from-here/ux/user/UserPropertiesProvider.d.ts +6 -1
- package/internal-do-not-import-from-here/ux/velcron/blocks/content/model/ContentDefinitionRegistration.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/velcron/blocks/content/store/ContentBlockStore.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/velcron/components/properties/VelcronProperties.d.ts +7 -10
- package/internal-do-not-import-from-here/ux/velcron/core/models/Enums.d.ts +6 -6
- package/internal-do-not-import-from-here/ux/velcron/core/models/VelcronDefinitions.d.ts +14 -14
- package/internal-do-not-import-from-here/ux/velcron/core/models/VelcronEvents.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/velcron/core/parser/VelcronData.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/velcron/core/stores/VelcronBlueprint.d.ts +36 -0
- package/internal-do-not-import-from-here/ux/velcron/core/stores/VelcronColorSchema.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/velcron/core/stores/VelcronTheming.d.ts +2 -1
- package/internal-do-not-import-from-here/ux/velcron/core/stores/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/velcron/editor/VelcronEditor.d.ts +164 -159
- package/internal-do-not-import-from-here/ux/velcron/editor/stores/VelcronEditorStore.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/velcron/renderer/VelcronRenderer.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/velcron/renderer/components/Custom.d.ts +6 -6
- package/internal-do-not-import-from-here/wctypings.d.ts +57 -31
- package/package.json +2 -2
- package/internal-do-not-import-from-here/contexts/CurrentDisplayUserContext.d.ts +0 -5
- package/internal-do-not-import-from-here/ux/dynamicgroup/DynamicGroupPropertyEditorRenderer.d.ts +0 -73
- package/internal-do-not-import-from-here/ux/dynamicgroup/loc/localize.d.ts +0 -10
- package/internal-do-not-import-from-here/ux/group/GroupPropertyEditorRenderer.d.ts +0 -73
- package/internal-do-not-import-from-here/ux/group/loc/localize.d.ts +0 -10
- package/internal-do-not-import-from-here/ux/properties/LegacyEnterprisePropertiesProvider.d.ts +0 -14
- package/internal-do-not-import-from-here/ux/properties/PropertyDataSourceContext.d.ts +0 -21
- package/internal-do-not-import-from-here/ux/properties/legacy-enterprise-property/LegacyEnterprisePropertyDefinition.d.ts +0 -8
- package/internal-do-not-import-from-here/ux/properties/legacy-enterprise-property/LegacyEnterprisePropertyDisplay.css.d.ts +0 -4
- package/internal-do-not-import-from-here/ux/properties/legacy-enterprise-property/LegacyEnterprisePropertyEditor.css.d.ts +0 -4
- package/internal-do-not-import-from-here/ux/properties/legacy-enterprise-property/LegacyEnterprisePropertyEditor.d.ts +0 -92
- package/internal-do-not-import-from-here/ux/properties/models/PropertySelection.d.ts +0 -19
- package/internal-do-not-import-from-here/ux/user/UserPropertiesByMicrosoftGraphDefinition.d.ts +0 -18
- package/internal-do-not-import-from-here/ux/user/UserPropertyProviderDefinition.d.ts +0 -15
- package/internal-do-not-import-from-here/ux/user/components/UserPropertiesByMicrosoftGraphEditor.d.ts +0 -83
- package/internal-do-not-import-from-here/ux/user/components/UserPropertyProviderEditor.d.ts +0 -83
- /package/internal-do-not-import-from-here/ux/{admin/chrome/AdminChrome_old.d.ts → filterengine/api/TagsRegistration.d.ts} +0 -0
@@ -0,0 +1,34 @@
|
|
1
|
+
import { TextCompletionMenuBar, TipTapEditor } from "@omnia/fx-models";
|
2
|
+
import { Store } from "@omnia/fx/stores";
|
3
|
+
import { SidePanelContext } from "@omnia/fx/ux";
|
4
|
+
export declare const panelElementName: "omfx-textcompletion-panel";
|
5
|
+
export declare class TextCompletionHandler extends Store {
|
6
|
+
private sidePanelInstanceId;
|
7
|
+
private editor;
|
8
|
+
private onContentChanged;
|
9
|
+
private menuBar;
|
10
|
+
private prompt;
|
11
|
+
private forceClose;
|
12
|
+
onClickOpenEvent(sidePanelContext: SidePanelContext, editor: TipTapEditor, menuBar: TextCompletionMenuBar): void;
|
13
|
+
ensureOpenPanel(sidePanelContext: SidePanelContext, editor: TipTapEditor, menuBar: TextCompletionMenuBar): void;
|
14
|
+
ensureClosePanel(sidePanelContext: SidePanelContext): void;
|
15
|
+
forceClosePanel(sidePanelContext: SidePanelContext): void;
|
16
|
+
getters: {
|
17
|
+
getEditor: () => TipTapEditor;
|
18
|
+
getOnContentChanged: () => (content: string) => void;
|
19
|
+
getMenuBar: () => TextCompletionMenuBar;
|
20
|
+
prompt: () => string;
|
21
|
+
forceClose: () => boolean;
|
22
|
+
};
|
23
|
+
setters: {
|
24
|
+
setEditor: (editor: TipTapEditor) => TipTapEditor;
|
25
|
+
setOnContentChanged: (onContentChanged: (content: string) => void) => (content: string) => void;
|
26
|
+
setMenuBar: (menuBar: TextCompletionMenuBar) => TextCompletionMenuBar;
|
27
|
+
};
|
28
|
+
mutations: {
|
29
|
+
prompt: import("@omnia/fx/stores").StoreMutation<(prompt: string) => void, (prompt: string) => import("@omnia/fx-models").IMessageBusSubscriptionHandler>;
|
30
|
+
forceClose: import("@omnia/fx/stores").StoreMutation<(forceClose: boolean) => void, (forceClose: boolean) => import("@omnia/fx-models").IMessageBusSubscriptionHandler>;
|
31
|
+
};
|
32
|
+
protected onActivated(): void;
|
33
|
+
protected onDisposing(): void;
|
34
|
+
}
|
@@ -0,0 +1,24 @@
|
|
1
|
+
import { OmniaTheming, BlockInstance } from "@omnia/fx/ux";
|
2
|
+
import { ToolbarExtension } from "../../ToolbarExtension";
|
3
|
+
import { TipTapEditor, IMessageBusSubscriptionHandler, GuidValue, IOmniaContext } from "@omnia/fx-models";
|
4
|
+
import { TextCompletionMenuBar, TextCompletionToolbarProperties } from "../../../../models";
|
5
|
+
export default class TextCompletionMenu extends ToolbarExtension implements TextCompletionToolbarProperties {
|
6
|
+
menubar?: TextCompletionMenuBar;
|
7
|
+
onContentChanged?: (content: string) => void;
|
8
|
+
editor: TipTapEditor;
|
9
|
+
editorId: GuidValue;
|
10
|
+
private loc;
|
11
|
+
subscriptionHandler: IMessageBusSubscriptionHandler;
|
12
|
+
private textCompletionHandler;
|
13
|
+
private sidePanelContext;
|
14
|
+
omniaTheming: OmniaTheming;
|
15
|
+
blockInstance: BlockInstance;
|
16
|
+
protected omniaContext: IOmniaContext;
|
17
|
+
selectedText: string;
|
18
|
+
mounted(): void;
|
19
|
+
created(): void;
|
20
|
+
beforeDestroy(): void;
|
21
|
+
private onClickOpenSidePanel;
|
22
|
+
private getSelectionText;
|
23
|
+
render(): JSX.Element;
|
24
|
+
}
|
@@ -0,0 +1,15 @@
|
|
1
|
+
import { ToolbarExtension } from "../../ToolbarExtension";
|
2
|
+
import { TextCompletionMenuBar, TextCompletionToolbarProperties, TipTapEditor } from "../../../../models";
|
3
|
+
export declare class TextCompletionToolbar extends ToolbarExtension implements TextCompletionToolbarProperties {
|
4
|
+
menubar?: TextCompletionMenuBar;
|
5
|
+
onContentChange?: (content: string) => void;
|
6
|
+
editor: TipTapEditor;
|
7
|
+
private loc;
|
8
|
+
private sidePanelContext;
|
9
|
+
private textCompletionHandler;
|
10
|
+
mounted(): void;
|
11
|
+
private onClickOpenEvent;
|
12
|
+
beforeDestroy(): void;
|
13
|
+
render(): JSX.Element;
|
14
|
+
getToolbarButtonActiveStyle(val: boolean): string;
|
15
|
+
}
|
@@ -70,6 +70,10 @@ export declare module RichTextEditorExtensionLocalization {
|
|
70
70
|
EmoticonPicker: {
|
71
71
|
Title: string;
|
72
72
|
};
|
73
|
+
TextCompletion: {
|
74
|
+
OpenAI: string;
|
75
|
+
GenerateContent: string;
|
76
|
+
};
|
73
77
|
};
|
74
78
|
Tooltip: {
|
75
79
|
Undo: string;
|
@@ -114,6 +118,7 @@ export declare module RichTextEditorExtensionLocalization {
|
|
114
118
|
AnimatedGif: string;
|
115
119
|
EmoticonPicker: string;
|
116
120
|
RemoveAnimatedGif: string;
|
121
|
+
TextCompletion: string;
|
117
122
|
};
|
118
123
|
RichTextEditor: string;
|
119
124
|
LimitedRichTextEditor: string;
|
@@ -1,14 +1,18 @@
|
|
1
|
-
import { SidePanelPosition } from "@omnia/fx/models";
|
1
|
+
import { Breakpoint, SidePanelPosition } from "@omnia/fx/models";
|
2
2
|
import { ISidePanelElementRegistration } from "../../../models";
|
3
3
|
import { DialogPositions } from "../..";
|
4
|
-
export interface
|
5
|
-
|
4
|
+
export interface SidePanelRenderingPosition {
|
5
|
+
nav: {
|
6
|
+
value: SidePanelPosition;
|
7
|
+
};
|
8
|
+
dialog: {
|
9
|
+
value: DialogPositions;
|
10
|
+
};
|
6
11
|
}
|
7
|
-
export interface
|
12
|
+
export interface SidePanelRenderingInstance {
|
8
13
|
htmlElement: HTMLElement;
|
9
|
-
position:
|
10
|
-
showAsDialog?: SidePanelDialog;
|
14
|
+
position: SidePanelRenderingPosition;
|
11
15
|
}
|
12
16
|
export interface ISidePanelRenderingInstanceInternalApi extends ISidePanelElementRegistration {
|
13
|
-
getRenderingInstance: (
|
17
|
+
getRenderingInstance: (breakpoint: Breakpoint) => SidePanelRenderingInstance;
|
14
18
|
}
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { AuthenticationMetaData, AuthenticationSessionResult } from "@omnia/fx-models";
|
1
|
+
import { AuthenticationMetaData, AuthenticationResult, AuthenticationSessionResult } from "@omnia/fx-models";
|
2
2
|
export interface OmniaAuthProviderClient {
|
3
3
|
title: string;
|
4
4
|
icon: string;
|
@@ -9,7 +9,7 @@ export interface OmniaAuthProviderContext {
|
|
9
9
|
uniqueName: string;
|
10
10
|
redirectUrl: string;
|
11
11
|
hasOtherWaysToLogin: boolean;
|
12
|
-
showError: () => void;
|
12
|
+
showError: (authenticationResult: AuthenticationResult) => void;
|
13
13
|
openSelections: () => void;
|
14
14
|
}
|
15
15
|
export interface OmniaAuthProviderChainAction {
|
@@ -23,8 +23,10 @@ export declare class CommentDialogComponent extends VueComponentBase implements
|
|
23
23
|
private focusEditorInputs;
|
24
24
|
private dialogClasses;
|
25
25
|
private headingStyle;
|
26
|
+
private get marginBottom();
|
26
27
|
created(): void;
|
27
28
|
mounted(): void;
|
29
|
+
private handleOpenCommentDialog;
|
28
30
|
private updateMainContentStyles;
|
29
31
|
private getZIndex;
|
30
32
|
private getDraftCommentId;
|
@@ -36,7 +38,6 @@ export declare class CommentDialogComponent extends VueComponentBase implements
|
|
36
38
|
private onMentionChanged;
|
37
39
|
private onClose;
|
38
40
|
private onSave;
|
39
|
-
private getMarginBottom;
|
40
41
|
renderEditors(): JSX.Element[];
|
41
42
|
renderMainContent(): JSX.Element;
|
42
43
|
render(): JSX.Element;
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { TypographyTypes } from "@omnia/fx-models";
|
1
|
+
import { TypographyBlueprint, TypographyTypes } from "@omnia/fx-models";
|
2
2
|
import { MediaQuery } from "typestyle/lib/types";
|
3
3
|
import { useBlueprintStore } from "..";
|
4
4
|
export interface TypographyTypesResult {
|
@@ -10,7 +10,7 @@ export interface TypographyTypesResult {
|
|
10
10
|
text: string;
|
11
11
|
typographyType: (typographyType: string) => string;
|
12
12
|
}
|
13
|
-
export declare const useTypographyTypeStyling: (typographyType: TypographyTypes,
|
13
|
+
export declare const useTypographyTypeStyling: (typographyType: TypographyTypes, blueprint: TypographyBlueprint) => {
|
14
14
|
baseStyles: {
|
15
15
|
fontSize: string;
|
16
16
|
fontWeight: number;
|
@@ -1 +1,2 @@
|
|
1
|
-
|
1
|
+
import { Breakpoint } from "@omnia/fx-models";
|
2
|
+
export declare function useBreakPoints(): Breakpoint;
|
@@ -1 +1,73 @@
|
|
1
|
-
export declare const useColorSchemaSetup: (props: object) =>
|
1
|
+
export declare const useColorSchemaSetup: (props: object) => {
|
2
|
+
state: {
|
3
|
+
base: import("@omnia/fx-models").ColorDefinition;
|
4
|
+
onBase: import("@omnia/fx-models").ColorDefinition;
|
5
|
+
container: import("@omnia/fx-models").ColorDefinition;
|
6
|
+
onContainer: import("@omnia/fx-models").ColorDefinition;
|
7
|
+
isContainer: boolean;
|
8
|
+
name: string;
|
9
|
+
colorSchemaType: import("@omnia/fx-models").ColorSchemaTypes | import("@omnia/fx-models").ColorSchemaType;
|
10
|
+
id: import("@omnia/fx-models").GuidValue;
|
11
|
+
};
|
12
|
+
get: {
|
13
|
+
readonly colorSchema: import("@omnia/fx-models").ColorSchema;
|
14
|
+
readonly base: import("@omnia/fx-models").ColorDefinition;
|
15
|
+
readonly onBase: import("@omnia/fx-models").ColorDefinition;
|
16
|
+
readonly container: import("@omnia/fx-models").ColorDefinition;
|
17
|
+
readonly onContainer: import("@omnia/fx-models").ColorDefinition;
|
18
|
+
dynamic: (isContainer: boolean) => {
|
19
|
+
readonly base: import("@omnia/fx-models").ColorDefinition;
|
20
|
+
readonly onBase: import("@omnia/fx-models").ColorDefinition;
|
21
|
+
readonly container: import("@omnia/fx-models").ColorDefinition;
|
22
|
+
readonly onContainer: import("@omnia/fx-models").ColorDefinition;
|
23
|
+
};
|
24
|
+
};
|
25
|
+
actions: {
|
26
|
+
setColorSchema: (colorSchemaType: import("@omnia/fx-models").ColorSchemaTypes | import("@omnia/fx-models").ColorSchemaType, container?: boolean) => void;
|
27
|
+
setThemeStore: (themeStoreInstance: {
|
28
|
+
state: {
|
29
|
+
currentTheme: import("../theming-v2").ThemeDefinitionInstance;
|
30
|
+
};
|
31
|
+
get: {
|
32
|
+
colorSchema: (colorSchemaType: import("@omnia/fx-models").ColorSchemaTypes | import("@omnia/fx-models").ColorSchemaType) => import("@omnia/fx-models").ColorSchema;
|
33
|
+
typography: (typographyType: import("@omnia/fx-models").TypographyType | import("@omnia/fx-models").TypographyTypes) => import("@omnia/fx-models").TypographyTypeDefinition;
|
34
|
+
color: (colorSchemaType: import("@omnia/fx-models").ColorSchemaTypes | import("@omnia/fx-models").ColorSchemaType, colorType: import("@omnia/fx-models").ColorType | import("@omnia/fx-models").ColorTypes) => string;
|
35
|
+
colorDefinition: (colorSchemaType: import("@omnia/fx-models").ColorSchemaTypes | import("@omnia/fx-models").ColorSchemaType, colorType: import("@omnia/fx-models").ColorType | import("@omnia/fx-models").ColorTypes) => import("@omnia/fx-models").ColorDefinition;
|
36
|
+
complementaryColorType: (colorType: import("@omnia/fx-models").ColorType | import("@omnia/fx-models").ColorTypes) => import("@omnia/fx-models").ColorTypes;
|
37
|
+
complementaryColor: (colorSchemaType: import("@omnia/fx-models").ColorSchemaTypes | import("@omnia/fx-models").ColorSchemaType, colorType: import("@omnia/fx-models").ColorType | import("@omnia/fx-models").ColorTypes) => string;
|
38
|
+
complementaryColorDefinition: (colorSchemaType: import("@omnia/fx-models").ColorSchemaTypes | import("@omnia/fx-models").ColorSchemaType, colorType: import("@omnia/fx-models").ColorType | import("@omnia/fx-models").ColorTypes) => import("@omnia/fx-models").ColorDefinition;
|
39
|
+
currentTheme: () => import("@omnia/fx-models").ThemeDefinitionV2;
|
40
|
+
blueprint: (blueprintType: import("@omnia/fx-models").BlueprintType | import("@omnia/fx-models").BlueprintTypes) => import("@omnia/fx-models").BlueprintDefinition;
|
41
|
+
};
|
42
|
+
actions: {
|
43
|
+
setTheme: (themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2) => void;
|
44
|
+
};
|
45
|
+
events: {
|
46
|
+
onMutatingCurrentTheme: import("@omnia/fx").EventHook<import("../theming-v2").ThemeDefinitionInstance>;
|
47
|
+
onMutatedCurrentTheme: import("@omnia/fx").EventHook<import("../theming-v2").ThemeDefinitionInstance>;
|
48
|
+
};
|
49
|
+
activated: void;
|
50
|
+
}) => void;
|
51
|
+
setCustomColorSchema: (colorSchema: import("@omnia/fx-models").ColorSchema, container?: boolean) => void;
|
52
|
+
setColor: (colorDefinition: import("@omnia/fx-models").ColorDefinition, colorType: import("@omnia/fx-models").ColorTypes) => void;
|
53
|
+
};
|
54
|
+
events: {
|
55
|
+
onMutatingBase: import("@omnia/fx").EventHook<import("@omnia/fx-models").ColorDefinition>;
|
56
|
+
onMutatedBase: import("@omnia/fx").EventHook<import("@omnia/fx-models").ColorDefinition>;
|
57
|
+
onMutatingOnBase: import("@omnia/fx").EventHook<import("@omnia/fx-models").ColorDefinition>;
|
58
|
+
onMutatedOnBase: import("@omnia/fx").EventHook<import("@omnia/fx-models").ColorDefinition>;
|
59
|
+
onMutatingContainer: import("@omnia/fx").EventHook<import("@omnia/fx-models").ColorDefinition>;
|
60
|
+
onMutatedContainer: import("@omnia/fx").EventHook<import("@omnia/fx-models").ColorDefinition>;
|
61
|
+
onMutatingOnContainer: import("@omnia/fx").EventHook<import("@omnia/fx-models").ColorDefinition>;
|
62
|
+
onMutatedOnContainer: import("@omnia/fx").EventHook<import("@omnia/fx-models").ColorDefinition>;
|
63
|
+
onMutatingIsContainer: import("@omnia/fx").EventHook<boolean>;
|
64
|
+
onMutatedIsContainer: import("@omnia/fx").EventHook<boolean>;
|
65
|
+
onMutatingName: import("@omnia/fx").EventHook<string>;
|
66
|
+
onMutatedName: import("@omnia/fx").EventHook<string>;
|
67
|
+
onMutatingColorSchemaType: import("@omnia/fx").EventHook<import("@omnia/fx-models").ColorSchemaTypes | import("@omnia/fx-models").ColorSchemaType>;
|
68
|
+
onMutatedColorSchemaType: import("@omnia/fx").EventHook<import("@omnia/fx-models").ColorSchemaTypes | import("@omnia/fx-models").ColorSchemaType>;
|
69
|
+
onMutatingId: import("@omnia/fx").EventHook<import("@omnia/fx-models").GuidValue>;
|
70
|
+
onMutatedId: import("@omnia/fx").EventHook<import("@omnia/fx-models").GuidValue>;
|
71
|
+
};
|
72
|
+
activated: void;
|
73
|
+
};
|
package/internal-do-not-import-from-here/ux/user/UserPropertiesByMicrosoftGraphProvider.d.ts
CHANGED
@@ -1 +1,5 @@
|
|
1
|
-
|
1
|
+
import { DataSourceProperty, PropertyDataSourceId } from "@omnia/fx-models";
|
2
|
+
export declare class GraphProviderProperty extends DataSourceProperty {
|
3
|
+
readonly internalName: string;
|
4
|
+
constructor(dataSourceId: PropertyDataSourceId, internalName: string);
|
5
|
+
}
|
@@ -1 +1,6 @@
|
|
1
|
-
|
1
|
+
import { DataSourceProperty, PropertyDataSourceId, PropertyBindingId } from "@omnia/fx-models";
|
2
|
+
export declare class UserDataSourceProperty extends DataSourceProperty {
|
3
|
+
readonly enterprisePropertyBindingId?: PropertyBindingId;
|
4
|
+
readonly userPropertyBindingId?: PropertyBindingId;
|
5
|
+
constructor(dataSourceId: PropertyDataSourceId, enterprisePropertyBindingId?: PropertyBindingId, userPropertyBindingId?: PropertyBindingId);
|
6
|
+
}
|
@@ -2,4 +2,5 @@ import { Guid, VelcronDefinitionRegistration } from "@omnia/fx-models";
|
|
2
2
|
import { ContentBlockVelcronState } from "../ContentBlock";
|
3
3
|
export interface ContentDefinitionRegistration extends VelcronDefinitionRegistration<ContentBlockVelcronState> {
|
4
4
|
contentId: Guid;
|
5
|
+
key: string;
|
5
6
|
}
|
package/internal-do-not-import-from-here/ux/velcron/blocks/content/store/ContentBlockStore.d.ts
CHANGED
@@ -1,3 +1,4 @@
|
|
1
|
+
import { VelcronAppDefinition } from "@omnia/fx-models";
|
1
2
|
import { ContentDefinitionRegistration } from "../model/ContentDefinitionRegistration";
|
2
3
|
export declare enum MenuTabs {
|
3
4
|
templates = 0,
|
@@ -21,6 +22,7 @@ export declare const useContentBlockStore: (newInstanceWithName?: string) => {
|
|
21
22
|
setSelectedDefinition: (definition: ContentDefinitionRegistration) => void;
|
22
23
|
removeSelectedDefinition: () => void;
|
23
24
|
setDragDropState: (onGoingDragging: boolean) => void;
|
25
|
+
updateDefinition: (definition: ContentDefinitionRegistration, velcronDefinition: VelcronAppDefinition) => void;
|
24
26
|
};
|
25
27
|
events: {
|
26
28
|
onMutatingTemplatePanelVisible: import("@omnia/fx").EventHook<boolean>;
|
package/internal-do-not-import-from-here/ux/velcron/components/properties/VelcronProperties.d.ts
CHANGED
@@ -7,8 +7,7 @@ declare const _default: {
|
|
7
7
|
$props: Partial<{}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
8
8
|
properties: {
|
9
9
|
type: import("vue").PropType<VelcronDefinitionEditableProperty[]>;
|
10
|
-
|
11
|
-
type: import("vue").PropType<VelcronDefinitionEditableProperty[]>;
|
10
|
+
required: true;
|
12
11
|
};
|
13
12
|
"onUpdate:modelValue": {
|
14
13
|
type: import("vue").PropType<(value: VelcronAppDefinition<object>) => any>;
|
@@ -95,8 +94,7 @@ declare const _default: {
|
|
95
94
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
96
95
|
properties: {
|
97
96
|
type: import("vue").PropType<VelcronDefinitionEditableProperty[]>;
|
98
|
-
|
99
|
-
type: import("vue").PropType<VelcronDefinitionEditableProperty[]>;
|
97
|
+
required: true;
|
100
98
|
};
|
101
99
|
"onUpdate:modelValue": {
|
102
100
|
type: import("vue").PropType<(value: VelcronAppDefinition<object>) => any>;
|
@@ -191,8 +189,7 @@ declare const _default: {
|
|
191
189
|
} & Readonly<import("vue").ExtractPropTypes<{
|
192
190
|
properties: {
|
193
191
|
type: import("vue").PropType<VelcronDefinitionEditableProperty[]>;
|
194
|
-
|
195
|
-
type: import("vue").PropType<VelcronDefinitionEditableProperty[]>;
|
192
|
+
required: true;
|
196
193
|
};
|
197
194
|
"onUpdate:modelValue": {
|
198
195
|
type: import("vue").PropType<(value: VelcronAppDefinition<object>) => any>;
|
@@ -269,8 +266,7 @@ declare const _default: {
|
|
269
266
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
270
267
|
properties: {
|
271
268
|
type: import("vue").PropType<VelcronDefinitionEditableProperty[]>;
|
272
|
-
|
273
|
-
type: import("vue").PropType<VelcronDefinitionEditableProperty[]>;
|
269
|
+
required: true;
|
274
270
|
};
|
275
271
|
"onUpdate:modelValue": {
|
276
272
|
type: import("vue").PropType<(value: VelcronAppDefinition<object>) => any>;
|
@@ -343,7 +339,9 @@ declare const _default: {
|
|
343
339
|
}, () => JSX.Element[], unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
344
340
|
"update:modelValue": (value: VelcronAppDefinition) => true;
|
345
341
|
}, string, {}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
346
|
-
propsDefinition: Omit<Readonly<{
|
342
|
+
propsDefinition: Omit<Readonly<{
|
343
|
+
properties: VelcronDefinitionEditableProperty[];
|
344
|
+
} & {
|
347
345
|
name?: {
|
348
346
|
[x: `onUpdate:${string}`]: {
|
349
347
|
type: import("vue").PropType<(value: VelcronAppDefinition<object>) => any>;
|
@@ -405,7 +403,6 @@ declare const _default: {
|
|
405
403
|
};
|
406
404
|
}>;
|
407
405
|
};
|
408
|
-
properties?: VelcronDefinitionEditableProperty[];
|
409
406
|
"onUpdate:modelValue"?: (value: VelcronAppDefinition<object>) => any;
|
410
407
|
"v-model"?: VelcronAppDefinition<object>;
|
411
408
|
modelValue?: VelcronAppDefinition<object>;
|
@@ -17,14 +17,14 @@ export declare enum VelcronIconTypes {
|
|
17
17
|
fontAwesome = "fa"
|
18
18
|
}
|
19
19
|
export declare enum VelcronHorizontalAlignments {
|
20
|
-
left =
|
21
|
-
center =
|
22
|
-
right =
|
20
|
+
left = 0,
|
21
|
+
center = 1,
|
22
|
+
right = 2
|
23
23
|
}
|
24
24
|
export declare enum VelcronVerticalAlignments {
|
25
|
-
top =
|
26
|
-
center =
|
27
|
-
bottom =
|
25
|
+
top = 0,
|
26
|
+
center = 1,
|
27
|
+
bottom = 2
|
28
28
|
}
|
29
29
|
export declare enum VelcronDataTypes {
|
30
30
|
unknown = "unknown",
|
@@ -1,9 +1,9 @@
|
|
1
|
-
import {
|
2
|
-
import { VelcronEvent, VelcronOnChangedEvent, VelcronOnClosedEvent, VelcronOnCloseRequestedEvent, VelcronOnEditModeEvent, VelcronOnLoadEvent, VelcronOnPressEvent } from "./VelcronEvents";
|
1
|
+
import { VelcronEvent, VelcronOnUpdatedEvent, VelcronOnClosedEvent, VelcronOnCloseRequestedEvent, VelcronOnEditModeEvent, VelcronOnLoadEvent, VelcronOnPressEvent } from "./VelcronEvents";
|
3
2
|
import { VelcroncomponentArrayType, VelcronPrimitiveType } from "./VelcronTypes";
|
4
3
|
import { AssignOperators, VelcronHorizontalAlignments, VelcronIconTypes, VelcronActionTypes, VelcronVerticalAlignments } from "./Enums";
|
5
4
|
import { useVelcronThemingStore } from "..";
|
6
5
|
import { useVelcronColorSchemaStore } from "../stores/VelcronColorSchema";
|
6
|
+
import { useVelcronBlueprintStore } from "../stores/VelcronBlueprint";
|
7
7
|
export interface ResolvedComponentRenderer {
|
8
8
|
component: unknown;
|
9
9
|
definition: VelcronDefinition;
|
@@ -39,6 +39,7 @@ export interface VelcronRenderContext {
|
|
39
39
|
currentContext: DynamicState;
|
40
40
|
theming?: ReturnType<typeof useVelcronThemingStore>;
|
41
41
|
colors?: ReturnType<typeof useVelcronColorSchemaStore>;
|
42
|
+
blueprints?: ReturnType<typeof useVelcronBlueprintStore>;
|
42
43
|
actions?: {
|
43
44
|
[name: string]: [];
|
44
45
|
};
|
@@ -114,9 +115,9 @@ export interface VelcronDefinition extends VelcronDefinitionBase {
|
|
114
115
|
events?: VelcronEvent;
|
115
116
|
}
|
116
117
|
export type VelcronBindableProp<TPropType = string> = TPropType | string;
|
117
|
-
export type VelcronStringBindableProp = string;
|
118
118
|
export interface VelcronDefinitionWithEditMode extends VelcronDefinition {
|
119
119
|
edit?: VelcronBindableProp<boolean>;
|
120
|
+
bind?: VelcronBindableProp;
|
120
121
|
}
|
121
122
|
export interface VelcronColorStyling {
|
122
123
|
colorSchemaType?: string;
|
@@ -169,7 +170,9 @@ export interface VelcronAppDefinition<TState extends DynamicState = DynamicState
|
|
169
170
|
}
|
170
171
|
export interface VelcronComponentDefinition extends VelcronDefinition {
|
171
172
|
type: string;
|
172
|
-
events:
|
173
|
+
events: any;
|
174
|
+
properties: [];
|
175
|
+
icon: any;
|
173
176
|
}
|
174
177
|
/*** Built-in Components *********************************************************************/
|
175
178
|
export interface VelcronViewDefinition extends VelcronDefinition {
|
@@ -183,7 +186,7 @@ export interface VelcronViewDefinition extends VelcronDefinition {
|
|
183
186
|
grow?: number;
|
184
187
|
border?: VelcronBorder;
|
185
188
|
borderRadius?: VelcronDimensions;
|
186
|
-
width?:
|
189
|
+
width?: number;
|
187
190
|
}
|
188
191
|
export interface VelcronCardDefinition extends VelcronDefinition {
|
189
192
|
type: "Card";
|
@@ -192,16 +195,15 @@ export interface VelcronCardDefinition extends VelcronDefinition {
|
|
192
195
|
footer?: Array<VelcronDefinition>;
|
193
196
|
events?: VelcronOnPressEvent;
|
194
197
|
}
|
195
|
-
export interface VelcronTextDefinition extends
|
198
|
+
export interface VelcronTextDefinition extends VelcronDefinitionWithEditMode {
|
196
199
|
type: "Text";
|
197
200
|
text: string;
|
198
|
-
bind: string;
|
199
201
|
editLabel?: VelcronBindableProp;
|
200
202
|
color?: string;
|
201
203
|
lineClamp?: number;
|
202
204
|
noWrap?: boolean;
|
203
205
|
typography?: string;
|
204
|
-
events?: VelcronOnPressEvent &
|
206
|
+
events?: VelcronOnPressEvent & VelcronOnUpdatedEvent;
|
205
207
|
}
|
206
208
|
export declare enum VelcronImageRatios {
|
207
209
|
square = 1,
|
@@ -227,7 +229,7 @@ export interface VelcronTextInputDefinition extends VelcronDefinition {
|
|
227
229
|
label?: string;
|
228
230
|
bind: string;
|
229
231
|
initialValue?: string;
|
230
|
-
events:
|
232
|
+
events: VelcronOnUpdatedEvent;
|
231
233
|
}
|
232
234
|
export interface VelcronProgressCircleDefinition extends VelcronDefinition {
|
233
235
|
type: "ProgressCircle";
|
@@ -247,14 +249,13 @@ export interface VelcronIconDefinition extends VelcronDefinition {
|
|
247
249
|
type: "Icon";
|
248
250
|
icon: string;
|
249
251
|
color: VelcronColorStyling;
|
250
|
-
size?: number
|
252
|
+
size?: VelcronBindableProp<number>;
|
251
253
|
events?: VelcronOnPressEvent;
|
252
254
|
}
|
253
255
|
export interface VelcronMarkdownDefinition extends VelcronDefinitionWithEditMode {
|
254
256
|
type: "Markdown";
|
255
257
|
text: string;
|
256
|
-
|
257
|
-
events: VelcronOnChangedEvent;
|
258
|
+
events: VelcronOnUpdatedEvent;
|
258
259
|
}
|
259
260
|
export interface VelcronDimensions {
|
260
261
|
top: number;
|
@@ -272,8 +273,7 @@ export interface VelcronChipDefinition extends VelcronDefinition {
|
|
272
273
|
disabled?: boolean;
|
273
274
|
events?: VelcronOnPressEvent;
|
274
275
|
}
|
275
|
-
|
276
|
-
export type VelcronCustomComponentDefinition = VelcronComponentDescriptor & VelcronComponentDefinition;
|
276
|
+
export type VelcronCustomComponentDefinition = VelcronComponentDefinition;
|
277
277
|
export type VelcronRenderProps<TDefinition> = {
|
278
278
|
definition: TDefinition;
|
279
279
|
renderContext: VelcronRenderContext;
|
@@ -7,8 +7,8 @@ export type VelcronOnLoadEvent = {
|
|
7
7
|
export type VelcronOnEditModeEvent = {
|
8
8
|
onEditMode?: Array<string>;
|
9
9
|
};
|
10
|
-
export type
|
11
|
-
|
10
|
+
export type VelcronOnUpdatedEvent = {
|
11
|
+
onUpdated?: Array<string>;
|
12
12
|
};
|
13
13
|
export type VelcronOnCloseRequestedEvent = {
|
14
14
|
onCloseRequested?: Array<string>;
|
@@ -1,10 +1,10 @@
|
|
1
|
-
import { VelcronAppDefinition, VelcronDefinition, VelcronRenderContext, DeferredPromise } from "../models";
|
1
|
+
import { VelcronAppDefinition, VelcronDefinition, VelcronRenderContext, DeferredPromise, VelcronBindableProp } from "../models";
|
2
2
|
export interface ParseResult<T> {
|
3
3
|
is: boolean;
|
4
4
|
value: T;
|
5
5
|
}
|
6
6
|
export declare class VelcronData {
|
7
|
-
static dataBind(renderContext: VelcronRenderContext, text:
|
7
|
+
static dataBind(renderContext: VelcronRenderContext, text: VelcronBindableProp<any>): string;
|
8
8
|
static addCtxToVariableNames(template: string, skipIfNameStartsWith?: string, skipIfNameMatches?: Array<string>, overridePrefixWhenNameMatches?: {
|
9
9
|
[name: string]: string;
|
10
10
|
}): string;
|
@@ -0,0 +1,36 @@
|
|
1
|
+
import { BlueprintDefinition, BlueprintItemDefinition, BlueprintType, BlueprintTypes, TypographyBlueprint, VelcronBlueprintDefintionType } from "@omnia/fx-models";
|
2
|
+
import { useVelcronThemingStore } from ".";
|
3
|
+
export declare const useVelcronBlueprintStore: (newStateWithName?: string) => {
|
4
|
+
state: {
|
5
|
+
blueprint: BlueprintDefinition;
|
6
|
+
blueprintType: BlueprintType | BlueprintTypes;
|
7
|
+
themeStore: {
|
8
|
+
state: {
|
9
|
+
currentTheme: import("@omnia/fx-models").ThemeDefinitionV2;
|
10
|
+
};
|
11
|
+
get: {
|
12
|
+
blueprint: (blueprintType: BlueprintType | BlueprintTypes) => BlueprintDefinition;
|
13
|
+
colorSchema: (colorSchemaType: import("@omnia/fx-models").ColorSchemaTypes | import("@omnia/fx-models").ColorSchemaType) => import("@omnia/fx-models").ColorSchema;
|
14
|
+
typography: (typographyType: import("@omnia/fx-models").TypographyType | import("@omnia/fx-models").TypographyTypes) => import("@omnia/fx-models").TypographyTypeDefinition;
|
15
|
+
color: (colorSchemaType: import("@omnia/fx-models").ColorSchemaTypes | import("@omnia/fx-models").ColorSchemaType, colorType: import("@omnia/fx-models").ColorType | import("@omnia/fx-models").ColorTypes) => string;
|
16
|
+
colorDefinition: (colorSchemaType: import("@omnia/fx-models").ColorSchemaTypes | import("@omnia/fx-models").ColorSchemaType, colorType: import("@omnia/fx-models").ColorType | import("@omnia/fx-models").ColorTypes) => import("@omnia/fx-models").ColorDefinition;
|
17
|
+
complementaryColorType: (colorType: import("@omnia/fx-models").ColorType | import("@omnia/fx-models").ColorTypes) => import("@omnia/fx-models").ColorTypes;
|
18
|
+
complementaryColor: (colorSchemaType: import("@omnia/fx-models").ColorSchemaTypes | import("@omnia/fx-models").ColorSchemaType, colorType: import("@omnia/fx-models").ColorType | import("@omnia/fx-models").ColorTypes) => string;
|
19
|
+
complementaryColorDefinition: (colorSchemaType: import("@omnia/fx-models").ColorSchemaTypes | import("@omnia/fx-models").ColorSchemaType, colorType: import("@omnia/fx-models").ColorType | import("@omnia/fx-models").ColorTypes) => import("@omnia/fx-models").ColorDefinition;
|
20
|
+
currentTheme: () => import("@omnia/fx-models").ThemeDefinitionV2;
|
21
|
+
};
|
22
|
+
actions: {
|
23
|
+
setTheme(newTheme: import("@omnia/fx-models").ThemeDefinitionV2): void;
|
24
|
+
};
|
25
|
+
};
|
26
|
+
};
|
27
|
+
get: {
|
28
|
+
readonly all: BlueprintDefinition;
|
29
|
+
byType: <TType extends BlueprintItemDefinition>(type: VelcronBlueprintDefintionType | VelcronBlueprintDefintionType) => TType;
|
30
|
+
readonly typography: TypographyBlueprint;
|
31
|
+
};
|
32
|
+
actions: {
|
33
|
+
setThemeStore: (themeStoreInstance: ReturnType<typeof useVelcronThemingStore>, blueprintType?: BlueprintTypes | BlueprintType) => void;
|
34
|
+
setBlueprint: (type: BlueprintTypes | BlueprintType) => void;
|
35
|
+
};
|
36
|
+
};
|
@@ -14,6 +14,7 @@ export declare const useVelcronColorSchemaStore: (newStateWithName?: string) =>
|
|
14
14
|
currentTheme: import("@omnia/fx-models").ThemeDefinitionV2;
|
15
15
|
};
|
16
16
|
get: {
|
17
|
+
blueprint: (blueprintType: import("@omnia/fx-models").BlueprintType | import("@omnia/fx-models").BlueprintTypes) => import("@omnia/fx-models").BlueprintDefinition;
|
17
18
|
colorSchema: (colorSchemaType: ColorSchemaTypes | ColorSchemaType) => ColorSchema;
|
18
19
|
typography: (typographyType: import("@omnia/fx-models").TypographyType | import("@omnia/fx-models").TypographyTypes) => import("@omnia/fx-models").TypographyTypeDefinition;
|
19
20
|
color: (colorSchemaType: ColorSchemaTypes | ColorSchemaType, colorType: import("@omnia/fx-models").ColorType | import("@omnia/fx-models").ColorTypes) => string;
|
@@ -1,9 +1,10 @@
|
|
1
|
-
import { ColorSchemaType, ColorSchemaTypes, ColorType, ColorTypes, ThemeDefinitionV2, TypographyType, TypographyTypes } from "..";
|
1
|
+
import { BlueprintType, BlueprintTypes, ColorSchemaType, ColorSchemaTypes, ColorType, ColorTypes, ThemeDefinitionV2, TypographyType, TypographyTypes } from "..";
|
2
2
|
export declare const useVelcronThemingStore: (newStateWithName?: string) => {
|
3
3
|
state: {
|
4
4
|
currentTheme: ThemeDefinitionV2;
|
5
5
|
};
|
6
6
|
get: {
|
7
|
+
blueprint: (blueprintType: BlueprintTypes | BlueprintType) => import("..").BlueprintDefinition;
|
7
8
|
colorSchema: (colorSchemaType: ColorSchemaTypes | ColorSchemaType) => import("..").ColorSchema;
|
8
9
|
typography: (typographyType: TypographyTypes | TypographyType) => import("..").TypographyTypeDefinition;
|
9
10
|
color: (colorSchemaType: ColorSchemaTypes | ColorSchemaType, colorType: ColorTypes | ColorType) => string;
|