Skip to content

Commit 69f6777

Browse files
committed
1.9.4
1 parent cb28a72 commit 69f6777

File tree

7 files changed

+27
-7
lines changed

7 files changed

+27
-7
lines changed

CHANGELOG.md

+13
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
[//]: # (Don't use <tags>)
22

3+
## v1.9.4
4+
5+
> `2025-03-04`
6+
7+
### 🎉 Feature
8+
- Sanitize props that end up in `v-html`
9+
- Config option for custom AI endpoint
10+
- New element char limit from config #118
11+
12+
### 🐞 Bug Fixes
13+
- Respect col widths when adding/removing specific cols
14+
- Grid border fix when cells are <100% #116 (fix released in vueform/vueform)
15+
316
## v1.9.3
417

518
> `2025-03-01`

index.css

+3
Original file line numberDiff line numberDiff line change
@@ -3609,6 +3609,9 @@ div > div:first-of-type[style*="none;"] + .vfb-util-props-separator-top {
36093609
.vfb-step-container {
36103610
@apply relative border-t border-b cursor-pointer border-transparent bg-primary-500 bg-opacity-0 border-primary-500 border-opacity-0 p-0;
36113611
}
3612+
.vfb-step-container.form-step {
3613+
@apply p-0;
3614+
}
36123615
.vfb-step-container.vfb-step-container-hover {
36133616
@apply border-opacity-100;
36143617
}

index.mjs

+2-2
Large diffs are not rendered by default.

nuxt/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vueform/builder-nuxt",
3-
"version": "1.12.0",
3+
"version": "1.13.0",
44
"description": "Nuxt module for Vueform Builder",
55
"repository": "vueform/builder-nuxt",
66
"license": "MIT",
@@ -35,8 +35,8 @@
3535
},
3636
"dependencies": {
3737
"@nuxt/kit": "^3.8.0",
38-
"@vueform/vueform": "^1.12.4",
39-
"@vueform/builder": "^1.9.3"
38+
"@vueform/vueform": "^1.12.5",
39+
"@vueform/builder": "^1.9.4"
4040
},
4141
"devDependencies": {
4242
"@nuxt/devtools": "latest",

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"private": false,
33
"name": "@vueform/builder",
4-
"version": "1.9.3",
4+
"version": "1.9.4",
55
"description": "Vueform Builder development build.",
66
"homepage": "https://vueform.com",
77
"license": "SEE LICENSE IN LICENSE.txt",

plugin.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2013,7 +2013,7 @@ export default function () {
20132013
return cell
20142014
}
20152015

2016-
let content = cellValue.value
2016+
let content = form$.value.$vueform.sanitize(cellValue.value)
20172017

20182018
if (content === null) {
20192019
content = ''

scss/_form-steps.scss

+4
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,10 @@
4848
.vfb-step-container {
4949
@apply relative border-t border-b cursor-pointer border-transparent bg-primary-500 bg-opacity-0 border-primary-500 border-opacity-0 p-0;
5050

51+
&.form-step {
52+
@apply p-0;
53+
}
54+
5155
&.vfb-step-container-hover {
5256
@apply border-opacity-100;
5357

0 commit comments

Comments
 (0)