@wlloyalty/wll-react-sdk 1.4.2 → 1.4.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/native.js +1 -2
- package/dist/native.js.map +1 -1
- package/dist/web.js +1 -2
- package/dist/web.js.map +1 -1
- package/package.json +1 -1
package/dist/native.js
CHANGED
|
@@ -4450,8 +4450,7 @@ var GroupSections = function () {
|
|
|
4450
4450
|
return (jsxRuntimeExports.jsx(GroupEmptyState, { message: "This group doesn't have any active sections" }));
|
|
4451
4451
|
}
|
|
4452
4452
|
var sortedSections = sortByPriority(activeSections);
|
|
4453
|
-
|
|
4454
|
-
return (jsxRuntimeExports.jsx(Container, { accessible: true, accessibilityLabel: "Group: ".concat(groupData.name || 'Unnamed group'), role: "region", children: sortedSections.map(function (section) { return (jsxRuntimeExports.jsx(Section, { section: section }, section.id)); }) }));
|
|
4453
|
+
return (jsxRuntimeExports.jsx(reactNative.View, { accessible: true, accessibilityLabel: "Group: ".concat(groupData.name || 'Unnamed group'), role: "region", children: sortedSections.map(function (section) { return (jsxRuntimeExports.jsx(Section, { section: section }, section.id)); }) }));
|
|
4455
4454
|
};
|
|
4456
4455
|
/**
|
|
4457
4456
|
* A page-level component that represents a Group view in the application.
|