@omnia/fx 8.0.260-dev → 8.0.262-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/services/SecretsService.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/features/stores/FeatureJourneyStore.d.ts +3 -3
- package/internal-do-not-import-from-here/ux/oxide/appbar/Appbar.d.ts +4 -262
- package/internal-do-not-import-from-here/ux/oxide/avatar/Avatar.d.ts +4 -159
- package/internal-do-not-import-from-here/ux/oxide/badge/Badge.d.ts +3 -455
- package/internal-do-not-import-from-here/ux/oxide/btngroup/ButtonGroup.d.ts +4 -224
- package/internal-do-not-import-from-here/ux/oxide/calendar/Calendar.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/oxide/card/Card.d.ts +3 -145
- package/internal-do-not-import-from-here/ux/oxide/chart/Chart.d.ts +5 -143
- package/internal-do-not-import-from-here/ux/oxide/checkbox/Checkbox.d.ts +4 -273
- package/internal-do-not-import-from-here/ux/oxide/chip/Chip.d.ts +4 -257
- package/internal-do-not-import-from-here/ux/oxide/datepicker/DatePicker.d.ts +1 -242
- package/internal-do-not-import-from-here/ux/use/UseValidation.d.ts +3 -3
- package/internal-do-not-import-from-here/ux/use/index.d.ts +1 -1
- package/package.json +2 -2
@@ -4,4 +4,5 @@ export declare class SecretsService {
|
|
4
4
|
getSecret: (key: string, serviceId: guid, profileId?: guid) => Promise<Secret>;
|
5
5
|
setTenantSecret: (secret: Secret) => Promise<void>;
|
6
6
|
setBusinessProfileSecret: (secret: Secret, profileId: guid) => Promise<void>;
|
7
|
+
removeSecret: (key: string, serviceId: guid, profileId?: guid) => Promise<void>;
|
7
8
|
}
|
@@ -11,8 +11,8 @@ export declare const useFeatureJourneyStore: () => {
|
|
11
11
|
isUpgradingFull: boolean;
|
12
12
|
selectedFeature: FeatureInstanceDetails<FeatureInstance>;
|
13
13
|
activeFeature: FeatureInstanceDetails<FeatureInstance>;
|
14
|
-
featuresInstances:
|
15
|
-
featuresRequireUpgrade:
|
14
|
+
featuresInstances: FeatureInstanceDetails<FeatureInstance>[];
|
15
|
+
featuresRequireUpgrade: FeatureInstanceDetails<FeatureInstance>[];
|
16
16
|
bindingState: string;
|
17
17
|
allowCheckingStatus: boolean;
|
18
18
|
requiredConsentFeatures: Record<string, RequiredAzureAdPermission[]>;
|
@@ -151,7 +151,7 @@ export declare const useFeatureJourneyStore: () => {
|
|
151
151
|
setActiveFeature: (feature: FeatureInstanceDetails<FeatureInstance>) => void;
|
152
152
|
searchFeatures: (searchText: string) => void;
|
153
153
|
handleFeatureStatus: (featureInstance: FeatureInstance) => void;
|
154
|
-
populateAzureAdPermissionsInfo: (featureInstance: FeatureInstance) => void
|
154
|
+
populateAzureAdPermissionsInfo: (featureInstance: FeatureInstance) => Promise<void>;
|
155
155
|
checkRequestedPermissionsSynced: (permissionIds: Array<string>) => void;
|
156
156
|
isLastRequiredPermissionFeature: (featureDeactivated: VDataGridItemScopedSlot<FeatureInstance>) => void;
|
157
157
|
};
|
@@ -1,264 +1,6 @@
|
|
1
|
-
import {
|
1
|
+
import { DefineEmit, DefineProp, DefinePropTheming, DefineSlot } from "@omnia/fx/ux";
|
2
|
+
import { OAppBarTypes, IIcon } from "@omnia/fx/models";
|
2
3
|
import { VNodeChild } from "vue";
|
3
|
-
|
4
|
-
|
5
|
-
"v-slots": import("vue").Prop<{
|
6
|
-
default?: import("../../DefineVueTypings").Slot;
|
7
|
-
} & {
|
8
|
-
actionButtons?: Func<[VNodeChild]>;
|
9
|
-
}>;
|
10
|
-
subTitle: {
|
11
|
-
type: import("vue").PropType<string>;
|
12
|
-
};
|
13
|
-
title: {
|
14
|
-
type: import("vue").PropType<string>;
|
15
|
-
};
|
16
|
-
closable: {
|
17
|
-
type: import("vue").PropType<boolean>;
|
18
|
-
};
|
19
|
-
navigationExpanded: {
|
20
|
-
type: import("vue").PropType<boolean>;
|
21
|
-
required: false;
|
22
|
-
};
|
23
|
-
navigation: {
|
24
|
-
type: import("vue").PropType<boolean>;
|
25
|
-
};
|
26
|
-
variant: {
|
27
|
-
type: import("vue").PropType<"default" | "chrome" | "app">;
|
28
|
-
};
|
29
|
-
absolute: {
|
30
|
-
type: import("vue").PropType<boolean>;
|
31
|
-
};
|
32
|
-
id: {
|
33
|
-
type: import("vue").PropType<string>;
|
34
|
-
};
|
35
|
-
icon: {
|
36
|
-
type: import("vue").PropType<IIcon>;
|
37
|
-
};
|
38
|
-
class: {
|
39
|
-
type: import("vue").PropType<String | String[]>;
|
40
|
-
required: boolean;
|
41
|
-
};
|
42
|
-
colorSchemaType: {
|
43
|
-
type: import("vue").PropType<import("@omnia/fx-models").ColorSchemaTypes | import("@omnia/fx-models").ColorSchemaType>;
|
44
|
-
required: boolean;
|
45
|
-
};
|
46
|
-
container: {
|
47
|
-
type: BooleanConstructor;
|
48
|
-
required: boolean;
|
49
|
-
};
|
50
|
-
colors: {
|
51
|
-
type: import("vue").PropType<import("@omnia/fx/ux").ColorSchemaStoreType>;
|
52
|
-
required: boolean;
|
53
|
-
};
|
54
|
-
}>> & {
|
55
|
-
"onClick:close"?: () => any;
|
56
|
-
"onClick:navigation"?: () => any;
|
57
|
-
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
58
|
-
"click:navigation": () => true;
|
59
|
-
"click:close": () => true;
|
60
|
-
}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
61
|
-
"v-slots": import("vue").Prop<{
|
62
|
-
default?: import("../../DefineVueTypings").Slot;
|
63
|
-
} & {
|
64
|
-
actionButtons?: Func<[VNodeChild]>;
|
65
|
-
}>;
|
66
|
-
subTitle: {
|
67
|
-
type: import("vue").PropType<string>;
|
68
|
-
};
|
69
|
-
title: {
|
70
|
-
type: import("vue").PropType<string>;
|
71
|
-
};
|
72
|
-
closable: {
|
73
|
-
type: import("vue").PropType<boolean>;
|
74
|
-
};
|
75
|
-
navigationExpanded: {
|
76
|
-
type: import("vue").PropType<boolean>;
|
77
|
-
required: false;
|
78
|
-
};
|
79
|
-
navigation: {
|
80
|
-
type: import("vue").PropType<boolean>;
|
81
|
-
};
|
82
|
-
variant: {
|
83
|
-
type: import("vue").PropType<"default" | "chrome" | "app">;
|
84
|
-
};
|
85
|
-
absolute: {
|
86
|
-
type: import("vue").PropType<boolean>;
|
87
|
-
};
|
88
|
-
id: {
|
89
|
-
type: import("vue").PropType<string>;
|
90
|
-
};
|
91
|
-
icon: {
|
92
|
-
type: import("vue").PropType<IIcon>;
|
93
|
-
};
|
94
|
-
class: {
|
95
|
-
type: import("vue").PropType<String | String[]>;
|
96
|
-
required: boolean;
|
97
|
-
};
|
98
|
-
colorSchemaType: {
|
99
|
-
type: import("vue").PropType<import("@omnia/fx-models").ColorSchemaTypes | import("@omnia/fx-models").ColorSchemaType>;
|
100
|
-
required: boolean;
|
101
|
-
};
|
102
|
-
container: {
|
103
|
-
type: BooleanConstructor;
|
104
|
-
required: boolean;
|
105
|
-
};
|
106
|
-
colors: {
|
107
|
-
type: import("vue").PropType<import("@omnia/fx/ux").ColorSchemaStoreType>;
|
108
|
-
required: boolean;
|
109
|
-
};
|
110
|
-
}>> & {
|
111
|
-
"onClick:close"?: () => any;
|
112
|
-
"onClick:navigation"?: () => any;
|
113
|
-
}, {
|
114
|
-
container: boolean;
|
115
|
-
}, true, {}, {}, {
|
116
|
-
P: {};
|
117
|
-
B: {};
|
118
|
-
D: {};
|
119
|
-
C: {};
|
120
|
-
M: {};
|
121
|
-
Defaults: {};
|
122
|
-
}, Readonly<import("vue").ExtractPropTypes<{
|
123
|
-
"v-slots": import("vue").Prop<{
|
124
|
-
default?: import("../../DefineVueTypings").Slot;
|
125
|
-
} & {
|
126
|
-
actionButtons?: Func<[VNodeChild]>;
|
127
|
-
}>;
|
128
|
-
subTitle: {
|
129
|
-
type: import("vue").PropType<string>;
|
130
|
-
};
|
131
|
-
title: {
|
132
|
-
type: import("vue").PropType<string>;
|
133
|
-
};
|
134
|
-
closable: {
|
135
|
-
type: import("vue").PropType<boolean>;
|
136
|
-
};
|
137
|
-
navigationExpanded: {
|
138
|
-
type: import("vue").PropType<boolean>;
|
139
|
-
required: false;
|
140
|
-
};
|
141
|
-
navigation: {
|
142
|
-
type: import("vue").PropType<boolean>;
|
143
|
-
};
|
144
|
-
variant: {
|
145
|
-
type: import("vue").PropType<"default" | "chrome" | "app">;
|
146
|
-
};
|
147
|
-
absolute: {
|
148
|
-
type: import("vue").PropType<boolean>;
|
149
|
-
};
|
150
|
-
id: {
|
151
|
-
type: import("vue").PropType<string>;
|
152
|
-
};
|
153
|
-
icon: {
|
154
|
-
type: import("vue").PropType<IIcon>;
|
155
|
-
};
|
156
|
-
class: {
|
157
|
-
type: import("vue").PropType<String | String[]>;
|
158
|
-
required: boolean;
|
159
|
-
};
|
160
|
-
colorSchemaType: {
|
161
|
-
type: import("vue").PropType<import("@omnia/fx-models").ColorSchemaTypes | import("@omnia/fx-models").ColorSchemaType>;
|
162
|
-
required: boolean;
|
163
|
-
};
|
164
|
-
container: {
|
165
|
-
type: BooleanConstructor;
|
166
|
-
required: boolean;
|
167
|
-
};
|
168
|
-
colors: {
|
169
|
-
type: import("vue").PropType<import("@omnia/fx/ux").ColorSchemaStoreType>;
|
170
|
-
required: boolean;
|
171
|
-
};
|
172
|
-
}>> & {
|
173
|
-
"onClick:close"?: () => any;
|
174
|
-
"onClick:navigation"?: () => any;
|
175
|
-
}, () => JSX.Element, {}, {}, {}, {
|
176
|
-
container: boolean;
|
177
|
-
}>;
|
178
|
-
__isFragment?: never;
|
179
|
-
__isTeleport?: never;
|
180
|
-
__isSuspense?: never;
|
181
|
-
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
182
|
-
"v-slots": import("vue").Prop<{
|
183
|
-
default?: import("../../DefineVueTypings").Slot;
|
184
|
-
} & {
|
185
|
-
actionButtons?: Func<[VNodeChild]>;
|
186
|
-
}>;
|
187
|
-
subTitle: {
|
188
|
-
type: import("vue").PropType<string>;
|
189
|
-
};
|
190
|
-
title: {
|
191
|
-
type: import("vue").PropType<string>;
|
192
|
-
};
|
193
|
-
closable: {
|
194
|
-
type: import("vue").PropType<boolean>;
|
195
|
-
};
|
196
|
-
navigationExpanded: {
|
197
|
-
type: import("vue").PropType<boolean>;
|
198
|
-
required: false;
|
199
|
-
};
|
200
|
-
navigation: {
|
201
|
-
type: import("vue").PropType<boolean>;
|
202
|
-
};
|
203
|
-
variant: {
|
204
|
-
type: import("vue").PropType<"default" | "chrome" | "app">;
|
205
|
-
};
|
206
|
-
absolute: {
|
207
|
-
type: import("vue").PropType<boolean>;
|
208
|
-
};
|
209
|
-
id: {
|
210
|
-
type: import("vue").PropType<string>;
|
211
|
-
};
|
212
|
-
icon: {
|
213
|
-
type: import("vue").PropType<IIcon>;
|
214
|
-
};
|
215
|
-
class: {
|
216
|
-
type: import("vue").PropType<String | String[]>;
|
217
|
-
required: boolean;
|
218
|
-
};
|
219
|
-
colorSchemaType: {
|
220
|
-
type: import("vue").PropType<import("@omnia/fx-models").ColorSchemaTypes | import("@omnia/fx-models").ColorSchemaType>;
|
221
|
-
required: boolean;
|
222
|
-
};
|
223
|
-
container: {
|
224
|
-
type: BooleanConstructor;
|
225
|
-
required: boolean;
|
226
|
-
};
|
227
|
-
colors: {
|
228
|
-
type: import("vue").PropType<import("@omnia/fx/ux").ColorSchemaStoreType>;
|
229
|
-
required: boolean;
|
230
|
-
};
|
231
|
-
}>> & {
|
232
|
-
"onClick:close"?: () => any;
|
233
|
-
"onClick:navigation"?: () => any;
|
234
|
-
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
235
|
-
"click:navigation": () => true;
|
236
|
-
"click:close": () => true;
|
237
|
-
}, string, {
|
238
|
-
container: boolean;
|
239
|
-
}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
240
|
-
propsDefinition: Omit<Readonly<{} & {
|
241
|
-
icon?: IIcon;
|
242
|
-
title?: string;
|
243
|
-
navigation?: boolean;
|
244
|
-
container?: boolean;
|
245
|
-
id?: string;
|
246
|
-
class?: String | String[];
|
247
|
-
absolute?: boolean;
|
248
|
-
colorSchemaType?: "background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "accent4" | "accent5" | "neutral" | "warning" | "notification" | "error" | "info" | "success" | "dynamic";
|
249
|
-
colors?: import("@omnia/fx/ux").ColorSchemaStoreType;
|
250
|
-
"v-slots"?: {
|
251
|
-
default?: import("../../DefineVueTypings").Slot;
|
252
|
-
} & {
|
253
|
-
actionButtons?: Func<[VNodeChild]>;
|
254
|
-
};
|
255
|
-
variant?: "default" | "chrome" | "app";
|
256
|
-
subTitle?: string;
|
257
|
-
navigationExpanded?: boolean;
|
258
|
-
closable?: boolean;
|
259
|
-
}>, "onClick:close" | "onClick:navigation"> & {
|
260
|
-
"onClick:close"?: () => any;
|
261
|
-
"onClick:navigation"?: () => any;
|
262
|
-
};
|
263
|
-
};
|
4
|
+
type AppBarProps = DefinePropTheming & DefineProp<"class", String | String[]> & DefineProp<"filled", boolean, false, false, "Applies the a background color to the flex. The color is based on the colorSchema either set or inherited."> & DefineProp<"icon", IIcon, false, null, "The icon of the appbar."> & DefineProp<"id", string, false, null> & DefineProp<"absolute", boolean, false, false, "Applies position: absolute to the component."> & DefineProp<"variant", OAppBarTypes, false, null, "Applies a distinct style to the component."> & DefineProp<"navigation", boolean, false, false, "Displays a navigation icon on the left side of the appbar. It also emits a click:navigation event when clicked."> & DefineProp<"navigationExpanded", boolean, false, false, "If the navigation is expanded or not when the appbar is first rendered."> & DefineProp<"closable", boolean, false, false, "Displays a close icon on the right side of the appbar. It also emits a click:close event when clicked."> & DefineProp<"title", string, false, null, "Specify the title of the app bar."> & DefineProp<"subTitle", string, false, null, "Specify a subtitle for the app bar and the title is displayed in a breadcrumb style where the subTittle is prominent."> & DefineSlot<"actionButtons", () => VNodeChild> & DefineEmit<"click:navigation", () => void> & DefineEmit<"click:close", () => void>;
|
5
|
+
declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<AppBarProps>) => any;
|
264
6
|
export default _default;
|
@@ -1,160 +1,5 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
};
|
6
|
-
colorType: {
|
7
|
-
type: import("vue").PropType<"base" | "onBase" | "container" | "onContainer">;
|
8
|
-
};
|
9
|
-
size: {
|
10
|
-
type: import("vue").PropType<"small" | "default" | "x-large" | "x-small" | "large">;
|
11
|
-
};
|
12
|
-
toned: {
|
13
|
-
type: import("vue").PropType<boolean>;
|
14
|
-
};
|
15
|
-
color: {
|
16
|
-
type: import("vue").PropType<string>;
|
17
|
-
};
|
18
|
-
class: {
|
19
|
-
type: import("vue").PropType<String | String[]>;
|
20
|
-
required: boolean;
|
21
|
-
};
|
22
|
-
colorSchemaType: {
|
23
|
-
type: import("vue").PropType<import("@omnia/fx-models").ColorSchemaTypes | import("@omnia/fx-models").ColorSchemaType>;
|
24
|
-
required: boolean;
|
25
|
-
};
|
26
|
-
container: {
|
27
|
-
type: BooleanConstructor;
|
28
|
-
required: boolean;
|
29
|
-
};
|
30
|
-
colors: {
|
31
|
-
type: import("vue").PropType<import("@omnia/fx/ux").ColorSchemaStoreType>;
|
32
|
-
required: boolean;
|
33
|
-
};
|
34
|
-
}>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
35
|
-
gradient: {
|
36
|
-
type: import("vue").PropType<boolean>;
|
37
|
-
};
|
38
|
-
colorType: {
|
39
|
-
type: import("vue").PropType<"base" | "onBase" | "container" | "onContainer">;
|
40
|
-
};
|
41
|
-
size: {
|
42
|
-
type: import("vue").PropType<"small" | "default" | "x-large" | "x-small" | "large">;
|
43
|
-
};
|
44
|
-
toned: {
|
45
|
-
type: import("vue").PropType<boolean>;
|
46
|
-
};
|
47
|
-
color: {
|
48
|
-
type: import("vue").PropType<string>;
|
49
|
-
};
|
50
|
-
class: {
|
51
|
-
type: import("vue").PropType<String | String[]>;
|
52
|
-
required: boolean;
|
53
|
-
};
|
54
|
-
colorSchemaType: {
|
55
|
-
type: import("vue").PropType<import("@omnia/fx-models").ColorSchemaTypes | import("@omnia/fx-models").ColorSchemaType>;
|
56
|
-
required: boolean;
|
57
|
-
};
|
58
|
-
container: {
|
59
|
-
type: BooleanConstructor;
|
60
|
-
required: boolean;
|
61
|
-
};
|
62
|
-
colors: {
|
63
|
-
type: import("vue").PropType<import("@omnia/fx/ux").ColorSchemaStoreType>;
|
64
|
-
required: boolean;
|
65
|
-
};
|
66
|
-
}>>, {
|
67
|
-
container: boolean;
|
68
|
-
}, true, {}, {}, {
|
69
|
-
P: {};
|
70
|
-
B: {};
|
71
|
-
D: {};
|
72
|
-
C: {};
|
73
|
-
M: {};
|
74
|
-
Defaults: {};
|
75
|
-
}, Readonly<import("vue").ExtractPropTypes<{
|
76
|
-
gradient: {
|
77
|
-
type: import("vue").PropType<boolean>;
|
78
|
-
};
|
79
|
-
colorType: {
|
80
|
-
type: import("vue").PropType<"base" | "onBase" | "container" | "onContainer">;
|
81
|
-
};
|
82
|
-
size: {
|
83
|
-
type: import("vue").PropType<"small" | "default" | "x-large" | "x-small" | "large">;
|
84
|
-
};
|
85
|
-
toned: {
|
86
|
-
type: import("vue").PropType<boolean>;
|
87
|
-
};
|
88
|
-
color: {
|
89
|
-
type: import("vue").PropType<string>;
|
90
|
-
};
|
91
|
-
class: {
|
92
|
-
type: import("vue").PropType<String | String[]>;
|
93
|
-
required: boolean;
|
94
|
-
};
|
95
|
-
colorSchemaType: {
|
96
|
-
type: import("vue").PropType<import("@omnia/fx-models").ColorSchemaTypes | import("@omnia/fx-models").ColorSchemaType>;
|
97
|
-
required: boolean;
|
98
|
-
};
|
99
|
-
container: {
|
100
|
-
type: BooleanConstructor;
|
101
|
-
required: boolean;
|
102
|
-
};
|
103
|
-
colors: {
|
104
|
-
type: import("vue").PropType<import("@omnia/fx/ux").ColorSchemaStoreType>;
|
105
|
-
required: boolean;
|
106
|
-
};
|
107
|
-
}>>, () => JSX.Element, {}, {}, {}, {
|
108
|
-
container: boolean;
|
109
|
-
}>;
|
110
|
-
__isFragment?: never;
|
111
|
-
__isTeleport?: never;
|
112
|
-
__isSuspense?: never;
|
113
|
-
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
114
|
-
gradient: {
|
115
|
-
type: import("vue").PropType<boolean>;
|
116
|
-
};
|
117
|
-
colorType: {
|
118
|
-
type: import("vue").PropType<"base" | "onBase" | "container" | "onContainer">;
|
119
|
-
};
|
120
|
-
size: {
|
121
|
-
type: import("vue").PropType<"small" | "default" | "x-large" | "x-small" | "large">;
|
122
|
-
};
|
123
|
-
toned: {
|
124
|
-
type: import("vue").PropType<boolean>;
|
125
|
-
};
|
126
|
-
color: {
|
127
|
-
type: import("vue").PropType<string>;
|
128
|
-
};
|
129
|
-
class: {
|
130
|
-
type: import("vue").PropType<String | String[]>;
|
131
|
-
required: boolean;
|
132
|
-
};
|
133
|
-
colorSchemaType: {
|
134
|
-
type: import("vue").PropType<import("@omnia/fx-models").ColorSchemaTypes | import("@omnia/fx-models").ColorSchemaType>;
|
135
|
-
required: boolean;
|
136
|
-
};
|
137
|
-
container: {
|
138
|
-
type: BooleanConstructor;
|
139
|
-
required: boolean;
|
140
|
-
};
|
141
|
-
colors: {
|
142
|
-
type: import("vue").PropType<import("@omnia/fx/ux").ColorSchemaStoreType>;
|
143
|
-
required: boolean;
|
144
|
-
};
|
145
|
-
}>>, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, {
|
146
|
-
container: boolean;
|
147
|
-
}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
148
|
-
propsDefinition: Omit<Readonly<{} & {
|
149
|
-
color?: string;
|
150
|
-
container?: boolean;
|
151
|
-
class?: String | String[];
|
152
|
-
size?: "small" | "default" | "x-large" | "x-small" | "large";
|
153
|
-
colorSchemaType?: "background" | "primary" | "secondary" | import("@omnia/fx-models").ColorSchemaTypes | "accent1" | "accent2" | "accent3" | "accent4" | "accent5" | "neutral" | "warning" | "notification" | "error" | "info" | "success" | "dynamic";
|
154
|
-
colorType?: "base" | "onBase" | "container" | "onContainer";
|
155
|
-
toned?: boolean;
|
156
|
-
colors?: import("@omnia/fx/ux").ColorSchemaStoreType;
|
157
|
-
gradient?: boolean;
|
158
|
-
}>, never>;
|
159
|
-
};
|
1
|
+
import { DefineProp, DefinePropTheming } from "@omnia/fx/ux";
|
2
|
+
import { ColorType, OSizeTypes } from "@omnia/fx-models";
|
3
|
+
type AvatarProps = DefinePropTheming & DefineProp<"class", String | String[]> & DefineProp<"color", string, false, null, "The color of the component."> & DefineProp<"toned", boolean, false, false, "If the toned color should be used."> & DefineProp<"size", OSizeTypes, false, null, "The size of the component."> & DefineProp<"colorType", ColorType, false, null, "Sets the colorType to use for the icons. Default is onBase."> & DefineProp<"gradient", boolean, false, false, "Applies a gradient effect to the component.">;
|
4
|
+
declare const _default: (props: import("@omnia/fx/ux").ConstructComponentProps<AvatarProps>) => any;
|
160
5
|
export default _default;
|