@examind/block-editor 0.1.36 → 0.1.38
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/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -9181,7 +9181,7 @@ var FillInTheBlankQuestionNode = class _FillInTheBlankQuestionNode extends impor
|
|
|
9181
9181
|
}
|
|
9182
9182
|
setPointsPerSpace(points) {
|
|
9183
9183
|
const writable = this.getWritable();
|
|
9184
|
-
writable.__pointsPerSpace = points
|
|
9184
|
+
writable.__pointsPerSpace = points < 0 ? 1 : points;
|
|
9185
9185
|
}
|
|
9186
9186
|
decorate() {
|
|
9187
9187
|
return /* @__PURE__ */ (0, import_jsx_runtime79.jsx)(
|
package/dist/index.mjs
CHANGED
|
@@ -9410,7 +9410,7 @@ var FillInTheBlankQuestionNode = class _FillInTheBlankQuestionNode extends Decor
|
|
|
9410
9410
|
}
|
|
9411
9411
|
setPointsPerSpace(points) {
|
|
9412
9412
|
const writable = this.getWritable();
|
|
9413
|
-
writable.__pointsPerSpace = points
|
|
9413
|
+
writable.__pointsPerSpace = points < 0 ? 1 : points;
|
|
9414
9414
|
}
|
|
9415
9415
|
decorate() {
|
|
9416
9416
|
return /* @__PURE__ */ jsx79(
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@examind/block-editor",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.38",
|
|
4
4
|
"@comment version": [
|
|
5
5
|
"Don't specify package version here. It will be injected by publish workflow."
|
|
6
6
|
],
|
|
@@ -62,7 +62,7 @@
|
|
|
62
62
|
"tsup": "^8.3.5",
|
|
63
63
|
"typescript": "^5.7.2",
|
|
64
64
|
"typescript-eslint": "^8.18.2",
|
|
65
|
-
"@examind/block-types": "0.1.
|
|
65
|
+
"@examind/block-types": "0.1.38"
|
|
66
66
|
},
|
|
67
67
|
"dependencies": {
|
|
68
68
|
"@dnd-kit/core": "6.3.1",
|