@omnia/fx 8.0.7-vnext → 8.0.9-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 (308) hide show
  1. package/internal-do-not-import-from-here/console/components/Console.d.ts +3 -0
  2. package/internal-do-not-import-from-here/console/components/MessageOverlay.d.ts +1 -1
  3. package/internal-do-not-import-from-here/manifests/omnia.fx.core.manifest.json +1 -1
  4. package/internal-do-not-import-from-here/manifests/omnia.fx.ux.manifest.json +1 -1
  5. package/internal-do-not-import-from-here/services/identities/DynamicGroupService.d.ts +6 -0
  6. package/internal-do-not-import-from-here/services/identities/GroupService.d.ts +7 -1
  7. package/internal-do-not-import-from-here/services/identities/UserService.d.ts +7 -1
  8. package/internal-do-not-import-from-here/shared/models/theming/BlueprintDefinition.d.ts +3 -0
  9. package/internal-do-not-import-from-here/shared/models/theming/ThemeDefinitionV2.d.ts +34 -23
  10. package/internal-do-not-import-from-here/shared/models/theming/ThemeDefinitionV2.js +23 -21
  11. package/internal-do-not-import-from-here/shared/models/theming/TypographyDefinition.d.ts +16 -16
  12. package/internal-do-not-import-from-here/shared/models/theming/TypographyDefinition.js +9 -8
  13. package/internal-do-not-import-from-here/shared/models/theming/UseThemeMethods.d.ts +11 -0
  14. package/internal-do-not-import-from-here/shared/models/theming/UseThemeMethods.js +143 -0
  15. package/internal-do-not-import-from-here/shared/models/theming/index.d.ts +1 -0
  16. package/internal-do-not-import-from-here/shared/models/theming/index.js +1 -0
  17. package/internal-do-not-import-from-here/ux/ComponentTypings.d.ts +160 -0
  18. package/internal-do-not-import-from-here/ux/Exposes.d.ts +2 -1
  19. package/internal-do-not-import-from-here/ux/InternalDefineWebComponent.d.ts +49 -2
  20. package/internal-do-not-import-from-here/ux/VueComponentBase.d.ts +48 -15
  21. package/internal-do-not-import-from-here/ux/VueTags.d.ts +7 -9
  22. package/internal-do-not-import-from-here/ux/admin/chrome/AdminChrome.d.ts +46 -60
  23. package/internal-do-not-import-from-here/ux/admin/chrome/AdminChromeOld.d.ts +61 -0
  24. package/internal-do-not-import-from-here/ux/app/appinstance/renderer/AppInstanceRollup.d.ts +7 -7
  25. package/internal-do-not-import-from-here/ux/app/management/AppManagement.d.ts +8 -8
  26. package/internal-do-not-import-from-here/ux/app/management/components/TabsManagement.d.ts +8 -8
  27. package/internal-do-not-import-from-here/ux/app/management/tabs/instance/EditAliasDialog.d.ts +62 -6
  28. package/internal-do-not-import-from-here/ux/app/management/tabs/instance/EditItem.d.ts +58 -5
  29. package/internal-do-not-import-from-here/ux/app/management/tabs/instance/EditPermissionDialog.d.ts +58 -5
  30. package/internal-do-not-import-from-here/ux/app/management/tabs/instance/Features.d.ts +58 -5
  31. package/internal-do-not-import-from-here/ux/app/management/tabs/instance/InstanceTab.d.ts +2 -2
  32. package/internal-do-not-import-from-here/ux/app/management/tabs/instance/Item.d.ts +82 -11
  33. package/internal-do-not-import-from-here/ux/app/management/tabs/instance/ItemAction.d.ts +70 -8
  34. package/internal-do-not-import-from-here/ux/app/management/tabs/instance/ItemAdmin.d.ts +54 -4
  35. package/internal-do-not-import-from-here/ux/app/management/tabs/instance/Listing.d.ts +66 -7
  36. package/internal-do-not-import-from-here/ux/app/management/tabs/layouts/EditLayout.d.ts +58 -5
  37. package/internal-do-not-import-from-here/ux/app/management/tabs/layouts/LayoutListing.d.ts +66 -7
  38. package/internal-do-not-import-from-here/ux/app/management/tabs/layouts/LayoutTab.d.ts +2 -2
  39. package/internal-do-not-import-from-here/ux/app/management/tabs/layouts/addlayout/AddLayout.d.ts +58 -5
  40. package/internal-do-not-import-from-here/ux/app/management/tabs/namingpolicies/AffixRow.d.ts +53 -1
  41. package/internal-do-not-import-from-here/ux/app/management/tabs/namingpolicies/BlockWords.d.ts +54 -4
  42. package/internal-do-not-import-from-here/ux/app/management/tabs/namingpolicies/EditNamingPolicies.d.ts +58 -5
  43. package/internal-do-not-import-from-here/ux/app/management/tabs/namingpolicies/ListingNamingPolicies.d.ts +45 -1
  44. package/internal-do-not-import-from-here/ux/app/management/tabs/namingpolicies/NamingPolicyTab.d.ts +2 -2
  45. package/internal-do-not-import-from-here/ux/app/management/tabs/namingpolicies/PreviewPolicyNaming.d.ts +58 -5
  46. package/internal-do-not-import-from-here/ux/app/management/tabs/shared/addbutton/AddButton.d.ts +6 -6
  47. package/internal-do-not-import-from-here/ux/app/management/tabs/templates/Template.d.ts +66 -7
  48. package/internal-do-not-import-from-here/ux/app/management/tabs/templates/TemplateDetail.d.ts +54 -4
  49. package/internal-do-not-import-from-here/ux/app/management/tabs/templates/TemplateTab.d.ts +2 -2
  50. package/internal-do-not-import-from-here/ux/app/management/tabs/templates/TemplatesListing.d.ts +58 -5
  51. package/internal-do-not-import-from-here/ux/app/management/tabs/templates/tabs/CustomSteps.d.ts +74 -9
  52. package/internal-do-not-import-from-here/ux/app/management/tabs/templates/tabs/Features.d.ts +74 -9
  53. package/internal-do-not-import-from-here/ux/app/management/tabs/templates/tabs/GeneralTab.d.ts +74 -9
  54. package/internal-do-not-import-from-here/ux/app/management/tabs/templates/tabs/PoliciesTab.d.ts +75 -9
  55. package/internal-do-not-import-from-here/ux/app/management/tabs/templates/tabs/PropertiesTab.d.ts +74 -9
  56. package/internal-do-not-import-from-here/ux/app/management/tabs/templates/tabs/PropertyRow.d.ts +74 -9
  57. package/internal-do-not-import-from-here/ux/app/management/tabs/templates/tabs/StepRow.d.ts +58 -5
  58. package/internal-do-not-import-from-here/ux/appprovisioning/appshowinpubliclistingsinput/AppShowInPublicListingsInput.d.ts +3 -3
  59. package/internal-do-not-import-from-here/ux/authsetup/AuthSetup.d.ts +1 -1
  60. package/internal-do-not-import-from-here/ux/authsetup/steps/EmailVerify.d.ts +54 -4
  61. package/internal-do-not-import-from-here/ux/authsetup/steps/OTP.d.ts +54 -4
  62. package/internal-do-not-import-from-here/ux/authsetup/steps/Password.d.ts +54 -4
  63. package/internal-do-not-import-from-here/ux/commandpalette/CommandPalette.d.ts +1 -1
  64. package/internal-do-not-import-from-here/ux/compositiontests/CompositionBlockCurrent.d.ts +4 -4
  65. package/internal-do-not-import-from-here/ux/compositiontests/CompositionBlockFuture.d.ts +4 -4
  66. package/internal-do-not-import-from-here/ux/compositiontests/OptionsBlockCurrent.d.ts +1 -1
  67. package/internal-do-not-import-from-here/ux/confirmdialog/ConfirmDialog.d.ts +5 -1
  68. package/internal-do-not-import-from-here/ux/datetimezonepicker/DateTimeZonePicker.d.ts +18 -1
  69. package/internal-do-not-import-from-here/ux/datetimezonerenderer/DateTimeZoneRenderer.d.ts +7 -1
  70. package/internal-do-not-import-from-here/ux/dialog/Dialog.d.ts +25 -25
  71. package/internal-do-not-import-from-here/ux/dynamicgroup/DynamicGroupPropertyEditorRenderer.d.ts +5 -5
  72. package/internal-do-not-import-from-here/ux/enterpriseproperties/settings/extendedproperty/ExtendedPropertySettings.d.ts +4 -4
  73. package/internal-do-not-import-from-here/ux/filterengine/FilterEngineRenderer.d.ts +11 -11
  74. package/internal-do-not-import-from-here/ux/filterengine/FilterEngineSection.d.ts +54 -4
  75. package/internal-do-not-import-from-here/ux/filterengine/FilterEngineSettings.d.ts +5 -5
  76. package/internal-do-not-import-from-here/ux/filterengine/SelectionsArea.d.ts +2 -2
  77. package/internal-do-not-import-from-here/ux/filterengine/components/renderer/boolean/BooleanPropertyRenderer.d.ts +3 -3
  78. package/internal-do-not-import-from-here/ux/filterengine/components/renderer/date/DatePropertyRenderer.d.ts +3 -3
  79. package/internal-do-not-import-from-here/ux/filterengine/components/renderer/dialog/DialogContent.d.ts +3 -3
  80. package/internal-do-not-import-from-here/ux/filterengine/components/renderer/number/NumberPropertyRenderer.d.ts +3 -3
  81. package/internal-do-not-import-from-here/ux/filterengine/components/renderer/person/PersonPropertyChipItem.d.ts +70 -8
  82. package/internal-do-not-import-from-here/ux/filterengine/components/renderer/person/PersonPropertyChips.d.ts +54 -4
  83. package/internal-do-not-import-from-here/ux/filterengine/components/renderer/person/PersonPropertyItemRenderer.d.ts +70 -8
  84. package/internal-do-not-import-from-here/ux/filterengine/components/renderer/person/PersonPropertyList.d.ts +58 -5
  85. package/internal-do-not-import-from-here/ux/filterengine/components/renderer/person/PersonPropertyRenderer.d.ts +3 -3
  86. package/internal-do-not-import-from-here/ux/filterengine/components/renderer/text/TextPropertyRenderer.d.ts +3 -3
  87. package/internal-do-not-import-from-here/ux/filterengine/components/selectionsarea/boolean/SelectionsAreaBooleanRenderer.d.ts +4 -4
  88. package/internal-do-not-import-from-here/ux/filterengine/components/selectionsarea/date/SelectionsAreaDateRenderer.d.ts +4 -4
  89. package/internal-do-not-import-from-here/ux/filterengine/components/selectionsarea/number/SelectionsAreaNumberRenderer.d.ts +4 -4
  90. package/internal-do-not-import-from-here/ux/filterengine/components/selectionsarea/person/SelectionsAreaPersonRenderer.d.ts +4 -4
  91. package/internal-do-not-import-from-here/ux/filterengine/components/selectionsarea/text/SelectionsAreaTextRenderer.d.ts +4 -4
  92. package/internal-do-not-import-from-here/ux/filterengine/components/settings/PropertyList.d.ts +62 -6
  93. package/internal-do-not-import-from-here/ux/filterengine/components/settings/boolean/BooleanPropertyDefaultValueInput.d.ts +5 -5
  94. package/internal-do-not-import-from-here/ux/filterengine/components/settings/boolean/BooleanPropertySettings.d.ts +6 -6
  95. package/internal-do-not-import-from-here/ux/filterengine/components/settings/date/DatePropertyDefaultValueInput.d.ts +5 -5
  96. package/internal-do-not-import-from-here/ux/filterengine/components/settings/date/DatePropertySettings.d.ts +6 -6
  97. package/internal-do-not-import-from-here/ux/filterengine/components/settings/number/NumberPropertyDefaultValueInput.d.ts +5 -5
  98. package/internal-do-not-import-from-here/ux/filterengine/components/settings/number/NumberPropertySettings.d.ts +6 -6
  99. package/internal-do-not-import-from-here/ux/filterengine/components/settings/person/PersonPropertyDefaultValueInput.d.ts +5 -5
  100. package/internal-do-not-import-from-here/ux/filterengine/components/settings/person/PersonPropertySettings.d.ts +6 -6
  101. package/internal-do-not-import-from-here/ux/filterengine/components/settings/text/TextPropertyDefaultValueInput.d.ts +5 -5
  102. package/internal-do-not-import-from-here/ux/filterengine/components/settings/text/TextPropertySettings.d.ts +6 -6
  103. package/internal-do-not-import-from-here/ux/filterengine/handler/FilterEngineHandler.d.ts +2 -0
  104. package/internal-do-not-import-from-here/ux/group/GroupPropertyEditorRenderer.d.ts +5 -5
  105. package/internal-do-not-import-from-here/ux/identities/IdentityRenderer.d.ts +13 -13
  106. package/internal-do-not-import-from-here/ux/identities/components/settings/AzureAdSyncProviderSettings.d.ts +45 -1
  107. package/internal-do-not-import-from-here/ux/identities/components/shared/IdentitySyncPropertyBindingSetup.d.ts +5 -5
  108. package/internal-do-not-import-from-here/ux/identities/components/shared/IdentitySyncRuleBlade.d.ts +66 -7
  109. package/internal-do-not-import-from-here/ux/identities/components/shared/IdentitySyncRuleSetup.d.ts +5 -5
  110. package/internal-do-not-import-from-here/ux/identitypicker/IdentityPicker.d.ts +28 -28
  111. package/internal-do-not-import-from-here/ux/index.d.ts +0 -1
  112. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/LayoutEditorCanvas.d.ts +6 -4
  113. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/icons/Icons.css.d.ts +1 -1
  114. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/icons/OneColumnIcon.d.ts +2 -1
  115. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/icons/ThreeColumnHeroIcon.d.ts +2 -1
  116. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/icons/ThreeColumnIcon.d.ts +2 -1
  117. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/icons/ThreeColumnPageIcon.d.ts +2 -1
  118. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/icons/TwoColumnIcon.d.ts +2 -1
  119. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/layoutItemselector/LayoutItemSelection.css.d.ts +2 -3
  120. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/layoutItemselector/LayoutItemSelection.d.ts +2 -0
  121. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/layoutItemselector/LayoutItemSelector.css.d.ts +1 -2
  122. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/layoutItemselector/LayoutItemSelector.d.ts +5 -3
  123. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/layoutitemactiontoolbar/LayoutItemActionToolbar.d.ts +2 -1
  124. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/layoutitems/LayoutBlock.css.d.ts +3 -3
  125. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/layoutitems/LayoutBlock.d.ts +3 -1
  126. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/layoutitems/LayoutColumn.d.ts +3 -0
  127. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/layoutitems/LayoutSection.css.d.ts +3 -3
  128. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/layoutitems/LayoutSection.d.ts +4 -1
  129. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/LayoutSettingsPanel.d.ts +5 -2
  130. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/LayoutStructure.d.ts +3 -3
  131. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/SectionSettingsPanel.d.ts +3 -2
  132. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/targetselector/TargetSelector.d.ts +5 -4
  133. package/internal-do-not-import-from-here/ux/limited-label/LimitedLabel.d.ts +5 -5
  134. package/internal-do-not-import-from-here/ux/magiclink/MagicLink.d.ts +1 -1
  135. package/internal-do-not-import-from-here/ux/messaging/Topics.d.ts +1 -14
  136. package/internal-do-not-import-from-here/ux/models/{ContentDialogStyles.d.ts → SidePanelStyles.d.ts} +1 -1
  137. package/internal-do-not-import-from-here/ux/models/index.d.ts +1 -1
  138. package/internal-do-not-import-from-here/ux/optionpicker/OptionPicker.d.ts +11 -11
  139. package/internal-do-not-import-from-here/ux/oxide/appbar/Appbar.css.d.ts +4 -0
  140. package/internal-do-not-import-from-here/ux/oxide/appbar/Appbar.d.ts +156 -0
  141. package/internal-do-not-import-from-here/ux/oxide/btn/Button.css.d.ts +6 -0
  142. package/internal-do-not-import-from-here/ux/oxide/btn/Button.d.ts +243 -0
  143. package/internal-do-not-import-from-here/ux/oxide/btntoggle/ButtonToggle.css.d.ts +4 -0
  144. package/internal-do-not-import-from-here/ux/oxide/btntoggle/ButtonToggle.d.ts +176 -0
  145. package/internal-do-not-import-from-here/ux/oxide/card/Card.css.d.ts +1 -0
  146. package/internal-do-not-import-from-here/ux/oxide/card/Card.d.ts +115 -0
  147. package/internal-do-not-import-from-here/ux/oxide/dialog/Dialog.css.d.ts +8 -0
  148. package/internal-do-not-import-from-here/ux/oxide/dialog/Dialog.d.ts +184 -0
  149. package/internal-do-not-import-from-here/ux/oxide/expansionpanel/ExpansionPanel.css.d.ts +4 -0
  150. package/internal-do-not-import-from-here/ux/oxide/expansionpanel/ExpansionPanel.d.ts +129 -0
  151. package/internal-do-not-import-from-here/ux/oxide/expansionpanel/ExpansionPanels.d.ts +128 -0
  152. package/internal-do-not-import-from-here/ux/oxide/icon/Icon.css.d.ts +6 -0
  153. package/internal-do-not-import-from-here/ux/oxide/icon/Icon.d.ts +133 -0
  154. package/internal-do-not-import-from-here/ux/oxide/layout/Layout.css.d.ts +6 -0
  155. package/internal-do-not-import-from-here/ux/oxide/layout/Layout.d.ts +104 -0
  156. package/internal-do-not-import-from-here/ux/oxide/list/List.d.ts +142 -0
  157. package/internal-do-not-import-from-here/ux/oxide/list/ListItem.d.ts +150 -0
  158. package/internal-do-not-import-from-here/ux/oxide/navigationdrawer/NavigationDrawer.css.d.ts +6 -0
  159. package/internal-do-not-import-from-here/ux/oxide/navigationdrawer/NavigationDrawer.d.ts +143 -0
  160. package/internal-do-not-import-from-here/ux/oxide/spacer/Spacer.d.ts +46 -0
  161. package/internal-do-not-import-from-here/ux/oxide/tab/Tab.d.ts +115 -0
  162. package/internal-do-not-import-from-here/ux/oxide/tab/Tabs.css.d.ts +1 -0
  163. package/internal-do-not-import-from-here/ux/oxide/tab/Tabs.d.ts +115 -0
  164. package/internal-do-not-import-from-here/ux/oxide/text/Text.css.d.ts +4 -0
  165. package/internal-do-not-import-from-here/ux/oxide/text/Text.d.ts +121 -0
  166. package/internal-do-not-import-from-here/ux/oxide/textfield/TextField.css.d.ts +1 -0
  167. package/internal-do-not-import-from-here/ux/oxide/textfield/TextField.d.ts +155 -0
  168. package/internal-do-not-import-from-here/ux/oxide/toolbar/Toolbar.css.d.ts +4 -0
  169. package/internal-do-not-import-from-here/ux/oxide/toolbar/Toolbar.d.ts +133 -0
  170. package/internal-do-not-import-from-here/ux/playground_test/Play2Component.d.ts +1 -1
  171. package/internal-do-not-import-from-here/ux/presetupwizard/PreSetupWizard.d.ts +2 -2
  172. package/internal-do-not-import-from-here/ux/profilecard/ProfileCardRenderer.d.ts +4 -4
  173. package/internal-do-not-import-from-here/ux/properties/builtins/birthday/BirthdayDisplay.d.ts +7 -1
  174. package/internal-do-not-import-from-here/ux/properties/builtins/birthday/BirthdayEditor.d.ts +11 -2
  175. package/internal-do-not-import-from-here/ux/properties/builtins/date/DateDisplay.d.ts +7 -1
  176. package/internal-do-not-import-from-here/ux/properties/builtins/date/DateEditor.d.ts +11 -2
  177. package/internal-do-not-import-from-here/ux/properties/builtins/date-time/DateTimeDisplay.d.ts +7 -1
  178. package/internal-do-not-import-from-here/ux/properties/builtins/date-time/DateTimeEditor.d.ts +11 -2
  179. package/internal-do-not-import-from-here/ux/properties/builtins/email/EmailDisplay.d.ts +4 -1
  180. package/internal-do-not-import-from-here/ux/properties/builtins/email/EmailEditor.d.ts +7 -1
  181. package/internal-do-not-import-from-here/ux/properties/builtins/html/HtmlConfiguration.d.ts +4 -1
  182. package/internal-do-not-import-from-here/ux/properties/builtins/html/HtmlDisplay.d.ts +4 -1
  183. package/internal-do-not-import-from-here/ux/properties/builtins/html/HtmlEditor.d.ts +8 -2
  184. package/internal-do-not-import-from-here/ux/properties/builtins/identity/IdentityConfiguration.d.ts +4 -1
  185. package/internal-do-not-import-from-here/ux/properties/builtins/identity/IdentityDisplay.d.ts +7 -1
  186. package/internal-do-not-import-from-here/ux/properties/builtins/identity/IdentityEditor.d.ts +10 -1
  187. package/internal-do-not-import-from-here/ux/properties/builtins/image/ImageConfiguration.d.ts +4 -1
  188. package/internal-do-not-import-from-here/ux/properties/builtins/image/ImageDisplay.d.ts +4 -1
  189. package/internal-do-not-import-from-here/ux/properties/builtins/image/ImageEditor.d.ts +8 -2
  190. package/internal-do-not-import-from-here/ux/properties/builtins/language/LanguageDisplay.d.ts +4 -1
  191. package/internal-do-not-import-from-here/ux/properties/builtins/language/LanguageEditor.d.ts +8 -2
  192. package/internal-do-not-import-from-here/ux/properties/builtins/link/LinkConfiguration.d.ts +4 -1
  193. package/internal-do-not-import-from-here/ux/properties/builtins/link/LinkDisplay.d.ts +4 -1
  194. package/internal-do-not-import-from-here/ux/properties/builtins/link/LinkEditor.d.ts +7 -1
  195. package/internal-do-not-import-from-here/ux/properties/builtins/multiline-text/MultilineTextDisplay.d.ts +4 -1
  196. package/internal-do-not-import-from-here/ux/properties/builtins/multiline-text/MultilineTextEditor.d.ts +8 -2
  197. package/internal-do-not-import-from-here/ux/properties/builtins/multilingualText/MultilingualTextDisplay.d.ts +4 -1
  198. package/internal-do-not-import-from-here/ux/properties/builtins/multilingualText/MultilingualTextEditor.d.ts +7 -1
  199. package/internal-do-not-import-from-here/ux/properties/builtins/phone-number/PhoneNumberDisplay.d.ts +7 -1
  200. package/internal-do-not-import-from-here/ux/properties/builtins/phone-number/PhoneNumberEditor.d.ts +7 -1
  201. package/internal-do-not-import-from-here/ux/properties/builtins/text/TextDisplay.d.ts +4 -1
  202. package/internal-do-not-import-from-here/ux/properties/builtins/text/TextEditor.d.ts +7 -1
  203. package/internal-do-not-import-from-here/ux/properties/builtins/time/TimeDisplay.d.ts +7 -1
  204. package/internal-do-not-import-from-here/ux/properties/builtins/time/TimeEditor.d.ts +10 -1
  205. package/internal-do-not-import-from-here/ux/properties/legacy-enterprise-property/LegacyEnterprisePropertyDisplay.d.ts +6 -1
  206. package/internal-do-not-import-from-here/ux/properties/legacy-enterprise-property/LegacyEnterprisePropertyEditor.d.ts +9 -1
  207. package/internal-do-not-import-from-here/ux/properties/property-picker/PropertyInput.d.ts +12 -1
  208. package/internal-do-not-import-from-here/ux/properties/property-picker/PropertyPicker.d.ts +9 -1
  209. package/internal-do-not-import-from-here/ux/properties/property-renderer/PropertyDatasourceRenderer.d.ts +6 -6
  210. package/internal-do-not-import-from-here/ux/properties/property-renderer/PropertyRenderer.d.ts +7 -7
  211. package/internal-do-not-import-from-here/ux/richtexteditor/Emoticon/EmoticonComponent.d.ts +3 -3
  212. package/internal-do-not-import-from-here/ux/sidepanel/SidePanelRenderer.d.ts +3 -3
  213. package/internal-do-not-import-from-here/ux/sidepanel/models/IRegistration.d.ts +1 -1
  214. package/internal-do-not-import-from-here/ux/signin/SignInBlock.d.ts +1 -1
  215. package/internal-do-not-import-from-here/ux/signin/SignInPage.d.ts +1 -1
  216. package/internal-do-not-import-from-here/ux/signin/omnia/Renderer.d.ts +7 -7
  217. package/internal-do-not-import-from-here/ux/signin/omnia/providers/MagicLinkProvider.d.ts +58 -5
  218. package/internal-do-not-import-from-here/ux/signin/omnia/providers/OtpProvider.d.ts +59 -5
  219. package/internal-do-not-import-from-here/ux/signin/omnia/providers/PasswordProvider.d.ts +58 -5
  220. package/internal-do-not-import-from-here/ux/signout/SignOut.d.ts +1 -1
  221. package/internal-do-not-import-from-here/ux/statusmessageoverlay/StatusMessageOverlay.d.ts +4 -1
  222. package/internal-do-not-import-from-here/ux/theming-v2/ColorManager.d.ts +1 -1
  223. package/internal-do-not-import-from-here/ux/theming-v2/ColorSchemaStore.d.ts +24 -0
  224. package/internal-do-not-import-from-here/ux/theming-v2/ThemeStoreV2.d.ts +9 -32
  225. package/internal-do-not-import-from-here/ux/theming-v2/index.d.ts +1 -0
  226. package/internal-do-not-import-from-here/ux/theming-v2/styling/UseBlueprintStyling.d.ts +8 -0
  227. package/internal-do-not-import-from-here/ux/theming-v2/styling/UseComponentStyling.d.ts +2 -0
  228. package/internal-do-not-import-from-here/ux/theming-v2/styling/UseThemeStyling.d.ts +16 -0
  229. package/internal-do-not-import-from-here/ux/theming-v2/styling/UseTypographyStyling.d.ts +25 -0
  230. package/internal-do-not-import-from-here/ux/theming-v2/styling/UseVuetifyStyling.d.ts +4 -0
  231. package/internal-do-not-import-from-here/ux/theming-v2/styling/index.d.ts +5 -1
  232. package/internal-do-not-import-from-here/ux/theming-v2/themedefinitionpicker/ThemeDefinitionPicker.css.d.ts +1 -1
  233. package/internal-do-not-import-from-here/ux/theming-v2/themedefinitionpicker/ThemeDefinitionPicker.d.ts +15 -5
  234. package/internal-do-not-import-from-here/ux/theming-v2/themeeditor/ThemeEditor.d.ts +8 -3
  235. package/internal-do-not-import-from-here/ux/theming-v2/themeeditor/components/ColorSelector.d.ts +45 -1
  236. package/internal-do-not-import-from-here/ux/theming-v2/themeeditor/components/ThemeCodeEditor.d.ts +45 -1
  237. package/internal-do-not-import-from-here/ux/theming-v2/themeeditor/components/ThemeViewer.d.ts +45 -1
  238. package/internal-do-not-import-from-here/ux/theming-v2/themeeditor/components/ThemeViewerStyles.d.ts +4 -0
  239. package/internal-do-not-import-from-here/ux/theming-v2/themes/Blueprints.d.ts +8 -1
  240. package/internal-do-not-import-from-here/ux/theming-v2/themes/Colors.d.ts +0 -80
  241. package/internal-do-not-import-from-here/ux/theming-v2/themes/Themes.d.ts +10 -121
  242. package/internal-do-not-import-from-here/ux/theming-v2/themes/TypographyTypes.d.ts +8 -8
  243. package/internal-do-not-import-from-here/ux/use/UseComponentSetup.d.ts +10 -0
  244. package/internal-do-not-import-from-here/ux/use/UseIcon.d.ts +2 -0
  245. package/internal-do-not-import-from-here/ux/use/index.d.ts +2 -0
  246. package/internal-do-not-import-from-here/ux/user/UserPropertyRenderer.d.ts +6 -6
  247. package/internal-do-not-import-from-here/ux/user/components/PropertyConfigurationRenderer.d.ts +4 -4
  248. package/internal-do-not-import-from-here/ux/user/components/UserPropertiesByMicrosoftGraphDisplay.d.ts +6 -2
  249. package/internal-do-not-import-from-here/ux/user/components/UserPropertiesByMicrosoftGraphEditor.d.ts +10 -3
  250. package/internal-do-not-import-from-here/ux/user/components/UserPropertyProviderDisplay.d.ts +6 -2
  251. package/internal-do-not-import-from-here/ux/user/components/UserPropertyProviderEditor.d.ts +9 -2
  252. package/internal-do-not-import-from-here/ux/userpresence/UserPresence.d.ts +6 -6
  253. package/internal-do-not-import-from-here/ux/usertypelayout/UserTypeLayoutBladeBuilder.d.ts +3 -3
  254. package/internal-do-not-import-from-here/ux/usertypelayout/UserTypeLayoutRenderer.d.ts +6 -6
  255. package/internal-do-not-import-from-here/ux/velcron/blocks/VelcronBlock.d.ts +1 -1
  256. package/internal-do-not-import-from-here/ux/velcron/blocks/VelcronBlockSettings.d.ts +1 -1
  257. package/internal-do-not-import-from-here/ux/velcron/core/models/VelcronDefinitions.d.ts +2 -2
  258. package/internal-do-not-import-from-here/ux/velcron/core/parser/VelcronRenderers.d.ts +11 -7
  259. package/internal-do-not-import-from-here/ux/velcron/core/stores/VelcronTheming.d.ts +9 -5
  260. package/internal-do-not-import-from-here/ux/velcron/editor/VelcronEditor.d.ts +7 -7
  261. package/internal-do-not-import-from-here/ux/velcron/editor/components/AddComponent.d.ts +45 -1
  262. package/internal-do-not-import-from-here/ux/velcron/editor/components/AddDataObject.d.ts +45 -1
  263. package/internal-do-not-import-from-here/ux/velcron/editor/components/AppExplorer.d.ts +45 -1
  264. package/internal-do-not-import-from-here/ux/velcron/editor/components/CodeEditor.d.ts +45 -1
  265. package/internal-do-not-import-from-here/ux/velcron/editor/components/ContainerRenderer.d.ts +50 -2
  266. package/internal-do-not-import-from-here/ux/velcron/editor/components/EditComponentPane.d.ts +45 -1
  267. package/internal-do-not-import-from-here/ux/velcron/editor/components/EditDataPane.d.ts +45 -1
  268. package/internal-do-not-import-from-here/ux/velcron/editor/components/ShareApp.d.ts +45 -1
  269. package/internal-do-not-import-from-here/ux/velcron/editor/components/panels/edit-component/ConditionalStatements.d.ts +45 -1
  270. package/internal-do-not-import-from-here/ux/velcron/editor/components/panels/edit-component/EventsPanel.d.ts +45 -1
  271. package/internal-do-not-import-from-here/ux/velcron/editor/components/panels/edit-component/PropertiesPanel.d.ts +45 -1
  272. package/internal-do-not-import-from-here/ux/velcron/editor/components/panels/edit-component/StylingPanel.d.ts +45 -1
  273. package/internal-do-not-import-from-here/ux/velcron/editor/components/panels/edit-data/EditDataMemberPanel.d.ts +45 -1
  274. package/internal-do-not-import-from-here/ux/velcron/editor/components/pickers/ColorSchemaPicker/ColorSchemaPicker.d.ts +5 -5
  275. package/internal-do-not-import-from-here/ux/velcron/editor/components/pickers/colorpicker/ColorPicker.d.ts +4 -4
  276. package/internal-do-not-import-from-here/ux/velcron/editor/components/pickers/colorschemamapper/ColorSchemaMapper.d.ts +4 -4
  277. package/internal-do-not-import-from-here/ux/velcron/editor/components/pickers/colorschemareferencepicker/ColorSchemaReferencePicker.d.ts +45 -1
  278. package/internal-do-not-import-from-here/ux/velcron/editor/components/pickers/ratiopicker/RatioPicker.d.ts +4 -4
  279. package/internal-do-not-import-from-here/ux/velcron/editor/components/pickers/typographypicker/TypographyPicker.d.ts +4 -4
  280. package/internal-do-not-import-from-here/ux/velcron/renderer/VelcronRenderer.d.ts +7 -12
  281. package/internal-do-not-import-from-here/ux/velcron/renderer/components/App.d.ts +48 -1
  282. package/internal-do-not-import-from-here/ux/velcron/renderer/components/Button.d.ts +48 -1
  283. package/internal-do-not-import-from-here/ux/velcron/renderer/components/Card.d.ts +48 -1
  284. package/internal-do-not-import-from-here/ux/velcron/renderer/components/Chip.d.ts +48 -1
  285. package/internal-do-not-import-from-here/ux/velcron/renderer/components/ComponentCreator.d.ts +51 -2
  286. package/internal-do-not-import-from-here/ux/velcron/renderer/components/Custom.d.ts +48 -1
  287. package/internal-do-not-import-from-here/ux/velcron/renderer/components/Dialog.d.ts +48 -1
  288. package/internal-do-not-import-from-here/ux/velcron/renderer/components/FlexView.d.ts +48 -1
  289. package/internal-do-not-import-from-here/ux/velcron/renderer/components/Icon.d.ts +48 -1
  290. package/internal-do-not-import-from-here/ux/velcron/renderer/components/Image.d.ts +48 -1
  291. package/internal-do-not-import-from-here/ux/velcron/renderer/components/ProgressCircle.d.ts +48 -1
  292. package/internal-do-not-import-from-here/ux/velcron/renderer/components/Text.d.ts +48 -1
  293. package/internal-do-not-import-from-here/ux/velcron/renderer/components/TextInput.d.ts +48 -1
  294. package/internal-do-not-import-from-here/ux/velcron/renderer/components/View.d.ts +48 -1
  295. package/internal-do-not-import-from-here/ux/velcron/renderer/components/WebView.d.ts +48 -1
  296. package/internal-do-not-import-from-here/ux/versionedlayout/editor/VersionedLayoutDefinitionEditorItem.d.ts +1 -1
  297. package/internal-do-not-import-from-here/ux/versionedlayout/editor/VersionedLayoutEditor.d.ts +9 -9
  298. package/internal-do-not-import-from-here/ux/versionedlayout/renderer/VersionedLayoutRenderer.d.ts +11 -11
  299. package/internal-do-not-import-from-here/ux/vuetify/index.d.ts +1 -2
  300. package/internal-do-not-import-from-here/wctypings.d.ts +38 -0
  301. package/package.json +2 -2
  302. package/ux/index.d.ts +1 -1
  303. package/internal-do-not-import-from-here/ux/ComponentDefinitions.d.ts +0 -60
  304. package/internal-do-not-import-from-here/ux/contentdialog/ContentDialog.css.d.ts +0 -5
  305. package/internal-do-not-import-from-here/ux/contentdialog/ContentDialog.d.ts +0 -19
  306. package/internal-do-not-import-from-here/ux/contentdialog/IContentDialog.d.ts +0 -13
  307. package/internal-do-not-import-from-here/ux/theming-v2/styling/themeStyling.d.ts +0 -4
  308. package/internal-do-not-import-from-here/vue/VueHotReloadApi.d.ts +0 -1
