Skip to content

Commit 58f96c3

Browse files
committed
chore: cl, version, build
1 parent 23630ae commit 58f96c3

14 files changed

+33
-24
lines changed

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,18 @@
11
[//]: # (Don't use <tags>)
22

3+
## v1.12.6
4+
5+
> `2025-04-17`
6+
7+
### 🐞 Bug Fixes
8+
- Grid border fix when cells are <100% (issue raised at builder)
9+
310
## v1.12.5
411

512
> `2025-04-04`
613
714
### 🎉 Feature
8-
- Sanitize props that end up in `v-html`
15+
- Sanitize props that end up in `v-html`. You can disable it in `vueform.config.js` with `sanitize: false`.
916

1017
### 🐞 Bug Fixes
1118
- Grid border fix when cells are <100% (issue raised at builder)

dist/bootstrap.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* Vueform v1.12.5 (https://github.com/vueform/vueform)
2+
* Vueform v1.12.6 (https://github.com/vueform/vueform)
33
* Copyright (c) 2025 Adam Berecz <adam@vueform.com>
44
* Licensed under the MIT License
55
*/

dist/bootstrap.vue2.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* Vueform v1.12.5 (https://github.com/vueform/vueform)
2+
* Vueform v1.12.6 (https://github.com/vueform/vueform)
33
* Copyright (c) 2025 Adam Berecz <adam@vueform.com>
44
* Licensed under the MIT License
55
*/

dist/core.mjs

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* Vueform v1.12.5 (https://github.com/vueform/vueform)
2+
* Vueform v1.12.6 (https://github.com/vueform/vueform)
33
* Copyright (c) 2025 Adam Berecz <adam@vueform.com>
44
* Licensed under the MIT License
55
*/
@@ -10146,7 +10146,7 @@ function shouldApplyPlugin (name, plugin) {
1014610146
}
1014710147

1014810148
var name = "@vueform/vueform";
10149-
var version$1 = "1.12.5";
10149+
var version$1 = "1.12.6";
1015010150
var description = "Open-Source Form Framework for Vue";
1015110151
var homepage = "https://vueform.com";
1015210152
var license = "MIT";
@@ -30586,7 +30586,8 @@ var signature = function signature(props, context, dependencies) {
3058630586
uploaded,
3058730587
setDefaultMode,
3058830588
setDefaultFont,
30589-
setDefaultColor
30589+
setDefaultColor,
30590+
available
3059030591
} = dependencies;
3059130592

3059230593
// ============== COMPUTED ===============
@@ -30604,7 +30605,7 @@ var signature = function signature(props, context, dependencies) {
3060430605
};
3060530606
var prepare = /*#__PURE__*/function () {
3060630607
var _ref7 = _asyncToGenerator(function* () {
30607-
if (uploaded.value) {
30608+
if (uploaded.value || !available.value) {
3060830609
return;
3060930610
}
3061030611
if (mode.value === 'type') {
@@ -44187,7 +44188,7 @@ function useSignature (props, context, dependencies) {
4418744188

4418844189
// Check if there is any drawing
4418944190
if (minX > maxX || minY > maxY) {
44190-
reject(new Error('No drawing found on the canvas.'));
44191+
resolve();
4419144192
return;
4419244193
}
4419344194

@@ -44245,7 +44246,7 @@ function useSignature (props, context, dependencies) {
4424544246
var typingToImage = () => {
4424644247
return new Promise((resolve, reject) => {
4424744248
if (!text.value) {
44248-
reject(new Error('No signature was typed.'));
44249+
resolve();
4424944250
return;
4425044251
}
4425144252
var canvas = document.createElement('canvas');

dist/index.mjs

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* Vueform v1.12.5 (https://github.com/vueform/vueform)
2+
* Vueform v1.12.6 (https://github.com/vueform/vueform)
33
* Copyright (c) 2025 Adam Berecz <adam@vueform.com>
44
* Licensed under the MIT License
55
*/
@@ -10146,7 +10146,7 @@ function shouldApplyPlugin (name, plugin) {
1014610146
}
1014710147

1014810148
var name = "@vueform/vueform";
10149-
var version$1 = "1.12.5";
10149+
var version$1 = "1.12.6";
1015010150
var description = "Open-Source Form Framework for Vue";
1015110151
var homepage = "https://vueform.com";
1015210152
var license = "MIT";
@@ -30704,7 +30704,8 @@ var signature = function signature(props, context, dependencies) {
3070430704
uploaded,
3070530705
setDefaultMode,
3070630706
setDefaultFont,
30707-
setDefaultColor
30707+
setDefaultColor,
30708+
available
3070830709
} = dependencies;
3070930710

3071030711
// ============== COMPUTED ===============
@@ -30722,7 +30723,7 @@ var signature = function signature(props, context, dependencies) {
3072230723
};
3072330724
var prepare = /*#__PURE__*/function () {
3072430725
var _ref7 = _asyncToGenerator(function* () {
30725-
if (uploaded.value) {
30726+
if (uploaded.value || !available.value) {
3072630727
return;
3072730728
}
3072830729
if (mode.value === 'type') {
@@ -44305,7 +44306,7 @@ function useSignature (props, context, dependencies) {
4430544306

4430644307
// Check if there is any drawing
4430744308
if (minX > maxX || minY > maxY) {
44308-
reject(new Error('No drawing found on the canvas.'));
44309+
resolve();
4430944310
return;
4431044311
}
4431144312

@@ -44363,7 +44364,7 @@ function useSignature (props, context, dependencies) {
4436344364
var typingToImage = () => {
4436444365
return new Promise((resolve, reject) => {
4436544366
if (!text.value) {
44366-
reject(new Error('No signature was typed.'));
44367+
resolve();
4436744368
return;
4436844369
}
4436944370
var canvas = document.createElement('canvas');

dist/material.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* Vueform v1.12.5 (https://github.com/vueform/vueform)
2+
* Vueform v1.12.6 (https://github.com/vueform/vueform)
33
* Copyright (c) 2025 Adam Berecz <adam@vueform.com>
44
* Licensed under the MIT License
55
*/

dist/material.vue2.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* Vueform v1.12.5 (https://github.com/vueform/vueform)
2+
* Vueform v1.12.6 (https://github.com/vueform/vueform)
33
* Copyright (c) 2025 Adam Berecz <adam@vueform.com>
44
* Licensed under the MIT License
55
*/

dist/tailwind-material.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* Vueform v1.12.5 (https://github.com/vueform/vueform)
2+
* Vueform v1.12.6 (https://github.com/vueform/vueform)
33
* Copyright (c) 2025 Adam Berecz <adam@vueform.com>
44
* Licensed under the MIT License
55
*/

dist/tailwind-material.vue2.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* Vueform v1.12.5 (https://github.com/vueform/vueform)
2+
* Vueform v1.12.6 (https://github.com/vueform/vueform)
33
* Copyright (c) 2025 Adam Berecz <adam@vueform.com>
44
* Licensed under the MIT License
55
*/

dist/tailwind.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* Vueform v1.12.5 (https://github.com/vueform/vueform)
2+
* Vueform v1.12.6 (https://github.com/vueform/vueform)
33
* Copyright (c) 2025 Adam Berecz <adam@vueform.com>
44
* Licensed under the MIT License
55
*/

0 commit comments

Comments
 (0)