@sprucelabs/spruce-form-utils 16.3.6 → 17.0.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.
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
export { default as formAssert } from './__tests__/support/formAssert';
|
|
2
2
|
export { default as formCompletionCalculator } from './completing/formCompletionCalculator';
|
|
3
3
|
export { default as FormPlayerCardViewController } from './completing/FormPlayerCard.vc';
|
|
4
|
+
export { default as FormCardViewController } from './viewControllers/FormCard.vc';
|
|
5
|
+
export { default as SpyFormCardViewController } from './__tests__/support/SpyFormCardViewController';
|
|
4
6
|
export * from './types/types-module';
|
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
export { default as formAssert } from './__tests__/support/formAssert.js';
|
|
2
2
|
export { default as formCompletionCalculator } from './completing/formCompletionCalculator.js';
|
|
3
3
|
export { default as FormPlayerCardViewController } from './completing/FormPlayerCard.vc.js';
|
|
4
|
+
export { default as FormCardViewController } from './viewControllers/FormCard.vc.js';
|
|
5
|
+
export { default as SpyFormCardViewController } from './__tests__/support/SpyFormCardViewController.js';
|
|
4
6
|
export * from './types/types-module.js';
|
package/build/index-module.d.ts
CHANGED
|
@@ -1,4 +1,6 @@
|
|
|
1
1
|
export { default as formAssert } from './__tests__/support/formAssert';
|
|
2
2
|
export { default as formCompletionCalculator } from './completing/formCompletionCalculator';
|
|
3
3
|
export { default as FormPlayerCardViewController } from './completing/FormPlayerCard.vc';
|
|
4
|
+
export { default as FormCardViewController } from './viewControllers/FormCard.vc';
|
|
5
|
+
export { default as SpyFormCardViewController } from './__tests__/support/SpyFormCardViewController';
|
|
4
6
|
export * from './types/types-module';
|
package/build/index-module.js
CHANGED
|
@@ -17,11 +17,15 @@ 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.FormPlayerCardViewController = exports.formCompletionCalculator = exports.formAssert = void 0;
|
|
20
|
+
exports.SpyFormCardViewController = exports.FormCardViewController = exports.FormPlayerCardViewController = exports.formCompletionCalculator = exports.formAssert = void 0;
|
|
21
21
|
var formAssert_1 = require("./__tests__/support/formAssert");
|
|
22
22
|
Object.defineProperty(exports, "formAssert", { enumerable: true, get: function () { return __importDefault(formAssert_1).default; } });
|
|
23
23
|
var formCompletionCalculator_1 = require("./completing/formCompletionCalculator");
|
|
24
24
|
Object.defineProperty(exports, "formCompletionCalculator", { enumerable: true, get: function () { return __importDefault(formCompletionCalculator_1).default; } });
|
|
25
25
|
var FormPlayerCard_vc_1 = require("./completing/FormPlayerCard.vc");
|
|
26
26
|
Object.defineProperty(exports, "FormPlayerCardViewController", { enumerable: true, get: function () { return __importDefault(FormPlayerCard_vc_1).default; } });
|
|
27
|
+
var FormCard_vc_1 = require("./viewControllers/FormCard.vc");
|
|
28
|
+
Object.defineProperty(exports, "FormCardViewController", { enumerable: true, get: function () { return __importDefault(FormCard_vc_1).default; } });
|
|
29
|
+
var SpyFormCardViewController_1 = require("./__tests__/support/SpyFormCardViewController");
|
|
30
|
+
Object.defineProperty(exports, "SpyFormCardViewController", { enumerable: true, get: function () { return __importDefault(SpyFormCardViewController_1).default; } });
|
|
27
31
|
__exportStar(require("./types/types-module"), exports);
|