@omnia/fx 8.0.271-dev → 8.0.273-dev

Sign up to get free protection for your applications and to get access to all the features.
Files changed (31) hide show
  1. package/internal-do-not-import-from-here/ux/flow/editor/commands/EditorCommands.d.ts +1 -0
  2. package/internal-do-not-import-from-here/ux/flow/editor/models/EditorModels.d.ts +1 -0
  3. package/internal-do-not-import-from-here/ux/flow/editor/plugins/eventhandlers/converters/WordConverter.d.ts +5 -0
  4. package/internal-do-not-import-from-here/ux/flow/editor/plugins/spacing/SpacingButton.d.ts +2 -0
  5. package/internal-do-not-import-from-here/ux/flow/editor/plugins/spacing/SpacingPlugin.d.ts +3 -0
  6. package/internal-do-not-import-from-here/ux/flow/editor/plugins/textalign/TextAlignPlugin.d.ts +3 -0
  7. package/internal-do-not-import-from-here/ux/flow/editor/stores/FlowEditorStore.d.ts +6 -2
  8. package/internal-do-not-import-from-here/ux/flow/editor/stores/FlowEditorToolbarStore.d.ts +30 -10
  9. package/internal-do-not-import-from-here/ux/flow/renderer/plugins/spacing/SpacingPlugin.d.ts +3 -0
  10. package/internal-do-not-import-from-here/ux/flow/renderer/plugins/textalign/TextAlignPlugin.d.ts +3 -0
  11. package/internal-do-not-import-from-here/ux/iconpicker/IconPicker.d.ts +26 -220
  12. package/internal-do-not-import-from-here/ux/identities/IdentityRenderer.d.ts +1 -1
  13. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/blocktitle/BlockTitle.d.ts +1 -14
  14. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/{blocktitle/BlockTitleRenderer.d.ts → titlerenderer/TitleRenderer.d.ts} +2 -2
  15. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/titlerenderer/TitleRendererSettings.d.ts +11 -0
  16. package/internal-do-not-import-from-here/ux/models/flow/SpacingFormatNode.d.ts +5 -0
  17. package/internal-do-not-import-from-here/ux/models/flow/TextAlignNode.d.ts +5 -0
  18. package/internal-do-not-import-from-here/ux/models/flow/index.d.ts +2 -0
  19. package/internal-do-not-import-from-here/ux/oxide/radio/RadioGroup.d.ts +1 -1
  20. package/internal-do-not-import-from-here/ux/oxide/select/Select.d.ts +2 -1
  21. package/internal-do-not-import-from-here/ux/oxide/stickycontainer/StickyContainer.d.ts +1 -1
  22. package/internal-do-not-import-from-here/ux/oxide/stickycontainer/store/StickyContainerStore.d.ts +2 -0
  23. package/internal-do-not-import-from-here/ux/properties/property-picker/PropertyInput.d.ts +18 -0
  24. package/internal-do-not-import-from-here/ux/properties/property-picker/PropertyPicker.d.ts +17 -0
  25. package/internal-do-not-import-from-here/ux/velcron/core/models/VelcronPropertyEditorDefinitions.d.ts +6 -4
  26. package/internal-do-not-import-from-here/ux/velcron/renderer/editors/PropertyResolverEditor.d.ts +3 -1
  27. package/internal-do-not-import-from-here/ux/velcron/stores/VelcronDefinitionStore.d.ts +1 -0
  28. package/internal-do-not-import-from-here/wctypings.d.ts +18 -18
  29. package/package.json +2 -2
  30. package/internal-do-not-import-from-here/ux/admin/usermanagement/dynamicgroups/DynamicGroupDeletedDetailBlade.d.ts +0 -8
  31. package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/blocktitle/BlockTitleViewSettings.d.ts +0 -11
@@ -32,6 +32,7 @@ export declare function useEditorCommands(state: {
32
32
  };
33
33
  formatting: {
34
34
  add: (element: HTMLElement) => void;
35
+ wrapLine: (element: HTMLElement) => void;
35
36
  remove: (dataType: string | HTMLElement) => void;
36
37
  has: (dataType: string | HTMLElement) => boolean;
37
38
  };
@@ -5,6 +5,7 @@ export interface FlowNodeReference {
5
5
  }
6
6
  export interface NodeSelection {
7
7
  commonAncestorContainer: FlowNodeReference;
8
+ containers: FlowNodeReference[];
8
9
  formatters: FlowNodeReference[];
9
10
  nodes: FlowNodeReference[];
10
11
  }
@@ -0,0 +1,5 @@
1
+ import { useFlowEditorStore } from "../../../stores";
2
+ export declare function useWordConverter(): {
3
+ canConvert: (element: HTMLElement) => boolean;
4
+ convert: (element: HTMLElement, editorStore: ReturnType<typeof useFlowEditorStore>) => void;
5
+ };
@@ -0,0 +1,2 @@
1
+ declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<{}>) => any;
2
+ export default _default;
@@ -0,0 +1,3 @@
1
+ export declare const spacingPlugin: () => import("../../models").FlowEditorPlugin & {
2
+ dispose?: () => void;
3
+ };
@@ -0,0 +1,3 @@
1
+ export declare const textAlignPlugin: () => import("../../models").FlowEditorPlugin & {
2
+ dispose?: () => void;
3
+ };
@@ -100,6 +100,7 @@ export declare const useFlowEditorStore: () => {
100
100
  };
