Release Notes - 2024
Jigx release notes provide information on new features, enhancements, and bug fixes
Release 2024.10

iOS version
1.66.8
Android version
1.66.8
Jigx Builder
1.34.0
Mobile Apps
New features & improvements
Enhanced error message display by adding detailed information to error toasts.
Improve performance by caching the evaluation of expression.
Updated the wording on the 'Out of Date' screen.
Android performance - Significant optimizations to improve performance, especially for expressions handling.
Components
New features & improvements
duration-picker - The duration-picker in a form allows you to specify a time duration easily by providing a user-friendly interface where you can scroll or tap to select hours or minutes rather than manually typing in numbers. It's particularly useful for tasks that require tracking time intervals, like logging work shifts, break times, time spent on a particular task, or time-based billing. For example, an app user needs to record the time spent performing a certain activity, a duration-picker lets them choose the time.
Lists - Enhanced list functionality for a better user experience: We've expanded the functionality of lists to enhance how you display content in both vertical and horizontal orientations.
Card-wrapping: Wrap list items in cards for a more visually appealing presentation.
Rating : Add ratings to list items using values or percentages. Customize the rating icons and select their colors for better visual alignment.
Tags: Add multiple tags to list items with the flexibility to customize tag colors. Tags appear at the bottom of each list item, providing additional context at a glance.
Bug Fixes
Fixed an issue where the
summarycomponent did not hide correctly when set tofalse, affectingsummarycomponents and summaries with actions.Fixed an issue where the time modal in the
date-pickerappeared compressed, rendering it nearly invisible and non-functional.
Builder
New features & improvements
Conversions in File handling - You can now use expressions to create conversions when executing an entity, providing greater flexibility at runtime. Previously limited to static options, this update enables dynamic adjustments, making your app more adaptable and responsive. This improvement applies to the
conversionsproperty in both local and global actions, allowing you to define an array of definitions returned by an expression using:conversions: [email protected]
- type: action.execute-entity
options:
title: Save
provider: DATA_PROVIDER_DYNAMIC
entity: default/category
method: save
data:
id: [email protected]
name: [email protected]
description: [email protected]
# reference the image using an expression
image: [email protected]
# The conversions for an array of definitions returned by an expression,
# rather than a static definition.
conversions: [email protected] type: datasource.sqlite
options:
provider: DATA_PROVIDER_DYNAMIC
entities:
- default/category
query: |
SELECT id, '$.name', '$.description', '$.image'
FROM [default/category]
ORDER BY [name]
conversions:
- property: image
from: base64
to: local-uriBug Fixes
Resolved an error with lists nested within lists, making complex data handling more reliable.
Jigx Management
Bug Fixes
General improvements.
Change in behavior
The
goBackproperty inexecute-entity/entitiesandsubmit-formactions behavior has changed. For backward compatibility, existinggoBackproperties in these actions will still function as before. If you have any default behavior in a solution where agoBackhas not been specified in the actions (execute-entity/entities or submit-form) it will go to the previous screen. After publishing the solution, the jig will stay on the current jig.Previous behavior: By default, the
execute-entity/entitiesandsubmit-formactions would return to the previous jig or screen (Home Hub) after execution.New behavior: The default behavior is now to remain on the current jig (screen) after these actions are executed. If you need to go back to the previous jig, you can now configure an explicit go-back action (
action.go-back) to achieve this behavior.
Known issues
Issue: When using a SELECT statement in a datasource query that does not return an
idin the result set, and the dataset is large, it can negatively affect the solution's performance. This is especially noticeable when the data is used in a dropdown. Workaround: Ensure that the query always returns a uniqueidin the dataset. Theidmust be lowercase.Issue: When using the
colorproperty in a number related component, such asnumber-fieldorduration-picker, and thewhenproperty uses an expression to determine thecolorbased on a condition such as > or <, thecolordoes not display as expected. Workaround: Thecolorproperty will display correctly if thewhenproperty is set to a simple true/false condition rather than a complex expression.
Updates to documentation
Added duration-picker documentation and code examples.
Added examples of list rating, tags, wrapping, and badging to jig.list , list and list widgets.
Updated File handling topic with using expressions in conversions.
Updates to Quick-Start sample solutions
jigx-samples
- Updated finance-charts.jigx datasource.
- Added examples for the new duration-picker.
- Added examples for list wrapping, rating, and tags.
- Updated examples using execute-entity and execute-entities to use action.go-back
Release 2024.9