@@ -1,4 +1,3 @@
1
- import { ColorSchema } from "@omnia/fx-models";
2
1
  export declare const SystemColors: {
3
2
  Teal: string;
4
3
  Purple: string;
@@ -13,82 +12,3 @@ export declare const SystemColors: {
13
12
  Black: string;
14
13
  Grey: string;
15
14
  };
16
- export declare const ColorSchemas: {
17
- Teal: ColorSchema;
18
- Purple: {
19
- base: import("@omnia/fx-models").ColorDefinition;
20
- onBase: import("@omnia/fx-models").ColorDefinition;
21
- container: import("@omnia/fx-models").ColorDefinition;
22
- onContainer: import("@omnia/fx-models").ColorDefinition;
23
- };
24
- DarkGreen: {
25
- base: import("@omnia/fx-models").ColorDefinition;
26
- onBase: import("@omnia/fx-models").ColorDefinition;
27
- container: import("@omnia/fx-models").ColorDefinition;
28
- onContainer: import("@omnia/fx-models").ColorDefinition;
29
- };
30
- LightGreen: {
31
- base: import("@omnia/fx-models").ColorDefinition;
32
- onBase: import("@omnia/fx-models").ColorDefinition;
33
- container: import("@omnia/fx-models").ColorDefinition;
34
- onContainer: import("@omnia/fx-models").ColorDefinition;
35
- };
36
- DarkBackground: {
37
- base: import("@omnia/fx-models").ColorDefinition;
38
- onBase: import("@omnia/fx-models").ColorDefinition;
39
- container: import("@omnia/fx-models").ColorDefinition;
40
- onContainer: import("@omnia/fx-models").ColorDefinition;
41
- };
42
- LightBackground: {
43
- base: import("@omnia/fx-models").ColorDefinition;
44
- onBase: import("@omnia/fx-models").ColorDefinition;
45
- container: import("@omnia/fx-models").ColorDefinition;
46
- onContainer: import("@omnia/fx-models").ColorDefinition;
47
- };
48
- DarkPink: {
49
- base: import("@omnia/fx-models").ColorDefinition;
50
- onBase: import("@omnia/fx-models").ColorDefinition;
51
- container: import("@omnia/fx-models").ColorDefinition;
52
- onContainer: import("@omnia/fx-models").ColorDefinition;
53
- };
54
- RedBrown: {
55
- base: import("@omnia/fx-models").ColorDefinition;
56
- onBase: import("@omnia/fx-models").ColorDefinition;
57
- component: import("@omnia/fx-models").ColorDefinition;
58
- onContainer: import("@omnia/fx-models").ColorDefinition;
59
- };
60
- Orange: {
61
- base: import("@omnia/fx-models").ColorDefinition;
62
- onBase: import("@omnia/fx-models").ColorDefinition;
63
- container: import("@omnia/fx-models").ColorDefinition;
64
- onContainer: import("@omnia/fx-models").ColorDefinition;
65
- };
66
- Gold: {
67
- base: import("@omnia/fx-models").ColorDefinition;
68
- onBase: import("@omnia/fx-models").ColorDefinition;
69
- container: import("@omnia/fx-models").ColorDefinition;
70
- onContainer: import("@omnia/fx-models").ColorDefinition;
71
- };
72
- Black: {
73
- base: import("@omnia/fx-models").ColorDefinition;
74
- onBase: import("@omnia/fx-models").ColorDefinition;
75
- container: import("@omnia/fx-models").ColorDefinition;
76
- onContainer: import("@omnia/fx-models").ColorDefinition;
77
- };
78
- Grey: {
79
- base: import("@omnia/fx-models").ColorDefinition;
80
- onBase: import("@omnia/fx-models").ColorDefinition;
81
- container: import("@omnia/fx-models").ColorDefinition;
82
- onContainer: import("@omnia/fx-models").ColorDefinition;
83
- };
84
- LightBlue: {
85
- base: import("@omnia/fx-models").ColorDefinition;
86
- onBase: import("@omnia/fx-models").ColorDefinition;
87
- container: import("@omnia/fx-models").ColorDefinition;
88
- onContainer: import("@omnia/fx-models").ColorDefinition;
89
- };
90
- };
91
- export declare const AppChrome: {
92
- Black: import("@omnia/fx-models").ColorDefinition;
93
- White: import("@omnia/fx-models").ColorDefinition;
94
- };
@@ -1,125 +1,6 @@
1
1
  import { ColorSchema, ThemeDefinitionV2, TypographyDefinition, Guid } from "@omnia/fx-models";
2
2
  import { BlueprintDefinition } from "internal/fx/shared/models/theming/BlueprintDefinition";
3
- export declare class DarkKnightDefinition implements ThemeDefinitionV2 {
4
- dark: boolean;
5
- id: Guid;
6
- primary: ColorSchema;
7
- secondary: ColorSchema;
8
- accent1: ColorSchema;
9
- accent2: ColorSchema;
10
- accent3: ColorSchema;
11
- neutral: ColorSchema;
12
- background: ColorSchema;
13
- error: ColorSchema;
14
- info: ColorSchema;
15
- typography: TypographyDefinition;
16
- blueprint: BlueprintDefinition;
17
- name: string;
18
- constructor();
19
- }
20
- export declare class BlackDefinition implements ThemeDefinitionV2 {
21
- dark: boolean;
22
- id: Guid;
23
- primary: ColorSchema;
24
- secondary: ColorSchema;
25
- accent1: ColorSchema;
26
- accent2: ColorSchema;
27
- accent3: ColorSchema;
28
- neutral: ColorSchema;
29
- background: ColorSchema;
30
- error: ColorSchema;
31
- info: ColorSchema;
32
- typography: TypographyDefinition;
33
- blueprint: BlueprintDefinition;
34
- name: string;
35
- constructor();
36
- }
37
- export declare class BumbleBeeDefinition implements ThemeDefinitionV2 {
38
- dark: boolean;
39
- id: Guid;
40
- primary: ColorSchema;
41
- secondary: ColorSchema;
42
- accent1: ColorSchema;
43
- accent2: ColorSchema;
44
- accent3: ColorSchema;
45
- neutral: ColorSchema;
46
- background: ColorSchema;
47
- error: ColorSchema;
48
- info: ColorSchema;
49
- typography: TypographyDefinition;
50
- blueprint: BlueprintDefinition;
51
- name: string;
52
- constructor();
53
- }
54
- export declare class CyberPunkDefinition implements ThemeDefinitionV2 {
55
- dark: boolean;
56
- id: Guid;
57
- primary: ColorSchema;
58
- secondary: ColorSchema;
59
- accent1: ColorSchema;
60
- accent2: ColorSchema;
61
- accent3: ColorSchema;
62
- neutral: ColorSchema;
63
- background: ColorSchema;
64
- error: ColorSchema;
65
- info: ColorSchema;
66
- typography: TypographyDefinition;
67
- blueprint: BlueprintDefinition;
68
- name: string;
69
- constructor();
70
- }
71
- export declare class CoffeDefinition implements ThemeDefinitionV2 {
72
- dark: boolean;
73
- id: Guid;
74
- primary: ColorSchema;
75
- secondary: ColorSchema;
76
- accent1: ColorSchema;
77
- accent2: ColorSchema;
78
- accent3: ColorSchema;
79
- neutral: ColorSchema;
80
- background: ColorSchema;
81
- error: ColorSchema;
82
- info: ColorSchema;
83
- typography: TypographyDefinition;
84
- blueprint: BlueprintDefinition;
85
- name: string;
86
- constructor();
87
- }
88
- export declare class LightThemeDefinition implements ThemeDefinitionV2 {
89
- dark: boolean;
90
- id: Guid;
91
- primary: ColorSchema;
92
- secondary: ColorSchema;
93
- accent1: ColorSchema;
94
- accent2: ColorSchema;
95
- accent3: ColorSchema;
96
- neutral: ColorSchema;
97
- background: ColorSchema;
98
- error: ColorSchema;
99
- info: ColorSchema;
100
- typography: TypographyDefinition;
101
- blueprint: BlueprintDefinition;
102
- name: string;
103
- constructor();
104
- }
105
- export declare class DarkThemeDefinition implements ThemeDefinitionV2 {
106
- dark: boolean;
107
- id: Guid;
108
- primary: ColorSchema;
109
- secondary: ColorSchema;
110
- accent1: ColorSchema;
111
- accent2: ColorSchema;
112
- accent3: ColorSchema;
113
- neutral: ColorSchema;
114
- background: ColorSchema;
115
- error: ColorSchema;
116
- info: ColorSchema;
117
- typography: TypographyDefinition;
118
- blueprint: BlueprintDefinition;
119
- name: string;
120
- constructor();
121
- }
122
- export declare class CustomTheme implements ThemeDefinitionV2 {
3
+ export declare class ThemeDefinitionInstance implements ThemeDefinitionV2 {
123
4
  id: Guid;
124
5
  typography: TypographyDefinition;
125
6
  primary: ColorSchema;
@@ -134,5 +15,13 @@ export declare class CustomTheme implements ThemeDefinitionV2 {
134
15
  dark: boolean;
135
16
  blueprint: BlueprintDefinition;
136
17
  name: string;
137
- constructor(primary: string, secondary: string, accent1: string, accent2: string, accent3: string, neutral: string, background: string, typography: TypographyDefinition, name: string);
18
+ constructor(primary: string, secondary: string, accent1: string, accent2: string, accent3: string, neutral: string, background: string, info: string, error: string, typography: TypographyDefinition, blueprint: BlueprintDefinition, name: string, dark: boolean, id: Guid);
138
19
  }
20
+ export declare const DarkKnightDefinition: () => ThemeDefinitionInstance;
21
+ export declare const DarkEditorDefinition: () => ThemeDefinitionInstance;
22
+ export declare const BlackDefinition: () => ThemeDefinitionInstance;
23
+ export declare const BumbleBeeDefinition: () => ThemeDefinitionInstance;
24
+ export declare const CyberPunkDefinition: () => ThemeDefinitionInstance;
25
+ export declare const CoffeDefinition: () => ThemeDefinitionInstance;
26
+ export declare const LightThemeDefinition: () => ThemeDefinitionInstance;
27
+ export declare const DarkThemeDefinition: () => ThemeDefinitionInstance;
@@ -1,12 +1,12 @@
1
- import { Guid, TypographyDefinition, TypographyType } from "@omnia/fx-models";
1
+ import { Guid, TypographyDefinition, TypographyTypeDefinition } from "@omnia/fx-models";
2
2
  export declare class DefaultTypography implements TypographyDefinition {
3
3
  id: Guid;
4
- h1: TypographyType;
5
- h2: TypographyType;
6
- h3: TypographyType;
7
- summary: TypographyType;
8
- text: TypographyType;
9
- caption: TypographyType;
10
- link: TypographyType;
4
+ h1: TypographyTypeDefinition;
5
+ h2: TypographyTypeDefinition;
6
+ h3: TypographyTypeDefinition;
7
+ summary: TypographyTypeDefinition;
8
+ text: TypographyTypeDefinition;
9
+ caption: TypographyTypeDefinition;
10
+ link: TypographyTypeDefinition;
11
11
  constructor();
12
12
  }
@@ -0,0 +1,10 @@
1
+ import { ColorType, ColorTypes } from "@omnia/fx/models";
2
+ import { ColorSchemaStore } from "../theming-v2";
3
+ export declare const useComponentSetup: (props: object) => ColorSchemaStore[];
4
+ export declare const useComponentColors: (props: object, colorSchemaStore: ColorSchemaStore, defaultBaseColor: ColorTypes | ColorType) => {
5
+ baseColor: any;
6
+ onBaseColor: import("@omnia/fx-models").ColorDefinition;
7
+ baseIsTonedColor: any;
8
+ baseColorType: any;
9
+ onBaseColorType: ColorTypes;
10
+ };
@@ -0,0 +1,2 @@
1
+ import { IIcon } from "@omnia/fx-models";
2
+ export declare const useIconClass: (icon: IIcon) => any;
@@ -10,3 +10,5 @@ export * from "./UseEventHook";
10
10
  export * from "./UseClone";
11
11
  export * from "./UseKeyboard";
12
12
  export * from "./UseIndexedDb";
13
+ export * from "./UseComponentSetup";
14
+ export * from "./UseIcon";
@@ -68,11 +68,11 @@ declare const _default: {
68
68
  }>>>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
69
69
  [key: string]: any;
70
70
  }>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
71
- propsDefinition: Readonly<import("vue").ExtractPropTypes<import("vue").ComponentObjectPropsOptions<{
72
- valueBind: PropertyValueBinding<PropertyDefinition<any, any, any> | PropertyValue<any, any>>;
73
- onValueBindChanged: (value: PropertyValueBinding<PropertyDefinition<any, any, any> | PropertyValue<any, any>>) => void;
74
- disabled: boolean;
75
- editMode: boolean;
76
- }>>>;
71
+ propsDefinition: Readonly<{} & {
72
+ disabled?: boolean;
73
+ valueBind?: PropertyValueBinding<PropertyDefinition<any, any, any> | PropertyValue<any, any>>;
74
+ onValueBindChanged?: (value: PropertyValueBinding<PropertyDefinition<any, any, any> | PropertyValue<any, any>>) => void;
75
+ editMode?: boolean;
76
+ }>;
77
77
  };
78
78
  export default _default;
@@ -54,9 +54,9 @@ declare const _default: {
54
54
  valueBind: UserPropertyConfiguration;
55
55
  onValueBindChanged: (newValue: UserPropertyConfiguration) => void;
56
56
  }>>>, () => JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
57
- propsDefinition: Readonly<import("vue").ExtractPropTypes<import("vue").ComponentObjectPropsOptions<{
58
- valueBind: UserPropertyConfiguration;
59
- onValueBindChanged: (newValue: UserPropertyConfiguration) => void;
60
- }>>>;
57
+ propsDefinition: Readonly<{} & {
58
+ valueBind?: UserPropertyConfiguration;
59
+ onValueBindChanged?: (newValue: UserPropertyConfiguration) => void;
60
+ }>;
61
61
  };