101
101
  formatting: {
102
102
  subscribe(fn: (result: {
103
+ wrapLine: (element: HTMLElement) => void;
103
104
  add: (element: HTMLElement) => void;
104
105
  toggle: (element: HTMLElement) => void;
105
106
  remove: (dataType: string) => void;
@@ -116,7 +117,7 @@ export declare const useFlowEditorStore: () => {
116
117
  };
117
118
  commands: {
118
119
  subscribe(fn: (result: {
119
- exec: (command: string, data: object) => void;
120
+ exec: (command: string, data: object | string) => void;
120
121
  builtIn: {
121
122
  content: {
122
123
  convert: (element: HTMLElement) => void;
@@ -141,6 +142,7 @@ export declare const useFlowEditorStore: () => {
141
142
  };
142
143
  formatting: {
143
144
  add: (element: HTMLElement) => void;
145
+ wrapLine: (element: HTMLElement) => void;
144
146
  remove: (dataType: string | HTMLElement) => void;
145
147
  has: (dataType: string | HTMLElement) => boolean;
146
148
  };
@@ -256,6 +258,7 @@ export declare const useFlowEditorStore: () => {
256
258
  add: (action: FlowEditorActionRegistration | FlowEditorActionRegistration[]) => void;
257
259
  };
258
260
  formatting: () => {
261
+ wrapLine: (element: HTMLElement) => void;
259
262
  add: (element: HTMLElement) => void;
260
263
  toggle: (element: HTMLElement) => void;
261
264
  remove: (dataType: string) => void;
@@ -268,7 +271,7 @@ export declare const useFlowEditorStore: () => {
268
271
  add: (element: HTMLElement) => void;
269
272
  };
270
273
  commands: () => {
271
- exec: (command: string, data: object) => void;
274
+ exec: (command: string, data: object | string) => void;
272
275
  builtIn: {
273
276
  content: {
274
277
  convert: (element: HTMLElement) => void;
@@ -293,6 +296,7 @@ export declare const useFlowEditorStore: () => {
293
296
  };
294
297
  formatting: {
295
298
  add: (element: HTMLElement) => void;
299
+ wrapLine: (element: HTMLElement) => void;
296
300
  remove: (dataType: string | HTMLElement) => void;
297
301
  has: (dataType: string | HTMLElement) => boolean;
298
302
  };
@@ -101,6 +101,7 @@ export declare const useFlowEditorToolbarStore: () => {
101
101
  };
102
102
  formatting: {
103
103
  subscribe(fn: (result: {
104
+ wrapLine: (element: HTMLElement) => void;
104
105
  add: (element: HTMLElement) => void;
105
106
  toggle: (element: HTMLElement) => void;
106
107
  remove: (dataType: string) => void;
@@ -117,7 +118,7 @@ export declare const useFlowEditorToolbarStore: () => {
117
118
  };
118
119
  commands: {
119
120
  subscribe(fn: (result: {
120
- exec: (command: string, data: object) => void;
121
+ exec: (command: string, data: object | string) => void;
121
122
  builtIn: {
122
123
  content: {
123
124
  convert: (element: HTMLElement) => void;
@@ -142,6 +143,7 @@ export declare const useFlowEditorToolbarStore: () => {
142
143
  };
143
144
  formatting: {
144
145
  add: (element: HTMLElement) => void;
146
+ wrapLine: (element: HTMLElement) => void;
145
147
  remove: (dataType: string | HTMLElement) => void;
146
148
  has: (dataType: string | HTMLElement) => boolean;
147
149
  };
@@ -257,6 +259,7 @@ export declare const useFlowEditorToolbarStore: () => {
257
259
  add: (action: FlowEditorActionRegistration | FlowEditorActionRegistration[]) => void;
258
260
  };
259
261
  formatting: () => {
262
+ wrapLine: (element: HTMLElement) => void;
260
263
  add: (element: HTMLElement) => void;
261
264
  toggle: (element: HTMLElement) => void;
262
265
  remove: (dataType: string) => void;
@@ -269,7 +272,7 @@ export declare const useFlowEditorToolbarStore: () => {
269
272
  add: (element: HTMLElement) => void;
270
273
  };
271
274
  commands: () => {
272
- exec: (command: string, data: object) => void;
275
+ exec: (command: string, data: object | string) => void;
273
276
  builtIn: {
274
277
  content: {
275
278
  convert: (element: HTMLElement) => void;
@@ -294,6 +297,7 @@ export declare const useFlowEditorToolbarStore: () => {
294
297
  };
295
298
  formatting: {
296
299
  add: (element: HTMLElement) => void;
300
+ wrapLine: (element: HTMLElement) => void;
297
301
  remove: (dataType: string | HTMLElement) => void;
298
302
  has: (dataType: string | HTMLElement) => boolean;
299
303
  };
@@ -483,6 +487,7 @@ export declare const useFlowEditorToolbarStore: () => {
483
487
  };
484
488
  formatting: {
485
489
  subscribe(fn: (result: {
490
+ wrapLine: (element: HTMLElement) => void;
486
491
  add: (element: HTMLElement) => void;
487
492
  toggle: (element: HTMLElement) => void;
488
493
  remove: (dataType: string) => void;
@@ -499,7 +504,7 @@ export declare const useFlowEditorToolbarStore: () => {
499
504
  };
500
505
  commands: {
501
506
  subscribe(fn: (result: {
502
- exec: (command: string, data: object) => void;
507
+ exec: (command: string, data: object | string) => void;
503
508
  builtIn: {
504
509
  content: {
505
510
  convert: (element: HTMLElement) => void;
@@ -524,6 +529,7 @@ export declare const useFlowEditorToolbarStore: () => {
524
529
  };
525
530
  formatting: {
526
531
  add: (element: HTMLElement) => void;
532
+ wrapLine: (element: HTMLElement) => void;
527
533
  remove: (dataType: string | HTMLElement) => void;
528
534
  has: (dataType: string | HTMLElement) => boolean;
529
535
  };
@@ -639,6 +645,7 @@ export declare const useFlowEditorToolbarStore: () => {
639
645
  add: (action: FlowEditorActionRegistration | FlowEditorActionRegistration[]) => void;
640
646
  };
641
647
  formatting: () => {
648
+ wrapLine: (element: HTMLElement) => void;
642
649
  add: (element: HTMLElement) => void;
643
650
  toggle: (element: HTMLElement) => void;
644
651
  remove: (dataType: string) => void;
@@ -651,7 +658,7 @@ export declare const useFlowEditorToolbarStore: () => {
651
658
  add: (element: HTMLElement) => void;
652
659
  };
653
660
  commands: () => {
654
- exec: (command: string, data: object) => void;
661
+ exec: (command: string, data: object | string) => void;
655
662
  builtIn: {
656
663
  content: {
657
664
  convert: (element: HTMLElement) => void;
@@ -676,6 +683,7 @@ export declare const useFlowEditorToolbarStore: () => {
676
683
  };
677
684
  formatting: {
678
685
  add: (element: HTMLElement) => void;
686
+ wrapLine: (element: HTMLElement) => void;
679
687
  remove: (dataType: string | HTMLElement) => void;
680
688
  has: (dataType: string | HTMLElement) => boolean;
681
689
  };
@@ -873,6 +881,7 @@ export declare const useFlowEditorToolbarStore: () => {
873
881
  };
874
882
  formatting: {
875
883
  subscribe(fn: (result: {
884
+ wrapLine: (element: HTMLElement) => void;
876
885
  add: (element: HTMLElement) => void;
877
886
  toggle: (element: HTMLElement) => void;
878
887
  remove: (dataType: string) => void;
@@ -889,7 +898,7 @@ export declare const useFlowEditorToolbarStore: () => {
889
898
  };
890
899
  commands: {
891
900
  subscribe(fn: (result: {
892
- exec: (command: string, data: object) => void;
901
+ exec: (command: string, data: object | string) => void;
893
902
  builtIn: {
894
903
  content: {
895
904
  convert: (element: HTMLElement) => void;
@@ -914,6 +923,7 @@ export declare const useFlowEditorToolbarStore: () => {
914
923
  };
915
924
  formatting: {
916
925
  add: (element: HTMLElement) => void;
926
+ wrapLine: (element: HTMLElement) => void;
917
927
  remove: (dataType: string | HTMLElement) => void;
918
928
  has: (dataType: string | HTMLElement) => boolean;
919
929
  };
@@ -1029,6 +1039,7 @@ export declare const useFlowEditorToolbarStore: () => {
1029
1039
  add: (action: FlowEditorActionRegistration | FlowEditorActionRegistration[]) => void;
1030
1040
  };
1031
1041
  formatting: () => {
1042
+ wrapLine: (element: HTMLElement) => void;
1032
1043
  add: (element: HTMLElement) => void;
1033
1044
  toggle: (element: HTMLElement) => void;
1034
1045
  remove: (dataType: string) => void;
@@ -1041,7 +1052,7 @@ export declare const useFlowEditorToolbarStore: () => {
1041
1052
  add: (element: HTMLElement) => void;
1042
1053
  };
1043
1054
  commands: () => {
1044
- exec: (command: string, data: object) => void;
1055
+ exec: (command: string, data: object | string) => void;
1045
1056
  builtIn: {
1046
1057
  content: {
1047
1058
  convert: (element: HTMLElement) => void;
@@ -1066,6 +1077,7 @@ export declare const useFlowEditorToolbarStore: () => {
1066
1077
  };
1067
1078
  formatting: {
1068
1079
  add: (element: HTMLElement) => void;
1080
+ wrapLine: (element: HTMLElement) => void;
1069
1081
  remove: (dataType: string | HTMLElement) => void;
1070
1082
  has: (dataType: string | HTMLElement) => boolean;
1071
1083
  };
@@ -1263,6 +1275,7 @@ export declare const useFlowEditorToolbarStore: () => {
1263
1275
  };
1264
1276
  formatting: {
1265
1277
  subscribe(fn: (result: {
1278
+ wrapLine: (element: HTMLElement) => void;
1266
1279
  add: (element: HTMLElement) => void;
1267
1280
  toggle: (element: HTMLElement) => void;
1268
1281
  remove: (dataType: string) => void;
@@ -1279,7 +1292,7 @@ export declare const useFlowEditorToolbarStore: () => {
1279
1292
  };
1280
1293
  commands: {
1281
1294
  subscribe(fn: (result: {
1282
- exec: (command: string, data: object) => void;
1295
+ exec: (command: string, data: object | string) => void;
1283
1296
  builtIn: {
1284
1297
  content: {
1285
1298
  convert: (element: HTMLElement) => void;
@@ -1304,6 +1317,7 @@ export declare const useFlowEditorToolbarStore: () => {
1304
1317
  };
1305
1318
  formatting: {
1306
1319
  add: (element: HTMLElement) => void;
1320
+ wrapLine: (element: HTMLElement) => void;
1307
1321
  remove: (dataType: string | HTMLElement) => void;
1308
1322
  has: (dataType: string | HTMLElement) => boolean;
1309
1323
  };
@@ -1419,6 +1433,7 @@ export declare const useFlowEditorToolbarStore: () => {
1419
1433
  add: (action: FlowEditorActionRegistration | FlowEditorActionRegistration[]) => void;
1420
1434
  };
1421
1435
  formatting: () => {
1436
+ wrapLine: (element: HTMLElement) => void;
1422
1437
  add: (element: HTMLElement) => void;
1423
1438
  toggle: (element: HTMLElement) => void;
1424
1439
  remove: (dataType: string) => void;
@@ -1431,7 +1446,7 @@ export declare const useFlowEditorToolbarStore: () => {
1431
1446
  add: (element: HTMLElement) => void;
1432
1447
  };
1433
1448
  commands: () => {
1434
- exec: (command: string, data: object) => void;
1449
+ exec: (command: string, data: object | string) => void;
1435
1450
  builtIn: {
1436
1451
  content: {
1437
1452
  convert: (element: HTMLElement) => void;
@@ -1456,6 +1471,7 @@ export declare const useFlowEditorToolbarStore: () => {
1456
1471
  };
1457
1472
  formatting: {
1458
1473
  add: (element: HTMLElement) => void;
1474
+ wrapLine: (element: HTMLElement) => void;
1459
1475
  remove: (dataType: string | HTMLElement) => void;
1460
1476
  has: (dataType: string | HTMLElement) => boolean;
1461
1477
  };
@@ -1653,6 +1669,7 @@ export declare const useFlowEditorToolbarStore: () => {
1653
1669
  };
1654
1670
  formatting: {
1655
1671
  subscribe(fn: (result: {
1672
+ wrapLine: (element: HTMLElement) => void;
1656
1673
  add: (element: HTMLElement) => void;
1657
1674
  toggle: (element: HTMLElement) => void;
1658
1675
  remove: (dataType: string) => void;
@@ -1669,7 +1686,7 @@ export declare const useFlowEditorToolbarStore: () => {
1669
1686
  };
1670
1687
  commands: {
1671
1688
  subscribe(fn: (result: {
1672
- exec: (command: string, data: object) => void;
1689
+ exec: (command: string, data: object | string) => void;
1673
1690
  builtIn: {
1674
1691
  content: {
1675
1692
  convert: (element: HTMLElement) => void;
@@ -1694,6 +1711,7 @@ export declare const useFlowEditorToolbarStore: () => {
1694
1711
  };
1695
1712
  formatting: {
1696
1713
  add: (element: HTMLElement) => void;
1714
+ wrapLine: (element: HTMLElement) => void;
1697
1715
  remove: (dataType: string | HTMLElement) => void;
1698
1716
  has: (dataType: string | HTMLElement) => boolean;
1699
1717
  };
@@ -1809,6 +1827,7 @@ export declare const useFlowEditorToolbarStore: () => {
1809
1827
  add: (action: FlowEditorActionRegistration | FlowEditorActionRegistration[]) => void;
1810
1828
  };
1811
1829
  formatting: () => {
1830
+ wrapLine: (element: HTMLElement) => void;
1812
1831
  add: (element: HTMLElement) => void;
1813
1832
  toggle: (element: HTMLElement) => void;
1814
1833
  remove: (dataType: string) => void;
@@ -1821,7 +1840,7 @@ export declare const useFlowEditorToolbarStore: () => {
1821
1840
  add: (element: HTMLElement) => void;
1822
1841
  };
1823
1842
  commands: () => {
1824
- exec: (command: string, data: object) => void;
1843
+ exec: (command: string, data: object | string) => void;
1825
1844
  builtIn: {
1826
1845
  content: {
1827
1846
  convert: (element: HTMLElement) => void;
@@ -1846,6 +1865,7 @@ export declare const useFlowEditorToolbarStore: () => {
1846
1865
  };
1847
1866
  formatting: {
1848
1867
  add: (element: HTMLElement) => void;
1868
+ wrapLine: (element: HTMLElement) => void;
1849
1869
  remove: (dataType: string | HTMLElement) => void;
1850
1870
  has: (dataType: string | HTMLElement) => boolean;
1851
1871
  };
@@ -0,0 +1,3 @@
1
+ export declare const spacingPlugin: () => import("../../models").FlowRendererPlugin & {
2
+ dispose?: () => void;
3
+ };
@@ -0,0 +1,3 @@
1
+ export declare const textAlignPlugin: () => import("../../models").FlowRendererPlugin & {
2
+ dispose?: () => void;
3
+ };
@@ -1,222 +1,28 @@
1
+ import { DefineEmit } from "@omnia/fx/ux";
1
2
  import { IconPickerModel, MediaPickerStorageProviderContext } from "../../models";
2
- declare const _default: {
3
- new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
4
- hideDetails: {
5
- type: import("vue").PropType<boolean>;
6
- required: false;
7
- };
8
- showPreview: {
9
- type: import("vue").PropType<boolean>;
10
- required: false;
11
- };
12
- providerContext: {
13
- type: import("vue").PropType<MediaPickerStorageProviderContext>;
14
- required: false;
15
- };
16
- disabledCustomImage: {
17
- type: import("vue").PropType<boolean>;
18
- required: false;
19
- };
20
- errorMessages: {
21
- type: import("vue").PropType<string[]>;
22
- };
23
- "onUpdate:modelValue": {
24
- type: import("vue").PropType<(value: IconPickerModel) => any | void>;
25
- };
26
- "v-model": {
27
- type: import("vue").PropType<IconPickerModel>;
28
- required: false;
29
- };
30
- modelValue: {
31
- type: import("vue").PropType<IconPickerModel>;
32
- required: false;
33
- };
34
- required: {
35
- type: import("vue").PropType<boolean>;
36
- };
37
- disabled: {
38
- type: import("vue").PropType<boolean>;
39
- required: false;
40
- };
41
- class: {
42
- type: import("vue").PropType<String | String[]>;
43
- required: boolean;
44
- };
45
- }>> & {
46
- "onUpdate:modelValue"?: (model: IconPickerModel) => any;
47
- onDoc$?: (description?: string) => any;
48
- }, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
49
- "update:modelValue": (model: IconPickerModel) => void;
50
- doc$(description?: string): {
51
- "update:modelValue": (model: IconPickerModel) => void;
52
- };
53
- }, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
54
- hideDetails: {
55
- type: import("vue").PropType<boolean>;
56
- required: false;
57
- };
58
- showPreview: {
59
- type: import("vue").PropType<boolean>;
60
- required: false;
61
- };
62
- providerContext: {
63
- type: import("vue").PropType<MediaPickerStorageProviderContext>;
64
- required: false;
65
- };
66
- disabledCustomImage: {
67
- type: import("vue").PropType<boolean>;
68
- required: false;
69
- };
70
- errorMessages: {
71
- type: import("vue").PropType<string[]>;
72
- };
73
- "onUpdate:modelValue": {
74
- type: import("vue").PropType<(value: IconPickerModel) => any | void>;
75
- };
76
- "v-model": {
77
- type: import("vue").PropType<IconPickerModel>;
78
- required: false;
79
- };
80
- modelValue: {
81
- type: import("vue").PropType<IconPickerModel>;
82
- required: false;
83
- };
84
- required: {
85
- type: import("vue").PropType<boolean>;
86
- };
87
- disabled: {
88
- type: import("vue").PropType<boolean>;
89
- required: false;
90
- };
91
- class: {
92
- type: import("vue").PropType<String | String[]>;
93
- required: boolean;
94
- };
95
- }>> & {
96
- "onUpdate:modelValue"?: (model: IconPickerModel) => any;
97
- onDoc$?: (description?: string) => any;
98
- }, {}, true, {}, {}, {
99
- P: {};
100
- B: {};
101
- D: {};
102
- C: {};
103
- M: {};
104
- Defaults: {};
105
- }, Readonly<import("vue").ExtractPropTypes<{
106
- hideDetails: {
107
- type: import("vue").PropType<boolean>;
108
- required: false;
109
- };
110
- showPreview: {
111
- type: import("vue").PropType<boolean>;
112
- required: false;
113
- };
114
- providerContext: {
115
- type: import("vue").PropType<MediaPickerStorageProviderContext>;
116
- required: false;
117
- };
118
- disabledCustomImage: {
119
- type: import("vue").PropType<boolean>;
120
- required: false;
121
- };
122
- errorMessages: {
123
- type: import("vue").PropType<string[]>;
124
- };
125
- "onUpdate:modelValue": {
126
- type: import("vue").PropType<(value: IconPickerModel) => any | void>;
127
- };
128
- "v-model": {
129
- type: import("vue").PropType<IconPickerModel>;
130
- required: false;
131
- };
132
- modelValue: {
133
- type: import("vue").PropType<IconPickerModel>;
134
- required: false;
135
- };
136
- required: {
137
- type: import("vue").PropType<boolean>;
138
- };
139
- disabled: {
140
- type: import("vue").PropType<boolean>;
141
- required: false;
142
- };
143
- class: {
144
- type: import("vue").PropType<String | String[]>;
145
- required: boolean;
146
- };
147
- }>> & {
148
- "onUpdate:modelValue"?: (model: IconPickerModel) => any;
149
- onDoc$?: (description?: string) => any;
150
- }, () => JSX.Element, {}, {}, {}, {}>;
151
- __isFragment?: never;
152
- __isTeleport?: never;
153
- __isSuspense?: never;
154
- } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
155
- hideDetails: {
156
- type: import("vue").PropType<boolean>;
157
- required: false;
158
- };
159
- showPreview: {
160
- type: import("vue").PropType<boolean>;
161
- required: false;
162
- };
163
- providerContext: {
164
- type: import("vue").PropType<MediaPickerStorageProviderContext>;
165
- required: false;
166
- };
167
- disabledCustomImage: {
168
- type: import("vue").PropType<boolean>;
169
- required: false;
170
- };
171
- errorMessages: {
172
- type: import("vue").PropType<string[]>;
173
- };
174
- "onUpdate:modelValue": {
175
- type: import("vue").PropType<(value: IconPickerModel) => any | void>;
176
- };
177
- "v-model": {
178
- type: import("vue").PropType<IconPickerModel>;
179
- required: false;
180
- };
181
- modelValue: {
182
- type: import("vue").PropType<IconPickerModel>;
183
- required: false;
184
- };
185
- required: {
186
- type: import("vue").PropType<boolean>;
187
- };
188
- disabled: {
189
- type: import("vue").PropType<boolean>;
190
- required: false;
191
- };
192
- class: {
193
- type: import("vue").PropType<String | String[]>;
194
- required: boolean;
195
- };
196
- }>> & {
197
- "onUpdate:modelValue"?: (model: IconPickerModel) => any;
198
- onDoc$?: (description?: string) => any;
199
- }, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
200
- "update:modelValue": (model: IconPickerModel) => void;
201
- doc$(description?: string): {
202
- "update:modelValue": (model: IconPickerModel) => void;
203
- };
204
- }, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
205
- propsDefinition: Omit<Readonly<{} & {
206
- class?: String | String[];
207
- required?: boolean;
208
- providerContext?: MediaPickerStorageProviderContext;
209
- disabled?: boolean;
210
- modelValue?: IconPickerModel;
211
- "v-model"?: IconPickerModel;
212
- "onUpdate:modelValue"?: (value: IconPickerModel) => any | void;
213
- hideDetails?: boolean;
214
- errorMessages?: string[];
215
- disabledCustomImage?: boolean;
216
- showPreview?: boolean;
217
- }>, "onUpdate:modelValue" | "onDoc$"> & {
218
- "onUpdate:modelValue"?: (model: IconPickerModel) => any;
219
- onDoc$?: (description?: string) => any;
220
- };
221
- };
3
+ declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<{
4
+ class?: String | String[];
5
+ } & {
6
+ disabled?: boolean;
7
+ } & {
8
+ required?: boolean;
9
+ } & {
10
+ "emit:update:modelValue": (value: IconPickerModel) => void;
11
+ } & {
12
+ "v-model"?: IconPickerModel;
13
+ } & {
14
+ "onUpdate:modelValue"?: (value: IconPickerModel) => void;
15
+ } & {
16
+ modelValue?: IconPickerModel;
17
+ } & {
18
+ errorMessages?: string[];
19
+ } & {
20
+ disabledCustomImage?: boolean;
21
+ } & {
22
+ showPreview?: boolean;
23
+ } & {
24
+ hideDetails?: boolean;
25
+ } & DefineEmit<"update:modelValue", (model: IconPickerModel) => void> & {
26
+ providerContext?: MediaPickerStorageProviderContext;
27
+ }>) => any;
222
28
  export default _default;
@@ -365,8 +365,8 @@ declare const _default: {
365
365
  };
366
366
  }>>, () => VNodeChild, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
367
367
  propsDefinition: Omit<Readonly<{} & {
368
- size?: "small" | "default" | "x-large" | "x-small" | "large";
369
368
  inline?: boolean;
369
+ size?: "small" | "default" | "x-large" | "x-small" | "large";
370
370
  styles?: {
371
371
  container: {
372
372
  $nest: {
@@ -1,12 +1,9 @@
1
- import { BlockTitleViewSettings, MultilingualString } from "@omnia/fx-models";
1
+ import { MultilingualString } from "@omnia/fx-models";
2
2
  declare const _default: {
3
3
  new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
4
4
  alternativeContent: {
5
5
  type: import("vue").PropType<JSX.Element>;
6
6
  };
7
- viewSettings: {
8
- type: import("vue").PropType<BlockTitleViewSettings>;
9
- };
10
7
  settingsKey: {
11
8
  type: import("vue").PropType<any>;
12
9
  };
@@ -32,9 +29,6 @@ declare const _default: {
32
29
  alternativeContent: {
33
30
  type: import("vue").PropType<JSX.Element>;
34
31
  };
35
- viewSettings: {
36
- type: import("vue").PropType<BlockTitleViewSettings>;
37
- };
38
32
  settingsKey: {
39
33
  type: import("vue").PropType<any>;
40
34
  };
@@ -69,9 +63,6 @@ declare const _default: {
69
63
  alternativeContent: {
70
64
  type: import("vue").PropType<JSX.Element>;
71
65
  };
72
- viewSettings: {
73
- type: import("vue").PropType<BlockTitleViewSettings>;
74
- };
75
66
  settingsKey: {
76
67
  type: import("vue").PropType<any>;
77
68
  };
@@ -103,9 +94,6 @@ declare const _default: {
103
94
  alternativeContent: {
104
95
  type: import("vue").PropType<JSX.Element>;
105
96
  };
106
- viewSettings: {
107
- type: import("vue").PropType<BlockTitleViewSettings>;
108
- };
109
97
  settingsKey: {
110
98
  type: import("vue").PropType<any>;
111
99
  };
@@ -137,7 +125,6 @@ declare const _default: {
137
125
  colors?: import("@omnia/fx/ux").ColorSchemaStoreType;
138
126
  settingsKey?: any;
139
127
  multilingualtitle?: string | MultilingualString;
140
- viewSettings?: BlockTitleViewSettings;
141
128
  alternativeContent?: JSX.Element;
142
129
  }>, never>;
143
130
  };
@@ -1,5 +1,5 @@
1
- import { BlockTitleViewSettings } from "@omnia/fx-models";
1
+ import { TitleRendererValue } from "@omnia/fx-models";
2
2
  declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<{
3
- viewSettings?: BlockTitleViewSettings;
3
+ renderer?: TitleRendererValue;
4
4
  }>) => any;
5
5
  export default _default;
@@ -0,0 +1,11 @@
1
+ import { TitleRendererValue } from "@omnia/fx-models";
2
+ declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<{
3
+ "emit:update:modelValue": (value: TitleRendererValue) => void;
4
+ } & {
5
+ "v-model"?: TitleRendererValue;
6
+ } & {
7
+ "onUpdate:modelValue"?: (value: TitleRendererValue) => void;
8
+ } & {
9
+ modelValue?: TitleRendererValue;
10
+ }>) => any;
11
+ export default _default;
@@ -0,0 +1,5 @@
1
+ import { Spacing } from "@omnia/fx-models";
2
+ import { FlowNode } from "./FlowContent";
3
+ export interface SpacingFormatNode extends FlowNode {
4
+ data: Spacing;
5
+ }
@@ -0,0 +1,5 @@
1
+ import { FlowNode } from "./FlowContent";
2
+ export type FlowTextAlignment = "left" | "center" | "right";
3
+ export interface TextAlignFormatNode extends FlowNode {
4
+ data: FlowTextAlignment;
5
+ }
@@ -5,3 +5,5 @@ export * from "./ElementNode";
5
5
  export * from "./VelcronNode";
6
6
  export * from "./FlowEditorStore";
7
7
  export * from "./FlowEditorToolbarStore";
8
+ export * from "./TextAlignNode";
9
+ export * from "./SpacingFormatNode";
@@ -215,10 +215,10 @@ declare const _default: {
215
215
  container: boolean;
216
216
  }, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
217
217
  propsDefinition: Omit<Readonly<{} & {
218
+ inline?: boolean;
218
219
  container?: boolean;
219
220
  class?: String | String[];
220
221
  label?: string;
221
- inline?: boolean;
222
222
  disabled?: boolean;
223
223
  colorSchemaType?: "background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "accent4" | "accent5" | "neutral" | "warning" | "notification" | "error" | "info" | "success" | "dynamic";
224
224
  colors?: import("@omnia/fx/ux").ColorSchemaStoreType;
@@ -7,12 +7,13 @@ export interface OSelectSlots extends Omit<VSelectSlots, "item" | "selection" |
7
7
  selection?: (item: OSelectRenderingItem, index: Number) => VNodeChild;
8
8
  item?: (item: OSelectRenderingItem, index: Number) => VNodeChild;
9
9
  "append-item"?: () => VNodeChild;
10
+ "prepend-inner"?: () => VNodeChild;
10
11
  "menu-icon"?: () => VNodeChild;
11
12
  }
12
13
  declare const defaultRules: ValidationRule[];
13
14
  type SlotsWithReturnObject<TItem> = DefineSlot<"chip", (item: OSelectRenderingItem<ItemType<TItem>>, index: Number) => VNodeChild> & DefineSlot<"selection", (item: OSelectRenderingItem<ItemType<TItem>>, index: Number) => VNodeChild> & DefineSlot<"item", (item: OSelectRenderingItem<ItemType<TItem>>, index: Number) => VNodeChild>;
14
15
  type SlotsWithoutReturnObject = DefineSlot<"chip", (item: OSelectRenderingItem<any>, index: Number) => VNodeChild> & DefineSlot<"selection", (item: OSelectRenderingItem<any>, index: Number) => VNodeChild> & DefineSlot<"item", (item: OSelectRenderingItem<any>, index: Number) => VNodeChild>;
15
- type BaseProps<TItem, TModel, TReturnObject extends boolean> = DefinePropTheming & DefineProp<"class", String | String[]> & DefineVModel<"", TModel, false, null, false, "The v-model of the component"> & DefineProp<"rules", ValidationRule[], false, typeof defaultRules, "Accepts a mixed array of types function. Functions pass an input value as an argument and must return either true / false or a string containing an error message. The input field will enter an error state if a function returns (or any value in the array contains) false or is a string."> & DefineProp<"label", string, false, null, "Sets the label of the component."> & DefineProp<"hint", string, false, null, "Sets the hint of the component."> & DefineProp<"items", TItem, false, null, "TItem must be an array of objects or array of strings. When using objects, will look for a title, value and disabled keys. This can be changed using the item-title, item-value and item-disabled props."> & DefineProp<"itemTitle", ItemValueType<ItemType<TItem>>, false, null, "Property on supplied items that contains its title."> & DefineProp<"itemValue", ItemValueType<ItemType<TItem>>, false, null, "Property on supplied items that contains its value."> & DefineProp<"variant", OSelectTypes, false, null, "Applies a distinct style to the component."> & DefineProp<"returnObject", TReturnObject, false, null, "Changes the selection behavior to return the object directly rather than the value specified with item-value."> & DefineProp<"clearable", boolean, false, null, "Allows for the component to be cleared."> & DefineProp<"searchable", boolean, false, null, "Allows to searching when user typing."> & DefineProp<"toned", boolean> & DefineProp<"readonly", boolean, false, null, "Puts input in readonly state."> & DefineProp<"multiple", boolean, false, false, "Multiple selection."> & DefineProp<"hideNoData", boolean, false, false, "Hidden no data message."> & DefineProp<"menuIcon", IIcon, false, null, "Custom menu icon."> & DefineProp<"loading", boolean, false, false, "Displays linear progress bar."> & DefineProp<"disabled", boolean, false, false, "Removes the ability to click or target the input."> & DefineProp<"persistentHint", boolean, false, null, "Forces hint to always be visible."> & DefineProp<"hideSelected", boolean, false, null, "Hide selected items from all items list."> & DefineEmit<"update:modelValue", (value: TModel) => void, "Emit a click event."> & DefineEmit<"click:button", (value: any) => void, "Emit a click event."> & DefineProp<"errorMessages", string | readonly string[], false, null, "Puts the input in an error state and passes through custom error messages. Will be combined with any validations that occur from the rules prop. This field will not trigger validation."> & DefineProp<"error", boolean, false, false, "Puts the input in a manual error state."> & DefineEmit<"update:search", (value: string) => void, "Emit when search input value is changed. Only works when searchable prop is true."> & DefineEmit<"update:focused", (value: boolean) => void, "Emit when search input field is focused."> & DefineSlot<"append-item", () => VNodeChild>;
16
+ type BaseProps<TItem, TModel, TReturnObject extends boolean> = DefinePropTheming & DefineProp<"class", String | String[]> & DefineVModel<"", TModel, false, null, false, "The v-model of the component"> & DefineProp<"rules", ValidationRule[], false, typeof defaultRules, "Accepts a mixed array of types function. Functions pass an input value as an argument and must return either true / false or a string containing an error message. The input field will enter an error state if a function returns (or any value in the array contains) false or is a string."> & DefineProp<"label", string, false, null, "Sets the label of the component."> & DefineProp<"hint", string, false, null, "Sets the hint of the component."> & DefineProp<"items", TItem, false, null, "TItem must be an array of objects or array of strings. When using objects, will look for a title, value and disabled keys. This can be changed using the item-title, item-value and item-disabled props."> & DefineProp<"itemTitle", ItemValueType<ItemType<TItem>>, false, null, "Property on supplied items that contains its title."> & DefineProp<"itemValue", ItemValueType<ItemType<TItem>>, false, null, "Property on supplied items that contains its value."> & DefineProp<"variant", OSelectTypes, false, null, "Applies a distinct style to the component."> & DefineProp<"returnObject", TReturnObject, false, null, "Changes the selection behavior to return the object directly rather than the value specified with item-value."> & DefineProp<"clearable", boolean, false, null, "Allows for the component to be cleared."> & DefineProp<"searchable", boolean, false, null, "Allows to searching when user typing."> & DefineProp<"toned", boolean> & DefineProp<"readonly", boolean, false, null, "Puts input in readonly state."> & DefineProp<"multiple", boolean, false, false, "Multiple selection."> & DefineProp<"hideNoData", boolean, false, false, "Hidden no data message."> & DefineProp<"menuIcon", IIcon, false, null, "Custom menu icon."> & DefineProp<"loading", boolean, false, false, "Displays linear progress bar."> & DefineProp<"disabled", boolean, false, false, "Removes the ability to click or target the input."> & DefineProp<"persistentHint", boolean, false, null, "Forces hint to always be visible."> & DefineProp<"hideSelected", boolean, false, null, "Hide selected items from all items list."> & DefineEmit<"update:modelValue", (value: TModel) => void, "Emit a click event."> & DefineEmit<"click:button", (value: any) => void, "Emit a click event."> & DefineProp<"errorMessages", string | readonly string[], false, null, "Puts the input in an error state and passes through custom error messages. Will be combined with any validations that occur from the rules prop. This field will not trigger validation."> & DefineProp<"error", boolean, false, false, "Puts the input in a manual error state."> & DefineEmit<"update:search", (value: string) => void, "Emit when search input value is changed. Only works when searchable prop is true."> & DefineEmit<"update:focused", (value: boolean) => void, "Emit when search input field is focused."> & DefineSlot<"append-item", () => VNodeChild> & DefineSlot<"prepend-inner", () => VNodeChild> & DefineProp<"maxHeight", number, false, 300> & DefineProp<"itemHeight", number, false, 40>;
16
17
  export type OSelectProps<TItem, TModel, TReturnObject extends boolean> = BaseProps<TItem, TModel, TReturnObject> & DefineType<TReturnObject extends true ? SlotsWithReturnObject<TItem> : SlotsWithoutReturnObject>;
17
18
  declare const _default: <TItem extends readonly any[], TModel extends unknown, TReturnObject extends boolean>(props: import("@omnia/fx/ux").ConstructComponentProps<OSelectProps<TItem, TModel, TReturnObject>>) => any;
18
19
  export default _default;
@@ -1,6 +1,6 @@
1
1
  import { DefineProp, DefineSlot } from "@omnia/fx/ux";
2
2
  import { useStickyContainerStore } from "./store";
3
3
  import { VNodeChild } from "vue";
4
- type StickyContainerProps = DefineProp<"getApi", (store: ReturnType<typeof useStickyContainerStore>) => void, false, null, "callback to get a reference to the scrolling store. The store is used to interact with the scrolling component."> & DefineProp<"viewportElementTrackingId", string, false, null, "hides the sticky container when the element is not visible in the viewport. Use it for toolbars etc"> & DefineSlot<"customRenderer", () => VNodeChild>;
4
+ type StickyContainerProps = DefineProp<"getApi", (store: ReturnType<typeof useStickyContainerStore>) => void, false, null, "callback to get a reference to the scrolling store. The store is used to interact with the scrolling component."> & DefineProp<"viewportElementTrackingId", string, false, null, "hides the sticky container when the element is not visible in the viewport. Use it for toolbars etc"> & DefineProp<"editor", boolean, false, null, "If the container runs in the content editor"> & DefineSlot<"customRenderer", () => VNodeChild>;
5
5
  declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<StickyContainerProps>) => any;
6
6
  export default _default;
@@ -3,11 +3,13 @@ export declare const useStickyContainerStore: () => {
3
3
  isSticky: boolean;
4
4
  hideStickyElement: boolean;
5
5
  contentVisibilityTracking: boolean;
6
+ isEditor: boolean;
6
7
  };
7
8
  events: {
8
9
  onMutatedIsSticky: import("../../../..").MessageBusExposeOnlySubscription<boolean>;
9
10
  onMutatedHideStickyElement: import("../../../..").MessageBusExposeOnlySubscription<boolean>;
10
11
  onMutatedContentVisibilityTracking: import("../../../..").MessageBusExposeOnlySubscription<boolean>;
12
+ onMutatedIsEditor: import("../../../..").MessageBusExposeOnlySubscription<boolean>;
11
13
  } & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
12
14
  actions: {
13
15
  onDispatching: {
@@ -1,3 +1,4 @@
1
+ import { guid, PropertyDefinition } from "@omnia/fx-models";
1
2
  import { PropertyRegistration } from "../models/PropertyInput";
2
3
  import { IDataSourcePropertyCreator } from "@omnia/fx/services";
3
4
  declare const _default: {
@@ -14,6 +15,10 @@ declare const _default: {
14
15
  type: import("vue").PropType<PropertyRegistration[]>;
15
16
  required: false;
16
17
  };
18
+ selectableProperties: {
19
+ type: import("vue").PropType<guid[] | PropertyDefinition<any, any, any, import("@omnia/fx-models").PropertySetupBase>[]>;
20
+ required: false;
21
+ };
17
22
  hideConfiguration: {
18
23
  type: import("vue").PropType<boolean>;
19
24
  required: false;
@@ -117,6 +122,10 @@ declare const _default: {
117
122
  type: import("vue").PropType<PropertyRegistration[]>;
118
123
  required: false;
119
124
  };
125
+ selectableProperties: {
126
+ type: import("vue").PropType<guid[] | PropertyDefinition<any, any, any, import("@omnia/fx-models").PropertySetupBase>[]>;
127
+ required: false;
128
+ };
120
129
  hideConfiguration: {
121
130
  type: import("vue").PropType<boolean>;
122
131
  required: false;
@@ -222,6 +231,10 @@ declare const _default: {
222
231
  type: import("vue").PropType<PropertyRegistration[]>;
223
232
  required: false;
224
233
  };
234
+ selectableProperties: {
235
+ type: import("vue").PropType<guid[] | PropertyDefinition<any, any, any, import("@omnia/fx-models").PropertySetupBase>[]>;
236
+ required: false;
237
+ };
225
238
  hideConfiguration: {
226
239
  type: import("vue").PropType<boolean>;
227
240
  required: false;
@@ -324,6 +337,10 @@ declare const _default: {
324
337
  type: import("vue").PropType<PropertyRegistration[]>;
325
338
  required: false;
326
339
  };
340
+ selectableProperties: {
341
+ type: import("vue").PropType<guid[] | PropertyDefinition<any, any, any, import("@omnia/fx-models").PropertySetupBase>[]>;
342
+ required: false;
343
+ };
327
344
  hideConfiguration: {
328
345
  type: import("vue").PropType<boolean>;
329
346
  required: false;
@@ -484,6 +501,7 @@ declare const _default: {
484
501
  "onUpdate:modelValue"?: (value: PropertyRegistration) => any | void;
485
502
  hideDetails?: boolean;
486
503
  hideConfiguration?: boolean;
504
+ selectableProperties?: guid[] | PropertyDefinition<any, any, any, import("@omnia/fx-models").PropertySetupBase>[];
487
505
  loadingProperties?: boolean;
488
506
  propertyCreator?: IDataSourcePropertyCreator;
489
507
  propertyRegistrations?: PropertyRegistration[];
@@ -25,6 +25,10 @@ declare const _default: {
25
25
  type: import("vue").PropType<IDataSourcePropertySelection>;
26
26
  required: false;
27
27
  };
28
+ resetAfterSelected: {
29
+ type: import("vue").PropType<boolean>;
30
+ required: false;
31
+ };
28
32
  hideConfiguration: {
29
33
  type: import("vue").PropType<boolean>;
30
34
  required: false;
@@ -69,6 +73,10 @@ declare const _default: {
69
73
  type: import("vue").PropType<IDataSourcePropertySelection>;
70
74
  required: false;
71
75
  };
76
+ resetAfterSelected: {
77
+ type: import("vue").PropType<boolean>;
78
+ required: false;
79
+ };
72
80
  hideConfiguration: {
73
81
  type: import("vue").PropType<boolean>;
74
82
  required: false;
@@ -120,6 +128,10 @@ declare const _default: {
120
128
  type: import("vue").PropType<IDataSourcePropertySelection>;
121
129
  required: false;
122
130
  };
131
+ resetAfterSelected: {
132
+ type: import("vue").PropType<boolean>;
133
+ required: false;
134
+ };
123
135
  hideConfiguration: {
124
136
  type: import("vue").PropType<boolean>;
125
137
  required: false;
@@ -168,6 +180,10 @@ declare const _default: {
168
180
  type: import("vue").PropType<IDataSourcePropertySelection>;
169
181
  required: false;
170
182
  };
183
+ resetAfterSelected: {
184
+ type: import("vue").PropType<boolean>;
185
+ required: false;
186
+ };
171
187
  hideConfiguration: {
172
188
  type: import("vue").PropType<boolean>;
173
189
  required: false;
@@ -195,6 +211,7 @@ declare const _default: {
195
211
  disabled?: boolean;
196
212
  hideDetails?: boolean;
197
213
  hideConfiguration?: boolean;
214
+ resetAfterSelected?: boolean;
198
215
  selectionProperty?: IDataSourcePropertySelection;
199
216
  selectableDataSources?: guid[];
200
217
  selectableProperties?: guid[] | PropertyDefinition<any, any, any, import("@omnia/fx-models").PropertySetupBase>[];
@@ -36,11 +36,13 @@ export interface VelcronNumberEditorSettings {
36
36
  max: number;
37
37
  step: number;
38
38
  }
39
+ export interface VelcronPropertyMapping {
40
+ name: string;
41
+ definitionId: guid;
42
+ dataSourceId?: guid;
43
+ }
39
44
  export interface VelcronPropertyResolverEditorSettings {
40
- properties: Array<{
41
- name: string;
42
- definitionId: guid;
43
- }>;
45
+ properties: Array<VelcronPropertyMapping>;
44
46
  }
45
47
  export interface VelcronBlueprintEditorSettings {
46
48
  type: "container" | "icon";
@@ -1,5 +1,7 @@
1
- import { VelcronPropertyDefinitionValueResolver, VelcronPropertyResolverEditorSettings } from "@omnia/fx-models";
1
+ import { EditorLocation, VelcronPropertyDefinitionValueResolver, VelcronPropertyResolverEditorSettings } from "@omnia/fx-models";
2
2
  declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<{
3
+ location?: EditorLocation;
4
+ } & {
3
5
  settings?: VelcronPropertyResolverEditorSettings;
4
6
  } & {
5
7
  "emit:update:modelValue": (value: VelcronPropertyDefinitionValueResolver[]) => void;
@@ -20,6 +20,7 @@ export declare const useVelcronDefinitionStore: () => {
20
20
  */
21
21
  byId(id: guid): VelcronDefinitionRegistrationWithoutApp;
22
22
  byFilters(categoryFilters: Array<guid>, rendererTypeFilters: Array<guid>, includeBuiltIn?: boolean): VelcronDefinitionRegistration<object>[];
23
+ byReference(ref: VelcronRendererResolverReference): VelcronAppDefinition<object>;
23
24
  readonly categories: VelcronDefinitionCategoryRegistration[];
24
25
  filteredCategories(filters: Array<guid>, rendererTypeFilters: Array<guid>, includeBuiltIn?: boolean): VelcronDefinitionCategoryRegistration[];
25
26
  filteredRendererTypes(filters: Array<guid>): any[];
@@ -495,8 +495,6 @@ import wc06eff92039dd49339e522ac2d7a648af from './ux/layoutcanvas/editor/setting
495
495
  import wc53cbd5702e9e41ffa95093586c0e001d from './ux/layoutcanvas/editor/settings/block/Targeting';
496
496
  import wc1b1dd31ac8644b498ddf378a431dfb19 from './ux/layoutcanvas/editor/settings/blocktitle/BlockTitle';
497
497
  import wcbeda6edf4c614323955fc06c6326f7e9 from './ux/layoutcanvas/editor/settings/blocktitle/BlockTitleSettings';
498
- import wc1a332a3221ad4e578db3643745b0f3c7 from './ux/layoutcanvas/editor/settings/blocktitle/BlockTitleViewSettings';
499
- import wc694cc2e8dd154aee90d4d882c1903bd8 from './ux/layoutcanvas/editor/settings/blocktitle/BlockTitleRenderer';
500
498
  import wc0f7be5adc6ff4d81b920e5cf086128ae from './ux/layoutcanvas/editor/settings/imagebackgroundsettings/ImageBackgroundSettings';
501
499
  import wc673c5382ae8e4663ac07110302d7e386 from './ux/layoutcanvas/editor/settings/layout/GlobalHeaderStyling';
502
500
  import wc221ed456340d4c1fa7522b7bee6d7a64 from './ux/layoutcanvas/editor/settings/layout/BlockHeader';
@@ -512,6 +510,8 @@ import wc48ff129f9a254eec9276b47f0c0f8b3e from './ux/layoutcanvas/editor/setting
512
510
  import wccac6f7b1e12d4d8b8d302340d885bd48 from './ux/layoutcanvas/editor/settings/section/Columns';
513
511
  import wc2a460a78bf504a2b9d00b1f86a347d46 from './ux/layoutcanvas/editor/settings/settingstabs/TabLayoutSettings';
514
512
  import wc5b6b6242356046c29e05c24fb2135bf0 from './ux/layoutcanvas/editor/settings/settingstabs/TabBlockSettings';
513
+ import wc1a332a3221ad4e578db3643745b0f3c7 from './ux/layoutcanvas/editor/settings/titlerenderer/TitleRendererSettings';
514
+ import wc694cc2e8dd154aee90d4d882c1903bd8 from './ux/layoutcanvas/editor/settings/titlerenderer/TitleRenderer';
515
515
  import wc0f5cb3a8175d418c8527d1852cb28782 from './ux/richtexteditor/extensions/EnterpriseGlossaryLink/components/SuggestionComponent';
516
516
  import wc4cd5054dab4a44dfb4f0cd4be9d1ee50 from './ux/app/apps/admin/appsettings/admin/AppSettingsJourney';
517
517
  import wc1476702e8f24468d9185322be5931c54 from './ux/app/management/tabs/shared/addbutton/AddButton';
@@ -2855,22 +2855,6 @@ declare global {
2855
2855
  $props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
2856
2856
  };
2857
2857
  } : typeof wcbeda6edf4c614323955fc06c6326f7e9;
2858
- "view": {
2859
- "settings": typeof wc1a332a3221ad4e578db3643745b0f3c7 extends {
2860
- propsDefinition: infer TProp;
2861
- } ? {
2862
- new (...args: any[]): {
2863
- $props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
2864
- };
2865
- } : typeof wc1a332a3221ad4e578db3643745b0f3c7;
2866
- };
2867
- "renderer": typeof wc694cc2e8dd154aee90d4d882c1903bd8 extends {
2868
- propsDefinition: infer TProp;
2869
- } ? {
2870
- new (...args: any[]): {
2871
- $props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
2872
- };
2873
- } : typeof wc694cc2e8dd154aee90d4d882c1903bd8;
2874
2858
  };
2875
2859
  "title$": typeof wc1b1dd31ac8644b498ddf378a431dfb19 extends {
2876
2860
  propsDefinition: infer TProp;
@@ -3023,6 +3007,22 @@ declare global {
3023
3007
  } : typeof wc5b6b6242356046c29e05c24fb2135bf0;
3024
3008
  };
3025
3009
  };
3010
+ "title": {
3011
+ "settings": typeof wc1a332a3221ad4e578db3643745b0f3c7 extends {
3012
+ propsDefinition: infer TProp;
3013
+ } ? {
3014
+ new (...args: any[]): {
3015
+ $props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
3016
+ };
3017
+ } : typeof wc1a332a3221ad4e578db3643745b0f3c7;
3018
+ "renderer": typeof wc694cc2e8dd154aee90d4d882c1903bd8 extends {
3019
+ propsDefinition: infer TProp;
3020
+ } ? {
3021
+ new (...args: any[]): {
3022
+ $props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
3023
+ };
3024
+ } : typeof wc694cc2e8dd154aee90d4d882c1903bd8;
3025
+ };
3026
3026
  };
3027
3027
  "photowall": {
3028
3028
  "slider": {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@omnia/fx",
3
3
  "license": "MIT",
4
- "version": "8.0.271-dev",
4
+ "version": "8.0.273-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.271-dev",
23
+ "@omnia/fx-models": "8.0.273-dev",
24
24
  "@microsoft/signalr": "6.0.1",
25
25
  "broadcast-channel": "4.8.0",
26
26
  "dayjs": "1.11.7",
@@ -1,8 +0,0 @@
1
- import { DefineEmit } from "@omnia/fx/ux";
2
- import { ResolvedDynamicGroupIdentity } from "@omnia/fx-models";
3
- declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<{
4
- item?: ResolvedDynamicGroupIdentity;
5
- } & {
6
- removing?: boolean;
7
- } & DefineEmit<"restoreDynamicGroup", () => void> & DefineEmit<"purgeDynamicGroup", () => void>>) => any;
8
- export default _default;
@@ -1,11 +0,0 @@
1
- import { BlockTitleViewSettings } from "@omnia/fx-models";
2
- declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<{
3
- "emit:update:modelValue": (value: BlockTitleViewSettings) => void;
4
- } & {
5
- "v-model"?: BlockTitleViewSettings;
6
- } & {
7
- "onUpdate:modelValue"?: (value: BlockTitleViewSettings) => void;
8
- } & {
9
- modelValue?: BlockTitleViewSettings;
10
- }>) => any;
11
- export default _default;