@sprucelabs/heartwood-view-controllers 118.2.5 → 118.2.6
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/README.md +1 -1
- package/build/esm/index.d.ts +1 -1
- package/build/esm/index.js +1 -1
- package/build/esm/tests/utilities/generateCropPointValues.d.ts +2 -0
- package/build/esm/tests/utilities/generateCropPointValues.js +8 -0
- package/build/index.d.ts +1 -1
- package/build/index.js +2 -2
- package/build/tests/utilities/generateCropPointValues.d.ts +2 -0
- package/build/tests/utilities/generateCropPointValues.js +11 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -18,4 +18,4 @@ Spruce XP Documentation
|
|
|
18
18
|
<a href="https://developer.spruce.ai/#/"><img width="250" src="https://raw.githubusercontent.com/sprucelabsai/heartwood-view-controllers/master/docs/images/read-full-docs.png" /></a>
|
|
19
19
|
</p>
|
|
20
20
|
### Dependencies
|
|
21
|
-
[Arkit diagram here](docs/dependencies.md).
|
|
21
|
+
[Arkit diagram here](docs/dependencies.md).
|
package/build/esm/index.d.ts
CHANGED
|
@@ -178,7 +178,7 @@ export { default as formAssert } from './tests/utilities/formAssert';
|
|
|
178
178
|
export { default as webRtcAssert } from './tests/utilities/webRtcAssert';
|
|
179
179
|
export * from './tests/utilities/webRtcAssert';
|
|
180
180
|
export { default as webRtcInteractor } from './tests/utilities/webRtcInteractor';
|
|
181
|
-
export { default as generateCropPointValues } from './tests/utilities/
|
|
181
|
+
export { default as generateCropPointValues } from './tests/utilities/generateCropPointValues';
|
|
182
182
|
export { default as autocompleteInteractor } from './tests/utilities/autocompleteInteractor';
|
|
183
183
|
export { normalizeScopeFromVc } from './tests/utilities/vcAssert';
|
|
184
184
|
export { default as interactor } from './tests/utilities/interactor';
|
package/build/esm/index.js
CHANGED
|
@@ -177,7 +177,7 @@ export { default as formAssert } from './tests/utilities/formAssert.js';
|
|
|
177
177
|
export { default as webRtcAssert } from './tests/utilities/webRtcAssert.js';
|
|
178
178
|
export * from './tests/utilities/webRtcAssert.js';
|
|
179
179
|
export { default as webRtcInteractor } from './tests/utilities/webRtcInteractor.js';
|
|
180
|
-
export { default as generateCropPointValues } from './tests/utilities/
|
|
180
|
+
export { default as generateCropPointValues } from './tests/utilities/generateCropPointValues.js';
|
|
181
181
|
export { default as autocompleteInteractor } from './tests/utilities/autocompleteInteractor.js';
|
|
182
182
|
export { normalizeScopeFromVc } from './tests/utilities/vcAssert.js';
|
|
183
183
|
export { default as interactor } from './tests/utilities/interactor.js';
|
package/build/index.d.ts
CHANGED
|
@@ -178,7 +178,7 @@ export { default as formAssert } from './tests/utilities/formAssert';
|
|
|
178
178
|
export { default as webRtcAssert } from './tests/utilities/webRtcAssert';
|
|
179
179
|
export * from './tests/utilities/webRtcAssert';
|
|
180
180
|
export { default as webRtcInteractor } from './tests/utilities/webRtcInteractor';
|
|
181
|
-
export { default as generateCropPointValues } from './tests/utilities/
|
|
181
|
+
export { default as generateCropPointValues } from './tests/utilities/generateCropPointValues';
|
|
182
182
|
export { default as autocompleteInteractor } from './tests/utilities/autocompleteInteractor';
|
|
183
183
|
export { normalizeScopeFromVc } from './tests/utilities/vcAssert';
|
|
184
184
|
export { default as interactor } from './tests/utilities/interactor';
|
package/build/index.js
CHANGED
|
@@ -355,8 +355,8 @@ Object.defineProperty(exports, "webRtcAssert", { enumerable: true, get: function
|
|
|
355
355
|
__exportStar(require("./tests/utilities/webRtcAssert"), exports);
|
|
356
356
|
var webRtcInteractor_1 = require("./tests/utilities/webRtcInteractor");
|
|
357
357
|
Object.defineProperty(exports, "webRtcInteractor", { enumerable: true, get: function () { return __importDefault(webRtcInteractor_1).default; } });
|
|
358
|
-
var
|
|
359
|
-
Object.defineProperty(exports, "generateCropPointValues", { enumerable: true, get: function () { return __importDefault(
|
|
358
|
+
var generateCropPointValues_1 = require("./tests/utilities/generateCropPointValues");
|
|
359
|
+
Object.defineProperty(exports, "generateCropPointValues", { enumerable: true, get: function () { return __importDefault(generateCropPointValues_1).default; } });
|
|
360
360
|
var autocompleteInteractor_1 = require("./tests/utilities/autocompleteInteractor");
|
|
361
361
|
Object.defineProperty(exports, "autocompleteInteractor", { enumerable: true, get: function () { return __importDefault(autocompleteInteractor_1).default; } });
|
|
362
362
|
var vcAssert_2 = require("./tests/utilities/vcAssert");
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.default = generateCropPointValues;
|
|
4
|
+
function generateCropPointValues() {
|
|
5
|
+
return {
|
|
6
|
+
heightPercent: Date.now() * Math.random(),
|
|
7
|
+
widthPercent: Date.now() * Math.random(),
|
|
8
|
+
xPercent: Date.now() * Math.random(),
|
|
9
|
+
yPercent: Date.now() * Math.random(),
|
|
10
|
+
};
|
|
11
|
+
}
|
package/package.json
CHANGED