@omnia/fx 8.0.106-dev → 8.0.107-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/services/FeatureService.d.ts +1 -0
- package/internal-do-not-import-from-here/services/index.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/datatable/DataTable.d.ts +1143 -502
- package/package.json +2 -2
@@ -1,521 +1,1162 @@
|
|
1
|
-
import { DataTableHeader, IDataTableRowRenderer, SortItem } from "@omnia/fx/ux";
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
}
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
|
172
|
-
|
173
|
-
|
174
|
-
|
175
|
-
|
176
|
-
|
177
|
-
|
178
|
-
|
179
|
-
|
180
|
-
|
181
|
-
|
182
|
-
|
183
|
-
|
184
|
-
|
185
|
-
|
186
|
-
|
187
|
-
|
188
|
-
|
189
|
-
|
190
|
-
|
191
|
-
hover: {
|
192
|
-
type: import("vue").PropType<boolean>;
|
193
|
-
required: false;
|
194
|
-
} & {
|
195
|
-
type: import("vue").PropType<boolean>;
|
196
|
-
required: false;
|
197
|
-
};
|
198
|
-
showExpand: {
|
199
|
-
type: import("vue").PropType<boolean>;
|
200
|
-
required: false;
|
201
|
-
};
|
202
|
-
"show-expand": {
|
203
|
-
type: import("vue").PropType<boolean>;
|
204
|
-
required: false;
|
205
|
-
};
|
206
|
-
itemsPerPage: {
|
207
|
-
type: import("vue").PropType<number>;
|
208
|
-
required: false;
|
209
|
-
};
|
210
|
-
"items-per-page": {
|
211
|
-
type: import("vue").PropType<number>;
|
212
|
-
required: false;
|
213
|
-
};
|
214
|
-
headers: {
|
215
|
-
type: import("vue").PropType<DataTableHeader[]>;
|
216
|
-
required: false;
|
217
|
-
} & {
|
218
|
-
type: import("vue").PropType<DataTableHeader[]>;
|
219
|
-
required: false;
|
220
|
-
};
|
221
|
-
items: {
|
222
|
-
type: import("vue").PropType<any[]>;
|
223
|
-
required: false;
|
224
|
-
} & {
|
225
|
-
type: import("vue").PropType<any[]>;
|
226
|
-
required: false;
|
227
|
-
};
|
228
|
-
colorSchemaType?: any;
|
229
|
-
container?: any;
|
230
|
-
colors?: any;
|
231
|
-
}>> & {
|
232
|
-
onDoc$?: (description?: string) => any;
|
233
|
-
"onUpdate:sortBy"?: (item: SortItem[]) => any;
|
234
|
-
}, {
|
235
|
-
container?: any;
|
236
|
-
colorSchemaType?: any;
|
237
|
-
colors?: any;
|
238
|
-
}, true, {}, {}, {
|
239
|
-
P: {};
|
240
|
-
B: {};
|
241
|
-
D: {};
|
242
|
-
C: {};
|
243
|
-
M: {};
|
244
|
-
Defaults: {};
|
245
|
-
}, Readonly<import("vue").ExtractPropTypes<{
|
246
|
-
"v-slots": import("vue").Prop<{
|
247
|
-
default?: import("../../DefineVueTypings").Slot<any[]>;
|
248
|
-
} & ODataTableSlots>;
|
249
|
-
"must-sort": {
|
250
|
-
type: import("vue").PropType<boolean>;
|
251
|
-
};
|
252
|
-
mustSort: {
|
253
|
-
type: import("vue").PropType<boolean>;
|
254
|
-
};
|
255
|
-
"onUpdate:modelValue": {
|
256
|
-
type: import("vue").PropType<(value: SortItem[]) => any>;
|
257
|
-
};
|
258
|
-
"v-model": {
|
259
|
-
type: import("vue").PropType<SortItem[]>;
|
260
|
-
required: false;
|
261
|
-
};
|
262
|
-
modelValue: {
|
263
|
-
type: import("vue").PropType<SortItem[]>;
|
264
|
-
required: false;
|
265
|
-
};
|
266
|
-
"onUpdate:sortBy": {
|
267
|
-
type: import("vue").PropType<(value: SortItem[]) => any>;
|
268
|
-
};
|
269
|
-
"v-model:sortBy": {
|
270
|
-
type: import("vue").PropType<SortItem[]>;
|
271
|
-
required: false;
|
272
|
-
};
|
273
|
-
sortBy: {
|
274
|
-
type: import("vue").PropType<SortItem[]>;
|
275
|
-
required: false;
|
276
|
-
};
|
277
|
-
expanded: {
|
278
|
-
type: import("vue").PropType<string[]>;
|
279
|
-
required: false;
|
280
|
-
};
|
281
|
-
"onUpdate:expanded": {
|
282
|
-
type: import("vue").PropType<(value: string[]) => any>;
|
283
|
-
};
|
284
|
-
"v-model:expanded": {
|
285
|
-
type: import("vue").PropType<string[]>;
|
286
|
-
required: false;
|
287
|
-
};
|
288
|
-
height: {
|
289
|
-
type: import("vue").PropType<string | number>;
|
1
|
+
import { DataTableHeader, DefineSlot, IDataTableRowRenderer, SortItem } from "@omnia/fx/ux";
|
2
|
+
declare const _default: <T extends unknown>(props: {
|
3
|
+
colorSchemaType?: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes;
|
4
|
+
} & {
|
5
|
+
container?: boolean;
|
6
|
+
} & {
|
7
|
+
colors?: {
|
8
|
+
state: {
|
9
|
+
base: import("@omnia/fx-models").ColorDefinition;
|
10
|
+
onBase: import("@omnia/fx-models").ColorDefinition;
|
11
|
+
container: import("@omnia/fx-models").ColorDefinition;
|
12
|
+
onContainer: import("@omnia/fx-models").ColorDefinition;
|
13
|
+
isContainer: boolean;
|
14
|
+
name: string;
|
15
|
+
colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes;
|
16
|
+
id: import("@omnia/fx-models").GuidValue;
|
17
|
+
};
|
18
|
+
events: {
|
19
|
+
onMutatedBase: import("../../..").MessageBusExposeOnlySubscription<import("@omnia/fx-models").ColorDefinition>;
|
20
|
+
onMutatedOnBase: import("../../..").MessageBusExposeOnlySubscription<import("@omnia/fx-models").ColorDefinition>;
|
21
|
+
onMutatedContainer: import("../../..").MessageBusExposeOnlySubscription<import("@omnia/fx-models").ColorDefinition>;
|
22
|
+
onMutatedOnContainer: import("../../..").MessageBusExposeOnlySubscription<import("@omnia/fx-models").ColorDefinition>;
|
23
|
+
onMutatedIsContainer: import("../../..").MessageBusExposeOnlySubscription<boolean>;
|
24
|
+
onMutatedName: import("../../..").MessageBusExposeOnlySubscription<string>;
|
25
|
+
onMutatedColorSchemaType: import("../../..").MessageBusExposeOnlySubscription<"info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes>;
|
26
|
+
onMutatedId: import("../../..").MessageBusExposeOnlySubscription<import("@omnia/fx-models").GuidValue>;
|
27
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
28
|
+
actions: {
|
29
|
+
onDispatching: {
|
30
|
+
setColorSchema: {
|
31
|
+
subscribe(fn: (colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, container?: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
32
|
+
};
|
33
|
+
setCustomColorSchema: {
|
34
|
+
subscribe(fn: (colorSchema: import("@omnia/fx-models").ColorSchema, container?: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
35
|
+
};
|
36
|
+
setColor: {
|
37
|
+
subscribe(fn: (colorDefinition: import("@omnia/fx-models").ColorDefinition, colorType: import("@omnia/fx-models").ColorTypes) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
38
|
+
};
|
39
|
+
setThemeStore: {
|
40
|
+
subscribe(fn: (themeStoreInstance: {
|
41
|
+
state: {
|
42
|
+
currentTheme: import("@omnia/fx-models").ThemeDefinitionV2;
|
43
|
+
};
|
44
|
+
events: {
|
45
|
+
onMutatedCurrentTheme: import("../../..").MessageBusExposeOnlySubscription<import("@omnia/fx-models").ThemeDefinitionV2>;
|
46
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
47
|
+
actions: {
|
48
|
+
onDispatching: {
|
49
|
+
setTheme: {
|
50
|
+
subscribe(fn: (themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
51
|
+
};
|
52
|
+
};
|
53
|
+
onDispatched: {
|
54
|
+
setTheme: {
|
55
|
+
subscribe(fn: (result: void, themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
56
|
+
};
|
57
|
+
};
|
58
|
+
onFailure: {
|
59
|
+
setTheme: {
|
60
|
+
subscribe(fn: (failureReason: any, themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
61
|
+
};
|
62
|
+
};
|
63
|
+
} & {
|
64
|
+
setTheme(themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2): void;
|
65
|
+
};
|
66
|
+
get: {
|
67
|
+
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes): import("@omnia/fx-models").ColorSchema;
|
68
|
+
blueprint<TType extends import("@omnia/fx-models").BlueprintDefinition>(type: import("@omnia/fx-models").BlueprintType): TType;
|
69
|
+
typography(): import("@omnia/fx-models").TypographyBlueprint;
|
70
|
+
spacing(): import("@omnia/fx-models").SpacingBlueprint;
|
71
|
+
chrome(): import("@omnia/fx-models").ChromeBlueprint;
|
72
|
+
component(): import("@omnia/fx-models").ComponentBlueprint;
|
73
|
+
color(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): string;
|
74
|
+
colorDefinition(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): import("@omnia/fx-models").ColorDefinition;
|
75
|
+
complementaryColorType(colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): import("@omnia/fx-models").ColorTypes;
|
76
|
+
complementaryColor(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): string;
|
77
|
+
complementaryColorDefinition(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): import("@omnia/fx-models").ColorDefinition;
|
78
|
+
currentTheme(): import("@omnia/fx-models").ThemeDefinitionV2;
|
79
|
+
};
|
80
|
+
}) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
81
|
+
};
|
82
|
+
};
|
83
|
+
onDispatched: {
|
84
|
+
setColorSchema: {
|
85
|
+
subscribe(fn: (result: void, colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, container?: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
86
|
+
};
|
87
|
+
setCustomColorSchema: {
|
88
|
+
subscribe(fn: (result: void, colorSchema: import("@omnia/fx-models").ColorSchema, container?: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
89
|
+
};
|
90
|
+
setColor: {
|
91
|
+
subscribe(fn: (result: void, colorDefinition: import("@omnia/fx-models").ColorDefinition, colorType: import("@omnia/fx-models").ColorTypes) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
92
|
+
};
|
93
|
+
setThemeStore: {
|
94
|
+
subscribe(fn: (result: void, themeStoreInstance: {
|
95
|
+
state: {
|
96
|
+
currentTheme: import("@omnia/fx-models").ThemeDefinitionV2;
|
97
|
+
};
|
98
|
+
events: {
|
99
|
+
onMutatedCurrentTheme: import("../../..").MessageBusExposeOnlySubscription<import("@omnia/fx-models").ThemeDefinitionV2>;
|
100
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
101
|
+
actions: {
|
102
|
+
onDispatching: {
|
103
|
+
setTheme: {
|
104
|
+
subscribe(fn: (themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
105
|
+
};
|
106
|
+
};
|
107
|
+
onDispatched: {
|
108
|
+
setTheme: {
|
109
|
+
subscribe(fn: (result: void, themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
110
|
+
};
|
111
|
+
};
|
112
|
+
onFailure: {
|
113
|
+
setTheme: {
|
114
|
+
subscribe(fn: (failureReason: any, themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
115
|
+
};
|
116
|
+
};
|
117
|
+
} & {
|
118
|
+
setTheme(themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2): void;
|
119
|
+
};
|
120
|
+
get: {
|
121
|
+
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes): import("@omnia/fx-models").ColorSchema;
|
122
|
+
blueprint<TType extends import("@omnia/fx-models").BlueprintDefinition>(type: import("@omnia/fx-models").BlueprintType): TType;
|
123
|
+
typography(): import("@omnia/fx-models").TypographyBlueprint;
|
124
|
+
spacing(): import("@omnia/fx-models").SpacingBlueprint;
|
125
|
+
chrome(): import("@omnia/fx-models").ChromeBlueprint;
|
126
|
+
component(): import("@omnia/fx-models").ComponentBlueprint;
|
127
|
+
color(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): string;
|
128
|
+
colorDefinition(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): import("@omnia/fx-models").ColorDefinition;
|
129
|
+
complementaryColorType(colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): import("@omnia/fx-models").ColorTypes;
|
130
|
+
complementaryColor(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): string;
|
131
|
+
complementaryColorDefinition(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): import("@omnia/fx-models").ColorDefinition;
|
132
|
+
currentTheme(): import("@omnia/fx-models").ThemeDefinitionV2;
|
133
|
+
};
|
134
|
+
}) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
135
|
+
};
|
136
|
+
};
|
137
|
+
onFailure: {
|
138
|
+
setColorSchema: {
|
139
|
+
subscribe(fn: (failureReason: any, colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, container?: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
140
|
+
};
|
141
|
+
setCustomColorSchema: {
|
142
|
+
subscribe(fn: (failureReason: any, colorSchema: import("@omnia/fx-models").ColorSchema, container?: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
143
|
+
};
|
144
|
+
setColor: {
|
145
|
+
subscribe(fn: (failureReason: any, colorDefinition: import("@omnia/fx-models").ColorDefinition, colorType: import("@omnia/fx-models").ColorTypes) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
146
|
+
};
|
147
|
+
setThemeStore: {
|
148
|
+
subscribe(fn: (failureReason: any, themeStoreInstance: {
|
149
|
+
state: {
|
150
|
+
currentTheme: import("@omnia/fx-models").ThemeDefinitionV2;
|
151
|
+
};
|
152
|
+
events: {
|
153
|
+
onMutatedCurrentTheme: import("../../..").MessageBusExposeOnlySubscription<import("@omnia/fx-models").ThemeDefinitionV2>;
|
154
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
155
|
+
actions: {
|
156
|
+
onDispatching: {
|
157
|
+
setTheme: {
|
158
|
+
subscribe(fn: (themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
159
|
+
};
|
160
|
+
};
|
161
|
+
onDispatched: {
|
162
|
+
setTheme: {
|
163
|
+
subscribe(fn: (result: void, themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
164
|
+
};
|
165
|
+
};
|
166
|
+
onFailure: {
|
167
|
+
setTheme: {
|
168
|
+
subscribe(fn: (failureReason: any, themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
169
|
+
};
|
170
|
+
};
|
171
|
+
} & {
|
172
|
+
setTheme(themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2): void;
|
173
|
+
};
|
174
|
+
get: {
|
175
|
+
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes): import("@omnia/fx-models").ColorSchema;
|
176
|
+
blueprint<TType extends import("@omnia/fx-models").BlueprintDefinition>(type: import("@omnia/fx-models").BlueprintType): TType;
|
177
|
+
typography(): import("@omnia/fx-models").TypographyBlueprint;
|
178
|
+
spacing(): import("@omnia/fx-models").SpacingBlueprint;
|
179
|
+
chrome(): import("@omnia/fx-models").ChromeBlueprint;
|
180
|
+
component(): import("@omnia/fx-models").ComponentBlueprint;
|
181
|
+
color(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): string;
|
182
|
+
colorDefinition(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): import("@omnia/fx-models").ColorDefinition;
|
183
|
+
complementaryColorType(colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): import("@omnia/fx-models").ColorTypes;
|
184
|
+
complementaryColor(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): string;
|
185
|
+
complementaryColorDefinition(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): import("@omnia/fx-models").ColorDefinition;
|
186
|
+
currentTheme(): import("@omnia/fx-models").ThemeDefinitionV2;
|
187
|
+
};
|
188
|
+
}) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
189
|
+
};
|
190
|
+
};
|
290
191
|
} & {
|
291
|
-
|
292
|
-
|
293
|
-
|
294
|
-
|
295
|
-
|
296
|
-
|
297
|
-
|
298
|
-
|
299
|
-
|
300
|
-
|
301
|
-
|
302
|
-
|
303
|
-
|
304
|
-
|
305
|
-
|
306
|
-
|
307
|
-
|
308
|
-
|
309
|
-
|
310
|
-
|
311
|
-
|
312
|
-
|
313
|
-
|
314
|
-
|
315
|
-
|
316
|
-
|
317
|
-
|
318
|
-
|
319
|
-
|
320
|
-
|
321
|
-
|
322
|
-
|
323
|
-
|
324
|
-
|
325
|
-
|
326
|
-
|
327
|
-
|
328
|
-
|
329
|
-
|
330
|
-
|
331
|
-
|
332
|
-
|
333
|
-
|
334
|
-
|
335
|
-
};
|
336
|
-
|
337
|
-
|
338
|
-
|
339
|
-
|
340
|
-
|
341
|
-
|
342
|
-
|
343
|
-
|
344
|
-
|
345
|
-
|
346
|
-
|
347
|
-
|
348
|
-
|
349
|
-
|
350
|
-
|
351
|
-
|
352
|
-
|
353
|
-
|
354
|
-
|
355
|
-
|
356
|
-
|
357
|
-
|
358
|
-
|
359
|
-
|
360
|
-
|
361
|
-
|
362
|
-
|
363
|
-
|
364
|
-
|
365
|
-
|
366
|
-
|
367
|
-
|
368
|
-
|
369
|
-
|
370
|
-
|
371
|
-
|
372
|
-
|
373
|
-
|
374
|
-
|
375
|
-
|
376
|
-
|
377
|
-
|
378
|
-
|
379
|
-
|
380
|
-
|
381
|
-
|
382
|
-
|
383
|
-
|
192
|
+
setColorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, container?: boolean): void;
|
193
|
+
setCustomColorSchema(colorSchema: import("@omnia/fx-models").ColorSchema, container?: boolean): void;
|
194
|
+
setColor(colorDefinition: import("@omnia/fx-models").ColorDefinition, colorType: import("@omnia/fx-models").ColorTypes): void;
|
195
|
+
setThemeStore(themeStoreInstance: {
|
196
|
+
state: {
|
197
|
+
currentTheme: import("@omnia/fx-models").ThemeDefinitionV2;
|
198
|
+
};
|
199
|
+
events: {
|
200
|
+
onMutatedCurrentTheme: import("../../..").MessageBusExposeOnlySubscription<import("@omnia/fx-models").ThemeDefinitionV2>;
|
201
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
202
|
+
actions: {
|
203
|
+
onDispatching: {
|
204
|
+
setTheme: {
|
205
|
+
subscribe(fn: (themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
206
|
+
};
|
207
|
+
};
|
208
|
+
onDispatched: {
|
209
|
+
setTheme: {
|
210
|
+
subscribe(fn: (result: void, themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
211
|
+
};
|
212
|
+
};
|
213
|
+
onFailure: {
|
214
|
+
setTheme: {
|
215
|
+
subscribe(fn: (failureReason: any, themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
216
|
+
};
|
217
|
+
};
|
218
|
+
} & {
|
219
|
+
setTheme(themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2): void;
|
220
|
+
};
|
221
|
+
get: {
|
222
|
+
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes): import("@omnia/fx-models").ColorSchema;
|
223
|
+
blueprint<TType extends import("@omnia/fx-models").BlueprintDefinition>(type: import("@omnia/fx-models").BlueprintType): TType;
|
224
|
+
typography(): import("@omnia/fx-models").TypographyBlueprint;
|
225
|
+
spacing(): import("@omnia/fx-models").SpacingBlueprint;
|
226
|
+
chrome(): import("@omnia/fx-models").ChromeBlueprint;
|
227
|
+
component(): import("@omnia/fx-models").ComponentBlueprint;
|
228
|
+
color(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): string;
|
229
|
+
colorDefinition(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): import("@omnia/fx-models").ColorDefinition;
|
230
|
+
complementaryColorType(colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): import("@omnia/fx-models").ColorTypes;
|
231
|
+
complementaryColor(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): string;
|
232
|
+
complementaryColorDefinition(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): import("@omnia/fx-models").ColorDefinition;
|
233
|
+
currentTheme(): import("@omnia/fx-models").ThemeDefinitionV2;
|
234
|
+
};
|
235
|
+
}): void;
|
236
|
+
};
|
237
|
+
get: {
|
238
|
+
readonly themeStore: {
|
239
|
+
state: {
|
240
|
+
currentTheme: {
|
241
|
+
id: {
|
242
|
+
equals: {
|
243
|
+
guid: (value: import("@omnia/fx-models").GuidValue) => boolean;
|
244
|
+
};
|
245
|
+
toString: () => string;
|
246
|
+
toJSON: () => string;
|
247
|
+
valueOf: () => string;
|
248
|
+
};
|
249
|
+
name: string;
|
250
|
+
dark: boolean;
|
251
|
+
colors: {
|
252
|
+
primary: {
|
253
|
+
name: string;
|
254
|
+
base: {
|
255
|
+
dark: boolean;
|
256
|
+
color: string;
|
257
|
+
colorToned: string;
|
258
|
+
};
|
259
|
+
onBase: {
|
260
|
+
dark: boolean;
|
261
|
+
color: string;
|
262
|
+
colorToned: string;
|
263
|
+
};
|
264
|
+
container: {
|
265
|
+
dark: boolean;
|
266
|
+
color: string;
|
267
|
+
colorToned: string;
|
268
|
+
};
|
269
|
+
onContainer: {
|
270
|
+
dark: boolean;
|
271
|
+
color: string;
|
272
|
+
colorToned: string;
|
273
|
+
};
|
274
|
+
};
|
275
|
+
secondary: {
|
276
|
+
name: string;
|
277
|
+
base: {
|
278
|
+
dark: boolean;
|
279
|
+
color: string;
|
280
|
+
colorToned: string;
|
281
|
+
};
|
282
|
+
onBase: {
|
283
|
+
dark: boolean;
|
284
|
+
color: string;
|
285
|
+
colorToned: string;
|
286
|
+
};
|
287
|
+
container: {
|
288
|
+
dark: boolean;
|
289
|
+
color: string;
|
290
|
+
colorToned: string;
|
291
|
+
};
|
292
|
+
onContainer: {
|
293
|
+
dark: boolean;
|
294
|
+
color: string;
|
295
|
+
colorToned: string;
|
296
|
+
};
|
297
|
+
};
|
298
|
+
accent1: {
|
299
|
+
name: string;
|
300
|
+
base: {
|
301
|
+
dark: boolean;
|
302
|
+
color: string;
|
303
|
+
colorToned: string;
|
304
|
+
};
|
305
|
+
onBase: {
|
306
|
+
dark: boolean;
|
307
|
+
color: string;
|
308
|
+
colorToned: string;
|
309
|
+
};
|
310
|
+
container: {
|
311
|
+
dark: boolean;
|
312
|
+
color: string;
|
313
|
+
colorToned: string;
|
314
|
+
};
|
315
|
+
onContainer: {
|
316
|
+
dark: boolean;
|
317
|
+
color: string;
|
318
|
+
colorToned: string;
|
319
|
+
};
|
320
|
+
};
|
321
|
+
accent2: {
|
322
|
+
name: string;
|
323
|
+
base: {
|
324
|
+
dark: boolean;
|
325
|
+
color: string;
|
326
|
+
colorToned: string;
|
327
|
+
};
|
328
|
+
onBase: {
|
329
|
+
dark: boolean;
|
330
|
+
color: string;
|
331
|
+
colorToned: string;
|
332
|
+
};
|
333
|
+
container: {
|
334
|
+
dark: boolean;
|
335
|
+
color: string;
|
336
|
+
colorToned: string;
|
337
|
+
};
|
338
|
+
onContainer: {
|
339
|
+
dark: boolean;
|
340
|
+
color: string;
|
341
|
+
colorToned: string;
|
342
|
+
};
|
343
|
+
};
|
344
|
+
accent3: {
|
345
|
+
name: string;
|
346
|
+
base: {
|
347
|
+
dark: boolean;
|
348
|
+
color: string;
|
349
|
+
colorToned: string;
|
350
|
+
};
|
351
|
+
onBase: {
|
352
|
+
dark: boolean;
|
353
|
+
color: string;
|
354
|
+
colorToned: string;
|
355
|
+
};
|
356
|
+
container: {
|
357
|
+
dark: boolean;
|
358
|
+
color: string;
|
359
|
+
colorToned: string;
|
360
|
+
};
|
361
|
+
onContainer: {
|
362
|
+
dark: boolean;
|
363
|
+
color: string;
|
364
|
+
colorToned: string;
|
365
|
+
};
|
366
|
+
};
|
367
|
+
neutral: {
|
368
|
+
name: string;
|
369
|
+
base: {
|
370
|
+
dark: boolean;
|
371
|
+
color: string;
|
372
|
+
colorToned: string;
|
373
|
+
};
|
374
|
+
onBase: {
|
375
|
+
dark: boolean;
|
376
|
+
color: string;
|
377
|
+
colorToned: string;
|
378
|
+
};
|
379
|
+
container: {
|
380
|
+
dark: boolean;
|
381
|
+
color: string;
|
382
|
+
colorToned: string;
|
383
|
+
};
|
384
|
+
onContainer: {
|
385
|
+
dark: boolean;
|
386
|
+
color: string;
|
387
|
+
colorToned: string;
|
388
|
+
};
|
389
|
+
};
|
390
|
+
background: {
|
391
|
+
name: string;
|
392
|
+
base: {
|
393
|
+
dark: boolean;
|
394
|
+
color: string;
|
395
|
+
colorToned: string;
|
396
|
+
};
|
397
|
+
onBase: {
|
398
|
+
dark: boolean;
|
399
|
+
color: string;
|
400
|
+
colorToned: string;
|
401
|
+
};
|
402
|
+
container: {
|
403
|
+
dark: boolean;
|
404
|
+
color: string;
|
405
|
+
colorToned: string;
|
406
|
+
};
|
407
|
+
onContainer: {
|
408
|
+
dark: boolean;
|
409
|
+
color: string;
|
410
|
+
colorToned: string;
|
411
|
+
};
|
412
|
+
};
|
413
|
+
error: {
|
414
|
+
name: string;
|
415
|
+
base: {
|
416
|
+
dark: boolean;
|
417
|
+
color: string;
|
418
|
+
colorToned: string;
|
419
|
+
};
|
420
|
+
onBase: {
|
421
|
+
dark: boolean;
|
422
|
+
color: string;
|
423
|
+
colorToned: string;
|
424
|
+
};
|
425
|
+
container: {
|
426
|
+
dark: boolean;
|
427
|
+
color: string;
|
428
|
+
colorToned: string;
|
429
|
+
};
|
430
|
+
onContainer: {
|
431
|
+
dark: boolean;
|
432
|
+
color: string;
|
433
|
+
colorToned: string;
|
434
|
+
};
|
435
|
+
};
|
436
|
+
info: {
|
437
|
+
name: string;
|
438
|
+
base: {
|
439
|
+
dark: boolean;
|
440
|
+
color: string;
|
441
|
+
colorToned: string;
|
442
|
+
};
|
443
|
+
onBase: {
|
444
|
+
dark: boolean;
|
445
|
+
color: string;
|
446
|
+
colorToned: string;
|
447
|
+
};
|
448
|
+
container: {
|
449
|
+
dark: boolean;
|
450
|
+
color: string;
|
451
|
+
colorToned: string;
|
452
|
+
};
|
453
|
+
onContainer: {
|
454
|
+
dark: boolean;
|
455
|
+
color: string;
|
456
|
+
colorToned: string;
|
457
|
+
};
|
458
|
+
};
|
459
|
+
};
|
460
|
+
blueprints: {
|
461
|
+
type: import("@omnia/fx-models").BlueprintType;
|
462
|
+
name: string;
|
463
|
+
}[];
|
464
|
+
};
|
465
|
+
};
|
466
|
+
events: {
|
467
|
+
[x: string]: {
|
468
|
+
subscribe: (fn: (obj: any) => void) => import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
469
|
+
publish: (msg: any) => void;
|
470
|
+
};
|
471
|
+
onMutatedCurrentTheme: {
|
472
|
+
subscribe: (fn: (obj: import("@omnia/fx-models").ThemeDefinitionV2) => void) => import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
473
|
+
};
|
474
|
+
};
|
475
|
+
actions: {
|
476
|
+
onDispatching: {
|
477
|
+
setTheme: {
|
478
|
+
subscribe: (fn: (themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2) => void) => import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
479
|
+
};
|
480
|
+
};
|
481
|
+
onDispatched: {
|
482
|
+
setTheme: {
|
483
|
+
subscribe: (fn: (result: void, themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2) => void) => import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
484
|
+
};
|
485
|
+
};
|
486
|
+
onFailure: {
|
487
|
+
setTheme: {
|
488
|
+
subscribe: (fn: (failureReason: any, themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2) => void) => import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
489
|
+
};
|
490
|
+
};
|
491
|
+
setTheme: (themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2) => void;
|
492
|
+
};
|
493
|
+
get: {
|
494
|
+
colorSchema: (colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes) => import("@omnia/fx-models").ColorSchema;
|
495
|
+
blueprint: <TType extends import("@omnia/fx-models").BlueprintDefinition>(type: import("@omnia/fx-models").BlueprintType) => TType;
|
496
|
+
typography: () => import("@omnia/fx-models").TypographyBlueprint;
|
497
|
+
spacing: () => import("@omnia/fx-models").SpacingBlueprint;
|
498
|
+
chrome: () => import("@omnia/fx-models").ChromeBlueprint;
|
499
|
+
component: () => import("@omnia/fx-models").ComponentBlueprint;
|
500
|
+
color: (colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes) => string;
|
501
|
+
colorDefinition: (colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes) => import("@omnia/fx-models").ColorDefinition;
|
502
|
+
complementaryColorType: (colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes) => import("@omnia/fx-models").ColorTypes;
|
503
|
+
complementaryColor: (colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes) => string;
|
504
|
+
complementaryColorDefinition: (colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes) => import("@omnia/fx-models").ColorDefinition;
|
505
|
+
currentTheme: () => import("@omnia/fx-models").ThemeDefinitionV2;
|
506
|
+
};
|
507
|
+
};
|
508
|
+
colorValue(color: import("@omnia/fx-models").ColorValue): string;
|
509
|
+
readonly colorSchema: import("@omnia/fx-models").ColorSchema;
|
510
|
+
readonly theme: "light" | "dark";
|
511
|
+
readonly base: import("@omnia/fx-models").ColorDefinition;
|
512
|
+
readonly onBase: import("@omnia/fx-models").ColorDefinition;
|
513
|
+
readonly container: import("@omnia/fx-models").ColorDefinition;
|
514
|
+
readonly onContainer: import("@omnia/fx-models").ColorDefinition;
|
515
|
+
dynamic: (isContainer: boolean) => {
|
516
|
+
readonly base: import("@omnia/fx-models").ColorDefinition;
|
517
|
+
readonly onBase: import("@omnia/fx-models").ColorDefinition;
|
518
|
+
readonly container: import("@omnia/fx-models").ColorDefinition;
|
519
|
+
readonly onContainer: import("@omnia/fx-models").ColorDefinition;
|
520
|
+
};
|
521
|
+
};
|
522
|
+
deactivated(): void;
|
384
523
|
};
|
385
|
-
|
386
|
-
|
387
|
-
|
388
|
-
"
|
389
|
-
|
390
|
-
|
391
|
-
|
392
|
-
sortBy
|
393
|
-
|
394
|
-
|
395
|
-
|
396
|
-
|
397
|
-
|
398
|
-
|
524
|
+
} & {
|
525
|
+
"v-model:expanded"?: string[];
|
526
|
+
} & {
|
527
|
+
"onUpdate:expanded"?: (value: string[]) => void;
|
528
|
+
} & {
|
529
|
+
expanded?: string[];
|
530
|
+
} & {
|
531
|
+
"v-model:sortBy"?: SortItem[];
|
532
|
+
} & {
|
533
|
+
"onUpdate:sortBy"?: (value: SortItem[]) => void;
|
534
|
+
} & {
|
535
|
+
sortBy?: SortItem[];
|
536
|
+
} & {
|
537
|
+
mustSort?: boolean;
|
538
|
+
} & {
|
539
|
+
height?: string | number;
|
540
|
+
} & {
|
541
|
+
noDataText?: string;
|
542
|
+
} & {
|
543
|
+
clickable?: boolean;
|
544
|
+
} & {
|
545
|
+
loading?: boolean;
|
546
|
+
} & {
|
547
|
+
hover?: boolean;
|
548
|
+
} & {
|
549
|
+
showExpand?: boolean;
|
550
|
+
} & {
|
551
|
+
itemsPerPage?: number;
|
552
|
+
} & {
|
553
|
+
headers?: DataTableHeader[];
|
554
|
+
} & {
|
555
|
+
items?: T[];
|
556
|
+
} & {
|
557
|
+
"onUpdate:sortBy"?: (item: SortItem[]) => any;
|
558
|
+
"onUpdate:expanded"?: (expanded: string[]) => any;
|
559
|
+
} & {
|
560
|
+
"v-slots"?: {
|
561
|
+
default?: import("vue").Slot;
|
562
|
+
} & DefineSlot<"item", (row: IDataTableRowRenderer<T>) => void>;
|
563
|
+
} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "headers" | "container" | "height" | "expanded" | "colorSchemaType" | "items" | "colors" | "loading" | "hover" | "sortBy" | "mustSort" | "showExpand" | "noDataText" | "itemsPerPage" | "onUpdate:sortBy" | "onUpdate:expanded" | "clickable" | "v-model:expanded" | "v-model:sortBy">) => {
|
564
|
+
$: import("vue").ComponentInternalInstance;
|
565
|
+
$data: {};
|
566
|
+
$props: {};
|
567
|
+
$attrs: {
|
568
|
+
[x: string]: unknown;
|
399
569
|
};
|
400
|
-
|
401
|
-
|
570
|
+
$refs: {
|
571
|
+
[x: string]: unknown;
|
402
572
|
};
|
403
|
-
|
404
|
-
|
405
|
-
|
573
|
+
$slots: Readonly<{
|
574
|
+
[name: string]: import("vue").Slot<any>;
|
575
|
+
}>;
|
576
|
+
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
577
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}>;
|
578
|
+
$emit: (event: string, ...args: any[]) => void;
|
579
|
+
$el: any;
|
580
|
+
$options: import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}> & {
|
581
|
+
beforeCreate?: (() => void) | (() => void)[];
|
582
|
+
created?: (() => void) | (() => void)[];
|
583
|
+
beforeMount?: (() => void) | (() => void)[];
|
584
|
+
mounted?: (() => void) | (() => void)[];
|
585
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
586
|
+
updated?: (() => void) | (() => void)[];
|
587
|
+
activated?: (() => void) | (() => void)[];
|
588
|
+
deactivated?: (() => void) | (() => void)[];
|
589
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
590
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
591
|
+
destroyed?: (() => void) | (() => void)[];
|
592
|
+
unmounted?: (() => void) | (() => void)[];
|
593
|
+
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
594
|
+
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
595
|
+
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)[];
|
406
596
|
};
|
407
|
-
|
408
|
-
|
597
|
+
$forceUpdate: () => void;
|
598
|
+
$nextTick: typeof import("vue").nextTick;
|
599
|
+
$watch<T_1 extends string | ((...args: any) => any)>(source: T_1, cb: T_1 extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean>): import("vue").WatchStopHandle;
|
600
|
+
} & Omit<{}, never> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {} & {
|
601
|
+
propsDefinition: {
|
602
|
+
colorSchemaType?: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes;
|
409
603
|
} & {
|
410
|
-
|
411
|
-
};
|
412
|
-
"no-data-text": {
|
413
|
-
type: import("vue").PropType<string>;
|
414
|
-
};
|
415
|
-
noDataText: {
|
416
|
-
type: import("vue").PropType<string>;
|
417
|
-
};
|
418
|
-
clickable: {
|
419
|
-
type: import("vue").PropType<boolean>;
|
420
|
-
required: false;
|
604
|
+
container?: boolean;
|
421
605
|
} & {
|
422
|
-
|
423
|
-
|
424
|
-
|
425
|
-
|
426
|
-
|
427
|
-
|
606
|
+
colors?: {
|
607
|
+
state: {
|
608
|
+
base: import("@omnia/fx-models").ColorDefinition;
|
609
|
+
onBase: import("@omnia/fx-models").ColorDefinition;
|
610
|
+
container: import("@omnia/fx-models").ColorDefinition;
|
611
|
+
onContainer: import("@omnia/fx-models").ColorDefinition;
|
612
|
+
isContainer: boolean;
|
613
|
+
name: string;
|
614
|
+
colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes;
|
615
|
+
id: import("@omnia/fx-models").GuidValue;
|
616
|
+
};
|
617
|
+
events: {
|
618
|
+
onMutatedBase: import("../../..").MessageBusExposeOnlySubscription<import("@omnia/fx-models").ColorDefinition>;
|
619
|
+
onMutatedOnBase: import("../../..").MessageBusExposeOnlySubscription<import("@omnia/fx-models").ColorDefinition>;
|
620
|
+
onMutatedContainer: import("../../..").MessageBusExposeOnlySubscription<import("@omnia/fx-models").ColorDefinition>;
|
621
|
+
onMutatedOnContainer: import("../../..").MessageBusExposeOnlySubscription<import("@omnia/fx-models").ColorDefinition>;
|
622
|
+
onMutatedIsContainer: import("../../..").MessageBusExposeOnlySubscription<boolean>;
|
623
|
+
onMutatedName: import("../../..").MessageBusExposeOnlySubscription<string>;
|
624
|
+
onMutatedColorSchemaType: import("../../..").MessageBusExposeOnlySubscription<"info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes>;
|
625
|
+
onMutatedId: import("../../..").MessageBusExposeOnlySubscription<import("@omnia/fx-models").GuidValue>;
|
626
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
627
|
+
actions: {
|
628
|
+
onDispatching: {
|
629
|
+
setColorSchema: {
|
630
|
+
subscribe(fn: (colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, container?: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
631
|
+
};
|
632
|
+
setCustomColorSchema: {
|
633
|
+
subscribe(fn: (colorSchema: import("@omnia/fx-models").ColorSchema, container?: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
634
|
+
};
|
635
|
+
setColor: {
|
636
|
+
subscribe(fn: (colorDefinition: import("@omnia/fx-models").ColorDefinition, colorType: import("@omnia/fx-models").ColorTypes) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
637
|
+
};
|
638
|
+
setThemeStore: {
|
639
|
+
subscribe(fn: (themeStoreInstance: {
|
640
|
+
state: {
|
641
|
+
currentTheme: import("@omnia/fx-models").ThemeDefinitionV2;
|
642
|
+
};
|
643
|
+
events: {
|
644
|
+
onMutatedCurrentTheme: import("../../..").MessageBusExposeOnlySubscription<import("@omnia/fx-models").ThemeDefinitionV2>;
|
645
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
646
|
+
actions: {
|
647
|
+
onDispatching: {
|
648
|
+
setTheme: {
|
649
|
+
subscribe(fn: (themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
650
|
+
};
|
651
|
+
};
|
652
|
+
onDispatched: {
|
653
|
+
setTheme: {
|
654
|
+
subscribe(fn: (result: void, themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
655
|
+
};
|
656
|
+
};
|
657
|
+
onFailure: {
|
658
|
+
setTheme: {
|
659
|
+
subscribe(fn: (failureReason: any, themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
660
|
+
};
|
661
|
+
};
|
662
|
+
} & {
|
663
|
+
setTheme(themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2): void;
|
664
|
+
};
|
665
|
+
get: {
|
666
|
+
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes): import("@omnia/fx-models").ColorSchema;
|
667
|
+
blueprint<TType extends import("@omnia/fx-models").BlueprintDefinition>(type: import("@omnia/fx-models").BlueprintType): TType;
|
668
|
+
typography(): import("@omnia/fx-models").TypographyBlueprint;
|
669
|
+
spacing(): import("@omnia/fx-models").SpacingBlueprint;
|
670
|
+
chrome(): import("@omnia/fx-models").ChromeBlueprint;
|
671
|
+
component(): import("@omnia/fx-models").ComponentBlueprint;
|
672
|
+
color(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): string;
|
673
|
+
colorDefinition(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): import("@omnia/fx-models").ColorDefinition;
|
674
|
+
complementaryColorType(colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): import("@omnia/fx-models").ColorTypes;
|
675
|
+
complementaryColor(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): string;
|
676
|
+
complementaryColorDefinition(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): import("@omnia/fx-models").ColorDefinition;
|
677
|
+
currentTheme(): import("@omnia/fx-models").ThemeDefinitionV2;
|
678
|
+
};
|
679
|
+
}) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
680
|
+
};
|
681
|
+
};
|
682
|
+
onDispatched: {
|
683
|
+
setColorSchema: {
|
684
|
+
subscribe(fn: (result: void, colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, container?: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
685
|
+
};
|
686
|
+
setCustomColorSchema: {
|
687
|
+
subscribe(fn: (result: void, colorSchema: import("@omnia/fx-models").ColorSchema, container?: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
688
|
+
};
|
689
|
+
setColor: {
|
690
|
+
subscribe(fn: (result: void, colorDefinition: import("@omnia/fx-models").ColorDefinition, colorType: import("@omnia/fx-models").ColorTypes) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
691
|
+
};
|
692
|
+
setThemeStore: {
|
693
|
+
subscribe(fn: (result: void, themeStoreInstance: {
|
694
|
+
state: {
|
695
|
+
currentTheme: import("@omnia/fx-models").ThemeDefinitionV2;
|
696
|
+
};
|
697
|
+
events: {
|
698
|
+
onMutatedCurrentTheme: import("../../..").MessageBusExposeOnlySubscription<import("@omnia/fx-models").ThemeDefinitionV2>;
|
699
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
700
|
+
actions: {
|
701
|
+
onDispatching: {
|
702
|
+
setTheme: {
|
703
|
+
subscribe(fn: (themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
704
|
+
};
|
705
|
+
};
|
706
|
+
onDispatched: {
|
707
|
+
setTheme: {
|
708
|
+
subscribe(fn: (result: void, themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
709
|
+
};
|
710
|
+
};
|
711
|
+
onFailure: {
|
712
|
+
setTheme: {
|
713
|
+
subscribe(fn: (failureReason: any, themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
714
|
+
};
|
715
|
+
};
|
716
|
+
} & {
|
717
|
+
setTheme(themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2): void;
|
718
|
+
};
|
719
|
+
get: {
|
720
|
+
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes): import("@omnia/fx-models").ColorSchema;
|
721
|
+
blueprint<TType extends import("@omnia/fx-models").BlueprintDefinition>(type: import("@omnia/fx-models").BlueprintType): TType;
|
722
|
+
typography(): import("@omnia/fx-models").TypographyBlueprint;
|
723
|
+
spacing(): import("@omnia/fx-models").SpacingBlueprint;
|
724
|
+
chrome(): import("@omnia/fx-models").ChromeBlueprint;
|
725
|
+
component(): import("@omnia/fx-models").ComponentBlueprint;
|
726
|
+
color(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): string;
|
727
|
+
colorDefinition(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): import("@omnia/fx-models").ColorDefinition;
|
728
|
+
complementaryColorType(colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): import("@omnia/fx-models").ColorTypes;
|
729
|
+
complementaryColor(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): string;
|
730
|
+
complementaryColorDefinition(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): import("@omnia/fx-models").ColorDefinition;
|
731
|
+
currentTheme(): import("@omnia/fx-models").ThemeDefinitionV2;
|
732
|
+
};
|
733
|
+
}) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
734
|
+
};
|
735
|
+
};
|
736
|
+
onFailure: {
|
737
|
+
setColorSchema: {
|
738
|
+
subscribe(fn: (failureReason: any, colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, container?: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
739
|
+
};
|
740
|
+
setCustomColorSchema: {
|
741
|
+
subscribe(fn: (failureReason: any, colorSchema: import("@omnia/fx-models").ColorSchema, container?: boolean) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
742
|
+
};
|
743
|
+
setColor: {
|
744
|
+
subscribe(fn: (failureReason: any, colorDefinition: import("@omnia/fx-models").ColorDefinition, colorType: import("@omnia/fx-models").ColorTypes) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
745
|
+
};
|
746
|
+
setThemeStore: {
|
747
|
+
subscribe(fn: (failureReason: any, themeStoreInstance: {
|
748
|
+
state: {
|
749
|
+
currentTheme: import("@omnia/fx-models").ThemeDefinitionV2;
|
750
|
+
};
|
751
|
+
events: {
|
752
|
+
onMutatedCurrentTheme: import("../../..").MessageBusExposeOnlySubscription<import("@omnia/fx-models").ThemeDefinitionV2>;
|
753
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
754
|
+
actions: {
|
755
|
+
onDispatching: {
|
756
|
+
setTheme: {
|
757
|
+
subscribe(fn: (themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
758
|
+
};
|
759
|
+
};
|
760
|
+
onDispatched: {
|
761
|
+
setTheme: {
|
762
|
+
subscribe(fn: (result: void, themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
763
|
+
};
|
764
|
+
};
|
765
|
+
onFailure: {
|
766
|
+
setTheme: {
|
767
|
+
subscribe(fn: (failureReason: any, themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
768
|
+
};
|
769
|
+
};
|
770
|
+
} & {
|
771
|
+
setTheme(themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2): void;
|
772
|
+
};
|
773
|
+
get: {
|
774
|
+
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes): import("@omnia/fx-models").ColorSchema;
|
775
|
+
blueprint<TType extends import("@omnia/fx-models").BlueprintDefinition>(type: import("@omnia/fx-models").BlueprintType): TType;
|
776
|
+
typography(): import("@omnia/fx-models").TypographyBlueprint;
|
777
|
+
spacing(): import("@omnia/fx-models").SpacingBlueprint;
|
778
|
+
chrome(): import("@omnia/fx-models").ChromeBlueprint;
|
779
|
+
component(): import("@omnia/fx-models").ComponentBlueprint;
|
780
|
+
color(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): string;
|
781
|
+
colorDefinition(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): import("@omnia/fx-models").ColorDefinition;
|
782
|
+
complementaryColorType(colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): import("@omnia/fx-models").ColorTypes;
|
783
|
+
complementaryColor(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): string;
|
784
|
+
complementaryColorDefinition(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): import("@omnia/fx-models").ColorDefinition;
|
785
|
+
currentTheme(): import("@omnia/fx-models").ThemeDefinitionV2;
|
786
|
+
};
|
787
|
+
}) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
788
|
+
};
|
789
|
+
};
|
790
|
+
} & {
|
791
|
+
setColorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, container?: boolean): void;
|
792
|
+
setCustomColorSchema(colorSchema: import("@omnia/fx-models").ColorSchema, container?: boolean): void;
|
793
|
+
setColor(colorDefinition: import("@omnia/fx-models").ColorDefinition, colorType: import("@omnia/fx-models").ColorTypes): void;
|
794
|
+
setThemeStore(themeStoreInstance: {
|
795
|
+
state: {
|
796
|
+
currentTheme: import("@omnia/fx-models").ThemeDefinitionV2;
|
797
|
+
};
|
798
|
+
events: {
|
799
|
+
onMutatedCurrentTheme: import("../../..").MessageBusExposeOnlySubscription<import("@omnia/fx-models").ThemeDefinitionV2>;
|
800
|
+
} & Record<string, import("@omnia/fx-models").IMessageBusTopicPublishSubscriber<any>>;
|
801
|
+
actions: {
|
802
|
+
onDispatching: {
|
803
|
+
setTheme: {
|
804
|
+
subscribe(fn: (themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
805
|
+
};
|
806
|
+
};
|
807
|
+
onDispatched: {
|
808
|
+
setTheme: {
|
809
|
+
subscribe(fn: (result: void, themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
810
|
+
};
|
811
|
+
};
|
812
|
+
onFailure: {
|
813
|
+
setTheme: {
|
814
|
+
subscribe(fn: (failureReason: any, themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2) => void): import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
815
|
+
};
|
816
|
+
};
|
817
|
+
} & {
|
818
|
+
setTheme(themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2): void;
|
819
|
+
};
|
820
|
+
get: {
|
821
|
+
colorSchema(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes): import("@omnia/fx-models").ColorSchema;
|
822
|
+
blueprint<TType extends import("@omnia/fx-models").BlueprintDefinition>(type: import("@omnia/fx-models").BlueprintType): TType;
|
823
|
+
typography(): import("@omnia/fx-models").TypographyBlueprint;
|
824
|
+
spacing(): import("@omnia/fx-models").SpacingBlueprint;
|
825
|
+
chrome(): import("@omnia/fx-models").ChromeBlueprint;
|
826
|
+
component(): import("@omnia/fx-models").ComponentBlueprint;
|
827
|
+
color(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): string;
|
828
|
+
colorDefinition(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): import("@omnia/fx-models").ColorDefinition;
|
829
|
+
complementaryColorType(colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): import("@omnia/fx-models").ColorTypes;
|
830
|
+
complementaryColor(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): string;
|
831
|
+
complementaryColorDefinition(colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes): import("@omnia/fx-models").ColorDefinition;
|
832
|
+
currentTheme(): import("@omnia/fx-models").ThemeDefinitionV2;
|
833
|
+
};
|
834
|
+
}): void;
|
835
|
+
};
|
836
|
+
get: {
|
837
|
+
readonly themeStore: {
|
838
|
+
state: {
|
839
|
+
currentTheme: {
|
840
|
+
id: {
|
841
|
+
equals: {
|
842
|
+
guid: (value: import("@omnia/fx-models").GuidValue) => boolean;
|
843
|
+
};
|
844
|
+
toString: () => string;
|
845
|
+
toJSON: () => string;
|
846
|
+
valueOf: () => string;
|
847
|
+
};
|
848
|
+
name: string;
|
849
|
+
dark: boolean;
|
850
|
+
colors: {
|
851
|
+
primary: {
|
852
|
+
name: string;
|
853
|
+
base: {
|
854
|
+
dark: boolean;
|
855
|
+
color: string;
|
856
|
+
colorToned: string;
|
857
|
+
};
|
858
|
+
onBase: {
|
859
|
+
dark: boolean;
|
860
|
+
color: string;
|
861
|
+
colorToned: string;
|
862
|
+
};
|
863
|
+
container: {
|
864
|
+
dark: boolean;
|
865
|
+
color: string;
|
866
|
+
colorToned: string;
|
867
|
+
};
|
868
|
+
onContainer: {
|
869
|
+
dark: boolean;
|
870
|
+
color: string;
|
871
|
+
colorToned: string;
|
872
|
+
};
|
873
|
+
};
|
874
|
+
secondary: {
|
875
|
+
name: string;
|
876
|
+
base: {
|
877
|
+
dark: boolean;
|
878
|
+
color: string;
|
879
|
+
colorToned: string;
|
880
|
+
};
|
881
|
+
onBase: {
|
882
|
+
dark: boolean;
|
883
|
+
color: string;
|
884
|
+
colorToned: string;
|
885
|
+
};
|
886
|
+
container: {
|
887
|
+
dark: boolean;
|
888
|
+
color: string;
|
889
|
+
colorToned: string;
|
890
|
+
};
|
891
|
+
onContainer: {
|
892
|
+
dark: boolean;
|
893
|
+
color: string;
|
894
|
+
colorToned: string;
|
895
|
+
};
|
896
|
+
};
|
897
|
+
accent1: {
|
898
|
+
name: string;
|
899
|
+
base: {
|
900
|
+
dark: boolean;
|
901
|
+
color: string;
|
902
|
+
colorToned: string;
|
903
|
+
};
|
904
|
+
onBase: {
|
905
|
+
dark: boolean;
|
906
|
+
color: string;
|
907
|
+
colorToned: string;
|
908
|
+
};
|
909
|
+
container: {
|
910
|
+
dark: boolean;
|
911
|
+
color: string;
|
912
|
+
colorToned: string;
|
913
|
+
};
|
914
|
+
onContainer: {
|
915
|
+
dark: boolean;
|
916
|
+
color: string;
|
917
|
+
colorToned: string;
|
918
|
+
};
|
919
|
+
};
|
920
|
+
accent2: {
|
921
|
+
name: string;
|
922
|
+
base: {
|
923
|
+
dark: boolean;
|
924
|
+
color: string;
|
925
|
+
colorToned: string;
|
926
|
+
};
|
927
|
+
onBase: {
|
928
|
+
dark: boolean;
|
929
|
+
color: string;
|
930
|
+
colorToned: string;
|
931
|
+
};
|
932
|
+
container: {
|
933
|
+
dark: boolean;
|
934
|
+
color: string;
|
935
|
+
colorToned: string;
|
936
|
+
};
|
937
|
+
onContainer: {
|
938
|
+
dark: boolean;
|
939
|
+
color: string;
|
940
|
+
colorToned: string;
|
941
|
+
};
|
942
|
+
};
|
943
|
+
accent3: {
|
944
|
+
name: string;
|
945
|
+
base: {
|
946
|
+
dark: boolean;
|
947
|
+
color: string;
|
948
|
+
colorToned: string;
|
949
|
+
};
|
950
|
+
onBase: {
|
951
|
+
dark: boolean;
|
952
|
+
color: string;
|
953
|
+
colorToned: string;
|
954
|
+
};
|
955
|
+
container: {
|
956
|
+
dark: boolean;
|
957
|
+
color: string;
|
958
|
+
colorToned: string;
|
959
|
+
};
|
960
|
+
onContainer: {
|
961
|
+
dark: boolean;
|
962
|
+
color: string;
|
963
|
+
colorToned: string;
|
964
|
+
};
|
965
|
+
};
|
966
|
+
neutral: {
|
967
|
+
name: string;
|
968
|
+
base: {
|
969
|
+
dark: boolean;
|
970
|
+
color: string;
|
971
|
+
colorToned: string;
|
972
|
+
};
|
973
|
+
onBase: {
|
974
|
+
dark: boolean;
|
975
|
+
color: string;
|
976
|
+
colorToned: string;
|
977
|
+
};
|
978
|
+
container: {
|
979
|
+
dark: boolean;
|
980
|
+
color: string;
|
981
|
+
colorToned: string;
|
982
|
+
};
|
983
|
+
onContainer: {
|
984
|
+
dark: boolean;
|
985
|
+
color: string;
|
986
|
+
colorToned: string;
|
987
|
+
};
|
988
|
+
};
|
989
|
+
background: {
|
990
|
+
name: string;
|
991
|
+
base: {
|
992
|
+
dark: boolean;
|
993
|
+
color: string;
|
994
|
+
colorToned: string;
|
995
|
+
};
|
996
|
+
onBase: {
|
997
|
+
dark: boolean;
|
998
|
+
color: string;
|
999
|
+
colorToned: string;
|
1000
|
+
};
|
1001
|
+
container: {
|
1002
|
+
dark: boolean;
|
1003
|
+
color: string;
|
1004
|
+
colorToned: string;
|
1005
|
+
};
|
1006
|
+
onContainer: {
|
1007
|
+
dark: boolean;
|
1008
|
+
color: string;
|
1009
|
+
colorToned: string;
|
1010
|
+
};
|
1011
|
+
};
|
1012
|
+
error: {
|
1013
|
+
name: string;
|
1014
|
+
base: {
|
1015
|
+
dark: boolean;
|
1016
|
+
color: string;
|
1017
|
+
colorToned: string;
|
1018
|
+
};
|
1019
|
+
onBase: {
|
1020
|
+
dark: boolean;
|
1021
|
+
color: string;
|
1022
|
+
colorToned: string;
|
1023
|
+
};
|
1024
|
+
container: {
|
1025
|
+
dark: boolean;
|
1026
|
+
color: string;
|
1027
|
+
colorToned: string;
|
1028
|
+
};
|
1029
|
+
onContainer: {
|
1030
|
+
dark: boolean;
|
1031
|
+
color: string;
|
1032
|
+
colorToned: string;
|
1033
|
+
};
|
1034
|
+
};
|
1035
|
+
info: {
|
1036
|
+
name: string;
|
1037
|
+
base: {
|
1038
|
+
dark: boolean;
|
1039
|
+
color: string;
|
1040
|
+
colorToned: string;
|
1041
|
+
};
|
1042
|
+
onBase: {
|
1043
|
+
dark: boolean;
|
1044
|
+
color: string;
|
1045
|
+
colorToned: string;
|
1046
|
+
};
|
1047
|
+
container: {
|
1048
|
+
dark: boolean;
|
1049
|
+
color: string;
|
1050
|
+
colorToned: string;
|
1051
|
+
};
|
1052
|
+
onContainer: {
|
1053
|
+
dark: boolean;
|
1054
|
+
color: string;
|
1055
|
+
colorToned: string;
|
1056
|
+
};
|
1057
|
+
};
|
1058
|
+
};
|
1059
|
+
blueprints: {
|
1060
|
+
type: import("@omnia/fx-models").BlueprintType;
|
1061
|
+
name: string;
|
1062
|
+
}[];
|
1063
|
+
};
|
1064
|
+
};
|
1065
|
+
events: {
|
1066
|
+
[x: string]: {
|
1067
|
+
subscribe: (fn: (obj: any) => void) => import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
1068
|
+
publish: (msg: any) => void;
|
1069
|
+
};
|
1070
|
+
onMutatedCurrentTheme: {
|
1071
|
+
subscribe: (fn: (obj: import("@omnia/fx-models").ThemeDefinitionV2) => void) => import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
1072
|
+
};
|
1073
|
+
};
|
1074
|
+
actions: {
|
1075
|
+
onDispatching: {
|
1076
|
+
setTheme: {
|
1077
|
+
subscribe: (fn: (themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2) => void) => import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
1078
|
+
};
|
1079
|
+
};
|
1080
|
+
onDispatched: {
|
1081
|
+
setTheme: {
|
1082
|
+
subscribe: (fn: (result: void, themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2) => void) => import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
1083
|
+
};
|
1084
|
+
};
|
1085
|
+
onFailure: {
|
1086
|
+
setTheme: {
|
1087
|
+
subscribe: (fn: (failureReason: any, themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2) => void) => import("@omnia/fx-models").IMessageBusSubscriptionHandler;
|
1088
|
+
};
|
1089
|
+
};
|
1090
|
+
setTheme: (themeDefinition: import("@omnia/fx-models").ThemeDefinitionV2) => void;
|
1091
|
+
};
|
1092
|
+
get: {
|
1093
|
+
colorSchema: (colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes) => import("@omnia/fx-models").ColorSchema;
|
1094
|
+
blueprint: <TType extends import("@omnia/fx-models").BlueprintDefinition>(type: import("@omnia/fx-models").BlueprintType) => TType;
|
1095
|
+
typography: () => import("@omnia/fx-models").TypographyBlueprint;
|
1096
|
+
spacing: () => import("@omnia/fx-models").SpacingBlueprint;
|
1097
|
+
chrome: () => import("@omnia/fx-models").ChromeBlueprint;
|
1098
|
+
component: () => import("@omnia/fx-models").ComponentBlueprint;
|
1099
|
+
color: (colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes) => string;
|
1100
|
+
colorDefinition: (colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes) => import("@omnia/fx-models").ColorDefinition;
|
1101
|
+
complementaryColorType: (colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes) => import("@omnia/fx-models").ColorTypes;
|
1102
|
+
complementaryColor: (colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes) => string;
|
1103
|
+
complementaryColorDefinition: (colorSchemaType: "info" | "error" | "primary" | "secondary" | "accent1" | "accent2" | "accent3" | "neutral" | "background" | import("@omnia/fx-models").ColorSchemaTypes, colorType: "base" | "onBase" | "container" | "onContainer" | import("@omnia/fx-models").ColorTypes) => import("@omnia/fx-models").ColorDefinition;
|
1104
|
+
currentTheme: () => import("@omnia/fx-models").ThemeDefinitionV2;
|
1105
|
+
};
|
1106
|
+
};
|
1107
|
+
colorValue(color: import("@omnia/fx-models").ColorValue): string;
|
1108
|
+
readonly colorSchema: import("@omnia/fx-models").ColorSchema;
|
1109
|
+
readonly theme: "light" | "dark";
|
1110
|
+
readonly base: import("@omnia/fx-models").ColorDefinition;
|
1111
|
+
readonly onBase: import("@omnia/fx-models").ColorDefinition;
|
1112
|
+
readonly container: import("@omnia/fx-models").ColorDefinition;
|
1113
|
+
readonly onContainer: import("@omnia/fx-models").ColorDefinition;
|
1114
|
+
dynamic: (isContainer: boolean) => {
|
1115
|
+
readonly base: import("@omnia/fx-models").ColorDefinition;
|
1116
|
+
readonly onBase: import("@omnia/fx-models").ColorDefinition;
|
1117
|
+
readonly container: import("@omnia/fx-models").ColorDefinition;
|
1118
|
+
readonly onContainer: import("@omnia/fx-models").ColorDefinition;
|
1119
|
+
};
|
1120
|
+
};
|
1121
|
+
deactivated(): void;
|
1122
|
+
};
|
428
1123
|
} & {
|
429
|
-
|
430
|
-
required: false;
|
431
|
-
};
|
432
|
-
hover: {
|
433
|
-
type: import("vue").PropType<boolean>;
|
434
|
-
required: false;
|
1124
|
+
"v-model:expanded"?: string[];
|
435
1125
|
} & {
|
436
|
-
|
437
|
-
required: false;
|
438
|
-
};
|
439
|
-
showExpand: {
|
440
|
-
type: import("vue").PropType<boolean>;
|
441
|
-
required: false;
|
442
|
-
};
|
443
|
-
"show-expand": {
|
444
|
-
type: import("vue").PropType<boolean>;
|
445
|
-
required: false;
|
446
|
-
};
|
447
|
-
itemsPerPage: {
|
448
|
-
type: import("vue").PropType<number>;
|
449
|
-
required: false;
|
450
|
-
};
|
451
|
-
"items-per-page": {
|
452
|
-
type: import("vue").PropType<number>;
|
453
|
-
required: false;
|
454
|
-
};
|
455
|
-
headers: {
|
456
|
-
type: import("vue").PropType<DataTableHeader[]>;
|
457
|
-
required: false;
|
1126
|
+
"onUpdate:expanded"?: (value: string[]) => void;
|
458
1127
|
} & {
|
459
|
-
|
460
|
-
required: false;
|
461
|
-
};
|
462
|
-
items: {
|
463
|
-
type: import("vue").PropType<any[]>;
|
464
|
-
required: false;
|
1128
|
+
expanded?: string[];
|
465
1129
|
} & {
|
466
|
-
|
467
|
-
|
468
|
-
|
469
|
-
|
470
|
-
|
471
|
-
|
472
|
-
|
473
|
-
onDoc$?: (description?: string) => any;
|
474
|
-
"onUpdate:sortBy"?: (item: SortItem[]) => any;
|
475
|
-
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
476
|
-
"update:sortBy": (item: SortItem[]) => void;
|
477
|
-
doc$(description?: string): {
|
478
|
-
"update:sortBy": (item: SortItem[]) => void;
|
479
|
-
};
|
480
|
-
}, string, {
|
481
|
-
container?: any;
|
482
|
-
colorSchemaType?: any;
|
483
|
-
colors?: any;
|
484
|
-
}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
485
|
-
propsDefinition: Omit<Readonly<{
|
486
|
-
container?: any;
|
487
|
-
colorSchemaType?: any;
|
488
|
-
colors?: any;
|
1130
|
+
"v-model:sortBy"?: SortItem[];
|
1131
|
+
} & {
|
1132
|
+
"onUpdate:sortBy"?: (value: SortItem[]) => void;
|
1133
|
+
} & {
|
1134
|
+
sortBy?: SortItem[];
|
1135
|
+
} & {
|
1136
|
+
mustSort?: boolean;
|
489
1137
|
} & {
|
490
|
-
headers?: DataTableHeader[];
|
491
1138
|
height?: string | number;
|
492
|
-
|
493
|
-
|
494
|
-
|
495
|
-
|
496
|
-
|
497
|
-
"v-slots"?: {
|
498
|
-
default?: import("../../DefineVueTypings").Slot<any[]>;
|
499
|
-
} & ODataTableSlots;
|
1139
|
+
} & {
|
1140
|
+
noDataText?: string;
|
1141
|
+
} & {
|
1142
|
+
clickable?: boolean;
|
1143
|
+
} & {
|
500
1144
|
loading?: boolean;
|
1145
|
+
} & {
|
501
1146
|
hover?: boolean;
|
502
|
-
|
503
|
-
mustSort?: boolean;
|
1147
|
+
} & {
|
504
1148
|
showExpand?: boolean;
|
505
|
-
|
1149
|
+
} & {
|
506
1150
|
itemsPerPage?: number;
|
507
|
-
|
508
|
-
|
509
|
-
|
510
|
-
|
511
|
-
|
512
|
-
"no-data-text"?: string;
|
513
|
-
"v-model:expanded"?: string[];
|
514
|
-
"v-model:sortBy"?: SortItem[];
|
515
|
-
"must-sort"?: boolean;
|
516
|
-
}>, "onDoc$" | "onUpdate:sortBy"> & {
|
517
|
-
onDoc$?: (description?: string) => any;
|
1151
|
+
} & {
|
1152
|
+
headers?: DataTableHeader[];
|
1153
|
+
} & {
|
1154
|
+
items?: T[];
|
1155
|
+
} & {
|
518
1156
|
"onUpdate:sortBy"?: (item: SortItem[]) => any;
|
519
|
-
|
520
|
-
}
|
1157
|
+
"onUpdate:expanded"?: (expanded: string[]) => any;
|
1158
|
+
} & Omit<import("@omnia/fx/ux").VueComponentBaseProps, "headers" | "container" | "height" | "expanded" | "colorSchemaType" | "items" | "colors" | "loading" | "hover" | "sortBy" | "mustSort" | "showExpand" | "noDataText" | "itemsPerPage" | "onUpdate:sortBy" | "onUpdate:expanded" | "clickable" | "v-model:expanded" | "v-model:sortBy">;
|
1159
|
+
} & import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
1160
|
+
[key: string]: any;
|
1161
|
+
}>;
|
521
1162
|
export default _default;
|