@omnia/fx 8.0.33-vnext → 8.0.34-dev

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 (1494) hide show
  1. package/internal-do-not-import-from-here/apis/ApiHelper.d.ts +1 -1
  2. package/internal-do-not-import-from-here/core/DefineFactory.d.ts +12 -0
  3. package/internal-do-not-import-from-here/core/Inject.d.ts +2 -0
  4. package/internal-do-not-import-from-here/core/ServiceContainer.d.ts +22 -5
  5. package/internal-do-not-import-from-here/core/console/ConsoleKeyboardShortcuts.d.ts +1 -6
  6. package/internal-do-not-import-from-here/core/http/HttpClient.d.ts +1 -0
  7. package/internal-do-not-import-from-here/core/index.d.ts +2 -1
  8. package/internal-do-not-import-from-here/core/messaging/InternalTopics.d.ts +3 -0
  9. package/internal-do-not-import-from-here/core/services/LocalizationService.d.ts +15 -0
  10. package/internal-do-not-import-from-here/core/services/ServiceManifestProvider.d.ts +1 -1
  11. package/internal-do-not-import-from-here/core/services/ServiceManifestProviderInternal.d.ts +5 -4
  12. package/internal-do-not-import-from-here/core/services/index.d.ts +1 -0
  13. package/internal-do-not-import-from-here/core/utils/Utils.d.ts +7 -6
  14. package/internal-do-not-import-from-here/core/utils/index.d.ts +0 -1
  15. package/internal-do-not-import-from-here/expose.d.ts +2 -1
  16. package/internal-do-not-import-from-here/index.d.ts +22 -11
  17. package/internal-do-not-import-from-here/manifests/omnia.fx.core.manifest.json +1 -1
  18. package/internal-do-not-import-from-here/manifests/omnia.fx.manifest.json +1 -1
  19. package/internal-do-not-import-from-here/manifests/omnia.fx.ux.manifest.json +1 -1
  20. package/internal-do-not-import-from-here/manifests/omnia.fx.ux.richtexteditor.manifest.json +1 -1
  21. package/internal-do-not-import-from-here/microsoftteams/index.d.ts +1 -0
  22. package/internal-do-not-import-from-here/runtime/core/InternalManifestLog.d.ts +3 -1
  23. package/internal-do-not-import-from-here/runtime/core/InternalWebComponentBootstrapper.d.ts +4 -4
  24. package/internal-do-not-import-from-here/runtime/core/LocalHostingService.d.ts +2 -2
  25. package/internal-do-not-import-from-here/runtime/core/ManifestByElementLoader.d.ts +1 -0
  26. package/internal-do-not-import-from-here/runtime/core/ManifestResourceLoader.d.ts +2 -1
  27. package/internal-do-not-import-from-here/runtime/core/PrivateWebComponentBootstrapper.d.ts +7 -7
  28. package/internal-do-not-import-from-here/services/AiSettingsService.d.ts +10 -0
  29. package/internal-do-not-import-from-here/services/AzureAdGroupService.d.ts +5 -0
  30. package/internal-do-not-import-from-here/services/AzureOpenAIService.d.ts +6 -9
  31. package/internal-do-not-import-from-here/services/EnterprisePropertyService.d.ts +1 -0
  32. package/internal-do-not-import-from-here/services/LinkStatusService.d.ts +9 -0
  33. package/internal-do-not-import-from-here/services/LocalizationService.d.ts +4 -9
  34. package/internal-do-not-import-from-here/services/OmniaSearchService.d.ts +13 -0
  35. package/internal-do-not-import-from-here/services/SecurityService.d.ts +3 -2
  36. package/internal-do-not-import-from-here/services/VersionedLayoutService.d.ts +2 -0
  37. package/internal-do-not-import-from-here/services/identities/GroupService.d.ts +3 -3
  38. package/internal-do-not-import-from-here/services/identities/IdentityAuthenticationService.d.ts +8 -0
  39. package/internal-do-not-import-from-here/services/identities/IdentityCreationRequestService.d.ts +11 -0
  40. package/internal-do-not-import-from-here/services/identities/IdentityService.d.ts +3 -1
  41. package/internal-do-not-import-from-here/services/identities/UserIdentityService.d.ts +7 -4
  42. package/internal-do-not-import-from-here/services/identities/UserService.d.ts +8 -3
  43. package/internal-do-not-import-from-here/services/identities/index.d.ts +2 -0
  44. package/internal-do-not-import-from-here/services/index.d.ts +4 -0
  45. package/internal-do-not-import-from-here/services/properties/EnterprisePropertiesProvider.d.ts +3 -18
  46. package/internal-do-not-import-from-here/services/properties/bindings/PropertyBindingService.d.ts +3 -8
  47. package/internal-do-not-import-from-here/services/properties/bindings/bindingProviders/BusinessProfilePropertyBindingProvider.d.ts +9 -0
  48. package/internal-do-not-import-from-here/services/properties/bindings/{providers → bindingProviders}/ExtendedEnterprisePropertyBindingProvider.d.ts +3 -2
  49. package/internal-do-not-import-from-here/services/properties/bindings/{providers → bindingProviders}/IdentityPropertyBindingProvider.d.ts +3 -3
  50. package/internal-do-not-import-from-here/services/properties/bindings/bindingProviders/UserPropertyBindingProvider.d.ts +9 -0
  51. package/internal-do-not-import-from-here/services/properties/bindings/{providers → bindingProviders}/index.d.ts +2 -0
  52. package/internal-do-not-import-from-here/services/properties/bindings/index.d.ts +1 -1
  53. package/internal-do-not-import-from-here/services/properties/datasource/DataSourcePropertiesService.d.ts +13 -4
  54. package/internal-do-not-import-from-here/services/properties/datasource/DataSourcePropertyDefinitionHandler.d.ts +1 -1
  55. package/internal-do-not-import-from-here/services/properties/datasource/DataSourcePropertyProvider.d.ts +7 -7
  56. package/internal-do-not-import-from-here/shared/broadcasting/InternalTopics.d.ts +11 -1
  57. package/internal-do-not-import-from-here/shared/http/Http.d.ts +141 -0
  58. package/internal-do-not-import-from-here/shared/http/index.d.ts +1 -1
  59. package/internal-do-not-import-from-here/shared/models/DynamicState.d.ts +1 -0
  60. package/internal-do-not-import-from-here/shared/models/Equals.js +31 -0
  61. package/internal-do-not-import-from-here/shared/models/Future.d.ts +17 -1
  62. package/internal-do-not-import-from-here/shared/models/Future.js +26 -5
  63. package/internal-do-not-import-from-here/shared/models/Guid.d.ts +2 -1
  64. package/internal-do-not-import-from-here/shared/models/Guid.js +4 -3
  65. package/internal-do-not-import-from-here/shared/models/HttpCommon.d.ts +27 -0
  66. package/internal-do-not-import-from-here/shared/models/HttpCommon.js +2 -0
  67. package/internal-do-not-import-from-here/shared/models/OmniaSharedBootstrapData.d.ts +7 -0
  68. package/internal-do-not-import-from-here/shared/models/Realtime.d.ts +1 -13
  69. package/internal-do-not-import-from-here/shared/models/Realtime.js +1 -22
  70. package/internal-do-not-import-from-here/shared/models/StronglyTypedId.d.ts +3 -0
  71. package/internal-do-not-import-from-here/shared/models/StronglyTypedId.js +2 -0
  72. package/internal-do-not-import-from-here/shared/models/Tokens.d.ts +2 -1
  73. package/internal-do-not-import-from-here/shared/models/WorkerProxyFuncs.d.ts +7 -1
  74. package/internal-do-not-import-from-here/shared/models/WorkerProxyFuncs.js +5 -1
  75. package/internal-do-not-import-from-here/shared/models/hub/ExternalIdentityId.d.ts +2 -0
  76. package/internal-do-not-import-from-here/shared/models/hub/ExternalIdentityId.js +2 -0
  77. package/internal-do-not-import-from-here/shared/models/hub/activities/Activity.d.ts +58 -0
  78. package/internal-do-not-import-from-here/shared/models/hub/activities/Activity.js +7 -0
  79. package/internal-do-not-import-from-here/shared/models/hub/activities/ActivityChannel.d.ts +7 -0
  80. package/internal-do-not-import-from-here/shared/models/hub/activities/ActivityChannel.js +5 -0
  81. package/internal-do-not-import-from-here/shared/models/hub/activities/ActivityDefinition.d.ts +14 -0
  82. package/internal-do-not-import-from-here/shared/models/hub/activities/ActivityDefinition.js +15 -0
  83. package/internal-do-not-import-from-here/shared/models/hub/activities/ActivityFeed.d.ts +27 -0
  84. package/internal-do-not-import-from-here/shared/models/hub/activities/ActivityFeed.js +2 -0
  85. package/internal-do-not-import-from-here/shared/models/hub/activities/ActivityRenderer.d.ts +14 -0
  86. package/internal-do-not-import-from-here/shared/models/hub/activities/ActivityRenderer.js +5 -0
  87. package/internal-do-not-import-from-here/shared/models/hub/activities/ActivitySender.d.ts +15 -0
  88. package/internal-do-not-import-from-here/shared/models/hub/activities/ActivitySender.js +5 -0
  89. package/internal-do-not-import-from-here/shared/models/hub/activities/IdentityActivity.d.ts +31 -0
  90. package/internal-do-not-import-from-here/shared/models/hub/activities/IdentityActivity.js +37 -0
  91. package/internal-do-not-import-from-here/shared/models/hub/activities/index.d.ts +7 -0
  92. package/internal-do-not-import-from-here/shared/models/hub/activities/index.js +10 -0
  93. package/internal-do-not-import-from-here/shared/models/hub/index.d.ts +3 -0
  94. package/internal-do-not-import-from-here/shared/models/hub/index.js +6 -0
  95. package/internal-do-not-import-from-here/shared/models/hub/social/HubComment.d.ts +10 -0
  96. package/internal-do-not-import-from-here/shared/models/hub/social/HubComment.js +2 -0
  97. package/internal-do-not-import-from-here/shared/models/hub/social/HubReaction.d.ts +5 -0
  98. package/internal-do-not-import-from-here/shared/models/hub/social/HubReaction.js +2 -0
  99. package/internal-do-not-import-from-here/shared/models/hub/social/index.d.ts +2 -0
  100. package/internal-do-not-import-from-here/shared/models/hub/social/index.js +5 -0
  101. package/internal-do-not-import-from-here/shared/models/index.d.ts +4 -1
  102. package/internal-do-not-import-from-here/shared/models/index.js +4 -1
  103. package/internal-do-not-import-from-here/shared/models/theming/BlueprintDefinition.d.ts +29 -17
  104. package/internal-do-not-import-from-here/shared/models/theming/BlueprintDefinition.js +3 -1
  105. package/internal-do-not-import-from-here/shared/models/theming/SharedBlueprintMethods.d.ts +2 -0
  106. package/internal-do-not-import-from-here/shared/models/theming/SharedBlueprintMethods.js +37 -0
  107. package/internal-do-not-import-from-here/shared/models/theming/SharedColorMethods.d.ts +1 -0
  108. package/internal-do-not-import-from-here/shared/models/theming/SharedColorMethods.js +45 -0
  109. package/internal-do-not-import-from-here/shared/models/theming/SpacingSetting.d.ts +21 -4
  110. package/internal-do-not-import-from-here/shared/models/theming/SpacingSetting.js +9 -0
  111. package/internal-do-not-import-from-here/shared/models/theming/ThemeDefinitionV2.d.ts +7 -3
  112. package/internal-do-not-import-from-here/shared/models/theming/TypographyDefinition.d.ts +32 -12
  113. package/internal-do-not-import-from-here/shared/models/theming/TypographyDefinition.js +11 -6
  114. package/internal-do-not-import-from-here/shared/models/theming/UseThemeMethods.d.ts +7 -7
  115. package/internal-do-not-import-from-here/shared/models/theming/UseThemeMethods.js +26 -34
  116. package/internal-do-not-import-from-here/shared/models/theming/index.d.ts +2 -0
  117. package/internal-do-not-import-from-here/shared/models/theming/index.js +2 -0
  118. package/internal-do-not-import-from-here/shared/services/ActivityService.d.ts +15 -0
  119. package/internal-do-not-import-from-here/shared/services/DefineService.d.ts +11 -0
  120. package/internal-do-not-import-from-here/shared/services/RealtimeService.d.ts +7 -9
  121. package/internal-do-not-import-from-here/shared/services/SocialSourceService.d.ts +10 -0
  122. package/internal-do-not-import-from-here/shared/services/index.d.ts +2 -0
  123. package/internal-do-not-import-from-here/spfx/components/OmniaWPContainer.d.ts +1 -1
  124. package/internal-do-not-import-from-here/spfx/components/OmniaWPContainerSettings.d.ts +1 -1
  125. package/internal-do-not-import-from-here/stores/AiSettingsStore.d.ts +36 -0
  126. package/internal-do-not-import-from-here/stores/AppNamingPolicyStore.d.ts +1 -1
  127. package/internal-do-not-import-from-here/stores/AzureAdUserStore.d.ts +3 -0
  128. package/internal-do-not-import-from-here/stores/DefineStore.d.ts +36 -36
  129. package/internal-do-not-import-from-here/stores/EnterprisePropertyStore.d.ts +5 -1
  130. package/internal-do-not-import-from-here/stores/FeatureStore.d.ts +1 -1
  131. package/internal-do-not-import-from-here/stores/GroupIdentityStore.d.ts +2 -0
  132. package/internal-do-not-import-from-here/stores/IdentityStore.d.ts +23 -5
  133. package/internal-do-not-import-from-here/stores/IdentitySyncProviderStore.d.ts +1 -1
  134. package/internal-do-not-import-from-here/stores/LinkReferencesStore.d.ts +23 -0
  135. package/internal-do-not-import-from-here/stores/LocalizationStore.d.ts +28 -14
  136. package/internal-do-not-import-from-here/stores/MediaPickerStore.d.ts +3 -2
  137. package/internal-do-not-import-from-here/stores/ProfileCardStore.d.ts +7 -3
  138. package/internal-do-not-import-from-here/stores/Store.d.ts +4 -5
  139. package/internal-do-not-import-from-here/stores/TimeZoneStore.d.ts +3 -6
  140. package/internal-do-not-import-from-here/stores/UserIdentityStore.d.ts +5 -2
  141. package/internal-do-not-import-from-here/stores/VersionedLayoutStore.d.ts +9 -0
  142. package/internal-do-not-import-from-here/stores/index.d.ts +3 -0
  143. package/internal-do-not-import-from-here/stores/oxide/ComponentHostStore.d.ts +71 -0
  144. package/internal-do-not-import-from-here/stores/oxide/ComponentSharedSettingsStore.d.ts +24 -0
  145. package/internal-do-not-import-from-here/stores/oxide/index.d.ts +2 -0
  146. package/internal-do-not-import-from-here/ux/ComponentTypings.d.ts +43 -4
  147. package/internal-do-not-import-from-here/ux/DefineVueTypings.d.ts +3 -4
  148. package/internal-do-not-import-from-here/ux/Exposes.d.ts +3 -7
  149. package/internal-do-not-import-from-here/ux/{InternalDefineWebComponent.d.ts → InternalDefineComponent.d.ts} +62 -55
  150. package/internal-do-not-import-from-here/ux/OmniaTheming.d.ts +1 -2
  151. package/internal-do-not-import-from-here/ux/TokenBasedRouter.d.ts +1 -0
  152. package/internal-do-not-import-from-here/ux/UxCore.d.ts +1 -3
  153. package/internal-do-not-import-from-here/ux/UxModels.d.ts +193 -15
  154. package/internal-do-not-import-from-here/ux/VueComponentBase.d.ts +13 -17
  155. package/internal-do-not-import-from-here/ux/actionhandler/ActionHandler.d.ts +2 -2
  156. package/internal-do-not-import-from-here/ux/admin/chrome/AdminChrome.css.d.ts +8 -0
  157. package/internal-do-not-import-from-here/ux/admin/queryableproperties/IQueryablePropertiesJourney.d.ts +4 -13
  158. package/internal-do-not-import-from-here/ux/admin/queryableproperties/QueryablePropertiesAddBlade.d.ts +139 -34
  159. package/internal-do-not-import-from-here/ux/admin/queryableproperties/QueryablePropertiesHomeBlade.d.ts +176 -38
  160. package/internal-do-not-import-from-here/ux/admin/queryableproperties/QueryablePropertiesInfoBlade.d.ts +124 -0
  161. package/internal-do-not-import-from-here/ux/admin/queryableproperties/QueryablePropertiesJourney.d.ts +176 -19
  162. package/internal-do-not-import-from-here/ux/admin/queryableproperties/QueryablePropertiesJourneyConstants.d.ts +4 -6
  163. package/internal-do-not-import-from-here/ux/admin/store/AdminStore.d.ts +44 -1
  164. package/internal-do-not-import-from-here/ux/alignmentpicker/AlignmentPicker.d.ts +158 -0
  165. package/internal-do-not-import-from-here/ux/alignmentpicker/docs/ExampleComponents.d.ts +1 -0
  166. package/internal-do-not-import-from-here/ux/alignmentpicker/docs/index.d.ts +1 -0
  167. package/internal-do-not-import-from-here/ux/app/AppInstanceToken.d.ts +4 -0
  168. package/internal-do-not-import-from-here/ux/app/AppInstanceTokenProvider.d.ts +1 -4
  169. package/internal-do-not-import-from-here/ux/app/AppPropertiesProvider.d.ts +17 -14
  170. package/internal-do-not-import-from-here/ux/app/appinstance/renderer/AppInstanceRollup.d.ts +2 -2
  171. package/internal-do-not-import-from-here/ux/app/appinstance/renderer/AppInstanceRollupRenderer.d.ts +92 -0
  172. package/internal-do-not-import-from-here/ux/app/appinstance/renderer/metric/MetricDetailsDialogRenderer.d.ts +106 -0
  173. package/internal-do-not-import-from-here/ux/{compositiontests/CompositionBlockFuture.d.ts → app/appinstance/renderer/metric/MetricRenderer.d.ts} +5 -10
  174. package/internal-do-not-import-from-here/ux/app/appinstance/settings/AppInstanceRollupSettings.d.ts +1 -0
  175. package/internal-do-not-import-from-here/ux/app/appinstance/settings/components/DisplayTab.d.ts +1 -1
  176. package/internal-do-not-import-from-here/ux/app/appinstance/settings/components/MetricTab.d.ts +111 -0
  177. package/internal-do-not-import-from-here/ux/app/appinstance/settings/components/QueryTab.d.ts +2 -0
  178. package/internal-do-not-import-from-here/ux/app/appinstance/shared/AppInstanceRollupRenderingInstance.d.ts +19 -0
  179. package/internal-do-not-import-from-here/ux/app/index.d.ts +1 -0
  180. package/internal-do-not-import-from-here/ux/app/loc/localize.d.ts +1 -0
  181. package/internal-do-not-import-from-here/ux/app/management/core/loc.d.ts +1 -1
  182. package/internal-do-not-import-from-here/ux/app/management/tabs/instance/EditAliasDialog.d.ts +1 -1
  183. package/internal-do-not-import-from-here/ux/app/management/tabs/instance/EditPermissionDialog.d.ts +1 -1
  184. package/internal-do-not-import-from-here/ux/app/management/tabs/instance/Features.d.ts +1 -1
  185. package/internal-do-not-import-from-here/ux/app/management/tabs/namingpolicies/EditNamingPolicies.d.ts +5 -5
  186. package/internal-do-not-import-from-here/ux/app/management/tabs/namingpolicies/PreviewPolicyNaming.d.ts +1 -1
  187. package/internal-do-not-import-from-here/ux/app/management/tabs/shared/addbutton/AddButton.d.ts +1 -1
  188. package/internal-do-not-import-from-here/ux/app/management/tabs/templates/Template.d.ts +2 -2
  189. package/internal-do-not-import-from-here/ux/app/management/tabs/templates/TemplateDetail.d.ts +1 -1
  190. package/internal-do-not-import-from-here/ux/app/management/tabs/templates/tabs/CustomSteps.d.ts +3 -3
  191. package/internal-do-not-import-from-here/ux/app/management/tabs/templates/tabs/Features.d.ts +3 -3
  192. package/internal-do-not-import-from-here/ux/app/management/tabs/templates/tabs/GeneralTab.d.ts +3 -3
  193. package/internal-do-not-import-from-here/ux/app/management/tabs/templates/tabs/PoliciesTab.d.ts +125 -29
  194. package/internal-do-not-import-from-here/ux/app/management/tabs/templates/tabs/PropertiesTab.d.ts +3 -3
  195. package/internal-do-not-import-from-here/ux/app/management/tabs/templates/tabs/PropertyRow.d.ts +1 -1
  196. package/internal-do-not-import-from-here/ux/appprovisioning/AppInstanceComponentProps.d.ts +0 -2
  197. package/internal-do-not-import-from-here/ux/appprovisioning/IAppProvisioningValidatorComponent.d.ts +0 -2
  198. package/internal-do-not-import-from-here/ux/appprovisioning/appimageinput/AppImageInput.d.ts +141 -25
  199. package/internal-do-not-import-from-here/ux/appprovisioning/appimageinput/IAppImageInput.d.ts +0 -17
  200. package/internal-do-not-import-from-here/ux/appprovisioning/appimageinput/index.d.ts +0 -1
  201. package/internal-do-not-import-from-here/ux/appprovisioning/appinstanceeditingjourney/EditEnterprisePropertiesBlade.d.ts +0 -2
  202. package/internal-do-not-import-from-here/ux/appprovisioning/appinstanceeditingjourney/EditProperiesBlade.d.ts +0 -2
  203. package/internal-do-not-import-from-here/ux/appprovisioning/appinstancepermissionblade/AppInstancePermissionBlade.d.ts +1 -1
  204. package/internal-do-not-import-from-here/ux/appprovisioning/appinstanceroutepathblade/AppInstanceRoutePathBlade.d.ts +0 -1
  205. package/internal-do-not-import-from-here/ux/appprovisioning/apppropertiesinput/AppPropertiesInput.d.ts +158 -12
  206. package/internal-do-not-import-from-here/ux/appprovisioning/apppropertiesinput/IAppPropertiesInput.d.ts +0 -18
  207. package/internal-do-not-import-from-here/ux/appprovisioning/apppropertiesinput/index.d.ts +0 -1
  208. package/internal-do-not-import-from-here/ux/appprovisioning/apppropertynamingpolicyinput/IAppPropertyNamingPolicyInput.d.ts +0 -2
  209. package/internal-do-not-import-from-here/ux/appprovisioning/appprovisioningwizard/AppProvisioningWizard.d.ts +0 -1
  210. package/internal-do-not-import-from-here/ux/appprovisioning/approuteinput/AppRouteInput.d.ts +0 -2
  211. package/internal-do-not-import-from-here/ux/appprovisioning/approuteinput/IAppRouteInput.d.ts +0 -2
  212. package/internal-do-not-import-from-here/ux/appprovisioning/apptitledescription/AppDescriptionInput.d.ts +0 -2
  213. package/internal-do-not-import-from-here/ux/appprovisioning/apptitledescription/IAppDescriptionInput.d.ts +0 -2
  214. package/internal-do-not-import-from-here/ux/appprovisioning/apptitleinput/AppTitleInput.d.ts +0 -2
  215. package/internal-do-not-import-from-here/ux/appprovisioning/apptitleinput/IAppTitleInput.d.ts +0 -2
  216. package/internal-do-not-import-from-here/ux/appprovisioning/components/AppInstanceCompletedStepVueComponent.d.ts +1 -2
  217. package/internal-do-not-import-from-here/ux/appprovisioning/components/AppInstanceEnterprisePropertiesVueComponent.d.ts +178 -55
  218. package/internal-do-not-import-from-here/ux/appprovisioning/components/AppInstanceInformationVueComponent.d.ts +2 -2
  219. package/internal-do-not-import-from-here/ux/appprovisioning/components/AppInstancePermissionsVueComponent.d.ts +2 -2
  220. package/internal-do-not-import-from-here/ux/appprovisioning/components/AppProvisioningComponentBase.d.ts +3 -3
  221. package/internal-do-not-import-from-here/ux/appprovisioning/components/AppProvisioningStepComponentBase.d.ts +1 -3
  222. package/internal-do-not-import-from-here/ux/appprovisioning/components/index.d.ts +0 -1
  223. package/internal-do-not-import-from-here/ux/appprovisioning/index.d.ts +0 -2
  224. package/internal-do-not-import-from-here/ux/authsetup/AuthSetup.css.d.ts +1 -1
  225. package/internal-do-not-import-from-here/ux/blueprintpicker/BlueprintPicker.d.ts +434 -0
  226. package/internal-do-not-import-from-here/ux/blueprintpicker/docs/ExampleComponents.d.ts +1 -0
  227. package/internal-do-not-import-from-here/{console/components/MessageOverlay.d.ts → ux/blueprintpicker/docs/SampleComponent.d.ts} +0 -1
  228. package/internal-do-not-import-from-here/ux/blueprintpicker/docs/index.d.ts +1 -0
  229. package/internal-do-not-import-from-here/ux/button/Button.d.ts +1 -0
  230. package/internal-do-not-import-from-here/ux/button/ButtonPresets.d.ts +2 -0
  231. package/internal-do-not-import-from-here/ux/button/IButton.d.ts +1 -1
  232. package/internal-do-not-import-from-here/ux/chrome/ChromeRenderer.d.ts +91 -0
  233. package/internal-do-not-import-from-here/ux/colorpicker/ColorPicker.d.ts +1 -0
  234. package/internal-do-not-import-from-here/ux/colorpicker/IColorPicker.d.ts +1 -1
  235. package/internal-do-not-import-from-here/ux/colorschemadefinitionpicker/ColorSchemaDefinitionPicker.d.ts +0 -0
  236. package/internal-do-not-import-from-here/ux/{theming-v2/colorschemapicker/ColorSchemaPicker.d.ts → colorschemapicker/ColorSchemaDefinitionPicker.d.ts} +135 -127
  237. package/internal-do-not-import-from-here/ux/colorschemapicker/ColorSchemaEditor.css.d.ts +5 -0
  238. package/internal-do-not-import-from-here/ux/colorschemapicker/ColorSchemaEditor.d.ts +440 -0
  239. package/internal-do-not-import-from-here/ux/colorschemapicker/ColorSchemaPicker.css.d.ts +1 -0
  240. package/internal-do-not-import-from-here/ux/colorschemapicker/ColorSchemaPicker.d.ts +526 -0
  241. package/internal-do-not-import-from-here/ux/{theming-v2/colorschemapicker/ColorSchemaPicker.css.d.ts → colorschemapicker/ColorSchemaViewer.css.d.ts} +2 -2
  242. package/internal-do-not-import-from-here/ux/colorschemapicker/ColorSchemaViewer.d.ts +511 -0
  243. package/internal-do-not-import-from-here/ux/colorschemapicker/docs/ExampleComponents.d.ts +1 -0
  244. package/internal-do-not-import-from-here/ux/colorschemapicker/docs/SampleComponent.d.ts +91 -0
  245. package/internal-do-not-import-from-here/ux/colorschemapicker/docs/index.d.ts +1 -0
  246. package/internal-do-not-import-from-here/ux/colorsettingspicker/ColorSettingsPicker.css.d.ts +6 -0
  247. package/internal-do-not-import-from-here/ux/{theming-v2/colorschemadefinitionpicker/ColorSchemaDefinitionPicker.d.ts → colorsettingspicker/ColorSettingsPicker.d.ts} +123 -133
  248. package/internal-do-not-import-from-here/ux/colorsettingspicker/docs/ExampleComponents.d.ts +1 -0
  249. package/internal-do-not-import-from-here/ux/colorsettingspicker/docs/SampleComponent.d.ts +91 -0
  250. package/internal-do-not-import-from-here/ux/colorsettingspicker/docs/index.d.ts +1 -0
  251. package/internal-do-not-import-from-here/ux/confirmdialog/ConfirmDialog.d.ts +326 -24
  252. package/internal-do-not-import-from-here/ux/confirmdialog/IConfirmDialog.d.ts +0 -12
  253. package/internal-do-not-import-from-here/ux/confirmdialog/IVueConfirmDialog.d.ts +1 -0
  254. package/internal-do-not-import-from-here/ux/datetimepicker/DateTimePicker.d.ts +623 -52
  255. package/internal-do-not-import-from-here/ux/datetimepicker/IDateTimePicker.d.ts +0 -49
  256. package/internal-do-not-import-from-here/ux/datetimezonepicker/DateTimeZonePicker.d.ts +162 -64
  257. package/internal-do-not-import-from-here/ux/datetimezonepicker/docs/DateTimeZonePickerExample.d.ts +91 -0
  258. package/internal-do-not-import-from-here/ux/datetimezonepicker/docs/ExampleComponents.d.ts +1 -0
  259. package/internal-do-not-import-from-here/ux/datetimezonepicker/docs/index.d.ts +1 -0
  260. package/internal-do-not-import-from-here/ux/datetimezonerenderer/DateTimeZoneRenderer.d.ts +99 -22
  261. package/internal-do-not-import-from-here/ux/datetimezonerenderer/IDateTimeZoneRenderer.d.ts +1 -0
  262. package/internal-do-not-import-from-here/ux/depricated-mediapicker/GalleryPanel.css.d.ts +5 -0
  263. package/internal-do-not-import-from-here/ux/depricated-mediapicker/GalleryPanels.d.ts +35 -0
  264. package/internal-do-not-import-from-here/ux/{mediapicker → depricated-mediapicker}/IMediaPicker.d.ts +7 -4
  265. package/internal-do-not-import-from-here/ux/{mediapicker → depricated-mediapicker}/MediaPicker.css.d.ts +5 -3
  266. package/internal-do-not-import-from-here/ux/{mediapicker → depricated-mediapicker}/MediaPicker.d.ts +6 -3
  267. package/internal-do-not-import-from-here/ux/{mediapicker → depricated-mediapicker}/MediaPickerComponentProps.d.ts +4 -0
  268. package/internal-do-not-import-from-here/ux/depricated-mediapicker/components/ImageSelector.css.d.ts +6 -0
  269. package/internal-do-not-import-from-here/ux/depricated-mediapicker/components/ImageSelector.d.ts +104 -0
  270. package/internal-do-not-import-from-here/ux/depricated-mediapicker/core/MediaPickerImageHandler.d.ts +33 -0
  271. package/internal-do-not-import-from-here/ux/depricated-mediapicker/core/Utils.d.ts +5 -0
  272. package/internal-do-not-import-from-here/ux/{mediapicker → depricated-mediapicker}/core/index.d.ts +1 -0
  273. package/internal-do-not-import-from-here/ux/dialog/Dialog.d.ts +18 -18
  274. package/internal-do-not-import-from-here/ux/directives/IframeResizer.d.ts +1 -0
  275. package/internal-do-not-import-from-here/ux/directives/index.d.ts +1 -0
  276. package/internal-do-not-import-from-here/ux/docs/Docs.d.ts +118 -48
  277. package/internal-do-not-import-from-here/ux/docs/chrome/SampleViewer.d.ts +3 -3
  278. package/internal-do-not-import-from-here/ux/docs/chrome/VelcronSampleViewer.css.d.ts +9 -0
  279. package/internal-do-not-import-from-here/ux/docs/chrome/VelcronSampleViewer.d.ts +217 -0
  280. package/internal-do-not-import-from-here/ux/docs/imports.d.ts +1 -1
  281. package/internal-do-not-import-from-here/ux/docs/omfx/components/Properties.md.d.ts +1 -0
  282. package/internal-do-not-import-from-here/ux/docs/omfx/components/Slots.md.d.ts +1 -0
  283. package/internal-do-not-import-from-here/ux/docs/omfx/components/VModel.md.d.ts +1 -0
  284. package/internal-do-not-import-from-here/ux/docs/omfx/components/docs/Emits.d.ts +1 -0
  285. package/internal-do-not-import-from-here/ux/{compositiontests/TestInjectComponent.d.ts → docs/omfx/components/docs/Properties.d.ts} +4 -8
  286. package/internal-do-not-import-from-here/ux/docs/omfx/components/docs/Slots.d.ts +1 -0
  287. package/internal-do-not-import-from-here/ux/docs/omfx/components/docs/VModel.d.ts +422 -0
  288. package/internal-do-not-import-from-here/ux/docs/omfx/components/index.d.ts +5 -0
  289. package/internal-do-not-import-from-here/ux/docs/omfx/index.d.ts +5 -0
  290. package/internal-do-not-import-from-here/ux/docs/omfx/services/Http.md.d.ts +1 -0
  291. package/internal-do-not-import-from-here/ux/docs/omfx/services/Introduction.md.d.ts +1 -0
  292. package/internal-do-not-import-from-here/ux/docs/omfx/services/Use.md.d.ts +1 -0
  293. package/internal-do-not-import-from-here/ux/docs/omfx/services/docs/Service.d.ts +5 -0
  294. package/internal-do-not-import-from-here/ux/docs/omfx/services/index.d.ts +3 -0
  295. package/internal-do-not-import-from-here/ux/docs/omfx/stores/Actions.md.d.ts +1 -0
  296. package/internal-do-not-import-from-here/ux/docs/omfx/stores/Introduction.d.ts +1 -0
  297. package/internal-do-not-import-from-here/ux/docs/omfx/stores/State.md.d.ts +1 -0
  298. package/internal-do-not-import-from-here/ux/docs/omfx/stores/Use.md.d.ts +1 -0
  299. package/internal-do-not-import-from-here/ux/docs/omfx/stores/docs/Store.d.ts +29 -0
  300. package/internal-do-not-import-from-here/ux/docs/omfx/stores/index.d.ts +4 -0
  301. package/internal-do-not-import-from-here/ux/docs/omfx/theming/Introduction.d.ts +1 -0
  302. package/internal-do-not-import-from-here/ux/docs/omfx/theming/Styling.d.ts +1 -0
  303. package/internal-do-not-import-from-here/ux/docs/omfx/theming/Themestyling.d.ts +1 -0
  304. package/internal-do-not-import-from-here/ux/docs/omfx/theming/index.d.ts +3 -0
  305. package/internal-do-not-import-from-here/ux/docs/omfx/use/Introduction.d.ts +1 -0
  306. package/internal-do-not-import-from-here/ux/docs/omfx/use/UseBlockInstance.md.d.ts +1 -0
  307. package/internal-do-not-import-from-here/ux/docs/omfx/use/docs/UseBlockInstance.d.ts +1 -0
  308. package/internal-do-not-import-from-here/ux/docs/omfx/use/index.d.ts +2 -0
  309. package/internal-do-not-import-from-here/ux/docs/services/DocsService.d.ts +2 -2
  310. package/internal-do-not-import-from-here/ux/documenticon/DocumentIcon.d.ts +1 -1
  311. package/internal-do-not-import-from-here/ux/editorchrome/action_toolbar/ActionToolbar.d.ts +226 -26
  312. package/internal-do-not-import-from-here/ux/editorchrome/action_toolbar/DisplaySettingsToolbar.d.ts +196 -17
  313. package/internal-do-not-import-from-here/ux/editorchrome/action_toolbar/IActionToolbar.d.ts +0 -24
  314. package/internal-do-not-import-from-here/ux/editorchrome/app_bar/AppBar.css.d.ts +0 -6
  315. package/internal-do-not-import-from-here/ux/editorchrome/app_bar/AppBar.d.ts +0 -14
  316. package/internal-do-not-import-from-here/ux/editorchrome/chrome/EditorChrome.css.d.ts +3 -19
  317. package/internal-do-not-import-from-here/ux/editorchrome/chrome/EditorChrome.d.ts +223 -36
  318. package/internal-do-not-import-from-here/ux/editorchrome/index.d.ts +0 -1
  319. package/internal-do-not-import-from-here/ux/editorchrome/panel_tabs/TabsPanel.css.d.ts +3 -0
  320. package/internal-do-not-import-from-here/ux/editorchrome/panel_tabs/TabsPanel.d.ts +140 -21
  321. package/internal-do-not-import-from-here/ux/editorchrome/stores/EditorChromeStore.d.ts +2 -0
  322. package/internal-do-not-import-from-here/ux/enterpriseglossary/componentbase/EnterpriseGlossaryTermComponentBase.d.ts +1 -1
  323. package/internal-do-not-import-from-here/ux/enterpriseproperties/display/datafield/DataFieldDisplay.d.ts +178 -18
  324. package/internal-do-not-import-from-here/ux/enterpriseproperties/display/datafield/IDataFieldDisplay.d.ts +0 -12
  325. package/internal-do-not-import-from-here/ux/enterpriseproperties/display/index.d.ts +0 -1
  326. package/internal-do-not-import-from-here/ux/enterpriseproperties/display/personfield/IPersonFieldDisplay.d.ts +0 -17
  327. package/internal-do-not-import-from-here/ux/enterpriseproperties/display/personfield/PersonFieldDisplay.d.ts +197 -28
  328. package/internal-do-not-import-from-here/ux/enterpriseproperties/display/personfield/index.d.ts +0 -1
  329. package/internal-do-not-import-from-here/ux/enterpriseproperties/edit/datafield/DataFieldEdit.d.ts +192 -19
  330. package/internal-do-not-import-from-here/ux/enterpriseproperties/edit/datafield/IDataFieldEdit.d.ts +0 -12
  331. package/internal-do-not-import-from-here/ux/enterpriseproperties/edit/richtextfield/RichTextFieldEdit.d.ts +1 -1
  332. package/internal-do-not-import-from-here/ux/enterpriseproperties/picker/EnterprisePropertyPicker.d.ts +275 -78
  333. package/internal-do-not-import-from-here/ux/enterpriseproperties/picker/IEnterprisePropertyPicker.d.ts +1 -12
  334. package/internal-do-not-import-from-here/ux/{theming-v2/blueprintpicker/BlueprintPicker.d.ts → enterpriseproperties/renderers/EnterprisePropertyConfiguration.d.ts} +121 -119
  335. package/internal-do-not-import-from-here/ux/enterpriseproperties/renderers/EnterprisePropertyValue.d.ts +698 -0
  336. package/internal-do-not-import-from-here/ux/enterpriseproperties/settings/extendedproperty/ExtendedPropertySettings.d.ts +5 -5
  337. package/internal-do-not-import-from-here/ux/enterpriseproperties/settings/registration/RegistrationEnterprisePropertyToPropertySettingMap.d.ts +1 -0
  338. package/internal-do-not-import-from-here/ux/enterpriseproperties/valuedefinition/datafield/DataFieldValueDefinition.d.ts +1 -1
  339. package/internal-do-not-import-from-here/ux/enterprisepropertysets/picker/EnterprisePropertySetPicker.d.ts +1 -1
  340. package/internal-do-not-import-from-here/ux/errormessage/ErrorMessage.d.ts +1 -1
  341. package/internal-do-not-import-from-here/ux/features/FeatureComponentProps.d.ts +0 -2
  342. package/internal-do-not-import-from-here/ux/features/FeaturesJourney.css.d.ts +0 -1
  343. package/internal-do-not-import-from-here/ux/features/FeaturesJourneyTenant.d.ts +91 -6
  344. package/internal-do-not-import-from-here/ux/features/blades/FeatureHomeBlade.d.ts +2 -2
  345. package/internal-do-not-import-from-here/ux/features/loc/localize.d.ts +2 -1
  346. package/internal-do-not-import-from-here/ux/features/stores/FeatureJourneyStore.d.ts +51 -53
  347. package/internal-do-not-import-from-here/ux/fileuploader/FileUploader.d.ts +265 -75
  348. package/internal-do-not-import-from-here/ux/fileuploader/IFileUploader.d.ts +0 -14
  349. package/internal-do-not-import-from-here/ux/fileuploader/loc/localize.d.ts +4 -0
  350. package/internal-do-not-import-from-here/ux/filterengine/FilterEngineRenderer.d.ts +8 -3
  351. package/internal-do-not-import-from-here/ux/filterengine/Helper.d.ts +1 -2
  352. package/internal-do-not-import-from-here/ux/filterengine/components/renderer/PropertyDropdownRenderer.d.ts +5 -5
  353. package/internal-do-not-import-from-here/ux/filterengine/components/renderer/date/DateTimePeriodSlider.d.ts +110 -0
  354. package/internal-do-not-import-from-here/ux/filterengine/components/renderer/person/PersonPropertyChipItem.d.ts +14 -0
  355. package/internal-do-not-import-from-here/ux/filterengine/components/renderer/person/PersonPropertyItemRenderer.d.ts +6 -6
  356. package/internal-do-not-import-from-here/ux/filterengine/components/renderer/person/PersonPropertyRenderer.d.ts +6 -0
  357. package/internal-do-not-import-from-here/ux/filterengine/components/renderer/tags/TagsPropertyChips.d.ts +101 -0
  358. package/internal-do-not-import-from-here/ux/filterengine/components/renderer/text/TextPropertyRefinementList.d.ts +115 -0
  359. package/internal-do-not-import-from-here/ux/filterengine/components/renderer/text/TextPropertyRefinementSelection.d.ts +122 -0
  360. package/internal-do-not-import-from-here/ux/filterengine/components/settings/PropertyList.d.ts +2 -2
  361. package/internal-do-not-import-from-here/ux/filterengine/components/settings/boolean/BooleanPropertyDefaultValueInput.d.ts +1 -1
  362. package/internal-do-not-import-from-here/ux/filterengine/components/settings/boolean/BooleanPropertySettings.d.ts +3 -3
  363. package/internal-do-not-import-from-here/ux/filterengine/components/settings/date/DatePropertyDefaultValueInput.d.ts +1 -1
  364. package/internal-do-not-import-from-here/ux/filterengine/components/settings/date/DatePropertySettings.d.ts +3 -3
  365. package/internal-do-not-import-from-here/ux/filterengine/components/settings/number/NumberPropertyDefaultValueInput.d.ts +1 -1
  366. package/internal-do-not-import-from-here/ux/filterengine/components/settings/number/NumberPropertySettings.d.ts +3 -3
  367. package/internal-do-not-import-from-here/ux/filterengine/components/settings/person/PersonPropertyDefaultValueInput.d.ts +99 -31
  368. package/internal-do-not-import-from-here/ux/filterengine/components/settings/person/PersonPropertySettings.d.ts +3 -3
  369. package/internal-do-not-import-from-here/ux/filterengine/components/settings/tags/TagsPropertyDefaultValueInput.d.ts +1 -1
  370. package/internal-do-not-import-from-here/ux/filterengine/components/settings/tags/TagsPropertySettings.d.ts +3 -3
  371. package/internal-do-not-import-from-here/ux/filterengine/components/settings/text/TextPropertyDefaultValueInput.d.ts +1 -1
  372. package/internal-do-not-import-from-here/ux/filterengine/components/settings/text/TextPropertySettings.d.ts +3 -3
  373. package/internal-do-not-import-from-here/ux/filterengine/handler/BooleanFilterEngineHandler.d.ts +1 -1
  374. package/internal-do-not-import-from-here/ux/filterengine/handler/DateFilterEngineHandler.d.ts +1 -1
  375. package/internal-do-not-import-from-here/ux/filterengine/handler/FilterEngineHandler.d.ts +18 -8
  376. package/internal-do-not-import-from-here/ux/filterengine/handler/FilterEngineRouter.d.ts +4 -1
  377. package/internal-do-not-import-from-here/ux/filterengine/handler/NumberFilterEngineHandler.d.ts +1 -1
  378. package/internal-do-not-import-from-here/ux/filterengine/handler/PersonFilterEngineHandler.d.ts +1 -1
  379. package/internal-do-not-import-from-here/ux/filterengine/handler/TagsFilterEngineHandler.d.ts +1 -1
  380. package/internal-do-not-import-from-here/ux/filterengine/handler/TextFilterEngineHandler.d.ts +10 -6
  381. package/internal-do-not-import-from-here/ux/filterengine/handler/index.d.ts +1 -0
  382. package/internal-do-not-import-from-here/ux/filterengine/shared/date/DateTimeFilterEngineHelper.d.ts +11 -0
  383. package/internal-do-not-import-from-here/ux/filterengine/shared/index.d.ts +1 -0
  384. package/internal-do-not-import-from-here/ux/filterpicker/FilterPicker.css.d.ts +11 -0
  385. package/internal-do-not-import-from-here/ux/filterpicker/FilterPicker.d.ts +296 -0
  386. package/internal-do-not-import-from-here/ux/filterpicker/docs/ExampleComponents.d.ts +1 -0
  387. package/internal-do-not-import-from-here/ux/filterpicker/docs/SampleComponent.d.ts +91 -0
  388. package/internal-do-not-import-from-here/ux/filterpicker/docs/index.d.ts +1 -0
  389. package/internal-do-not-import-from-here/ux/grecaptcha/GRecaptcha.d.ts +129 -0
  390. package/internal-do-not-import-from-here/ux/heading/Heading.d.ts +1 -1
  391. package/internal-do-not-import-from-here/ux/helptext/HelpText.d.ts +126 -11
  392. package/internal-do-not-import-from-here/ux/html/HtmlRenderer.d.ts +97 -0
  393. package/internal-do-not-import-from-here/ux/hub/chat/HubChat.css.d.ts +4 -0
  394. package/internal-do-not-import-from-here/ux/hub/chat/HubChat.d.ts +104 -0
  395. package/internal-do-not-import-from-here/ux/hub/feed/HubFeed.css.d.ts +6 -0
  396. package/internal-do-not-import-from-here/ux/hub/feed/HubFeed.d.ts +110 -0
  397. package/internal-do-not-import-from-here/ux/hub/feed/HubFeedChrome.css.d.ts +6 -0
  398. package/internal-do-not-import-from-here/ux/hub/feed/HubFeedChrome.d.ts +91 -0
  399. package/internal-do-not-import-from-here/ux/hub/feed/HubFeedSettings.css.d.ts +6 -0
  400. package/internal-do-not-import-from-here/ux/hub/feed/HubFeedSettings.d.ts +94 -0
  401. package/internal-do-not-import-from-here/ux/hub/feed/components/FeedItem.css.d.ts +3 -0
  402. package/internal-do-not-import-from-here/ux/hub/feed/components/FeedItem.d.ts +110 -0
  403. package/internal-do-not-import-from-here/ux/hub/feed/components/Header.d.ts +110 -0
  404. package/internal-do-not-import-from-here/ux/hub/feed/components/SenderItem.d.ts +143 -0
  405. package/internal-do-not-import-from-here/ux/hub/feed/components/SendersList.css.d.ts +7 -0
  406. package/internal-do-not-import-from-here/ux/hub/feed/components/SendersList.d.ts +110 -0
  407. package/internal-do-not-import-from-here/ux/hub/feed/components/Social.css.d.ts +5 -0
  408. package/internal-do-not-import-from-here/ux/hub/feed/components/Social.d.ts +110 -0
  409. package/internal-do-not-import-from-here/ux/hub/feed/components/StoryComponent.d.ts +122 -0
  410. package/internal-do-not-import-from-here/ux/hub/feed/definitions/Story.d.ts +2 -0
  411. package/internal-do-not-import-from-here/ux/hub/feed/stores/ActivityFeedStore.d.ts +141 -0
  412. package/internal-do-not-import-from-here/ux/hub/feed/stores/HubFeedChannel.d.ts +2 -0
  413. package/internal-do-not-import-from-here/ux/hub/feed/stores/index.d.ts +2 -0
  414. package/internal-do-not-import-from-here/ux/iconpicker/IIconPicker.d.ts +0 -15
  415. package/internal-do-not-import-from-here/ux/iconpicker/IconPicker.d.ts +280 -43
  416. package/internal-do-not-import-from-here/ux/identities/IdentityRenderer.d.ts +307 -138
  417. package/internal-do-not-import-from-here/ux/identities/loc/Localize.d.ts +4 -0
  418. package/internal-do-not-import-from-here/ux/identitypicker/IdentityPicker.css.d.ts +7 -4
  419. package/internal-do-not-import-from-here/ux/identitypicker/IdentityPicker.d.ts +377 -91
  420. package/internal-do-not-import-from-here/ux/identitypicker/IdentityPickerButton.d.ts +338 -75
  421. package/internal-do-not-import-from-here/ux/identitypicker/IdentityPickerDialog.d.ts +682 -58
  422. package/internal-do-not-import-from-here/ux/identitypicker/IdentityPickerField.d.ts +460 -92
  423. package/internal-do-not-import-from-here/ux/identitypicker/IdentityPickerInlineField.d.ts +432 -100
  424. package/internal-do-not-import-from-here/ux/identitypicker/Shared.d.ts +3 -0
  425. package/internal-do-not-import-from-here/ux/identitypicker/loc/Localize.d.ts +2 -0
  426. package/internal-do-not-import-from-here/ux/iframe/OmniaIFrameResizer.d.ts +3 -0
  427. package/internal-do-not-import-from-here/ux/iframe/ResizingIFrame.d.ts +2 -0
  428. package/internal-do-not-import-from-here/ux/image/scalingsettings/ScalingSettings.d.ts +6 -6
  429. package/internal-do-not-import-from-here/ux/imagegrid/ImageGrid copy.d.ts +1 -0
  430. package/internal-do-not-import-from-here/ux/imagegrid/ImageGrid.d.ts +171 -27
  431. package/internal-do-not-import-from-here/ux/imagegrid/index.d.ts +0 -1
  432. package/internal-do-not-import-from-here/ux/inputlanguagepicker/IInputLanguagePicker.d.ts +0 -14
  433. package/internal-do-not-import-from-here/ux/inputlanguagepicker/InputLanguagePicker.d.ts +116 -43
  434. package/internal-do-not-import-from-here/ux/inputtoken/InputToken.d.ts +1 -1
  435. package/internal-do-not-import-from-here/ux/journey/MenuBlade.d.ts +1 -2
  436. package/internal-do-not-import-from-here/ux/journey/v2/JourneyBlade.css.d.ts +7 -6
  437. package/internal-do-not-import-from-here/ux/journey/v2/JourneyBlade.d.ts +174 -85
  438. package/internal-do-not-import-from-here/ux/journey/v2/JourneyMenu.d.ts +207 -0
  439. package/internal-do-not-import-from-here/ux/journey/v2/JourneyV2.css.d.ts +1 -1
  440. package/internal-do-not-import-from-here/ux/journey/v2/JourneyV2.d.ts +20 -4
  441. package/internal-do-not-import-from-here/ux/journey/v2/docs/ExampleComponents.d.ts +1 -0
  442. package/internal-do-not-import-from-here/ux/journey/v2/docs/ExampleComponentsMenu.d.ts +1 -0
  443. package/internal-do-not-import-from-here/ux/journey/v2/docs/SampleButtons.d.ts +91 -0
  444. package/internal-do-not-import-from-here/ux/journey/v2/docs/SampleComponent.d.ts +91 -0
  445. package/internal-do-not-import-from-here/ux/journey/v2/docs/SampleComponentMenu.d.ts +91 -0
  446. package/internal-do-not-import-from-here/ux/journey/v2/docs/SampleVariants.d.ts +91 -0
  447. package/internal-do-not-import-from-here/ux/journey/v2/docs/index.d.ts +3 -0
  448. package/internal-do-not-import-from-here/ux/journey/v2/models/BladeInstance.d.ts +5 -1
  449. package/internal-do-not-import-from-here/ux/journey/v2/models/Constants.d.ts +10 -0
  450. package/internal-do-not-import-from-here/ux/journey/v2/models/index.d.ts +1 -0
  451. package/internal-do-not-import-from-here/ux/journey/v2/stores/JourneyMenuStore.d.ts +32 -0
  452. package/internal-do-not-import-from-here/ux/journey/v2/stores/JourneyStore.d.ts +134 -33
  453. package/internal-do-not-import-from-here/ux/journey/v2/stores/index.d.ts +1 -0
  454. package/internal-do-not-import-from-here/ux/languagepicker/ILanguagePicker.d.ts +1 -14
  455. package/internal-do-not-import-from-here/ux/languagepicker/LanguagePicker.d.ts +639 -43
  456. package/internal-do-not-import-from-here/ux/layoutcanvas/apis/PlaceHolderApis.d.ts +1 -0
  457. package/internal-do-not-import-from-here/ux/layoutcanvas/apis/TemplateRegistrationApis.d.ts +1 -0
  458. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/LayoutEditorCanvas.d.ts +47 -19
  459. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/blockplaceholder/BlockPlaceholder.d.ts +1 -1
  460. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/canvastoolbar/CanvasToolbar.d.ts +1 -1
  461. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/layoutItemselector/LayoutItemSelection.d.ts +3 -3
  462. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/layoutItemselector/LayoutItemSelector.css.d.ts +2 -0
  463. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/layoutitems/LayoutBlock.css.d.ts +3 -2
  464. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/layoutitems/LayoutBlock.d.ts +1 -1
  465. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/layoutitems/LayoutColumn.d.ts +3 -3
  466. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/layoutitems/LayoutPlaceHolder.d.ts +256 -0
  467. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/layoutitems/LayoutSectionTab.d.ts +2 -0
  468. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/layoutitems/LayoutStep.d.ts +1 -0
  469. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/layoutitems/LayoutTab.d.ts +1 -0
  470. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/layouttemplates/LayoutTemplateSelector.d.ts +1 -2
  471. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/block/Css.d.ts +4 -490
  472. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/block/Header.d.ts +4 -490
  473. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/block/Spacing.d.ts +4 -490
  474. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/block/Style.d.ts +4 -490
  475. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/block/Targeting.d.ts +4 -490
  476. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/blocktitle/BlockTitle.css.d.ts +2 -2
  477. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/blocktitle/BlockTitle.d.ts +1 -1
  478. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/blocktitle/BlockTitleSettings.d.ts +2 -2
  479. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/imagebackgroundsettings/ImageBackgroundSettings.d.ts +2 -2
  480. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/section/items/PlaceHolderListingSettingsPanel.d.ts +113 -0
  481. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/settingstabs/TabBlockSettings.d.ts +9 -3
  482. package/internal-do-not-import-from-here/ux/layoutcanvas/factories/EditorLayoutItemFactory.d.ts +1 -0
  483. package/internal-do-not-import-from-here/ux/layoutcanvas/index.d.ts +0 -1
  484. package/internal-do-not-import-from-here/ux/layoutcanvas/renderer/LayoutBlockRendererHelper.d.ts +4 -4
  485. package/internal-do-not-import-from-here/ux/layoutcanvas/renderer/LayoutRendererCanvas.d.ts +7 -1
  486. package/internal-do-not-import-from-here/ux/layoutcanvas/shared/BreakPointManager.d.ts +1 -1
  487. package/internal-do-not-import-from-here/ux/layoutcanvas/shared/ObjectMerger.d.ts +5 -11
  488. package/internal-do-not-import-from-here/ux/layoutcanvas/shared/layoutitemsrenderer/LayoutBlockRenderer.d.ts +1 -1
  489. package/internal-do-not-import-from-here/ux/layoutcanvas/shared/layoutitemsrenderer/LayoutColumnRenderer.d.ts +20 -19
  490. package/internal-do-not-import-from-here/ux/layoutcanvas/shared/layoutitemsrenderer/LayoutSectionRenderer.d.ts +5 -2
  491. package/internal-do-not-import-from-here/ux/layoutcanvas/shared/layoutitemsrenderer/LayoutSectionStepperRenderer.d.ts +1 -1
  492. package/internal-do-not-import-from-here/ux/layoutcanvas/shared/layoutitemsrenderer/LayoutSectionTabRenderer.d.ts +1 -1
  493. package/internal-do-not-import-from-here/ux/layoutcanvas/shared/layoutitemsrenderer/LayoutStepRenderer.d.ts +1 -1
  494. package/internal-do-not-import-from-here/ux/layoutcanvas/shared/layoutitemsrenderer/LayoutTabRenderer.d.ts +3 -3
  495. package/internal-do-not-import-from-here/ux/layoutcanvas/shared/placeholders/PlaceHolderRegistrationApis.d.ts +1 -0
  496. package/internal-do-not-import-from-here/ux/layoutcanvas/shared/styles/LayerIndex.d.ts +7 -0
  497. package/internal-do-not-import-from-here/ux/layoutcanvas/shared/styles/SharedRendererFunctions.d.ts +8 -28
  498. package/internal-do-not-import-from-here/ux/layoutcanvas/shared/styles/SharedRendererStyles.css.d.ts +16 -15
  499. package/internal-do-not-import-from-here/ux/layoutcanvas/shared/styles/index.d.ts +1 -0
  500. package/internal-do-not-import-from-here/ux/layoutcanvas/stores/BlockCatalogStore.d.ts +2 -2
  501. package/internal-do-not-import-from-here/ux/layoutcanvas/stores/LayoutCanvasStore.d.ts +3 -0
  502. package/internal-do-not-import-from-here/ux/layoutcanvas/stores/LayoutTemplateStore.d.ts +1 -2
  503. package/internal-do-not-import-from-here/ux/layoutcanvas/stores/index.d.ts +0 -1
  504. package/internal-do-not-import-from-here/ux/letteravatar/LetterAvatar.d.ts +1 -2
  505. package/internal-do-not-import-from-here/ux/magiclink/MagicLink.css.d.ts +1 -1
  506. package/internal-do-not-import-from-here/ux/markdown/MarkdownEditor.d.ts +57 -0
  507. package/internal-do-not-import-from-here/ux/markdown/MarkdownRenderer.css.d.ts +4 -0
  508. package/internal-do-not-import-from-here/ux/markdown/MarkdownRenderer.d.ts +43 -3
  509. package/internal-do-not-import-from-here/ux/markdown/plugins/CodeMarkdownRenderer.d.ts +3 -0
  510. package/internal-do-not-import-from-here/ux/markdown/plugins/MarkdownPluginContext.d.ts +3 -0
  511. package/internal-do-not-import-from-here/ux/markdown/plugins/VelcronMarkdownRenderer.d.ts +3 -0
  512. package/internal-do-not-import-from-here/ux/mediagallery/Helper.d.ts +2 -0
  513. package/internal-do-not-import-from-here/ux/mediagallery/Shared.d.ts +3 -0
  514. package/internal-do-not-import-from-here/ux/mediagallery/gallerydialogproviders/apis/IInternalGalleryDialogProvider.d.ts +4 -0
  515. package/internal-do-not-import-from-here/ux/mediagallery/gallerydialogproviders/apis/Registration.d.ts +1 -0
  516. package/internal-do-not-import-from-here/ux/mediagallery/gallerydialogproviders/apis/index.d.ts +1 -0
  517. package/internal-do-not-import-from-here/ux/mediagallery/gallerydialogproviders/index.d.ts +1 -0
  518. package/internal-do-not-import-from-here/ux/mediagallery/gallerydialogproviders/slider/Delimiter.css.d.ts +7 -0
  519. package/internal-do-not-import-from-here/ux/mediagallery/gallerydialogproviders/slider/Delimiter.d.ts +120 -0
  520. package/internal-do-not-import-from-here/ux/mediagallery/gallerydialogproviders/slider/Slider.css.d.ts +12 -0
  521. package/internal-do-not-import-from-here/ux/mediagallery/gallerydialogproviders/slider/Slider.d.ts +121 -0
  522. package/internal-do-not-import-from-here/ux/mediagallery/gallerydialogproviders/slider/localize.d.ts +6 -0
  523. package/internal-do-not-import-from-here/ux/mediagallery/galleryviewproviders/apis/IInternalGalleryDisplayProvider.d.ts +4 -0
  524. package/internal-do-not-import-from-here/ux/mediagallery/galleryviewproviders/apis/Registration.d.ts +1 -0
  525. package/internal-do-not-import-from-here/ux/mediagallery/galleryviewproviders/apis/index.d.ts +1 -0
  526. package/internal-do-not-import-from-here/ux/mediagallery/galleryviewproviders/index.d.ts +1 -0
  527. package/internal-do-not-import-from-here/ux/mediagallery/galleryviewproviders/photowall/PhotoWall.css.d.ts +4 -0
  528. package/internal-do-not-import-from-here/ux/mediagallery/galleryviewproviders/photowall/PhotoWall.d.ts +136 -0
  529. package/internal-do-not-import-from-here/ux/mediagallery/galleryviewproviders/photowall/components/CollageMetadata.d.ts +5 -0
  530. package/internal-do-not-import-from-here/ux/mediagallery/galleryviewproviders/photowall/components/NumberOfRemaining.d.ts +94 -0
  531. package/internal-do-not-import-from-here/ux/mediagallery/galleryviewproviders/photowall/components/PhotoCollage.d.ts +169 -0
  532. package/internal-do-not-import-from-here/ux/mediagallery/galleryviewproviders/photowall/components/PhotoCollageWrapper.d.ts +141 -0
  533. package/internal-do-not-import-from-here/ux/mediagallery/galleryviewproviders/photowall/components/PhotoGrid.d.ts +124 -0
  534. package/internal-do-not-import-from-here/ux/mediagallery/galleryviewproviders/photowall/components/PhotoMask.d.ts +106 -0
  535. package/internal-do-not-import-from-here/ux/mediagallery/galleryviewproviders/photowall/components/PhotoRow.d.ts +121 -0
  536. package/internal-do-not-import-from-here/ux/mediagallery/galleryviewproviders/photowall/components/PhotoThumb.d.ts +114 -0
  537. package/internal-do-not-import-from-here/ux/mediagallery/galleryviewproviders/photowall/components/RowPhotos.css.d.ts +1 -0
  538. package/internal-do-not-import-from-here/ux/mediagallery/galleryviewproviders/photowall/components/RowPhotos.d.ts +158 -0
  539. package/internal-do-not-import-from-here/ux/mediagallery/galleryviewproviders/photowall/components/ViewMore.d.ts +94 -0
  540. package/internal-do-not-import-from-here/ux/mediagallery/galleryviewproviders/photowall/loc/localize.d.ts +7 -0
  541. package/internal-do-not-import-from-here/ux/mediagallery/view/MediaDisplayRenderer.d.ts +134 -0
  542. package/internal-do-not-import-from-here/ux/mediagallery/view/PhotoWallWithSliderDisplayRenderer.css.d.ts +4 -0
  543. package/internal-do-not-import-from-here/ux/mediagallery/view/PhotoWallWithSliderDisplayRenderer.d.ts +128 -0
  544. package/internal-do-not-import-from-here/ux/mediapickerV2/chrome/MediaPicker.css.d.ts +8 -0
  545. package/internal-do-not-import-from-here/ux/mediapickerV2/chrome/MediaPicker.d.ts +623 -0
  546. package/internal-do-not-import-from-here/ux/mediapickerV2/chrome/MediaPickerContext.d.ts +5 -0
  547. package/internal-do-not-import-from-here/ux/mediapickerV2/chrome/components/ImageSelector.css.d.ts +6 -0
  548. package/internal-do-not-import-from-here/ux/mediapickerV2/chrome/components/ImageSelector.d.ts +104 -0
  549. package/internal-do-not-import-from-here/ux/mediapickerV2/chrome/core/MediaFileProcessor.d.ts +10 -0
  550. package/internal-do-not-import-from-here/ux/{mediapicker → mediapickerV2/chrome}/core/MediaPickerImageHandler.d.ts +1 -4
  551. package/internal-do-not-import-from-here/ux/mediapickerV2/chrome/core/index.d.ts +3 -0
  552. package/internal-do-not-import-from-here/ux/mediapickerV2/chrome/core/utils.d.ts +5 -0
  553. package/internal-do-not-import-from-here/ux/mediapickerV2/chrome/index.d.ts +2 -0
  554. package/internal-do-not-import-from-here/ux/mediapickerV2/chrome/loc/localize.d.ts +14 -0
  555. package/internal-do-not-import-from-here/ux/mediapickerV2/docs/ExampleComponents.d.ts +1 -0
  556. package/internal-do-not-import-from-here/ux/mediapickerV2/docs/MediaProviderExample.d.ts +91 -0
  557. package/internal-do-not-import-from-here/ux/mediapickerV2/docs/index.d.ts +1 -0
  558. package/internal-do-not-import-from-here/ux/mediapickerV2/imagegrid/ImageGrid.css.d.ts +8 -0
  559. package/internal-do-not-import-from-here/ux/mediapickerV2/imagegrid/ImageGrid.d.ts +136 -0
  560. package/internal-do-not-import-from-here/ux/mediapickerV2/imagegrid/index.d.ts +0 -0
  561. package/internal-do-not-import-from-here/ux/mediapickerV2/imagegrid/loc/localize.d.ts +8 -0
  562. package/internal-do-not-import-from-here/ux/mediapickerV2/imagetransformer/Components/Interfaces.d.ts +0 -0
  563. package/internal-do-not-import-from-here/ux/mediapickerV2/imagetransformer/Components/cropper/ImageCropMenu.d.ts +91 -0
  564. package/internal-do-not-import-from-here/ux/mediapickerV2/imagetransformer/Components/cropper/ImageCropper.d.ts +124 -0
  565. package/internal-do-not-import-from-here/ux/mediapickerV2/imagetransformer/Components/editor/ImageEditor.css.d.ts +8 -0
  566. package/internal-do-not-import-from-here/ux/mediapickerV2/imagetransformer/Components/editor/ImageEditor.d.ts +117 -0
  567. package/internal-do-not-import-from-here/ux/mediapickerV2/imagetransformer/Components/editor/ImageEditorCanvas.d.ts +250 -0
  568. package/internal-do-not-import-from-here/ux/mediapickerV2/imagetransformer/Components/filters/ImageFilters.d.ts +133 -0
  569. package/internal-do-not-import-from-here/ux/mediapickerV2/imagetransformer/Components/flipper/ImageFlipper.css.d.ts +3 -0
  570. package/internal-do-not-import-from-here/ux/mediapickerV2/imagetransformer/Components/flipper/ImageFlipper.d.ts +118 -0
  571. package/internal-do-not-import-from-here/ux/mediapickerV2/imagetransformer/Components/settings/ImageSettings.css.d.ts +6 -0
  572. package/internal-do-not-import-from-here/ux/mediapickerV2/imagetransformer/Components/settings/ImageSettings.d.ts +91 -0
  573. package/internal-do-not-import-from-here/ux/{imagetransformation/constants.d.ts → mediapickerV2/imagetransformer/Constants.d.ts} +12 -0
  574. package/internal-do-not-import-from-here/ux/mediapickerV2/imagetransformer/ImageTransformer.css.d.ts +3 -0
  575. package/internal-do-not-import-from-here/ux/mediapickerV2/imagetransformer/ImageTransformer.d.ts +105 -0
  576. package/internal-do-not-import-from-here/ux/mediapickerV2/mediaprovider/MediaProvider.css.d.ts +11 -0
  577. package/internal-do-not-import-from-here/ux/mediapickerV2/mediaprovider/MediaProvider.d.ts +128 -0
  578. package/internal-do-not-import-from-here/ux/mediapickerV2/stores/MediaGalleryStore.d.ts +63 -0
  579. package/internal-do-not-import-from-here/ux/mediapickerV2/stores/MediaPickerEditorStore.d.ts +153 -0
  580. package/internal-do-not-import-from-here/ux/mediapickerV2/stores/MediaPickerProviderStore.d.ts +126 -0
  581. package/internal-do-not-import-from-here/ux/mediapickerV2/stores/index.d.ts +3 -0
  582. package/internal-do-not-import-from-here/ux/mediapickerimage/MediaPickerImage.css.d.ts +1 -0
  583. package/internal-do-not-import-from-here/ux/mediapickerimage/MediaPickerImage.d.ts +337 -23
  584. package/internal-do-not-import-from-here/ux/mediapickerproviders/MicrosoftStream/IMicrosoftStreamProvider.d.ts +0 -16
  585. package/internal-do-not-import-from-here/ux/mediapickerproviders/MicrosoftStream/MicrosoftStreamProvider.css.d.ts +0 -16
  586. package/internal-do-not-import-from-here/ux/mediapickerproviders/MicrosoftStream/MicrosoftStreamProvider.d.ts +0 -64
  587. package/internal-do-not-import-from-here/ux/mediapickerproviders/MicrosoftStream/loc/localize.d.ts +3 -1
  588. package/internal-do-not-import-from-here/ux/mediapickerproviders/Youtube/IYouTubeProvider.d.ts +0 -17
  589. package/internal-do-not-import-from-here/ux/mediapickerproviders/Youtube/YouTubeProvider.css.d.ts +0 -18
  590. package/internal-do-not-import-from-here/ux/mediapickerproviders/Youtube/YouTubeProvider.d.ts +0 -54
  591. package/internal-do-not-import-from-here/ux/mediapickerproviders/Youtube/loc/localize.d.ts +3 -1
  592. package/internal-do-not-import-from-here/ux/mediapickerproviders/apis/IInternalMediaPickerProviderRegistration.d.ts +1 -1
  593. package/internal-do-not-import-from-here/ux/mediapickerproviders/bingprovider-v2/BingProvider.d.ts +577 -0
  594. package/internal-do-not-import-from-here/ux/mediapickerproviders/bingprovider-v2/BingProvider_old.d.ts +0 -0
  595. package/internal-do-not-import-from-here/ux/mediapickerproviders/bingprovider-v2/index.d.ts +1 -0
  596. package/internal-do-not-import-from-here/ux/mediapickerproviders/bingprovider-v2/loc/index.d.ts +1 -0
  597. package/internal-do-not-import-from-here/ux/mediapickerproviders/{bingprovider → bingprovider-v2}/loc/localize.d.ts +1 -1
  598. package/internal-do-not-import-from-here/ux/mediapickerproviders/centralimagelocationprovider/CentralImageLocationProvider.css.d.ts +0 -11
  599. package/internal-do-not-import-from-here/ux/mediapickerproviders/centralimagelocationprovider/CentralImageLocationProvider.d.ts +0 -46
  600. package/internal-do-not-import-from-here/ux/mediapickerproviders/centralimagelocationprovider/ICentralImageLocationProvider.d.ts +0 -18
  601. package/internal-do-not-import-from-here/ux/mediapickerproviders/dalleprovider/DallEProvider.css.d.ts +0 -26
  602. package/internal-do-not-import-from-here/ux/mediapickerproviders/dalleprovider/DallEProvider.d.ts +0 -40
  603. package/internal-do-not-import-from-here/ux/mediapickerproviders/dalleprovider/PollingImageComponent.d.ts +0 -131
  604. package/internal-do-not-import-from-here/ux/mediapickerproviders/dalleprovider/loc/localize.d.ts +1 -0
  605. package/internal-do-not-import-from-here/ux/mediapickerproviders/index.d.ts +1 -2
  606. package/internal-do-not-import-from-here/ux/mediapickerproviders/mediaflow/MediaflowProvider.d.ts +0 -0
  607. package/internal-do-not-import-from-here/ux/mediapickerproviders/mediaflow/MediaflowProviderStyles.css.d.ts +0 -0
  608. package/internal-do-not-import-from-here/ux/mediapickerproviders/mediaflow/MediaflowVideoPlayer.d.ts +0 -0
  609. package/internal-do-not-import-from-here/ux/mediapickerproviders/mediaflow/loc/localize.d.ts +25 -0
  610. package/internal-do-not-import-from-here/ux/mediapickerproviders/mediaflow/models/MediaflowEmbedMethods.d.ts +4 -0
  611. package/internal-do-not-import-from-here/ux/mediapickerproviders/mediaflow/models/MediaflowMedia.d.ts +31 -0
  612. package/internal-do-not-import-from-here/ux/mediapickerproviders/mediaflow/models/MediaflowResponse.d.ts +8 -0
  613. package/internal-do-not-import-from-here/ux/mediapickerproviders/mediaflow/models/MediaflowVideoInfo.d.ts +27 -0
  614. package/internal-do-not-import-from-here/ux/mediapickerproviders/mediaflow/models/MediaflowVideoPlayerProps.d.ts +9 -0
  615. package/internal-do-not-import-from-here/ux/mediapickerproviders/mediaflow/models/index.d.ts +5 -0
  616. package/internal-do-not-import-from-here/ux/mediapickerproviders/mediaflow/service/MediaflowService.d.ts +0 -0
  617. package/internal-do-not-import-from-here/ux/mediapickerproviders/mediaflow/store/MediaflowProviderStore.d.ts +0 -0
  618. package/internal-do-not-import-from-here/ux/mediapickerproviders/mediaproviderbase/GridViewMediaProviderComponent.css.d.ts +0 -1
  619. package/internal-do-not-import-from-here/ux/mediapickerproviders/mediaproviderbase/GridViewMediaProviderComponent.d.ts +0 -65
  620. package/internal-do-not-import-from-here/ux/mediapickerproviders/mediaproviderbase/MediaProviderComponentBase.css.d.ts +0 -9
  621. package/internal-do-not-import-from-here/ux/mediapickerproviders/mediaproviderbase/MediaProviderComponentBase.d.ts +0 -80
  622. package/internal-do-not-import-from-here/ux/mediapickerproviders/mediaproviderbase/MultiSelectMediaProviderComponentBase.d.ts +0 -0
  623. package/internal-do-not-import-from-here/ux/mediapickerproviders/mycomputerprovider/IMyComputerProvider.d.ts +0 -17
  624. package/internal-do-not-import-from-here/ux/mediapickerproviders/mycomputerprovider/MyComputerProvider.css.d.ts +0 -5
  625. package/internal-do-not-import-from-here/ux/mediapickerproviders/mycomputerprovider/MyComputerProvider.d.ts +91 -17
  626. package/internal-do-not-import-from-here/ux/mediapickerproviders/mycomputerprovider/loc/localize.d.ts +1 -1
  627. package/internal-do-not-import-from-here/ux/mediapickerproviders/pexelsprovider-V2/PexelProvider.d.ts +578 -0
  628. package/internal-do-not-import-from-here/ux/mediapickerproviders/shareds/DefineMediaPickerProvider.d.ts +11 -0
  629. package/internal-do-not-import-from-here/ux/mediapickerproviders/shareds/DefineMediaPickerStorageProvider.d.ts +12 -0
  630. package/internal-do-not-import-from-here/ux/mediapickerproviders/shareds/index.d.ts +3 -0
  631. package/internal-do-not-import-from-here/ux/mediapickerproviders/shareds/providers/BingProvider.d.ts +12 -0
  632. package/internal-do-not-import-from-here/ux/mediapickerproviders/shareds/providers/CentralImageLocationProvider.d.ts +12 -0
  633. package/internal-do-not-import-from-here/ux/mediapickerproviders/shareds/providers/DallEProvider.d.ts +12 -0
  634. package/internal-do-not-import-from-here/ux/mediapickerproviders/shareds/providers/MediaflowProvider.d.ts +12 -0
  635. package/internal-do-not-import-from-here/ux/mediapickerproviders/shareds/providers/MicrosoftStreamProvider.d.ts +12 -0
  636. package/internal-do-not-import-from-here/ux/mediapickerproviders/shareds/providers/MyComputerProvider.d.ts +11 -0
  637. package/internal-do-not-import-from-here/ux/mediapickerproviders/shareds/providers/PexelProvider.d.ts +12 -0
  638. package/internal-do-not-import-from-here/ux/mediapickerproviders/shareds/providers/UnsplashProvider.d.ts +12 -0
  639. package/internal-do-not-import-from-here/ux/mediapickerproviders/shareds/providers/YoutubeProvider.d.ts +12 -0
  640. package/internal-do-not-import-from-here/ux/mediapickerproviders/shareds/providers/index.d.ts +10 -0
  641. package/internal-do-not-import-from-here/ux/mediapickerproviders/shareds/providers/storages/MediaPickerStorageProviderAppInstanceContext.d.ts +11 -0
  642. package/internal-do-not-import-from-here/ux/mediapickerproviders/shareds/providers/storages/MediaPickerStorageProviderAppInstancePostContext.d.ts +6 -0
  643. package/internal-do-not-import-from-here/ux/mediapickerproviders/shareds/providers/storages/MediaPickerStorageProviderVersionedLayoutContext.d.ts +6 -0
  644. package/internal-do-not-import-from-here/ux/mediapickerproviders/shareds/providers/storages/index.d.ts +3 -0
  645. package/internal-do-not-import-from-here/ux/mediapickerproviders/sharepointvideosettings/ISharePointVideoSettings.d.ts +0 -19
  646. package/internal-do-not-import-from-here/ux/mediapickerproviders/sharepointvideosettings/SharePointVideoSettings.css.d.ts +0 -1
  647. package/internal-do-not-import-from-here/ux/mediapickerproviders/sharepointvideosettings/SharePointVideoSettings.d.ts +0 -34
  648. package/internal-do-not-import-from-here/ux/mediapickerproviders/sharepointvideosettings/loc/localize.d.ts +4 -0
  649. package/internal-do-not-import-from-here/ux/mediapickerproviders/unsplash/UnsplashProvider.css.d.ts +5 -0
  650. package/internal-do-not-import-from-here/ux/mediapickerproviders/unsplash/UnsplashProvider.d.ts +91 -0
  651. package/internal-do-not-import-from-here/ux/mediapickerproviders/unsplash/loc/localize.d.ts +11 -0
  652. package/internal-do-not-import-from-here/ux/mediapickerproviders/unsplash/models/UnsplashImage.d.ts +41 -0
  653. package/internal-do-not-import-from-here/ux/mediapickerproviders/unsplash/services/UnsplashImageService.d.ts +7 -0
  654. package/internal-do-not-import-from-here/ux/mediapickervideo/IMediaPickerVideo.d.ts +4 -0
  655. package/internal-do-not-import-from-here/ux/mediapickervideo/MediaPickerVideo.css.d.ts +2 -1
  656. package/internal-do-not-import-from-here/ux/mediapickervideo/MediaPickerVideo.d.ts +12 -0
  657. package/internal-do-not-import-from-here/ux/models/ActionToolbarStyles.d.ts +4 -3
  658. package/internal-do-not-import-from-here/ux/models/AppInstanceRollupStyles.d.ts +1 -0
  659. package/internal-do-not-import-from-here/ux/models/AppLayoutPlaceHolder.d.ts +2 -0
  660. package/internal-do-not-import-from-here/ux/models/DataTable.d.ts +13 -0
  661. package/internal-do-not-import-from-here/ux/models/DateTimePickerStyles.d.ts +1 -0
  662. package/internal-do-not-import-from-here/ux/models/FileUploaderStyles.d.ts +0 -13
  663. package/internal-do-not-import-from-here/ux/models/LegacySvgImage.d.ts +1 -1
  664. package/internal-do-not-import-from-here/ux/models/MultilingualInputStyles.d.ts +6 -6
  665. package/internal-do-not-import-from-here/ux/models/ProfileCardStyles.d.ts +1 -0
  666. package/internal-do-not-import-from-here/ux/models/QueryablePropertiesStyles.d.ts +1 -0
  667. package/internal-do-not-import-from-here/ux/models/SpecialUserConfiguration.d.ts +5 -0
  668. package/internal-do-not-import-from-here/ux/models/Validation.d.ts +33 -0
  669. package/internal-do-not-import-from-here/ux/models/enterpriseproperties/EnterprisePropertyPickerStyles.d.ts +1 -0
  670. package/internal-do-not-import-from-here/ux/models/enterpriseproperties/PersonFieldDisplayStyles.d.ts +1 -5
  671. package/internal-do-not-import-from-here/ux/models/index.d.ts +4 -0
  672. package/internal-do-not-import-from-here/ux/monaco/Monaco.d.ts +2 -1
  673. package/internal-do-not-import-from-here/ux/monaco/MonacoEditor.d.ts +23 -23
  674. package/internal-do-not-import-from-here/ux/multilingualinput/IMultilingualInput.d.ts +3 -14
  675. package/internal-do-not-import-from-here/ux/multilingualinput/MultilingualInput.d.ts +694 -81
  676. package/internal-do-not-import-from-here/ux/oxide/alert/Alert.css.d.ts +1 -0
  677. package/internal-do-not-import-from-here/ux/oxide/alert/Alert.d.ts +179 -0
  678. package/internal-do-not-import-from-here/ux/oxide/alert/docs/ExampleComponents.d.ts +1 -0
  679. package/internal-do-not-import-from-here/ux/oxide/alert/docs/SampleComponent.d.ts +91 -0
  680. package/internal-do-not-import-from-here/ux/oxide/alert/docs/index.d.ts +1 -0
  681. package/internal-do-not-import-from-here/ux/oxide/appbar/Appbar.css.d.ts +3 -0
  682. package/internal-do-not-import-from-here/ux/oxide/appbar/Appbar.d.ts +31 -61
  683. package/internal-do-not-import-from-here/ux/oxide/appbar/docs/AppbarExample.d.ts +91 -0
  684. package/internal-do-not-import-from-here/ux/oxide/appbar/docs/ExampleComponents.d.ts +1 -0
  685. package/internal-do-not-import-from-here/ux/oxide/appbar/docs/index.d.ts +1 -0
  686. package/internal-do-not-import-from-here/ux/oxide/avatar/Avatar.d.ts +60 -27
  687. package/internal-do-not-import-from-here/ux/oxide/avatar/docs/AvatarExample.d.ts +91 -0
  688. package/internal-do-not-import-from-here/ux/oxide/avatar/docs/ExampleComponents.d.ts +1 -0
  689. package/internal-do-not-import-from-here/ux/oxide/avatar/docs/index.d.ts +1 -0
  690. package/internal-do-not-import-from-here/ux/oxide/badge/Badge.d.ts +196 -0
  691. package/internal-do-not-import-from-here/ux/oxide/badge/docs/BadgeExample.d.ts +91 -0
  692. package/internal-do-not-import-from-here/ux/oxide/badge/docs/ExampleComponents.d.ts +1 -0
  693. package/internal-do-not-import-from-here/ux/oxide/badge/docs/index.d.ts +1 -0
  694. package/internal-do-not-import-from-here/ux/oxide/btn/Button.css.d.ts +2 -3
  695. package/internal-do-not-import-from-here/ux/oxide/btn/Button.d.ts +55 -23
  696. package/internal-do-not-import-from-here/ux/oxide/btn/docs/ButtonExamples.d.ts +1 -1
  697. package/internal-do-not-import-from-here/ux/oxide/btn/docs/Presets.d.ts +91 -0
  698. package/internal-do-not-import-from-here/ux/oxide/btn/docs/index.d.ts +1 -1
  699. package/internal-do-not-import-from-here/ux/oxide/{btntoggle/ButtonToggle.css.d.ts → btngroup/ButtonGroup.css.d.ts} +3 -3
  700. package/internal-do-not-import-from-here/ux/oxide/btngroup/ButtonGroup.d.ts +149 -24
  701. package/internal-do-not-import-from-here/ux/oxide/btngroup/docs/ButtonIntro.d.ts +91 -0
  702. package/internal-do-not-import-from-here/ux/oxide/btngroup/docs/ExampleComponents.d.ts +1 -0
  703. package/internal-do-not-import-from-here/ux/oxide/btngroup/docs/index.d.ts +1 -0
  704. package/internal-do-not-import-from-here/ux/oxide/card/Card.d.ts +5 -5
  705. package/internal-do-not-import-from-here/ux/oxide/card/docs/CardSample.d.ts +91 -0
  706. package/internal-do-not-import-from-here/ux/oxide/card/docs/ExampleComponents.d.ts +1 -0
  707. package/internal-do-not-import-from-here/ux/oxide/card/docs/index.d.ts +1 -0
  708. package/internal-do-not-import-from-here/ux/oxide/checkbox/Checkbox.d.ts +43 -317
  709. package/internal-do-not-import-from-here/ux/oxide/checkbox/docs/ExampleComponents.d.ts +1 -0
  710. package/internal-do-not-import-from-here/ux/oxide/checkbox/docs/SampleComponent.d.ts +91 -0
  711. package/internal-do-not-import-from-here/ux/oxide/checkbox/docs/index.d.ts +1 -0
  712. package/internal-do-not-import-from-here/ux/oxide/chip/Chip.css.d.ts +20 -0
  713. package/internal-do-not-import-from-here/ux/oxide/chip/Chip.d.ts +191 -0
  714. package/internal-do-not-import-from-here/ux/oxide/chip/docs/ChipExample.d.ts +91 -0
  715. package/internal-do-not-import-from-here/ux/oxide/chip/docs/ExampleComponents.d.ts +1 -0
  716. package/internal-do-not-import-from-here/ux/oxide/chip/docs/index.d.ts +1 -0
  717. package/internal-do-not-import-from-here/ux/oxide/colorpicker/ColorPicker.css.d.ts +6 -0
  718. package/internal-do-not-import-from-here/ux/oxide/colorpicker/ColorPicker.d.ts +264 -0
  719. package/internal-do-not-import-from-here/ux/oxide/colorpicker/ColorPicker_omfx.d.ts +0 -0
  720. package/internal-do-not-import-from-here/ux/oxide/colorpicker/docs/ExampleComponents.d.ts +1 -0
  721. package/internal-do-not-import-from-here/ux/oxide/colorpicker/docs/SampleComponent.d.ts +91 -0
  722. package/internal-do-not-import-from-here/ux/oxide/colorpicker/docs/index.d.ts +1 -0
  723. package/internal-do-not-import-from-here/ux/oxide/column/Column.d.ts +35 -84
  724. package/internal-do-not-import-from-here/ux/oxide/column/docs/ExampleComponents.d.ts +1 -0
  725. package/internal-do-not-import-from-here/ux/oxide/column/docs/SampleComponent.d.ts +91 -0
  726. package/internal-do-not-import-from-here/ux/oxide/column/docs/index.d.ts +1 -0
  727. package/internal-do-not-import-from-here/ux/oxide/datatable/DataTable.css.d.ts +5 -3
  728. package/internal-do-not-import-from-here/ux/oxide/datatable/DataTable.d.ts +62 -54
  729. package/internal-do-not-import-from-here/ux/oxide/datatable/docs/ExampleComponents.d.ts +1 -0
  730. package/internal-do-not-import-from-here/ux/oxide/datatable/docs/SampleComponent.d.ts +91 -0
  731. package/internal-do-not-import-from-here/ux/oxide/datatable/docs/index.d.ts +1 -0
  732. package/internal-do-not-import-from-here/ux/oxide/{datatable/DataTableVirtual.d.ts → datepicker/DatePicker.d.ts} +130 -121
  733. package/internal-do-not-import-from-here/ux/oxide/datepicker/docs/ExampleComponents.d.ts +1 -0
  734. package/internal-do-not-import-from-here/ux/oxide/datepicker/docs/SampleComponent.d.ts +91 -0
  735. package/internal-do-not-import-from-here/ux/oxide/datepicker/docs/index.d.ts +1 -0
  736. package/internal-do-not-import-from-here/ux/oxide/dialog/Dialog.css.d.ts +6 -5
  737. package/internal-do-not-import-from-here/ux/oxide/dialog/Dialog.d.ts +35 -71
  738. package/internal-do-not-import-from-here/ux/oxide/dialog/docs/DialogExamples.d.ts +1 -1
  739. package/internal-do-not-import-from-here/ux/oxide/dialog/docs/DialogWithAppNavigation.d.ts +91 -0
  740. package/internal-do-not-import-from-here/ux/oxide/dialog/docs/DialogWithFixedContent.d.ts +91 -0
  741. package/internal-do-not-import-from-here/ux/oxide/dialog/docs/DialogWithLeftBar.d.ts +91 -0
  742. package/internal-do-not-import-from-here/ux/oxide/dialog/docs/DialogWithNavigation.d.ts +91 -0
  743. package/internal-do-not-import-from-here/ux/oxide/dialog/docs/SampleDialog.d.ts +91 -0
  744. package/internal-do-not-import-from-here/ux/oxide/dialog/docs/index.d.ts +1 -1
  745. package/internal-do-not-import-from-here/ux/oxide/divider/Divider.css.d.ts +2 -1
  746. package/internal-do-not-import-from-here/ux/oxide/divider/Divider.d.ts +17 -0
  747. package/internal-do-not-import-from-here/ux/oxide/divider/docs/ExampleComponents.d.ts +1 -0
  748. package/internal-do-not-import-from-here/ux/oxide/divider/docs/SampleComponent.d.ts +91 -0
  749. package/internal-do-not-import-from-here/ux/oxide/divider/docs/index.d.ts +1 -0
  750. package/internal-do-not-import-from-here/ux/oxide/draggable/Draggable.d.ts +166 -465
  751. package/internal-do-not-import-from-here/ux/oxide/draggable/docs/ExampleComponents.d.ts +1 -0
  752. package/internal-do-not-import-from-here/ux/oxide/draggable/docs/SampleComponent.d.ts +91 -0
  753. package/internal-do-not-import-from-here/ux/oxide/draggable/docs/index.d.ts +1 -0
  754. package/internal-do-not-import-from-here/ux/oxide/expansionpanel/ExpansionPanel.css.d.ts +5 -4
  755. package/internal-do-not-import-from-here/ux/oxide/expansionpanel/ExpansionPanel.d.ts +10 -45
  756. package/internal-do-not-import-from-here/ux/oxide/expansionpanel/ExpansionPanels.css.d.ts +4 -0
  757. package/internal-do-not-import-from-here/ux/oxide/expansionpanel/ExpansionPanels.d.ts +38 -292
  758. package/internal-do-not-import-from-here/ux/oxide/expansionpanel/docs/ExampleComponents.d.ts +1 -0
  759. package/internal-do-not-import-from-here/ux/oxide/expansionpanel/docs/SampleComponent.d.ts +91 -0
  760. package/internal-do-not-import-from-here/ux/oxide/expansionpanel/docs/index.d.ts +2 -0
  761. package/internal-do-not-import-from-here/ux/oxide/flex/Flex.css.d.ts +4 -0
  762. package/internal-do-not-import-from-here/ux/oxide/{datatable/DataTableServer.d.ts → flex/Flex.d.ts} +167 -162
  763. package/internal-do-not-import-from-here/ux/oxide/flex/docs/BasicFlexTypes.d.ts +91 -0
  764. package/internal-do-not-import-from-here/ux/oxide/flex/docs/Examples.d.ts +1 -0
  765. package/internal-do-not-import-from-here/ux/oxide/flex/docs/index.d.ts +1 -0
  766. package/internal-do-not-import-from-here/ux/oxide/hostprovider/HostProvider.d.ts +174 -0
  767. package/internal-do-not-import-from-here/ux/oxide/hostprovider/docs/ExampleComponents.d.ts +1 -0
  768. package/internal-do-not-import-from-here/ux/oxide/hostprovider/docs/SampleComponent.d.ts +91 -0
  769. package/internal-do-not-import-from-here/ux/oxide/hostprovider/docs/index.d.ts +1 -0
  770. package/internal-do-not-import-from-here/ux/oxide/icon/Icon.css.d.ts +2 -2
  771. package/internal-do-not-import-from-here/ux/oxide/icon/Icon.d.ts +24 -34
  772. package/internal-do-not-import-from-here/ux/oxide/icon/docs/ExampleComponents.d.ts +1 -0
  773. package/internal-do-not-import-from-here/ux/oxide/icon/docs/SampleComponent.d.ts +91 -0
  774. package/internal-do-not-import-from-here/ux/oxide/icon/docs/SystemIcons.d.ts +91 -0
  775. package/internal-do-not-import-from-here/ux/oxide/icon/docs/index.d.ts +1 -0
  776. package/internal-do-not-import-from-here/ux/oxide/image/Image.d.ts +52 -36
  777. package/internal-do-not-import-from-here/ux/oxide/image/docs/ExampleComponents.d.ts +1 -0
  778. package/internal-do-not-import-from-here/ux/oxide/image/docs/SampleComponent.d.ts +91 -0
  779. package/internal-do-not-import-from-here/ux/oxide/image/docs/index.d.ts +1 -0
  780. package/internal-do-not-import-from-here/ux/oxide/infinite-scroll/InfiniteScroll.d.ts +250 -0
  781. package/internal-do-not-import-from-here/ux/oxide/infinite-scroll/docs/ExampleComponents.d.ts +1 -0
  782. package/internal-do-not-import-from-here/ux/oxide/infinite-scroll/docs/SampleComponent.d.ts +91 -0
  783. package/internal-do-not-import-from-here/ux/oxide/infinite-scroll/docs/index.d.ts +1 -0
  784. package/internal-do-not-import-from-here/ux/oxide/layout/docs/ExampleComponents.d.ts +1 -0
  785. package/internal-do-not-import-from-here/ux/oxide/layout/docs/SampleComponent.d.ts +91 -0
  786. package/internal-do-not-import-from-here/ux/oxide/layout/docs/index.d.ts +1 -0
  787. package/internal-do-not-import-from-here/ux/oxide/link/Link.d.ts +252 -0
  788. package/internal-do-not-import-from-here/ux/oxide/link/docs/ExampleComponents.d.ts +1 -0
  789. package/internal-do-not-import-from-here/ux/oxide/link/docs/SampleComponent.d.ts +91 -0
  790. package/internal-do-not-import-from-here/ux/oxide/link/docs/index.d.ts +1 -0
  791. package/internal-do-not-import-from-here/ux/oxide/list/List.css.d.ts +2 -2
  792. package/internal-do-not-import-from-here/ux/oxide/list/List.d.ts +21 -29
  793. package/internal-do-not-import-from-here/ux/oxide/list/ListItem.d.ts +54 -49
  794. package/internal-do-not-import-from-here/ux/oxide/list/docs/ExampleComponents.d.ts +1 -0
  795. package/internal-do-not-import-from-here/ux/oxide/list/docs/SampleComponent.d.ts +91 -0
  796. package/internal-do-not-import-from-here/ux/oxide/list/docs/index.d.ts +2 -0
  797. package/internal-do-not-import-from-here/ux/oxide/main/Main.d.ts +1 -19
  798. package/internal-do-not-import-from-here/ux/oxide/main/docs/ExampleComponents.d.ts +1 -0
  799. package/internal-do-not-import-from-here/ux/oxide/main/docs/SampleComponent.d.ts +91 -0
  800. package/internal-do-not-import-from-here/ux/oxide/main/docs/index.d.ts +1 -0
  801. package/internal-do-not-import-from-here/ux/oxide/menu/Menu.d.ts +116 -317
  802. package/internal-do-not-import-from-here/ux/oxide/menu/docs/ExampleComponents.d.ts +1 -0
  803. package/internal-do-not-import-from-here/ux/oxide/menu/docs/SampleComponent.d.ts +91 -0
  804. package/internal-do-not-import-from-here/ux/oxide/menu/docs/index.d.ts +1 -0
  805. package/internal-do-not-import-from-here/ux/oxide/navigationdrawer/NavigationDrawer.css.d.ts +2 -2
  806. package/internal-do-not-import-from-here/ux/oxide/navigationdrawer/NavigationDrawer.d.ts +12 -319
  807. package/internal-do-not-import-from-here/ux/oxide/navigationdrawer/docs/ExampleComponents.d.ts +1 -0
  808. package/internal-do-not-import-from-here/ux/oxide/navigationdrawer/docs/SampleComponent.d.ts +91 -0
  809. package/internal-do-not-import-from-here/ux/oxide/navigationdrawer/docs/index.d.ts +1 -0
  810. package/internal-do-not-import-from-here/ux/oxide/panel/Panel.css.d.ts +5 -11
  811. package/internal-do-not-import-from-here/ux/oxide/panel/Panel.d.ts +75 -119
  812. package/internal-do-not-import-from-here/ux/oxide/panel/docs/Examples.d.ts +1 -1
  813. package/internal-do-not-import-from-here/ux/oxide/panel/docs/ShowHide.d.ts +91 -0
  814. package/internal-do-not-import-from-here/ux/oxide/panel/docs/index.d.ts +1 -1
  815. package/internal-do-not-import-from-here/ux/oxide/progress/Progress.css.d.ts +1 -0
  816. package/internal-do-not-import-from-here/ux/oxide/progress/Progress.d.ts +131 -0
  817. package/internal-do-not-import-from-here/ux/oxide/progress/docs/ExampleComponents.d.ts +1 -0
  818. package/internal-do-not-import-from-here/ux/oxide/progress/docs/SampleComponent.d.ts +91 -0
  819. package/internal-do-not-import-from-here/ux/oxide/progress/docs/index.d.ts +1 -0
  820. package/internal-do-not-import-from-here/ux/oxide/radio/Radio.d.ts +2 -14
  821. package/internal-do-not-import-from-here/ux/oxide/radio/RadioGroup.css.d.ts +1 -0
  822. package/internal-do-not-import-from-here/ux/oxide/radio/RadioGroup.d.ts +43 -287
  823. package/internal-do-not-import-from-here/ux/oxide/radio/docs/ExampleComponents.d.ts +1 -0
  824. package/internal-do-not-import-from-here/ux/oxide/radio/docs/SampleComponent.d.ts +91 -0
  825. package/internal-do-not-import-from-here/ux/oxide/radio/docs/index.d.ts +1 -0
  826. package/internal-do-not-import-from-here/ux/oxide/select/Select.css.d.ts +2 -3
  827. package/internal-do-not-import-from-here/ux/oxide/select/Select.d.ts +160 -368
  828. package/internal-do-not-import-from-here/ux/oxide/select/docs/ExampleComponents.d.ts +1 -0
  829. package/internal-do-not-import-from-here/ux/oxide/select/docs/SampleComponent.d.ts +91 -0
  830. package/internal-do-not-import-from-here/ux/oxide/select/docs/index.d.ts +1 -0
  831. package/internal-do-not-import-from-here/ux/oxide/skeletonloader/SkeletonLoader.css.d.ts +4 -0
  832. package/internal-do-not-import-from-here/ux/oxide/skeletonloader/SkeletonLoader.d.ts +180 -0
  833. package/internal-do-not-import-from-here/ux/oxide/skeletonloader/docs/ExampleComponents.d.ts +1 -0
  834. package/internal-do-not-import-from-here/ux/oxide/skeletonloader/docs/SampleComponent.d.ts +91 -0
  835. package/internal-do-not-import-from-here/ux/oxide/skeletonloader/docs/index.d.ts +1 -0
  836. package/internal-do-not-import-from-here/ux/oxide/slider/Slider.d.ts +53 -331
  837. package/internal-do-not-import-from-here/ux/oxide/slider/docs/ExampleComponents.d.ts +1 -0
  838. package/internal-do-not-import-from-here/ux/oxide/slider/docs/SampleComponent.d.ts +91 -0
  839. package/internal-do-not-import-from-here/ux/oxide/slider/docs/SampleComponent2.d.ts +91 -0
  840. package/internal-do-not-import-from-here/ux/oxide/slider/docs/SampleComponent3.d.ts +91 -0
  841. package/internal-do-not-import-from-here/ux/oxide/slider/docs/index.d.ts +1 -0
  842. package/internal-do-not-import-from-here/ux/oxide/snackbar/Snackbar.d.ts +0 -293
  843. package/internal-do-not-import-from-here/ux/oxide/snackbar/docs/ExampleComponents.d.ts +1 -0
  844. package/internal-do-not-import-from-here/ux/oxide/snackbar/docs/SampleComponent.d.ts +91 -0
  845. package/internal-do-not-import-from-here/ux/oxide/snackbar/docs/index.d.ts +1 -0
  846. package/internal-do-not-import-from-here/ux/oxide/spacer/docs/ExampleComponents.d.ts +1 -0
  847. package/internal-do-not-import-from-here/ux/oxide/spacer/docs/SampleComponent.d.ts +91 -0
  848. package/internal-do-not-import-from-here/ux/oxide/spacer/docs/index.d.ts +1 -0
  849. package/internal-do-not-import-from-here/ux/oxide/stepper/Stepper.d.ts +0 -6
  850. package/internal-do-not-import-from-here/ux/oxide/stepper/StepperStep.d.ts +0 -24
  851. package/internal-do-not-import-from-here/ux/oxide/stepper/docs/ExampleComponents.d.ts +1 -0
  852. package/internal-do-not-import-from-here/ux/oxide/stepper/docs/SampleComponent.d.ts +91 -0
  853. package/internal-do-not-import-from-here/ux/oxide/stepper/docs/index.d.ts +1 -0
  854. package/internal-do-not-import-from-here/ux/oxide/switch/Switch.d.ts +71 -293
  855. package/internal-do-not-import-from-here/ux/oxide/switch/docs/ExampleComponents.d.ts +1 -0
  856. package/internal-do-not-import-from-here/ux/oxide/switch/docs/SampleComponent.d.ts +91 -0
  857. package/internal-do-not-import-from-here/ux/oxide/switch/docs/index.d.ts +1 -0
  858. package/internal-do-not-import-from-here/ux/oxide/tab/Tab.css.d.ts +3 -2
  859. package/internal-do-not-import-from-here/ux/oxide/tab/Tab.d.ts +16 -317
  860. package/internal-do-not-import-from-here/ux/oxide/tab/Tabs.css.d.ts +3 -2
  861. package/internal-do-not-import-from-here/ux/oxide/tab/Tabs.d.ts +21 -17
  862. package/internal-do-not-import-from-here/ux/oxide/tab/docs/ExampleComponents.d.ts +1 -0
  863. package/internal-do-not-import-from-here/ux/oxide/tab/docs/SampleComponent.d.ts +91 -0
  864. package/internal-do-not-import-from-here/ux/oxide/tab/docs/index.d.ts +2 -0
  865. package/internal-do-not-import-from-here/ux/oxide/table/docs/ExampleComponents.d.ts +1 -0
  866. package/internal-do-not-import-from-here/ux/oxide/table/docs/SampleComponent.d.ts +91 -0
  867. package/internal-do-not-import-from-here/ux/oxide/table/docs/index.d.ts +1 -0
  868. package/internal-do-not-import-from-here/ux/oxide/text/Text.css.d.ts +3 -0
  869. package/internal-do-not-import-from-here/ux/oxide/text/Text.d.ts +38 -33
  870. package/internal-do-not-import-from-here/ux/oxide/text/docs/ExampleComponents.d.ts +1 -0
  871. package/internal-do-not-import-from-here/ux/oxide/text/docs/SampleComponent.d.ts +91 -0
  872. package/internal-do-not-import-from-here/ux/oxide/text/docs/SampleGradients.d.ts +91 -0
  873. package/internal-do-not-import-from-here/ux/oxide/text/docs/index.d.ts +1 -0
  874. package/internal-do-not-import-from-here/ux/oxide/textarea/TextArea.d.ts +87 -315
  875. package/internal-do-not-import-from-here/ux/oxide/textfield/TextField.css.d.ts +0 -8
  876. package/internal-do-not-import-from-here/ux/oxide/textfield/TextField.d.ts +182 -377
  877. package/internal-do-not-import-from-here/ux/oxide/textfield/docs/ExampleComponents.d.ts +1 -0
  878. package/internal-do-not-import-from-here/ux/oxide/textfield/docs/SampleComponent.d.ts +91 -0
  879. package/internal-do-not-import-from-here/ux/oxide/textfield/docs/index.d.ts +1 -0
  880. package/internal-do-not-import-from-here/ux/oxide/toolbar/Toolbar.css.d.ts +4 -1
  881. package/internal-do-not-import-from-here/ux/oxide/toolbar/Toolbar.d.ts +153 -117
  882. package/internal-do-not-import-from-here/ux/oxide/toolbar/docs/ToolbarExamples.d.ts +1 -1
  883. package/internal-do-not-import-from-here/ux/oxide/toolbar/docs/index.d.ts +1 -1
  884. package/internal-do-not-import-from-here/ux/oxide/tooltip/Tooltip.d.ts +28 -27
  885. package/internal-do-not-import-from-here/ux/oxide/tooltip/docs/ExampleComponents.d.ts +1 -0
  886. package/internal-do-not-import-from-here/ux/oxide/tooltip/docs/SampleComponent.d.ts +91 -0
  887. package/internal-do-not-import-from-here/ux/oxide/tooltip/docs/index.d.ts +1 -0
  888. package/internal-do-not-import-from-here/ux/oxide/treeview/Treeview.d.ts +7 -7
  889. package/internal-do-not-import-from-here/ux/oxide/treeview/docs/TreeviewExamples.d.ts +1 -1
  890. package/internal-do-not-import-from-here/ux/oxide/treeview/docs/index.d.ts +1 -1
  891. package/internal-do-not-import-from-here/ux/oxide/validation/Validation.d.ts +126 -0
  892. package/internal-do-not-import-from-here/ux/oxide/validation/docs/AdvanceExample.d.ts +91 -0
  893. package/internal-do-not-import-from-here/ux/oxide/validation/docs/ExampleComponents.d.ts +1 -0
  894. package/internal-do-not-import-from-here/ux/oxide/validation/docs/SimpleExample.d.ts +91 -0
  895. package/internal-do-not-import-from-here/ux/oxide/validation/docs/index.d.ts +1 -0
  896. package/internal-do-not-import-from-here/ux/permissioninput/IPermissionInput.d.ts +0 -30
  897. package/internal-do-not-import-from-here/ux/permissioninput/PermissionInput.d.ts +315 -46
  898. package/internal-do-not-import-from-here/ux/persona/Persona.d.ts +1 -1
  899. package/internal-do-not-import-from-here/ux/profilecard/IProfileCard.d.ts +0 -29
  900. package/internal-do-not-import-from-here/ux/profilecard/ProfileCard.d.ts +273 -34
  901. package/internal-do-not-import-from-here/ux/profilecard/ProfileCardDialog.d.ts +1 -2
  902. package/internal-do-not-import-from-here/ux/profilecard/ProfileCardRenderer.d.ts +69 -26
  903. package/internal-do-not-import-from-here/ux/profilecard/index.d.ts +0 -1
  904. package/internal-do-not-import-from-here/ux/properties/apis/PropertyBindingProviderApi.d.ts +1 -0
  905. package/internal-do-not-import-from-here/ux/properties/block/PropertyBlock.css.d.ts +6 -0
  906. package/internal-do-not-import-from-here/ux/properties/block/PropertyBlock.d.ts +91 -0
  907. package/internal-do-not-import-from-here/ux/properties/block/PropertyBlockSettings.css.d.ts +6 -0
  908. package/internal-do-not-import-from-here/ux/properties/block/PropertyBlockSettings.d.ts +91 -0
  909. package/internal-do-not-import-from-here/ux/properties/block/components/PropertySettings.css.d.ts +0 -0
  910. package/internal-do-not-import-from-here/ux/properties/block/components/PropertySettings.d.ts +426 -0
  911. package/internal-do-not-import-from-here/ux/properties/block/shared/PropertyBlockModels.d.ts +15 -0
  912. package/internal-do-not-import-from-here/ux/properties/block/shared/index.d.ts +1 -0
  913. package/internal-do-not-import-from-here/ux/properties/builtins/birthday/BirthdayDisplay.css.d.ts +2 -0
  914. package/internal-do-not-import-from-here/ux/properties/builtins/birthday/BirthdayDisplay.d.ts +42 -14
  915. package/internal-do-not-import-from-here/ux/properties/builtins/birthday/BirthdayEditor.d.ts +26 -24
  916. package/internal-do-not-import-from-here/ux/properties/builtins/boolean/BooleanDisplay.css.d.ts +2 -0
  917. package/internal-do-not-import-from-here/ux/properties/builtins/boolean/BooleanDisplay.d.ts +24 -12
  918. package/internal-do-not-import-from-here/ux/properties/builtins/boolean/BooleanEditor.d.ts +30 -22
  919. package/internal-do-not-import-from-here/ux/properties/builtins/businessprofile/BusinessProfileDisplay.css.d.ts +9 -0
  920. package/internal-do-not-import-from-here/ux/properties/builtins/businessprofile/BusinessProfileDisplay.d.ts +124 -0
  921. package/internal-do-not-import-from-here/ux/properties/builtins/businessprofile/BusinessProfileEditor.css.d.ts +9 -0
  922. package/internal-do-not-import-from-here/ux/properties/builtins/businessprofile/BusinessProfileEditor.d.ts +129 -0
  923. package/internal-do-not-import-from-here/ux/properties/builtins/businessprofile/BusinessProfilePropertyDefinition.d.ts +1 -0
  924. package/internal-do-not-import-from-here/ux/properties/builtins/date/DateDisplay.css.d.ts +2 -0
  925. package/internal-do-not-import-from-here/ux/properties/builtins/date/DateDisplay.d.ts +42 -14
  926. package/internal-do-not-import-from-here/ux/properties/builtins/date/DateEditor.d.ts +26 -24
  927. package/internal-do-not-import-from-here/ux/properties/builtins/date-time/DateTimeConfiguration.d.ts +126 -0
  928. package/internal-do-not-import-from-here/ux/properties/builtins/date-time/DateTimeDisplay.css.d.ts +2 -0
  929. package/internal-do-not-import-from-here/ux/properties/builtins/date-time/DateTimeDisplay.d.ts +42 -14
  930. package/internal-do-not-import-from-here/ux/properties/builtins/date-time/DateTimeEditor.d.ts +26 -24
  931. package/internal-do-not-import-from-here/ux/properties/builtins/email/EmailDisplay.css.d.ts +2 -0
  932. package/internal-do-not-import-from-here/ux/properties/builtins/email/EmailDisplay.d.ts +21 -10
  933. package/internal-do-not-import-from-here/ux/properties/builtins/email/EmailEditor.d.ts +26 -20
  934. package/internal-do-not-import-from-here/ux/properties/builtins/html/HtmlConfiguration.d.ts +20 -5
  935. package/internal-do-not-import-from-here/ux/properties/builtins/html/HtmlDisplay.css.d.ts +3 -0
  936. package/internal-do-not-import-from-here/ux/properties/builtins/html/HtmlDisplay.d.ts +21 -10
  937. package/internal-do-not-import-from-here/ux/properties/builtins/html/HtmlEditor.d.ts +31 -21
  938. package/internal-do-not-import-from-here/ux/properties/builtins/identity/IdentityConfiguration.d.ts +20 -5
  939. package/internal-do-not-import-from-here/ux/properties/builtins/identity/IdentityDisplay.css.d.ts +3 -0
  940. package/internal-do-not-import-from-here/ux/properties/builtins/identity/IdentityDisplay.d.ts +94 -13
  941. package/internal-do-not-import-from-here/ux/properties/builtins/identity/IdentityEditor.d.ts +33 -25
  942. package/internal-do-not-import-from-here/ux/properties/builtins/image/ImageConfiguration.d.ts +20 -5
  943. package/internal-do-not-import-from-here/ux/properties/builtins/image/ImageDisplay.css.d.ts +3 -0
  944. package/internal-do-not-import-from-here/ux/properties/builtins/image/ImageDisplay.d.ts +21 -10
  945. package/internal-do-not-import-from-here/ux/properties/builtins/image/ImageEditor.d.ts +21 -21
  946. package/internal-do-not-import-from-here/ux/properties/builtins/integer/IntegerDisplay.css.d.ts +2 -0
  947. package/internal-do-not-import-from-here/ux/properties/builtins/integer/IntegerDisplay.d.ts +24 -12
  948. package/internal-do-not-import-from-here/ux/properties/builtins/integer/IntegerEditor.d.ts +31 -22
  949. package/internal-do-not-import-from-here/ux/properties/builtins/language/LanguageDisplay.css.d.ts +3 -0
  950. package/internal-do-not-import-from-here/ux/properties/builtins/language/LanguageDisplay.d.ts +24 -12
  951. package/internal-do-not-import-from-here/ux/properties/builtins/language/LanguageEditor.d.ts +30 -22
  952. package/internal-do-not-import-from-here/ux/properties/builtins/link/LinkConfiguration.d.ts +20 -5
  953. package/internal-do-not-import-from-here/ux/properties/builtins/link/LinkDisplay.css.d.ts +9 -0
  954. package/internal-do-not-import-from-here/ux/properties/builtins/link/LinkDisplay.d.ts +24 -12
  955. package/internal-do-not-import-from-here/ux/properties/builtins/link/LinkEditor.d.ts +24 -22
  956. package/internal-do-not-import-from-here/ux/properties/builtins/media/MediaDisplay.css.d.ts +3 -0
  957. package/internal-do-not-import-from-here/ux/properties/builtins/media/MediaDisplay.d.ts +21 -10
  958. package/internal-do-not-import-from-here/ux/properties/builtins/media/MediaEditor.d.ts +26 -21
  959. package/internal-do-not-import-from-here/ux/properties/builtins/multiline-text/MultilineTextDisplay.css.d.ts +2 -0
  960. package/internal-do-not-import-from-here/ux/properties/builtins/multiline-text/MultilineTextDisplay.d.ts +24 -12
  961. package/internal-do-not-import-from-here/ux/properties/builtins/multiline-text/MultilineTextEditor.d.ts +24 -22
  962. package/internal-do-not-import-from-here/ux/properties/builtins/multilingualText/MultilingualTextDisplay.css.d.ts +2 -0
  963. package/internal-do-not-import-from-here/ux/properties/builtins/multilingualText/MultilingualTextDisplay.d.ts +24 -12
  964. package/internal-do-not-import-from-here/ux/properties/builtins/multilingualText/MultilingualTextEditor.d.ts +24 -22
  965. package/internal-do-not-import-from-here/ux/properties/builtins/phone-number/PhoneNumberDisplay.css.d.ts +2 -0
  966. package/internal-do-not-import-from-here/ux/properties/builtins/phone-number/PhoneNumberDisplay.d.ts +43 -15
  967. package/internal-do-not-import-from-here/ux/properties/builtins/phone-number/PhoneNumberEditor.d.ts +21 -20
  968. package/internal-do-not-import-from-here/ux/properties/builtins/tags/TagsDisplay.css.d.ts +10 -0
  969. package/internal-do-not-import-from-here/ux/properties/builtins/tags/TagsDisplay.d.ts +268 -0
  970. package/internal-do-not-import-from-here/ux/properties/builtins/tags/TagsEditor.css.d.ts +7 -0
  971. package/internal-do-not-import-from-here/ux/properties/builtins/tags/TagsEditor.d.ts +141 -0
  972. package/internal-do-not-import-from-here/ux/properties/builtins/tags/TagsPropertyDefinition.d.ts +1 -0
  973. package/internal-do-not-import-from-here/ux/properties/builtins/text/TextDisplay.css.d.ts +2 -0
  974. package/internal-do-not-import-from-here/ux/properties/builtins/text/TextDisplay.d.ts +24 -12
  975. package/internal-do-not-import-from-here/ux/properties/builtins/text/TextEditor.css.d.ts +2 -0
  976. package/internal-do-not-import-from-here/ux/properties/builtins/text/TextEditor.d.ts +30 -22
  977. package/internal-do-not-import-from-here/ux/properties/builtins/time/TimeDisplay.css.d.ts +2 -0
  978. package/internal-do-not-import-from-here/ux/properties/builtins/time/TimeDisplay.d.ts +42 -14
  979. package/internal-do-not-import-from-here/ux/properties/builtins/time/TimeEditor.d.ts +26 -24
  980. package/internal-do-not-import-from-here/ux/properties/builtins/usertype/UserTypeDisplay.css.d.ts +9 -0
  981. package/internal-do-not-import-from-here/ux/properties/builtins/usertype/UserTypeDisplay.d.ts +124 -0
  982. package/internal-do-not-import-from-here/ux/properties/builtins/usertype/UserTypeEditor.css.d.ts +9 -0
  983. package/internal-do-not-import-from-here/ux/properties/builtins/usertype/UserTypeEditor.d.ts +129 -0
  984. package/internal-do-not-import-from-here/ux/properties/builtins/usertype/UserTypePropertyDefinition.d.ts +1 -0
  985. package/internal-do-not-import-from-here/ux/properties/models/PropertyApi.d.ts +10 -2
  986. package/internal-do-not-import-from-here/ux/properties/models/PropertyBindingProvider.d.ts +8 -0
  987. package/internal-do-not-import-from-here/ux/properties/models/PropertyInput.d.ts +2 -0
  988. package/internal-do-not-import-from-here/ux/properties/models/PropertyPicker.d.ts +6 -2
  989. package/internal-do-not-import-from-here/ux/properties/models/PropertySettingsLock.d.ts +25 -0
  990. package/internal-do-not-import-from-here/ux/properties/models/index.d.ts +2 -0
  991. package/internal-do-not-import-from-here/ux/properties/property-configuration/LabelOptionsRenderer.d.ts +22 -6
  992. package/internal-do-not-import-from-here/ux/properties/property-configuration/PropertyConfiguration.d.ts +22 -6
  993. package/internal-do-not-import-from-here/ux/properties/property-configuration/PropertyConfigurationV2.d.ts +520 -0
  994. package/internal-do-not-import-from-here/ux/properties/property-configuration/PropertyLocking.d.ts +15 -5
  995. package/internal-do-not-import-from-here/ux/properties/property-picker/PropertyInput.d.ts +5 -0
  996. package/internal-do-not-import-from-here/ux/properties/property-picker/PropertyPicker.d.ts +26 -5
  997. package/internal-do-not-import-from-here/ux/properties/property-renderer/PropertyBindingValueRenderer.d.ts +352 -18
  998. package/internal-do-not-import-from-here/ux/properties/property-renderer/PropertyValueRenderer.d.ts +471 -53
  999. package/internal-do-not-import-from-here/ux/propertyBindingProvider/propertyBindingProviderRegistration.d.ts +1 -0
  1000. package/internal-do-not-import-from-here/ux/richtexteditor/EditorMenuBar.d.ts +4 -4
  1001. package/internal-do-not-import-from-here/ux/richtexteditor/MentionComponent/MentionComponent.d.ts +5 -3
  1002. package/internal-do-not-import-from-here/ux/richtexteditor/RichTextEditor.d.ts +14 -14
  1003. package/internal-do-not-import-from-here/ux/richtexteditor/RichTextEditorSettings.d.ts +1 -2
  1004. package/internal-do-not-import-from-here/ux/richtexteditor/TextCompletionPanel/TextCompletionPanel.d.ts +37 -480
  1005. package/internal-do-not-import-from-here/ux/richtexteditor/TextCompletionPanel/loc/localize.d.ts +2 -0
  1006. package/internal-do-not-import-from-here/ux/richtexteditor/extensions/Heading/HeadingNode.d.ts +1 -2
  1007. package/internal-do-not-import-from-here/ux/richtexteditor/extensions/Heading/index.d.ts +1 -0
  1008. package/internal-do-not-import-from-here/ux/richtexteditor/extensions/MediaPicker/MediaPickerToolbar.d.ts +8 -3
  1009. package/internal-do-not-import-from-here/ux/richtexteditor/extensions/MediaPicker/{ParsingMicrosoftWordImageHandler.d.ts → PastingMicrosoftOfficeImageHandler.d.ts} +1 -1
  1010. package/internal-do-not-import-from-here/ux/richtexteditor/extensions/TextCompletion/TextCompletionHandler.d.ts +11 -1
  1011. package/internal-do-not-import-from-here/ux/richtexteditor/extensions/TextCompletion/TextCompletionMenu.d.ts +16 -0
  1012. package/internal-do-not-import-from-here/ux/richtexteditor/extensions/TextCompletion/TextCompletionToolbar.d.ts +22 -3
  1013. package/internal-do-not-import-from-here/ux/richtexteditor/extensions/loc/localize.d.ts +1 -0
  1014. package/internal-do-not-import-from-here/ux/securitytrimmer/SecurityTrimmer.d.ts +219 -0
  1015. package/internal-do-not-import-from-here/ux/settings/SettingsPane.d.ts +7 -7
  1016. package/internal-do-not-import-from-here/ux/shapedivider/ShapeDivider.d.ts +2 -0
  1017. package/internal-do-not-import-from-here/ux/sharepointvideo/SharepointVideo.d.ts +1 -0
  1018. package/internal-do-not-import-from-here/ux/signin/SignInBlock.css.d.ts +15 -5
  1019. package/internal-do-not-import-from-here/ux/signin/SignInFactory.d.ts +9 -0
  1020. package/internal-do-not-import-from-here/ux/signin/identitycreationrequest/ConfirmEmailView.d.ts +101 -0
  1021. package/internal-do-not-import-from-here/ux/{compositiontests/CompositionBlockCurrent.d.ts → signin/identitycreationrequest/IdentityCreationRequestView.d.ts} +7 -12
  1022. package/internal-do-not-import-from-here/ux/signin/loc/localize.d.ts +21 -0
  1023. package/internal-do-not-import-from-here/ux/signin/omnia/providers/MagicLinkProvider.d.ts +2 -2
  1024. package/internal-do-not-import-from-here/ux/signin/omnia/providers/OtpProvider.d.ts +2 -2
  1025. package/internal-do-not-import-from-here/ux/signin/omnia/providers/PasswordProvider.d.ts +2 -2
  1026. package/internal-do-not-import-from-here/ux/signout/SignOut.css.d.ts +1 -1
  1027. package/internal-do-not-import-from-here/ux/social/Comment.d.ts +569 -74
  1028. package/internal-do-not-import-from-here/ux/social/CommentDialog.d.ts +92 -44
  1029. package/internal-do-not-import-from-here/ux/social/IComment.d.ts +0 -34
  1030. package/internal-do-not-import-from-here/ux/social/ILike.d.ts +0 -27
  1031. package/internal-do-not-import-from-here/ux/social/IPeopleTagging.d.ts +0 -26
  1032. package/internal-do-not-import-from-here/ux/social/Like.d.ts +359 -68
  1033. package/internal-do-not-import-from-here/ux/social/PeopleTagging.d.ts +255 -26
  1034. package/internal-do-not-import-from-here/ux/social/index.d.ts +0 -4
  1035. package/internal-do-not-import-from-here/ux/social/likehandler/LikeActionSettings.d.ts +141 -16
  1036. package/internal-do-not-import-from-here/ux/social/templates/CommentLikeTemplate.css.d.ts +0 -26
  1037. package/internal-do-not-import-from-here/ux/social/templates/CommentLikeTemplate.d.ts +340 -79
  1038. package/internal-do-not-import-from-here/ux/social/templates/ILikeListingTemplate.d.ts +0 -20
  1039. package/internal-do-not-import-from-here/ux/social/templates/LikeListingTemplate.d.ts +171 -40
  1040. package/internal-do-not-import-from-here/ux/spacingpicker/SpacingPicker3.css.d.ts +15 -0
  1041. package/internal-do-not-import-from-here/ux/spacingpicker/{SpacingPicker2.d.ts → SpacingPicker3.d.ts} +2 -57
  1042. package/internal-do-not-import-from-here/ux/spacingpicker/docs/ExampleComponents.d.ts +1 -0
  1043. package/internal-do-not-import-from-here/ux/spacingpicker/docs/SampleComponent.d.ts +91 -0
  1044. package/internal-do-not-import-from-here/ux/spacingpicker/docs/index.d.ts +1 -0
  1045. package/internal-do-not-import-from-here/ux/spacingpicker/loc/localize.d.ts +2 -0
  1046. package/internal-do-not-import-from-here/ux/statuscoderenderer/NavigationTrackingHandler.d.ts +1 -0
  1047. package/internal-do-not-import-from-here/ux/statuscoderenderer/StatusCodeLayoutApi.d.ts +21 -0
  1048. package/internal-do-not-import-from-here/ux/statuscoderenderer/StatusCodeRenderer.d.ts +101 -0
  1049. package/internal-do-not-import-from-here/ux/statuscoderenderer/index.d.ts +1 -0
  1050. package/internal-do-not-import-from-here/ux/statuscoderenderer/layoutregistration/NotFoundDefaultLayout.d.ts +1 -0
  1051. package/internal-do-not-import-from-here/ux/statuscoderenderer/layoutregistration/Registration.d.ts +1 -0
  1052. package/internal-do-not-import-from-here/ux/statuscoderenderer/layoutregistration/UnauthorizedDefaultLayout.d.ts +1 -0
  1053. package/internal-do-not-import-from-here/ux/templatepicker/TemplatePicker.css.d.ts +1 -1
  1054. package/internal-do-not-import-from-here/ux/theming/ThemeManager.d.ts +1 -1
  1055. package/internal-do-not-import-from-here/ux/theming/ThemeStore.d.ts +2 -2
  1056. package/internal-do-not-import-from-here/ux/theming/Theming.d.ts +3 -0
  1057. package/internal-do-not-import-from-here/ux/theming-v2/BlueprintDefinitionStore.d.ts +23 -0
  1058. package/internal-do-not-import-from-here/ux/theming-v2/BlueprintStore.d.ts +33 -15
  1059. package/internal-do-not-import-from-here/ux/theming-v2/ColorManager.d.ts +1 -1
  1060. package/internal-do-not-import-from-here/ux/theming-v2/ColorSchemaDefinitionStore.d.ts +23 -0
  1061. package/internal-do-not-import-from-here/ux/theming-v2/ColorSchemaManager.d.ts +1 -1
  1062. package/internal-do-not-import-from-here/ux/theming-v2/ColorSchemaStore.d.ts +39 -27
  1063. package/internal-do-not-import-from-here/ux/theming-v2/RegistrationHandlerDefinitions.d.ts +1 -0
  1064. package/internal-do-not-import-from-here/ux/theming-v2/RegistrationHandlerTheming.d.ts +1 -0
  1065. package/internal-do-not-import-from-here/ux/theming-v2/ThemeContextStore.d.ts +244 -150
  1066. package/internal-do-not-import-from-here/ux/theming-v2/ThemeDefinitionStoreV2.d.ts +26 -23
  1067. package/internal-do-not-import-from-here/ux/theming-v2/ThemeStoreV2.d.ts +27 -19
  1068. package/internal-do-not-import-from-here/ux/theming-v2/TypographyDefinitionStore.d.ts +23 -0
  1069. package/internal-do-not-import-from-here/ux/theming-v2/VelcronDefinitionStore.d.ts +33 -0
  1070. package/internal-do-not-import-from-here/ux/theming-v2/admin/DesignJourney.d.ts +91 -0
  1071. package/internal-do-not-import-from-here/ux/theming-v2/admin/Registrations.d.ts +1 -0
  1072. package/internal-do-not-import-from-here/ux/theming-v2/admin/blades/definitions/DefinitionsJourney.d.ts +97 -0
  1073. package/internal-do-not-import-from-here/ux/theming-v2/admin/blades/definitions/blueprints/BlueprintsJourney.d.ts +97 -0
  1074. package/internal-do-not-import-from-here/ux/theming-v2/admin/blades/definitions/blueprints/blades/BlockBlade.d.ts +118 -0
  1075. package/internal-do-not-import-from-here/ux/theming-v2/admin/blades/definitions/blueprints/blades/ComponentsBlade.d.ts +118 -0
  1076. package/internal-do-not-import-from-here/ux/theming-v2/admin/blades/definitions/blueprints/blades/EditBlueprint.d.ts +135 -0
  1077. package/internal-do-not-import-from-here/ux/theming-v2/admin/blades/definitions/blueprints/blades/SpacingBlade.d.ts +118 -0
  1078. package/internal-do-not-import-from-here/ux/theming-v2/admin/blades/definitions/blueprints/blades/TypographyBlade.d.ts +118 -0
  1079. package/internal-do-not-import-from-here/ux/theming-v2/admin/blades/definitions/blueprints/components/BlockPreview.d.ts +91 -0
  1080. package/internal-do-not-import-from-here/ux/theming-v2/admin/blades/definitions/blueprints/store/BlueprintEditorStore.d.ts +37 -0
  1081. package/internal-do-not-import-from-here/ux/theming-v2/admin/blades/definitions/colorschemes/ColorSchemasJourney.d.ts +97 -0
  1082. package/internal-do-not-import-from-here/ux/theming-v2/admin/blades/definitions/colorschemes/blades/ColorSchemaDefinitionBlade.d.ts +157 -0
  1083. package/internal-do-not-import-from-here/ux/theming-v2/admin/blades/definitions/colorschemes/blades/ColorSchemasBlade.d.ts +138 -0
  1084. package/internal-do-not-import-from-here/ux/theming-v2/admin/blades/definitions/typography/TypographyJourney.d.ts +97 -0
  1085. package/internal-do-not-import-from-here/ux/theming-v2/admin/blades/definitions/typography/blades/TypographyDefinitionBlade.css.d.ts +4 -0
  1086. package/internal-do-not-import-from-here/ux/theming-v2/admin/blades/definitions/typography/blades/TypographyDefinitionBlade.d.ts +157 -0
  1087. package/internal-do-not-import-from-here/ux/theming-v2/admin/blades/definitions/typography/blades/TypographySettingsBlade.d.ts +1829 -0
  1088. package/internal-do-not-import-from-here/ux/theming-v2/admin/blades/definitions/typography/blades/TypographysBlade.d.ts +138 -0
  1089. package/internal-do-not-import-from-here/ux/theming-v2/admin/blades/themes/ThemesJourney.d.ts +97 -0
  1090. package/internal-do-not-import-from-here/ux/theming-v2/admin/blades/themes/blades/EditThemeBlade.d.ts +157 -0
  1091. package/internal-do-not-import-from-here/ux/theming-v2/{themes → designkits/core}/Colors.d.ts +2 -2
  1092. package/internal-do-not-import-from-here/ux/theming-v2/designkits/core/ThemeDefinitionInstance.d.ts +9 -0
  1093. package/internal-do-not-import-from-here/ux/theming-v2/designkits/core/index.d.ts +2 -0
  1094. package/internal-do-not-import-from-here/ux/theming-v2/designkits/default/DefinitionRegistrations.d.ts +1 -0
  1095. package/internal-do-not-import-from-here/ux/theming-v2/designkits/default/ThemeRegistrations.d.ts +1 -0
  1096. package/internal-do-not-import-from-here/ux/theming-v2/designkits/default/definitions/actions/Todo.d.ts +2 -0
  1097. package/internal-do-not-import-from-here/ux/theming-v2/designkits/default/definitions/actions/index.d.ts +1 -0
  1098. package/internal-do-not-import-from-here/ux/theming-v2/designkits/default/definitions/cards/BannerImageTop.d.ts +2 -0
  1099. package/internal-do-not-import-from-here/ux/theming-v2/designkits/default/definitions/cards/RollupAvatar.d.ts +2 -0
  1100. package/internal-do-not-import-from-here/ux/theming-v2/designkits/default/definitions/cards/RollupImageLarge.d.ts +2 -0
  1101. package/internal-do-not-import-from-here/ux/theming-v2/designkits/default/definitions/cards/RollupImageSmall.d.ts +4 -0
  1102. package/internal-do-not-import-from-here/ux/theming-v2/designkits/default/definitions/cards/RollupImageTop.d.ts +2 -0
  1103. package/internal-do-not-import-from-here/ux/theming-v2/designkits/default/definitions/cards/RollupImageTopAvatar.d.ts +2 -0
  1104. package/internal-do-not-import-from-here/ux/theming-v2/designkits/default/definitions/cards/index.d.ts +6 -0
  1105. package/internal-do-not-import-from-here/ux/theming-v2/designkits/default/definitions/content/Contentblocks.d.ts +1 -0
  1106. package/internal-do-not-import-from-here/ux/theming-v2/designkits/default/definitions/content/Image.d.ts +2 -0
  1107. package/internal-do-not-import-from-here/ux/theming-v2/designkits/default/definitions/content/ImageText.d.ts +3 -0
  1108. package/internal-do-not-import-from-here/ux/theming-v2/designkits/default/definitions/content/Quote.d.ts +2 -0
  1109. package/internal-do-not-import-from-here/ux/theming-v2/designkits/default/definitions/content/Text.d.ts +2 -0
  1110. package/internal-do-not-import-from-here/ux/theming-v2/designkits/default/definitions/content/index.d.ts +4 -0
  1111. package/internal-do-not-import-from-here/ux/theming-v2/designkits/default/definitions/headers/BlockTextIcon.d.ts +3 -0
  1112. package/internal-do-not-import-from-here/ux/theming-v2/designkits/default/definitions/headers/Pageheader.d.ts +2 -0
  1113. package/internal-do-not-import-from-here/ux/theming-v2/designkits/default/definitions/headers/index.d.ts +2 -0
  1114. package/internal-do-not-import-from-here/ux/theming-v2/designkits/default/definitions/index.d.ts +4 -0
  1115. package/internal-do-not-import-from-here/ux/theming-v2/designkits/default/index.d.ts +1 -0
  1116. package/internal-do-not-import-from-here/ux/theming-v2/designkits/default/themes/Blueprints.d.ts +25 -0
  1117. package/internal-do-not-import-from-here/ux/theming-v2/designkits/default/themes/SpacingTypes.d.ts +25 -0
  1118. package/internal-do-not-import-from-here/ux/theming-v2/designkits/default/themes/ThemeDefinitions.d.ts +23 -0
  1119. package/internal-do-not-import-from-here/ux/theming-v2/designkits/default/themes/TypographyTypes.d.ts +320 -0
  1120. package/internal-do-not-import-from-here/ux/theming-v2/designkits/default/themes/index.d.ts +1 -0
  1121. package/internal-do-not-import-from-here/ux/theming-v2/designkits/default/useDefaultDesignKit.d.ts +49 -0
  1122. package/internal-do-not-import-from-here/ux/theming-v2/designkits/documentation/ApiRegistrations.d.ts +0 -0
  1123. package/internal-do-not-import-from-here/ux/theming-v2/designkits/documentation/index.d.ts +1 -0
  1124. package/internal-do-not-import-from-here/ux/theming-v2/designkits/documentation/themes/Blueprints.d.ts +7 -0
  1125. package/internal-do-not-import-from-here/ux/theming-v2/designkits/documentation/themes/SpacingTypes.d.ts +17 -0
  1126. package/internal-do-not-import-from-here/ux/theming-v2/designkits/documentation/themes/ThemeDefinitions.d.ts +6 -0
  1127. package/internal-do-not-import-from-here/ux/theming-v2/designkits/documentation/themes/TypographyTypes.d.ts +98 -0
  1128. package/internal-do-not-import-from-here/ux/theming-v2/designkits/documentation/themes/index.d.ts +1 -0
  1129. package/internal-do-not-import-from-here/ux/theming-v2/designkits/documentation/useDocumentationDesignKit.d.ts +6 -0
  1130. package/internal-do-not-import-from-here/ux/theming-v2/designkits/editor/ThemeRegistrations.d.ts +1 -0
  1131. package/internal-do-not-import-from-here/ux/theming-v2/designkits/editor/index.d.ts +1 -0
  1132. package/internal-do-not-import-from-here/ux/theming-v2/{themes → designkits/editor/themes}/Blueprints.d.ts +5 -2
  1133. package/internal-do-not-import-from-here/ux/theming-v2/designkits/editor/themes/SpacingTypes.d.ts +17 -0
  1134. package/internal-do-not-import-from-here/ux/theming-v2/designkits/editor/themes/ThemeDefinitions.d.ts +8 -0
  1135. package/internal-do-not-import-from-here/ux/theming-v2/designkits/editor/themes/TypographyTypes.d.ts +98 -0
  1136. package/internal-do-not-import-from-here/ux/theming-v2/designkits/editor/themes/index.d.ts +1 -0
  1137. package/internal-do-not-import-from-here/ux/theming-v2/designkits/editor/useEditorDesignKit.d.ts +7 -0
  1138. package/internal-do-not-import-from-here/ux/theming-v2/designkits/index.d.ts +1 -0
  1139. package/internal-do-not-import-from-here/ux/theming-v2/designkits/pages/DefinitionRegistrations.d.ts +1 -0
  1140. package/internal-do-not-import-from-here/ux/theming-v2/designkits/pages/definitions/headers/HeaderWithImage.d.ts +2 -0
  1141. package/internal-do-not-import-from-here/ux/theming-v2/designkits/pages/definitions/property/PropertiesWithColumLayout.d.ts +2 -0
  1142. package/internal-do-not-import-from-here/ux/theming-v2/designkits/pages/definitions/property/PropertiesWithRowLayout.d.ts +2 -0
  1143. package/internal-do-not-import-from-here/ux/theming-v2/designkits/useDesignKits.d.ts +64 -0
  1144. package/internal-do-not-import-from-here/ux/theming-v2/index.d.ts +6 -1
  1145. package/internal-do-not-import-from-here/ux/theming-v2/styling/UseStyling.d.ts +536 -0
  1146. package/internal-do-not-import-from-here/ux/theming-v2/styling/index.d.ts +1 -3
  1147. package/internal-do-not-import-from-here/ux/theming-v2/styling/styles/Blueprints.d.ts +16 -0
  1148. package/internal-do-not-import-from-here/ux/theming-v2/styling/styles/Colors.d.ts +12 -0
  1149. package/internal-do-not-import-from-here/ux/theming-v2/styling/styles/General.d.ts +7 -0
  1150. package/internal-do-not-import-from-here/ux/theming-v2/styling/styles/Spacing.d.ts +12 -0
  1151. package/internal-do-not-import-from-here/ux/theming-v2/styling/styles/Typography.d.ts +45 -0
  1152. package/internal-do-not-import-from-here/ux/theming-v2/styling/styles/index.d.ts +5 -0
  1153. package/internal-do-not-import-from-here/ux/theming-v2/themedefinitionpicker/ThemeDefinitionPicker.d.ts +26 -8
  1154. package/internal-do-not-import-from-here/ux/theming-v2/themeeditor/ThemeEditor.d.ts +8 -8
  1155. package/internal-do-not-import-from-here/ux/theming-v2/themeeditor/components/blueprints/components/BlockBlueprintEditor.d.ts +0 -91
  1156. package/internal-do-not-import-from-here/ux/theming-v2/themeeditor/store/BlueprintEditorStore.d.ts +20 -11
  1157. package/internal-do-not-import-from-here/ux/theming-v2/themeeditor/store/ThemeEditorStore.d.ts +25 -14
  1158. package/internal-do-not-import-from-here/ux/theming-v2/themeprovider/ThemeProvider.d.ts +2447 -0
  1159. package/internal-do-not-import-from-here/ux/timeperiodpicker/ITimePeriodPicker.d.ts +0 -24
  1160. package/internal-do-not-import-from-here/ux/timeperiodpicker/TimePeriodPicker.d.ts +507 -29
  1161. package/internal-do-not-import-from-here/ux/timeperiodpicker/index.d.ts +0 -1
  1162. package/internal-do-not-import-from-here/ux/typographypicker/TypographyPicker.css.d.ts +5 -0
  1163. package/internal-do-not-import-from-here/ux/typographypicker/TypographyPicker.d.ts +488 -0
  1164. package/internal-do-not-import-from-here/ux/typographypicker/docs/ExampleComponents.d.ts +1 -0
  1165. package/internal-do-not-import-from-here/ux/typographypicker/docs/SampleComponent.d.ts +91 -0
  1166. package/internal-do-not-import-from-here/ux/typographypicker/docs/index.d.ts +1 -0
  1167. package/internal-do-not-import-from-here/ux/urlinput/IUrlInput.d.ts +1 -1
  1168. package/internal-do-not-import-from-here/ux/urlinput/UrlInput.d.ts +0 -46
  1169. package/internal-do-not-import-from-here/ux/urlinput/UrlInputLegacy.d.ts +46 -0
  1170. package/internal-do-not-import-from-here/ux/use/Shared.d.ts +1 -0
  1171. package/internal-do-not-import-from-here/ux/use/TryOnMounted.d.ts +8 -0
  1172. package/internal-do-not-import-from-here/ux/use/TryOnScopeDispose.d.ts +7 -0
  1173. package/internal-do-not-import-from-here/ux/use/UseBlockInstance.d.ts +2 -0
  1174. package/internal-do-not-import-from-here/ux/use/UseBlueprintSetup.d.ts +154 -35
  1175. package/internal-do-not-import-from-here/ux/use/UseColorSchemaSetup.d.ts +163 -50
  1176. package/internal-do-not-import-from-here/ux/use/UseConfirm.d.ts +2 -0
  1177. package/internal-do-not-import-from-here/ux/use/UseEventListener.d.ts +27 -9
  1178. package/internal-do-not-import-from-here/ux/use/UseIcon.d.ts +136 -3
  1179. package/internal-do-not-import-from-here/ux/use/UseMounted.d.ts +6 -0
  1180. package/internal-do-not-import-from-here/ux/use/UseSupported.d.ts +1 -0
  1181. package/internal-do-not-import-from-here/ux/use/UseValidation.d.ts +5 -9
  1182. package/internal-do-not-import-from-here/ux/use/UseVariantSetup.d.ts +0 -0
  1183. package/internal-do-not-import-from-here/ux/use/UseVueInstance.d.ts +0 -10
  1184. package/internal-do-not-import-from-here/ux/use/UseWebNotification.d.ts +105 -0
  1185. package/internal-do-not-import-from-here/ux/use/index.d.ts +6 -1
  1186. package/internal-do-not-import-from-here/ux/user/UserPropertiesByMicrosoftGraphProvider.d.ts +1 -0
  1187. package/internal-do-not-import-from-here/ux/user/UserPropertiesProvider.d.ts +1 -6
  1188. package/internal-do-not-import-from-here/ux/user/loc/localize.d.ts +1 -0
  1189. package/internal-do-not-import-from-here/ux/userpresence/UserPresence.d.ts +380 -33
  1190. package/internal-do-not-import-from-here/ux/validation/FieldValidation.d.ts +132 -17
  1191. package/internal-do-not-import-from-here/ux/validation/FieldValueValidation.d.ts +1 -1
  1192. package/internal-do-not-import-from-here/ux/validation/FormValidator.d.ts +1 -10
  1193. package/internal-do-not-import-from-here/ux/validation/IComponentValidationEnabled.d.ts +1 -10
  1194. package/internal-do-not-import-from-here/ux/validation/IFieldValidation.d.ts +1 -21
  1195. package/internal-do-not-import-from-here/ux/velcron/blocks/content/components/DefinitionPickerPanel.css.d.ts +1 -0
  1196. package/internal-do-not-import-from-here/ux/velcron/blocks/content/store/ContentBlockStore.d.ts +48 -25
  1197. package/internal-do-not-import-from-here/ux/velcron/blocks/velcron/VelcronBlockSettings.d.ts +2 -7
  1198. package/internal-do-not-import-from-here/ux/velcron/components/contenteditor/DefinitionRegistrations.d.ts +1 -0
  1199. package/internal-do-not-import-from-here/ux/velcron/components/contenteditor/VelcronContentEditor.css.d.ts +5 -0
  1200. package/internal-do-not-import-from-here/ux/{layoutcanvas/editor/layoutitems/LayoutBlockInstance.d.ts → velcron/components/contenteditor/VelcronContentEditor.d.ts} +44 -58
  1201. package/internal-do-not-import-from-here/ux/velcron/components/contenteditor/definitions/content/Image.d.ts +2 -0
  1202. package/internal-do-not-import-from-here/ux/velcron/components/contenteditor/definitions/content/ImageText.d.ts +3 -0
  1203. package/internal-do-not-import-from-here/ux/velcron/components/contenteditor/definitions/content/Quote.d.ts +2 -0
  1204. package/internal-do-not-import-from-here/ux/velcron/components/contenteditor/definitions/content/Text.d.ts +2 -0
  1205. package/internal-do-not-import-from-here/ux/velcron/components/contenteditor/definitions/content/index.d.ts +4 -0
  1206. package/internal-do-not-import-from-here/ux/velcron/components/contenteditor/definitions/index.d.ts +2 -0
  1207. package/internal-do-not-import-from-here/ux/velcron/components/contenteditor/definitions/social/Image.d.ts +2 -0
  1208. package/internal-do-not-import-from-here/ux/velcron/components/contenteditor/definitions/social/index.d.ts +1 -0
  1209. package/internal-do-not-import-from-here/ux/velcron/components/contenteditor/models/ContentDefinitionRegistration.d.ts +10 -0
  1210. package/internal-do-not-import-from-here/ux/velcron/components/contenteditor/models/VelcronDefinitionIds.d.ts +13 -0
  1211. package/internal-do-not-import-from-here/ux/velcron/components/contenteditor/models/index.d.ts +2 -0
  1212. package/internal-do-not-import-from-here/ux/velcron/components/contenteditor/store/ContentEditorStore.d.ts +92 -0
  1213. package/internal-do-not-import-from-here/ux/velcron/components/definitionpicker/DefinitionPicker.css.d.ts +1 -0
  1214. package/internal-do-not-import-from-here/ux/velcron/components/definitionpicker/DefinitionPicker.d.ts +473 -10
  1215. package/internal-do-not-import-from-here/ux/velcron/components/{properties/VelcronProperties.d.ts → propertieseditor/VelcronPropertiesEditor.d.ts} +22 -15
  1216. package/internal-do-not-import-from-here/ux/velcron/core/actions/Clone.d.ts +2 -0
  1217. package/internal-do-not-import-from-here/ux/velcron/core/actions/Date.d.ts +3 -0
  1218. package/internal-do-not-import-from-here/ux/velcron/core/actions/IActionHandler.d.ts +1 -0
  1219. package/internal-do-not-import-from-here/ux/velcron/core/actions/Timer.d.ts +4 -0
  1220. package/internal-do-not-import-from-here/ux/velcron/core/actions/index.d.ts +3 -0
  1221. package/internal-do-not-import-from-here/ux/velcron/core/index.d.ts +1 -1
  1222. package/internal-do-not-import-from-here/ux/velcron/core/models/ActionHooks.d.ts +12 -0
  1223. package/internal-do-not-import-from-here/ux/velcron/core/models/Enums.d.ts +12 -6
  1224. package/internal-do-not-import-from-here/ux/velcron/core/models/VelcronDefinitions.d.ts +123 -70
  1225. package/internal-do-not-import-from-here/ux/velcron/core/models/VelcronPropertyEditorDefinitions.d.ts +269 -0
  1226. package/internal-do-not-import-from-here/ux/velcron/core/models/index.d.ts +2 -0
  1227. package/internal-do-not-import-from-here/ux/velcron/core/parser/VelcronActions.d.ts +8 -2
  1228. package/internal-do-not-import-from-here/ux/velcron/core/parser/VelcronConstants.d.ts +13 -4
  1229. package/internal-do-not-import-from-here/ux/velcron/core/parser/VelcronData.d.ts +2 -2
  1230. package/internal-do-not-import-from-here/ux/velcron/core/parser/VelcronPropertyEditors.d.ts +9 -0
  1231. package/internal-do-not-import-from-here/ux/velcron/core/parser/VelcronRenderers.d.ts +2 -1
  1232. package/internal-do-not-import-from-here/ux/velcron/core/parser/index.d.ts +1 -0
  1233. package/internal-do-not-import-from-here/ux/velcron/core/stores/ReactivitySystem.d.ts +2 -2
  1234. package/internal-do-not-import-from-here/ux/velcron/core/stores/VelcronBlueprint.d.ts +13 -10
  1235. package/internal-do-not-import-from-here/ux/velcron/core/stores/VelcronColorSchema.d.ts +9 -9
  1236. package/internal-do-not-import-from-here/ux/velcron/core/stores/VelcronStore.d.ts +2 -2
  1237. package/internal-do-not-import-from-here/ux/velcron/core/stores/VelcronTheming.d.ts +2 -2
  1238. package/internal-do-not-import-from-here/ux/velcron/core/templatebuilder/editor/VelcronColorSchemaEditor.d.ts +9 -0
  1239. package/internal-do-not-import-from-here/ux/velcron/core/templatebuilder/editor/VelcronContentEditor.d.ts +38 -0
  1240. package/internal-do-not-import-from-here/ux/velcron/core/templatebuilder/editor/VelcronEditorBuilder.d.ts +16 -0
  1241. package/internal-do-not-import-from-here/ux/velcron/core/templatebuilder/editor/VelcronEditorBuilder2.d.ts +9 -0
  1242. package/internal-do-not-import-from-here/ux/velcron/core/templatebuilder/editor/VelcronEditorBuilderBase.d.ts +9 -0
  1243. package/internal-do-not-import-from-here/ux/velcron/core/templatebuilder/editor/VelcronImageEditor.d.ts +11 -0
  1244. package/internal-do-not-import-from-here/ux/velcron/core/templatebuilder/editor/VelcronPropertyMappingEditorBuilder.d.ts +9 -0
  1245. package/internal-do-not-import-from-here/ux/velcron/core/templatebuilder/index.d.ts +2 -0
  1246. package/internal-do-not-import-from-here/ux/velcron/core/templatebuilder/state/VelcronBlockHeaderStateBuilder.d.ts +0 -0
  1247. package/internal-do-not-import-from-here/ux/velcron/core/templatebuilder/state/VelcronColorSchemaBuilder.d.ts +16 -0
  1248. package/internal-do-not-import-from-here/ux/velcron/core/templatebuilder/state/VelcronContentStateBuilder.d.ts +11 -0
  1249. package/internal-do-not-import-from-here/ux/velcron/core/templatebuilder/state/VelcronImageStateBuilder.d.ts +18 -0
  1250. package/internal-do-not-import-from-here/ux/velcron/core/templatebuilder/state/VelcronPropertyMappingStateBuilder.d.ts +12 -0
  1251. package/internal-do-not-import-from-here/ux/velcron/core/templatebuilder/state/VelcronStateBuilder.d.ts +16 -0
  1252. package/internal-do-not-import-from-here/ux/velcron/core/templatebuilder/state/VelcronStateBuilderBase.d.ts +12 -0
  1253. package/internal-do-not-import-from-here/ux/velcron/core/templatebuilder/state/VelcronTextContentBuilder.d.ts +32 -0
  1254. package/internal-do-not-import-from-here/ux/velcron/core/templatebuilder/useVelcronEditorBuilder.d.ts +2 -0
  1255. package/internal-do-not-import-from-here/ux/velcron/core/templatebuilder/useVelcronTemplateBuilder.d.ts +6 -0
  1256. package/internal-do-not-import-from-here/ux/velcron/docs/DocDataTypes.d.ts +30 -0
  1257. package/internal-do-not-import-from-here/ux/velcron/docs/Introduction.d.ts +2 -0
  1258. package/internal-do-not-import-from-here/ux/velcron/docs/State.d.ts +1 -0
  1259. package/internal-do-not-import-from-here/ux/velcron/docs/actions/Date.d.ts +1 -0
  1260. package/internal-do-not-import-from-here/ux/velcron/docs/actions/Introduction.d.ts +1 -0
  1261. package/internal-do-not-import-from-here/ux/velcron/docs/actions/Timer.d.ts +1 -0
  1262. package/internal-do-not-import-from-here/ux/velcron/docs/actions/index.d.ts +3 -0
  1263. package/internal-do-not-import-from-here/ux/velcron/docs/components/Button.d.ts +1 -0
  1264. package/internal-do-not-import-from-here/ux/velcron/docs/components/Checkbox.d.ts +1 -0
  1265. package/internal-do-not-import-from-here/ux/velcron/docs/components/Image.d.ts +1 -0
  1266. package/internal-do-not-import-from-here/ux/velcron/docs/components/Property.d.ts +1 -0
  1267. package/internal-do-not-import-from-here/ux/velcron/docs/components/Text.d.ts +1 -0
  1268. package/internal-do-not-import-from-here/ux/velcron/docs/components/Velcron.d.ts +1 -0
  1269. package/internal-do-not-import-from-here/ux/velcron/docs/components/View.d.ts +1 -0
  1270. package/internal-do-not-import-from-here/ux/velcron/docs/components/index.d.ts +7 -0
  1271. package/internal-do-not-import-from-here/ux/velcron/docs/index.d.ts +4 -0
  1272. package/internal-do-not-import-from-here/ux/velcron/editor/VelcronEditor.css.d.ts +1 -0
  1273. package/internal-do-not-import-from-here/ux/velcron/editor/VelcronEditor.d.ts +8 -8
  1274. package/internal-do-not-import-from-here/ux/velcron/editor/components/ContainerRenderer.d.ts +1 -1
  1275. package/internal-do-not-import-from-here/ux/velcron/editor/components/pickers/colorpicker/ColorPicker.d.ts +1 -1
  1276. package/internal-do-not-import-from-here/ux/velcron/editor/components/pickers/colorschemamapper/ColorSchemaMapper.d.ts +1 -1
  1277. package/internal-do-not-import-from-here/ux/velcron/editor/components/pickers/ratiopicker/RatioPicker.d.ts +1 -1
  1278. package/internal-do-not-import-from-here/ux/velcron/editor/components/pickers/typographypicker/TypographyPicker.d.ts +1 -1
  1279. package/internal-do-not-import-from-here/ux/velcron/editor/models/VelcronDescriptors.d.ts +3 -17
  1280. package/internal-do-not-import-from-here/ux/velcron/editor/stores/VelcronEditorStore.d.ts +113 -60
  1281. package/internal-do-not-import-from-here/ux/velcron/renderer/VelcronActionHooks.d.ts +1 -0
  1282. package/internal-do-not-import-from-here/ux/velcron/renderer/VelcronRenderer.d.ts +23 -17
  1283. package/internal-do-not-import-from-here/ux/velcron/renderer/VelcronStylesProvider.d.ts +1 -1
  1284. package/internal-do-not-import-from-here/ux/velcron/renderer/components/App.d.ts +78 -17
  1285. package/internal-do-not-import-from-here/ux/velcron/renderer/components/Checkbox.d.ts +106 -0
  1286. package/internal-do-not-import-from-here/ux/velcron/renderer/components/ComponentCreator.d.ts +2 -2
  1287. package/internal-do-not-import-from-here/ux/velcron/renderer/components/Property.d.ts +106 -0
  1288. package/internal-do-not-import-from-here/ux/velcron/renderer/components/Reference.d.ts +106 -0
  1289. package/internal-do-not-import-from-here/ux/velcron/renderer/components/Slot.d.ts +106 -0
  1290. package/internal-do-not-import-from-here/ux/{oxide/alignmentpicker/AlignmentPicker.d.ts → velcron/renderer/propertyeditors/AlignmentEditor.d.ts} +38 -35
  1291. package/internal-do-not-import-from-here/ux/velcron/renderer/propertyeditors/ColorEditor.d.ts +434 -0
  1292. package/internal-do-not-import-from-here/ux/velcron/renderer/propertyeditors/ColorSchemaEditor.d.ts +434 -0
  1293. package/internal-do-not-import-from-here/ux/velcron/renderer/propertyeditors/ImageEditor.d.ts +450 -0
  1294. package/internal-do-not-import-from-here/ux/{compositiontests/OptionsBlockCurrent.d.ts → velcron/renderer/propertyeditors/MarkdownEditor.d.ts} +42 -34
  1295. package/internal-do-not-import-from-here/ux/{oxide/btntoggle/ButtonToggle.d.ts → velcron/renderer/propertyeditors/PropertyEditorCreator.d.ts} +59 -148
  1296. package/internal-do-not-import-from-here/ux/velcron/renderer/propertyeditors/SliderEditor.d.ts +451 -0
  1297. package/internal-do-not-import-from-here/ux/velcron/renderer/propertyeditors/SwitchEditor.d.ts +450 -0
  1298. package/internal-do-not-import-from-here/ux/velcron/renderer/propertyeditors/TextEditor.d.ts +450 -0
  1299. package/internal-do-not-import-from-here/ux/velcron/renderer/propertyeditors/TypographyEditor.d.ts +455 -0
  1300. package/internal-do-not-import-from-here/ux/versionedlayout/blade/LayoutAliasBlade.d.ts +113 -22
  1301. package/internal-do-not-import-from-here/ux/versionedlayout/blade/Shared.d.ts +16 -1
  1302. package/internal-do-not-import-from-here/ux/versionedlayout/blade/VersionedLayoutBladeBuilder.d.ts +189 -1
  1303. package/internal-do-not-import-from-here/ux/versionedlayout/blade/VersionedLayoutCreationBlade.d.ts +114 -0
  1304. package/internal-do-not-import-from-here/ux/versionedlayout/blade/VersionedLayoutListBladeBuilder.d.ts +135 -25
  1305. package/internal-do-not-import-from-here/ux/versionedlayout/blade/VersionedLayoutSettingsComponent.d.ts +134 -5
  1306. package/internal-do-not-import-from-here/ux/versionedlayout/controller/Chrome.d.ts +200 -17
  1307. package/internal-do-not-import-from-here/ux/versionedlayout/controller/VersionedLayoutController.d.ts +244 -26
  1308. package/internal-do-not-import-from-here/ux/versionedlayout/editor/LayoutEditorTabRenderer.d.ts +262 -13
  1309. package/internal-do-not-import-from-here/ux/versionedlayout/editor/LayoutEditorTabRendererSizeMonitor.d.ts +156 -23
  1310. package/internal-do-not-import-from-here/ux/versionedlayout/editor/VersionedLayoutDefinitionEditorItem.d.ts +5 -1
  1311. package/internal-do-not-import-from-here/ux/versionedlayout/editor/VersionedLayoutDefinitionEditorItemFactory.d.ts +3 -0
  1312. package/internal-do-not-import-from-here/ux/versionedlayout/editor/VersionedLayoutEditor.d.ts +4 -4
  1313. package/internal-do-not-import-from-here/ux/versionedlayout/editor/alternatelayout/AlternateLayoutCreationForm.d.ts +162 -23
  1314. package/internal-do-not-import-from-here/ux/versionedlayout/editor/alternatelayout/AlternateLayoutMappingAction.d.ts +207 -45
  1315. package/internal-do-not-import-from-here/ux/versionedlayout/editor/alternatelayout/AlternateLayoutRenameForm.d.ts +184 -21
  1316. package/internal-do-not-import-from-here/ux/versionedlayout/editor/displaybreakpoint/DisplayBreakpointAction.d.ts +117 -14
  1317. package/internal-do-not-import-from-here/ux/versionedlayout/editor/panels/Panels.d.ts +91 -8
  1318. package/internal-do-not-import-from-here/ux/versionedlayout/layoutbackgroundimage/LayoutBackgroundImage.d.ts +183 -46
  1319. package/internal-do-not-import-from-here/ux/versionedlayout/renderer/InternalVersionedLayoutRenderer.d.ts +272 -0
  1320. package/internal-do-not-import-from-here/ux/versionedlayout/renderer/VersionedLayoutRenderer.d.ts +132 -78
  1321. package/internal-do-not-import-from-here/ux/vuetify/colorpicker/VColorPicker.bundle.d.ts +1 -0
  1322. package/internal-do-not-import-from-here/vue/VueApp.d.ts +7 -2
  1323. package/internal-do-not-import-from-here/vue/VueHooks.d.ts +1 -4
  1324. package/internal-do-not-import-from-here/vue/index.d.ts +0 -1
  1325. package/internal-do-not-import-from-here/vue/vuecustomelement/Helpers.d.ts +8 -2
  1326. package/internal-do-not-import-from-here/wctypings.d.ts +2134 -288
  1327. package/internal-do-not-import-from-here/workers/HttpRequestProxy.d.ts +1 -0
  1328. package/package.json +3 -4
  1329. package/internal-do-not-import-from-here/core/utils/gpt3utils/Encoder.d.ts +0 -50259
  1330. package/internal-do-not-import-from-here/core/utils/gpt3utils/GPT3Utils.d.ts +0 -5
  1331. package/internal-do-not-import-from-here/core/utils/gpt3utils/Vocab.d.ts +0 -1
  1332. package/internal-do-not-import-from-here/core/utils/gpt3utils/index.d.ts +0 -1
  1333. package/internal-do-not-import-from-here/shared/http/Bring.d.ts +0 -130
  1334. package/internal-do-not-import-from-here/shared/models/Bring.d.ts +0 -23
  1335. package/internal-do-not-import-from-here/ux/compositiontests/models/SharedContext.d.ts +0 -4
  1336. package/internal-do-not-import-from-here/ux/compositiontests/models/index.d.ts +0 -1
  1337. package/internal-do-not-import-from-here/ux/compositiontests/services/CompositionService.d.ts +0 -5
  1338. package/internal-do-not-import-from-here/ux/compositiontests/services/index.d.ts +0 -1
  1339. package/internal-do-not-import-from-here/ux/compositiontests/stores/OldStoreTest.d.ts +0 -10
  1340. package/internal-do-not-import-from-here/ux/compositiontests/stores/index.d.ts +0 -2
  1341. package/internal-do-not-import-from-here/ux/compositiontests/stores/useNewStoreTest.d.ts +0 -12
  1342. package/internal-do-not-import-from-here/ux/compositiontests/use/useTitleComputed.d.ts +0 -3
  1343. package/internal-do-not-import-from-here/ux/confirmdialog/VueConfirmDialog.d.ts +0 -2
  1344. package/internal-do-not-import-from-here/ux/datetimezonepicker/IDateTimeZonePicker.d.ts +0 -18
  1345. package/internal-do-not-import-from-here/ux/datetimezonepicker/index.d.ts +0 -1
  1346. package/internal-do-not-import-from-here/ux/datetimezonerenderer/index.d.ts +0 -1
  1347. package/internal-do-not-import-from-here/ux/editorchrome/chrome/IEditorChrome.d.ts +0 -26
  1348. package/internal-do-not-import-from-here/ux/helptext/IHelpText.d.ts +0 -18
  1349. package/internal-do-not-import-from-here/ux/helptext/index.d.ts +0 -1
  1350. package/internal-do-not-import-from-here/ux/imagegrid/IImageGrid.d.ts +0 -25
  1351. package/internal-do-not-import-from-here/ux/imagetransformation/enums.d.ts +0 -13
  1352. package/internal-do-not-import-from-here/ux/imagetransformation/image-svg-transfomer.d.ts +0 -60
  1353. package/internal-do-not-import-from-here/ux/imagetransformation/image-transfomer.d.ts +0 -7
  1354. package/internal-do-not-import-from-here/ux/imagetransformation/index.d.ts +0 -4
  1355. package/internal-do-not-import-from-here/ux/imagetransformation/interfaces.d.ts +0 -8
  1356. package/internal-do-not-import-from-here/ux/imagetransformation/utils.d.ts +0 -14
  1357. package/internal-do-not-import-from-here/ux/imagetransformer/Components/ImageRollup/ImageRollup.d.ts +0 -66
  1358. package/internal-do-not-import-from-here/ux/imagetransformer/Components/ImageSetting/ImageSetting.d.ts +0 -26
  1359. package/internal-do-not-import-from-here/ux/imagetransformer/Components/ImageTransformCropper/ImageTransformCropper.d.ts +0 -59
  1360. package/internal-do-not-import-from-here/ux/imagetransformer/Components/ImageTransformEditor/ImageTransformEditor.d.ts +0 -66
  1361. package/internal-do-not-import-from-here/ux/imagetransformer/Components/ImageTransformFilter/ImageTransformFilter.d.ts +0 -23
  1362. package/internal-do-not-import-from-here/ux/imagetransformer/Components/ImageTransformFlipper/ImageTransformFlipper.d.ts +0 -23
  1363. package/internal-do-not-import-from-here/ux/imagetransformer/Constants.d.ts +0 -14
  1364. package/internal-do-not-import-from-here/ux/imagetransformer/IImageTransformer.d.ts +0 -18
  1365. package/internal-do-not-import-from-here/ux/imagetransformer/ImageTransformer.css.d.ts +0 -5
  1366. package/internal-do-not-import-from-here/ux/imagetransformer/ImageTransformer.d.ts +0 -40
  1367. package/internal-do-not-import-from-here/ux/imagetransformer/tui-image-editor/action.d.ts +0 -101
  1368. package/internal-do-not-import-from-here/ux/imagetransformer/tui-image-editor/command/addIcon.d.ts +0 -20
  1369. package/internal-do-not-import-from-here/ux/imagetransformer/tui-image-editor/command/addImageObject.d.ts +0 -16
  1370. package/internal-do-not-import-from-here/ux/imagetransformer/tui-image-editor/command/addObject.d.ts +0 -17
  1371. package/internal-do-not-import-from-here/ux/imagetransformer/tui-image-editor/command/addShape.d.ts +0 -27
  1372. package/internal-do-not-import-from-here/ux/imagetransformer/tui-image-editor/command/addText.d.ts +0 -26
  1373. package/internal-do-not-import-from-here/ux/imagetransformer/tui-image-editor/command/applyFilter.d.ts +0 -20
  1374. package/internal-do-not-import-from-here/ux/imagetransformer/tui-image-editor/command/changeIconColor.d.ts +0 -17
  1375. package/internal-do-not-import-from-here/ux/imagetransformer/tui-image-editor/command/changeShape.d.ts +0 -28
  1376. package/internal-do-not-import-from-here/ux/imagetransformer/tui-image-editor/command/changeText.d.ts +0 -17
  1377. package/internal-do-not-import-from-here/ux/imagetransformer/tui-image-editor/command/changeTextStyle.d.ts +0 -25
  1378. package/internal-do-not-import-from-here/ux/imagetransformer/tui-image-editor/command/clearObjects.d.ts +0 -16
  1379. package/internal-do-not-import-from-here/ux/imagetransformer/tui-image-editor/command/flip.d.ts +0 -16
  1380. package/internal-do-not-import-from-here/ux/imagetransformer/tui-image-editor/command/loadImage.d.ts +0 -17
  1381. package/internal-do-not-import-from-here/ux/imagetransformer/tui-image-editor/command/removeFilter.d.ts +0 -17
  1382. package/internal-do-not-import-from-here/ux/imagetransformer/tui-image-editor/command/removeObject.d.ts +0 -16
  1383. package/internal-do-not-import-from-here/ux/imagetransformer/tui-image-editor/command/resizeCanvasDimension.d.ts +0 -16
  1384. package/internal-do-not-import-from-here/ux/imagetransformer/tui-image-editor/command/rotate.d.ts +0 -18
  1385. package/internal-do-not-import-from-here/ux/imagetransformer/tui-image-editor/command/setObjectPosition.d.ts +0 -21
  1386. package/internal-do-not-import-from-here/ux/imagetransformer/tui-image-editor/command/setObjectProperties.d.ts +0 -25
  1387. package/internal-do-not-import-from-here/ux/imagetransformer/tui-image-editor/component/cropper.d.ts +0 -118
  1388. package/internal-do-not-import-from-here/ux/imagetransformer/tui-image-editor/component/filter.d.ts +0 -89
  1389. package/internal-do-not-import-from-here/ux/imagetransformer/tui-image-editor/component/flip.d.ts +0 -70
  1390. package/internal-do-not-import-from-here/ux/imagetransformer/tui-image-editor/component/freeDrawing.d.ts +0 -26
  1391. package/internal-do-not-import-from-here/ux/imagetransformer/tui-image-editor/component/icon.d.ts +0 -51
  1392. package/internal-do-not-import-from-here/ux/imagetransformer/tui-image-editor/component/imageLoader.d.ts +0 -30
  1393. package/internal-do-not-import-from-here/ux/imagetransformer/tui-image-editor/component/line.d.ts +0 -55
  1394. package/internal-do-not-import-from-here/ux/imagetransformer/tui-image-editor/component/rotation.d.ts +0 -42
  1395. package/internal-do-not-import-from-here/ux/imagetransformer/tui-image-editor/component/shape.d.ts +0 -144
  1396. package/internal-do-not-import-from-here/ux/imagetransformer/tui-image-editor/component/text.d.ts +0 -173
  1397. package/internal-do-not-import-from-here/ux/imagetransformer/tui-image-editor/consts.d.ts +0 -243
  1398. package/internal-do-not-import-from-here/ux/imagetransformer/tui-image-editor/drawingMode/cropper.d.ts +0 -26
  1399. package/internal-do-not-import-from-here/ux/imagetransformer/tui-image-editor/drawingMode/freeDrawing.d.ts +0 -27
  1400. package/internal-do-not-import-from-here/ux/imagetransformer/tui-image-editor/drawingMode/lineDrawing.d.ts +0 -27
  1401. package/internal-do-not-import-from-here/ux/imagetransformer/tui-image-editor/drawingMode/shape.d.ts +0 -26
  1402. package/internal-do-not-import-from-here/ux/imagetransformer/tui-image-editor/drawingMode/text.d.ts +0 -26
  1403. package/internal-do-not-import-from-here/ux/imagetransformer/tui-image-editor/extension/arrowLine.d.ts +0 -2
  1404. package/internal-do-not-import-from-here/ux/imagetransformer/tui-image-editor/extension/blur.d.ts +0 -8
  1405. package/internal-do-not-import-from-here/ux/imagetransformer/tui-image-editor/extension/colorFilter.d.ts +0 -8
  1406. package/internal-do-not-import-from-here/ux/imagetransformer/tui-image-editor/extension/cropzone.d.ts +0 -10
  1407. package/internal-do-not-import-from-here/ux/imagetransformer/tui-image-editor/extension/emboss.d.ts +0 -8
  1408. package/internal-do-not-import-from-here/ux/imagetransformer/tui-image-editor/extension/mask.d.ts +0 -8
  1409. package/internal-do-not-import-from-here/ux/imagetransformer/tui-image-editor/extension/sharpen.d.ts +0 -8
  1410. package/internal-do-not-import-from-here/ux/imagetransformer/tui-image-editor/factory/command.d.ts +0 -27
  1411. package/internal-do-not-import-from-here/ux/imagetransformer/tui-image-editor/factory/errorMessage.d.ts +0 -5
  1412. package/internal-do-not-import-from-here/ux/imagetransformer/tui-image-editor/graphics.d.ts +0 -569
  1413. package/internal-do-not-import-from-here/ux/imagetransformer/tui-image-editor/helper/imagetracer.d.ts +0 -56
  1414. package/internal-do-not-import-from-here/ux/imagetransformer/tui-image-editor/helper/shapeFilterFillHelper.d.ts +0 -44
  1415. package/internal-do-not-import-from-here/ux/imagetransformer/tui-image-editor/helper/shapeResizeHelper.d.ts +0 -20
  1416. package/internal-do-not-import-from-here/ux/imagetransformer/tui-image-editor/imageEditor.d.ts +0 -1003
  1417. package/internal-do-not-import-from-here/ux/imagetransformer/tui-image-editor/index.d.ts +0 -15
  1418. package/internal-do-not-import-from-here/ux/imagetransformer/tui-image-editor/interface/command.d.ts +0 -49
  1419. package/internal-do-not-import-from-here/ux/imagetransformer/tui-image-editor/interface/component.d.ts +0 -76
  1420. package/internal-do-not-import-from-here/ux/imagetransformer/tui-image-editor/interface/drawingMode.d.ts +0 -26
  1421. package/internal-do-not-import-from-here/ux/imagetransformer/tui-image-editor/interfaces.d.ts +0 -283
  1422. package/internal-do-not-import-from-here/ux/imagetransformer/tui-image-editor/invoker.d.ts +0 -91
  1423. package/internal-do-not-import-from-here/ux/imagetransformer/tui-image-editor/util.d.ts +0 -154
  1424. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/layoutitemactiontoolbar/LayoutItemActionToolbar_old.d.ts +0 -51
  1425. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/TabsSettingsStylePanel copy.d.ts +0 -32
  1426. package/internal-do-not-import-from-here/ux/layoutcanvas/stores/VelcronDefinitionStore.d.ts +0 -17
  1427. package/internal-do-not-import-from-here/ux/layoutcanvas/velcron_definitions/blockheaders.d.ts +0 -3
  1428. package/internal-do-not-import-from-here/ux/layoutcanvas/velcron_definitions/contentblocks.d.ts +0 -6
  1429. package/internal-do-not-import-from-here/ux/layoutcanvas/velcron_definitions/index.d.ts +0 -2
  1430. package/internal-do-not-import-from-here/ux/mediapicker/MediaPickerRenderer.d.ts +0 -86
  1431. package/internal-do-not-import-from-here/ux/mediapickerimage/IMediaPickerImage.d.ts +0 -36
  1432. package/internal-do-not-import-from-here/ux/mediapickerimage/index.d.ts +0 -1
  1433. package/internal-do-not-import-from-here/ux/mediapickerproviders/bingprovider/BingProvider.d.ts +0 -39
  1434. package/internal-do-not-import-from-here/ux/mediapickerproviders/bingprovider/IBingProvider.d.ts +0 -17
  1435. package/internal-do-not-import-from-here/ux/mediapickerproviders/bingprovider/index.d.ts +0 -2
  1436. package/internal-do-not-import-from-here/ux/mediapickerproviders/mediaproviderbase/index.d.ts +0 -2
  1437. package/internal-do-not-import-from-here/ux/mediapickerproviders/pexelsprovider/IPexelProvider.d.ts +0 -17
  1438. package/internal-do-not-import-from-here/ux/mediapickerproviders/pexelsprovider/PexelProvider.d.ts +0 -28
  1439. package/internal-do-not-import-from-here/ux/playground_test/PlayComponent.d.ts +0 -108
  1440. package/internal-do-not-import-from-here/ux/playground_test/play2tabs/FileUploaderTab.d.ts +0 -8
  1441. package/internal-do-not-import-from-here/ux/playground_test/play2tabs/MediaPickerTab.d.ts +0 -12
  1442. package/internal-do-not-import-from-here/ux/playground_test/play2tabs/MultilingualInputTab.d.ts +0 -12
  1443. package/internal-do-not-import-from-here/ux/playground_test/play2tabs/RichtextEditorTab.d.ts +0 -12
  1444. package/internal-do-not-import-from-here/ux/playground_test/play2tabs/SharePointPermissionTab.d.ts +0 -17
  1445. package/internal-do-not-import-from-here/ux/playground_test/play2tabs/TermPickerTab.d.ts +0 -10
  1446. package/internal-do-not-import-from-here/ux/playground_test/play2tabs/TestChart.d.ts +0 -15
  1447. package/internal-do-not-import-from-here/ux/playground_test/play2tabs/TimePeriodPickerTab.d.ts +0 -8
  1448. package/internal-do-not-import-from-here/ux/playground_test/testvalidate/DemoValidate.d.ts +0 -21
  1449. package/internal-do-not-import-from-here/ux/playground_test/testvalidate/IDemoValidate.d.ts +0 -17
  1450. package/internal-do-not-import-from-here/ux/playground_test/testvalidate/SubComponent1.d.ts +0 -8
  1451. package/internal-do-not-import-from-here/ux/securitytrimer/ISecurityTrimer.d.ts +0 -23
  1452. package/internal-do-not-import-from-here/ux/securitytrimer/SecurityTrimer.d.ts +0 -24
  1453. package/internal-do-not-import-from-here/ux/securitytrimer/index.d.ts +0 -1
  1454. package/internal-do-not-import-from-here/ux/social/templates/LikeListingTemplate.css.d.ts +0 -11
  1455. package/internal-do-not-import-from-here/ux/spacingpicker/SpacingPicker2.css.d.ts +0 -29
  1456. package/internal-do-not-import-from-here/ux/theming-v2/colorschemadefinitionpicker/ColorSchemaDefinitionPicker.css.d.ts +0 -7
  1457. package/internal-do-not-import-from-here/ux/theming-v2/styling/UseBlueprintStyling.d.ts +0 -9
  1458. package/internal-do-not-import-from-here/ux/theming-v2/styling/UseComponentStyling.d.ts +0 -6
  1459. package/internal-do-not-import-from-here/ux/theming-v2/styling/UseTypographyStyling.d.ts +0 -25
  1460. package/internal-do-not-import-from-here/ux/theming-v2/themes/Themes.d.ts +0 -18
  1461. package/internal-do-not-import-from-here/ux/theming-v2/themes/TypographyTypes.d.ts +0 -23
  1462. package/internal-do-not-import-from-here/ux/theming-v2/themes/index.d.ts +0 -4
  1463. package/internal-do-not-import-from-here/ux/velcron/components/properties/editors/alignment/AlignmentEditor.d.ts +0 -4
  1464. package/internal-do-not-import-from-here/ux/velcron/components/properties/editors/color/ColorEditor.d.ts +0 -1
  1465. package/internal-do-not-import-from-here/ux/velcron/components/properties/editors/index.d.ts +0 -5
  1466. package/internal-do-not-import-from-here/ux/velcron/components/properties/editors/slider/SliderEditor.d.ts +0 -6
  1467. package/internal-do-not-import-from-here/ux/velcron/components/properties/editors/switch/SwitchEditor.d.ts +0 -1
  1468. package/internal-do-not-import-from-here/ux/velcron/components/properties/editors/text/TextEditor.d.ts +0 -1
  1469. package/internal-do-not-import-from-here/ux/velcron/components/properties/index.d.ts +0 -2
  1470. package/internal-do-not-import-from-here/ux/velcron/components/properties/models/DefineVelcronPropertyEditor.d.ts +0 -2
  1471. package/internal-do-not-import-from-here/ux/velcron/components/properties/models/DefineVelcronPropertyEditorProps.d.ts +0 -86
  1472. package/internal-do-not-import-from-here/ux/velcron/components/properties/models/index.d.ts +0 -2
  1473. package/internal-do-not-import-from-here/ux/velcron/core/utilities/ColorUtility.d.ts +0 -1
  1474. package/internal-do-not-import-from-here/ux/velcron/core/utilities/index.d.ts +0 -1
  1475. /package/internal-do-not-import-from-here/{vue/Localize.d.ts → Localize.d.ts} +0 -0
  1476. /package/internal-do-not-import-from-here/{ux/compositiontests/WowComp.d.ts → console/components/SocketComponent.d.ts} +0 -0
  1477. /package/internal-do-not-import-from-here/shared/models/{Bring.js → DynamicState.js} +0 -0
  1478. /package/internal-do-not-import-from-here/ux/{playground_test/Play2Component.d.ts → alignmentpicker/docs/AlignmentPickerExample.d.ts} +0 -0
  1479. /package/internal-do-not-import-from-here/{console/components/MessageOverlay.css.d.ts → ux/app/AppLayoutPlaceHolderRegistration.d.ts} +0 -0
  1480. /package/internal-do-not-import-from-here/ux/{theming-v2/blueprintpicker → blueprintpicker}/BlueprintPicker.css.d.ts +0 -0
  1481. /package/internal-do-not-import-from-here/ux/{velcron/renderer/components/FlexView.d.ts → colorschemadefinitionpicker/ColorSchemaDefinitionPicker.css.d.ts} +0 -0
  1482. /package/internal-do-not-import-from-here/ux/{mediapicker → depricated-mediapicker}/MediaPickerContext.d.ts +0 -0
  1483. /package/internal-do-not-import-from-here/ux/{imagetransformer/tui-image-editor/dependencies/tui-code-snippet.d.ts → depricated-mediapicker/MediaPickerRenderer.d.ts} +0 -0
  1484. /package/internal-do-not-import-from-here/ux/{mediapicker → depricated-mediapicker}/index.d.ts +0 -0
  1485. /package/internal-do-not-import-from-here/ux/{mediapicker → depricated-mediapicker}/loc/localize.d.ts +0 -0
  1486. /package/internal-do-not-import-from-here/ux/{layoutcanvas/apis/Registration.d.ts → docs/omfx/components/Emits.md.d.ts} +0 -0
  1487. /package/internal-do-not-import-from-here/ux/{vuetify/stepper/VStepperItems.d.ts → docs/omfx/components/Introduction.md.d.ts} +0 -0
  1488. /package/internal-do-not-import-from-here/ux/{mediapickerproviders/bingprovider → mediapickerV2/imagegrid}/loc/index.d.ts +0 -0
  1489. /package/internal-do-not-import-from-here/ux/{imagetransformer → mediapickerV2/imagetransformer}/loc/localize.d.ts +0 -0
  1490. /package/internal-do-not-import-from-here/ux/mediapickerproviders/{bingprovider → bingprovider-v2}/services/BingImageService.d.ts +0 -0
  1491. /package/internal-do-not-import-from-here/ux/mediapickerproviders/{pexelsprovider → pexelsprovider-V2}/PexelProvider.css.d.ts +0 -0
  1492. /package/internal-do-not-import-from-here/ux/mediapickerproviders/{pexelsprovider → pexelsprovider-V2}/loc/localize.d.ts +0 -0
  1493. /package/internal-do-not-import-from-here/ux/mediapickerproviders/{pexelsprovider → pexelsprovider-V2}/models/PexelImage.d.ts +0 -0
  1494. /package/internal-do-not-import-from-here/ux/mediapickerproviders/{pexelsprovider → pexelsprovider-V2}/services/PexelImageService.d.ts +0 -0