62
62
  export default _default;
@@ -1,4 +1,4 @@
1
- import { IPropertyProviderDisplayRenderer } from "@omnia/fx-models";
1
+ import { IPropertyProviderDisplayRenderer, PropertyConfiguration } from "@omnia/fx-models";
2
2
  import { UserPropertiesByMicrosoftGraphDefinition } from "../UserPropertiesByMicrosoftGraphDefinition";
3
3
  declare const msgraphUserDisplayComponent: {
4
4
  new (...args: any[]): {
@@ -43,6 +43,10 @@ declare const msgraphUserDisplayComponent: {
43
43
  __isTeleport?: never;
44
44
  __isSuspense?: never;
45
45
  } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<import("vue").ComponentObjectPropsOptions<IPropertyProviderDisplayRenderer<UserPropertiesByMicrosoftGraphDefinition>>>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
46
- propsDefinition: Readonly<import("vue").ExtractPropTypes<import("vue").ComponentObjectPropsOptions<IPropertyProviderDisplayRenderer<UserPropertiesByMicrosoftGraphDefinition>>>>;
46
+ propsDefinition: Readonly<{} & {
47
+ configuration?: PropertyConfiguration<UserPropertiesByMicrosoftGraphDefinition>;
48
+ valueBind?: import("../UserPropertiesByMicrosoftGraphDefinition").MSGraphUserPropertyValue;
49
+ displaySettings?: import("../UserPropertiesByMicrosoftGraphDefinition").MSGraphUserPropertyDisplaySettings;
50
+ }>;
47
51
  };
48
52
  export default msgraphUserDisplayComponent;
@@ -1,5 +1,5 @@
1
- import { IPropertyProviderEditorRenderer } from "@omnia/fx-models";
2
- import { UserPropertiesByMicrosoftGraphDefinition } from "../UserPropertiesByMicrosoftGraphDefinition";
1
+ import { IPropertyProviderEditorRenderer, PropertyConfiguration } from "@omnia/fx-models";
2
+ import { UserPropertiesByMicrosoftGraphDefinition, MSGraphUserPropertyValue } from "../UserPropertiesByMicrosoftGraphDefinition";
3
3
  declare const msgraphUserEditorComponent: {
4
4
  new (...args: any[]): {
5
5
  $: import("vue").ComponentInternalInstance;
@@ -43,6 +43,13 @@ declare const msgraphUserEditorComponent: {
43
43
  __isTeleport?: never;
44
44
  __isSuspense?: never;
45
45
  } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<import("vue").ComponentObjectPropsOptions<IPropertyProviderEditorRenderer<UserPropertiesByMicrosoftGraphDefinition>>>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
46
- propsDefinition: Readonly<import("vue").ExtractPropTypes<import("vue").ComponentObjectPropsOptions<IPropertyProviderEditorRenderer<UserPropertiesByMicrosoftGraphDefinition>>>>;
46
+ propsDefinition: Readonly<{} & {
47
+ configuration?: PropertyConfiguration<UserPropertiesByMicrosoftGraphDefinition>;
48
+ disabled?: boolean;
49
+ valueBind?: MSGraphUserPropertyValue;
50
+ displaySettings?: import("../UserPropertiesByMicrosoftGraphDefinition").MSGraphUserPropertyDisplaySettings;
51
+ editorSettings?: import("../UserPropertiesByMicrosoftGraphDefinition").MSGraphUserEditorSettings;
52
+ onValueBindChanged?: (newValue: MSGraphUserPropertyValue) => void;
53
+ }>;
47
54
  };
48
55
  export default msgraphUserEditorComponent;
@@ -1,4 +1,4 @@
1
- import { IPropertyProviderDisplayRenderer } from "@omnia/fx-models";
1
+ import { IPropertyProviderDisplayRenderer, PropertyConfiguration } from "@omnia/fx-models";
2
2
  import { UserPropertyProviderDefinition } from "../UserPropertyProviderDefinition";
3
3
  declare const _default: {
4
4
  new (...args: any[]): {
@@ -43,6 +43,10 @@ declare const _default: {
43
43
  __isTeleport?: never;
44
44
  __isSuspense?: never;
45
45
  } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<import("vue").ComponentObjectPropsOptions<IPropertyProviderDisplayRenderer<UserPropertyProviderDefinition>>>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
46
- propsDefinition: Readonly<import("vue").ExtractPropTypes<import("vue").ComponentObjectPropsOptions<IPropertyProviderDisplayRenderer<UserPropertyProviderDefinition>>>>;
46
+ propsDefinition: Readonly<{} & {
47
+ configuration?: PropertyConfiguration<UserPropertyProviderDefinition>;
48
+ valueBind?: import("../UserPropertyProviderDefinition").BuiltinUserPropertyValue;
49
+ displaySettings?: import("../UserPropertyProviderDefinition").UserPropertyProviderDefinitionDisplaySettings;
50
+ }>;
47
51
  };
48
52
  export default _default;
@@ -1,4 +1,4 @@
1
- import { IPropertyProviderEditorRenderer } from "@omnia/fx-models";
1
+ import { IPropertyProviderEditorRenderer, PropertyConfiguration } from "@omnia/fx-models";
2
2
  import { UserPropertyProviderDefinition } from "../UserPropertyProviderDefinition";
3
3
  declare const _default: {
4
4
  new (...args: any[]): {
@@ -43,6 +43,13 @@ declare const _default: {
43
43
  __isTeleport?: never;
44
44
  __isSuspense?: never;
45
45
  } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<import("vue").ComponentObjectPropsOptions<IPropertyProviderEditorRenderer<UserPropertyProviderDefinition>>>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
46
- propsDefinition: Readonly<import("vue").ExtractPropTypes<import("vue").ComponentObjectPropsOptions<IPropertyProviderEditorRenderer<UserPropertyProviderDefinition>>>>;
46
+ propsDefinition: Readonly<{} & {
47
+ configuration?: PropertyConfiguration<UserPropertyProviderDefinition>;
48
+ disabled?: boolean;
49
+ valueBind?: import("../UserPropertyProviderDefinition").BuiltinUserPropertyValue;
50
+ displaySettings?: import("../UserPropertyProviderDefinition").UserPropertyProviderDefinitionDisplaySettings;
51
+ editorSettings?: import("../UserPropertyProviderDefinition").UserPropertyProviderDefinitionEditorSettings;
52
+ onValueBindChanged?: (newValue: import("../UserPropertyProviderDefinition").BuiltinUserPropertyValue) => void;
53
+ }>;
47
54
  };
48
55
  export default _default;
@@ -70,13 +70,13 @@ declare const _default: {
70
70
  container?: import("@omnia/fx-models").NestedCSSPropertiesExtends;
71
71
  };
72
72
  }>>>, () => JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
73
- propsDefinition: Readonly<import("vue").ExtractPropTypes<import("vue").ComponentObjectPropsOptions<{
74
- valueBind: UserIdentity;
75
- offsetX: number;
76
- offsetY: number;
77
- styles: {
73
+ propsDefinition: Readonly<{} & {
74
+ valueBind?: UserIdentity;
75
+ styles?: {
78
76
  container?: import("@omnia/fx-models").NestedCSSPropertiesExtends;
79
77
  };
80
- }>>>;
78
+ offsetX?: number;
79
+ offsetY?: number;
80
+ }>;
81
81
  };
82
82
  export default _default;
@@ -50,8 +50,8 @@ declare const _default: {
50
50
  } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<import("vue").ComponentObjectPropsOptions<{
51
51
  userTypeId: GuidValue;
52
52
  }>>>, () => JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
53
- propsDefinition: Readonly<import("vue").ExtractPropTypes<import("vue").ComponentObjectPropsOptions<{
54
- userTypeId: GuidValue;
55
- }>>>;
53
+ propsDefinition: Readonly<{} & {
54
+ userTypeId?: GuidValue;
55
+ }>;
56
56
  };
57
57
  export default _default;
@@ -63,11 +63,11 @@ declare const _default: {
63
63
  getApi: (api: LayoutRendererCanvasApi) => void;
64
64
  serviceContainerContext: ServiceContainerContext;
65
65
  }>>>, () => JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
66
- propsDefinition: Readonly<import("vue").ExtractPropTypes<import("vue").ComponentObjectPropsOptions<{
67
- userTypeId: GuidValue;
68
- editMode: boolean;
69
- getApi: (api: LayoutRendererCanvasApi) => void;
70
- serviceContainerContext: ServiceContainerContext;
71
- }>>>;
66
+ propsDefinition: Readonly<{} & {
67
+ userTypeId?: GuidValue;
68
+ editMode?: boolean;
69
+ serviceContainerContext?: ServiceContainerContext;
70
+ getApi?: (api: LayoutRendererCanvasApi) => void;
71
+ }>;
72
72
  };
73
73
  export default _default;
@@ -41,6 +41,6 @@ declare const _default: {
41
41
  __isTeleport?: never;
42
42
  __isSuspense?: never;
43
43
  } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{}>>, () => JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
44
- propsDefinition: Readonly<import("vue").ExtractPropTypes<{}>>;
44
+ propsDefinition: Readonly<{} & {}>;
45
45
  };
