purgetss 6.3.6 → 6.3.8

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.
Files changed (2) hide show
  1. package/lib/helpers.js +7 -6
  2. package/package.json +1 -1
package/lib/helpers.js CHANGED
@@ -4985,10 +4985,10 @@ function bottomNavigation(modifiersAndValues) {
4985
4985
  prop: 'padding, paddingTop, paddingLeft, paddingRight, paddingBottom - Android Only',
4986
4986
  modules: 'Ti.UI.Android.CardView, Ti.UI.TabGroup, Ti.UI.ScrollableView'
4987
4987
  },
4988
- objectPosition,
4989
- {
4990
- android: modifiersAndValues
4991
- }
4988
+ objectPosition,
4989
+ {
4990
+ android: modifiersAndValues
4991
+ }
4992
4992
  )
4993
4993
  }
4994
4994
  exports.bottomNavigation = bottomNavigation
@@ -7025,8 +7025,9 @@ function fixDuplicateKeys(compoundClasses) {
7025
7025
  paddingObject.forEach(propertyAndValue => {
7026
7026
  if (propertyAndValue.includes(',')) {
7027
7027
  const separateObjects = propertyAndValue.split(',')
7028
- individualPaddingObjects.push(separateObjects[0].trim())
7029
- individualPaddingObjects.push(separateObjects[1].trim())
7028
+ separateObjects.forEach(obj => {
7029
+ individualPaddingObjects.push(obj.trim())
7030
+ })
7030
7031
  } else {
7031
7032
  individualPaddingObjects.push(propertyAndValue)
7032
7033
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "purgetss",
3
- "version": "6.3.6",
3
+ "version": "6.3.8",
4
4
  "description": "A package that simplifies mobile app creation for Titanium developers.",
5
5
  "main": "index.js",
6
6
  "bin": {