@@ -0,0 +1,12 @@
1
+ export interface VelcronActionHooks<TBefore = any, TAfter = any> {
2
+ beforeHandler?: (args: TBefore) => TBefore;
3
+ afterHandler?: (args: TBefore) => TAfter;
4
+ }
5
+ export interface HttpGetBeforeActionHookArgs {
6
+ url: string;
7
+ requestInit: RequestInit;
8
+ }
9
+ export interface HttpGetAfterActionHookArgs {
10
+ json: string;
11
+ response: Response;
12
+ }
@@ -16,15 +16,21 @@ export declare enum VelcronActionTypes {
16
16
  export declare enum VelcronIconTypes {
17
17
  fontAwesome = "fa"
18
18
  }
19
+ export declare enum VelcronViewDirections {
20
+ row = "row",
21
+ column = "column",
22
+ rowReverse = "row-reverse",
23
+ columnRevers = "column-reverse"
24
+ }
19
25
  export declare enum VelcronHorizontalAlignments {
20
- left = 0,
21
- center = 1,
22
- right = 2
26
+ left = "left",
27
+ center = "center",
28
+ right = "right"
23
29
  }
24
30
  export declare enum VelcronVerticalAlignments {
25
- top = 0,
26
- center = 1,
27
- bottom = 2
31
+ top = "top",
32
+ center = "center",
33
+ bottom = "bottom"
28
34
  }
29
35
  export declare enum VelcronDataTypes {
30
36
  unknown = "unknown",
@@ -1,34 +1,39 @@
1
1
  import { VelcronEvent, VelcronOnUpdatedEvent, VelcronOnClosedEvent, VelcronOnCloseRequestedEvent, VelcronOnEditModeEvent, VelcronOnLoadEvent, VelcronOnPressEvent } from "./VelcronEvents";
2
2
  import { VelcroncomponentArrayType, VelcronPrimitiveType } from "./VelcronTypes";
3
3
  import { AssignOperators, VelcronHorizontalAlignments, VelcronIconTypes, VelcronActionTypes, VelcronVerticalAlignments } from "./Enums";
4
- import { useVelcronThemingStore } from "..";
4
+ import { ActivityRendererReference, DynamicState, VelcronPropertyEditor, useVelcronThemingStore } from "..";
5
+ import { GuidValue, PropertyConfiguration, PropertyValue, PropertyDefinition, PropertySetupBase } from "@omnia/fx/models";
5
6
  import { useVelcronColorSchemaStore } from "../stores/VelcronColorSchema";
6
7
  import { useVelcronBlueprintStore } from "../stores/VelcronBlueprint";
7
8
  export interface ResolvedComponentRenderer {
8
9
  component: unknown;
9
10
  definition: VelcronDefinition;
10
- customComponent: boolean;
11
+ customComponent?: boolean;
11
12
  }
12
13
  export interface BuiltInComponentRenderers {
13
- "View": unknown;
14
- "Card": unknown;
15
- "Text": unknown;
16
- "Image": unknown;
17
- "Button": unknown;
18
- "TextInput": unknown;
19
- "ProgressCircle": unknown;
20
- "WebView": unknown;
21
- "CustomComponent": unknown;
22
- "Dialog": unknown;
23
- "Icon": unknown;
24
- "Chip": unknown;
25
- "Markdown": unknown;
14
+ "velcron": unknown;
15
+ "view": unknown;
16
+ "card": unknown;
17
+ "text": unknown;
18
+ "image": unknown;
19
+ "button": unknown;
20
+ "text-input": unknown;
21
+ "progress-circle": unknown;
22
+ "web-view": unknown;
23
+ "custom-component": unknown;
24
+ "dialog": unknown;
25
+ "icon": unknown;
26
+ "chip": unknown;
27
+ "markdown": unknown;
28
+ "slot": unknown;
29
+ "property": unknown;
30
+ "checkbox": unknown;
31
+ "reference": unknown;
26
32
  }
27
33
  export interface ColorSchemaReference {
28
34
  name: string;
29
35
  schema: string;
30
36
  }
31
- export type DynamicState = object;
32
37
  export interface OnItemRenderedHookResult {
33
38
  cssClass: string;
34
39
  containerRenderer?: VelcronContainerRenderer;
@@ -41,19 +46,20 @@ export interface VelcronRenderContext {
41
46
  colors?: ReturnType<typeof useVelcronColorSchemaStore>;
42
47
  blueprints?: ReturnType<typeof useVelcronBlueprintStore>;
43
48
  actions?: {
44
- [name: string]: [];
49
+ [name: string]: Array<string>;
45
50
  };
46
51
  components?: Array<VelcronCustomComponentDefinition>;
47
52
  properties?: {
48
53
  [name: string]: VelcronPrimitiveType | VelcroncomponentArrayType;
49
54
  };
50
55
  computed?: {
51
- [name: string]: [];
56
+ [name: string]: Array<string>;
52
57
  };
53
58
  parent?: VelcronRenderContext;
54
59
  hooks?: VelcronRenderContextHooks;
55
60
  eventHandlers?: VelcronRenderContextEventHandlers;
56
61
  editMode?: boolean;
62
+ disposers: Array<() => void>;
57
63
  }
58
64
  export interface VelcronRenderContextEventHandlers {
59
65
  receiving?: {
@@ -66,6 +72,7 @@ export interface VelcronRenderContextHooks {
66
72
  onItemSelected?: ((item: VelcronDefinition) => void);
67
73
  onItemRendered?: ((item: VelcronDefinition) => OnItemRenderedHookResult);
68
74
  onItemCreatedProps?: ((item: VelcronDefinition) => object);
75
+ onLoadReference?: ((reference: ActivityRendererReference) => Promise<VelcronDefinition>);
69
76
  }
70
77
  export interface VelcronContainerRenderer {
71
78
  definition: VelcronDefinition;
@@ -107,7 +114,7 @@ export interface VelcronDefinitionBase {
107
114
  */
108
115
  key?: string;
109
116
  }
110
- export interface VelcronDefinition extends VelcronDefinitionBase {
117
+ export interface VelcronDefinition extends VelcronDefinitionBase, VelcronDimensionStyling {
111
118
  body?: Array<VelcronDefinition>;
112
119
  style?: VelcronStyling;
113
120
  foreach?: string;
@@ -119,12 +126,22 @@ export interface VelcronDefinitionWithEditMode extends VelcronDefinition {
119
126
  edit?: VelcronBindableProp<boolean>;
120
127
  bind?: VelcronBindableProp;
121
128
  }
129
+ interface VelcronDimensionStyling {
130
+ margin?: VelcronSpacing;
131
+ padding?: VelcronSpacing;
132
+ }
122
133
  export interface VelcronColorStyling {
123
134
  colorSchemaType?: string;
124
- color?: string;
135
+ colorType?: string;
125
136
  filled?: boolean;
126
- container?: boolean;
127
137
  toned?: boolean;
138
+ color?: string;
139
+ }
140
+ export interface VelcronTextStyling {
141
+ text: string;
142
+ placeholder?: string;
143
+ typography?: string;
144
+ size?: string;
128
145
  }
129
146
  export interface VelcronStyling {
130
147
  margin?: number;
@@ -144,137 +161,173 @@ export interface VelcronCardStyling extends VelcronStyling {
144
161
  elevation: number;
145
162
  }
146
163
  export interface VelcronSpacing {
147
- top: number;
148
- right: number;
149
- bottom: number;
150
- left: number;
164
+ top?: number | string;
165
+ right?: number | string;
166
+ bottom?: number | string;
167
+ left?: number | string;
151
168
  }
152
169
  export interface VelcronIcon {
153
170
  type: VelcronIconTypes;
154
171
  name: string;
155
172
  }
156
173
  export interface VelcronAppDefinition<TState extends DynamicState = DynamicState> extends VelcronDefinitionBase {
157
- type: "Velcron";
158
- version: string;
159
- name: string;
174
+ type: "velcron";
175
+ version?: string;
176
+ name?: string;
160
177
  body?: Array<VelcronDefinition>;
161
178
  events?: VelcronOnLoadEvent & VelcronOnEditModeEvent;
162
179
  actions?: {
163
- [name: string]: [];
180
+ [name: string]: Array<string>;
164
181
  };
165
182
  components?: Array<VelcronCustomComponentDefinition>;
183
+ propEditors?: Array<VelcronPropertyEditor>;
166
184
  state?: TState;
167
185
  computed?: {
168
- [name: string]: [];
186
+ [name: string]: Array<string>;
169
187
  };
170
188
  }
171
189
  export interface VelcronComponentDefinition extends VelcronDefinition {
172
190
  type: string;
173
- events: any;
174
- properties: [];
175
- icon: any;
191
+ events?: any;
192
+ properties?: {
193
+ [name: string]: any;
194
+ };
195
+ icon?: any;
196
+ }
197
+ export interface VelcronRenderProp {
198
+ required?: boolean;
199
+ defaultValue?: any;
176
200
  }
177
201
  /*** Built-in Components *********************************************************************/
178
- export interface VelcronViewDefinition extends VelcronDefinition {
179
- type: "View";
180
- color?: VelcronColorStyling;
202
+ export interface VelcronViewDefinition extends VelcronDefinition, VelcronColorStyling {
203
+ type: "view";
181
204
  events?: VelcronOnPressEvent;
182
- column?: boolean;
205
+ direction?: VelcronBindableProp<"row" | "column" | "row-reverse" | "column-reverse">;
183
206
  columnStyle?: object;
184
- horizontalAlignment?: VelcronHorizontalAlignments;
185
- verticalAlignment?: VelcronVerticalAlignments;
207
+ hAlign?: VelcronHorizontalAlignments;
208
+ vAlign?: VelcronVerticalAlignments;
186
209
  grow?: number;
210
+ absolute?: VelcronSpacing;
187
211
  border?: VelcronBorder;
188
212
  borderRadius?: VelcronDimensions;
189
- width?: number;
213
+ width?: number | string;
214
+ minWidth?: number | string;
215
+ height?: number | string;
216
+ minHeight?: number | string;
190
217
  }
191
- export interface VelcronCardDefinition extends VelcronDefinition {
192
- type: "Card";
193
- color?: VelcronColorStyling;
218
+ export interface VelcronCardDefinition extends VelcronDefinition, VelcronColorStyling {
219
+ type: "card";
194
220
  style?: VelcronCardStyling;
195
221
  footer?: Array<VelcronDefinition>;
196
222
  events?: VelcronOnPressEvent;
197
223
  }
198
- export interface VelcronTextDefinition extends VelcronDefinitionWithEditMode {
199
- type: "Text";
200
- text: string;
224
+ export interface VelcronTextDefinition extends VelcronDefinitionWithEditMode, VelcronColorStyling, VelcronTextStyling {
225
+ type: "text";
201
226
  editLabel?: VelcronBindableProp;
202
- color?: string;
203
227
  lineClamp?: number;
204
228
  noWrap?: boolean;
205
- typography?: string;
206
229
  events?: VelcronOnPressEvent & VelcronOnUpdatedEvent;
207
230
  }
208
231
  export declare enum VelcronImageRatios {
209
- square = 1,
210
- landscape = 2
232
+ square = "square",
233
+ landscape = "landscape"
211
234
  }
212
235
  export interface VelcronImageDefinition extends VelcronDefinition {
213
- type: "Image";
214
- source: string;
215
- ratio: VelcronImageRatios;
236
+ type: "image";
237
+ url?: VelcronBindableProp<string>;
238
+ bind?: VelcronBindableProp<string>;
239
+ ratio?: VelcronImageRatios | string;
216
240
  cover?: VelcronBindableProp<boolean>;
217
241
  borderRadius?: VelcronDimensions;
218
242
  events?: VelcronOnPressEvent;
219
243
  }
220
244
  export interface VelcronButtonDefinition extends VelcronDefinition {
221
- type: "Button";
245
+ type: "button";
222
246
  text: string;
223
247
  icon?: VelcronIcon;
224
248
  disabled?: boolean;
225
249
  events?: VelcronOnPressEvent;
226
250
  }
227
251
  export interface VelcronTextInputDefinition extends VelcronDefinition {
228
- type: "TextInput";
252
+ type: "text-input";
229
253
  label?: string;
230
254
  bind: string;
231
255
  initialValue?: string;
232
256
  events: VelcronOnUpdatedEvent;
233
257
  }
234
258
  export interface VelcronProgressCircleDefinition extends VelcronDefinition {
235
- type: "ProgressCircle";
259
+ type: "progress-circle";
236
260
  events?: VelcronOnPressEvent;
237
261
  }
238
262
  export interface VelcronWebViewDefinition extends VelcronDefinition {
239
- type: "WebView";
263
+ type: "web-view";
240
264
  source: string;
241
265
  }
242
266
  export interface VelcronDialogDefinition extends VelcronDefinition {
243
- type: "Dialog";
267
+ type: "dialog";
244
268
  title: string;
245
269
  visible: string;
246
270
  events?: VelcronOnCloseRequestedEvent & VelcronOnClosedEvent;
247
271
  }
248
- export interface VelcronIconDefinition extends VelcronDefinition {
249
- type: "Icon";
272
+ export interface VelcronIconDefinition extends VelcronDefinition, VelcronColorStyling {
273
+ type: "icon";
250
274
  icon: string;
251
- color: VelcronColorStyling;
252
275
  size?: VelcronBindableProp<number>;
253
276
  events?: VelcronOnPressEvent;
254
277
  }
255
- export interface VelcronMarkdownDefinition extends VelcronDefinitionWithEditMode {
256
- type: "Markdown";
257
- text: string;
278
+ export interface VelcronMarkdownDefinition extends VelcronDefinitionWithEditMode, VelcronColorStyling, VelcronTextStyling {
279
+ type: "markdown";
258
280
  events: VelcronOnUpdatedEvent;
259
281
  }
260
282
  export interface VelcronDimensions {
261
- top: number;
262
- right: number;
263
- bottom: number;
264
- left: number;
283
+ top: number | string;
284
+ right: number | string;
285
+ bottom: number | string;
286
+ left: number | string;
265
287
  }
266
288
  export interface VelcronBorder extends VelcronDimensions {
267
- color: string;
289
+ colorType?: string;
290
+ toned?: boolean;
291
+ opacity?: number;
268
292
  }
269
293
  export interface VelcronChipDefinition extends VelcronDefinition {
270
- type: "Chip";
294
+ type: "chip";
271
295
  text: string;
272
296
  icon?: VelcronIcon;
273
297
  disabled?: boolean;
274
298
  events?: VelcronOnPressEvent;
275
299
  }
300
+ export interface VelcronSlotDefinition extends VelcronDefinition {
301
+ type: "slot";
302
+ bind: VelcronBindableProp<string>;
303
+ }
304
+ export interface VelcronReferencefinition extends VelcronDefinition {
305
+ type: "reference";
306
+ to: ActivityRendererReference;
307
+ }
308
+ export interface VelcronPropertyDefinition extends VelcronDefinition {
309
+ type: "property";
310
+ bind: VelcronBindableProp<string>;
311
+ }
312
+ export interface VelcronCheckboxDefinition extends VelcronDefinition {
313
+ type: "checkbox";
314
+ label: VelcronBindableProp<string>;
315
+ value: string;
316
+ bind: VelcronBindableProp<string>;
317
+ disabled: VelcronBindableProp<boolean>;
318
+ events: VelcronOnUpdatedEvent;
319
+ }
320
+ export interface VelcronPropertyDefinitionValue {
321
+ definitionId: GuidValue;
322
+ value: PropertyValue;
323
+ configuration: PropertyConfiguration<PropertyDefinition<any, any, any, PropertySetupBase>>;
324
+ }
276
325
  export type VelcronCustomComponentDefinition = VelcronComponentDefinition;
277
326
  export type VelcronRenderProps<TDefinition> = {
278
327
  definition: TDefinition;
279
328
  renderContext: VelcronRenderContext;
280
329
  };
330
+ export type VelcronAppRendererProps = VelcronRenderProps<VelcronAppDefinition> & {
331
+ rootApp: boolean;
332
+ };
333
+ export {};
@@ -0,0 +1,269 @@
1
+ import { TypographySize, TypographyType, VelcronImageRatios } from "@omnia/fx-models";
2
+ export interface ResolvedPropertyEditor {
3
+ editor: VelcronPropertyEditor;
4
+ }
5
+ export interface VelcronPropertyEditor<TSettings = any> {
6
+ name?: string;
7
+ category?: string;
8
+ type: BuiltInPropertyEditorType | string;
9
+ settings?: TSettings;
10
+ stateMapping?: string;
11
+ propertyMapping?: boolean;
12
+ multiple?: boolean;
13
+ component?: unknown;
14
+ }
15
+ export interface BuiltInPropertyEditors {
16
+ text: unknown;
17
+ slider: unknown;
18
+ switch: unknown;
19
+ alignment: unknown;
20
+ color: unknown;
21
+ markdown: unknown;
22
+ icon: unknown;
23
+ image: unknown;
24
+ typography: unknown;
25
+ "color-schema-type": unknown;
26
+ }
27
+ export type BuiltInPropertyEditorType = "text" | "slider" | "switch" | "alignment" | "color" | "markdown" | "icon" | "image" | "typography" | "color-schema-type";
28
+ export declare enum BuiltInPropertyEditorTypes {
29
+ text = "text",
30
+ slider = "slider",
31
+ switch = "switch",
32
+ alignment = "alignment",
33
+ color = "color",
34
+ markdown = "markdown",
35
+ icon = "icon",
36
+ image = "image",
37
+ typography = "typography",
38
+ "color-schema-type" = "color-schema-type"
39
+ }
40
+ export interface VelcronSliderPropertyEditorSettings {
41
+ min: number;
42
+ max: number;
43
+ step: number;
44
+ }
45
+ export interface VelcronTypographyEditorSettings {
46
+ type: "title" | "text";
47
+ }
48
+ export interface VelcronSliderPropertyEditor extends VelcronPropertyEditor<VelcronSliderPropertyEditorSettings> {
49
+ type: "slider";
50
+ }
51
+ export interface VelcronTextPropertyEditor extends VelcronPropertyEditor<any> {
52
+ type: "text";
53
+ }
54
+ export interface VelcronEnterprisePropertyEditor extends VelcronPropertyEditor<any> {
55
+ type: "enterprise-property";
56
+ }
57
+ export interface VelcronTypographyPropertyEditor extends VelcronPropertyEditor<VelcronTypographyEditorSettings> {
58
+ type: "typography";
59
+ }
60
+ export interface VelcronSwitchPropertyEditor extends VelcronPropertyEditor<any> {
61
+ type: "switch";
62
+ }
63
+ export interface VelcronAlignmentPropertyEditor extends VelcronPropertyEditor<any> {
64
+ type: "alignment";
65
+ }
66
+ export interface VelcronColorPropertyEditor extends VelcronPropertyEditor<any> {
67
+ type: "color";
68
+ }
69
+ export interface VelcronColorSchemaPropertyEditor extends VelcronPropertyEditor<any> {
70
+ type: "color-schema-type";
71
+ }
72
+ export interface VelcronIconPropertyEditor extends VelcronPropertyEditor<any> {
73
+ type: "icon";
74
+ }
75
+ export interface VelcronMarkdownPropertyEditor extends VelcronPropertyEditor<any> {
76
+ type: "markdown";
77
+ }
78
+ export interface VelcronImagePropertyEditor extends VelcronPropertyEditor<any> {
79
+ type: "image";
80
+ }
81
+ export interface VelcronState {
82
+ images?: VelcronImagesState;
83
+ styling?: VelcronStylingState;
84
+ colorSchemas?: VelcronColorSchemasState;
85
+ content?: VelcronContentState;
86
+ header?: VelcronHeaderState;
87
+ properties?: VelcronPropertiesState;
88
+ }
89
+ export interface VelcronHeaderState {
90
+ title?: VelcronTextState;
91
+ icon?: string;
92
+ }
93
+ export interface VelcronTextState {
94
+ text?: string;
95
+ placeholder?: string;
96
+ typography?: VelcronTypographyState;
97
+ }
98
+ export interface VelcronTypographyState {
99
+ type?: TypographyType;
100
+ size?: TypographySize;
101
+ toned?: boolean;
102
+ }
103
+ export interface VelcronContentState {
104
+ caption?: VelcronTextState;
105
+ main?: VelcronTextState;
106
+ title?: VelcronTextState;
107
+ summary?: VelcronTextState;
108
+ }
109
+ export interface VelcronPropertiesState {
110
+ user: any;
111
+ mappings: Array<any>;
112
+ }
113
+ export interface VelcronImagesState {
114
+ main?: VelcronImageState;
115
+ }
116
+ export interface VelcronImageState {
117
+ url?: string;
118
+ ratio?: VelcronImageRatios;
119
+ caption?: VelcronTextState;
120
+ }
121
+ export interface VelcronStylingState {
122
+ }
123
+ export interface VelcronColorSchemasState {
124
+ main: VelcronColorSchemaState;
125
+ }
126
+ export interface VelcronColorSchemaState {
127
+ type?: string;
128
+ filled?: boolean;
129
+ }
130
+ export declare const VelcronImagesStateBinding: {
131
+ main: {
132
+ editor: string;
133
+ url: string;
134
+ ratio: string;
135
+ caption: string;
136
+ };
137
+ };
138
+ export declare const VelcronHeaderStateBinding: {
139
+ title: {
140
+ text: string;
141
+ placeholder: string;
142
+ typography: {
143
+ editor: any;
144
+ type: any;
145
+ size: any;
146
+ toned: any;
147
+ };
148
+ };
149
+ icon: string;
150
+ };
151
+ export declare const VelcronContentStateBinding: {
152
+ title: {
153
+ text: string;
154
+ placeholder: string;
155
+ typography: {
156
+ editor: any;
157
+ type: any;
158
+ size: any;
159
+ toned: any;
160
+ };
161
+ };
162
+ main: {
163
+ text: string;
164
+ placeholder: string;
165
+ typography: {
166
+ editor: any;
167
+ type: any;
168
+ size: any;
169
+ toned: any;
170
+ };
171
+ };
172
+ caption: {
173
+ text: string;
174
+ placeholder: string;
175
+ typography: {
176
+ editor: any;
177
+ type: any;
178
+ size: any;
179
+ toned: any;
180
+ };
181
+ };
182
+ summary: {
183
+ text: string;
184
+ placeholder: string;
185
+ typography: {
186
+ editor: any;
187
+ type: any;
188
+ size: any;
189
+ toned: any;
190
+ };
191
+ };
192
+ };
193
+ export declare const VelcronColorSchemasStateBinding: {
194
+ main: {
195
+ type: string;
196
+ filled: string;
197
+ };
198
+ };
199
+ export declare const VelcronStateBinding: {
200
+ colorSchemas: {
201
+ main: {
202
+ type: string;
203
+ filled: string;
204
+ };
205
+ };
206
+ images: {
207
+ main: {
208
+ editor: string;
209
+ url: string;
210
+ ratio: string;
211
+ caption: string;
212
+ };
213
+ };
214
+ content: {
215
+ title: {
216
+ text: string;
217
+ placeholder: string;
218
+ typography: {
219
+ editor: any;
220
+ type: any;
221
+ size: any;
222
+ toned: any;
223
+ };
224
+ };
225
+ main: {
226
+ text: string;
227
+ placeholder: string;
228
+ typography: {
229
+ editor: any;
230
+ type: any;
231
+ size: any;
232
+ toned: any;
233
+ };
234
+ };
235
+ caption: {
236
+ text: string;
237
+ placeholder: string;
238
+ typography: {
239
+ editor: any;
240
+ type: any;
241
+ size: any;
242
+ toned: any;
243
+ };
244
+ };
245
+ summary: {
246
+ text: string;
247
+ placeholder: string;
248
+ typography: {
249
+ editor: any;
250
+ type: any;
251
+ size: any;
252
+ toned: any;
253
+ };
254
+ };
255
+ };
256
+ header: {
257
+ title: {
258
+ text: string;
259
+ placeholder: string;
260
+ typography: {
261
+ editor: any;
262
+ type: any;
263
+ size: any;
264
+ toned: any;
265
+ };
266
+ };
267
+ icon: string;
268
+ };
269
+ };
@@ -4,3 +4,5 @@ export * from "./VelcronEvents";
4
4
  export * from "./VelcronTypes";
5
5
  export * from "./Enums";
6
6
  export * from "./VelcronUnitProvider";
7
+ export * from "./VelcronPropertyEditorDefinitions";
8
+ export * from "./ActionHooks";
@@ -1,13 +1,16 @@
1
- import { VelcronAction, VelcronActionWithAutoAwait, VelcronRenderContext, DeferredPromise } from "../models";
1
+ import { VelcronAction, VelcronActionWithAutoAwait, VelcronRenderContext, DeferredPromise, VelcronActionHooks } from "../models";
2
2
  import { IActionHandler } from "../actions";
3
3
  export declare class VelcronActions {
4
4
  static _actionHandlers: {
5
5
  [name: string]: IActionHandler;
6
6
  } | null;
7
+ static actionHooks: {
8
+ [name: string]: VelcronActionHooks;
9
+ };
7
10
  static registerAction(name: string, handler: IActionHandler): void;
8
11
  static parseAndExecuteActions(templates: Array<string>, renderContext: VelcronRenderContext, customActionContext?: VelcronCustomActionExecutionContext): void;
9
12
  static parseFunction(target: {
10
- [name: string]: [];
13
+ [name: string]: Array<string>;
11
14
  }, template: string, renderContext: VelcronRenderContext, params: Array<VelcronActionParameterValue>, foundCb: (name: string, params: {}) => void): void;
12
15
  static getActionFromTemplate(partialTemplate: string, eventId: string, renderContext: VelcronRenderContext, customActionContext?: VelcronCustomActionExecutionContext): VelcronAction;
13
16
  static valueIsAction(value: string): boolean;
@@ -15,6 +18,9 @@ export declare class VelcronActions {
15
18
  static executeAction(awAction: VelcronActionWithAutoAwait, callback: (continueExecution: boolean) => void): void;
16
19
  static dataBindComputed(renderContext: VelcronRenderContext, template: string): string;
17
20
  static parseAndExecuteComputed(renderContext: VelcronRenderContext, template: string): string;
21
+ static registerActionHook<TBefore, TAfter>(actionName: string, handler: VelcronActionHooks<TBefore, TAfter>): void;
22
+ static tryTriggerBeforeActionHook<T>(actionName: string, args: T): T;
23
+ static tryTriggerAfterActionHook<T>(actionName: string, args: T): T;
18
24
  private static extractParameterValues;
19
25
  }
20
26
  interface VelcronActionParameterValue {