@omnia/fx 8.0.115-dev → 8.0.117-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/services/LoginLogService.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/UxModels.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/enterpriseproperties/renderers/EnterprisePropertyConfiguration.d.ts +35 -38
- package/internal-do-not-import-from-here/ux/journey/JourneyBlade.css.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/journey/JourneyBlade.d.ts +9 -9
- package/internal-do-not-import-from-here/ux/journey/JourneyMenu.d.ts +9 -9
- package/internal-do-not-import-from-here/ux/journey/models/Constants.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/journey/stores/JourneyStore.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/journey/use/UseBlade.d.ts +9 -9
- package/internal-do-not-import-from-here/ux/layoutcanvas/stores/LayoutCanvasStore.d.ts +40 -1
- package/internal-do-not-import-from-here/ux/oxide/dialog/Dialog.d.ts +17 -14
- package/internal-do-not-import-from-here/ux/oxide/dialog/docs/DialogWithTabs.d.ts +16 -0
- package/internal-do-not-import-from-here/ux/oxide/scrollcontainer/store/ScrollContainerStore.d.ts +27 -1
- package/package.json +2 -2
- package/internal-do-not-import-from-here/ux/properties/property-configuration/PropertyConfigurationV2.d.ts +0 -115
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { LoginLogFilter,
|
|
1
|
+
import { LoginLogFilter, LoginLogItem } from "../models";
|
|
2
2
|
export declare class LoginLogService {
|
|
3
3
|
private httpClient;
|
|
4
4
|
queryLog: (query: LoginLogFilter) => Promise<{
|
|
5
5
|
total: number;
|
|
6
|
-
items:
|
|
6
|
+
items: LoginLogItem[];
|
|
7
7
|
}>;
|
|
8
8
|
}
|
|
@@ -1,14 +1,13 @@
|
|
|
1
|
-
import { EnterprisePropertyItemSettings } from "@omnia/fx-models";
|
|
1
|
+
import { EnterprisePropertyItemSettings, PropertyEditorSettingsBase } from "@omnia/fx-models";
|
|
2
|
+
import { VNodeChild } from "vue";
|
|
2
3
|
declare const _default: {
|
|
3
4
|
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
|
|
4
|
-
"
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
required: false;
|
|
11
|
-
};
|
|
5
|
+
"v-slots": import("vue").Prop<{
|
|
6
|
+
default?: import("../../DefineVueTypings").Slot<any[]>;
|
|
7
|
+
} & {
|
|
8
|
+
prependSettings?(value: EnterprisePropertyItemSettings): VNodeChild;
|
|
9
|
+
appendSettings?(value: PropertyEditorSettingsBase): VNodeChild;
|
|
10
|
+
}>;
|
|
12
11
|
disabled: {
|
|
13
12
|
type: import("vue").PropType<boolean>;
|
|
14
13
|
} & {
|
|
@@ -80,15 +79,13 @@ declare const _default: {
|
|
|
80
79
|
};
|
|
81
80
|
}>;
|
|
82
81
|
};
|
|
83
|
-
}>>, () => JSX.Element
|
|
84
|
-
"
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
required: false;
|
|
91
|
-
};
|
|
82
|
+
}>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
|
83
|
+
"v-slots": import("vue").Prop<{
|
|
84
|
+
default?: import("../../DefineVueTypings").Slot<any[]>;
|
|
85
|
+
} & {
|
|
86
|
+
prependSettings?(value: EnterprisePropertyItemSettings): VNodeChild;
|
|
87
|
+
appendSettings?(value: PropertyEditorSettingsBase): VNodeChild;
|
|
88
|
+
}>;
|
|
92
89
|
disabled: {
|
|
93
90
|
type: import("vue").PropType<boolean>;
|
|
94
91
|
} & {
|
|
@@ -168,14 +165,12 @@ declare const _default: {
|
|
|
168
165
|
M: {};
|
|
169
166
|
Defaults: {};
|
|
170
167
|
}, Readonly<import("vue").ExtractPropTypes<{
|
|
171
|
-
"
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
required: false;
|
|
178
|
-
};
|
|
168
|
+
"v-slots": import("vue").Prop<{
|
|
169
|
+
default?: import("../../DefineVueTypings").Slot<any[]>;
|
|
170
|
+
} & {
|
|
171
|
+
prependSettings?(value: EnterprisePropertyItemSettings): VNodeChild;
|
|
172
|
+
appendSettings?(value: PropertyEditorSettingsBase): VNodeChild;
|
|
173
|
+
}>;
|
|
179
174
|
disabled: {
|
|
180
175
|
type: import("vue").PropType<boolean>;
|
|
181
176
|
} & {
|
|
@@ -247,19 +242,17 @@ declare const _default: {
|
|
|
247
242
|
};
|
|
248
243
|
}>;
|
|
249
244
|
};
|
|
250
|
-
}>>, () => JSX.Element
|
|
245
|
+
}>>, () => JSX.Element, {}, {}, {}, {}>;
|
|
251
246
|
__isFragment?: never;
|
|
252
247
|
__isTeleport?: never;
|
|
253
248
|
__isSuspense?: never;
|
|
254
249
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
255
|
-
"
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
required: false;
|
|
262
|
-
};
|
|
250
|
+
"v-slots": import("vue").Prop<{
|
|
251
|
+
default?: import("../../DefineVueTypings").Slot<any[]>;
|
|
252
|
+
} & {
|
|
253
|
+
prependSettings?(value: EnterprisePropertyItemSettings): VNodeChild;
|
|
254
|
+
appendSettings?(value: PropertyEditorSettingsBase): VNodeChild;
|
|
255
|
+
}>;
|
|
263
256
|
disabled: {
|
|
264
257
|
type: import("vue").PropType<boolean>;
|
|
265
258
|
} & {
|
|
@@ -331,7 +324,7 @@ declare const _default: {
|
|
|
331
324
|
};
|
|
332
325
|
}>;
|
|
333
326
|
};
|
|
334
|
-
}>>, () => JSX.Element
|
|
327
|
+
}>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
|
335
328
|
propsDefinition: Omit<Readonly<{} & {
|
|
336
329
|
name?: {
|
|
337
330
|
[x: `onUpdate:${string}`]: {
|
|
@@ -398,8 +391,12 @@ declare const _default: {
|
|
|
398
391
|
"v-model"?: EnterprisePropertyItemSettings;
|
|
399
392
|
"onUpdate:modelValue"?: (value: EnterprisePropertyItemSettings) => any;
|
|
400
393
|
modelValue?: EnterprisePropertyItemSettings;
|
|
401
|
-
|
|
402
|
-
|
|
394
|
+
"v-slots"?: {
|
|
395
|
+
default?: import("../../DefineVueTypings").Slot<any[]>;
|
|
396
|
+
} & {
|
|
397
|
+
prependSettings?(value: EnterprisePropertyItemSettings): VNodeChild;
|
|
398
|
+
appendSettings?(value: PropertyEditorSettingsBase): VNodeChild;
|
|
399
|
+
};
|
|
403
400
|
}>, never>;
|
|
404
401
|
};
|
|
405
402
|
export default _default;
|
|
@@ -4,7 +4,7 @@ declare const _default: {
|
|
|
4
4
|
headerButtons: string;
|
|
5
5
|
headerIcon: string;
|
|
6
6
|
switchWrapper: string;
|
|
7
|
-
wrapper: (
|
|
7
|
+
wrapper: (totalWidth: number, dark: boolean) => string;
|
|
8
8
|
fullScreenWrapper: string;
|
|
9
9
|
};
|
|
10
10
|
export default _default;
|
|
@@ -110,10 +110,10 @@ declare const JourneyBladeComponent: {
|
|
|
110
110
|
type: import("vue").PropType<boolean>;
|
|
111
111
|
};
|
|
112
112
|
size: {
|
|
113
|
-
type: import("vue").PropType<"small" | "medium" | "large" | "x-large" | "x-small" | "xx-large" | "xxx-large" | "
|
|
113
|
+
type: import("vue").PropType<"small" | "medium" | "large" | "x-large" | "x-small" | "xx-large" | "xxx-large" | "full-screen" | "fill-space">;
|
|
114
114
|
required: false;
|
|
115
115
|
} & {
|
|
116
|
-
type: import("vue").PropType<"small" | "medium" | "large" | "x-large" | "x-small" | "xx-large" | "xxx-large" | "
|
|
116
|
+
type: import("vue").PropType<"small" | "medium" | "large" | "x-large" | "x-small" | "xx-large" | "xxx-large" | "full-screen" | "fill-space">;
|
|
117
117
|
required: false;
|
|
118
118
|
};
|
|
119
119
|
id: {
|
|
@@ -252,10 +252,10 @@ declare const JourneyBladeComponent: {
|
|
|
252
252
|
type: import("vue").PropType<boolean>;
|
|
253
253
|
};
|
|
254
254
|
size: {
|
|
255
|
-
type: import("vue").PropType<"small" | "medium" | "large" | "x-large" | "x-small" | "xx-large" | "xxx-large" | "
|
|
255
|
+
type: import("vue").PropType<"small" | "medium" | "large" | "x-large" | "x-small" | "xx-large" | "xxx-large" | "full-screen" | "fill-space">;
|
|
256
256
|
required: false;
|
|
257
257
|
} & {
|
|
258
|
-
type: import("vue").PropType<"small" | "medium" | "large" | "x-large" | "x-small" | "xx-large" | "xxx-large" | "
|
|
258
|
+
type: import("vue").PropType<"small" | "medium" | "large" | "x-large" | "x-small" | "xx-large" | "xxx-large" | "full-screen" | "fill-space">;
|
|
259
259
|
required: false;
|
|
260
260
|
};
|
|
261
261
|
id: {
|
|
@@ -392,10 +392,10 @@ declare const JourneyBladeComponent: {
|
|
|
392
392
|
type: import("vue").PropType<boolean>;
|
|
393
393
|
};
|
|
394
394
|
size: {
|
|
395
|
-
type: import("vue").PropType<"small" | "medium" | "large" | "x-large" | "x-small" | "xx-large" | "xxx-large" | "
|
|
395
|
+
type: import("vue").PropType<"small" | "medium" | "large" | "x-large" | "x-small" | "xx-large" | "xxx-large" | "full-screen" | "fill-space">;
|
|
396
396
|
required: false;
|
|
397
397
|
} & {
|
|
398
|
-
type: import("vue").PropType<"small" | "medium" | "large" | "x-large" | "x-small" | "xx-large" | "xxx-large" | "
|
|
398
|
+
type: import("vue").PropType<"small" | "medium" | "large" | "x-large" | "x-small" | "xx-large" | "xxx-large" | "full-screen" | "fill-space">;
|
|
399
399
|
required: false;
|
|
400
400
|
};
|
|
401
401
|
id: {
|
|
@@ -529,10 +529,10 @@ declare const JourneyBladeComponent: {
|
|
|
529
529
|
type: import("vue").PropType<boolean>;
|
|
530
530
|
};
|
|
531
531
|
size: {
|
|
532
|
-
type: import("vue").PropType<"small" | "medium" | "large" | "x-large" | "x-small" | "xx-large" | "xxx-large" | "
|
|
532
|
+
type: import("vue").PropType<"small" | "medium" | "large" | "x-large" | "x-small" | "xx-large" | "xxx-large" | "full-screen" | "fill-space">;
|
|
533
533
|
required: false;
|
|
534
534
|
} & {
|
|
535
|
-
type: import("vue").PropType<"small" | "medium" | "large" | "x-large" | "x-small" | "xx-large" | "xxx-large" | "
|
|
535
|
+
type: import("vue").PropType<"small" | "medium" | "large" | "x-large" | "x-small" | "xx-large" | "xxx-large" | "full-screen" | "fill-space">;
|
|
536
536
|
required: false;
|
|
537
537
|
};
|
|
538
538
|
id: {
|
|
@@ -574,7 +574,7 @@ declare const JourneyBladeComponent: {
|
|
|
574
574
|
icon?: IIcon;
|
|
575
575
|
delete?: boolean;
|
|
576
576
|
id?: GuidValue;
|
|
577
|
-
size?: "small" | "medium" | "large" | "x-large" | "x-small" | "xx-large" | "xxx-large" | "
|
|
577
|
+
size?: "small" | "medium" | "large" | "x-large" | "x-small" | "xx-large" | "xxx-large" | "full-screen" | "fill-space";
|
|
578
578
|
disabled?: boolean;
|
|
579
579
|
settings?: boolean;
|
|
580
580
|
"v-slots"?: {
|
|
@@ -25,10 +25,10 @@ declare const _default: {
|
|
|
25
25
|
type: import("vue").PropType<IIcon>;
|
|
26
26
|
};
|
|
27
27
|
size: {
|
|
28
|
-
type: import("vue").PropType<"small" | "medium" | "large" | "x-large" | "x-small" | "xx-large" | "xxx-large" | "
|
|
28
|
+
type: import("vue").PropType<"small" | "medium" | "large" | "x-large" | "x-small" | "xx-large" | "xxx-large" | "full-screen" | "fill-space">;
|
|
29
29
|
required: false;
|
|
30
30
|
} & {
|
|
31
|
-
type: import("vue").PropType<"small" | "medium" | "large" | "x-large" | "x-small" | "xx-large" | "xxx-large" | "
|
|
31
|
+
type: import("vue").PropType<"small" | "medium" | "large" | "x-large" | "x-small" | "xx-large" | "xxx-large" | "full-screen" | "fill-space">;
|
|
32
32
|
required: false;
|
|
33
33
|
};
|
|
34
34
|
id: {
|
|
@@ -71,10 +71,10 @@ declare const _default: {
|
|
|
71
71
|
type: import("vue").PropType<IIcon>;
|
|
72
72
|
};
|
|
73
73
|
size: {
|
|
74
|
-
type: import("vue").PropType<"small" | "medium" | "large" | "x-large" | "x-small" | "xx-large" | "xxx-large" | "
|
|
74
|
+
type: import("vue").PropType<"small" | "medium" | "large" | "x-large" | "x-small" | "xx-large" | "xxx-large" | "full-screen" | "fill-space">;
|
|
75
75
|
required: false;
|
|
76
76
|
} & {
|
|
77
|
-
type: import("vue").PropType<"small" | "medium" | "large" | "x-large" | "x-small" | "xx-large" | "xxx-large" | "
|
|
77
|
+
type: import("vue").PropType<"small" | "medium" | "large" | "x-large" | "x-small" | "xx-large" | "xxx-large" | "full-screen" | "fill-space">;
|
|
78
78
|
required: false;
|
|
79
79
|
};
|
|
80
80
|
id: {
|
|
@@ -121,10 +121,10 @@ declare const _default: {
|
|
|
121
121
|
type: import("vue").PropType<IIcon>;
|
|
122
122
|
};
|
|
123
123
|
size: {
|
|
124
|
-
type: import("vue").PropType<"small" | "medium" | "large" | "x-large" | "x-small" | "xx-large" | "xxx-large" | "
|
|
124
|
+
type: import("vue").PropType<"small" | "medium" | "large" | "x-large" | "x-small" | "xx-large" | "xxx-large" | "full-screen" | "fill-space">;
|
|
125
125
|
required: false;
|
|
126
126
|
} & {
|
|
127
|
-
type: import("vue").PropType<"small" | "medium" | "large" | "x-large" | "x-small" | "xx-large" | "xxx-large" | "
|
|
127
|
+
type: import("vue").PropType<"small" | "medium" | "large" | "x-large" | "x-small" | "xx-large" | "xxx-large" | "full-screen" | "fill-space">;
|
|
128
128
|
required: false;
|
|
129
129
|
};
|
|
130
130
|
id: {
|
|
@@ -168,10 +168,10 @@ declare const _default: {
|
|
|
168
168
|
type: import("vue").PropType<IIcon>;
|
|
169
169
|
};
|
|
170
170
|
size: {
|
|
171
|
-
type: import("vue").PropType<"small" | "medium" | "large" | "x-large" | "x-small" | "xx-large" | "xxx-large" | "
|
|
171
|
+
type: import("vue").PropType<"small" | "medium" | "large" | "x-large" | "x-small" | "xx-large" | "xxx-large" | "full-screen" | "fill-space">;
|
|
172
172
|
required: false;
|
|
173
173
|
} & {
|
|
174
|
-
type: import("vue").PropType<"small" | "medium" | "large" | "x-large" | "x-small" | "xx-large" | "xxx-large" | "
|
|
174
|
+
type: import("vue").PropType<"small" | "medium" | "large" | "x-large" | "x-small" | "xx-large" | "xxx-large" | "full-screen" | "fill-space">;
|
|
175
175
|
required: false;
|
|
176
176
|
};
|
|
177
177
|
id: {
|
|
@@ -195,7 +195,7 @@ declare const _default: {
|
|
|
195
195
|
title?: string;
|
|
196
196
|
icon?: IIcon;
|
|
197
197
|
id?: GuidValue;
|
|
198
|
-
size?: "small" | "medium" | "large" | "x-large" | "x-small" | "xx-large" | "xxx-large" | "
|
|
198
|
+
size?: "small" | "medium" | "large" | "x-large" | "x-small" | "xx-large" | "xxx-large" | "full-screen" | "fill-space";
|
|
199
199
|
items?: JourneyMenuItem[];
|
|
200
200
|
"v-slots"?: {
|
|
201
201
|
default?: import("../DefineVueTypings").Slot<any[]>;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
export declare const BladeVariantDefinitions: readonly ["new", "edit", "info"];
|
|
2
2
|
export type BladeVariantTypes = typeof BladeVariantDefinitions[number];
|
|
3
3
|
export declare const BladeVariantTypesName = "BladeVariantTypes";
|
|
4
|
-
export declare const BladeSizeDefinitions: readonly ["x-small", "small", "medium", "large", "x-large", "xx-large", "xxx-large", "
|
|
4
|
+
export declare const BladeSizeDefinitions: readonly ["x-small", "small", "medium", "large", "x-large", "xx-large", "xxx-large", "full-screen", "fill-space"];
|
|
5
5
|
export type BladeSizeTypes = typeof BladeSizeDefinitions[number];
|
|
6
6
|
export declare const BladeSizeTypesName = "BladeSizeTypes";
|
|
7
7
|
export declare const BladeSizeWidths: {
|
|
@@ -107,7 +107,7 @@ export declare const useJourneyStore: () => {
|
|
|
107
107
|
};
|
|
108
108
|
blade(id: GuidValue): BladeInstance;
|
|
109
109
|
showBackButton(bladeId: GuidValue): boolean;
|
|
110
|
-
bladeWidth(size: BladeSizeTypes, bladeId: GuidValue): number;
|
|
110
|
+
bladeWidth(size: BladeSizeTypes, bladeId: GuidValue, scrollContainerLeftPosition?: number): number;
|
|
111
111
|
readonly isNested: boolean;
|
|
112
112
|
};
|
|
113
113
|
actions: {
|
|
@@ -105,10 +105,10 @@ export declare function useBlade(bladeId: GuidValue): {
|
|
|
105
105
|
type: import("vue").PropType<boolean>;
|
|
106
106
|
};
|
|
107
107
|
size: {
|
|
108
|
-
type: import("vue").PropType<"small" | "medium" | "large" | "x-large" | "x-small" | "xx-large" | "xxx-large" | "
|
|
108
|
+
type: import("vue").PropType<"small" | "medium" | "large" | "x-large" | "x-small" | "xx-large" | "xxx-large" | "full-screen" | "fill-space">;
|
|
109
109
|
required: false;
|
|
110
110
|
} & {
|
|
111
|
-
type: import("vue").PropType<"small" | "medium" | "large" | "x-large" | "x-small" | "xx-large" | "xxx-large" | "
|
|
111
|
+
type: import("vue").PropType<"small" | "medium" | "large" | "x-large" | "x-small" | "xx-large" | "xxx-large" | "full-screen" | "fill-space">;
|
|
112
112
|
required: false;
|
|
113
113
|
};
|
|
114
114
|
id: {
|
|
@@ -247,10 +247,10 @@ export declare function useBlade(bladeId: GuidValue): {
|
|
|
247
247
|
type: import("vue").PropType<boolean>;
|
|
248
248
|
};
|
|
249
249
|
size: {
|
|
250
|
-
type: import("vue").PropType<"small" | "medium" | "large" | "x-large" | "x-small" | "xx-large" | "xxx-large" | "
|
|
250
|
+
type: import("vue").PropType<"small" | "medium" | "large" | "x-large" | "x-small" | "xx-large" | "xxx-large" | "full-screen" | "fill-space">;
|
|
251
251
|
required: false;
|
|
252
252
|
} & {
|
|
253
|
-
type: import("vue").PropType<"small" | "medium" | "large" | "x-large" | "x-small" | "xx-large" | "xxx-large" | "
|
|
253
|
+
type: import("vue").PropType<"small" | "medium" | "large" | "x-large" | "x-small" | "xx-large" | "xxx-large" | "full-screen" | "fill-space">;
|
|
254
254
|
required: false;
|
|
255
255
|
};
|
|
256
256
|
id: {
|
|
@@ -387,10 +387,10 @@ export declare function useBlade(bladeId: GuidValue): {
|
|
|
387
387
|
type: import("vue").PropType<boolean>;
|
|
388
388
|
};
|
|
389
389
|
size: {
|
|
390
|
-
type: import("vue").PropType<"small" | "medium" | "large" | "x-large" | "x-small" | "xx-large" | "xxx-large" | "
|
|
390
|
+
type: import("vue").PropType<"small" | "medium" | "large" | "x-large" | "x-small" | "xx-large" | "xxx-large" | "full-screen" | "fill-space">;
|
|
391
391
|
required: false;
|
|
392
392
|
} & {
|
|
393
|
-
type: import("vue").PropType<"small" | "medium" | "large" | "x-large" | "x-small" | "xx-large" | "xxx-large" | "
|
|
393
|
+
type: import("vue").PropType<"small" | "medium" | "large" | "x-large" | "x-small" | "xx-large" | "xxx-large" | "full-screen" | "fill-space">;
|
|
394
394
|
required: false;
|
|
395
395
|
};
|
|
396
396
|
id: {
|
|
@@ -524,10 +524,10 @@ export declare function useBlade(bladeId: GuidValue): {
|
|
|
524
524
|
type: import("vue").PropType<boolean>;
|
|
525
525
|
};
|
|
526
526
|
size: {
|
|
527
|
-
type: import("vue").PropType<"small" | "medium" | "large" | "x-large" | "x-small" | "xx-large" | "xxx-large" | "
|
|
527
|
+
type: import("vue").PropType<"small" | "medium" | "large" | "x-large" | "x-small" | "xx-large" | "xxx-large" | "full-screen" | "fill-space">;
|
|
528
528
|
required: false;
|
|
529
529
|
} & {
|
|
530
|
-
type: import("vue").PropType<"small" | "medium" | "large" | "x-large" | "x-small" | "xx-large" | "xxx-large" | "
|
|
530
|
+
type: import("vue").PropType<"small" | "medium" | "large" | "x-large" | "x-small" | "xx-large" | "xxx-large" | "full-screen" | "fill-space">;
|
|
531
531
|
required: false;
|
|
532
532
|
};
|
|
533
533
|
id: {
|
|
@@ -569,7 +569,7 @@ export declare function useBlade(bladeId: GuidValue): {
|
|
|
569
569
|
icon?: import("@omnia/fx-models").IIcon;
|
|
570
570
|
delete?: boolean;
|
|
571
571
|
id?: GuidValue;
|
|
572
|
-
size?: "small" | "medium" | "large" | "x-large" | "x-small" | "xx-large" | "xxx-large" | "
|
|
572
|
+
size?: "small" | "medium" | "large" | "x-large" | "x-small" | "xx-large" | "xxx-large" | "full-screen" | "fill-space";
|
|
573
573
|
disabled?: boolean;
|
|
574
574
|
settings?: boolean;
|
|
575
575
|
"v-slots"?: {
|
|
@@ -25,6 +25,12 @@ export declare class LayoutCanvasStore extends Store implements ILayoutCanvasSto
|
|
|
25
25
|
height: string;
|
|
26
26
|
width: string;
|
|
27
27
|
scrolling: import("@omnia/fx-models").OScrollTypesCombination;
|
|
28
|
+
coordinates: {
|
|
29
|
+
readonly left: number;
|
|
30
|
+
readonly right: number;
|
|
31
|
+
readonly bottom: number;
|
|
32
|
+
readonly top: number;
|
|
33
|
+
};
|
|
28
34
|
};
|
|
29
35
|
events: {
|
|
30
36
|
onMutatedElementRef: MessageBusExposeOnlySubscription<HTMLElement>;
|
|
@@ -33,6 +39,12 @@ export declare class LayoutCanvasStore extends Store implements ILayoutCanvasSto
|
|
|
33
39
|
onMutatedHeight: MessageBusExposeOnlySubscription<string>;
|
|
34
40
|
onMutatedWidth: MessageBusExposeOnlySubscription<string>;
|
|
35
41
|
onMutatedScrolling: MessageBusExposeOnlySubscription<import("@omnia/fx-models").OScrollTypesCombination>;
|
|
42
|
+
onMutatedCoordinates: MessageBusExposeOnlySubscription<{
|
|
43
|
+
readonly left: number;
|
|
44
|
+
readonly right: number;
|
|
45
|
+
readonly bottom: number;
|
|
46
|
+
readonly top: number;
|
|
47
|
+
}>;
|
|
36
48
|
} & Record<string, IMessageBusTopicPublishSubscriber<any>>;
|
|
37
49
|
actions: {
|
|
38
50
|
onDispatching: {
|
|
@@ -48,6 +60,12 @@ export declare class LayoutCanvasStore extends Store implements ILayoutCanvasSto
|
|
|
48
60
|
calculateScrollHeight: {
|
|
49
61
|
subscribe(fn: (referenceElementIds: string[]) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
|
50
62
|
};
|
|
63
|
+
isElementNameStillInView: {
|
|
64
|
+
subscribe(fn: (elementName: string) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
|
65
|
+
};
|
|
66
|
+
isElementIdStillInView: {
|
|
67
|
+
subscribe(fn: (elementId: string) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
|
68
|
+
};
|
|
51
69
|
scrollToStart: {
|
|
52
70
|
subscribe(fn: () => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
|
53
71
|
};
|
|
@@ -77,6 +95,12 @@ export declare class LayoutCanvasStore extends Store implements ILayoutCanvasSto
|
|
|
77
95
|
calculateScrollHeight: {
|
|
78
96
|
subscribe(fn: (result: void, referenceElementIds: string[]) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
|
79
97
|
};
|
|
98
|
+
isElementNameStillInView: {
|
|
99
|
+
subscribe(fn: (result: boolean, elementName: string) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
|
100
|
+
};
|
|
101
|
+
isElementIdStillInView: {
|
|
102
|
+
subscribe(fn: (result: boolean, elementId: string) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
|
103
|
+
};
|
|
80
104
|
scrollToStart: {
|
|
81
105
|
subscribe(fn: (result: void) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
|
82
106
|
};
|
|
@@ -106,6 +130,12 @@ export declare class LayoutCanvasStore extends Store implements ILayoutCanvasSto
|
|
|
106
130
|
calculateScrollHeight: {
|
|
107
131
|
subscribe(fn: (failureReason: any, referenceElementIds: string[]) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
|
108
132
|
};
|
|
133
|
+
isElementNameStillInView: {
|
|
134
|
+
subscribe(fn: (failureReason: any, elementName: string) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
|
135
|
+
};
|
|
136
|
+
isElementIdStillInView: {
|
|
137
|
+
subscribe(fn: (failureReason: any, elementId: string) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
|
138
|
+
};
|
|
109
139
|
scrollToStart: {
|
|
110
140
|
subscribe(fn: (failureReason: any) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
|
111
141
|
};
|
|
@@ -127,13 +157,22 @@ export declare class LayoutCanvasStore extends Store implements ILayoutCanvasSto
|
|
|
127
157
|
setWidth: (width: string) => void;
|
|
128
158
|
setScrolling: (scrolling: import("@omnia/fx-models").OScrollTypesCombination) => void;
|
|
129
159
|
calculateScrollHeight: (referenceElementIds: string[]) => void;
|
|
160
|
+
isElementNameStillInView: (elementName: string) => boolean;
|
|
161
|
+
isElementIdStillInView: (elementId: string) => boolean;
|
|
130
162
|
scrollToStart: () => void;
|
|
131
163
|
scrollToElementId: (elementId: string, anchor?: "end" | "start") => void;
|
|
132
164
|
scrollToElementName: (elementName: string, anchor?: "end" | "start") => void;
|
|
133
165
|
scrollToElement: (element: HTMLElement, anchor?: "end" | "start") => void;
|
|
134
166
|
scrollToSelector: (selector: string, anchor?: "end" | "start") => void;
|
|
135
167
|
};
|
|
136
|
-
get: {
|
|
168
|
+
get: {
|
|
169
|
+
readonly coordinates: {
|
|
170
|
+
readonly left: number;
|
|
171
|
+
readonly right: number;
|
|
172
|
+
readonly bottom: number;
|
|
173
|
+
readonly top: number;
|
|
174
|
+
};
|
|
175
|
+
};
|
|
137
176
|
}>;
|
|
138
177
|
sizeContainer: StoreState<{
|
|
139
178
|
state: {
|
|
@@ -71,11 +71,12 @@ declare const _default: {
|
|
|
71
71
|
navigation?: SlotNavigationType;
|
|
72
72
|
header?: Func<[VNodeChild]>;
|
|
73
73
|
}>;
|
|
74
|
-
|
|
74
|
+
persistent: {
|
|
75
75
|
type: import("vue").PropType<boolean>;
|
|
76
|
-
|
|
77
|
-
|
|
76
|
+
required: false;
|
|
77
|
+
} & {
|
|
78
78
|
type: import("vue").PropType<boolean>;
|
|
79
|
+
required: false;
|
|
79
80
|
};
|
|
80
81
|
"v-model": {
|
|
81
82
|
type: import("vue").PropType<boolean>;
|
|
@@ -170,11 +171,12 @@ declare const _default: {
|
|
|
170
171
|
navigation?: SlotNavigationType;
|
|
171
172
|
header?: Func<[VNodeChild]>;
|
|
172
173
|
}>;
|
|
173
|
-
|
|
174
|
+
persistent: {
|
|
174
175
|
type: import("vue").PropType<boolean>;
|
|
175
|
-
|
|
176
|
-
|
|
176
|
+
required: false;
|
|
177
|
+
} & {
|
|
177
178
|
type: import("vue").PropType<boolean>;
|
|
179
|
+
required: false;
|
|
178
180
|
};
|
|
179
181
|
"v-model": {
|
|
180
182
|
type: import("vue").PropType<boolean>;
|
|
@@ -275,11 +277,12 @@ declare const _default: {
|
|
|
275
277
|
navigation?: SlotNavigationType;
|
|
276
278
|
header?: Func<[VNodeChild]>;
|
|
277
279
|
}>;
|
|
278
|
-
|
|
280
|
+
persistent: {
|
|
279
281
|
type: import("vue").PropType<boolean>;
|
|
280
|
-
|
|
281
|
-
|
|
282
|
+
required: false;
|
|
283
|
+
} & {
|
|
282
284
|
type: import("vue").PropType<boolean>;
|
|
285
|
+
required: false;
|
|
283
286
|
};
|
|
284
287
|
"v-model": {
|
|
285
288
|
type: import("vue").PropType<boolean>;
|
|
@@ -377,11 +380,12 @@ declare const _default: {
|
|
|
377
380
|
navigation?: SlotNavigationType;
|
|
378
381
|
header?: Func<[VNodeChild]>;
|
|
379
382
|
}>;
|
|
380
|
-
|
|
383
|
+
persistent: {
|
|
381
384
|
type: import("vue").PropType<boolean>;
|
|
382
|
-
|
|
383
|
-
|
|
385
|
+
required: false;
|
|
386
|
+
} & {
|
|
384
387
|
type: import("vue").PropType<boolean>;
|
|
388
|
+
required: false;
|
|
385
389
|
};
|
|
386
390
|
"v-model": {
|
|
387
391
|
type: import("vue").PropType<boolean>;
|
|
@@ -425,6 +429,7 @@ declare const _default: {
|
|
|
425
429
|
icon?: IIcon;
|
|
426
430
|
class?: String | String[];
|
|
427
431
|
size?: "small" | "medium" | "large" | "x-small" | "full";
|
|
432
|
+
persistent?: boolean;
|
|
428
433
|
"v-model"?: boolean;
|
|
429
434
|
"onUpdate:modelValue"?: (value: boolean) => any;
|
|
430
435
|
modelValue?: boolean;
|
|
@@ -439,8 +444,6 @@ declare const _default: {
|
|
|
439
444
|
header?: Func<[VNodeChild]>;
|
|
440
445
|
};
|
|
441
446
|
variant?: "default" | "confirm" | "app" | "save-cancel" | "ok-cancel" | "retry";
|
|
442
|
-
notPersistant?: boolean;
|
|
443
|
-
"not-persistant"?: boolean;
|
|
444
447
|
subTitle?: string;
|
|
445
448
|
"sub-title"?: string;
|
|
446
449
|
hiddenCloseButton?: boolean;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{}>>, () => JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{}>>, {}, true, {}, {}, {
|
|
3
|
+
P: {};
|
|
4
|
+
B: {};
|
|
5
|
+
D: {};
|
|
6
|
+
C: {};
|
|
7
|
+
M: {};
|
|
8
|
+
Defaults: {};
|
|
9
|
+
}, Readonly<import("vue").ExtractPropTypes<{}>>, () => JSX.Element, {}, {}, {}, {}>;
|
|
10
|
+
__isFragment?: never;
|
|
11
|
+
__isTeleport?: never;
|
|
12
|
+
__isSuspense?: never;
|
|
13
|
+
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{}>>, () => JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
|
14
|
+
propsDefinition: Omit<Readonly<{} & {}>, never>;
|
|
15
|
+
};
|
|
16
|
+
export default _default;
|
package/internal-do-not-import-from-here/ux/oxide/scrollcontainer/store/ScrollContainerStore.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { OScrollTypesCombination } from "@omnia/fx-models";
|
|
2
2
|
export declare const AnchorPositionValues: readonly ["start", "end"];
|
|
3
3
|
export type AnchorPosition = typeof AnchorPositionValues[number];
|
|
4
|
+
type Coordinates = Pick<DOMRect, "left" | "right" | "top" | "bottom">;
|
|
4
5
|
export declare const useScrollContainerStore: () => {
|
|
5
6
|
state: {
|
|
6
7
|
elementRef: HTMLElement;
|
|
@@ -9,6 +10,7 @@ export declare const useScrollContainerStore: () => {
|
|
|
9
10
|
height: string;
|
|
10
11
|
width: string;
|
|
11
12
|
scrolling: OScrollTypesCombination;
|
|
13
|
+
coordinates: Coordinates;
|
|
12
14
|
};
|
|
13
15
|
events: {
|
|
14
16
|
onMutatedElementRef: import("../../../..").MessageBusExposeOnlySubscription<HTMLElement>;
|
|
@@ -17,6 +19,7 @@ export declare const useScrollContainerStore: () => {
|
|
|
17
19
|
onMutatedHeight: import("../../../..").MessageBusExposeOnlySubscription<string>;
|
|
18
20
|
onMutatedWidth: import("../../../..").MessageBusExposeOnlySubscription<string>;
|
|
19
21
|
onMutatedScrolling: import("../../../..").MessageBusExposeOnlySubscription<OScrollTypesCombination>;
|
|
22
|
+
onMutatedCoordinates: import("../../../..").MessageBusExposeOnlySubscription<Coordinates>;
|
|
20
23
|
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
|
21
24
|
actions: {
|
|
22
25
|
onDispatching: {
|
|
@@ -32,6 +35,12 @@ export declare const useScrollContainerStore: () => {
|
|
|
32
35
|
calculateScrollHeight: {
|
|
33
36
|
subscribe(fn: (referenceElementIds: string[]) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
|
34
37
|
};
|
|
38
|
+
isElementNameStillInView: {
|
|
39
|
+
subscribe(fn: (elementName: string) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
|
40
|
+
};
|
|
41
|
+
isElementIdStillInView: {
|
|
42
|
+
subscribe(fn: (elementId: string) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
|
43
|
+
};
|
|
35
44
|
scrollToStart: {
|
|
36
45
|
subscribe(fn: () => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
|
37
46
|
};
|
|
@@ -61,6 +70,12 @@ export declare const useScrollContainerStore: () => {
|
|
|
61
70
|
calculateScrollHeight: {
|
|
62
71
|
subscribe(fn: (result: void, referenceElementIds: string[]) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
|
63
72
|
};
|
|
73
|
+
isElementNameStillInView: {
|
|
74
|
+
subscribe(fn: (result: boolean, elementName: string) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
|
75
|
+
};
|
|
76
|
+
isElementIdStillInView: {
|
|
77
|
+
subscribe(fn: (result: boolean, elementId: string) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
|
78
|
+
};
|
|
64
79
|
scrollToStart: {
|
|
65
80
|
subscribe(fn: (result: void) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
|
66
81
|
};
|
|
@@ -90,6 +105,12 @@ export declare const useScrollContainerStore: () => {
|
|
|
90
105
|
calculateScrollHeight: {
|
|
91
106
|
subscribe(fn: (failureReason: any, referenceElementIds: string[]) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
|
92
107
|
};
|
|
108
|
+
isElementNameStillInView: {
|
|
109
|
+
subscribe(fn: (failureReason: any, elementName: string) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
|
110
|
+
};
|
|
111
|
+
isElementIdStillInView: {
|
|
112
|
+
subscribe(fn: (failureReason: any, elementId: string) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
|
113
|
+
};
|
|
93
114
|
scrollToStart: {
|
|
94
115
|
subscribe(fn: (failureReason: any) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
|
95
116
|
};
|
|
@@ -111,11 +132,16 @@ export declare const useScrollContainerStore: () => {
|
|
|
111
132
|
setWidth: (width: string) => void;
|
|
112
133
|
setScrolling: (scrolling: OScrollTypesCombination) => void;
|
|
113
134
|
calculateScrollHeight: (referenceElementIds: string[]) => void;
|
|
135
|
+
isElementNameStillInView: (elementName: string) => boolean;
|
|
136
|
+
isElementIdStillInView: (elementId: string) => boolean;
|
|
114
137
|
scrollToStart: () => void;
|
|
115
138
|
scrollToElementId: (elementId: string, anchor?: AnchorPosition) => void;
|
|
116
139
|
scrollToElementName: (elementName: string, anchor?: AnchorPosition) => void;
|
|
117
140
|
scrollToElement: (element: HTMLElement, anchor?: AnchorPosition) => void;
|
|
118
141
|
scrollToSelector: (selector: string, anchor?: AnchorPosition) => void;
|
|
119
142
|
};
|
|
120
|
-
get: {
|
|
143
|
+
get: {
|
|
144
|
+
readonly coordinates: Coordinates;
|
|
145
|
+
};
|
|
121
146
|
};
|
|
147
|
+
export {};
|
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.117-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.117-dev",
|
|
24
24
|
"@microsoft/signalr": "6.0.1",
|
|
25
25
|
"broadcast-channel": "4.8.0",
|
|
26
26
|
"dayjs": "1.10.7",
|
|
@@ -1,115 +0,0 @@
|
|
|
1
|
-
import { PropertyDefinition, PropertyValue, PropertyDisplaySettingsBase, PropertyConfiguration, PropertyEditorSettingsBase } from "@omnia/fx-models";
|
|
2
|
-
import { VNodeChild } from "vue";
|
|
3
|
-
type ModelValueType = PropertyConfiguration<PropertyDefinition<PropertyValue, PropertyDisplaySettingsBase, PropertyEditorSettingsBase>>;
|
|
4
|
-
declare const _default: {
|
|
5
|
-
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
|
|
6
|
-
modelValue: import("vue").Prop<PropertyConfiguration<PropertyDefinition<PropertyValue, PropertyDisplaySettingsBase, PropertyEditorSettingsBase, import("@omnia/fx-models").PropertySetupBase>>, PropertyConfiguration<PropertyDefinition<PropertyValue, PropertyDisplaySettingsBase, PropertyEditorSettingsBase, import("@omnia/fx-models").PropertySetupBase>>>;
|
|
7
|
-
onConfigurationValid: import("vue").Prop<(validConfig?: PropertyConfiguration<PropertyDefinition<PropertyValue, PropertyDisplaySettingsBase, PropertyEditorSettingsBase, import("@omnia/fx-models").PropertySetupBase>>) => void, (validConfig?: PropertyConfiguration<PropertyDefinition<PropertyValue, PropertyDisplaySettingsBase, PropertyEditorSettingsBase, import("@omnia/fx-models").PropertySetupBase>>) => void>;
|
|
8
|
-
showLockConfiguration?: import("vue").Prop<boolean, boolean>;
|
|
9
|
-
renderEditSettings?: import("vue").Prop<boolean, boolean>;
|
|
10
|
-
defaultConfiguration?: import("vue").Prop<PropertyConfiguration<PropertyDefinition<PropertyValue, PropertyDisplaySettingsBase, PropertyEditorSettingsBase, import("@omnia/fx-models").PropertySetupBase>>, PropertyConfiguration<PropertyDefinition<PropertyValue, PropertyDisplaySettingsBase, PropertyEditorSettingsBase, import("@omnia/fx-models").PropertySetupBase>>>;
|
|
11
|
-
"v-model": import("vue").Prop<ModelValueType, ModelValueType>;
|
|
12
|
-
"onUpdate:modelValue": import("vue").Prop<(value: ModelValueType) => void, (value: ModelValueType) => void>;
|
|
13
|
-
hideDisplaySettings: import("vue").Prop<boolean, boolean>;
|
|
14
|
-
hideEditorSettings: import("vue").Prop<boolean, boolean>;
|
|
15
|
-
disabled: import("vue").Prop<boolean, boolean>;
|
|
16
|
-
"v-slots": import("vue").Prop<{
|
|
17
|
-
setup?(value: ModelValueType, disabled: boolean): VNodeChild;
|
|
18
|
-
appendDisplaySettings?(value: PropertyDisplaySettingsBase, disabled: boolean): VNodeChild;
|
|
19
|
-
appendEditorSettings?(value: PropertyEditorSettingsBase, disabled: boolean): VNodeChild;
|
|
20
|
-
}, {
|
|
21
|
-
setup?(value: ModelValueType, disabled: boolean): VNodeChild;
|
|
22
|
-
appendDisplaySettings?(value: PropertyDisplaySettingsBase, disabled: boolean): VNodeChild;
|
|
23
|
-
appendEditorSettings?(value: PropertyEditorSettingsBase, disabled: boolean): VNodeChild;
|
|
24
|
-
}>;
|
|
25
|
-
}>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
|
26
|
-
modelValue: import("vue").Prop<PropertyConfiguration<PropertyDefinition<PropertyValue, PropertyDisplaySettingsBase, PropertyEditorSettingsBase, import("@omnia/fx-models").PropertySetupBase>>, PropertyConfiguration<PropertyDefinition<PropertyValue, PropertyDisplaySettingsBase, PropertyEditorSettingsBase, import("@omnia/fx-models").PropertySetupBase>>>;
|
|
27
|
-
onConfigurationValid: import("vue").Prop<(validConfig?: PropertyConfiguration<PropertyDefinition<PropertyValue, PropertyDisplaySettingsBase, PropertyEditorSettingsBase, import("@omnia/fx-models").PropertySetupBase>>) => void, (validConfig?: PropertyConfiguration<PropertyDefinition<PropertyValue, PropertyDisplaySettingsBase, PropertyEditorSettingsBase, import("@omnia/fx-models").PropertySetupBase>>) => void>;
|
|
28
|
-
showLockConfiguration?: import("vue").Prop<boolean, boolean>;
|
|
29
|
-
renderEditSettings?: import("vue").Prop<boolean, boolean>;
|
|
30
|
-
defaultConfiguration?: import("vue").Prop<PropertyConfiguration<PropertyDefinition<PropertyValue, PropertyDisplaySettingsBase, PropertyEditorSettingsBase, import("@omnia/fx-models").PropertySetupBase>>, PropertyConfiguration<PropertyDefinition<PropertyValue, PropertyDisplaySettingsBase, PropertyEditorSettingsBase, import("@omnia/fx-models").PropertySetupBase>>>;
|
|
31
|
-
"v-model": import("vue").Prop<ModelValueType, ModelValueType>;
|
|
32
|
-
"onUpdate:modelValue": import("vue").Prop<(value: ModelValueType) => void, (value: ModelValueType) => void>;
|
|
33
|
-
hideDisplaySettings: import("vue").Prop<boolean, boolean>;
|
|
34
|
-
hideEditorSettings: import("vue").Prop<boolean, boolean>;
|
|
35
|
-
disabled: import("vue").Prop<boolean, boolean>;
|
|
36
|
-
"v-slots": import("vue").Prop<{
|
|
37
|
-
setup?(value: ModelValueType, disabled: boolean): VNodeChild;
|
|
38
|
-
appendDisplaySettings?(value: PropertyDisplaySettingsBase, disabled: boolean): VNodeChild;
|
|
39
|
-
appendEditorSettings?(value: PropertyEditorSettingsBase, disabled: boolean): VNodeChild;
|
|
40
|
-
}, {
|
|
41
|
-
setup?(value: ModelValueType, disabled: boolean): VNodeChild;
|
|
42
|
-
appendDisplaySettings?(value: PropertyDisplaySettingsBase, disabled: boolean): VNodeChild;
|
|
43
|
-
appendEditorSettings?(value: PropertyEditorSettingsBase, disabled: boolean): VNodeChild;
|
|
44
|
-
}>;
|
|
45
|
-
}>>, {}, true, {}, {}, {
|
|
46
|
-
P: {};
|
|
47
|
-
B: {};
|
|
48
|
-
D: {};
|
|
49
|
-
C: {};
|
|
50
|
-
M: {};
|
|
51
|
-
Defaults: {};
|
|
52
|
-
}, Readonly<import("vue").ExtractPropTypes<{
|
|
53
|
-
modelValue: import("vue").Prop<PropertyConfiguration<PropertyDefinition<PropertyValue, PropertyDisplaySettingsBase, PropertyEditorSettingsBase, import("@omnia/fx-models").PropertySetupBase>>, PropertyConfiguration<PropertyDefinition<PropertyValue, PropertyDisplaySettingsBase, PropertyEditorSettingsBase, import("@omnia/fx-models").PropertySetupBase>>>;
|
|
54
|
-
onConfigurationValid: import("vue").Prop<(validConfig?: PropertyConfiguration<PropertyDefinition<PropertyValue, PropertyDisplaySettingsBase, PropertyEditorSettingsBase, import("@omnia/fx-models").PropertySetupBase>>) => void, (validConfig?: PropertyConfiguration<PropertyDefinition<PropertyValue, PropertyDisplaySettingsBase, PropertyEditorSettingsBase, import("@omnia/fx-models").PropertySetupBase>>) => void>;
|
|
55
|
-
showLockConfiguration?: import("vue").Prop<boolean, boolean>;
|
|
56
|
-
renderEditSettings?: import("vue").Prop<boolean, boolean>;
|
|
57
|
-
defaultConfiguration?: import("vue").Prop<PropertyConfiguration<PropertyDefinition<PropertyValue, PropertyDisplaySettingsBase, PropertyEditorSettingsBase, import("@omnia/fx-models").PropertySetupBase>>, PropertyConfiguration<PropertyDefinition<PropertyValue, PropertyDisplaySettingsBase, PropertyEditorSettingsBase, import("@omnia/fx-models").PropertySetupBase>>>;
|
|
58
|
-
"v-model": import("vue").Prop<ModelValueType, ModelValueType>;
|
|
59
|
-
"onUpdate:modelValue": import("vue").Prop<(value: ModelValueType) => void, (value: ModelValueType) => void>;
|
|
60
|
-
hideDisplaySettings: import("vue").Prop<boolean, boolean>;
|
|
61
|
-
hideEditorSettings: import("vue").Prop<boolean, boolean>;
|
|
62
|
-
disabled: import("vue").Prop<boolean, boolean>;
|
|
63
|
-
"v-slots": import("vue").Prop<{
|
|
64
|
-
setup?(value: ModelValueType, disabled: boolean): VNodeChild;
|
|
65
|
-
appendDisplaySettings?(value: PropertyDisplaySettingsBase, disabled: boolean): VNodeChild;
|
|
66
|
-
appendEditorSettings?(value: PropertyEditorSettingsBase, disabled: boolean): VNodeChild;
|
|
67
|
-
}, {
|
|
68
|
-
setup?(value: ModelValueType, disabled: boolean): VNodeChild;
|
|
69
|
-
appendDisplaySettings?(value: PropertyDisplaySettingsBase, disabled: boolean): VNodeChild;
|
|
70
|
-
appendEditorSettings?(value: PropertyEditorSettingsBase, disabled: boolean): VNodeChild;
|
|
71
|
-
}>;
|
|
72
|
-
}>>, {}, {}, {}, {}, {}>;
|
|
73
|
-
__isFragment?: never;
|
|
74
|
-
__isTeleport?: never;
|
|
75
|
-
__isSuspense?: never;
|
|
76
|
-
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
77
|
-
modelValue: import("vue").Prop<PropertyConfiguration<PropertyDefinition<PropertyValue, PropertyDisplaySettingsBase, PropertyEditorSettingsBase, import("@omnia/fx-models").PropertySetupBase>>, PropertyConfiguration<PropertyDefinition<PropertyValue, PropertyDisplaySettingsBase, PropertyEditorSettingsBase, import("@omnia/fx-models").PropertySetupBase>>>;
|
|
78
|
-
onConfigurationValid: import("vue").Prop<(validConfig?: PropertyConfiguration<PropertyDefinition<PropertyValue, PropertyDisplaySettingsBase, PropertyEditorSettingsBase, import("@omnia/fx-models").PropertySetupBase>>) => void, (validConfig?: PropertyConfiguration<PropertyDefinition<PropertyValue, PropertyDisplaySettingsBase, PropertyEditorSettingsBase, import("@omnia/fx-models").PropertySetupBase>>) => void>;
|
|
79
|
-
showLockConfiguration?: import("vue").Prop<boolean, boolean>;
|
|
80
|
-
renderEditSettings?: import("vue").Prop<boolean, boolean>;
|
|
81
|
-
defaultConfiguration?: import("vue").Prop<PropertyConfiguration<PropertyDefinition<PropertyValue, PropertyDisplaySettingsBase, PropertyEditorSettingsBase, import("@omnia/fx-models").PropertySetupBase>>, PropertyConfiguration<PropertyDefinition<PropertyValue, PropertyDisplaySettingsBase, PropertyEditorSettingsBase, import("@omnia/fx-models").PropertySetupBase>>>;
|
|
82
|
-
"v-model": import("vue").Prop<ModelValueType, ModelValueType>;
|
|
83
|
-
"onUpdate:modelValue": import("vue").Prop<(value: ModelValueType) => void, (value: ModelValueType) => void>;
|
|
84
|
-
hideDisplaySettings: import("vue").Prop<boolean, boolean>;
|
|
85
|
-
hideEditorSettings: import("vue").Prop<boolean, boolean>;
|
|
86
|
-
disabled: import("vue").Prop<boolean, boolean>;
|
|
87
|
-
"v-slots": import("vue").Prop<{
|
|
88
|
-
setup?(value: ModelValueType, disabled: boolean): VNodeChild;
|
|
89
|
-
appendDisplaySettings?(value: PropertyDisplaySettingsBase, disabled: boolean): VNodeChild;
|
|
90
|
-
appendEditorSettings?(value: PropertyEditorSettingsBase, disabled: boolean): VNodeChild;
|
|
91
|
-
}, {
|
|
92
|
-
setup?(value: ModelValueType, disabled: boolean): VNodeChild;
|
|
93
|
-
appendDisplaySettings?(value: PropertyDisplaySettingsBase, disabled: boolean): VNodeChild;
|
|
94
|
-
appendEditorSettings?(value: PropertyEditorSettingsBase, disabled: boolean): VNodeChild;
|
|
95
|
-
}>;
|
|
96
|
-
}>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
|
97
|
-
propsDefinition: Omit<Readonly<{} & {
|
|
98
|
-
disabled?: boolean;
|
|
99
|
-
"v-model"?: ModelValueType;
|
|
100
|
-
"onUpdate:modelValue"?: (value: ModelValueType) => void;
|
|
101
|
-
modelValue?: PropertyConfiguration<PropertyDefinition<PropertyValue, PropertyDisplaySettingsBase, PropertyEditorSettingsBase, import("@omnia/fx-models").PropertySetupBase>>;
|
|
102
|
-
"v-slots"?: {
|
|
103
|
-
setup?(value: ModelValueType, disabled: boolean): VNodeChild;
|
|
104
|
-
appendDisplaySettings?(value: PropertyDisplaySettingsBase, disabled: boolean): VNodeChild;
|
|
105
|
-
appendEditorSettings?(value: PropertyEditorSettingsBase, disabled: boolean): VNodeChild;
|
|
106
|
-
};
|
|
107
|
-
onConfigurationValid?: (validConfig?: PropertyConfiguration<PropertyDefinition<PropertyValue, PropertyDisplaySettingsBase, PropertyEditorSettingsBase, import("@omnia/fx-models").PropertySetupBase>>) => void;
|
|
108
|
-
showLockConfiguration?: boolean;
|
|
109
|
-
renderEditSettings?: boolean;
|
|
110
|
-
defaultConfiguration?: PropertyConfiguration<PropertyDefinition<PropertyValue, PropertyDisplaySettingsBase, PropertyEditorSettingsBase, import("@omnia/fx-models").PropertySetupBase>>;
|
|
111
|
-
hideDisplaySettings?: boolean;
|
|
112
|
-
hideEditorSettings?: boolean;
|
|
113
|
-
}>, never>;
|
|
114
|
-
};
|
|
115
|
-
export default _default;
|