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.
- package/lib/helpers.js +7 -6
- 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
|
-
|
|
4989
|
-
|
|
4990
|
-
|
|
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
|
-
|
|
7029
|
-
|
|
7028
|
+
separateObjects.forEach(obj => {
|
|
7029
|
+
individualPaddingObjects.push(obj.trim())
|
|
7030
|
+
})
|
|
7030
7031
|
} else {
|
|
7031
7032
|
individualPaddingObjects.push(propertyAndValue)
|
|
7032
7033
|
}
|