purgetss 6.2.44 → 6.2.46
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/dist/configs/vscode/settings.json +18 -2
- package/dist/glossary/configurableProperties/rotate.md +2 -1
- package/dist/glossary/configurableProperties/scale.md +1 -1
- package/dist/glossary/constantProperties/breakStrategy.md +8 -0
- package/dist/glossary/constantProperties/hyphenationFrequency.md +10 -0
- package/dist/purgetss.ui.js +224 -241
- package/dist/tailwind.tss +52 -35
- package/lib/completions/titanium/completions-v3.json +112 -15
- package/lib/templates/purgetss.ui.js +223 -240
- package/package.json +2 -2
|
@@ -57,13 +57,29 @@
|
|
|
57
57
|
"tailwind-raw-reorder.classRegex": {
|
|
58
58
|
"xml": [
|
|
59
59
|
[
|
|
60
|
-
"
|
|
60
|
+
"class=(([\"'`])(?:(?:[^{}<>](?!\\2))|\\\\\\2)+[^{}<>])\\2",
|
|
61
|
+
"[\"'`]([^]+)"
|
|
62
|
+
],
|
|
63
|
+
[
|
|
64
|
+
"classes=(([\"'`])(?:(?:[^{}<>](?!\\2))|\\\\\\2)+[^{}<>])\\2",
|
|
65
|
+
"[\"'`]([^]+)"
|
|
66
|
+
],
|
|
67
|
+
[
|
|
68
|
+
"icon=(([\"'`])(?:(?:[^{}<>](?!\\2))|\\\\\\2)+[^{}<>])\\2",
|
|
69
|
+
"[\"'`]([^]+)"
|
|
70
|
+
],
|
|
71
|
+
[
|
|
72
|
+
"activeIcon=(([\"'`])(?:(?:[^{}<>](?!\\2))|\\\\\\2)+[^{}<>])\\2",
|
|
61
73
|
"[\"'`]([^]+)"
|
|
62
74
|
]
|
|
63
75
|
],
|
|
64
76
|
"javascript": [
|
|
65
77
|
[
|
|
66
|
-
"
|
|
78
|
+
"class: (([\"'`])(?:(?:[^{}<>](?!\\2))|\\\\\\2)+[^{}<>])\\2",
|
|
79
|
+
"[\"'`]([^]+)"
|
|
80
|
+
],
|
|
81
|
+
[
|
|
82
|
+
"apply: (([\"'`])(?:(?:[^{}<>](?!\\2))|\\\\\\2)+[^{}<>])\\2",
|
|
67
83
|
"[\"'`]([^]+)"
|
|
68
84
|
]
|
|
69
85
|
]
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
```scss
|
|
2
2
|
// Property: rotate
|
|
3
|
-
//
|
|
3
|
+
// Description: Rotation angle, in degrees. See the rotate method for a discussion of rotation.
|
|
4
|
+
// Component(s): Matrix2DCreationDict
|
|
4
5
|
'.rotate-0': { rotate: 0 }
|
|
5
6
|
'.rotate-1': { rotate: 1 }
|
|
6
7
|
'.rotate-2': { rotate: 2 }
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
```scss
|
|
2
|
+
// Property: breakStrategy
|
|
3
|
+
// Description: Break strategy (control over paragraph layout). Check Android breakStrategy for more infos.
|
|
4
|
+
// Component(s): Ti.UI.Label
|
|
5
|
+
'.break-strategy-simple': { breakStrategy: Ti.UI.BREAK_SIMPLE }
|
|
6
|
+
'.break-strategy-high-quality': { breakStrategy: Ti.UI.BREAK_HIGH_QUALITY }
|
|
7
|
+
'.break-strategy-balanced': { breakStrategy: Ti.UI.BREAK_BALANCED }
|
|
8
|
+
```
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
```scss
|
|
2
|
+
// Property: hyphenationFrequency
|
|
3
|
+
// Description: Frequency of automatic hyphenation. Check Android hyphenationFrequency for more infos.
|
|
4
|
+
// Component(s): Ti.UI.Label
|
|
5
|
+
'.hyphenation-frequency-hyphen-none': { hyphenationFrequency: Ti.UI.HYPHEN_NONE }
|
|
6
|
+
'.hyphenation-frequency-hyphen-normal': { hyphenationFrequency: Ti.UI.HYPHEN_NORMAL }
|
|
7
|
+
'.hyphenation-frequency-hyphen-full': { hyphenationFrequency: Ti.UI.HYPHEN_FULL }
|
|
8
|
+
'.hyphenation-frequency-hyphen-normal-fast': { hyphenationFrequency: Ti.UI.HYPHEN_NORMAL_FAST }
|
|
9
|
+
'.hyphenation-frequency-hyphen-full-fast': { hyphenationFrequency: Ti.UI.HYPHEN_FULL_FAST }
|
|
10
|
+
```
|