@sprucelabs/spruce-heartwood-utils 19.0.5 → 19.1.0
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.
|
@@ -7,3 +7,4 @@ export { default as MockRemoteViewControllerFactory } from './__tests__/support/
|
|
|
7
7
|
export * from './types/heartwood-module.types';
|
|
8
8
|
export { default as loadActiveThemeForOrg } from './theming/loadActiveThemeForOrg';
|
|
9
9
|
export { default as AutoLogoutPlugin } from './plugins/AutoLogoutViewPlugin';
|
|
10
|
+
export { default as SpyAutoLogoutPlugin } from './plugins/SpyAutoLogoutViewPlugin';
|
|
@@ -7,3 +7,4 @@ export { default as MockRemoteViewControllerFactory } from './__tests__/support/
|
|
|
7
7
|
export * from './types/heartwood-module.types';
|
|
8
8
|
export { default as loadActiveThemeForOrg } from './theming/loadActiveThemeForOrg';
|
|
9
9
|
export { default as AutoLogoutPlugin } from './plugins/AutoLogoutViewPlugin';
|
|
10
|
+
export { default as SpyAutoLogoutPlugin } from './plugins/SpyAutoLogoutViewPlugin';
|
package/build/index-module.d.ts
CHANGED
|
@@ -7,3 +7,4 @@ export { default as MockRemoteViewControllerFactory } from './__tests__/support/
|
|
|
7
7
|
export * from './types/heartwood-module.types';
|
|
8
8
|
export { default as loadActiveThemeForOrg } from './theming/loadActiveThemeForOrg';
|
|
9
9
|
export { default as AutoLogoutPlugin } from './plugins/AutoLogoutViewPlugin';
|
|
10
|
+
export { default as SpyAutoLogoutPlugin } from './plugins/SpyAutoLogoutViewPlugin';
|
package/build/index-module.js
CHANGED
|
@@ -17,7 +17,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
17
17
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
18
18
|
};
|
|
19
19
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
20
|
-
exports.AutoLogoutPlugin = exports.loadActiveThemeForOrg = exports.MockRemoteViewControllerFactory = exports.fakeGetViews = exports.remoteVcAssert = exports.CardRegistrar = exports.RemoteViewControllerFactoryImpl = void 0;
|
|
20
|
+
exports.SpyAutoLogoutPlugin = exports.AutoLogoutPlugin = exports.loadActiveThemeForOrg = exports.MockRemoteViewControllerFactory = exports.fakeGetViews = exports.remoteVcAssert = exports.CardRegistrar = exports.RemoteViewControllerFactoryImpl = void 0;
|
|
21
21
|
var RemoteViewControllerFactory_1 = require("./skillViews/RemoteViewControllerFactory");
|
|
22
22
|
Object.defineProperty(exports, "RemoteViewControllerFactoryImpl", { enumerable: true, get: function () { return __importDefault(RemoteViewControllerFactory_1).default; } });
|
|
23
23
|
__exportStar(require("./skillViews/RemoteViewControllerFactory"), exports);
|
|
@@ -34,4 +34,6 @@ var loadActiveThemeForOrg_1 = require("./theming/loadActiveThemeForOrg");
|
|
|
34
34
|
Object.defineProperty(exports, "loadActiveThemeForOrg", { enumerable: true, get: function () { return __importDefault(loadActiveThemeForOrg_1).default; } });
|
|
35
35
|
var AutoLogoutViewPlugin_1 = require("./plugins/AutoLogoutViewPlugin");
|
|
36
36
|
Object.defineProperty(exports, "AutoLogoutPlugin", { enumerable: true, get: function () { return __importDefault(AutoLogoutViewPlugin_1).default; } });
|
|
37
|
+
var SpyAutoLogoutViewPlugin_1 = require("./plugins/SpyAutoLogoutViewPlugin");
|
|
38
|
+
Object.defineProperty(exports, "SpyAutoLogoutPlugin", { enumerable: true, get: function () { return __importDefault(SpyAutoLogoutViewPlugin_1).default; } });
|
|
37
39
|
//# sourceMappingURL=index-module.js.map
|