@omnia/fx 8.0.85-vnext → 8.0.87-vnext
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.
@@ -71,7 +71,7 @@ declare const _default: {
|
|
71
71
|
"onClick:back"?: (id: string) => any;
|
72
72
|
readonly searchable?: boolean;
|
73
73
|
readonly onDelete?: (bladeId: string) => boolean | Promise<boolean>;
|
74
|
-
readonly
|
74
|
+
readonly confirmDeleteDialogOption?: unknown;
|
75
75
|
onSearch?: (searchText: string) => any;
|
76
76
|
"onClick:add"?: (id: string) => any;
|
77
77
|
"onClick:settings"?: (id: string) => any;
|
@@ -96,7 +96,7 @@ declare const _default: {
|
|
96
96
|
actions?: Func<[VNodeChild]>;
|
97
97
|
actionsFooter?: Func<[VNodeChild]>;
|
98
98
|
}>;
|
99
|
-
|
99
|
+
confirmDeleteDialogOption: {
|
100
100
|
type: import("vue").PropType<ConfirmDialogOptions>;
|
101
101
|
};
|
102
102
|
onDelete: {
|
@@ -178,7 +178,7 @@ declare const _default: {
|
|
178
178
|
actions?: Func<[VNodeChild]>;
|
179
179
|
actionsFooter?: Func<[VNodeChild]>;
|
180
180
|
}>;
|
181
|
-
|
181
|
+
confirmDeleteDialogOption: {
|
182
182
|
type: import("vue").PropType<ConfirmDialogOptions>;
|
183
183
|
};
|
184
184
|
onDelete: {
|
@@ -238,7 +238,7 @@ declare const _default: {
|
|
238
238
|
actions?: Func<[VNodeChild]>;
|
239
239
|
actionsFooter?: Func<[VNodeChild]>;
|
240
240
|
}>;
|
241
|
-
|
241
|
+
confirmDeleteDialogOption: {
|
242
242
|
type: import("vue").PropType<ConfirmDialogOptions>;
|
243
243
|
};
|
244
244
|
onDelete: {
|
@@ -314,7 +314,7 @@ declare const _default: {
|
|
314
314
|
onSave?: (bladeId: string) => boolean | Promise<boolean>;
|
315
315
|
searchable?: boolean;
|
316
316
|
onDelete?: (bladeId: string) => boolean | Promise<boolean>;
|
317
|
-
|
317
|
+
confirmDeleteDialogOption?: unknown;
|
318
318
|
}>, "onClick:cancel" | "onClick:back" | "onSearch" | "onClick:add" | "onClick:settings"> & {
|
319
319
|
"onClick:cancel"?: (id: string) => any;
|
320
320
|
"onClick:back"?: (id: string) => any;
|
@@ -23,6 +23,6 @@ export interface IDataTableRowRenderer {
|
|
23
23
|
disableNavigation(): any;
|
24
24
|
select(selected: boolean): Omit<IDataTableRowRenderer, "select">;
|
25
25
|
onClick(callback: () => void): Omit<IDataTableRowRenderer, "onClick">;
|
26
|
-
addCell(node: VNodeChild, colSpan?: number): Pick<IDataTableRowRenderer, "addCell" | "addAction">;
|
26
|
+
addCell(node: VNodeChild, colSpan?: number, classes?: string, styles?: string): Pick<IDataTableRowRenderer, "addCell" | "addAction">;
|
27
27
|
addAction(node: VNodeChild): Pick<IDataTableRowRenderer, "addCell" | "addAction">;
|
28
28
|
}
|
@@ -67,6 +67,8 @@ declare const _default: {
|
|
67
67
|
readonly modelValue?: string | number;
|
68
68
|
"onUpdate:focused"?: (value: boolean) => any;
|
69
69
|
readonly rules?: ValidationRule[];
|
70
|
+
readonly hint?: string;
|
71
|
+
readonly persistentHint?: boolean;
|
70
72
|
"onUpdate:modelValue"?: ((value: string | number) => any) & ((value: string) => any);
|
71
73
|
readonly "v-model"?: string | number;
|
72
74
|
readonly clearable?: boolean;
|
@@ -91,6 +93,12 @@ declare const _default: {
|
|
91
93
|
$emit: ((event: "doc$", description?: string) => void) & ((event: "update:modelValue", value: string) => void) & ((event: "update:focused", value: boolean) => void) & ((event: "click:clear") => void) & ((event: "click:button") => void);
|
92
94
|
$el: any;
|
93
95
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
96
|
+
persistentHint: {
|
97
|
+
type: import("vue").PropType<boolean>;
|
98
|
+
};
|
99
|
+
hint: {
|
100
|
+
type: import("vue").PropType<string>;
|
101
|
+
};
|
94
102
|
suffix: {
|
95
103
|
type: import("vue").PropType<string>;
|
96
104
|
};
|
@@ -196,6 +204,12 @@ declare const _default: {
|
|
196
204
|
$nextTick: typeof import("vue").nextTick;
|
197
205
|
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean>): import("vue").WatchStopHandle;
|
198
206
|
} & Readonly<import("vue").ExtractPropTypes<{
|
207
|
+
persistentHint: {
|
208
|
+
type: import("vue").PropType<boolean>;
|
209
|
+
};
|
210
|
+
hint: {
|
211
|
+
type: import("vue").PropType<string>;
|
212
|
+
};
|
199
213
|
suffix: {
|
200
214
|
type: import("vue").PropType<string>;
|
201
215
|
};
|
@@ -271,6 +285,12 @@ declare const _default: {
|
|
271
285
|
__isTeleport?: never;
|
272
286
|
__isSuspense?: never;
|
273
287
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
288
|
+
persistentHint: {
|
289
|
+
type: import("vue").PropType<boolean>;
|
290
|
+
};
|
291
|
+
hint: {
|
292
|
+
type: import("vue").PropType<string>;
|
293
|
+
};
|
274
294
|
suffix: {
|
275
295
|
type: import("vue").PropType<string>;
|
276
296
|
};
|
@@ -376,6 +396,8 @@ declare const _default: {
|
|
376
396
|
loading?: boolean;
|
377
397
|
modelValue?: string | number;
|
378
398
|
rules?: ValidationRule[];
|
399
|
+
hint?: string;
|
400
|
+
persistentHint?: boolean;
|
379
401
|
"onUpdate:modelValue"?: (value: string | number) => any;
|
380
402
|
"v-model"?: string | number;
|
381
403
|
clearable?: boolean;
|
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.87-vnext",
|
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.87-vnext",
|
24
24
|
"@microsoft/signalr": "6.0.1",
|
25
25
|
"broadcast-channel": "4.8.0",
|
26
26
|
"dayjs": "1.10.7",
|