@omnia/fx 8.0.182-dev → 8.0.184-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/libs/sortable/Sortable.d.ts +1 -0
- package/internal-do-not-import-from-here/libs/sortable/index.d.ts +1 -0
- package/internal-do-not-import-from-here/manifests/omnia.fx.ux.manifest.json +1 -1
- package/internal-do-not-import-from-here/services/MediaPickerService.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/InternalDefineComponent.d.ts +43 -1
- package/internal-do-not-import-from-here/ux/aurora/components/containerpicker/ContainerPicker.d.ts +52 -0
- package/internal-do-not-import-from-here/ux/aurora/store/ComponentBlueprintStore.d.ts +2 -2
- package/internal-do-not-import-from-here/ux/aurora/store/SpacingBlueprintStore.d.ts +8 -8
- package/internal-do-not-import-from-here/ux/aurora/store/ThemeContextStore.d.ts +24 -24
- package/internal-do-not-import-from-here/ux/aurora/store/ThemeStoreV2.d.ts +3 -3
- package/internal-do-not-import-from-here/ux/aurora/store/TypographyBlueprintStore.d.ts +8 -8
- package/internal-do-not-import-from-here/ux/journey/SettingsJourney.d.ts +70 -0
- package/internal-do-not-import-from-here/ux/journey/SettingsJourneyBlade.d.ts +55 -0
- package/internal-do-not-import-from-here/ux/journey/SettingsJourneyMenu.d.ts +56 -0
- package/internal-do-not-import-from-here/ux/journey/models/SettingsBladeRegistration.d.ts +12 -0
- package/internal-do-not-import-from-here/ux/journey/models/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/journey/stores/SettingsJourneyStore.d.ts +68 -0
- package/internal-do-not-import-from-here/ux/journey/stores/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/journey/use/UseBlade.d.ts +11 -3
- package/internal-do-not-import-from-here/ux/markdown/patches/HtmlInlinePatch.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/markdown/plugins/themestyling/ThemeStylingPlugin.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/models/DataTable.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/oxide/datatable/DataTable.d.ts +15 -6
- package/internal-do-not-import-from-here/ux/oxide/datatable/RowRenderer.d.ts +3 -0
- package/internal-do-not-import-from-here/ux/oxide/draggable/Draggable.css.d.ts +2 -5
- package/internal-do-not-import-from-here/ux/oxide/draggable/Draggable.d.ts +9 -9
- package/internal-do-not-import-from-here/ux/use/UseDraggable.d.ts +9 -67
- package/internal-do-not-import-from-here/ux/use/index.d.ts +1 -0
- package/internal-do-not-import-from-here/wctypings.d.ts +44 -9
- package/package.json +2 -2
@@ -95,12 +95,12 @@ export declare const useTypographyBlueprintStore: () => {
|
|
95
95
|
};
|
96
96
|
container: {
|
97
97
|
hasVariant(type: string): boolean;
|
98
|
-
getByType(type: string): import("@omnia/fx-models").ContainerBlueprint;
|
98
|
+
getByType(type: string | import("@omnia/fx-models").ContainerBlueprint): import("@omnia/fx-models").ContainerBlueprint;
|
99
99
|
};
|
100
100
|
};
|
101
101
|
deactivated(): void;
|
102
102
|
};
|
103
|
-
colorSchema(colorSchemaType: "background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic"): import("@omnia/fx-models").ColorSchema;
|
103
|
+
colorSchema(colorSchemaType: "background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic" | import("@omnia/fx-models").ColorSchema): import("@omnia/fx-models").ColorSchema;
|
104
104
|
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
105
105
|
fillValue(value: import("@omnia/fx-models").FillDefinitionValue, type: "typography"): any;
|
106
106
|
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
@@ -198,12 +198,12 @@ export declare const useTypographyBlueprintStore: () => {
|
|
198
198
|
};
|
199
199
|
container: {
|
200
200
|
hasVariant(type: string): boolean;
|
201
|
-
getByType(type: string): import("@omnia/fx-models").ContainerBlueprint;
|
201
|
+
getByType(type: string | import("@omnia/fx-models").ContainerBlueprint): import("@omnia/fx-models").ContainerBlueprint;
|
202
202
|
};
|
203
203
|
};
|
204
204
|
deactivated(): void;
|
205
205
|
};
|
206
|
-
colorSchema(colorSchemaType: "background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic"): import("@omnia/fx-models").ColorSchema;
|
206
|
+
colorSchema(colorSchemaType: "background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic" | import("@omnia/fx-models").ColorSchema): import("@omnia/fx-models").ColorSchema;
|
207
207
|
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
208
208
|
fillValue(value: import("@omnia/fx-models").FillDefinitionValue, type: "typography"): any;
|
209
209
|
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
@@ -301,12 +301,12 @@ export declare const useTypographyBlueprintStore: () => {
|
|
301
301
|
};
|
302
302
|
container: {
|
303
303
|
hasVariant(type: string): boolean;
|
304
|
-
getByType(type: string): import("@omnia/fx-models").ContainerBlueprint;
|
304
|
+
getByType(type: string | import("@omnia/fx-models").ContainerBlueprint): import("@omnia/fx-models").ContainerBlueprint;
|
305
305
|
};
|
306
306
|
};
|
307
307
|
deactivated(): void;
|
308
308
|
};
|
309
|
-
colorSchema(colorSchemaType: "background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic"): import("@omnia/fx-models").ColorSchema;
|
309
|
+
colorSchema(colorSchemaType: "background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic" | import("@omnia/fx-models").ColorSchema): import("@omnia/fx-models").ColorSchema;
|
310
310
|
typography(): import("@omnia/fx-models").TypographyBlueprints;
|
311
311
|
fillValue(value: import("@omnia/fx-models").FillDefinitionValue, type: "typography"): any;
|
312
312
|
spacing(): import("@omnia/fx-models").SpacingBlueprints;
|
@@ -6241,12 +6241,12 @@ export declare const useTypographyBlueprintStore: () => {
|
|
6241
6241
|
};
|
6242
6242
|
container: {
|
6243
6243
|
hasVariant(type: string): boolean;
|
6244
|
-
getByType(type: string): import("@omnia/fx-models").ContainerBlueprint;
|
6244
|
+
getByType(type: string | import("@omnia/fx-models").ContainerBlueprint): import("@omnia/fx-models").ContainerBlueprint;
|
6245
6245
|
};
|
6246
6246
|
};
|
6247
6247
|
deactivated(): void;
|
6248
6248
|
};
|
6249
|
-
colorSchema: (colorSchemaType: "background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic") => import("@omnia/fx-models").ColorSchema;
|
6249
|
+
colorSchema: (colorSchemaType: "background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic" | import("@omnia/fx-models").ColorSchema) => import("@omnia/fx-models").ColorSchema;
|
6250
6250
|
typography: () => import("@omnia/fx-models").TypographyBlueprints;
|
6251
6251
|
fillValue: (value: import("@omnia/fx-models").FillDefinitionValue, type: "typography") => any;
|
6252
6252
|
spacing: () => import("@omnia/fx-models").SpacingBlueprints;
|
@@ -0,0 +1,70 @@
|
|
1
|
+
import { IIcon } from "@omnia/fx-models";
|
2
|
+
import { useSettingsJourneyStore } from "@omnia/fx/ux";
|
3
|
+
type JourneyVariant = "settings" | "dialog";
|
4
|
+
declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
|
5
|
+
getApi?: (store: ReturnType<typeof useSettingsJourneyStore>) => void;
|
6
|
+
} & {
|
7
|
+
variant?: JourneyVariant;
|
8
|
+
} & {
|
9
|
+
title?: string;
|
10
|
+
} & {
|
11
|
+
icon?: IIcon;
|
12
|
+
}> & Omit<{}, "icon" | "title" | "variant" | "getApi"> & {
|
13
|
+
"v-slots"?: {
|
14
|
+
default?: import("vue").Slot;
|
15
|
+
} & {};
|
16
|
+
} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "icon" | "title" | "variant" | "getApi">) => {
|
17
|
+
$: import("vue").ComponentInternalInstance;
|
18
|
+
$data: {};
|
19
|
+
$props: {};
|
20
|
+
$attrs: {
|
21
|
+
[x: string]: unknown;
|
22
|
+
};
|
23
|
+
$refs: {
|
24
|
+
[x: string]: unknown;
|
25
|
+
};
|
26
|
+
$slots: Readonly<{
|
27
|
+
[name: string]: import("vue").Slot<any>;
|
28
|
+
}>;
|
29
|
+
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
30
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
31
|
+
$emit: (event: string, ...args: any[]) => void;
|
32
|
+
$el: any;
|
33
|
+
$options: import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}> & {
|
34
|
+
beforeCreate?: (() => void) | (() => void)[];
|
35
|
+
created?: (() => void) | (() => void)[];
|
36
|
+
beforeMount?: (() => void) | (() => void)[];
|
37
|
+
mounted?: (() => void) | (() => void)[];
|
38
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
39
|
+
updated?: (() => void) | (() => void)[];
|
40
|
+
activated?: (() => void) | (() => void)[];
|
41
|
+
deactivated?: (() => void) | (() => void)[];
|
42
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
43
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
44
|
+
destroyed?: (() => void) | (() => void)[];
|
45
|
+
unmounted?: (() => void) | (() => void)[];
|
46
|
+
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
47
|
+
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
48
|
+
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)[];
|
49
|
+
};
|
50
|
+
$forceUpdate: () => void;
|
51
|
+
$nextTick: typeof import("vue").nextTick;
|
52
|
+
$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;
|
53
|
+
} & Omit<{}, never> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {} & {
|
54
|
+
propsDefinition: import("@omnia/fx/ux").ExtractProps<{
|
55
|
+
getApi?: (store: ReturnType<typeof useSettingsJourneyStore>) => void;
|
56
|
+
} & {
|
57
|
+
variant?: JourneyVariant;
|
58
|
+
} & {
|
59
|
+
title?: string;
|
60
|
+
} & {
|
61
|
+
icon?: IIcon;
|
62
|
+
}> & {
|
63
|
+
"v-slots"?: {
|
64
|
+
default?: import("vue").Slot;
|
65
|
+
} & {};
|
66
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "icon" | "title" | "variant" | "getApi">;
|
67
|
+
} & import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
68
|
+
[key: string]: any;
|
69
|
+
}>;
|
70
|
+
export default _default;
|
@@ -0,0 +1,55 @@
|
|
1
|
+
declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
|
2
|
+
id?: string;
|
3
|
+
}> & Omit<{}, "id"> & {
|
4
|
+
"v-slots"?: {
|
5
|
+
default?: import("vue").Slot;
|
6
|
+
} & {};
|
7
|
+
} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "id">) => {
|
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: import("@omnia/fx/ux").ExtractProps<{
|
46
|
+
id?: string;
|
47
|
+
}> & {
|
48
|
+
"v-slots"?: {
|
49
|
+
default?: import("vue").Slot;
|
50
|
+
} & {};
|
51
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "id">;
|
52
|
+
} & import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
53
|
+
[key: string]: any;
|
54
|
+
}>;
|
55
|
+
export default _default;
|
@@ -0,0 +1,56 @@
|
|
1
|
+
import { settingsJourneyMenuItem } from "@omnia/fx/ux";
|
2
|
+
declare const _default: (props: import("@omnia/fx/ux").ExtractProps<{
|
3
|
+
items?: settingsJourneyMenuItem[];
|
4
|
+
}> & Omit<{}, "items"> & {
|
5
|
+
"v-slots"?: {
|
6
|
+
default?: import("vue").Slot;
|
7
|
+
} & {};
|
8
|
+
} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "items">) => {
|
9
|
+
$: import("vue").ComponentInternalInstance;
|
10
|
+
$data: {};
|
11
|
+
$props: {};
|
12
|
+
$attrs: {
|
13
|
+
[x: string]: unknown;
|
14
|
+
};
|
15
|
+
$refs: {
|
16
|
+
[x: string]: unknown;
|
17
|
+
};
|
18
|
+
$slots: Readonly<{
|
19
|
+
[name: string]: import("vue").Slot<any>;
|
20
|
+
}>;
|
21
|
+
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
22
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
23
|
+
$emit: (event: string, ...args: any[]) => void;
|
24
|
+
$el: any;
|
25
|
+
$options: import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}> & {
|
26
|
+
beforeCreate?: (() => void) | (() => void)[];
|
27
|
+
created?: (() => void) | (() => void)[];
|
28
|
+
beforeMount?: (() => void) | (() => void)[];
|
29
|
+
mounted?: (() => void) | (() => void)[];
|
30
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
31
|
+
updated?: (() => void) | (() => void)[];
|
32
|
+
activated?: (() => void) | (() => void)[];
|
33
|
+
deactivated?: (() => void) | (() => void)[];
|
34
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
35
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
36
|
+
destroyed?: (() => void) | (() => void)[];
|
37
|
+
unmounted?: (() => void) | (() => void)[];
|
38
|
+
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
39
|
+
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
40
|
+
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)[];
|
41
|
+
};
|
42
|
+
$forceUpdate: () => void;
|
43
|
+
$nextTick: typeof import("vue").nextTick;
|
44
|
+
$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;
|
45
|
+
} & Omit<{}, never> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {} & {
|
46
|
+
propsDefinition: import("@omnia/fx/ux").ExtractProps<{
|
47
|
+
items?: settingsJourneyMenuItem[];
|
48
|
+
}> & {
|
49
|
+
"v-slots"?: {
|
50
|
+
default?: import("vue").Slot;
|
51
|
+
} & {};
|
52
|
+
} & {} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "items">;
|
53
|
+
} & import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
54
|
+
[key: string]: any;
|
55
|
+
}>;
|
56
|
+
export default _default;
|
@@ -0,0 +1,12 @@
|
|
1
|
+
import { GuidValue, IIcon } from "@omnia/fx-models";
|
2
|
+
import { VNodeChild } from "vue";
|
3
|
+
export interface SettingsJourneyItem {
|
4
|
+
id: GuidValue;
|
5
|
+
title: string;
|
6
|
+
icon: IIcon;
|
7
|
+
}
|
8
|
+
export interface settingsJourneyMenuItem extends SettingsJourneyItem {
|
9
|
+
}
|
10
|
+
export interface SettingsBladeRegistration extends SettingsJourneyItem {
|
11
|
+
element: VNodeChild;
|
12
|
+
}
|
@@ -0,0 +1,68 @@
|
|
1
|
+
import { GuidValue, IIcon } from "@omnia/fx-models";
|
2
|
+
import { SettingsBladeRegistration } from "../models";
|
3
|
+
export declare const useSettingsJourneyStore: () => {
|
4
|
+
state: {
|
5
|
+
title: string;
|
6
|
+
icon: IIcon;
|
7
|
+
activeBlade: SettingsBladeRegistration;
|
8
|
+
bladeRegistrations: SettingsBladeRegistration[];
|
9
|
+
};
|
10
|
+
events: {
|
11
|
+
onMutatedTitle: import("@omnia/fx").MessageBusExposeOnlySubscription<string>;
|
12
|
+
onMutatedIcon: import("@omnia/fx").MessageBusExposeOnlySubscription<IIcon>;
|
13
|
+
onMutatedActiveBlade: import("@omnia/fx").MessageBusExposeOnlySubscription<SettingsBladeRegistration>;
|
14
|
+
onMutatedBladeRegistrations: import("@omnia/fx").MessageBusExposeOnlySubscription<SettingsBladeRegistration[]>;
|
15
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
16
|
+
actions: {
|
17
|
+
onDispatching: {
|
18
|
+
defineJourney: {
|
19
|
+
subscribe(fn: (title: string, icon: IIcon) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
20
|
+
};
|
21
|
+
registerBlade: {
|
22
|
+
subscribe(fn: (registration: SettingsBladeRegistration) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
23
|
+
};
|
24
|
+
travelTo: {
|
25
|
+
subscribe(fn: (bladeId: GuidValue) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
26
|
+
};
|
27
|
+
travelBack: {
|
28
|
+
subscribe(fn: () => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
29
|
+
};
|
30
|
+
};
|
31
|
+
onDispatched: {
|
32
|
+
defineJourney: {
|
33
|
+
subscribe(fn: (result: void, title: string, icon: IIcon) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
34
|
+
};
|
35
|
+
registerBlade: {
|
36
|
+
subscribe(fn: (result: void, registration: SettingsBladeRegistration) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
37
|
+
};
|
38
|
+
travelTo: {
|
39
|
+
subscribe(fn: (result: void, bladeId: GuidValue) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
40
|
+
};
|
41
|
+
travelBack: {
|
42
|
+
subscribe(fn: (result: void) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
43
|
+
};
|
44
|
+
};
|
45
|
+
onFailure: {
|
46
|
+
defineJourney: {
|
47
|
+
subscribe(fn: (failureReason: any, title: string, icon: IIcon) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
48
|
+
};
|
49
|
+
registerBlade: {
|
50
|
+
subscribe(fn: (failureReason: any, registration: SettingsBladeRegistration) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
51
|
+
};
|
52
|
+
travelTo: {
|
53
|
+
subscribe(fn: (failureReason: any, bladeId: GuidValue) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
54
|
+
};
|
55
|
+
travelBack: {
|
56
|
+
subscribe(fn: (failureReason: any) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
57
|
+
};
|
58
|
+
};
|
59
|
+
} & {
|
60
|
+
defineJourney: (title: string, icon: IIcon) => void;
|
61
|
+
registerBlade: (registration: SettingsBladeRegistration) => void;
|
62
|
+
travelTo: (bladeId: GuidValue) => void;
|
63
|
+
travelBack: () => void;
|
64
|
+
};
|
65
|
+
get: {
|
66
|
+
readonly themeStore: any;
|
67
|
+
};
|
68
|
+
};
|
@@ -51,6 +51,10 @@ export declare function useBlade<TRoute extends {
|
|
51
51
|
itemsPerPage?: number;
|
52
52
|
} & {
|
53
53
|
headers?: import("../..").DataTableHeader[];
|
54
|
+
} & {
|
55
|
+
"v-model:items"?: T[];
|
56
|
+
} & {
|
57
|
+
"onUpdate:items"?: (value: T[]) => void;
|
54
58
|
} & {
|
55
59
|
items?: T[];
|
56
60
|
} & import("../..").DefineEmit<"update:sortBy", (item: import("../..").SortItem[]) => void> & import("../..").DefineEmit<"update:expanded", (expanded: string[]) => void> & import("../..").DefineEmit<"update:sortBy", (sort: import("../..").SortItem[]) => void> & import("../..").DefineSlot<"item", (row: import("../..").IDataTableRowRenderer<T>) => void> & import("../..").DefineSlot<`header.${string}`, (header: import("../..").DataTableHeader) => void> & import("../..").DefineSlot<`item.${string}`, (e: {
|
@@ -58,7 +62,7 @@ export declare function useBlade<TRoute extends {
|
|
58
62
|
}) => void>> & Omit<{
|
59
63
|
"onUpdate:expanded"?: (expanded: string[]) => any;
|
60
64
|
"onUpdate:sortBy"?: (item: import("../..").SortItem[]) => any;
|
61
|
-
}, "headers" | "container" | "height" | "expanded" | "colorSchemaType" | "items" | "colors" | "draggable" | "loading" | "v-model:expanded" | "onUpdate:expanded" | "sortBy" | "v-model:sortBy" | "onUpdate:sortBy" | "mustSort" | "noDataText" | "hover" | "showExpand" | "itemsPerPage"> & {
|
65
|
+
}, "headers" | "container" | "height" | "expanded" | "colorSchemaType" | "items" | "colors" | "draggable" | "loading" | "v-model:expanded" | "onUpdate:expanded" | "sortBy" | "v-model:sortBy" | "onUpdate:sortBy" | "mustSort" | "noDataText" | "hover" | "showExpand" | "itemsPerPage" | "v-model:items" | "onUpdate:items"> & {
|
62
66
|
"v-slots"?: {
|
63
67
|
default?: import("vue").Slot;
|
64
68
|
} & {
|
@@ -68,7 +72,7 @@ export declare function useBlade<TRoute extends {
|
|
68
72
|
}) => void;
|
69
73
|
item?: (row: import("../..").IDataTableRowRenderer<T>) => void;
|
70
74
|
};
|
71
|
-
} & Omit<import("../..").VueComponentBaseProps, "headers" | "container" | "height" | "expanded" | "colorSchemaType" | "items" | "colors" | "draggable" | "loading" | "v-model:expanded" | "onUpdate:expanded" | "sortBy" | "v-model:sortBy" | "onUpdate:sortBy" | "mustSort" | "noDataText" | "hover" | "showExpand" | "itemsPerPage" | "emit:update:sortBy" | "emit:update:expanded" | "slot:item" | `slot:header.${string}` | `slot:item.${string}`>) => {
|
75
|
+
} & Omit<import("../..").VueComponentBaseProps, "headers" | "container" | "height" | "expanded" | "colorSchemaType" | "items" | "colors" | "draggable" | "loading" | "v-model:expanded" | "onUpdate:expanded" | "sortBy" | "v-model:sortBy" | "onUpdate:sortBy" | "mustSort" | "noDataText" | "hover" | "showExpand" | "itemsPerPage" | "v-model:items" | "onUpdate:items" | "emit:update:sortBy" | "emit:update:expanded" | "slot:item" | `slot:header.${string}` | `slot:item.${string}`>) => {
|
72
76
|
$: import("vue").ComponentInternalInstance;
|
73
77
|
$data: {};
|
74
78
|
$props: {};
|
@@ -142,6 +146,10 @@ export declare function useBlade<TRoute extends {
|
|
142
146
|
itemsPerPage?: number;
|
143
147
|
} & {
|
144
148
|
headers?: import("../..").DataTableHeader[];
|
149
|
+
} & {
|
150
|
+
"v-model:items"?: T[];
|
151
|
+
} & {
|
152
|
+
"onUpdate:items"?: (value: T[]) => void;
|
145
153
|
} & {
|
146
154
|
items?: T[];
|
147
155
|
} & import("../..").DefineEmit<"update:sortBy", (item: import("../..").SortItem[]) => void> & import("../..").DefineEmit<"update:expanded", (expanded: string[]) => void> & import("../..").DefineEmit<"update:sortBy", (sort: import("../..").SortItem[]) => void> & import("../..").DefineSlot<"item", (row: import("../..").IDataTableRowRenderer<T>) => void> & import("../..").DefineSlot<`header.${string}`, (header: import("../..").DataTableHeader) => void> & import("../..").DefineSlot<`item.${string}`, (e: {
|
@@ -159,7 +167,7 @@ export declare function useBlade<TRoute extends {
|
|
159
167
|
} & {
|
160
168
|
"onUpdate:expanded"?: (expanded: string[]) => any;
|
161
169
|
"onUpdate:sortBy"?: (item: import("../..").SortItem[]) => any;
|
162
|
-
} & Omit<import("../..").VueComponentBaseProps, "headers" | "container" | "height" | "expanded" | "colorSchemaType" | "items" | "colors" | "draggable" | "loading" | "v-model:expanded" | "onUpdate:expanded" | "sortBy" | "v-model:sortBy" | "onUpdate:sortBy" | "mustSort" | "noDataText" | "hover" | "showExpand" | "itemsPerPage">;
|
170
|
+
} & Omit<import("../..").VueComponentBaseProps, "headers" | "container" | "height" | "expanded" | "colorSchemaType" | "items" | "colors" | "draggable" | "loading" | "v-model:expanded" | "onUpdate:expanded" | "sortBy" | "v-model:sortBy" | "onUpdate:sortBy" | "mustSort" | "noDataText" | "hover" | "showExpand" | "itemsPerPage" | "v-model:items" | "onUpdate:items">;
|
163
171
|
} & import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
164
172
|
[key: string]: any;
|
165
173
|
}>;
|
package/internal-do-not-import-from-here/ux/markdown/plugins/themestyling/ThemeStylingPlugin.d.ts
CHANGED
@@ -1,3 +1,3 @@
|
|
1
1
|
import { PluginContext, PluginInfo } from "@toast-ui/editor";
|
2
2
|
import { MarkdownPluginContext } from "../MarkdownPluginContext";
|
3
|
-
export declare function
|
3
|
+
export declare function useThemeStylingPlugin(context: PluginContext, options: MarkdownPluginContext): PluginInfo;
|
@@ -1,3 +1,4 @@
|
|
1
|
+
import { IIcon } from "@omnia/fx-models";
|
1
2
|
import { VNodeChild } from "vue";
|
2
3
|
export type SelectItemKey = boolean | string | (string | number)[] | ((item: Record<string, any>, fallback?: any) => any);
|
3
4
|
export type DataTableCompareFunction<T = any> = (a: T, b: T) => number;
|
@@ -26,6 +27,7 @@ export interface IDataTableRowRenderer<T = any> {
|
|
26
27
|
onClick(callback: () => void): Omit<IDataTableRowRenderer, "onClick">;
|
27
28
|
addCell(node: VNodeChild, colSpan?: number, classes?: string, styles?: string): Pick<IDataTableRowRenderer, "addCell" | "addAction">;
|
28
29
|
addAction(node: VNodeChild): Pick<IDataTableRowRenderer, "addCell" | "addAction">;
|
30
|
+
addIcon(icon: IIcon): any;
|
29
31
|
}
|
30
32
|
export type SortItem = {
|
31
33
|
key: string;
|
@@ -1,4 +1,5 @@
|
|
1
1
|
import { DataTableHeader, DefineEmit, DefineSlot, IDataTableRowRenderer, SortItem } from "@omnia/fx/ux";
|
2
|
+
import { ComponentPublicInstance } from "vue";
|
2
3
|
declare const _default: <T extends unknown>(props: import("@omnia/fx/ux").ExtractProps<{
|
3
4
|
colorSchemaType?: "background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "neutral" | "warning" | "notification" | "error" | "info" | "dynamic";
|
4
5
|
} & {
|
@@ -35,6 +36,10 @@ declare const _default: <T extends unknown>(props: import("@omnia/fx/ux").Extrac
|
|
35
36
|
itemsPerPage?: number;
|
36
37
|
} & {
|
37
38
|
headers?: DataTableHeader[];
|
39
|
+
} & {
|
40
|
+
"v-model:items"?: T[];
|
41
|
+
} & {
|
42
|
+
"onUpdate:items"?: (value: T[]) => void;
|
38
43
|
} & {
|
39
44
|
items?: T[];
|
40
45
|
} & DefineEmit<"update:sortBy", (item: SortItem[]) => void> & DefineEmit<"update:expanded", (expanded: string[]) => void> & DefineEmit<"update:sortBy", (sort: SortItem[]) => void> & DefineSlot<"item", (row: IDataTableRowRenderer<T>) => void> & DefineSlot<`header.${string}`, (header: DataTableHeader) => void> & DefineSlot<`item.${string}`, (e: {
|
@@ -42,7 +47,7 @@ declare const _default: <T extends unknown>(props: import("@omnia/fx/ux").Extrac
|
|
42
47
|
}) => void>> & Omit<{
|
43
48
|
"onUpdate:expanded"?: (expanded: string[]) => any;
|
44
49
|
"onUpdate:sortBy"?: (item: SortItem[]) => any;
|
45
|
-
}, "headers" | "container" | "height" | "expanded" | "colorSchemaType" | "items" | "colors" | "draggable" | "loading" | "v-model:expanded" | "onUpdate:expanded" | "sortBy" | "v-model:sortBy" | "onUpdate:sortBy" | "mustSort" | "noDataText" | "hover" | "showExpand" | "itemsPerPage"> & {
|
50
|
+
}, "headers" | "container" | "height" | "expanded" | "colorSchemaType" | "items" | "colors" | "draggable" | "loading" | "v-model:expanded" | "onUpdate:expanded" | "sortBy" | "v-model:sortBy" | "onUpdate:sortBy" | "mustSort" | "noDataText" | "hover" | "showExpand" | "itemsPerPage" | "v-model:items" | "onUpdate:items"> & {
|
46
51
|
"v-slots"?: {
|
47
52
|
default?: import("vue").Slot;
|
48
53
|
} & {
|
@@ -52,7 +57,7 @@ declare const _default: <T extends unknown>(props: import("@omnia/fx/ux").Extrac
|
|
52
57
|
}) => void;
|
53
58
|
item?: (row: IDataTableRowRenderer<T>) => void;
|
54
59
|
};
|
55
|
-
} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "headers" | "container" | "height" | "expanded" | "colorSchemaType" | "items" | "colors" | "draggable" | "loading" | "v-model:expanded" | "onUpdate:expanded" | "sortBy" | "v-model:sortBy" | "onUpdate:sortBy" | "mustSort" | "noDataText" | "hover" | "showExpand" | "itemsPerPage" | "emit:update:sortBy" | "emit:update:expanded" | "slot:item" | `slot:header.${string}` | `slot:item.${string}`>) => {
|
60
|
+
} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "headers" | "container" | "height" | "expanded" | "colorSchemaType" | "items" | "colors" | "draggable" | "loading" | "v-model:expanded" | "onUpdate:expanded" | "sortBy" | "v-model:sortBy" | "onUpdate:sortBy" | "mustSort" | "noDataText" | "hover" | "showExpand" | "itemsPerPage" | "v-model:items" | "onUpdate:items" | "emit:update:sortBy" | "emit:update:expanded" | "slot:item" | `slot:header.${string}` | `slot:item.${string}`>) => {
|
56
61
|
$: import("vue").ComponentInternalInstance;
|
57
62
|
$data: {};
|
58
63
|
$props: {};
|
@@ -65,8 +70,8 @@ declare const _default: <T extends unknown>(props: import("@omnia/fx/ux").Extrac
|
|
65
70
|
$slots: Readonly<{
|
66
71
|
[name: string]: import("vue").Slot<any>;
|
67
72
|
}>;
|
68
|
-
$root:
|
69
|
-
$parent:
|
73
|
+
$root: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
74
|
+
$parent: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
70
75
|
$emit: (event: string, ...args: any[]) => void;
|
71
76
|
$el: any;
|
72
77
|
$options: import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}> & {
|
@@ -84,7 +89,7 @@ declare const _default: <T extends unknown>(props: import("@omnia/fx/ux").Extrac
|
|
84
89
|
unmounted?: (() => void) | (() => void)[];
|
85
90
|
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
86
91
|
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
87
|
-
errorCaptured?: ((err: unknown, instance:
|
92
|
+
errorCaptured?: ((err: unknown, instance: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>, info: string) => boolean | void)[];
|
88
93
|
};
|
89
94
|
$forceUpdate: () => void;
|
90
95
|
$nextTick: typeof import("vue").nextTick;
|
@@ -126,6 +131,10 @@ declare const _default: <T extends unknown>(props: import("@omnia/fx/ux").Extrac
|
|
126
131
|
itemsPerPage?: number;
|
127
132
|
} & {
|
128
133
|
headers?: DataTableHeader[];
|
134
|
+
} & {
|
135
|
+
"v-model:items"?: T[];
|
136
|
+
} & {
|
137
|
+
"onUpdate:items"?: (value: T[]) => void;
|
129
138
|
} & {
|
130
139
|
items?: T[];
|
131
140
|
} & DefineEmit<"update:sortBy", (item: SortItem[]) => void> & DefineEmit<"update:expanded", (expanded: string[]) => void> & DefineEmit<"update:sortBy", (sort: SortItem[]) => void> & DefineSlot<"item", (row: IDataTableRowRenderer<T>) => void> & DefineSlot<`header.${string}`, (header: DataTableHeader) => void> & DefineSlot<`item.${string}`, (e: {
|
@@ -143,7 +152,7 @@ declare const _default: <T extends unknown>(props: import("@omnia/fx/ux").Extrac
|
|
143
152
|
} & {
|
144
153
|
"onUpdate:expanded"?: (expanded: string[]) => any;
|
145
154
|
"onUpdate:sortBy"?: (item: SortItem[]) => any;
|
146
|
-
} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "headers" | "container" | "height" | "expanded" | "colorSchemaType" | "items" | "colors" | "draggable" | "loading" | "v-model:expanded" | "onUpdate:expanded" | "sortBy" | "v-model:sortBy" | "onUpdate:sortBy" | "mustSort" | "noDataText" | "hover" | "showExpand" | "itemsPerPage">;
|
155
|
+
} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "headers" | "container" | "height" | "expanded" | "colorSchemaType" | "items" | "colors" | "draggable" | "loading" | "v-model:expanded" | "onUpdate:expanded" | "sortBy" | "v-model:sortBy" | "onUpdate:sortBy" | "mustSort" | "noDataText" | "hover" | "showExpand" | "itemsPerPage" | "v-model:items" | "onUpdate:items">;
|
147
156
|
} & import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
148
157
|
[key: string]: any;
|
149
158
|
}>;
|
@@ -1,3 +1,4 @@
|
|
1
|
+
import { IIcon } from "@omnia/fx-models";
|
1
2
|
import { IDataTableRowRenderer } from "@omnia/fx/ux";
|
2
3
|
import { VNodeChild } from "vue";
|
3
4
|
export declare class DataTableRowRenderer implements IDataTableRowRenderer {
|
@@ -9,6 +10,7 @@ export declare class DataTableRowRenderer implements IDataTableRowRenderer {
|
|
9
10
|
classes?: string;
|
10
11
|
styles?: string;
|
11
12
|
}>;
|
13
|
+
icon: IIcon;
|
12
14
|
actions: Array<VNodeChild>;
|
13
15
|
click: () => void;
|
14
16
|
preselect: any;
|
@@ -20,5 +22,6 @@ export declare class DataTableRowRenderer implements IDataTableRowRenderer {
|
|
20
22
|
onClick(callback: () => void): this;
|
21
23
|
disableNavigation(): this;
|
22
24
|
addCell(node: VNodeChild, colSpan?: number, classes?: string, styles?: string): Pick<IDataTableRowRenderer, "addCell" | "addAction">;
|
25
|
+
addIcon(icon: IIcon): void;
|
23
26
|
addAction(node: VNodeChild): Pick<IDataTableRowRenderer, "addCell" | "addAction">;
|
24
27
|
}
|
@@ -16,10 +16,10 @@ declare const _default: {
|
|
16
16
|
required: false;
|
17
17
|
};
|
18
18
|
variant: {
|
19
|
-
type: import("vue").PropType<"default" | "element" | "list" | "data-table">;
|
19
|
+
type: import("vue").PropType<"default" | "element" | "list" | "data-table" | "accordion">;
|
20
20
|
required: false;
|
21
21
|
} & {
|
22
|
-
type: import("vue").PropType<"default" | "element" | "list" | "data-table">;
|
22
|
+
type: import("vue").PropType<"default" | "element" | "list" | "data-table" | "accordion">;
|
23
23
|
required: false;
|
24
24
|
};
|
25
25
|
navigable: {
|
@@ -87,10 +87,10 @@ declare const _default: {
|
|
87
87
|
required: false;
|
88
88
|
};
|
89
89
|
variant: {
|
90
|
-
type: import("vue").PropType<"default" | "element" | "list" | "data-table">;
|
90
|
+
type: import("vue").PropType<"default" | "element" | "list" | "data-table" | "accordion">;
|
91
91
|
required: false;
|
92
92
|
} & {
|
93
|
-
type: import("vue").PropType<"default" | "element" | "list" | "data-table">;
|
93
|
+
type: import("vue").PropType<"default" | "element" | "list" | "data-table" | "accordion">;
|
94
94
|
required: false;
|
95
95
|
};
|
96
96
|
navigable: {
|
@@ -161,10 +161,10 @@ declare const _default: {
|
|
161
161
|
required: false;
|
162
162
|
};
|
163
163
|
variant: {
|
164
|
-
type: import("vue").PropType<"default" | "element" | "list" | "data-table">;
|
164
|
+
type: import("vue").PropType<"default" | "element" | "list" | "data-table" | "accordion">;
|
165
165
|
required: false;
|
166
166
|
} & {
|
167
|
-
type: import("vue").PropType<"default" | "element" | "list" | "data-table">;
|
167
|
+
type: import("vue").PropType<"default" | "element" | "list" | "data-table" | "accordion">;
|
168
168
|
required: false;
|
169
169
|
};
|
170
170
|
navigable: {
|
@@ -232,10 +232,10 @@ declare const _default: {
|
|
232
232
|
required: false;
|
233
233
|
};
|
234
234
|
variant: {
|
235
|
-
type: import("vue").PropType<"default" | "element" | "list" | "data-table">;
|
235
|
+
type: import("vue").PropType<"default" | "element" | "list" | "data-table" | "accordion">;
|
236
236
|
required: false;
|
237
237
|
} & {
|
238
|
-
type: import("vue").PropType<"default" | "element" | "list" | "data-table">;
|
238
|
+
type: import("vue").PropType<"default" | "element" | "list" | "data-table" | "accordion">;
|
239
239
|
required: false;
|
240
240
|
};
|
241
241
|
navigable: {
|
@@ -300,7 +300,7 @@ declare const _default: {
|
|
300
300
|
item?: ((item: any) => VNodeChild) | ((row: IDataTableRowRenderer) => void);
|
301
301
|
append?: ((item: any) => VNodeChild) | ((row: IDataTableRowRenderer) => void);
|
302
302
|
};
|
303
|
-
variant?: "default" | "element" | "list" | "data-table";
|
303
|
+
variant?: "default" | "element" | "list" | "data-table" | "accordion";
|
304
304
|
itemTitle?: string | ((item: any) => VNodeChild);
|
305
305
|
itemValue?: string | ((item: any) => string);
|
306
306
|
"item-value"?: string | ((item: any) => string);
|