@omnia/fx 8.0.87-dev → 8.0.88-dev
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/internal-do-not-import-from-here/ux/DefineVueTypings.d.ts +8 -4
- package/internal-do-not-import-from-here/ux/Exposes.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/InternalDefineComponent.d.ts +12 -7
- package/internal-do-not-import-from-here/ux/editorchrome/action_toolbar/ActionToolbar.d.ts +18 -18
- package/internal-do-not-import-from-here/ux/editorchrome/action_toolbar/DisplaySettingsToolbar.d.ts +18 -18
- package/internal-do-not-import-from-here/ux/editorchrome/stores/EditorChromeStore.d.ts +1 -15
- package/internal-do-not-import-from-here/ux/editorchrome/stores/EditorSettingsStore.d.ts +16 -1
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/LayoutEditorCanvas.d.ts +0 -9
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/sizecontainer/SizeContainer.css.d.ts +4 -0
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/sizecontainer/SizeContainer.d.ts +93 -0
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/sizecontainer/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/sizecontainer/store/SizeContainerStore.d.ts +40 -0
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/sizecontainer/store/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/layoutcanvas/stores/LayoutCanvasStore.d.ts +44 -4
- package/internal-do-not-import-from-here/ux/models/ActionToolbarStyles.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/multitextinput/MultiTextInput.d.ts +52 -651
- package/internal-do-not-import-from-here/ux/oxide/draggable/Draggable.d.ts +5 -0
- package/internal-do-not-import-from-here/ux/richtexteditor/RichTextEditorSettings.d.ts +10 -2
- package/internal-do-not-import-from-here/ux/richtexteditor/extensions/Code/Code.d.ts +15 -2
- package/internal-do-not-import-from-here/ux/richtexteditor/extensions/Code/CodeToolbar.d.ts +16 -9
- package/internal-do-not-import-from-here/ux/richtexteditor/extensions/CodeBlock/CodeBlock.d.ts +15 -2
- package/internal-do-not-import-from-here/ux/richtexteditor/extensions/CodeBlock/CodeBlockToolbar.d.ts +16 -9
- package/internal-do-not-import-from-here/ux/richtexteditor/extensions/Strike/Strike.d.ts +15 -2
- package/internal-do-not-import-from-here/ux/richtexteditor/extensions/Strike/StrikeToolbar.d.ts +16 -9
- package/internal-do-not-import-from-here/ux/theming-v2/styling/UseStyling.d.ts +5 -0
- package/internal-do-not-import-from-here/ux/theming-v2/styling/styles/Typography.d.ts +5 -0
- package/internal-do-not-import-from-here/ux/use/UseContainerQuery.d.ts +9 -0
- package/internal-do-not-import-from-here/ux/use/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/velcron/blocks/demo/DemoBlock.d.ts +15 -78
- package/internal-do-not-import-from-here/wctypings.d.ts +362 -102
- package/package.json +2 -2
- package/internal-do-not-import-from-here/ux/editorchrome/action_toolbar/IDisplaySettingsToolbar.d.ts +0 -24
- package/internal-do-not-import-from-here/ux/richtexteditor/IRichTextEditorSettings.d.ts +0 -6
- /package/internal-do-not-import-from-here/ux/{editorchrome/action_toolbar/IActionToolbar.d.ts → layoutcanvas/shared/layoutitemsrenderer/_old/LayoutTabRenderer.d.ts} +0 -0
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "@omnia/fx",
|
3
3
|
"license": "MIT",
|
4
|
-
"version": "8.0.
|
4
|
+
"version": "8.0.88-dev",
|
5
5
|
"description": "Provide Omnia Fx typings and tooling for clientside Omnia development.",
|
6
6
|
"scripts": {
|
7
7
|
"test": "echo \"Error: no test specified\" && exit 1",
|
@@ -20,7 +20,7 @@
|
|
20
20
|
],
|
21
21
|
"author": "Precio Fishbone",
|
22
22
|
"dependencies": {
|
23
|
-
"@omnia/fx-models": "8.0.
|
23
|
+
"@omnia/fx-models": "8.0.88-dev",
|
24
24
|
"@microsoft/signalr": "6.0.1",
|
25
25
|
"broadcast-channel": "4.8.0",
|
26
26
|
"dayjs": "1.10.7",
|
package/internal-do-not-import-from-here/ux/editorchrome/action_toolbar/IDisplaySettingsToolbar.d.ts
DELETED
@@ -1,24 +0,0 @@
|
|
1
|
-
import { EditorDisplayModes } from "../../../models";
|
2
|
-
import { ActionToolbarStyles } from "../../models";
|
3
|
-
import { TsxAllowUnknowProperties } from "../../TsxAllowUnknowProperties";
|
4
|
-
export interface IDisplaySettingsToolbarProperties {
|
5
|
-
}
|
6
|
-
/**Editor chrome*/
|
7
|
-
export interface IDisplaySettingsToolbar extends IDisplaySettingsToolbarProperties {
|
8
|
-
[name: string]: any;
|
9
|
-
styles?: Partial<typeof ActionToolbarStyles>;
|
10
|
-
changeMode: (editorDisplayMode: EditorDisplayModes) => void;
|
11
|
-
}
|
12
|
-
declare global {
|
13
|
-
namespace JSX {
|
14
|
-
interface Element {
|
15
|
-
}
|
16
|
-
interface ElementClass {
|
17
|
-
}
|
18
|
-
interface ElementAttributesProperty {
|
19
|
-
}
|
20
|
-
interface IntrinsicElements {
|
21
|
-
"omfx-editor-chrome-settings-toolbar": TsxAllowUnknowProperties<IDisplaySettingsToolbar>;
|
22
|
-
}
|
23
|
-
}
|
24
|
-
}
|