@omnia/fx 8.0.158-dev → 8.0.159-dev
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/internal-do-not-import-from-here/ux/aurora/store/ColorSchemaStore.d.ts +155 -31
- package/internal-do-not-import-from-here/ux/aurora/store/SpacingBlueprintStore.d.ts +155 -31
- package/internal-do-not-import-from-here/ux/aurora/store/TypographyBlueprintStore.d.ts +155 -31
- package/internal-do-not-import-from-here/ux/journey/use/UseBlade.d.ts +8 -6
- package/internal-do-not-import-from-here/ux/oxide/datatable/DataTable.css.d.ts +155 -31
- package/internal-do-not-import-from-here/ux/oxide/datatable/DataTable.d.ts +310 -62
- package/internal-do-not-import-from-here/ux/oxide/select/Select.d.ts +310 -62
- package/internal-do-not-import-from-here/ux/oxide/slidepanel/SlidePanel.css.d.ts +0 -1
- package/internal-do-not-import-from-here/ux/use/UseColorSchemaSetup.d.ts +155 -31
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew/VelcronContentEditor.css.d.ts +1 -3
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew/VelcronContentEditor.d.ts +105 -55
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew/components/ActionMenu.css.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew/components/ActionMenu.d.ts +60 -0
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew/components/BorderSelector.d.ts +60 -0
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew/editorHooks/ContentEditorHooks.css.d.ts +4 -0
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew/editorHooks/ContentEditorHooks.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew/models/EditorRenderingHooks.d.ts +10 -0
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew/stores/ContentEditorStore.d.ts +21 -11
- package/internal-do-not-import-from-here/wctypings.d.ts +1 -1
- package/package.json +3 -3
- /package/internal-do-not-import-from-here/ux/velcron/renderer/{propertyeditors → editors}/AlignmentEditor.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/velcron/renderer/{propertyeditors → editors}/ColorEditor.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/velcron/renderer/{propertyeditors → editors}/ColorSchemaEditor.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/velcron/renderer/{propertyeditors → editors}/ContainerEditor.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/velcron/renderer/{propertyeditors → editors}/IconEditor.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/velcron/renderer/{propertyeditors → editors}/ImageEditor.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/velcron/renderer/{propertyeditors → editors}/MarkdownEditor.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/velcron/renderer/{propertyeditors → editors}/PropertyEditorCreator.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/velcron/renderer/{propertyeditors → editors}/ReferenceEditor.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/velcron/renderer/{propertyeditors → editors}/SliderEditor.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/velcron/renderer/{propertyeditors → editors}/SpacingEditor.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/velcron/renderer/{propertyeditors → editors}/SwitchEditor.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/velcron/renderer/{propertyeditors → editors}/TextEditor.d.ts +0 -0
- /package/internal-do-not-import-from-here/ux/velcron/renderer/{propertyeditors → editors}/TypographyEditor.d.ts +0 -0
@@ -34,6 +34,11 @@ declare const _default: {
|
|
34
34
|
onGoingDragging: boolean;
|
35
35
|
socialMode: boolean;
|
36
36
|
showLoading: boolean;
|
37
|
+
showDefinitionSelector: boolean;
|
38
|
+
insertOptions: {
|
39
|
+
preInsert: boolean;
|
40
|
+
inserRelativeToActive: boolean;
|
41
|
+
};
|
37
42
|
};
|
38
43
|
events: {
|
39
44
|
onMutatedDefinitions: import("@omnia/fx").MessageBusExposeOnlySubscription<VelcronContentInstance[]>;
|
@@ -45,14 +50,19 @@ declare const _default: {
|
|
45
50
|
onMutatedOnGoingDragging: import("@omnia/fx").MessageBusExposeOnlySubscription<boolean>;
|
46
51
|
onMutatedSocialMode: import("@omnia/fx").MessageBusExposeOnlySubscription<boolean>;
|
47
52
|
onMutatedShowLoading: import("@omnia/fx").MessageBusExposeOnlySubscription<boolean>;
|
53
|
+
onMutatedShowDefinitionSelector: import("@omnia/fx").MessageBusExposeOnlySubscription<boolean>;
|
54
|
+
onMutatedInsertOptions: import("@omnia/fx").MessageBusExposeOnlySubscription<{
|
55
|
+
preInsert: boolean;
|
56
|
+
inserRelativeToActive: boolean;
|
57
|
+
}>;
|
48
58
|
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
49
59
|
actions: {
|
50
60
|
onDispatching: {
|
51
|
-
|
52
|
-
subscribe(fn: () => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
61
|
+
showDefinitionSelector: {
|
62
|
+
subscribe(fn: (preInsert: boolean, insertRelativeToActive?: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
53
63
|
};
|
54
64
|
addDefinition: {
|
55
|
-
subscribe(fn: (definition: import("@omnia/fx-models").VelcronDefinitionRegistration<object
|
65
|
+
subscribe(fn: (definition: import("@omnia/fx-models").VelcronDefinitionRegistration<object>, setAsActive?: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
56
66
|
};
|
57
67
|
setActiveDefinition: {
|
58
68
|
subscribe(fn: (definition: VelcronContentInstance) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
@@ -86,11 +96,11 @@ declare const _default: {
|
|
86
96
|
};
|
87
97
|
};
|
88
98
|
onDispatched: {
|
89
|
-
|
90
|
-
subscribe(fn: (result: void) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
99
|
+
showDefinitionSelector: {
|
100
|
+
subscribe(fn: (result: void, preInsert: boolean, insertRelativeToActive?: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
91
101
|
};
|
92
102
|
addDefinition: {
|
93
|
-
subscribe(fn: (result: void, definition: import("@omnia/fx-models").VelcronDefinitionRegistration<object
|
103
|
+
subscribe(fn: (result: void, definition: import("@omnia/fx-models").VelcronDefinitionRegistration<object>, setAsActive?: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
94
104
|
};
|
95
105
|
setActiveDefinition: {
|
96
106
|
subscribe(fn: (result: void, definition: VelcronContentInstance) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
@@ -124,11 +134,11 @@ declare const _default: {
|
|
124
134
|
};
|
125
135
|
};
|
126
136
|
onFailure: {
|
127
|
-
|
128
|
-
subscribe(fn: (failureReason: any) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
137
|
+
showDefinitionSelector: {
|
138
|
+
subscribe(fn: (failureReason: any, preInsert: boolean, insertRelativeToActive?: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
129
139
|
};
|
130
140
|
addDefinition: {
|
131
|
-
subscribe(fn: (failureReason: any, definition: import("@omnia/fx-models").VelcronDefinitionRegistration<object
|
141
|
+
subscribe(fn: (failureReason: any, definition: import("@omnia/fx-models").VelcronDefinitionRegistration<object>, setAsActive?: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
132
142
|
};
|
133
143
|
setActiveDefinition: {
|
134
144
|
subscribe(fn: (failureReason: any, definition: VelcronContentInstance) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
@@ -162,8 +172,8 @@ declare const _default: {
|
|
162
172
|
};
|
163
173
|
};
|
164
174
|
} & {
|
165
|
-
|
166
|
-
addDefinition(definition: import("@omnia/fx-models").VelcronDefinitionRegistration<object
|
175
|
+
showDefinitionSelector(preInsert: boolean, insertRelativeToActive?: boolean): void;
|
176
|
+
addDefinition(definition: import("@omnia/fx-models").VelcronDefinitionRegistration<object>, setAsActive?: boolean): void;
|
167
177
|
setActiveDefinition(definition: VelcronContentInstance): void;
|
168
178
|
removeActiveDefinition(): void;
|
169
179
|
setSelectedDefinition(definition: VelcronContentInstance): void;
|
@@ -208,6 +218,11 @@ declare const _default: {
|
|
208
218
|
onGoingDragging: boolean;
|
209
219
|
socialMode: boolean;
|
210
220
|
showLoading: boolean;
|
221
|
+
showDefinitionSelector: boolean;
|
222
|
+
insertOptions: {
|
223
|
+
preInsert: boolean;
|
224
|
+
inserRelativeToActive: boolean;
|
225
|
+
};
|
211
226
|
};
|
212
227
|
events: {
|
213
228
|
onMutatedDefinitions: import("@omnia/fx").MessageBusExposeOnlySubscription<VelcronContentInstance[]>;
|
@@ -219,14 +234,19 @@ declare const _default: {
|
|
219
234
|
onMutatedOnGoingDragging: import("@omnia/fx").MessageBusExposeOnlySubscription<boolean>;
|
220
235
|
onMutatedSocialMode: import("@omnia/fx").MessageBusExposeOnlySubscription<boolean>;
|
221
236
|
onMutatedShowLoading: import("@omnia/fx").MessageBusExposeOnlySubscription<boolean>;
|
237
|
+
onMutatedShowDefinitionSelector: import("@omnia/fx").MessageBusExposeOnlySubscription<boolean>;
|
238
|
+
onMutatedInsertOptions: import("@omnia/fx").MessageBusExposeOnlySubscription<{
|
239
|
+
preInsert: boolean;
|
240
|
+
inserRelativeToActive: boolean;
|
241
|
+
}>;
|
222
242
|
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
223
243
|
actions: {
|
224
244
|
onDispatching: {
|
225
|
-
|
226
|
-
subscribe(fn: () => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
245
|
+
showDefinitionSelector: {
|
246
|
+
subscribe(fn: (preInsert: boolean, insertRelativeToActive?: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
227
247
|
};
|
228
248
|
addDefinition: {
|
229
|
-
subscribe(fn: (definition: import("@omnia/fx-models").VelcronDefinitionRegistration<object
|
249
|
+
subscribe(fn: (definition: import("@omnia/fx-models").VelcronDefinitionRegistration<object>, setAsActive?: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
230
250
|
};
|
231
251
|
setActiveDefinition: {
|
232
252
|
subscribe(fn: (definition: VelcronContentInstance) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
@@ -260,11 +280,11 @@ declare const _default: {
|
|
260
280
|
};
|
261
281
|
};
|
262
282
|
onDispatched: {
|
263
|
-
|
264
|
-
subscribe(fn: (result: void) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
283
|
+
showDefinitionSelector: {
|
284
|
+
subscribe(fn: (result: void, preInsert: boolean, insertRelativeToActive?: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
265
285
|
};
|
266
286
|
addDefinition: {
|
267
|
-
subscribe(fn: (result: void, definition: import("@omnia/fx-models").VelcronDefinitionRegistration<object
|
287
|
+
subscribe(fn: (result: void, definition: import("@omnia/fx-models").VelcronDefinitionRegistration<object>, setAsActive?: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
268
288
|
};
|
269
289
|
setActiveDefinition: {
|
270
290
|
subscribe(fn: (result: void, definition: VelcronContentInstance) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
@@ -298,11 +318,11 @@ declare const _default: {
|
|
298
318
|
};
|
299
319
|
};
|
300
320
|
onFailure: {
|
301
|
-
|
302
|
-
subscribe(fn: (failureReason: any) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
321
|
+
showDefinitionSelector: {
|
322
|
+
subscribe(fn: (failureReason: any, preInsert: boolean, insertRelativeToActive?: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
303
323
|
};
|
304
324
|
addDefinition: {
|
305
|
-
subscribe(fn: (failureReason: any, definition: import("@omnia/fx-models").VelcronDefinitionRegistration<object
|
325
|
+
subscribe(fn: (failureReason: any, definition: import("@omnia/fx-models").VelcronDefinitionRegistration<object>, setAsActive?: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
306
326
|
};
|
307
327
|
setActiveDefinition: {
|
308
328
|
subscribe(fn: (failureReason: any, definition: VelcronContentInstance) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
@@ -336,8 +356,8 @@ declare const _default: {
|
|
336
356
|
};
|
337
357
|
};
|
338
358
|
} & {
|
339
|
-
|
340
|
-
addDefinition(definition: import("@omnia/fx-models").VelcronDefinitionRegistration<object
|
359
|
+
showDefinitionSelector(preInsert: boolean, insertRelativeToActive?: boolean): void;
|
360
|
+
addDefinition(definition: import("@omnia/fx-models").VelcronDefinitionRegistration<object>, setAsActive?: boolean): void;
|
341
361
|
setActiveDefinition(definition: VelcronContentInstance): void;
|
342
362
|
removeActiveDefinition(): void;
|
343
363
|
setSelectedDefinition(definition: VelcronContentInstance): void;
|
@@ -385,6 +405,11 @@ declare const _default: {
|
|
385
405
|
onGoingDragging: boolean;
|
386
406
|
socialMode: boolean;
|
387
407
|
showLoading: boolean;
|
408
|
+
showDefinitionSelector: boolean;
|
409
|
+
insertOptions: {
|
410
|
+
preInsert: boolean;
|
411
|
+
inserRelativeToActive: boolean;
|
412
|
+
};
|
388
413
|
};
|
389
414
|
events: {
|
390
415
|
onMutatedDefinitions: import("@omnia/fx").MessageBusExposeOnlySubscription<VelcronContentInstance[]>;
|
@@ -396,14 +421,19 @@ declare const _default: {
|
|
396
421
|
onMutatedOnGoingDragging: import("@omnia/fx").MessageBusExposeOnlySubscription<boolean>;
|
397
422
|
onMutatedSocialMode: import("@omnia/fx").MessageBusExposeOnlySubscription<boolean>;
|
398
423
|
onMutatedShowLoading: import("@omnia/fx").MessageBusExposeOnlySubscription<boolean>;
|
424
|
+
onMutatedShowDefinitionSelector: import("@omnia/fx").MessageBusExposeOnlySubscription<boolean>;
|
425
|
+
onMutatedInsertOptions: import("@omnia/fx").MessageBusExposeOnlySubscription<{
|
426
|
+
preInsert: boolean;
|
427
|
+
inserRelativeToActive: boolean;
|
428
|
+
}>;
|
399
429
|
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
400
430
|
actions: {
|
401
431
|
onDispatching: {
|
402
|
-
|
403
|
-
subscribe(fn: () => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
432
|
+
showDefinitionSelector: {
|
433
|
+
subscribe(fn: (preInsert: boolean, insertRelativeToActive?: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
404
434
|
};
|
405
435
|
addDefinition: {
|
406
|
-
subscribe(fn: (definition: import("@omnia/fx-models").VelcronDefinitionRegistration<object
|
436
|
+
subscribe(fn: (definition: import("@omnia/fx-models").VelcronDefinitionRegistration<object>, setAsActive?: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
407
437
|
};
|
408
438
|
setActiveDefinition: {
|
409
439
|
subscribe(fn: (definition: VelcronContentInstance) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
@@ -437,11 +467,11 @@ declare const _default: {
|
|
437
467
|
};
|
438
468
|
};
|
439
469
|
onDispatched: {
|
440
|
-
|
441
|
-
subscribe(fn: (result: void) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
470
|
+
showDefinitionSelector: {
|
471
|
+
subscribe(fn: (result: void, preInsert: boolean, insertRelativeToActive?: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
442
472
|
};
|
443
473
|
addDefinition: {
|
444
|
-
subscribe(fn: (result: void, definition: import("@omnia/fx-models").VelcronDefinitionRegistration<object
|
474
|
+
subscribe(fn: (result: void, definition: import("@omnia/fx-models").VelcronDefinitionRegistration<object>, setAsActive?: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
445
475
|
};
|
446
476
|
setActiveDefinition: {
|
447
477
|
subscribe(fn: (result: void, definition: VelcronContentInstance) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
@@ -475,11 +505,11 @@ declare const _default: {
|
|
475
505
|
};
|
476
506
|
};
|
477
507
|
onFailure: {
|
478
|
-
|
479
|
-
subscribe(fn: (failureReason: any) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
508
|
+
showDefinitionSelector: {
|
509
|
+
subscribe(fn: (failureReason: any, preInsert: boolean, insertRelativeToActive?: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
480
510
|
};
|
481
511
|
addDefinition: {
|
482
|
-
subscribe(fn: (failureReason: any, definition: import("@omnia/fx-models").VelcronDefinitionRegistration<object
|
512
|
+
subscribe(fn: (failureReason: any, definition: import("@omnia/fx-models").VelcronDefinitionRegistration<object>, setAsActive?: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
483
513
|
};
|
484
514
|
setActiveDefinition: {
|
485
515
|
subscribe(fn: (failureReason: any, definition: VelcronContentInstance) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
@@ -513,8 +543,8 @@ declare const _default: {
|
|
513
543
|
};
|
514
544
|
};
|
515
545
|
} & {
|
516
|
-
|
517
|
-
addDefinition(definition: import("@omnia/fx-models").VelcronDefinitionRegistration<object
|
546
|
+
showDefinitionSelector(preInsert: boolean, insertRelativeToActive?: boolean): void;
|
547
|
+
addDefinition(definition: import("@omnia/fx-models").VelcronDefinitionRegistration<object>, setAsActive?: boolean): void;
|
518
548
|
setActiveDefinition(definition: VelcronContentInstance): void;
|
519
549
|
removeActiveDefinition(): void;
|
520
550
|
setSelectedDefinition(definition: VelcronContentInstance): void;
|
@@ -559,6 +589,11 @@ declare const _default: {
|
|
559
589
|
onGoingDragging: boolean;
|
560
590
|
socialMode: boolean;
|
561
591
|
showLoading: boolean;
|
592
|
+
showDefinitionSelector: boolean;
|
593
|
+
insertOptions: {
|
594
|
+
preInsert: boolean;
|
595
|
+
inserRelativeToActive: boolean;
|
596
|
+
};
|
562
597
|
};
|
563
598
|
events: {
|
564
599
|
onMutatedDefinitions: import("@omnia/fx").MessageBusExposeOnlySubscription<VelcronContentInstance[]>;
|
@@ -570,14 +605,19 @@ declare const _default: {
|
|
570
605
|
onMutatedOnGoingDragging: import("@omnia/fx").MessageBusExposeOnlySubscription<boolean>;
|
571
606
|
onMutatedSocialMode: import("@omnia/fx").MessageBusExposeOnlySubscription<boolean>;
|
572
607
|
onMutatedShowLoading: import("@omnia/fx").MessageBusExposeOnlySubscription<boolean>;
|
608
|
+
onMutatedShowDefinitionSelector: import("@omnia/fx").MessageBusExposeOnlySubscription<boolean>;
|
609
|
+
onMutatedInsertOptions: import("@omnia/fx").MessageBusExposeOnlySubscription<{
|
610
|
+
preInsert: boolean;
|
611
|
+
inserRelativeToActive: boolean;
|
612
|
+
}>;
|
573
613
|
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
574
614
|
actions: {
|
575
615
|
onDispatching: {
|
576
|
-
|
577
|
-
subscribe(fn: () => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
616
|
+
showDefinitionSelector: {
|
617
|
+
subscribe(fn: (preInsert: boolean, insertRelativeToActive?: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
578
618
|
};
|
579
619
|
addDefinition: {
|
580
|
-
subscribe(fn: (definition: import("@omnia/fx-models").VelcronDefinitionRegistration<object
|
620
|
+
subscribe(fn: (definition: import("@omnia/fx-models").VelcronDefinitionRegistration<object>, setAsActive?: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
581
621
|
};
|
582
622
|
setActiveDefinition: {
|
583
623
|
subscribe(fn: (definition: VelcronContentInstance) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
@@ -611,11 +651,11 @@ declare const _default: {
|
|
611
651
|
};
|
612
652
|
};
|
613
653
|
onDispatched: {
|
614
|
-
|
615
|
-
subscribe(fn: (result: void) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
654
|
+
showDefinitionSelector: {
|
655
|
+
subscribe(fn: (result: void, preInsert: boolean, insertRelativeToActive?: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
616
656
|
};
|
617
657
|
addDefinition: {
|
618
|
-
subscribe(fn: (result: void, definition: import("@omnia/fx-models").VelcronDefinitionRegistration<object
|
658
|
+
subscribe(fn: (result: void, definition: import("@omnia/fx-models").VelcronDefinitionRegistration<object>, setAsActive?: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
619
659
|
};
|
620
660
|
setActiveDefinition: {
|
621
661
|
subscribe(fn: (result: void, definition: VelcronContentInstance) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
@@ -649,11 +689,11 @@ declare const _default: {
|
|
649
689
|
};
|
650
690
|
};
|
651
691
|
onFailure: {
|
652
|
-
|
653
|
-
subscribe(fn: (failureReason: any) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
692
|
+
showDefinitionSelector: {
|
693
|
+
subscribe(fn: (failureReason: any, preInsert: boolean, insertRelativeToActive?: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
654
694
|
};
|
655
695
|
addDefinition: {
|
656
|
-
subscribe(fn: (failureReason: any, definition: import("@omnia/fx-models").VelcronDefinitionRegistration<object
|
696
|
+
subscribe(fn: (failureReason: any, definition: import("@omnia/fx-models").VelcronDefinitionRegistration<object>, setAsActive?: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
657
697
|
};
|
658
698
|
setActiveDefinition: {
|
659
699
|
subscribe(fn: (failureReason: any, definition: VelcronContentInstance) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
@@ -687,8 +727,8 @@ declare const _default: {
|
|
687
727
|
};
|
688
728
|
};
|
689
729
|
} & {
|
690
|
-
|
691
|
-
addDefinition(definition: import("@omnia/fx-models").VelcronDefinitionRegistration<object
|
730
|
+
showDefinitionSelector(preInsert: boolean, insertRelativeToActive?: boolean): void;
|
731
|
+
addDefinition(definition: import("@omnia/fx-models").VelcronDefinitionRegistration<object>, setAsActive?: boolean): void;
|
692
732
|
setActiveDefinition(definition: VelcronContentInstance): void;
|
693
733
|
removeActiveDefinition(): void;
|
694
734
|
setSelectedDefinition(definition: VelcronContentInstance): void;
|
@@ -726,6 +766,11 @@ declare const _default: {
|
|
726
766
|
onGoingDragging: boolean;
|
727
767
|
socialMode: boolean;
|
728
768
|
showLoading: boolean;
|
769
|
+
showDefinitionSelector: boolean;
|
770
|
+
insertOptions: {
|
771
|
+
preInsert: boolean;
|
772
|
+
inserRelativeToActive: boolean;
|
773
|
+
};
|
729
774
|
};
|
730
775
|
events: {
|
731
776
|
onMutatedDefinitions: import("@omnia/fx").MessageBusExposeOnlySubscription<VelcronContentInstance[]>;
|
@@ -737,14 +782,19 @@ declare const _default: {
|
|
737
782
|
onMutatedOnGoingDragging: import("@omnia/fx").MessageBusExposeOnlySubscription<boolean>;
|
738
783
|
onMutatedSocialMode: import("@omnia/fx").MessageBusExposeOnlySubscription<boolean>;
|
739
784
|
onMutatedShowLoading: import("@omnia/fx").MessageBusExposeOnlySubscription<boolean>;
|
785
|
+
onMutatedShowDefinitionSelector: import("@omnia/fx").MessageBusExposeOnlySubscription<boolean>;
|
786
|
+
onMutatedInsertOptions: import("@omnia/fx").MessageBusExposeOnlySubscription<{
|
787
|
+
preInsert: boolean;
|
788
|
+
inserRelativeToActive: boolean;
|
789
|
+
}>;
|
740
790
|
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
741
791
|
actions: {
|
742
792
|
onDispatching: {
|
743
|
-
|
744
|
-
subscribe(fn: () => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
793
|
+
showDefinitionSelector: {
|
794
|
+
subscribe(fn: (preInsert: boolean, insertRelativeToActive?: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
745
795
|
};
|
746
796
|
addDefinition: {
|
747
|
-
subscribe(fn: (definition: import("@omnia/fx-models").VelcronDefinitionRegistration<object
|
797
|
+
subscribe(fn: (definition: import("@omnia/fx-models").VelcronDefinitionRegistration<object>, setAsActive?: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
748
798
|
};
|
749
799
|
setActiveDefinition: {
|
750
800
|
subscribe(fn: (definition: VelcronContentInstance) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
@@ -778,11 +828,11 @@ declare const _default: {
|
|
778
828
|
};
|
779
829
|
};
|
780
830
|
onDispatched: {
|
781
|
-
|
782
|
-
subscribe(fn: (result: void) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
831
|
+
showDefinitionSelector: {
|
832
|
+
subscribe(fn: (result: void, preInsert: boolean, insertRelativeToActive?: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
783
833
|
};
|
784
834
|
addDefinition: {
|
785
|
-
subscribe(fn: (result: void, definition: import("@omnia/fx-models").VelcronDefinitionRegistration<object
|
835
|
+
subscribe(fn: (result: void, definition: import("@omnia/fx-models").VelcronDefinitionRegistration<object>, setAsActive?: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
786
836
|
};
|
787
837
|
setActiveDefinition: {
|
788
838
|
subscribe(fn: (result: void, definition: VelcronContentInstance) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
@@ -816,11 +866,11 @@ declare const _default: {
|
|
816
866
|
};
|
817
867
|
};
|
818
868
|
onFailure: {
|
819
|
-
|
820
|
-
subscribe(fn: (failureReason: any) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
869
|
+
showDefinitionSelector: {
|
870
|
+
subscribe(fn: (failureReason: any, preInsert: boolean, insertRelativeToActive?: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
821
871
|
};
|
822
872
|
addDefinition: {
|
823
|
-
subscribe(fn: (failureReason: any, definition: import("@omnia/fx-models").VelcronDefinitionRegistration<object
|
873
|
+
subscribe(fn: (failureReason: any, definition: import("@omnia/fx-models").VelcronDefinitionRegistration<object>, setAsActive?: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
824
874
|
};
|
825
875
|
setActiveDefinition: {
|
826
876
|
subscribe(fn: (failureReason: any, definition: VelcronContentInstance) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
@@ -854,8 +904,8 @@ declare const _default: {
|
|
854
904
|
};
|
855
905
|
};
|
856
906
|
} & {
|
857
|
-
|
858
|
-
addDefinition(definition: import("@omnia/fx-models").VelcronDefinitionRegistration<object
|
907
|
+
showDefinitionSelector(preInsert: boolean, insertRelativeToActive?: boolean): void;
|
908
|
+
addDefinition(definition: import("@omnia/fx-models").VelcronDefinitionRegistration<object>, setAsActive?: boolean): void;
|
859
909
|
setActiveDefinition(definition: VelcronContentInstance): void;
|
860
910
|
removeActiveDefinition(): void;
|
861
911
|
setSelectedDefinition(definition: VelcronContentInstance): void;
|
@@ -0,0 +1,60 @@
|
|
1
|
+
import { VelcronContentInstance } from "../models";
|
2
|
+
declare const _default: (props: {
|
3
|
+
"v-model"?: VelcronContentInstance;
|
4
|
+
"onUpdate:modelValue"?: (value: VelcronContentInstance) => void;
|
5
|
+
modelValue?: VelcronContentInstance;
|
6
|
+
} & Omit<{}, "v-model" | "onUpdate:modelValue" | "modelValue"> & {
|
7
|
+
"v-slots"?: {
|
8
|
+
default?: import("vue").Slot;
|
9
|
+
} & {};
|
10
|
+
} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "v-model" | "onUpdate:modelValue" | "modelValue">) => {
|
11
|
+
$: import("vue").ComponentInternalInstance;
|
12
|
+
$data: {};
|
13
|
+
$props: {};
|
14
|
+
$attrs: {
|
15
|
+
[x: string]: unknown;
|
16
|
+
};
|
17
|
+
$refs: {
|
18
|
+
[x: string]: unknown;
|
19
|
+
};
|
20
|
+
$slots: Readonly<{
|
21
|
+
[name: string]: import("vue").Slot<any>;
|
22
|
+
}>;
|
23
|
+
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
24
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
25
|
+
$emit: (event: string, ...args: any[]) => void;
|
26
|
+
$el: any;
|
27
|
+
$options: import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}> & {
|
28
|
+
beforeCreate?: (() => void) | (() => void)[];
|
29
|
+
created?: (() => void) | (() => void)[];
|
30
|
+
beforeMount?: (() => void) | (() => void)[];
|
31
|
+
mounted?: (() => void) | (() => void)[];
|
32
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
33
|
+
updated?: (() => void) | (() => void)[];
|
34
|
+
activated?: (() => void) | (() => void)[];
|
35
|
+
deactivated?: (() => void) | (() => void)[];
|
36
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
37
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
38
|
+
destroyed?: (() => void) | (() => void)[];
|
39
|
+
unmounted?: (() => void) | (() => void)[];
|
40
|
+
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
41
|
+
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
42
|
+
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)[];
|
43
|
+
};
|
44
|
+
$forceUpdate: () => void;
|
45
|
+
$nextTick: typeof import("vue").nextTick;
|
46
|
+
$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;
|
47
|
+
} & Omit<{}, never> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {} & {
|
48
|
+
propsDefinition: {
|
49
|
+
"v-model"?: VelcronContentInstance;
|
50
|
+
"onUpdate:modelValue"?: (value: VelcronContentInstance) => void;
|
51
|
+
modelValue?: VelcronContentInstance;
|
52
|
+
} & {
|
53
|
+
"v-slots"?: {
|
54
|
+
default?: import("vue").Slot;
|
55
|
+
} & {};
|
56
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "v-model" | "onUpdate:modelValue" | "modelValue">;
|
57
|
+
} & import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
58
|
+
[key: string]: any;
|
59
|
+
}>;
|
60
|
+
export default _default;
|
@@ -0,0 +1,60 @@
|
|
1
|
+
import { VelcronContentInstance } from "../models";
|
2
|
+
declare const _default: (props: {
|
3
|
+
"v-model"?: VelcronContentInstance;
|
4
|
+
"onUpdate:modelValue"?: (value: VelcronContentInstance) => void;
|
5
|
+
modelValue?: VelcronContentInstance;
|
6
|
+
} & Omit<{}, "v-model" | "onUpdate:modelValue" | "modelValue"> & {
|
7
|
+
"v-slots"?: {
|
8
|
+
default?: import("vue").Slot;
|
9
|
+
} & {};
|
10
|
+
} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "v-model" | "onUpdate:modelValue" | "modelValue">) => {
|
11
|
+
$: import("vue").ComponentInternalInstance;
|
12
|
+
$data: {};
|
13
|
+
$props: {};
|
14
|
+
$attrs: {
|
15
|
+
[x: string]: unknown;
|
16
|
+
};
|
17
|
+
$refs: {
|
18
|
+
[x: string]: unknown;
|
19
|
+
};
|
20
|
+
$slots: Readonly<{
|
21
|
+
[name: string]: import("vue").Slot<any>;
|
22
|
+
}>;
|
23
|
+
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
24
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
25
|
+
$emit: (event: string, ...args: any[]) => void;
|
26
|
+
$el: any;
|
27
|
+
$options: import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}> & {
|
28
|
+
beforeCreate?: (() => void) | (() => void)[];
|
29
|
+
created?: (() => void) | (() => void)[];
|
30
|
+
beforeMount?: (() => void) | (() => void)[];
|
31
|
+
mounted?: (() => void) | (() => void)[];
|
32
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
33
|
+
updated?: (() => void) | (() => void)[];
|
34
|
+
activated?: (() => void) | (() => void)[];
|
35
|
+
deactivated?: (() => void) | (() => void)[];
|
36
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
37
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
38
|
+
destroyed?: (() => void) | (() => void)[];
|
39
|
+
unmounted?: (() => void) | (() => void)[];
|
40
|
+
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
41
|
+
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
42
|
+
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)[];
|
43
|
+
};
|
44
|
+
$forceUpdate: () => void;
|
45
|
+
$nextTick: typeof import("vue").nextTick;
|
46
|
+
$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;
|
47
|
+
} & Omit<{}, never> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {} & {
|
48
|
+
propsDefinition: {
|
49
|
+
"v-model"?: VelcronContentInstance;
|
50
|
+
"onUpdate:modelValue"?: (value: VelcronContentInstance) => void;
|
51
|
+
modelValue?: VelcronContentInstance;
|
52
|
+
} & {
|
53
|
+
"v-slots"?: {
|
54
|
+
default?: import("vue").Slot;
|
55
|
+
} & {};
|
56
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "v-model" | "onUpdate:modelValue" | "modelValue">;
|
57
|
+
} & import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
58
|
+
[key: string]: any;
|
59
|
+
}>;
|
60
|
+
export default _default;
|
@@ -0,0 +1,10 @@
|
|
1
|
+
import { VNodeChild } from "vue";
|
2
|
+
import { VelcronContentInstance } from "./ContentDefinitionRegistration";
|
3
|
+
export interface EditorRenderingHooks {
|
4
|
+
styles?: {
|
5
|
+
activeItem?: string;
|
6
|
+
hover?: string;
|
7
|
+
};
|
8
|
+
renderBorderSelectors?: (item: VelcronContentInstance) => VNodeChild;
|
9
|
+
renderActionMenu?: (item: VelcronContentInstance) => VNodeChild;
|
10
|
+
}
|
@@ -18,6 +18,11 @@ export declare const useVelcronContentEditorStore: () => {
|
|
18
18
|
onGoingDragging: boolean;
|
19
19
|
socialMode: boolean;
|
20
20
|
showLoading: boolean;
|
21
|
+
showDefinitionSelector: boolean;
|
22
|
+
insertOptions: {
|
23
|
+
preInsert: boolean;
|
24
|
+
inserRelativeToActive: boolean;
|
25
|
+
};
|
21
26
|
};
|
22
27
|
events: {
|
23
28
|
onMutatedDefinitions: import("@omnia/fx").MessageBusExposeOnlySubscription<VelcronContentInstance[]>;
|
@@ -29,14 +34,19 @@ export declare const useVelcronContentEditorStore: () => {
|
|
29
34
|
onMutatedOnGoingDragging: import("@omnia/fx").MessageBusExposeOnlySubscription<boolean>;
|
30
35
|
onMutatedSocialMode: import("@omnia/fx").MessageBusExposeOnlySubscription<boolean>;
|
31
36
|
onMutatedShowLoading: import("@omnia/fx").MessageBusExposeOnlySubscription<boolean>;
|
37
|
+
onMutatedShowDefinitionSelector: import("@omnia/fx").MessageBusExposeOnlySubscription<boolean>;
|
38
|
+
onMutatedInsertOptions: import("@omnia/fx").MessageBusExposeOnlySubscription<{
|
39
|
+
preInsert: boolean;
|
40
|
+
inserRelativeToActive: boolean;
|
41
|
+
}>;
|
32
42
|
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
33
43
|
actions: {
|
34
44
|
onDispatching: {
|
35
|
-
|
36
|
-
subscribe(fn: () => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
45
|
+
showDefinitionSelector: {
|
46
|
+
subscribe(fn: (preInsert: boolean, insertRelativeToActive?: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
37
47
|
};
|
38
48
|
addDefinition: {
|
39
|
-
subscribe(fn: (definition: VelcronDefinitionRegistration<object
|
49
|
+
subscribe(fn: (definition: VelcronDefinitionRegistration<object>, setAsActive?: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
40
50
|
};
|
41
51
|
setActiveDefinition: {
|
42
52
|
subscribe(fn: (definition: VelcronContentInstance) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
@@ -70,11 +80,11 @@ export declare const useVelcronContentEditorStore: () => {
|
|
70
80
|
};
|
71
81
|
};
|
72
82
|
onDispatched: {
|
73
|
-
|
74
|
-
subscribe(fn: (result: void) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
83
|
+
showDefinitionSelector: {
|
84
|
+
subscribe(fn: (result: void, preInsert: boolean, insertRelativeToActive?: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
75
85
|
};
|
76
86
|
addDefinition: {
|
77
|
-
subscribe(fn: (result: void, definition: VelcronDefinitionRegistration<object
|
87
|
+
subscribe(fn: (result: void, definition: VelcronDefinitionRegistration<object>, setAsActive?: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
78
88
|
};
|
79
89
|
setActiveDefinition: {
|
80
90
|
subscribe(fn: (result: void, definition: VelcronContentInstance) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
@@ -108,11 +118,11 @@ export declare const useVelcronContentEditorStore: () => {
|
|
108
118
|
};
|
109
119
|
};
|
110
120
|
onFailure: {
|
111
|
-
|
112
|
-
subscribe(fn: (failureReason: any) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
121
|
+
showDefinitionSelector: {
|
122
|
+
subscribe(fn: (failureReason: any, preInsert: boolean, insertRelativeToActive?: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
113
123
|
};
|
114
124
|
addDefinition: {
|
115
|
-
subscribe(fn: (failureReason: any, definition: VelcronDefinitionRegistration<object
|
125
|
+
subscribe(fn: (failureReason: any, definition: VelcronDefinitionRegistration<object>, setAsActive?: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
116
126
|
};
|
117
127
|
setActiveDefinition: {
|
118
128
|
subscribe(fn: (failureReason: any, definition: VelcronContentInstance) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
@@ -146,8 +156,8 @@ export declare const useVelcronContentEditorStore: () => {
|
|
146
156
|
};
|
147
157
|
};
|
148
158
|
} & {
|
149
|
-
|
150
|
-
addDefinition(definition: VelcronDefinitionRegistration): void;
|
159
|
+
showDefinitionSelector(preInsert: boolean, insertRelativeToActive?: boolean): void;
|
160
|
+
addDefinition(definition: VelcronDefinitionRegistration, setAsActive?: boolean): void;
|
151
161
|
setActiveDefinition(definition: VelcronContentInstance): void;
|
152
162
|
removeActiveDefinition(): void;
|
153
163
|
setSelectedDefinition(definition: VelcronContentInstance): void;
|
@@ -394,7 +394,7 @@ import wca7db43482a3140998eca19b47d941126 from './ux/velcron/components/contente
|
|
394
394
|
import wcb2999683f82046d6ad05a3c13df8e577 from './ux/velcron/components/contenteditorNew/VelcronContentEditor';
|
395
395
|
import wcb197c5e805cc4d6bb3d012e258560b31 from './ux/velcron/components/definitionpicker/VelcronDefinitionPicker';
|
396
396
|
import wcdabd67ab338243858fe7d1ca24399995 from './ux/velcron/components/propertieseditor/VelcronPropertiesEditor';
|
397
|
-
import wc5688474abe554cabb34c696620eb6be1 from './ux/velcron/renderer/
|
397
|
+
import wc5688474abe554cabb34c696620eb6be1 from './ux/velcron/renderer/editors/PropertyEditorCreator';
|
398
398
|
import wcdb625bea89b04f32a946efe7a887c7f2 from '../../fx-sp/internal-do-not-import-from-here/ux/filterengine/components/settings/TaxonomyPropertySettings';
|
399
399
|
import wcded30c240e6c4688955867472a8d0a02 from '../../fx-sp/internal-do-not-import-from-here/ux/filterengine/components/settings/TaxonomyPropertyDefaultValueInput';
|
400
400
|
import wc0fb3af1182d849fc89b04ed67949091e from '../../fx-sp/internal-do-not-import-from-here/ux/filterengine/components/settings/ExtendedTaxonomyPropertyDefaultValueInput';
|