iOS version
1.58.1
Android version
1.58.1
Jigx Builder
1.33.0
Mobile Apps & Builder
New features & improvements
REST error handling - Errors returned by REST endpoints are often too technical for end-users to understand. Jigx allows you to customize these error messages, enhancing user experience by making the messages clearer and ensuring users know the error is not their fault. Additionally, you can configure how to handle items in an error state, such as retrying the operation or deleting the item. For code examples see REST errors.
Additional information on error handling for datasources has been added. Global datasources, which previously failed silently, now display an error screen when issues occur. Local datasources also trigger an error screen when errors are encountered, with detailed error logs providing additional context. The following errors are detected, with details displayed on the error screen:
Non-existent datasource error: This occurs when a datasource cannot be found, often due to an outdated name, a typo in an expression, or a missing table in the default file.
Query processing error: This occurs during the execution of a datasource query, such as when an SQLite query contains syntax or logic errors.
Added the ability to use solution settings expressions to build default values for parameter values in function files, for example:
value: [email protected]
Deprecated
The
errorTransformproperty in REST functions has been deprecated. If you currently haveerrorTransformconfigured in your function, the solution will continue to function as expected to support backward compatibility. Jigx recommends you update the function file to use the new REST error handling properties that provide greater control over errors returned from the REST service.
Known issues
Issue: When using a SELECT statement in a datasource query that does not return an
idin the result set, and the dataset is large, it can negatively affect the solution's performance. This is especially noticeable when the data is used in a dropdown. Workaround: Ensure that the query always returns a uniqueidin the dataset. Theidmust be lowercase.
Updates to documentation
Add REST error handling and REST errors.
Release 2024.8
iOS version
1.55.21
Android version
1.55.21
Jigx Builder
1.32.0
Mobile Apps
New features & improvements
List filters - Set the filter to open on a specific tab in a list. The filter property's YAML snippet has changed to include the
data(required) andinitialValue(optional) properties. The existing filter configuration will continue to work, but the YAML snippet is squiggled in red to indicate that the newdataproperty is required. The filter now handles strings and booleans, ensure thevaluefor filter is configured correctly. For more information see list and jig.list.
filter:
initialValue: "inactive"
data:
- title: All
value: ""
- title: Active
value: active
- title: Inactive
value: inactiveKeyboard: Introduced the option to hide the mobile keyboard on iOS devices on default jigs that require user input, such as forms. You can either tap the keyboard icon or click outside the keyboard to dismiss it and view the full screen.

