@omnia/fx 8.0.12-vnext → 8.0.15-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 (202) hide show
  1. package/internal-do-not-import-from-here/core/index.d.ts +1 -0
  2. package/internal-do-not-import-from-here/core/use/UseEventHook.d.ts +14 -0
  3. package/internal-do-not-import-from-here/core/use/index.d.ts +1 -0
  4. package/internal-do-not-import-from-here/index.d.ts +2 -1
  5. package/internal-do-not-import-from-here/manifests/omnia.fx.core.manifest.json +1 -1
  6. package/internal-do-not-import-from-here/manifests/omnia.fx.manifest.json +1 -1
  7. package/internal-do-not-import-from-here/manifests/omnia.fx.ux.richtexteditor.manifest.json +1 -1
  8. package/internal-do-not-import-from-here/shared/models/Future.js +7 -1
  9. package/internal-do-not-import-from-here/stores/DefineStore.d.ts +28 -15
  10. package/internal-do-not-import-from-here/ux/ComponentTypings.d.ts +4 -2
  11. package/internal-do-not-import-from-here/ux/Exposes.d.ts +1 -2
  12. package/internal-do-not-import-from-here/ux/InternalDefineWebComponent.d.ts +52 -7
  13. package/internal-do-not-import-from-here/ux/VueComponentBase.d.ts +5 -11
  14. package/internal-do-not-import-from-here/ux/app/management/AppManagement.d.ts +1 -1
  15. package/internal-do-not-import-from-here/ux/app/management/tabs/instance/InstanceTab.d.ts +5 -25
  16. package/internal-do-not-import-from-here/ux/app/management/tabs/layouts/LayoutTab.d.ts +5 -25
  17. package/internal-do-not-import-from-here/ux/app/management/tabs/namingpolicies/NamingPolicyTab.d.ts +5 -25
  18. package/internal-do-not-import-from-here/ux/app/management/tabs/templates/Template.d.ts +1 -1
  19. package/internal-do-not-import-from-here/ux/app/management/tabs/templates/TemplateTab.d.ts +5 -25
  20. package/internal-do-not-import-from-here/ux/compositiontests/OptionsBlockCurrent.d.ts +24 -5
  21. package/internal-do-not-import-from-here/ux/compositiontests/stores/useNewStoreTest.d.ts +14 -6
  22. package/internal-do-not-import-from-here/ux/datetimezonepicker/DateTimeZonePicker.d.ts +1 -1
  23. package/internal-do-not-import-from-here/ux/filterengine/FilterEngineRenderer.d.ts +1 -1
  24. package/internal-do-not-import-from-here/ux/filterengine/SelectionsArea.d.ts +5 -25
  25. package/internal-do-not-import-from-here/ux/identitypicker/IdentityPicker.d.ts +1 -1
  26. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/LayoutEditorCanvas.d.ts +423 -72
  27. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/developertools/DeveloperTools copy.d.ts +1 -0
  28. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/developertools/DeveloperTools.d.ts +93 -23
  29. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/developertools/DeveloperToolsStyles.css.d.ts +0 -1
  30. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/layoutItemselector/LayoutItemSelection.d.ts +123 -24
  31. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/layoutItemselector/LayoutItemSelector.d.ts +222 -42
  32. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/BlockSettingsPanel.d.ts +0 -1
  33. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/LayoutStructure.d.ts +46 -33
  34. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/LayoutStructure_old.d.ts +33 -0
  35. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/SettingsPanel.css.d.ts +1 -3
  36. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/TemplatePreview.d.ts +70 -20
  37. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/backgroundsettings/BackgroundSettings.css.d.ts +1 -0
  38. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/{BackgroundSettings.d.ts → backgroundsettings/BackgroundSettings.d.ts} +3 -2
  39. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/{IBackgroundSettings.d.ts → backgroundsettings/IBackgroundSettings.d.ts} +2 -2
  40. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/block/Spacing.d.ts +1 -0
  41. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/blocktitle/BlockTitleSettings.d.ts +261 -48
  42. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/breakpoints/BreakPointSectionSettingsComponent.d.ts +1 -0
  43. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/{IImageBackgroundSettings.d.ts → imagebackgroundsettings/IImageBackgroundSettings.d.ts} +2 -2
  44. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/{ImageBackgroundSettings.d.ts → imagebackgroundsettings/ImageBackgroundSettings.d.ts} +2 -2
  45. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/{LayoutClipboard.css.d.ts → layoutclipboard/LayoutClipboard.css.d.ts} +1 -1
  46. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/layoutclipboard/LayoutClipboard.d.ts +46 -0
  47. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/section/Spacing.d.ts +3 -0
  48. package/internal-do-not-import-from-here/ux/layoutcanvas/index.d.ts +2 -3
  49. package/internal-do-not-import-from-here/ux/models/AdminChromeStyles.d.ts +1 -2
  50. package/internal-do-not-import-from-here/ux/oxide/appbar/Appbar.css.d.ts +2 -0
  51. package/internal-do-not-import-from-here/ux/oxide/appbar/Appbar.d.ts +207 -68
  52. package/internal-do-not-import-from-here/ux/oxide/btn/Button.d.ts +281 -106
  53. package/internal-do-not-import-from-here/ux/oxide/btntoggle/ButtonToggle.d.ts +87 -78
  54. package/internal-do-not-import-from-here/ux/oxide/card/Card.css.d.ts +3 -1
  55. package/internal-do-not-import-from-here/ux/oxide/card/Card.d.ts +100 -35
  56. package/internal-do-not-import-from-here/ux/oxide/dialog/Dialog.css.d.ts +3 -1
  57. package/internal-do-not-import-from-here/ux/oxide/dialog/Dialog.d.ts +355 -56
  58. package/internal-do-not-import-from-here/ux/oxide/expansionpanel/ExpansionPanel.css.d.ts +2 -1
  59. package/internal-do-not-import-from-here/ux/oxide/expansionpanel/ExpansionPanel.d.ts +114 -47
  60. package/internal-do-not-import-from-here/ux/oxide/expansionpanel/ExpansionPanels.d.ts +34 -51
  61. package/internal-do-not-import-from-here/ux/oxide/icon/Icon.css.d.ts +3 -5
  62. package/internal-do-not-import-from-here/ux/oxide/icon/Icon.d.ts +119 -56
  63. package/internal-do-not-import-from-here/ux/oxide/image/Image.d.ts +167 -0
  64. package/internal-do-not-import-from-here/ux/oxide/layout/Layout.css.d.ts +2 -5
  65. package/internal-do-not-import-from-here/ux/oxide/layout/Layout.d.ts +25 -39
  66. package/internal-do-not-import-from-here/ux/oxide/list/List.css.d.ts +4 -0
  67. package/internal-do-not-import-from-here/ux/oxide/list/List.d.ts +151 -43
  68. package/internal-do-not-import-from-here/ux/oxide/list/ListItem.css.d.ts +5 -0
  69. package/internal-do-not-import-from-here/ux/oxide/list/ListItem.d.ts +123 -43
  70. package/internal-do-not-import-from-here/ux/oxide/main/Main.d.ts +236 -0
  71. package/internal-do-not-import-from-here/ux/oxide/menu/Menu.css.d.ts +2 -2
  72. package/internal-do-not-import-from-here/ux/oxide/menu/Menu.d.ts +75 -58
  73. package/internal-do-not-import-from-here/ux/oxide/navigationdrawer/NavigationDrawer.d.ts +124 -43
  74. package/internal-do-not-import-from-here/ux/oxide/panel/Panel.css.d.ts +7 -1
  75. package/internal-do-not-import-from-here/ux/oxide/panel/Panel.d.ts +368 -70
  76. package/internal-do-not-import-from-here/ux/oxide/radio/Radio.d.ts +81 -64
  77. package/internal-do-not-import-from-here/ux/oxide/radio/RadioGroup.d.ts +34 -55
  78. package/internal-do-not-import-from-here/ux/oxide/select/Select.css.d.ts +11 -0
  79. package/internal-do-not-import-from-here/ux/oxide/select/Select.d.ts +273 -0
  80. package/internal-do-not-import-from-here/ux/oxide/slider/Slider.d.ts +157 -83
  81. package/internal-do-not-import-from-here/ux/oxide/snackbar/Snackbar.d.ts +135 -0
  82. package/internal-do-not-import-from-here/ux/oxide/stepper/Stepper.css.d.ts +1 -0
  83. package/internal-do-not-import-from-here/ux/oxide/stepper/Stepper.d.ts +88 -0
  84. package/internal-do-not-import-from-here/ux/oxide/stepper/StepperStep.css.d.ts +4 -0
  85. package/internal-do-not-import-from-here/ux/oxide/stepper/StepperStep.d.ts +88 -0
  86. package/internal-do-not-import-from-here/ux/oxide/switch/Switch.d.ts +61 -59
  87. package/internal-do-not-import-from-here/ux/oxide/tab/Tab.css.d.ts +3 -1
  88. package/internal-do-not-import-from-here/ux/oxide/tab/Tab.d.ts +127 -68
  89. package/internal-do-not-import-from-here/ux/oxide/tab/Tabs.css.d.ts +1 -0
  90. package/internal-do-not-import-from-here/ux/oxide/tab/Tabs.d.ts +100 -50
  91. package/internal-do-not-import-from-here/ux/oxide/text/Text.d.ts +113 -68
  92. package/internal-do-not-import-from-here/ux/oxide/textfield/TextField.css.d.ts +11 -1
  93. package/internal-do-not-import-from-here/ux/oxide/textfield/TextField.d.ts +129 -73
  94. package/internal-do-not-import-from-here/ux/oxide/toolbar/Toolbar.css.d.ts +1 -0
  95. package/internal-do-not-import-from-here/ux/oxide/toolbar/Toolbar.d.ts +16 -15
  96. package/internal-do-not-import-from-here/ux/playground_test/PlayComponent.d.ts +1 -0
  97. package/internal-do-not-import-from-here/ux/presetupwizard/PreSetupWizard.d.ts +5 -25
  98. package/internal-do-not-import-from-here/ux/richtexteditor/IRichTextEditor.d.ts +5 -4
  99. package/internal-do-not-import-from-here/ux/richtexteditor/NodeExtension.d.ts +0 -12
  100. package/internal-do-not-import-from-here/ux/richtexteditor/extensions/Alignment/AlignmentNode.d.ts +21 -9
  101. package/internal-do-not-import-from-here/ux/richtexteditor/extensions/AnchorLink/AnchorLinkNode.d.ts +11 -4
  102. package/internal-do-not-import-from-here/ux/richtexteditor/extensions/Blockquote/BlockquoteNode.d.ts +24 -17
  103. package/internal-do-not-import-from-here/ux/richtexteditor/extensions/Bold/BoldNode.d.ts +27 -19
  104. package/internal-do-not-import-from-here/ux/richtexteditor/extensions/BulletList/BulletListNode.d.ts +19 -17
  105. package/internal-do-not-import-from-here/ux/richtexteditor/extensions/Code/CodeNode.d.ts +25 -18
  106. package/internal-do-not-import-from-here/ux/richtexteditor/extensions/CodeBlock/CodeBlockNode.d.ts +43 -16
  107. package/internal-do-not-import-from-here/ux/richtexteditor/extensions/Doc/DocNode.d.ts +2 -7
  108. package/internal-do-not-import-from-here/ux/richtexteditor/extensions/EmoticonPicker/EmoticonPickerNode.d.ts +3 -9
  109. package/internal-do-not-import-from-here/ux/richtexteditor/extensions/EnterpriseGlossaryLink/nodes/EnterpriseGlossarySuggestionNode.d.ts +3 -14
  110. package/internal-do-not-import-from-here/ux/richtexteditor/extensions/EnterpriseGlossaryLink/nodes/EnterpriseSuggestionIgnore.d.ts +3 -6
  111. package/internal-do-not-import-from-here/ux/richtexteditor/extensions/EnterpriseGlossaryLink/plugins/EnterpriseGlossarySuggestion.d.ts +3 -1
  112. package/internal-do-not-import-from-here/ux/richtexteditor/extensions/ExtendedElements/Division/DivisionNode.d.ts +3 -5
  113. package/internal-do-not-import-from-here/ux/richtexteditor/extensions/ExtendedElements/ExtendedElements.d.ts +2 -3
  114. package/internal-do-not-import-from-here/ux/richtexteditor/extensions/ExtendedElements/HardBreak/HardBreakNode.d.ts +3 -14
  115. package/internal-do-not-import-from-here/ux/richtexteditor/extensions/ExtendedElements/Iframe/IframeNode.d.ts +3 -5
  116. package/internal-do-not-import-from-here/ux/richtexteditor/extensions/ExtendedElements/Img/ImgNode.d.ts +3 -8
  117. package/internal-do-not-import-from-here/ux/richtexteditor/extensions/ExtendedElements/Link/LinkNode.d.ts +3 -12
  118. package/internal-do-not-import-from-here/ux/richtexteditor/extensions/ExtendedElements/Style/StyleNode.d.ts +3 -5
  119. package/internal-do-not-import-from-here/ux/richtexteditor/extensions/ExtendedElements/TrailingParagraph/TrailingNode.d.ts +6 -11
  120. package/internal-do-not-import-from-here/ux/richtexteditor/extensions/HashTag/HashTagNode.d.ts +3 -20
  121. package/internal-do-not-import-from-here/ux/richtexteditor/extensions/HashTag/plugins/TagSuggestions.d.ts +2 -1
  122. package/internal-do-not-import-from-here/ux/richtexteditor/extensions/Heading/HeadingNode.d.ts +25 -13
  123. package/internal-do-not-import-from-here/ux/richtexteditor/extensions/HorizontalRule/HorizontalRuleNode.d.ts +15 -10
  124. package/internal-do-not-import-from-here/ux/richtexteditor/extensions/Italic/ItalicNode.d.ts +27 -19
  125. package/internal-do-not-import-from-here/ux/richtexteditor/extensions/ListItem/ListItemNode.d.ts +5 -11
  126. package/internal-do-not-import-from-here/ux/richtexteditor/extensions/ListItem/index.d.ts +2 -0
  127. package/internal-do-not-import-from-here/ux/richtexteditor/extensions/MediaPicker/nodes/MediaImageNode.d.ts +3 -8
  128. package/internal-do-not-import-from-here/ux/richtexteditor/extensions/MediaPicker/nodes/MediaPickerNode.d.ts +3 -14
  129. package/internal-do-not-import-from-here/ux/richtexteditor/extensions/MediaPicker/nodes/ScalableVectorGraphics.d.ts +3 -5
  130. package/internal-do-not-import-from-here/ux/richtexteditor/extensions/MediaPicker/nodes/ScalableVectorGraphicsColorMatrix.d.ts +3 -5
  131. package/internal-do-not-import-from-here/ux/richtexteditor/extensions/MediaPicker/nodes/ScalableVectorGraphicsComponentTransfer.d.ts +3 -5
  132. package/internal-do-not-import-from-here/ux/richtexteditor/extensions/MediaPicker/nodes/ScalableVectorGraphicsDefinition.d.ts +3 -6
  133. package/internal-do-not-import-from-here/ux/richtexteditor/extensions/MediaPicker/nodes/ScalableVectorGraphicsFilter.d.ts +3 -5
  134. package/internal-do-not-import-from-here/ux/richtexteditor/extensions/MediaPicker/nodes/ScalableVectorGraphicsFuncB.d.ts +3 -5
  135. package/internal-do-not-import-from-here/ux/richtexteditor/extensions/MediaPicker/nodes/ScalableVectorGraphicsFuncG.d.ts +3 -5
  136. package/internal-do-not-import-from-here/ux/richtexteditor/extensions/MediaPicker/nodes/ScalableVectorGraphicsFuncR.d.ts +3 -5
  137. package/internal-do-not-import-from-here/ux/richtexteditor/extensions/MediaPicker/nodes/ScalableVectorGraphicsImage.d.ts +3 -5
  138. package/internal-do-not-import-from-here/ux/richtexteditor/extensions/Mention/MentionNode.d.ts +15 -36
  139. package/internal-do-not-import-from-here/ux/richtexteditor/extensions/Mention/plugins/Suggestions.d.ts +2 -1
  140. package/internal-do-not-import-from-here/ux/richtexteditor/extensions/OrderedList/OrderedListNode.d.ts +19 -17
  141. package/internal-do-not-import-from-here/ux/richtexteditor/extensions/Paragraph/ParagraphNode.d.ts +15 -7
  142. package/internal-do-not-import-from-here/ux/richtexteditor/extensions/Paragraph/index.d.ts +2 -1
  143. package/internal-do-not-import-from-here/ux/richtexteditor/extensions/Placeholder/PlaceHolderNode.d.ts +17 -0
  144. package/internal-do-not-import-from-here/ux/richtexteditor/extensions/Placeholder/index.d.ts +2 -0
  145. package/internal-do-not-import-from-here/ux/richtexteditor/extensions/RemoveFormatting/RemoveFormatingNode.d.ts +3 -6
  146. package/internal-do-not-import-from-here/ux/richtexteditor/extensions/Strike/StrikeNode.d.ts +25 -19
  147. package/internal-do-not-import-from-here/ux/richtexteditor/extensions/Table/TableNode.d.ts +55 -42
  148. package/internal-do-not-import-from-here/ux/richtexteditor/extensions/Table/nodes/TableCell.d.ts +5 -4
  149. package/internal-do-not-import-from-here/ux/richtexteditor/extensions/Table/nodes/TableHeader.d.ts +5 -4
  150. package/internal-do-not-import-from-here/ux/richtexteditor/extensions/Table/nodes/TableRow.d.ts +5 -4
  151. package/internal-do-not-import-from-here/ux/richtexteditor/extensions/Table/nodes/Ulti.d.ts +2 -1
  152. package/internal-do-not-import-from-here/ux/richtexteditor/extensions/Table/plugins/TableResizePlugin.d.ts +1 -5
  153. package/internal-do-not-import-from-here/ux/richtexteditor/extensions/Text/TextNode.d.ts +3 -7
  154. package/internal-do-not-import-from-here/ux/richtexteditor/extensions/Text/index.d.ts +2 -1
  155. package/internal-do-not-import-from-here/ux/richtexteditor/extensions/TextColor/TextColorNode.d.ts +5 -14
  156. package/internal-do-not-import-from-here/ux/richtexteditor/extensions/TextStyle/TextStyleNode.d.ts +16 -0
  157. package/internal-do-not-import-from-here/ux/richtexteditor/extensions/TextStyle/index.d.ts +2 -0
  158. package/internal-do-not-import-from-here/ux/richtexteditor/extensions/TodoList/TodoListNode.d.ts +3 -12
  159. package/internal-do-not-import-from-here/ux/richtexteditor/extensions/TodoList/nodes/TodoItem.d.ts +5 -17
  160. package/internal-do-not-import-from-here/ux/richtexteditor/extensions/Underline/UnderlineNode.d.ts +23 -13
  161. package/internal-do-not-import-from-here/ux/richtexteditor/index.d.ts +1 -3
  162. package/internal-do-not-import-from-here/ux/spacingpicker/{SpacingPicker.css.d.ts → SpacingPicker2.css.d.ts} +7 -9
  163. package/internal-do-not-import-from-here/ux/spacingpicker/SpacingPicker2.d.ts +208 -104
  164. package/internal-do-not-import-from-here/ux/statusmessageoverlay/StatusMessageOverlay.d.ts +5 -1
  165. package/internal-do-not-import-from-here/ux/theming/InternalTheming.d.ts +7 -7
  166. package/internal-do-not-import-from-here/ux/theming-v2/ColorManager.d.ts +3 -0
  167. package/internal-do-not-import-from-here/ux/theming-v2/ColorSchemaStore.d.ts +3 -0
  168. package/internal-do-not-import-from-here/ux/theming-v2/colorschemapicker/ColorSchemaPicker.css.d.ts +8 -0
  169. package/internal-do-not-import-from-here/ux/theming-v2/colorschemapicker/ColorSchemaPicker.d.ts +138 -0
  170. package/internal-do-not-import-from-here/ux/theming-v2/styling/UseComponentStyling.d.ts +1 -0
  171. package/internal-do-not-import-from-here/ux/theming-v2/themedefinitionpicker/ThemeDefinitionPicker.d.ts +56 -32
  172. package/internal-do-not-import-from-here/ux/theming-v2/themeeditor/ThemeEditor.css.d.ts +6 -0
  173. package/internal-do-not-import-from-here/ux/theming-v2/themeeditor/ThemeEditor.d.ts +57 -17
  174. package/internal-do-not-import-from-here/ux/theming-v2/themeeditor/components/ColorSelector.css.d.ts +6 -0
  175. package/internal-do-not-import-from-here/ux/theming-v2/themeeditor/components/ComponentsViewer.d.ts +46 -0
  176. package/internal-do-not-import-from-here/ux/theming-v2/themeeditor/components/FxViewer.d.ts +46 -0
  177. package/internal-do-not-import-from-here/ux/theming-v2/themeeditor/components/ThemeViewerStyles.d.ts +0 -1
  178. package/internal-do-not-import-from-here/ux/theming-v2/themeeditor/store/ThemeEditorStore.d.ts +0 -2
  179. package/internal-do-not-import-from-here/ux/theming-v2/themes/Colors.d.ts +5 -0
  180. package/internal-do-not-import-from-here/ux/theming-v2/themes/Themes.d.ts +1 -1
  181. package/internal-do-not-import-from-here/ux/use/UseComponentSetup.d.ts +9 -9
  182. package/internal-do-not-import-from-here/ux/use/UseIcon.d.ts +9 -1
  183. package/internal-do-not-import-from-here/ux/usertypelayout/UserTypeLayoutRenderer.d.ts +1 -1
  184. package/internal-do-not-import-from-here/ux/velcron/editor/components/ContainerRenderer.d.ts +1 -1
  185. package/internal-do-not-import-from-here/ux/versionedlayout/editor/VersionedLayoutEditor.d.ts +1 -1
  186. package/internal-do-not-import-from-here/ux/versionedlayout/renderer/VersionedLayoutRenderer.d.ts +1 -1
  187. package/internal-do-not-import-from-here/wcdefinitions.json +1 -1
  188. package/internal-do-not-import-from-here/wctypings.d.ts +26 -0
  189. package/package.json +7 -19
  190. package/internal-do-not-import-from-here/ux/admin/chrome/AdminChromeOld.d.ts +0 -61
  191. package/internal-do-not-import-from-here/ux/confirmdialog/VueConfirmDialog.css.d.ts +0 -6
  192. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/ILayoutEditorCanvas.d.ts +0 -21
  193. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/developertools/IDeveloperTools.d.ts +0 -18
  194. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/BackgroundSettings.css.d.ts +0 -3
  195. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/ILayoutClipboard.d.ts +0 -19
  196. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/LayoutClipboard.d.ts +0 -41
  197. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/blocktitle/IBlockTitleSettings.d.ts +0 -21
  198. package/internal-do-not-import-from-here/ux/richtexteditor/EditorExtension.d.ts +0 -8
  199. package/internal-do-not-import-from-here/ux/richtexteditor/MarkExtension.d.ts +0 -12
  200. package/internal-do-not-import-from-here/ux/spacingpicker/ISpacingPicker.d.ts +0 -28
  201. package/internal-do-not-import-from-here/ux/spacingpicker/SpacingPicker.d.ts +0 -44
  202. package/internal-do-not-import-from-here/ux/spacingpicker/index.d.ts +0 -1
