@sprucelabs/spruce-heartwood-utils 29.13.0 → 29.13.8
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/build/__tests__/support/MockRemoteViewControllerFactory.d.ts +1 -1
- package/build/esm/__tests__/support/MockRemoteViewControllerFactory.d.ts +1 -1
- package/build/esm/index-module.d.ts +3 -3
- package/build/esm/index-module.js +3 -3
- package/build/index-module.d.ts +3 -3
- package/build/index-module.js +3 -3
- package/package.json +9 -9
- /package/build/esm/{skillViews → views}/CardRegistrar.d.ts +0 -0
- /package/build/esm/{skillViews → views}/CardRegistrar.js +0 -0
- /package/build/esm/{skillViews → views}/RemoteViewControllerFactory.d.ts +0 -0
- /package/build/esm/{skillViews → views}/RemoteViewControllerFactory.js +0 -0
- /package/build/{skillViews → views}/CardRegistrar.d.ts +0 -0
- /package/build/{skillViews → views}/CardRegistrar.js +0 -0
- /package/build/{skillViews → views}/RemoteViewControllerFactory.d.ts +0 -0
- /package/build/{skillViews → views}/RemoteViewControllerFactory.js +0 -0
@@ -1,5 +1,5 @@
|
|
1
1
|
import { ViewControllerMap, ControllerOptions, ViewController, SkillViewController } from '@sprucelabs/heartwood-view-controllers';
|
2
|
-
import { RemoteFactoryOptions, RemoteViewControllerFactory } from '../../
|
2
|
+
import { RemoteFactoryOptions, RemoteViewControllerFactory } from '../../views/RemoteViewControllerFactory';
|
3
3
|
export default class MockRemoteViewControllerFactory implements RemoteViewControllerFactory {
|
4
4
|
private static instance?;
|
5
5
|
private loadedControllers;
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import { ViewControllerMap, ControllerOptions, ViewController, SkillViewController } from '@sprucelabs/heartwood-view-controllers';
|
2
|
-
import { RemoteFactoryOptions, RemoteViewControllerFactory } from '../../
|
2
|
+
import { RemoteFactoryOptions, RemoteViewControllerFactory } from '../../views/RemoteViewControllerFactory';
|
3
3
|
export default class MockRemoteViewControllerFactory implements RemoteViewControllerFactory {
|
4
4
|
private static instance?;
|
5
5
|
private loadedControllers;
|
@@ -1,6 +1,6 @@
|
|
1
|
-
export { default as RemoteViewControllerFactoryImpl } from './
|
2
|
-
export * from './
|
3
|
-
export { default as CardRegistrar } from './
|
1
|
+
export { default as RemoteViewControllerFactoryImpl } from './views/RemoteViewControllerFactory';
|
2
|
+
export * from './views/RemoteViewControllerFactory';
|
3
|
+
export { default as CardRegistrar } from './views/CardRegistrar';
|
4
4
|
export { default as remoteVcAssert } from './__tests__/support/remoteVcAssert';
|
5
5
|
export { default as fakeGetViews } from './__tests__/support/heartwoodEventFaker';
|
6
6
|
export { default as MockRemoteViewControllerFactory } from './__tests__/support/MockRemoteViewControllerFactory';
|
@@ -1,6 +1,6 @@
|
|
1
|
-
export { default as RemoteViewControllerFactoryImpl } from './
|
2
|
-
export * from './
|
3
|
-
export { default as CardRegistrar } from './
|
1
|
+
export { default as RemoteViewControllerFactoryImpl } from './views/RemoteViewControllerFactory.js';
|
2
|
+
export * from './views/RemoteViewControllerFactory.js';
|
3
|
+
export { default as CardRegistrar } from './views/CardRegistrar.js';
|
4
4
|
export { default as remoteVcAssert } from './__tests__/support/remoteVcAssert.js';
|
5
5
|
export { default as fakeGetViews } from './__tests__/support/heartwoodEventFaker.js';
|
6
6
|
export { default as MockRemoteViewControllerFactory } from './__tests__/support/MockRemoteViewControllerFactory.js';
|
package/build/index-module.d.ts
CHANGED
@@ -1,6 +1,6 @@
|
|
1
|
-
export { default as RemoteViewControllerFactoryImpl } from './
|
2
|
-
export * from './
|
3
|
-
export { default as CardRegistrar } from './
|
1
|
+
export { default as RemoteViewControllerFactoryImpl } from './views/RemoteViewControllerFactory';
|
2
|
+
export * from './views/RemoteViewControllerFactory';
|
3
|
+
export { default as CardRegistrar } from './views/CardRegistrar';
|
4
4
|
export { default as remoteVcAssert } from './__tests__/support/remoteVcAssert';
|
5
5
|
export { default as fakeGetViews } from './__tests__/support/heartwoodEventFaker';
|
6
6
|
export { default as MockRemoteViewControllerFactory } from './__tests__/support/MockRemoteViewControllerFactory';
|
package/build/index-module.js
CHANGED
@@ -18,10 +18,10 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
18
18
|
};
|
19
19
|
Object.defineProperty(exports, "__esModule", { value: true });
|
20
20
|
exports.SpyAutoLogoutPlugin = exports.AutoLogoutPlugin = exports.loadActiveThemeForOrg = exports.MockRemoteViewControllerFactory = exports.fakeGetViews = exports.remoteVcAssert = exports.CardRegistrar = exports.RemoteViewControllerFactoryImpl = void 0;
|
21
|
-
var RemoteViewControllerFactory_1 = require("./
|
21
|
+
var RemoteViewControllerFactory_1 = require("./views/RemoteViewControllerFactory");
|
22
22
|
Object.defineProperty(exports, "RemoteViewControllerFactoryImpl", { enumerable: true, get: function () { return __importDefault(RemoteViewControllerFactory_1).default; } });
|
23
|
-
__exportStar(require("./
|
24
|
-
var CardRegistrar_1 = require("./
|
23
|
+
__exportStar(require("./views/RemoteViewControllerFactory"), exports);
|
24
|
+
var CardRegistrar_1 = require("./views/CardRegistrar");
|
25
25
|
Object.defineProperty(exports, "CardRegistrar", { enumerable: true, get: function () { return __importDefault(CardRegistrar_1).default; } });
|
26
26
|
var remoteVcAssert_1 = require("./__tests__/support/remoteVcAssert");
|
27
27
|
Object.defineProperty(exports, "remoteVcAssert", { enumerable: true, get: function () { return __importDefault(remoteVcAssert_1).default; } });
|
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "@sprucelabs/spruce-heartwood-utils",
|
3
3
|
"description": "Heartwood Utilities",
|
4
|
-
"version": "29.13.
|
4
|
+
"version": "29.13.8",
|
5
5
|
"skill": {
|
6
6
|
"namespace": "heartwood"
|
7
7
|
},
|
@@ -18,10 +18,10 @@
|
|
18
18
|
"build/index-module.d.ts",
|
19
19
|
"build/esm/index-module.js",
|
20
20
|
"build/esm/index-module.d.ts",
|
21
|
-
"build/
|
22
|
-
"build/
|
23
|
-
"build/esm/
|
24
|
-
"build/esm/
|
21
|
+
"build/views/RemoteViewControllerFactory.js",
|
22
|
+
"build/views/RemoteViewControllerFactory.d.ts",
|
23
|
+
"build/esm/views/RemoteViewControllerFactory.js",
|
24
|
+
"build/esm/views/RemoteViewControllerFactory.d.ts",
|
25
25
|
"build/plugins/AutoLogoutViewPlugin.js",
|
26
26
|
"build/plugins/AutoLogoutViewPlugin.d.ts",
|
27
27
|
"build/esm/plugins/AutoLogoutViewPlugin.js",
|
@@ -30,10 +30,10 @@
|
|
30
30
|
"build/plugins/SpyAutoLogoutViewPlugin.d.ts",
|
31
31
|
"build/esm/plugins/SpyAutoLogoutViewPlugin.js",
|
32
32
|
"build/esm/plugins/SpyAutoLogoutViewPlugin.d.ts",
|
33
|
-
"build/
|
34
|
-
"build/
|
35
|
-
"build/esm/
|
36
|
-
"build/esm/
|
33
|
+
"build/views/CardRegistrar.js",
|
34
|
+
"build/views/CardRegistrar.d.ts",
|
35
|
+
"build/esm/views/CardRegistrar.js",
|
36
|
+
"build/esm/views/CardRegistrar.d.ts",
|
37
37
|
"build/devices/HeartwoodDevice.js",
|
38
38
|
"build/devices/HeartwoodDevice.d.ts",
|
39
39
|
"build/esm/devices/HeartwoodDevice.js",
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|