Design your app to respond to the device type and orientation. Added two new system variables namely: -
deviceType: The variable returns the current user's device type, such as tablet or handset, when using the expression[email protected]. This expression is useful for determining the appropriate image size based on the device type. -isPortrait: The variable is set with a boolean and is used to configure the behavior of components in either portrait or landscape mode. The expression's structure is[email protected].
Bug Fixes
Improved the user login experience through improved animations for the transitions between the different screens.
Fixed translations on
info-modalaction.When opening a
modal, for example, in adropdownormedia-field, while the keyboard was open would break the view.
Components
New features & improvements
Choice-field improvements include:
Improved the rending of the choice-field component in an expander component.
The
itemsPerRowproperty now supports multiline (up to two-lines) text ensuring that text is not cutoff.Improved the padding of the choice-field to be consistent with all other components.
isMultiplenow supports expressions.
Bug Fixes
Fixed localization for
choiceanddropdowncomponents.Fixed layout issues for
choicecomponent withincardcomponent.Fixed an issue where a
web-viewcomponent within anexpanderwas crashing an Android app.
Builder
New features & improvements
Device type and orientation expressions: Added two new system variables namely: -
deviceType: The variable returns the current user's device type, such as tablet or handset, when using the expression[email protected]. This expression is useful for determining the appropriate image size based on the device type. -isPortrait: The variable is set with a boolean and is used to configure the behavior of components in either portrait or landscape mode. The expression's structure is[email protected].JavaScript Expressions - You can now use JavaScript functions in expressions to streamline logic within your solutions. This feature simplifies repetitive and complex tasks, making the code more readable, understandable, and easier to debug. JavaScript functions are created in the scripts/expressions folder, and are surfaced as expressions in the YAML within Jigx Builder. New solutions open with the scripts/expressions folder structure; existing solutions will not have the folder; you can manually add the folder to these solutions. For code examples see JavaScript expressions.
Bug Fixes
Added a user-friendly warning message when list data and sections are combined stating: "Combining 'sections' and 'data' properties together is not allowed. Use either the 'data' or 'sections' property exclusively."
Fixed an issue with inserting icons in different jigs. Previously the snippets were incorrect and resulted in you being unable to set up the icons.
Fixed an issue where you weren't able to use shorthand to reference shared expressions.
Jigx logs would crash when using dynamic conditional logic on a datasource with no records.
Fixed errors in the console for incomplete data provider setups.
Fixed link on deployment toast to navigate to output window.
Jigx Management
Bug Fixes
General improvements.
Known issues
Issue: When using a SELECT statement in a datasource query that does not return an
idin the result set, and the dataset is large, it can negatively affect the solution's performance. This is especially noticeable when the data is used in a dropdown. Workaround: Ensure that the query always returns a uniqueidin the dataset. Theidmust be lowercase.
Updates to documentation
Added Best practice topic on when to use state, inputs and outputs.
Added JavaScript functions to the expressions topic and JavaScript expressions code samples.
Updates to Quick-Start sample solutions
jigx-samples
- Updated list filter examples to add the data property.
- Added a filter example with initialValue configured for both list jig and using the list component in a default jig.
- Added examples for JavaScript functions used in expressions.
Release 2024.7
iOS version
1.46.3
Android version
1.46.3
Mobile Apps
New features & improvements
Upon your first or a clean install of the Jigx App on an iOS device, you will receive a notification request from the app asking for permission for Jigx to send you notifications.
Improved the general SSO/OAuth success screen.
Improved general startup performance of the app.
Bug Fixes
Fixed an issue with a no solutions message displaying right after login.
Fixed an issue with multiple permission requests at the same time.
Components
New features & improvements
chat - Experience seamless communication on the go with our chat-message component, keeping you connected anytime, anywhere. Create a chatbot using OpenAI integration.
choice-field - The choice-field component allows you to select one or more options from a predefined list. This enhances user experience by providing a straightforward way to make selections, such as choosing a setting, selecting a category, or picking an item from a list.
Bug Fixes
Fixed an issue with the elected
statefor multiple selected right checkboxes not resolving correctly infunctionParameters.Fixed an issue with
component.list.state.amountsnot working correctly.Fixed an issue with
whenconditions not evaluating correctly in action lists under certain cirumstances.
Jigx Management
Bug Fixes
General improvements.
Updates to documentation
Added documentation for the chat component with a chatbot code example.
Added documentation and code examples for the choice-field component that is used in a form.
Added a code example for autofilling forms using the textContentTypes property.
Updates to Quick-Start sample solutions
jigx-samples
- Added choice-field examples
Release 2024.6

