@omnia/fx 8.0.28-vnext → 8.0.29-vnext

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (255) hide show
  1. package/internal-do-not-import-from-here/contexts/index.d.ts +0 -1
  2. package/internal-do-not-import-from-here/core/messaging/BuiltInTopics.d.ts +1 -0
  3. package/internal-do-not-import-from-here/core/utils/gpt3utils/Encoder.d.ts +50259 -0
  4. package/internal-do-not-import-from-here/core/utils/gpt3utils/GPT3Utils.d.ts +5 -0
  5. package/internal-do-not-import-from-here/core/utils/gpt3utils/Vocab.d.ts +1 -0
  6. package/internal-do-not-import-from-here/core/utils/gpt3utils/index.d.ts +1 -0
  7. package/internal-do-not-import-from-here/core/utils/index.d.ts +1 -0
  8. package/internal-do-not-import-from-here/index.d.ts +1 -1
  9. package/internal-do-not-import-from-here/manifests/omnia.fx.context.manifest.json +1 -1
  10. package/internal-do-not-import-from-here/manifests/omnia.fx.core.manifest.json +1 -1
  11. package/internal-do-not-import-from-here/manifests/omnia.fx.manifest.json +1 -1
  12. package/internal-do-not-import-from-here/manifests/omnia.fx.ux.manifest.json +1 -1
  13. package/internal-do-not-import-from-here/manifests/omnia.fx.ux.richtexteditor.manifest.json +1 -1
  14. package/internal-do-not-import-from-here/services/AzureOpenAIService.d.ts +22 -0
  15. package/internal-do-not-import-from-here/services/FeatureService.d.ts +1 -0
  16. package/internal-do-not-import-from-here/services/identities/IdentityService.d.ts +4 -1
  17. package/internal-do-not-import-from-here/services/identities/UserIdentityService.d.ts +3 -2
  18. package/internal-do-not-import-from-here/services/identities/UserService.d.ts +3 -3
  19. package/internal-do-not-import-from-here/services/index.d.ts +2 -0
  20. package/internal-do-not-import-from-here/services/permissions/PermissionService.d.ts +2 -1
  21. package/internal-do-not-import-from-here/services/properties/EnterprisePropertiesProvider.d.ts +45 -0
  22. package/internal-do-not-import-from-here/services/properties/bindings/PropertyBindingService.d.ts +17 -0
  23. package/internal-do-not-import-from-here/services/properties/bindings/index.d.ts +2 -0
  24. package/internal-do-not-import-from-here/services/properties/bindings/providers/ExtendedEnterprisePropertyBindingProvider.d.ts +9 -0
  25. package/internal-do-not-import-from-here/services/properties/bindings/providers/IdentityPropertyBindingProvider.d.ts +10 -0
  26. package/internal-do-not-import-from-here/services/properties/bindings/providers/index.d.ts +2 -0
  27. package/internal-do-not-import-from-here/services/properties/datasource/DataSourcePropertiesService.d.ts +79 -0
  28. package/internal-do-not-import-from-here/services/properties/datasource/DataSourcePropertyDefinitionHandler.d.ts +35 -0
  29. package/internal-do-not-import-from-here/services/properties/datasource/DataSourcePropertyProvider.d.ts +49 -0
  30. package/internal-do-not-import-from-here/services/properties/datasource/TestDataSourceService.d.ts +6 -0
  31. package/internal-do-not-import-from-here/services/properties/datasource/index.d.ts +4 -0
  32. package/internal-do-not-import-from-here/services/properties/index.d.ts +3 -0
  33. package/internal-do-not-import-from-here/shared/models/theming/BlueprintDefinition.d.ts +4 -2
  34. package/internal-do-not-import-from-here/shared/models/theming/BlueprintDefinition.js +2 -0
  35. package/internal-do-not-import-from-here/stores/EnterprisePropertyStore.d.ts +3 -2
  36. package/internal-do-not-import-from-here/stores/FeatureStore.d.ts +1 -0
  37. package/internal-do-not-import-from-here/stores/IdentityStore.d.ts +1 -1
  38. package/internal-do-not-import-from-here/stores/IdentitySyncProviderStore.d.ts +1 -0
  39. package/internal-do-not-import-from-here/stores/UserIdentityStore.d.ts +8 -2
  40. package/internal-do-not-import-from-here/ux/AppRollupFilterEngineContext.d.ts +1 -0
  41. package/internal-do-not-import-from-here/ux/Exposes.d.ts +2 -0
  42. package/internal-do-not-import-from-here/ux/ListViewComponentBase.d.ts +6 -0
  43. package/internal-do-not-import-from-here/ux/ScrollHelper.d.ts +28 -0
  44. package/internal-do-not-import-from-here/ux/SidePanelContext.d.ts +4 -3
  45. package/internal-do-not-import-from-here/ux/UxModels.d.ts +99 -15
  46. package/internal-do-not-import-from-here/ux/app/AppPropertiesProvider.d.ts +29 -17
  47. package/internal-do-not-import-from-here/ux/app/appinstance/view/listing/ListView.d.ts +1 -0
  48. package/internal-do-not-import-from-here/ux/app/index.d.ts +1 -0
  49. package/internal-do-not-import-from-here/ux/app/management/core/loc.d.ts +3 -0
  50. package/internal-do-not-import-from-here/ux/app/management/tabs/namingpolicies/ListingNamingPolicies.d.ts +0 -4
  51. package/internal-do-not-import-from-here/ux/app/management/tabs/templates/tabs/PropertyRow.d.ts +1 -1
  52. package/internal-do-not-import-from-here/ux/authsetup/AuthSetup.css.d.ts +1 -0
  53. package/internal-do-not-import-from-here/ux/authsetup/loc/localize.d.ts +6 -0
  54. package/internal-do-not-import-from-here/ux/authsetup/services/AuthSetupService.d.ts +1 -0
  55. package/internal-do-not-import-from-here/ux/datetimepicker/DateTimePicker.d.ts +1 -0
  56. package/internal-do-not-import-from-here/ux/datetimezonepicker/DateTimeZonePicker.d.ts +11 -11
  57. package/internal-do-not-import-from-here/ux/datetimezonepicker/IDateTimeZonePicker.d.ts +2 -2
  58. package/internal-do-not-import-from-here/ux/datetimezonerenderer/DateTimeZoneRenderer.d.ts +5 -5
  59. package/internal-do-not-import-from-here/ux/datetimezonerenderer/IDateTimeZoneRenderer.d.ts +1 -1
  60. package/internal-do-not-import-from-here/ux/editorchrome/chrome/EditorChrome.d.ts +1 -0
  61. package/internal-do-not-import-from-here/ux/enterpriseproperties/EnterprisePropertyComponentProps.d.ts +1 -0
  62. package/internal-do-not-import-from-here/ux/enterpriseproperties/edit/tagsproperty/TagsPropertyEdit.d.ts +2 -1
  63. package/internal-do-not-import-from-here/ux/features/FeatureActivation.d.ts +4 -2
  64. package/internal-do-not-import-from-here/ux/features/loc/localize.d.ts +6 -0
  65. package/internal-do-not-import-from-here/ux/filterengine/FilterEngineHandlerStorage.d.ts +4 -1
  66. package/internal-do-not-import-from-here/ux/filterengine/FilterEngineRenderer.d.ts +6 -1
  67. package/internal-do-not-import-from-here/ux/filterengine/Helper.d.ts +2 -1
  68. package/internal-do-not-import-from-here/ux/{properties/property-renderer/PropertyDatasourceRenderer.d.ts → filterengine/components/renderer/PropertyDropdownRenderer.d.ts} +16 -21
  69. package/internal-do-not-import-from-here/ux/{user/components/PropertyConfigurationRenderer.d.ts → filterengine/components/renderer/PropertyListRenderer.d.ts} +11 -11
  70. package/internal-do-not-import-from-here/ux/filterengine/components/renderer/person/PersonPropertyChipItem.d.ts +160 -26
  71. package/internal-do-not-import-from-here/ux/filterengine/components/renderer/person/PersonPropertyItemRenderer.d.ts +1 -1
  72. package/internal-do-not-import-from-here/ux/filterengine/components/renderer/person/PersonPropertyRenderer.d.ts +5 -0
  73. package/internal-do-not-import-from-here/ux/filterengine/components/renderer/tags/TagsPropertyRenderer.d.ts +57 -0
  74. package/internal-do-not-import-from-here/ux/filterengine/components/renderer/tags/TagsPropertyRendererStyle.css.d.ts +4 -0
  75. package/internal-do-not-import-from-here/ux/filterengine/components/selectionsarea/tags/SelectionsAreaTagsRenderer.d.ts +62 -0
  76. package/internal-do-not-import-from-here/ux/filterengine/components/settings/number/NumberPropertySettingsFixer.d.ts +1 -1
  77. package/internal-do-not-import-from-here/ux/filterengine/components/settings/tags/TagsPropertyDefaultValueInput.d.ts +85 -0
  78. package/internal-do-not-import-from-here/ux/filterengine/components/settings/tags/TagsPropertySettings.d.ts +90 -0
  79. package/internal-do-not-import-from-here/ux/filterengine/components/settings/tags/TagsPropertySettingsFixer.d.ts +4 -0
  80. package/internal-do-not-import-from-here/ux/filterengine/components/settings/text/TextPropertySettingsFixer.d.ts +1 -1
  81. package/internal-do-not-import-from-here/ux/filterengine/handler/FilterEngineHandler.d.ts +8 -8
  82. package/internal-do-not-import-from-here/ux/filterengine/handler/TagsFilterEngineHandler.d.ts +37 -0
  83. package/internal-do-not-import-from-here/ux/filterengine/shared/BasePropertySettings.d.ts +3 -0
  84. package/internal-do-not-import-from-here/ux/identities/loc/Localize.d.ts +10 -9
  85. package/internal-do-not-import-from-here/ux/identitypicker/IdentityPicker.css.d.ts +3 -10
  86. package/internal-do-not-import-from-here/ux/identitypicker/IdentityPicker.d.ts +30 -65
  87. package/internal-do-not-import-from-here/ux/identitypicker/IdentityPickerButton.d.ts +152 -0
  88. package/internal-do-not-import-from-here/ux/identitypicker/IdentityPickerDialog.d.ts +132 -0
  89. package/internal-do-not-import-from-here/ux/identitypicker/IdentityPickerField.d.ts +177 -0
  90. package/internal-do-not-import-from-here/ux/identitypicker/IdentityPickerInlineField.d.ts +182 -0
  91. package/internal-do-not-import-from-here/ux/imagegrid/IImageGrid.d.ts +2 -1
  92. package/internal-do-not-import-from-here/ux/imagegrid/ImageGrid.d.ts +3 -2
  93. package/internal-do-not-import-from-here/ux/imagegrid/loc/localize.d.ts +2 -0
  94. package/internal-do-not-import-from-here/ux/journey/index.d.ts +2 -0
  95. package/internal-do-not-import-from-here/ux/journey/testbench/JourneyTest.d.ts +52 -0
  96. package/internal-do-not-import-from-here/ux/journey/v2/JourneyBlade.css.d.ts +7 -0
  97. package/internal-do-not-import-from-here/ux/journey/v2/JourneyBlade.d.ts +153 -0
  98. package/internal-do-not-import-from-here/ux/journey/v2/JourneyV2.css.d.ts +4 -0
  99. package/internal-do-not-import-from-here/ux/journey/v2/JourneyV2.d.ts +46 -0
  100. package/internal-do-not-import-from-here/ux/journey/v2/models/BladeInstance.d.ts +5 -0
  101. package/internal-do-not-import-from-here/ux/journey/v2/models/index.d.ts +1 -0
  102. package/internal-do-not-import-from-here/ux/journey/v2/stores/JourneyStore.d.ts +23 -0
  103. package/internal-do-not-import-from-here/ux/journey/v2/stores/index.d.ts +1 -0
  104. package/internal-do-not-import-from-here/ux/languagepicker/ILanguagePicker.d.ts +2 -0
  105. package/internal-do-not-import-from-here/ux/languagepicker/LanguagePicker.d.ts +1 -0
  106. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/blocktitle/BlockTitle.css.d.ts +1 -1
  107. package/internal-do-not-import-from-here/ux/layoutcanvas/velcron_definitions/contentblocks.d.ts +2 -0
  108. package/internal-do-not-import-from-here/ux/magiclink/loc/localize.d.ts +1 -0
  109. package/internal-do-not-import-from-here/ux/mediapickerproviders/bingprovider/BingProvider.d.ts +1 -0
  110. package/internal-do-not-import-from-here/ux/mediapickerproviders/dalleprovider/DallEProvider.css.d.ts +26 -0
  111. package/internal-do-not-import-from-here/ux/mediapickerproviders/dalleprovider/DallEProvider.d.ts +40 -0
  112. package/internal-do-not-import-from-here/ux/mediapickerproviders/dalleprovider/PollingImageComponent.d.ts +87 -0
  113. package/internal-do-not-import-from-here/ux/mediapickerproviders/dalleprovider/loc/localize.d.ts +22 -0
  114. package/internal-do-not-import-from-here/ux/mediapickerproviders/mediaproviderbase/GridViewMediaProviderComponent.d.ts +4 -1
  115. package/internal-do-not-import-from-here/ux/mediapickerproviders/pexelsprovider/PexelProvider.d.ts +1 -0
  116. package/internal-do-not-import-from-here/ux/models/ProfileCardStyles.d.ts +2 -0
  117. package/internal-do-not-import-from-here/ux/optionpicker/OptionPicker.d.ts +1 -1
  118. package/internal-do-not-import-from-here/ux/oxide/draggable/Draggable.css.d.ts +6 -0
  119. package/internal-do-not-import-from-here/ux/oxide/draggable/Draggable.d.ts +593 -0
  120. package/internal-do-not-import-from-here/ux/oxide/menu/Menu.d.ts +47 -5
  121. package/internal-do-not-import-from-here/ux/oxide/toolbar/Toolbar.d.ts +53 -6
  122. package/internal-do-not-import-from-here/ux/oxide/treeview/Treeview.css.d.ts +0 -2
  123. package/internal-do-not-import-from-here/ux/profilecard/IProfileCard.d.ts +1 -0
  124. package/internal-do-not-import-from-here/ux/profilecard/ProfileCard.d.ts +6 -1
  125. package/internal-do-not-import-from-here/ux/properties/builtins/birthday/BirthdayDisplay.d.ts +11 -7
  126. package/internal-do-not-import-from-here/ux/properties/builtins/birthday/BirthdayEditor.d.ts +16 -12
  127. package/internal-do-not-import-from-here/ux/properties/builtins/birthday/BirthdayPropertyDefinition.d.ts +1 -13
  128. package/internal-do-not-import-from-here/ux/properties/builtins/boolean/BooleanDisplay.css.d.ts +7 -0
  129. package/internal-do-not-import-from-here/ux/{user/components/UserPropertyProviderDisplay.d.ts → properties/builtins/boolean/BooleanDisplay.d.ts} +17 -17
  130. package/internal-do-not-import-from-here/ux/properties/builtins/boolean/BooleanEditor.css.d.ts +7 -0
  131. package/internal-do-not-import-from-here/ux/properties/builtins/boolean/BooleanEditor.d.ts +83 -0
  132. package/internal-do-not-import-from-here/ux/properties/builtins/boolean/BooleanPropertyDefinition.d.ts +1 -0
  133. package/internal-do-not-import-from-here/ux/properties/builtins/date/DateDisplay.d.ts +11 -7
  134. package/internal-do-not-import-from-here/ux/properties/builtins/date/DateEditor.d.ts +16 -12
  135. package/internal-do-not-import-from-here/ux/properties/builtins/date/DatePropertyDefinition.d.ts +1 -11
  136. package/internal-do-not-import-from-here/ux/properties/builtins/date-time/DateTimeDisplay.d.ts +16 -12
  137. package/internal-do-not-import-from-here/ux/properties/builtins/date-time/DateTimeEditor.d.ts +16 -12
  138. package/internal-do-not-import-from-here/ux/properties/builtins/date-time/DateTimePropertyDefinition.d.ts +1 -16
  139. package/internal-do-not-import-from-here/ux/properties/builtins/email/EmailDisplay.d.ts +10 -5
  140. package/internal-do-not-import-from-here/ux/properties/builtins/email/EmailEditor.d.ts +15 -10
  141. package/internal-do-not-import-from-here/ux/properties/builtins/email/EmailPropertyDefinition.d.ts +1 -12
  142. package/internal-do-not-import-from-here/ux/properties/builtins/html/HtmlConfiguration.d.ts +16 -11
  143. package/internal-do-not-import-from-here/ux/properties/builtins/html/HtmlDisplay.d.ts +10 -5
  144. package/internal-do-not-import-from-here/ux/properties/builtins/html/HtmlEditor.d.ts +15 -10
  145. package/internal-do-not-import-from-here/ux/properties/builtins/html/HtmlPropertyDefinition.d.ts +1 -16
  146. package/internal-do-not-import-from-here/ux/properties/builtins/identity/IdentityConfiguration.d.ts +16 -11
  147. package/internal-do-not-import-from-here/ux/properties/builtins/identity/IdentityDisplay.d.ts +6 -2
  148. package/internal-do-not-import-from-here/ux/properties/builtins/identity/IdentityEditor.d.ts +7 -3
  149. package/internal-do-not-import-from-here/ux/properties/builtins/identity/IdentityPropertyDefinition.d.ts +1 -5
  150. package/internal-do-not-import-from-here/ux/properties/builtins/image/ImageConfiguration.d.ts +16 -11
  151. package/internal-do-not-import-from-here/ux/properties/builtins/image/ImageDisplay.d.ts +5 -0
  152. package/internal-do-not-import-from-here/ux/properties/builtins/image/ImageEditor.d.ts +6 -1
  153. package/internal-do-not-import-from-here/ux/properties/builtins/image/ImagePropertyDefinition.d.ts +1 -5
  154. package/internal-do-not-import-from-here/ux/properties/builtins/integer/IntegerDisplay.css.d.ts +7 -0
  155. package/internal-do-not-import-from-here/ux/properties/{legacy-enterprise-property/LegacyEnterprisePropertyDisplay.d.ts → builtins/integer/IntegerDisplay.d.ts} +17 -26
  156. package/internal-do-not-import-from-here/ux/properties/builtins/integer/IntegerEditor.css.d.ts +7 -0
  157. package/internal-do-not-import-from-here/ux/properties/builtins/integer/IntegerEditor.d.ts +83 -0
  158. package/internal-do-not-import-from-here/ux/properties/builtins/integer/IntegerPropertyDefinition.d.ts +1 -0
  159. package/internal-do-not-import-from-here/ux/properties/builtins/language/LanguageDisplay.d.ts +11 -7
  160. package/internal-do-not-import-from-here/ux/properties/builtins/language/LanguageEditor.d.ts +16 -12
  161. package/internal-do-not-import-from-here/ux/properties/builtins/language/LanguagePropertyDefinition.d.ts +1 -15
  162. package/internal-do-not-import-from-here/ux/properties/builtins/link/LinkConfiguration.d.ts +16 -11
  163. package/internal-do-not-import-from-here/ux/properties/builtins/link/LinkDisplay.d.ts +11 -7
  164. package/internal-do-not-import-from-here/ux/properties/builtins/link/LinkEditor.d.ts +16 -12
  165. package/internal-do-not-import-from-here/ux/properties/builtins/link/LinkPropertyDefinition.d.ts +1 -12
  166. package/internal-do-not-import-from-here/ux/properties/builtins/media/MediaDisplay.css.d.ts +7 -0
  167. package/internal-do-not-import-from-here/ux/properties/builtins/media/MediaDisplay.d.ts +66 -0
  168. package/internal-do-not-import-from-here/ux/properties/builtins/media/MediaEditor.css.d.ts +8 -0
  169. package/internal-do-not-import-from-here/ux/{user/components/UserPropertiesByMicrosoftGraphDisplay.d.ts → properties/builtins/media/MediaEditor.d.ts} +33 -19
  170. package/internal-do-not-import-from-here/ux/properties/builtins/media/MediaPropertyDefinition.d.ts +1 -0
  171. package/internal-do-not-import-from-here/ux/properties/builtins/multiline-text/MultilineTextDisplay.d.ts +11 -7
  172. package/internal-do-not-import-from-here/ux/properties/builtins/multiline-text/MultilineTextEditor.d.ts +16 -12
  173. package/internal-do-not-import-from-here/ux/properties/builtins/multiline-text/MultilineTextPropertyDefinition.d.ts +1 -11
  174. package/internal-do-not-import-from-here/ux/properties/builtins/multilingualText/MultilingualTextDisplay.d.ts +11 -7
  175. package/internal-do-not-import-from-here/ux/properties/builtins/multilingualText/MultilingualTextEditor.d.ts +16 -12
  176. package/internal-do-not-import-from-here/ux/properties/builtins/multilingualText/MultilingualTextPropertyDefinition.d.ts +1 -14
  177. package/internal-do-not-import-from-here/ux/properties/builtins/phone-number/PhoneNumberDisplay.d.ts +11 -7
  178. package/internal-do-not-import-from-here/ux/properties/builtins/phone-number/PhoneNumberEditor.d.ts +15 -10
  179. package/internal-do-not-import-from-here/ux/properties/builtins/phone-number/PhoneNumberPropertyDefinition.d.ts +1 -11
  180. package/internal-do-not-import-from-here/ux/properties/builtins/text/TextDisplay.d.ts +11 -7
  181. package/internal-do-not-import-from-here/ux/properties/builtins/text/TextEditor.d.ts +16 -12
  182. package/internal-do-not-import-from-here/ux/properties/builtins/text/TextPropertyDefinition.d.ts +1 -15
  183. package/internal-do-not-import-from-here/ux/properties/builtins/time/TimeDisplay.d.ts +16 -12
  184. package/internal-do-not-import-from-here/ux/properties/builtins/time/TimeEditor.d.ts +26 -22
  185. package/internal-do-not-import-from-here/ux/properties/builtins/time/TimePropertyDefinition.d.ts +1 -16
  186. package/internal-do-not-import-from-here/ux/properties/index.d.ts +0 -2
  187. package/internal-do-not-import-from-here/ux/properties/models/DataSource.d.ts +26 -19
  188. package/internal-do-not-import-from-here/ux/properties/models/PropertyApi.d.ts +14 -3
  189. package/internal-do-not-import-from-here/ux/properties/models/PropertyInput.d.ts +7 -1
  190. package/internal-do-not-import-from-here/ux/properties/models/PropertyPicker.d.ts +9 -3
  191. package/internal-do-not-import-from-here/ux/properties/models/index.d.ts +0 -2
  192. package/internal-do-not-import-from-here/ux/properties/property-configuration/LabelOptionsRenderer.d.ts +67 -0
  193. package/internal-do-not-import-from-here/ux/properties/property-configuration/PropertyConfiguration.d.ts +67 -0
  194. package/internal-do-not-import-from-here/ux/properties/property-configuration/PropertyLocking.css.d.ts +7 -0
  195. package/internal-do-not-import-from-here/ux/properties/property-configuration/PropertyLocking.d.ts +95 -0
  196. package/internal-do-not-import-from-here/ux/properties/property-picker/PropertyInput.d.ts +1 -1
  197. package/internal-do-not-import-from-here/ux/properties/property-picker/PropertyPicker.d.ts +11 -10
  198. package/internal-do-not-import-from-here/ux/{user/UserPropertyRenderer.d.ts → properties/property-renderer/PropertyBindingValueRenderer.d.ts} +14 -20
  199. package/internal-do-not-import-from-here/ux/properties/property-renderer/{PropertyRenderer.d.ts → PropertyValueRenderer.d.ts} +20 -15
  200. package/internal-do-not-import-from-here/ux/richtexteditor/RichTextEditor.d.ts +1 -1
  201. package/internal-do-not-import-from-here/ux/richtexteditor/TextCompletionPanel/TextCompletionPanel.css.d.ts +28 -0
  202. package/internal-do-not-import-from-here/ux/richtexteditor/TextCompletionPanel/TextCompletionPanel.d.ts +597 -0
  203. package/internal-do-not-import-from-here/ux/richtexteditor/TextCompletionPanel/loc/localize.d.ts +28 -0
  204. package/internal-do-not-import-from-here/ux/richtexteditor/extensions/TextCompletion/Registration.d.ts +5 -0
  205. package/internal-do-not-import-from-here/ux/richtexteditor/extensions/TextCompletion/TextCompletion.d.ts +12 -0
  206. package/internal-do-not-import-from-here/ux/richtexteditor/extensions/TextCompletion/TextCompletionHandler.d.ts +34 -0
  207. package/internal-do-not-import-from-here/ux/richtexteditor/extensions/TextCompletion/TextCompletionMenu.d.ts +24 -0
  208. package/internal-do-not-import-from-here/ux/richtexteditor/extensions/TextCompletion/TextCompletionNode.d.ts +3 -0
  209. package/internal-do-not-import-from-here/ux/richtexteditor/extensions/TextCompletion/TextCompletionToolbar.d.ts +15 -0
  210. package/internal-do-not-import-from-here/ux/richtexteditor/extensions/TextCompletion/index.d.ts +4 -0
  211. package/internal-do-not-import-from-here/ux/richtexteditor/extensions/index.d.ts +1 -0
  212. package/internal-do-not-import-from-here/ux/richtexteditor/extensions/loc/localize.d.ts +5 -0
  213. package/internal-do-not-import-from-here/ux/sidepanel/SidePanelRenderer.d.ts +1 -0
  214. package/internal-do-not-import-from-here/ux/sidepanel/models/IRegistration.d.ts +11 -7
  215. package/internal-do-not-import-from-here/ux/signin/Shared.d.ts +2 -2
  216. package/internal-do-not-import-from-here/ux/signin/loc/localize.d.ts +1 -0
  217. package/internal-do-not-import-from-here/ux/social/CommentDialog.d.ts +2 -1
  218. package/internal-do-not-import-from-here/ux/theming-v2/styling/UseTypographyStyling.d.ts +2 -2
  219. package/internal-do-not-import-from-here/ux/use/UseColorSchemaSetup.d.ts +73 -1
  220. package/internal-do-not-import-from-here/ux/user/UserPropertiesByMicrosoftGraphProvider.d.ts +5 -1
  221. package/internal-do-not-import-from-here/ux/user/UserPropertiesProvider.d.ts +6 -1
  222. package/internal-do-not-import-from-here/ux/velcron/blocks/content/model/ContentDefinitionRegistration.d.ts +1 -0
  223. package/internal-do-not-import-from-here/ux/velcron/blocks/content/store/ContentBlockStore.d.ts +2 -0
  224. package/internal-do-not-import-from-here/ux/velcron/components/properties/VelcronProperties.d.ts +7 -10
  225. package/internal-do-not-import-from-here/ux/velcron/core/models/Enums.d.ts +6 -6
  226. package/internal-do-not-import-from-here/ux/velcron/core/models/VelcronDefinitions.d.ts +14 -14
  227. package/internal-do-not-import-from-here/ux/velcron/core/models/VelcronEvents.d.ts +2 -2
  228. package/internal-do-not-import-from-here/ux/velcron/core/parser/VelcronData.d.ts +2 -2
  229. package/internal-do-not-import-from-here/ux/velcron/core/stores/VelcronBlueprint.d.ts +36 -0
  230. package/internal-do-not-import-from-here/ux/velcron/core/stores/VelcronColorSchema.d.ts +1 -0
  231. package/internal-do-not-import-from-here/ux/velcron/core/stores/VelcronTheming.d.ts +2 -1
  232. package/internal-do-not-import-from-here/ux/velcron/core/stores/index.d.ts +1 -0
  233. package/internal-do-not-import-from-here/ux/velcron/editor/VelcronEditor.d.ts +164 -159
  234. package/internal-do-not-import-from-here/ux/velcron/editor/stores/VelcronEditorStore.d.ts +1 -0
  235. package/internal-do-not-import-from-here/ux/velcron/renderer/VelcronRenderer.d.ts +1 -1
  236. package/internal-do-not-import-from-here/ux/velcron/renderer/components/Custom.d.ts +6 -6
  237. package/internal-do-not-import-from-here/wctypings.d.ts +57 -31
  238. package/package.json +2 -2
  239. package/internal-do-not-import-from-here/contexts/CurrentDisplayUserContext.d.ts +0 -5
  240. package/internal-do-not-import-from-here/ux/dynamicgroup/DynamicGroupPropertyEditorRenderer.d.ts +0 -73
  241. package/internal-do-not-import-from-here/ux/dynamicgroup/loc/localize.d.ts +0 -10
  242. package/internal-do-not-import-from-here/ux/group/GroupPropertyEditorRenderer.d.ts +0 -73
  243. package/internal-do-not-import-from-here/ux/group/loc/localize.d.ts +0 -10
  244. package/internal-do-not-import-from-here/ux/properties/LegacyEnterprisePropertiesProvider.d.ts +0 -14
  245. package/internal-do-not-import-from-here/ux/properties/PropertyDataSourceContext.d.ts +0 -21
  246. package/internal-do-not-import-from-here/ux/properties/legacy-enterprise-property/LegacyEnterprisePropertyDefinition.d.ts +0 -8
  247. package/internal-do-not-import-from-here/ux/properties/legacy-enterprise-property/LegacyEnterprisePropertyDisplay.css.d.ts +0 -4
  248. package/internal-do-not-import-from-here/ux/properties/legacy-enterprise-property/LegacyEnterprisePropertyEditor.css.d.ts +0 -4
  249. package/internal-do-not-import-from-here/ux/properties/legacy-enterprise-property/LegacyEnterprisePropertyEditor.d.ts +0 -92
  250. package/internal-do-not-import-from-here/ux/properties/models/PropertySelection.d.ts +0 -19
  251. package/internal-do-not-import-from-here/ux/user/UserPropertiesByMicrosoftGraphDefinition.d.ts +0 -18
  252. package/internal-do-not-import-from-here/ux/user/UserPropertyProviderDefinition.d.ts +0 -15
  253. package/internal-do-not-import-from-here/ux/user/components/UserPropertiesByMicrosoftGraphEditor.d.ts +0 -83
  254. package/internal-do-not-import-from-here/ux/user/components/UserPropertyProviderEditor.d.ts +0 -83
  255. /package/internal-do-not-import-from-here/ux/{admin/chrome/AdminChrome_old.d.ts → filterengine/api/TagsRegistration.d.ts} +0 -0
