@omnia/fx 7.8.84-preview → 7.8.85-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.
@@ -56,7 +56,6 @@ export * from "./filepickerprovider/mycomputerprovider";
56
56
  export * from "./filterengine";
57
57
  export * from "./use";
58
58
  export * from "./tag";
59
- export * from "./skeletonloader";
60
59
  export * from "./datetimefilterquery";
61
60
  export * from "./TokenBasedRouter";
62
61
  export * from "./StyleFlow";
@@ -152,7 +152,6 @@ 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/skeletonloader/SkeletonLoader';
156
155
  import wc5aaaefb501d64fe59da8b779a54c0a55 from './ux/statuscoderenderer/StatusCodeRenderer';
157
156
  import wc252ece0016594978b3ddfafdd59adda4 from './ux/theming-v2/themedefinitionpicker/ThemeDefinitionPicker';
158
157
  import wc5abbb7170e454f0d8cb537bcad180cd7 from './ux/theming-v2/themeeditor/ThemeEditor';
@@ -329,7 +328,6 @@ declare global {
329
328
  "omfx-identity-creation-request-omnia": base.CombinedTsxComponentAttrs<typeof wc2b741f0203a54cb5a7be72e204ebecc8.propsDefinition, {}, {}, {}, {}, true> & VueComponentBaseProps;
330
329
  "omfx-identity-creation-request-confirm-email-result-omnia": base.CombinedTsxComponentAttrs<typeof wcffcb5f0ddcfd445d81683167f298c336.propsDefinition, {}, {}, {}, {}, true> & VueComponentBaseProps;
331
330
  "omfx-logout": base.CombinedTsxComponentAttrs<typeof wcf297290b5ea4409a9738ca880f1ea612.propsDefinition, {}, {}, {}, {}, true> & VueComponentBaseProps;
332
- "omfx-skeleton-loader": base.CombinedTsxComponentAttrs<typeof wc4ecc3b27de0045258b22cba846f79ad9.propsDefinition, {}, {}, {}, {}, true> & VueComponentBaseProps;
333
331
  "omfx-status-code-renderer": base.CombinedTsxComponentAttrs<typeof wc5aaaefb501d64fe59da8b779a54c0a55.propsDefinition, {}, {}, {}, {}, true> & VueComponentBaseProps;
334
332
  "omfx-theme-definition-picker": base.CombinedTsxComponentAttrs<typeof wc252ece0016594978b3ddfafdd59adda4.propsDefinition, {}, {}, {}, {}, true> & VueComponentBaseProps;
335
333
  "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.84-preview",
4
+ "version": "7.8.85-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.84-preview",
23
+ "@omnia/fx-models": "7.8.85-preview",
24
24
  "@microsoft/signalr": "6.0.1",
25
25
  "broadcast-channel": "4.8.0",
26
26
  "dayjs": "1.10.7",
@@ -1,11 +0,0 @@
1
- export interface ISkeletonLoader {
2
- type: string;
3
- loading?: boolean;
4
- maxHeight?: string;
5
- maxWidth?: string;
6
- class?: string[];
7
- height?: string;
8
- width?: string;
9
- boilerplate?: boolean;
10
- dark?: boolean;
11
- }
@@ -1,7 +0,0 @@
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;
@@ -1 +0,0 @@
1
- export * from "./ISkeletonLoader";