@omnia/fx 8.0.33-vnext → 8.0.35-vnext
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/runtime/core/ManifestResourceLoader.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/confirmdialog/IVueConfirmDialog.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/features/FeaturesJourney.css.d.ts +0 -1
- package/internal-do-not-import-from-here/ux/journey/v2/JourneyBlade.css.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/journey/v2/JourneyBlade.d.ts +61 -0
- package/internal-do-not-import-from-here/ux/journey/v2/stores/JourneyStore.d.ts +2 -0
- package/internal-do-not-import-from-here/ux/oxide/appbar/Appbar.css.d.ts +4 -0
- package/internal-do-not-import-from-here/ux/oxide/appbar/Appbar.d.ts +17 -0
- package/internal-do-not-import-from-here/ux/oxide/datatable/DataTable.css.d.ts +1 -1
- package/internal-do-not-import-from-here/ux/oxide/datatable/DataTable.d.ts +14 -0
- package/internal-do-not-import-from-here/ux/oxide/dialog/Dialog.css.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/progress/Progress.css.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/oxide/progress/Progress.d.ts +577 -0
- package/internal-do-not-import-from-here/ux/oxide/toolbar/Toolbar.d.ts +124 -102
- package/internal-do-not-import-from-here/ux/theming-v2/styling/UseComponentStyling.d.ts +1 -0
- package/internal-do-not-import-from-here/wctypings.d.ts +2 -0
- package/package.json +2 -2
- package/internal-do-not-import-from-here/core/utils/gpt3utils/Encoder.d.ts +0 -50259
- package/internal-do-not-import-from-here/core/utils/gpt3utils/Vocab.d.ts +0 -1
@@ -59,7 +59,7 @@ export declare class WebpackModuleResoverInternal {
|
|
59
59
|
private static _omniaLoader;
|
60
60
|
static onLoadError(omniaServiceId: GuidValue, manifestId: GuidValue): void;
|
61
61
|
static resolve(omniaServiceId: GuidValue, manifestId: GuidValue): Future<void>;
|
62
|
-
static isResolved(omniaServiceId:
|
62
|
+
static isResolved(omniaServiceId: GuidValue, manifestId: GuidValue): boolean;
|
63
63
|
private static ensureResolvablePromise;
|
64
64
|
private static install;
|
65
65
|
static init(): void;
|
@@ -61,10 +61,15 @@ declare const _default: {
|
|
61
61
|
};
|
62
62
|
readonly create?: boolean;
|
63
63
|
readonly save?: boolean;
|
64
|
+
readonly subTitle?: string;
|
65
|
+
readonly "sub-title"?: string;
|
64
66
|
"onClick:cancel"?: (id: string) => any;
|
65
67
|
"onClick:delete"?: (id: string) => any;
|
68
|
+
readonly home?: boolean;
|
66
69
|
"onClick:back"?: (id: string) => any;
|
67
70
|
readonly searchable?: boolean;
|
71
|
+
readonly iconHeader?: boolean;
|
72
|
+
readonly "icon-header"?: boolean;
|
68
73
|
onSearch?: (searchText: string) => any;
|
69
74
|
"onClick:add"?: (id: string) => any;
|
70
75
|
"onClick:save"?: (id: string) => any;
|
@@ -98,6 +103,12 @@ declare const _default: {
|
|
98
103
|
} & {
|
99
104
|
type: import("vue").PropType<boolean>;
|
100
105
|
};
|
106
|
+
"icon-header": {
|
107
|
+
type: import("vue").PropType<boolean>;
|
108
|
+
};
|
109
|
+
iconHeader: {
|
110
|
+
type: import("vue").PropType<boolean>;
|
111
|
+
};
|
101
112
|
delete: {
|
102
113
|
type: import("vue").PropType<boolean>;
|
103
114
|
} & {
|
@@ -113,6 +124,11 @@ declare const _default: {
|
|
113
124
|
} & {
|
114
125
|
type: import("vue").PropType<boolean>;
|
115
126
|
};
|
127
|
+
home: {
|
128
|
+
type: import("vue").PropType<boolean>;
|
129
|
+
} & {
|
130
|
+
type: import("vue").PropType<boolean>;
|
131
|
+
};
|
116
132
|
size: {
|
117
133
|
type: import("vue").PropType<BladeSizes>;
|
118
134
|
required: false;
|
@@ -122,6 +138,12 @@ declare const _default: {
|
|
122
138
|
} & {
|
123
139
|
type: import("vue").PropType<string>;
|
124
140
|
};
|
141
|
+
"sub-title": {
|
142
|
+
type: import("vue").PropType<string>;
|
143
|
+
};
|
144
|
+
subTitle: {
|
145
|
+
type: import("vue").PropType<string>;
|
146
|
+
};
|
125
147
|
title: {
|
126
148
|
type: import("vue").PropType<string>;
|
127
149
|
} & {
|
@@ -177,6 +199,12 @@ declare const _default: {
|
|
177
199
|
} & {
|
178
200
|
type: import("vue").PropType<boolean>;
|
179
201
|
};
|
202
|
+
"icon-header": {
|
203
|
+
type: import("vue").PropType<boolean>;
|
204
|
+
};
|
205
|
+
iconHeader: {
|
206
|
+
type: import("vue").PropType<boolean>;
|
207
|
+
};
|
180
208
|
delete: {
|
181
209
|
type: import("vue").PropType<boolean>;
|
182
210
|
} & {
|
@@ -192,6 +220,11 @@ declare const _default: {
|
|
192
220
|
} & {
|
193
221
|
type: import("vue").PropType<boolean>;
|
194
222
|
};
|
223
|
+
home: {
|
224
|
+
type: import("vue").PropType<boolean>;
|
225
|
+
} & {
|
226
|
+
type: import("vue").PropType<boolean>;
|
227
|
+
};
|
195
228
|
size: {
|
196
229
|
type: import("vue").PropType<BladeSizes>;
|
197
230
|
required: false;
|
@@ -201,6 +234,12 @@ declare const _default: {
|
|
201
234
|
} & {
|
202
235
|
type: import("vue").PropType<string>;
|
203
236
|
};
|
237
|
+
"sub-title": {
|
238
|
+
type: import("vue").PropType<string>;
|
239
|
+
};
|
240
|
+
subTitle: {
|
241
|
+
type: import("vue").PropType<string>;
|
242
|
+
};
|
204
243
|
title: {
|
205
244
|
type: import("vue").PropType<string>;
|
206
245
|
} & {
|
@@ -233,6 +272,12 @@ declare const _default: {
|
|
233
272
|
} & {
|
234
273
|
type: import("vue").PropType<boolean>;
|
235
274
|
};
|
275
|
+
"icon-header": {
|
276
|
+
type: import("vue").PropType<boolean>;
|
277
|
+
};
|
278
|
+
iconHeader: {
|
279
|
+
type: import("vue").PropType<boolean>;
|
280
|
+
};
|
236
281
|
delete: {
|
237
282
|
type: import("vue").PropType<boolean>;
|
238
283
|
} & {
|
@@ -248,6 +293,11 @@ declare const _default: {
|
|
248
293
|
} & {
|
249
294
|
type: import("vue").PropType<boolean>;
|
250
295
|
};
|
296
|
+
home: {
|
297
|
+
type: import("vue").PropType<boolean>;
|
298
|
+
} & {
|
299
|
+
type: import("vue").PropType<boolean>;
|
300
|
+
};
|
251
301
|
size: {
|
252
302
|
type: import("vue").PropType<BladeSizes>;
|
253
303
|
required: false;
|
@@ -257,6 +307,12 @@ declare const _default: {
|
|
257
307
|
} & {
|
258
308
|
type: import("vue").PropType<string>;
|
259
309
|
};
|
310
|
+
"sub-title": {
|
311
|
+
type: import("vue").PropType<string>;
|
312
|
+
};
|
313
|
+
subTitle: {
|
314
|
+
type: import("vue").PropType<string>;
|
315
|
+
};
|
260
316
|
title: {
|
261
317
|
type: import("vue").PropType<string>;
|
262
318
|
} & {
|
@@ -290,7 +346,12 @@ declare const _default: {
|
|
290
346
|
};
|
291
347
|
create?: boolean;
|
292
348
|
save?: boolean;
|
349
|
+
subTitle?: string;
|
350
|
+
"sub-title"?: string;
|
351
|
+
home?: boolean;
|
293
352
|
searchable?: boolean;
|
353
|
+
iconHeader?: boolean;
|
354
|
+
"icon-header"?: boolean;
|
294
355
|
}>, "onClick:cancel" | "onClick:delete" | "onClick:back" | "onSearch" | "onClick:add" | "onClick:save"> & {
|
295
356
|
"onClick:cancel"?: (id: string) => any;
|
296
357
|
"onClick:delete"?: (id: string) => any;
|
@@ -12,6 +12,7 @@ export declare function useJourneyV2(): {
|
|
12
12
|
setActiveIndex: (index: number) => void;
|
13
13
|
moveNext: () => void;
|
14
14
|
movePrev: () => void;
|
15
|
+
travelTo: (id: string) => void;
|
15
16
|
};
|
16
17
|
events: {
|
17
18
|
onMutatingBlades: import("@omnia/fx").EventHook<BladeInstance[]>;
|
@@ -34,6 +35,7 @@ export declare const useJourneyStore: (newInstanceWithName?: string) => {
|
|
34
35
|
setActiveIndex: (index: number) => void;
|
35
36
|
moveNext: () => void;
|
36
37
|
movePrev: () => void;
|
38
|
+
travelTo: (id: string) => void;
|
37
39
|
};
|
38
40
|
events: {
|
39
41
|
onMutatingBlades: import("@omnia/fx").EventHook<BladeInstance[]>;
|
@@ -1,6 +1,10 @@
|
|
1
1
|
import { ColorDefinition } from "../../velcron/core";
|
2
|
+
import { useColorSchemaSetup } from "../..";
|
3
|
+
export declare const AppBarTypeDefinition: string[];
|
4
|
+
export type AppBarType = typeof AppBarTypeDefinition[number];
|
2
5
|
export declare const AppbarStyles: {
|
3
6
|
templateTitle: string;
|
4
7
|
content: string;
|
8
|
+
wrapper: (variant: AppBarType, colors: ReturnType<typeof useColorSchemaSetup>) => string;
|
5
9
|
navigation: (color: ColorDefinition) => string;
|
6
10
|
};
|
@@ -62,6 +62,7 @@ declare const _default: {
|
|
62
62
|
} & {
|
63
63
|
actionButtons?: Func<[VNodeChild]>;
|
64
64
|
};
|
65
|
+
readonly variant?: string;
|
65
66
|
readonly navigation?: boolean;
|
66
67
|
readonly closable?: boolean;
|
67
68
|
readonly subTitle?: string;
|
@@ -109,6 +110,11 @@ declare const _default: {
|
|
109
110
|
} & {
|
110
111
|
type: import("vue").PropType<boolean>;
|
111
112
|
};
|
113
|
+
variant: {
|
114
|
+
type: import("vue").PropType<string>;
|
115
|
+
} & {
|
116
|
+
type: import("vue").PropType<string>;
|
117
|
+
};
|
112
118
|
absolute: {
|
113
119
|
type: import("vue").PropType<boolean>;
|
114
120
|
} & {
|
@@ -187,6 +193,11 @@ declare const _default: {
|
|
187
193
|
} & {
|
188
194
|
type: import("vue").PropType<boolean>;
|
189
195
|
};
|
196
|
+
variant: {
|
197
|
+
type: import("vue").PropType<string>;
|
198
|
+
} & {
|
199
|
+
type: import("vue").PropType<string>;
|
200
|
+
};
|
190
201
|
absolute: {
|
191
202
|
type: import("vue").PropType<boolean>;
|
192
203
|
} & {
|
@@ -240,6 +251,11 @@ declare const _default: {
|
|
240
251
|
} & {
|
241
252
|
type: import("vue").PropType<boolean>;
|
242
253
|
};
|
254
|
+
variant: {
|
255
|
+
type: import("vue").PropType<string>;
|
256
|
+
} & {
|
257
|
+
type: import("vue").PropType<string>;
|
258
|
+
};
|
243
259
|
absolute: {
|
244
260
|
type: import("vue").PropType<boolean>;
|
245
261
|
} & {
|
@@ -288,6 +304,7 @@ declare const _default: {
|
|
288
304
|
} & {
|
289
305
|
actionButtons?: Func<[VNodeChild]>;
|
290
306
|
};
|
307
|
+
variant?: string;
|
291
308
|
navigation?: boolean;
|
292
309
|
closable?: boolean;
|
293
310
|
subTitle?: string;
|
@@ -1,4 +1,4 @@
|
|
1
1
|
import { useColorSchemaStore } from "../../theming-v2";
|
2
2
|
export declare const DataTableStyles: {
|
3
|
-
wrapper: (colors: ReturnType<typeof useColorSchemaStore>, hideFooter: boolean) => string;
|
3
|
+
wrapper: (colors: ReturnType<typeof useColorSchemaStore>, hideFooter: boolean, hover: boolean, clickable: boolean) => string;
|
4
4
|
};
|
@@ -70,6 +70,7 @@ declare const _default: {
|
|
70
70
|
readonly showExpand?: boolean;
|
71
71
|
readonly itemsPerPage?: number;
|
72
72
|
readonly "onUpdate:expanded"?: (value: string[]) => any;
|
73
|
+
readonly clickable?: boolean;
|
73
74
|
readonly "v-model:expanded"?: string[];
|
74
75
|
};
|
75
76
|
$attrs: {
|
@@ -116,6 +117,10 @@ declare const _default: {
|
|
116
117
|
} & {
|
117
118
|
type: import("vue").PropType<string | number>;
|
118
119
|
};
|
120
|
+
clickable: {
|
121
|
+
type: import("vue").PropType<boolean>;
|
122
|
+
required: false;
|
123
|
+
};
|
119
124
|
hover: {
|
120
125
|
type: import("vue").PropType<boolean>;
|
121
126
|
required: false;
|
@@ -206,6 +211,10 @@ declare const _default: {
|
|
206
211
|
} & {
|
207
212
|
type: import("vue").PropType<string | number>;
|
208
213
|
};
|
214
|
+
clickable: {
|
215
|
+
type: import("vue").PropType<boolean>;
|
216
|
+
required: false;
|
217
|
+
};
|
209
218
|
hover: {
|
210
219
|
type: import("vue").PropType<boolean>;
|
211
220
|
required: false;
|
@@ -274,6 +283,10 @@ declare const _default: {
|
|
274
283
|
} & {
|
275
284
|
type: import("vue").PropType<string | number>;
|
276
285
|
};
|
286
|
+
clickable: {
|
287
|
+
type: import("vue").PropType<boolean>;
|
288
|
+
required: false;
|
289
|
+
};
|
277
290
|
hover: {
|
278
291
|
type: import("vue").PropType<boolean>;
|
279
292
|
required: false;
|
@@ -337,6 +350,7 @@ declare const _default: {
|
|
337
350
|
showExpand?: boolean;
|
338
351
|
itemsPerPage?: number;
|
339
352
|
"onUpdate:expanded"?: (value: string[]) => any;
|
353
|
+
clickable?: boolean;
|
340
354
|
"v-model:expanded"?: string[];
|
341
355
|
}>, never>;
|
342
356
|
};
|
@@ -4,6 +4,7 @@ export declare const DialogStyles: {
|
|
4
4
|
templateTitle: string;
|
5
5
|
titleWrapper: string;
|
6
6
|
fixedContent: (backgroundColor: string) => string;
|
7
|
+
navigationDrawer: (dark: boolean) => string;
|
7
8
|
activator: string;
|
8
9
|
contentScrollWrapper: (customScroll: boolean, hasButtons: boolean, fullSize: boolean, staticContent: boolean, variant: DialogType) => string;
|
9
10
|
notScrollOutside: string;
|
@@ -0,0 +1 @@
|
|
1
|
+
export declare const ProgressStyles: {};
|