purgetss 6.2.33 → 6.2.35

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 +5 -1
  2. package/package.json +71 -71
package/lib/helpers.js CHANGED
@@ -6494,18 +6494,20 @@ const arbitraryValuesTable = {
6494
6494
  'rounded-b': 'borderRadius: [0, 0, {value}, {value}]',
6495
6495
  'rounded-bl': 'borderRadius: [0, 0, 0, {value}]',
6496
6496
  'rounded-br': 'borderRadius: [0, 0, {value}, 0]',
6497
+ 'rounded-full': 'width: {value}, height: {value}, borderRadius: {value1}',
6497
6498
  'rounded-l': 'borderRadius: [{value}, 0, 0, {value}]',
6498
6499
  'rounded-r': 'borderRadius: [0, {value}, {value}, 0]',
6499
6500
  'rounded-t': 'borderRadius: [{value}, {value}, 0, 0]',
6500
6501
  'rounded-tl': 'borderRadius: [{value}, 0, 0, 0]',
6501
6502
  'rounded-tr': 'borderRadius: [0, {value}, 0, 0]',
6502
6503
  'rounded': 'borderRadius: {value}',
6503
- 'rounded-full': 'width: {value}, height: {value}, borderRadius: {value1}',
6504
6504
  'row-h': 'rowHeight: {value}',
6505
6505
  'rw': 'rightWidth: {value}',
6506
6506
  'section-header-top-padding': 'sectionHeaderTopPadding: {value}',
6507
6507
  'separator-h': 'separatorHeight: {value}',
6508
6508
  'shadow-radius': 'shadowRadius: {value}',
6509
+ 'target-image-h': 'targetImageHeight: {value}',
6510
+ 'target-image-w': 'targetImageWidth: {value}',
6509
6511
  'top': 'top: {value}',
6510
6512
  'w': 'width: {value}',
6511
6513
  'wh': 'width: {value}, height: {value}',
@@ -6517,6 +6519,8 @@ const arbitraryValuesTable = {
6517
6519
  // Color
6518
6520
  'active-tint': 'activeTintColor: {value}',
6519
6521
  'active-title': 'activeTitleColor: {value}',
6522
+ 'badge-bg': 'badgeBackgroundColor: {value}',
6523
+ 'badge-text': 'badgeTextColor: {value}',
6520
6524
  'badge': 'badgeColor: {value}',
6521
6525
  'bar': 'barColor: {value}',
6522
6526
  'bg-disabled': 'backgroundDisabledColor: {value}',
package/package.json CHANGED
@@ -1,73 +1,73 @@
1
1
  {
2
- "name": "purgetss",
3
- "version": "6.2.33",
4
- "description": "A package that simplifies mobile app creation for Titanium developers.",
5
- "main": "index.js",
6
- "bin": {
7
- "purgetss": "bin/purgetss"
8
- },
9
- "publishConfig": {
10
- "access": "public"
11
- },
12
- "scripts": {
13
- "build": "npm run build:all",
14
- "notifier": "node ./lib/test-function",
15
- "build:tailwind": "node ./lib/build-tailwind",
16
- "build:tailwind-legacy": "node ./lib/build-tailwind-legacy",
17
- "build:fonts": "node ./lib/build-fonts-folder",
18
- "build:fa": "node ./lib/build-fontawesome-free-tss",
19
- "build:fa-js": "node ./lib/build-fontawesome-free-js",
20
- "build:material": "node ./lib/build-material-icons-tss",
21
- "build:material-js": "node ./lib/build-material-icons-js",
22
- "build:symbols": "node ./lib/build-material-symbols-tss",
23
- "build:symbols-js": "node ./lib/build-material-symbols-js",
24
- "build:framework7": "node ./lib/build-framework7-icons-tss",
25
- "build:framework7-js": "node ./lib/build-framework7-icons-js",
26
- "build:all": "npm run build:tailwind && npm run build:fa && npm run build:fa-js && npm run build:material && npm run build:material-js && npm run build:symbols && npm run build:symbols-js && npm run build:framework7 && npm run build:framework7-js && npm run build:fonts"
27
- },
28
- "repository": {
29
- "type": "git",
30
- "url": "git+https://github.com/macCesar/purgeTSS.git"
31
- },
32
- "keywords": [
33
- "Appcelerator",
34
- "Titanium",
35
- "tailwind.tss",
36
- "fontawesome.tss",
37
- "cli"
38
- ],
39
- "author": "César Estrada",
40
- "license": "MIT",
41
- "bugs": {
42
- "url": "https://github.com/macCesar/purgeTSS/issues"
43
- },
44
- "homepage": "https://github.com/macCesar/purgeTSS#readme",
45
- "dependencies": {
46
- "@fortawesome/fontawesome-free": "^6.4.2",
47
- "caporal": "^1.4.0",
48
- "chalk": "^4.1.2",
49
- "chroma-js": "2.1.2",
50
- "command-exists": "^1.2.9",
51
- "fontname": "^1.0.1",
52
- "framework7-icons": "^5.0.5",
53
- "glob": "^7.2.0",
54
- "inquirer": "^8.2.4",
55
- "junk": "3.1.0",
56
- "lodash": "^4.17.21",
57
- "ntcjs": "^1.1.3",
58
- "path": "^0.12.7",
59
- "prompts": "^2.4.2",
60
- "read-css": "^0.3.0",
61
- "tailwindcss": "^3.3.3",
62
- "traverse": "^0.6.7",
63
- "update-notifier": "^5.1.0",
64
- "uuid": "^9.0.1",
65
- "xml-js": "^1.6.11"
66
- },
67
- "devDependencies": {
68
- "eslint": "^8.49.0",
69
- "eslint-config-standard": "^17.1.0",
70
- "eslint-plugin-import": "^2.28.1",
71
- "eslint-plugin-n": "^15.7.0"
72
- }
2
+ "name": "purgetss",
3
+ "version": "6.2.35",
4
+ "description": "A package that simplifies mobile app creation for Titanium developers.",
5
+ "main": "index.js",
6
+ "bin": {
7
+ "purgetss": "bin/purgetss"
8
+ },
9
+ "publishConfig": {
10
+ "access": "public"
11
+ },
12
+ "scripts": {
13
+ "build": "npm run build:all",
14
+ "notifier": "node ./lib/test-function",
15
+ "build:tailwind": "node ./lib/build-tailwind",
16
+ "build:tailwind-legacy": "node ./lib/build-tailwind-legacy",
17
+ "build:fonts": "node ./lib/build-fonts-folder",
18
+ "build:fa": "node ./lib/build-fontawesome-free-tss",
19
+ "build:fa-js": "node ./lib/build-fontawesome-free-js",
20
+ "build:material": "node ./lib/build-material-icons-tss",
21
+ "build:material-js": "node ./lib/build-material-icons-js",
22
+ "build:symbols": "node ./lib/build-material-symbols-tss",
23
+ "build:symbols-js": "node ./lib/build-material-symbols-js",
24
+ "build:framework7": "node ./lib/build-framework7-icons-tss",
25
+ "build:framework7-js": "node ./lib/build-framework7-icons-js",
26
+ "build:all": "npm run build:tailwind && npm run build:fa && npm run build:fa-js && npm run build:material && npm run build:material-js && npm run build:symbols && npm run build:symbols-js && npm run build:framework7 && npm run build:framework7-js && npm run build:fonts"
27
+ },
28
+ "repository": {
29
+ "type": "git",
30
+ "url": "git+https://github.com/macCesar/purgeTSS.git"
31
+ },
32
+ "keywords": [
33
+ "Appcelerator",
34
+ "Titanium",
35
+ "tailwind.tss",
36
+ "fontawesome.tss",
37
+ "cli"
38
+ ],
39
+ "author": "César Estrada",
40
+ "license": "MIT",
41
+ "bugs": {
42
+ "url": "https://github.com/macCesar/purgeTSS/issues"
43
+ },
44
+ "homepage": "https://github.com/macCesar/purgeTSS#readme",
45
+ "dependencies": {
46
+ "@fortawesome/fontawesome-free": "^6.4.2",
47
+ "caporal": "^1.4.0",
48
+ "chalk": "^4.1.2",
49
+ "chroma-js": "^2.4.2",
50
+ "command-exists": "^1.2.9",
51
+ "fontname": "^1.0.1",
52
+ "framework7-icons": "^5.0.5",
53
+ "glob": "^7.2.0",
54
+ "inquirer": "^8.2.4",
55
+ "junk": "3.1.0",
56
+ "lodash": "^4.17.21",
57
+ "ntcjs": "^1.1.3",
58
+ "path": "^0.12.7",
59
+ "prompts": "^2.4.2",
60
+ "read-css": "^0.3.0",
61
+ "tailwindcss": "^3.3.3",
62
+ "traverse": "^0.6.7",
63
+ "update-notifier": "^5.1.0",
64
+ "uuid": "^9.0.1",
65
+ "xml-js": "^1.6.11"
66
+ },
67
+ "devDependencies": {
68
+ "eslint": "^8.49.0",
69
+ "eslint-config-standard": "^17.1.0",
70
+ "eslint-plugin-import": "^2.28.1",
71
+ "eslint-plugin-n": "^15.7.0"
72
+ }
73
73
  }