File tree 7 files changed +27
-7
lines changed
7 files changed +27
-7
lines changed Original file line number Diff line number Diff line change 1
1
[ // ] : # ( Don't use <tags> )
2
2
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
+
3
16
## v1.9.3
4
17
5
18
> ` 2025-03-01 `
Original file line number Diff line number Diff line change @@ -3609,6 +3609,9 @@ div > div:first-of-type[style*="none;"] + .vfb-util-props-separator-top {
3609
3609
.vfb-step-container {
3610
3610
@apply relative border-t border-b cursor-pointer border-transparent bg-primary-500 bg-opacity-0 border-primary-500 border-opacity-0 p-0;
3611
3611
}
3612
+ .vfb-step-container .form-step {
3613
+ @apply p-0;
3614
+ }
3612
3615
.vfb-step-container .vfb-step-container-hover {
3613
3616
@apply border-opacity-100;
3614
3617
}
Load Diff Large diffs are not rendered by default.
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @vueform/builder-nuxt" ,
3
- "version" : " 1.12 .0" ,
3
+ "version" : " 1.13 .0" ,
4
4
"description" : " Nuxt module for Vueform Builder" ,
5
5
"repository" : " vueform/builder-nuxt" ,
6
6
"license" : " MIT" ,
35
35
},
36
36
"dependencies" : {
37
37
"@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 "
40
40
},
41
41
"devDependencies" : {
42
42
"@nuxt/devtools" : " latest" ,
Original file line number Diff line number Diff line change 1
1
{
2
2
"private" : false ,
3
3
"name" : " @vueform/builder" ,
4
- "version" : " 1.9.3 " ,
4
+ "version" : " 1.9.4 " ,
5
5
"description" : " Vueform Builder development build." ,
6
6
"homepage" : " https://vueform.com" ,
7
7
"license" : " SEE LICENSE IN LICENSE.txt" ,
Original file line number Diff line number Diff line change @@ -2013,7 +2013,7 @@ export default function () {
2013
2013
return cell
2014
2014
}
2015
2015
2016
- let content = cellValue . value
2016
+ let content = form$ . value . $vueform . sanitize ( cellValue . value )
2017
2017
2018
2018
if ( content === null ) {
2019
2019
content = ''
Original file line number Diff line number Diff line change 48
48
.vfb-step-container {
49
49
@apply relative border-t border-b cursor-pointer border-transparent bg-primary-500 bg-opacity-0 border-primary-500 border-opacity-0 p- 0;
50
50
51
+ & .form-step {
52
+ @apply p- 0;
53
+ }
54
+
51
55
& .vfb-step-container-hover {
52
56
@apply border-opacity- 100;
53
57
You can’t perform that action at this time.
0 commit comments