@omnia/fx 8.0.237-dev → 8.0.239-dev

Sign up to get free protection for your applications and to get access to all the features.
Files changed (20) hide show
  1. package/internal-do-not-import-from-here/manifests/omnia.fx.manifest.json +1 -1
  2. package/internal-do-not-import-from-here/stores/markdown/index.d.ts +1 -0
  3. package/internal-do-not-import-from-here/ux/admin/usermanagement/loc/localize.d.ts +1 -0
  4. package/internal-do-not-import-from-here/ux/admin/usermanagement/self-service/AddUserTypeBlade.d.ts +47 -0
  5. package/internal-do-not-import-from-here/ux/admin/usermanagement/self-service/ApprovalBlade.d.ts +47 -0
  6. package/internal-do-not-import-from-here/ux/admin/usermanagement/self-service/EditUserTypeBlade.d.ts +47 -0
  7. package/internal-do-not-import-from-here/ux/admin/usermanagement/self-service/UserTypesBlade.d.ts +47 -0
  8. package/internal-do-not-import-from-here/ux/journey/DefineBlade.d.ts +3 -0
  9. package/internal-do-not-import-from-here/ux/journey/JourneyBlade.d.ts +2 -2
  10. package/internal-do-not-import-from-here/ux/journey/JourneyMenu.d.ts +4 -4
  11. package/internal-do-not-import-from-here/ux/journey/stores/JourneyStore.d.ts +3 -0
  12. package/internal-do-not-import-from-here/ux/markdown2/MarkdownEditorFuture.d.ts +5 -1
  13. package/internal-do-not-import-from-here/ux/markdown2/MarkdownToolbar.css.d.ts +5 -0
  14. package/internal-do-not-import-from-here/ux/markdown2/MarkdownToolbar.d.ts +440 -0
  15. package/internal-do-not-import-from-here/ux/markdown2/models/MarkdownPlugin.d.ts +1 -0
  16. package/internal-do-not-import-from-here/ux/markdown2/stores/MarkdownStore.d.ts +93 -16
  17. package/internal-do-not-import-from-here/ux/markdown2/stores/MarkdownToolbarStore.d.ts +47 -0
  18. package/internal-do-not-import-from-here/ux/velcron/components/contenteditorNew/stores/ContentEditorStore.d.ts +6 -232
  19. package/internal-do-not-import-from-here/wctypings.d.ts +17 -4
  20. package/package.json +2 -2
@@ -1,4 +1,3 @@
1
- import { useMarkdownEditorStore } from "@omnia/fx/stores";
2
1
  import { VelcronAppDefinition, VelcronDefinition, VelcronDefinitionRegistration, ContainerBlueprint, ContainerVariant, VelcronSectionInstance, guid, BorderSelectorActionRegistration } from "@omnia/fx-models";
3
2
  type InsertMode = "add" | "change";