46
46
  export default _default;
@@ -45,6 +45,6 @@ declare const _default: {
45
45
  __isTeleport?: never;
46
46
  __isSuspense?: never;
47
47
  } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{}>>, () => JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
48
- propsDefinition: Readonly<import("vue").ExtractPropTypes<{}>>;
48
+ propsDefinition: Readonly<{} & {}>;
49
49
  };
50
50
  export default _default;
@@ -2,7 +2,7 @@ import { VelcronComponentDescriptor } from "./VelcronDescriptors";
2
2
  import { VelcronEvent, VelcronOnChangedEvent, VelcronOnClosedEvent, VelcronOnCloseRequestedEvent, VelcronOnLoadEvent, VelcronOnPressEvent } from "./VelcronEvents";
3
3
  import { VelcroncomponentArrayType, VelcronPrimitiveType } from "./VelcronTypes";
4
4
  import { AssignOperators, VelcronHorizontalAlignments, VelcronIconTypes, VelcronActionTypes, VerticalAlignments } from "./Enums";
5
- import { ColorSchema, useVelcronThemingStore } from "..";
5
+ import { ColorSchema, ColorSchemaType, ColorSchemaTypes, useVelcronThemingStore } from "..";
6
6
  export interface ResolvedComponentRenderer {
7
7
  component: unknown;
8
8
  definition: VelcronDefinition;
@@ -41,7 +41,7 @@ export interface VelcronRenderContext {
41
41
  rootContext: VelcronState;
42
42
  currentContext: VelcronState;
43
43
  theming?: ReturnType<typeof useVelcronThemingStore>;
44
- colorSchemaName?: string;
44
+ colorSchemaType?: ColorSchemaTypes | ColorSchemaType;
45
45
  colorSchema?: ColorSchema;
46
46
  actions?: {
47
47
  [name: string]: [];
@@ -11,16 +11,20 @@ export declare class VelcronRenderers {
11
11
  rootContext: VelcronState;
12
12
  theming: {
13
13
  state: {
14
- currentTheme: import("@omnia/fx-models").ThemeDefinitionV2;
14
+ currentTheme: import("..").ThemeDefinitionV2;
15
15
  };
16
16
  get: {
17
- colorSchema: (schema: string) => import("@omnia/fx-models").ColorSchema;
18
- typography: (name: string) => import("@omnia/fx-models").TypographyType;
19
- color: (schemaName: string, colorType: string) => string;
20
- complementaryColor: (colorType: string) => string;
17
+ colorSchema: (colorSchemaType: import("..").ColorSchemaTypes) => import("..").ColorSchema;
18
+ typography: (typographyType: import("..").TypographyTypes) => import("..").TypographyTypeDefinition;
19
+ color: (colorSchemaType: import("..").ColorSchemaTypes, colorType: import("..").ColorTypes) => string;
20
+ colorDefinition: (colorSchemaType: import("..").ColorSchemaTypes, colorType: import("..").ColorTypes) => import("..").ColorDefinition;
21
+ complementaryColorType: (colorType: import("..").ColorTypes) => import("..").ColorTypes.base | import("..").ColorTypes.onBase | import("..").ColorTypes.container | import("..").ColorTypes.onContainer;
22
+ complementaryColor: (colorSchemaType: import("..").ColorSchemaTypes, colorType: import("..").ColorTypes) => string;
23
+ complementaryColorDefinition: (colorSchemaType: import("..").ColorSchemaTypes, colorType: import("..").ColorTypes) => import("..").ColorDefinition;
24
+ currentTheme: () => import("..").ThemeDefinitionV2;
21
25
  };
22
26
  actions: {
23
- setTheme(newTheme: import("@omnia/fx-models").ThemeDefinitionV2): void;
27
+ setTheme(newTheme: import("..").ThemeDefinitionV2): void;
24
28
  };
25
29
  };
26
30
  currentContext: VelcronState;
@@ -28,7 +32,7 @@ export declare class VelcronRenderers {
28
32
  [name: string]: [];
29
33
  };
30
34
  components: VelcronCustomComponentDefinition[];
31
- hooks: import("../models").VelcronRenderContextHooks;
35
+ hooks: import("..").VelcronRenderContextHooks;
32
36
  computed: {
33
37
  [name: string]: [];
34
38
  };
@@ -1,13 +1,17 @@
1
- import { ThemeDefinitionV2, TypographyType } from "..";
1
+ import { ColorSchemaType, ColorSchemaTypes, ColorType, ColorTypes, ThemeDefinitionV2, TypographyType, TypographyTypes } from "..";
2
2
  export declare const useVelcronThemingStore: (newStateWithName?: string) => {
3
3
  state: {
4
4
  currentTheme: ThemeDefinitionV2;
5
5
  };
6
6
  get: {
7
- colorSchema: (schema: string) => import("..").ColorSchema;
8
- typography: (name: string) => TypographyType;
9
- color: (schemaName: string, colorType: string) => string;
10
- complementaryColor: (colorType: string) => string;
7
+ colorSchema: (colorSchemaType: ColorSchemaTypes | ColorSchemaType) => import("..").ColorSchema;
8
+ typography: (typographyType: TypographyTypes | TypographyType) => import("..").TypographyTypeDefinition;
9
+ color: (colorSchemaType: ColorSchemaTypes | ColorSchemaType, colorType: ColorTypes | ColorType) => string;
10
+ colorDefinition: (colorSchemaType: ColorSchemaTypes | ColorSchemaType, colorType: ColorTypes | ColorType) => import("..").ColorDefinition;
11
+ complementaryColorType: (colorType: ColorTypes | ColorType) => ColorTypes.base | ColorTypes.onBase | ColorTypes.container | ColorTypes.onContainer;
12
+ complementaryColor: (colorSchemaType: ColorSchemaTypes | ColorSchemaType, colorType: ColorTypes | ColorType) => string;
13
+ complementaryColorDefinition: (colorSchemaType: ColorSchemaTypes | ColorSchemaType, colorType: ColorTypes | ColorType) => import("..").ColorDefinition;
14
+ currentTheme: () => ThemeDefinitionV2;
11
15
  };
12
16
  actions: {
13
17
  setTheme(newTheme: ThemeDefinitionV2): void;
@@ -71,12 +71,12 @@ declare const _default: {
71
71
  themeStoreRegistrationHook: RegisterThemeStore;
72
72
  rendererTheme: ThemeDefinitionV2;
73
73
  }>>>, () => JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
74
- propsDefinition: Readonly<import("vue").ExtractPropTypes<import("vue").ComponentObjectPropsOptions<{
75
- definition: VelcronAppDefinition;
76
- definitionChanged: DefinitionChanged;
77
- eventHandlers: VelcronRenderContextEventHandlers;
78
- themeStoreRegistrationHook: RegisterThemeStore;
79
- rendererTheme: ThemeDefinitionV2;
80
- }>>>;
74
+ propsDefinition: Readonly<{} & {
75
+ definition?: VelcronAppDefinition;
76
+ themeStoreRegistrationHook?: RegisterThemeStore;
77
+ definitionChanged?: DefinitionChanged;
78
+ eventHandlers?: VelcronRenderContextEventHandlers;
79
+ rendererTheme?: ThemeDefinitionV2;
80
+ }>;
81
81
  };
82
82
  export default _default;
@@ -1,2 +1,46 @@
1
- declare const _default: import("vue").DefineComponent<{}, () => JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
1
+ declare const _default: {
2
+ new (...args: any[]): {
3
+ $: import("vue").ComponentInternalInstance;
4
+ $data: {};
5
+ $props: Partial<{}> & Omit<Readonly<import("vue").ExtractPropTypes<{}>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>;
6
+ $attrs: {
7
+ [x: string]: unknown;
8
+ };
9
+ $refs: {
10
+ [x: string]: unknown;
11
+ };
12
+ $slots: Readonly<{
13
+ [name: string]: import("vue").Slot;
14
+ }>;
15
+ $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
16
+ $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
17
+ $emit: (event: string, ...args: any[]) => void;
18
+ $el: any;
19
+ $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{}>>, () => JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string> & {
20
+ beforeCreate?: (() => void) | (() => void)[];
21
+ created?: (() => void) | (() => void)[];
22
+ beforeMount?: (() => void) | (() => void)[];
23
+ mounted?: (() => void) | (() => void)[];
24
+ beforeUpdate?: (() => void) | (() => void)[];
25
+ updated?: (() => void) | (() => void)[];
26
+ activated?: (() => void) | (() => void)[];
27
+ deactivated?: (() => void) | (() => void)[];
28
+ beforeDestroy?: (() => void) | (() => void)[];
29
+ beforeUnmount?: (() => void) | (() => void)[];
30
+ destroyed?: (() => void) | (() => void)[];
31
+ unmounted?: (() => void) | (() => void)[];
32
+ renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
33
+ renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
34
+ errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void)[];
35
+ };
36
+ $forceUpdate: () => void;
37
+ $nextTick: typeof import("vue").nextTick;
38
+ $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean>): import("vue").WatchStopHandle;
39
+ } & Readonly<import("vue").ExtractPropTypes<{}>> & import("vue").ShallowUnwrapRef<() => JSX.Element> & {} & import("vue").ComponentCustomProperties & {};
40
+ __isFragment?: never;
41
+ __isTeleport?: never;
42
+ __isSuspense?: never;
43
+ } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{}>>, () => JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
44
+ propsDefinition: Readonly<{} & {}>;
45
+ };
2
46
  export default _default;