@omnia/fx 7.8.89-preview → 7.8.90-preview
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/ux/Exposes.d.ts +1 -0
- package/internal-do-not-import-from-here/ux/skeletonhandler/ISkeletonLoader.d.ts +13 -0
- package/internal-do-not-import-from-here/ux/skeletonhandler/SkeletonLoader.d.ts +7 -0
- package/internal-do-not-import-from-here/ux/skeletonhandler/index.d.ts +1 -0
- package/internal-do-not-import-from-here/wctypings.d.ts +2 -0
- package/package.json +2 -2
|
@@ -57,6 +57,7 @@ export * from "./filterengine";
|
|
|
57
57
|
export * from "./use";
|
|
58
58
|
export * from "./tag";
|
|
59
59
|
export * from "./datetimefilterquery";
|
|
60
|
+
export * from "./skeletonhandler";
|
|
60
61
|
export * from "./TokenBasedRouter";
|
|
61
62
|
export * from "./StyleFlow";
|
|
62
63
|
export * from "./UxCoreTypings";
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
export interface ISkeletonLoader {
|
|
2
|
+
type: string;
|
|
3
|
+
loading?: boolean;
|
|
4
|
+
maxHeight?: string;
|
|
5
|
+
maxWidth?: string;
|
|
6
|
+
class?: string[] | string;
|
|
7
|
+
height?: string;
|
|
8
|
+
width?: string;
|
|
9
|
+
boilerplate?: boolean;
|
|
10
|
+
dark?: boolean;
|
|
11
|
+
transition?: string;
|
|
12
|
+
render?: () => JSX.Element | JSX.Element[];
|
|
13
|
+
}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { ISkeletonLoader } from "..";
|
|
2
|
+
declare const _default: (import("vue").VueConstructor<import("vue-tsx-support")._TsxComponentInstanceV3<import("vue/types/umd"), {}, import("vue-tsx-support").PropsForOutside<ISkeletonLoader, never>, any, any, any>> & {
|
|
3
|
+
propsDefinition: import("vue-tsx-support").PropsForOutside<ISkeletonLoader, never>;
|
|
4
|
+
}) | (import("vue").VueConstructor<import("vue-tsx-support")._TsxComponentInstanceV3<import("vue/types/umd") & import("vue").ShallowUnwrapRef<any>, {}, import("vue-tsx-support").PropsForOutside<ISkeletonLoader, never>, any, any, any>> & {
|
|
5
|
+
propsDefinition: import("vue-tsx-support").PropsForOutside<ISkeletonLoader, never>;
|
|
6
|
+
});
|
|
7
|
+
export default _default;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./ISkeletonLoader";
|
|
@@ -152,6 +152,7 @@ import wc535ac075284646eca569a78457213e6f from './ux/signin/omnia/Login';
|
|
|
152
152
|
import wc2b741f0203a54cb5a7be72e204ebecc8 from './ux/signin/identitycreationrequest/IdentityCreationRequestView';
|
|
153
153
|
import wcffcb5f0ddcfd445d81683167f298c336 from './ux/signin/identitycreationrequest/ConfirmEmailView';
|
|
154
154
|
import wcf297290b5ea4409a9738ca880f1ea612 from './ux/signout/Logout';
|
|
155
|
+
import wc4ecc3b27de0045258b22cba846f79ad9 from './ux/skeletonhandler/SkeletonLoader';
|
|
155
156
|
import wc5aaaefb501d64fe59da8b779a54c0a55 from './ux/statuscoderenderer/StatusCodeRenderer';
|
|
156
157
|
import wc252ece0016594978b3ddfafdd59adda4 from './ux/theming-v2/themedefinitionpicker/ThemeDefinitionPicker';
|
|
157
158
|
import wc5abbb7170e454f0d8cb537bcad180cd7 from './ux/theming-v2/themeeditor/ThemeEditor';
|
|
@@ -328,6 +329,7 @@ declare global {
|
|
|
328
329
|
"omfx-identity-creation-request-omnia": base.CombinedTsxComponentAttrs<typeof wc2b741f0203a54cb5a7be72e204ebecc8.propsDefinition, {}, {}, {}, {}, true> & VueComponentBaseProps;
|
|
329
330
|
"omfx-identity-creation-request-confirm-email-result-omnia": base.CombinedTsxComponentAttrs<typeof wcffcb5f0ddcfd445d81683167f298c336.propsDefinition, {}, {}, {}, {}, true> & VueComponentBaseProps;
|
|
330
331
|
"omfx-logout": base.CombinedTsxComponentAttrs<typeof wcf297290b5ea4409a9738ca880f1ea612.propsDefinition, {}, {}, {}, {}, true> & VueComponentBaseProps;
|
|
332
|
+
"omfx-skeleton-loader": base.CombinedTsxComponentAttrs<typeof wc4ecc3b27de0045258b22cba846f79ad9.propsDefinition, {}, {}, {}, {}, true> & VueComponentBaseProps;
|
|
331
333
|
"omfx-status-code-renderer": base.CombinedTsxComponentAttrs<typeof wc5aaaefb501d64fe59da8b779a54c0a55.propsDefinition, {}, {}, {}, {}, true> & VueComponentBaseProps;
|
|
332
334
|
"omfx-theme-definition-picker": base.CombinedTsxComponentAttrs<typeof wc252ece0016594978b3ddfafdd59adda4.propsDefinition, {}, {}, {}, {}, true> & VueComponentBaseProps;
|
|
333
335
|
"omfx-theme-editor-v2": base.CombinedTsxComponentAttrs<typeof wc5abbb7170e454f0d8cb537bcad180cd7.propsDefinition, {}, {}, {}, {}, true> & VueComponentBaseProps;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@omnia/fx",
|
|
3
3
|
"license": "MIT",
|
|
4
|
-
"version": "7.8.
|
|
4
|
+
"version": "7.8.90-preview",
|
|
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": "Omnia Digital Workplace AB",
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"@omnia/fx-models": "7.8.
|
|
23
|
+
"@omnia/fx-models": "7.8.90-preview",
|
|
24
24
|
"@microsoft/signalr": "6.0.1",
|
|
25
25
|
"broadcast-channel": "4.8.0",
|
|
26
26
|
"dayjs": "1.10.7",
|