@@ -0,0 +1,95 @@
1
+ import { PropertyLockStatus } from "@omnia/fx/models";
2
+ declare const _default: {
3
+ new (...args: any[]): {
4
+ $: import("vue").ComponentInternalInstance;
5
+ $data: {};
6
+ $props: Partial<{}> & Omit<Readonly<import("vue").ExtractPropTypes<{
7
+ lockingStatus: import("vue").Prop<PropertyLockStatus, PropertyLockStatus>;
8
+ onValueChanged: import("vue").Prop<Function, Function>;
9
+ renderBody: import("vue").Prop<() => JSX.Element[], () => JSX.Element[]>;
10
+ styles: import("vue").Prop<{
11
+ lockingWrapper: import("typestyle/lib/types").NestedCSSProperties;
12
+ }, {
13
+ lockingWrapper: import("typestyle/lib/types").NestedCSSProperties;
14
+ }>;
15
+ showLockConfiguration: import("vue").Prop<boolean, boolean>;
16
+ }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>;
17
+ $attrs: {
18
+ [x: string]: unknown;
19
+ };
20
+ $refs: {
21
+ [x: string]: unknown;
22
+ };
23
+ $slots: Readonly<{
24
+ [name: string]: import("vue").Slot;
25
+ }>;
26
+ $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
27
+ $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
28
+ $emit: (event: string, ...args: any[]) => void;
29
+ $el: any;
30
+ $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
31
+ lockingStatus: import("vue").Prop<PropertyLockStatus, PropertyLockStatus>;
32
+ onValueChanged: import("vue").Prop<Function, Function>;
33
+ renderBody: import("vue").Prop<() => JSX.Element[], () => JSX.Element[]>;
34
+ styles: import("vue").Prop<{
35
+ lockingWrapper: import("typestyle/lib/types").NestedCSSProperties;
36
+ }, {
37
+ lockingWrapper: import("typestyle/lib/types").NestedCSSProperties;
38
+ }>;
39
+ showLockConfiguration: import("vue").Prop<boolean, boolean>;
40
+ }>>, () => JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string> & {
41
+ beforeCreate?: (() => void) | (() => void)[];
42
+ created?: (() => void) | (() => void)[];
43
+ beforeMount?: (() => void) | (() => void)[];
44
+ mounted?: (() => void) | (() => void)[];
45
+ beforeUpdate?: (() => void) | (() => void)[];
46
+ updated?: (() => void) | (() => void)[];
47
+ activated?: (() => void) | (() => void)[];
48
+ deactivated?: (() => void) | (() => void)[];
49
+ beforeDestroy?: (() => void) | (() => void)[];
50
+ beforeUnmount?: (() => void) | (() => void)[];
51
+ destroyed?: (() => void) | (() => void)[];
52
+ unmounted?: (() => void) | (() => void)[];
53
+ renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
54
+ renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
55
+ errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void)[];
56
+ };
57
+ $forceUpdate: () => void;
58
+ $nextTick: typeof import("vue").nextTick;
59
+ $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean>): import("vue").WatchStopHandle;
60
+ } & Readonly<import("vue").ExtractPropTypes<{
61
+ lockingStatus: import("vue").Prop<PropertyLockStatus, PropertyLockStatus>;
62
+ onValueChanged: import("vue").Prop<Function, Function>;
63
+ renderBody: import("vue").Prop<() => JSX.Element[], () => JSX.Element[]>;
64
+ styles: import("vue").Prop<{
65
+ lockingWrapper: import("typestyle/lib/types").NestedCSSProperties;
66
+ }, {
67
+ lockingWrapper: import("typestyle/lib/types").NestedCSSProperties;
68
+ }>;
69
+ showLockConfiguration: import("vue").Prop<boolean, boolean>;
70
+ }>> & import("vue").ShallowUnwrapRef<() => JSX.Element> & {} & import("vue").ComponentCustomProperties & {};
71
+ __isFragment?: never;
72
+ __isTeleport?: never;
73
+ __isSuspense?: never;
74
+ } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
75
+ lockingStatus: import("vue").Prop<PropertyLockStatus, PropertyLockStatus>;
76
+ onValueChanged: import("vue").Prop<Function, Function>;
77
+ renderBody: import("vue").Prop<() => JSX.Element[], () => JSX.Element[]>;
78
+ styles: import("vue").Prop<{
79
+ lockingWrapper: import("typestyle/lib/types").NestedCSSProperties;
80
+ }, {
81
+ lockingWrapper: import("typestyle/lib/types").NestedCSSProperties;
82
+ }>;
83
+ showLockConfiguration: import("vue").Prop<boolean, boolean>;
84
+ }>>, () => JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
85
+ propsDefinition: Omit<Readonly<{} & {
86
+ onValueChanged?: Function;
87
+ styles?: {
88
+ lockingWrapper: import("typestyle/lib/types").NestedCSSProperties;
89
+ };
90
+ renderBody?: () => JSX.Element[];
91
+ showLockConfiguration?: boolean;
92
+ lockingStatus?: PropertyLockStatus;
93
+ }>, never>;
94
+ };
95
+ export default _default;
@@ -1,5 +1,5 @@
1
- import { PropertyRegistration } from "@omnia/fx-models";
2
1
  import { nextTick } from "vue";
