@sprucelabs/spruce-feed-view-controllers 1.1.0 → 1.1.2
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.
|
@@ -9,7 +9,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
9
9
|
};
|
|
10
10
|
import { AbstractViewController, } from '@sprucelabs/heartwood-view-controllers';
|
|
11
11
|
import { assertOptions } from '@sprucelabs/schema';
|
|
12
|
-
|
|
12
|
+
class FeedCardViewController extends AbstractViewController {
|
|
13
13
|
constructor(options) {
|
|
14
14
|
super(options);
|
|
15
15
|
this.isLoaded = false;
|
|
@@ -204,3 +204,4 @@ export default class FeedCardViewController extends AbstractViewController {
|
|
|
204
204
|
}
|
|
205
205
|
}
|
|
206
206
|
FeedCardViewController.id = 'feed-card';
|
|
207
|
+
export default FeedCardViewController;
|
|
@@ -177,5 +177,5 @@ class FeedCardViewController extends heartwood_view_controllers_1.AbstractViewCo
|
|
|
177
177
|
return this.cardVc.render();
|
|
178
178
|
}
|
|
179
179
|
}
|
|
180
|
-
exports.default = FeedCardViewController;
|
|
181
180
|
FeedCardViewController.id = 'feed-card';
|
|
181
|
+
exports.default = FeedCardViewController;
|