Release date
21 August 2024
iOS version
1.43.3
Android version
1.43.3
Jigx Builder version
1.30.0
Mobile Apps
Bug Fixes
Improved general and loading performance of the app.
Fixed the app screen freezing when setting the state of the
isDiscardChangesAlertEnabledofcomponent.form.Fixed an issue with Chinese localization.
Components
Improvements
Added the ability to play full-screen videos in
component.webviewon Android.
Bug Fixes
Fixed an issue with
component.formand optionisDiscardChangesAlertEnablednot behaving correctly.Fixed an issue with the
component.dropdownnot resetting its value after sending data to a remote data store.Fixed multiple issues with
component.expander'srendering behavior.
Builder
New features & improvements
Pass data easily between jigs using inputs. Define the input type, such as string, boolean, or array, whether the input data is required or not, and define a default value.
Management
Bug Fixes
General improvements and bug fixes.
Updates to documentation
The Developer Reference and Examples spaces have been merged to create the Reference & Examples section.
The State topic has been updated.
Add new information and examples to Passing data using inputs.
New topic on setting and using custom variables.
Updates to Quick-Start sample solutions
jigx-samples
- Added jigx-widgets - Updated the location widgets If you have a copy of the jigx-samples and jigx-widgets solutions in your organization, we recommend you get a new copy of the jigx-samples solution from GitHub or Management Prod.
jigx-widgets
Merged the jigx-widgets solution into jigx-samples solution.
Release 2024.5
Release date
24 June 2024
iOS version
1.38.2
Android version
1.38.2
Jigx Builder version
1.29.0
Mobile Apps
New features & improvements
Troubleshooting - The app's profile > troubleshooting section now has improved detailed logging. Toggle the categories you want to troubleshoot or see which ones are enabled using the Selected tab.
Added the ability to tap on a widget to trigger an action by adding an
onPressevent to the widget properties. See the widget onPress example for more information.Offline remote data handling - Dealing with offline remote data is fundamental to ensuring data synchronization between the mobile app and the remote data source, allowing users to continue using the app and performing actions without interruption. Queue operations provide the functionality needed when the device regains network connectivity.
QueueOperationsmanage a sequence of elements in a specific order. The commands in the queue can be manipulated to reduce the number of calls to the remote data store.Added a setting to display the current solution version in the profile>solutions screen.
Improved SSO handling and general SSO improvements.
Added handling of REST array types.
Bug Fixes
Fixed an issue with the app freezing on the splash screen when offline.
Fixed an issue with double encoding of URLs in
action.open-url.Fixed an issue with organizational information not being returned in multi-organization environments (e.g.
@ctx.organization.id).Fixed an issue with deep-linking from notifications into the app on Android.
Components
New features & improvements
Carousel component - The carousel is an interactive component that lets you swipe through a set of items, making content navigation engaging and dynamic. For example, images, products, or content can be browsed by swiping left or right. In addition to swipe gestures, navigation identifiers are included in dots or a counter. The dots/counter indicate the current position within the carousel.
info-modal action - The info modal is a pop-up window that provides additional information or context without navigating away from the current screen. It displays additional information and offers guidance or instructions.
media-field - now includes uploading files, images, videos, or a combination. The number of images allowed to be selected in the
component.media-pickerhas been increased.Convert HEIC to JPEG in
conversions—Files are uploaded as HEIC files on iOS, which can cause issues, and viewing HEIC files on a non-iOS device is difficult. A new property has been added in theConversionDefinition: convertHeicToJpg. Set the flag totrue, and the files are converted from HEIC to JPG.card component - The card is a versatile and visually appealing UI element that encapsulates and presents information or interactive content in a structured, consistent, and user-friendly manner. Each card can include a mix of text, images, and interactive elements, creating a self-contained content unit.
Added the ability to interact with disabled image groups in the
component.interactive-image.
Bug Fixes
Fixed an issue with
allDayevents incomponent.event.
Builder
Bug Fixes
Improved Jigx debug windows making long values easier to read, especially for function parameter, parameter, and inputs.
Fixed the
[email protected]in the context of expressions when specified.Fixed the expression
[email protected]and[email protected]to return the correct value.Fixed intelliSense to show
@ctxin data columns.
Management
Bug Fixes
General improvements and bug fixes.
Change in behavior
Solutions listed in the Jigx App (not branded apps) will now be filtered according to the app's current region. Previously, all solutions were loaded regardless of the apps and/or organization's region. Now, solutions will load based on whether their organization's region matches the app's region. To ensure the Jigx App region matches your organization's region, you can go to Jigx Management to see what the Organization Settings are. By default, the mobile app logs into the US East region. To change your mobile device's Home Region, go to Profile > Settings to match the organization's region in Jigx Management. This change prevents credential and connection lookup failures across regions.

Updates to documentation
Unlock the power of AI search in documentation.
Integrate with REST APIs, use the REST data provider, see REST best practices and explore Create an app using REST APIs code examples.
File handling – learn how to convert files between base64, buffer, local and data-uri.
Understand syncing remote data and loading local data.
Regex expressions – see how to combine regular (regex) expressions in your JSONata expressions in Jigx Builder, which is powerful when used in text processing to find, replace, or validate strings of text.
Customize your home hub – Learn how to create that amazing home screen that is interactive and sleek.
Adding deep links in your app to create seamless navigation between the app and external sources.
Public Content - specify what is accessible to the public on your organization's branded app before a user has onboarded or logged in.
Updates to Quick-Start sample solutions
jigx-samples
- Added info-modal component examples
- Added carousel component examples
- Added widgets onPress example
- Added card component examples
- Added additional examples to media-field
jigx-widget
Added onPress to widgets examples
Release 2024.4