2
+ import { PropertyRegistration } from "../models/PropertyInput";
3
3
  declare const _default: {
4
4
  new (...args: any[]): {
5
5
  $: import("vue").ComponentInternalInstance;
@@ -1,10 +1,11 @@
1
+ import { GuidValue } from "@omnia/fx-models";
1
2
  declare const _default: {
2
3
  new (...args: any[]): {
3
4
  $: import("vue").ComponentInternalInstance;
4
5
  $data: {};
5
6
  $props: Partial<{}> & Omit<Readonly<import("vue").ExtractPropTypes<{
6
- valueBind: import("vue").Prop<import("@omnia/fx-models").DataSourcePropertyBinding, import("@omnia/fx-models").DataSourcePropertyBinding>;
7
- onValueChanged?: import("vue").Prop<(model: import("@omnia/fx-models").DataSourcePropertyBinding) => void, (model: import("@omnia/fx-models").DataSourcePropertyBinding) => void>;
7
+ selectableDataSources: import("vue").Prop<GuidValue[], GuidValue[]>;
8
+ onDataSourcePropertySelected: import("vue").Prop<(selection: import("@omnia/fx/ux").IDataSourcePropertySelection) => Promise<void>, (selection: import("@omnia/fx/ux").IDataSourcePropertySelection) => Promise<void>>;
8
9
  filled?: import("vue").Prop<boolean, boolean>;
9
10
  disabled?: import("vue").Prop<boolean, boolean>;
10
11
  dark?: import("vue").Prop<boolean, boolean>;
@@ -25,8 +26,8 @@ declare const _default: {
25
26
  $emit: (event: string, ...args: any[]) => void;
26
27
  $el: any;
27
28
  $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
28
- valueBind: import("vue").Prop<import("@omnia/fx-models").DataSourcePropertyBinding, import("@omnia/fx-models").DataSourcePropertyBinding>;
29
- onValueChanged?: import("vue").Prop<(model: import("@omnia/fx-models").DataSourcePropertyBinding) => void, (model: import("@omnia/fx-models").DataSourcePropertyBinding) => void>;
29
+ selectableDataSources: import("vue").Prop<GuidValue[], GuidValue[]>;
30
+ onDataSourcePropertySelected: import("vue").Prop<(selection: import("@omnia/fx/ux").IDataSourcePropertySelection) => Promise<void>, (selection: import("@omnia/fx/ux").IDataSourcePropertySelection) => Promise<void>>;
30
31
  filled?: import("vue").Prop<boolean, boolean>;
31
32
  disabled?: import("vue").Prop<boolean, boolean>;
32
33
  dark?: import("vue").Prop<boolean, boolean>;
@@ -53,8 +54,8 @@ declare const _default: {
53
54
  $nextTick: typeof import("vue").nextTick;
54
55
  $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean>): import("vue").WatchStopHandle;
55
56
  } & Readonly<import("vue").ExtractPropTypes<{
56
- valueBind: import("vue").Prop<import("@omnia/fx-models").DataSourcePropertyBinding, import("@omnia/fx-models").DataSourcePropertyBinding>;
57
- onValueChanged?: import("vue").Prop<(model: import("@omnia/fx-models").DataSourcePropertyBinding) => void, (model: import("@omnia/fx-models").DataSourcePropertyBinding) => void>;
57
+ selectableDataSources: import("vue").Prop<GuidValue[], GuidValue[]>;
58
+ onDataSourcePropertySelected: import("vue").Prop<(selection: import("@omnia/fx/ux").IDataSourcePropertySelection) => Promise<void>, (selection: import("@omnia/fx/ux").IDataSourcePropertySelection) => Promise<void>>;
58
59
  filled?: import("vue").Prop<boolean, boolean>;
59
60
  disabled?: import("vue").Prop<boolean, boolean>;
60
61
  dark?: import("vue").Prop<boolean, boolean>;
@@ -65,8 +66,8 @@ declare const _default: {
65
66
  __isTeleport?: never;
66
67
  __isSuspense?: never;
67
68
  } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
68
- valueBind: import("vue").Prop<import("@omnia/fx-models").DataSourcePropertyBinding, import("@omnia/fx-models").DataSourcePropertyBinding>;
69
- onValueChanged?: import("vue").Prop<(model: import("@omnia/fx-models").DataSourcePropertyBinding) => void, (model: import("@omnia/fx-models").DataSourcePropertyBinding) => void>;
69
+ selectableDataSources: import("vue").Prop<GuidValue[], GuidValue[]>;
70
+ onDataSourcePropertySelected: import("vue").Prop<(selection: import("@omnia/fx/ux").IDataSourcePropertySelection) => Promise<void>, (selection: import("@omnia/fx/ux").IDataSourcePropertySelection) => Promise<void>>;
70
71
  filled?: import("vue").Prop<boolean, boolean>;
71
72
  disabled?: import("vue").Prop<boolean, boolean>;
72
73
  dark?: import("vue").Prop<boolean, boolean>;
@@ -78,9 +79,9 @@ declare const _default: {
78
79
  filled?: boolean;
79
80
  multiple?: boolean;
80
81
  disabled?: boolean;
81
- valueBind?: import("@omnia/fx-models").DataSourcePropertyBinding;
82
- onValueChanged?: (model: import("@omnia/fx-models").DataSourcePropertyBinding) => void;
83
82
  hideDetails?: boolean;
83
+ selectableDataSources?: GuidValue[];
84
+ onDataSourcePropertySelected?: (selection: import("@omnia/fx/ux").IDataSourcePropertySelection) => Promise<void>;
84
85
  }>, never>;
85
86
  };
86
87
  export default _default;
@@ -1,11 +1,11 @@
1
- import { PropertyDefinition, PropertyValueBinding, PropertyValue } from "@omnia/fx-models";
1
+ import { PropertyDefinition, PropertyValue, PropertyValueBinding } from "@omnia/fx-models";
2
2
  declare const _default: {
3
3
  new (...args: any[]): {
4
4
  $: import("vue").ComponentInternalInstance;
5
5
  $data: {};
6
6
  $props: Partial<{}> & Omit<Readonly<import("vue").ExtractPropTypes<{
7
- valueBind: import("vue").Prop<PropertyValueBinding<PropertyDefinition<any, any, any> | PropertyValue<any, any>>, PropertyValueBinding<PropertyDefinition<any, any, any> | PropertyValue<any, any>>>;
8
- onValueBindChanged: import("vue").Prop<(value: PropertyValueBinding<PropertyDefinition<any, any, any> | PropertyValue<any, any>>) => void, (value: PropertyValueBinding<PropertyDefinition<any, any, any> | PropertyValue<any, any>>) => void>;
7
+ valueBind: import("vue").Prop<PropertyValueBinding<PropertyDefinition<PropertyValue, any, any, import("@omnia/fx-models").PropertySetupBase>>, PropertyValueBinding<PropertyDefinition<PropertyValue, any, any, import("@omnia/fx-models").PropertySetupBase>>>;
8
+ onValueBindChanged: import("vue").Prop<(newValue: PropertyValueBinding<PropertyDefinition<PropertyValue, any, any>>) => void, (newValue: PropertyValueBinding<PropertyDefinition<PropertyValue, any, any>>) => void>;
9
9
  disabled: import("vue").Prop<boolean, boolean>;
10
10
  editMode: import("vue").Prop<boolean, boolean>;
11
11
  }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>;
@@ -23,13 +23,11 @@ declare const _default: {
23
23
  $emit: (event: string, ...args: any[]) => void;
24
24
  $el: any;
25
25
  $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
26
- valueBind: import("vue").Prop<PropertyValueBinding<PropertyDefinition<any, any, any> | PropertyValue<any, any>>, PropertyValueBinding<PropertyDefinition<any, any, any> | PropertyValue<any, any>>>;
27
- onValueBindChanged: import("vue").Prop<(value: PropertyValueBinding<PropertyDefinition<any, any, any> | PropertyValue<any, any>>) => void, (value: PropertyValueBinding<PropertyDefinition<any, any, any> | PropertyValue<any, any>>) => void>;
26
+ valueBind: import("vue").Prop<PropertyValueBinding<PropertyDefinition<PropertyValue, any, any, import("@omnia/fx-models").PropertySetupBase>>, PropertyValueBinding<PropertyDefinition<PropertyValue, any, any, import("@omnia/fx-models").PropertySetupBase>>>;
27
+ onValueBindChanged: import("vue").Prop<(newValue: PropertyValueBinding<PropertyDefinition<PropertyValue, any, any>>) => void, (newValue: PropertyValueBinding<PropertyDefinition<PropertyValue, any, any>>) => void>;
28
28
  disabled: import("vue").Prop<boolean, boolean>;
29
29
  editMode: import("vue").Prop<boolean, boolean>;
30
- }>>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
31
- [key: string]: any;
32
- }>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string> & {
30
+ }>>, () => JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string> & {
33
31
  beforeCreate?: (() => void) | (() => void)[];
34
32
  created?: (() => void) | (() => void)[];
35
33
  beforeMount?: (() => void) | (() => void)[];
@@ -50,28 +48,24 @@ declare const _default: {
50
48
  $nextTick: typeof import("vue").nextTick;
51
49
  $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean>): import("vue").WatchStopHandle;
52
50
  } & Readonly<import("vue").ExtractPropTypes<{
53
- valueBind: import("vue").Prop<PropertyValueBinding<PropertyDefinition<any, any, any> | PropertyValue<any, any>>, PropertyValueBinding<PropertyDefinition<any, any, any> | PropertyValue<any, any>>>;
54
- onValueBindChanged: import("vue").Prop<(value: PropertyValueBinding<PropertyDefinition<any, any, any> | PropertyValue<any, any>>) => void, (value: PropertyValueBinding<PropertyDefinition<any, any, any> | PropertyValue<any, any>>) => void>;
51
+ valueBind: import("vue").Prop<PropertyValueBinding<PropertyDefinition<PropertyValue, any, any, import("@omnia/fx-models").PropertySetupBase>>, PropertyValueBinding<PropertyDefinition<PropertyValue, any, any, import("@omnia/fx-models").PropertySetupBase>>>;
52
+ onValueBindChanged: import("vue").Prop<(newValue: PropertyValueBinding<PropertyDefinition<PropertyValue, any, any>>) => void, (newValue: PropertyValueBinding<PropertyDefinition<PropertyValue, any, any>>) => void>;
55
53
  disabled: import("vue").Prop<boolean, boolean>;
56
54
  editMode: import("vue").Prop<boolean, boolean>;
57
- }>> & import("vue").ShallowUnwrapRef<() => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
58
- [key: string]: any;
59
- }>> & {} & import("vue").ComponentCustomProperties & {};
55
+ }>> & import("vue").ShallowUnwrapRef<() => JSX.Element> & {} & import("vue").ComponentCustomProperties & {};
60
56
  __isFragment?: never;
61
57
  __isTeleport?: never;
62
58
  __isSuspense?: never;
63
59
  } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
64
- valueBind: import("vue").Prop<PropertyValueBinding<PropertyDefinition<any, any, any> | PropertyValue<any, any>>, PropertyValueBinding<PropertyDefinition<any, any, any> | PropertyValue<any, any>>>;
65
- onValueBindChanged: import("vue").Prop<(value: PropertyValueBinding<PropertyDefinition<any, any, any> | PropertyValue<any, any>>) => void, (value: PropertyValueBinding<PropertyDefinition<any, any, any> | PropertyValue<any, any>>) => void>;
60
+ valueBind: import("vue").Prop<PropertyValueBinding<PropertyDefinition<PropertyValue, any, any, import("@omnia/fx-models").PropertySetupBase>>, PropertyValueBinding<PropertyDefinition<PropertyValue, any, any, import("@omnia/fx-models").PropertySetupBase>>>;
61
+ onValueBindChanged: import("vue").Prop<(newValue: PropertyValueBinding<PropertyDefinition<PropertyValue, any, any>>) => void, (newValue: PropertyValueBinding<PropertyDefinition<PropertyValue, any, any>>) => void>;
66
62
  disabled: import("vue").Prop<boolean, boolean>;
67
63
  editMode: import("vue").Prop<boolean, boolean>;
68
- }>>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
69
- [key: string]: any;
70
- }>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
64
+ }>>, () => JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
71
65
  propsDefinition: Omit<Readonly<{} & {
72
66
  disabled?: boolean;
73
- valueBind?: PropertyValueBinding<PropertyDefinition<any, any, any> | PropertyValue<any, any>>;
74
- onValueBindChanged?: (value: PropertyValueBinding<PropertyDefinition<any, any, any> | PropertyValue<any, any>>) => void;
67
+ valueBind?: PropertyValueBinding<PropertyDefinition<PropertyValue, any, any, import("@omnia/fx-models").PropertySetupBase>>;
68
+ onValueBindChanged?: (newValue: PropertyValueBinding<PropertyDefinition<PropertyValue, any, any>>) => void;
75
69
  editMode?: boolean;
76
70
  }>, never>;
