@omnia/fx 8.0.43-dev → 8.0.44-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/shared/models/hub/TempSocialReactions.d.ts +13 -0
- package/internal-do-not-import-from-here/shared/models/hub/TempSocialReactions.js +20 -0
- package/internal-do-not-import-from-here/shared/models/hub/activities/Activity.d.ts +2 -0
- package/internal-do-not-import-from-here/shared/models/hub/index.d.ts +1 -0
- package/internal-do-not-import-from-here/shared/models/hub/index.js +1 -0
- package/internal-do-not-import-from-here/ux/ComponentTypings.d.ts +4 -1
- package/internal-do-not-import-from-here/ux/hub/feed/stores/HubFeedChromeStore.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/hub/feed/tabs/FeedTab.css.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/datepicker/DatePicker.d.ts +4 -4
- package/internal-do-not-import-from-here/ux/oxide/textarea/TextArea.d.ts +54 -0
- package/internal-do-not-import-from-here/ux/oxide/textfield/TextField.d.ts +18 -0
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditor/VelcronContentEditor.d.ts +15 -1
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditor/store/ContentEditorStore.d.ts +3 -1
- package/internal-do-not-import-from-here/ux/velcron/components/definitionpicker/DefinitionPicker.d.ts +29 -1
- package/package.json +2 -2
@@ -0,0 +1,13 @@
|
|
1
|
+
import { Guid } from "../Guid";
|
2
|
+
import { RealtimeChannel, RealtimeData } from "../Realtime";
|
3
|
+
export declare class SocialRealtimeChannel extends RealtimeChannel {
|
4
|
+
getId(): string;
|
5
|
+
}
|
6
|
+
export interface SocialRealtimeMessage {
|
7
|
+
reactionCount: number;
|
8
|
+
commentCount: number;
|
9
|
+
}
|
10
|
+
export declare class SocialRealtimeData extends RealtimeData<SocialRealtimeChannel, SocialRealtimeMessage> {
|
11
|
+
constructor(channel: SocialRealtimeChannel);
|
12
|
+
getId(): Guid;
|
13
|
+
}
|
@@ -0,0 +1,20 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.SocialRealtimeData = exports.SocialRealtimeChannel = void 0;
|
4
|
+
const Guid_1 = require("../Guid");
|
5
|
+
const Realtime_1 = require("../Realtime");
|
6
|
+
class SocialRealtimeChannel extends Realtime_1.RealtimeChannel {
|
7
|
+
getId() {
|
8
|
+
return "social";
|
9
|
+
}
|
10
|
+
}
|
11
|
+
exports.SocialRealtimeChannel = SocialRealtimeChannel;
|
12
|
+
class SocialRealtimeData extends Realtime_1.RealtimeData {
|
13
|
+
constructor(channel) {
|
14
|
+
super(channel);
|
15
|
+
}
|
16
|
+
getId() {
|
17
|
+
return new Guid_1.Guid("445350a8-4565-4a94-ba01-a05dd2cccca6");
|
18
|
+
}
|
19
|
+
}
|
20
|
+
exports.SocialRealtimeData = SocialRealtimeData;
|
@@ -25,6 +25,8 @@ export interface ActivityBase {
|
|
25
25
|
notificationTeaser: NotificationTeaser;
|
26
26
|
expires?: Date;
|
27
27
|
createdAt: Date;
|
28
|
+
reactionCount?: number;
|
29
|
+
commentCount?: number;
|
28
30
|
}
|
29
31
|
export interface ActivityRenderState<TActivityState = DynamicState, TIdentityState = DynamicState> {
|
30
32
|
activity: TActivityState;
|
@@ -5,3 +5,4 @@ tslib_1.__exportStar(require("./activities"), exports);
|
|
5
5
|
tslib_1.__exportStar(require("./social"), exports);
|
6
6
|
tslib_1.__exportStar(require("./ExternalIdentityId"), exports);
|
7
7
|
tslib_1.__exportStar(require("./fileupload"), exports);
|
8
|
+
tslib_1.__exportStar(require("./TempSocialReactions"), exports);
|
@@ -71,7 +71,7 @@ type VuetifyValue<T> = T extends {
|
|
71
71
|
} ? T["value"] : T;
|
72
72
|
import { VTooltip, VTextarea, VSwitch, VRadioGroup, VForm, VTextField, VBtn, VBtnToggle, VBtnGroup, VNavigationDrawer, VList, VListItem, VListGroup, VListImg, VListItemAction, VListItemTitle, VListItemSubtitle, VListItemMedia, VListSubheader, VDialog, VDialogBottomTransition, VDialogTopTransition, VDialogTransition, VCard, VCardActions, VCardItem, VCardSubtitle, VCardText, VCardTitle, VExpansionPanels, VExpansionPanel, VExpansionPanelText, VExpansionPanelTitle, VAutocomplete, VMenu, VTable, VCheckbox, VCheckboxBtn, VVirtualScroll, VChip, VSelect, VBadge, VCol, VPagination } from "vuetify/components";
|
73
73
|
import { Intersect } from "vuetify/directives";
|
74
|
-
import { VDataTable, VDataTableRow, VDataTableRows, VDataTableVirtual, VDataTableServer, VInfiniteScroll } from "vuetify/labs/components";
|
74
|
+
import { VDataTable, VDataTableRow, VDataTableRows, VDataTableVirtual, VDataTableServer, VInfiniteScroll, VDatePicker } from "vuetify/labs/components";
|
75
75
|
export interface VDataTableServerSlots extends VuetifySlots<VuetifyProps<Pick<VDataTableServer, "$props">>> {
|
76
76
|
}
|
77
77
|
export interface VDataTableSlots extends VuetifySlots<VuetifyProps<Pick<VDataTable, "$props">>> {
|
@@ -242,6 +242,9 @@ declare global {
|
|
242
242
|
"v-pagination": VuetifyProps<Pick<VPagination, "$props">> & {
|
243
243
|
[name: string]: any;
|
244
244
|
};
|
245
|
+
"v-date-picker": VuetifyProps<Pick<VDatePicker, "$props">> & {
|
246
|
+
[name: string]: any;
|
247
|
+
};
|
245
248
|
}
|
246
249
|
}
|
247
250
|
}
|
@@ -10,6 +10,7 @@ export declare const useHubFeedChromeStore: () => {
|
|
10
10
|
selectedFindItem: string;
|
11
11
|
draftsCount: number;
|
12
12
|
pendingApprovalCount: number;
|
13
|
+
showFakeIframe: boolean;
|
13
14
|
};
|
14
15
|
events: {
|
15
16
|
onMutatedVisible: import("@omnia/fx").MessageBusExposeOnlySubscription<boolean>;
|
@@ -22,6 +23,7 @@ export declare const useHubFeedChromeStore: () => {
|
|
22
23
|
onMutatedSelectedFindItem: import("@omnia/fx").MessageBusExposeOnlySubscription<string>;
|
23
24
|
onMutatedDraftsCount: import("@omnia/fx").MessageBusExposeOnlySubscription<number>;
|
24
25
|
onMutatedPendingApprovalCount: import("@omnia/fx").MessageBusExposeOnlySubscription<number>;
|
26
|
+
onMutatedShowFakeIframe: import("@omnia/fx").MessageBusExposeOnlySubscription<boolean>;
|
25
27
|
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
26
28
|
actions: {
|
27
29
|
onDispatching<T extends (...args: any) => any>(action: (actions: {
|
@@ -18,10 +18,10 @@ declare const _default: {
|
|
18
18
|
readonly variant?: "classic" | "modern";
|
19
19
|
readonly location?: Anchor;
|
20
20
|
readonly hideActions?: boolean;
|
21
|
-
readonly
|
21
|
+
readonly allowedDates?: unknown[] | ((date: unknown) => boolean);
|
22
22
|
readonly showAdjacentMonths?: boolean;
|
23
23
|
readonly showWeek?: boolean;
|
24
|
-
readonly
|
24
|
+
readonly locale?: string;
|
25
25
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
26
26
|
"v-slots": import("vue").Prop<{
|
27
27
|
default?: import("../../DefineVueTypings").Slot<any[]>;
|
@@ -305,10 +305,10 @@ declare const _default: {
|
|
305
305
|
variant?: "classic" | "modern";
|
306
306
|
location?: Anchor;
|
307
307
|
hideActions?: boolean;
|
308
|
-
|
308
|
+
allowedDates?: unknown[] | ((date: unknown) => boolean);
|
309
309
|
showAdjacentMonths?: boolean;
|
310
310
|
showWeek?: boolean;
|
311
|
-
|
311
|
+
locale?: string;
|
312
312
|
}>, never>;
|
313
313
|
};
|
314
314
|
export default _default;
|
@@ -18,6 +18,7 @@ declare const _default: {
|
|
18
18
|
readonly colors?: any;
|
19
19
|
readonly label?: string;
|
20
20
|
readonly class?: String | String[];
|
21
|
+
readonly rows?: number;
|
21
22
|
readonly disabled?: boolean;
|
22
23
|
readonly errorMessages?: string | string[];
|
23
24
|
"onUpdate:modelValue"?: ((value: string) => any) & ((value: string) => any);
|
@@ -28,13 +29,27 @@ declare const _default: {
|
|
28
29
|
} & VTextAreaSlots;
|
29
30
|
readonly autofocus?: boolean;
|
30
31
|
readonly placeholder?: string;
|
32
|
+
readonly readonly?: boolean;
|
31
33
|
readonly hint?: string;
|
32
34
|
readonly persistentHint?: boolean;
|
33
35
|
readonly clearable?: boolean;
|
34
36
|
readonly rules?: ValidationRule[];
|
37
|
+
readonly autoGrow?: boolean;
|
35
38
|
"onUpdate:focused"?: (value: boolean) => any;
|
36
39
|
"onClick:button"?: () => any;
|
37
40
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
41
|
+
rows: {
|
42
|
+
type: import("vue").PropType<number>;
|
43
|
+
required: false;
|
44
|
+
};
|
45
|
+
autoGrow: {
|
46
|
+
type: import("vue").PropType<boolean>;
|
47
|
+
required: false;
|
48
|
+
};
|
49
|
+
readonly: {
|
50
|
+
type: import("vue").PropType<boolean>;
|
51
|
+
required: false;
|
52
|
+
};
|
38
53
|
placeholder: {
|
39
54
|
type: import("vue").PropType<string>;
|
40
55
|
};
|
@@ -108,6 +123,18 @@ declare const _default: {
|
|
108
123
|
$emit: ((event: "update:modelValue", value: string) => void) & ((event: "update:focused", value: boolean) => void) & ((event: "click:button") => void);
|
109
124
|
$el: any;
|
110
125
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
126
|
+
rows: {
|
127
|
+
type: import("vue").PropType<number>;
|
128
|
+
required: false;
|
129
|
+
};
|
130
|
+
autoGrow: {
|
131
|
+
type: import("vue").PropType<boolean>;
|
132
|
+
required: false;
|
133
|
+
};
|
134
|
+
readonly: {
|
135
|
+
type: import("vue").PropType<boolean>;
|
136
|
+
required: false;
|
137
|
+
};
|
111
138
|
placeholder: {
|
112
139
|
type: import("vue").PropType<string>;
|
113
140
|
};
|
@@ -197,6 +224,18 @@ declare const _default: {
|
|
197
224
|
$nextTick: typeof import("vue").nextTick;
|
198
225
|
$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;
|
199
226
|
} & Readonly<import("vue").ExtractPropTypes<{
|
227
|
+
rows: {
|
228
|
+
type: import("vue").PropType<number>;
|
229
|
+
required: false;
|
230
|
+
};
|
231
|
+
autoGrow: {
|
232
|
+
type: import("vue").PropType<boolean>;
|
233
|
+
required: false;
|
234
|
+
};
|
235
|
+
readonly: {
|
236
|
+
type: import("vue").PropType<boolean>;
|
237
|
+
required: false;
|
238
|
+
};
|
200
239
|
placeholder: {
|
201
240
|
type: import("vue").PropType<string>;
|
202
241
|
};
|
@@ -260,6 +299,18 @@ declare const _default: {
|
|
260
299
|
__isTeleport?: never;
|
261
300
|
__isSuspense?: never;
|
262
301
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
302
|
+
rows: {
|
303
|
+
type: import("vue").PropType<number>;
|
304
|
+
required: false;
|
305
|
+
};
|
306
|
+
autoGrow: {
|
307
|
+
type: import("vue").PropType<boolean>;
|
308
|
+
required: false;
|
309
|
+
};
|
310
|
+
readonly: {
|
311
|
+
type: import("vue").PropType<boolean>;
|
312
|
+
required: false;
|
313
|
+
};
|
263
314
|
placeholder: {
|
264
315
|
type: import("vue").PropType<string>;
|
265
316
|
};
|
@@ -338,6 +389,7 @@ declare const _default: {
|
|
338
389
|
} & {
|
339
390
|
label?: string;
|
340
391
|
class?: String | String[];
|
392
|
+
rows?: number;
|
341
393
|
disabled?: boolean;
|
342
394
|
errorMessages?: string | string[];
|
343
395
|
"onUpdate:modelValue"?: (value: string) => any;
|
@@ -348,10 +400,12 @@ declare const _default: {
|
|
348
400
|
} & VTextAreaSlots;
|
349
401
|
autofocus?: boolean;
|
350
402
|
placeholder?: string;
|
403
|
+
readonly?: boolean;
|
351
404
|
hint?: string;
|
352
405
|
persistentHint?: boolean;
|
353
406
|
clearable?: boolean;
|
354
407
|
rules?: ValidationRule[];
|
408
|
+
autoGrow?: boolean;
|
355
409
|
}>, "onUpdate:modelValue" | "onUpdate:focused" | "onClick:button"> & {
|
356
410
|
"onUpdate:modelValue"?: (value: string) => any;
|
357
411
|
"onUpdate:focused"?: (value: boolean) => any;
|
@@ -33,6 +33,7 @@ declare const _default: {
|
|
33
33
|
readonly variant?: "search" | "link" | "default" | "find-slim" | "media";
|
34
34
|
readonly toned?: boolean;
|
35
35
|
readonly placeholder?: string;
|
36
|
+
readonly readonly?: boolean;
|
36
37
|
readonly loading?: boolean;
|
37
38
|
readonly hint?: string;
|
38
39
|
readonly persistentHint?: boolean;
|
@@ -44,6 +45,10 @@ declare const _default: {
|
|
44
45
|
"onClick:clear"?: () => any;
|
45
46
|
"onClick:button"?: () => any;
|
46
47
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
48
|
+
readonly: {
|
49
|
+
type: import("vue").PropType<boolean>;
|
50
|
+
required: false;
|
51
|
+
};
|
47
52
|
persistentHint: {
|
48
53
|
type: import("vue").PropType<boolean>;
|
49
54
|
};
|
@@ -138,6 +143,10 @@ declare const _default: {
|
|
138
143
|
$emit: ((event: "doc$", description?: string) => void) & ((event: "update:modelValue", value: string) => void) & ((event: "update:focused", value: boolean) => void) & ((event: "click:button") => void) & ((event: "click:clear") => void);
|
139
144
|
$el: any;
|
140
145
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
146
|
+
readonly: {
|
147
|
+
type: import("vue").PropType<boolean>;
|
148
|
+
required: false;
|
149
|
+
};
|
141
150
|
persistentHint: {
|
142
151
|
type: import("vue").PropType<boolean>;
|
143
152
|
};
|
@@ -252,6 +261,10 @@ declare const _default: {
|
|
252
261
|
$nextTick: typeof import("vue").nextTick;
|
253
262
|
$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;
|
254
263
|
} & Readonly<import("vue").ExtractPropTypes<{
|
264
|
+
readonly: {
|
265
|
+
type: import("vue").PropType<boolean>;
|
266
|
+
required: false;
|
267
|
+
};
|
255
268
|
persistentHint: {
|
256
269
|
type: import("vue").PropType<boolean>;
|
257
270
|
};
|
@@ -336,6 +349,10 @@ declare const _default: {
|
|
336
349
|
__isTeleport?: never;
|
337
350
|
__isSuspense?: never;
|
338
351
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
352
|
+
readonly: {
|
353
|
+
type: import("vue").PropType<boolean>;
|
354
|
+
required: false;
|
355
|
+
};
|
339
356
|
persistentHint: {
|
340
357
|
type: import("vue").PropType<boolean>;
|
341
358
|
};
|
@@ -453,6 +470,7 @@ declare const _default: {
|
|
453
470
|
variant?: "search" | "link" | "default" | "find-slim" | "media";
|
454
471
|
toned?: boolean;
|
455
472
|
placeholder?: string;
|
473
|
+
readonly?: boolean;
|
456
474
|
loading?: boolean;
|
457
475
|
hint?: string;
|
458
476
|
persistentHint?: boolean;
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import { useVelcronContentEditorStore } from "./store/ContentEditorStore";
|
2
|
-
import { DynamicState, VelcronAppDefinition } from "@omnia/fx-models";
|
2
|
+
import { DynamicState, VelcronAppDefinition, VelcronState } from "@omnia/fx-models";
|
3
3
|
import { ContentDefinitionRegistration } from "./models";
|
4
4
|
type ContentEditorVariants = "default" | "social" | "social-comments";
|
5
5
|
export interface ContentEditorVelcronState extends DynamicState {
|
@@ -26,6 +26,7 @@ declare const _default: {
|
|
26
26
|
lastDefinition: ContentDefinitionRegistration;
|
27
27
|
toggleColorSchemaPreview: import("@omnia/fx-models").VelcronColorSchemaState;
|
28
28
|
toggleDefinitionPreview: import("@omnia/fx-models").VelcronDefinition;
|
29
|
+
previewState: VelcronState;
|
29
30
|
allowToggle: boolean;
|
30
31
|
onGoingDragging: boolean;
|
31
32
|
socialMode: boolean;
|
@@ -38,6 +39,7 @@ declare const _default: {
|
|
38
39
|
onMutatedLastDefinition: import("@omnia/fx").MessageBusExposeOnlySubscription<ContentDefinitionRegistration>;
|
39
40
|
onMutatedToggleColorSchemaPreview: import("@omnia/fx").MessageBusExposeOnlySubscription<import("@omnia/fx-models").VelcronColorSchemaState>;
|
40
41
|
onMutatedToggleDefinitionPreview: import("@omnia/fx").MessageBusExposeOnlySubscription<import("@omnia/fx-models").VelcronDefinition>;
|
42
|
+
onMutatedPreviewState: import("@omnia/fx").MessageBusExposeOnlySubscription<VelcronState>;
|
41
43
|
onMutatedAllowToggle: import("@omnia/fx").MessageBusExposeOnlySubscription<boolean>;
|
42
44
|
onMutatedOnGoingDragging: import("@omnia/fx").MessageBusExposeOnlySubscription<boolean>;
|
43
45
|
onMutatedSocialMode: import("@omnia/fx").MessageBusExposeOnlySubscription<boolean>;
|
@@ -130,6 +132,7 @@ declare const _default: {
|
|
130
132
|
lastDefinition: ContentDefinitionRegistration;
|
131
133
|
toggleColorSchemaPreview: import("@omnia/fx-models").VelcronColorSchemaState;
|
132
134
|
toggleDefinitionPreview: import("@omnia/fx-models").VelcronDefinition;
|
135
|
+
previewState: VelcronState;
|
133
136
|
allowToggle: boolean;
|
134
137
|
onGoingDragging: boolean;
|
135
138
|
socialMode: boolean;
|
@@ -142,6 +145,7 @@ declare const _default: {
|
|
142
145
|
onMutatedLastDefinition: import("@omnia/fx").MessageBusExposeOnlySubscription<ContentDefinitionRegistration>;
|
143
146
|
onMutatedToggleColorSchemaPreview: import("@omnia/fx").MessageBusExposeOnlySubscription<import("@omnia/fx-models").VelcronColorSchemaState>;
|
144
147
|
onMutatedToggleDefinitionPreview: import("@omnia/fx").MessageBusExposeOnlySubscription<import("@omnia/fx-models").VelcronDefinition>;
|
148
|
+
onMutatedPreviewState: import("@omnia/fx").MessageBusExposeOnlySubscription<VelcronState>;
|
145
149
|
onMutatedAllowToggle: import("@omnia/fx").MessageBusExposeOnlySubscription<boolean>;
|
146
150
|
onMutatedOnGoingDragging: import("@omnia/fx").MessageBusExposeOnlySubscription<boolean>;
|
147
151
|
onMutatedSocialMode: import("@omnia/fx").MessageBusExposeOnlySubscription<boolean>;
|
@@ -234,6 +238,7 @@ declare const _default: {
|
|
234
238
|
lastDefinition: ContentDefinitionRegistration;
|
235
239
|
toggleColorSchemaPreview: import("@omnia/fx-models").VelcronColorSchemaState;
|
236
240
|
toggleDefinitionPreview: import("@omnia/fx-models").VelcronDefinition;
|
241
|
+
previewState: VelcronState;
|
237
242
|
allowToggle: boolean;
|
238
243
|
onGoingDragging: boolean;
|
239
244
|
socialMode: boolean;
|
@@ -246,6 +251,7 @@ declare const _default: {
|
|
246
251
|
onMutatedLastDefinition: import("@omnia/fx").MessageBusExposeOnlySubscription<ContentDefinitionRegistration>;
|
247
252
|
onMutatedToggleColorSchemaPreview: import("@omnia/fx").MessageBusExposeOnlySubscription<import("@omnia/fx-models").VelcronColorSchemaState>;
|
248
253
|
onMutatedToggleDefinitionPreview: import("@omnia/fx").MessageBusExposeOnlySubscription<import("@omnia/fx-models").VelcronDefinition>;
|
254
|
+
onMutatedPreviewState: import("@omnia/fx").MessageBusExposeOnlySubscription<VelcronState>;
|
249
255
|
onMutatedAllowToggle: import("@omnia/fx").MessageBusExposeOnlySubscription<boolean>;
|
250
256
|
onMutatedOnGoingDragging: import("@omnia/fx").MessageBusExposeOnlySubscription<boolean>;
|
251
257
|
onMutatedSocialMode: import("@omnia/fx").MessageBusExposeOnlySubscription<boolean>;
|
@@ -337,6 +343,7 @@ declare const _default: {
|
|
337
343
|
lastDefinition: ContentDefinitionRegistration;
|
338
344
|
toggleColorSchemaPreview: import("@omnia/fx-models").VelcronColorSchemaState;
|
339
345
|
toggleDefinitionPreview: import("@omnia/fx-models").VelcronDefinition;
|
346
|
+
previewState: VelcronState;
|
340
347
|
allowToggle: boolean;
|
341
348
|
onGoingDragging: boolean;
|
342
349
|
socialMode: boolean;
|
@@ -349,6 +356,7 @@ declare const _default: {
|
|
349
356
|
onMutatedLastDefinition: import("@omnia/fx").MessageBusExposeOnlySubscription<ContentDefinitionRegistration>;
|
350
357
|
onMutatedToggleColorSchemaPreview: import("@omnia/fx").MessageBusExposeOnlySubscription<import("@omnia/fx-models").VelcronColorSchemaState>;
|
351
358
|
onMutatedToggleDefinitionPreview: import("@omnia/fx").MessageBusExposeOnlySubscription<import("@omnia/fx-models").VelcronDefinition>;
|
359
|
+
onMutatedPreviewState: import("@omnia/fx").MessageBusExposeOnlySubscription<VelcronState>;
|
352
360
|
onMutatedAllowToggle: import("@omnia/fx").MessageBusExposeOnlySubscription<boolean>;
|
353
361
|
onMutatedOnGoingDragging: import("@omnia/fx").MessageBusExposeOnlySubscription<boolean>;
|
354
362
|
onMutatedSocialMode: import("@omnia/fx").MessageBusExposeOnlySubscription<boolean>;
|
@@ -465,6 +473,7 @@ declare const _default: {
|
|
465
473
|
lastDefinition: ContentDefinitionRegistration;
|
466
474
|
toggleColorSchemaPreview: import("@omnia/fx-models").VelcronColorSchemaState;
|
467
475
|
toggleDefinitionPreview: import("@omnia/fx-models").VelcronDefinition;
|
476
|
+
previewState: VelcronState;
|
468
477
|
allowToggle: boolean;
|
469
478
|
onGoingDragging: boolean;
|
470
479
|
socialMode: boolean;
|
@@ -477,6 +486,7 @@ declare const _default: {
|
|
477
486
|
onMutatedLastDefinition: import("@omnia/fx").MessageBusExposeOnlySubscription<ContentDefinitionRegistration>;
|
478
487
|
onMutatedToggleColorSchemaPreview: import("@omnia/fx").MessageBusExposeOnlySubscription<import("@omnia/fx-models").VelcronColorSchemaState>;
|
479
488
|
onMutatedToggleDefinitionPreview: import("@omnia/fx").MessageBusExposeOnlySubscription<import("@omnia/fx-models").VelcronDefinition>;
|
489
|
+
onMutatedPreviewState: import("@omnia/fx").MessageBusExposeOnlySubscription<VelcronState>;
|
480
490
|
onMutatedAllowToggle: import("@omnia/fx").MessageBusExposeOnlySubscription<boolean>;
|
481
491
|
onMutatedOnGoingDragging: import("@omnia/fx").MessageBusExposeOnlySubscription<boolean>;
|
482
492
|
onMutatedSocialMode: import("@omnia/fx").MessageBusExposeOnlySubscription<boolean>;
|
@@ -573,6 +583,7 @@ declare const _default: {
|
|
573
583
|
lastDefinition: ContentDefinitionRegistration;
|
574
584
|
toggleColorSchemaPreview: import("@omnia/fx-models").VelcronColorSchemaState;
|
575
585
|
toggleDefinitionPreview: import("@omnia/fx-models").VelcronDefinition;
|
586
|
+
previewState: VelcronState;
|
576
587
|
allowToggle: boolean;
|
577
588
|
onGoingDragging: boolean;
|
578
589
|
socialMode: boolean;
|
@@ -585,6 +596,7 @@ declare const _default: {
|
|
585
596
|
onMutatedLastDefinition: import("@omnia/fx").MessageBusExposeOnlySubscription<ContentDefinitionRegistration>;
|
586
597
|
onMutatedToggleColorSchemaPreview: import("@omnia/fx").MessageBusExposeOnlySubscription<import("@omnia/fx-models").VelcronColorSchemaState>;
|
587
598
|
onMutatedToggleDefinitionPreview: import("@omnia/fx").MessageBusExposeOnlySubscription<import("@omnia/fx-models").VelcronDefinition>;
|
599
|
+
onMutatedPreviewState: import("@omnia/fx").MessageBusExposeOnlySubscription<VelcronState>;
|
588
600
|
onMutatedAllowToggle: import("@omnia/fx").MessageBusExposeOnlySubscription<boolean>;
|
589
601
|
onMutatedOnGoingDragging: import("@omnia/fx").MessageBusExposeOnlySubscription<boolean>;
|
590
602
|
onMutatedSocialMode: import("@omnia/fx").MessageBusExposeOnlySubscription<boolean>;
|
@@ -674,6 +686,7 @@ declare const _default: {
|
|
674
686
|
lastDefinition: ContentDefinitionRegistration;
|
675
687
|
toggleColorSchemaPreview: import("@omnia/fx-models").VelcronColorSchemaState;
|
676
688
|
toggleDefinitionPreview: import("@omnia/fx-models").VelcronDefinition;
|
689
|
+
previewState: VelcronState;
|
677
690
|
allowToggle: boolean;
|
678
691
|
onGoingDragging: boolean;
|
679
692
|
socialMode: boolean;
|
@@ -686,6 +699,7 @@ declare const _default: {
|
|
686
699
|
onMutatedLastDefinition: import("@omnia/fx").MessageBusExposeOnlySubscription<ContentDefinitionRegistration>;
|
687
700
|
onMutatedToggleColorSchemaPreview: import("@omnia/fx").MessageBusExposeOnlySubscription<import("@omnia/fx-models").VelcronColorSchemaState>;
|
688
701
|
onMutatedToggleDefinitionPreview: import("@omnia/fx").MessageBusExposeOnlySubscription<import("@omnia/fx-models").VelcronDefinition>;
|
702
|
+
onMutatedPreviewState: import("@omnia/fx").MessageBusExposeOnlySubscription<VelcronState>;
|
689
703
|
onMutatedAllowToggle: import("@omnia/fx").MessageBusExposeOnlySubscription<boolean>;
|
690
704
|
onMutatedOnGoingDragging: import("@omnia/fx").MessageBusExposeOnlySubscription<boolean>;
|
691
705
|
onMutatedSocialMode: import("@omnia/fx").MessageBusExposeOnlySubscription<boolean>;
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { GuidValue, VelcronAppDefinition, VelcronColorSchemaState, VelcronDefinition } from "@omnia/fx-models";
|
1
|
+
import { GuidValue, VelcronAppDefinition, VelcronColorSchemaState, VelcronDefinition, VelcronState } from "@omnia/fx-models";
|
2
2
|
import { ContentDefinitionRegistration } from "../models";
|
3
3
|
export declare enum MenuTabs {
|
4
4
|
templates = 0,
|
@@ -16,6 +16,7 @@ export declare const useVelcronContentEditorStore: () => {
|
|
16
16
|
lastDefinition: ContentDefinitionRegistration;
|
17
17
|
toggleColorSchemaPreview: VelcronColorSchemaState;
|
18
18
|
toggleDefinitionPreview: VelcronDefinition;
|
19
|
+
previewState: VelcronState;
|
19
20
|
allowToggle: boolean;
|
20
21
|
onGoingDragging: boolean;
|
21
22
|
socialMode: boolean;
|
@@ -28,6 +29,7 @@ export declare const useVelcronContentEditorStore: () => {
|
|
28
29
|
onMutatedLastDefinition: import("@omnia/fx").MessageBusExposeOnlySubscription<ContentDefinitionRegistration>;
|
29
30
|
onMutatedToggleColorSchemaPreview: import("@omnia/fx").MessageBusExposeOnlySubscription<VelcronColorSchemaState>;
|
30
31
|
onMutatedToggleDefinitionPreview: import("@omnia/fx").MessageBusExposeOnlySubscription<VelcronDefinition>;
|
32
|
+
onMutatedPreviewState: import("@omnia/fx").MessageBusExposeOnlySubscription<VelcronState>;
|
31
33
|
onMutatedAllowToggle: import("@omnia/fx").MessageBusExposeOnlySubscription<boolean>;
|
32
34
|
onMutatedOnGoingDragging: import("@omnia/fx").MessageBusExposeOnlySubscription<boolean>;
|
33
35
|
onMutatedSocialMode: import("@omnia/fx").MessageBusExposeOnlySubscription<boolean>;
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { GuidValue, IIcon } from "@omnia/fx-models";
|
1
|
+
import { GuidValue, IIcon, VelcronState } from "@omnia/fx-models";
|
2
2
|
import { VNodeChild } from "vue";
|
3
3
|
declare const _default: {
|
4
4
|
new (...args: any[]): {
|
@@ -88,8 +88,10 @@ declare const _default: {
|
|
88
88
|
} & {
|
89
89
|
activator?: () => VNodeChild;
|
90
90
|
};
|
91
|
+
readonly previewState?: unknown;
|
91
92
|
readonly allowEdit?: boolean;
|
92
93
|
readonly "allow-edit"?: boolean;
|
94
|
+
readonly "preview-state"?: unknown;
|
93
95
|
readonly exclusions?: GuidValue[];
|
94
96
|
onSelected?: (id: GuidValue) => any;
|
95
97
|
"onDefinition:enter"?: (id: GuidValue) => any;
|
@@ -105,6 +107,12 @@ declare const _default: {
|
|
105
107
|
} & {
|
106
108
|
type: import("vue").PropType<GuidValue[]>;
|
107
109
|
};
|
110
|
+
"preview-state": {
|
111
|
+
type: import("vue").PropType<VelcronState>;
|
112
|
+
};
|
113
|
+
previewState: {
|
114
|
+
type: import("vue").PropType<VelcronState>;
|
115
|
+
};
|
108
116
|
"allow-edit": {
|
109
117
|
type: import("vue").PropType<boolean>;
|
110
118
|
};
|
@@ -227,6 +235,12 @@ declare const _default: {
|
|
227
235
|
} & {
|
228
236
|
type: import("vue").PropType<GuidValue[]>;
|
229
237
|
};
|
238
|
+
"preview-state": {
|
239
|
+
type: import("vue").PropType<VelcronState>;
|
240
|
+
};
|
241
|
+
previewState: {
|
242
|
+
type: import("vue").PropType<VelcronState>;
|
243
|
+
};
|
230
244
|
"allow-edit": {
|
231
245
|
type: import("vue").PropType<boolean>;
|
232
246
|
};
|
@@ -366,6 +380,12 @@ declare const _default: {
|
|
366
380
|
} & {
|
367
381
|
type: import("vue").PropType<GuidValue[]>;
|
368
382
|
};
|
383
|
+
"preview-state": {
|
384
|
+
type: import("vue").PropType<VelcronState>;
|
385
|
+
};
|
386
|
+
previewState: {
|
387
|
+
type: import("vue").PropType<VelcronState>;
|
388
|
+
};
|
369
389
|
"allow-edit": {
|
370
390
|
type: import("vue").PropType<boolean>;
|
371
391
|
};
|
@@ -478,6 +498,12 @@ declare const _default: {
|
|
478
498
|
} & {
|
479
499
|
type: import("vue").PropType<GuidValue[]>;
|
480
500
|
};
|
501
|
+
"preview-state": {
|
502
|
+
type: import("vue").PropType<VelcronState>;
|
503
|
+
};
|
504
|
+
previewState: {
|
505
|
+
type: import("vue").PropType<VelcronState>;
|
506
|
+
};
|
481
507
|
"allow-edit": {
|
482
508
|
type: import("vue").PropType<boolean>;
|
483
509
|
};
|
@@ -666,8 +692,10 @@ declare const _default: {
|
|
666
692
|
} & {
|
667
693
|
activator?: () => VNodeChild;
|
668
694
|
};
|
695
|
+
previewState?: unknown;
|
669
696
|
allowEdit?: boolean;
|
670
697
|
"allow-edit"?: boolean;
|
698
|
+
"preview-state"?: unknown;
|
671
699
|
exclusions?: GuidValue[];
|
672
700
|
}>, "onUpdate:modelValue" | "onSelected" | "onDefinition:enter" | "onDefinition:leave"> & {
|
673
701
|
"onUpdate:modelValue"?: (value: boolean) => any;
|
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.44-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.44-dev",
|
24
24
|
"@microsoft/signalr": "6.0.1",
|
25
25
|
"broadcast-channel": "4.8.0",
|
26
26
|
"dayjs": "1.10.7",
|