@omnia/fx 8.0.241-dev → 8.0.243-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/manifests/omnia.fx.manifest.json +1 -1
- package/internal-do-not-import-from-here/manifests/omnia.fx.ux.manifest.json +1 -1
- package/internal-do-not-import-from-here/stores/markdown/MarkdownPluginStore.d.ts +41 -0
- package/internal-do-not-import-from-here/stores/markdown/index.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/DefineVueTypings.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/admin/usermanagement/authentication/models/LoginProvidersFactory.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/journey/DefineBlade.d.ts +3 -7
- package/internal-do-not-import-from-here/ux/journey/stores/JourneyStore.d.ts +6 -18
- package/internal-do-not-import-from-here/ux/markdown/MarkdownEditor.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/markdown/MarkdownEditor_bak.d.ts +0 -498
- package/internal-do-not-import-from-here/ux/markdown/plugins/CodeMarkdownRenderer.d.ts +0 -3
- package/internal-do-not-import-from-here/ux/markdown/plugins/VelcronMarkdownRenderer.d.ts +0 -3
- package/internal-do-not-import-from-here/ux/markdown/plugins/themestyling/ColorButton.d.ts +0 -57
- package/internal-do-not-import-from-here/ux/markdown/plugins/themestyling/ThemeStylingPlugin.d.ts +0 -3
- package/internal-do-not-import-from-here/ux/markdown/plugins/themestyling/TypographyButton.d.ts +0 -57
- package/internal-do-not-import-from-here/{stores/markdown → ux/markdown/stores}/MarkdownEditorStore.d.ts +3 -3
- package/internal-do-not-import-from-here/ux/markdown2/MarkdownEditorFuture.d.ts +6 -1
- package/internal-do-not-import-from-here/ux/markdown2/PluginRegistrationHandler.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/markdown2/plugins/registrations/PluginRegistrations.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/markdown2/stores/MarkdownStore.d.ts +5 -5
- package/internal-do-not-import-from-here/ux/markdown2/stores/MarkdownToolbarStore.d.ts +20 -20
- package/internal-do-not-import-from-here/ux/mediagallery/view/PhotoWallWithSliderDisplayRenderer.d.ts +5 -1
- package/internal-do-not-import-from-here/ux/mediapickervideo/MediaPickerVideo.d.ts +5 -1
- package/internal-do-not-import-from-here/ux/{admin/usermanagement/self-service/DetailBlade.d.ts → mediarenderer/MediaRendererComponentBase.d.ts} +7 -3
- package/internal-do-not-import-from-here/ux/mediarenderer/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/calendar/Calendar.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/oxide/datatable/DataTable.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/oxide/draggable/Draggable.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/oxide/fab/FloatingActionButton..d.ts +1 -1
- package/internal-do-not-import-from-here/ux/oxide/inputfield/InputField.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/oxide/list/List.d.ts +3 -3
- package/internal-do-not-import-from-here/ux/oxide/panel/Panel.d.ts +44 -40
- package/internal-do-not-import-from-here/ux/oxide/speeddial/SpeedDial.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/use/UseDraggable.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/velcron/renderer/VelcronRenderer.d.ts +7 -7
- package/internal-do-not-import-from-here/ux/velcron/renderer/components/App.d.ts +6 -6
- package/package.json +2 -2
- package/internal-do-not-import-from-here/ux/admin/usermanagement/self-service/EditBlade.d.ts +0 -47
@@ -1,5 +1,6 @@
|
|
1
1
|
import { DefineEmit } from "@omnia/fx/ux";
|
2
2
|
import { useMarkdownStore } from "./stores/MarkdownStore";
|
3
|
+
import { MarkdownPluginSettings } from "@omnia/fx-models";
|
3
4
|
declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<{
|
4
5
|
"v-model"?: string;
|
5
6
|
} & {
|
@@ -14,6 +15,8 @@ declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<{
|
|
14
15
|
edit?: boolean;
|
15
16
|
} & {
|
16
17
|
getApi?: (store: ReturnType<typeof useMarkdownStore>) => void;
|
18
|
+
} & {
|
19
|
+
plugins?: MarkdownPluginSettings[];
|
17
20
|
} & DefineEmit<"update:modelValue", (value: string) => true>>) => {
|
18
21
|
$: import("vue").ComponentInternalInstance;
|
19
22
|
$data: {};
|
@@ -66,13 +69,15 @@ declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<{
|
|
66
69
|
edit?: boolean;
|
67
70
|
} & {
|
68
71
|
getApi?: (store: ReturnType<typeof useMarkdownStore>) => void;
|
72
|
+
} & {
|
73
|
+
plugins?: MarkdownPluginSettings[];
|
69
74
|
} & DefineEmit<"update:modelValue", (value: string) => true>> & {
|
70
75
|
"v-slots"?: {} & Omit<{
|
71
76
|
default?: import("vue").Slot;
|
72
77
|
}, never>;
|
73
78
|
} & {
|
74
79
|
"onUpdate:modelValue"?: (value: string) => any;
|
75
|
-
} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "toolbar" | "placeholder" | "edit" | "v-model" | "onUpdate:modelValue" | "modelValue" | "getApi">;
|
80
|
+
} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "toolbar" | "placeholder" | "edit" | "v-model" | "onUpdate:modelValue" | "modelValue" | "getApi" | "plugins">;
|
76
81
|
} & import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
77
82
|
[key: string]: any;
|
78
83
|
}>;
|
@@ -0,0 +1 @@
|
|
1
|
+
export {};
|
package/internal-do-not-import-from-here/ux/markdown2/plugins/registrations/PluginRegistrations.d.ts
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
export {};
|
@@ -1,4 +1,4 @@
|
|
1
|
-
import { MarkdownEditorActionRegistration } from "@omnia/fx-models";
|
1
|
+
import { MarkdownEditorActionRegistration, MarkdownPluginSettings } from "@omnia/fx-models";
|
2
2
|
import { MarkdownPlugin, MarkdownPluginContext } from "../models/MarkdownPlugin";
|
3
3
|
export declare const useMarkdownStore: () => {
|
4
4
|
state: {
|
@@ -22,7 +22,7 @@ export declare const useMarkdownStore: () => {
|
|
22
22
|
actions: {
|
23
23
|
onDispatching: {
|
24
24
|
registerPlugin: {
|
25
|
-
subscribe(fn: (
|
25
|
+
subscribe(fn: (pluginSettings: MarkdownPluginSettings) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
26
26
|
};
|
27
27
|
toHtml: {
|
28
28
|
subscribe(fn: (markdown: string) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
@@ -57,7 +57,7 @@ export declare const useMarkdownStore: () => {
|
|
57
57
|
};
|
58
58
|
onDispatched: {
|
59
59
|
registerPlugin: {
|
60
|
-
subscribe(fn: (result: void,
|
60
|
+
subscribe(fn: (result: void, pluginSettings: MarkdownPluginSettings) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
61
61
|
};
|
62
62
|
toHtml: {
|
63
63
|
subscribe(fn: (result: string, markdown: string) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
@@ -105,7 +105,7 @@ export declare const useMarkdownStore: () => {
|
|
105
105
|
};
|
106
106
|
onFailure: {
|
107
107
|
registerPlugin: {
|
108
|
-
subscribe(fn: (failureReason: any,
|
108
|
+
subscribe(fn: (failureReason: any, pluginSettings: MarkdownPluginSettings) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
109
109
|
};
|
110
110
|
toHtml: {
|
111
111
|
subscribe(fn: (failureReason: any, markdown: string) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
@@ -139,7 +139,7 @@ export declare const useMarkdownStore: () => {
|
|
139
139
|
};
|
140
140
|
};
|
141
141
|
} & {
|
142
|
-
registerPlugin: (
|
142
|
+
registerPlugin: (pluginSettings: MarkdownPluginSettings) => void;
|
143
143
|
toHtml: (markdown: string) => string;
|
144
144
|
toMarkdown: () => void;
|
145
145
|
setContent: (markdown: string) => void;
|
@@ -24,7 +24,7 @@ export declare const useMarkdownToolbarStore: () => {
|
|
24
24
|
actions: {
|
25
25
|
onDispatching: {
|
26
26
|
registerPlugin: {
|
27
|
-
subscribe(fn: (
|
27
|
+
subscribe(fn: (pluginSettings: import("@omnia/fx-models").MarkdownPluginSettings) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
28
28
|
};
|
29
29
|
toHtml: {
|
30
30
|
subscribe(fn: (markdown: string) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
@@ -59,7 +59,7 @@ export declare const useMarkdownToolbarStore: () => {
|
|
59
59
|
};
|
60
60
|
onDispatched: {
|
61
61
|
registerPlugin: {
|
62
|
-
subscribe(fn: (result: void,
|
62
|
+
subscribe(fn: (result: void, pluginSettings: import("@omnia/fx-models").MarkdownPluginSettings) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
63
63
|
};
|
64
64
|
toHtml: {
|
65
65
|
subscribe(fn: (result: string, markdown: string) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
@@ -107,7 +107,7 @@ export declare const useMarkdownToolbarStore: () => {
|
|
107
107
|
};
|
108
108
|
onFailure: {
|
109
109
|
registerPlugin: {
|
110
|
-
subscribe(fn: (failureReason: any,
|
110
|
+
subscribe(fn: (failureReason: any, pluginSettings: import("@omnia/fx-models").MarkdownPluginSettings) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
111
111
|
};
|
112
112
|
toHtml: {
|
113
113
|
subscribe(fn: (failureReason: any, markdown: string) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
@@ -141,7 +141,7 @@ export declare const useMarkdownToolbarStore: () => {
|
|
141
141
|
};
|
142
142
|
};
|
143
143
|
} & {
|
144
|
-
registerPlugin: (
|
144
|
+
registerPlugin: (pluginSettings: import("@omnia/fx-models").MarkdownPluginSettings) => void;
|
145
145
|
toHtml: (markdown: string) => string;
|
146
146
|
toMarkdown: () => void;
|
147
147
|
setContent: (markdown: string) => void;
|
@@ -196,7 +196,7 @@ export declare const useMarkdownToolbarStore: () => {
|
|
196
196
|
actions: {
|
197
197
|
onDispatching: {
|
198
198
|
registerPlugin: {
|
199
|
-
subscribe(fn: (
|
199
|
+
subscribe(fn: (pluginSettings: import("@omnia/fx-models").MarkdownPluginSettings) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
200
200
|
};
|
201
201
|
toHtml: {
|
202
202
|
subscribe(fn: (markdown: string) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
@@ -231,7 +231,7 @@ export declare const useMarkdownToolbarStore: () => {
|
|
231
231
|
};
|
232
232
|
onDispatched: {
|
233
233
|
registerPlugin: {
|
234
|
-
subscribe(fn: (result: void,
|
234
|
+
subscribe(fn: (result: void, pluginSettings: import("@omnia/fx-models").MarkdownPluginSettings) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
235
235
|
};
|
236
236
|
toHtml: {
|
237
237
|
subscribe(fn: (result: string, markdown: string) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
@@ -279,7 +279,7 @@ export declare const useMarkdownToolbarStore: () => {
|
|
279
279
|
};
|
280
280
|
onFailure: {
|
281
281
|
registerPlugin: {
|
282
|
-
subscribe(fn: (failureReason: any,
|
282
|
+
subscribe(fn: (failureReason: any, pluginSettings: import("@omnia/fx-models").MarkdownPluginSettings) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
283
283
|
};
|
284
284
|
toHtml: {
|
285
285
|
subscribe(fn: (failureReason: any, markdown: string) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
@@ -313,7 +313,7 @@ export declare const useMarkdownToolbarStore: () => {
|
|
313
313
|
};
|
314
314
|
};
|
315
315
|
} & {
|
316
|
-
registerPlugin: (
|
316
|
+
registerPlugin: (pluginSettings: import("@omnia/fx-models").MarkdownPluginSettings) => void;
|
317
317
|
toHtml: (markdown: string) => string;
|
318
318
|
toMarkdown: () => void;
|
319
319
|
setContent: (markdown: string) => void;
|
@@ -370,7 +370,7 @@ export declare const useMarkdownToolbarStore: () => {
|
|
370
370
|
actions: {
|
371
371
|
onDispatching: {
|
372
372
|
registerPlugin: {
|
373
|
-
subscribe(fn: (
|
373
|
+
subscribe(fn: (pluginSettings: import("@omnia/fx-models").MarkdownPluginSettings) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
374
374
|
};
|
375
375
|
toHtml: {
|
376
376
|
subscribe(fn: (markdown: string) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
@@ -405,7 +405,7 @@ export declare const useMarkdownToolbarStore: () => {
|
|
405
405
|
};
|
406
406
|
onDispatched: {
|
407
407
|
registerPlugin: {
|
408
|
-
subscribe(fn: (result: void,
|
408
|
+
subscribe(fn: (result: void, pluginSettings: import("@omnia/fx-models").MarkdownPluginSettings) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
409
409
|
};
|
410
410
|
toHtml: {
|
411
411
|
subscribe(fn: (result: string, markdown: string) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
@@ -453,7 +453,7 @@ export declare const useMarkdownToolbarStore: () => {
|
|
453
453
|
};
|
454
454
|
onFailure: {
|
455
455
|
registerPlugin: {
|
456
|
-
subscribe(fn: (failureReason: any,
|
456
|
+
subscribe(fn: (failureReason: any, pluginSettings: import("@omnia/fx-models").MarkdownPluginSettings) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
457
457
|
};
|
458
458
|
toHtml: {
|
459
459
|
subscribe(fn: (failureReason: any, markdown: string) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
@@ -487,7 +487,7 @@ export declare const useMarkdownToolbarStore: () => {
|
|
487
487
|
};
|
488
488
|
};
|
489
489
|
} & {
|
490
|
-
registerPlugin: (
|
490
|
+
registerPlugin: (pluginSettings: import("@omnia/fx-models").MarkdownPluginSettings) => void;
|
491
491
|
toHtml: (markdown: string) => string;
|
492
492
|
toMarkdown: () => void;
|
493
493
|
setContent: (markdown: string) => void;
|
@@ -545,7 +545,7 @@ export declare const useMarkdownToolbarStore: () => {
|
|
545
545
|
actions: {
|
546
546
|
onDispatching: {
|
547
547
|
registerPlugin: {
|
548
|
-
subscribe(fn: (
|
548
|
+
subscribe(fn: (pluginSettings: import("@omnia/fx-models").MarkdownPluginSettings) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
549
549
|
};
|
550
550
|
toHtml: {
|
551
551
|
subscribe(fn: (markdown: string) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
@@ -580,7 +580,7 @@ export declare const useMarkdownToolbarStore: () => {
|
|
580
580
|
};
|
581
581
|
onDispatched: {
|
582
582
|
registerPlugin: {
|
583
|
-
subscribe(fn: (result: void,
|
583
|
+
subscribe(fn: (result: void, pluginSettings: import("@omnia/fx-models").MarkdownPluginSettings) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
584
584
|
};
|
585
585
|
toHtml: {
|
586
586
|
subscribe(fn: (result: string, markdown: string) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
@@ -628,7 +628,7 @@ export declare const useMarkdownToolbarStore: () => {
|
|
628
628
|
};
|
629
629
|
onFailure: {
|
630
630
|
registerPlugin: {
|
631
|
-
subscribe(fn: (failureReason: any,
|
631
|
+
subscribe(fn: (failureReason: any, pluginSettings: import("@omnia/fx-models").MarkdownPluginSettings) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
632
632
|
};
|
633
633
|
toHtml: {
|
634
634
|
subscribe(fn: (failureReason: any, markdown: string) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
@@ -662,7 +662,7 @@ export declare const useMarkdownToolbarStore: () => {
|
|
662
662
|
};
|
663
663
|
};
|
664
664
|
} & {
|
665
|
-
registerPlugin: (
|
665
|
+
registerPlugin: (pluginSettings: import("@omnia/fx-models").MarkdownPluginSettings) => void;
|
666
666
|
toHtml: (markdown: string) => string;
|
667
667
|
toMarkdown: () => void;
|
668
668
|
setContent: (markdown: string) => void;
|
@@ -720,7 +720,7 @@ export declare const useMarkdownToolbarStore: () => {
|
|
720
720
|
actions: {
|
721
721
|
onDispatching: {
|
722
722
|
registerPlugin: {
|
723
|
-
subscribe(fn: (
|
723
|
+
subscribe(fn: (pluginSettings: import("@omnia/fx-models").MarkdownPluginSettings) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
724
724
|
};
|
725
725
|
toHtml: {
|
726
726
|
subscribe(fn: (markdown: string) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
@@ -755,7 +755,7 @@ export declare const useMarkdownToolbarStore: () => {
|
|
755
755
|
};
|
756
756
|
onDispatched: {
|
757
757
|
registerPlugin: {
|
758
|
-
subscribe(fn: (result: void,
|
758
|
+
subscribe(fn: (result: void, pluginSettings: import("@omnia/fx-models").MarkdownPluginSettings) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
759
759
|
};
|
760
760
|
toHtml: {
|
761
761
|
subscribe(fn: (result: string, markdown: string) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
@@ -803,7 +803,7 @@ export declare const useMarkdownToolbarStore: () => {
|
|
803
803
|
};
|
804
804
|
onFailure: {
|
805
805
|
registerPlugin: {
|
806
|
-
subscribe(fn: (failureReason: any,
|
806
|
+
subscribe(fn: (failureReason: any, pluginSettings: import("@omnia/fx-models").MarkdownPluginSettings) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
807
807
|
};
|
808
808
|
toHtml: {
|
809
809
|
subscribe(fn: (failureReason: any, markdown: string) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
@@ -837,7 +837,7 @@ export declare const useMarkdownToolbarStore: () => {
|
|
837
837
|
};
|
838
838
|
};
|
839
839
|
} & {
|
840
|
-
registerPlugin: (
|
840
|
+
registerPlugin: (pluginSettings: import("@omnia/fx-models").MarkdownPluginSettings) => void;
|
841
841
|
toHtml: (markdown: string) => string;
|
842
842
|
toMarkdown: () => void;
|
843
843
|
setContent: (markdown: string) => void;
|
@@ -7,6 +7,8 @@ declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<{
|
|
7
7
|
imageStyle?: string;
|
8
8
|
} & {
|
9
9
|
disableDialog?: boolean;
|
10
|
+
} & {
|
11
|
+
inlineMediaNodeDisplayData?: string;
|
10
12
|
}>) => {
|
11
13
|
$: import("vue").ComponentInternalInstance;
|
12
14
|
$data: {};
|
@@ -53,11 +55,13 @@ declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<{
|
|
53
55
|
imageStyle?: string;
|
54
56
|
} & {
|
55
57
|
disableDialog?: boolean;
|
58
|
+
} & {
|
59
|
+
inlineMediaNodeDisplayData?: string;
|
56
60
|
}> & {
|
57
61
|
"v-slots"?: {} & Omit<{
|
58
62
|
default?: import("vue").Slot;
|
59
63
|
}, never>;
|
60
|
-
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "media" | "imageStyle" | "disableDialog" | "mediaData">;
|
64
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "media" | "imageStyle" | "disableDialog" | "inlineMediaNodeDisplayData" | "mediaData">;
|
61
65
|
} & import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
62
66
|
[key: string]: any;
|
63
67
|
}>;
|
@@ -15,6 +15,8 @@ declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<{
|
|
15
15
|
thumbnailOnly?: boolean;
|
16
16
|
} & {
|
17
17
|
showCaption?: boolean;
|
18
|
+
} & {
|
19
|
+
inlineMediaNodeDisplayData?: string;
|
18
20
|
}>) => {
|
19
21
|
$: import("vue").ComponentInternalInstance;
|
20
22
|
$data: {};
|
@@ -69,11 +71,13 @@ declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<{
|
|
69
71
|
thumbnailOnly?: boolean;
|
70
72
|
} & {
|
71
73
|
showCaption?: boolean;
|
74
|
+
} & {
|
75
|
+
inlineMediaNodeDisplayData?: string;
|
72
76
|
}> & {
|
73
77
|
"v-slots"?: {} & Omit<{
|
74
78
|
default?: import("vue").Slot;
|
75
79
|
}, never>;
|
76
|
-
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "video" | "videoStyle" | "videodata" | "showCaption" | "containerClass" | "v-model:video" | "onUpdate:video" | "thumbnailOnly">;
|
80
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "video" | "videoStyle" | "inlineMediaNodeDisplayData" | "videodata" | "showCaption" | "containerClass" | "v-model:video" | "onUpdate:video" | "thumbnailOnly">;
|
77
81
|
} & import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
78
82
|
[key: string]: any;
|
79
83
|
}>;
|
@@ -1,4 +1,6 @@
|
|
1
|
-
declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<{
|
1
|
+
declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<{
|
2
|
+
inlineMediaNodeDisplayData?: string;
|
3
|
+
}>) => {
|
2
4
|
$: import("vue").ComponentInternalInstance;
|
3
5
|
$data: {};
|
4
6
|
$props: {};
|
@@ -36,11 +38,13 @@ declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<{
|
|
36
38
|
$nextTick: typeof import("vue").nextTick;
|
37
39
|
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R, args_2: (cleanupFn: () => void) => void) => any : (args_0: any, args_1: any, args_2: (cleanupFn: () => void) => void) => any, options?: import("vue").WatchOptions<boolean>): import("vue").WatchStopHandle;
|
38
40
|
} & Omit<{}, never> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {} & {
|
39
|
-
propsDefinition: import("@omnia/fx/ux").ExtractProps<{
|
41
|
+
propsDefinition: import("@omnia/fx/ux").ExtractProps<{
|
42
|
+
inlineMediaNodeDisplayData?: string;
|
43
|
+
}> & {
|
40
44
|
"v-slots"?: {} & Omit<{
|
41
45
|
default?: import("vue").Slot;
|
42
46
|
}, never>;
|
43
|
-
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps,
|
47
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "inlineMediaNodeDisplayData">;
|
44
48
|
} & import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
45
49
|
[key: string]: any;
|
46
50
|
}>;
|
@@ -0,0 +1 @@
|
|
1
|
+
export * from "./MediaRendererComponentBase";
|
@@ -1,7 +1,7 @@
|
|
1
1
|
import { DefineProp, DefinePropClass, DefinePropTheming, DefineSlot, DefineVModel, EventType } from "@omnia/fx/ux";
|
2
2
|
import { VNodeChild } from "vue";
|
3
3
|
declare const defaultWeekDays: number[];
|
4
|
-
type CalendarProps<T extends EventType> = DefinePropTheming & DefinePropClass & DefineVModel<"", Date[], false, null, "The v-model of the component"> & DefineProp<"events", T[], false, null, "Array of events specific to this interval."> & DefineProp<"viewMode", "month" | "day" | "week", false, "month", "The current view mode of the calendar."> & DefineProp<"weekdays", number[], false, typeof defaultWeekDays, "Specifies which days of the week to display.Default is [0, 1, 2, 3, 4, 5, 6]"> & DefineProp<"year", number, false, null, "Specifies the year for the calendar view."> & DefineProp<"month", number, false, null, "Specifies the month for the calendar view."> & DefineProp<"intervalHeight", number, false, null, "Height of the interval in pixels in the calendar view."> & DefineProp<"intervals", number, false, 24, "Total number of intervals in a day view."> & DefineProp<"intervalStart", number, false, 0, "Starting time for this specific interval."> & DefineProp<"max", Date, false, null, "Maximum date or value that can be selected."> & DefineProp<"min", Date, false, null, "Minimum date or value that can be selected."> & DefineProp<"hideWeekNumber", boolean, false, false, "Toggles the display of week numbers in a calendar view."> & DefineProp<"hideDayHeader", boolean, false, false, "Determines whether the day header is visible in the calendar day view."> & DefineProp<"hideHeader", boolean, false, false, "Determines whether the header is hidden in the calendar view."> & DefineProp<"allowedDates", Date[] | ((date: Date) => boolean), false, null, "Determines which dates are selectable."> & DefineSlot<"event", (event: {
|
4
|
+
type CalendarProps<T extends EventType> = DefinePropTheming & DefinePropClass & DefineVModel<"", Date[], false, null, false, "The v-model of the component"> & DefineProp<"events", T[], false, null, "Array of events specific to this interval."> & DefineProp<"viewMode", "month" | "day" | "week", false, "month", "The current view mode of the calendar."> & DefineProp<"weekdays", number[], false, typeof defaultWeekDays, "Specifies which days of the week to display.Default is [0, 1, 2, 3, 4, 5, 6]"> & DefineProp<"year", number, false, null, "Specifies the year for the calendar view."> & DefineProp<"month", number, false, null, "Specifies the month for the calendar view."> & DefineProp<"intervalHeight", number, false, null, "Height of the interval in pixels in the calendar view."> & DefineProp<"intervals", number, false, 24, "Total number of intervals in a day view."> & DefineProp<"intervalStart", number, false, 0, "Starting time for this specific interval."> & DefineProp<"max", Date, false, null, "Maximum date or value that can be selected."> & DefineProp<"min", Date, false, null, "Minimum date or value that can be selected."> & DefineProp<"hideWeekNumber", boolean, false, false, "Toggles the display of week numbers in a calendar view."> & DefineProp<"hideDayHeader", boolean, false, false, "Determines whether the day header is visible in the calendar day view."> & DefineProp<"hideHeader", boolean, false, false, "Determines whether the header is hidden in the calendar view."> & DefineProp<"allowedDates", Date[] | ((date: Date) => boolean), false, null, "Determines which dates are selectable."> & DefineSlot<"event", (event: {
|
5
5
|
day: Date;
|
6
6
|
allDay: boolean;
|
7
7
|
event: T;
|
@@ -2,7 +2,7 @@ import { DataTableHeader, DefineEmit, DefineProp, DefinePropTheming, DefineSlot,
|
|
2
2
|
import { ComponentPublicInstance, Ref } from "vue";
|
3
3
|
declare const defaultHeaders: DataTableHeader[];
|
4
4
|
declare const defaultItems: any[];
|
5
|
-
export type DataTableProps<T> = DefinePropTheming & DefineVModel<"expanded", Array<string>, false, null, "Whether the item is expanded or not."> & DefineVModel<"sortBy", SortItem[], false, null, "Changes which item property (or properties) should be used for sort order."> & DefineProp<"mustSort", boolean, false, false, "If true then one can not disable sorting, it will always switch between ascending and descending."> & DefineProp<"height", string | number, false, null, "Sets and explicit height of the tablet."> & DefineProp<"noDataText", string, false, null, "Text shown when no items are provided to the component."> & DefineProp<"loading", boolean, false, false, "Displays linear progress bar."> & DefineProp<"draggable", boolean | Ref<boolean>, false, false, "Enable draggable row."> & DefineProp<"hover", boolean, false, false, "Property on supplied items that contains its value."> & DefineProp<"showExpand", boolean, false, false, "Shows the expand toggle in default rows."> & DefineProp<"showLoadMore", boolean, false, false, "Shows the button to fetch more data."> & DefineProp<"itemsPerPage", number, false, -1, "Changes how many items per page should be visible. If set a paging footer is displayed."> & DefineProp<"headers", DataTableHeader[], false, typeof defaultHeaders, "An array of objects that each describe a header column."> & DefineVModel<"items", T[], false, typeof defaultItems, "An array of strings or objects used for automatically generating children components."> & DefineEmit<"update:sortBy", (item: SortItem[]) => void> & DefineEmit<"update:expanded", (expanded: string[]) => void> & DefineEmit<"update:sortBy", (sort: SortItem[]) => void> & DefineEmit<"click:loadMore", () => void> & DefineSlot<"item", (row: IDataTableRowRenderer<T>) => void> & DefineSlot<`header.${string}`, (header: DataTableHeader) => void> & DefineSlot<`item.${string}`, (e: {
|
5
|
+
export type DataTableProps<T> = DefinePropTheming & DefineVModel<"expanded", Array<string>, false, null, false, "Whether the item is expanded or not."> & DefineVModel<"sortBy", SortItem[], false, null, false, "Changes which item property (or properties) should be used for sort order."> & DefineProp<"mustSort", boolean, false, false, "If true then one can not disable sorting, it will always switch between ascending and descending."> & DefineProp<"height", string | number, false, null, "Sets and explicit height of the tablet."> & DefineProp<"noDataText", string, false, null, "Text shown when no items are provided to the component."> & DefineProp<"loading", boolean, false, false, "Displays linear progress bar."> & DefineProp<"draggable", boolean | Ref<boolean>, false, false, "Enable draggable row."> & DefineProp<"hover", boolean, false, false, "Property on supplied items that contains its value."> & DefineProp<"showExpand", boolean, false, false, "Shows the expand toggle in default rows."> & DefineProp<"showLoadMore", boolean, false, false, "Shows the button to fetch more data."> & DefineProp<"itemsPerPage", number, false, -1, "Changes how many items per page should be visible. If set a paging footer is displayed."> & DefineProp<"headers", DataTableHeader[], false, typeof defaultHeaders, "An array of objects that each describe a header column."> & DefineVModel<"items", T[], false, typeof defaultItems, false, "An array of strings or objects used for automatically generating children components."> & DefineEmit<"update:sortBy", (item: SortItem[]) => void> & DefineEmit<"update:expanded", (expanded: string[]) => void> & DefineEmit<"update:sortBy", (sort: SortItem[]) => void> & DefineEmit<"click:loadMore", () => void> & DefineSlot<"item", (row: IDataTableRowRenderer<T>) => void> & DefineSlot<`header.${string}`, (header: DataTableHeader) => void> & DefineSlot<`item.${string}`, (e: {
|
6
6
|
item: T;
|
7
7
|
}) => void>;
|
8
8
|
declare const _default: <T extends unknown>(props: import("@omnia/fx/ux").ConstructComponentProps<DataTableProps<T>>) => {
|
@@ -2,7 +2,7 @@ import { ODraggableVariants } from "@omnia/fx-models";
|
|
2
2
|
import { DataTableHeader, DefineEmit, DefineProp, DefineSlot, DefineVModel, IDataTableRowRenderer } from "@omnia/fx/ux";
|
3
3
|
import { Ref, VNodeChild } from "vue";
|
4
4
|
declare const defaultHeadersValue: any[];
|
5
|
-
export type DraggableProps = DefineVModel<"", Array<any>, false, null, "The draggable items."> & DefineProp<"itemTitle", string | ((item: any) => VNodeChild), false, null, "Specify title property of an item or provide custom render it."> & DefineProp<"itemValue", string | ((item: any) => string), false, null, "Property on supplied items that contains its value."> & DefineProp<"disabledItem", string, false, null, "Specify a class name for items that are disabled for sortable."> & DefineProp<"placeholderClass", string, false, null, "Custom styles of the placeholder."> & DefineProp<"navigable", boolean | Ref<boolean>, false, false, "Show navigate icon for further navigation."> & DefineProp<"hideDraggableIcon", boolean | Ref<boolean>, false, false, "Hide draggable icons."> & DefineProp<"draggableWholeRow", boolean | Ref<boolean>, false, false, "Hide draggable icons."> & DefineProp<"variant", ODraggableVariants, false, "default", "Applies a distinct style to the component."> & DefineProp<"headers", DataTableHeader[], false, typeof defaultHeadersValue, "An array of objects that each describe a header column for data-table variant."> & DefineSlot<"item", ((item: any) => VNodeChild) | ((row: IDataTableRowRenderer) => void), "Define a custom item appearance."> & DefineSlot<"append", ((item: any) => VNodeChild) | ((row: IDataTableRowRenderer) => void), "Provide extra actions to the end of the item. Applicable in structured variants like List, DataTable,..."> & DefineEmit<"click:navigate", (value: any) => true, "Emit a navigate event."> & DefineEmit<"sort:start", () => true, "Emit a sort start event."> & DefineEmit<"sort:end", () => true, "Emit a sort end event.">;
|
5
|
+
export type DraggableProps = DefineVModel<"", Array<any>, false, null, false, "The draggable items."> & DefineProp<"itemTitle", string | ((item: any) => VNodeChild), false, null, "Specify title property of an item or provide custom render it."> & DefineProp<"itemValue", string | ((item: any) => string), false, null, "Property on supplied items that contains its value."> & DefineProp<"disabledItem", string, false, null, "Specify a class name for items that are disabled for sortable."> & DefineProp<"placeholderClass", string, false, null, "Custom styles of the placeholder."> & DefineProp<"navigable", boolean | Ref<boolean>, false, false, "Show navigate icon for further navigation."> & DefineProp<"hideDraggableIcon", boolean | Ref<boolean>, false, false, "Hide draggable icons."> & DefineProp<"draggableWholeRow", boolean | Ref<boolean>, false, false, "Hide draggable icons."> & DefineProp<"variant", ODraggableVariants, false, "default", "Applies a distinct style to the component."> & DefineProp<"headers", DataTableHeader[], false, typeof defaultHeadersValue, "An array of objects that each describe a header column for data-table variant."> & DefineSlot<"item", ((item: any) => VNodeChild) | ((row: IDataTableRowRenderer) => void), "Define a custom item appearance."> & DefineSlot<"append", ((item: any) => VNodeChild) | ((row: IDataTableRowRenderer) => void), "Provide extra actions to the end of the item. Applicable in structured variants like List, DataTable,..."> & DefineEmit<"click:navigate", (value: any) => true, "Emit a navigate event."> & DefineEmit<"sort:start", () => true, "Emit a sort start event."> & DefineEmit<"sort:end", () => true, "Emit a sort end event.">;
|
6
6
|
declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<DraggableProps>) => {
|
7
7
|
$: import("vue").ComponentInternalInstance;
|
8
8
|
$data: {};
|
@@ -1,6 +1,6 @@
|
|
1
1
|
import { ButtonIconOptions, OSizeTypes } from "@omnia/fx-models";
|
2
2
|
import { DefineProp, DefinePropClass, DefinePropTheming, DefineVModel } from "@omnia/fx/ux";
|
3
|
-
type FabProps = DefinePropTheming & DefinePropClass & DefineVModel<"", boolean, false, true, "The v-model of the component"> & DefineProp<"active", boolean, false, true, "Controls the active state of the item. This is typically used to highlight the component."> & DefineProp<"app", boolean, false, false, "If true, attaches to the closest layout and positions according to the value of location."> & DefineProp<"block", boolean, false, false, "Expands the button to 100% of available space."> & DefineProp<"disabled", boolean, false, false, "Removes the ability to click or target the component."> & DefineProp<"stacked", boolean, false, false, "Displays the button as a column with the icon on top"> & DefineProp<"text", string, false, null, "Specify content text for the component."> & DefineProp<"size", OSizeTypes, false, "default", "Sets the size of the button."> & DefineProp<"variant", "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain", false, "elevated", "Applies a distinct style to the component."> & DefineProp<"icon", ButtonIconOptions, false, null, "Sets the icon to display on the button. If no text is provided the button will be displayed as an icon button.">;
|
3
|
+
type FabProps = DefinePropTheming & DefinePropClass & DefineVModel<"", boolean, false, true, false, "The v-model of the component"> & DefineProp<"active", boolean, false, true, "Controls the active state of the item. This is typically used to highlight the component."> & DefineProp<"app", boolean, false, false, "If true, attaches to the closest layout and positions according to the value of location."> & DefineProp<"block", boolean, false, false, "Expands the button to 100% of available space."> & DefineProp<"disabled", boolean, false, false, "Removes the ability to click or target the component."> & DefineProp<"stacked", boolean, false, false, "Displays the button as a column with the icon on top"> & DefineProp<"text", string, false, null, "Specify content text for the component."> & DefineProp<"size", OSizeTypes, false, "default", "Sets the size of the button."> & DefineProp<"variant", "flat" | "text" | "elevated" | "tonal" | "outlined" | "plain", false, "elevated", "Applies a distinct style to the component."> & DefineProp<"icon", ButtonIconOptions, false, null, "Sets the icon to display on the button. If no text is provided the button will be displayed as an icon button.">;
|
4
4
|
declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<FabProps>) => {
|
5
5
|
$: import("vue").ComponentInternalInstance;
|
6
6
|
$data: {};
|
@@ -6,8 +6,8 @@ export type OTextBoxVariantTypes = typeof OTextBoxVariantTypeDefinitions[number]
|
|
6
6
|
export declare const InputTypeDefinitions: readonly ["text", "password", "number"];
|
7
7
|
export type InputTypes = typeof InputTypeDefinitions[number];
|
8
8
|
type BaseProps = DefinePropTheming & DefinePropClass & DefineProp<"variant", OTextBoxVariantTypes, false, null, "Applies a distinct style to the component."> & DefineProp<"color", ColorValue, false, null, "Define the custom color for text field."> & DefineProp<"readonly", boolean, false, null, "Makes the text field readonly."> & DefineProp<"persistentHint", boolean, false, null, "Forces hint to always be visible."> & DefineProp<"hint", string, false, null, "Sets the hint of the text field. Hint will be displayed below the input when focused."> & DefineProp<"errorMessages", string | string[], false, null, "Puts the input in an error state and passes through custom error messages. Will be combined with any validations that occur from the rules prop. This field will not trigger validation."> & DefineProp<"rules", ValidationRule[], false, null, "Accepts a mixed array of types function. Functions pass an input value as an argument and must return either true / false or a string containing an error message."> & DefineProp<"toned", boolean, false, null, ""> & DefineProp<"label", string, false, null, "The label of the input field."> & DefineProp<"loading", boolean, false, false, "Displays linear progress bar."> & DefineProp<"disabled", boolean, false, false, "Removes the ability to click or target the input."> & DefineSlot<"append", () => VNodeChild, "Adds an item inside the input and after input content."> & DefineSlot<"append-inner", () => VNodeChild, "Adds an item inside the input content."> & DefineSlot<"prepend", () => VNodeChild, "Adds an item outside the input and before input content."> & DefineSlot<"prepend-inner", () => VNodeChild, "Slot that is prepended to the input."> & DefineSlot<"message", () => VNodeChild, "Slot used to customize the message content."> & DefineEmit<"update:focused", (value: boolean) => void, "Emit when search input field is focused."> & DefineEmit<"click:button", () => void, "Emit when click on icon."> & DefineEmit<"click:clear", () => void, "Emit when search input field is cleared.">;
|
9
|
-
type NumberInputProps = DefineVModel<"", number, false, null, "The v-model value of the component."> & DefineProp<"max", number, false, null, "The max value."> & DefineProp<"min", number, false, null, "The min value."> & DefineProp<"step", number, false, null, "incremental steps for adjusting the numeric value."> & BaseProps;
|
10
|
-
type TextInputProps = DefineVModel<"", string, false, null, "The v-model value of the component."> & DefineProp<"suffix", string, false, null, "The suffix text of the text field."> & DefineProp<"prefix", string, false, null, "The prefix text of the text field."> & DefineProp<"clearable", boolean, false, false, "Adds a clear button when the text field is not empty."> & DefineProp<"autofocus", boolean, false, false, "Enables autofocus."> & DefineProp<"placeholder", string, false, null, "Sets the input’s placeholder text."> & BaseProps;
|
9
|
+
type NumberInputProps = DefineVModel<"", number, false, null, false, "The v-model value of the component."> & DefineProp<"max", number, false, null, "The max value."> & DefineProp<"min", number, false, null, "The min value."> & DefineProp<"step", number, false, null, "incremental steps for adjusting the numeric value."> & BaseProps;
|
10
|
+
type TextInputProps = DefineVModel<"", string, false, null, false, "The v-model value of the component."> & DefineProp<"suffix", string, false, null, "The suffix text of the text field."> & DefineProp<"prefix", string, false, null, "The prefix text of the text field."> & DefineProp<"clearable", boolean, false, false, "Adds a clear button when the text field is not empty."> & DefineProp<"autofocus", boolean, false, false, "Enables autofocus."> & DefineProp<"placeholder", string, false, null, "Sets the input’s placeholder text."> & BaseProps;
|
11
11
|
declare const _default: <TType extends "number" | "text" | "password" = "text">(props: import("@omnia/fx/ux").ConstructComponentProps<{
|
12
12
|
type?: TType;
|
13
13
|
} & (TType extends "number" ? NumberInputProps : TextInputProps)>) => {
|
@@ -1,12 +1,12 @@
|
|
1
1
|
import { DefineProp, DefinePropClass, DefinePropTheming, DefineSlot, DefineVModel } from "@omnia/fx/ux";
|
2
|
-
import { ComponentPublicInstance,
|
2
|
+
import { ComponentPublicInstance, VNodeChild } from "vue";
|
3
3
|
import { OListLineTypes, OListTypes } from "@omnia/fx-models";
|
4
4
|
export interface IListItem<T> {
|
5
5
|
value: T;
|
6
6
|
index: number;
|
7
7
|
Item: typeof o.list.item;
|
8
8
|
}
|
9
|
-
export type OListProps<T> = DefinePropTheming & DefinePropClass & DefineVModel<"", T[], false, null, "An array of strings or objects used for automatically generating children components."> & DefineProp<"lines", OListLineTypes, false, null, "Designates a minimum-height for all the children o-list-item components. THis props uses line-clamp."> & DefineProp<"nav", boolean, false, false, "An alternative styling that reduces o-list-item width and rounds the corners. Typically used with o-navigation-drawer."> & DefineProp<"toned", boolean, false, false> & DefineProp<"divider", boolean, false, false, "If true, each item will have a bottom divider"> & DefineProp<"variant", OListTypes, false, null, "Applies a distinct style to the component."> & DefineProp<"draggable", boolean |
|
9
|
+
export type OListProps<T> = DefinePropTheming & DefinePropClass & DefineVModel<"", T[], false, null, true, "An array of strings or objects used for automatically generating children components."> & DefineProp<"lines", OListLineTypes, false, null, "Designates a minimum-height for all the children o-list-item components. THis props uses line-clamp."> & DefineProp<"nav", boolean, false, false, "An alternative styling that reduces o-list-item width and rounds the corners. Typically used with o-navigation-drawer."> & DefineProp<"toned", boolean, false, false> & DefineProp<"divider", boolean, false, false, "If true, each item will have a bottom divider"> & DefineProp<"variant", OListTypes, false, null, "Applies a distinct style to the component."> & DefineProp<"drag", boolean, false, false, "Enable draggable row."> & DefineProp<"navigation", boolean | ((item: T) => boolean), false, false, "The row navigation."> & DefineProp<"remove", boolean | ((item: T) => boolean), false, false, "Enable removable row."> & DefineProp<"itemValue", string | ((item: T) => string), false, null, "Property on supplied items that contains its value."> & DefineSlot<"item", (item: IListItem<T>) => VNodeChild>;
|
10
10
|
declare const _default: <T extends unknown>(props: import("@omnia/fx/ux").ConstructComponentProps<OListProps<T>>) => {
|
11
11
|
$: import("vue").ComponentInternalInstance;
|
12
12
|
$data: {};
|
@@ -51,7 +51,7 @@ declare const _default: <T extends unknown>(props: import("@omnia/fx/ux").Constr
|
|
51
51
|
} & Omit<{
|
52
52
|
default?: import("vue").Slot;
|
53
53
|
}, "item">;
|
54
|
-
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "container" | "class" | "nav" | "colorSchemaType" | "toned" | "colors" | "v-model" | "onUpdate:modelValue" | "modelValue" | "
|
54
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "navigation" | "container" | "drag" | "class" | "nav" | "colorSchemaType" | "toned" | "colors" | "v-model" | "onUpdate:modelValue" | "modelValue" | "remove" | "variant" | "divider" | "lines" | "itemValue">;
|
55
55
|
} & import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
56
56
|
[key: string]: any;
|
57
57
|
}>;
|