77
71
  };
@@ -4,9 +4,10 @@ declare const _default: {
4
4
  $: import("vue").ComponentInternalInstance;
5
5
  $data: {};
6
6
  $props: Partial<{}> & Omit<Readonly<import("vue").ExtractPropTypes<{
7
- valueBind: import("vue").Prop<PropertyValue<any, any>, PropertyValue<any, any>>;
8
- configuration: import("vue").Prop<PropertyConfiguration<PropertyDefinition<any, any, any>>, PropertyConfiguration<PropertyDefinition<any, any, any>>>;
9
- onValueBindChanged: import("vue").Prop<(newValue: PropertyValue<any, any>) => void, (newValue: PropertyValue<any, any>) => void>;
7
+ valueBind: import("vue").Prop<PropertyValue, PropertyValue>;
8
+ propertyDefintionId: import("vue").Prop<import("@omnia/fx-models").GuidValue, import("@omnia/fx-models").GuidValue>;
9
+ configuration: import("vue").Prop<PropertyConfiguration<PropertyDefinition<any, any, any, import("@omnia/fx-models").PropertySetupBase>>, PropertyConfiguration<PropertyDefinition<any, any, any, import("@omnia/fx-models").PropertySetupBase>>>;
10
+ onValueBindChanged: import("vue").Prop<(newValue: PropertyValue) => void, (newValue: PropertyValue) => void>;
10
11
  disabled: import("vue").Prop<boolean, boolean>;
11
12
  editMode: import("vue").Prop<boolean, boolean>;
12
13
  }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>;
@@ -24,9 +25,10 @@ declare const _default: {
24
25
  $emit: (event: string, ...args: any[]) => void;
25
26
  $el: any;
26
27
  $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
27
- valueBind: import("vue").Prop<PropertyValue<any, any>, PropertyValue<any, any>>;
28
- configuration: import("vue").Prop<PropertyConfiguration<PropertyDefinition<any, any, any>>, PropertyConfiguration<PropertyDefinition<any, any, any>>>;
29
- onValueBindChanged: import("vue").Prop<(newValue: PropertyValue<any, any>) => void, (newValue: PropertyValue<any, any>) => void>;
28
+ valueBind: import("vue").Prop<PropertyValue, PropertyValue>;
29
+ propertyDefintionId: import("vue").Prop<import("@omnia/fx-models").GuidValue, import("@omnia/fx-models").GuidValue>;
30
+ configuration: import("vue").Prop<PropertyConfiguration<PropertyDefinition<any, any, any, import("@omnia/fx-models").PropertySetupBase>>, PropertyConfiguration<PropertyDefinition<any, any, any, import("@omnia/fx-models").PropertySetupBase>>>;
31
+ onValueBindChanged: import("vue").Prop<(newValue: PropertyValue) => void, (newValue: PropertyValue) => void>;
30
32
  disabled: import("vue").Prop<boolean, boolean>;
31
33
  editMode: import("vue").Prop<boolean, boolean>;
32
34
  }>>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
@@ -52,9 +54,10 @@ declare const _default: {
52
54
  $nextTick: typeof import("vue").nextTick;
53
55
  $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean>): import("vue").WatchStopHandle;
54
56
  } & Readonly<import("vue").ExtractPropTypes<{
55
- valueBind: import("vue").Prop<PropertyValue<any, any>, PropertyValue<any, any>>;
56
- configuration: import("vue").Prop<PropertyConfiguration<PropertyDefinition<any, any, any>>, PropertyConfiguration<PropertyDefinition<any, any, any>>>;
57
- onValueBindChanged: import("vue").Prop<(newValue: PropertyValue<any, any>) => void, (newValue: PropertyValue<any, any>) => void>;
57
+ valueBind: import("vue").Prop<PropertyValue, PropertyValue>;
58
+ propertyDefintionId: import("vue").Prop<import("@omnia/fx-models").GuidValue, import("@omnia/fx-models").GuidValue>;
59
+ configuration: import("vue").Prop<PropertyConfiguration<PropertyDefinition<any, any, any, import("@omnia/fx-models").PropertySetupBase>>, PropertyConfiguration<PropertyDefinition<any, any, any, import("@omnia/fx-models").PropertySetupBase>>>;
60
+ onValueBindChanged: import("vue").Prop<(newValue: PropertyValue) => void, (newValue: PropertyValue) => void>;
58
61
  disabled: import("vue").Prop<boolean, boolean>;
59
62
  editMode: import("vue").Prop<boolean, boolean>;
60
63
  }>> & import("vue").ShallowUnwrapRef<() => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
