@omnia/fx 8.0.27-vnext → 8.0.29-vnext

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (257) hide show
  1. package/internal-do-not-import-from-here/contexts/index.d.ts +0 -1
  2. package/internal-do-not-import-from-here/core/messaging/BuiltInTopics.d.ts +1 -0
  3. package/internal-do-not-import-from-here/core/utils/gpt3utils/Encoder.d.ts +50259 -0
  4. package/internal-do-not-import-from-here/core/utils/gpt3utils/GPT3Utils.d.ts +5 -0
  5. package/internal-do-not-import-from-here/core/utils/gpt3utils/Vocab.d.ts +1 -0
  6. package/internal-do-not-import-from-here/core/utils/gpt3utils/index.d.ts +1 -0
  7. package/internal-do-not-import-from-here/core/utils/index.d.ts +1 -0
  8. package/internal-do-not-import-from-here/index.d.ts +1 -1
  9. package/internal-do-not-import-from-here/manifests/omnia.fx.context.manifest.json +1 -1
  10. package/internal-do-not-import-from-here/manifests/omnia.fx.core.manifest.json +1 -1
  11. package/internal-do-not-import-from-here/manifests/omnia.fx.manifest.json +1 -1
  12. package/internal-do-not-import-from-here/manifests/omnia.fx.ux.manifest.json +1 -1
  13. package/internal-do-not-import-from-here/manifests/omnia.fx.ux.richtexteditor.manifest.json +1 -1
  14. package/internal-do-not-import-from-here/services/AzureOpenAIService.d.ts +22 -0
  15. package/internal-do-not-import-from-here/services/FeatureService.d.ts +1 -0
  16. package/internal-do-not-import-from-here/services/identities/IdentityService.d.ts +4 -1
  17. package/internal-do-not-import-from-here/services/identities/UserIdentityService.d.ts +3 -2
  18. package/internal-do-not-import-from-here/services/identities/UserService.d.ts +3 -3
  19. package/internal-do-not-import-from-here/services/index.d.ts +2 -0
  20. package/internal-do-not-import-from-here/services/permissions/PermissionService.d.ts +2 -1
  21. package/internal-do-not-import-from-here/services/properties/EnterprisePropertiesProvider.d.ts +45 -0
  22. package/internal-do-not-import-from-here/services/properties/bindings/PropertyBindingService.d.ts +17 -0
  23. package/internal-do-not-import-from-here/services/properties/bindings/index.d.ts +2 -0
  24. package/internal-do-not-import-from-here/services/properties/bindings/providers/ExtendedEnterprisePropertyBindingProvider.d.ts +9 -0
  25. package/internal-do-not-import-from-here/services/properties/bindings/providers/IdentityPropertyBindingProvider.d.ts +10 -0
  26. package/internal-do-not-import-from-here/services/properties/bindings/providers/index.d.ts +2 -0
  27. package/internal-do-not-import-from-here/services/properties/datasource/DataSourcePropertiesService.d.ts +79 -0
  28. package/internal-do-not-import-from-here/services/properties/datasource/DataSourcePropertyDefinitionHandler.d.ts +35 -0
  29. package/internal-do-not-import-from-here/services/properties/datasource/DataSourcePropertyProvider.d.ts +49 -0
  30. package/internal-do-not-import-from-here/services/properties/datasource/TestDataSourceService.d.ts +6 -0
  31. package/internal-do-not-import-from-here/services/properties/datasource/index.d.ts +4 -0
  32. package/internal-do-not-import-from-here/services/properties/index.d.ts +3 -0
  33. package/internal-do-not-import-from-here/shared/models/theming/BlueprintDefinition.d.ts +4 -2
  34. package/internal-do-not-import-from-here/shared/models/theming/BlueprintDefinition.js +2 -0
  35. package/internal-do-not-import-from-here/stores/EnterprisePropertyStore.d.ts +3 -2
  36. package/internal-do-not-import-from-here/stores/FeatureStore.d.ts +1 -0
  37. package/internal-do-not-import-from-here/stores/IdentityStore.d.ts +1 -1
  38. package/internal-do-not-import-from-here/stores/IdentitySyncProviderStore.d.ts +1 -0
  39. package/internal-do-not-import-from-here/stores/UserIdentityStore.d.ts +8 -2
  40. package/internal-do-not-import-from-here/ux/AppRollupFilterEngineContext.d.ts +1 -0
  41. package/internal-do-not-import-from-here/ux/Exposes.d.ts +2 -0
  42. package/internal-do-not-import-from-here/ux/ListViewComponentBase.d.ts +6 -0
  43. package/internal-do-not-import-from-here/ux/ScrollHelper.d.ts +28 -0
  44. package/internal-do-not-import-from-here/ux/SidePanelContext.d.ts +4 -3
  45. package/internal-do-not-import-from-here/ux/UxModels.d.ts +99 -15
  46. package/internal-do-not-import-from-here/ux/VueComponentBase.d.ts +2 -3
  47. package/internal-do-not-import-from-here/ux/app/AppPropertiesProvider.d.ts +29 -17
  48. package/internal-do-not-import-from-here/ux/app/appinstance/view/listing/ListView.d.ts +1 -0
  49. package/internal-do-not-import-from-here/ux/app/index.d.ts +1 -0
  50. package/internal-do-not-import-from-here/ux/app/management/core/loc.d.ts +3 -0
  51. package/internal-do-not-import-from-here/ux/app/management/tabs/namingpolicies/ListingNamingPolicies.d.ts +0 -4
  52. package/internal-do-not-import-from-here/ux/app/management/tabs/templates/tabs/PropertyRow.d.ts +1 -1
  53. package/internal-do-not-import-from-here/ux/authsetup/AuthSetup.css.d.ts +1 -0
  54. package/internal-do-not-import-from-here/ux/authsetup/loc/localize.d.ts +6 -0
  55. package/internal-do-not-import-from-here/ux/authsetup/services/AuthSetupService.d.ts +1 -0
  56. package/internal-do-not-import-from-here/ux/datetimepicker/DateTimePicker.d.ts +1 -0
  57. package/internal-do-not-import-from-here/ux/datetimezonepicker/DateTimeZonePicker.d.ts +11 -11
  58. package/internal-do-not-import-from-here/ux/datetimezonepicker/IDateTimeZonePicker.d.ts +2 -2
  59. package/internal-do-not-import-from-here/ux/datetimezonerenderer/DateTimeZoneRenderer.d.ts +5 -5
  60. package/internal-do-not-import-from-here/ux/datetimezonerenderer/IDateTimeZoneRenderer.d.ts +1 -1
  61. package/internal-do-not-import-from-here/ux/editorchrome/chrome/EditorChrome.d.ts +1 -0
  62. package/internal-do-not-import-from-here/ux/enterpriseproperties/EnterprisePropertyComponentProps.d.ts +1 -0
  63. package/internal-do-not-import-from-here/ux/enterpriseproperties/edit/tagsproperty/TagsPropertyEdit.d.ts +2 -1
  64. package/internal-do-not-import-from-here/ux/features/FeatureActivation.d.ts +4 -2
  65. package/internal-do-not-import-from-here/ux/features/loc/localize.d.ts +6 -0
  66. package/internal-do-not-import-from-here/ux/filterengine/FilterEngineHandlerStorage.d.ts +4 -1
  67. package/internal-do-not-import-from-here/ux/filterengine/FilterEngineRenderer.d.ts +6 -1
  68. package/internal-do-not-import-from-here/ux/filterengine/Helper.d.ts +2 -1
  69. package/internal-do-not-import-from-here/ux/{properties/property-renderer/PropertyDatasourceRenderer.d.ts → filterengine/components/renderer/PropertyDropdownRenderer.d.ts} +16 -21
  70. package/internal-do-not-import-from-here/ux/{user/components/PropertyConfigurationRenderer.d.ts → filterengine/components/renderer/PropertyListRenderer.d.ts} +11 -11
  71. package/internal-do-not-import-from-here/ux/filterengine/components/renderer/person/PersonPropertyChipItem.d.ts +160 -26
  72. package/internal-do-not-import-from-here/ux/filterengine/components/renderer/person/PersonPropertyItemRenderer.d.ts +1 -1
  73. package/internal-do-not-import-from-here/ux/filterengine/components/renderer/person/PersonPropertyRenderer.d.ts +5 -0
  74. package/internal-do-not-import-from-here/ux/filterengine/components/renderer/tags/TagsPropertyRenderer.d.ts +57 -0
  75. package/internal-do-not-import-from-here/ux/filterengine/components/renderer/tags/TagsPropertyRendererStyle.css.d.ts +4 -0
  76. package/internal-do-not-import-from-here/ux/filterengine/components/selectionsarea/tags/SelectionsAreaTagsRenderer.d.ts +62 -0
  77. package/internal-do-not-import-from-here/ux/filterengine/components/settings/number/NumberPropertySettingsFixer.d.ts +1 -1
  78. package/internal-do-not-import-from-here/ux/filterengine/components/settings/tags/TagsPropertyDefaultValueInput.d.ts +85 -0
  79. package/internal-do-not-import-from-here/ux/filterengine/components/settings/tags/TagsPropertySettings.d.ts +90 -0
  80. package/internal-do-not-import-from-here/ux/filterengine/components/settings/tags/TagsPropertySettingsFixer.d.ts +4 -0
  81. package/internal-do-not-import-from-here/ux/filterengine/components/settings/text/TextPropertySettingsFixer.d.ts +1 -1
  82. package/internal-do-not-import-from-here/ux/filterengine/handler/FilterEngineHandler.d.ts +8 -8
  83. package/internal-do-not-import-from-here/ux/filterengine/handler/TagsFilterEngineHandler.d.ts +37 -0
  84. package/internal-do-not-import-from-here/ux/filterengine/shared/BasePropertySettings.d.ts +3 -0
  85. package/internal-do-not-import-from-here/ux/identities/loc/Localize.d.ts +10 -9
  86. package/internal-do-not-import-from-here/ux/identitypicker/IdentityPicker.css.d.ts +3 -10
  87. package/internal-do-not-import-from-here/ux/identitypicker/IdentityPicker.d.ts +30 -65
  88. package/internal-do-not-import-from-here/ux/identitypicker/IdentityPickerButton.d.ts +152 -0
  89. package/internal-do-not-import-from-here/ux/identitypicker/IdentityPickerDialog.d.ts +132 -0
  90. package/internal-do-not-import-from-here/ux/identitypicker/IdentityPickerField.d.ts +177 -0
  91. package/internal-do-not-import-from-here/ux/identitypicker/IdentityPickerInlineField.d.ts +182 -0
  92. package/internal-do-not-import-from-here/ux/imagegrid/IImageGrid.d.ts +2 -1
  93. package/internal-do-not-import-from-here/ux/imagegrid/ImageGrid.d.ts +3 -2
  94. package/internal-do-not-import-from-here/ux/imagegrid/loc/localize.d.ts +2 -0
  95. package/internal-do-not-import-from-here/ux/journey/index.d.ts +2 -0
  96. package/internal-do-not-import-from-here/ux/journey/testbench/JourneyTest.d.ts +52 -0
  97. package/internal-do-not-import-from-here/ux/journey/v2/JourneyBlade.css.d.ts +7 -0
  98. package/internal-do-not-import-from-here/ux/journey/v2/JourneyBlade.d.ts +153 -0
  99. package/internal-do-not-import-from-here/ux/journey/v2/JourneyV2.css.d.ts +4 -0
  100. package/internal-do-not-import-from-here/ux/journey/v2/JourneyV2.d.ts +46 -0
  101. package/internal-do-not-import-from-here/ux/journey/v2/models/BladeInstance.d.ts +5 -0
  102. package/internal-do-not-import-from-here/ux/journey/v2/models/index.d.ts +1 -0
  103. package/internal-do-not-import-from-here/ux/journey/v2/stores/JourneyStore.d.ts +23 -0
  104. package/internal-do-not-import-from-here/ux/journey/v2/stores/index.d.ts +1 -0
  105. package/internal-do-not-import-from-here/ux/languagepicker/ILanguagePicker.d.ts +2 -0
  106. package/internal-do-not-import-from-here/ux/languagepicker/LanguagePicker.d.ts +1 -0
  107. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/blocktitle/BlockTitle.css.d.ts +1 -1
  108. package/internal-do-not-import-from-here/ux/layoutcanvas/velcron_definitions/contentblocks.d.ts +2 -0
  109. package/internal-do-not-import-from-here/ux/magiclink/loc/localize.d.ts +1 -0
  110. package/internal-do-not-import-from-here/ux/mediapickerproviders/bingprovider/BingProvider.d.ts +1 -0
  111. package/internal-do-not-import-from-here/ux/mediapickerproviders/dalleprovider/DallEProvider.css.d.ts +26 -0
  112. package/internal-do-not-import-from-here/ux/mediapickerproviders/dalleprovider/DallEProvider.d.ts +40 -0
  113. package/internal-do-not-import-from-here/ux/mediapickerproviders/dalleprovider/PollingImageComponent.d.ts +87 -0
  114. package/internal-do-not-import-from-here/ux/mediapickerproviders/dalleprovider/loc/localize.d.ts +22 -0
  115. package/internal-do-not-import-from-here/ux/mediapickerproviders/mediaproviderbase/GridViewMediaProviderComponent.d.ts +4 -1
  116. package/internal-do-not-import-from-here/ux/mediapickerproviders/pexelsprovider/PexelProvider.d.ts +1 -0
  117. package/internal-do-not-import-from-here/ux/models/ProfileCardStyles.d.ts +2 -0
  118. package/internal-do-not-import-from-here/ux/optionpicker/OptionPicker.d.ts +1 -1
  119. package/internal-do-not-import-from-here/ux/oxide/draggable/Draggable.css.d.ts +6 -0
  120. package/internal-do-not-import-from-here/ux/oxide/draggable/Draggable.d.ts +593 -0
  121. package/internal-do-not-import-from-here/ux/oxide/menu/Menu.d.ts +47 -5
  122. package/internal-do-not-import-from-here/ux/oxide/toolbar/Toolbar.d.ts +53 -6
  123. package/internal-do-not-import-from-here/ux/oxide/treeview/Treeview.css.d.ts +0 -2
  124. package/internal-do-not-import-from-here/ux/profilecard/IProfileCard.d.ts +1 -0
  125. package/internal-do-not-import-from-here/ux/profilecard/ProfileCard.d.ts +6 -1
  126. package/internal-do-not-import-from-here/ux/properties/builtins/birthday/BirthdayDisplay.d.ts +11 -7
  127. package/internal-do-not-import-from-here/ux/properties/builtins/birthday/BirthdayEditor.d.ts +16 -12
  128. package/internal-do-not-import-from-here/ux/properties/builtins/birthday/BirthdayPropertyDefinition.d.ts +1 -13
  129. package/internal-do-not-import-from-here/ux/properties/builtins/boolean/BooleanDisplay.css.d.ts +7 -0
  130. package/internal-do-not-import-from-here/ux/{user/components/UserPropertyProviderDisplay.d.ts → properties/builtins/boolean/BooleanDisplay.d.ts} +17 -17
  131. package/internal-do-not-import-from-here/ux/properties/builtins/boolean/BooleanEditor.css.d.ts +7 -0
  132. package/internal-do-not-import-from-here/ux/properties/builtins/boolean/BooleanEditor.d.ts +83 -0
  133. package/internal-do-not-import-from-here/ux/properties/builtins/boolean/BooleanPropertyDefinition.d.ts +1 -0
  134. package/internal-do-not-import-from-here/ux/properties/builtins/date/DateDisplay.d.ts +11 -7
  135. package/internal-do-not-import-from-here/ux/properties/builtins/date/DateEditor.d.ts +16 -12
  136. package/internal-do-not-import-from-here/ux/properties/builtins/date/DatePropertyDefinition.d.ts +1 -11
  137. package/internal-do-not-import-from-here/ux/properties/builtins/date-time/DateTimeDisplay.d.ts +16 -12
  138. package/internal-do-not-import-from-here/ux/properties/builtins/date-time/DateTimeEditor.d.ts +16 -12
  139. package/internal-do-not-import-from-here/ux/properties/builtins/date-time/DateTimePropertyDefinition.d.ts +1 -16
  140. package/internal-do-not-import-from-here/ux/properties/builtins/email/EmailDisplay.d.ts +10 -5
  141. package/internal-do-not-import-from-here/ux/properties/builtins/email/EmailEditor.d.ts +15 -10
  142. package/internal-do-not-import-from-here/ux/properties/builtins/email/EmailPropertyDefinition.d.ts +1 -12
  143. package/internal-do-not-import-from-here/ux/properties/builtins/html/HtmlConfiguration.d.ts +16 -11
  144. package/internal-do-not-import-from-here/ux/properties/builtins/html/HtmlDisplay.d.ts +10 -5
  145. package/internal-do-not-import-from-here/ux/properties/builtins/html/HtmlEditor.d.ts +15 -10
  146. package/internal-do-not-import-from-here/ux/properties/builtins/html/HtmlPropertyDefinition.d.ts +1 -16
  147. package/internal-do-not-import-from-here/ux/properties/builtins/identity/IdentityConfiguration.d.ts +16 -11
  148. package/internal-do-not-import-from-here/ux/properties/builtins/identity/IdentityDisplay.d.ts +6 -2
  149. package/internal-do-not-import-from-here/ux/properties/builtins/identity/IdentityEditor.d.ts +7 -3
  150. package/internal-do-not-import-from-here/ux/properties/builtins/identity/IdentityPropertyDefinition.d.ts +1 -5
  151. package/internal-do-not-import-from-here/ux/properties/builtins/image/ImageConfiguration.d.ts +16 -11
  152. package/internal-do-not-import-from-here/ux/properties/builtins/image/ImageDisplay.d.ts +5 -0
  153. package/internal-do-not-import-from-here/ux/properties/builtins/image/ImageEditor.d.ts +6 -1
  154. package/internal-do-not-import-from-here/ux/properties/builtins/image/ImagePropertyDefinition.d.ts +1 -5
  155. package/internal-do-not-import-from-here/ux/properties/builtins/integer/IntegerDisplay.css.d.ts +7 -0
  156. package/internal-do-not-import-from-here/ux/properties/{legacy-enterprise-property/LegacyEnterprisePropertyDisplay.d.ts → builtins/integer/IntegerDisplay.d.ts} +17 -26
  157. package/internal-do-not-import-from-here/ux/properties/builtins/integer/IntegerEditor.css.d.ts +7 -0
  158. package/internal-do-not-import-from-here/ux/properties/builtins/integer/IntegerEditor.d.ts +83 -0
  159. package/internal-do-not-import-from-here/ux/properties/builtins/integer/IntegerPropertyDefinition.d.ts +1 -0
  160. package/internal-do-not-import-from-here/ux/properties/builtins/language/LanguageDisplay.d.ts +11 -7
  161. package/internal-do-not-import-from-here/ux/properties/builtins/language/LanguageEditor.d.ts +16 -12
  162. package/internal-do-not-import-from-here/ux/properties/builtins/language/LanguagePropertyDefinition.d.ts +1 -15
  163. package/internal-do-not-import-from-here/ux/properties/builtins/link/LinkConfiguration.d.ts +16 -11
  164. package/internal-do-not-import-from-here/ux/properties/builtins/link/LinkDisplay.d.ts +11 -7
  165. package/internal-do-not-import-from-here/ux/properties/builtins/link/LinkEditor.d.ts +16 -12
  166. package/internal-do-not-import-from-here/ux/properties/builtins/link/LinkPropertyDefinition.d.ts +1 -12
  167. package/internal-do-not-import-from-here/ux/properties/builtins/media/MediaDisplay.css.d.ts +7 -0
  168. package/internal-do-not-import-from-here/ux/properties/builtins/media/MediaDisplay.d.ts +66 -0
  169. package/internal-do-not-import-from-here/ux/properties/builtins/media/MediaEditor.css.d.ts +8 -0
  170. package/internal-do-not-import-from-here/ux/{user/components/UserPropertiesByMicrosoftGraphDisplay.d.ts → properties/builtins/media/MediaEditor.d.ts} +33 -19
  171. package/internal-do-not-import-from-here/ux/properties/builtins/media/MediaPropertyDefinition.d.ts +1 -0
  172. package/internal-do-not-import-from-here/ux/properties/builtins/multiline-text/MultilineTextDisplay.d.ts +11 -7
  173. package/internal-do-not-import-from-here/ux/properties/builtins/multiline-text/MultilineTextEditor.d.ts +16 -12
  174. package/internal-do-not-import-from-here/ux/properties/builtins/multiline-text/MultilineTextPropertyDefinition.d.ts +1 -11
  175. package/internal-do-not-import-from-here/ux/properties/builtins/multilingualText/MultilingualTextDisplay.d.ts +11 -7
  176. package/internal-do-not-import-from-here/ux/properties/builtins/multilingualText/MultilingualTextEditor.d.ts +16 -12
  177. package/internal-do-not-import-from-here/ux/properties/builtins/multilingualText/MultilingualTextPropertyDefinition.d.ts +1 -14
  178. package/internal-do-not-import-from-here/ux/properties/builtins/phone-number/PhoneNumberDisplay.d.ts +11 -7
  179. package/internal-do-not-import-from-here/ux/properties/builtins/phone-number/PhoneNumberEditor.d.ts +15 -10
  180. package/internal-do-not-import-from-here/ux/properties/builtins/phone-number/PhoneNumberPropertyDefinition.d.ts +1 -11
  181. package/internal-do-not-import-from-here/ux/properties/builtins/text/TextDisplay.d.ts +11 -7
  182. package/internal-do-not-import-from-here/ux/properties/builtins/text/TextEditor.d.ts +16 -12
  183. package/internal-do-not-import-from-here/ux/properties/builtins/text/TextPropertyDefinition.d.ts +1 -15
  184. package/internal-do-not-import-from-here/ux/properties/builtins/time/TimeDisplay.d.ts +16 -12
  185. package/internal-do-not-import-from-here/ux/properties/builtins/time/TimeEditor.d.ts +26 -22
  186. package/internal-do-not-import-from-here/ux/properties/builtins/time/TimePropertyDefinition.d.ts +1 -16
  187. package/internal-do-not-import-from-here/ux/properties/index.d.ts +0 -2
  188. package/internal-do-not-import-from-here/ux/properties/models/DataSource.d.ts +26 -19
  189. package/internal-do-not-import-from-here/ux/properties/models/PropertyApi.d.ts +14 -3
  190. package/internal-do-not-import-from-here/ux/properties/models/PropertyInput.d.ts +7 -1
  191. package/internal-do-not-import-from-here/ux/properties/models/PropertyPicker.d.ts +9 -3
  192. package/internal-do-not-import-from-here/ux/properties/models/index.d.ts +0 -2
  193. package/internal-do-not-import-from-here/ux/properties/property-configuration/LabelOptionsRenderer.d.ts +67 -0
  194. package/internal-do-not-import-from-here/ux/properties/property-configuration/PropertyConfiguration.d.ts +67 -0
  195. package/internal-do-not-import-from-here/ux/properties/property-configuration/PropertyLocking.css.d.ts +7 -0
  196. package/internal-do-not-import-from-here/ux/properties/property-configuration/PropertyLocking.d.ts +95 -0
  197. package/internal-do-not-import-from-here/ux/properties/property-picker/PropertyInput.d.ts +1 -1
  198. package/internal-do-not-import-from-here/ux/properties/property-picker/PropertyPicker.d.ts +11 -10
  199. package/internal-do-not-import-from-here/ux/{user/UserPropertyRenderer.d.ts → properties/property-renderer/PropertyBindingValueRenderer.d.ts} +14 -20
  200. package/internal-do-not-import-from-here/ux/properties/property-renderer/{PropertyRenderer.d.ts → PropertyValueRenderer.d.ts} +20 -15
  201. package/internal-do-not-import-from-here/ux/richtexteditor/RichTextEditor.d.ts +1 -1
  202. package/internal-do-not-import-from-here/ux/richtexteditor/TextCompletionPanel/TextCompletionPanel.css.d.ts +28 -0
  203. package/internal-do-not-import-from-here/ux/richtexteditor/TextCompletionPanel/TextCompletionPanel.d.ts +597 -0
  204. package/internal-do-not-import-from-here/ux/richtexteditor/TextCompletionPanel/loc/localize.d.ts +28 -0
  205. package/internal-do-not-import-from-here/ux/richtexteditor/extensions/TextCompletion/Registration.d.ts +5 -0
  206. package/internal-do-not-import-from-here/ux/richtexteditor/extensions/TextCompletion/TextCompletion.d.ts +12 -0
  207. package/internal-do-not-import-from-here/ux/richtexteditor/extensions/TextCompletion/TextCompletionHandler.d.ts +34 -0
  208. package/internal-do-not-import-from-here/ux/richtexteditor/extensions/TextCompletion/TextCompletionMenu.d.ts +24 -0
  209. package/internal-do-not-import-from-here/ux/richtexteditor/extensions/TextCompletion/TextCompletionNode.d.ts +3 -0
  210. package/internal-do-not-import-from-here/ux/richtexteditor/extensions/TextCompletion/TextCompletionToolbar.d.ts +15 -0
  211. package/internal-do-not-import-from-here/ux/richtexteditor/extensions/TextCompletion/index.d.ts +4 -0
  212. package/internal-do-not-import-from-here/ux/richtexteditor/extensions/index.d.ts +1 -0
  213. package/internal-do-not-import-from-here/ux/richtexteditor/extensions/loc/localize.d.ts +5 -0
  214. package/internal-do-not-import-from-here/ux/sidepanel/SidePanelRenderer.d.ts +1 -0
  215. package/internal-do-not-import-from-here/ux/sidepanel/models/IRegistration.d.ts +11 -7
  216. package/internal-do-not-import-from-here/ux/signin/Shared.d.ts +2 -2
  217. package/internal-do-not-import-from-here/ux/signin/loc/localize.d.ts +1 -0
  218. package/internal-do-not-import-from-here/ux/social/CommentDialog.d.ts +2 -1
  219. package/internal-do-not-import-from-here/ux/theming-v2/styling/UseTypographyStyling.d.ts +2 -2
  220. package/internal-do-not-import-from-here/ux/use/UseBreakPoint.d.ts +2 -1
  221. package/internal-do-not-import-from-here/ux/use/UseColorSchemaSetup.d.ts +73 -1
  222. package/internal-do-not-import-from-here/ux/user/UserPropertiesByMicrosoftGraphProvider.d.ts +5 -1
  223. package/internal-do-not-import-from-here/ux/user/UserPropertiesProvider.d.ts +6 -1
  224. package/internal-do-not-import-from-here/ux/velcron/blocks/content/model/ContentDefinitionRegistration.d.ts +1 -0
  225. package/internal-do-not-import-from-here/ux/velcron/blocks/content/store/ContentBlockStore.d.ts +2 -0
  226. package/internal-do-not-import-from-here/ux/velcron/components/properties/VelcronProperties.d.ts +7 -10
  227. package/internal-do-not-import-from-here/ux/velcron/core/models/Enums.d.ts +6 -6
  228. package/internal-do-not-import-from-here/ux/velcron/core/models/VelcronDefinitions.d.ts +14 -14
  229. package/internal-do-not-import-from-here/ux/velcron/core/models/VelcronEvents.d.ts +2 -2
  230. package/internal-do-not-import-from-here/ux/velcron/core/parser/VelcronData.d.ts +2 -2
  231. package/internal-do-not-import-from-here/ux/velcron/core/stores/VelcronBlueprint.d.ts +36 -0
  232. package/internal-do-not-import-from-here/ux/velcron/core/stores/VelcronColorSchema.d.ts +1 -0
  233. package/internal-do-not-import-from-here/ux/velcron/core/stores/VelcronTheming.d.ts +2 -1
  234. package/internal-do-not-import-from-here/ux/velcron/core/stores/index.d.ts +1 -0
  235. package/internal-do-not-import-from-here/ux/velcron/editor/VelcronEditor.d.ts +164 -159
  236. package/internal-do-not-import-from-here/ux/velcron/editor/stores/VelcronEditorStore.d.ts +1 -0
  237. package/internal-do-not-import-from-here/ux/velcron/renderer/VelcronRenderer.d.ts +1 -1
  238. package/internal-do-not-import-from-here/ux/velcron/renderer/components/Custom.d.ts +6 -6
  239. package/internal-do-not-import-from-here/wctypings.d.ts +57 -31
  240. package/package.json +2 -2
  241. package/internal-do-not-import-from-here/contexts/CurrentDisplayUserContext.d.ts +0 -5
  242. package/internal-do-not-import-from-here/ux/dynamicgroup/DynamicGroupPropertyEditorRenderer.d.ts +0 -73
  243. package/internal-do-not-import-from-here/ux/dynamicgroup/loc/localize.d.ts +0 -10
  244. package/internal-do-not-import-from-here/ux/group/GroupPropertyEditorRenderer.d.ts +0 -73
  245. package/internal-do-not-import-from-here/ux/group/loc/localize.d.ts +0 -10
  246. package/internal-do-not-import-from-here/ux/properties/LegacyEnterprisePropertiesProvider.d.ts +0 -14
  247. package/internal-do-not-import-from-here/ux/properties/PropertyDataSourceContext.d.ts +0 -21
  248. package/internal-do-not-import-from-here/ux/properties/legacy-enterprise-property/LegacyEnterprisePropertyDefinition.d.ts +0 -8
  249. package/internal-do-not-import-from-here/ux/properties/legacy-enterprise-property/LegacyEnterprisePropertyDisplay.css.d.ts +0 -4
  250. package/internal-do-not-import-from-here/ux/properties/legacy-enterprise-property/LegacyEnterprisePropertyEditor.css.d.ts +0 -4
  251. package/internal-do-not-import-from-here/ux/properties/legacy-enterprise-property/LegacyEnterprisePropertyEditor.d.ts +0 -92
  252. package/internal-do-not-import-from-here/ux/properties/models/PropertySelection.d.ts +0 -19
  253. package/internal-do-not-import-from-here/ux/user/UserPropertiesByMicrosoftGraphDefinition.d.ts +0 -18
  254. package/internal-do-not-import-from-here/ux/user/UserPropertyProviderDefinition.d.ts +0 -15
  255. package/internal-do-not-import-from-here/ux/user/components/UserPropertiesByMicrosoftGraphEditor.d.ts +0 -83
  256. package/internal-do-not-import-from-here/ux/user/components/UserPropertyProviderEditor.d.ts +0 -83
  257. /package/internal-do-not-import-from-here/ux/{admin/chrome/AdminChrome_old.d.ts → filterengine/api/TagsRegistration.d.ts} +0 -0
