Skip to content

Commit e2036de

Browse files
committed
1.1.4
1 parent 209e13c commit e2036de

File tree

6 files changed

+34
-4
lines changed

6 files changed

+34
-4
lines changed

CHANGELOG.md

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

3+
## v1.1.4
4+
5+
> `2023-10-31`
6+
7+
### 🎉 Feature
8+
- Added align left/right to button, toggle, checkbox & radio.
9+
- Added full width to button.
10+
- Static elements now use semantic HTML tags instead of having to type HTML code for eg. H1, Paragraph, Img, etc.
11+
312
## v1.1.3
413

514
> `2023-10-25`

index.css

+10
Original file line numberDiff line numberDiff line change
@@ -1100,6 +1100,16 @@ input.vfb-clr-color:focus {
11001100
@apply absolute top-0 right-0;
11011101
}
11021102

1103+
.vfb-util-props-separator-top .vfb-util-props-list-add {
1104+
@apply absolute top-4 right-5;
1105+
}
1106+
1107+
div > div:first-of-type[style*="none;"] + .vfb-util-props-separator-top {
1108+
border: 0;
1109+
padding-top: 0;
1110+
margin-top: 0;
1111+
}
1112+
11031113
.vfb-util-props-list-layout {
11041114
@apply relative;
11051115
}

index.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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.1.3",
4+
"version": "1.1.4",
55
"description": "Vueform Builder development build.",
66
"homepage": "https://vueform.com",
77
"license": "SEE LICENSE IN LICENSE.txt",

plugin.js

-1
Original file line numberDiff line numberDiff line change
@@ -1667,7 +1667,6 @@ export default function () {
16671667
}
16681668

16691669
watch(component.axios, (n) => {
1670-
console.log('changed')
16711670
if (!n.__CUSTOM__) {
16721671
component.axios.value = axios
16731672
}

scss/_utils.scss

+12
Original file line numberDiff line numberDiff line change
@@ -161,6 +161,18 @@
161161
@apply absolute top-0 right-0;
162162
}
163163

164+
.vfb-util-props-separator-top {
165+
.vfb-util-props-list-add {
166+
@apply absolute top-4 right-5;
167+
}
168+
}
169+
170+
div > div:first-of-type[style*="none;"] + .vfb-util-props-separator-top {
171+
border: 0;
172+
padding-top: 0;
173+
margin-top: 0;
174+
}
175+
164176
.vfb-util-props-list-layout {
165177
@apply relative;
166178
}

0 commit comments

Comments
 (0)