@@ -64,20 +67,22 @@ declare const _default: {
64
67
  __isTeleport?: never;
65
68
  __isSuspense?: never;
66
69
  } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
67
- valueBind: import("vue").Prop<PropertyValue<any, any>, PropertyValue<any, any>>;
68
- configuration: import("vue").Prop<PropertyConfiguration<PropertyDefinition<any, any, any>>, PropertyConfiguration<PropertyDefinition<any, any, any>>>;
69
- onValueBindChanged: import("vue").Prop<(newValue: PropertyValue<any, any>) => void, (newValue: PropertyValue<any, any>) => void>;
70
+ valueBind: import("vue").Prop<PropertyValue, PropertyValue>;
71
+ propertyDefintionId: import("vue").Prop<import("@omnia/fx-models").GuidValue, import("@omnia/fx-models").GuidValue>;
72
+ configuration: import("vue").Prop<PropertyConfiguration<PropertyDefinition<any, any, any, import("@omnia/fx-models").PropertySetupBase>>, PropertyConfiguration<PropertyDefinition<any, any, any, import("@omnia/fx-models").PropertySetupBase>>>;
73
+ onValueBindChanged: import("vue").Prop<(newValue: PropertyValue) => void, (newValue: PropertyValue) => void>;
70
74
  disabled: import("vue").Prop<boolean, boolean>;
