@omnia/fx 8.0.209-dev → 8.0.210-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/core/utils/Utils.d.ts +6 -0
- package/internal-do-not-import-from-here/manifests/omnia.fx.manifest.json +1 -1
- package/internal-do-not-import-from-here/manifests/omnia.vendor.manifest.json +1 -1
- package/internal-do-not-import-from-here/services/identities/UserService.d.ts +1 -1
- package/internal-do-not-import-from-here/stores/mediapicker/ImageTransformerStore.d.ts +105 -4
- package/internal-do-not-import-from-here/stores/mediapicker/constants.d.ts +7 -0
- package/internal-do-not-import-from-here/stores/mediapicker/handlers/Utils/utils.d.ts +3 -0
- package/internal-do-not-import-from-here/stores/mediapicker/handlers/imagetransformer/filter.d.ts +4 -1
- package/internal-do-not-import-from-here/ux/Exposes.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/aurora/components/viewtemplatepicker/ViewTemplatePicker.css.d.ts +4 -0
- package/internal-do-not-import-from-here/ux/aurora/components/viewtemplatepicker/ViewTemplatePicker.d.ts +68 -0
- package/internal-do-not-import-from-here/ux/aurora/components/viewtemplatepicker/docs/ExampleComponents.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/aurora/components/viewtemplatepicker/docs/SampleComponent.d.ts +47 -0
- package/internal-do-not-import-from-here/ux/aurora/components/viewtemplatepicker/docs/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/aurora/store/SpacingBlueprintStore.d.ts +847 -3511
- package/internal-do-not-import-from-here/ux/aurora/store/TypographyBlueprintStore.d.ts +847 -3511
- package/internal-do-not-import-from-here/ux/directives/Scroll.d.ts +0 -23
- package/internal-do-not-import-from-here/ux/oxide/dialog/Dialog.d.ts +17 -0
- package/internal-do-not-import-from-here/ux/oxide/draggable/Draggable.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/properties/builtins/birthday/BirthdayConfiguration.d.ts +5 -0
- package/internal-do-not-import-from-here/ux/properties/builtins/date-time/DateTimeConfiguration.d.ts +5 -0
- package/internal-do-not-import-from-here/ux/properties/builtins/html/HtmlConfiguration.d.ts +5 -0
- package/internal-do-not-import-from-here/ux/properties/builtins/identity/IdentityConfiguration.d.ts +5 -0
- package/internal-do-not-import-from-here/ux/properties/builtins/image/ImageConfiguration.d.ts +5 -0
- package/internal-do-not-import-from-here/ux/properties/builtins/link/LinkConfiguration.d.ts +5 -0
- package/internal-do-not-import-from-here/ux/properties/property-configuration/LabelOptionsRenderer.d.ts +5 -0
- package/internal-do-not-import-from-here/ux/properties/property-configuration/PropertyConfiguration.d.ts +5 -0
- package/internal-do-not-import-from-here/ux/signin/AuthenticationBlockSettings.d.ts +47 -0
- package/internal-do-not-import-from-here/ux/signin/Shared.d.ts +7 -0
- package/internal-do-not-import-from-here/ux/signin/loc/localize.d.ts +4 -0
- package/internal-do-not-import-from-here/ux/signin/omnia/Login.d.ts +51 -15
- package/internal-do-not-import-from-here/ux/signin/omnia/Renderer.d.ts +6 -0
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew/VelcronContentEditor.css.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew/VelcronContentEditor.d.ts +50 -0
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew/components/BorderSelector.css.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew/stores/ContentEditorStore.d.ts +10 -0
- package/internal-do-not-import-from-here/wctypings.d.ts +29 -1
- package/internal-do-not-import-from-here/workers/ServiceWorker.d.ts +2 -0
- package/package.json +2 -2
@@ -73,6 +73,9 @@ declare const _default: {
|
|
73
73
|
showDefinitionSelector: {
|
74
74
|
subscribe(fn: (preInsert: boolean, insertRelativeToActive?: boolean, changeDefinition?: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
75
75
|
};
|
76
|
+
updateSection: {
|
77
|
+
subscribe(fn: (section: VelcronSectionInstance) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
78
|
+
};
|
76
79
|
toggleEditorToolbar: {
|
77
80
|
subscribe(fn: (forceHide?: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
78
81
|
};
|
@@ -129,6 +132,9 @@ declare const _default: {
|
|
129
132
|
showDefinitionSelector: {
|
130
133
|
subscribe(fn: (result: void, preInsert: boolean, insertRelativeToActive?: boolean, changeDefinition?: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
131
134
|
};
|
135
|
+
updateSection: {
|
136
|
+
subscribe(fn: (result: void, section: VelcronSectionInstance) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
137
|
+
};
|
132
138
|
toggleEditorToolbar: {
|
133
139
|
subscribe(fn: (result: void, forceHide?: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
134
140
|
};
|
@@ -185,6 +191,9 @@ declare const _default: {
|
|
185
191
|
showDefinitionSelector: {
|
186
192
|
subscribe(fn: (failureReason: any, preInsert: boolean, insertRelativeToActive?: boolean, changeDefinition?: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
187
193
|
};
|
194
|
+
updateSection: {
|
195
|
+
subscribe(fn: (failureReason: any, section: VelcronSectionInstance) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
196
|
+
};
|
188
197
|
toggleEditorToolbar: {
|
189
198
|
subscribe(fn: (failureReason: any, forceHide?: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
190
199
|
};
|
@@ -237,6 +246,7 @@ declare const _default: {
|
|
237
246
|
} & {
|
238
247
|
setFixedContentWidth(width: string): void;
|
239
248
|
showDefinitionSelector(preInsert: boolean, insertRelativeToActive?: boolean, changeDefinition?: boolean): void;
|
249
|
+
updateSection(section: VelcronSectionInstance): void;
|
240
250
|
toggleEditorToolbar(forceHide?: boolean): void;
|
241
251
|
addByRegistration(definition: import("@omnia/fx-models").VelcronDefinitionRegistration<object>, setAsActive?: boolean): void;
|
242
252
|
addBySection(definitions: VelcronSectionInstance[]): void;
|
@@ -326,6 +336,9 @@ declare const _default: {
|
|
326
336
|
showDefinitionSelector: {
|
327
337
|
subscribe(fn: (preInsert: boolean, insertRelativeToActive?: boolean, changeDefinition?: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
328
338
|
};
|
339
|
+
updateSection: {
|
340
|
+
subscribe(fn: (section: VelcronSectionInstance) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
341
|
+
};
|
329
342
|
toggleEditorToolbar: {
|
330
343
|
subscribe(fn: (forceHide?: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
331
344
|
};
|
@@ -382,6 +395,9 @@ declare const _default: {
|
|
382
395
|
showDefinitionSelector: {
|
383
396
|
subscribe(fn: (result: void, preInsert: boolean, insertRelativeToActive?: boolean, changeDefinition?: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
384
397
|
};
|
398
|
+
updateSection: {
|
399
|
+
subscribe(fn: (result: void, section: VelcronSectionInstance) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
400
|
+
};
|
385
401
|
toggleEditorToolbar: {
|
386
402
|
subscribe(fn: (result: void, forceHide?: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
387
403
|
};
|
@@ -438,6 +454,9 @@ declare const _default: {
|
|
438
454
|
showDefinitionSelector: {
|
439
455
|
subscribe(fn: (failureReason: any, preInsert: boolean, insertRelativeToActive?: boolean, changeDefinition?: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
440
456
|
};
|
457
|
+
updateSection: {
|
458
|
+
subscribe(fn: (failureReason: any, section: VelcronSectionInstance) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
459
|
+
};
|
441
460
|
toggleEditorToolbar: {
|
442
461
|
subscribe(fn: (failureReason: any, forceHide?: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
443
462
|
};
|
@@ -490,6 +509,7 @@ declare const _default: {
|
|
490
509
|
} & {
|
491
510
|
setFixedContentWidth(width: string): void;
|
492
511
|
showDefinitionSelector(preInsert: boolean, insertRelativeToActive?: boolean, changeDefinition?: boolean): void;
|
512
|
+
updateSection(section: VelcronSectionInstance): void;
|
493
513
|
toggleEditorToolbar(forceHide?: boolean): void;
|
494
514
|
addByRegistration(definition: import("@omnia/fx-models").VelcronDefinitionRegistration<object>, setAsActive?: boolean): void;
|
495
515
|
addBySection(definitions: VelcronSectionInstance[]): void;
|
@@ -582,6 +602,9 @@ declare const _default: {
|
|
582
602
|
showDefinitionSelector: {
|
583
603
|
subscribe(fn: (preInsert: boolean, insertRelativeToActive?: boolean, changeDefinition?: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
584
604
|
};
|
605
|
+
updateSection: {
|
606
|
+
subscribe(fn: (section: VelcronSectionInstance) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
607
|
+
};
|
585
608
|
toggleEditorToolbar: {
|
586
609
|
subscribe(fn: (forceHide?: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
587
610
|
};
|
@@ -638,6 +661,9 @@ declare const _default: {
|
|
638
661
|
showDefinitionSelector: {
|
639
662
|
subscribe(fn: (result: void, preInsert: boolean, insertRelativeToActive?: boolean, changeDefinition?: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
640
663
|
};
|
664
|
+
updateSection: {
|
665
|
+
subscribe(fn: (result: void, section: VelcronSectionInstance) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
666
|
+
};
|
641
667
|
toggleEditorToolbar: {
|
642
668
|
subscribe(fn: (result: void, forceHide?: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
643
669
|
};
|
@@ -694,6 +720,9 @@ declare const _default: {
|
|
694
720
|
showDefinitionSelector: {
|
695
721
|
subscribe(fn: (failureReason: any, preInsert: boolean, insertRelativeToActive?: boolean, changeDefinition?: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
696
722
|
};
|
723
|
+
updateSection: {
|
724
|
+
subscribe(fn: (failureReason: any, section: VelcronSectionInstance) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
725
|
+
};
|
697
726
|
toggleEditorToolbar: {
|
698
727
|
subscribe(fn: (failureReason: any, forceHide?: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
699
728
|
};
|
@@ -746,6 +775,7 @@ declare const _default: {
|
|
746
775
|
} & {
|
747
776
|
setFixedContentWidth(width: string): void;
|
748
777
|
showDefinitionSelector(preInsert: boolean, insertRelativeToActive?: boolean, changeDefinition?: boolean): void;
|
778
|
+
updateSection(section: VelcronSectionInstance): void;
|
749
779
|
toggleEditorToolbar(forceHide?: boolean): void;
|
750
780
|
addByRegistration(definition: import("@omnia/fx-models").VelcronDefinitionRegistration<object>, setAsActive?: boolean): void;
|
751
781
|
addBySection(definitions: VelcronSectionInstance[]): void;
|
@@ -835,6 +865,9 @@ declare const _default: {
|
|
835
865
|
showDefinitionSelector: {
|
836
866
|
subscribe(fn: (preInsert: boolean, insertRelativeToActive?: boolean, changeDefinition?: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
837
867
|
};
|
868
|
+
updateSection: {
|
869
|
+
subscribe(fn: (section: VelcronSectionInstance) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
870
|
+
};
|
838
871
|
toggleEditorToolbar: {
|
839
872
|
subscribe(fn: (forceHide?: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
840
873
|
};
|
@@ -891,6 +924,9 @@ declare const _default: {
|
|
891
924
|
showDefinitionSelector: {
|
892
925
|
subscribe(fn: (result: void, preInsert: boolean, insertRelativeToActive?: boolean, changeDefinition?: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
893
926
|
};
|
927
|
+
updateSection: {
|
928
|
+
subscribe(fn: (result: void, section: VelcronSectionInstance) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
929
|
+
};
|
894
930
|
toggleEditorToolbar: {
|
895
931
|
subscribe(fn: (result: void, forceHide?: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
896
932
|
};
|
@@ -947,6 +983,9 @@ declare const _default: {
|
|
947
983
|
showDefinitionSelector: {
|
948
984
|
subscribe(fn: (failureReason: any, preInsert: boolean, insertRelativeToActive?: boolean, changeDefinition?: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
949
985
|
};
|
986
|
+
updateSection: {
|
987
|
+
subscribe(fn: (failureReason: any, section: VelcronSectionInstance) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
988
|
+
};
|
950
989
|
toggleEditorToolbar: {
|
951
990
|
subscribe(fn: (failureReason: any, forceHide?: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
952
991
|
};
|
@@ -999,6 +1038,7 @@ declare const _default: {
|
|
999
1038
|
} & {
|
1000
1039
|
setFixedContentWidth(width: string): void;
|
1001
1040
|
showDefinitionSelector(preInsert: boolean, insertRelativeToActive?: boolean, changeDefinition?: boolean): void;
|
1041
|
+
updateSection(section: VelcronSectionInstance): void;
|
1002
1042
|
toggleEditorToolbar(forceHide?: boolean): void;
|
1003
1043
|
addByRegistration(definition: import("@omnia/fx-models").VelcronDefinitionRegistration<object>, setAsActive?: boolean): void;
|
1004
1044
|
addBySection(definitions: VelcronSectionInstance[]): void;
|
@@ -1085,6 +1125,9 @@ declare const _default: {
|
|
1085
1125
|
showDefinitionSelector: {
|
1086
1126
|
subscribe(fn: (preInsert: boolean, insertRelativeToActive?: boolean, changeDefinition?: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
1087
1127
|
};
|
1128
|
+
updateSection: {
|
1129
|
+
subscribe(fn: (section: VelcronSectionInstance) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
1130
|
+
};
|
1088
1131
|
toggleEditorToolbar: {
|
1089
1132
|
subscribe(fn: (forceHide?: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
1090
1133
|
};
|
@@ -1141,6 +1184,9 @@ declare const _default: {
|
|
1141
1184
|
showDefinitionSelector: {
|
1142
1185
|
subscribe(fn: (result: void, preInsert: boolean, insertRelativeToActive?: boolean, changeDefinition?: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
1143
1186
|
};
|
1187
|
+
updateSection: {
|
1188
|
+
subscribe(fn: (result: void, section: VelcronSectionInstance) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
1189
|
+
};
|
1144
1190
|
toggleEditorToolbar: {
|
1145
1191
|
subscribe(fn: (result: void, forceHide?: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
1146
1192
|
};
|
@@ -1197,6 +1243,9 @@ declare const _default: {
|
|
1197
1243
|
showDefinitionSelector: {
|
1198
1244
|
subscribe(fn: (failureReason: any, preInsert: boolean, insertRelativeToActive?: boolean, changeDefinition?: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
1199
1245
|
};
|
1246
|
+
updateSection: {
|
1247
|
+
subscribe(fn: (failureReason: any, section: VelcronSectionInstance) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
1248
|
+
};
|
1200
1249
|
toggleEditorToolbar: {
|
1201
1250
|
subscribe(fn: (failureReason: any, forceHide?: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
1202
1251
|
};
|
@@ -1249,6 +1298,7 @@ declare const _default: {
|
|
1249
1298
|
} & {
|
1250
1299
|
setFixedContentWidth(width: string): void;
|
1251
1300
|
showDefinitionSelector(preInsert: boolean, insertRelativeToActive?: boolean, changeDefinition?: boolean): void;
|
1301
|
+
updateSection(section: VelcronSectionInstance): void;
|
1252
1302
|
toggleEditorToolbar(forceHide?: boolean): void;
|
1253
1303
|
addByRegistration(definition: import("@omnia/fx-models").VelcronDefinitionRegistration<object>, setAsActive?: boolean): void;
|
1254
1304
|
addBySection(definitions: VelcronSectionInstance[]): void;
|
@@ -57,6 +57,9 @@ export declare const useVelcronContentEditorStore: () => {
|
|
57
57
|
showDefinitionSelector: {
|
58
58
|
subscribe(fn: (preInsert: boolean, insertRelativeToActive?: boolean, changeDefinition?: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
59
59
|
};
|
60
|
+
updateSection: {
|
61
|
+
subscribe(fn: (section: VelcronSectionInstance) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
62
|
+
};
|
60
63
|
toggleEditorToolbar: {
|
61
64
|
subscribe(fn: (forceHide?: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
62
65
|
};
|
@@ -113,6 +116,9 @@ export declare const useVelcronContentEditorStore: () => {
|
|
113
116
|
showDefinitionSelector: {
|
114
117
|
subscribe(fn: (result: void, preInsert: boolean, insertRelativeToActive?: boolean, changeDefinition?: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
115
118
|
};
|
119
|
+
updateSection: {
|
120
|
+
subscribe(fn: (result: void, section: VelcronSectionInstance) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
121
|
+
};
|
116
122
|
toggleEditorToolbar: {
|
117
123
|
subscribe(fn: (result: void, forceHide?: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
118
124
|
};
|
@@ -169,6 +175,9 @@ export declare const useVelcronContentEditorStore: () => {
|
|
169
175
|
showDefinitionSelector: {
|
170
176
|
subscribe(fn: (failureReason: any, preInsert: boolean, insertRelativeToActive?: boolean, changeDefinition?: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
171
177
|
};
|
178
|
+
updateSection: {
|
179
|
+
subscribe(fn: (failureReason: any, section: VelcronSectionInstance) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
180
|
+
};
|
172
181
|
toggleEditorToolbar: {
|
173
182
|
subscribe(fn: (failureReason: any, forceHide?: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
174
183
|
};
|
@@ -221,6 +230,7 @@ export declare const useVelcronContentEditorStore: () => {
|
|
221
230
|
} & {
|
222
231
|
setFixedContentWidth(width: string): void;
|
223
232
|
showDefinitionSelector(preInsert: boolean, insertRelativeToActive?: boolean, changeDefinition?: boolean): void;
|
233
|
+
updateSection(section: VelcronSectionInstance): void;
|
224
234
|
toggleEditorToolbar(forceHide?: boolean): void;
|
225
235
|
addByRegistration(definition: VelcronDefinitionRegistration, setAsActive?: boolean): void;
|
226
236
|
addBySection(definitions: Array<VelcronSectionInstance>): void;
|
@@ -99,6 +99,7 @@ import wcc0de4753b9fe4004b0f4e6b6b91730ab from './ux/settings/SettingsPane';
|
|
99
99
|
import wc539d199f69934c10a963f142e4f3056d from './ux/sidepanel/SidePanelRenderer';
|
100
100
|
import wcb5315b31203e4bd1beb3c33f2122cbfe from './ux/signin/AuthenticationPage';
|
101
101
|
import wcb273791ea562403397cdc0a1c0f907cb from './ux/signin/AuthenticationBlock';
|
102
|
+
import wcfe3e57c4b1314b2ba725ec558ac00fe7 from './ux/signin/AuthenticationBlockSettings';
|
102
103
|
import wcbc3b9409639d45829a6e58a4295bc470 from './ux/signin/omnia/Renderer';
|
103
104
|
import wc535ac075284646eca569a78457213e6f from './ux/signin/omnia/Login';
|
104
105
|
import wc2b741f0203a54cb5a7be72e204ebecc8 from './ux/signin/identitycreationrequest/IdentityCreationRequestView';
|
@@ -326,6 +327,7 @@ import wc73e1c232690249f78967e3e3f6d92bd7 from './ux/aurora/components/themepick
|
|
326
327
|
import wc54730f05dd2c4f2da1c830b3985b36a9 from './ux/aurora/components/typography/TypographyPicker';
|
327
328
|
import wc99a73153b5c647da9d6de517f51e53f0 from './ux/aurora/components/typography/TypographyEditor';
|
328
329
|
import wc2f742a14a560434abb899360a69c314b from './ux/aurora/components/typography/TypographyBlueprintsViewer';
|
330
|
+
import wc6bcccc7dd1c74fe591a660641ac62cd7 from './ux/aurora/components/viewtemplatepicker/ViewTemplatePicker';
|
329
331
|
import wc4fc2b52f62484d5caced1c31f7ead58b from './ux/enterpriseproperties/display/datafield/DataFieldDisplay';
|
330
332
|
import wc08f6ee02c5d94b648f630ec352fdd94c from './ux/enterpriseproperties/display/personfield/PersonFieldDisplay';
|
331
333
|
import wcbb27e780de41442fa9cab8cef6c71100 from './ux/enterpriseproperties/edit/datafield/DataFieldEdit';
|
@@ -773,6 +775,9 @@ declare global {
|
|
773
775
|
"omfx-authentication-block": typeof wcb273791ea562403397cdc0a1c0f907cb extends {
|
774
776
|
propsDefinition: infer TProp;
|
775
777
|
} ? (TProp & Omit<VueComponentBaseProps, keyof TProp>) : typeof wcb273791ea562403397cdc0a1c0f907cb extends (...args: any[]) => any ? ExtractJsxProps<Pick<ReturnType<typeof wcb273791ea562403397cdc0a1c0f907cb>, "propsDefinition">> : never;
|
778
|
+
"omfx-authentication-block-settings": typeof wcfe3e57c4b1314b2ba725ec558ac00fe7 extends {
|
779
|
+
propsDefinition: infer TProp;
|
780
|
+
} ? (TProp & Omit<VueComponentBaseProps, keyof TProp>) : typeof wcfe3e57c4b1314b2ba725ec558ac00fe7 extends (...args: any[]) => any ? ExtractJsxProps<Pick<ReturnType<typeof wcfe3e57c4b1314b2ba725ec558ac00fe7>, "propsDefinition">> : never;
|
776
781
|
"omfx-login-omnia": typeof wcbc3b9409639d45829a6e58a4295bc470 extends {
|
777
782
|
propsDefinition: infer TProp;
|
778
783
|
} ? (TProp & Omit<VueComponentBaseProps, keyof TProp>) : typeof wcbc3b9409639d45829a6e58a4295bc470 extends (...args: any[]) => any ? ExtractJsxProps<Pick<ReturnType<typeof wcbc3b9409639d45829a6e58a4295bc470>, "propsDefinition">> : never;
|
@@ -1454,6 +1459,9 @@ declare global {
|
|
1454
1459
|
"omfx-typography-viewer": typeof wc2f742a14a560434abb899360a69c314b extends {
|
1455
1460
|
propsDefinition: infer TProp;
|
1456
1461
|
} ? (TProp & Omit<VueComponentBaseProps, keyof TProp>) : typeof wc2f742a14a560434abb899360a69c314b extends (...args: any[]) => any ? ExtractJsxProps<Pick<ReturnType<typeof wc2f742a14a560434abb899360a69c314b>, "propsDefinition">> : never;
|
1462
|
+
"omfx-view-template-picker": typeof wc6bcccc7dd1c74fe591a660641ac62cd7 extends {
|
1463
|
+
propsDefinition: infer TProp;
|
1464
|
+
} ? (TProp & Omit<VueComponentBaseProps, keyof TProp>) : typeof wc6bcccc7dd1c74fe591a660641ac62cd7 extends (...args: any[]) => any ? ExtractJsxProps<Pick<ReturnType<typeof wc6bcccc7dd1c74fe591a660641ac62cd7>, "propsDefinition">> : never;
|
1457
1465
|
"omfx-enterpriseproperties-datafield-display": typeof wc4fc2b52f62484d5caced1c31f7ead58b extends {
|
1458
1466
|
propsDefinition: infer TProp;
|
1459
1467
|
} ? (TProp & Omit<VueComponentBaseProps, keyof TProp>) : typeof wc4fc2b52f62484d5caced1c31f7ead58b extends (...args: any[]) => any ? ExtractJsxProps<Pick<ReturnType<typeof wc4fc2b52f62484d5caced1c31f7ead58b>, "propsDefinition">> : never;
|
@@ -3238,7 +3246,16 @@ declare global {
|
|
3238
3246
|
$props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
|
3239
3247
|
};
|
3240
3248
|
} : typeof wcb5315b31203e4bd1beb3c33f2122cbfe;
|
3241
|
-
"block":
|
3249
|
+
"block": {
|
3250
|
+
"settings": typeof wcfe3e57c4b1314b2ba725ec558ac00fe7 extends {
|
3251
|
+
propsDefinition: infer TProp;
|
3252
|
+
} ? {
|
3253
|
+
new (...args: any[]): {
|
3254
|
+
$props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
|
3255
|
+
};
|
3256
|
+
} : typeof wcfe3e57c4b1314b2ba725ec558ac00fe7;
|
3257
|
+
};
|
3258
|
+
"block$": typeof wcb273791ea562403397cdc0a1c0f907cb extends {
|
3242
3259
|
propsDefinition: infer TProp;
|
3243
3260
|
} ? {
|
3244
3261
|
new (...args: any[]): {
|
@@ -4979,6 +4996,17 @@ declare global {
|
|
4979
4996
|
};
|
4980
4997
|
} : typeof wc2f742a14a560434abb899360a69c314b;
|
4981
4998
|
};
|
4999
|
+
"view": {
|
5000
|
+
"template": {
|
5001
|
+
"picker": typeof wc6bcccc7dd1c74fe591a660641ac62cd7 extends {
|
5002
|
+
propsDefinition: infer TProp;
|
5003
|
+
} ? {
|
5004
|
+
new (...args: any[]): {
|
5005
|
+
$props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
|
5006
|
+
};
|
5007
|
+
} : typeof wc6bcccc7dd1c74fe591a660641ac62cd7;
|
5008
|
+
};
|
5009
|
+
};
|
4982
5010
|
"enterpriseproperties": {
|
4983
5011
|
"datafield": {
|
4984
5012
|
"display": typeof wc4fc2b52f62484d5caced1c31f7ead58b extends {
|
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "@omnia/fx",
|
3
3
|
"license": "MIT",
|
4
|
-
"version": "8.0.
|
4
|
+
"version": "8.0.210-dev",
|
5
5
|
"description": "Provide Omnia Fx typings and tooling for clientside Omnia development.",
|
6
6
|
"scripts": {
|
7
7
|
"test": "echo \"Error: no test specified\" && exit 1",
|
@@ -20,7 +20,7 @@
|
|
20
20
|
],
|
21
21
|
"author": "Precio Fishbone",
|
22
22
|
"dependencies": {
|
23
|
-
"@omnia/fx-models": "8.0.
|
23
|
+
"@omnia/fx-models": "8.0.210-dev",
|
24
24
|
"@microsoft/signalr": "6.0.1",
|
25
25
|
"broadcast-channel": "4.8.0",
|
26
26
|
"dayjs": "1.11.7",
|