@omnia/fx 8.0.141-dev → 8.0.142-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/blueprintpickers/chrome/ChromePicker.d.ts +21 -0
- package/internal-do-not-import-from-here/ux/blueprintpickers/iconstylepicker/IconStyleEditor.d.ts +7 -3
- package/internal-do-not-import-from-here/ux/blueprintpickers/iconstylepicker/IconStylePicker.d.ts +7 -3
- package/internal-do-not-import-from-here/ux/blueprintpickers/spacingpicker/SpacingPicker3.d.ts +21 -0
- package/internal-do-not-import-from-here/ux/blueprintpickers/tabs/TabStylePicker.d.ts +7 -3
- package/internal-do-not-import-from-here/ux/blueprintpickers/textstylepicker/TextStylePicker.d.ts +7 -3
- package/internal-do-not-import-from-here/ux/blueprintpickers/typography/TypographyPicker.d.ts +7 -3
- package/internal-do-not-import-from-here/ux/borderpicker/BorderPicker.d.ts +7 -3
- package/internal-do-not-import-from-here/ux/colorschemapicker/ColorSchemaViewer.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/fillpicker/FillPicker.d.ts +7 -3
- package/internal-do-not-import-from-here/ux/oxide/appbar/Appbar.d.ts +9 -9
- package/internal-do-not-import-from-here/ux/oxide/slider/Slider.d.ts +21 -0
- package/internal-do-not-import-from-here/ux/pickerwrapper/PickerWrapper.d.ts +21 -0
- package/internal-do-not-import-from-here/ux/theming-v2/actionhandler/ThemeDesignerAction.d.ts +69 -0
- package/internal-do-not-import-from-here/ux/theming-v2/actionhandler/ThemeDesignerClickHandler.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/theming-v2/admin/blades/themedesigner/ThemeDesigner.d.ts +10 -4
- package/internal-do-not-import-from-here/ux/theming-v2/store/ThemeContextStore.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/use/UseIcon.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/velcron/core/actions/Clone.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/velcron/core/parser/VelcronActions.d.ts +4 -1
- package/internal-do-not-import-from-here/ux/velcron/core/parser/VelcronConstants.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/velcron/core/parser/VelcronData.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/velcron/editor/VelcronEditor.d.ts +68 -403
- package/internal-do-not-import-from-here/ux/velcron/editor/VelcronEditorAction.d.ts +69 -0
- package/internal-do-not-import-from-here/ux/velcron/editor/VelcronEditorClickHandler.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/velcron/renderer/components/ComponentCreator.d.ts +68 -38
- package/internal-do-not-import-from-here/ux/velcron/renderer/components/Reference.d.ts +6 -6
- package/internal-do-not-import-from-here/wctypings.d.ts +38 -8
- package/package.json +2 -2
package/internal-do-not-import-from-here/ux/velcron/renderer/components/ComponentCreator.d.ts
CHANGED
@@ -1,42 +1,72 @@
|
|
1
1
|
import { VelcronDefinition, VelcronRenderContext } from "../../core";
|
2
|
-
declare const _default: {
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
}
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
2
|
+
declare const _default: (props: {
|
3
|
+
definition: VelcronDefinition;
|
4
|
+
} & {
|
5
|
+
renderContext: VelcronRenderContext;
|
6
|
+
} & {
|
7
|
+
containerClass?: object;
|
8
|
+
} & {
|
9
|
+
elementClass?: object;
|
10
|
+
} & Omit<{
|
11
|
+
"onSetup:context"?: (context: VelcronRenderContext) => any;
|
12
|
+
}, "definition" | "containerClass" | "renderContext" | "elementClass"> & {
|
13
|
+
"v-slots"?: {
|
14
|
+
default?: import("vue").Slot;
|
15
|
+
};
|
16
|
+
} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "definition" | "containerClass" | "renderContext" | "elementClass">) => {
|
17
|
+
$: import("vue").ComponentInternalInstance;
|
18
|
+
$data: {};
|
19
|
+
$props: {};
|
20
|
+
$attrs: {
|
21
|
+
[x: string]: unknown;
|
22
|
+
};
|
23
|
+
$refs: {
|
24
|
+
[x: string]: unknown;
|
25
|
+
};
|
26
|
+
$slots: Readonly<{
|
27
|
+
[name: string]: import("vue").Slot<any>;
|
28
|
+
}>;
|
29
|
+
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
30
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
31
|
+
$emit: (event: string, ...args: any[]) => void;
|
32
|
+
$el: any;
|
33
|
+
$options: import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}> & {
|
34
|
+
beforeCreate?: (() => void) | (() => void)[];
|
35
|
+
created?: (() => void) | (() => void)[];
|
36
|
+
beforeMount?: (() => void) | (() => void)[];
|
37
|
+
mounted?: (() => void) | (() => void)[];
|
38
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
39
|
+
updated?: (() => void) | (() => void)[];
|
40
|
+
activated?: (() => void) | (() => void)[];
|
41
|
+
deactivated?: (() => void) | (() => void)[];
|
42
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
43
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
44
|
+
destroyed?: (() => void) | (() => void)[];
|
45
|
+
unmounted?: (() => void) | (() => void)[];
|
46
|
+
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
47
|
+
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
48
|
+
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)[];
|
49
|
+
};
|
50
|
+
$forceUpdate: () => void;
|
51
|
+
$nextTick: typeof import("vue").nextTick;
|
52
|
+
$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;
|
53
|
+
} & Omit<{}, never> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {} & {
|
54
|
+
propsDefinition: {
|
55
|
+
definition: VelcronDefinition;
|
56
|
+
} & {
|
57
|
+
renderContext: VelcronRenderContext;
|
58
|
+
} & {
|
37
59
|
containerClass?: object;
|
38
|
-
|
60
|
+
} & {
|
39
61
|
elementClass?: object;
|
40
|
-
}
|
41
|
-
|
62
|
+
} & {
|
63
|
+
"v-slots"?: {
|
64
|
+
default?: import("vue").Slot;
|
65
|
+
};
|
66
|
+
} & {
|
67
|
+
"onSetup:context"?: (context: VelcronRenderContext) => any;
|
68
|
+
} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "definition" | "containerClass" | "renderContext" | "elementClass">;
|
69
|
+
} & import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
70
|
+
[key: string]: any;
|
71
|
+
}>;
|
42
72
|
export default _default;
|
@@ -1,11 +1,11 @@
|
|
1
|
-
import { VelcronReferenceDefinition } from "../../core";
|
1
|
+
import { VelcronReferenceDefinition, VelcronRenderContext } from "../../core";
|
2
2
|
declare const _default: {
|
3
3
|
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
|
4
4
|
definition: import("vue").Prop<VelcronReferenceDefinition, VelcronReferenceDefinition>;
|
5
|
-
renderContext: import("vue").Prop<
|
5
|
+
renderContext: import("vue").Prop<VelcronRenderContext, VelcronRenderContext>;
|
6
6
|
}>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
7
7
|
definition: import("vue").Prop<VelcronReferenceDefinition, VelcronReferenceDefinition>;
|
8
|
-
renderContext: import("vue").Prop<
|
8
|
+
renderContext: import("vue").Prop<VelcronRenderContext, VelcronRenderContext>;
|
9
9
|
}>>, {}, true, {}, {}, {
|
10
10
|
P: {};
|
11
11
|
B: {};
|
@@ -15,18 +15,18 @@ declare const _default: {
|
|
15
15
|
Defaults: {};
|
16
16
|
}, Readonly<import("vue").ExtractPropTypes<{
|
17
17
|
definition: import("vue").Prop<VelcronReferenceDefinition, VelcronReferenceDefinition>;
|
18
|
-
renderContext: import("vue").Prop<
|
18
|
+
renderContext: import("vue").Prop<VelcronRenderContext, VelcronRenderContext>;
|
19
19
|
}>>, {}, {}, {}, {}, {}>;
|
20
20
|
__isFragment?: never;
|
21
21
|
__isTeleport?: never;
|
22
22
|
__isSuspense?: never;
|
23
23
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
24
24
|
definition: import("vue").Prop<VelcronReferenceDefinition, VelcronReferenceDefinition>;
|
25
|
-
renderContext: import("vue").Prop<
|
25
|
+
renderContext: import("vue").Prop<VelcronRenderContext, VelcronRenderContext>;
|
26
26
|
}>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
27
27
|
propsDefinition: Omit<Readonly<{} & {
|
28
28
|
definition?: VelcronReferenceDefinition;
|
29
|
-
renderContext?:
|
29
|
+
renderContext?: VelcronRenderContext;
|
30
30
|
}>, never>;
|
31
31
|
};
|
32
32
|
export default _default;
|
@@ -285,12 +285,14 @@ import wc762d4009466d494e94cbcc3e90dff11d from './ux/social/likehandler/LikeActi
|
|
285
285
|
import wc0e7c178722cb41108b4740dbc788b4e5 from './ux/social/templates/CommentLikeTemplate';
|
286
286
|
import wc0e7c178722cb41108b4740dbc788b4ee from './ux/social/templates/LikeListingTemplate';
|
287
287
|
import wc0956cc1cb8c94b659d31dfefc4ffc341 from './ux/theming-v2/actionhandler/ThemeSelectorAction';
|
288
|
+
import wcd2cb064dcb2a4a76a3b8486cba5ebade from './ux/theming-v2/actionhandler/ThemeDesignerAction';
|
288
289
|
import wc97cad1f254694fb2ab76b333cf8fe84c from './ux/theming-v2/admin/DesignJourney';
|
289
290
|
import wc252ece0016594978b3ddfafdd59adda4 from './ux/theming-v2/themepicker/ThemePicker';
|
290
291
|
import wcb89e133162f54c1fb2cd6d03cc2e4fe2 from './ux/theming-v2/themepicker/ThemeEditor';
|
291
292
|
import wc73e1c232690249f78967e3e3f6d92bd7 from './ux/theming-v2/themepicker/ThemeViewer';
|
292
293
|
import wc008c41f92c8847eea45f09ebc0535fc1 from './ux/theming-v2/themeprovider/ThemeProvider';
|
293
294
|
import wcc75ffd4cf2f14b6685c5c2d894fdf00f from './ux/velcron/editor/VelcronEditor';
|
295
|
+
import wc3147213782724576b53d13e580af67ae from './ux/velcron/editor/VelcronEditorAction';
|
294
296
|
import wc3dd4d94bcc254f9fac2100a3ff84dc7e from './ux/velcron/renderer/VelcronRenderer';
|
295
297
|
import wc64567c1ccfb84d1380725db72ad01eeb from './ux/velcron/renderer/components/ComponentCreator';
|
296
298
|
import wcdcf9c3e24a774e4dae784a3eac29d488 from './ux/velcron/renderer/components/App';
|
@@ -1290,9 +1292,12 @@ declare global {
|
|
1290
1292
|
"omfx-like-listing-template": typeof wc0e7c178722cb41108b4740dbc788b4ee extends {
|
1291
1293
|
propsDefinition: infer TProp;
|
1292
1294
|
} ? (TProp & Omit<VueComponentBaseProps, keyof TProp>) : typeof wc0e7c178722cb41108b4740dbc788b4ee extends (...args: any[]) => any ? ExtractJsxProps<Pick<ReturnType<typeof wc0e7c178722cb41108b4740dbc788b4ee>, "propsDefinition">> : never;
|
1293
|
-
"omnia-theming-selector": typeof wc0956cc1cb8c94b659d31dfefc4ffc341 extends {
|
1295
|
+
"omnia-theming-selector-action": typeof wc0956cc1cb8c94b659d31dfefc4ffc341 extends {
|
1294
1296
|
propsDefinition: infer TProp;
|
1295
1297
|
} ? (TProp & Omit<VueComponentBaseProps, keyof TProp>) : typeof wc0956cc1cb8c94b659d31dfefc4ffc341 extends (...args: any[]) => any ? ExtractJsxProps<Pick<ReturnType<typeof wc0956cc1cb8c94b659d31dfefc4ffc341>, "propsDefinition">> : never;
|
1298
|
+
"omnia-theming-designer-action": typeof wcd2cb064dcb2a4a76a3b8486cba5ebade extends {
|
1299
|
+
propsDefinition: infer TProp;
|
1300
|
+
} ? (TProp & Omit<VueComponentBaseProps, keyof TProp>) : typeof wcd2cb064dcb2a4a76a3b8486cba5ebade extends (...args: any[]) => any ? ExtractJsxProps<Pick<ReturnType<typeof wcd2cb064dcb2a4a76a3b8486cba5ebade>, "propsDefinition">> : never;
|
1296
1301
|
"omnia-workplace-admin-tenant-design-journey": typeof wc97cad1f254694fb2ab76b333cf8fe84c extends {
|
1297
1302
|
propsDefinition: infer TProp;
|
1298
1303
|
} ? (TProp & Omit<VueComponentBaseProps, keyof TProp>) : typeof wc97cad1f254694fb2ab76b333cf8fe84c extends (...args: any[]) => any ? ExtractJsxProps<Pick<ReturnType<typeof wc97cad1f254694fb2ab76b333cf8fe84c>, "propsDefinition">> : never;
|
@@ -1311,6 +1316,9 @@ declare global {
|
|
1311
1316
|
"omfx-velcron-editor": typeof wcc75ffd4cf2f14b6685c5c2d894fdf00f extends {
|
1312
1317
|
propsDefinition: infer TProp;
|
1313
1318
|
} ? (TProp & Omit<VueComponentBaseProps, keyof TProp>) : typeof wcc75ffd4cf2f14b6685c5c2d894fdf00f extends (...args: any[]) => any ? ExtractJsxProps<Pick<ReturnType<typeof wcc75ffd4cf2f14b6685c5c2d894fdf00f>, "propsDefinition">> : never;
|
1319
|
+
"omnia-velcron-editor-action": typeof wc3147213782724576b53d13e580af67ae extends {
|
1320
|
+
propsDefinition: infer TProp;
|
1321
|
+
} ? (TProp & Omit<VueComponentBaseProps, keyof TProp>) : typeof wc3147213782724576b53d13e580af67ae extends (...args: any[]) => any ? ExtractJsxProps<Pick<ReturnType<typeof wc3147213782724576b53d13e580af67ae>, "propsDefinition">> : never;
|
1314
1322
|
"omfx-velcron-renderer": typeof wc3dd4d94bcc254f9fac2100a3ff84dc7e extends {
|
1315
1323
|
propsDefinition: infer TProp;
|
1316
1324
|
} ? (TProp & Omit<VueComponentBaseProps, keyof TProp>) : typeof wc3dd4d94bcc254f9fac2100a3ff84dc7e extends (...args: any[]) => any ? ExtractJsxProps<Pick<ReturnType<typeof wc3dd4d94bcc254f9fac2100a3ff84dc7e>, "propsDefinition">> : never;
|
@@ -1725,13 +1733,24 @@ declare global {
|
|
1725
1733
|
};
|
1726
1734
|
} : typeof wcbc947f375ee34d2a98e2d431f2e45b62;
|
1727
1735
|
"theming": {
|
1728
|
-
"selector":
|
1729
|
-
|
1730
|
-
|
1731
|
-
|
1732
|
-
|
1733
|
-
|
1734
|
-
|
1736
|
+
"selector": {
|
1737
|
+
"action": typeof wc0956cc1cb8c94b659d31dfefc4ffc341 extends {
|
1738
|
+
propsDefinition: infer TProp;
|
1739
|
+
} ? {
|
1740
|
+
new (...args: any[]): {
|
1741
|
+
$props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
|
1742
|
+
};
|
1743
|
+
} : typeof wc0956cc1cb8c94b659d31dfefc4ffc341;
|
1744
|
+
};
|
1745
|
+
"designer": {
|
1746
|
+
"action": typeof wcd2cb064dcb2a4a76a3b8486cba5ebade extends {
|
1747
|
+
propsDefinition: infer TProp;
|
1748
|
+
} ? {
|
1749
|
+
new (...args: any[]): {
|
1750
|
+
$props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
|
1751
|
+
};
|
1752
|
+
} : typeof wcd2cb064dcb2a4a76a3b8486cba5ebade;
|
1753
|
+
};
|
1735
1754
|
};
|
1736
1755
|
"workplace": {
|
1737
1756
|
"admin": {
|
@@ -1804,6 +1823,17 @@ declare global {
|
|
1804
1823
|
} : typeof wcfc2401c7c3384790ae7ce17d05b0855f;
|
1805
1824
|
};
|
1806
1825
|
};
|
1826
|
+
"velcron": {
|
1827
|
+
"editor": {
|
1828
|
+
"action": typeof wc3147213782724576b53d13e580af67ae extends {
|
1829
|
+
propsDefinition: infer TProp;
|
1830
|
+
} ? {
|
1831
|
+
new (...args: any[]): {
|
1832
|
+
$props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
|
1833
|
+
};
|
1834
|
+
} : typeof wc3147213782724576b53d13e580af67ae;
|
1835
|
+
};
|
1836
|
+
};
|
1807
1837
|
"layout": {
|
1808
1838
|
"developertools": typeof wc41f1eb15438a488b8b227b1ff31ca66f extends {
|
1809
1839
|
propsDefinition: infer TProp;
|
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.142-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.142-dev",
|
24
24
|
"@microsoft/signalr": "6.0.1",
|
25
25
|
"broadcast-channel": "4.8.0",
|
26
26
|
"dayjs": "1.11.7",
|