@dosgato/templating 0.0.13 → 0.0.14
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/dist/component.js +2 -2
- package/package.json +1 -1
package/dist/component.js
CHANGED
|
@@ -101,13 +101,13 @@ class Component extends provider_1.ResourceProvider {
|
|
|
101
101
|
* need any async data to make this determination, be sure to fetch it during the fetch phase.
|
|
102
102
|
*/
|
|
103
103
|
cssBlocks() {
|
|
104
|
-
return this.constructor.cssBlocks.keys();
|
|
104
|
+
return Array.from(this.constructor.cssBlocks.keys());
|
|
105
105
|
}
|
|
106
106
|
/**
|
|
107
107
|
* Same as cssBlocks() but for javascript.
|
|
108
108
|
*/
|
|
109
109
|
jsBlocks() {
|
|
110
|
-
return this.constructor.jsBlocks.keys();
|
|
110
|
+
return Array.from(this.constructor.jsBlocks.keys());
|
|
111
111
|
}
|
|
112
112
|
}
|
|
113
113
|
exports.Component = Component;
|