@omnia/fx 8.0.50-dev → 8.0.51-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/ux/ComponentTypings.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/Exposes.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/InternalDefineComponent.d.ts +3 -2
- package/internal-do-not-import-from-here/ux/VueTags.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/directives/ClickOutSide.d.ts +12 -0
- package/internal-do-not-import-from-here/ux/directives/Directives.d.ts +12 -0
- package/internal-do-not-import-from-here/ux/directives/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/datatable/DataTableServer.d.ts +434 -59
- package/internal-do-not-import-from-here/ux/properties/builtins/birthday/BirthdayDisplay.d.ts +0 -8
- package/package.json +2 -2
@@ -72,7 +72,7 @@ type VuetifyValue<T> = T extends {
|
|
72
72
|
import { VTooltip, VTextarea, VSwitch, VRadioGroup, VForm, VTextField, VBtn, VBtnToggle, VBtnGroup, VNavigationDrawer, VList, VListItem, VListGroup, VListImg, VListItemAction, VListItemTitle, VListItemSubtitle, VListItemMedia, VListSubheader, VDialog, VDialogBottomTransition, VDialogTopTransition, VDialogTransition, VCard, VCardActions, VCardItem, VCardSubtitle, VCardText, VCardTitle, VExpansionPanels, VExpansionPanel, VExpansionPanelText, VExpansionPanelTitle, VAutocomplete, VMenu, VTable, VCheckbox, VCheckboxBtn, VVirtualScroll, VChip, VSelect, VBadge, VCol, VPagination, VRating } from "vuetify/components";
|
73
73
|
import { Intersect } from "vuetify/directives";
|
74
74
|
import { VDataTable, VDataTableRow, VDataTableRows, VDataTableVirtual, VDataTableServer, VInfiniteScroll, VDatePicker } from "vuetify/labs/components";
|
75
|
-
export interface VDataTableServerSlots extends VuetifySlots<VuetifyProps<Pick<VDataTableServer, "$
|
75
|
+
export interface VDataTableServerSlots extends VuetifySlots<VuetifyProps<Pick<VDataTableServer, "$slots">>> {
|
76
76
|
}
|
77
77
|
export interface VDataTableSlots extends VuetifySlots<VuetifyProps<Pick<VDataTable, "$props">>> {
|
78
78
|
}
|
@@ -53,6 +53,7 @@ export * from "./decorators";
|
|
53
53
|
export * from "./docs";
|
54
54
|
export * from "./statuscoderenderer";
|
55
55
|
export * from "./datetimefilterquery";
|
56
|
+
export * from "./directives";
|
56
57
|
export * from "./VueWebComponentSlot";
|
57
58
|
export * from "./TokenBasedRouter";
|
58
59
|
export * from "./StyleFlow";
|
@@ -1,7 +1,7 @@
|
|
1
1
|
import { SubscriptionHandler } from "@omnia/fx";
|
2
2
|
import { ComponentInjectOptions, ComponentObjectPropsOptions, ComponentOptions, ComponentOptionsBase, ComponentOptionsMixin, ComponentPropsOptions, ComputedOptions, CreateComponentPublicInstance, DefineComponent, EmitsOptions, ExtractDefaultPropTypes, ExtractPropTypes, MethodOptions, ObjectEmitsOptions, Prop, PropType, RenderFunction, Slot, SlotsType, VNode, VNodeArrayChildren, VNodeProps, VNodeTypes, computed, watch, watchEffect } from "vue";
|
3
3
|
import { LooseRequired, Prettify, UnionToIntersection } from "@vue/shared";
|
4
|
-
import { ComponentBundleManifest, GuidValue, ThemeableComponentProps } from "@omnia/fx-models";
|
4
|
+
import { ComponentBundleManifest, Directives, GuidValue, ThemeableComponentProps } from "@omnia/fx-models";
|
5
5
|
import { IValidatorBase } from "./models/Validation";
|
6
6
|
import { useBlueprintSetup } from "./use/UseBlueprintSetup";
|
7
7
|
import { useColorSchemaSetup } from "./use/UseColorSchemaSetup";
|
@@ -45,7 +45,7 @@ type ExcludeJsxPropKeys<T> = T extends string[] ? T : {
|
|
45
45
|
[K in keyof T as K extends `v-model${infer _}` | "v-slots" ? never : K]: T[K];
|
46
46
|
};
|
47
47
|
type ExtractPropModels<T> = {
|
48
|
-
-readonly [K in keyof T as K extends `v-model:${infer N}` ? N : K extends "v-model" ? "modelValue" : never]: T[K];
|
48
|
+
-readonly [K in keyof T as K extends `v-model:${infer N}` ? N : K extends "v-model" | "modelValue" ? "modelValue" : never]: T[K];
|
49
49
|
};
|
50
50
|
type ExtractPropSlots<T> = T extends {
|
51
51
|
"v-slots"?: any;
|
@@ -266,6 +266,7 @@ declare global {
|
|
266
266
|
namespace JSX {
|
267
267
|
interface IntrinsicAttributes {
|
268
268
|
$children?: {};
|
269
|
+
"v-directives"?: (d: Directives) => any;
|
269
270
|
}
|
270
271
|
}
|
271
272
|
}
|
@@ -89,6 +89,7 @@ export declare const VChipTag = "v-chip";
|
|
89
89
|
export declare const VSwitchTag = "v-switch";
|
90
90
|
export declare const VBottomNavTag = "v-bottom-navigation";
|
91
91
|
export declare const VDataTableTag = "v-data-table";
|
92
|
+
export declare const VDataTableServerTag = "v-data-table-server";
|
92
93
|
export declare const VEditDialogTag = "v-edit-dialog";
|
93
94
|
export declare const VSnackbar = "v-snackbar";
|
94
95
|
export declare const VTimeline = "v-timeline";
|
@@ -0,0 +1,12 @@
|
|
1
|
+
declare module "@omnia/fx-models/ux/Directive" {
|
2
|
+
interface Directives {
|
3
|
+
clickOutSide(param: ClickOutsideDirectiveBindingValue): void;
|
4
|
+
}
|
5
|
+
}
|
6
|
+
interface ClickOutsideBindingArgs {
|
7
|
+
handler: (e: MouseEvent) => void;
|
8
|
+
closeConditional?: (e: Event) => boolean;
|
9
|
+
include?: () => HTMLElement[];
|
10
|
+
}
|
11
|
+
type ClickOutsideDirectiveBindingValue = ((e: MouseEvent) => void) | ClickOutsideBindingArgs;
|
12
|
+
export {};
|
@@ -0,0 +1,12 @@
|
|
1
|
+
import { DirectiveDefinition } from "@omnia/fx-models";
|
2
|
+
import { DirectiveBinding, VNode } from "vue";
|
3
|
+
import { SubscriptionHandler } from "@omnia/fx";
|
4
|
+
type SetupDirectiveContext<T> = {
|
5
|
+
onMounted(fn: (el: any, binding: DirectiveBinding<T>, vnode: VNode) => void): void;
|
6
|
+
onUnmounted(fn: (el: any, binding: DirectiveBinding<T>, vnode: VNode) => void): void;
|
7
|
+
onUpdated(fn: (el: any, binding: DirectiveBinding<T>, vnode: VNode, prevVnode: VNode) => void): any;
|
8
|
+
subscriptions: SubscriptionHandler;
|
9
|
+
};
|
10
|
+
export declare function defineVueDirective<T>(setup: (ctx: SetupDirectiveContext<T>) => void): () => ReturnType<DirectiveDefinition<T>>;
|
11
|
+
export declare function registerVueDirectives(): void;
|
12
|
+
export {};
|
@@ -20,17 +20,79 @@ declare const _default: {
|
|
20
20
|
readonly blueprintType?: any;
|
21
21
|
readonly colors?: any;
|
22
22
|
readonly headers?: DataTableHeader[] | DataTableHeader[][];
|
23
|
+
readonly name?: {
|
24
|
+
[x: `onUpdate:${string}`]: {
|
25
|
+
type: import("vue").PropType<(value: any[]) => any>;
|
26
|
+
};
|
27
|
+
} & {
|
28
|
+
[x: `v-model:${string}`]: {
|
29
|
+
type: import("vue").PropType<any[]>;
|
30
|
+
required: false;
|
31
|
+
};
|
32
|
+
} & {
|
33
|
+
[x: string]: {
|
34
|
+
type: import("vue").PropType<any[]>;
|
35
|
+
required: false;
|
36
|
+
};
|
37
|
+
} & {
|
38
|
+
require(): import("../../DefineVueTypings").DefinePropModelRequire<string, any[], {
|
39
|
+
"onUpdate:modelValue": {
|
40
|
+
type: import("vue").PropType<(value: any[]) => any>;
|
41
|
+
};
|
42
|
+
} & {
|
43
|
+
"v-model": {
|
44
|
+
type: import("vue").PropType<any[]>;
|
45
|
+
required: false;
|
46
|
+
};
|
47
|
+
} & {
|
48
|
+
modelValue: {
|
49
|
+
type: import("vue").PropType<any[]>;
|
50
|
+
required: false;
|
51
|
+
};
|
52
|
+
}>;
|
53
|
+
defaultValue(value?: any[]): import("../../DefineVueTypings").DefinePropModelDefaultValue<string, any[], {
|
54
|
+
"onUpdate:modelValue": {
|
55
|
+
type: import("vue").PropType<(value: any[]) => any>;
|
56
|
+
};
|
57
|
+
} & {
|
58
|
+
"v-model": {
|
59
|
+
type: import("vue").PropType<any[]>;
|
60
|
+
required: false;
|
61
|
+
};
|
62
|
+
} & {
|
63
|
+
modelValue: {
|
64
|
+
type: import("vue").PropType<any[]>;
|
65
|
+
required: false;
|
66
|
+
};
|
67
|
+
}, false>;
|
68
|
+
doc$(description?: string): import("../../DefineVueTypings").DefinePropModelDoc<string, any[], {
|
69
|
+
"onUpdate:modelValue": {
|
70
|
+
type: import("vue").PropType<(value: any[]) => any>;
|
71
|
+
};
|
72
|
+
} & {
|
73
|
+
"v-model": {
|
74
|
+
type: import("vue").PropType<any[]>;
|
75
|
+
required: false;
|
76
|
+
};
|
77
|
+
} & {
|
78
|
+
modelValue: {
|
79
|
+
type: import("vue").PropType<any[]>;
|
80
|
+
required: false;
|
81
|
+
};
|
82
|
+
}>;
|
83
|
+
};
|
23
84
|
readonly height?: string | number;
|
24
85
|
readonly page?: number;
|
25
86
|
readonly expanded?: string[];
|
26
|
-
|
27
|
-
readonly "v-model"?:
|
28
|
-
readonly modelValue?:
|
87
|
+
"onUpdate:modelValue"?: ((value: any[]) => any) & ((value: any[]) => any);
|
88
|
+
readonly "v-model"?: any[];
|
89
|
+
readonly modelValue?: any[];
|
29
90
|
readonly items?: any[];
|
30
91
|
readonly "v-slots"?: {
|
31
92
|
default?: import("../../DefineVueTypings").Slot<any[]>;
|
32
93
|
} & ODataTableServerSlots;
|
33
94
|
readonly loading?: boolean;
|
95
|
+
readonly itemValue?: SelectItemKey;
|
34
96
|
readonly hover?: boolean;
|
35
97
|
readonly sortBy?: SortItem[];
|
36
98
|
readonly mustSort?: boolean;
|
@@ -47,29 +109,89 @@ declare const _default: {
|
|
47
109
|
readonly "v-model:sortBy"?: SortItem[];
|
48
110
|
readonly "v-model:page"?: number;
|
49
111
|
onDoc$?: (description?: string) => any;
|
112
|
+
"onUpdate:options"?: () => any;
|
50
113
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
51
114
|
"v-slots": import("vue").Prop<{
|
52
115
|
default?: import("../../DefineVueTypings").Slot<any[]>;
|
53
116
|
} & ODataTableServerSlots>;
|
54
|
-
|
55
|
-
type: import("vue").PropType<
|
56
|
-
};
|
57
|
-
showExpand: {
|
58
|
-
type: import("vue").PropType<boolean>;
|
59
|
-
required: false;
|
60
|
-
};
|
61
|
-
expanded: {
|
62
|
-
type: import("vue").PropType<string[]>;
|
117
|
+
itemValue: {
|
118
|
+
type: import("vue").PropType<SelectItemKey>;
|
63
119
|
required: false;
|
64
120
|
};
|
65
121
|
"onUpdate:modelValue": {
|
66
|
-
type: import("vue").PropType<(value:
|
122
|
+
type: import("vue").PropType<(value: any[]) => any>;
|
67
123
|
};
|
68
124
|
"v-model": {
|
69
|
-
type: import("vue").PropType<
|
125
|
+
type: import("vue").PropType<any[]>;
|
70
126
|
required: false;
|
71
127
|
};
|
72
128
|
modelValue: {
|
129
|
+
type: import("vue").PropType<any[]>;
|
130
|
+
required: false;
|
131
|
+
};
|
132
|
+
name: <TName extends string>(n?: TName) => { [key in import("../../DefineVueTypings").VModelEmitsInJsxElement<TName>]: {
|
133
|
+
type: import("vue").PropType<(value: any[]) => any>;
|
134
|
+
}; } & { [key_1 in import("../../DefineVueTypings").VModelKeyNameInJsxElement<TName>]: {
|
135
|
+
type: import("vue").PropType<any[]>;
|
136
|
+
required: false;
|
137
|
+
}; } & { [key_2 in import("../../DefineVueTypings").VModelKeyNameInProps<TName>]: {
|
138
|
+
type: import("vue").PropType<any[]>;
|
139
|
+
required: false;
|
140
|
+
}; } & {
|
141
|
+
require(): import("../../DefineVueTypings").DefinePropModelRequire<TName, any[], {
|
142
|
+
"onUpdate:modelValue": {
|
143
|
+
type: import("vue").PropType<(value: any[]) => any>;
|
144
|
+
};
|
145
|
+
} & {
|
146
|
+
"v-model": {
|
147
|
+
type: import("vue").PropType<any[]>;
|
148
|
+
required: false;
|
149
|
+
};
|
150
|
+
} & {
|
151
|
+
modelValue: {
|
152
|
+
type: import("vue").PropType<any[]>;
|
153
|
+
required: false;
|
154
|
+
};
|
155
|
+
}>;
|
156
|
+
defaultValue(value?: any[]): import("../../DefineVueTypings").DefinePropModelDefaultValue<TName, any[], {
|
157
|
+
"onUpdate:modelValue": {
|
158
|
+
type: import("vue").PropType<(value: any[]) => any>;
|
159
|
+
};
|
160
|
+
} & {
|
161
|
+
"v-model": {
|
162
|
+
type: import("vue").PropType<any[]>;
|
163
|
+
required: false;
|
164
|
+
};
|
165
|
+
} & {
|
166
|
+
modelValue: {
|
167
|
+
type: import("vue").PropType<any[]>;
|
168
|
+
required: false;
|
169
|
+
};
|
170
|
+
}, false>;
|
171
|
+
doc$(description?: string): import("../../DefineVueTypings").DefinePropModelDoc<TName, any[], {
|
172
|
+
"onUpdate:modelValue": {
|
173
|
+
type: import("vue").PropType<(value: any[]) => any>;
|
174
|
+
};
|
175
|
+
} & {
|
176
|
+
"v-model": {
|
177
|
+
type: import("vue").PropType<any[]>;
|
178
|
+
required: false;
|
179
|
+
};
|
180
|
+
} & {
|
181
|
+
modelValue: {
|
182
|
+
type: import("vue").PropType<any[]>;
|
183
|
+
required: false;
|
184
|
+
};
|
185
|
+
}>;
|
186
|
+
};
|
187
|
+
height: {
|
188
|
+
type: import("vue").PropType<string | number>;
|
189
|
+
};
|
190
|
+
showExpand: {
|
191
|
+
type: import("vue").PropType<boolean>;
|
192
|
+
required: false;
|
193
|
+
};
|
194
|
+
expanded: {
|
73
195
|
type: import("vue").PropType<string[]>;
|
74
196
|
required: false;
|
75
197
|
};
|
@@ -147,9 +269,11 @@ declare const _default: {
|
|
147
269
|
blueprintType?: any;
|
148
270
|
blueprint?: any;
|
149
271
|
}>> & {
|
272
|
+
"onUpdate:modelValue"?: (value: any[]) => any;
|
150
273
|
onDoc$?: (description?: string) => any;
|
151
274
|
"onUpdate:sortBy"?: (item: SortItem[]) => any;
|
152
275
|
"onUpdate:page"?: (page: number) => any;
|
276
|
+
"onUpdate:options"?: () => any;
|
153
277
|
}, "container" | "blueprint" | "colorSchemaType" | "blueprintType" | "colors">;
|
154
278
|
$attrs: {
|
155
279
|
[x: string]: unknown;
|
@@ -162,31 +286,90 @@ declare const _default: {
|
|
162
286
|
}>;
|
163
287
|
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
164
288
|
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
165
|
-
$emit: ((event: "doc$", description?: string) => void) & ((event: "update:sortBy", item: SortItem[]) => void) & ((event: "update:page", page: number) => void);
|
289
|
+
$emit: ((event: "doc$", description?: string) => void) & ((event: "update:modelValue", value: any[]) => void) & ((event: "update:sortBy", item: SortItem[]) => void) & ((event: "update:page", page: number) => void) & ((event: "update:options") => void);
|
166
290
|
$el: any;
|
167
291
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
168
292
|
"v-slots": import("vue").Prop<{
|
169
293
|
default?: import("../../DefineVueTypings").Slot<any[]>;
|
170
294
|
} & ODataTableServerSlots>;
|
171
|
-
|
172
|
-
type: import("vue").PropType<
|
173
|
-
};
|
174
|
-
showExpand: {
|
175
|
-
type: import("vue").PropType<boolean>;
|
176
|
-
required: false;
|
177
|
-
};
|
178
|
-
expanded: {
|
179
|
-
type: import("vue").PropType<string[]>;
|
295
|
+
itemValue: {
|
296
|
+
type: import("vue").PropType<SelectItemKey>;
|
180
297
|
required: false;
|
181
298
|
};
|
182
299
|
"onUpdate:modelValue": {
|
183
|
-
type: import("vue").PropType<(value:
|
300
|
+
type: import("vue").PropType<(value: any[]) => any>;
|
184
301
|
};
|
185
302
|
"v-model": {
|
186
|
-
type: import("vue").PropType<
|
303
|
+
type: import("vue").PropType<any[]>;
|
187
304
|
required: false;
|
188
305
|
};
|
189
306
|
modelValue: {
|
307
|
+
type: import("vue").PropType<any[]>;
|
308
|
+
required: false;
|
309
|
+
};
|
310
|
+
name: <TName extends string>(n?: TName) => { [key in import("../../DefineVueTypings").VModelEmitsInJsxElement<TName>]: {
|
311
|
+
type: import("vue").PropType<(value: any[]) => any>;
|
312
|
+
}; } & { [key_1 in import("../../DefineVueTypings").VModelKeyNameInJsxElement<TName>]: {
|
313
|
+
type: import("vue").PropType<any[]>;
|
314
|
+
required: false;
|
315
|
+
}; } & { [key_2 in import("../../DefineVueTypings").VModelKeyNameInProps<TName>]: {
|
316
|
+
type: import("vue").PropType<any[]>;
|
317
|
+
required: false;
|
318
|
+
}; } & {
|
319
|
+
require(): import("../../DefineVueTypings").DefinePropModelRequire<TName, any[], {
|
320
|
+
"onUpdate:modelValue": {
|
321
|
+
type: import("vue").PropType<(value: any[]) => any>;
|
322
|
+
};
|
323
|
+
} & {
|
324
|
+
"v-model": {
|
325
|
+
type: import("vue").PropType<any[]>;
|
326
|
+
required: false;
|
327
|
+
};
|
328
|
+
} & {
|
329
|
+
modelValue: {
|
330
|
+
type: import("vue").PropType<any[]>;
|
331
|
+
required: false;
|
332
|
+
};
|
333
|
+
}>;
|
334
|
+
defaultValue(value?: any[]): import("../../DefineVueTypings").DefinePropModelDefaultValue<TName, any[], {
|
335
|
+
"onUpdate:modelValue": {
|
336
|
+
type: import("vue").PropType<(value: any[]) => any>;
|
337
|
+
};
|
338
|
+
} & {
|
339
|
+
"v-model": {
|
340
|
+
type: import("vue").PropType<any[]>;
|
341
|
+
required: false;
|
342
|
+
};
|
343
|
+
} & {
|
344
|
+
modelValue: {
|
345
|
+
type: import("vue").PropType<any[]>;
|
346
|
+
required: false;
|
347
|
+
};
|
348
|
+
}, false>;
|
349
|
+
doc$(description?: string): import("../../DefineVueTypings").DefinePropModelDoc<TName, any[], {
|
350
|
+
"onUpdate:modelValue": {
|
351
|
+
type: import("vue").PropType<(value: any[]) => any>;
|
352
|
+
};
|
353
|
+
} & {
|
354
|
+
"v-model": {
|
355
|
+
type: import("vue").PropType<any[]>;
|
356
|
+
required: false;
|
357
|
+
};
|
358
|
+
} & {
|
359
|
+
modelValue: {
|
360
|
+
type: import("vue").PropType<any[]>;
|
361
|
+
required: false;
|
362
|
+
};
|
363
|
+
}>;
|
364
|
+
};
|
365
|
+
height: {
|
366
|
+
type: import("vue").PropType<string | number>;
|
367
|
+
};
|
368
|
+
showExpand: {
|
369
|
+
type: import("vue").PropType<boolean>;
|
370
|
+
required: false;
|
371
|
+
};
|
372
|
+
expanded: {
|
190
373
|
type: import("vue").PropType<string[]>;
|
191
374
|
required: false;
|
192
375
|
};
|
@@ -264,14 +447,18 @@ declare const _default: {
|
|
264
447
|
blueprintType?: any;
|
265
448
|
blueprint?: any;
|
266
449
|
}>> & {
|
450
|
+
"onUpdate:modelValue"?: (value: any[]) => any;
|
267
451
|
onDoc$?: (description?: string) => any;
|
268
452
|
"onUpdate:sortBy"?: (item: SortItem[]) => any;
|
269
453
|
"onUpdate:page"?: (page: number) => any;
|
270
|
-
|
271
|
-
|
454
|
+
"onUpdate:options"?: () => any;
|
455
|
+
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
456
|
+
"update:modelValue": (value: any[]) => void;
|
272
457
|
doc$(description?: string): {
|
273
|
-
"update:
|
458
|
+
"update:modelValue": (value: any[]) => void;
|
274
459
|
};
|
460
|
+
"update:options": () => any;
|
461
|
+
"update:page": (page: number) => void;
|
275
462
|
"update:sortBy": (item: SortItem[]) => void;
|
276
463
|
}, string, {
|
277
464
|
container?: any;
|
@@ -303,25 +490,84 @@ declare const _default: {
|
|
303
490
|
"v-slots": import("vue").Prop<{
|
304
491
|
default?: import("../../DefineVueTypings").Slot<any[]>;
|
305
492
|
} & ODataTableServerSlots>;
|
306
|
-
|
307
|
-
type: import("vue").PropType<
|
308
|
-
};
|
309
|
-
showExpand: {
|
310
|
-
type: import("vue").PropType<boolean>;
|
311
|
-
required: false;
|
312
|
-
};
|
313
|
-
expanded: {
|
314
|
-
type: import("vue").PropType<string[]>;
|
493
|
+
itemValue: {
|
494
|
+
type: import("vue").PropType<SelectItemKey>;
|
315
495
|
required: false;
|
316
496
|
};
|
317
497
|
"onUpdate:modelValue": {
|
318
|
-
type: import("vue").PropType<(value:
|
498
|
+
type: import("vue").PropType<(value: any[]) => any>;
|
319
499
|
};
|
320
500
|
"v-model": {
|
321
|
-
type: import("vue").PropType<
|
501
|
+
type: import("vue").PropType<any[]>;
|
322
502
|
required: false;
|
323
503
|
};
|
324
504
|
modelValue: {
|
505
|
+
type: import("vue").PropType<any[]>;
|
506
|
+
required: false;
|
507
|
+
};
|
508
|
+
name: <TName extends string>(n?: TName) => { [key in import("../../DefineVueTypings").VModelEmitsInJsxElement<TName>]: {
|
509
|
+
type: import("vue").PropType<(value: any[]) => any>;
|
510
|
+
}; } & { [key_1 in import("../../DefineVueTypings").VModelKeyNameInJsxElement<TName>]: {
|
511
|
+
type: import("vue").PropType<any[]>;
|
512
|
+
required: false;
|
513
|
+
}; } & { [key_2 in import("../../DefineVueTypings").VModelKeyNameInProps<TName>]: {
|
514
|
+
type: import("vue").PropType<any[]>;
|
515
|
+
required: false;
|
516
|
+
}; } & {
|
517
|
+
require(): import("../../DefineVueTypings").DefinePropModelRequire<TName, any[], {
|
518
|
+
"onUpdate:modelValue": {
|
519
|
+
type: import("vue").PropType<(value: any[]) => any>;
|
520
|
+
};
|
521
|
+
} & {
|
522
|
+
"v-model": {
|
523
|
+
type: import("vue").PropType<any[]>;
|
524
|
+
required: false;
|
525
|
+
};
|
526
|
+
} & {
|
527
|
+
modelValue: {
|
528
|
+
type: import("vue").PropType<any[]>;
|
529
|
+
required: false;
|
530
|
+
};
|
531
|
+
}>;
|
532
|
+
defaultValue(value?: any[]): import("../../DefineVueTypings").DefinePropModelDefaultValue<TName, any[], {
|
533
|
+
"onUpdate:modelValue": {
|
534
|
+
type: import("vue").PropType<(value: any[]) => any>;
|
535
|
+
};
|
536
|
+
} & {
|
537
|
+
"v-model": {
|
538
|
+
type: import("vue").PropType<any[]>;
|
539
|
+
required: false;
|
540
|
+
};
|
541
|
+
} & {
|
542
|
+
modelValue: {
|
543
|
+
type: import("vue").PropType<any[]>;
|
544
|
+
required: false;
|
545
|
+
};
|
546
|
+
}, false>;
|
547
|
+
doc$(description?: string): import("../../DefineVueTypings").DefinePropModelDoc<TName, any[], {
|
548
|
+
"onUpdate:modelValue": {
|
549
|
+
type: import("vue").PropType<(value: any[]) => any>;
|
550
|
+
};
|
551
|
+
} & {
|
552
|
+
"v-model": {
|
553
|
+
type: import("vue").PropType<any[]>;
|
554
|
+
required: false;
|
555
|
+
};
|
556
|
+
} & {
|
557
|
+
modelValue: {
|
558
|
+
type: import("vue").PropType<any[]>;
|
559
|
+
required: false;
|
560
|
+
};
|
561
|
+
}>;
|
562
|
+
};
|
563
|
+
height: {
|
564
|
+
type: import("vue").PropType<string | number>;
|
565
|
+
};
|
566
|
+
showExpand: {
|
567
|
+
type: import("vue").PropType<boolean>;
|
568
|
+
required: false;
|
569
|
+
};
|
570
|
+
expanded: {
|
325
571
|
type: import("vue").PropType<string[]>;
|
326
572
|
required: false;
|
327
573
|
};
|
@@ -399,10 +645,12 @@ declare const _default: {
|
|
399
645
|
blueprintType?: any;
|
400
646
|
blueprint?: any;
|
401
647
|
}>> & {
|
648
|
+
"onUpdate:modelValue"?: (value: any[]) => any;
|
402
649
|
onDoc$?: (description?: string) => any;
|
403
650
|
"onUpdate:sortBy"?: (item: SortItem[]) => any;
|
404
651
|
"onUpdate:page"?: (page: number) => any;
|
405
|
-
|
652
|
+
"onUpdate:options"?: () => any;
|
653
|
+
} & import("vue").ShallowUnwrapRef<() => JSX.Element> & {} & import("vue").ComponentCustomProperties & {};
|
406
654
|
__isFragment?: never;
|
407
655
|
__isTeleport?: never;
|
408
656
|
__isSuspense?: never;
|
@@ -410,25 +658,84 @@ declare const _default: {
|
|
410
658
|
"v-slots": import("vue").Prop<{
|
411
659
|
default?: import("../../DefineVueTypings").Slot<any[]>;
|
412
660
|
} & ODataTableServerSlots>;
|
413
|
-
|
414
|
-
type: import("vue").PropType<
|
415
|
-
};
|
416
|
-
showExpand: {
|
417
|
-
type: import("vue").PropType<boolean>;
|
418
|
-
required: false;
|
419
|
-
};
|
420
|
-
expanded: {
|
421
|
-
type: import("vue").PropType<string[]>;
|
661
|
+
itemValue: {
|
662
|
+
type: import("vue").PropType<SelectItemKey>;
|
422
663
|
required: false;
|
423
664
|
};
|
424
665
|
"onUpdate:modelValue": {
|
425
|
-
type: import("vue").PropType<(value:
|
666
|
+
type: import("vue").PropType<(value: any[]) => any>;
|
426
667
|
};
|
427
668
|
"v-model": {
|
428
|
-
type: import("vue").PropType<
|
669
|
+
type: import("vue").PropType<any[]>;
|
429
670
|
required: false;
|
430
671
|
};
|
431
672
|
modelValue: {
|
673
|
+
type: import("vue").PropType<any[]>;
|
674
|
+
required: false;
|
675
|
+
};
|
676
|
+
name: <TName extends string>(n?: TName) => { [key in import("../../DefineVueTypings").VModelEmitsInJsxElement<TName>]: {
|
677
|
+
type: import("vue").PropType<(value: any[]) => any>;
|
678
|
+
}; } & { [key_1 in import("../../DefineVueTypings").VModelKeyNameInJsxElement<TName>]: {
|
679
|
+
type: import("vue").PropType<any[]>;
|
680
|
+
required: false;
|
681
|
+
}; } & { [key_2 in import("../../DefineVueTypings").VModelKeyNameInProps<TName>]: {
|
682
|
+
type: import("vue").PropType<any[]>;
|
683
|
+
required: false;
|
684
|
+
}; } & {
|
685
|
+
require(): import("../../DefineVueTypings").DefinePropModelRequire<TName, any[], {
|
686
|
+
"onUpdate:modelValue": {
|
687
|
+
type: import("vue").PropType<(value: any[]) => any>;
|
688
|
+
};
|
689
|
+
} & {
|
690
|
+
"v-model": {
|
691
|
+
type: import("vue").PropType<any[]>;
|
692
|
+
required: false;
|
693
|
+
};
|
694
|
+
} & {
|
695
|
+
modelValue: {
|
696
|
+
type: import("vue").PropType<any[]>;
|
697
|
+
required: false;
|
698
|
+
};
|
699
|
+
}>;
|
700
|
+
defaultValue(value?: any[]): import("../../DefineVueTypings").DefinePropModelDefaultValue<TName, any[], {
|
701
|
+
"onUpdate:modelValue": {
|
702
|
+
type: import("vue").PropType<(value: any[]) => any>;
|
703
|
+
};
|
704
|
+
} & {
|
705
|
+
"v-model": {
|
706
|
+
type: import("vue").PropType<any[]>;
|
707
|
+
required: false;
|
708
|
+
};
|
709
|
+
} & {
|
710
|
+
modelValue: {
|
711
|
+
type: import("vue").PropType<any[]>;
|
712
|
+
required: false;
|
713
|
+
};
|
714
|
+
}, false>;
|
715
|
+
doc$(description?: string): import("../../DefineVueTypings").DefinePropModelDoc<TName, any[], {
|
716
|
+
"onUpdate:modelValue": {
|
717
|
+
type: import("vue").PropType<(value: any[]) => any>;
|
718
|
+
};
|
719
|
+
} & {
|
720
|
+
"v-model": {
|
721
|
+
type: import("vue").PropType<any[]>;
|
722
|
+
required: false;
|
723
|
+
};
|
724
|
+
} & {
|
725
|
+
modelValue: {
|
726
|
+
type: import("vue").PropType<any[]>;
|
727
|
+
required: false;
|
728
|
+
};
|
729
|
+
}>;
|
730
|
+
};
|
731
|
+
height: {
|
732
|
+
type: import("vue").PropType<string | number>;
|
733
|
+
};
|
734
|
+
showExpand: {
|
735
|
+
type: import("vue").PropType<boolean>;
|
736
|
+
required: false;
|
737
|
+
};
|
738
|
+
expanded: {
|
432
739
|
type: import("vue").PropType<string[]>;
|
433
740
|
required: false;
|
434
741
|
};
|
@@ -506,14 +813,18 @@ declare const _default: {
|
|
506
813
|
blueprintType?: any;
|
507
814
|
blueprint?: any;
|
508
815
|
}>> & {
|
816
|
+
"onUpdate:modelValue"?: (value: any[]) => any;
|
509
817
|
onDoc$?: (description?: string) => any;
|
510
818
|
"onUpdate:sortBy"?: (item: SortItem[]) => any;
|
511
819
|
"onUpdate:page"?: (page: number) => any;
|
512
|
-
|
513
|
-
|
820
|
+
"onUpdate:options"?: () => any;
|
821
|
+
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
822
|
+
"update:modelValue": (value: any[]) => void;
|
514
823
|
doc$(description?: string): {
|
515
|
-
"update:
|
824
|
+
"update:modelValue": (value: any[]) => void;
|
516
825
|
};
|
826
|
+
"update:options": () => any;
|
827
|
+
"update:page": (page: number) => void;
|
517
828
|
"update:sortBy": (item: SortItem[]) => void;
|
518
829
|
}, string, {
|
519
830
|
container?: any;
|
@@ -530,17 +841,79 @@ declare const _default: {
|
|
530
841
|
colors?: any;
|
531
842
|
} & {
|
532
843
|
headers?: DataTableHeader[] | DataTableHeader[][];
|
844
|
+
name?: {
|
845
|
+
[x: `onUpdate:${string}`]: {
|
846
|
+
type: import("vue").PropType<(value: any[]) => any>;
|
847
|
+
};
|
848
|
+
} & {
|
849
|
+
[x: `v-model:${string}`]: {
|
850
|
+
type: import("vue").PropType<any[]>;
|
851
|
+
required: false;
|
852
|
+
};
|
853
|
+
} & {
|
854
|
+
[x: string]: {
|
855
|
+
type: import("vue").PropType<any[]>;
|
856
|
+
required: false;
|
857
|
+
};
|
858
|
+
} & {
|
859
|
+
require(): import("../../DefineVueTypings").DefinePropModelRequire<string, any[], {
|
860
|
+
"onUpdate:modelValue": {
|
861
|
+
type: import("vue").PropType<(value: any[]) => any>;
|
862
|
+
};
|
863
|
+
} & {
|
864
|
+
"v-model": {
|
865
|
+
type: import("vue").PropType<any[]>;
|
866
|
+
required: false;
|
867
|
+
};
|
868
|
+
} & {
|
869
|
+
modelValue: {
|
870
|
+
type: import("vue").PropType<any[]>;
|
871
|
+
required: false;
|
872
|
+
};
|
873
|
+
}>;
|
874
|
+
defaultValue(value?: any[]): import("../../DefineVueTypings").DefinePropModelDefaultValue<string, any[], {
|
875
|
+
"onUpdate:modelValue": {
|
876
|
+
type: import("vue").PropType<(value: any[]) => any>;
|
877
|
+
};
|
878
|
+
} & {
|
879
|
+
"v-model": {
|
880
|
+
type: import("vue").PropType<any[]>;
|
881
|
+
required: false;
|
882
|
+
};
|
883
|
+
} & {
|
884
|
+
modelValue: {
|
885
|
+
type: import("vue").PropType<any[]>;
|
886
|
+
required: false;
|
887
|
+
};
|
888
|
+
}, false>;
|
889
|
+
doc$(description?: string): import("../../DefineVueTypings").DefinePropModelDoc<string, any[], {
|
890
|
+
"onUpdate:modelValue": {
|
891
|
+
type: import("vue").PropType<(value: any[]) => any>;
|
892
|
+
};
|
893
|
+
} & {
|
894
|
+
"v-model": {
|
895
|
+
type: import("vue").PropType<any[]>;
|
896
|
+
required: false;
|
897
|
+
};
|
898
|
+
} & {
|
899
|
+
modelValue: {
|
900
|
+
type: import("vue").PropType<any[]>;
|
901
|
+
required: false;
|
902
|
+
};
|
903
|
+
}>;
|
904
|
+
};
|
533
905
|
height?: string | number;
|
534
906
|
page?: number;
|
535
907
|
expanded?: string[];
|
536
|
-
"onUpdate:modelValue"?: (value:
|
537
|
-
"v-model"?:
|
538
|
-
modelValue?:
|
908
|
+
"onUpdate:modelValue"?: (value: any[]) => any;
|
909
|
+
"v-model"?: any[];
|
910
|
+
modelValue?: any[];
|
539
911
|
items?: any[];
|
540
912
|
"v-slots"?: {
|
541
913
|
default?: import("../../DefineVueTypings").Slot<any[]>;
|
542
914
|
} & ODataTableServerSlots;
|
543
915
|
loading?: boolean;
|
916
|
+
itemValue?: SelectItemKey;
|
544
917
|
hover?: boolean;
|
545
918
|
sortBy?: SortItem[];
|
546
919
|
mustSort?: boolean;
|
@@ -556,10 +929,12 @@ declare const _default: {
|
|
556
929
|
"v-model:expanded"?: string[];
|
557
930
|
"v-model:sortBy"?: SortItem[];
|
558
931
|
"v-model:page"?: number;
|
559
|
-
}>, "onDoc$" | "onUpdate:sortBy" | "onUpdate:page"> & {
|
932
|
+
}>, "onUpdate:modelValue" | "onDoc$" | "onUpdate:sortBy" | "onUpdate:page" | "onUpdate:options"> & {
|
933
|
+
"onUpdate:modelValue"?: (value: any[]) => any;
|
560
934
|
onDoc$?: (description?: string) => any;
|
561
935
|
"onUpdate:sortBy"?: (item: SortItem[]) => any;
|
562
936
|
"onUpdate:page"?: (page: number) => any;
|
937
|
+
"onUpdate:options"?: () => any;
|
563
938
|
};
|
564
939
|
};
|
565
940
|
export default _default;
|
package/internal-do-not-import-from-here/ux/properties/builtins/birthday/BirthdayDisplay.d.ts
CHANGED
@@ -2,8 +2,6 @@ import { BirthdayDisplayStyles } from "./BirthdayDisplay.css";
|
|
2
2
|
import { BirthdayDisplaySettings, BirthdayPropertyDefinition, BirthdayPropertyValue, IPropertyDisplayRenderer } from "@omnia/fx-models";
|
3
3
|
export type BirthdayDisplayProps = IPropertyDisplayRenderer<BirthdayPropertyDefinition> & {
|
4
4
|
styles: typeof BirthdayDisplayStyles;
|
5
|
-
} & {
|
6
|
-
"v-model": BirthdayPropertyValue;
|
7
5
|
};
|
8
6
|
declare const _default: {
|
9
7
|
new (...args: any[]): {
|
@@ -15,7 +13,6 @@ declare const _default: {
|
|
15
13
|
itemHeader: import("typestyle/lib/types").NestedCSSProperties;
|
16
14
|
item: import("typestyle/lib/types").NestedCSSProperties;
|
17
15
|
};
|
18
|
-
readonly "v-model"?: BirthdayPropertyValue;
|
19
16
|
readonly modelValue?: BirthdayPropertyValue;
|
20
17
|
readonly displaySettings?: BirthdayDisplaySettings;
|
21
18
|
readonly setupSettings?: never;
|
@@ -34,7 +31,6 @@ declare const _default: {
|
|
34
31
|
itemHeader: import("typestyle/lib/types").NestedCSSProperties;
|
35
32
|
item: import("typestyle/lib/types").NestedCSSProperties;
|
36
33
|
}>;
|
37
|
-
"v-model": import("vue").Prop<BirthdayPropertyValue, BirthdayPropertyValue>;
|
38
34
|
}>>, never>;
|
39
35
|
$attrs: {
|
40
36
|
[x: string]: unknown;
|
@@ -63,7 +59,6 @@ declare const _default: {
|
|
63
59
|
itemHeader: import("typestyle/lib/types").NestedCSSProperties;
|
64
60
|
item: import("typestyle/lib/types").NestedCSSProperties;
|
65
61
|
}>;
|
66
|
-
"v-model": import("vue").Prop<BirthdayPropertyValue, BirthdayPropertyValue>;
|
67
62
|
}>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & {
|
68
63
|
beforeCreate?: (() => void) | (() => void)[];
|
69
64
|
created?: (() => void) | (() => void)[];
|
@@ -98,7 +93,6 @@ declare const _default: {
|
|
98
93
|
itemHeader: import("typestyle/lib/types").NestedCSSProperties;
|
99
94
|
item: import("typestyle/lib/types").NestedCSSProperties;
|
100
95
|
}>;
|
101
|
-
"v-model": import("vue").Prop<BirthdayPropertyValue, BirthdayPropertyValue>;
|
102
96
|
}>> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {};
|
103
97
|
__isFragment?: never;
|
104
98
|
__isTeleport?: never;
|
@@ -117,7 +111,6 @@ declare const _default: {
|
|
117
111
|
itemHeader: import("typestyle/lib/types").NestedCSSProperties;
|
118
112
|
item: import("typestyle/lib/types").NestedCSSProperties;
|
119
113
|
}>;
|
120
|
-
"v-model": import("vue").Prop<BirthdayPropertyValue, BirthdayPropertyValue>;
|
121
114
|
}>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
122
115
|
propsDefinition: Omit<Readonly<{} & {
|
123
116
|
styles?: {
|
@@ -125,7 +118,6 @@ declare const _default: {
|
|
125
118
|
itemHeader: import("typestyle/lib/types").NestedCSSProperties;
|
126
119
|
item: import("typestyle/lib/types").NestedCSSProperties;
|
127
120
|
};
|
128
|
-
"v-model"?: BirthdayPropertyValue;
|
129
121
|
modelValue?: BirthdayPropertyValue;
|
130
122
|
displaySettings?: BirthdayDisplaySettings;
|
131
123
|
setupSettings?: never;
|
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.51-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.51-dev",
|
24
24
|
"@microsoft/signalr": "6.0.1",
|
25
25
|
"broadcast-channel": "4.8.0",
|
26
26
|
"dayjs": "1.10.7",
|