Skip to content

Commit a501ea0

Browse files
committed
1.11.5
1 parent 86156b1 commit a501ea0

File tree

8 files changed

+28
-18
lines changed

8 files changed

+28
-18
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
[//]: # (Don't use <tags>)
22

3+
## v1.11.5
4+
5+
> `2025-08-01`
6+
7+
### 🐞 Bug Fixes
8+
- Expression helper `div` in `p` HTML violation fix
9+
310
## v1.11.4
411

512
> `2025-07-29`

index.css

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2003,9 +2003,6 @@ div > div:first-of-type[style*="none;"] + .vfb-util-props-separator-top {
20032003
.vfb-expr-helper b {
20042004
@apply font-semibold;
20052005
}
2006-
.vfb-expr-helper p {
2007-
@apply mt-1;
2008-
}
20092006

20102007
.vfb-expr-helper-head {
20112008
@apply flex justify-between items-center cursor-pointer;
@@ -2030,6 +2027,10 @@ div > div:first-of-type[style*="none;"] + .vfb-util-props-separator-top {
20302027
@apply mt-2 dark:text-dark-100;
20312028
}
20322029

2030+
.vfb-expr-helper-block {
2031+
@apply mt-1;
2032+
}
2033+
20332034
.vfb-expr-item-block {
20342035
@apply flex gap-1 flex-col justify-start mt-1 w-full;
20352036
}

index.mjs

Lines changed: 2 additions & 2 deletions
Large diffs are not rendered by default.

nuxt/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vueform/builder-nuxt",
3-
"version": "1.23.0",
3+
"version": "1.24.0",
44
"description": "Nuxt module for Vueform Builder",
55
"repository": "vueform/builder-nuxt",
66
"license": "MIT",
@@ -36,7 +36,7 @@
3636
"dependencies": {
3737
"@nuxt/kit": "^3.8.0",
3838
"@vueform/vueform": "^1.13.0",
39-
"@vueform/builder": "^1.11.4"
39+
"@vueform/builder": "^1.11.5"
4040
},
4141
"devDependencies": {
4242
"@nuxt/devtools": "latest",

package.json

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

scss/_expression.scss

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,6 @@
44
b {
55
@apply font-semibold;
66
}
7-
8-
p {
9-
@apply mt-1;
10-
}
117
}
128

139
.vfb-expr-helper-head {
@@ -34,6 +30,10 @@
3430
@apply mt-2 dark:text-dark-100;
3531
}
3632

33+
.vfb-expr-helper-block {
34+
@apply mt-1;
35+
}
36+
3737
.vfb-expr-item-block {
3838
@apply flex gap-1 flex-col justify-start mt-1 w-full;
3939
}

tailwind.css

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2003,9 +2003,6 @@ div > div:first-of-type[style*="none;"] + .vfb-util-props-separator-top {
20032003
.vfb-expr-helper b {
20042004
@apply font-semibold;
20052005
}
2006-
.vfb-expr-helper p {
2007-
@apply mt-1;
2008-
}
20092006

20102007
.vfb-expr-helper-head {
20112008
@apply flex justify-between items-center cursor-pointer;
@@ -2030,6 +2027,10 @@ div > div:first-of-type[style*="none;"] + .vfb-util-props-separator-top {
20302027
@apply mt-2 dark:text-dark-100;
20312028
}
20322029

2030+
.vfb-expr-helper-block {
2031+
@apply mt-1;
2032+
}
2033+
20332034
.vfb-expr-item-block {
20342035
@apply flex gap-1 flex-col justify-start mt-1 w-full;
20352036
}

vueform.css

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4012,9 +4012,6 @@ div > div:first-of-type[style*="none;"] + .vfb-util-props-separator-top {
40124012
.vfb-expr-helper b{
40134013
font-weight: 600;
40144014
}
4015-
.vfb-expr-helper p{
4016-
margin-top: 0.25rem;
4017-
}
40184015

40194016
.vfb-expr-helper-head{
40204017
display: flex;
@@ -4068,6 +4065,10 @@ div > div:first-of-type[style*="none;"] + .vfb-util-props-separator-top {
40684065
color: rgb(220 220 220 / var(--tw-text-opacity));
40694066
}
40704067

4068+
.vfb-expr-helper-block{
4069+
margin-top: 0.25rem;
4070+
}
4071+
40714072
.vfb-expr-item-block{
40724073
margin-top: 0.25rem;
40734074
display: flex;

0 commit comments

Comments
 (0)