Release date
22 May 2024
iOS version
1.27.10
Android version
1.27.10
Fix
This hotfix release includes the following fix: - Using expressions in components with a when and color property did not change the component's color.
Release date
14 May 2024
iOS version
1.27.9
Android version
1.27.9
Fix
This hotfix release includes the following fix: - State values weren't evaluated correctly in the dropdown components.
Release date
7 May 2024
iOS version
1.27.8
Android version
1.27.8
Fix
This hotfix release includes the following fix: - State values weren't evaluated correctly in the number components.
Release date
26 April 2024
iOS version
1.27.7
Android version
1.27.7
Jigx Builder version
1.28.0
Mobile Apps
New features & improvements
Significantly faster speeds and enhanced performance on both iOS and Android devices.
Added the ability to accommodate unknown domains not associated with the organization using a wildcard (*) in the OAuth configuration. See Set up a domain wildcard for more information.
An improvement has been made when loading the Jigx App, a spinner and loading text is displayed while the solution is being loaded.
Bug fixes
Fixed an issue with profile avatars not saving correctly.
Fixed multiple issues with Keyboard form lags and visibility.
Fixed an issue with the app crashing when the active solution was removed.
Builder
New features & improvements
Code Navigation - navigate through code with the Go to Definition (F12) and Go to References (+F12) functionality. Quickly go to data sources, components, jigs, and function definitions, or see where these are referenced across your solution.
Authorization - Jigx Builder remembers your login credentials after a successful login, this means the next time you open Jigx Builder and want to publish a project, your credentials do not need to be re-entered. You can re-login at any time by using the login again icon at the top of the Jigx Explorer pane, as shown below.

Bug fixes
Intellisense presented an invalid option. The
functionandfunctionParametersIntellisense options have been removed from the SQLite datasource YAML snippet. Instead, usesync-entities, which allows you to configure thefunctionandfunctionParameterneeded to get data onto a device.
Components
Bug fixes
Fixed the
component.bar-chartthat was not working correctly when no y-data was specified.Fixed an issue with the loading behavior of the
component.location.Fixed an issue with the performance when getting blob or base64 data of
component.media-field.Fixed an issue with
component.expanderand deleting of list-items when the expander was expanded.
Management
New features & improvements
Dynamic Data record types - You can toggle between data types using the sparkler on the right of each data field and then save the record, for example, from string to number. See Change a data record type for more information.
Bug fixes
General performance improvements and bug fixes.
Updates to Quick Start Sample solutions
jigx-samples
- General improvements
- Changed the actions folder name to jigx-actions to allow global actions in the solution folder structure.
- Updated charts to include a min and max property determined by expressions.
- Added examples for the jigx-header component.
- Added additional examples to product-item component.
- Fixed minor bugs
Release 2024.3

Release date
22 March 2024
iOS version
1.24.7
Android version
1.24.7
Mobile Apps
Bug Fixes
Fixed an issue where an expression could not be used in the
titleproperty of thecomponent.section.Fixed bar charts where the bar was visually pushed up when specifying points outside the minimum and maximum range.
When public content in management was configured to enable the Request Access link, clicking on any of the widgets on a tablet (IOS and Android) gave a screen not found error.
Fixed an issue with the
onPressevent of swipeable actions that were not triggered if a list was set toinitiallyCollapsed: true.
Known Issue
When a
jig.listre-renders, e.g., after a list item is deleted, and thejig.listpropertyinitiallyCollapsed: trueis set, the list appears blank. Workaround: Avoid using theinitiallyCollapsed: trueproperty in this scenario. Collapsing and expanding the list or navigating away from the jig and back will render the list items again.
Management
New features & improvements
Improved the setting up of public content on an organizational level for branded apps. The improvements include JSON and YAML tabs that allow you to toggle between the files, ensuring that the JSON and YAML values are validated. Validation messages are shown to help you troubleshoot errors. See Public Content for more information.
Find solutions faster - The solution search field on the list of solutions now supports the GUID and partial name/title.
Improved error handling and validation.
Performance improvements and security enhancements.
Bug Fixes
General bug fixes.
Release 2024.2

