@cloudbase/cals 1.0.59-alpha.0 → 1.0.59-alpha.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.
- package/lib/parser/cals/index.js +3 -3
- package/package.json +1 -1
package/lib/parser/cals/index.js
CHANGED
|
@@ -857,17 +857,17 @@ function serializePage(ctx, page) {
|
|
|
857
857
|
},
|
|
858
858
|
};
|
|
859
859
|
if (page.styleBind) {
|
|
860
|
-
|
|
860
|
+
processedPage[':style'] = serializeValue({
|
|
861
861
|
ctx: pageCtx,
|
|
862
862
|
key: 'styleBind',
|
|
863
863
|
dynamicValue: page.styleBind,
|
|
864
864
|
}).value;
|
|
865
865
|
}
|
|
866
866
|
else if (page.styleBindPath) {
|
|
867
|
-
|
|
867
|
+
processedPage[':style'] = page.styleBindPath;
|
|
868
868
|
}
|
|
869
869
|
if (page.classListBind) {
|
|
870
|
-
|
|
870
|
+
processedPage[':class'] = serializeValue({
|
|
871
871
|
ctx: pageCtx,
|
|
872
872
|
key: 'classListBind',
|
|
873
873
|
dynamicValue: page.classListBind,
|