@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.
@@ -857,17 +857,17 @@ function serializePage(ctx, page) {
857
857
  },
858
858
  };
859
859
  if (page.styleBind) {
860
- page[':style'] = serializeValue({
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
- page[':style'] = page.styleBindPath;
867
+ processedPage[':style'] = page.styleBindPath;
868
868
  }
869
869
  if (page.classListBind) {
870
- page[':class'] = serializeValue({
870
+ processedPage[':class'] = serializeValue({
871
871
  ctx: pageCtx,
872
872
  key: 'classListBind',
873
873
  dynamicValue: page.classListBind,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cloudbase/cals",
3
- "version": "1.0.59-alpha.0",
3
+ "version": "1.0.59-alpha.1",
4
4
  "description": "Common application specifications",
5
5
  "main": "lib/utils/index.js",
6
6
  "source": "src/utils/index.ts",