@omnia/fx 8.0.86-dev → 8.0.87-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.
@@ -0,0 +1,6 @@
1
+ import { IIcon } from "@omnia/fx-models";
2
+ export interface MultiTextInputItem<TItem> {
3
+ title: string;
4
+ icon: IIcon;
5
+ item?: TItem;
6
+ }
@@ -51,6 +51,7 @@ export * from "./SharePointVideoSettingsStyles";
51
51
  export * from "./AppLayoutPlaceHolder";
52
52
  export * from "./DataTable";
53
53
  export * from "./Directives";
54
+ export * from "./MultiTextInputItem";
54
55
  export { ValidationOnDefinitions, type IValidationRuleBuilder, type IValidator, type ValidationRule, type ValidationResult } from "./Validation";
55
56
  export type { ValidationOnTypes } from "./Validation";
56
57
  export * from "./SpecialUserConfiguration";
@@ -1,18 +1,14 @@
1
- import { OmitProperties } from "../../models";
2
- import { ValidationRule } from "../models";
3
- import { IRichTextEditor } from "../richtexteditor";
4
- import { VNodeChild } from "vue";
5
- export interface IActionItem {
6
- selectItem: (item: any) => void;
7
- enableGridMode: () => void;
8
- }
9
- export interface OMultiTextInputSlot {
10
- appendItem?: (item: any) => VNodeChild;
11
- prependItem?: (item: any) => VNodeChild;
12
- items?: (items: Array<any>, ctx: IActionItem) => VNodeChild;
13
- }
1
+ import { MultiTextInputItem, ValidationRule } from "../models";
14
2
  declare const _default: {
15
3
  new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
4
+ "is-append-icon": {
5
+ type: import("vue").PropType<boolean>;
6
+ required: false;
7
+ };
8
+ isAppendIcon: {
9
+ type: import("vue").PropType<boolean>;
10
+ required: false;
11
+ };
16
12
  rules: {
17
13
  type: import("vue").PropType<ValidationRule[]>;
18
14
  required: false;
@@ -20,26 +16,19 @@ declare const _default: {
20
16
  type: import("vue").PropType<ValidationRule[]>;
21
17
  required: false;
22
18
  };
23
- "v-slots": import("vue").Prop<{
24
- default?: import("../DefineVueTypings").Slot<any[]>;
25
- } & OMultiTextInputSlot>;
19
+ "hide-edit-grid": {
20
+ type: import("vue").PropType<boolean>;
21
+ required: false;
22
+ };
23
+ hideEditGrid: {
24
+ type: import("vue").PropType<boolean>;
25
+ required: false;
26
+ };
26
27
  autofocus: {
27
28
  type: import("vue").PropType<boolean>;
28
29
  } & {
29
30
  type: import("vue").PropType<boolean>;
30
31
  };
31
- "on-configure-extensions": {
32
- type: import("vue").PropType<any>;
33
- };
34
- onConfigureExtensions: {
35
- type: import("vue").PropType<any>;
36
- };
37
- "rich-text-settings": {
38
- type: import("vue").PropType<OmitProperties<IRichTextEditor, "initialContent" | "onContentChange">>;
39
- };
40
- richTextSettings: {
41
- type: import("vue").PropType<OmitProperties<IRichTextEditor, "initialContent" | "onContentChange">>;
42
- };
43
32
  "default-value-item": {
44
33
  type: import("vue").PropType<any>;
45
34
  };
@@ -52,16 +41,10 @@ declare const _default: {
52
41
  itemValue: {
53
42
  type: import("vue").PropType<any>;
54
43
  };
55
- "item-title": {
56
- type: import("vue").PropType<string | ((item: any) => string)>;
57
- };
58
- itemTitle: {
59
- type: import("vue").PropType<string | ((item: any) => string)>;
60
- };
61
44
  items: {
62
- type: import("vue").PropType<any[]>;
45
+ type: import("vue").PropType<MultiTextInputItem<any>[]>;
63
46
  } & {
64
- type: import("vue").PropType<any[]>;
47
+ type: import("vue").PropType<MultiTextInputItem<any>[]>;
65
48
  };
66
49
  disabled: {
67
50
  type: import("vue").PropType<boolean>;
@@ -76,78 +59,74 @@ declare const _default: {
76
59
  type: import("vue").PropType<string>;
77
60
  };
78
61
  mode: {
79
- type: import("vue").PropType<"textarea" | "textfield" | "rtf">;
62
+ type: import("vue").PropType<"textarea" | "textfield">;
80
63
  required: false;
81
64
  } & {
82
- type: import("vue").PropType<"textarea" | "textfield" | "rtf">;
65
+ type: import("vue").PropType<"textarea" | "textfield">;
83
66
  required: false;
84
67
  };
85
- marker: {
86
- type: import("vue").PropType<string>;
87
- required: true;
88
- };
89
68
  "onUpdate:modelValue": {
90
- type: import("vue").PropType<(value: any) => any>;
69
+ type: import("vue").PropType<(value: MultiTextInputItem<any>) => any>;
91
70
  };
92
71
  "v-model": {
93
- type: import("vue").PropType<any>;
72
+ type: import("vue").PropType<MultiTextInputItem<any>>;
94
73
  required: false;
95
74
  };
96
75
  modelValue: {
97
- type: import("vue").PropType<any>;
76
+ type: import("vue").PropType<MultiTextInputItem<any>>;
98
77
  required: false;
99
78
  };
100
79
  name: <TName extends string>(n?: TName) => { [key in import("../DefineVueTypings").VModelEmitsInJsxElement<TName>]: {
101
- type: import("vue").PropType<(value: any) => any>;
80
+ type: import("vue").PropType<(value: MultiTextInputItem<any>) => any>;
102
81
  }; } & { [key_1 in import("../DefineVueTypings").VModelKeyNameInJsxElement<TName>]: {
103
- type: import("vue").PropType<any>;
82
+ type: import("vue").PropType<MultiTextInputItem<any>>;
104
83
  required: false;
105
84
  }; } & { [key_2 in import("../DefineVueTypings").VModelKeyNameInProps<TName>]: {
106
- type: import("vue").PropType<any>;
85
+ type: import("vue").PropType<MultiTextInputItem<any>>;
107
86
  required: false;
108
87
  }; } & {
109
- require(): import("../DefineVueTypings").DefinePropModelRequire<TName, any, {
88
+ require(): import("../DefineVueTypings").DefinePropModelRequire<TName, MultiTextInputItem<any>, {
110
89
  "onUpdate:modelValue": {
111
- type: import("vue").PropType<(value: any) => any>;
90
+ type: import("vue").PropType<(value: MultiTextInputItem<any>) => any>;
112
91
  };
113
92
  } & {
114
93
  "v-model": {
115
- type: import("vue").PropType<any>;
94
+ type: import("vue").PropType<MultiTextInputItem<any>>;
116
95
  required: false;
117
96
  };
118
97
  } & {
119
98
  modelValue: {
120
- type: import("vue").PropType<any>;
99
+ type: import("vue").PropType<MultiTextInputItem<any>>;
121
100
  required: false;
122
101
  };
123
102
  }>;
124
- defaultValue(value?: any): import("../DefineVueTypings").DefinePropModelDefaultValue<TName, any, {
103
+ defaultValue(value?: MultiTextInputItem<any>): import("../DefineVueTypings").DefinePropModelDefaultValue<TName, MultiTextInputItem<any>, {
125
104
  "onUpdate:modelValue": {
126
- type: import("vue").PropType<(value: any) => any>;
105
+ type: import("vue").PropType<(value: MultiTextInputItem<any>) => any>;
127
106
  };
128
107
  } & {
129
108
  "v-model": {
130
- type: import("vue").PropType<any>;
109
+ type: import("vue").PropType<MultiTextInputItem<any>>;
131
110
  required: false;
132
111
  };
133
112
  } & {
134
113
  modelValue: {
135
- type: import("vue").PropType<any>;
114
+ type: import("vue").PropType<MultiTextInputItem<any>>;
136
115
  required: false;
137
116
  };
138
117
  }, false>;
139
- doc$(description?: string): import("../DefineVueTypings").DefinePropModelDoc<TName, any, {
118
+ doc$(description?: string): import("../DefineVueTypings").DefinePropModelDoc<TName, MultiTextInputItem<any>, {
140
119
  "onUpdate:modelValue": {
141
- type: import("vue").PropType<(value: any) => any>;
120
+ type: import("vue").PropType<(value: MultiTextInputItem<any>) => any>;
142
121
  };
143
122
  } & {
144
123
  "v-model": {
145
- type: import("vue").PropType<any>;
124
+ type: import("vue").PropType<MultiTextInputItem<any>>;
146
125
  required: false;
147
126
  };
148
127
  } & {
149
128
  modelValue: {
150
- type: import("vue").PropType<any>;
129
+ type: import("vue").PropType<MultiTextInputItem<any>>;
151
130
  required: false;
152
131
  };
153
132
  }>;
@@ -155,14 +134,22 @@ declare const _default: {
155
134
  }>> & {
156
135
  "onUpdate:modelValue"?: (value: any) => any;
157
136
  onDoc$?: (description?: string) => any;
158
- onOnItemSelected?: (item: any) => any;
137
+ onSelectItem?: (item: MultiTextInputItem<any>, index: number) => any;
159
138
  }, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
160
- onItemSelected: (item: any) => void;
139
+ selectItem: (item: MultiTextInputItem<any>, index: number) => void;
161
140
  doc$(description?: string): {
162
- onItemSelected: (item: any) => void;
141
+ selectItem: (item: MultiTextInputItem<any>, index: number) => void;
163
142
  };
164
143
  "update:modelValue": (value: any) => true;
165
144
  }, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
145
+ "is-append-icon": {
146
+ type: import("vue").PropType<boolean>;
147
+ required: false;
148
+ };
149
+ isAppendIcon: {
150
+ type: import("vue").PropType<boolean>;
151
+ required: false;
152
+ };
166
153
  rules: {
167
154
  type: import("vue").PropType<ValidationRule[]>;
168
155
  required: false;
@@ -170,26 +157,19 @@ declare const _default: {
170
157
  type: import("vue").PropType<ValidationRule[]>;
171
158
  required: false;
172
159
  };
173
- "v-slots": import("vue").Prop<{
174
- default?: import("../DefineVueTypings").Slot<any[]>;
175
- } & OMultiTextInputSlot>;
160
+ "hide-edit-grid": {
161
+ type: import("vue").PropType<boolean>;
162
+ required: false;
163
+ };
164
+ hideEditGrid: {
165
+ type: import("vue").PropType<boolean>;
166
+ required: false;
167
+ };
176
168
  autofocus: {
177
169
  type: import("vue").PropType<boolean>;
178
170
  } & {
179
171
  type: import("vue").PropType<boolean>;
180
172
  };
181
- "on-configure-extensions": {
182
- type: import("vue").PropType<any>;
183
- };
184
- onConfigureExtensions: {
185
- type: import("vue").PropType<any>;
186
- };
187
- "rich-text-settings": {
188
- type: import("vue").PropType<OmitProperties<IRichTextEditor, "initialContent" | "onContentChange">>;
189
- };
190
- richTextSettings: {
191
- type: import("vue").PropType<OmitProperties<IRichTextEditor, "initialContent" | "onContentChange">>;
192
- };
193
173
  "default-value-item": {
194
174
  type: import("vue").PropType<any>;
195
175
  };
@@ -202,16 +182,10 @@ declare const _default: {
202
182
  itemValue: {
203
183
  type: import("vue").PropType<any>;
204
184
  };
205
- "item-title": {
206
- type: import("vue").PropType<string | ((item: any) => string)>;
207
- };
208
- itemTitle: {
209
- type: import("vue").PropType<string | ((item: any) => string)>;
210
- };
211
185
  items: {
212
- type: import("vue").PropType<any[]>;
186
+ type: import("vue").PropType<MultiTextInputItem<any>[]>;
213
187
  } & {
214
- type: import("vue").PropType<any[]>;
188
+ type: import("vue").PropType<MultiTextInputItem<any>[]>;
215
189
  };
216
190
  disabled: {
217
191
  type: import("vue").PropType<boolean>;
@@ -226,78 +200,74 @@ declare const _default: {
226
200
  type: import("vue").PropType<string>;
227
201
  };
228
202
  mode: {
229
- type: import("vue").PropType<"textarea" | "textfield" | "rtf">;
203
+ type: import("vue").PropType<"textarea" | "textfield">;
230
204
  required: false;
231
205
  } & {
232
- type: import("vue").PropType<"textarea" | "textfield" | "rtf">;
206
+ type: import("vue").PropType<"textarea" | "textfield">;
233
207
  required: false;
234
208
  };
235
- marker: {
236
- type: import("vue").PropType<string>;
237
- required: true;
238
- };
239
209
  "onUpdate:modelValue": {
240
- type: import("vue").PropType<(value: any) => any>;
210
+ type: import("vue").PropType<(value: MultiTextInputItem<any>) => any>;
241
211
  };
242
212
  "v-model": {
243
- type: import("vue").PropType<any>;
213
+ type: import("vue").PropType<MultiTextInputItem<any>>;
244
214
  required: false;
245
215
  };
246
216
  modelValue: {
247
- type: import("vue").PropType<any>;
217
+ type: import("vue").PropType<MultiTextInputItem<any>>;
248
218
  required: false;
249
219
  };
250
220
  name: <TName extends string>(n?: TName) => { [key in import("../DefineVueTypings").VModelEmitsInJsxElement<TName>]: {
251
- type: import("vue").PropType<(value: any) => any>;
221
+ type: import("vue").PropType<(value: MultiTextInputItem<any>) => any>;
252
222
  }; } & { [key_1 in import("../DefineVueTypings").VModelKeyNameInJsxElement<TName>]: {
253
- type: import("vue").PropType<any>;
223
+ type: import("vue").PropType<MultiTextInputItem<any>>;
254
224
  required: false;
255
225
  }; } & { [key_2 in import("../DefineVueTypings").VModelKeyNameInProps<TName>]: {
256
- type: import("vue").PropType<any>;
226
+ type: import("vue").PropType<MultiTextInputItem<any>>;
257
227
  required: false;
258
228
  }; } & {
259
- require(): import("../DefineVueTypings").DefinePropModelRequire<TName, any, {
229
+ require(): import("../DefineVueTypings").DefinePropModelRequire<TName, MultiTextInputItem<any>, {
260
230
  "onUpdate:modelValue": {
261
- type: import("vue").PropType<(value: any) => any>;
231
+ type: import("vue").PropType<(value: MultiTextInputItem<any>) => any>;
262
232
  };
263
233
  } & {
264
234
  "v-model": {
265
- type: import("vue").PropType<any>;
235
+ type: import("vue").PropType<MultiTextInputItem<any>>;
266
236
  required: false;
267
237
  };
268
238
  } & {
269
239
  modelValue: {
270
- type: import("vue").PropType<any>;
240
+ type: import("vue").PropType<MultiTextInputItem<any>>;
271
241
  required: false;
272
242
  };
273
243
  }>;
274
- defaultValue(value?: any): import("../DefineVueTypings").DefinePropModelDefaultValue<TName, any, {
244
+ defaultValue(value?: MultiTextInputItem<any>): import("../DefineVueTypings").DefinePropModelDefaultValue<TName, MultiTextInputItem<any>, {
275
245
  "onUpdate:modelValue": {
276
- type: import("vue").PropType<(value: any) => any>;
246
+ type: import("vue").PropType<(value: MultiTextInputItem<any>) => any>;
277
247
  };
278
248
  } & {
279
249
  "v-model": {
280
- type: import("vue").PropType<any>;
250
+ type: import("vue").PropType<MultiTextInputItem<any>>;
281
251
  required: false;
282
252
  };
283
253
  } & {
284
254
  modelValue: {
285
- type: import("vue").PropType<any>;
255
+ type: import("vue").PropType<MultiTextInputItem<any>>;
286
256
  required: false;
287
257
  };
288
258
  }, false>;
289
- doc$(description?: string): import("../DefineVueTypings").DefinePropModelDoc<TName, any, {
259
+ doc$(description?: string): import("../DefineVueTypings").DefinePropModelDoc<TName, MultiTextInputItem<any>, {
290
260
  "onUpdate:modelValue": {
291
- type: import("vue").PropType<(value: any) => any>;
261
+ type: import("vue").PropType<(value: MultiTextInputItem<any>) => any>;
292
262
  };
293
263
  } & {
294
264
  "v-model": {
295
- type: import("vue").PropType<any>;
265
+ type: import("vue").PropType<MultiTextInputItem<any>>;
296
266
  required: false;
297
267
  };
298
268
  } & {
299
269
  modelValue: {
300
- type: import("vue").PropType<any>;
270
+ type: import("vue").PropType<MultiTextInputItem<any>>;
301
271
  required: false;
302
272
  };
303
273
  }>;
@@ -305,7 +275,7 @@ declare const _default: {
305
275
  }>> & {
306
276
  "onUpdate:modelValue"?: (value: any) => any;
307
277
  onDoc$?: (description?: string) => any;
308
- onOnItemSelected?: (item: any) => any;
278
+ onSelectItem?: (item: MultiTextInputItem<any>, index: number) => any;
309
279
  }, {}, true, {}, {}, {
310
280
  P: {};
311
281
  B: {};
@@ -314,6 +284,14 @@ declare const _default: {
314
284
  M: {};
315
285
  Defaults: {};
316
286
  }, Readonly<import("vue").ExtractPropTypes<{
287
+ "is-append-icon": {
288
+ type: import("vue").PropType<boolean>;
289
+ required: false;
290
+ };
291
+ isAppendIcon: {
292
+ type: import("vue").PropType<boolean>;
293
+ required: false;
294
+ };
317
295
  rules: {
318
296
  type: import("vue").PropType<ValidationRule[]>;
319
297
  required: false;
@@ -321,26 +299,19 @@ declare const _default: {
321
299
  type: import("vue").PropType<ValidationRule[]>;
322
300
  required: false;
323
301
  };
324
- "v-slots": import("vue").Prop<{
325
- default?: import("../DefineVueTypings").Slot<any[]>;
326
- } & OMultiTextInputSlot>;
302
+ "hide-edit-grid": {
303
+ type: import("vue").PropType<boolean>;
304
+ required: false;
305
+ };
306
+ hideEditGrid: {
307
+ type: import("vue").PropType<boolean>;
308
+ required: false;
309
+ };
327
310
  autofocus: {
328
311
  type: import("vue").PropType<boolean>;
329
312
  } & {
330
313
  type: import("vue").PropType<boolean>;
331
314
  };
332
- "on-configure-extensions": {
333
- type: import("vue").PropType<any>;
334
- };
335
- onConfigureExtensions: {
336
- type: import("vue").PropType<any>;
337
- };
338
- "rich-text-settings": {
339
- type: import("vue").PropType<OmitProperties<IRichTextEditor, "initialContent" | "onContentChange">>;
340
- };
341
- richTextSettings: {
342
- type: import("vue").PropType<OmitProperties<IRichTextEditor, "initialContent" | "onContentChange">>;
343
- };
344
315
  "default-value-item": {
345
316
  type: import("vue").PropType<any>;
346
317
  };
@@ -353,16 +324,10 @@ declare const _default: {
353
324
  itemValue: {
354
325
  type: import("vue").PropType<any>;
355
326
  };
356
- "item-title": {
357
- type: import("vue").PropType<string | ((item: any) => string)>;
358
- };
359
- itemTitle: {
360
- type: import("vue").PropType<string | ((item: any) => string)>;
361
- };
362
327
  items: {
363
- type: import("vue").PropType<any[]>;
328
+ type: import("vue").PropType<MultiTextInputItem<any>[]>;
364
329
  } & {
365
- type: import("vue").PropType<any[]>;
330
+ type: import("vue").PropType<MultiTextInputItem<any>[]>;
366
331
  };
367
332
  disabled: {
368
333
  type: import("vue").PropType<boolean>;
@@ -377,78 +342,74 @@ declare const _default: {
377
342
  type: import("vue").PropType<string>;
378
343
  };
379
344
  mode: {
380
- type: import("vue").PropType<"textarea" | "textfield" | "rtf">;
345
+ type: import("vue").PropType<"textarea" | "textfield">;
381
346
  required: false;
382
347
  } & {
383
- type: import("vue").PropType<"textarea" | "textfield" | "rtf">;
348
+ type: import("vue").PropType<"textarea" | "textfield">;
384
349
  required: false;
385
350
  };
386
- marker: {
387
- type: import("vue").PropType<string>;
388
- required: true;
389
- };
390
351
  "onUpdate:modelValue": {
391
- type: import("vue").PropType<(value: any) => any>;
352
+ type: import("vue").PropType<(value: MultiTextInputItem<any>) => any>;
392
353
  };
393
354
  "v-model": {
394
- type: import("vue").PropType<any>;
355
+ type: import("vue").PropType<MultiTextInputItem<any>>;
395
356
  required: false;
396
357
  };
397
358
  modelValue: {
398
- type: import("vue").PropType<any>;
359
+ type: import("vue").PropType<MultiTextInputItem<any>>;
399
360
  required: false;
400
361
  };
401
362
  name: <TName extends string>(n?: TName) => { [key in import("../DefineVueTypings").VModelEmitsInJsxElement<TName>]: {
402
- type: import("vue").PropType<(value: any) => any>;
363
+ type: import("vue").PropType<(value: MultiTextInputItem<any>) => any>;
403
364
  }; } & { [key_1 in import("../DefineVueTypings").VModelKeyNameInJsxElement<TName>]: {
404
- type: import("vue").PropType<any>;
365
+ type: import("vue").PropType<MultiTextInputItem<any>>;
405
366
  required: false;
406
367
  }; } & { [key_2 in import("../DefineVueTypings").VModelKeyNameInProps<TName>]: {
407
- type: import("vue").PropType<any>;
368
+ type: import("vue").PropType<MultiTextInputItem<any>>;
408
369
  required: false;
409
370
  }; } & {
410
- require(): import("../DefineVueTypings").DefinePropModelRequire<TName, any, {
371
+ require(): import("../DefineVueTypings").DefinePropModelRequire<TName, MultiTextInputItem<any>, {
411
372
  "onUpdate:modelValue": {
412
- type: import("vue").PropType<(value: any) => any>;
373
+ type: import("vue").PropType<(value: MultiTextInputItem<any>) => any>;
413
374
  };
414
375
  } & {
415
376
  "v-model": {
416
- type: import("vue").PropType<any>;
377
+ type: import("vue").PropType<MultiTextInputItem<any>>;
417
378
  required: false;
418
379
  };
419
380
  } & {
420
381
  modelValue: {
421
- type: import("vue").PropType<any>;
382
+ type: import("vue").PropType<MultiTextInputItem<any>>;
422
383
  required: false;
423
384
  };
424
385
  }>;
425
- defaultValue(value?: any): import("../DefineVueTypings").DefinePropModelDefaultValue<TName, any, {
386
+ defaultValue(value?: MultiTextInputItem<any>): import("../DefineVueTypings").DefinePropModelDefaultValue<TName, MultiTextInputItem<any>, {
426
387
  "onUpdate:modelValue": {
427
- type: import("vue").PropType<(value: any) => any>;
388
+ type: import("vue").PropType<(value: MultiTextInputItem<any>) => any>;
428
389
  };
429
390
  } & {
430
391
  "v-model": {
431
- type: import("vue").PropType<any>;
392
+ type: import("vue").PropType<MultiTextInputItem<any>>;
432
393
  required: false;
433
394
  };
434
395
  } & {
435
396
  modelValue: {
436
- type: import("vue").PropType<any>;
397
+ type: import("vue").PropType<MultiTextInputItem<any>>;
437
398
  required: false;
438
399
  };
439
400
  }, false>;
440
- doc$(description?: string): import("../DefineVueTypings").DefinePropModelDoc<TName, any, {
401
+ doc$(description?: string): import("../DefineVueTypings").DefinePropModelDoc<TName, MultiTextInputItem<any>, {
441
402
  "onUpdate:modelValue": {
442
- type: import("vue").PropType<(value: any) => any>;
403
+ type: import("vue").PropType<(value: MultiTextInputItem<any>) => any>;
443
404
  };
444
405
  } & {
445
406
  "v-model": {
446
- type: import("vue").PropType<any>;
407
+ type: import("vue").PropType<MultiTextInputItem<any>>;
447
408
  required: false;
448
409
  };
449
410
  } & {
450
411
  modelValue: {
451
- type: import("vue").PropType<any>;
412
+ type: import("vue").PropType<MultiTextInputItem<any>>;
452
413
  required: false;
453
414
  };
454
415
  }>;
@@ -456,12 +417,20 @@ declare const _default: {
456
417
  }>> & {
457
418
  "onUpdate:modelValue"?: (value: any) => any;
458
419
  onDoc$?: (description?: string) => any;
459
- onOnItemSelected?: (item: any) => any;
420
+ onSelectItem?: (item: MultiTextInputItem<any>, index: number) => any;
460
421
  }, () => JSX.Element, {}, {}, {}, {}>;
461
422
  __isFragment?: never;
462
423
  __isTeleport?: never;
463
424
  __isSuspense?: never;
464
425
  } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
426
+ "is-append-icon": {
427
+ type: import("vue").PropType<boolean>;
428
+ required: false;
429
+ };
430
+ isAppendIcon: {
431
+ type: import("vue").PropType<boolean>;
432
+ required: false;
433
+ };
465
434
  rules: {
466
435
  type: import("vue").PropType<ValidationRule[]>;
467
436
  required: false;
@@ -469,26 +438,19 @@ declare const _default: {
469
438
  type: import("vue").PropType<ValidationRule[]>;
470
439
  required: false;
471
440
  };
472
- "v-slots": import("vue").Prop<{
473
- default?: import("../DefineVueTypings").Slot<any[]>;
474
- } & OMultiTextInputSlot>;
441
+ "hide-edit-grid": {
442
+ type: import("vue").PropType<boolean>;
443
+ required: false;
444
+ };
445
+ hideEditGrid: {
446
+ type: import("vue").PropType<boolean>;
447
+ required: false;
448
+ };
475
449
  autofocus: {
476
450
  type: import("vue").PropType<boolean>;
477
451
  } & {
478
452
  type: import("vue").PropType<boolean>;
479
453
  };
480
- "on-configure-extensions": {
481
- type: import("vue").PropType<any>;
482
- };
483
- onConfigureExtensions: {
484
- type: import("vue").PropType<any>;
485
- };
486
- "rich-text-settings": {
487
- type: import("vue").PropType<OmitProperties<IRichTextEditor, "initialContent" | "onContentChange">>;
488
- };
489
- richTextSettings: {
490
- type: import("vue").PropType<OmitProperties<IRichTextEditor, "initialContent" | "onContentChange">>;
491
- };
492
454
  "default-value-item": {
493
455
  type: import("vue").PropType<any>;
494
456
  };
@@ -501,16 +463,10 @@ declare const _default: {
501
463
  itemValue: {
502
464
  type: import("vue").PropType<any>;
503
465
  };
504
- "item-title": {
505
- type: import("vue").PropType<string | ((item: any) => string)>;
506
- };
507
- itemTitle: {
508
- type: import("vue").PropType<string | ((item: any) => string)>;
509
- };
510
466
  items: {
511
- type: import("vue").PropType<any[]>;
467
+ type: import("vue").PropType<MultiTextInputItem<any>[]>;
512
468
  } & {
513
- type: import("vue").PropType<any[]>;
469
+ type: import("vue").PropType<MultiTextInputItem<any>[]>;
514
470
  };
515
471
  disabled: {
516
472
  type: import("vue").PropType<boolean>;
@@ -525,78 +481,74 @@ declare const _default: {
525
481
  type: import("vue").PropType<string>;
526
482
  };
527
483
  mode: {
528
- type: import("vue").PropType<"textarea" | "textfield" | "rtf">;
484
+ type: import("vue").PropType<"textarea" | "textfield">;
529
485
  required: false;
530
486
  } & {
531
- type: import("vue").PropType<"textarea" | "textfield" | "rtf">;
487
+ type: import("vue").PropType<"textarea" | "textfield">;
532
488
  required: false;
533
489
  };
534
- marker: {
535
- type: import("vue").PropType<string>;
536
- required: true;
537
- };
538
490
  "onUpdate:modelValue": {
539
- type: import("vue").PropType<(value: any) => any>;
491
+ type: import("vue").PropType<(value: MultiTextInputItem<any>) => any>;
540
492
  };
541
493
  "v-model": {
542
- type: import("vue").PropType<any>;
494
+ type: import("vue").PropType<MultiTextInputItem<any>>;
543
495
  required: false;
544
496
  };
545
497
  modelValue: {
546
- type: import("vue").PropType<any>;
498
+ type: import("vue").PropType<MultiTextInputItem<any>>;
547
499
  required: false;
548
500
  };
549
501
  name: <TName extends string>(n?: TName) => { [key in import("../DefineVueTypings").VModelEmitsInJsxElement<TName>]: {
550
- type: import("vue").PropType<(value: any) => any>;
502
+ type: import("vue").PropType<(value: MultiTextInputItem<any>) => any>;
551
503
  }; } & { [key_1 in import("../DefineVueTypings").VModelKeyNameInJsxElement<TName>]: {
552
- type: import("vue").PropType<any>;
504
+ type: import("vue").PropType<MultiTextInputItem<any>>;
553
505
  required: false;
554
506
  }; } & { [key_2 in import("../DefineVueTypings").VModelKeyNameInProps<TName>]: {
555
- type: import("vue").PropType<any>;
507
+ type: import("vue").PropType<MultiTextInputItem<any>>;
556
508
  required: false;
557
509
  }; } & {
558
- require(): import("../DefineVueTypings").DefinePropModelRequire<TName, any, {
510
+ require(): import("../DefineVueTypings").DefinePropModelRequire<TName, MultiTextInputItem<any>, {
559
511
  "onUpdate:modelValue": {
560
- type: import("vue").PropType<(value: any) => any>;
512
+ type: import("vue").PropType<(value: MultiTextInputItem<any>) => any>;
561
513
  };
562
514
  } & {
563
515
  "v-model": {
564
- type: import("vue").PropType<any>;
516
+ type: import("vue").PropType<MultiTextInputItem<any>>;
565
517
  required: false;
566
518
  };
567
519
  } & {
568
520
  modelValue: {
569
- type: import("vue").PropType<any>;
521
+ type: import("vue").PropType<MultiTextInputItem<any>>;
570
522
  required: false;
571
523
  };
572
524
  }>;
573
- defaultValue(value?: any): import("../DefineVueTypings").DefinePropModelDefaultValue<TName, any, {
525
+ defaultValue(value?: MultiTextInputItem<any>): import("../DefineVueTypings").DefinePropModelDefaultValue<TName, MultiTextInputItem<any>, {
574
526
  "onUpdate:modelValue": {
575
- type: import("vue").PropType<(value: any) => any>;
527
+ type: import("vue").PropType<(value: MultiTextInputItem<any>) => any>;
576
528
  };
577
529
  } & {
578
530
  "v-model": {
579
- type: import("vue").PropType<any>;
531
+ type: import("vue").PropType<MultiTextInputItem<any>>;
580
532
  required: false;
581
533
  };
582
534
  } & {
583
535
  modelValue: {
584
- type: import("vue").PropType<any>;
536
+ type: import("vue").PropType<MultiTextInputItem<any>>;
585
537
  required: false;
586
538
  };
587
539
  }, false>;
588
- doc$(description?: string): import("../DefineVueTypings").DefinePropModelDoc<TName, any, {
540
+ doc$(description?: string): import("../DefineVueTypings").DefinePropModelDoc<TName, MultiTextInputItem<any>, {
589
541
  "onUpdate:modelValue": {
590
- type: import("vue").PropType<(value: any) => any>;
542
+ type: import("vue").PropType<(value: MultiTextInputItem<any>) => any>;
591
543
  };
592
544
  } & {
593
545
  "v-model": {
594
- type: import("vue").PropType<any>;
546
+ type: import("vue").PropType<MultiTextInputItem<any>>;
595
547
  required: false;
596
548
  };
597
549
  } & {
598
550
  modelValue: {
599
- type: import("vue").PropType<any>;
551
+ type: import("vue").PropType<MultiTextInputItem<any>>;
600
552
  required: false;
601
553
  };
602
554
  }>;
@@ -604,104 +556,97 @@ declare const _default: {
604
556
  }>> & {
605
557
  "onUpdate:modelValue"?: (value: any) => any;
606
558
  onDoc$?: (description?: string) => any;
607
- onOnItemSelected?: (item: any) => any;
559
+ onSelectItem?: (item: MultiTextInputItem<any>, index: number) => any;
608
560
  }, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
609
- onItemSelected: (item: any) => void;
561
+ selectItem: (item: MultiTextInputItem<any>, index: number) => void;
610
562
  doc$(description?: string): {
611
- onItemSelected: (item: any) => void;
563
+ selectItem: (item: MultiTextInputItem<any>, index: number) => void;
612
564
  };
613
565
  "update:modelValue": (value: any) => true;
614
566
  }, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
615
- propsDefinition: Omit<Readonly<{
616
- marker: string;
617
- } & {
618
- mode?: "textarea" | "textfield" | "rtf";
567
+ propsDefinition: Omit<Readonly<{} & {
568
+ mode?: "textarea" | "textfield";
619
569
  name?: {
620
570
  [x: `onUpdate:${string}`]: {
621
- type: import("vue").PropType<(value: any) => any>;
571
+ type: import("vue").PropType<(value: MultiTextInputItem<any>) => any>;
622
572
  };
623
573
  } & {
624
574
  [x: `v-model:${string}`]: {
625
- type: import("vue").PropType<any>;
575
+ type: import("vue").PropType<MultiTextInputItem<any>>;
626
576
  required: false;
627
577
  };
628
578
  } & {
629
579
  [x: string]: {
630
- type: import("vue").PropType<any>;
580
+ type: import("vue").PropType<MultiTextInputItem<any>>;
631
581
  required: false;
632
582
  };
633
583
  } & {
634
- require(): import("../DefineVueTypings").DefinePropModelRequire<string, any, {
584
+ require(): import("../DefineVueTypings").DefinePropModelRequire<string, MultiTextInputItem<any>, {
635
585
  "onUpdate:modelValue": {
636
- type: import("vue").PropType<(value: any) => any>;
586
+ type: import("vue").PropType<(value: MultiTextInputItem<any>) => any>;
637
587
  };
638
588
  } & {
639
589
  "v-model": {
640
- type: import("vue").PropType<any>;
590
+ type: import("vue").PropType<MultiTextInputItem<any>>;
641
591
  required: false;
642
592
  };
643
593
  } & {
644
594
  modelValue: {
645
- type: import("vue").PropType<any>;
595
+ type: import("vue").PropType<MultiTextInputItem<any>>;
646
596
  required: false;
647
597
  };
648
598
  }>;
649
- defaultValue(value?: any): import("../DefineVueTypings").DefinePropModelDefaultValue<string, any, {
599
+ defaultValue(value?: MultiTextInputItem<any>): import("../DefineVueTypings").DefinePropModelDefaultValue<string, MultiTextInputItem<any>, {
650
600
  "onUpdate:modelValue": {
651
- type: import("vue").PropType<(value: any) => any>;
601
+ type: import("vue").PropType<(value: MultiTextInputItem<any>) => any>;
652
602
  };
653
603
  } & {
654
604
  "v-model": {
655
- type: import("vue").PropType<any>;
605
+ type: import("vue").PropType<MultiTextInputItem<any>>;
656
606
  required: false;
657
607
  };
658
608
  } & {
659
609
  modelValue: {
660
- type: import("vue").PropType<any>;
610
+ type: import("vue").PropType<MultiTextInputItem<any>>;
661
611
  required: false;
662
612
  };
663
613
  }, false>;
664
- doc$(description?: string): import("../DefineVueTypings").DefinePropModelDoc<string, any, {
614
+ doc$(description?: string): import("../DefineVueTypings").DefinePropModelDoc<string, MultiTextInputItem<any>, {
665
615
  "onUpdate:modelValue": {
666
- type: import("vue").PropType<(value: any) => any>;
616
+ type: import("vue").PropType<(value: MultiTextInputItem<any>) => any>;
667
617
  };
668
618
  } & {
669
619
  "v-model": {
670
- type: import("vue").PropType<any>;
620
+ type: import("vue").PropType<MultiTextInputItem<any>>;
671
621
  required: false;
672
622
  };
673
623
  } & {
674
624
  modelValue: {
675
- type: import("vue").PropType<any>;
625
+ type: import("vue").PropType<MultiTextInputItem<any>>;
676
626
  required: false;
677
627
  };
678
628
  }>;
679
629
  };
680
630
  label?: string;
681
631
  disabled?: boolean;
682
- "v-model"?: any;
683
- "onUpdate:modelValue"?: (value: any) => any;
684
- modelValue?: any;
685
- items?: any[];
686
- "v-slots"?: {
687
- default?: import("../DefineVueTypings").Slot<any[]>;
688
- } & OMultiTextInputSlot;
632
+ "v-model"?: MultiTextInputItem<any>;
633
+ "onUpdate:modelValue"?: (value: MultiTextInputItem<any>) => any;
634
+ modelValue?: MultiTextInputItem<any>;
635
+ items?: MultiTextInputItem<any>[];
689
636
  autofocus?: boolean;
690
637
  rules?: ValidationRule[];
691
- onConfigureExtensions?: any;
692
- richTextSettings?: OmitProperties<IRichTextEditor, "initialContent" | "onContentChange">;
693
- "rich-text-settings"?: OmitProperties<IRichTextEditor, "initialContent" | "onContentChange">;
694
- itemTitle?: string | ((item: any) => string);
695
638
  itemValue?: any;
696
639
  "item-value"?: any;
697
- "item-title"?: string | ((item: any) => string);
698
- "on-configure-extensions"?: any;
699
640
  defaultValueItem?: any;
700
641
  "default-value-item"?: any;
701
- }>, "onUpdate:modelValue" | "onDoc$" | "onOnItemSelected"> & {
642
+ hideEditGrid?: boolean;
643
+ "hide-edit-grid"?: boolean;
644
+ isAppendIcon?: boolean;
645
+ "is-append-icon"?: boolean;
646
+ }>, "onUpdate:modelValue" | "onDoc$" | "onSelectItem"> & {
702
647
  "onUpdate:modelValue"?: (value: any) => any;
703
648
  onDoc$?: (description?: string) => any;
704
- onOnItemSelected?: (item: any) => any;
649
+ onSelectItem?: (item: MultiTextInputItem<any>, index: number) => any;
705
650
  };
706
651
  };
707
652
  export default _default;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@omnia/fx",
3
3
  "license": "MIT",
4
- "version": "8.0.86-dev",
4
+ "version": "8.0.87-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.86-dev",
23
+ "@omnia/fx-models": "8.0.87-dev",
24
24
  "@microsoft/signalr": "6.0.1",
25
25
  "broadcast-channel": "4.8.0",
26
26
  "dayjs": "1.10.7",