Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Apache License
Apache License
Version 2.0, January 2004
http://www.apache.org/licenses/

Expand Down
6 changes: 6 additions & 0 deletions packages/customWidgets/signature-web/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),

## [Unreleased]

## [1.0.8] - 2026-02-20

### Fixed

- We fixed and issue with the widget not working correctly in some newer version of Studio Pro.

### Added

- We added a license file and a readme documenting all open source dependencies used in this package.
Expand Down
2 changes: 1 addition & 1 deletion packages/customWidgets/signature-web/dependencies.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
[{ "classnames": { "version": "2.5.1", "url": null } }, { "signature_pad": { "version": "4.0.0", "url": null } }]
[{ "classnames": { "version": "2.5.1", "url": null } }, { "signature_pad": { "version": "5.1.3", "url": null } }]
2 changes: 1 addition & 1 deletion packages/customWidgets/signature-web/dependencies.txt
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ SOFTWARE.
---

Name: signature_pad
Version: 4.0.0
Version: 5.1.3
License: MIT
Private: false
Description: Library for drawing smooth signatures.
Expand Down
2 changes: 1 addition & 1 deletion packages/customWidgets/signature-web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
"format": "prettier --ignore-path ./node_modules/@mendix/prettier-config-web-widgets/global-prettierignore --write .",
"lint": "eslint src/ package.json",
"publish-marketplace": "rui-publish-marketplace",
"release": "ts-node --project scripts/tsconfig.json scripts/build.ts production",
"release": "node scripts/generate-dependencies.js && ts-node --project scripts/tsconfig.json scripts/build.ts production",
"test": "pluggable-widgets-tools test:unit:web",
"update-changelog": "rui-update-changelog-widget",
"verify": "rui-verify-package-format"
Expand Down
10 changes: 10 additions & 0 deletions packages/customWidgets/signature-web/webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,16 @@ const widgetConfig = {
from: `src/${widgetName}.@(tile|icon)@(.dark|).png`,
to: "./[name][ext]",
toType: "template"
},
{
from: `dependencies.(json|txt)`,
to: "./[name][ext]",
toType: "template"
},
{
from: `../../../LICENSE`,
to: "./License.txt",
toType: "template"
}
]
})
Expand Down
Loading