From b948366bcf2223da100f966db0637894180370f6 Mon Sep 17 00:00:00 2001 From: MarkvanMents Date: Fri, 11 Sep 2026 11:57:15 +0200 Subject: [PATCH 1/2] Breaking change in Signature native widget --- .../modules/native-mobile-resources.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/en/docs/marketplace/platform-supported-content/modules/native-mobile-resources.md b/content/en/docs/marketplace/platform-supported-content/modules/native-mobile-resources.md index 1aab3c617d9..9628e765995 100644 --- a/content/en/docs/marketplace/platform-supported-content/modules/native-mobile-resources.md +++ b/content/en/docs/marketplace/platform-supported-content/modules/native-mobile-resources.md @@ -58,7 +58,7 @@ These are the native widgets included in these resources along with links to the | [Rating](https://github.com/mendix/native-widgets/tree/main/packages/pluggableWidgets/rating-native) | Gives a rating by selecting stars. | | [Repeater](https://github.com/mendix/native-widgets/tree/main/packages/pluggableWidgets/repeater-native) | Iterates over a data source or nanoflow and repeats the content while changing the values assigned to it. | | [Safe Area View](https://github.com/mendix/native-widgets/tree/main/packages/pluggableWidgets/safe-area-view-native) | Prevents content from being rendered in unsafe areas (iOS only). | -| [Signature](https://github.com/mendix/native-widgets/tree/main/packages/pluggableWidgets/signature-native) | Creates a canvas on which a user can draw. The drawing will be saved as a *base64* string. | +| [Signature](https://github.com/mendix/native-widgets/tree/main/packages/pluggableWidgets/signature-native) | Creates a canvas on which a user can draw.
From version XX.XX.XX of **Native Mobile Resources**, the drawing is saved as a `System.Image` specialization.
In versions below XX.XX.XX, the drawing is saved as a *base64* string.
This is a breaking change. See the [Signature widget readme](https://github.com/mendix/native-widgets/tree/main/packages/pluggableWidgets/signature-native#signature-widget) in the *Native Mobile Resources* repo for more information. | | [Slider](https://github.com/mendix/native-widgets/tree/main/packages/pluggableWidgets/slider-native) | Changes a numeric value using a slider. | | [Switch](https://github.com/mendix/native-widgets/tree/main/packages/pluggableWidgets/switch-native) | Changes a Boolean value using a switch. | | [Toggle Buttons](https://github.com/mendix/native-widgets/tree/main/packages/pluggableWidgets/toggle-buttons-native) | Changes an enumeration value using a group of buttons. | From 4e67453f930c8d3e1d5858953a1126e2e6f5d625 Mon Sep 17 00:00:00 2001 From: MarkvanMents Date: Fri, 11 Sep 2026 14:00:54 +0200 Subject: [PATCH 2/2] Update Signature widget updated version. --- .../modules/native-mobile-resources.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/en/docs/marketplace/platform-supported-content/modules/native-mobile-resources.md b/content/en/docs/marketplace/platform-supported-content/modules/native-mobile-resources.md index 9628e765995..954d507d610 100644 --- a/content/en/docs/marketplace/platform-supported-content/modules/native-mobile-resources.md +++ b/content/en/docs/marketplace/platform-supported-content/modules/native-mobile-resources.md @@ -58,7 +58,7 @@ These are the native widgets included in these resources along with links to the | [Rating](https://github.com/mendix/native-widgets/tree/main/packages/pluggableWidgets/rating-native) | Gives a rating by selecting stars. | | [Repeater](https://github.com/mendix/native-widgets/tree/main/packages/pluggableWidgets/repeater-native) | Iterates over a data source or nanoflow and repeats the content while changing the values assigned to it. | | [Safe Area View](https://github.com/mendix/native-widgets/tree/main/packages/pluggableWidgets/safe-area-view-native) | Prevents content from being rendered in unsafe areas (iOS only). | -| [Signature](https://github.com/mendix/native-widgets/tree/main/packages/pluggableWidgets/signature-native) | Creates a canvas on which a user can draw.
From version XX.XX.XX of **Native Mobile Resources**, the drawing is saved as a `System.Image` specialization.
In versions below XX.XX.XX, the drawing is saved as a *base64* string.
This is a breaking change. See the [Signature widget readme](https://github.com/mendix/native-widgets/tree/main/packages/pluggableWidgets/signature-native#signature-widget) in the *Native Mobile Resources* repo for more information. | +| [Signature](https://github.com/mendix/native-widgets/tree/main/packages/pluggableWidgets/signature-native) | Creates a canvas on which a user can draw.
From version 12.5.0 of **Native Mobile Resources**, the drawing is saved as a `System.Image` specialization.
In versions below 12.5.0, the drawing is saved as a *base64* string.
This is a breaking change. See the [Signature widget readme](https://github.com/mendix/native-widgets/tree/main/packages/pluggableWidgets/signature-native#signature-widget) in the *Native Mobile Resources* repo for more information. | | [Slider](https://github.com/mendix/native-widgets/tree/main/packages/pluggableWidgets/slider-native) | Changes a numeric value using a slider. | | [Switch](https://github.com/mendix/native-widgets/tree/main/packages/pluggableWidgets/switch-native) | Changes a Boolean value using a switch. | | [Toggle Buttons](https://github.com/mendix/native-widgets/tree/main/packages/pluggableWidgets/toggle-buttons-native) | Changes an enumeration value using a group of buttons. |