71
75
  editMode: import("vue").Prop<boolean, boolean>;
72
76
  }>>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
73
77
  [key: string]: any;
74
78
  }>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
75
79
  propsDefinition: Omit<Readonly<{} & {
76
- configuration?: PropertyConfiguration<PropertyDefinition<any, any, any>>;
80
+ configuration?: PropertyConfiguration<PropertyDefinition<any, any, any, import("@omnia/fx-models").PropertySetupBase>>;
77
81
  disabled?: boolean;
78
- valueBind?: PropertyValue<any, any>;
79
- onValueBindChanged?: (newValue: PropertyValue<any, any>) => void;
82
+ valueBind?: PropertyValue;
83
+ onValueBindChanged?: (newValue: PropertyValue) => void;
80
84
  editMode?: boolean;
85
+ propertyDefintionId?: import("@omnia/fx-models").GuidValue;
81
86
  }>, never>;
82
87
  };
83
88
  export default _default;
@@ -557,8 +557,8 @@ declare const _default: {
557
557
  };
558
558
  }>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
559
559
  propsDefinition: Omit<Readonly<{
560
- initialContent: string;
561
560
  onContentChange: (content: string) => void;
561
+ initialContent: string;
562
562
  } & {
563
563
  disabled?: boolean;
564
564
  placeholder?: RichTextEditorPlaceHolder;
@@ -0,0 +1,28 @@
1
+ declare const _default: {
2
+ container: {
3
+ fontSize: number;
4
+ };
5
+ };
6
+ export default _default;
7
+ export declare const containerInput: string;
8
+ export declare const containerInputWithoutReply: string;
9
+ export declare const componentCloseButton: string;
10
+ export declare const componentHeader: string;
11
+ export declare const componentBody: string;
12
+ export declare const componentStart: string;
13
+ export declare const componentFooter: string;
14
+ export declare const componentMessage: string;
15
+ export declare const componentMessageContainer: string;
16
+ export declare const componentMessageContainerOneline: string;
17
+ export declare const componentReply: string;
18
+ export declare const componentReplyContainer: string;
19
+ export declare const componentReplyContainerOneline: string;
20
+ export declare const link: string;
21
+ export declare const resetLink: string;
22
+ export declare const repliedMessage: string;
23
+ export declare const componentInsert: string;
24
+ export declare const componentImprove: string;
25
+ export declare const visibilityHidden: string;
26
+ export declare const bubbleLoading: string;
27
+ export declare const waitForTyping: string;
28
+ export declare const repliedUserMessage: string;