@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
@@ -0,0 +1,167 @@
1
+ declare const _default: {
2
+ new (...args: any[]): {
3
+ $: import("vue").ComponentInternalInstance;
4
+ $data: {};
5
+ $props: Partial<{}> & Omit<Readonly<import("vue").ExtractPropTypes<{
6
+ src: {
7
+ type: import("vue").PropType<string>;
8
+ required: boolean;
9
+ default?: string;
10
+ } & {
11
+ type: import("vue").PropType<string>;
12
+ required: boolean;
13
+ default?: string;
14
+ };
15
+ position: {
16
+ type: import("vue").PropType<string>;
17
+ required: boolean;
18
+ default?: string;
19
+ } & {
20
+ type: import("vue").PropType<string>;
21
+ required: boolean;
22
+ default?: string;
23
+ };
24
+ "aspect-ratio": {
25
+ type: import("vue").PropType<"landscape">;
26
+ required: boolean;
27
+ default?: "landscape";
28
+ };
29
+ aspectRatio: {
30
+ type: import("vue").PropType<"landscape">;
31
+ required: boolean;
32
+ default?: "landscape";
33
+ };
34
+ }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>;
35
+ $attrs: {
36
+ [x: string]: unknown;
37
+ };
38
+ $refs: {
39
+ [x: string]: unknown;
40
+ };
41
+ $slots: Readonly<{
42
+ [name: string]: import("vue").Slot;
43
+ }>;
44
+ $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
45
+ $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
46
+ $emit: (event: string, ...args: any[]) => void;
47
+ $el: any;
48
+ $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
49
+ src: {
50
+ type: import("vue").PropType<string>;
51
+ required: boolean;
52
+ default?: string;
53
+ } & {
54
+ type: import("vue").PropType<string>;
55
+ required: boolean;
56
+ default?: string;
57
+ };
58
+ position: {
59
+ type: import("vue").PropType<string>;
60
+ required: boolean;
61
+ default?: string;
62
+ } & {
63
+ type: import("vue").PropType<string>;
64
+ required: boolean;
65
+ default?: string;
66
+ };
67
+ "aspect-ratio": {
68
+ type: import("vue").PropType<"landscape">;
69
+ required: boolean;
70
+ default?: "landscape";
71
+ };
72
+ aspectRatio: {
73
+ type: import("vue").PropType<"landscape">;
74
+ required: boolean;
75
+ default?: "landscape";
76
+ };
77
+ }>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string> & {
78
+ beforeCreate?: (() => void) | (() => void)[];
79
+ created?: (() => void) | (() => void)[];
80
+ beforeMount?: (() => void) | (() => void)[];
81
+ mounted?: (() => void) | (() => void)[];
82
+ beforeUpdate?: (() => void) | (() => void)[];
83
+ updated?: (() => void) | (() => void)[];
84
+ activated?: (() => void) | (() => void)[];
85
+ deactivated?: (() => void) | (() => void)[];
86
+ beforeDestroy?: (() => void) | (() => void)[];
87
+ beforeUnmount?: (() => void) | (() => void)[];
88
+ destroyed?: (() => void) | (() => void)[];
89
+ unmounted?: (() => void) | (() => void)[];
90
+ renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
91
+ renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
92
+ 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)[];
93
+ };
94
+ $forceUpdate: () => void;
95
+ $nextTick: typeof import("vue").nextTick;
96
+ $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;
97
+ } & Readonly<import("vue").ExtractPropTypes<{
98
+ src: {
99
+ type: import("vue").PropType<string>;
100
+ required: boolean;
101
+ default?: string;
102
+ } & {
103
+ type: import("vue").PropType<string>;
104
+ required: boolean;
105
+ default?: string;
106
+ };
107
+ position: {
108
+ type: import("vue").PropType<string>;
109
+ required: boolean;
110
+ default?: string;
111
+ } & {
112
+ type: import("vue").PropType<string>;
113
+ required: boolean;
114
+ default?: string;
115
+ };
116
+ "aspect-ratio": {
117
+ type: import("vue").PropType<"landscape">;
118
+ required: boolean;
119
+ default?: "landscape";
120
+ };
121
+ aspectRatio: {
122
+ type: import("vue").PropType<"landscape">;
123
+ required: boolean;
124
+ default?: "landscape";
125
+ };
126
+ }>> & import("vue").ShallowUnwrapRef<() => JSX.Element> & {} & import("vue").ComponentCustomProperties & {};
127
+ __isFragment?: never;
128
+ __isTeleport?: never;
129
+ __isSuspense?: never;
130
+ } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
131
+ src: {
132
+ type: import("vue").PropType<string>;
133
+ required: boolean;
134
+ default?: string;
135
+ } & {
136
+ type: import("vue").PropType<string>;
137
+ required: boolean;
138
+ default?: string;
139
+ };
140
+ position: {
141
+ type: import("vue").PropType<string>;
142
+ required: boolean;
143
+ default?: string;
144
+ } & {
145
+ type: import("vue").PropType<string>;
146
+ required: boolean;
147
+ default?: string;
148
+ };
149
+ "aspect-ratio": {
150
+ type: import("vue").PropType<"landscape">;
151
+ required: boolean;
152
+ default?: "landscape";
153
+ };
154
+ aspectRatio: {
155
+ type: import("vue").PropType<"landscape">;
156
+ required: boolean;
157
+ default?: "landscape";
158
+ };
159
+ }>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
160
+ propsDefinition: Readonly<{} & {
161
+ aspectRatio?: "landscape";
162
+ position?: string;
163
+ "aspect-ratio"?: "landscape";
164
+ src?: string;
165
+ }>;
166
+ };
167
+ export default _default;
@@ -1,6 +1,3 @@
1
- /**
2
- * Styles for the CommandPalette component
3
- */
4
- export declare const buttonStyles: {
5
- wrapper: (background: string, text: string, iconColor: string) => string;
1
+ export declare const layoutStyles: {
2
+ wrapper: string;
6
3
  };
@@ -2,20 +2,17 @@ declare const _default: {
2
2
  new (...args: any[]): {
3
3
  $: import("vue").ComponentInternalInstance;
4
4
  $data: {};
5
- $props: Partial<{}> & Omit<Readonly<import("vue").ExtractPropTypes<{
5
+ $props: Partial<{
6
+ container?: any;
7
+ colorSchemaType?: any;
8
+ }> & Omit<Readonly<import("vue").ExtractPropTypes<{
6
9
  class: {
7
10
  type: import("vue").PropType<String | String[]>;
8
11
  required: boolean;
9
12
  };
10
- colorSchemaType: {
11
- type: import("vue").PropType<import("@omnia/fx-models").ColorSchemaTypes>;
12
- required: boolean;
13
- };
14
- container: {
15
- type: import("vue").PropType<boolean>;
16
- required: boolean;
17
- };
18
- }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>;
13
+ colorSchemaType?: any;
14
+ container?: any;
15
+ }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "container" | "colorSchemaType">;
19
16
  $attrs: {
20
17
  [x: string]: unknown;
21
18
  };
@@ -34,15 +31,12 @@ declare const _default: {
34
31
  type: import("vue").PropType<String | String[]>;
35
32
  required: boolean;
36
33
  };
37
- colorSchemaType: {
38
- type: import("vue").PropType<import("@omnia/fx-models").ColorSchemaTypes>;
39
- required: boolean;
40
- };
41
- container: {
42
- type: import("vue").PropType<boolean>;
43
- required: boolean;
44
- };
45
- }>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string> & {
34
+ colorSchemaType?: any;
35
+ container?: any;
36
+ }>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
37
+ container?: any;
38
+ colorSchemaType?: any;
39
+ }, {}, string> & {
46
40
  beforeCreate?: (() => void) | (() => void)[];
47
41
  created?: (() => void) | (() => void)[];
48
42
  beforeMount?: (() => void) | (() => void)[];
@@ -67,14 +61,8 @@ declare const _default: {
67
61
  type: import("vue").PropType<String | String[]>;
68
62
  required: boolean;
69
63
  };
70
- colorSchemaType: {
71
- type: import("vue").PropType<import("@omnia/fx-models").ColorSchemaTypes>;
72
- required: boolean;
73
- };
74
- container: {
75
- type: import("vue").PropType<boolean>;
76
- required: boolean;
77
- };
64
+ colorSchemaType?: any;
65
+ container?: any;
78
66
  }>> & import("vue").ShallowUnwrapRef<() => JSX.Element> & {} & import("vue").ComponentCustomProperties & {};
79
67
  __isFragment?: never;
80
68
  __isTeleport?: never;
@@ -84,19 +72,17 @@ declare const _default: {
84
72
  type: import("vue").PropType<String | String[]>;
85
73
  required: boolean;
86
74
  };
87
- colorSchemaType: {
88
- type: import("vue").PropType<import("@omnia/fx-models").ColorSchemaTypes>;
89
- required: boolean;
90
- };
91
- container: {
92
- type: import("vue").PropType<boolean>;
93
- required: boolean;
94
- };
95
- }>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
96
- propsDefinition: Readonly<{} & {
75
+ colorSchemaType?: any;
76
+ container?: any;
77
+ }>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
78
+ container?: any;
79
+ colorSchemaType?: any;
80
+ }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
81
+ propsDefinition: Readonly<{
82
+ container?: any;
83
+ colorSchemaType?: any;
84
+ } & {
97
85
  class?: String | String[];
98
- container?: boolean;
99
- colorSchemaType?: import("@omnia/fx-models").ColorSchemaTypes;
100
86
  }>;