@@ -15,132 +15,133 @@ declare const _default: {
15
15
  } & {
16
16
  activator?: () => VNodeChild;
17
17
  }>;
18
- "onUpdate:modelValue": import("vue").Prop<(value: VelcronAppDefinition<object>) => any, (value: VelcronAppDefinition<object>) => any>;
19
- "v-model": import("vue").Prop<VelcronAppDefinition<object>, VelcronAppDefinition<object>>;
20
- modelValue: import("vue").Prop<VelcronAppDefinition<object>, VelcronAppDefinition<object>>;
18
+ definition: import("vue").Prop<VelcronAppDefinition<object>, VelcronAppDefinition<object>>;
19
+ "onUpdate:modelValue": import("vue").Prop<(value: boolean) => any, (value: boolean) => any>;
20
+ "v-model": import("vue").Prop<boolean, boolean>;
21
+ modelValue: import("vue").Prop<boolean, boolean>;
21
22
  name: import("vue").Prop<{
22
23
  [x: `onUpdate:${string}`]: {
23
- type: import("vue").PropType<(value: VelcronAppDefinition<object>) => any>;
24
+ type: import("vue").PropType<(value: boolean) => any>;
24
25
  };
25
26
  } & {
26
27
  [x: `v-model:${string}`]: {
27
- type: import("vue").PropType<VelcronAppDefinition<object>>;
28
+ type: import("vue").PropType<boolean>;
28
29
  required: false;
29
30
  };
30
31
  } & {
31
32
  [x: string]: {
32
- type: import("vue").PropType<VelcronAppDefinition<object>>;
33
+ type: import("vue").PropType<boolean>;
33
34
  required: false;
34
35
  };
35
36
  } & {
36
- require(): import("../../DefineVueTypings").DefinePropModelRequire<string, VelcronAppDefinition<object>, {
37
+ require(): import("../../DefineVueTypings").DefinePropModelRequire<string, boolean, {
37
38
  "onUpdate:modelValue": {
38
- type: import("vue").PropType<(value: VelcronAppDefinition<object>) => any>;
39
+ type: import("vue").PropType<(value: boolean) => any>;
39
40
  };
40
41
  } & {
41
42
  "v-model": {
42
- type: import("vue").PropType<VelcronAppDefinition<object>>;
43
+ type: import("vue").PropType<boolean>;
43
44
  required: false;
44
45
  };
45
46
  } & {
46
47
  modelValue: {
47
- type: import("vue").PropType<VelcronAppDefinition<object>>;
48
+ type: import("vue").PropType<boolean>;
48
49
  required: false;
49
50
  };
50
51
  }>;
51
- defaultValue(value?: VelcronAppDefinition<object>): import("../../DefineVueTypings").DefinePropModelDefaultValue<string, VelcronAppDefinition<object>, {
52
+ defaultValue(value?: boolean): import("../../DefineVueTypings").DefinePropModelDefaultValue<string, boolean, {
52
53
  "onUpdate:modelValue": {
53
- type: import("vue").PropType<(value: VelcronAppDefinition<object>) => any>;
54
+ type: import("vue").PropType<(value: boolean) => any>;
54
55
  };
55
56
  } & {
56
57
  "v-model": {
57
- type: import("vue").PropType<VelcronAppDefinition<object>>;
58
+ type: import("vue").PropType<boolean>;
58
59
  required: false;
59
60
  };
60
61
  } & {
61
62
  modelValue: {
62
- type: import("vue").PropType<VelcronAppDefinition<object>>;
63
+ type: import("vue").PropType<boolean>;
63
64
  required: false;
64
65
  };
65
66
  }, false>;
66
- doc$(description?: string): import("../../DefineVueTypings").DefinePropModelDoc<string, VelcronAppDefinition<object>, {
67
+ doc$(description?: string): import("../../DefineVueTypings").DefinePropModelDoc<string, boolean, {
67
68
  "onUpdate:modelValue": {
68
- type: import("vue").PropType<(value: VelcronAppDefinition<object>) => any>;
69
+ type: import("vue").PropType<(value: boolean) => any>;
69
70
  };
70
71
  } & {
71
72
  "v-model": {
72
- type: import("vue").PropType<VelcronAppDefinition<object>>;
73
+ type: import("vue").PropType<boolean>;
73
74
  required: false;
74
75
  };
75
76
  } & {
76
77
  modelValue: {
77
- type: import("vue").PropType<VelcronAppDefinition<object>>;
78
+ type: import("vue").PropType<boolean>;
78
79
  required: false;
79
80
  };
80
81
  }>;
81
82
  }, {
82
83
  [x: `onUpdate:${string}`]: {
83
- type: import("vue").PropType<(value: VelcronAppDefinition<object>) => any>;
84
+ type: import("vue").PropType<(value: boolean) => any>;
84
85
  };
85
86
  } & {
86
87
  [x: `v-model:${string}`]: {
87
- type: import("vue").PropType<VelcronAppDefinition<object>>;
88
+ type: import("vue").PropType<boolean>;
88
89
  required: false;
89
90
  };
90
91
  } & {
91
92
  [x: string]: {
92
- type: import("vue").PropType<VelcronAppDefinition<object>>;
93
+ type: import("vue").PropType<boolean>;
93
94
  required: false;
94
95
  };
95
96
  } & {
96
- require(): import("../../DefineVueTypings").DefinePropModelRequire<string, VelcronAppDefinition<object>, {
97
+ require(): import("../../DefineVueTypings").DefinePropModelRequire<string, boolean, {
97
98
  "onUpdate:modelValue": {
98
- type: import("vue").PropType<(value: VelcronAppDefinition<object>) => any>;
99
+ type: import("vue").PropType<(value: boolean) => any>;
99
100
  };
100
101
  } & {
101
102
  "v-model": {
102
- type: import("vue").PropType<VelcronAppDefinition<object>>;
103
+ type: import("vue").PropType<boolean>;
103
104
  required: false;
104
105
  };
105
106
  } & {
106
107
  modelValue: {
107
- type: import("vue").PropType<VelcronAppDefinition<object>>;
108
+ type: import("vue").PropType<boolean>;
108
109
  required: false;
109
110
  };
110
111
  }>;
111
- defaultValue(value?: VelcronAppDefinition<object>): import("../../DefineVueTypings").DefinePropModelDefaultValue<string, VelcronAppDefinition<object>, {
112
+ defaultValue(value?: boolean): import("../../DefineVueTypings").DefinePropModelDefaultValue<string, boolean, {
112
113
  "onUpdate:modelValue": {
113
- type: import("vue").PropType<(value: VelcronAppDefinition<object>) => any>;
114
+ type: import("vue").PropType<(value: boolean) => any>;
114
115
  };
115
116
  } & {
116
117
  "v-model": {
117
- type: import("vue").PropType<VelcronAppDefinition<object>>;
118
+ type: import("vue").PropType<boolean>;
118
119
  required: false;
119
120
  };
120
121
  } & {
121
122
  modelValue: {
122
- type: import("vue").PropType<VelcronAppDefinition<object>>;
123
+ type: import("vue").PropType<boolean>;
123
124
  required: false;
124
125
  };
125
126
  }, false>;
126
- doc$(description?: string): import("../../DefineVueTypings").DefinePropModelDoc<string, VelcronAppDefinition<object>, {
127
+ doc$(description?: string): import("../../DefineVueTypings").DefinePropModelDoc<string, boolean, {
127
128
  "onUpdate:modelValue": {
128
- type: import("vue").PropType<(value: VelcronAppDefinition<object>) => any>;
129
+ type: import("vue").PropType<(value: boolean) => any>;
129
130
  };
130
131
  } & {
131
132
  "v-model": {
132
- type: import("vue").PropType<VelcronAppDefinition<object>>;
133
+ type: import("vue").PropType<boolean>;
133
134
  required: false;
134
135
  };
135
136
  } & {
136
137
  modelValue: {
137
- type: import("vue").PropType<VelcronAppDefinition<object>>;
138
+ type: import("vue").PropType<boolean>;
138
139
  required: false;
139
140
  };
140
141
  }>;
141
142
  }>;
142
143
  }>> & {
143
- "onUpdate:modelValue"?: (appDefinition: VelcronAppDefinition<object>) => any;
144
+ onSave?: (appDefinition: VelcronAppDefinition<object>) => any;
144
145
  } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>;
145
146
  $attrs: {
146
147
  [x: string]: unknown;
@@ -153,7 +154,7 @@ declare const _default: {
153
154
  }>;
154
155
  $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
155
156
  $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
156
- $emit: (event: "update:modelValue", appDefinition: VelcronAppDefinition<object>) => void;
157
+ $emit: (event: "save", appDefinition: VelcronAppDefinition<object>) => void;
157
158
  $el: any;
158
159
  $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
159
160
  "v-slots": import("vue").Prop<{
@@ -165,134 +166,135 @@ declare const _default: {
165
166
  } & {
166
167
  activator?: () => VNodeChild;
167
168
  }>;
168
- "onUpdate:modelValue": import("vue").Prop<(value: VelcronAppDefinition<object>) => any, (value: VelcronAppDefinition<object>) => any>;
169
- "v-model": import("vue").Prop<VelcronAppDefinition<object>, VelcronAppDefinition<object>>;
170
- modelValue: import("vue").Prop<VelcronAppDefinition<object>, VelcronAppDefinition<object>>;
169
+ definition: import("vue").Prop<VelcronAppDefinition<object>, VelcronAppDefinition<object>>;
170
+ "onUpdate:modelValue": import("vue").Prop<(value: boolean) => any, (value: boolean) => any>;
171
+ "v-model": import("vue").Prop<boolean, boolean>;
172
+ modelValue: import("vue").Prop<boolean, boolean>;
171
173
  name: import("vue").Prop<{
172
174
  [x: `onUpdate:${string}`]: {
173
- type: import("vue").PropType<(value: VelcronAppDefinition<object>) => any>;
175
+ type: import("vue").PropType<(value: boolean) => any>;
174
176
  };
175
177
  } & {
176
178
  [x: `v-model:${string}`]: {
177
- type: import("vue").PropType<VelcronAppDefinition<object>>;
179
+ type: import("vue").PropType<boolean>;
178
180
  required: false;
179
181
  };
180
182
  } & {
181
183
  [x: string]: {
182
- type: import("vue").PropType<VelcronAppDefinition<object>>;
184
+ type: import("vue").PropType<boolean>;
183
185
  required: false;
184
186
  };
185
187
  } & {
186
- require(): import("../../DefineVueTypings").DefinePropModelRequire<string, VelcronAppDefinition<object>, {
188
+ require(): import("../../DefineVueTypings").DefinePropModelRequire<string, boolean, {
187
189
  "onUpdate:modelValue": {
188
- type: import("vue").PropType<(value: VelcronAppDefinition<object>) => any>;
190
+ type: import("vue").PropType<(value: boolean) => any>;
189
191
  };
190
192
  } & {
191
193
  "v-model": {
192
- type: import("vue").PropType<VelcronAppDefinition<object>>;
194
+ type: import("vue").PropType<boolean>;
193
195
  required: false;
194
196
  };
195
197
  } & {
196
198
  modelValue: {
197
- type: import("vue").PropType<VelcronAppDefinition<object>>;
199
+ type: import("vue").PropType<boolean>;
198
200
  required: false;
199
201
  };
200
202
  }>;
201
- defaultValue(value?: VelcronAppDefinition<object>): import("../../DefineVueTypings").DefinePropModelDefaultValue<string, VelcronAppDefinition<object>, {
203
+ defaultValue(value?: boolean): import("../../DefineVueTypings").DefinePropModelDefaultValue<string, boolean, {
202
204
  "onUpdate:modelValue": {
203
- type: import("vue").PropType<(value: VelcronAppDefinition<object>) => any>;
205
+ type: import("vue").PropType<(value: boolean) => any>;
204
206
  };
205
207
  } & {
206
208
  "v-model": {
207
- type: import("vue").PropType<VelcronAppDefinition<object>>;
209
+ type: import("vue").PropType<boolean>;
208
210
  required: false;
209
211
  };
210
212
  } & {
211
213
  modelValue: {
212
- type: import("vue").PropType<VelcronAppDefinition<object>>;
214
+ type: import("vue").PropType<boolean>;
213
215
  required: false;
214
216
  };
215
217
  }, false>;
216
- doc$(description?: string): import("../../DefineVueTypings").DefinePropModelDoc<string, VelcronAppDefinition<object>, {
218
+ doc$(description?: string): import("../../DefineVueTypings").DefinePropModelDoc<string, boolean, {
217
219
  "onUpdate:modelValue": {
218
- type: import("vue").PropType<(value: VelcronAppDefinition<object>) => any>;
220
+ type: import("vue").PropType<(value: boolean) => any>;
219
221
  };
220
222
  } & {
221
223
  "v-model": {
222
- type: import("vue").PropType<VelcronAppDefinition<object>>;
224
+ type: import("vue").PropType<boolean>;
223
225
  required: false;
224
226
  };
225
227
  } & {
226
228
  modelValue: {
227
- type: import("vue").PropType<VelcronAppDefinition<object>>;
229
+ type: import("vue").PropType<boolean>;
228
230
  required: false;
229
231
  };
230
232
  }>;
231
233
  }, {
232
234
  [x: `onUpdate:${string}`]: {
233
- type: import("vue").PropType<(value: VelcronAppDefinition<object>) => any>;
235
+ type: import("vue").PropType<(value: boolean) => any>;
234
236
  };
235
237
  } & {
236
238
  [x: `v-model:${string}`]: {
237
- type: import("vue").PropType<VelcronAppDefinition<object>>;
239
+ type: import("vue").PropType<boolean>;
238
240
  required: false;
239
241
  };
240
242
  } & {
241
243
  [x: string]: {
242
- type: import("vue").PropType<VelcronAppDefinition<object>>;
244
+ type: import("vue").PropType<boolean>;
243
245
  required: false;
244
246
  };
245
247
  } & {
246
- require(): import("../../DefineVueTypings").DefinePropModelRequire<string, VelcronAppDefinition<object>, {
248
+ require(): import("../../DefineVueTypings").DefinePropModelRequire<string, boolean, {
247
249
  "onUpdate:modelValue": {
248
- type: import("vue").PropType<(value: VelcronAppDefinition<object>) => any>;
250
+ type: import("vue").PropType<(value: boolean) => any>;
249
251
  };
250
252
  } & {
251
253
  "v-model": {
252
- type: import("vue").PropType<VelcronAppDefinition<object>>;
254
+ type: import("vue").PropType<boolean>;
253
255
  required: false;
254
256
  };
255
257
  } & {
256
258
  modelValue: {
257
- type: import("vue").PropType<VelcronAppDefinition<object>>;
259
+ type: import("vue").PropType<boolean>;
258
260
  required: false;
259
261
  };
260
262
  }>;
261
- defaultValue(value?: VelcronAppDefinition<object>): import("../../DefineVueTypings").DefinePropModelDefaultValue<string, VelcronAppDefinition<object>, {
263
+ defaultValue(value?: boolean): import("../../DefineVueTypings").DefinePropModelDefaultValue<string, boolean, {
262
264
  "onUpdate:modelValue": {
263
- type: import("vue").PropType<(value: VelcronAppDefinition<object>) => any>;
265
+ type: import("vue").PropType<(value: boolean) => any>;
264
266
  };
265
267
  } & {
266
268
  "v-model": {
267
- type: import("vue").PropType<VelcronAppDefinition<object>>;
269
+ type: import("vue").PropType<boolean>;
268
270
  required: false;
269
271
  };
270
272
  } & {
271
273
  modelValue: {
272
- type: import("vue").PropType<VelcronAppDefinition<object>>;
274
+ type: import("vue").PropType<boolean>;
273
275
  required: false;
274
276
  };
275
277
  }, false>;
276
- doc$(description?: string): import("../../DefineVueTypings").DefinePropModelDoc<string, VelcronAppDefinition<object>, {
278
+ doc$(description?: string): import("../../DefineVueTypings").DefinePropModelDoc<string, boolean, {
277
279
  "onUpdate:modelValue": {
278
- type: import("vue").PropType<(value: VelcronAppDefinition<object>) => any>;
280
+ type: import("vue").PropType<(value: boolean) => any>;
279
281
  };
280
282
  } & {
281
283
  "v-model": {
282
- type: import("vue").PropType<VelcronAppDefinition<object>>;
284
+ type: import("vue").PropType<boolean>;
283
285
  required: false;
284
286
  };
285
287
  } & {
286
288
  modelValue: {
287
- type: import("vue").PropType<VelcronAppDefinition<object>>;
289
+ type: import("vue").PropType<boolean>;
288
290
  required: false;
289
291
  };
290
292
  }>;
291
293
  }>;
292
294
  }>> & {
293
- "onUpdate:modelValue"?: (appDefinition: VelcronAppDefinition<object>) => any;
295
+ onSave?: (appDefinition: VelcronAppDefinition<object>) => any;
294
296
  }, () => JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
295
- "update:modelValue": (appDefinition: VelcronAppDefinition) => boolean;
297
+ save: (appDefinition: VelcronAppDefinition) => true;
296
298
  }, string, {}, {}, string> & {
297
299
  beforeCreate?: (() => void) | (() => void)[];
298
300
  created?: (() => void) | (() => void)[];
@@ -323,132 +325,133 @@ declare const _default: {
323
325
  } & {
324
326
  activator?: () => VNodeChild;
325
327
  }>;
326
- "onUpdate:modelValue": import("vue").Prop<(value: VelcronAppDefinition<object>) => any, (value: VelcronAppDefinition<object>) => any>;
327
- "v-model": import("vue").Prop<VelcronAppDefinition<object>, VelcronAppDefinition<object>>;
328
- modelValue: import("vue").Prop<VelcronAppDefinition<object>, VelcronAppDefinition<object>>;
328
+ definition: import("vue").Prop<VelcronAppDefinition<object>, VelcronAppDefinition<object>>;
329
+ "onUpdate:modelValue": import("vue").Prop<(value: boolean) => any, (value: boolean) => any>;
330
+ "v-model": import("vue").Prop<boolean, boolean>;
331
+ modelValue: import("vue").Prop<boolean, boolean>;
329
332
  name: import("vue").Prop<{
330
333
  [x: `onUpdate:${string}`]: {
331
- type: import("vue").PropType<(value: VelcronAppDefinition<object>) => any>;
334
+ type: import("vue").PropType<(value: boolean) => any>;
332
335
  };
333
336
  } & {
334
337
  [x: `v-model:${string}`]: {
335
- type: import("vue").PropType<VelcronAppDefinition<object>>;
338
+ type: import("vue").PropType<boolean>;
336
339
  required: false;
337
340
  };
338
341
  } & {
339
342
  [x: string]: {
340
- type: import("vue").PropType<VelcronAppDefinition<object>>;
343
+ type: import("vue").PropType<boolean>;
341
344
  required: false;
342
345
  };
343
346
  } & {
344
- require(): import("../../DefineVueTypings").DefinePropModelRequire<string, VelcronAppDefinition<object>, {
347
+ require(): import("../../DefineVueTypings").DefinePropModelRequire<string, boolean, {
345
348
  "onUpdate:modelValue": {
346
- type: import("vue").PropType<(value: VelcronAppDefinition<object>) => any>;
349
+ type: import("vue").PropType<(value: boolean) => any>;
347
350
  };
348
351
  } & {
349
352
  "v-model": {
350
- type: import("vue").PropType<VelcronAppDefinition<object>>;
353
+ type: import("vue").PropType<boolean>;
351
354
  required: false;
352
355
  };
353
356
  } & {
354
357
  modelValue: {
355
- type: import("vue").PropType<VelcronAppDefinition<object>>;
358
+ type: import("vue").PropType<boolean>;
356
359
  required: false;
357
360
  };
358
361
  }>;
359
- defaultValue(value?: VelcronAppDefinition<object>): import("../../DefineVueTypings").DefinePropModelDefaultValue<string, VelcronAppDefinition<object>, {
362
+ defaultValue(value?: boolean): import("../../DefineVueTypings").DefinePropModelDefaultValue<string, boolean, {
360
363
  "onUpdate:modelValue": {
361
- type: import("vue").PropType<(value: VelcronAppDefinition<object>) => any>;
364
+ type: import("vue").PropType<(value: boolean) => any>;
362
365
  };
363
366
  } & {
364
367
  "v-model": {
365
- type: import("vue").PropType<VelcronAppDefinition<object>>;
368
+ type: import("vue").PropType<boolean>;
366
369
  required: false;
367
370
  };
368
371
  } & {
369
372
  modelValue: {
370
- type: import("vue").PropType<VelcronAppDefinition<object>>;
373
+ type: import("vue").PropType<boolean>;
371
374
  required: false;
372
375
  };
373
376
  }, false>;
374
- doc$(description?: string): import("../../DefineVueTypings").DefinePropModelDoc<string, VelcronAppDefinition<object>, {
377
+ doc$(description?: string): import("../../DefineVueTypings").DefinePropModelDoc<string, boolean, {
375
378
  "onUpdate:modelValue": {
376
- type: import("vue").PropType<(value: VelcronAppDefinition<object>) => any>;
379
+ type: import("vue").PropType<(value: boolean) => any>;
377
380
  };
378
381
  } & {
379
382
  "v-model": {
380
- type: import("vue").PropType<VelcronAppDefinition<object>>;
383
+ type: import("vue").PropType<boolean>;
381
384
  required: false;
382
385
  };
383
386
  } & {
384
387
  modelValue: {
385
- type: import("vue").PropType<VelcronAppDefinition<object>>;
388
+ type: import("vue").PropType<boolean>;
386
389
  required: false;
387
390
  };
388
391
  }>;
389
392
  }, {
390
393
  [x: `onUpdate:${string}`]: {
391
- type: import("vue").PropType<(value: VelcronAppDefinition<object>) => any>;
394
+ type: import("vue").PropType<(value: boolean) => any>;
392
395
  };
393
396
  } & {
394
397
  [x: `v-model:${string}`]: {
395
- type: import("vue").PropType<VelcronAppDefinition<object>>;
398
+ type: import("vue").PropType<boolean>;
396
399
  required: false;
397
400
  };
398
401
  } & {
399
402
  [x: string]: {
400
- type: import("vue").PropType<VelcronAppDefinition<object>>;
403
+ type: import("vue").PropType<boolean>;
401
404
  required: false;
402
405
  };
403
406
  } & {
404
- require(): import("../../DefineVueTypings").DefinePropModelRequire<string, VelcronAppDefinition<object>, {
407
+ require(): import("../../DefineVueTypings").DefinePropModelRequire<string, boolean, {
405
408
  "onUpdate:modelValue": {
406
- type: import("vue").PropType<(value: VelcronAppDefinition<object>) => any>;
409
+ type: import("vue").PropType<(value: boolean) => any>;
407
410
  };
408
411
  } & {
409
412
  "v-model": {
410
- type: import("vue").PropType<VelcronAppDefinition<object>>;
413
+ type: import("vue").PropType<boolean>;
411
414
  required: false;
412
415
  };
413
416
  } & {
414
417
  modelValue: {
415
- type: import("vue").PropType<VelcronAppDefinition<object>>;
418
+ type: import("vue").PropType<boolean>;
416
419
  required: false;
417
420
  };
418
421
  }>;
419
- defaultValue(value?: VelcronAppDefinition<object>): import("../../DefineVueTypings").DefinePropModelDefaultValue<string, VelcronAppDefinition<object>, {
422
+ defaultValue(value?: boolean): import("../../DefineVueTypings").DefinePropModelDefaultValue<string, boolean, {
420
423
  "onUpdate:modelValue": {
421
- type: import("vue").PropType<(value: VelcronAppDefinition<object>) => any>;
424
+ type: import("vue").PropType<(value: boolean) => any>;
422
425
  };
423
426
  } & {
424
427
  "v-model": {
425
- type: import("vue").PropType<VelcronAppDefinition<object>>;
428
+ type: import("vue").PropType<boolean>;
426
429
  required: false;
427
430
  };
428
431
  } & {
429
432
  modelValue: {
430
- type: import("vue").PropType<VelcronAppDefinition<object>>;
433
+ type: import("vue").PropType<boolean>;
431
434
  required: false;
432
435
  };
433
436
  }, false>;
434
- doc$(description?: string): import("../../DefineVueTypings").DefinePropModelDoc<string, VelcronAppDefinition<object>, {
437
+ doc$(description?: string): import("../../DefineVueTypings").DefinePropModelDoc<string, boolean, {
435
438
  "onUpdate:modelValue": {
436
- type: import("vue").PropType<(value: VelcronAppDefinition<object>) => any>;
439
+ type: import("vue").PropType<(value: boolean) => any>;
437
440
  };
438
441
  } & {
439
442
  "v-model": {
440
- type: import("vue").PropType<VelcronAppDefinition<object>>;
443
+ type: import("vue").PropType<boolean>;
441
444
  required: false;
442
445
  };
443
446
  } & {
444
447
  modelValue: {
445
- type: import("vue").PropType<VelcronAppDefinition<object>>;
448
+ type: import("vue").PropType<boolean>;
446
449
  required: false;
447
450
  };
448
451
  }>;
449
452
  }>;
450
453
  }>> & {
451
- "onUpdate:modelValue"?: (appDefinition: VelcronAppDefinition<object>) => any;
454
+ onSave?: (appDefinition: VelcronAppDefinition<object>) => any;
452
455
  } & import("vue").ShallowUnwrapRef<() => JSX.Element> & {} & import("vue").ComponentCustomProperties & {};
453
456
  __isFragment?: never;
454
457
  __isTeleport?: never;
@@ -463,207 +466,209 @@ declare const _default: {
463
466
  } & {
464
467
  activator?: () => VNodeChild;
465
468
  }>;
466
- "onUpdate:modelValue": import("vue").Prop<(value: VelcronAppDefinition<object>) => any, (value: VelcronAppDefinition<object>) => any>;
467
- "v-model": import("vue").Prop<VelcronAppDefinition<object>, VelcronAppDefinition<object>>;
468
- modelValue: import("vue").Prop<VelcronAppDefinition<object>, VelcronAppDefinition<object>>;
469
+ definition: import("vue").Prop<VelcronAppDefinition<object>, VelcronAppDefinition<object>>;
470
+ "onUpdate:modelValue": import("vue").Prop<(value: boolean) => any, (value: boolean) => any>;
471
+ "v-model": import("vue").Prop<boolean, boolean>;
472
+ modelValue: import("vue").Prop<boolean, boolean>;
469
473
  name: import("vue").Prop<{
470
474
  [x: `onUpdate:${string}`]: {
471
- type: import("vue").PropType<(value: VelcronAppDefinition<object>) => any>;
475
+ type: import("vue").PropType<(value: boolean) => any>;
472
476
  };
473
477
  } & {
474
478
  [x: `v-model:${string}`]: {
475
- type: import("vue").PropType<VelcronAppDefinition<object>>;
479
+ type: import("vue").PropType<boolean>;
476
480
  required: false;
477
481
  };
478
482
  } & {
479
483
  [x: string]: {
480
- type: import("vue").PropType<VelcronAppDefinition<object>>;
484
+ type: import("vue").PropType<boolean>;
481
485
  required: false;
482
486
  };
483
487
  } & {
484
- require(): import("../../DefineVueTypings").DefinePropModelRequire<string, VelcronAppDefinition<object>, {
488
+ require(): import("../../DefineVueTypings").DefinePropModelRequire<string, boolean, {
485
489
  "onUpdate:modelValue": {
486
- type: import("vue").PropType<(value: VelcronAppDefinition<object>) => any>;
490
+ type: import("vue").PropType<(value: boolean) => any>;
487
491
  };
488
492
  } & {
489
493
  "v-model": {
490
- type: import("vue").PropType<VelcronAppDefinition<object>>;
494
+ type: import("vue").PropType<boolean>;
491
495
  required: false;
492
496
  };
493
497
  } & {
494
498
  modelValue: {
495
- type: import("vue").PropType<VelcronAppDefinition<object>>;
499
+ type: import("vue").PropType<boolean>;
496
500
  required: false;
497
501
  };
498
502
  }>;
499
- defaultValue(value?: VelcronAppDefinition<object>): import("../../DefineVueTypings").DefinePropModelDefaultValue<string, VelcronAppDefinition<object>, {
503
+ defaultValue(value?: boolean): import("../../DefineVueTypings").DefinePropModelDefaultValue<string, boolean, {
500
504
  "onUpdate:modelValue": {
501
- type: import("vue").PropType<(value: VelcronAppDefinition<object>) => any>;
505
+ type: import("vue").PropType<(value: boolean) => any>;
502
506
  };
503
507
  } & {
504
508
  "v-model": {
505
- type: import("vue").PropType<VelcronAppDefinition<object>>;
509
+ type: import("vue").PropType<boolean>;
506
510
  required: false;
507
511
  };
508
512
  } & {
509
513
  modelValue: {
510
- type: import("vue").PropType<VelcronAppDefinition<object>>;
514
+ type: import("vue").PropType<boolean>;
511
515
  required: false;
512
516
  };
513
517
  }, false>;
514
- doc$(description?: string): import("../../DefineVueTypings").DefinePropModelDoc<string, VelcronAppDefinition<object>, {
518
+ doc$(description?: string): import("../../DefineVueTypings").DefinePropModelDoc<string, boolean, {
515
519
  "onUpdate:modelValue": {
516
- type: import("vue").PropType<(value: VelcronAppDefinition<object>) => any>;
520
+ type: import("vue").PropType<(value: boolean) => any>;
517
521
  };
518
522
  } & {
519
523
  "v-model": {
520
- type: import("vue").PropType<VelcronAppDefinition<object>>;
524
+ type: import("vue").PropType<boolean>;
521
525
  required: false;
522
526
  };
523
527
  } & {
524
528
  modelValue: {
525
- type: import("vue").PropType<VelcronAppDefinition<object>>;
529
+ type: import("vue").PropType<boolean>;
526
530
  required: false;
527
531
  };
528
532
  }>;
529
533
  }, {
530
534
  [x: `onUpdate:${string}`]: {
531
- type: import("vue").PropType<(value: VelcronAppDefinition<object>) => any>;
535
+ type: import("vue").PropType<(value: boolean) => any>;
532
536
  };
533
537
  } & {
534
538
  [x: `v-model:${string}`]: {
535
- type: import("vue").PropType<VelcronAppDefinition<object>>;
539
+ type: import("vue").PropType<boolean>;
536
540
  required: false;
537
541
  };
538
542
  } & {
539
543
  [x: string]: {
540
- type: import("vue").PropType<VelcronAppDefinition<object>>;
544
+ type: import("vue").PropType<boolean>;
541
545
  required: false;
542
546
  };
543
547
  } & {
544
- require(): import("../../DefineVueTypings").DefinePropModelRequire<string, VelcronAppDefinition<object>, {
548
+ require(): import("../../DefineVueTypings").DefinePropModelRequire<string, boolean, {
545
549
  "onUpdate:modelValue": {
546
- type: import("vue").PropType<(value: VelcronAppDefinition<object>) => any>;
550
+ type: import("vue").PropType<(value: boolean) => any>;
547
551
  };
548
552
  } & {
549
553
  "v-model": {
550
- type: import("vue").PropType<VelcronAppDefinition<object>>;
554
+ type: import("vue").PropType<boolean>;
551
555
  required: false;
552
556
  };
553
557
  } & {
554
558
  modelValue: {
555
- type: import("vue").PropType<VelcronAppDefinition<object>>;
559
+ type: import("vue").PropType<boolean>;
556
560
  required: false;
557
561
  };
558
562
  }>;
559
- defaultValue(value?: VelcronAppDefinition<object>): import("../../DefineVueTypings").DefinePropModelDefaultValue<string, VelcronAppDefinition<object>, {
563
+ defaultValue(value?: boolean): import("../../DefineVueTypings").DefinePropModelDefaultValue<string, boolean, {
560
564
  "onUpdate:modelValue": {
561
- type: import("vue").PropType<(value: VelcronAppDefinition<object>) => any>;
565
+ type: import("vue").PropType<(value: boolean) => any>;
562
566
  };
563
567
  } & {
564
568
  "v-model": {
565
- type: import("vue").PropType<VelcronAppDefinition<object>>;
569
+ type: import("vue").PropType<boolean>;
566
570
  required: false;
567
571
  };
568
572
  } & {
569
573
  modelValue: {
570
- type: import("vue").PropType<VelcronAppDefinition<object>>;
574
+ type: import("vue").PropType<boolean>;
571
575
  required: false;
572
576
  };
573
577
  }, false>;
574
- doc$(description?: string): import("../../DefineVueTypings").DefinePropModelDoc<string, VelcronAppDefinition<object>, {
578
+ doc$(description?: string): import("../../DefineVueTypings").DefinePropModelDoc<string, boolean, {
575
579
  "onUpdate:modelValue": {
576
- type: import("vue").PropType<(value: VelcronAppDefinition<object>) => any>;
580
+ type: import("vue").PropType<(value: boolean) => any>;
577
581
  };
578
582
  } & {
579
583
  "v-model": {
580
- type: import("vue").PropType<VelcronAppDefinition<object>>;
584
+ type: import("vue").PropType<boolean>;
581
585
  required: false;
582
586
  };
583
587
  } & {
584
588
  modelValue: {
585
- type: import("vue").PropType<VelcronAppDefinition<object>>;
589
+ type: import("vue").PropType<boolean>;
586
590
  required: false;
587
591
  };
588
592
  }>;
589
593
  }>;
590
594
  }>> & {
591
- "onUpdate:modelValue"?: (appDefinition: VelcronAppDefinition<object>) => any;
595
+ onSave?: (appDefinition: VelcronAppDefinition<object>) => any;
592
596
  }, () => JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
593
- "update:modelValue": (appDefinition: VelcronAppDefinition) => boolean;
597
+ save: (appDefinition: VelcronAppDefinition) => true;
594
598
  }, string, {}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
595
599
  propsDefinition: Omit<Readonly<{} & {
596
600
  name?: {
597
601
  [x: `onUpdate:${string}`]: {
598
- type: import("vue").PropType<(value: VelcronAppDefinition<object>) => any>;
602
+ type: import("vue").PropType<(value: boolean) => any>;
599
603
  };
600
604
  } & {
601
605
  [x: `v-model:${string}`]: {
602
- type: import("vue").PropType<VelcronAppDefinition<object>>;
606
+ type: import("vue").PropType<boolean>;
603
607
  required: false;
604
608
  };
605
609
  } & {
606
610
  [x: string]: {
607
- type: import("vue").PropType<VelcronAppDefinition<object>>;
611
+ type: import("vue").PropType<boolean>;
608
612
  required: false;
609
613
  };
610
614
  } & {
611
- require(): import("../../DefineVueTypings").DefinePropModelRequire<string, VelcronAppDefinition<object>, {
615
+ require(): import("../../DefineVueTypings").DefinePropModelRequire<string, boolean, {
612
616
  "onUpdate:modelValue": {
613
- type: import("vue").PropType<(value: VelcronAppDefinition<object>) => any>;
617
+ type: import("vue").PropType<(value: boolean) => any>;
614
618
  };
615
619
  } & {
616
620
  "v-model": {
617
- type: import("vue").PropType<VelcronAppDefinition<object>>;
621
+ type: import("vue").PropType<boolean>;
618
622
  required: false;
619
623
  };
620
624
  } & {
621
625
  modelValue: {
622
- type: import("vue").PropType<VelcronAppDefinition<object>>;
626
+ type: import("vue").PropType<boolean>;
623
627
  required: false;
624
628
  };
625
629
  }>;
626
- defaultValue(value?: VelcronAppDefinition<object>): import("../../DefineVueTypings").DefinePropModelDefaultValue<string, VelcronAppDefinition<object>, {
630
+ defaultValue(value?: boolean): import("../../DefineVueTypings").DefinePropModelDefaultValue<string, boolean, {
627
631
  "onUpdate:modelValue": {
628
- type: import("vue").PropType<(value: VelcronAppDefinition<object>) => any>;
632
+ type: import("vue").PropType<(value: boolean) => any>;
629
633
  };
630
634
  } & {
631
635
  "v-model": {
632
- type: import("vue").PropType<VelcronAppDefinition<object>>;
636
+ type: import("vue").PropType<boolean>;
633
637
  required: false;
634
638
  };
635
639
  } & {
636
640
  modelValue: {
637
- type: import("vue").PropType<VelcronAppDefinition<object>>;
641
+ type: import("vue").PropType<boolean>;
638
642
  required: false;
639
643
  };
640
644
  }, false>;
641
- doc$(description?: string): import("../../DefineVueTypings").DefinePropModelDoc<string, VelcronAppDefinition<object>, {
645
+ doc$(description?: string): import("../../DefineVueTypings").DefinePropModelDoc<string, boolean, {
642
646
  "onUpdate:modelValue": {
643
- type: import("vue").PropType<(value: VelcronAppDefinition<object>) => any>;
647
+ type: import("vue").PropType<(value: boolean) => any>;
644
648
  };
645
649
  } & {
646
650
  "v-model": {
647
- type: import("vue").PropType<VelcronAppDefinition<object>>;
651
+ type: import("vue").PropType<boolean>;
648
652
  required: false;
649
653
  };
650
654
  } & {
651
655
  modelValue: {
652
- type: import("vue").PropType<VelcronAppDefinition<object>>;
656
+ type: import("vue").PropType<boolean>;
653
657
  required: false;
654
658
  };
655
659
  }>;
656
660
  };
657
- "onUpdate:modelValue"?: (value: VelcronAppDefinition<object>) => any;
658
- "v-model"?: VelcronAppDefinition<object>;
659
- modelValue?: VelcronAppDefinition<object>;
661
+ definition?: VelcronAppDefinition<object>;
662
+ "onUpdate:modelValue"?: (value: boolean) => any;
663
+ "v-model"?: boolean;
664
+ modelValue?: boolean;
660
665
  "v-slots"?: {
661
666
  default?: import("@omnia/fx-models").Func<[VNodeChild]>;
662
667
  } & {
663
668
  activator?: () => VNodeChild;
664
669
  };
665
- }>, "onUpdate:modelValue"> & {
666
- "onUpdate:modelValue"?: (appDefinition: VelcronAppDefinition<object>) => any;
670
+ }>, "onSave"> & {
671
+ onSave?: (appDefinition: VelcronAppDefinition<object>) => any;
667
672
  };
668
673
  };
669
674
  export default _default;