Skip to content

Commit d270463

Browse files
committed
1.7.1
1 parent f6513df commit d270463

File tree

5 files changed

+17
-5
lines changed

5 files changed

+17
-5
lines changed

CHANGELOG.md

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

3+
## v1.7.1
4+
5+
> `2024-09-10`
6+
7+
### 🎉 Feature
8+
- Added `@reset` event that receives the builder instance as first param.
9+
- Allow extending `form` and `export` config fields.
10+
11+
### 🐞 Bug Fixes
12+
- Removed backtick from code tags.
13+
- Export `en_US` builder locale.
14+
315
## v1.7.0
416

517
> `2024-08-24`

index.css

+1-1
Original file line numberDiff line numberDiff line change
@@ -291,7 +291,7 @@
291291
white-space: nowrap;
292292
}
293293
:not(pre) > code.vfb-inline-code:not(.no-quote):before, :not(pre) > code.vfb-inline-code:not(.no-quote):after {
294-
content: "`";
294+
content: "";
295295
display: inline-block;
296296
width: 0.375em;
297297
}

index.mjs

+2-2
Large diffs are not rendered by default.

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

scss/_global.scss

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
white-space: nowrap;
1111

1212
&:not(.no-quote):before, &:not(.no-quote):after {
13-
content: "`";
13+
content: "";
1414
display: inline-block;
1515
width: 0.375em;
1616
}

0 commit comments

Comments
 (0)