purgetss 5.2.2 → 5.3.1
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 +1 -1
- package/assets/images/class-completion-2.gif +0 -0
- package/bin/purgetss +1 -0
- package/dist/tailwind.tss +6425 -711
- package/docs/new-glossary.md +30 -28
- package/docs/whats-new/v5.2.1.md +1 -1
- package/docs/whats-new/v5.3.1.md +1850 -0
- package/index.js +291 -69
- package/lib/helpers.js +4981 -3192
- package/package.json +1 -1
- package/assets/images/class-completion.gif +0 -0
- package/old-index.js +0 -1980
package/docs/new-glossary.md
CHANGED
|
@@ -680,34 +680,36 @@ The following is a list of all the properties and their repective class name.
|
|
|
680
680
|
|
|
681
681
|
## blend mode Property ( Background Blend Mode ) Property
|
|
682
682
|
```css
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
'.bg-blend-
|
|
686
|
-
'.bg-blend-
|
|
687
|
-
'.bg-blend-
|
|
688
|
-
'.bg-blend-destination-
|
|
689
|
-
'.bg-blend-destination-
|
|
690
|
-
'.bg-blend-
|
|
691
|
-
'.bg-blend-
|
|
692
|
-
'.bg-blend-
|
|
693
|
-
'.bg-blend-
|
|
694
|
-
'.bg-blend-
|
|
695
|
-
'.bg-blend-
|
|
696
|
-
'.bg-blend-
|
|
697
|
-
'.bg-blend-
|
|
698
|
-
'.bg-blend-source-
|
|
699
|
-
'.bg-blend-
|
|
700
|
-
'.bg-blend-
|
|
701
|
-
'.bg-blend-
|
|
702
|
-
'.bg-blend-color
|
|
703
|
-
'.bg-blend-
|
|
704
|
-
'.bg-blend-
|
|
705
|
-
'.bg-blend-
|
|
706
|
-
'.bg-blend-
|
|
707
|
-
'.bg-blend-
|
|
708
|
-
'.bg-blend-
|
|
709
|
-
'.bg-blend-
|
|
710
|
-
'.bg-blend-
|
|
683
|
+
// Component(s): Ti.UI.MaskedImage
|
|
684
|
+
// Property(ies): mode ( Background Blend Mode )
|
|
685
|
+
'.bg-blend-mode-clear': { mode: Ti.UI.BLEND_MODE_CLEAR }
|
|
686
|
+
'.bg-blend-mode-copy': { mode: Ti.UI.BLEND_MODE_COPY }
|
|
687
|
+
'.bg-blend-mode-darken': { mode: Ti.UI.BLEND_MODE_DARKEN }
|
|
688
|
+
'.bg-blend-mode-destination-atop': { mode: Ti.UI.BLEND_MODE_DESTINATION_ATOP }
|
|
689
|
+
'.bg-blend-mode-destination-in': { mode: Ti.UI.BLEND_MODE_DESTINATION_IN }
|
|
690
|
+
'.bg-blend-mode-destination-out': { mode: Ti.UI.BLEND_MODE_DESTINATION_OUT }
|
|
691
|
+
'.bg-blend-mode-destination-over': { mode: Ti.UI.BLEND_MODE_DESTINATION_OVER }
|
|
692
|
+
'.bg-blend-mode-lighten': { mode: Ti.UI.BLEND_MODE_LIGHTEN }
|
|
693
|
+
'.bg-blend-mode-multiply': { mode: Ti.UI.BLEND_MODE_MULTIPLY }
|
|
694
|
+
'.bg-blend-mode-normal': { mode: Ti.UI.BLEND_MODE_NORMAL }
|
|
695
|
+
'.bg-blend-mode-overlay': { mode: Ti.UI.BLEND_MODE_OVERLAY }
|
|
696
|
+
'.bg-blend-mode-plus-lighter': { mode: Ti.UI.BLEND_MODE_PLUS_LIGHTER }
|
|
697
|
+
'.bg-blend-mode-screen': { mode: Ti.UI.BLEND_MODE_SCREEN }
|
|
698
|
+
'.bg-blend-mode-source-atop': { mode: Ti.UI.BLEND_MODE_SOURCE_ATOP }
|
|
699
|
+
'.bg-blend-mode-source-in': { mode: Ti.UI.BLEND_MODE_SOURCE_IN }
|
|
700
|
+
'.bg-blend-mode-source-out': { mode: Ti.UI.BLEND_MODE_SOURCE_OUT }
|
|
701
|
+
'.bg-blend-mode-xor': { mode: Ti.UI.BLEND_MODE_XOR }
|
|
702
|
+
'.bg-blend-mode-color[platform=ios]': { mode: Ti.UI.BLEND_MODE_COLOR }
|
|
703
|
+
'.bg-blend-mode-color-burn[platform=ios]': { mode: Ti.UI.BLEND_MODE_COLOR_BURN }
|
|
704
|
+
'.bg-blend-mode-color-dodge[platform=ios]': { mode: Ti.UI.BLEND_MODE_COLOR_DODGE }
|
|
705
|
+
'.bg-blend-mode-diference[platform=ios]': { mode: Ti.UI.BLEND_MODE_DIFFERENCE }
|
|
706
|
+
'.bg-blend-mode-exclusion[platform=ios]': { mode: Ti.UI.BLEND_MODE_EXCLUSION }
|
|
707
|
+
'.bg-blend-mode-hard-light[platform=ios]': { mode: Ti.UI.BLEND_MODE_HARD_LIGHT }
|
|
708
|
+
'.bg-blend-mode-hue[platform=ios]': { mode: Ti.UI.BLEND_MODE_HUE }
|
|
709
|
+
'.bg-blend-mode-luminosity[platform=ios]': { mode: Ti.UI.BLEND_MODE_LUMINOSITY }
|
|
710
|
+
'.bg-blend-mode-plus-darker[platform=ios]': { mode: Ti.UI.BLEND_MODE_PLUS_DARKER }
|
|
711
|
+
'.bg-blend-mode-saturation[platform=ios]': { mode: Ti.UI.BLEND_MODE_SATURATION }
|
|
712
|
+
'.bg-blend-mode-soft-light[platform=ios]': { mode: Ti.UI.BLEND_MODE_SOFT_LIGHT }
|
|
711
713
|
```
|
|
712
714
|
|
|
713
715
|
## backgroundColor Property
|
package/docs/whats-new/v5.2.1.md
CHANGED
|
@@ -112,7 +112,7 @@ We've created a new `definitions.css` file, that includes ALL the classes from `
|
|
|
112
112
|
|
|
113
113
|
### “IntelliSense for CSS class names in HTML” VSCode extension
|
|
114
114
|
|
|
115
|
-
<img src="https://raw.githubusercontent.com/macCesar/purgeTSS/master/assets/images/class-completion.gif" alt="Class Completion using IntelliSense for CSS class names in HTML">
|
|
115
|
+
<img src="https://raw.githubusercontent.com/macCesar/purgeTSS/master/assets/images/class-completion-2.gif" alt="Class Completion using IntelliSense for CSS class names in HTML">
|
|
116
116
|
|
|
117
117
|
If you use **[Visual Studio Code](https://code.visualstudio.com)**, we recommend you to install the **[IntelliSense for CSS class names in HTML](https://marketplace.visualstudio.com/items?itemName=Zignd.html-css-class-completion)** extension.
|
|
118
118
|
|