@codeleap/mobile 3.18.7 → 3.18.9

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@codeleap/mobile",
3
- "version": "3.18.7",
3
+ "version": "3.18.9",
4
4
  "main": "src/index.ts",
5
5
  "license": "UNLICENSED",
6
6
  "repository": {
@@ -244,7 +244,7 @@ export const Select = <T extends string | number = string, Multi extends boolean
244
244
  close?.()
245
245
  }
246
246
 
247
- }, [isValueArray, ...(isValueArray ? value : [value]), limit, multiple])
247
+ }, [isValueArray, (isValueArray ? value : [value]), limit, multiple])
248
248
 
249
249
  const Item = renderItem || Button
250
250
 
@@ -81,7 +81,7 @@ export const Gap = ({ children, value, defaultProps = {}, crossValue = null, ...
81
81
  [spacingProperty]: space,
82
82
  }
83
83
 
84
- if (!TypeGuards.isNil(crossValue) && !isLast) {
84
+ if (!TypeGuards.isNil(crossValue)) {
85
85
  style[crossSpacingProperty] = crossSpace
86
86
  }
87
87