4
3
  export interface InsertOptions {
@@ -76,82 +75,7 @@ export declare const useVelcronContentEditorStore: () => {
76
75
  actions: {
77
76
  onDispatching: {
78
77
  setMarkdownEditorStore: {
79
- subscribe(fn: (store: {
80
- state: {
81
- toolbar: {
82
- show: boolean;
83
- textActions: import("@omnia/fx-models").MarkdownEditorActionRegistration[];
84
- additionalActions: import("@omnia/fx-models").MarkdownEditorActionRegistration[];
85
- };
86
- toolbarOwnerId: guid;
87
- activeEditor: import("@toast-ui/editor").Editor;
88
- };
89
- events: {
90
- onMutatedToolbar: import("@omnia/fx").MessageBusExposeOnlySubscription<{
91
- show: boolean;
92
- textActions: import("@omnia/fx-models").MarkdownEditorActionRegistration[];
93
- additionalActions: import("@omnia/fx-models").MarkdownEditorActionRegistration[];
94
- }>;
95
- onMutatedToolbarOwnerId: import("@omnia/fx").MessageBusExposeOnlySubscription<guid>;
96
- onMutatedActiveEditor: import("@omnia/fx").MessageBusExposeOnlySubscription<import("@toast-ui/editor").Editor>;
97
- } & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
98
- actions: {
99
- onDispatching: {
100
- commands: {
101
- subscribe(fn: () => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
102
- };
103
- toolbar: {
104
- subscribe(fn: () => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
105
- };
106
- editor: {
107
- subscribe(fn: () => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
108
- };
109
- };
110
- onDispatched: {
111
- commands: {
112
- subscribe(fn: (result: {
113
- exec: (command: string, payload: any) => void;
114
- }) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
115
- };
116
- toolbar: {
117
- subscribe(fn: (result: {
118
- addAdditionalAction: (action: import("@omnia/fx-models").MarkdownEditorActionRegistration) => void;
119
- }) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
120
- };
121
- editor: {
122
- subscribe(fn: (result: {
123
- onEnter: (editor: import("@toast-ui/editor").Editor, editorId: guid) => void;
124
- onLeave: (id: any) => void;
125
- }) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
126
- };
127
- };
128
- onFailure: {
129
- commands: {
130
- subscribe(fn: (failureReason: any) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
131
- };
132
- toolbar: {
133
- subscribe(fn: (failureReason: any) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
134
- };
135
- editor: {
136
- subscribe(fn: (failureReason: any) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
137
- };
138
- };
139
- } & {
140
- commands: () => {
141
- exec: (command: string, payload: any) => void;
142
- };
143
- toolbar: () => {
144
- addAdditionalAction: (action: import("@omnia/fx-models").MarkdownEditorActionRegistration) => void;
145
- };
146
- editor: () => {
147
- onEnter: (editor: import("@toast-ui/editor").Editor, editorId: guid) => void;
148
- onLeave: (id: any) => void;
149
- };
150
- };
151
- get: {
152
- isActiveStore(): boolean;
153
- };
154
- }) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
78
+ subscribe(fn: (store: any) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
155
79
  };
156
80
  selectorActions: {
157
81
  subscribe(fn: () => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
@@ -177,82 +101,7 @@ export declare const useVelcronContentEditorStore: () => {
177
101
  };
178
102
  onDispatched: {
179
103
  setMarkdownEditorStore: {
180
- subscribe(fn: (result: void, store: {
181
- state: {
182
- toolbar: {
183
- show: boolean;
184
- textActions: import("@omnia/fx-models").MarkdownEditorActionRegistration[];
185
- additionalActions: import("@omnia/fx-models").MarkdownEditorActionRegistration[];
186
- };
187
- toolbarOwnerId: guid;
188
- activeEditor: import("@toast-ui/editor").Editor;
189
- };
190
- events: {
191
- onMutatedToolbar: import("@omnia/fx").MessageBusExposeOnlySubscription<{
192
- show: boolean;
193
- textActions: import("@omnia/fx-models").MarkdownEditorActionRegistration[];
194
- additionalActions: import("@omnia/fx-models").MarkdownEditorActionRegistration[];
195
- }>;
196
- onMutatedToolbarOwnerId: import("@omnia/fx").MessageBusExposeOnlySubscription<guid>;
197
- onMutatedActiveEditor: import("@omnia/fx").MessageBusExposeOnlySubscription<import("@toast-ui/editor").Editor>;
198
- } & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
199
- actions: {
200
- onDispatching: {
201
- commands: {
202
- subscribe(fn: () => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
203
- };
204
- toolbar: {
205
- subscribe(fn: () => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
206
- };
207
- editor: {
208
- subscribe(fn: () => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
209
- };
210
- };
211
- onDispatched: {
212
- commands: {
213
- subscribe(fn: (result: {
214
- exec: (command: string, payload: any) => void;
215
- }) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
216
- };
217
- toolbar: {
218
- subscribe(fn: (result: {
219
- addAdditionalAction: (action: import("@omnia/fx-models").MarkdownEditorActionRegistration) => void;
220
- }) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
221
- };
222
- editor: {
223
- subscribe(fn: (result: {
224
- onEnter: (editor: import("@toast-ui/editor").Editor, editorId: guid) => void;
225
- onLeave: (id: any) => void;
226
- }) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
227
- };
228
- };
229
- onFailure: {
230
- commands: {
231
- subscribe(fn: (failureReason: any) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
232
- };
233
- toolbar: {
234
- subscribe(fn: (failureReason: any) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
235
- };
236
- editor: {
237
- subscribe(fn: (failureReason: any) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
238
- };
239
- };
240
- } & {
241
- commands: () => {
242
- exec: (command: string, payload: any) => void;
243
- };
244
- toolbar: () => {
245
- addAdditionalAction: (action: import("@omnia/fx-models").MarkdownEditorActionRegistration) => void;
246
- };
247
- editor: () => {
248
- onEnter: (editor: import("@toast-ui/editor").Editor, editorId: guid) => void;
249
- onLeave: (id: any) => void;
250
- };
251
- };
252
- get: {
253
- isActiveStore(): boolean;
254
- };
255
- }) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
104
+ subscribe(fn: (result: void, store: any) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
256
105
  };
257
106
  selectorActions: {
258
107
  subscribe(fn: (result: {
@@ -293,7 +142,7 @@ export declare const useVelcronContentEditorStore: () => {
293
142
  definition: {
294
143
  subscribe(fn: (result: {
295
144
  updateColorSchema: (definitionRegistration: VelcronSectionInstance, colorSchemaType: string) => void;
296
- addByRegistration: (definition: VelcronDefinitionRegistration, insertOptions: InsertOptions, setAsActive?: boolean) => VelcronSectionInstance;
145
+ addByRegistration: (definition: VelcronDefinitionRegistration, insertOptions: InsertOptions, setAsActive?: boolean) => void;
297
146
  addBySection: (definitions: Array<VelcronSectionInstance>) => void;
298
147
  delete: (definition: VelcronSectionInstance) => void;
299
148
  deleteReference: (definition: VelcronSectionInstance) => any;
@@ -312,82 +161,7 @@ export declare const useVelcronContentEditorStore: () => {
312
161
  };
313
162
  onFailure: {
314
163
  setMarkdownEditorStore: {
315
- subscribe(fn: (failureReason: any, store: {
316
- state: {
317
- toolbar: {
318
- show: boolean;
319
- textActions: import("@omnia/fx-models").MarkdownEditorActionRegistration[];
320
- additionalActions: import("@omnia/fx-models").MarkdownEditorActionRegistration[];
321
- };
322
- toolbarOwnerId: guid;
323
- activeEditor: import("@toast-ui/editor").Editor;
324
- };
325
- events: {
326
- onMutatedToolbar: import("@omnia/fx").MessageBusExposeOnlySubscription<{
327
- show: boolean;
328
- textActions: import("@omnia/fx-models").MarkdownEditorActionRegistration[];
329
- additionalActions: import("@omnia/fx-models").MarkdownEditorActionRegistration[];
330
- }>;
331
- onMutatedToolbarOwnerId: import("@omnia/fx").MessageBusExposeOnlySubscription<guid>;
332
- onMutatedActiveEditor: import("@omnia/fx").MessageBusExposeOnlySubscription<import("@toast-ui/editor").Editor>;
333
- } & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
334
- actions: {
335
- onDispatching: {
336
- commands: {
337
- subscribe(fn: () => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
338
- };
339
- toolbar: {
340
- subscribe(fn: () => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
341
- };
342
- editor: {
343
- subscribe(fn: () => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
344
- };
345
- };
346
- onDispatched: {
347
- commands: {
348
- subscribe(fn: (result: {
349
- exec: (command: string, payload: any) => void;
350
- }) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
351
- };
352
- toolbar: {
353
- subscribe(fn: (result: {
354
- addAdditionalAction: (action: import("@omnia/fx-models").MarkdownEditorActionRegistration) => void;
355
- }) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
356
- };
357
- editor: {
358
- subscribe(fn: (result: {
359
- onEnter: (editor: import("@toast-ui/editor").Editor, editorId: guid) => void;
360
- onLeave: (id: any) => void;
361
- }) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
362
- };
363
- };
364
- onFailure: {
365
- commands: {
366
- subscribe(fn: (failureReason: any) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
367
- };
368
- toolbar: {
369
- subscribe(fn: (failureReason: any) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
370
- };
371
- editor: {
372
- subscribe(fn: (failureReason: any) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
373
- };
374
- };
375
- } & {
376
- commands: () => {
377
- exec: (command: string, payload: any) => void;
378
- };
379
- toolbar: () => {
380
- addAdditionalAction: (action: import("@omnia/fx-models").MarkdownEditorActionRegistration) => void;
381
- };
382
- editor: () => {
383
- onEnter: (editor: import("@toast-ui/editor").Editor, editorId: guid) => void;
384
- onLeave: (id: any) => void;
385
- };
386
- };
387
- get: {
388
- isActiveStore(): boolean;
389
- };
390
- }) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
164
+ subscribe(fn: (failureReason: any, store: any) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
391
165
  };
392
166
  selectorActions: {
393
167
  subscribe(fn: (failureReason: any) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
@@ -412,7 +186,7 @@ export declare const useVelcronContentEditorStore: () => {
412
186
  };
413
187
  };
414
188
  } & {
415
- setMarkdownEditorStore(store: ReturnType<typeof useMarkdownEditorStore>): void;
189
+ setMarkdownEditorStore(store: any): void;
416
190
  selectorActions: () => {
417
191
  hideDefaultSelector: () => void;
418
192
  showCopySelector(): void;
@@ -441,7 +215,7 @@ export declare const useVelcronContentEditorStore: () => {
441
215
  };
442
216
  definition: () => {
443
217
  updateColorSchema: (definitionRegistration: VelcronSectionInstance, colorSchemaType: string) => void;
444
- addByRegistration: (definition: VelcronDefinitionRegistration, insertOptions: InsertOptions, setAsActive?: boolean) => VelcronSectionInstance;
218
+ addByRegistration: (definition: VelcronDefinitionRegistration, insertOptions: InsertOptions, setAsActive?: boolean) => void;
445
219
  addBySection: (definitions: Array<VelcronSectionInstance>) => void;
446
220
  delete: (definition: VelcronSectionInstance) => void;
447
221
  deleteReference: (definition: VelcronSectionInstance) => any;
@@ -67,6 +67,7 @@ import wc744b3f31e00c4815b63ecaf638ad7a7a from './ux/markdown/MarkdownEditor';
67
67
  import wcc8b990d01ddc45ab930b4409fc406435 from './ux/markdown/MarkdownRenderer';
68
68
  import wccbd18219fce4454d92afd1867f0ef43b from './ux/markdown/MarkdownToolbar';
69
69
  import wcfaee0b6397494a9abca9c480856e2498 from './ux/markdown2/MarkdownEditorFuture';
70
+ import wc755f943792b441eab300c1fdc8709d22 from './ux/markdown2/MarkdownToolbar';
70
71
  import wce9bb3179713943d787e139cedf749838 from './ux/mediapickerimage/MediaPickerImage';
71
72
  import wc4b2648ed8b124e62a09b21b099b43399 from './ux/mediapickervideo/MediaPickerVideo';
72
73
  import wc2e8004b49c8d44dd8edb56ce884c2b57 from './ux/monaco/MonacoEditor';
@@ -737,6 +738,9 @@ declare global {
737
738
  "omfx-markdown-editor-future": typeof wcfaee0b6397494a9abca9c480856e2498 extends {
738
739
  propsDefinition: infer TProp;
739
740
  } ? (TProp & Omit<VueComponentBaseProps, keyof TProp>) : typeof wcfaee0b6397494a9abca9c480856e2498 extends (...args: any[]) => any ? ExtractJsxProps<Pick<ReturnType<typeof wcfaee0b6397494a9abca9c480856e2498>, "propsDefinition">> : never;
741
+ "omfx-markdown-editor-toolbar-future": typeof wc755f943792b441eab300c1fdc8709d22 extends {
742
+ propsDefinition: infer TProp;
743
+ } ? (TProp & Omit<VueComponentBaseProps, keyof TProp>) : typeof wc755f943792b441eab300c1fdc8709d22 extends (...args: any[]) => any ? ExtractJsxProps<Pick<ReturnType<typeof wc755f943792b441eab300c1fdc8709d22>, "propsDefinition">> : never;
740
744
  "omfx-media-picker-image": typeof wce9bb3179713943d787e139cedf749838 extends {
741
745
  propsDefinition: infer TProp;
742
746
  } ? (TProp & Omit<VueComponentBaseProps, keyof TProp>) : typeof wce9bb3179713943d787e139cedf749838 extends (...args: any[]) => any ? ExtractJsxProps<Pick<ReturnType<typeof wce9bb3179713943d787e139cedf749838>, "propsDefinition">> : never;
@@ -3135,20 +3139,29 @@ declare global {
3135
3139
  };
3136
3140
  "markdown": {
3137
3141
  "editor": {
3138
- "toolbar": typeof wccbd18219fce4454d92afd1867f0ef43b extends {
3142
+ "toolbar": {
3143
+ "future": typeof wc755f943792b441eab300c1fdc8709d22 extends {
3144
+ propsDefinition: infer TProp;
3145
+ } ? {
3146
+ new (...args: any[]): {
3147
+ $props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
3148
+ };
3149
+ } : typeof wc755f943792b441eab300c1fdc8709d22;
3150
+ };
3151
+ "future": typeof wcfaee0b6397494a9abca9c480856e2498 extends {
3139
3152
  propsDefinition: infer TProp;
3140
3153
  } ? {
3141
3154
  new (...args: any[]): {
3142
3155
  $props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
3143
3156
  };
3144
- } : typeof wccbd18219fce4454d92afd1867f0ef43b;
3145
- "future": typeof wcfaee0b6397494a9abca9c480856e2498 extends {
3157
+ } : typeof wcfaee0b6397494a9abca9c480856e2498;
3158
+ "toolbar$": typeof wccbd18219fce4454d92afd1867f0ef43b extends {
3146
3159
  propsDefinition: infer TProp;
3147
3160
  } ? {
3148
3161
  new (...args: any[]): {
3149
3162
  $props: TProp & Omit<VueComponentBaseProps, keyof TProp>;
3150
3163
  };
3151
- } : typeof wcfaee0b6397494a9abca9c480856e2498;
3164
+ } : typeof wccbd18219fce4454d92afd1867f0ef43b;
3152
3165
  };
3153
3166
  "renderer": typeof wcc8b990d01ddc45ab930b4409fc406435 extends {
3154
3167
  propsDefinition: infer TProp;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@omnia/fx",
3
3
  "license": "MIT",
4
- "version": "8.0.237-dev",
4
+ "version": "8.0.239-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.237-dev",
23
+ "@omnia/fx-models": "8.0.239-dev",
24
24
  "@microsoft/signalr": "6.0.1",
25
25
  "broadcast-channel": "4.8.0",
26
26
  "dayjs": "1.11.7",