@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
@@ -7,8 +7,12 @@ declare const _default: {
|
|
7
7
|
$: import("vue").ComponentInternalInstance;
|
8
8
|
$data: {};
|
9
9
|
$props: {
|
10
|
+
container?: any;
|
11
|
+
blueprint?: any;
|
12
|
+
colorSchemaType?: any;
|
13
|
+
blueprintType?: any;
|
14
|
+
colors?: any;
|
10
15
|
readonly title?: string;
|
11
|
-
readonly container?: unknown;
|
12
16
|
style?: unknown;
|
13
17
|
class?: String | String[];
|
14
18
|
key?: string | number | symbol;
|
@@ -55,21 +59,14 @@ declare const _default: {
|
|
55
59
|
[key: string]: any;
|
56
60
|
}>) => void)[];
|
57
61
|
readonly closeButton?: boolean;
|
58
|
-
readonly
|
59
|
-
readonly colorSchemaType?: unknown;
|
60
|
-
readonly blueprintType?: unknown;
|
61
|
-
readonly "v-slots"?: ({
|
62
|
+
readonly "v-slots"?: {
|
62
63
|
default?: Func<[VNodeChild]>;
|
63
64
|
} & {
|
64
65
|
title?: Func<[VNodeChild]>;
|
65
66
|
customButtons?: Func<[VNodeChild]>;
|
66
|
-
}
|
67
|
-
default?: () => VNodeChild;
|
68
|
-
} & {
|
69
|
-
icon?: () => VNodeChild;
|
70
|
-
});
|
67
|
+
};
|
71
68
|
readonly variant?: string;
|
72
|
-
readonly
|
69
|
+
readonly subTitle?: string;
|
73
70
|
"onClick:close"?: () => any;
|
74
71
|
readonly backButton?: boolean;
|
75
72
|
"onClick:back"?: () => any;
|
@@ -88,43 +85,54 @@ declare const _default: {
|
|
88
85
|
$emit: ((event: "click:close") => void) & ((event: "click:back") => void);
|
89
86
|
$el: any;
|
90
87
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
91
|
-
"v-slots": import("vue").Prop<
|
88
|
+
"v-slots": import("vue").Prop<{
|
92
89
|
default?: Func<[VNodeChild]>;
|
93
90
|
} & {
|
94
91
|
title?: Func<[VNodeChild]>;
|
95
92
|
customButtons?: Func<[VNodeChild]>;
|
96
|
-
}
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
93
|
+
}>;
|
94
|
+
backButton: {
|
95
|
+
type: import("vue").PropType<boolean>;
|
96
|
+
};
|
97
|
+
closeButton: {
|
98
|
+
type: import("vue").PropType<boolean>;
|
99
|
+
};
|
100
|
+
icon: {
|
101
|
+
type: import("vue").PropType<IIcon>;
|
102
|
+
};
|
103
|
+
subTitle: {
|
104
|
+
type: import("vue").PropType<string>;
|
105
|
+
};
|
106
|
+
title: {
|
107
|
+
type: import("vue").PropType<string>;
|
108
|
+
};
|
109
|
+
variant: {
|
110
|
+
type: import("vue").PropType<string>;
|
102
111
|
} & {
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
variant: import("vue").Prop<string, string>;
|
115
|
-
class: import("vue").Prop<String | String[], String | String[]>;
|
116
|
-
colorSchemaType?: import("vue").Prop<unknown, unknown>;
|
117
|
-
container?: import("vue").Prop<unknown, unknown>;
|
118
|
-
colors?: import("vue").Prop<unknown, unknown>;
|
119
|
-
blueprintType?: import("vue").Prop<unknown, unknown>;
|
120
|
-
blueprint?: import("vue").Prop<unknown, unknown>;
|
112
|
+
type: import("vue").PropType<string>;
|
113
|
+
};
|
114
|
+
class: {
|
115
|
+
type: import("vue").PropType<String | String[]>;
|
116
|
+
required: boolean;
|
117
|
+
};
|
118
|
+
colorSchemaType?: any;
|
119
|
+
container?: any;
|
120
|
+
colors?: any;
|
121
|
+
blueprintType?: any;
|
122
|
+
blueprint?: any;
|
121
123
|
}>> & {
|
122
124
|
"onClick:close"?: () => any;
|
123
125
|
"onClick:back"?: () => any;
|
124
|
-
}, () => JSX.Element,
|
126
|
+
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
125
127
|
"click:close": () => true;
|
126
128
|
"click:back": () => true;
|
127
|
-
}, string, {
|
129
|
+
}, string, {
|
130
|
+
container?: any;
|
131
|
+
blueprint?: any;
|
132
|
+
colorSchemaType?: any;
|
133
|
+
blueprintType?: any;
|
134
|
+
colors?: any;
|
135
|
+
}, {}, string, {}> & {
|
128
136
|
beforeCreate?: (() => void) | (() => void)[];
|
129
137
|
created?: (() => void) | (() => void)[];
|
130
138
|
beforeMount?: (() => void) | (() => void)[];
|
@@ -145,36 +153,41 @@ declare const _default: {
|
|
145
153
|
$nextTick: typeof import("vue").nextTick;
|
146
154
|
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import("vue").WatchOptions<boolean>): import("vue").WatchStopHandle;
|
147
155
|
} & Readonly<import("vue").ExtractPropTypes<{
|
148
|
-
"v-slots": import("vue").Prop<
|
156
|
+
"v-slots": import("vue").Prop<{
|
149
157
|
default?: Func<[VNodeChild]>;
|
150
158
|
} & {
|
151
159
|
title?: Func<[VNodeChild]>;
|
152
160
|
customButtons?: Func<[VNodeChild]>;
|
153
|
-
}
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
}
|
160
|
-
|
161
|
-
|
162
|
-
}
|
163
|
-
|
161
|
+
}>;
|
162
|
+
backButton: {
|
163
|
+
type: import("vue").PropType<boolean>;
|
164
|
+
};
|
165
|
+
closeButton: {
|
166
|
+
type: import("vue").PropType<boolean>;
|
167
|
+
};
|
168
|
+
icon: {
|
169
|
+
type: import("vue").PropType<IIcon>;
|
170
|
+
};
|
171
|
+
subTitle: {
|
172
|
+
type: import("vue").PropType<string>;
|
173
|
+
};
|
174
|
+
title: {
|
175
|
+
type: import("vue").PropType<string>;
|
176
|
+
};
|
177
|
+
variant: {
|
178
|
+
type: import("vue").PropType<string>;
|
164
179
|
} & {
|
165
|
-
|
166
|
-
}
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
|
172
|
-
|
173
|
-
|
174
|
-
|
175
|
-
|
176
|
-
blueprintType?: import("vue").Prop<unknown, unknown>;
|
177
|
-
blueprint?: import("vue").Prop<unknown, unknown>;
|
180
|
+
type: import("vue").PropType<string>;
|
181
|
+
};
|
182
|
+
class: {
|
183
|
+
type: import("vue").PropType<String | String[]>;
|
184
|
+
required: boolean;
|
185
|
+
};
|
186
|
+
colorSchemaType?: any;
|
187
|
+
container?: any;
|
188
|
+
colors?: any;
|
189
|
+
blueprintType?: any;
|
190
|
+
blueprint?: any;
|
178
191
|
}>> & {
|
179
192
|
"onClick:close"?: () => any;
|
180
193
|
"onClick:back"?: () => any;
|
@@ -183,64 +196,73 @@ declare const _default: {
|
|
183
196
|
__isTeleport?: never;
|
184
197
|
__isSuspense?: never;
|
185
198
|
} & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
186
|
-
"v-slots": import("vue").Prop<
|
199
|
+
"v-slots": import("vue").Prop<{
|
187
200
|
default?: Func<[VNodeChild]>;
|
188
201
|
} & {
|
189
202
|
title?: Func<[VNodeChild]>;
|
190
203
|
customButtons?: Func<[VNodeChild]>;
|
191
|
-
}
|
192
|
-
|
193
|
-
|
194
|
-
|
195
|
-
|
196
|
-
|
197
|
-
}
|
198
|
-
|
199
|
-
|
200
|
-
}
|
201
|
-
|
204
|
+
}>;
|
205
|
+
backButton: {
|
206
|
+
type: import("vue").PropType<boolean>;
|
207
|
+
};
|
208
|
+
closeButton: {
|
209
|
+
type: import("vue").PropType<boolean>;
|
210
|
+
};
|
211
|
+
icon: {
|
212
|
+
type: import("vue").PropType<IIcon>;
|
213
|
+
};
|
214
|
+
subTitle: {
|
215
|
+
type: import("vue").PropType<string>;
|
216
|
+
};
|
217
|
+
title: {
|
218
|
+
type: import("vue").PropType<string>;
|
219
|
+
};
|
220
|
+
variant: {
|
221
|
+
type: import("vue").PropType<string>;
|
202
222
|
} & {
|
203
|
-
|
204
|
-
}
|
205
|
-
|
206
|
-
|
207
|
-
|
208
|
-
|
209
|
-
|
210
|
-
|
211
|
-
|
212
|
-
|
213
|
-
|
214
|
-
blueprintType?: import("vue").Prop<unknown, unknown>;
|
215
|
-
blueprint?: import("vue").Prop<unknown, unknown>;
|
223
|
+
type: import("vue").PropType<string>;
|
224
|
+
};
|
225
|
+
class: {
|
226
|
+
type: import("vue").PropType<String | String[]>;
|
227
|
+
required: boolean;
|
228
|
+
};
|
229
|
+
colorSchemaType?: any;
|
230
|
+
container?: any;
|
231
|
+
colors?: any;
|
232
|
+
blueprintType?: any;
|
233
|
+
blueprint?: any;
|
216
234
|
}>> & {
|
217
235
|
"onClick:close"?: () => any;
|
218
236
|
"onClick:back"?: () => any;
|
219
|
-
}, () => JSX.Element,
|
237
|
+
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
220
238
|
"click:close": () => true;
|
221
239
|
"click:back": () => true;
|
222
|
-
}, string, {
|
223
|
-
|
240
|
+
}, string, {
|
241
|
+
container?: any;
|
242
|
+
blueprint?: any;
|
243
|
+
colorSchemaType?: any;
|
244
|
+
blueprintType?: any;
|
245
|
+
colors?: any;
|
246
|
+
}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & {
|
247
|
+
propsDefinition: Omit<Readonly<{
|
248
|
+
container?: any;
|
249
|
+
blueprint?: any;
|
250
|
+
colorSchemaType?: any;
|
251
|
+
blueprintType?: any;
|
252
|
+
colors?: any;
|
253
|
+
} & {
|
224
254
|
title?: string;
|
225
|
-
container?: unknown;
|
226
255
|
class?: String | String[];
|
227
256
|
icon?: IIcon;
|
228
257
|
closeButton?: boolean;
|
229
|
-
|
230
|
-
colorSchemaType?: unknown;
|
231
|
-
blueprintType?: unknown;
|
232
|
-
"v-slots"?: ({
|
258
|
+
"v-slots"?: {
|
233
259
|
default?: Func<[VNodeChild]>;
|
234
260
|
} & {
|
235
261
|
title?: Func<[VNodeChild]>;
|
236
262
|
customButtons?: Func<[VNodeChild]>;
|
237
|
-
}
|
238
|
-
default?: () => VNodeChild;
|
239
|
-
} & {
|
240
|
-
icon?: () => VNodeChild;
|
241
|
-
});
|
263
|
+
};
|
242
264
|
variant?: string;
|
243
|
-
|
265
|
+
subTitle?: string;
|
244
266
|
backButton?: boolean;
|
245
267
|
}>, "onClick:close" | "onClick:back"> & {
|
246
268
|
"onClick:close"?: () => any;
|
@@ -1,6 +1,7 @@
|
|
1
1
|
import { ColorStyles } from "@omnia/fx-models";
|
2
2
|
import { useColorSchemaStore } from "../ColorSchemaStore";
|
3
3
|
export declare function useScrollStyling(colors: ReturnType<typeof useColorSchemaStore>, toned?: boolean, targetSelector?: string): string;
|
4
|
+
export declare function useDividingOpacity(dark: boolean): string;
|
4
5
|
export declare function useBackgroundOpacity(dark: boolean, opacity?: Number): string;
|
5
6
|
export declare function useBackgroundOpacityOnColor(color: string, dark: boolean, opacity?: Number): any;
|
6
7
|
export declare function useColorStyling(color: string, opacity?: number): ColorStyles;
|
@@ -112,6 +112,7 @@ import wc994b0ed2b0794f928849a3fb5c52c70a from './ux/oxide/main/Main';
|
|
112
112
|
import wce688539435a64ccf8569a6e05020ca94 from './ux/oxide/menu/Menu';
|
113
113
|
import wcd17d504fd4874d8bb50ab6a946859546 from './ux/oxide/navigationdrawer/NavigationDrawer';
|
114
114
|
import wcc51213da3caa4607b2fa435ae0c7acbf from './ux/oxide/panel/Panel';
|
115
|
+
import wc61e392c374cf4be6b9a1457b79a715ed from './ux/oxide/progress/Progress';
|
115
116
|
import wc6c9f088f52de491bbe36933530a1880a from './ux/oxide/radio/RadioGroup';
|
116
117
|
import wca156e0af12b3464082a7e9fd2cdab84a from './ux/oxide/radio/Radio';
|
117
118
|
import wc87b50e67ce504ec292925641cfb29016 from './ux/oxide/select/Select';
|
@@ -353,6 +354,7 @@ declare global {
|
|
353
354
|
"o-menu": typeof wce688539435a64ccf8569a6e05020ca94.propsDefinition & VueComponentBaseProps;
|
354
355
|
"o-navigation-drawer": typeof wcd17d504fd4874d8bb50ab6a946859546.propsDefinition & VueComponentBaseProps;
|
355
356
|
"o-panel": typeof wcc51213da3caa4607b2fa435ae0c7acbf.propsDefinition & VueComponentBaseProps;
|
357
|
+
"o-progress": typeof wc61e392c374cf4be6b9a1457b79a715ed.propsDefinition & VueComponentBaseProps;
|
356
358
|
"o-radio-group": typeof wc6c9f088f52de491bbe36933530a1880a.propsDefinition & VueComponentBaseProps;
|
357
359
|
"o-radio": typeof wca156e0af12b3464082a7e9fd2cdab84a.propsDefinition & VueComponentBaseProps;
|
358
360
|
"o-select": typeof wc87b50e67ce504ec292925641cfb29016.propsDefinition & VueComponentBaseProps;
|
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "@omnia/fx",
|
3
3
|
"license": "MIT",
|
4
|
-
"version": "8.0.
|
4
|
+
"version": "8.0.35-vnext",
|
5
5
|
"description": "Provide Omnia Fx typings and tooling for clientside Omnia development.",
|
6
6
|
"scripts": {
|
7
7
|
"test": "echo \"Error: no test specified\" && exit 1",
|
@@ -20,7 +20,7 @@
|
|
20
20
|
],
|
21
21
|
"author": "Precio Fishbone",
|
22
22
|
"dependencies": {
|
23
|
-
"@omnia/fx-models": "8.0.
|
23
|
+
"@omnia/fx-models": "8.0.35-vnext",
|
24
24
|
"@microsoft/signalr": "6.0.1",
|
25
25
|
"broadcast-channel": "4.8.0",
|
26
26
|
"dayjs": "1.10.7",
|