@sprucelabs/spruce-heartwood-utils 29.13.1 → 29.13.9
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/esm/theming/ThemeManager.js +5 -2
- package/build/index-module.d.ts +3 -3
- package/build/index-module.js +3 -3
- package/build/theming/ThemeManager.js +5 -2
- 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';
|
@@ -125,8 +125,10 @@ export const heartwoodTheme = {
|
|
125
125
|
color4ComplimentTransparent: 'rgba(0,0,0,0.1)',
|
126
126
|
color4Inverse: 'white',
|
127
127
|
color4InverseCompliment: '#f1eeee',
|
128
|
-
|
129
|
-
|
128
|
+
controlBar: {
|
129
|
+
foregroundColor: 'black',
|
130
|
+
backgroundColor: 'white',
|
131
|
+
},
|
130
132
|
toolBeltColor2: '#f1f1f1',
|
131
133
|
errorColor1: '#fff',
|
132
134
|
errorColor1Inverse: '#FF3326',
|
@@ -152,6 +154,7 @@ export const heartwoodTheme = {
|
|
152
154
|
criticalForegroundColor: '#fafafa',
|
153
155
|
criticalBackgroundColor: '#f54242',
|
154
156
|
},
|
157
|
+
cardStyles: {},
|
155
158
|
statusIndicators: {
|
156
159
|
color1: '#228B22',
|
157
160
|
color2: '#C4C036',
|
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; } });
|
@@ -103,8 +103,10 @@ exports.heartwoodTheme = {
|
|
103
103
|
color4ComplimentTransparent: 'rgba(0,0,0,0.1)',
|
104
104
|
color4Inverse: 'white',
|
105
105
|
color4InverseCompliment: '#f1eeee',
|
106
|
-
|
107
|
-
|
106
|
+
controlBar: {
|
107
|
+
foregroundColor: 'black',
|
108
|
+
backgroundColor: 'white',
|
109
|
+
},
|
108
110
|
toolBeltColor2: '#f1f1f1',
|
109
111
|
errorColor1: '#fff',
|
110
112
|
errorColor1Inverse: '#FF3326',
|
@@ -130,6 +132,7 @@ exports.heartwoodTheme = {
|
|
130
132
|
criticalForegroundColor: '#fafafa',
|
131
133
|
criticalBackgroundColor: '#f54242',
|
132
134
|
},
|
135
|
+
cardStyles: {},
|
133
136
|
statusIndicators: {
|
134
137
|
color1: '#228B22',
|
135
138
|
color2: '#C4C036',
|
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.9",
|
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
|