@maccesar/titools 2.2.11 → 2.3.0
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 +255 -713
- package/bin/titools.js +1 -1
- package/lib/commands/update.js +5 -6
- package/lib/config.js +1 -0
- package/lib/downloader.js +10 -0
- package/package.json +1 -1
- package/skills/alloy-guides/SKILL.md +46 -48
- package/skills/alloy-guides/references/CONTROLLERS.md +4 -6
- package/skills/alloy-guides/references/MODELS.md +340 -184
- package/skills/alloy-guides/references/VIEWS_DYNAMIC.md +3 -4
- package/skills/alloy-guides/references/VIEWS_STYLES.md +44 -46
- package/skills/alloy-guides/references/VIEWS_WITHOUT_CONTROLLERS.md +4 -5
- package/skills/alloy-guides/references/VIEWS_XML.md +51 -17
- package/skills/alloy-guides/references/WIDGETS.md +1 -1
- package/skills/alloy-howtos/SKILL.md +12 -13
- package/skills/alloy-howtos/references/cli_reference.md +40 -41
- package/skills/alloy-howtos/references/samples.md +3 -4
- package/skills/purgetss/SKILL.md +369 -356
- package/skills/purgetss/references/EXAMPLES.md +24 -25
- package/skills/purgetss/references/animation-advanced.md +555 -0
- package/skills/purgetss/references/animation-system.md +395 -995
- package/skills/purgetss/references/apply-directive.md +111 -141
- package/skills/purgetss/references/arbitrary-values.md +206 -480
- package/skills/purgetss/references/class-categories.md +277 -0
- package/skills/purgetss/references/class-index.md +1 -420
- package/skills/purgetss/references/cli-commands.md +446 -556
- package/skills/purgetss/references/configurable-properties.md +163 -599
- package/skills/purgetss/references/custom-rules.md +33 -76
- package/skills/purgetss/references/customization-deep-dive.md +319 -518
- package/skills/purgetss/references/dynamic-component-creation.md +33 -37
- package/skills/purgetss/references/grid-layout.md +42 -371
- package/skills/purgetss/references/icon-fonts.md +82 -475
- package/skills/purgetss/references/installation-setup.md +159 -331
- package/skills/purgetss/references/migration-guide.md +54 -109
- package/skills/purgetss/references/opacity-modifier.md +25 -222
- package/skills/purgetss/references/performance-tips.md +2 -2
- package/skills/purgetss/references/platform-modifiers.md +21 -407
- package/skills/purgetss/references/tikit-components.md +237 -104
- package/skills/purgetss/references/titanium-resets.md +20 -21
- package/skills/purgetss/references/ui-ux-design.md +171 -1702
- package/skills/ti-api/SKILL.md +109 -0
- package/skills/ti-api/references/api-android.md +675 -0
- package/skills/ti-api/references/api-app-platform.md +636 -0
- package/skills/ti-api/references/api-core.md +764 -0
- package/skills/ti-api/references/api-data-network.md +641 -0
- package/skills/ti-api/references/api-media.md +655 -0
- package/skills/ti-api/references/api-modules-ble-bluetooth.md +657 -0
- package/skills/ti-api/references/api-modules-coremotion-urlsession.md +411 -0
- package/skills/ti-api/references/api-modules-map.md +632 -0
- package/skills/ti-api/references/api-modules-nfc.md +725 -0
- package/skills/ti-api/references/api-modules-social-misc.md +526 -0
- package/skills/ti-api/references/api-services.md +700 -0
- package/skills/ti-api/references/api-ui-android.md +499 -0
- package/skills/ti-api/references/api-ui-extras.md +702 -0
- package/skills/ti-api/references/api-ui-ios-animator.md +378 -0
- package/skills/ti-api/references/api-ui-ios.md +756 -0
- package/skills/ti-api/references/api-ui-lists.md +581 -0
- package/skills/ti-api/references/api-ui-text-input.md +607 -0
- package/skills/ti-api/references/api-ui-views.md +572 -0
- package/skills/ti-api/references/api-ui-windows-navigation.md +676 -0
- package/skills/ti-api/references/api-xml-global.md +743 -0
- package/skills/ti-expert/SKILL.md +106 -138
- package/skills/ti-expert/references/adaptive-layouts.md +414 -0
- package/skills/ti-expert/references/alloy-builtins.md +16 -20
- package/skills/ti-expert/references/alloy-structure.md +40 -42
- package/skills/ti-expert/references/anti-patterns.md +34 -0
- package/skills/ti-expert/references/architecture-tiers.md +248 -0
- package/skills/ti-expert/references/code-conventions.md +5 -3
- package/skills/ti-expert/references/error-handling.md +14 -7
- package/skills/ti-expert/references/examples.md +4 -2
- package/skills/ti-expert/references/performance-optimization.md +26 -24
- package/skills/ti-expert/references/security-device.md +17 -14
- package/skills/ti-expert/references/security-fundamentals.md +60 -101
- package/skills/ti-expert/references/state-management.md +15 -14
- package/skills/ti-expert/references/testing-e2e-ci.md +30 -21
- package/skills/ti-expert/references/theming.md +12 -20
- package/skills/ti-guides/SKILL.md +13 -17
- package/skills/ti-guides/references/advanced-data-and-images.md +30 -10
- package/skills/ti-guides/references/application-frameworks.md +3 -3
- package/skills/ti-guides/references/coding-best-practices.md +31 -2
- package/skills/ti-guides/references/commonjs-advanced.md +46 -4
- package/skills/ti-guides/references/hello-world.md +9 -13
- package/skills/ti-guides/references/hyperloop-native-access.md +4 -1
- package/skills/ti-guides/references/javascript-primer.md +13 -5
- package/skills/ti-guides/references/resources.md +0 -2
- package/skills/ti-guides/references/style-and-conventions.md +1 -0
- package/skills/ti-guides/references/tiapp-config.md +0 -32
- package/skills/ti-howtos/SKILL.md +43 -45
- package/skills/ti-howtos/references/buffer-codec-streams.md +25 -3
- package/skills/ti-howtos/references/debugging-profiling.md +14 -25
- package/skills/ti-howtos/references/google-maps-v2.md +3 -3
- package/skills/ti-howtos/references/ios-map-kit.md +8 -1
- package/skills/ti-howtos/references/notification-services.md +0 -1
- package/skills/ti-howtos/references/webpack-build-pipeline.md +3 -0
- package/skills/ti-ui/SKILL.md +47 -49
- package/skills/ti-ui/references/application-structures.md +3 -2
- package/skills/ti-ui/references/orientation.md +17 -9
- package/skills/ti-ui/references/platform-ui-ios.md +63 -0
- package/skills/ti-ui/references/scrolling-views.md +39 -0
|
@@ -0,0 +1,277 @@
|
|
|
1
|
+
# PurgeTSS Class Categories by Prefix
|
|
2
|
+
|
|
3
|
+
Complete inventory of all class prefixes organized by functional category. For naming conventions, the full 416-property table, and verification commands, see [class-index.md](./class-index.md).
|
|
4
|
+
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
### Layout & Structure
|
|
8
|
+
|
|
9
|
+
| Prefix | Count | Examples |
|
|
10
|
+
| --- | --- | --- |
|
|
11
|
+
| `horizontal` | 1 | `horizontal` |
|
|
12
|
+
| `vertical` | 1 | `vertical` |
|
|
13
|
+
| `composite` | 1 | `composite` (default, omit class) |
|
|
14
|
+
| `grid` | 1 | `grid` |
|
|
15
|
+
| `grid-cols-*` | ~12 | `grid-cols-2`, `grid-cols-3`, etc. |
|
|
16
|
+
| `col-*` | ~24 | `col-1/2`, `col-2/3`, etc. (percentages) |
|
|
17
|
+
| `row-*` | ~55 | `row-*` (grid row related) |
|
|
18
|
+
| `wh-` | ~60 | `wh-0`, `wh-auto`, `wh-screen`, `wh-full`, `wh-1/2` |
|
|
19
|
+
| `w-` | ~60 | `w-0` to `w-96`, `w-auto`, `w-screen`, `w-full`, `w-1/2` |
|
|
20
|
+
| `h-` | ~60 | `h-0` to `h-96`, `h-auto`, `h-screen`, `h-full`, `h-1/2` |
|
|
21
|
+
| `content-*` | ~20 | `content-h-*`, `content-w-*` |
|
|
22
|
+
| `aspect-*` | 2 | `aspect-ratio-16-9`, `aspect-ratio-4-3` |
|
|
23
|
+
|
|
24
|
+
**Important: `w-full` vs `w-screen`**
|
|
25
|
+
- `w-full` → `width: '100%'` — 100% of parent container
|
|
26
|
+
- `w-screen` → `width: Ti.UI.FILL` — Fills all available space in parent
|
|
27
|
+
- `h-full` → `height: '100%'` — 100% of parent container
|
|
28
|
+
- `h-screen` → `height: Ti.UI.FILL` — Fills all available space in parent
|
|
29
|
+
- `wh-full` → Both `'100%'`
|
|
30
|
+
|
|
31
|
+
### Spacing (Margins & Padding)
|
|
32
|
+
|
|
33
|
+
| Prefix | Count | Examples |
|
|
34
|
+
| --- | --- | --- |
|
|
35
|
+
| `m-` | ~80 | `m-0` to `m-96`, `m-auto`, `m-1/2`, `m-px`, `m-0.5` |
|
|
36
|
+
| `mt-` | ~80 | `mt-0` to `mt-96`, `mt-auto`, `mt-1/2`, `mt-px` |
|
|
37
|
+
| `mb-` | ~80 | `mb-0` to `mb-96`, `mb-auto`, `mb-1/2`, `mb-px` |
|
|
38
|
+
| `ml-` | ~80 | `ml-0` to `ml-96`, `ml-auto`, `ml-1/2`, `ml-px` |
|
|
39
|
+
| `mr-` | ~80 | `mr-0` to `mr-96`, `mr-auto`, `mr-1/2`, `mr-px` |
|
|
40
|
+
| `mx-` | ~80 | `mx-0` to `mx-96`, `mx-auto`, `mx-1/2`, `mx-px` |
|
|
41
|
+
| `my-` | ~80 | `my-0` to `my-96`, `my-auto`, `my-1/2`, `my-px` |
|
|
42
|
+
| `p-` | ~80 | `p-0` to `p-96`, `p-auto`, `p-1/2`, `p-px` |
|
|
43
|
+
| `pt-` | ~80 | `pt-0` to `pt-96`, `pt-auto`, `pt-1/2`, `pt-px` |
|
|
44
|
+
| `pb-` | ~80 | `pb-0` to `pb-96`, `pb-auto`, `pb-1/2`, `pb-px` |
|
|
45
|
+
| `pl-` | ~80 | `pl-0` to `pl-96`, `pl-auto`, `pl-1/2`, `pl-px` |
|
|
46
|
+
| `pr-` | ~80 | `pr-0` to `pr-96`, `pr-auto`, `pr-1/2`, `pr-px` |
|
|
47
|
+
| `px-` | ~80 | `px-0` to `px-96`, `px-auto`, `px-1/2`, `px-px` |
|
|
48
|
+
| `py-` | ~80 | `py-0` to `py-96`, `py-auto`, `py-1/2`, `py-px` |
|
|
49
|
+
| `gap-` | ~60 | `gap-0` to `gap-96`, `gap-px`, fractions |
|
|
50
|
+
| `padding-*` | ~155 | `padding-top-*`, `padding-bottom-*`, etc. |
|
|
51
|
+
|
|
52
|
+
### Positioning
|
|
53
|
+
|
|
54
|
+
| Prefix | Count | Examples |
|
|
55
|
+
| --- | --- | --- |
|
|
56
|
+
| `top-` | ~60 | `top-0` to `top-96`, `top-auto`, `top-1/2`, `top-px` |
|
|
57
|
+
| `right-` | ~60 | `right-0` to `right-96`, `right-auto`, `right-1/2`, `right-px` |
|
|
58
|
+
| `bottom-` | ~60 | `bottom-0` to `bottom-96`, `bottom-auto`, `bottom-1/2`, `bottom-px` |
|
|
59
|
+
| `left-` | ~60 | `left-0` to `left-96`, `left-auto`, `left-1/2`, `left-px` |
|
|
60
|
+
| `inset-*` | ~20 | `inset-*` (all sides) |
|
|
61
|
+
| `position-*` | ~5 | Various position utilities |
|
|
62
|
+
|
|
63
|
+
### Colors (Background)
|
|
64
|
+
|
|
65
|
+
| Prefix | Count | Examples |
|
|
66
|
+
| --- | --- | --- |
|
|
67
|
+
| `bg-` | **1,688** | `bg-white`, `bg-gray-*` (50-950), all 22 Tailwind colors. Each color has 11 shades: 50, 100, 200, 300, 400, 500, 600, 700, 800, 900, 950. Plus: `bg-black`, `bg-white`, `bg-transparent`, `bg-translucent` |
|
|
68
|
+
| `active-tint-*` | ~24 | `active-tint-*` (all colors) |
|
|
69
|
+
| `selected-bg-*` | ~264 | `selected-bg-*` (selected state backgrounds) |
|
|
70
|
+
| `badge-bg-*` | ~264 | `badge-bg-*` (badge backgrounds) |
|
|
71
|
+
| `title-bg-*` | ~264 | `title-bg-*` (title backgrounds) |
|
|
72
|
+
| `tabs-bg-*` | ~264 | `tabs-bg-*` (tab backgrounds) |
|
|
73
|
+
| `keyboard-toolbar-*` | ~285 | `keyboard-toolbar-*` colors + heights |
|
|
74
|
+
| `thumb-*` | ~264 | `thumb-*` colors (sliders) |
|
|
75
|
+
| `track-*` | ~264 | `track-*` colors (sliders) |
|
|
76
|
+
| `status-bar-bg-*` | ~264 | `status-bar-bg-*` (status bar) |
|
|
77
|
+
| `nav-*` | ~492 | `nav-bg-*`, `nav-tint-*` (navigation) |
|
|
78
|
+
| `tint-*` | ~490 | `tint-*` colors (UI tinting) |
|
|
79
|
+
| `placeholder-*` | ~245 | `placeholder-*` colors |
|
|
80
|
+
| `hint-*` | ~247 | `hint-*` colors |
|
|
81
|
+
| `subtitle-*` | ~490 | `subtitle-*` colors |
|
|
82
|
+
| `bar-*` | ~245 | `bar-bg-*`, `bar-color-*` |
|
|
83
|
+
| `separator-*` | ~278 | `separator-*` colors |
|
|
84
|
+
| `indicator-*` | ~245 | `indicator-*` colors |
|
|
85
|
+
| `disabled-*` | ~245 | `disabled-*` colors (disabled state) |
|
|
86
|
+
| `highlighted-*` | ~245 | `highlighted-*` colors |
|
|
87
|
+
|
|
88
|
+
### Colors (Text & Foreground)
|
|
89
|
+
|
|
90
|
+
| Prefix | Count | Examples |
|
|
91
|
+
| --- | --- | --- |
|
|
92
|
+
| `text-` | **273** | `text-white`, `text-gray-*` (50-950), `text-center/left/right`. Text sizes: `text-xs`, `text-sm`, `text-base`, `text-lg`, `text-xl` |
|
|
93
|
+
| `title-*` | **1,019** | `title-*`, `title-attributes-*`, `title-color-*` |
|
|
94
|
+
| `selected-*` | **1,471** | `selected-*`, `selected-bg-*`, `selected-color-*` |
|
|
95
|
+
| `badge-*` | **735** | `badge-*`, `badge-bg-*`, `badge-color-*` |
|
|
96
|
+
| `colors-*` | ~245 | `colors-*` (picker colors) |
|
|
97
|
+
| `color-*` | ~245 | `color-*` variants |
|
|
98
|
+
|
|
99
|
+
### Borders & Radius
|
|
100
|
+
|
|
101
|
+
| Prefix | Count | Examples |
|
|
102
|
+
| --- | --- | --- |
|
|
103
|
+
| `border-` | **303** | `border-0`, `border-(1)`, `border-gray-*` colors. `border-t-*`, `border-r-*`, `border-b-*`, `border-l-*` |
|
|
104
|
+
| `rounded-*` | **455** | `rounded-none`, `rounded-sm`, `rounded-lg`. `rounded-full-*` (with size: `rounded-full-12`). `rounded-t-*`, `rounded-r-*`, `rounded-b-*`, `rounded-l-*` |
|
|
105
|
+
|
|
106
|
+
### Typography
|
|
107
|
+
|
|
108
|
+
| Prefix | Count | Examples |
|
|
109
|
+
| --- | --- | --- |
|
|
110
|
+
| `text-*` | 273 | Text colors, sizes, alignment |
|
|
111
|
+
| `font-*` | 9 | `font-thin`, `font-light`, `font-normal`, `font-medium`, `font-semibold`, `font-bold`, `font-extrabold`, `font-black` |
|
|
112
|
+
| `line-h-multiple-*` | ~85 | Line height as multiple |
|
|
113
|
+
| `line-spacing-*` | ~85 | Line spacing |
|
|
114
|
+
| `line-break-mode-*` | 7 | `line-break-mode-attribute-by-word-wrapping`, etc. |
|
|
115
|
+
| `letter-spacing-*` | ~85 | Letter spacing values |
|
|
116
|
+
| `paragraph-spacing-*` | ~120 | Paragraph spacing |
|
|
117
|
+
| `ellipsize-*` | ~18 | `ellipsize-*` (text truncation) |
|
|
118
|
+
|
|
119
|
+
### Accessibility
|
|
120
|
+
|
|
121
|
+
| Prefix | Count | Examples |
|
|
122
|
+
| --- | --- | --- |
|
|
123
|
+
| `accessibility-*` | 7 | `accessibility-enabled`, `accessibility-enabled-false`, `accessibility-hidden`, `accessibility-hidden-false`, `accessibility-disable-long-press`, `accessibility-disable-long-press-false` |
|
|
124
|
+
|
|
125
|
+
### Input & Keyboard
|
|
126
|
+
|
|
127
|
+
| Prefix | Count | Examples |
|
|
128
|
+
| --- | --- | --- |
|
|
129
|
+
| `keyboard-*` | **297** | `keyboard-type-*`, `keyboard-appearance-*` |
|
|
130
|
+
| `keyboard-type-*` | 11 | `email`, `number-pad`, `phone-pad`, `url`, `decimal-pad`, `twitter`, `websearch`, `ascii`, `namephone-pad`, `numbers-punctuation` |
|
|
131
|
+
| `return-key-type-*` | 12 | `next`, `done`, `go`, `search`, `send`, `continue`, `route`, `join`, `yahoo`, `google`, `emergency-call`, `returnkey` |
|
|
132
|
+
| `keyboard-appearance-*` | 3 | `keyboard-appearance`, `dark`, `light` |
|
|
133
|
+
| `keyboard-toolbar-*` | ~285 | `keyboard-toolbar-*` (colors, heights) |
|
|
134
|
+
| `keyboard-visible-*` | 2 | `keyboard-visible`, `keyboard-visible-false` |
|
|
135
|
+
| `autocapitalization-*` | 4 | `autocapitalization-text-all`, `text-none`, `text-sentences`, `text-words` |
|
|
136
|
+
| `autocorrect` | 2 | `autocorrect`, `autocorrect-false` |
|
|
137
|
+
| `autofill-*` | 32 | `autofill-*` variants |
|
|
138
|
+
|
|
139
|
+
### Boolean & State Classes
|
|
140
|
+
|
|
141
|
+
| Property | Classes | Pattern |
|
|
142
|
+
| --- | --- | --- |
|
|
143
|
+
| `editable` | `editable`, `editable-false` | Boolean |
|
|
144
|
+
| `enabled` | `enabled`, `enabled-false` | Boolean |
|
|
145
|
+
| `visible` | `visible`, `visible-false`, `hidden` | Boolean |
|
|
146
|
+
| `selectable` | `selectable`, `selectable-false` | Boolean |
|
|
147
|
+
| `scrolling` | `scrolling-enabled`, `scrolling-enabled-false` | Boolean |
|
|
148
|
+
| `scrollable` | `scrollable` | Boolean |
|
|
149
|
+
| `zoom` | `zoom-enabled`, `zoom-enabled-false` | Boolean |
|
|
150
|
+
| `touch` | `touch-enabled`, `touch-enabled-false` | Boolean |
|
|
151
|
+
| `clip` | `clip-enabled`, `clip-enabled-false` | Boolean (iOS) |
|
|
152
|
+
| `interactive-dismiss` | `interactive-dismiss-mode-enabled`, `*-false` | Boolean (iOS) |
|
|
153
|
+
| `large-title` | `large-title-enabled`, `large-title-enabled-false` | Boolean (iOS). Must pair with `extend-edges-all` and `auto-adjust-scroll-view-insets` when using ScrollView — see [apply-directive.md](apply-directive.md) Community-Discovered Patterns |
|
|
154
|
+
| `overlay` | `overlay-enabled`, `overlay-enabled-false` | Boolean (iOS) |
|
|
155
|
+
| `toolbar` | `toolbar-enabled`, `toolbar-enabled-false` | Boolean |
|
|
156
|
+
| `submit` | `submit-enabled`, `submit-enabled-false` | Boolean |
|
|
157
|
+
| `active` | `active`, `active-false` | Boolean |
|
|
158
|
+
| `animated` | `animated` | Boolean |
|
|
159
|
+
| `focusable` | `focusable` | Boolean |
|
|
160
|
+
| `hidden` | `hidden` | Boolean (alias for `visible-false`) |
|
|
161
|
+
| `hires` | `hires` | Boolean |
|
|
162
|
+
| `modal` | `modal` | Boolean |
|
|
163
|
+
| `persistent` | `persistent` | Boolean |
|
|
164
|
+
| `running` | `running` | Boolean |
|
|
165
|
+
| `translucent` | `translucent` | Boolean |
|
|
166
|
+
| `transparent` | `transparent` | Boolean |
|
|
167
|
+
|
|
168
|
+
### Text Transformation
|
|
169
|
+
|
|
170
|
+
| Class | Property | Value |
|
|
171
|
+
| --- | --- | --- |
|
|
172
|
+
| `uppercase` | autocapitalization | TEXT_AUTOCAPITALIZATION_ALL |
|
|
173
|
+
| `capitalize` | autocapitalization | TEXT_AUTOCAPITALIZATION_WORDS |
|
|
174
|
+
| `sentences` | autocapitalization | TEXT_AUTOCAPITALIZATION_SENTENCES |
|
|
175
|
+
| `normal-case` | autocapitalization | TEXT_AUTOCAPITALIZATION_NONE |
|
|
176
|
+
|
|
177
|
+
### Opacity
|
|
178
|
+
|
|
179
|
+
| Pattern | Examples |
|
|
180
|
+
| --- | --- |
|
|
181
|
+
| `opacity-*` | `opacity-0`, `opacity-5`, `opacity-10` ... `opacity-100` (23 classes). Also: `opacity-to-0`, `opacity-to-100` |
|
|
182
|
+
|
|
183
|
+
### Transformation & Animation
|
|
184
|
+
|
|
185
|
+
| Prefix | Count | Examples |
|
|
186
|
+
| --- | --- | --- |
|
|
187
|
+
| `rotate-*` | 14 | `rotate-0`, `rotate-1`, `rotate-2`, `rotate-3`, `rotate-6`, `rotate-12`, `rotate-45`, `rotate-90`, `rotate-135`, `rotate-180`, `rotate-225`, `rotate-270`, `rotate-315`, `rotate-360` |
|
|
188
|
+
| `scale-*` | 15 | `scale-0`, `scale-5` to `scale-200` |
|
|
189
|
+
| `scale-x-*` | 15 | `scale-x-0`, `scale-x-5` to `scale-x-200` |
|
|
190
|
+
| `scale-y-*` | 15 | `scale-y-0`, `scale-y-5` to `scale-y-200` |
|
|
191
|
+
| `origin-*` | ~9 | `origin-center`, `origin-top-left`, etc. |
|
|
192
|
+
| `duration-*` | 22 | `duration-0`, `duration-50` to `duration-5000` |
|
|
193
|
+
| `delay-*` | 22 | `delay-0`, `delay-50` to `delay-5000` |
|
|
194
|
+
| `repeat-*` | ~31 | `repeat-*` variants |
|
|
195
|
+
|
|
196
|
+
### Shadows & Elevation
|
|
197
|
+
|
|
198
|
+
| Prefix | Count | Examples |
|
|
199
|
+
| --- | --- | --- |
|
|
200
|
+
| `shadow-*` | **285** | `shadow-none`, `shadow-sm`, `shadow-md`, `shadow-lg`, `shadow-xl`, `shadow-2xl`, `shadow-xs`, `shadow-inner`, `shadow-outline`. `shadow-*` (all colors), `shadow-radius-*` |
|
|
201
|
+
| `elevation-*` | 29 | `elevation-0` to `elevation-96` (Android only). `elevation-px` |
|
|
202
|
+
|
|
203
|
+
### Z-Index & Overflow
|
|
204
|
+
|
|
205
|
+
| Prefix | Count | Examples |
|
|
206
|
+
| --- | --- | --- |
|
|
207
|
+
| `z-index-*` | 6 | `z-index-0` to `z-index-50` |
|
|
208
|
+
| `overflow-*` | 6 | `overflow-hidden`, `overflow-scroll`, `overflow-x-hidden`, `overflow-x-scroll`, `overflow-y-hidden`, `overflow-y-scroll` |
|
|
209
|
+
|
|
210
|
+
### Status Bar & Navigation
|
|
211
|
+
|
|
212
|
+
| Prefix | Count | Examples |
|
|
213
|
+
| --- | --- | --- |
|
|
214
|
+
| `status-bar-*` | **563** | `status-bar-*`, `status-bar-bg-*` (all colors) |
|
|
215
|
+
| `tabs-*` | **492** | `tabs-bg-*`, `tabs-tint-*` |
|
|
216
|
+
| `nav-*` | **492** | `nav-bg-*`, `nav-tint-*` |
|
|
217
|
+
|
|
218
|
+
### UI Component States
|
|
219
|
+
|
|
220
|
+
| Prefix | Count | Examples |
|
|
221
|
+
| --- | --- | --- |
|
|
222
|
+
| `selected-*` | **1,471** | `selected-*`, `selected-bg-*`, `selected-color-*` (all colors) |
|
|
223
|
+
| `badge-*` | **735** | `badge-*`, `badge-bg-*`, `badge-color-*` |
|
|
224
|
+
| `title-*` | **1,019** | `title-*`, `title-attributes-*`, `title-bg-*` |
|
|
225
|
+
| `disabled-*` | **245** | `disabled-*`, `disabled-bg-*`, `disabled-color-*` |
|
|
226
|
+
| `highlighted-*` | **245** | `highlighted-*` colors |
|
|
227
|
+
| `pull-*` | **245** | `pull-*` (pull-to-refresh colors) |
|
|
228
|
+
| `results-*` | **492** | `results-*` (search results styling) |
|
|
229
|
+
| `on-*` | **490** | `on-*` (switch/toggle "on" state) |
|
|
230
|
+
|
|
231
|
+
### Display & Sizing
|
|
232
|
+
|
|
233
|
+
| Prefix | Count | Examples |
|
|
234
|
+
| --- | --- | --- |
|
|
235
|
+
| `display-*` | ~5 | `display-*` variants |
|
|
236
|
+
| `size-*` | ~60 | `size-*` (component sizing) |
|
|
237
|
+
| `min-*` | ~73 | `minimum-*`, `min-*` (minimum sizes) |
|
|
238
|
+
| `max-*` | ~91 | `maximum-*`, `max-*` (maximum sizes) |
|
|
239
|
+
|
|
240
|
+
### Media & Video
|
|
241
|
+
|
|
242
|
+
| Prefix | Count | Examples |
|
|
243
|
+
| --- | --- | --- |
|
|
244
|
+
| `media-*` | ~23 | `media-*` (media control styling) |
|
|
245
|
+
| `video-*` | ~5 | `video-*` properties |
|
|
246
|
+
| `audio-*` | ~15 | `audio-*` properties |
|
|
247
|
+
| `picture-*` | ~5 | `picture-*` properties |
|
|
248
|
+
|
|
249
|
+
### Other Special Prefixes
|
|
250
|
+
|
|
251
|
+
| Prefix | Count | Usage |
|
|
252
|
+
| --- | --- | --- |
|
|
253
|
+
| `allows-*` | ~14 | `allows-*`, `allows-*-*-false` (permissions) |
|
|
254
|
+
| `can-*` | ~14 | `can-*` (capability queries) |
|
|
255
|
+
| `has-*` | ~12 | `has-*` (state queries) |
|
|
256
|
+
| `is-*` | ~26 | `is-*` (state queries) |
|
|
257
|
+
| `no-*` | ~10 | `no-*` (negations) |
|
|
258
|
+
| `show-*` | ~30 | `show-*`, `shows-*` (visibility control) |
|
|
259
|
+
| `hide-*` | ~10 | `hide-*`, `hides-*` (visibility control) |
|
|
260
|
+
| `cache-*` | ~15 | `cache-*` (caching behavior) |
|
|
261
|
+
| `autohide` | 2 | `autohide`, `autohide-false` |
|
|
262
|
+
| `autoplay` | 2 | `autoplay`, `autoplay-false` |
|
|
263
|
+
| `autoreverse` | 2 | `autoreverse`, `autoreverse-false` |
|
|
264
|
+
| `timeout-*` | ~22 | `timeout-*` (timeout values) |
|
|
265
|
+
| `from-*` | ~245 | `from-*` (gradient/animation from states) |
|
|
266
|
+
| `to-*` | ~245 | `to-*` (gradient/animation to states) |
|
|
267
|
+
| `ease-*` | ~5 | `ease-*` (easing functions) |
|
|
268
|
+
| `curve-*` | ~5 | `curve-*` (animation curves) |
|
|
269
|
+
| `mode-*` | ~31 | `mode-*` (display/interaction modes) |
|
|
270
|
+
| `state-*` | ~16 | `state-*` (UI states) |
|
|
271
|
+
| `style-*` | ~14 | `style-*` (style variants) |
|
|
272
|
+
| `login-*` | ~26 | `login-*` (login-related) |
|
|
273
|
+
| `section-*` | ~31 | `section-*` (list sections) |
|
|
274
|
+
| `indention-*` | ~31 | `indention-*` (text indention) |
|
|
275
|
+
| `target-*` | ~120 | `target-*` (action targets) |
|
|
276
|
+
| `view-*` | ~245 | `view-*` (view properties) |
|
|
277
|
+
| `scroll-*` | ~20 | `scroll-*` (scroll behavior) |
|