@omnia/fx 8.0.15-vnext → 8.0.16-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.
- package/internal-do-not-import-from-here/index.d.ts +3 -3
- package/internal-do-not-import-from-here/shared/models/Guid.js +1 -1
- package/internal-do-not-import-from-here/stores/TimeZoneStore.d.ts +1 -2
- package/internal-do-not-import-from-here/ux/InternalDefineWebComponent.d.ts +0 -2
- package/internal-do-not-import-from-here/ux/app/appinstance/renderer/AppInstanceRollup.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/app/management/AppManagement.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/app/management/tabs/instance/InstanceTab.d.ts +25 -5
- package/internal-do-not-import-from-here/ux/app/management/tabs/layouts/LayoutTab.d.ts +25 -5
- package/internal-do-not-import-from-here/ux/app/management/tabs/namingpolicies/NamingPolicyTab.d.ts +25 -5
- package/internal-do-not-import-from-here/ux/app/management/tabs/templates/TemplateTab.d.ts +25 -5
- package/internal-do-not-import-from-here/ux/filterengine/SelectionsArea.d.ts +25 -5
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/LayoutEditorCanvas.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/oxide/btn/Button.css.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/btn/Button.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/oxide/card/Card.d.ts +0 -16
- package/internal-do-not-import-from-here/ux/oxide/column/Column.d.ts +311 -0
- package/internal-do-not-import-from-here/ux/oxide/dialog/Dialog.d.ts +0 -28
- package/internal-do-not-import-from-here/ux/oxide/menu/Menu.d.ts +0 -16
- package/internal-do-not-import-from-here/ux/oxide/snackbar/Snackbar.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/oxide/text/Text.css.d.ts +3 -1
- package/internal-do-not-import-from-here/ux/oxide/text/Text.d.ts +42 -0
- package/internal-do-not-import-from-here/ux/oxide/toolbar/Toolbar.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/oxide/treeview/Treeview.css.d.ts +4 -0
- package/internal-do-not-import-from-here/ux/oxide/treeview/Treeview.d.ts +210 -0
- package/internal-do-not-import-from-here/ux/presetupwizard/PreSetupWizard.d.ts +25 -5
- package/internal-do-not-import-from-here/ux/theming-v2/colorschemapicker/ColorSchemaPicker.d.ts +0 -16
- package/internal-do-not-import-from-here/ux/usertypelayout/UserTypeLayoutRenderer.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/versionedlayout/editor/VersionedLayoutEditor.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/versionedlayout/renderer/VersionedLayoutRenderer.d.ts +1 -1
- package/internal-do-not-import-from-here/vue/VueHooks.d.ts +1 -1
- package/internal-do-not-import-from-here/wctypings.d.ts +4 -0
- package/package.json +2 -2
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/LayoutStructure_old.d.ts +0 -33
@@ -0,0 +1,210 @@
|
|
1
|
+
import { TreeViewItem } from "@omnia/fx-models";
|
2
|
+
export interface TextFieldModel {
|
3
|
+
text: String;
|
4
|
+
}
|
5
|
+
declare const _default: {
|
6
|
+
new (...args: any[]): {
|
7
|
+
$: import("vue").ComponentInternalInstance;
|
8
|
+
$data: {};
|
9
|
+
$props: Partial<{
|
10
|
+
container?: any;
|
11
|
+
colorSchemaType?: any;
|
12
|
+
}> & Omit<Readonly<import("vue").ExtractPropTypes<{
|
13
|
+
"multi-select": {
|
14
|
+
type: import("vue").PropType<boolean>;
|
15
|
+
required: boolean;
|
16
|
+
default?: boolean;
|
17
|
+
};
|
18
|
+
multiSelect: {
|
19
|
+
type: import("vue").PropType<boolean>;
|
20
|
+
required: boolean;
|
21
|
+
default?: boolean;
|
22
|
+
};
|
23
|
+
"expand-on-selection": {
|
24
|
+
type: import("vue").PropType<boolean>;
|
25
|
+
required: boolean;
|
26
|
+
default?: boolean;
|
27
|
+
};
|
28
|
+
expandOnSelection: {
|
29
|
+
type: import("vue").PropType<boolean>;
|
30
|
+
required: boolean;
|
31
|
+
default?: boolean;
|
32
|
+
};
|
33
|
+
items: {
|
34
|
+
type: import("vue").PropType<TreeViewItem<any>[]>;
|
35
|
+
required: boolean;
|
36
|
+
default?: TreeViewItem<any>[];
|
37
|
+
} & {
|
38
|
+
type: import("vue").PropType<TreeViewItem<any>[]>;
|
39
|
+
required: boolean;
|
40
|
+
default?: TreeViewItem<any>[];
|
41
|
+
};
|
42
|
+
colorSchemaType?: any;
|
43
|
+
container?: any;
|
44
|
+
}>> & {
|
45
|
+
"onUpdate:active"?: (items: any[]) => any;
|
46
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "container" | "colorSchemaType">;
|
47
|
+
$attrs: {
|
48
|
+
[x: string]: unknown;
|
49
|
+
};
|
50
|
+
$refs: {
|
51
|
+
[x: string]: unknown;
|
52
|
+
};
|
53
|
+
$slots: Readonly<{
|
54
|
+
[name: string]: import("vue").Slot;
|
55
|
+
}>;
|
56
|
+
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
57
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
58
|
+
$emit: (event: "update:active", items: any[]) => void;
|
59
|
+
$el: any;
|
60
|
+
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
61
|
+
"multi-select": {
|
62
|
+
type: import("vue").PropType<boolean>;
|
63
|
+
required: boolean;
|
64
|
+
default?: boolean;
|
65
|
+
};
|
66
|
+
multiSelect: {
|
67
|
+
type: import("vue").PropType<boolean>;
|
68
|
+
required: boolean;
|
69
|
+
default?: boolean;
|
70
|
+
};
|
71
|
+
"expand-on-selection": {
|
72
|
+
type: import("vue").PropType<boolean>;
|
73
|
+
required: boolean;
|
74
|
+
default?: boolean;
|
75
|
+
};
|
76
|
+
expandOnSelection: {
|
77
|
+
type: import("vue").PropType<boolean>;
|
78
|
+
required: boolean;
|
79
|
+
default?: boolean;
|
80
|
+
};
|
81
|
+
items: {
|
82
|
+
type: import("vue").PropType<TreeViewItem<any>[]>;
|
83
|
+
required: boolean;
|
84
|
+
default?: TreeViewItem<any>[];
|
85
|
+
} & {
|
86
|
+
type: import("vue").PropType<TreeViewItem<any>[]>;
|
87
|
+
required: boolean;
|
88
|
+
default?: TreeViewItem<any>[];
|
89
|
+
};
|
90
|
+
colorSchemaType?: any;
|
91
|
+
container?: any;
|
92
|
+
}>> & {
|
93
|
+
"onUpdate:active"?: (items: any[]) => any;
|
94
|
+
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
95
|
+
"update:active": (items: Array<any>) => true;
|
96
|
+
}, string, {
|
97
|
+
container?: any;
|
98
|
+
colorSchemaType?: any;
|
99
|
+
}, {}, string> & {
|
100
|
+
beforeCreate?: (() => void) | (() => void)[];
|
101
|
+
created?: (() => void) | (() => void)[];
|
102
|
+
beforeMount?: (() => void) | (() => void)[];
|
103
|
+
mounted?: (() => void) | (() => void)[];
|
104
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
105
|
+
updated?: (() => void) | (() => void)[];
|
106
|
+
activated?: (() => void) | (() => void)[];
|
107
|
+
deactivated?: (() => void) | (() => void)[];
|
108
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
109
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
110
|
+
destroyed?: (() => void) | (() => void)[];
|
111
|
+
unmounted?: (() => void) | (() => void)[];
|
112
|
+
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
113
|
+
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
114
|
+
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)[];
|
115
|
+
};
|
116
|
+
$forceUpdate: () => void;
|
117
|
+
$nextTick: typeof import("vue").nextTick;
|
118
|
+
$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;
|
119
|
+
} & Readonly<import("vue").ExtractPropTypes<{
|
120
|
+
"multi-select": {
|
121
|
+
type: import("vue").PropType<boolean>;
|
122
|
+
required: boolean;
|
123
|
+
default?: boolean;
|
124
|
+
};
|
125
|
+
multiSelect: {
|
126
|
+
type: import("vue").PropType<boolean>;
|
127
|
+
required: boolean;
|
128
|
+
default?: boolean;
|
129
|
+
};
|
130
|
+
"expand-on-selection": {
|
131
|
+
type: import("vue").PropType<boolean>;
|
132
|
+
required: boolean;
|
133
|
+
default?: boolean;
|
134
|
+
};
|
135
|
+
expandOnSelection: {
|
136
|
+
type: import("vue").PropType<boolean>;
|
137
|
+
required: boolean;
|
138
|
+
default?: boolean;
|
139
|
+
};
|
140
|
+
items: {
|
141
|
+
type: import("vue").PropType<TreeViewItem<any>[]>;
|
142
|
+
required: boolean;
|
143
|
+
default?: TreeViewItem<any>[];
|
144
|
+
} & {
|
145
|
+
type: import("vue").PropType<TreeViewItem<any>[]>;
|
146
|
+
required: boolean;
|
147
|
+
default?: TreeViewItem<any>[];
|
148
|
+
};
|
149
|
+
colorSchemaType?: any;
|
150
|
+
container?: any;
|
151
|
+
}>> & {
|
152
|
+
"onUpdate:active"?: (items: any[]) => any;
|
153
|
+
} & import("vue").ShallowUnwrapRef<() => JSX.Element> & {} & import("vue").ComponentCustomProperties & {};
|
154
|
+
__isFragment?: never;
|
155
|
+
__isTeleport?: never;
|
156
|
+
__isSuspense?: never;
|
157
|
+
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
158
|
+
"multi-select": {
|
159
|
+
type: import("vue").PropType<boolean>;
|
160
|
+
required: boolean;
|
161
|
+
default?: boolean;
|
162
|
+
};
|
163
|
+
multiSelect: {
|
164
|
+
type: import("vue").PropType<boolean>;
|
165
|
+
required: boolean;
|
166
|
+
default?: boolean;
|
167
|
+
};
|
168
|
+
"expand-on-selection": {
|
169
|
+
type: import("vue").PropType<boolean>;
|
170
|
+
required: boolean;
|
171
|
+
default?: boolean;
|
172
|
+
};
|
173
|
+
expandOnSelection: {
|
174
|
+
type: import("vue").PropType<boolean>;
|
175
|
+
required: boolean;
|
176
|
+
default?: boolean;
|
177
|
+
};
|
178
|
+
items: {
|
179
|
+
type: import("vue").PropType<TreeViewItem<any>[]>;
|
180
|
+
required: boolean;
|
181
|
+
default?: TreeViewItem<any>[];
|
182
|
+
} & {
|
183
|
+
type: import("vue").PropType<TreeViewItem<any>[]>;
|
184
|
+
required: boolean;
|
185
|
+
default?: TreeViewItem<any>[];
|
186
|
+
};
|
187
|
+
colorSchemaType?: any;
|
188
|
+
container?: any;
|
189
|
+
}>> & {
|
190
|
+
"onUpdate:active"?: (items: any[]) => any;
|
191
|
+
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
192
|
+
"update:active": (items: Array<any>) => true;
|
193
|
+
}, string, {
|
194
|
+
container?: any;
|
195
|
+
colorSchemaType?: any;
|
196
|
+
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
197
|
+
propsDefinition: Readonly<{
|
198
|
+
container?: any;
|
199
|
+
colorSchemaType?: any;
|
200
|
+
} & {
|
201
|
+
items?: TreeViewItem<any>[];
|
202
|
+
expandOnSelection?: boolean;
|
203
|
+
"expand-on-selection"?: boolean;
|
204
|
+
multiSelect?: boolean;
|
205
|
+
"multi-select"?: boolean;
|
206
|
+
}> & {
|
207
|
+
"onUpdate:active"?: (items: any[]) => any;
|
208
|
+
};
|
209
|
+
};
|
210
|
+
export default _default;
|
@@ -2,7 +2,13 @@ declare const _default: {
|
|
2
2
|
new (...args: any[]): {
|
3
3
|
$: import("vue").ComponentInternalInstance;
|
4
4
|
$data: {};
|
5
|
-
$props: Partial<{
|
5
|
+
$props: Partial<{
|
6
|
+
[x: number]: string;
|
7
|
+
} | {}> & Omit<(readonly string[] | Readonly<import("vue").ExtractPropTypes<Readonly<import("vue").ComponentObjectPropsOptions<{
|
8
|
+
[x: string]: unknown;
|
9
|
+
}>>>>) & (import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<readonly string[] | import("vue").ExtractPropTypes<Readonly<import("vue").ComponentObjectPropsOptions<{
|
10
|
+
[x: string]: unknown;
|
11
|
+
}>>>>), never>;
|
6
12
|
$attrs: {
|
7
13
|
[x: string]: unknown;
|
8
14
|
};
|
@@ -16,7 +22,11 @@ declare const _default: {
|
|
16
22
|
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
17
23
|
$emit: (event: string, ...args: any[]) => void;
|
18
24
|
$el: any;
|
19
|
-
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<
|
25
|
+
$options: import("vue").ComponentOptionsBase<readonly string[] | Readonly<import("vue").ExtractPropTypes<Readonly<import("vue").ComponentObjectPropsOptions<{
|
26
|
+
[x: string]: unknown;
|
27
|
+
}>>>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
28
|
+
[x: number]: string;
|
29
|
+
} | {}, {}, string> & {
|
20
30
|
beforeCreate?: (() => void) | (() => void)[];
|
21
31
|
created?: (() => void) | (() => void)[];
|
22
32
|
beforeMount?: (() => void) | (() => void)[];
|
@@ -36,11 +46,21 @@ declare const _default: {
|
|
36
46
|
$forceUpdate: () => void;
|
37
47
|
$nextTick: typeof import("vue").nextTick;
|
38
48
|
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean>): import("vue").WatchStopHandle;
|
39
|
-
} & Readonly<import("vue").ExtractPropTypes<
|
49
|
+
} & (readonly string[] | Readonly<import("vue").ExtractPropTypes<Readonly<import("vue").ComponentObjectPropsOptions<{
|
50
|
+
[x: string]: unknown;
|
51
|
+
}>>>>) & import("vue").ShallowUnwrapRef<() => JSX.Element> & {} & import("vue").ComponentCustomProperties & {} & Readonly<readonly string[] | import("vue").ExtractPropTypes<Readonly<import("vue").ComponentObjectPropsOptions<{
|
52
|
+
[x: string]: unknown;
|
53
|
+
}>>>>;
|
40
54
|
__isFragment?: never;
|
41
55
|
__isTeleport?: never;
|
42
56
|
__isSuspense?: never;
|
43
|
-
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<
|
44
|
-
|
57
|
+
} & import("vue").ComponentOptionsBase<readonly string[] | Readonly<import("vue").ExtractPropTypes<Readonly<import("vue").ComponentObjectPropsOptions<{
|
58
|
+
[x: string]: unknown;
|
59
|
+
}>>>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
60
|
+
[x: number]: string;
|
61
|
+
} | {}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
62
|
+
propsDefinition: readonly string[] | Readonly<{} & {
|
63
|
+
[x: string]: unknown;
|
64
|
+
}>;
|
45
65
|
};
|
46
66
|
export default _default;
|
package/internal-do-not-import-from-here/ux/theming-v2/colorschemapicker/ColorSchemaPicker.d.ts
CHANGED
@@ -12,10 +12,6 @@ declare const _default: {
|
|
12
12
|
default?: () => VNodeChild;
|
13
13
|
} & {
|
14
14
|
activator?: () => VNodeChild;
|
15
|
-
}, {
|
16
|
-
default?: () => VNodeChild;
|
17
|
-
} & {
|
18
|
-
activator?: () => VNodeChild;
|
19
15
|
}>;
|
20
16
|
"v-model": import("vue").PropType<unknown>;
|
21
17
|
modelValue: import("vue").PropType<unknown>;
|
@@ -42,10 +38,6 @@ declare const _default: {
|
|
42
38
|
default?: () => VNodeChild;
|
43
39
|
} & {
|
44
40
|
activator?: () => VNodeChild;
|
45
|
-
}, {
|
46
|
-
default?: () => VNodeChild;
|
47
|
-
} & {
|
48
|
-
activator?: () => VNodeChild;
|
49
41
|
}>;
|
50
42
|
"v-model": import("vue").PropType<unknown>;
|
51
43
|
modelValue: import("vue").PropType<unknown>;
|
@@ -83,10 +75,6 @@ declare const _default: {
|
|
83
75
|
default?: () => VNodeChild;
|
84
76
|
} & {
|
85
77
|
activator?: () => VNodeChild;
|
86
|
-
}, {
|
87
|
-
default?: () => VNodeChild;
|
88
|
-
} & {
|
89
|
-
activator?: () => VNodeChild;
|
90
78
|
}>;
|
91
79
|
"v-model": import("vue").PropType<unknown>;
|
92
80
|
modelValue: import("vue").PropType<unknown>;
|
@@ -103,10 +91,6 @@ declare const _default: {
|
|
103
91
|
default?: () => VNodeChild;
|
104
92
|
} & {
|
105
93
|
activator?: () => VNodeChild;
|
106
|
-
}, {
|
107
|
-
default?: () => VNodeChild;
|
108
|
-
} & {
|
109
|
-
activator?: () => VNodeChild;
|
110
94
|
}>;
|
111
95
|
"v-model": import("vue").PropType<unknown>;
|
112
96
|
modelValue: import("vue").PropType<unknown>;
|
@@ -64,10 +64,10 @@ declare const _default: {
|
|
64
64
|
serviceContainerContext: ServiceContainerContext;
|
65
65
|
}>>>, () => JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
66
66
|
propsDefinition: Readonly<{} & {
|
67
|
+
serviceContainerContext?: ServiceContainerContext;
|
67
68
|
userTypeId?: GuidValue;
|
68
69
|
getApi?: (api: LayoutRendererCanvasApi) => void;
|
69
70
|
editMode?: boolean;
|
70
|
-
serviceContainerContext?: ServiceContainerContext;
|
71
71
|
}>;
|
72
72
|
};
|
73
73
|
export default _default;
|
package/internal-do-not-import-from-here/ux/versionedlayout/editor/VersionedLayoutEditor.d.ts
CHANGED
@@ -78,12 +78,12 @@ declare const _default: {
|
|
78
78
|
}>>>, () => JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
79
79
|
propsDefinition: Readonly<{} & {
|
80
80
|
appInstanceId?: GuidValue;
|
81
|
+
serviceContainerContext?: ServiceContainerContext;
|
81
82
|
renderNavigationDrawer?: () => JSX.Element;
|
82
83
|
closeEditor?: () => void;
|
83
84
|
navigationDrawerTitle?: string;
|
84
85
|
renderNavigationDrawerBottom?: () => JSX.Element;
|
85
86
|
getApi?: (api: VersionedLayoutEditorApi) => void;
|
86
|
-
serviceContainerContext?: ServiceContainerContext;
|
87
87
|
}>;
|
88
88
|
};
|
89
89
|
export default _default;
|
package/internal-do-not-import-from-here/ux/versionedlayout/renderer/VersionedLayoutRenderer.d.ts
CHANGED
@@ -125,11 +125,11 @@ declare const _default: {
|
|
125
125
|
}>>>, () => JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
126
126
|
propsDefinition: Readonly<{} & {
|
127
127
|
appInstanceId?: GuidValue;
|
128
|
+
serviceContainerContext?: ServiceContainerContext;
|
128
129
|
versionedLayoutId?: VersionedLayoutId;
|
129
130
|
layoutThemeDefinition?: ThemeDefinition;
|
130
131
|
blockThemeDefinition?: ThemeDefinition;
|
131
132
|
getApi?: (api: LayoutRendererCanvasApi) => void;
|
132
|
-
serviceContainerContext?: ServiceContainerContext;
|
133
133
|
layoutProvider?: string;
|
134
134
|
layoutBackgroundImageElementId?: string;
|
135
135
|
enableAlternateLayout?: boolean;
|
@@ -12,7 +12,7 @@ export declare function getVuePlugins(): {
|
|
12
12
|
options: any[];
|
13
13
|
}[];
|
14
14
|
export declare function registerVueMixin(mixin: ComponentOptions): void;
|
15
|
-
export declare function getVueMixins(): ComponentOptions
|
15
|
+
export declare function getVueMixins(): ComponentOptions[];
|
16
16
|
export declare function registerVueOptionsHook(fn: () => void): void;
|
17
17
|
export declare function getVueOptionsHooks(): ((classComponentConstructor?: any) => void)[];
|
18
18
|
export declare function registerAsyncVueComponent(app: App, component: WebComponentBundleManifest): void;
|
@@ -67,6 +67,7 @@ import wc7fbf605e1ae24b21b0a9e35141aca17b from './ux/oxide/appbar/Appbar';
|
|
67
67
|
import wc0c73f6d6c7f34688a93368434caaa389 from './ux/oxide/btn/Button';
|
68
68
|
import wcbeb97ee8f2a94d1b86980b1736f82e20 from './ux/oxide/btntoggle/ButtonToggle';
|
69
69
|
import wcffc99f8d26ae4caf84ece7c13463b6c5 from './ux/oxide/card/Card';
|
70
|
+
import wccdd8102dec85424da156ca516659956e from './ux/oxide/column/Column';
|
70
71
|
import wc2ae3cf98c95443a199d44705ad87d994 from './ux/oxide/dialog/Dialog';
|
71
72
|
import wcd1a4678669114d9293f42409a1080756 from './ux/oxide/divider/Divider';
|
72
73
|
import wc1f535ab2cf154914a9bb104aa46d1e2a from './ux/oxide/expansionpanel/ExpansionPanels';
|
@@ -94,6 +95,7 @@ import wc07776976fab941de8e169e6e903fb4fe from './ux/oxide/tab/Tab';
|
|
94
95
|
import wc7b543325ab85489eb1401d7bfdf6f5fc from './ux/oxide/text/Text';
|
95
96
|
import wc9a7ad06b091e4633a0fc3d380210f9cb from './ux/oxide/textfield/TextField';
|
96
97
|
import wc53c3a240c5bf4d39ac29ac7f1f7415ae from './ux/oxide/toolbar/Toolbar';
|
98
|
+
import wce1b9681a96a94f65a08577ef52b83752 from './ux/oxide/treeview/Treeview';
|
97
99
|
import wcb6ddbf2c41224cd29b92fcecbbdd31a0 from './ux/playground_test/Play2Component';
|
98
100
|
import wc1a58948a606a42078da3fb919cc4f7e6 from './ux/presetupwizard/PreSetupWizard';
|
99
101
|
import wc6d1d84cb210643c59ca8437fc36c75a1 from './ux/profilecard/ProfileCardRenderer';
|
@@ -240,6 +242,7 @@ declare global {
|
|
240
242
|
"o-btn": typeof wc0c73f6d6c7f34688a93368434caaa389.propsDefinition & VueComponentBaseProps;
|
241
243
|
"o-btn-toggle": typeof wcbeb97ee8f2a94d1b86980b1736f82e20.propsDefinition & VueComponentBaseProps;
|
242
244
|
"o-card": typeof wcffc99f8d26ae4caf84ece7c13463b6c5.propsDefinition & VueComponentBaseProps;
|
245
|
+
"o-col": typeof wccdd8102dec85424da156ca516659956e.propsDefinition & VueComponentBaseProps;
|
243
246
|
"o-dialog": typeof wc2ae3cf98c95443a199d44705ad87d994.propsDefinition & VueComponentBaseProps;
|
244
247
|
"o-divider": typeof wcd1a4678669114d9293f42409a1080756.propsDefinition & VueComponentBaseProps;
|
245
248
|
"o-expansion-panels": typeof wc1f535ab2cf154914a9bb104aa46d1e2a.propsDefinition & VueComponentBaseProps;
|
@@ -267,6 +270,7 @@ declare global {
|
|
267
270
|
"o-text": typeof wc7b543325ab85489eb1401d7bfdf6f5fc.propsDefinition & VueComponentBaseProps;
|
268
271
|
"o-text-field": typeof wc9a7ad06b091e4633a0fc3d380210f9cb.propsDefinition & VueComponentBaseProps;
|
269
272
|
"o-toolbar": typeof wc53c3a240c5bf4d39ac29ac7f1f7415ae.propsDefinition & VueComponentBaseProps;
|
273
|
+
"o-treeview": typeof wce1b9681a96a94f65a08577ef52b83752.propsDefinition & VueComponentBaseProps;
|
270
274
|
"omnia-play-2": typeof wcb6ddbf2c41224cd29b92fcecbbdd31a0.propsDefinition & VueComponentBaseProps;
|
271
275
|
"omfx-presetup-wizard": typeof wc1a58948a606a42078da3fb919cc4f7e6.propsDefinition & VueComponentBaseProps;
|
272
276
|
"omfx-profilecard-renderer": typeof wc6d1d84cb210643c59ca8437fc36c75a1.propsDefinition & VueComponentBaseProps;
|
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.16-vnext",
|
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.16-vnext",
|
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/layoutcanvas/editor/settings/LayoutStructure_old.d.ts
DELETED
@@ -1,33 +0,0 @@
|
|
1
|
-
import { BlockTitleSettingsStore, MultilingualStore } from "@omnia/fx/stores";
|
2
|
-
import { ColorSchemaStore, VueComponentBase, VueComponentBaseProps } from "@omnia/fx/ux";
|
3
|
-
import { BlockCatalogStore, LayoutCanvasStore } from "../../";
|
4
|
-
export interface SectionSettingsProps extends VueComponentBaseProps {
|
5
|
-
}
|
6
|
-
export interface BlockSettingsEvents {
|
7
|
-
}
|
8
|
-
export declare class LayoutStructure extends VueComponentBase<SectionSettingsProps, BlockSettingsEvents> {
|
9
|
-
private section;
|
10
|
-
colorSchemaStore: ColorSchemaStore;
|
11
|
-
MultilingualStore: MultilingualStore;
|
12
|
-
private subscriptionHandler;
|
13
|
-
private omniaUxLoc;
|
14
|
-
blockTitleSettingsStore: BlockTitleSettingsStore;
|
15
|
-
blockCatalog: BlockCatalogStore;
|
16
|
-
layoutEditorStore: LayoutCanvasStore;
|
17
|
-
private themeStyleContent;
|
18
|
-
private model;
|
19
|
-
created(): void;
|
20
|
-
mounted(): void;
|
21
|
-
/**
|
22
|
-
* Watch for section changes
|
23
|
-
* */
|
24
|
-
private onSectionChange;
|
25
|
-
private onItemSelected;
|
26
|
-
private getIcon;
|
27
|
-
private getItemName;
|
28
|
-
private getClickStyle;
|
29
|
-
isLayoutSelected(): boolean;
|
30
|
-
private shouldShowMenu;
|
31
|
-
renderIcon(): JSX.Element;
|
32
|
-
render(): JSX.Element;
|
33
|
-
}
|