@@ -3,26 +3,46 @@ declare const _default: {
3
3
  new (...args: any[]): {
4
4
  $: import("vue").ComponentInternalInstance;
5
5
  $data: {};
6
- $props: Partial<{}> & Omit<Readonly<import("vue").ExtractPropTypes<{
7
- location: {
8
- type: import("vue").PropType<locationType>;
6
+ $props: Partial<{
7
+ container?: any;
8
+ colorSchemaType?: any;
9
+ }> & Omit<Readonly<import("vue").ExtractPropTypes<{
10
+ variant: {
11
+ type: import("vue").PropType<"AdminNavigation">;
12
+ required: boolean;
13
+ default?: "AdminNavigation";
14
+ } & {
15
+ type: import("vue").PropType<"AdminNavigation">;
16
+ required: boolean;
17
+ default?: "AdminNavigation";
9
18
  };
10
19
  overrides: {
11
20
  type: import("vue").PropType<object>;
12
- };
13
- class: {
14
- type: import("vue").PropType<String | String[]>;
15
21
  required: boolean;
22
+ default?: object;
23
+ } & {
24
+ type: import("vue").PropType<object>;
25
+ required: boolean;
26
+ default?: object;
16
27
  };
17
- colorSchemaType: {
18
- type: import("vue").PropType<import("@omnia/fx-models").ColorSchemaTypes>;
28
+ location: {
29
+ type: import("vue").PropType<locationType>;
19
30
  required: boolean;
31
+ default?: locationType;
32
+ } & {
33
+ type: import("vue").PropType<locationType>;
34
+ required: boolean;
35
+ default?: locationType;
20
36
  };
21
- container: {
22
- type: import("vue").PropType<boolean>;
37
+ "v-model": import("vue").PropType<boolean>;
38
+ modelValue: import("vue").PropType<boolean>;
39
+ class: {
40
+ type: import("vue").PropType<String | String[]>;
23
41
  required: boolean;
24
42
  };
25
- }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>;
43
+ colorSchemaType?: any;
44
+ container?: any;
45
+ }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "container" | "colorSchemaType">;
26
46
  $attrs: {
27
47
  [x: string]: unknown;
28
48
  };
@@ -37,25 +57,45 @@ declare const _default: {
37
57
  $emit: (event: string, ...args: any[]) => void;
38
58
  $el: any;
39
59
  $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
40
- location: {
41
- type: import("vue").PropType<locationType>;
60
+ variant: {
61
+ type: import("vue").PropType<"AdminNavigation">;
62
+ required: boolean;
63
+ default?: "AdminNavigation";
64
+ } & {
65
+ type: import("vue").PropType<"AdminNavigation">;
66
+ required: boolean;
67
+ default?: "AdminNavigation";
42
68
  };
43
69
  overrides: {
44
70
  type: import("vue").PropType<object>;
45
- };
46
- class: {
47
- type: import("vue").PropType<String | String[]>;
48
71
  required: boolean;
72
+ default?: object;
73
+ } & {
74
+ type: import("vue").PropType<object>;
75
+ required: boolean;
76
+ default?: object;
49
77
  };
50
- colorSchemaType: {
51
- type: import("vue").PropType<import("@omnia/fx-models").ColorSchemaTypes>;
78
+ location: {
79
+ type: import("vue").PropType<locationType>;
52
80
  required: boolean;
81
+ default?: locationType;
82
+ } & {
83
+ type: import("vue").PropType<locationType>;
84
+ required: boolean;
85
+ default?: locationType;
53
86
  };
54
- container: {
55
- type: import("vue").PropType<boolean>;
87
+ "v-model": import("vue").PropType<boolean>;
88
+ modelValue: import("vue").PropType<boolean>;
89
+ class: {
90
+ type: import("vue").PropType<String | String[]>;
56
91
  required: boolean;
57
92
  };
58
- }>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string> & {
93
+ colorSchemaType?: any;
94
+ container?: any;
95
+ }>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
96
+ container?: any;
97
+ colorSchemaType?: any;
98
+ }, {}, string> & {
59
99
  beforeCreate?: (() => void) | (() => void)[];
60
100
  created?: (() => void) | (() => void)[];
61
101
  beforeMount?: (() => void) | (() => void)[];
@@ -76,53 +116,94 @@ declare const _default: {
76
116
  $nextTick: typeof import("vue").nextTick;
77
117
  $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;
78
118
  } & Readonly<import("vue").ExtractPropTypes<{
79
- location: {
80
- type: import("vue").PropType<locationType>;
119
+ variant: {
120
+ type: import("vue").PropType<"AdminNavigation">;
121
+ required: boolean;
122
+ default?: "AdminNavigation";
123
+ } & {
124
+ type: import("vue").PropType<"AdminNavigation">;
125
+ required: boolean;
126
+ default?: "AdminNavigation";
81
127
  };
82
128
  overrides: {
83
129
  type: import("vue").PropType<object>;
84
- };
85
- class: {
86
- type: import("vue").PropType<String | String[]>;
87
130
  required: boolean;
131
+ default?: object;
132
+ } & {
133
+ type: import("vue").PropType<object>;
134
+ required: boolean;
135
+ default?: object;
88
136
  };
89
- colorSchemaType: {
90
- type: import("vue").PropType<import("@omnia/fx-models").ColorSchemaTypes>;
137
+ location: {
138
+ type: import("vue").PropType<locationType>;
91
139
  required: boolean;
140
+ default?: locationType;
141
+ } & {
142
+ type: import("vue").PropType<locationType>;
143
+ required: boolean;
144
+ default?: locationType;
92
145
  };
93
- container: {
94
- type: import("vue").PropType<boolean>;
146
+ "v-model": import("vue").PropType<boolean>;
147
+ modelValue: import("vue").PropType<boolean>;
148
+ class: {
149
+ type: import("vue").PropType<String | String[]>;
95
150
  required: boolean;
96
151
  };
152
+ colorSchemaType?: any;
153
+ container?: any;
97
154
  }>> & import("vue").ShallowUnwrapRef<() => JSX.Element> & {} & import("vue").ComponentCustomProperties & {};
98
155
  __isFragment?: never;
99
156
  __isTeleport?: never;
100
157
  __isSuspense?: never;
101
158
  } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
102
- location: {
103
- type: import("vue").PropType<locationType>;
159
+ variant: {
160
+ type: import("vue").PropType<"AdminNavigation">;
161
+ required: boolean;
162
+ default?: "AdminNavigation";
163
+ } & {
164
+ type: import("vue").PropType<"AdminNavigation">;
165
+ required: boolean;
166
+ default?: "AdminNavigation";
104
167
  };
105
168
  overrides: {
106
169
  type: import("vue").PropType<object>;
107
- };
108
- class: {
109
- type: import("vue").PropType<String | String[]>;
110
170
  required: boolean;
171
+ default?: object;
172
+ } & {
173
+ type: import("vue").PropType<object>;
174
+ required: boolean;
175
+ default?: object;
111
176
  };
112
- colorSchemaType: {
113
- type: import("vue").PropType<import("@omnia/fx-models").ColorSchemaTypes>;
177
+ location: {
178
+ type: import("vue").PropType<locationType>;
114
179
  required: boolean;
180
+ default?: locationType;
181
+ } & {
182
+ type: import("vue").PropType<locationType>;
183
+ required: boolean;
184
+ default?: locationType;
115
185
  };
116
- container: {
117
- type: import("vue").PropType<boolean>;
186
+ "v-model": import("vue").PropType<boolean>;
187
+ modelValue: import("vue").PropType<boolean>;
188
+ class: {
189
+ type: import("vue").PropType<String | String[]>;
118
190
  required: boolean;
119
191
  };
120
- }>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
121
- propsDefinition: Readonly<{} & {
192
+ colorSchemaType?: any;
193
+ container?: any;
194
+ }>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
195
+ container?: any;
196
+ colorSchemaType?: any;
197
+ }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
198
+ propsDefinition: Readonly<{
199
+ container?: any;
200
+ colorSchemaType?: any;
201
+ } & {
122
202
  class?: String | String[];
123
- container?: boolean;
203
+ "v-model"?: boolean;
204
+ modelValue?: boolean;
205
+ variant?: "AdminNavigation";
124
206
  location?: locationType;
125
- colorSchemaType?: import("@omnia/fx-models").ColorSchemaTypes;
126
207
  overrides?: object;
127
208
  }>;
128
209
  };
@@ -1,4 +1,10 @@
1
+ export type PanelVariant = "default" | "dialog" | "tab" | "section" | "toolbar";
2
+ export type PanelDirection = "row" | "column";
3
+ export type HorizontalAlignment = "left" | "center" | "right";
4
+ export type VerticalAlignment = "top" | "center" | "bottom";
1
5
  export declare const PanelStyles: {
2
6
  templateTitle: string;
3
- panelWrapper: (hide: boolean) => string;
7
+ panelHoverBackground: (dark: boolean) => string;
8
+ panelWrapper: (hide: boolean, variant: PanelVariant) => string;
9
+ contentWrapper: (flexDirection: PanelDirection, wrap: boolean, alignX: HorizontalAlignment, alignY: VerticalAlignment) => string;
4
10
  };