@sprucelabs/heartwood-view-controllers 129.2.0 → 129.2.1
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.
|
@@ -160,9 +160,10 @@ class ActiveRecordCardViewController extends AbstractViewController {
|
|
|
160
160
|
});
|
|
161
161
|
}
|
|
162
162
|
CardVc(options) {
|
|
163
|
+
var _a;
|
|
163
164
|
const { header, footer, id } = options;
|
|
164
165
|
const model = {
|
|
165
|
-
header,
|
|
166
|
+
header: Object.assign(Object.assign({}, header), { form: (_a = this.searchFormVc) === null || _a === void 0 ? void 0 : _a.render() }),
|
|
166
167
|
footer,
|
|
167
168
|
body: {
|
|
168
169
|
isBusy: true,
|
|
@@ -150,7 +150,10 @@ class ActiveRecordCardViewController extends Abstract_vc_1.default {
|
|
|
150
150
|
CardVc(options) {
|
|
151
151
|
const { header, footer, id } = options;
|
|
152
152
|
const model = {
|
|
153
|
-
header
|
|
153
|
+
header: {
|
|
154
|
+
...header,
|
|
155
|
+
form: this.searchFormVc?.render(),
|
|
156
|
+
},
|
|
154
157
|
footer,
|
|
155
158
|
body: {
|
|
156
159
|
isBusy: true,
|
package/package.json
CHANGED