@vue-skuilder/courseware 0.1.21 → 0.1.23

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/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "0.1.21",
6
+ "version": "0.1.23",
7
7
  "type": "module",
8
8
  "main": "./dist/index.cjs.js",
9
9
  "module": "./dist/index.mjs",
@@ -43,9 +43,9 @@
43
43
  "lint:check": "eslint ."
44
44
  },
45
45
  "dependencies": {
46
- "@vue-skuilder/common": "0.1.21",
47
- "@vue-skuilder/common-ui": "0.1.21",
48
- "@vue-skuilder/db": "0.1.21",
46
+ "@vue-skuilder/common": "0.1.23",
47
+ "@vue-skuilder/common-ui": "0.1.23",
48
+ "@vue-skuilder/db": "0.1.23",
49
49
  "lodash": "^4.17.21",
50
50
  "moment": "^2.29.4",
51
51
  "paper": "^0.12.3",
@@ -69,5 +69,5 @@
69
69
  "peerDependencies": {
70
70
  "vue": "^3.2.0"
71
71
  },
72
- "stableVersion": "0.1.21"
72
+ "stableVersion": "0.1.23"
73
73
  }
package/src/logic.js CHANGED
@@ -114,7 +114,7 @@ export class BlanksCard {
114
114
  throw new Error('BlanksCard requires ViewData');
115
115
  }
116
116
 
117
- const content = String(data[0]?.content || '');
117
+ const content = String(data[0]?.Input || data[0]?.content || '');
118
118
 
119
119
  // Find all {{...}} patterns
120
120
  const splitText = splitByDelimiters(content, '{{', '}}');