Release date
20 February 2024
iOS version
1.23.2
Android version
1.23.2
Jigx Builder version
1.26.0
Mobile Apps
New features & improvements
Added the ability to deep link from a jig to an external app using the open-url action, for example, opening Google Maps from an address link in a contacts list jig. For more information, see deep links and open-url.
Bug Fixes
Fixed animation on checkboxes.
Fixed the issue on
chartswhere an expression didn't populate the x-axis correctly.Fixed the incorrect jailbreak/rooted error received on specific mobile devices.
Builder
New features & improvements
Dynamically sync-entities - When building a solution, the number of entities to sync and the parameters for each are not always known; for example, when syncing the attachments, files, and documents from a source, there can be zero, one, or more. It is necessary to dynamically specify a list of the entities, functions, and function parameters to return from the input source using an expression. For more information, see Dynamically sync multiple entities.
Best practice for production apps is to use REST as the data layer to access data and not directly integrate to SQL using the SQL data provider. The SQL data provider will be squiggled in blue to indicate it is not recommended, together with a message to use REST instead.
Use a scenario template to quickly create a *contacts management *solution. The solution consists of forms to create a new contact, view the contact details, edit the details, and list all your contacts. It is easy to customize the template for similar solutions.
Added Widget Templates - Using widget templates significantly speeds up the development process. These templates provide a pre-built structure for the various types of widgets that can be customized as needed. Widget templates are only available on widgets with a
sizesetting of 2x2 or greater.If an expression has a chain of single options, IntelliSense will add it at once.
Bug Fixes
Fixed the incorrect validation error of the
urlproperty within a function's continuation configuration.Fixed an issue where the cursor jumps to a new line after selecting an IntelliSense option.
Fixed an issue where IntelliSense didn't invoke an empty
childrenarray.
Management
New features & improvements
Added the ability to clean up favorite solutions and to remove favorite entries that are no longer available. This is useful when a solution is deleted, or you can no longer see the solution in the list. Only the last 5 solutions pinned as favorites are tracked. This enhancement provides a quick indicator that a frequented solution from management is no longer available.
Creating a copy of a solution duplicates the structure of the credentials and connections to allow for easy configuration by only having to respecify secrets.
Widgets and stories now indicate when non-group-assigned items are inaccessible by anyone. Once access is applied, access is granted according to the applied permissions.
Added a visible Edit groups link to the solutions permissions tab making it easier to edit group access to the solution.
Changed help icons to open in a new tab rather than in a widget.
Added an indication of the solution count per organization on the User > Profile - Organizations section. This is useful for people belonging to multi-organizations. On the user's profile, all organizations assigned to the user are visible with an active solution count. Clicking on an organization will easily switch you to that organization where solutions are assigned; go to the Solutions tab, and manipulate access as required.
Added an Idle logout minutes option for Jigx Management. This is an optional security setting that, once applied, will display a prompt and then log the person out of Jigx Management after being idle for the configured period. Enabling the checkbox has a default of 120 minutes but is configurable to your requirements. See Advanced Setting for more information.
Release 2024.1

Release date
19 January 2024
iOS version
1.19.5
Android version
1.19.5
Jigx Builder version
1.25.0
Mobile Apps
New features & improvements
Added the ability to delete your account from the personal information section under your Profile screen in the mobile app. Once deleted, you are logged out of the Jigx App, and your account is deleted from Jigx Management.
Added a new jig type for components such as location to occupy the entire screen with no other elements. See jig.fullscreen for more details.

Bug Fixes
Fixed an issue with going offline and online indicators.
Fixed an issue with
action.execute-entity/entitiesand updating local tables with returned data.
Components
New features & improvements
Added the
sContainedproperty to enhance the styling ofjig.listandcomponent.list-itemwhich wraps each item in the list in a card. See Lists with items contained in a card. This property can only be used with vertical lists andcomponent.list-item.
Charts now support using expressions in the
max,minandtickAmountproperties.
Builder
Bug Fixes
Fixed a issue where icons led to errors during the deployment of a solution.
Fixed a issue with IntelliSense, that would not consistently show up when beginning to type a property name.
Resolved a issue where IntelliSense options were not appearing for
jig.state.
Management
New features & improvements
Added a dropdown to Solution Settings allowing you to choose which data to copy. You can decide whether restricted data can be copied when a solution is copied.
Removed the Disable user button from the User screen in Management, use permissions to deny users access.
Performance improvements and security enhancements.
Bug Fixes
General bug fixes.
Deprecated
The property
isScrollableused in thejig.defaultallowing the component in the jig to fill the entire screen, has been depreciated. The new jig type full-screen provides similar functionality.
Updates to Quick Start Sample solutions
jigx-samples
- location-fullscreen.jigx and location-fullscreen-dynamic.jigx updated to use the new jig.fullscreen instead of jig.default with isScrollable: false property that has been depreciated.
- Added list-item-contained.jigx showing vertical list-items wrapped in a card by using the isContained property.
- Fixed minor bugs
Last updated
Was this helpful?