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