@omnia/fx 8.0.147-dev → 8.0.148-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/stores/VersionedLayoutStore.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/aurora/store/VelcronDefinitionStore.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/oxide/select/Select.d.ts +3 -3
- package/internal-do-not-import-from-here/ux/use/UseIcon.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/velcron/components/definitionpicker/{DefinitionPicker.css.d.ts → VelcronDefinitionPicker.css.d.ts} +1 -0
- package/internal-do-not-import-from-here/ux/velcron/components/definitionpicker/{DefinitionPicker.d.ts → VelcronDefinitionPicker.d.ts} +31 -2
- package/internal-do-not-import-from-here/ux/velcron/core/models/VelcronDefinitions.d.ts +4 -2
- package/internal-do-not-import-from-here/ux/velcron/core/stores/VelcronColorSchema.d.ts +0 -20
- package/internal-do-not-import-from-here/ux/velcron/editor/VelcronEditor.css.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/velcron/editor/components/ComponentStyles.css.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/velcron/editor/components/ContextMenu.d.ts +67 -0
- package/internal-do-not-import-from-here/ux/velcron/editor/components/EditComponentPane.d.ts +54 -15
- package/internal-do-not-import-from-here/ux/velcron/editor/components/EditDataPane.d.ts +54 -15
- package/internal-do-not-import-from-here/ux/velcron/editor/components/EditDefinitionPropertiesPane.d.ts +54 -15
- package/internal-do-not-import-from-here/ux/velcron/editor/models/Shared.d.ts +2 -1
- package/internal-do-not-import-from-here/ux/velcron/editor/models/VelcronDescriptors.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/velcron/renderer/propertyeditors/PropertyEditorCreator.d.ts +21 -0
- package/internal-do-not-import-from-here/ux/versionedlayout/editor/VersionedLayoutDefinitionEditorItem.d.ts +188 -0
- package/internal-do-not-import-from-here/ux/versionedlayout/editor/panels/Panels.d.ts +54 -15
- package/internal-do-not-import-from-here/ux/versionedlayout/editor/panels/versionhistory/VersionHistory.d.ts +55 -24
- package/internal-do-not-import-from-here/wctypings.d.ts +25 -1
- package/package.json +2 -2
- package/internal-do-not-import-from-here/ux/velcron/editor/components/CodeEditor.css.d.ts +0 -3
- package/internal-do-not-import-from-here/ux/versionedlayout/editor/panels/versionhistory/VersionUserInfo.d.ts +0 -21
- /package/internal-do-not-import-from-here/ux/velcron/components/definitionpicker/{DefinitionPreview.d.ts → VelcronDefinitionPreview.d.ts} +0 -0
@@ -1,5 +1,5 @@
|
|
1
1
|
import { SubscriptionHandler } from "../core";
|
2
|
-
import { VersionedAlternateLayout, VersionedLayout, VersionedLayoutId, VersionedLayoutDefinition, DisplayBreakpointVersionedAlternateLayoutMapping, GuidValue, ICheckedoutVersionedData, IVersionedData, IVersionedDataIdentifier, IVersionReference, LatestReferenceResponse
|
2
|
+
import { VersionedAlternateLayout, VersionedLayout, VersionedLayoutId, VersionedLayoutDefinition, DisplayBreakpointVersionedAlternateLayoutMapping, GuidValue, ICheckedoutVersionedData, IVersionedData, IVersionedDataIdentifier, IVersionReference, LatestReferenceResponse } from "../models";
|
3
3
|
import { Store } from "./Store";
|
4
4
|
export declare class VersionedLayoutStore extends Store {
|
5
5
|
private versionedLayoutService;
|
@@ -26,7 +26,7 @@ export declare class VersionedLayoutStore extends Store {
|
|
26
26
|
ensureLoadByIdentifier: import("./Store").StoreAction<unknown, (identifier: IVersionedDataIdentifier, useCache?: unknown) => void, (result: void, identifier: IVersionedDataIdentifier, useCache?: unknown) => void, (failureReason: any, identifier: IVersionedDataIdentifier, useCache?: unknown) => void, (identifier: IVersionedDataIdentifier, useCache?: unknown) => Promise<void>>;
|
27
27
|
ensureLoadById: import("./Store").StoreAction<unknown, (versionedLayoutId: VersionedLayoutId, useCache?: unknown) => void, (result: void, versionedLayoutId: VersionedLayoutId, useCache?: unknown) => void, (failureReason: any, versionedLayoutId: VersionedLayoutId, useCache?: unknown) => void, (versionedLayoutId: VersionedLayoutId, useCache?: unknown) => Promise<void>>;
|
28
28
|
ensureLoadDefinition: import("./Store").StoreAction<unknown, (version: IVersionReference) => void, (result: void, version: IVersionReference) => void, (failureReason: any, version: IVersionReference) => void, (version: IVersionReference) => Promise<void>>;
|
29
|
-
ensureLoadDefinitionWithParentLayout: import("./Store").StoreAction<unknown, (version: IVersionReference, parentVersion: IVersionReference, force?: boolean) => void, (result:
|
29
|
+
ensureLoadDefinitionWithParentLayout: import("./Store").StoreAction<unknown, (version: IVersionReference, parentVersion: IVersionReference, force?: boolean) => void, (result: unknown, version: IVersionReference, parentVersion: IVersionReference, force?: boolean) => void, (failureReason: any, version: IVersionReference, parentVersion: IVersionReference, force?: boolean) => void, (version: IVersionReference, parentVersion: IVersionReference, force?: boolean) => Promise<unknown>>;
|
30
30
|
ensureLoadDisplayBreakpointMapping: import("./Store").StoreAction<unknown, (versionedLayout: VersionedLayout, useCache?: unknown) => void, (result: DisplayBreakpointVersionedAlternateLayoutMapping, versionedLayout: VersionedLayout, useCache?: unknown) => void, (failureReason: any, versionedLayout: VersionedLayout, useCache?: unknown) => void, (versionedLayout: VersionedLayout, useCache?: unknown) => Promise<DisplayBreakpointVersionedAlternateLayoutMapping>>;
|
31
31
|
ensureLoadByProfileAndTypeId: import("./Store").StoreAction<unknown, (businessProfileId: GuidValue, layoutTypeId: GuidValue) => void, (result: void, businessProfileId: GuidValue, layoutTypeId: GuidValue) => void, (failureReason: any, businessProfileId: GuidValue, layoutTypeId: GuidValue) => void, (businessProfileId: GuidValue, layoutTypeId: GuidValue) => Promise<void>>;
|
32
32
|
ensureLoadByTypeIds: import("./Store").StoreAction<unknown, (layoutTypeIds: GuidValue[]) => void, (result: void, layoutTypeIds: GuidValue[]) => void, (failureReason: any, layoutTypeIds: GuidValue[]) => void, (layoutTypeIds: GuidValue[]) => Promise<void>>;
|
@@ -23,7 +23,7 @@ export declare const useVelcronDefinitionStore: () => {
|
|
23
23
|
subscribe(fn: (result: void, registration: VelcronDefinitionRegistration<object>) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
24
24
|
};
|
25
25
|
load: {
|
26
|
-
subscribe(fn: (result:
|
26
|
+
subscribe(fn: (result: void) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
27
27
|
};
|
28
28
|
};
|
29
29
|
onFailure: {
|
@@ -36,7 +36,7 @@ export declare const useVelcronDefinitionStore: () => {
|
|
36
36
|
};
|
37
37
|
} & {
|
38
38
|
addDefinition(registration: VelcronDefinitionRegistration): void;
|
39
|
-
load(): Promise<
|
39
|
+
load(): Promise<void>;
|
40
40
|
};
|
41
41
|
events: {
|
42
42
|
onMutatedDefinitions: import("@omnia/fx").MessageBusExposeOnlySubscription<VelcronDefinitionRegistration<object>[]>;
|
@@ -5263,7 +5263,7 @@ declare const _default: <TItem extends readonly any[], TModel extends unknown>(p
|
|
5263
5263
|
"onUpdate:focused"?: (value: boolean) => any;
|
5264
5264
|
"onClick:button"?: (value: any) => any;
|
5265
5265
|
"onUpdate:search"?: (value: string) => any;
|
5266
|
-
}, "container" | "class" | "label" | "multiple" | "disabled" | "readonly" | "colorSchemaType" | "
|
5266
|
+
}, "container" | "class" | "label" | "multiple" | "disabled" | "readonly" | "colorSchemaType" | "toned" | "items" | "colors" | "v-model" | "onUpdate:modelValue" | "modelValue" | "variant" | "loading" | "searchable" | "rules" | "hint" | "persistentHint" | "clearable" | "itemTitle" | "itemValue" | "returnObject" | "hideNoData" | "menuIcon" | "hideSelected"> & {
|
5267
5267
|
"v-slots"?: {
|
5268
5268
|
default?: import("vue").Slot;
|
5269
5269
|
} & {
|
@@ -5272,7 +5272,7 @@ declare const _default: <TItem extends readonly any[], TModel extends unknown>(p
|
|
5272
5272
|
item?: (item: OSelectRenderingItem<ItemType<TItem>, any>, index: Number) => VNodeChild;
|
5273
5273
|
"append-item"?: () => VNodeChild;
|
5274
5274
|
};
|
5275
|
-
} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "container" | "class" | "label" | "multiple" | "disabled" | "readonly" | "colorSchemaType" | "
|
5275
|
+
} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "container" | "class" | "label" | "multiple" | "disabled" | "readonly" | "colorSchemaType" | "toned" | "items" | "colors" | "v-model" | "onUpdate:modelValue" | "modelValue" | "variant" | "loading" | "searchable" | "rules" | "hint" | "persistentHint" | "clearable" | "itemTitle" | "itemValue" | "returnObject" | "hideNoData" | "menuIcon" | "hideSelected" | "emit:update:modelValue" | "emit:click:button" | "emit:update:search" | "emit:update:focused" | "slot:chip" | "slot:selection" | "slot:item" | "slot:append-item">) => {
|
5276
5276
|
$: import("vue").ComponentInternalInstance;
|
5277
5277
|
$data: {};
|
5278
5278
|
$props: {};
|
@@ -10573,7 +10573,7 @@ declare const _default: <TItem extends readonly any[], TModel extends unknown>(p
|
|
10573
10573
|
"onUpdate:focused"?: (value: boolean) => any;
|
10574
10574
|
"onClick:button"?: (value: any) => any;
|
10575
10575
|
"onUpdate:search"?: (value: string) => any;
|
10576
|
-
} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "container" | "class" | "label" | "multiple" | "disabled" | "readonly" | "colorSchemaType" | "
|
10576
|
+
} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "container" | "class" | "label" | "multiple" | "disabled" | "readonly" | "colorSchemaType" | "toned" | "items" | "colors" | "v-model" | "onUpdate:modelValue" | "modelValue" | "variant" | "loading" | "searchable" | "rules" | "hint" | "persistentHint" | "clearable" | "itemTitle" | "itemValue" | "returnObject" | "hideNoData" | "menuIcon" | "hideSelected">;
|
10577
10577
|
} & import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
10578
10578
|
[key: string]: any;
|
10579
10579
|
}>;
|
@@ -1,5 +1,6 @@
|
|
1
|
-
import { GuidValue, IIcon, VelcronState } from "@omnia/fx-models";
|
1
|
+
import { GuidValue, IIcon, VelcronDefitinionRegistrationsTypes, VelcronState } from "@omnia/fx-models";
|
2
2
|
import { VNodeChild } from "vue";
|
3
|
+
type Variant = "dialog" | "panel" | "editor" | "default";
|
3
4
|
declare const _default: {
|
4
5
|
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
|
5
6
|
"v-slots": import("vue").Prop<{
|
@@ -24,6 +25,11 @@ declare const _default: {
|
|
24
25
|
allowEdit: {
|
25
26
|
type: import("vue").PropType<boolean>;
|
26
27
|
};
|
28
|
+
variant: {
|
29
|
+
type: import("vue").PropType<Variant>;
|
30
|
+
} & {
|
31
|
+
type: import("vue").PropType<Variant>;
|
32
|
+
};
|
27
33
|
filters: {
|
28
34
|
type: import("vue").PropType<string[]>;
|
29
35
|
} & {
|
@@ -110,11 +116,13 @@ declare const _default: {
|
|
110
116
|
colors?: any;
|
111
117
|
}>> & {
|
112
118
|
"onUpdate:modelValue"?: (value: boolean) => any;
|
119
|
+
onAdd?: (category: VelcronDefitinionRegistrationsTypes) => any;
|
113
120
|
onSelected?: (id: GuidValue) => any;
|
114
121
|
"onDefinition:enter"?: (id: GuidValue) => any;
|
115
122
|
"onDefinition:leave"?: (id: GuidValue) => any;
|
116
123
|
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
117
124
|
selected: (id: GuidValue) => any;
|
125
|
+
add: (category: VelcronDefitinionRegistrationsTypes) => any;
|
118
126
|
"update:modelValue": (value: boolean) => any;
|
119
127
|
"definition:enter": (id: GuidValue) => any;
|
120
128
|
"definition:leave": (id: GuidValue) => any;
|
@@ -141,6 +149,11 @@ declare const _default: {
|
|
141
149
|
allowEdit: {
|
142
150
|
type: import("vue").PropType<boolean>;
|
143
151
|
};
|
152
|
+
variant: {
|
153
|
+
type: import("vue").PropType<Variant>;
|
154
|
+
} & {
|
155
|
+
type: import("vue").PropType<Variant>;
|
156
|
+
};
|
144
157
|
filters: {
|
145
158
|
type: import("vue").PropType<string[]>;
|
146
159
|
} & {
|
@@ -227,6 +240,7 @@ declare const _default: {
|
|
227
240
|
colors?: any;
|
228
241
|
}>> & {
|
229
242
|
"onUpdate:modelValue"?: (value: boolean) => any;
|
243
|
+
onAdd?: (category: VelcronDefitinionRegistrationsTypes) => any;
|
230
244
|
onSelected?: (id: GuidValue) => any;
|
231
245
|
"onDefinition:enter"?: (id: GuidValue) => any;
|
232
246
|
"onDefinition:leave"?: (id: GuidValue) => any;
|
@@ -264,6 +278,11 @@ declare const _default: {
|
|
264
278
|
allowEdit: {
|
265
279
|
type: import("vue").PropType<boolean>;
|
266
280
|
};
|
281
|
+
variant: {
|
282
|
+
type: import("vue").PropType<Variant>;
|
283
|
+
} & {
|
284
|
+
type: import("vue").PropType<Variant>;
|
285
|
+
};
|
267
286
|
filters: {
|
268
287
|
type: import("vue").PropType<string[]>;
|
269
288
|
} & {
|
@@ -350,6 +369,7 @@ declare const _default: {
|
|
350
369
|
colors?: any;
|
351
370
|
}>> & {
|
352
371
|
"onUpdate:modelValue"?: (value: boolean) => any;
|
372
|
+
onAdd?: (category: VelcronDefitinionRegistrationsTypes) => any;
|
353
373
|
onSelected?: (id: GuidValue) => any;
|
354
374
|
"onDefinition:enter"?: (id: GuidValue) => any;
|
355
375
|
"onDefinition:leave"?: (id: GuidValue) => any;
|
@@ -384,6 +404,11 @@ declare const _default: {
|
|
384
404
|
allowEdit: {
|
385
405
|
type: import("vue").PropType<boolean>;
|
386
406
|
};
|
407
|
+
variant: {
|
408
|
+
type: import("vue").PropType<Variant>;
|
409
|
+
} & {
|
410
|
+
type: import("vue").PropType<Variant>;
|
411
|
+
};
|
387
412
|
filters: {
|
388
413
|
type: import("vue").PropType<string[]>;
|
389
414
|
} & {
|
@@ -470,11 +495,13 @@ declare const _default: {
|
|
470
495
|
colors?: any;
|
471
496
|
}>> & {
|
472
497
|
"onUpdate:modelValue"?: (value: boolean) => any;
|
498
|
+
onAdd?: (category: VelcronDefitinionRegistrationsTypes) => any;
|
473
499
|
onSelected?: (id: GuidValue) => any;
|
474
500
|
"onDefinition:enter"?: (id: GuidValue) => any;
|
475
501
|
"onDefinition:leave"?: (id: GuidValue) => any;
|
476
502
|
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
477
503
|
selected: (id: GuidValue) => any;
|
504
|
+
add: (category: VelcronDefitinionRegistrationsTypes) => any;
|
478
505
|
"update:modelValue": (value: boolean) => any;
|
479
506
|
"definition:enter": (id: GuidValue) => any;
|
480
507
|
"definition:leave": (id: GuidValue) => any;
|
@@ -560,13 +587,15 @@ declare const _default: {
|
|
560
587
|
} & {
|
561
588
|
activator?: () => VNodeChild;
|
562
589
|
};
|
590
|
+
variant?: Variant;
|
563
591
|
allowEdit?: boolean;
|
564
592
|
previewState?: VelcronState;
|
565
593
|
"allow-edit"?: boolean;
|
566
594
|
"preview-state"?: VelcronState;
|
567
595
|
exclusions?: GuidValue[];
|
568
|
-
}>, "onUpdate:modelValue" | "onSelected" | "onDefinition:enter" | "onDefinition:leave"> & {
|
596
|
+
}>, "onUpdate:modelValue" | "onAdd" | "onSelected" | "onDefinition:enter" | "onDefinition:leave"> & {
|
569
597
|
"onUpdate:modelValue"?: (value: boolean) => any;
|
598
|
+
onAdd?: (category: VelcronDefitinionRegistrationsTypes) => any;
|
570
599
|
onSelected?: (id: GuidValue) => any;
|
571
600
|
"onDefinition:enter"?: (id: GuidValue) => any;
|
572
601
|
"onDefinition:leave"?: (id: GuidValue) => any;
|
@@ -124,8 +124,6 @@ export interface VelcronColorStyling {
|
|
124
124
|
color?: string;
|
125
125
|
}
|
126
126
|
export interface VelcronTextStyling {
|
127
|
-
text: string;
|
128
|
-
placeholder?: string;
|
129
127
|
typography?: string;
|
130
128
|
size?: string;
|
131
129
|
}
|
@@ -181,6 +179,8 @@ export interface VelcronCardDefinition extends VelcronDefinition, VelcronColorSt
|
|
181
179
|
}
|
182
180
|
export interface VelcronTextDefinition extends VelcronDefinitionWithEditMode, VelcronColorStyling, VelcronTextStyling {
|
183
181
|
type: "text";
|
182
|
+
value: VelcronBindableProp<string>;
|
183
|
+
placeholder?: VelcronBindableProp<string>;
|
184
184
|
editLabel?: VelcronBindableProp;
|
185
185
|
lineClamp?: number;
|
186
186
|
noWrap?: boolean;
|
@@ -246,6 +246,8 @@ export interface VelcronIconDefinition extends VelcronDefinition, VelcronColorSt
|
|
246
246
|
}
|
247
247
|
export interface VelcronMarkdownDefinition extends VelcronDefinitionWithEditMode, VelcronColorStyling, VelcronTextStyling {
|
248
248
|
type: "markdown";
|
249
|
+
value: VelcronBindableProp<string>;
|
250
|
+
placeholder: VelcronBindableProp<string>;
|
249
251
|
events: VelcronOnUpdatedEvent;
|
250
252
|
}
|
251
253
|
export interface VelcronRiveDefinition extends VelcronDefinition {
|
@@ -9,26 +9,6 @@ export declare const useVelcronColorSchemaStore: (newStateWithName?: string) =>
|
|
9
9
|
isContainer: boolean;
|
10
10
|
name: string;
|
11
11
|
colorSchemaType: "info" | "error" | "primary" | "secondary" | ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "background" | "dynamic";
|
12
|
-
themeStore: {
|
13
|
-
state: {
|
14
|
-
currentTheme: import("@omnia/fx-models").ThemeDefinitionV2;
|
15
|
-
};
|
16
|
-
get: {
|
17
|
-
componentBlueprints: () => void;
|
18
|
-
colorSchema: (colorSchemaType: "info" | "error" | "primary" | "secondary" | ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "background" | "dynamic") => ColorSchema;
|
19
|
-
spacing: () => import("@omnia/fx-models").SpacingDefinition;
|
20
|
-
typography: (typographyType: "title" | "text" | "navigation" | import("@omnia/fx-models").TypographyTypes, size: "xs" | "s" | "m" | "l" | "xl" | import("@omnia/fx-models").TypographySizes) => any;
|
21
|
-
color: (colorSchemaType: "info" | "error" | "primary" | "secondary" | ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "background" | "dynamic", colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes) => string;
|
22
|
-
colorDefinition: (colorSchemaType: "info" | "error" | "primary" | "secondary" | ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "background" | "dynamic", colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes) => ColorDefinition;
|
23
|
-
complementaryColorType: (colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes) => import("@omnia/fx-models").ColorTypes;
|
24
|
-
complementaryColor: (colorSchemaType: "info" | "error" | "primary" | "secondary" | ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "background" | "dynamic", colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes) => string;
|
25
|
-
complementaryColorDefinition: (colorSchemaType: "info" | "error" | "primary" | "secondary" | ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "background" | "dynamic", colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes) => ColorDefinition;
|
26
|
-
currentTheme: () => import("@omnia/fx-models").ThemeDefinitionV2;
|
27
|
-
};
|
28
|
-
actions: {
|
29
|
-
setTheme(newTheme: import("@omnia/fx-models").ThemeDefinitionV2): void;
|
30
|
-
};
|
31
|
-
};
|
32
12
|
id: import("@omnia/fx-models").GuidValue;
|
33
13
|
};
|
34
14
|
get: {
|
@@ -0,0 +1,67 @@
|
|
1
|
+
import { VNodeChild } from "vue";
|
2
|
+
import { TreeViewItem } from "@omnia/fx-models";
|
3
|
+
declare const _default: (props: {
|
4
|
+
"v-model"?: TreeViewItem<any>;
|
5
|
+
"onUpdate:modelValue"?: (value: TreeViewItem<any>) => void;
|
6
|
+
modelValue?: TreeViewItem<any>;
|
7
|
+
openOnHover?: boolean;
|
8
|
+
} & Omit<{}, "v-model" | "onUpdate:modelValue" | "modelValue" | "openOnHover"> & {
|
9
|
+
"v-slots"?: {
|
10
|
+
default?: import("vue").Slot;
|
11
|
+
} & {
|
12
|
+
activator?: () => VNodeChild;
|
13
|
+
};
|
14
|
+
} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "v-model" | "onUpdate:modelValue" | "modelValue" | "openOnHover" | "slot:activator">) => {
|
15
|
+
$: import("vue").ComponentInternalInstance;
|
16
|
+
$data: {};
|
17
|
+
$props: {};
|
18
|
+
$attrs: {
|
19
|
+
[x: string]: unknown;
|
20
|
+
};
|
21
|
+
$refs: {
|
22
|
+
[x: string]: unknown;
|
23
|
+
};
|
24
|
+
$slots: Readonly<{
|
25
|
+
[name: string]: import("vue").Slot<any>;
|
26
|
+
}>;
|
27
|
+
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
28
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
29
|
+
$emit: (event: string, ...args: any[]) => void;
|
30
|
+
$el: any;
|
31
|
+
$options: import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}> & {
|
32
|
+
beforeCreate?: (() => void) | (() => void)[];
|
33
|
+
created?: (() => void) | (() => void)[];
|
34
|
+
beforeMount?: (() => void) | (() => void)[];
|
35
|
+
mounted?: (() => void) | (() => void)[];
|
36
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
37
|
+
updated?: (() => void) | (() => void)[];
|
38
|
+
activated?: (() => void) | (() => void)[];
|
39
|
+
deactivated?: (() => void) | (() => void)[];
|
40
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
41
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
42
|
+
destroyed?: (() => void) | (() => void)[];
|
43
|
+
unmounted?: (() => void) | (() => void)[];
|
44
|
+
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
45
|
+
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
46
|
+
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)[];
|
47
|
+
};
|
48
|
+
$forceUpdate: () => void;
|
49
|
+
$nextTick: typeof import("vue").nextTick;
|
50
|
+
$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;
|
51
|
+
} & Omit<{}, never> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {} & {
|
52
|
+
propsDefinition: {
|
53
|
+
"v-model"?: TreeViewItem<any>;
|
54
|
+
"onUpdate:modelValue"?: (value: TreeViewItem<any>) => void;
|
55
|
+
modelValue?: TreeViewItem<any>;
|
56
|
+
openOnHover?: boolean;
|
57
|
+
} & {
|
58
|
+
"v-slots"?: {
|
59
|
+
default?: import("vue").Slot;
|
60
|
+
} & {
|
61
|
+
activator?: () => VNodeChild;
|
62
|
+
};
|
63
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "v-model" | "onUpdate:modelValue" | "modelValue" | "openOnHover">;
|
64
|
+
} & import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
65
|
+
[key: string]: any;
|
66
|
+
}>;
|
67
|
+
export default _default;
|
package/internal-do-not-import-from-here/ux/velcron/editor/components/EditComponentPane.d.ts
CHANGED
@@ -1,16 +1,55 @@
|
|
1
|
-
declare const _default: {
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
}
|
14
|
-
|
15
|
-
|
1
|
+
declare const _default: (props: {
|
2
|
+
show?: boolean;
|
3
|
+
} & Omit<{}, "show"> & {
|
4
|
+
"v-slots"?: {
|
5
|
+
default?: import("vue").Slot;
|
6
|
+
} & {};
|
7
|
+
} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "show">) => {
|
8
|
+
$: import("vue").ComponentInternalInstance;
|
9
|
+
$data: {};
|
10
|
+
$props: {};
|
11
|
+
$attrs: {
|
12
|
+
[x: string]: unknown;
|
13
|
+
};
|
14
|
+
$refs: {
|
15
|
+
[x: string]: unknown;
|
16
|
+
};
|
17
|
+
$slots: Readonly<{
|
18
|
+
[name: string]: import("vue").Slot<any>;
|
19
|
+
}>;
|
20
|
+
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
21
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
22
|
+
$emit: (event: string, ...args: any[]) => void;
|
23
|
+
$el: any;
|
24
|
+
$options: import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}> & {
|
25
|
+
beforeCreate?: (() => void) | (() => void)[];
|
26
|
+
created?: (() => void) | (() => void)[];
|
27
|
+
beforeMount?: (() => void) | (() => void)[];
|
28
|
+
mounted?: (() => void) | (() => void)[];
|
29
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
30
|
+
updated?: (() => void) | (() => void)[];
|
31
|
+
activated?: (() => void) | (() => void)[];
|
32
|
+
deactivated?: (() => void) | (() => void)[];
|
33
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
34
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
35
|
+
destroyed?: (() => void) | (() => void)[];
|
36
|
+
unmounted?: (() => void) | (() => void)[];
|
37
|
+
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
38
|
+
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
39
|
+
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)[];
|
40
|
+
};
|
41
|
+
$forceUpdate: () => void;
|
42
|
+
$nextTick: typeof import("vue").nextTick;
|
43
|
+
$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;
|
44
|
+
} & Omit<{}, never> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {} & {
|
45
|
+
propsDefinition: {
|
46
|
+
show?: boolean;
|
47
|
+
} & {
|
48
|
+
"v-slots"?: {
|
49
|
+
default?: import("vue").Slot;
|
50
|
+
} & {};
|
51
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "show">;
|
52
|
+
} & import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
53
|
+
[key: string]: any;
|
54
|
+
}>;
|
16
55
|
export default _default;
|
@@ -1,16 +1,55 @@
|
|
1
|
-
declare const _default: {
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
}
|
14
|
-
|
15
|
-
|
1
|
+
declare const _default: (props: {
|
2
|
+
show?: boolean;
|
3
|
+
} & Omit<{}, "show"> & {
|
4
|
+
"v-slots"?: {
|
5
|
+
default?: import("vue").Slot;
|
6
|
+
} & {};
|
7
|
+
} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "show">) => {
|
8
|
+
$: import("vue").ComponentInternalInstance;
|
9
|
+
$data: {};
|
10
|
+
$props: {};
|
11
|
+
$attrs: {
|
12
|
+
[x: string]: unknown;
|
13
|
+
};
|
14
|
+
$refs: {
|
15
|
+
[x: string]: unknown;
|
16
|
+
};
|
17
|
+
$slots: Readonly<{
|
18
|
+
[name: string]: import("vue").Slot<any>;
|
19
|
+
}>;
|
20
|
+
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
21
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
22
|
+
$emit: (event: string, ...args: any[]) => void;
|
23
|
+
$el: any;
|
24
|
+
$options: import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}> & {
|
25
|
+
beforeCreate?: (() => void) | (() => void)[];
|
26
|
+
created?: (() => void) | (() => void)[];
|
27
|
+
beforeMount?: (() => void) | (() => void)[];
|
28
|
+
mounted?: (() => void) | (() => void)[];
|
29
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
30
|
+
updated?: (() => void) | (() => void)[];
|
31
|
+
activated?: (() => void) | (() => void)[];
|
32
|
+
deactivated?: (() => void) | (() => void)[];
|
33
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
34
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
35
|
+
destroyed?: (() => void) | (() => void)[];
|
36
|
+
unmounted?: (() => void) | (() => void)[];
|
37
|
+
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
38
|
+
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
39
|
+
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)[];
|
40
|
+
};
|
41
|
+
$forceUpdate: () => void;
|
42
|
+
$nextTick: typeof import("vue").nextTick;
|
43
|
+
$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;
|
44
|
+
} & Omit<{}, never> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {} & {
|
45
|
+
propsDefinition: {
|
46
|
+
show?: boolean;
|
47
|
+
} & {
|
48
|
+
"v-slots"?: {
|
49
|
+
default?: import("vue").Slot;
|
50
|
+
} & {};
|
51
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "show">;
|
52
|
+
} & import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
53
|
+
[key: string]: any;
|
54
|
+
}>;
|
16
55
|
export default _default;
|
@@ -1,16 +1,55 @@
|
|
1
|
-
declare const _default: {
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
}
|
14
|
-
|
15
|
-
|
1
|
+
declare const _default: (props: {
|
2
|
+
show?: boolean;
|
3
|
+
} & Omit<{}, "show"> & {
|
4
|
+
"v-slots"?: {
|
5
|
+
default?: import("vue").Slot;
|
6
|
+
} & {};
|
7
|
+
} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "show">) => {
|
8
|
+
$: import("vue").ComponentInternalInstance;
|
9
|
+
$data: {};
|
10
|
+
$props: {};
|
11
|
+
$attrs: {
|
12
|
+
[x: string]: unknown;
|
13
|
+
};
|
14
|
+
$refs: {
|
15
|
+
[x: string]: unknown;
|
16
|
+
};
|
17
|
+
$slots: Readonly<{
|
18
|
+
[name: string]: import("vue").Slot<any>;
|
19
|
+
}>;
|
20
|
+
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
21
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
22
|
+
$emit: (event: string, ...args: any[]) => void;
|
23
|
+
$el: any;
|
24
|
+
$options: import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}> & {
|
25
|
+
beforeCreate?: (() => void) | (() => void)[];
|
26
|
+
created?: (() => void) | (() => void)[];
|
27
|
+
beforeMount?: (() => void) | (() => void)[];
|
28
|
+
mounted?: (() => void) | (() => void)[];
|
29
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
30
|
+
updated?: (() => void) | (() => void)[];
|
31
|
+
activated?: (() => void) | (() => void)[];
|
32
|
+
deactivated?: (() => void) | (() => void)[];
|
33
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
34
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
35
|
+
destroyed?: (() => void) | (() => void)[];
|
36
|
+
unmounted?: (() => void) | (() => void)[];
|
37
|
+
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
38
|
+
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
39
|
+
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)[];
|
40
|
+
};
|
41
|
+
$forceUpdate: () => void;
|
42
|
+
$nextTick: typeof import("vue").nextTick;
|
43
|
+
$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;
|
44
|
+
} & Omit<{}, never> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {} & {
|
45
|
+
propsDefinition: {
|
46
|
+
show?: boolean;
|
47
|
+
} & {
|
48
|
+
"v-slots"?: {
|
49
|
+
default?: import("vue").Slot;
|
50
|
+
} & {};
|
51
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "show">;
|
52
|
+
} & import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
53
|
+
[key: string]: any;
|
54
|
+
}>;
|
16
55
|
export default _default;
|
@@ -9,7 +9,7 @@ export interface VelcronDescriptor {
|
|
9
9
|
export interface VelcronComponentDescriptor extends VelcronDescriptor {
|
10
10
|
descriptorType: VelcronDescriptorTypes.component;
|
11
11
|
type: string;
|
12
|
-
properties?:
|
12
|
+
properties?: Array<VelcronComponentPropertyDescriptor | VelcronComponentArrayPropertyDescriptor>;
|
13
13
|
events?: Array<VelcronComponentEventDescriptor>;
|
14
14
|
}
|
15
15
|
export interface VelcronSubComponentDescriptor extends VelcronDescriptor {
|
@@ -67,6 +67,11 @@ declare const _default: {
|
|
67
67
|
};
|
68
68
|
}>;
|
69
69
|
};
|
70
|
+
label: {
|
71
|
+
type: import("vue").PropType<string>;
|
72
|
+
} & {
|
73
|
+
type: import("vue").PropType<string>;
|
74
|
+
};
|
70
75
|
editor: {
|
71
76
|
type: import("vue").PropType<VelcronPropertyEditor<any>>;
|
72
77
|
} & {
|
@@ -143,6 +148,11 @@ declare const _default: {
|
|
143
148
|
};
|
144
149
|
}>;
|
145
150
|
};
|
151
|
+
label: {
|
152
|
+
type: import("vue").PropType<string>;
|
153
|
+
} & {
|
154
|
+
type: import("vue").PropType<string>;
|
155
|
+
};
|
146
156
|
editor: {
|
147
157
|
type: import("vue").PropType<VelcronPropertyEditor<any>>;
|
148
158
|
} & {
|
@@ -224,6 +234,11 @@ declare const _default: {
|
|
224
234
|
};
|
225
235
|
}>;
|
226
236
|
};
|
237
|
+
label: {
|
238
|
+
type: import("vue").PropType<string>;
|
239
|
+
} & {
|
240
|
+
type: import("vue").PropType<string>;
|
241
|
+
};
|
227
242
|
editor: {
|
228
243
|
type: import("vue").PropType<VelcronPropertyEditor<any>>;
|
229
244
|
} & {
|
@@ -302,6 +317,11 @@ declare const _default: {
|
|
302
317
|
};
|
303
318
|
}>;
|
304
319
|
};
|
320
|
+
label: {
|
321
|
+
type: import("vue").PropType<string>;
|
322
|
+
} & {
|
323
|
+
type: import("vue").PropType<string>;
|
324
|
+
};
|
305
325
|
editor: {
|
306
326
|
type: import("vue").PropType<VelcronPropertyEditor<any>>;
|
307
327
|
} & {
|
@@ -374,6 +394,7 @@ declare const _default: {
|
|
374
394
|
};
|
375
395
|
}>;
|
376
396
|
};
|
397
|
+
label?: string;
|
377
398
|
editor?: VelcronPropertyEditor<any>;
|
378
399
|
"v-model"?: any;
|
379
400
|
"onUpdate:modelValue"?: (value: any) => any;
|
@@ -48,6 +48,194 @@ export declare class VersionedLayoutDefinitionEditorItem implements IEditorItem
|
|
48
48
|
private extendedRightItemExtendButtons;
|
49
49
|
private isDefaultLayout;
|
50
50
|
private _defaultLayoutEditorTabApiReadyCallBack;
|
51
|
+
icons: {
|
52
|
+
faIcon: (name: string) => import("@omnia/fx-models").FontAwesomeIcon;
|
53
|
+
mdIcon: (name: string) => import("@omnia/fx-models").MaterialIcon;
|
54
|
+
flagIcon: (name: string) => import("@omnia/fx-models").FlagIcon;
|
55
|
+
fbIcon: (name: string) => import("@omnia/fx-models").FabricIcon;
|
56
|
+
svgIcon: (name: string) => import("@omnia/fx-models").SvgIcon;
|
57
|
+
customIcon: (name: string) => import("@omnia/fx-models").CustomIcon;
|
58
|
+
icon: {
|
59
|
+
add: import("@omnia/fx-models").FontAwesomeIcon;
|
60
|
+
anchor: import("@omnia/fx-models").FontAwesomeIcon;
|
61
|
+
approval: import("@omnia/fx-models").FontAwesomeIcon;
|
62
|
+
approve: import("@omnia/fx-models").FontAwesomeIcon;
|
63
|
+
adjust: import("@omnia/fx-models").FontAwesomeIcon;
|
64
|
+
archive: import("@omnia/fx-models").FontAwesomeIcon;
|
65
|
+
award: import("@omnia/fx-models").FontAwesomeIcon;
|
66
|
+
back: import("@omnia/fx-models").FontAwesomeIcon;
|
67
|
+
blueprint: import("@omnia/fx-models").FontAwesomeIcon;
|
68
|
+
businessProfile: import("@omnia/fx-models").FontAwesomeIcon;
|
69
|
+
calendar: import("@omnia/fx-models").FontAwesomeIcon;
|
70
|
+
calendarAlt: import("@omnia/fx-models").FontAwesomeIcon;
|
71
|
+
chartLine: import("@omnia/fx-models").FontAwesomeIcon;
|
72
|
+
check: import("@omnia/fx-models").FontAwesomeIcon;
|
73
|
+
clone: import("@omnia/fx-models").FontAwesomeIcon;
|
74
|
+
clipboard: import("@omnia/fx-models").FontAwesomeIcon;
|
75
|
+
close: import("@omnia/fx-models").FontAwesomeIcon;
|
76
|
+
collapse: import("@omnia/fx-models").FontAwesomeIcon;
|
77
|
+
comment: import("@omnia/fx-models").FontAwesomeIcon;
|
78
|
+
comments: import("@omnia/fx-models").FontAwesomeIcon;
|
79
|
+
save: import("@omnia/fx-models").FontAwesomeIcon;
|
80
|
+
share: import("@omnia/fx-models").FontAwesomeIcon;
|
81
|
+
chart: import("@omnia/fx-models").FontAwesomeIcon;
|
82
|
+
crop: import("@omnia/fx-models").FontAwesomeIcon;
|
83
|
+
code: import("@omnia/fx-models").FontAwesomeIcon;
|
84
|
+
color: import("@omnia/fx-models").FontAwesomeIcon;
|
85
|
+
colorSchema: import("@omnia/fx-models").FontAwesomeIcon;
|
86
|
+
colorPalette: import("@omnia/fx-models").FontAwesomeIcon;
|
87
|
+
colorPicker: import("@omnia/fx-models").FontAwesomeIcon;
|
88
|
+
copy: import("@omnia/fx-models").FontAwesomeIcon;
|
89
|
+
delete: import("@omnia/fx-models").FontAwesomeIcon;
|
90
|
+
discard: import("@omnia/fx-models").FontAwesomeIcon;
|
91
|
+
device: import("@omnia/fx-models").FontAwesomeIcon;
|
92
|
+
drag: import("@omnia/fx-models").FontAwesomeIcon;
|
93
|
+
edit: import("@omnia/fx-models").FontAwesomeIcon;
|
94
|
+
expand: import("@omnia/fx-models").FontAwesomeIcon;
|
95
|
+
expandMenu: import("@omnia/fx-models").FontAwesomeIcon;
|
96
|
+
exclamation: import("@omnia/fx-models").FontAwesomeIcon;
|
97
|
+
ellipsis: import("@omnia/fx-models").FontAwesomeIcon;
|
98
|
+
flip: import("@omnia/fx-models").MaterialIcon;
|
99
|
+
filter: import("@omnia/fx-models").FontAwesomeIcon;
|
100
|
+
fileAlt: import("@omnia/fx-models").FontAwesomeIcon;
|
101
|
+
filePdf: import("@omnia/fx-models").FontAwesomeIcon;
|
102
|
+
fileWord: import("@omnia/fx-models").FontAwesomeIcon;
|
103
|
+
font: import("@omnia/fx-models").FontAwesomeIcon;
|
104
|
+
header: import("@omnia/fx-models").FontAwesomeIcon;
|
105
|
+
hidden: import("@omnia/fx-models").FontAwesomeIcon;
|
106
|
+
hiddenVisible: import("@omnia/fx-models").FontAwesomeIcon;
|
107
|
+
info: import("@omnia/fx-models").FontAwesomeIcon;
|
108
|
+
infoCircle: import("@omnia/fx-models").FontAwesomeIcon;
|
109
|
+
lock: import("@omnia/fx-models").FontAwesomeIcon;
|
110
|
+
link: import("@omnia/fx-models").FontAwesomeIcon;
|
111
|
+
like: import("@omnia/fx-models").FontAwesomeIcon;
|
112
|
+
location: import("@omnia/fx-models").FontAwesomeIcon;
|
113
|
+
lockOpen: import("@omnia/fx-models").FontAwesomeIcon;
|
114
|
+
lockEdit: import("@omnia/fx-models").FontAwesomeIcon;
|
115
|
+
layout: import("@omnia/fx-models").FontAwesomeIcon;
|
116
|
+
map: import("@omnia/fx-models").FontAwesomeIcon;
|
117
|
+
mail: import("@omnia/fx-models").FontAwesomeIcon;
|
118
|
+
more: import("@omnia/fx-models").MaterialIcon;
|
119
|
+
move: import("@omnia/fx-models").FontAwesomeIcon;
|
120
|
+
moveUp: import("@omnia/fx-models").FontAwesomeIcon;
|
121
|
+
moveDown: import("@omnia/fx-models").FontAwesomeIcon;
|
122
|
+
menu_more: import("@omnia/fx-models").FontAwesomeIcon;
|
123
|
+
menu: import("@omnia/fx-models").FontAwesomeIcon;
|
124
|
+
media: import("@omnia/fx-models").FontAwesomeIcon;
|
125
|
+
navigate: import("@omnia/fx-models").FontAwesomeIcon;
|
126
|
+
newspaper: import("@omnia/fx-models").FontAwesomeIcon;
|
127
|
+
notification: import("@omnia/fx-models").FontAwesomeIcon;
|
128
|
+
organization: import("@omnia/fx-models").FontAwesomeIcon;
|
129
|
+
pageInformation: import("@omnia/fx-models").FontAwesomeIcon;
|
130
|
+
paste: import("@omnia/fx-models").FontAwesomeIcon;
|
131
|
+
picker: import("@omnia/fx-models").FontAwesomeIcon;
|
132
|
+
penClip: import("@omnia/fx-models").FontAwesomeIcon;
|
133
|
+
preview: import("@omnia/fx-models").FontAwesomeIcon;
|
134
|
+
previewItem: import("@omnia/fx-models").FontAwesomeIcon;
|
135
|
+
process: import("@omnia/fx-models").FontAwesomeIcon;
|
136
|
+
permissions: import("@omnia/fx-models").FontAwesomeIcon;
|
137
|
+
praise: import("@omnia/fx-models").FontAwesomeIcon;
|
138
|
+
phone: import("@omnia/fx-models").FontAwesomeIcon;
|
139
|
+
readOnly: import("@omnia/fx-models").FontAwesomeIcon;
|
140
|
+
tag: import("@omnia/fx-models").FontAwesomeIcon;
|
141
|
+
tags: import("@omnia/fx-models").FontAwesomeIcon;
|
142
|
+
targeting: import("@omnia/fx-models").FontAwesomeIcon;
|
143
|
+
tenant: import("@omnia/fx-models").FontAwesomeIcon;
|
144
|
+
trend: import("@omnia/fx-models").FontAwesomeIcon;
|
145
|
+
theme: import("@omnia/fx-models").FontAwesomeIcon;
|
146
|
+
redo: import("@omnia/fx-models").FontAwesomeIcon;
|
147
|
+
remove: import("@omnia/fx-models").FontAwesomeIcon;
|
148
|
+
reject: import("@omnia/fx-models").FontAwesomeIcon;
|
149
|
+
rotate: import("@omnia/fx-models").FontAwesomeIcon;
|
150
|
+
search: import("@omnia/fx-models").FontAwesomeIcon;
|
151
|
+
settings: import("@omnia/fx-models").FontAwesomeIcon;
|
152
|
+
sort: import("@omnia/fx-models").FontAwesomeIcon;
|
153
|
+
styles: import("@omnia/fx-models").FontAwesomeIcon;
|
154
|
+
siteMap: import("@omnia/fx-models").FontAwesomeIcon;
|
155
|
+
spacing: import("@omnia/fx-models").FontAwesomeIcon;
|
156
|
+
template: import("@omnia/fx-models").FontAwesomeIcon;
|
157
|
+
typography: import("@omnia/fx-models").FontAwesomeIcon;
|
158
|
+
theming: import("@omnia/fx-models").FontAwesomeIcon;
|
159
|
+
velcron: import("@omnia/fx-models").FontAwesomeIcon;
|
160
|
+
versionHistory: import("@omnia/fx-models").FontAwesomeIcon;
|
161
|
+
image: import("@omnia/fx-models").FontAwesomeIcon;
|
162
|
+
thumbsUp: import("@omnia/fx-models").FontAwesomeIcon;
|
163
|
+
smiles: import("@omnia/fx-models").FontAwesomeIcon;
|
164
|
+
checkCircle: import("@omnia/fx-models").FontAwesomeIcon;
|
165
|
+
question: import("@omnia/fx-models").FontAwesomeIcon;
|
166
|
+
questionCircle: import("@omnia/fx-models").FontAwesomeIcon;
|
167
|
+
upload: import("@omnia/fx-models").FontAwesomeIcon;
|
168
|
+
user: import("@omnia/fx-models").FontAwesomeIcon;
|
169
|
+
global: import("@omnia/fx-models").FontAwesomeIcon;
|
170
|
+
arrowLeft: import("@omnia/fx-models").FontAwesomeIcon;
|
171
|
+
arrowRight: import("@omnia/fx-models").FontAwesomeIcon;
|
172
|
+
rule: import("@omnia/fx-models").FontAwesomeIcon;
|
173
|
+
};
|
174
|
+
system: {
|
175
|
+
settings: {
|
176
|
+
general: import("@omnia/fx-models").FontAwesomeIcon;
|
177
|
+
display: import("@omnia/fx-models").FontAwesomeIcon;
|
178
|
+
};
|
179
|
+
actions: {
|
180
|
+
takeControl: import("@omnia/fx-models").FontAwesomeIcon;
|
181
|
+
discard: import("@omnia/fx-models").FontAwesomeIcon;
|
182
|
+
reuse: import("@omnia/fx-models").FontAwesomeIcon;
|
183
|
+
moveTo: import("@omnia/fx-models").FontAwesomeIcon;
|
184
|
+
publish: import("@omnia/fx-models").FontAwesomeIcon;
|
185
|
+
};
|
186
|
+
breakpoints: {
|
187
|
+
mobile: import("@omnia/fx-models").FontAwesomeIcon;
|
188
|
+
tablet: import("@omnia/fx-models").FontAwesomeIcon;
|
189
|
+
desktop: import("@omnia/fx-models").FontAwesomeIcon;
|
190
|
+
};
|
191
|
+
tools: {
|
192
|
+
themeDesigner: import("@omnia/fx-models").FontAwesomeIcon;
|
193
|
+
};
|
194
|
+
};
|
195
|
+
presets: {
|
196
|
+
add: (size?: "small" | "default" | "large" | "x-large" | "x-small", toned?: boolean, theming?: import("@omnia/fx-models").ThemeableComponentProps) => JSX.Element;
|
197
|
+
adjust: (size?: "small" | "default" | "large" | "x-large" | "x-small", toned?: boolean, theming?: import("@omnia/fx-models").ThemeableComponentProps) => JSX.Element;
|
198
|
+
back: (size?: "small" | "default" | "large" | "x-large" | "x-small", toned?: boolean, theming?: import("@omnia/fx-models").ThemeableComponentProps) => JSX.Element;
|
199
|
+
close: (size?: "small" | "default" | "large" | "x-large" | "x-small", toned?: boolean, theming?: import("@omnia/fx-models").ThemeableComponentProps) => JSX.Element;
|
200
|
+
clipboard: (size?: "small" | "default" | "large" | "x-large" | "x-small", toned?: boolean, theming?: import("@omnia/fx-models").ThemeableComponentProps) => JSX.Element;
|
201
|
+
clone: (size?: "small" | "default" | "large" | "x-large" | "x-small", toned?: boolean, theming?: import("@omnia/fx-models").ThemeableComponentProps) => JSX.Element;
|
202
|
+
crop: (size?: "small" | "default" | "large" | "x-large" | "x-small", toned?: boolean, theming?: import("@omnia/fx-models").ThemeableComponentProps) => JSX.Element;
|
203
|
+
color: (size?: "small" | "default" | "large" | "x-large" | "x-small", toned?: boolean, theming?: import("@omnia/fx-models").ThemeableComponentProps) => JSX.Element;
|
204
|
+
copy: (size?: "small" | "default" | "large" | "x-large" | "x-small", toned?: boolean, theming?: import("@omnia/fx-models").ThemeableComponentProps) => JSX.Element;
|
205
|
+
code: (size?: "small" | "default" | "large" | "x-large" | "x-small", toned?: boolean, theming?: import("@omnia/fx-models").ThemeableComponentProps) => JSX.Element;
|
206
|
+
del: (size?: "small" | "default" | "large" | "x-large" | "x-small", toned?: boolean, theming?: import("@omnia/fx-models").ThemeableComponentProps) => JSX.Element;
|
207
|
+
device: (size?: "small" | "default" | "large" | "x-large" | "x-small", toned?: boolean, theming?: import("@omnia/fx-models").ThemeableComponentProps) => JSX.Element;
|
208
|
+
drag: (size?: "small" | "default" | "large" | "x-large" | "x-small", toned?: boolean, theming?: import("@omnia/fx-models").ThemeableComponentProps) => JSX.Element;
|
209
|
+
edit: (size?: "small" | "default" | "large" | "x-large" | "x-small", toned?: boolean, theming?: import("@omnia/fx-models").ThemeableComponentProps) => JSX.Element;
|
210
|
+
filter: (size?: "small" | "default" | "large" | "x-large" | "x-small", toned?: boolean, theming?: import("@omnia/fx-models").ThemeableComponentProps) => JSX.Element;
|
211
|
+
flip: (size?: "small" | "default" | "large" | "x-large" | "x-small", toned?: boolean, theming?: import("@omnia/fx-models").ThemeableComponentProps) => JSX.Element;
|
212
|
+
expand: (size?: "small" | "default" | "large" | "x-large" | "x-small", toned?: boolean, theming?: import("@omnia/fx-models").ThemeableComponentProps) => JSX.Element;
|
213
|
+
header: (size?: "small" | "default" | "large" | "x-large" | "x-small", toned?: boolean, theming?: import("@omnia/fx-models").ThemeableComponentProps) => JSX.Element;
|
214
|
+
info: (size?: "small" | "default" | "large" | "x-large" | "x-small", toned?: boolean, theming?: import("@omnia/fx-models").ThemeableComponentProps) => JSX.Element;
|
215
|
+
lock: (size?: "small" | "default" | "large" | "x-large" | "x-small", toned?: boolean, theming?: import("@omnia/fx-models").ThemeableComponentProps) => JSX.Element;
|
216
|
+
lockOpen: (size?: "small" | "default" | "large" | "x-large" | "x-small", toned?: boolean, theming?: import("@omnia/fx-models").ThemeableComponentProps) => JSX.Element;
|
217
|
+
lockEdit: (size?: "small" | "default" | "large" | "x-large" | "x-small", toned?: boolean, theming?: import("@omnia/fx-models").ThemeableComponentProps) => JSX.Element;
|
218
|
+
more: (size?: "small" | "default" | "large" | "x-large" | "x-small", toned?: boolean, theming?: import("@omnia/fx-models").ThemeableComponentProps) => JSX.Element;
|
219
|
+
move: (size?: "small" | "default" | "large" | "x-large" | "x-small", toned?: boolean, theming?: import("@omnia/fx-models").ThemeableComponentProps) => JSX.Element;
|
220
|
+
media: (size?: "small" | "default" | "large" | "x-large" | "x-small", toned?: boolean, theming?: import("@omnia/fx-models").ThemeableComponentProps) => JSX.Element;
|
221
|
+
navigate: (size?: "small" | "default" | "large" | "x-large" | "x-small", toned?: boolean, theming?: import("@omnia/fx-models").ThemeableComponentProps) => JSX.Element;
|
222
|
+
tag: (size?: "small" | "default" | "large" | "x-large" | "x-small", toned?: boolean, theming?: import("@omnia/fx-models").ThemeableComponentProps) => JSX.Element;
|
223
|
+
tags: (size?: "small" | "default" | "large" | "x-large" | "x-small", toned?: boolean, theming?: import("@omnia/fx-models").ThemeableComponentProps) => JSX.Element;
|
224
|
+
redo: (size?: "small" | "default" | "large" | "x-large" | "x-small", toned?: boolean, theming?: import("@omnia/fx-models").ThemeableComponentProps) => JSX.Element;
|
225
|
+
remove: (size?: "small" | "default" | "large" | "x-large" | "x-small", toned?: boolean, theming?: import("@omnia/fx-models").ThemeableComponentProps) => JSX.Element;
|
226
|
+
rotate: (size?: "small" | "default" | "large" | "x-large" | "x-small", toned?: boolean, theming?: import("@omnia/fx-models").ThemeableComponentProps) => JSX.Element;
|
227
|
+
search: (size?: "small" | "default" | "large" | "x-large" | "x-small", toned?: boolean, theming?: import("@omnia/fx-models").ThemeableComponentProps) => JSX.Element;
|
228
|
+
settings: (size?: "small" | "default" | "large" | "x-large" | "x-small", toned?: boolean, theming?: import("@omnia/fx-models").ThemeableComponentProps) => JSX.Element;
|
229
|
+
sort: (size?: "small" | "default" | "large" | "x-large" | "x-small", toned?: boolean, theming?: import("@omnia/fx-models").ThemeableComponentProps) => JSX.Element;
|
230
|
+
spacing: (size?: "small" | "default" | "large" | "x-large" | "x-small", toned?: boolean, theming?: import("@omnia/fx-models").ThemeableComponentProps) => JSX.Element;
|
231
|
+
styles: (size?: "small" | "default" | "large" | "x-large" | "x-small", toned?: boolean, theming?: import("@omnia/fx-models").ThemeableComponentProps) => JSX.Element;
|
232
|
+
targeting: (size?: "small" | "default" | "large" | "x-large" | "x-small", toned?: boolean, theming?: import("@omnia/fx-models").ThemeableComponentProps) => JSX.Element;
|
233
|
+
template: (size?: "small" | "default" | "large" | "x-large" | "x-small", toned?: boolean, theming?: import("@omnia/fx-models").ThemeableComponentProps) => JSX.Element;
|
234
|
+
theming: (size?: "small" | "default" | "large" | "x-large" | "x-small", toned?: boolean, theming?: import("@omnia/fx-models").ThemeableComponentProps) => JSX.Element;
|
235
|
+
velcron: (size?: "small" | "default" | "large" | "x-large" | "x-small", toned?: boolean, theming?: import("@omnia/fx-models").ThemeableComponentProps) => JSX.Element;
|
236
|
+
image: (size?: "small" | "default" | "large" | "x-large" | "x-small", toned?: boolean, theming?: import("@omnia/fx-models").ThemeableComponentProps) => JSX.Element;
|
237
|
+
};
|
238
|
+
};
|
51
239
|
panelsRenderer: PanelRenderer;
|
52
240
|
constructor(immutableState: VersionedLayoutDefinitionEditorItemPrivateImutableState, state: VersionedLayoutDefinitionEditorItemState);
|
53
241
|
private createDesignAndPreviewButton;
|
@@ -1,16 +1,55 @@
|
|
1
|
-
declare const _default: {
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
}
|
14
|
-
|
15
|
-
|
1
|
+
declare const _default: (props: {
|
2
|
+
[x: string]: any;
|
3
|
+
} & Omit<{}, string | number> & {
|
4
|
+
"v-slots"?: {
|
5
|
+
default?: import("vue").Slot;
|
6
|
+
} & {};
|
7
|
+
} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, string>) => {
|
8
|
+
$: import("vue").ComponentInternalInstance;
|
9
|
+
$data: {};
|
10
|
+
$props: {};
|
11
|
+
$attrs: {
|
12
|
+
[x: string]: unknown;
|
13
|
+
};
|
14
|
+
$refs: {
|
15
|
+
[x: string]: unknown;
|
16
|
+
};
|
17
|
+
$slots: Readonly<{
|
18
|
+
[name: string]: import("vue").Slot<any>;
|
19
|
+
}>;
|
20
|
+
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
21
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
22
|
+
$emit: (event: string, ...args: any[]) => void;
|
23
|
+
$el: any;
|
24
|
+
$options: import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}> & {
|
25
|
+
beforeCreate?: (() => void) | (() => void)[];
|
26
|
+
created?: (() => void) | (() => void)[];
|
27
|
+
beforeMount?: (() => void) | (() => void)[];
|
28
|
+
mounted?: (() => void) | (() => void)[];
|
29
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
30
|
+
updated?: (() => void) | (() => void)[];
|
31
|
+
activated?: (() => void) | (() => void)[];
|
32
|
+
deactivated?: (() => void) | (() => void)[];
|
33
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
34
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
35
|
+
destroyed?: (() => void) | (() => void)[];
|
36
|
+
unmounted?: (() => void) | (() => void)[];
|
37
|
+
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
38
|
+
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
39
|
+
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)[];
|
40
|
+
};
|
41
|
+
$forceUpdate: () => void;
|
42
|
+
$nextTick: typeof import("vue").nextTick;
|
43
|
+
$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;
|
44
|
+
} & Omit<{}, never> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {} & {
|
45
|
+
propsDefinition: {
|
46
|
+
[x: string]: any;
|
47
|
+
} & {
|
48
|
+
"v-slots"?: {
|
49
|
+
default?: import("vue").Slot;
|
50
|
+
} & {};
|
51
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, string | number>;
|
52
|
+
} & import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
53
|
+
[key: string]: any;
|
54
|
+
}>;
|
16
55
|
export default _default;
|
@@ -1,24 +1,55 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
}
|
1
|
+
declare const _default: (props: {
|
2
|
+
[x: string]: any;
|
3
|
+
} & Omit<{}, string | number> & {
|
4
|
+
"v-slots"?: {
|
5
|
+
default?: import("vue").Slot;
|
6
|
+
} & {};
|
7
|
+
} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, string>) => {
|
8
|
+
$: import("vue").ComponentInternalInstance;
|
9
|
+
$data: {};
|
10
|
+
$props: {};
|
11
|
+
$attrs: {
|
12
|
+
[x: string]: unknown;
|
13
|
+
};
|
14
|
+
$refs: {
|
15
|
+
[x: string]: unknown;
|
16
|
+
};
|
17
|
+
$slots: Readonly<{
|
18
|
+
[name: string]: import("vue").Slot<any>;
|
19
|
+
}>;
|
20
|
+
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
21
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
22
|
+
$emit: (event: string, ...args: any[]) => void;
|
23
|
+
$el: any;
|
24
|
+
$options: import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}> & {
|
25
|
+
beforeCreate?: (() => void) | (() => void)[];
|
26
|
+
created?: (() => void) | (() => void)[];
|
27
|
+
beforeMount?: (() => void) | (() => void)[];
|
28
|
+
mounted?: (() => void) | (() => void)[];
|
29
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
30
|
+
updated?: (() => void) | (() => void)[];
|
31
|
+
activated?: (() => void) | (() => void)[];
|
32
|
+
deactivated?: (() => void) | (() => void)[];
|
33
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
34
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
35
|
+
destroyed?: (() => void) | (() => void)[];
|
36
|
+
unmounted?: (() => void) | (() => void)[];
|
37
|
+
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
38
|
+
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
39
|
+
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)[];
|
40
|
+
};
|
41
|
+
$forceUpdate: () => void;
|
42
|
+
$nextTick: typeof import("vue").nextTick;
|
43
|
+
$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;
|
44
|
+
} & Omit<{}, never> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {} & {
|
45
|
+
propsDefinition: {
|
46
|
+
[x: string]: any;
|
47
|
+
} & {
|
48
|
+
"v-slots"?: {
|
49
|
+
default?: import("vue").Slot;
|
50
|
+
} & {};
|
51
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, string | number>;
|
52
|
+
} & import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
53
|
+
[key: string]: any;
|
54
|
+
}>;
|
55
|
+
export default _default;
|
@@ -114,6 +114,8 @@ import wc30289e2b58ff48b0aabb3cb3732c3038 from './ux/usertypelayout/UserTypeLayo
|
|
114
114
|
import wc90cfd68bb4e04f67bfd5677bdf4af59d from './ux/validation/FieldValidation';
|
115
115
|
import wcba03fc7e6921468289c0a0ffe0cf942e from './ux/versionedlayout/renderer/VersionedLayoutRenderer';
|
116
116
|
import wc73154f51a92944acbe248779a3fa7ef5 from './ux/versionedlayout/editor/VersionedLayoutEditor';
|
117
|
+
import wc32a6ca3074384eb4bcef68e9cd49a334 from './ux/versionedlayout/editor/panels/versionhistory/VersionHistory';
|
118
|
+
import wcf024796066784669a26452b2da403b70 from './ux/versionedlayout/editor/panels/Panels';
|
117
119
|
import wcc88e2566b07a4680aef7f575f5c5641b from './ux/versionedlayout/controller/VersionedLayoutController';
|
118
120
|
import wc177046bfd171495bbce70d1cd9242fa1 from './ux/versionedlayout/controller/Chrome';
|
119
121
|
import wcbd6cd82aabef42e7bf60679c7d5fb470 from './ux/wizard/WizardComponent';
|
@@ -381,7 +383,7 @@ import wcbbd5168574b64f0486adaf68ba31be49 from './ux/velcron/blocks/demo/DemoBlo
|
|
381
383
|
import wc80bd5b0978ea40439001d3d409236382 from './ux/velcron/blocks/velcron/VelcronBlock';
|
382
384
|
import wce8526e8ed3f74e848e0dd747fd4d376d from './ux/velcron/blocks/velcron/VelcronBlockSettings';
|
383
385
|
import wca7db43482a3140998eca19b47d941126 from './ux/velcron/components/contenteditor/VelcronContentEditor';
|
384
|
-
import wcb197c5e805cc4d6bb3d012e258560b31 from './ux/velcron/components/definitionpicker/
|
386
|
+
import wcb197c5e805cc4d6bb3d012e258560b31 from './ux/velcron/components/definitionpicker/VelcronDefinitionPicker';
|
385
387
|
import wcdabd67ab338243858fe7d1ca24399995 from './ux/velcron/components/propertieseditor/VelcronPropertiesEditor';
|
386
388
|
import wc5688474abe554cabb34c696620eb6be1 from './ux/velcron/renderer/propertyeditors/PropertyEditorCreator';
|
387
389
|
import wcdb625bea89b04f32a946efe7a887c7f2 from '../../fx-sp/internal-do-not-import-from-here/ux/filterengine/components/settings/TaxonomyPropertySettings';
|
@@ -783,6 +785,12 @@ declare global {
|
|
783
785
|
"omfx-versioned-layout-editor": typeof wc73154f51a92944acbe248779a3fa7ef5 extends {
|
784
786
|
propsDefinition: infer TProp;
|
785
787
|
} ? (TProp & Omit<VueComponentBaseProps, keyof TProp>) : typeof wc73154f51a92944acbe248779a3fa7ef5 extends (...args: any[]) => any ? ExtractJsxProps<Pick<ReturnType<typeof wc73154f51a92944acbe248779a3fa7ef5>, "propsDefinition">> : never;
|
788
|
+
"omfx-versioned-history": typeof wc32a6ca3074384eb4bcef68e9cd49a334 extends {
|
789
|
+
propsDefinition: infer TProp;
|
790
|
+
} ? (TProp & Omit<VueComponentBaseProps, keyof TProp>) : typeof wc32a6ca3074384eb4bcef68e9cd49a334 extends (...args: any[]) => any ? ExtractJsxProps<Pick<ReturnType<typeof wc32a6ca3074384eb4bcef68e9cd49a334>, "propsDefinition">> : never;
|
791
|
+
"omfx-versioned-history-panel": typeof wcf024796066784669a26452b2da403b70 extends {
|
792
|
+
propsDefinition: infer TProp;
|
793
|
+
} ? (TProp & Omit<VueComponentBaseProps, keyof TProp>) : typeof wcf024796066784669a26452b2da403b70 extends (...args: any[]) => any ? ExtractJsxProps<Pick<ReturnType<typeof wcf024796066784669a26452b2da403b70>, "propsDefinition">> : never;
|
786
794
|
"omfx-versioned-layout-controller": typeof wcc88e2566b07a4680aef7f575f5c5641b extends {
|
787
795
|
propsDefinition: infer TProp;
|
788
796
|
} ? (TProp & Omit<VueComponentBaseProps, keyof TProp>) : typeof wcc88e2566b07a4680aef7f575f5c5641b extends (...args: any[]) => any ? ExtractJsxProps<Pick<ReturnType<typeof wcc88e2566b07a4680aef7f575f5c5641b>, "propsDefinition">> : never;
|
@@ -3251,6 +3259,22 @@ declare global {
|
|
3251
3259
|
};
|
3252
3260
|
};
|
3253
3261
|
};
|
3262
|
+
"history": {
|
3263
|
+
"panel": typeof wcf024796066784669a26452b2da403b70 extends {
|
3264
|
+
propsDefinition: infer TProp;
|
3265
|
+
} ? {
|
3266
|
+
new (...args: any[]): {
|
3267
|
+
$props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
|
3268
|
+
};
|
3269
|
+
} : typeof wcf024796066784669a26452b2da403b70;
|
3270
|
+
};
|
3271
|
+
"history$": typeof wc32a6ca3074384eb4bcef68e9cd49a334 extends {
|
3272
|
+
propsDefinition: infer TProp;
|
3273
|
+
} ? {
|
3274
|
+
new (...args: any[]): {
|
3275
|
+
$props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
|
3276
|
+
};
|
3277
|
+
} : typeof wc32a6ca3074384eb4bcef68e9cd49a334;
|
3254
3278
|
};
|
3255
3279
|
"wizard": typeof wcbd6cd82aabef42e7bf60679c7d5fb470 extends {
|
3256
3280
|
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.148-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.148-dev",
|
24
24
|
"@microsoft/signalr": "6.0.1",
|
25
25
|
"broadcast-channel": "4.8.0",
|
26
26
|
"dayjs": "1.11.7",
|
@@ -1,21 +0,0 @@
|
|
1
|
-
import { VueComponentBase } from "../../../../VueComponentBase";
|
2
|
-
import { Identity, ResolvedUserIdentity } from "@omnia/fx-models";
|
3
|
-
import { UserIdentityStore } from "@omnia/fx/stores";
|
4
|
-
interface VersionUserInfoProps {
|
5
|
-
modifiedBy: Identity;
|
6
|
-
modifiedAt: string;
|
7
|
-
}
|
8
|
-
export declare class VersionUserInfo extends VueComponentBase<VersionUserInfoProps> {
|
9
|
-
private modifiedBy;
|
10
|
-
private modifiedAt;
|
11
|
-
userIdentityStore: UserIdentityStore;
|
12
|
-
private versionPanelStyles;
|
13
|
-
model: {
|
14
|
-
user: ResolvedUserIdentity;
|
15
|
-
};
|
16
|
-
created(): void;
|
17
|
-
beforeDestroy(): void;
|
18
|
-
renderDateTime(value: any): string;
|
19
|
-
render(): JSX.Element;
|
20
|
-
}
|
21
|
-
export {};
|