@omnia/fx 8.0.37-dev → 8.0.38-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/shared/models/hub/activities/IdentityActivity.d.ts +4 -3
- package/internal-do-not-import-from-here/shared/models/hub/activities/IdentityActivity.js +4 -3
- package/internal-do-not-import-from-here/shared/services/ActivityService.d.ts +2 -1
- package/internal-do-not-import-from-here/ux/hub/feed/HubFeedChrome.css.d.ts +14 -3
- package/internal-do-not-import-from-here/ux/hub/feed/PageHeader.d.ts +46 -0
- package/internal-do-not-import-from-here/ux/{usertypelayout/UserTypeLayoutBladeBuilder.d.ts → hub/feed/components/CategoryItem.d.ts} +25 -9
- package/internal-do-not-import-from-here/ux/hub/feed/components/FeedItem.d.ts +19 -1
- package/internal-do-not-import-from-here/ux/hub/feed/components/Header.d.ts +19 -1
- package/internal-do-not-import-from-here/ux/hub/feed/components/MeSenderItem.d.ts +132 -0
- package/internal-do-not-import-from-here/ux/hub/feed/components/MeSendersList.d.ts +46 -0
- package/internal-do-not-import-from-here/ux/hub/feed/components/SendersList.css.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/hub/feed/stores/ActivityFeedStore.d.ts +7 -1
- package/internal-do-not-import-from-here/ux/hub/feed/stores/HubFeedChromeStore.d.ts +32 -0
- package/internal-do-not-import-from-here/ux/hub/feed/stores/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/hub/feed/tabs/FeedTab.css.d.ts +4 -0
- package/internal-do-not-import-from-here/ux/hub/feed/tabs/FeedTab.d.ts +46 -0
- package/internal-do-not-import-from-here/ux/hub/feed/tabs/MeTab.d.ts +46 -0
- package/internal-do-not-import-from-here/ux/mediapickerproviders/shareds/DefineMediaPickerProvider.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/mediapickerproviders/shareds/providers/storages/MediaPickerUserIconsStorageProviderContext.d.ts +5 -0
- package/internal-do-not-import-from-here/ux/mediapickerproviders/shareds/providers/storages/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/divider/Divider.d.ts +10 -10
- package/internal-do-not-import-from-here/ux/oxide/expansionpanel/ExpansionPanel.d.ts +18 -0
- package/internal-do-not-import-from-here/ux/oxide/tab/Tab.d.ts +31 -0
- package/internal-do-not-import-from-here/ux/theming-v2/ColorSchemaStore.d.ts +315 -0
- package/internal-do-not-import-from-here/ux/theming-v2/designkits/default/themes/TypographyTypes.d.ts +0 -1
- package/internal-do-not-import-from-here/ux/theming-v2/themedefinitionpicker/ThemeDefinitionPicker.d.ts +18 -0
- package/internal-do-not-import-from-here/ux/theming-v2/themeprovider/ThemeProvider.d.ts +2205 -0
- package/internal-do-not-import-from-here/ux/use/UseColorSchemaSetup.d.ts +315 -0
- package/internal-do-not-import-from-here/ux/velcron/components/contenteditor/VelcronContentEditor.d.ts +10 -2
- package/internal-do-not-import-from-here/wctypings.d.ts +0 -7
- package/package.json +2 -2
- package/internal-do-not-import-from-here/ux/layoutcanvas/editor/layoutitems/LayoutSectionTab.css.d.ts +0 -4
@@ -0,0 +1,46 @@
|
|
1
|
+
declare const _default: {
|
2
|
+
new (...args: any[]): {
|
3
|
+
$: import("vue").ComponentInternalInstance;
|
4
|
+
$data: {};
|
5
|
+
$props: Partial<{}> & Omit<{} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{}>>, never>;
|
6
|
+
$attrs: {
|
7
|
+
[x: string]: unknown;
|
8
|
+
};
|
9
|
+
$refs: {
|
10
|
+
[x: string]: unknown;
|
11
|
+
};
|
12
|
+
$slots: Readonly<{
|
13
|
+
[name: string]: import("vue").Slot<any>;
|
14
|
+
}>;
|
15
|
+
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
16
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
17
|
+
$emit: (event: string, ...args: any[]) => void;
|
18
|
+
$el: any;
|
19
|
+
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{}>>, () => JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & {
|
20
|
+
beforeCreate?: (() => void) | (() => void)[];
|
21
|
+
created?: (() => void) | (() => void)[];
|
22
|
+
beforeMount?: (() => void) | (() => void)[];
|
23
|
+
mounted?: (() => void) | (() => void)[];
|
24
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
25
|
+
updated?: (() => void) | (() => void)[];
|
26
|
+
activated?: (() => void) | (() => void)[];
|
27
|
+
deactivated?: (() => void) | (() => void)[];
|
28
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
29
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
30
|
+
destroyed?: (() => void) | (() => void)[];
|
31
|
+
unmounted?: (() => void) | (() => void)[];
|
32
|
+
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
33
|
+
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
34
|
+
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)[];
|
35
|
+
};
|
36
|
+
$forceUpdate: () => void;
|
37
|
+
$nextTick: typeof import("vue").nextTick;
|
38
|
+
$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;
|
39
|
+
} & Readonly<import("vue").ExtractPropTypes<{}>> & import("vue").ShallowUnwrapRef<() => JSX.Element> & {} & import("vue").ComponentCustomProperties & {};
|
40
|
+
__isFragment?: never;
|
41
|
+
__isTeleport?: never;
|
42
|
+
__isSuspense?: never;
|
43
|
+
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{}>>, () => JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
44
|
+
propsDefinition: Omit<Readonly<{} & {}>, never>;
|
45
|
+
};
|
46
|
+
export default _default;
|
@@ -8,4 +8,5 @@ export declare function defineMediaPickerProvider<TReturnSetup extends MediaPick
|
|
8
8
|
export declare function defineMediaPickerProvider<TReturnSetup extends MediaPickerProvider, T1, T2, T3>(setup: (ctx: SetupMediaPickerProviderContext, param1: T1, param2: T2, param3: T3) => TReturnSetup): (param1: T1, param2: T2, param3: T3) => TReturnSetup;
|
9
9
|
export declare function defineMediaPickerProvider<TReturnSetup extends MediaPickerProvider, T1, T2, T3, T4>(setup: (ctx: SetupMediaPickerProviderContext, param1: T1, param2: T2, param3: T3, param4: T4) => TReturnSetup): (param1: T1, param2: T2, param3: T3, param4: T4) => TReturnSetup;
|
10
10
|
export declare function defineMediaPickerProvider<TReturnSetup extends MediaPickerProvider, T1, T2, T3, T4, T5>(setup: (ctx: SetupMediaPickerProviderContext, param1: T1, param2: T2, param3: T3, param4: T4, param5: T5) => TReturnSetup): (param1: T1, param2: T2, param3: T3, param4: T4, param5: T5) => TReturnSetup;
|
11
|
+
export declare function useMediaPickerProvider(): MediaPickerProvider;
|
11
12
|
export {};
|
@@ -4,12 +4,12 @@ declare const _default: {
|
|
4
4
|
$data: {};
|
5
5
|
$props: Partial<{}> & Omit<{
|
6
6
|
readonly class?: string;
|
7
|
-
readonly variant?: "
|
7
|
+
readonly variant?: "default" | "prominent";
|
8
8
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
9
9
|
variant: {
|
10
|
-
type: import("vue").PropType<"
|
10
|
+
type: import("vue").PropType<"default" | "prominent">;
|
11
11
|
} & {
|
12
|
-
type: import("vue").PropType<"
|
12
|
+
type: import("vue").PropType<"default" | "prominent">;
|
13
13
|
};
|
14
14
|
class: {
|
15
15
|
type: import("vue").PropType<string>;
|
@@ -32,9 +32,9 @@ declare const _default: {
|
|
32
32
|
$el: any;
|
33
33
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
34
34
|
variant: {
|
35
|
-
type: import("vue").PropType<"
|
35
|
+
type: import("vue").PropType<"default" | "prominent">;
|
36
36
|
} & {
|
37
|
-
type: import("vue").PropType<"
|
37
|
+
type: import("vue").PropType<"default" | "prominent">;
|
38
38
|
};
|
39
39
|
class: {
|
40
40
|
type: import("vue").PropType<string>;
|
@@ -63,9 +63,9 @@ declare const _default: {
|
|
63
63
|
$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;
|
64
64
|
} & Readonly<import("vue").ExtractPropTypes<{
|
65
65
|
variant: {
|
66
|
-
type: import("vue").PropType<"
|
66
|
+
type: import("vue").PropType<"default" | "prominent">;
|
67
67
|
} & {
|
68
|
-
type: import("vue").PropType<"
|
68
|
+
type: import("vue").PropType<"default" | "prominent">;
|
69
69
|
};
|
70
70
|
class: {
|
71
71
|
type: import("vue").PropType<string>;
|
@@ -78,9 +78,9 @@ declare const _default: {
|
|
78
78
|
__isSuspense?: never;
|
79
79
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
80
80
|
variant: {
|
81
|
-
type: import("vue").PropType<"
|
81
|
+
type: import("vue").PropType<"default" | "prominent">;
|
82
82
|
} & {
|
83
|
-
type: import("vue").PropType<"
|
83
|
+
type: import("vue").PropType<"default" | "prominent">;
|
84
84
|
};
|
85
85
|
class: {
|
86
86
|
type: import("vue").PropType<string>;
|
@@ -90,7 +90,7 @@ declare const _default: {
|
|
90
90
|
}>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
91
91
|
propsDefinition: Omit<Readonly<{} & {
|
92
92
|
class?: string;
|
93
|
-
variant?: "
|
93
|
+
variant?: "default" | "prominent";
|
94
94
|
}>, never>;
|
95
95
|
};
|
96
96
|
export default _default;
|
@@ -19,6 +19,7 @@ declare const _default: {
|
|
19
19
|
readonly title?: string;
|
20
20
|
readonly class?: String | String[];
|
21
21
|
readonly icon?: IIcon;
|
22
|
+
readonly eager?: boolean;
|
22
23
|
readonly "v-slots"?: {
|
23
24
|
default?: import("../../DefineVueTypings").Slot<any[]>;
|
24
25
|
} & {
|
@@ -34,6 +35,10 @@ declare const _default: {
|
|
34
35
|
header?: Func<[VNodeChild]>;
|
35
36
|
actions?: Func<[VNodeChild]>;
|
36
37
|
}>;
|
38
|
+
eager: {
|
39
|
+
type: import("vue").PropType<boolean>;
|
40
|
+
required: false;
|
41
|
+
};
|
37
42
|
toned: {
|
38
43
|
type: import("vue").PropType<boolean>;
|
39
44
|
} & {
|
@@ -78,6 +83,10 @@ declare const _default: {
|
|
78
83
|
header?: Func<[VNodeChild]>;
|
79
84
|
actions?: Func<[VNodeChild]>;
|
80
85
|
}>;
|
86
|
+
eager: {
|
87
|
+
type: import("vue").PropType<boolean>;
|
88
|
+
required: false;
|
89
|
+
};
|
81
90
|
toned: {
|
82
91
|
type: import("vue").PropType<boolean>;
|
83
92
|
} & {
|
@@ -134,6 +143,10 @@ declare const _default: {
|
|
134
143
|
header?: Func<[VNodeChild]>;
|
135
144
|
actions?: Func<[VNodeChild]>;
|
136
145
|
}>;
|
146
|
+
eager: {
|
147
|
+
type: import("vue").PropType<boolean>;
|
148
|
+
required: false;
|
149
|
+
};
|
137
150
|
toned: {
|
138
151
|
type: import("vue").PropType<boolean>;
|
139
152
|
} & {
|
@@ -168,6 +181,10 @@ declare const _default: {
|
|
168
181
|
header?: Func<[VNodeChild]>;
|
169
182
|
actions?: Func<[VNodeChild]>;
|
170
183
|
}>;
|
184
|
+
eager: {
|
185
|
+
type: import("vue").PropType<boolean>;
|
186
|
+
required: false;
|
187
|
+
};
|
171
188
|
toned: {
|
172
189
|
type: import("vue").PropType<boolean>;
|
173
190
|
} & {
|
@@ -208,6 +225,7 @@ declare const _default: {
|
|
208
225
|
title?: string;
|
209
226
|
class?: String | String[];
|
210
227
|
icon?: IIcon;
|
228
|
+
eager?: boolean;
|
211
229
|
"v-slots"?: {
|
212
230
|
default?: import("../../DefineVueTypings").Slot<any[]>;
|
213
231
|
} & {
|
@@ -1,4 +1,5 @@
|
|
1
1
|
import { IIcon } from "@omnia/fx/models";
|
2
|
+
import { VNodeChild } from "vue";
|
2
3
|
type IconPositions = "left" | "right" | "top";
|
3
4
|
export interface TabIconModel {
|
4
5
|
iconType: IIcon;
|
@@ -27,9 +28,19 @@ declare const _default: {
|
|
27
28
|
readonly "onUpdate:modelValue"?: (value: boolean) => any;
|
28
29
|
readonly "v-model"?: boolean;
|
29
30
|
readonly modelValue?: boolean;
|
31
|
+
readonly "v-slots"?: {
|
32
|
+
default?: import("../../DefineVueTypings").Slot<any[]>;
|
33
|
+
} & {
|
34
|
+
itemRendering?: () => VNodeChild;
|
35
|
+
};
|
30
36
|
readonly variant?: "navigation" | "default" | "header" | "toolbar" | "settings";
|
31
37
|
readonly notificationCount?: number;
|
32
38
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
39
|
+
"v-slots": import("vue").Prop<{
|
40
|
+
default?: import("../../DefineVueTypings").Slot<any[]>;
|
41
|
+
} & {
|
42
|
+
itemRendering?: () => VNodeChild;
|
43
|
+
}>;
|
33
44
|
variant: {
|
34
45
|
type: import("vue").PropType<"navigation" | "default" | "header" | "toolbar" | "settings">;
|
35
46
|
};
|
@@ -80,6 +91,11 @@ declare const _default: {
|
|
80
91
|
$emit: (event: string, ...args: any[]) => void;
|
81
92
|
$el: any;
|
82
93
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
94
|
+
"v-slots": import("vue").Prop<{
|
95
|
+
default?: import("../../DefineVueTypings").Slot<any[]>;
|
96
|
+
} & {
|
97
|
+
itemRendering?: () => VNodeChild;
|
98
|
+
}>;
|
83
99
|
variant: {
|
84
100
|
type: import("vue").PropType<"navigation" | "default" | "header" | "toolbar" | "settings">;
|
85
101
|
};
|
@@ -142,6 +158,11 @@ declare const _default: {
|
|
142
158
|
$nextTick: typeof import("vue").nextTick;
|
143
159
|
$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;
|
144
160
|
} & Readonly<import("vue").ExtractPropTypes<{
|
161
|
+
"v-slots": import("vue").Prop<{
|
162
|
+
default?: import("../../DefineVueTypings").Slot<any[]>;
|
163
|
+
} & {
|
164
|
+
itemRendering?: () => VNodeChild;
|
165
|
+
}>;
|
145
166
|
variant: {
|
146
167
|
type: import("vue").PropType<"navigation" | "default" | "header" | "toolbar" | "settings">;
|
147
168
|
};
|
@@ -182,6 +203,11 @@ declare const _default: {
|
|
182
203
|
__isTeleport?: never;
|
183
204
|
__isSuspense?: never;
|
184
205
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
206
|
+
"v-slots": import("vue").Prop<{
|
207
|
+
default?: import("../../DefineVueTypings").Slot<any[]>;
|
208
|
+
} & {
|
209
|
+
itemRendering?: () => VNodeChild;
|
210
|
+
}>;
|
185
211
|
variant: {
|
186
212
|
type: import("vue").PropType<"navigation" | "default" | "header" | "toolbar" | "settings">;
|
187
213
|
};
|
@@ -238,6 +264,11 @@ declare const _default: {
|
|
238
264
|
"onUpdate:modelValue"?: (value: boolean) => any;
|
239
265
|
"v-model"?: boolean;
|
240
266
|
modelValue?: boolean;
|
267
|
+
"v-slots"?: {
|
268
|
+
default?: import("../../DefineVueTypings").Slot<any[]>;
|
269
|
+
} & {
|
270
|
+
itemRendering?: () => VNodeChild;
|
271
|
+
};
|
241
272
|
variant?: "navigation" | "default" | "header" | "toolbar" | "settings";
|
242
273
|
notificationCount?: number;
|
243
274
|
}>, never>;
|
@@ -47,6 +47,321 @@ export declare const useColorSchemaStore: () => {
|
|
47
47
|
setThemeStore(themeStoreInstance: ReturnType<typeof useThemeStoreV2>): void;
|
48
48
|
};
|
49
49
|
get: {
|
50
|
+
readonly themeStore: {
|
51
|
+
state: {
|
52
|
+
currentTheme: {
|
53
|
+
id: {
|
54
|
+
equals: {
|
55
|
+
guid: (value: import("@omnia/fx-models").GuidValue) => boolean;
|
56
|
+
};
|
57
|
+
toString: () => string;
|
58
|
+
toJSON: () => string;
|
59
|
+
valueOf: () => string;
|
60
|
+
};
|
61
|
+
name: string;
|
62
|
+
dark: boolean;
|
63
|
+
colors: {
|
64
|
+
primary: {
|
65
|
+
name: string;
|
66
|
+
base: {
|
67
|
+
dark: boolean;
|
68
|
+
color: string;
|
69
|
+
colorToned: string;
|
70
|
+
};
|
71
|
+
onBase: {
|
72
|
+
dark: boolean;
|
73
|
+
color: string;
|
74
|
+
colorToned: string;
|
75
|
+
};
|
76
|
+
container: {
|
77
|
+
dark: boolean;
|
78
|
+
color: string;
|
79
|
+
colorToned: string;
|
80
|
+
};
|
81
|
+
onContainer: {
|
82
|
+
dark: boolean;
|
83
|
+
color: string;
|
84
|
+
colorToned: string;
|
85
|
+
};
|
86
|
+
};
|
87
|
+
secondary: {
|
88
|
+
name: string;
|
89
|
+
base: {
|
90
|
+
dark: boolean;
|
91
|
+
color: string;
|
92
|
+
colorToned: string;
|
93
|
+
};
|
94
|
+
onBase: {
|
95
|
+
dark: boolean;
|
96
|
+
color: string;
|
97
|
+
colorToned: string;
|
98
|
+
};
|
99
|
+
container: {
|
100
|
+
dark: boolean;
|
101
|
+
color: string;
|
102
|
+
colorToned: string;
|
103
|
+
};
|
104
|
+
onContainer: {
|
105
|
+
dark: boolean;
|
106
|
+
color: string;
|
107
|
+
colorToned: string;
|
108
|
+
};
|
109
|
+
};
|
110
|
+
accent1: {
|
111
|
+
name: string;
|
112
|
+
base: {
|
113
|
+
dark: boolean;
|
114
|
+
color: string;
|
115
|
+
colorToned: string;
|
116
|
+
};
|
117
|
+
onBase: {
|
118
|
+
dark: boolean;
|
119
|
+
color: string;
|
120
|
+
colorToned: string;
|
121
|
+
};
|
122
|
+
container: {
|
123
|
+
dark: boolean;
|
124
|
+
color: string;
|
125
|
+
colorToned: string;
|
126
|
+
};
|
127
|
+
onContainer: {
|
128
|
+
dark: boolean;
|
129
|
+
color: string;
|
130
|
+
colorToned: string;
|
131
|
+
};
|
132
|
+
};
|
133
|
+
accent2: {
|
134
|
+
name: string;
|
135
|
+
base: {
|
136
|
+
dark: boolean;
|
137
|
+
color: string;
|
138
|
+
colorToned: string;
|
139
|
+
};
|
140
|
+
onBase: {
|
141
|
+
dark: boolean;
|
142
|
+
color: string;
|
143
|
+
colorToned: string;
|
144
|
+
};
|
145
|
+
container: {
|
146
|
+
dark: boolean;
|
147
|
+
color: string;
|
148
|
+
colorToned: string;
|
149
|
+
};
|
150
|
+
onContainer: {
|
151
|
+
dark: boolean;
|
152
|
+
color: string;
|
153
|
+
colorToned: string;
|
154
|
+
};
|
155
|
+
};
|
156
|
+
accent3: {
|
157
|
+
name: string;
|
158
|
+
base: {
|
159
|
+
dark: boolean;
|
160
|
+
color: string;
|
161
|
+
colorToned: string;
|
162
|
+
};
|
163
|
+
onBase: {
|
164
|
+
dark: boolean;
|
165
|
+
color: string;
|
166
|
+
colorToned: string;
|
167
|
+
};
|
168
|
+
container: {
|
169
|
+
dark: boolean;
|
170
|
+
color: string;
|
171
|
+
colorToned: string;
|
172
|
+
};
|
173
|
+
onContainer: {
|
174
|
+
dark: boolean;
|
175
|
+
color: string;
|
176
|
+
colorToned: string;
|
177
|
+
};
|
178
|
+
};
|
179
|
+
neutral: {
|
180
|
+
name: string;
|
181
|
+
base: {
|
182
|
+
dark: boolean;
|
183
|
+
color: string;
|
184
|
+
colorToned: string;
|
185
|
+
};
|
186
|
+
onBase: {
|
187
|
+
dark: boolean;
|
188
|
+
color: string;
|
189
|
+
colorToned: string;
|
190
|
+
};
|
191
|
+
container: {
|
192
|
+
dark: boolean;
|
193
|
+
color: string;
|
194
|
+
colorToned: string;
|
195
|
+
};
|
196
|
+
onContainer: {
|
197
|
+
dark: boolean;
|
198
|
+
color: string;
|
199
|
+
colorToned: string;
|
200
|
+
};
|
201
|
+
};
|
202
|
+
background: {
|
203
|
+
name: string;
|
204
|
+
base: {
|
205
|
+
dark: boolean;
|
206
|
+
color: string;
|
207
|
+
colorToned: string;
|
208
|
+
};
|
209
|
+
onBase: {
|
210
|
+
dark: boolean;
|
211
|
+
color: string;
|
212
|
+
colorToned: string;
|
213
|
+
};
|
214
|
+
container: {
|
215
|
+
dark: boolean;
|
216
|
+
color: string;
|
217
|
+
colorToned: string;
|
218
|
+
};
|
219
|
+
onContainer: {
|
220
|
+
dark: boolean;
|
221
|
+
color: string;
|
222
|
+
colorToned: string;
|
223
|
+
};
|
224
|
+
};
|
225
|
+
error: {
|
226
|
+
name: string;
|
227
|
+
base: {
|
228
|
+
dark: boolean;
|
229
|
+
color: string;
|
230
|
+
colorToned: string;
|
231
|
+
};
|
232
|
+
onBase: {
|
233
|
+
dark: boolean;
|
234
|
+
color: string;
|
235
|
+
colorToned: string;
|
236
|
+
};
|
237
|
+
container: {
|
238
|
+
dark: boolean;
|
239
|
+
color: string;
|
240
|
+
colorToned: string;
|
241
|
+
};
|
242
|
+
onContainer: {
|
243
|
+
dark: boolean;
|
244
|
+
color: string;
|
245
|
+
colorToned: string;
|
246
|
+
};
|
247
|
+
};
|
248
|
+
info: {
|
249
|
+
name: string;
|
250
|
+
base: {
|
251
|
+
dark: boolean;
|
252
|
+
color: string;
|
253
|
+
colorToned: string;
|
254
|
+
};
|
255
|
+
onBase: {
|
256
|
+
dark: boolean;
|
257
|
+
color: string;
|
258
|
+
colorToned: string;
|
259
|
+
};
|
260
|
+
container: {
|
261
|
+
dark: boolean;
|
262
|
+
color: string;
|
263
|
+
colorToned: string;
|
264
|
+
};
|
265
|
+
onContainer: {
|
266
|
+
dark: boolean;
|
267
|
+
color: string;
|
268
|
+
colorToned: string;
|
269
|
+
};
|
270
|
+
};
|
271
|
+
};
|
272
|
+
blueprints: {
|
273
|
+
default: {
|
274
|
+
id: {
|
275
|
+
equals: {
|
276
|
+
guid: (value: import("@omnia/fx-models").GuidValue) => boolean;
|
277
|
+
};
|
278
|
+
toString: () => string;
|
279
|
+
toJSON: () => string;
|
280
|
+
valueOf: () => string;
|
281
|
+
};
|
282
|
+
name: string;
|
283
|
+
definitions: {
|
284
|
+
type: "block" | "button" | "typography" | "searchbox" | "layout-spacing" | "inner-spacing";
|
285
|
+
}[];
|
286
|
+
};
|
287
|
+
variant1: {
|
288
|
+
id: {
|
289
|
+
equals: {
|
290
|
+
guid: (value: import("@omnia/fx-models").GuidValue) => boolean;
|
291
|
+
};
|
292
|
+
toString: () => string;
|
293
|
+
toJSON: () => string;
|
294
|
+
valueOf: () => string;
|
295
|
+
};
|
296
|
+
name: string;
|
297
|
+
definitions: {
|
298
|
+
type: "block" | "button" | "typography" | "searchbox" | "layout-spacing" | "inner-spacing";
|
299
|
+
}[];
|
300
|
+
};
|
301
|
+
variant2: {
|
302
|
+
id: {
|
303
|
+
equals: {
|
304
|
+
guid: (value: import("@omnia/fx-models").GuidValue) => boolean;
|
305
|
+
};
|
306
|
+
toString: () => string;
|
307
|
+
toJSON: () => string;
|
308
|
+
valueOf: () => string;
|
309
|
+
};
|
310
|
+
name: string;
|
311
|
+
definitions: {
|
312
|
+
type: "block" | "button" | "typography" | "searchbox" | "layout-spacing" | "inner-spacing";
|
313
|
+
}[];
|
314
|
+
};
|
315
|
+
variant3: {
|
316
|
+
id: {
|
317
|
+
equals: {
|
318
|
+
guid: (value: import("@omnia/fx-models").GuidValue) => boolean;
|
319
|
+
};
|
320
|
+
toString: () => string;
|
321
|
+
toJSON: () => string;
|
322
|
+
valueOf: () => string;
|
323
|
+
};
|
324
|
+
name: string;
|
325
|
+
definitions: {
|
326
|
+
type: "block" | "button" | "typography" | "searchbox" | "layout-spacing" | "inner-spacing";
|
327
|
+
}[];
|
328
|
+
};
|
329
|
+
};
|
330
|
+
};
|
331
|
+
};
|
332
|
+
events: {
|
333
|
+
[x: string]: {
|
334
|
+
subscribe: (fn: (obj: any) => void) => import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
335
|
+
publish: (msg: any) => void;
|
336
|
+
};
|
337
|
+
onMutatedCurrentTheme: {
|
338
|
+
subscribe: (fn: (obj: import("@omnia/fx-models").ThemeDefinitionV2) => void) => import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
339
|
+
};
|
340
|
+
};
|
341
|
+
actions: {
|
342
|
+
onDispatching: <T_3 extends (...args: any) => any>(action: (actions: {
|
343
|
+
setTheme(themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2): void;
|
344
|
+
}) => T_3, fn: T_3 extends (...args: infer U) => any ? (...args: U) => void : never) => import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
345
|
+
onDispatched: <T_4 extends (...args: any) => any>(action: (actions: {
|
346
|
+
setTheme(themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2): void;
|
347
|
+
}) => T_4, fn: T_4 extends (...args: infer U_1) => infer Y | Promise<infer Y> ? (result: Y, ...args: U_1) => void : never) => import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
348
|
+
onFailure: <T_5 extends (...args: any) => any>(action: (actions: {
|
349
|
+
setTheme(themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2): void;
|
350
|
+
}) => T_5, fn: T_5 extends (...args: infer U_2) => any ? (failureReason: any, ...args: U_2) => void : never) => import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
351
|
+
setTheme: (themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2) => void;
|
352
|
+
};
|
353
|
+
get: {
|
354
|
+
colorSchema: (colorSchemaType: "info" | "error" | ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background") => ColorSchema;
|
355
|
+
blueprint: (blueprintType: "default" | "variant1" | "variant2" | "variant3" | import("@omnia/fx-models").BlueprintTypes) => import("@omnia/fx-models").BlueprintDefinition;
|
356
|
+
typography: (typographyType: "title" | "text" | "navigation" | import("@omnia/fx-models").TypographyTypes, size: "xs" | "s" | "m" | "l" | "xl" | import("@omnia/fx-models").TypographySizes) => import("@omnia/fx-models").TypographyTypeDefinition;
|
357
|
+
color: (colorSchemaType: "info" | "error" | ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: ColorTypes | "base" | "onBase" | "container" | "onContainer") => string;
|
358
|
+
colorDefinition: (colorSchemaType: "info" | "error" | ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: ColorTypes | "base" | "onBase" | "container" | "onContainer") => ColorDefinition;
|
359
|
+
complementaryColorType: (colorType: ColorTypes | "base" | "onBase" | "container" | "onContainer") => ColorTypes;
|
360
|
+
complementaryColor: (colorSchemaType: "info" | "error" | ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: ColorTypes | "base" | "onBase" | "container" | "onContainer") => string;
|
361
|
+
complementaryColorDefinition: (colorSchemaType: "info" | "error" | ColorSchemaTypes | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background", colorType: ColorTypes | "base" | "onBase" | "container" | "onContainer") => ColorDefinition;
|
362
|
+
currentTheme: () => import("@omnia/fx-models").ThemeDefinitionV2;
|
363
|
+
};
|
364
|
+
};
|
50
365
|
readonly colorSchema: ColorSchema;
|
51
366
|
readonly theme: "light" | "dark";
|
52
367
|
readonly base: ColorDefinition;
|
@@ -16,6 +16,7 @@ declare const _default: {
|
|
16
16
|
readonly colorSchemaType?: any;
|
17
17
|
readonly blueprintType?: any;
|
18
18
|
readonly colors?: any;
|
19
|
+
readonly class?: String | String[];
|
19
20
|
readonly name?: {
|
20
21
|
[x: `onUpdate:${string}`]: {
|
21
22
|
type: import("vue").PropType<(value: Guid) => any>;
|
@@ -159,6 +160,10 @@ declare const _default: {
|
|
159
160
|
};
|
160
161
|
}>;
|
161
162
|
};
|
163
|
+
class: {
|
164
|
+
type: import("vue").PropType<String | String[]>;
|
165
|
+
required: boolean;
|
166
|
+
};
|
162
167
|
colorSchemaType?: any;
|
163
168
|
container?: any;
|
164
169
|
colors?: any;
|
@@ -257,6 +262,10 @@ declare const _default: {
|
|
257
262
|
};
|
258
263
|
}>;
|
259
264
|
};
|
265
|
+
class: {
|
266
|
+
type: import("vue").PropType<String | String[]>;
|
267
|
+
required: boolean;
|
268
|
+
};
|
260
269
|
colorSchemaType?: any;
|
261
270
|
container?: any;
|
262
271
|
colors?: any;
|
@@ -369,6 +378,10 @@ declare const _default: {
|
|
369
378
|
};
|
370
379
|
}>;
|
371
380
|
};
|
381
|
+
class: {
|
382
|
+
type: import("vue").PropType<String | String[]>;
|
383
|
+
required: boolean;
|
384
|
+
};
|
372
385
|
colorSchemaType?: any;
|
373
386
|
container?: any;
|
374
387
|
colors?: any;
|
@@ -457,6 +470,10 @@ declare const _default: {
|
|
457
470
|
};
|
458
471
|
}>;
|
459
472
|
};
|
473
|
+
class: {
|
474
|
+
type: import("vue").PropType<String | String[]>;
|
475
|
+
required: boolean;
|
476
|
+
};
|
460
477
|
colorSchemaType?: any;
|
461
478
|
container?: any;
|
462
479
|
colors?: any;
|
@@ -480,6 +497,7 @@ declare const _default: {
|
|
480
497
|
blueprintType?: any;
|
481
498
|
colors?: any;
|
482
499
|
} & {
|
500
|
+
class?: String | String[];
|
483
501
|
name?: {
|
484
502
|
[x: `onUpdate:${string}`]: {
|
485
503
|
type: import("vue").PropType<(value: Guid) => any>;
|