File tree Expand file tree Collapse file tree 7 files changed +27
-7
lines changed Expand file tree Collapse file tree 7 files changed +27
-7
lines changed Original file line number Diff line number Diff line change 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 `
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 {
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}
Load Diff Large diffs are not rendered by default.
Original file line number Diff line number Diff line change 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" ,
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" ,
Original file line number Diff line number Diff line change 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" ,
Original file line number Diff line number Diff 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 = ''
Original file line number Diff line number Diff line change 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
You can’t perform that action at this time.
0 commit comments