purgetss 6.2.21 → 6.2.23

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/README.md CHANGED
@@ -10,19 +10,19 @@
10
10
 
11
11
  </div>
12
12
 
13
- **PurgeTSS** is a package with tailwind-like utility classes for **[Titanium developers](https://tidev.io/)** who want to easily and quickly create beautifully designed mobile apps.
13
+ **PurgeTSS** is a package that helps **[Titanium developers](https://tidev.io/)** create visually appealing mobile apps more easily, with features including highly customizable utility classes, icon fonts support, a basic Animation module, a simple grid system, and a shades command for creating custom colors.
14
14
 
15
15
  ---
16
16
 
17
17
  # Key features of PurgeTSS
18
- - Provides almost 19,000 **[Tailwind-like utility classes](https://tailwindcss.com/)** ready to use in your projects.
19
- - Creates a clean **`app.tss`** file with only the classes used in your project by parsing all your XML files.
20
- - You can customize any of the default classes via a simple configuration file, or you can create *just-in-time* classes with **arbitrary values** within your `Views`.
21
- - You can easily use icon fonts from **Font Awesome**, **Material Icons**, **Material Symbols** and **Framework7-Icons** on `Buttons` and `Labels`.
22
- - Generates a **`fonts.tss`** file with all class definitions and *fontFamily* selectors for any Icon, Serif, Sans-Serif, Italic, Fancy, or Monospace font.
23
- - Use the `shades` command to generate custom color shades from the given hex color to use in your projects. You no longer need a separate online tool to generate them.
24
- - Includes an **Animation module** to apply basic 2D Matrix animations or transform any element or `Array` of elements.
25
- - Includes a simple two-dimensional **Grid System** to align and distribute elements in your views.
18
+ - Provides more than 19,000 **[Tailwind-like](https://tailwindcss.com/)** utility classes ready to use in your projects.
19
+ - Creates a clean **app.tss** file with only the classes used in your project by parsing all your XML files.
20
+ - You can customize any of the default classes via a simple configuration file, or create **just-in-time** classes with **arbitrary values** within your Views.
21
+ - You can easily use icon fonts from **Font Awesome**, **Material Icons**, **Material Symbols**, and **Framework7-Icons** on Buttons and Labels.
22
+ - Generates a **fonts.tss** file with all class definitions and `fontFamily` selectors for any icon, serif, sans-serif, italic, fancy, or monospace font.
23
+ - Use the `shades` command to generate custom color shades from the given hex color to use in your projects. No need for a separate online tool.
24
+ - Includes an **Animation module** to apply basic 2D Matrix animations or transform to any element or array of elements.
25
+ - Includes a simple two-dimensional **Grid System** to align and distribute elements in your Views.
26
26
 
27
27
  ### Visit the official documentation site at [purgetss.com](https://purgetss.com) to learn more about PurgeTSS
28
28
 
@@ -37,7 +37,7 @@
37
37
  - [opacity modifier](https://purgetss.com/docs/customization/the-opacity-modifier)
38
38
  - [Arbitrary values in XMLs](https://purgetss.com/docs/customization/arbitrary-values)
39
39
  - [Platform and Device modifiers](https://purgetss.com/docs/customization/platform-and-device-modifiers)
40
- - [Missing Icon libraries](https://purgetss.com/docs/customization/missing-icon-libraries)
40
+ - [Icon Fonts Libraries](https://purgetss.com/docs/customization/icon-fonts-libraries)
41
41
  - Animation module
42
42
  - [Introduction](https://purgetss.com/docs/animation-module/introduction)
43
43
  - [Available utilities](https://purgetss.com/docs/animation-module/available-utilities)
package/bin/purgetss CHANGED
@@ -37,7 +37,7 @@ program
37
37
  .alias('c')
38
38
  .description(`Creates a new Alloy Project with ${chalk.green('PurgeTSS')} configured`)
39
39
  .help(`Creates a new Alloy Project with ${chalk.green('PurgeTSS')} configured. You’ll need to have ${chalk.yellow('app.idprefix')} and ${chalk.yellow('app.workspace')} already configured.`)
40
- .option('-f, --force', 'To overwrite an existing project')
40
+ .option('-f, --force', 'Forces create even if the project already exists')
41
41
  .option('-t, --tailwind', `Install ${chalk.green('Tailwind CSS')} for Tailwind CSS Intellisense VS Code extension`)
42
42
  .option('-v, --vendor <arguments>', `Use any of the following arguments to copy specific font vendors:\n ${chalk.yellow('fa')} = Font Awesome Icons\n ${chalk.yellow('mi')} = Material Icons\n ${chalk.yellow('ms')} = Material Symbols\n ${chalk.yellow('f7')} = Framework7 Icons`)
43
43
  .argument('<name>', 'The name of the project')
@@ -69,13 +69,13 @@ program
69
69
  .alias('s')
70
70
  .argument('[hexcode]', 'The base hexcode value')
71
71
  .argument('[name]', 'Name of the color')
72
- .option('-n, --name', 'Name of the color')
73
- .option('-q, --quotes', 'Keep double quotes in config.js')
72
+ .option('-n, --name', 'Specifies the name of the color')
73
+ .option('-q, --quotes', `Keeps double quotes in the ${chalk.yellow('config.js')} file`)
74
74
  .option('-r, --random', 'Generates shades from a random color')
75
- .option('-s, --single', 'Generate a single color definition')
76
- .option('-t, --tailwind', `Save generated color in ${chalk.yellow('tailwind.config.js')}`)
77
- .option('-l, --log', `Log the generated shades instead of saving them`)
78
- .option('-j, --json', `Log a JSON compatible structure, to use it in ${chalk.yellow('app/config.json')}`)
75
+ .option('-s, --single', 'Generates a single color definition')
76
+ .option('-t, --tailwind', `Logs the generated shades with a ${chalk.yellow('tailwind.config.js')} compatible structure`)
77
+ .option('-l, --log', 'Logs the generated shades instead of saving them')
78
+ .option('-j, --json', `Logs a JSON compatible structure, which can be used in ${chalk.yellow('app/config.json')}`)
79
79
  .description(`Color shades generator from a given hexcolor`)
80
80
  .help(`Generate color shades from a given hexcolor to use in your project`)
81
81
  .action((args, options, logger) => {
@@ -1,5 +1,5 @@
1
1
  /**
2
- * Font Awesome Free 6.2.1 by @fontawesome - https://fontawesome.com
2
+ * Font Awesome Free 6.3.0 by @fontawesome - https://fontawesome.com
3
3
  * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
4
4
  */
5
5
 
@@ -2432,9 +2432,11 @@ const icons = {
2432
2432
  'dribbble': '\uf17d',
2433
2433
  'stumbleuponCircle': '\uf1a3',
2434
2434
  'internetExplorer': '\uf26b',
2435
+ 'stubber': '\ue5c7',
2435
2436
  'telegram': '\uf2c6',
2436
2437
  'telegramPlane': '\uf2c6',
2437
2438
  'oldRepublic': '\uf510',
2439
+ 'odysee': '\ue5c6',
2438
2440
  'squareWhatsapp': '\uf40c',
2439
2441
  'whatsappSquare': '\uf40c',
2440
2442
  'nodeJs': '\uf3d3',
@@ -1,4 +1,4 @@
1
- // Font Awesome Free 6.2.1 by @fontawesome - https://fontawesome.com
1
+ // Font Awesome Free 6.3.0 by @fontawesome - https://fontawesome.com
2
2
  // License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
3
3
 
4
4
  // Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen readers do not read off random characters that represent icons
@@ -2440,9 +2440,11 @@
2440
2440
  '.fa-dribbble': { text: '\uf17d', title: '\uf17d' }
2441
2441
  '.fa-stumbleupon-circle': { text: '\uf1a3', title: '\uf1a3' }
2442
2442
  '.fa-internet-explorer': { text: '\uf26b', title: '\uf26b' }
2443
+ '.fa-stubber': { text: '\ue5c7', title: '\ue5c7' }
2443
2444
  '.fa-telegram': { text: '\uf2c6', title: '\uf2c6' }
2444
2445
  '.fa-telegram-plane': { text: '\uf2c6', title: '\uf2c6' }
2445
2446
  '.fa-old-republic': { text: '\uf510', title: '\uf510' }
2447
+ '.fa-odysee': { text: '\ue5c6', title: '\ue5c6' }
2446
2448
  '.fa-square-whatsapp': { text: '\uf40c', title: '\uf40c' }
2447
2449
  '.fa-whatsapp-square': { text: '\uf40c', title: '\uf40c' }
2448
2450
  '.fa-node-js': { text: '\uf3d3', title: '\uf3d3' }