Skip to content

Commit 9b4e927

Browse files
committed
1.10.2
1 parent b3b9169 commit 9b4e927

File tree

9 files changed

+34
-8
lines changed

9 files changed

+34
-8
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.10.2
4+
5+
> `2025-06-04`
6+
7+
### 🐞 Bug Fixes
8+
- CSS fixes
9+
310
## v1.10.1
411

512
> `2025-06-03`

index.css

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1786,6 +1786,10 @@ div > div:first-of-type[style*="none;"] + .vfb-util-props-separator-top {
17861786
@apply text-gray-500 text-0.5md dark:text-dark-400;
17871787
}
17881788

1789+
.vfb-modal-close-button {
1790+
@apply bg-transparent border-0 cursor-pointer;
1791+
}
1792+
17891793
.vfb-modal-close {
17901794
@apply text-lg text-gray-500 transition-colors hover:text-gray-900 dark:text-dark-400 dark:hover:text-dark-100;
17911795
}

index.mjs

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

nuxt/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vueform/builder-nuxt",
3-
"version": "1.14.0",
3+
"version": "1.16.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.7",
39-
"@vueform/builder": "^1.9.5"
38+
"@vueform/vueform": "^1.12.9",
39+
"@vueform/builder": "^1.10.2"
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.10.1",
4+
"version": "1.10.2",
55
"description": "Vueform Builder development build.",
66
"homepage": "https://vueform.com",
77
"license": "SEE LICENSE IN LICENSE.txt",

scss/_modal.scss

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,10 @@
2626
@apply text-gray-500 text-0.5md dark:text-dark-400;
2727
}
2828

29+
.vfb-modal-close-button {
30+
@apply bg-transparent border-0 cursor-pointer;
31+
}
32+
2933
.vfb-modal-close {
3034
@apply text-lg text-gray-500 transition-colors hover:text-gray-900 dark:text-dark-400 dark:hover:text-dark-100;
3135
}

scss/vueform.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
}
2222

2323
.vfb-builder textarea{
24-
resize: vertical;
24+
resize: none;
2525
}
2626

2727
@import './index.scss'

tailwind.css

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1786,6 +1786,10 @@ div > div:first-of-type[style*="none;"] + .vfb-util-props-separator-top {
17861786
@apply text-gray-500 text-0.5md dark:text-dark-400;
17871787
}
17881788

1789+
.vfb-modal-close-button {
1790+
@apply bg-transparent border-0 cursor-pointer;
1791+
}
1792+
17891793
.vfb-modal-close {
17901794
@apply text-lg text-gray-500 transition-colors hover:text-gray-900 dark:text-dark-400 dark:hover:text-dark-100;
17911795
}

vueform.css

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -636,7 +636,7 @@ input::placeholder,textarea::placeholder{
636636
}
637637

638638
.vfb-builder textarea {
639-
resize: vertical;
639+
resize: none;
640640
}
641641

642642
.vfb-code-toolbar{
@@ -3563,6 +3563,13 @@ div > div:first-of-type[style*="none;"] + .vfb-util-props-separator-top {
35633563
color: rgb(132 132 132 / var(--tw-text-opacity));
35643564
}
35653565

3566+
.vfb-modal-close-button{
3567+
cursor: pointer;
3568+
border-width: 0px;
3569+
background-color: transparent;
3570+
border: 0;
3571+
}
3572+
35663573
.vfb-modal-close{
35673574
font-size: 1.125rem;
35683575
line-height: 1.75rem;

0 commit comments

Comments
 (0)