@omnia/fx 8.0.72-dev → 8.0.73-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/stores/ClipboardStore.d.ts +6 -0
- package/internal-do-not-import-from-here/ux/multilingualinput/loc/localize.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/multitextinput/MultiTextInput.d.ts +638 -0
- package/internal-do-not-import-from-here/ux/multitextinput/loc/localize.d.ts +8 -0
- package/internal-do-not-import-from-here/wctypings.d.ts +7 -0
- package/package.json +2 -2
@@ -28,4 +28,10 @@ export declare class ClipboardStore extends Store {
|
|
28
28
|
appendClipboard: import("./Store").StoreMutation<(id: Guid, clipboard: ClipboardBase<any>) => void, (id: Guid, clipboard: ClipboardBase<any>) => import("@omnia/fx-models").IMessageBusSubscriptionHandler>;
|
29
29
|
reloadClipboard: import("./Store").StoreMutation<(id: Guid) => void, (id: Guid) => import("@omnia/fx-models").IMessageBusSubscriptionHandler>;
|
30
30
|
};
|
31
|
+
/**
|
32
|
+
* Implementation of actions
|
33
|
+
*/
|
34
|
+
actions: {
|
35
|
+
reloadClipboard: import("./Store").StoreAction<unknown, (id: Guid) => void, (result: void, id: Guid) => void, (failureReason: any, id: Guid) => void, (id: Guid) => Promise<void>>;
|
36
|
+
};
|
31
37
|
}
|
@@ -0,0 +1,638 @@
|
|
1
|
+
import { OmitProperties, RichTextEditorExtensionRegistration } from "../../models";
|
2
|
+
import { ValidationRule } from "../models";
|
3
|
+
import { IRichTextEditorExtensionHelper, RichTextEditorExtension } from "../richtexteditor";
|
4
|
+
import { IRichTextEditor } from "../richtexteditor";
|
5
|
+
import { VNodeChild } from "vue";
|
6
|
+
export interface IActionItem {
|
7
|
+
selectItem: (item: any) => void;
|
8
|
+
enableGridMode: () => void;
|
9
|
+
}
|
10
|
+
export interface OMultiTextInputSlot {
|
11
|
+
appendItem?: (item: any) => VNodeChild;
|
12
|
+
prependItem?: (item: any) => VNodeChild;
|
13
|
+
items?: (items: Array<any>, ctx: IActionItem) => VNodeChild;
|
14
|
+
}
|
15
|
+
declare const _default: {
|
16
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
|
17
|
+
rules: {
|
18
|
+
type: import("vue").PropType<ValidationRule[]>;
|
19
|
+
required: false;
|
20
|
+
};
|
21
|
+
"v-slots": import("vue").Prop<{
|
22
|
+
default?: import("../DefineVueTypings").Slot<any[]>;
|
23
|
+
} & OMultiTextInputSlot>;
|
24
|
+
autofocus: {
|
25
|
+
type: import("vue").PropType<boolean>;
|
26
|
+
} & {
|
27
|
+
type: import("vue").PropType<boolean>;
|
28
|
+
};
|
29
|
+
"on-configure-extensions": {
|
30
|
+
type: import("vue").PropType<(extensions: Array<RichTextEditorExtension>, registrationResolver?: (registration: RichTextEditorExtensionRegistration) => RichTextEditorExtension, extensionHelper?: IRichTextEditorExtensionHelper) => Array<RichTextEditorExtension>>;
|
31
|
+
};
|
32
|
+
onConfigureExtensions: {
|
33
|
+
type: import("vue").PropType<(extensions: Array<RichTextEditorExtension>, registrationResolver?: (registration: RichTextEditorExtensionRegistration) => RichTextEditorExtension, extensionHelper?: IRichTextEditorExtensionHelper) => Array<RichTextEditorExtension>>;
|
34
|
+
};
|
35
|
+
"rich-text-settings": {
|
36
|
+
type: import("vue").PropType<OmitProperties<IRichTextEditor, "initialContent" | "onContentChange">>;
|
37
|
+
};
|
38
|
+
richTextSettings: {
|
39
|
+
type: import("vue").PropType<OmitProperties<IRichTextEditor, "initialContent" | "onContentChange">>;
|
40
|
+
};
|
41
|
+
"default-value-item": {
|
42
|
+
type: import("vue").PropType<any>;
|
43
|
+
};
|
44
|
+
defaultValueItem: {
|
45
|
+
type: import("vue").PropType<any>;
|
46
|
+
};
|
47
|
+
itemValue: {
|
48
|
+
type: import("vue").PropType<any>;
|
49
|
+
};
|
50
|
+
itemTitle: {
|
51
|
+
type: import("vue").PropType<string | ((item: any) => string)>;
|
52
|
+
};
|
53
|
+
items: {
|
54
|
+
type: import("vue").PropType<any[]>;
|
55
|
+
} & {
|
56
|
+
type: import("vue").PropType<any[]>;
|
57
|
+
};
|
58
|
+
disabled: {
|
59
|
+
type: import("vue").PropType<boolean>;
|
60
|
+
required: false;
|
61
|
+
};
|
62
|
+
label: {
|
63
|
+
type: import("vue").PropType<string>;
|
64
|
+
};
|
65
|
+
mode: {
|
66
|
+
type: import("vue").PropType<"textarea" | "textfield" | "rtf">;
|
67
|
+
required: false;
|
68
|
+
};
|
69
|
+
marker: {
|
70
|
+
type: import("vue").PropType<string>;
|
71
|
+
required: true;
|
72
|
+
};
|
73
|
+
"onUpdate:modelValue": {
|
74
|
+
type: import("vue").PropType<(value: any) => any>;
|
75
|
+
};
|
76
|
+
"v-model": {
|
77
|
+
type: import("vue").PropType<any>;
|
78
|
+
required: false;
|
79
|
+
};
|
80
|
+
modelValue: {
|
81
|
+
type: import("vue").PropType<any>;
|
82
|
+
required: false;
|
83
|
+
};
|
84
|
+
name: <TName extends string>(n?: TName) => { [key in import("../DefineVueTypings").VModelEmitsInJsxElement<TName>]: {
|
85
|
+
type: import("vue").PropType<(value: any) => any>;
|
86
|
+
}; } & { [key_1 in import("../DefineVueTypings").VModelKeyNameInJsxElement<TName>]: {
|
87
|
+
type: import("vue").PropType<any>;
|
88
|
+
required: false;
|
89
|
+
}; } & { [key_2 in import("../DefineVueTypings").VModelKeyNameInProps<TName>]: {
|
90
|
+
type: import("vue").PropType<any>;
|
91
|
+
required: false;
|
92
|
+
}; } & {
|
93
|
+
require(): import("../DefineVueTypings").DefinePropModelRequire<TName, any, {
|
94
|
+
"onUpdate:modelValue": {
|
95
|
+
type: import("vue").PropType<(value: any) => any>;
|
96
|
+
};
|
97
|
+
} & {
|
98
|
+
"v-model": {
|
99
|
+
type: import("vue").PropType<any>;
|
100
|
+
required: false;
|
101
|
+
};
|
102
|
+
} & {
|
103
|
+
modelValue: {
|
104
|
+
type: import("vue").PropType<any>;
|
105
|
+
required: false;
|
106
|
+
};
|
107
|
+
}>;
|
108
|
+
defaultValue(value?: any): import("../DefineVueTypings").DefinePropModelDefaultValue<TName, any, {
|
109
|
+
"onUpdate:modelValue": {
|
110
|
+
type: import("vue").PropType<(value: any) => any>;
|
111
|
+
};
|
112
|
+
} & {
|
113
|
+
"v-model": {
|
114
|
+
type: import("vue").PropType<any>;
|
115
|
+
required: false;
|
116
|
+
};
|
117
|
+
} & {
|
118
|
+
modelValue: {
|
119
|
+
type: import("vue").PropType<any>;
|
120
|
+
required: false;
|
121
|
+
};
|
122
|
+
}, false>;
|
123
|
+
doc$(description?: string): import("../DefineVueTypings").DefinePropModelDoc<TName, any, {
|
124
|
+
"onUpdate:modelValue": {
|
125
|
+
type: import("vue").PropType<(value: any) => any>;
|
126
|
+
};
|
127
|
+
} & {
|
128
|
+
"v-model": {
|
129
|
+
type: import("vue").PropType<any>;
|
130
|
+
required: false;
|
131
|
+
};
|
132
|
+
} & {
|
133
|
+
modelValue: {
|
134
|
+
type: import("vue").PropType<any>;
|
135
|
+
required: false;
|
136
|
+
};
|
137
|
+
}>;
|
138
|
+
};
|
139
|
+
}>> & {
|
140
|
+
"onUpdate:modelValue"?: (value: any) => any;
|
141
|
+
onDoc$?: (description?: string) => any;
|
142
|
+
onOnItemSelected?: (item: any) => any;
|
143
|
+
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
144
|
+
onItemSelected: (item: any) => void;
|
145
|
+
doc$(description?: string): {
|
146
|
+
onItemSelected: (item: any) => void;
|
147
|
+
};
|
148
|
+
"update:modelValue": (value: any) => true;
|
149
|
+
}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
150
|
+
rules: {
|
151
|
+
type: import("vue").PropType<ValidationRule[]>;
|
152
|
+
required: false;
|
153
|
+
};
|
154
|
+
"v-slots": import("vue").Prop<{
|
155
|
+
default?: import("../DefineVueTypings").Slot<any[]>;
|
156
|
+
} & OMultiTextInputSlot>;
|
157
|
+
autofocus: {
|
158
|
+
type: import("vue").PropType<boolean>;
|
159
|
+
} & {
|
160
|
+
type: import("vue").PropType<boolean>;
|
161
|
+
};
|
162
|
+
"on-configure-extensions": {
|
163
|
+
type: import("vue").PropType<(extensions: Array<RichTextEditorExtension>, registrationResolver?: (registration: RichTextEditorExtensionRegistration) => RichTextEditorExtension, extensionHelper?: IRichTextEditorExtensionHelper) => Array<RichTextEditorExtension>>;
|
164
|
+
};
|
165
|
+
onConfigureExtensions: {
|
166
|
+
type: import("vue").PropType<(extensions: Array<RichTextEditorExtension>, registrationResolver?: (registration: RichTextEditorExtensionRegistration) => RichTextEditorExtension, extensionHelper?: IRichTextEditorExtensionHelper) => Array<RichTextEditorExtension>>;
|
167
|
+
};
|
168
|
+
"rich-text-settings": {
|
169
|
+
type: import("vue").PropType<OmitProperties<IRichTextEditor, "initialContent" | "onContentChange">>;
|
170
|
+
};
|
171
|
+
richTextSettings: {
|
172
|
+
type: import("vue").PropType<OmitProperties<IRichTextEditor, "initialContent" | "onContentChange">>;
|
173
|
+
};
|
174
|
+
"default-value-item": {
|
175
|
+
type: import("vue").PropType<any>;
|
176
|
+
};
|
177
|
+
defaultValueItem: {
|
178
|
+
type: import("vue").PropType<any>;
|
179
|
+
};
|
180
|
+
itemValue: {
|
181
|
+
type: import("vue").PropType<any>;
|
182
|
+
};
|
183
|
+
itemTitle: {
|
184
|
+
type: import("vue").PropType<string | ((item: any) => string)>;
|
185
|
+
};
|
186
|
+
items: {
|
187
|
+
type: import("vue").PropType<any[]>;
|
188
|
+
} & {
|
189
|
+
type: import("vue").PropType<any[]>;
|
190
|
+
};
|
191
|
+
disabled: {
|
192
|
+
type: import("vue").PropType<boolean>;
|
193
|
+
required: false;
|
194
|
+
};
|
195
|
+
label: {
|
196
|
+
type: import("vue").PropType<string>;
|
197
|
+
};
|
198
|
+
mode: {
|
199
|
+
type: import("vue").PropType<"textarea" | "textfield" | "rtf">;
|
200
|
+
required: false;
|
201
|
+
};
|
202
|
+
marker: {
|
203
|
+
type: import("vue").PropType<string>;
|
204
|
+
required: true;
|
205
|
+
};
|
206
|
+
"onUpdate:modelValue": {
|
207
|
+
type: import("vue").PropType<(value: any) => any>;
|
208
|
+
};
|
209
|
+
"v-model": {
|
210
|
+
type: import("vue").PropType<any>;
|
211
|
+
required: false;
|
212
|
+
};
|
213
|
+
modelValue: {
|
214
|
+
type: import("vue").PropType<any>;
|
215
|
+
required: false;
|
216
|
+
};
|
217
|
+
name: <TName extends string>(n?: TName) => { [key in import("../DefineVueTypings").VModelEmitsInJsxElement<TName>]: {
|
218
|
+
type: import("vue").PropType<(value: any) => any>;
|
219
|
+
}; } & { [key_1 in import("../DefineVueTypings").VModelKeyNameInJsxElement<TName>]: {
|
220
|
+
type: import("vue").PropType<any>;
|
221
|
+
required: false;
|
222
|
+
}; } & { [key_2 in import("../DefineVueTypings").VModelKeyNameInProps<TName>]: {
|
223
|
+
type: import("vue").PropType<any>;
|
224
|
+
required: false;
|
225
|
+
}; } & {
|
226
|
+
require(): import("../DefineVueTypings").DefinePropModelRequire<TName, any, {
|
227
|
+
"onUpdate:modelValue": {
|
228
|
+
type: import("vue").PropType<(value: any) => any>;
|
229
|
+
};
|
230
|
+
} & {
|
231
|
+
"v-model": {
|
232
|
+
type: import("vue").PropType<any>;
|
233
|
+
required: false;
|
234
|
+
};
|
235
|
+
} & {
|
236
|
+
modelValue: {
|
237
|
+
type: import("vue").PropType<any>;
|
238
|
+
required: false;
|
239
|
+
};
|
240
|
+
}>;
|
241
|
+
defaultValue(value?: any): import("../DefineVueTypings").DefinePropModelDefaultValue<TName, any, {
|
242
|
+
"onUpdate:modelValue": {
|
243
|
+
type: import("vue").PropType<(value: any) => any>;
|
244
|
+
};
|
245
|
+
} & {
|
246
|
+
"v-model": {
|
247
|
+
type: import("vue").PropType<any>;
|
248
|
+
required: false;
|
249
|
+
};
|
250
|
+
} & {
|
251
|
+
modelValue: {
|
252
|
+
type: import("vue").PropType<any>;
|
253
|
+
required: false;
|
254
|
+
};
|
255
|
+
}, false>;
|
256
|
+
doc$(description?: string): import("../DefineVueTypings").DefinePropModelDoc<TName, any, {
|
257
|
+
"onUpdate:modelValue": {
|
258
|
+
type: import("vue").PropType<(value: any) => any>;
|
259
|
+
};
|
260
|
+
} & {
|
261
|
+
"v-model": {
|
262
|
+
type: import("vue").PropType<any>;
|
263
|
+
required: false;
|
264
|
+
};
|
265
|
+
} & {
|
266
|
+
modelValue: {
|
267
|
+
type: import("vue").PropType<any>;
|
268
|
+
required: false;
|
269
|
+
};
|
270
|
+
}>;
|
271
|
+
};
|
272
|
+
}>> & {
|
273
|
+
"onUpdate:modelValue"?: (value: any) => any;
|
274
|
+
onDoc$?: (description?: string) => any;
|
275
|
+
onOnItemSelected?: (item: any) => any;
|
276
|
+
}, {}, true, {}, {}, {
|
277
|
+
P: {};
|
278
|
+
B: {};
|
279
|
+
D: {};
|
280
|
+
C: {};
|
281
|
+
M: {};
|
282
|
+
Defaults: {};
|
283
|
+
}, Readonly<import("vue").ExtractPropTypes<{
|
284
|
+
rules: {
|
285
|
+
type: import("vue").PropType<ValidationRule[]>;
|
286
|
+
required: false;
|
287
|
+
};
|
288
|
+
"v-slots": import("vue").Prop<{
|
289
|
+
default?: import("../DefineVueTypings").Slot<any[]>;
|
290
|
+
} & OMultiTextInputSlot>;
|
291
|
+
autofocus: {
|
292
|
+
type: import("vue").PropType<boolean>;
|
293
|
+
} & {
|
294
|
+
type: import("vue").PropType<boolean>;
|
295
|
+
};
|
296
|
+
"on-configure-extensions": {
|
297
|
+
type: import("vue").PropType<(extensions: Array<RichTextEditorExtension>, registrationResolver?: (registration: RichTextEditorExtensionRegistration) => RichTextEditorExtension, extensionHelper?: IRichTextEditorExtensionHelper) => Array<RichTextEditorExtension>>;
|
298
|
+
};
|
299
|
+
onConfigureExtensions: {
|
300
|
+
type: import("vue").PropType<(extensions: Array<RichTextEditorExtension>, registrationResolver?: (registration: RichTextEditorExtensionRegistration) => RichTextEditorExtension, extensionHelper?: IRichTextEditorExtensionHelper) => Array<RichTextEditorExtension>>;
|
301
|
+
};
|
302
|
+
"rich-text-settings": {
|
303
|
+
type: import("vue").PropType<OmitProperties<IRichTextEditor, "initialContent" | "onContentChange">>;
|
304
|
+
};
|
305
|
+
richTextSettings: {
|
306
|
+
type: import("vue").PropType<OmitProperties<IRichTextEditor, "initialContent" | "onContentChange">>;
|
307
|
+
};
|
308
|
+
"default-value-item": {
|
309
|
+
type: import("vue").PropType<any>;
|
310
|
+
};
|
311
|
+
defaultValueItem: {
|
312
|
+
type: import("vue").PropType<any>;
|
313
|
+
};
|
314
|
+
itemValue: {
|
315
|
+
type: import("vue").PropType<any>;
|
316
|
+
};
|
317
|
+
itemTitle: {
|
318
|
+
type: import("vue").PropType<string | ((item: any) => string)>;
|
319
|
+
};
|
320
|
+
items: {
|
321
|
+
type: import("vue").PropType<any[]>;
|
322
|
+
} & {
|
323
|
+
type: import("vue").PropType<any[]>;
|
324
|
+
};
|
325
|
+
disabled: {
|
326
|
+
type: import("vue").PropType<boolean>;
|
327
|
+
required: false;
|
328
|
+
};
|
329
|
+
label: {
|
330
|
+
type: import("vue").PropType<string>;
|
331
|
+
};
|
332
|
+
mode: {
|
333
|
+
type: import("vue").PropType<"textarea" | "textfield" | "rtf">;
|
334
|
+
required: false;
|
335
|
+
};
|
336
|
+
marker: {
|
337
|
+
type: import("vue").PropType<string>;
|
338
|
+
required: true;
|
339
|
+
};
|
340
|
+
"onUpdate:modelValue": {
|
341
|
+
type: import("vue").PropType<(value: any) => any>;
|
342
|
+
};
|
343
|
+
"v-model": {
|
344
|
+
type: import("vue").PropType<any>;
|
345
|
+
required: false;
|
346
|
+
};
|
347
|
+
modelValue: {
|
348
|
+
type: import("vue").PropType<any>;
|
349
|
+
required: false;
|
350
|
+
};
|
351
|
+
name: <TName extends string>(n?: TName) => { [key in import("../DefineVueTypings").VModelEmitsInJsxElement<TName>]: {
|
352
|
+
type: import("vue").PropType<(value: any) => any>;
|
353
|
+
}; } & { [key_1 in import("../DefineVueTypings").VModelKeyNameInJsxElement<TName>]: {
|
354
|
+
type: import("vue").PropType<any>;
|
355
|
+
required: false;
|
356
|
+
}; } & { [key_2 in import("../DefineVueTypings").VModelKeyNameInProps<TName>]: {
|
357
|
+
type: import("vue").PropType<any>;
|
358
|
+
required: false;
|
359
|
+
}; } & {
|
360
|
+
require(): import("../DefineVueTypings").DefinePropModelRequire<TName, any, {
|
361
|
+
"onUpdate:modelValue": {
|
362
|
+
type: import("vue").PropType<(value: any) => any>;
|
363
|
+
};
|
364
|
+
} & {
|
365
|
+
"v-model": {
|
366
|
+
type: import("vue").PropType<any>;
|
367
|
+
required: false;
|
368
|
+
};
|
369
|
+
} & {
|
370
|
+
modelValue: {
|
371
|
+
type: import("vue").PropType<any>;
|
372
|
+
required: false;
|
373
|
+
};
|
374
|
+
}>;
|
375
|
+
defaultValue(value?: any): import("../DefineVueTypings").DefinePropModelDefaultValue<TName, any, {
|
376
|
+
"onUpdate:modelValue": {
|
377
|
+
type: import("vue").PropType<(value: any) => any>;
|
378
|
+
};
|
379
|
+
} & {
|
380
|
+
"v-model": {
|
381
|
+
type: import("vue").PropType<any>;
|
382
|
+
required: false;
|
383
|
+
};
|
384
|
+
} & {
|
385
|
+
modelValue: {
|
386
|
+
type: import("vue").PropType<any>;
|
387
|
+
required: false;
|
388
|
+
};
|
389
|
+
}, false>;
|
390
|
+
doc$(description?: string): import("../DefineVueTypings").DefinePropModelDoc<TName, any, {
|
391
|
+
"onUpdate:modelValue": {
|
392
|
+
type: import("vue").PropType<(value: any) => any>;
|
393
|
+
};
|
394
|
+
} & {
|
395
|
+
"v-model": {
|
396
|
+
type: import("vue").PropType<any>;
|
397
|
+
required: false;
|
398
|
+
};
|
399
|
+
} & {
|
400
|
+
modelValue: {
|
401
|
+
type: import("vue").PropType<any>;
|
402
|
+
required: false;
|
403
|
+
};
|
404
|
+
}>;
|
405
|
+
};
|
406
|
+
}>> & {
|
407
|
+
"onUpdate:modelValue"?: (value: any) => any;
|
408
|
+
onDoc$?: (description?: string) => any;
|
409
|
+
onOnItemSelected?: (item: any) => any;
|
410
|
+
}, () => JSX.Element, {}, {}, {}, {}>;
|
411
|
+
__isFragment?: never;
|
412
|
+
__isTeleport?: never;
|
413
|
+
__isSuspense?: never;
|
414
|
+
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
415
|
+
rules: {
|
416
|
+
type: import("vue").PropType<ValidationRule[]>;
|
417
|
+
required: false;
|
418
|
+
};
|
419
|
+
"v-slots": import("vue").Prop<{
|
420
|
+
default?: import("../DefineVueTypings").Slot<any[]>;
|
421
|
+
} & OMultiTextInputSlot>;
|
422
|
+
autofocus: {
|
423
|
+
type: import("vue").PropType<boolean>;
|
424
|
+
} & {
|
425
|
+
type: import("vue").PropType<boolean>;
|
426
|
+
};
|
427
|
+
"on-configure-extensions": {
|
428
|
+
type: import("vue").PropType<(extensions: Array<RichTextEditorExtension>, registrationResolver?: (registration: RichTextEditorExtensionRegistration) => RichTextEditorExtension, extensionHelper?: IRichTextEditorExtensionHelper) => Array<RichTextEditorExtension>>;
|
429
|
+
};
|
430
|
+
onConfigureExtensions: {
|
431
|
+
type: import("vue").PropType<(extensions: Array<RichTextEditorExtension>, registrationResolver?: (registration: RichTextEditorExtensionRegistration) => RichTextEditorExtension, extensionHelper?: IRichTextEditorExtensionHelper) => Array<RichTextEditorExtension>>;
|
432
|
+
};
|
433
|
+
"rich-text-settings": {
|
434
|
+
type: import("vue").PropType<OmitProperties<IRichTextEditor, "initialContent" | "onContentChange">>;
|
435
|
+
};
|
436
|
+
richTextSettings: {
|
437
|
+
type: import("vue").PropType<OmitProperties<IRichTextEditor, "initialContent" | "onContentChange">>;
|
438
|
+
};
|
439
|
+
"default-value-item": {
|
440
|
+
type: import("vue").PropType<any>;
|
441
|
+
};
|
442
|
+
defaultValueItem: {
|
443
|
+
type: import("vue").PropType<any>;
|
444
|
+
};
|
445
|
+
itemValue: {
|
446
|
+
type: import("vue").PropType<any>;
|
447
|
+
};
|
448
|
+
itemTitle: {
|
449
|
+
type: import("vue").PropType<string | ((item: any) => string)>;
|
450
|
+
};
|
451
|
+
items: {
|
452
|
+
type: import("vue").PropType<any[]>;
|
453
|
+
} & {
|
454
|
+
type: import("vue").PropType<any[]>;
|
455
|
+
};
|
456
|
+
disabled: {
|
457
|
+
type: import("vue").PropType<boolean>;
|
458
|
+
required: false;
|
459
|
+
};
|
460
|
+
label: {
|
461
|
+
type: import("vue").PropType<string>;
|
462
|
+
};
|
463
|
+
mode: {
|
464
|
+
type: import("vue").PropType<"textarea" | "textfield" | "rtf">;
|
465
|
+
required: false;
|
466
|
+
};
|
467
|
+
marker: {
|
468
|
+
type: import("vue").PropType<string>;
|
469
|
+
required: true;
|
470
|
+
};
|
471
|
+
"onUpdate:modelValue": {
|
472
|
+
type: import("vue").PropType<(value: any) => any>;
|
473
|
+
};
|
474
|
+
"v-model": {
|
475
|
+
type: import("vue").PropType<any>;
|
476
|
+
required: false;
|
477
|
+
};
|
478
|
+
modelValue: {
|
479
|
+
type: import("vue").PropType<any>;
|
480
|
+
required: false;
|
481
|
+
};
|
482
|
+
name: <TName extends string>(n?: TName) => { [key in import("../DefineVueTypings").VModelEmitsInJsxElement<TName>]: {
|
483
|
+
type: import("vue").PropType<(value: any) => any>;
|
484
|
+
}; } & { [key_1 in import("../DefineVueTypings").VModelKeyNameInJsxElement<TName>]: {
|
485
|
+
type: import("vue").PropType<any>;
|
486
|
+
required: false;
|
487
|
+
}; } & { [key_2 in import("../DefineVueTypings").VModelKeyNameInProps<TName>]: {
|
488
|
+
type: import("vue").PropType<any>;
|
489
|
+
required: false;
|
490
|
+
}; } & {
|
491
|
+
require(): import("../DefineVueTypings").DefinePropModelRequire<TName, any, {
|
492
|
+
"onUpdate:modelValue": {
|
493
|
+
type: import("vue").PropType<(value: any) => any>;
|
494
|
+
};
|
495
|
+
} & {
|
496
|
+
"v-model": {
|
497
|
+
type: import("vue").PropType<any>;
|
498
|
+
required: false;
|
499
|
+
};
|
500
|
+
} & {
|
501
|
+
modelValue: {
|
502
|
+
type: import("vue").PropType<any>;
|
503
|
+
required: false;
|
504
|
+
};
|
505
|
+
}>;
|
506
|
+
defaultValue(value?: any): import("../DefineVueTypings").DefinePropModelDefaultValue<TName, any, {
|
507
|
+
"onUpdate:modelValue": {
|
508
|
+
type: import("vue").PropType<(value: any) => any>;
|
509
|
+
};
|
510
|
+
} & {
|
511
|
+
"v-model": {
|
512
|
+
type: import("vue").PropType<any>;
|
513
|
+
required: false;
|
514
|
+
};
|
515
|
+
} & {
|
516
|
+
modelValue: {
|
517
|
+
type: import("vue").PropType<any>;
|
518
|
+
required: false;
|
519
|
+
};
|
520
|
+
}, false>;
|
521
|
+
doc$(description?: string): import("../DefineVueTypings").DefinePropModelDoc<TName, any, {
|
522
|
+
"onUpdate:modelValue": {
|
523
|
+
type: import("vue").PropType<(value: any) => any>;
|
524
|
+
};
|
525
|
+
} & {
|
526
|
+
"v-model": {
|
527
|
+
type: import("vue").PropType<any>;
|
528
|
+
required: false;
|
529
|
+
};
|
530
|
+
} & {
|
531
|
+
modelValue: {
|
532
|
+
type: import("vue").PropType<any>;
|
533
|
+
required: false;
|
534
|
+
};
|
535
|
+
}>;
|
536
|
+
};
|
537
|
+
}>> & {
|
538
|
+
"onUpdate:modelValue"?: (value: any) => any;
|
539
|
+
onDoc$?: (description?: string) => any;
|
540
|
+
onOnItemSelected?: (item: any) => any;
|
541
|
+
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
542
|
+
onItemSelected: (item: any) => void;
|
543
|
+
doc$(description?: string): {
|
544
|
+
onItemSelected: (item: any) => void;
|
545
|
+
};
|
546
|
+
"update:modelValue": (value: any) => true;
|
547
|
+
}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
548
|
+
propsDefinition: Omit<Readonly<{
|
549
|
+
marker: string;
|
550
|
+
} & {
|
551
|
+
mode?: "textarea" | "textfield" | "rtf";
|
552
|
+
label?: string;
|
553
|
+
name?: {
|
554
|
+
[x: `onUpdate:${string}`]: {
|
555
|
+
type: import("vue").PropType<(value: any) => any>;
|
556
|
+
};
|
557
|
+
} & {
|
558
|
+
[x: `v-model:${string}`]: {
|
559
|
+
type: import("vue").PropType<any>;
|
560
|
+
required: false;
|
561
|
+
};
|
562
|
+
} & {
|
563
|
+
[x: string]: {
|
564
|
+
type: import("vue").PropType<any>;
|
565
|
+
required: false;
|
566
|
+
};
|
567
|
+
} & {
|
568
|
+
require(): import("../DefineVueTypings").DefinePropModelRequire<string, any, {
|
569
|
+
"onUpdate:modelValue": {
|
570
|
+
type: import("vue").PropType<(value: any) => any>;
|
571
|
+
};
|
572
|
+
} & {
|
573
|
+
"v-model": {
|
574
|
+
type: import("vue").PropType<any>;
|
575
|
+
required: false;
|
576
|
+
};
|
577
|
+
} & {
|
578
|
+
modelValue: {
|
579
|
+
type: import("vue").PropType<any>;
|
580
|
+
required: false;
|
581
|
+
};
|
582
|
+
}>;
|
583
|
+
defaultValue(value?: any): import("../DefineVueTypings").DefinePropModelDefaultValue<string, any, {
|
584
|
+
"onUpdate:modelValue": {
|
585
|
+
type: import("vue").PropType<(value: any) => any>;
|
586
|
+
};
|
587
|
+
} & {
|
588
|
+
"v-model": {
|
589
|
+
type: import("vue").PropType<any>;
|
590
|
+
required: false;
|
591
|
+
};
|
592
|
+
} & {
|
593
|
+
modelValue: {
|
594
|
+
type: import("vue").PropType<any>;
|
595
|
+
required: false;
|
596
|
+
};
|
597
|
+
}, false>;
|
598
|
+
doc$(description?: string): import("../DefineVueTypings").DefinePropModelDoc<string, any, {
|
599
|
+
"onUpdate:modelValue": {
|
600
|
+
type: import("vue").PropType<(value: any) => any>;
|
601
|
+
};
|
602
|
+
} & {
|
603
|
+
"v-model": {
|
604
|
+
type: import("vue").PropType<any>;
|
605
|
+
required: false;
|
606
|
+
};
|
607
|
+
} & {
|
608
|
+
modelValue: {
|
609
|
+
type: import("vue").PropType<any>;
|
610
|
+
required: false;
|
611
|
+
};
|
612
|
+
}>;
|
613
|
+
};
|
614
|
+
disabled?: boolean;
|
615
|
+
"onUpdate:modelValue"?: (value: any) => any;
|
616
|
+
"v-model"?: any;
|
617
|
+
modelValue?: any;
|
618
|
+
items?: any[];
|
619
|
+
"v-slots"?: {
|
620
|
+
default?: import("../DefineVueTypings").Slot<any[]>;
|
621
|
+
} & OMultiTextInputSlot;
|
622
|
+
autofocus?: boolean;
|
623
|
+
rules?: ValidationRule[];
|
624
|
+
onConfigureExtensions?: (extensions: Array<RichTextEditorExtension>, registrationResolver?: (registration: RichTextEditorExtensionRegistration) => RichTextEditorExtension, extensionHelper?: IRichTextEditorExtensionHelper) => Array<RichTextEditorExtension>;
|
625
|
+
richTextSettings?: OmitProperties<IRichTextEditor, "initialContent" | "onContentChange">;
|
626
|
+
"rich-text-settings"?: OmitProperties<IRichTextEditor, "initialContent" | "onContentChange">;
|
627
|
+
itemTitle?: string | ((item: any) => string);
|
628
|
+
itemValue?: any;
|
629
|
+
"on-configure-extensions"?: (extensions: Array<RichTextEditorExtension>, registrationResolver?: (registration: RichTextEditorExtensionRegistration) => RichTextEditorExtension, extensionHelper?: IRichTextEditorExtensionHelper) => Array<RichTextEditorExtension>;
|
630
|
+
defaultValueItem?: any;
|
631
|
+
"default-value-item"?: any;
|
632
|
+
}>, "onUpdate:modelValue" | "onDoc$" | "onOnItemSelected"> & {
|
633
|
+
"onUpdate:modelValue"?: (value: any) => any;
|
634
|
+
onDoc$?: (description?: string) => any;
|
635
|
+
onOnItemSelected?: (item: any) => any;
|
636
|
+
};
|
637
|
+
};
|
638
|
+
export default _default;
|
@@ -65,6 +65,7 @@ import wcc8b990d01ddc45ab930b4409fc406435 from './ux/markdown/MarkdownRenderer';
|
|
65
65
|
import wce9bb3179713943d787e139cedf749838 from './ux/mediapickerimage/MediaPickerImage';
|
66
66
|
import wc2e8004b49c8d44dd8edb56ce884c2b57 from './ux/monaco/MonacoEditor';
|
67
67
|
import wce95c4611a45548a79e4c3984d8e5228d from './ux/multilingualinput/MultilingualInput';
|
68
|
+
import wccdadf45bd7774609a713c4e1d6862783 from './ux/multitextinput/MultiTextInput';
|
68
69
|
import wc7f06e68f94904b48b827b23acd148bec from './ux/optionpicker/OptionPicker';
|
69
70
|
import wcfb67bd4d1cc24073ab123c822d78ea17 from './ux/permissioninput/PermissionInput';
|
70
71
|
import wc1a58948a606a42078da3fb919cc4f7e6 from './ux/presetupwizard/PreSetupWizard';
|
@@ -440,6 +441,7 @@ declare global {
|
|
440
441
|
"omfx-media-picker-image": typeof wce9bb3179713943d787e139cedf749838.propsDefinition & Omit<VueComponentBaseProps, keyof typeof wce9bb3179713943d787e139cedf749838.propsDefinition>;
|
441
442
|
"monaco-editor": typeof wc2e8004b49c8d44dd8edb56ce884c2b57.propsDefinition & Omit<VueComponentBaseProps, keyof typeof wc2e8004b49c8d44dd8edb56ce884c2b57.propsDefinition>;
|
442
443
|
"omfx-multilingual-input": typeof wce95c4611a45548a79e4c3984d8e5228d.propsDefinition & Omit<VueComponentBaseProps, keyof typeof wce95c4611a45548a79e4c3984d8e5228d.propsDefinition>;
|
444
|
+
"omfx-multi-text-input": typeof wccdadf45bd7774609a713c4e1d6862783.propsDefinition & Omit<VueComponentBaseProps, keyof typeof wccdadf45bd7774609a713c4e1d6862783.propsDefinition>;
|
443
445
|
"omfx-option-picker": typeof wc7f06e68f94904b48b827b23acd148bec.propsDefinition & Omit<VueComponentBaseProps, keyof typeof wc7f06e68f94904b48b827b23acd148bec.propsDefinition>;
|
444
446
|
"omfx-permission-input": typeof wcfb67bd4d1cc24073ab123c822d78ea17.propsDefinition & Omit<VueComponentBaseProps, keyof typeof wcfb67bd4d1cc24073ab123c822d78ea17.propsDefinition>;
|
445
447
|
"omfx-presetup-wizard": typeof wc1a58948a606a42078da3fb919cc4f7e6.propsDefinition & Omit<VueComponentBaseProps, keyof typeof wc1a58948a606a42078da3fb919cc4f7e6.propsDefinition>;
|
@@ -1077,6 +1079,11 @@ declare global {
|
|
1077
1079
|
$props: typeof wce95c4611a45548a79e4c3984d8e5228d.propsDefinition & Omit<VueComponentBaseProps, keyof typeof wce95c4611a45548a79e4c3984d8e5228d.propsDefinition>;
|
1078
1080
|
};
|
1079
1081
|
};
|
1082
|
+
"MultiTextInput": {
|
1083
|
+
new (...args: any[]): {
|
1084
|
+
$props: typeof wccdadf45bd7774609a713c4e1d6862783.propsDefinition & Omit<VueComponentBaseProps, keyof typeof wccdadf45bd7774609a713c4e1d6862783.propsDefinition>;
|
1085
|
+
};
|
1086
|
+
};
|
1080
1087
|
"OptionPicker": {
|
1081
1088
|
new (...args: any[]): {
|
1082
1089
|
$props: typeof wc7f06e68f94904b48b827b23acd148bec.propsDefinition & Omit<VueComponentBaseProps, keyof typeof wc7f06e68f94904b48b827b23acd148bec.propsDefinition>;
|
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.73-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.73-dev",
|
24
24
|
"@microsoft/signalr": "6.0.1",
|
25
25
|
"broadcast-channel": "4.8.0",
|
26
26
|
"dayjs": "1.10.7",
|