101
87
  };
102
88
  export default _default;
@@ -0,0 +1,4 @@
1
+ export type ListType = "navigation";
2
+ export declare const listStyles: {
3
+ wrapper: (listType: ListType) => string;
4
+ };
@@ -3,26 +3,53 @@ 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
- lines: {
8
- type: import("vue").PropType<lineType>;
6
+ $props: Partial<{
7
+ container?: any;
8
+ colorSchemaType?: any;
9
+ }> & Omit<Readonly<import("vue").ExtractPropTypes<{
10
+ variant: {
11
+ type: import("vue").PropType<"navigation">;
12
+ required: boolean;
13
+ default?: "navigation";
14
+ } & {
15
+ type: import("vue").PropType<"navigation">;
16
+ required: boolean;
17
+ default?: "navigation";
9
18
  };
10
- nav: {
19
+ toned: {
11
20
  type: import("vue").PropType<boolean>;
21
+ required: boolean;
22
+ default?: boolean;
23
+ } & {
24
+ type: import("vue").PropType<boolean>;
25
+ required: boolean;
26
+ default?: boolean;
12
27
  };
13
- class: {
14
- type: import("vue").PropType<String | String[]>;
28
+ nav: {
29
+ type: import("vue").PropType<boolean>;
30
+ required: boolean;
31
+ default?: boolean;
32
+ } & {
33
+ type: import("vue").PropType<boolean>;
15
34
  required: boolean;
35
+ default?: boolean;
16
36
  };
17
- colorSchemaType: {
18
- type: import("vue").PropType<import("@omnia/fx-models").ColorSchemaTypes>;
37
+ lines: {
38
+ type: import("vue").PropType<lineType>;
19
39
  required: boolean;
40
+ default?: lineType;
41
+ } & {
42
+ type: import("vue").PropType<lineType>;
43
+ required: boolean;
44
+ default?: lineType;
20
45
  };
21
- container: {
22
- type: import("vue").PropType<boolean>;
46
+ class: {
47
+ type: import("vue").PropType<String | String[]>;
23
48
  required: boolean;
24
49
  };
25
- }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>;
50
+ colorSchemaType?: any;
51
+ container?: any;
52
+ }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "container" | "colorSchemaType">;
26
53
  $attrs: {
27
54
  [x: string]: unknown;
28
55
  };
@@ -37,25 +64,52 @@ declare const _default: {
37
64
  $emit: (event: string, ...args: any[]) => void;
38
65
  $el: any;
39
66
  $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
40
- lines: {
41
- type: import("vue").PropType<lineType>;
67
+ variant: {
68
+ type: import("vue").PropType<"navigation">;
69
+ required: boolean;
70
+ default?: "navigation";
71
+ } & {
72
+ type: import("vue").PropType<"navigation">;
73
+ required: boolean;
74
+ default?: "navigation";
42
75
  };
43
- nav: {
76
+ toned: {
44
77
  type: import("vue").PropType<boolean>;
78
+ required: boolean;
79
+ default?: boolean;
80
+ } & {
81
+ type: import("vue").PropType<boolean>;
82
+ required: boolean;
83
+ default?: boolean;
45
84
  };
46
- class: {
47
- type: import("vue").PropType<String | String[]>;
85
+ nav: {
86
+ type: import("vue").PropType<boolean>;
87
+ required: boolean;
88
+ default?: boolean;
89
+ } & {
90
+ type: import("vue").PropType<boolean>;
48
91
  required: boolean;
92
+ default?: boolean;
49
93
  };
50
- colorSchemaType: {
51
- type: import("vue").PropType<import("@omnia/fx-models").ColorSchemaTypes>;
94
+ lines: {
95
+ type: import("vue").PropType<lineType>;
52
96
  required: boolean;
97
+ default?: lineType;
98
+ } & {
99
+ type: import("vue").PropType<lineType>;
100
+ required: boolean;
101
+ default?: lineType;
53
102
  };
54
- container: {
55
- type: import("vue").PropType<boolean>;
103
+ class: {
104
+ type: import("vue").PropType<String | String[]>;
56
105
  required: boolean;
57
106
  };
58
- }>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string> & {
107
+ colorSchemaType?: any;
108
+ container?: any;
109
+ }>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
110
+ container?: any;
111
+ colorSchemaType?: any;
112
+ }, {}, string> & {
59
113
  beforeCreate?: (() => void) | (() => void)[];
60
114
  created?: (() => void) | (() => void)[];
61
115
  beforeMount?: (() => void) | (() => void)[];
@@ -76,54 +130,108 @@ declare const _default: {
76
130
  $nextTick: typeof import("vue").nextTick;
77
131
  $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
132
  } & Readonly<import("vue").ExtractPropTypes<{
79
- lines: {
80
- type: import("vue").PropType<lineType>;
133
+ variant: {
134
+ type: import("vue").PropType<"navigation">;
135
+ required: boolean;
136
+ default?: "navigation";
137
+ } & {
138
+ type: import("vue").PropType<"navigation">;
139
+ required: boolean;
140
+ default?: "navigation";
81
141
  };
82
- nav: {
142
+ toned: {
83
143
  type: import("vue").PropType<boolean>;
144
+ required: boolean;
145
+ default?: boolean;
146
+ } & {
147
+ type: import("vue").PropType<boolean>;
148
+ required: boolean;
149
+ default?: boolean;
84
150
  };
85
- class: {
86
- type: import("vue").PropType<String | String[]>;
151
+ nav: {
152
+ type: import("vue").PropType<boolean>;
153
+ required: boolean;
154
+ default?: boolean;
155
+ } & {
156
+ type: import("vue").PropType<boolean>;
87
157
  required: boolean;
158
+ default?: boolean;
88
159
  };
89
- colorSchemaType: {
90
- type: import("vue").PropType<import("@omnia/fx-models").ColorSchemaTypes>;
160
+ lines: {
161
+ type: import("vue").PropType<lineType>;
91
162
  required: boolean;
163
+ default?: lineType;
164
+ } & {
165
+ type: import("vue").PropType<lineType>;
166
+ required: boolean;
167
+ default?: lineType;
92
168
  };
93
- container: {
94
- type: import("vue").PropType<boolean>;
169
+ class: {
170
+ type: import("vue").PropType<String | String[]>;
95
171
  required: boolean;
96
172
  };
173
+ colorSchemaType?: any;
174
+ container?: any;
97
175
  }>> & import("vue").ShallowUnwrapRef<() => JSX.Element> & {} & import("vue").ComponentCustomProperties & {};
98
176
  __isFragment?: never;
99
177
  __isTeleport?: never;
100
178
  __isSuspense?: never;
101
179
  } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
102
- lines: {
103
- type: import("vue").PropType<lineType>;
180
+ variant: {
181
+ type: import("vue").PropType<"navigation">;
182
+ required: boolean;
183
+ default?: "navigation";
184
+ } & {
185
+ type: import("vue").PropType<"navigation">;
186
+ required: boolean;
187
+ default?: "navigation";
104
188
  };
105
- nav: {
189
+ toned: {
106
190
  type: import("vue").PropType<boolean>;
191
+ required: boolean;
192
+ default?: boolean;
193
+ } & {
194
+ type: import("vue").PropType<boolean>;
195
+ required: boolean;
196
+ default?: boolean;
107
197
  };
108
- class: {
109
- type: import("vue").PropType<String | String[]>;
198
+ nav: {
199
+ type: import("vue").PropType<boolean>;
200
+ required: boolean;
201
+ default?: boolean;
202
+ } & {
203
+ type: import("vue").PropType<boolean>;
110
204
  required: boolean;
205
+ default?: boolean;
111
206
  };
112
- colorSchemaType: {
113
- type: import("vue").PropType<import("@omnia/fx-models").ColorSchemaTypes>;
207
+ lines: {
208
+ type: import("vue").PropType<lineType>;
114
209
  required: boolean;
210
+ default?: lineType;
211
+ } & {
212
+ type: import("vue").PropType<lineType>;
213
+ required: boolean;
214
+ default?: lineType;
115
215
  };
116
- container: {
117
- type: import("vue").PropType<boolean>;
216
+ class: {
217
+ type: import("vue").PropType<String | String[]>;
118
218
  required: boolean;
119
219
  };
120
- }>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
121
- propsDefinition: Readonly<{} & {
220
+ colorSchemaType?: any;
221
+ container?: any;
222
+ }>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
223
+ container?: any;
224
+ colorSchemaType?: any;
225
+ }, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
226
+ propsDefinition: Readonly<{
227
+ container?: any;
228
+ colorSchemaType?: any;
229
+ } & {
122
230
  nav?: boolean;
123
231
  class?: String | String[];
124
- container?: boolean;
232
+ variant?: "navigation";
125
233
  lines?: lineType;
126
- colorSchemaType?: import("@omnia/fx-models").ColorSchemaTypes;
234
+ toned?: boolean;
127
235
  }>;
128
236
  };
129
237
  export default _default;
@@ -0,0 +1,5 @@
1
+ export declare const ListItemStyles: {
2
+ wrapper: (iconOnly: boolean) => string;
3
+ selectedItem: (color: string) => string;
4
+ hoverStyle: (dark: boolean) => string;
5
+ };