@omnia/fx 8.0.153-dev → 8.0.154-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/journey/JourneyBlade.d.ts +27 -1
- package/internal-do-not-import-from-here/ux/journey/use/UseBlade.d.ts +3 -7
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/BlockSettingsPanel.d.ts +54 -15
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/SettingsPanel.d.ts +54 -15
- package/internal-do-not-import-from-here/ux/oxide/datepicker/DateTimePicker.d.ts +342 -0
- package/internal-do-not-import-from-here/ux/oxide/scrollcontainer/ScrollContainer.d.ts +2 -2
- package/package.json +2 -2
@@ -1,5 +1,5 @@
|
|
1
1
|
import { Func, GuidValue, IIcon } from "@omnia/fx-models";
|
2
|
-
import { ConfirmDialogOptions } from "@omnia/fx/ux";
|
2
|
+
import { ConfirmDialogOptions, useJourneyStore } from "@omnia/fx/ux";
|
3
3
|
import { VNodeChild } from "vue";
|
4
4
|
export interface switchValue {
|
5
5
|
value: boolean;
|
@@ -143,6 +143,12 @@ declare const JourneyBladeComponent: {
|
|
143
143
|
} & {
|
144
144
|
type: import("vue").PropType<string>;
|
145
145
|
};
|
146
|
+
"get-api": {
|
147
|
+
type: import("vue").PropType<(store: ReturnType<typeof useJourneyStore>) => void>;
|
148
|
+
};
|
149
|
+
getApi: {
|
150
|
+
type: import("vue").PropType<(store: ReturnType<typeof useJourneyStore>) => void>;
|
151
|
+
};
|
146
152
|
}>> & {
|
147
153
|
"onClick:cancel"?: (id: GuidValue) => any;
|
148
154
|
onSearch?: (searchText: string) => any;
|
@@ -290,6 +296,12 @@ declare const JourneyBladeComponent: {
|
|
290
296
|
} & {
|
291
297
|
type: import("vue").PropType<string>;
|
292
298
|
};
|
299
|
+
"get-api": {
|
300
|
+
type: import("vue").PropType<(store: ReturnType<typeof useJourneyStore>) => void>;
|
301
|
+
};
|
302
|
+
getApi: {
|
303
|
+
type: import("vue").PropType<(store: ReturnType<typeof useJourneyStore>) => void>;
|
304
|
+
};
|
293
305
|
}>> & {
|
294
306
|
"onClick:cancel"?: (id: GuidValue) => any;
|
295
307
|
onSearch?: (searchText: string) => any;
|
@@ -435,6 +447,12 @@ declare const JourneyBladeComponent: {
|
|
435
447
|
} & {
|
436
448
|
type: import("vue").PropType<string>;
|
437
449
|
};
|
450
|
+
"get-api": {
|
451
|
+
type: import("vue").PropType<(store: ReturnType<typeof useJourneyStore>) => void>;
|
452
|
+
};
|
453
|
+
getApi: {
|
454
|
+
type: import("vue").PropType<(store: ReturnType<typeof useJourneyStore>) => void>;
|
455
|
+
};
|
438
456
|
}>> & {
|
439
457
|
"onClick:cancel"?: (id: GuidValue) => any;
|
440
458
|
onSearch?: (searchText: string) => any;
|
@@ -577,6 +595,12 @@ declare const JourneyBladeComponent: {
|
|
577
595
|
} & {
|
578
596
|
type: import("vue").PropType<string>;
|
579
597
|
};
|
598
|
+
"get-api": {
|
599
|
+
type: import("vue").PropType<(store: ReturnType<typeof useJourneyStore>) => void>;
|
600
|
+
};
|
601
|
+
getApi: {
|
602
|
+
type: import("vue").PropType<(store: ReturnType<typeof useJourneyStore>) => void>;
|
603
|
+
};
|
580
604
|
}>> & {
|
581
605
|
"onClick:cancel"?: (id: GuidValue) => any;
|
582
606
|
onSearch?: (searchText: string) => any;
|
@@ -617,6 +641,8 @@ declare const JourneyBladeComponent: {
|
|
617
641
|
"sub-title"?: string;
|
618
642
|
create?: boolean;
|
619
643
|
ok?: boolean;
|
644
|
+
getApi?: (store: ReturnType<typeof useJourneyStore>) => void;
|
645
|
+
"get-api"?: (store: ReturnType<typeof useJourneyStore>) => void;
|
620
646
|
loading?: boolean;
|
621
647
|
searchable?: boolean;
|
622
648
|
onOk?: () => boolean | Promise<boolean>;
|
@@ -16,13 +16,9 @@ export declare function useBlade<T extends JourneyBladeRouter>(bladeId: GuidValu
|
|
16
16
|
moveNext(): void;
|
17
17
|
movePrev(): void;
|
18
18
|
travelTo(toBladeId: GuidValue): void;
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
};
|
23
|
-
defineValueToSave<T_2>(value?: T_2): {
|
24
|
-
value: T_2;
|
25
|
-
setValue: (value: T_2) => void;
|
19
|
+
defineValueToSave<T_1>(value?: T_1): {
|
20
|
+
value: T_1;
|
21
|
+
setValue: (value: T_1) => void;
|
26
22
|
};
|
27
23
|
};
|
28
24
|
export {};
|
package/internal-do-not-import-from-here/ux/layoutcanvas/editor/settings/BlockSettingsPanel.d.ts
CHANGED
@@ -1,16 +1,55 @@
|
|
1
|
-
declare const _default: {
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
}
|
14
|
-
|
15
|
-
|
1
|
+
declare const _default: (props: {
|
2
|
+
[x: string]: any;
|
3
|
+
} & Omit<{}, string | number> & {
|
4
|
+
"v-slots"?: {
|
5
|
+
default?: import("vue").Slot;
|
6
|
+
} & {};
|
7
|
+
} & Omit<import("../../..").VueComponentBaseProps, string>) => {
|
8
|
+
$: import("vue").ComponentInternalInstance;
|
9
|
+
$data: {};
|
10
|
+
$props: {};
|
11
|
+
$attrs: {
|
12
|
+
[x: string]: unknown;
|
13
|
+
};
|
14
|
+
$refs: {
|
15
|
+
[x: string]: unknown;
|
16
|
+
};
|
17
|
+
$slots: Readonly<{
|
18
|
+
[name: string]: import("vue").Slot<any>;
|
19
|
+
}>;
|
20
|
+
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
21
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
22
|
+
$emit: (event: string, ...args: any[]) => void;
|
23
|
+
$el: any;
|
24
|
+
$options: import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}> & {
|
25
|
+
beforeCreate?: (() => void) | (() => void)[];
|
26
|
+
created?: (() => void) | (() => void)[];
|
27
|
+
beforeMount?: (() => void) | (() => void)[];
|
28
|
+
mounted?: (() => void) | (() => void)[];
|
29
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
30
|
+
updated?: (() => void) | (() => void)[];
|
31
|
+
activated?: (() => void) | (() => void)[];
|
32
|
+
deactivated?: (() => void) | (() => void)[];
|
33
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
34
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
35
|
+
destroyed?: (() => void) | (() => void)[];
|
36
|
+
unmounted?: (() => void) | (() => void)[];
|
37
|
+
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
38
|
+
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
39
|
+
errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>, info: string) => boolean | void)[];
|
40
|
+
};
|
41
|
+
$forceUpdate: () => void;
|
42
|
+
$nextTick: typeof import("vue").nextTick;
|
43
|
+
$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;
|
44
|
+
} & Omit<{}, never> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {} & {
|
45
|
+
propsDefinition: {
|
46
|
+
[x: string]: any;
|
47
|
+
} & {
|
48
|
+
"v-slots"?: {
|
49
|
+
default?: import("vue").Slot;
|
50
|
+
} & {};
|
51
|
+
} & {} & Omit<import("../../..").VueComponentBaseProps, string | number>;
|
52
|
+
} & import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
53
|
+
[key: string]: any;
|
54
|
+
}>;
|
16
55
|
export default _default;
|
@@ -1,16 +1,55 @@
|
|
1
|
-
declare const _default: {
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
}
|
14
|
-
|
15
|
-
|
1
|
+
declare const _default: (props: {
|
2
|
+
[x: string]: any;
|
3
|
+
} & Omit<{}, string | number> & {
|
4
|
+
"v-slots"?: {
|
5
|
+
default?: import("vue").Slot;
|
6
|
+
} & {};
|
7
|
+
} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, string>) => {
|
8
|
+
$: import("vue").ComponentInternalInstance;
|
9
|
+
$data: {};
|
10
|
+
$props: {};
|
11
|
+
$attrs: {
|
12
|
+
[x: string]: unknown;
|
13
|
+
};
|
14
|
+
$refs: {
|
15
|
+
[x: string]: unknown;
|
16
|
+
};
|
17
|
+
$slots: Readonly<{
|
18
|
+
[name: string]: import("vue").Slot<any>;
|
19
|
+
}>;
|
20
|
+
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
21
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
22
|
+
$emit: (event: string, ...args: any[]) => void;
|
23
|
+
$el: any;
|
24
|
+
$options: import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}> & {
|
25
|
+
beforeCreate?: (() => void) | (() => void)[];
|
26
|
+
created?: (() => void) | (() => void)[];
|
27
|
+
beforeMount?: (() => void) | (() => void)[];
|
28
|
+
mounted?: (() => void) | (() => void)[];
|
29
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
30
|
+
updated?: (() => void) | (() => void)[];
|
31
|
+
activated?: (() => void) | (() => void)[];
|
32
|
+
deactivated?: (() => void) | (() => void)[];
|
33
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
34
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
35
|
+
destroyed?: (() => void) | (() => void)[];
|
36
|
+
unmounted?: (() => void) | (() => void)[];
|
37
|
+
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
38
|
+
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
39
|
+
errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>, info: string) => boolean | void)[];
|
40
|
+
};
|
41
|
+
$forceUpdate: () => void;
|
42
|
+
$nextTick: typeof import("vue").nextTick;
|
43
|
+
$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;
|
44
|
+
} & Omit<{}, never> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {} & {
|
45
|
+
propsDefinition: {
|
46
|
+
[x: string]: any;
|
47
|
+
} & {
|
48
|
+
"v-slots"?: {
|
49
|
+
default?: import("vue").Slot;
|
50
|
+
} & {};
|
51
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, string | number>;
|
52
|
+
} & import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
53
|
+
[key: string]: any;
|
54
|
+
}>;
|
16
55
|
export default _default;
|
@@ -0,0 +1,342 @@
|
|
1
|
+
declare const _default: {
|
2
|
+
new (...args: any[]): import("vue").CreateComponentPublicInstance<Readonly<import("vue").ExtractPropTypes<{
|
3
|
+
"v-slots": import("vue").Prop<{
|
4
|
+
default?: import("../../DefineVueTypings").Slot<any[]>;
|
5
|
+
} & {
|
6
|
+
actions?: () => JSX.Element | JSX.Element[];
|
7
|
+
}>;
|
8
|
+
position: {
|
9
|
+
type: import("vue").PropType<"fixed" | "absolute" | "relative" | "static" | "sticky">;
|
10
|
+
} & {
|
11
|
+
type: import("vue").PropType<"fixed" | "absolute" | "relative" | "static" | "sticky">;
|
12
|
+
};
|
13
|
+
location: {
|
14
|
+
type: import("vue").PropType<Anchor>;
|
15
|
+
} & {
|
16
|
+
type: import("vue").PropType<Anchor>;
|
17
|
+
};
|
18
|
+
"allowed-dates": {
|
19
|
+
type: import("vue").PropType<unknown[] | ((date: unknown) => boolean)>;
|
20
|
+
};
|
21
|
+
allowedDates: {
|
22
|
+
type: import("vue").PropType<unknown[] | ((date: unknown) => boolean)>;
|
23
|
+
};
|
24
|
+
inputMode: {
|
25
|
+
type: import("vue").PropType<"keyboard" | "calendar">;
|
26
|
+
required: false;
|
27
|
+
};
|
28
|
+
"input-mode": {
|
29
|
+
type: import("vue").PropType<"keyboard" | "calendar">;
|
30
|
+
required: false;
|
31
|
+
};
|
32
|
+
locale: {
|
33
|
+
type: import("vue").PropType<string>;
|
34
|
+
} & {
|
35
|
+
type: import("vue").PropType<string>;
|
36
|
+
};
|
37
|
+
showWeek: {
|
38
|
+
type: import("vue").PropType<boolean>;
|
39
|
+
required: false;
|
40
|
+
};
|
41
|
+
"show-week": {
|
42
|
+
type: import("vue").PropType<boolean>;
|
43
|
+
required: false;
|
44
|
+
};
|
45
|
+
showAdjacentMonths: {
|
46
|
+
type: import("vue").PropType<boolean>;
|
47
|
+
required: false;
|
48
|
+
};
|
49
|
+
"show-adjacent-months": {
|
50
|
+
type: import("vue").PropType<boolean>;
|
51
|
+
required: false;
|
52
|
+
};
|
53
|
+
disabled: {
|
54
|
+
type: import("vue").PropType<boolean>;
|
55
|
+
required: false;
|
56
|
+
} & {
|
57
|
+
type: import("vue").PropType<boolean>;
|
58
|
+
required: false;
|
59
|
+
};
|
60
|
+
range: {
|
61
|
+
type: import("vue").PropType<boolean>;
|
62
|
+
required: false;
|
63
|
+
} & {
|
64
|
+
type: import("vue").PropType<boolean>;
|
65
|
+
required: false;
|
66
|
+
};
|
67
|
+
"onUpdate:modelValue": {
|
68
|
+
type: import("vue").PropType<(value: Date | Date[]) => any>;
|
69
|
+
};
|
70
|
+
"v-model": {
|
71
|
+
type: import("vue").PropType<Date | Date[]>;
|
72
|
+
required: false;
|
73
|
+
};
|
74
|
+
modelValue: {
|
75
|
+
type: import("vue").PropType<Date | Date[]>;
|
76
|
+
required: false;
|
77
|
+
};
|
78
|
+
}>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
79
|
+
"v-slots": import("vue").Prop<{
|
80
|
+
default?: import("../../DefineVueTypings").Slot<any[]>;
|
81
|
+
} & {
|
82
|
+
actions?: () => JSX.Element | JSX.Element[];
|
83
|
+
}>;
|
84
|
+
position: {
|
85
|
+
type: import("vue").PropType<"fixed" | "absolute" | "relative" | "static" | "sticky">;
|
86
|
+
} & {
|
87
|
+
type: import("vue").PropType<"fixed" | "absolute" | "relative" | "static" | "sticky">;
|
88
|
+
};
|
89
|
+
location: {
|
90
|
+
type: import("vue").PropType<Anchor>;
|
91
|
+
} & {
|
92
|
+
type: import("vue").PropType<Anchor>;
|
93
|
+
};
|
94
|
+
"allowed-dates": {
|
95
|
+
type: import("vue").PropType<unknown[] | ((date: unknown) => boolean)>;
|
96
|
+
};
|
97
|
+
allowedDates: {
|
98
|
+
type: import("vue").PropType<unknown[] | ((date: unknown) => boolean)>;
|
99
|
+
};
|
100
|
+
inputMode: {
|
101
|
+
type: import("vue").PropType<"keyboard" | "calendar">;
|
102
|
+
required: false;
|
103
|
+
};
|
104
|
+
"input-mode": {
|
105
|
+
type: import("vue").PropType<"keyboard" | "calendar">;
|
106
|
+
required: false;
|
107
|
+
};
|
108
|
+
locale: {
|
109
|
+
type: import("vue").PropType<string>;
|
110
|
+
} & {
|
111
|
+
type: import("vue").PropType<string>;
|
112
|
+
};
|
113
|
+
showWeek: {
|
114
|
+
type: import("vue").PropType<boolean>;
|
115
|
+
required: false;
|
116
|
+
};
|
117
|
+
"show-week": {
|
118
|
+
type: import("vue").PropType<boolean>;
|
119
|
+
required: false;
|
120
|
+
};
|
121
|
+
showAdjacentMonths: {
|
122
|
+
type: import("vue").PropType<boolean>;
|
123
|
+
required: false;
|
124
|
+
};
|
125
|
+
"show-adjacent-months": {
|
126
|
+
type: import("vue").PropType<boolean>;
|
127
|
+
required: false;
|
128
|
+
};
|
129
|
+
disabled: {
|
130
|
+
type: import("vue").PropType<boolean>;
|
131
|
+
required: false;
|
132
|
+
} & {
|
133
|
+
type: import("vue").PropType<boolean>;
|
134
|
+
required: false;
|
135
|
+
};
|
136
|
+
range: {
|
137
|
+
type: import("vue").PropType<boolean>;
|
138
|
+
required: false;
|
139
|
+
} & {
|
140
|
+
type: import("vue").PropType<boolean>;
|
141
|
+
required: false;
|
142
|
+
};
|
143
|
+
"onUpdate:modelValue": {
|
144
|
+
type: import("vue").PropType<(value: Date | Date[]) => any>;
|
145
|
+
};
|
146
|
+
"v-model": {
|
147
|
+
type: import("vue").PropType<Date | Date[]>;
|
148
|
+
required: false;
|
149
|
+
};
|
150
|
+
modelValue: {
|
151
|
+
type: import("vue").PropType<Date | Date[]>;
|
152
|
+
required: false;
|
153
|
+
};
|
154
|
+
}>>, {}, true, {}, {}, {
|
155
|
+
P: {};
|
156
|
+
B: {};
|
157
|
+
D: {};
|
158
|
+
C: {};
|
159
|
+
M: {};
|
160
|
+
Defaults: {};
|
161
|
+
}, Readonly<import("vue").ExtractPropTypes<{
|
162
|
+
"v-slots": import("vue").Prop<{
|
163
|
+
default?: import("../../DefineVueTypings").Slot<any[]>;
|
164
|
+
} & {
|
165
|
+
actions?: () => JSX.Element | JSX.Element[];
|
166
|
+
}>;
|
167
|
+
position: {
|
168
|
+
type: import("vue").PropType<"fixed" | "absolute" | "relative" | "static" | "sticky">;
|
169
|
+
} & {
|
170
|
+
type: import("vue").PropType<"fixed" | "absolute" | "relative" | "static" | "sticky">;
|
171
|
+
};
|
172
|
+
location: {
|
173
|
+
type: import("vue").PropType<Anchor>;
|
174
|
+
} & {
|
175
|
+
type: import("vue").PropType<Anchor>;
|
176
|
+
};
|
177
|
+
"allowed-dates": {
|
178
|
+
type: import("vue").PropType<unknown[] | ((date: unknown) => boolean)>;
|
179
|
+
};
|
180
|
+
allowedDates: {
|
181
|
+
type: import("vue").PropType<unknown[] | ((date: unknown) => boolean)>;
|
182
|
+
};
|
183
|
+
inputMode: {
|
184
|
+
type: import("vue").PropType<"keyboard" | "calendar">;
|
185
|
+
required: false;
|
186
|
+
};
|
187
|
+
"input-mode": {
|
188
|
+
type: import("vue").PropType<"keyboard" | "calendar">;
|
189
|
+
required: false;
|
190
|
+
};
|
191
|
+
locale: {
|
192
|
+
type: import("vue").PropType<string>;
|
193
|
+
} & {
|
194
|
+
type: import("vue").PropType<string>;
|
195
|
+
};
|
196
|
+
showWeek: {
|
197
|
+
type: import("vue").PropType<boolean>;
|
198
|
+
required: false;
|
199
|
+
};
|
200
|
+
"show-week": {
|
201
|
+
type: import("vue").PropType<boolean>;
|
202
|
+
required: false;
|
203
|
+
};
|
204
|
+
showAdjacentMonths: {
|
205
|
+
type: import("vue").PropType<boolean>;
|
206
|
+
required: false;
|
207
|
+
};
|
208
|
+
"show-adjacent-months": {
|
209
|
+
type: import("vue").PropType<boolean>;
|
210
|
+
required: false;
|
211
|
+
};
|
212
|
+
disabled: {
|
213
|
+
type: import("vue").PropType<boolean>;
|
214
|
+
required: false;
|
215
|
+
} & {
|
216
|
+
type: import("vue").PropType<boolean>;
|
217
|
+
required: false;
|
218
|
+
};
|
219
|
+
range: {
|
220
|
+
type: import("vue").PropType<boolean>;
|
221
|
+
required: false;
|
222
|
+
} & {
|
223
|
+
type: import("vue").PropType<boolean>;
|
224
|
+
required: false;
|
225
|
+
};
|
226
|
+
"onUpdate:modelValue": {
|
227
|
+
type: import("vue").PropType<(value: Date | Date[]) => any>;
|
228
|
+
};
|
229
|
+
"v-model": {
|
230
|
+
type: import("vue").PropType<Date | Date[]>;
|
231
|
+
required: false;
|
232
|
+
};
|
233
|
+
modelValue: {
|
234
|
+
type: import("vue").PropType<Date | Date[]>;
|
235
|
+
required: false;
|
236
|
+
};
|
237
|
+
}>>, () => JSX.Element, {}, {}, {}, {}>;
|
238
|
+
__isFragment?: never;
|
239
|
+
__isTeleport?: never;
|
240
|
+
__isSuspense?: never;
|
241
|
+
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
242
|
+
"v-slots": import("vue").Prop<{
|
243
|
+
default?: import("../../DefineVueTypings").Slot<any[]>;
|
244
|
+
} & {
|
245
|
+
actions?: () => JSX.Element | JSX.Element[];
|
246
|
+
}>;
|
247
|
+
position: {
|
248
|
+
type: import("vue").PropType<"fixed" | "absolute" | "relative" | "static" | "sticky">;
|
249
|
+
} & {
|
250
|
+
type: import("vue").PropType<"fixed" | "absolute" | "relative" | "static" | "sticky">;
|
251
|
+
};
|
252
|
+
location: {
|
253
|
+
type: import("vue").PropType<Anchor>;
|
254
|
+
} & {
|
255
|
+
type: import("vue").PropType<Anchor>;
|
256
|
+
};
|
257
|
+
"allowed-dates": {
|
258
|
+
type: import("vue").PropType<unknown[] | ((date: unknown) => boolean)>;
|
259
|
+
};
|
260
|
+
allowedDates: {
|
261
|
+
type: import("vue").PropType<unknown[] | ((date: unknown) => boolean)>;
|
262
|
+
};
|
263
|
+
inputMode: {
|
264
|
+
type: import("vue").PropType<"keyboard" | "calendar">;
|
265
|
+
required: false;
|
266
|
+
};
|
267
|
+
"input-mode": {
|
268
|
+
type: import("vue").PropType<"keyboard" | "calendar">;
|
269
|
+
required: false;
|
270
|
+
};
|
271
|
+
locale: {
|
272
|
+
type: import("vue").PropType<string>;
|
273
|
+
} & {
|
274
|
+
type: import("vue").PropType<string>;
|
275
|
+
};
|
276
|
+
showWeek: {
|
277
|
+
type: import("vue").PropType<boolean>;
|
278
|
+
required: false;
|
279
|
+
};
|
280
|
+
"show-week": {
|
281
|
+
type: import("vue").PropType<boolean>;
|
282
|
+
required: false;
|
283
|
+
};
|
284
|
+
showAdjacentMonths: {
|
285
|
+
type: import("vue").PropType<boolean>;
|
286
|
+
required: false;
|
287
|
+
};
|
288
|
+
"show-adjacent-months": {
|
289
|
+
type: import("vue").PropType<boolean>;
|
290
|
+
required: false;
|
291
|
+
};
|
292
|
+
disabled: {
|
293
|
+
type: import("vue").PropType<boolean>;
|
294
|
+
required: false;
|
295
|
+
} & {
|
296
|
+
type: import("vue").PropType<boolean>;
|
297
|
+
required: false;
|
298
|
+
};
|
299
|
+
range: {
|
300
|
+
type: import("vue").PropType<boolean>;
|
301
|
+
required: false;
|
302
|
+
} & {
|
303
|
+
type: import("vue").PropType<boolean>;
|
304
|
+
required: false;
|
305
|
+
};
|
306
|
+
"onUpdate:modelValue": {
|
307
|
+
type: import("vue").PropType<(value: Date | Date[]) => any>;
|
308
|
+
};
|
309
|
+
"v-model": {
|
310
|
+
type: import("vue").PropType<Date | Date[]>;
|
311
|
+
required: false;
|
312
|
+
};
|
313
|
+
modelValue: {
|
314
|
+
type: import("vue").PropType<Date | Date[]>;
|
315
|
+
required: false;
|
316
|
+
};
|
317
|
+
}>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
318
|
+
propsDefinition: Omit<Readonly<{} & {
|
319
|
+
position?: "fixed" | "absolute" | "relative" | "static" | "sticky";
|
320
|
+
range?: boolean;
|
321
|
+
disabled?: boolean;
|
322
|
+
"v-model"?: Date | Date[];
|
323
|
+
"onUpdate:modelValue"?: (value: Date | Date[]) => any;
|
324
|
+
modelValue?: Date | Date[];
|
325
|
+
"v-slots"?: {
|
326
|
+
default?: import("../../DefineVueTypings").Slot<any[]>;
|
327
|
+
} & {
|
328
|
+
actions?: () => JSX.Element | JSX.Element[];
|
329
|
+
};
|
330
|
+
inputMode?: "keyboard" | "calendar";
|
331
|
+
location?: Anchor;
|
332
|
+
locale?: string;
|
333
|
+
showAdjacentMonths?: boolean;
|
334
|
+
"show-adjacent-months"?: boolean;
|
335
|
+
showWeek?: boolean;
|
336
|
+
"show-week"?: boolean;
|
337
|
+
"input-mode"?: "keyboard" | "calendar";
|
338
|
+
allowedDates?: unknown[] | ((date: unknown) => boolean);
|
339
|
+
"allowed-dates"?: unknown[] | ((date: unknown) => boolean);
|
340
|
+
}>, never>;
|
341
|
+
};
|
342
|
+
export default _default;
|
@@ -223,11 +223,11 @@ declare const _default: {
|
|
223
223
|
width?: string;
|
224
224
|
filled?: boolean;
|
225
225
|
toned?: boolean;
|
226
|
+
getApi?: (store: ReturnType<typeof useScrollContainerStore>) => void;
|
227
|
+
"get-api"?: (store: ReturnType<typeof useScrollContainerStore>) => void;
|
226
228
|
disableScrolling?: boolean;
|
227
229
|
scrolling?: OScrollTypesCombination;
|
228
230
|
"disable-scrolling"?: boolean;
|
229
|
-
getApi?: (store: ReturnType<typeof useScrollContainerStore>) => void;
|
230
|
-
"get-api"?: (store: ReturnType<typeof useScrollContainerStore>) => void;
|
231
231
|
}>, never>;
|
232
232
|
};
|
233
233
|
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.
|
4
|
+
"version": "8.0.154-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.154-dev",
|
24
24
|
"@microsoft/signalr": "6.0.1",
|
25
25
|
"broadcast-channel": "4.8.0",
|
26
26
|
"dayjs": "1.11.7",
|