@maccesar/titools 3.2.0 → 4.0.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 +27 -61
- package/lib/cleanup.js +29 -0
- package/lib/commands/agents.js +8 -7
- package/lib/commands/skills.js +118 -23
- package/lib/config.js +13 -15
- package/lib/installer.js +5 -3
- package/lib/utils.js +36 -0
- package/package.json +1 -1
- package/skills/alloy-guides/SKILL.md +188 -0
- package/skills/alloy-guides/references/CLI_TASKS.md +233 -0
- package/skills/alloy-guides/references/CONCEPTS.md +171 -0
- package/skills/alloy-guides/references/CONTROLLERS.md +279 -0
- package/skills/alloy-guides/references/MODELS.md +742 -0
- package/skills/alloy-guides/references/MODELS_ADVANCED.md +482 -0
- package/skills/alloy-guides/references/PURGETSS.md +57 -0
- package/skills/alloy-guides/references/VIEWS_DYNAMIC.md +235 -0
- package/skills/alloy-guides/references/VIEWS_STYLES.md +375 -0
- package/skills/alloy-guides/references/VIEWS_WITHOUT_CONTROLLERS.md +102 -0
- package/skills/alloy-guides/references/VIEWS_XML.md +581 -0
- package/skills/alloy-guides/references/WIDGETS.md +160 -0
- package/skills/alloy-howtos/SKILL.md +179 -0
- package/skills/alloy-howtos/references/best_practices.md +121 -0
- package/skills/alloy-howtos/references/cli_reference.md +230 -0
- package/skills/alloy-howtos/references/config_files.md +158 -0
- package/skills/alloy-howtos/references/custom_tags.md +148 -0
- package/skills/alloy-howtos/references/debugging_troubleshooting.md +78 -0
- package/skills/alloy-howtos/references/samples.md +156 -0
- package/skills/purgetss/SKILL.md +184 -181
- package/skills/purgetss/references/EXAMPLES.md +8 -6
- package/skills/purgetss/references/app-branding.md +5 -0
- package/skills/purgetss/references/apply-directive.md +1 -1
- package/skills/purgetss/references/class-categories.md +1 -1
- package/skills/purgetss/references/class-index-properties.md +618 -0
- package/skills/purgetss/references/class-index.md +4 -610
- package/skills/purgetss/references/cli-commands.md +41 -410
- package/skills/purgetss/references/custom-fonts.md +292 -0
- package/skills/purgetss/references/custom-rules.md +1 -1
- package/skills/purgetss/references/customization-deep-dive.md +64 -1
- package/skills/purgetss/references/icon-fonts.md +208 -118
- package/skills/purgetss/references/installation-setup.md +4 -4
- package/skills/purgetss/references/migration-guide.md +53 -1
- package/skills/purgetss/references/multi-density-images.md +53 -2
- package/skills/purgetss/references/svg-pipeline.md +249 -0
- package/skills/purgetss/references/tikit-components.md +2 -2
- package/skills/purgetss/references/titanium-resets.md +2 -2
- package/skills/purgetss/references/ui-ux-design.md +7 -5
- package/skills/purgetss/references/version-history.md +71 -82
- package/skills/ti-api/SKILL.md +128 -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-guides/SKILL.md +82 -0
- package/skills/ti-guides/references/advanced-data-and-images.md +155 -0
- package/skills/ti-guides/references/android-manifest.md +97 -0
- package/skills/ti-guides/references/app-distribution.md +373 -0
- package/skills/ti-guides/references/application-frameworks.md +366 -0
- package/skills/ti-guides/references/cli-reference.md +700 -0
- package/skills/ti-guides/references/coding-best-practices.md +150 -0
- package/skills/ti-guides/references/commonjs-advanced.md +279 -0
- package/skills/ti-guides/references/hello-world.md +99 -0
- package/skills/ti-guides/references/hyperloop-native-access.md +458 -0
- package/skills/ti-guides/references/javascript-primer.md +402 -0
- package/skills/ti-guides/references/reserved-words.md +36 -0
- package/skills/ti-guides/references/resources.md +172 -0
- package/skills/ti-guides/references/style-and-conventions.md +104 -0
- package/skills/ti-guides/references/tiapp-config.md +655 -0
- package/skills/ti-howtos/SKILL.md +131 -0
- package/skills/ti-howtos/references/android-platform-deep-dives.md +609 -0
- package/skills/ti-howtos/references/automation-fastlane-appium.md +96 -0
- package/skills/ti-howtos/references/buffer-codec-streams.md +162 -0
- package/skills/ti-howtos/references/cross-platform-development.md +358 -0
- package/skills/ti-howtos/references/debugging-profiling.md +473 -0
- package/skills/ti-howtos/references/extending-titanium.md +684 -0
- package/skills/ti-howtos/references/google-maps-v2.md +172 -0
- package/skills/ti-howtos/references/ios-map-kit.md +149 -0
- package/skills/ti-howtos/references/ios-platform-deep-dives.md +595 -0
- package/skills/ti-howtos/references/local-data-sources.md +310 -0
- package/skills/ti-howtos/references/location-and-maps.md +267 -0
- package/skills/ti-howtos/references/media-apis.md +268 -0
- package/skills/ti-howtos/references/notification-services.md +539 -0
- package/skills/ti-howtos/references/remote-data-sources.md +339 -0
- package/skills/ti-howtos/references/tutorials.md +552 -0
- package/skills/ti-howtos/references/using-modules.md +182 -0
- package/skills/ti-howtos/references/web-content-integration.md +288 -0
- package/skills/ti-howtos/references/webpack-build-pipeline.md +125 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# PurgeTSS Class Index
|
|
2
2
|
|
|
3
|
-
**Based on the actual PurgeTSS `utilities.tss` file -
|
|
3
|
+
**Based on the actual PurgeTSS `utilities.tss` file - 23,000+ unique utility classes across 364 unique prefixes covering 416 Titanium properties** (class count grows with each Titanium SDK / Font Awesome release; prefix and property counts are stable)
|
|
4
4
|
|
|
5
5
|
Before suggesting ANY class, verify it exists:
|
|
6
6
|
```bash
|
|
@@ -144,620 +144,14 @@ Some PurgeTSS classes combine multiple Titanium properties under a single class
|
|
|
144
144
|
| `w-*` | `width` | All components |
|
|
145
145
|
| `wh-*` | `width`, `height` | Combined width/height |
|
|
146
146
|
|
|
147
|
+
|
|
147
148
|
---
|
|
148
149
|
|
|
149
150
|
## All 416 Titanium Properties with Classes
|
|
150
151
|
|
|
151
|
-
The
|
|
152
|
-
|
|
153
|
-
### A-E
|
|
154
|
-
|
|
155
|
-
| Property | Class Prefix | Notes |
|
|
156
|
-
| ---------------------------------------- | ----------------------------------------------------------------------------- | ---------------------------------------- |
|
|
157
|
-
| `accessibilityDisableLongPress` | `accessibility-disable-long-press` | Boolean |
|
|
158
|
-
| `accessibilityEnabled` | `accessibility-enabled` | Boolean |
|
|
159
|
-
| `accessibilityHidden` | `accessibility-hidden` | Boolean |
|
|
160
|
-
| `accessoryType` | `accessory-type` | ListView/TableView |
|
|
161
|
-
| `accuracy` | `accuracy` | Location |
|
|
162
|
-
| `accuracyAuthorization` | `accuracy-authorization` | Location |
|
|
163
|
-
| `actionViewExpanded` | `action-view-expanded` | iOS |
|
|
164
|
-
| `activationMode` | `activation-mode` | Notifications |
|
|
165
|
-
| `active` | `active` | Boolean |
|
|
166
|
-
| `activeIconIsMask` | `active-icon-is-mask` | Tabs |
|
|
167
|
-
| `activeTab` | `active-tab` | Tabs |
|
|
168
|
-
| `activeTintColor` | `active-tint-*` | Color variants |
|
|
169
|
-
| `activeTitleColor` | `active-title-*` | Color variants |
|
|
170
|
-
| `activityEnterTransition` | `activity-enter-transition` | Android |
|
|
171
|
-
| `activityExitTransition` | `activity-exit-transition` | Android |
|
|
172
|
-
| `activityReenterTransition` | `activity-reenter-transition` | Android |
|
|
173
|
-
| `activityReturnTransition` | `activity-return-transition` | Android |
|
|
174
|
-
| `activitySharedElementEnterTransition` | `activity-shared-element-enter-transition` | Android |
|
|
175
|
-
| `activitySharedElementExitTransition` | `activity-shared-element-exit-transition` | Android |
|
|
176
|
-
| `activitySharedElementReenterTransition` | `activity-shared-element-reenter-transition` | Android |
|
|
177
|
-
| `activitySharedElementReturnTransition` | `activity-shared-element-return-transition` | Android |
|
|
178
|
-
| `activityType` | `activity-type` | Android |
|
|
179
|
-
| `alertSetting` | `alert-setting` | Notifications |
|
|
180
|
-
| `alertStyle` | `alert-style` | AlertDialog |
|
|
181
|
-
| `alignment` | `alignment` | Text alignment |
|
|
182
|
-
| `allDay` | `all-day` | Calendar events |
|
|
183
|
-
| `allowBackground` | `allow-background` | Android |
|
|
184
|
-
| `allowCreation` | `allow-creation` | Contacts |
|
|
185
|
-
| `allowEditing` | `allow-editing` | Calendar events |
|
|
186
|
-
| `allowFileAccess` | `allow-file-access` | WebView |
|
|
187
|
-
| `allowMultiple` | `allow-multiple` | Media picker |
|
|
188
|
-
| `allowMultipleSelections` | `allow-multiple-selections` | Picker |
|
|
189
|
-
| `allowsAirPlay` | `allows-air-play` | Video player |
|
|
190
|
-
| `allowsBackForwardNavigationGestures` | `allows-back-forward-navigation-gestures` | iOS WebView |
|
|
191
|
-
| `allowsBackgroundLocationUpdates` | `allows-background-location-updates` | Location |
|
|
192
|
-
| `allowsDefaultTighteningForTruncation` | `allows-default-tightening-for-truncation` | Label |
|
|
193
|
-
| `allowsExternalPlayback` | `allows-external-playback` | Video player |
|
|
194
|
-
| `allowsInlineMediaPlayback` | `allows-inline-media-playback` | iOS WebView |
|
|
195
|
-
| `allowsLinkPreview` | `allows-link-preview` | iOS |
|
|
196
|
-
| `allowsMultipleSelectionDuringEditing` | `allows-multiple-selection-during-editing` | ListView |
|
|
197
|
-
| `allowsMultipleSelectionInteraction` | `allows-multiple-selection-interaction` | iOS |
|
|
198
|
-
| `allowsPictureInPictureMediaPlayback` | `allows-picture-in-picture-media-playback` | iOS Video |
|
|
199
|
-
| `allowsRotation` | `allows-rotation` | Video player |
|
|
200
|
-
| `allowsSelection` | `allows-selection` | ListView |
|
|
201
|
-
| `allowsSelectionDuringEditing` | `allows-selection-during-editing` | iOS |
|
|
202
|
-
| `allowTranscoding` | `allow-transcoding` | Media picker |
|
|
203
|
-
| `allowUserCustomization` | `allow-user-customization` | Toolbar |
|
|
204
|
-
| `animated` | `animated` | Boolean |
|
|
205
|
-
| `animationStyle` | `animation-style` | Navigation |
|
|
206
|
-
| `appSupportsShakeToEdit` | `app-supports-shake-to-edit` | iOS |
|
|
207
|
-
| `arrowDirection` | `arrow-direction` | Popover |
|
|
208
|
-
| `aspectRatio` | `aspect-ratio` | `aspect-ratio-16-9`, `aspect-ratio-4-3` |
|
|
209
|
-
| `audioFocus` | `audio-focus` | Audio player |
|
|
210
|
-
| `audioPlaying` | `audio-playing` | Boolean |
|
|
211
|
-
| `audioSessionCategory` | `audio-session-category` | Audio player |
|
|
212
|
-
| `audioStreamType` | `audio-stream-type` | Android Audio |
|
|
213
|
-
| `audioType` | `audio-type` | Audio player |
|
|
214
|
-
| `authenticationRequired` | `authentication-required` | Notifications |
|
|
215
|
-
| `authorizationStatus` | `authorization-status` | Location/Permissions |
|
|
216
|
-
| `autoAdjustScrollViewInsets` | `auto-adjust-scroll-view-insets` | iOS |
|
|
217
|
-
| `autocapitalization` | `autocapitalization-*`, `uppercase`, `capitalize`, `sentences`, `normal-case` | TextField |
|
|
218
|
-
| `autocorrect` | `autocorrect`, `autocorrect-false` | TextField |
|
|
219
|
-
| `autoEncodeUrl` | `auto-encode-url` | WebView |
|
|
220
|
-
| `autofillType` | `autofill-type` | TextField |
|
|
221
|
-
| `autohide` | `autohide`, `autohide-false` | Various |
|
|
222
|
-
| `autoHide` | `auto-hide` | ScrollView |
|
|
223
|
-
| `autoLink` | `auto-link` | Label (phone, email, web, address, etc.) |
|
|
224
|
-
| `autoplay` | `autoplay`, `autoplay-false` | Video player |
|
|
225
|
-
| `autoRedirect` | `auto-redirect` | WebView |
|
|
226
|
-
| `autorepeat` | `autorepeat`, `autorepeat-false` | Button |
|
|
227
|
-
| `autoreverse` | `autoreverse`, `autoreverse-false` | Animation |
|
|
228
|
-
| `autorotate` | `autorotate`, `autorotate-false` | Video/Window |
|
|
229
|
-
| `autoSize` | `auto-size` | TextArea |
|
|
230
|
-
| `autoTabTitle` | `auto-tab-title` | Tab |
|
|
231
|
-
| `availability` | `availability` | Calendar events |
|
|
232
|
-
| `availableCameraMediaTypes` | `available-camera-media-types` | Media picker |
|
|
233
|
-
| `availableCameras` | `available-cameras` | Camera |
|
|
234
|
-
| `availablePhotoGalleryMediaTypes` | `available-photo-gallery-media-types` | Media picker |
|
|
235
|
-
| `availablePhotoMediaTypes` | `available-photo-media-types` | Media picker |
|
|
236
|
-
| `backfillEnd` | `backfill-end` | Picker |
|
|
237
|
-
| `backfillStart` | `backfill-start` | Picker |
|
|
238
|
-
| `backgroundColor` | `bg-*` | All components |
|
|
239
|
-
| `backgroundDisabledColor` | `background-disabled-*` | Button |
|
|
240
|
-
| `backgroundFocusedColor` | `background-focused-*` | Button |
|
|
241
|
-
| `backgroundLeftCap` | `background-left-cap` | ImageView |
|
|
242
|
-
| `backgroundPaddingBottom` | `background-padding-bottom` | ImageView |
|
|
243
|
-
| `backgroundPaddingLeft` | `background-padding-left` | ImageView |
|
|
244
|
-
| `backgroundPaddingRight` | `background-padding-right` | ImageView |
|
|
245
|
-
| `backgroundPaddingTop` | `background-padding-top` | ImageView |
|
|
246
|
-
| `backgroundRepeat` | `background-repeat` | ImageView |
|
|
247
|
-
| `backgroundSelectedColor` | `background-selected-*` | Button/TableView |
|
|
248
|
-
| `backgroundTopCap` | `background-top-cap` | ImageView |
|
|
249
|
-
| `backward` | `backward` | Boolean |
|
|
250
|
-
| `badgeBackgroundColor` | `badge-bg-*` | Tab/Button |
|
|
251
|
-
| `badgeColor` | `badge-color-*` | Tab |
|
|
252
|
-
| `badgeSetting` | `badge-setting` | Notifications |
|
|
253
|
-
| `badgeTextColor` | `badge-text-*` | Tab |
|
|
254
|
-
| `barColor` | `bar-color-*` | ProgressBar/Slider |
|
|
255
|
-
| `batteryMonitoring` | `battery-monitoring` | Battery |
|
|
256
|
-
| `behavior` | `behavior` | Various |
|
|
257
|
-
| `borderColor` | `border-*` | View |
|
|
258
|
-
| `borderRadius` | `rounded-*` | View |
|
|
259
|
-
| `borderStyle` | `border-style` | TextField |
|
|
260
|
-
| `borderWidth` | `border-*` | View |
|
|
261
|
-
| `bottom` | `bottom-*` | Positioning |
|
|
262
|
-
| `breakStrategy` | `break-strategy` | Android TextView |
|
|
263
|
-
| `bubbleParent` | `bubble-parent` | Event propagation |
|
|
264
|
-
| `bubbles` | `bubbles` | Event propagation |
|
|
265
|
-
| `buttonClickRequired` | `button-click-required` | Switch |
|
|
266
|
-
| `bypassDnd` | `bypass-dnd` | Notifications Android |
|
|
267
|
-
| `cache` | `cache` | Various |
|
|
268
|
-
| `cacheMode` | `cache-mode` | Image loading |
|
|
269
|
-
| `cachePolicy` | `cache-policy` | HTTP client |
|
|
270
|
-
| `cacheSize` | `cache-size` | Image loading |
|
|
271
|
-
| `calendarAuthorization` | `calendar-authorization` | Calendar |
|
|
272
|
-
| `calendarViewShown` | `calendar-view-shown` | DatePicker |
|
|
273
|
-
| `cameraAuthorization` | `camera-authorization` | Camera |
|
|
274
|
-
| `cameraFlashMode` | `camera-flash-mode` | Camera |
|
|
275
|
-
| `canCancelEvents` | `can-cancel-events` | Event handling |
|
|
276
|
-
| `cancelable` | `cancelable` | Boolean |
|
|
277
|
-
| `cancelBubble` | `cancel-bubble` | Event propagation |
|
|
278
|
-
| `canceledOnTouchOutside` | `canceled-on-touch-outside` | Dialog |
|
|
279
|
-
| `canDelete` | `can-delete` | TableView |
|
|
280
|
-
| `canEdit` | `can-edit` | TableView |
|
|
281
|
-
| `canInsert` | `can-insert` | TableView |
|
|
282
|
-
| `canMove` | `can-move` | TableView |
|
|
283
|
-
| `canRecord` | `can-record` | Audio recording |
|
|
284
|
-
| `canScroll` | `can-scroll` | ScrollView |
|
|
285
|
-
| `carPlaySetting` | `car-play-setting` | Notifications iOS |
|
|
286
|
-
| `caseInsensitiveSearch` | `case-insensitive-search` | SearchBar |
|
|
287
|
-
| `caseSensitive` | `case-sensitive` | TextField |
|
|
288
|
-
| `category` | `category` | Notifications |
|
|
289
|
-
| `charset` | `charset` | WebView |
|
|
290
|
-
| `checkable` | `checkable` | Boolean |
|
|
291
|
-
| `checked` | `checked` | Boolean |
|
|
292
|
-
| `clearButtonMode` | `clear-button-mode` | TextField |
|
|
293
|
-
| `clearOnEdit` | `clear-on-edit` | TextField |
|
|
294
|
-
| `clipViews` | `clip-views` | ScrollView |
|
|
295
|
-
| `closed` | `closed` | Boolean |
|
|
296
|
-
| `code` | `code` | Option dialog |
|
|
297
|
-
| `collisionMode` | `collision-mode` | Annotations |
|
|
298
|
-
| `color` | `color-*` | Text/Icon colors |
|
|
299
|
-
| `colors` | `colors-*` | Picker color |
|
|
300
|
-
| `columnCount` | `column-count` | Grid |
|
|
301
|
-
| `compact` | `compact` | Boolean |
|
|
302
|
-
| `compression` | `compression` | Image quality |
|
|
303
|
-
| `connected` | `connected` | Boolean |
|
|
304
|
-
| `contactsAuthorization` | `contacts-authorization` | Contacts |
|
|
305
|
-
| `contentHeight` | `content-h-*` | ScrollView |
|
|
306
|
-
| `contentScrimColor` | `content-scrim-*` | Android |
|
|
307
|
-
| `contentWidth` | `content-w-*` | ScrollView |
|
|
308
|
-
| `continuous` | `continuous` | Boolean |
|
|
309
|
-
| `continuousUpdate` | `continuous-update` | Slider |
|
|
310
|
-
| `countDownDuration` | `count-down-duration` | Timer |
|
|
311
|
-
| `criticalAlertSetting` | `critical-alert-setting` | Notifications iOS |
|
|
312
|
-
| `currentPageIndicatorColor` | `current-page-indicator-*` | ScrollView pager |
|
|
313
|
-
| `curve` | `curve-*` | Animation |
|
|
314
|
-
| `customInspect` | `custom-inspect` | Android WebView |
|
|
315
|
-
| `datePickerStyle` | `date-picker-style` | iOS |
|
|
316
|
-
| `dateTimeColor` | `date-time-*` | Picker |
|
|
317
|
-
| `decelerationRate` | `deceleration-rate` | ScrollView |
|
|
318
|
-
| `defaults` | `defaults` | Notifications |
|
|
319
|
-
| `delay` | `delay-*` | Animation |
|
|
320
|
-
| `destructive` | `destructive` | Boolean |
|
|
321
|
-
| `dimBackgroundForSearch` | `dim-background-for-search` | SearchBar |
|
|
322
|
-
| `disableBounce` | `disable-bounce` | ScrollView |
|
|
323
|
-
| `disableContextMenu` | `disable-context-menu` | Android WebView |
|
|
324
|
-
| `disabledColor` | `disabled-*` | Button/TextField |
|
|
325
|
-
| `disableNetworkActivityIndicator` | `disable-network-activity-indicator` | iOS WebView |
|
|
326
|
-
| `displayHomeAsUp` | `display-as-home-arrow` | Android |
|
|
327
|
-
| `drawerIndicatorEnabled` | `drawer-indicator-enabled` | Android |
|
|
328
|
-
| `drawerLockMode` | `drawer-lock-mode` | Android |
|
|
329
|
-
| `duration` | `duration-*` | Animation |
|
|
330
|
-
| `editable` | `editable`, `editable-false` | TextField |
|
|
331
|
-
| `editing` | `editing` | Boolean |
|
|
332
|
-
| `effect` | `effect` | iOS |
|
|
333
|
-
| `elevation` | `elevation-*` | Android |
|
|
334
|
-
| `eligibleForHandoff` | `eligible-for-handoff` | iOS |
|
|
335
|
-
| `eligibleForPrediction` | `eligible-for-prediction` | iOS |
|
|
336
|
-
| `eligibleForPublicIndexing` | `eligible-for-public-indexing` | Spotlight |
|
|
337
|
-
| `eligibleForSearch` | `eligible-for-search` | Spotlight |
|
|
338
|
-
| `ellipsize` | `ellipsize-*` | Label truncation |
|
|
339
|
-
| `enableCopy` | `enable-copy` | TextArea |
|
|
340
|
-
| `enabled` | `enabled`, `enabled-false` | All components |
|
|
341
|
-
| `enableJavascriptInterface` | `enable-javascript-interface` | Android WebView |
|
|
342
|
-
| `enableKeepAlive` | `enable-keep-alive` | HTTP client |
|
|
343
|
-
| `enableLights` | `enable-lights` | Notifications Android |
|
|
344
|
-
| `enableReturnKey` | `enable-return-key` | TextField |
|
|
345
|
-
| `enableVibration` | `enable-vibration` | Notifications Android |
|
|
346
|
-
| `enableZoomControls` | `enable-zoom-controls` | Android WebView |
|
|
347
|
-
| `exact` | `exact` | Boolean |
|
|
348
|
-
| `exitOnClose` | `exit-on-close` | Window |
|
|
349
|
-
| `experimental` | `experimental` | Boolean |
|
|
350
|
-
| `extendBackground` | `extend-background` | Switch |
|
|
351
|
-
| `extendEdges` | `extend-edges` | iOS |
|
|
352
|
-
| `extendSafeArea` | `extend-safe-area` | iOS |
|
|
353
|
-
|
|
354
|
-
### F-L
|
|
355
|
-
|
|
356
|
-
| Property | Class Prefix | Notes |
|
|
357
|
-
| --------------------------------------- | -------------------------------------------------- | -------------------------------------- |
|
|
358
|
-
| `fastScroll` | `fast-scroll` | ListView Android |
|
|
359
|
-
| `filterAlwaysInclude` | `filter-always-include` | Picker |
|
|
360
|
-
| `filterAnchored` | `filter-anchored` | Picker |
|
|
361
|
-
| `filterCaseInsensitive` | `filter-case-insensitive` | Picker |
|
|
362
|
-
| `filterTouchesWhenObscured` | `filter-touches-when-obscured` | View |
|
|
363
|
-
| `fixedSize` | `fixed-size` | View |
|
|
364
|
-
| `flags` | `flags` | Notifications |
|
|
365
|
-
| `flagSecure` | `flag-secure` | Android |
|
|
366
|
-
| `focusable` | `focusable` | Boolean |
|
|
367
|
-
| `footerDividersEnabled` | `footer-dividers-enabled` | ListView Android |
|
|
368
|
-
| `forceBottomPosition` | `force-bottom-position` | ScrollView |
|
|
369
|
-
| `forceModal` | `force-modal` | Window |
|
|
370
|
-
| `forceSplashAsSnapshot` | `force-splash-as-snapshot` | Android |
|
|
371
|
-
| `forceTouchSupported` | `force-touch-supported` | iOS |
|
|
372
|
-
| `forceUpdates` | `force-updates` | Notifications |
|
|
373
|
-
| `format` | `format-*` | Date/Time |
|
|
374
|
-
| `format24` | `format24`, `format24-false` | Time format |
|
|
375
|
-
| `frequency` | `frequency-*` | Location updates |
|
|
376
|
-
| `fullscreen` | `fullscreen` | Boolean |
|
|
377
|
-
| `generatedMessage` | `generated-message` | Notifications |
|
|
378
|
-
| `getters` | `getters` | Model |
|
|
379
|
-
| `gravity` | `gravity` | Android |
|
|
380
|
-
| `grouping` | `grouping` | DatePicker/Picker |
|
|
381
|
-
| `groupSummary` | `group-summary` | Notifications Android |
|
|
382
|
-
| `handleLinks` | `handle-links` | Label |
|
|
383
|
-
| `hasAlarm` | `has-alarm` | Calendar events |
|
|
384
|
-
| `hasCheck` | `has-check` | Notifications Android |
|
|
385
|
-
| `hasChild` | `has-child` | Annotations |
|
|
386
|
-
| `hasCompass` | `has-compass` | Geolocation |
|
|
387
|
-
| `hasDetail` | `has-detail` | Notifications Android |
|
|
388
|
-
| `hasProtectedAsset` | `has-protected-asset` | Video |
|
|
389
|
-
| `headerDividersEnabled` | `header-dividers-enabled` | ListView Android |
|
|
390
|
-
| `height` | `h-*` | All components |
|
|
391
|
-
| `hiddenBehavior` | `hidden-behavior` | Tabs Android |
|
|
392
|
-
| `hideLoadIndicator` | `hide-load-indicator` | WebView |
|
|
393
|
-
| `hidesBackButton` | `hides-back-button` | iOS |
|
|
394
|
-
| `hidesBarsOnSwipe` | `hides-bars-on-swipe` | iOS |
|
|
395
|
-
| `hidesBarsOnTap` | `hides-bars-on-tap` | iOS |
|
|
396
|
-
| `hidesBarsWhenKeyboardAppears` | `hides-bars-when-keyboard-appears` | iOS |
|
|
397
|
-
| `hideSearchOnSelection` | `hide-search-on-selection` | SearchBar |
|
|
398
|
-
| `hideShadow` | `hide-shadow` | iOS |
|
|
399
|
-
| `hidesSearchBarWhenScrolling` | `hides-search-bar-when-scrolling` | iOS |
|
|
400
|
-
| `highlightedColor` | `highlighted-*` | TableView/ListView |
|
|
401
|
-
| `hintTextColor` | `hint-*` | TextField |
|
|
402
|
-
| `hintType` | `hint-type` | TextField |
|
|
403
|
-
| `hires` | `hires` | Boolean |
|
|
404
|
-
| `homeButtonEnabled` | `home-button-enabled` | Android |
|
|
405
|
-
| `homeIndicatorAutoHidden` | `home-indicator-auto-hidden` | iOS |
|
|
406
|
-
| `horizontalBounce` | `horizontal-bounce` | ScrollView |
|
|
407
|
-
| `horizontalMargin` | `horizontal-margin` | TableView |
|
|
408
|
-
| `horizontalWrap` | `horizontal-wrap` | DashboardView |
|
|
409
|
-
| `hour12` | `hour12`, `hour12-false` | Time format |
|
|
410
|
-
| `html` | `html`, `html-false` | WebView |
|
|
411
|
-
| `httponly` | `httponly`, `httponly-false` | Cookie |
|
|
412
|
-
| `hyphenationFrequency` | `hyphenation-frequency` | Android TextView |
|
|
413
|
-
| `icon` | `icon-*` | Tab/Notifications |
|
|
414
|
-
| `iconColor` | `icon-*` | Tab |
|
|
415
|
-
| `iconified` | `iconified` | Boolean |
|
|
416
|
-
| `iconifiedByDefault` | `iconified-by-default` | SearchBar |
|
|
417
|
-
| `iconIsMask` | `icon-is-mask` | Tab |
|
|
418
|
-
| `idleTimerDisabled` | `idle-timer-disabled` | iOS |
|
|
419
|
-
| `ignorePunctuation` | `ignore-punctuation` | SearchBar |
|
|
420
|
-
| `ignoreSslError` | `ignore-ssl-error` | WebView |
|
|
421
|
-
| `imageHeight` | `image-h-*` | ImageView |
|
|
422
|
-
| `imageIsMask` | `image-is-mask` | ImageView |
|
|
423
|
-
| `imagePadding` | `image-padding` | Button |
|
|
424
|
-
| `imageTouchFeedback` | `image-touch-feedback` | Android |
|
|
425
|
-
| `imageTouchFeedbackColor` | `image-touch-feedback-*` | Android |
|
|
426
|
-
| `importance` | `importance` | Notifications |
|
|
427
|
-
| `inBackground` | `in-background` | Audio player |
|
|
428
|
-
| `includeFontPadding` | `include-font-padding` | Android TextView |
|
|
429
|
-
| `includeNote` | `include-note` | Calendar events |
|
|
430
|
-
| `includeOpaqueBars` | `include-opaque-bars` | iOS |
|
|
431
|
-
| `indentionLevel` | `indention-level-*` | ListView |
|
|
432
|
-
| `indicatorColor` | `indicator-*` | ScrollView |
|
|
433
|
-
| `injectionTime` | `injection-time` | Android |
|
|
434
|
-
| `inPopOver` | `in-pop-over` | iOS |
|
|
435
|
-
| `inputs` | `inputs-*` | Media capture |
|
|
436
|
-
| `inputType` | `input-type` | Android TextField |
|
|
437
|
-
| `interactive` | `interactive` | Boolean |
|
|
438
|
-
| `interactiveDismissModeEnabled` | `interactive-dismiss-mode-enabled` | iOS |
|
|
439
|
-
| `isCameraSupported` | `is-camera-supported` | Camera |
|
|
440
|
-
| `isCloudItem` | `is-cloud-item` | Asset |
|
|
441
|
-
| `isCompilation` | `is-compilation` | Media |
|
|
442
|
-
| `isDetached` | `is-detached` | Window |
|
|
443
|
-
| `isExplicit` | `is-explicit` | Media |
|
|
444
|
-
| `isLeftOpen` | `is-left-open` | Navigation |
|
|
445
|
-
| `isLeftVisible` | `is-left-visible` | Navigation |
|
|
446
|
-
| `isLocal` | `is-local` | Asset |
|
|
447
|
-
| `isOrganizer` | `is-organizer` | Calendar events |
|
|
448
|
-
| `isRightOpen` | `is-right-open` | Navigation |
|
|
449
|
-
| `isRightVisible` | `is-right-visible` | Navigation |
|
|
450
|
-
| `isSearching` | `is-searching` | SearchBar |
|
|
451
|
-
| `isTranslatedBinaryOnAppleSilicon` | `is-translated-binary-on-apple-silicon` | iOS |
|
|
452
|
-
| `itemContentType` | `item-content-type` | Notifications |
|
|
453
|
-
| `javaScriptCanOpenWindowsAutomatically` | `java-script-can-open-windows-automatically` | WebView |
|
|
454
|
-
| `javaScriptEnabled` | `java-script-enabled` | WebView |
|
|
455
|
-
| `keepScreenOn` | `keep-screen-on` | Android |
|
|
456
|
-
| `keepSectionsInSearch` | `keep-sections-in-search` | TableView |
|
|
457
|
-
| `keyboardAppearance` | `keyboard-appearance-*` | TextField |
|
|
458
|
-
| `keyboardDismissMode` | `keyboard-dismiss-mode` | TableView/ScrollView |
|
|
459
|
-
| `keyboardDisplayRequiresUserAction` | `keyboard-display-requires-user-action` | iOS WebView |
|
|
460
|
-
| `keyboardToolbarColor` | `keyboard-toolbar-*` | TextField iOS |
|
|
461
|
-
| `keyboardToolbarHeight` | `keyboard-toolbar-h-*` | TextField iOS |
|
|
462
|
-
| `keyboardType` | `keyboard-type-*` | TextField |
|
|
463
|
-
| `keyboardVisible` | `keyboard-visible`, `keyboard-visible-false` | TextField |
|
|
464
|
-
| `kind` | `kind` | Notifications |
|
|
465
|
-
| `largeTitleDisplayMode` | `large-title-display-mode` | iOS |
|
|
466
|
-
| `largeTitleEnabled` | `large-title-enabled`, `large-title-enabled-false` | iOS |
|
|
467
|
-
| `launchOptionsLocationKey` | `launch-options-location-key` | iOS |
|
|
468
|
-
| `layerType` | `layer-type` | Android View |
|
|
469
|
-
| `layout` | `layout` | View (composite, horizontal, vertical) |
|
|
470
|
-
| `lazyLoadingEnabled` | `lazy-loading-enabled` | ListView Android |
|
|
471
|
-
| `left` | `left-*` | Positioning |
|
|
472
|
-
| `leftButtonMode` | `left-button-mode` | TextField |
|
|
473
|
-
| `leftButtonPadding` | `left-button-padding` | TextField |
|
|
474
|
-
| `leftDrawerLockMode` | `left-drawer-lock-mode` | Navigation |
|
|
475
|
-
| `leftTrackLeftCap` | `left-track-left-cap` | Slider |
|
|
476
|
-
| `leftTrackTopCap` | `left-track-top-cap` | Slider |
|
|
477
|
-
| `leftWidth` | `left-width` | Slider |
|
|
478
|
-
| `letterSpacing` | `letter-spacing-*` | Label |
|
|
479
|
-
| `lightColor` | `light-*` | Notification |
|
|
480
|
-
| `lightTouchEnabled` | `light-touch-enabled` | Android ListView |
|
|
481
|
-
| `lineBreakMode` | `line-break-mode-*` | Label |
|
|
482
|
-
| `lineHeightMultiple` | `line-h-multiple-*` | Label |
|
|
483
|
-
| `lines` | `lines-*` | Label |
|
|
484
|
-
| `lineSpacing` | `line-spacing-*` | Label |
|
|
485
|
-
| `loading` | `loading` | Boolean |
|
|
486
|
-
| `location` | `location-*` | Annotations |
|
|
487
|
-
| `locationAccuracyAuthorization` | `location-accuracy-authorization` | Location |
|
|
488
|
-
| `locationServicesAuthorization` | `location-services-authorization` | Location |
|
|
489
|
-
| `locationServicesEnabled` | `location-services-enabled` | Geolocation |
|
|
490
|
-
| `lockScreenSetting` | `lock-screen-setting` | Notifications |
|
|
491
|
-
| `lockscreenVisibility` | `lockscreen-visibility` | Notifications |
|
|
492
|
-
| `loginKeyboardType` | `login-keyboard-type` | TextField |
|
|
493
|
-
| `loginReturnKeyType` | `login-return-key-type` | TextField |
|
|
494
|
-
| `looping` | `looping` | Boolean |
|
|
495
|
-
|
|
496
|
-
### M-P
|
|
497
|
-
|
|
498
|
-
| Property | Class Prefix | Notes |
|
|
499
|
-
| ------------------------------------------ | ------------------------------------------------ | ------------------------ |
|
|
500
|
-
| `mainFrameOnly` | `main-frame-only` | WebView |
|
|
501
|
-
| `manualMode` | `manual-mode` | Geolocation |
|
|
502
|
-
| `masterIsOverlayed` | `master-is-overlayed` | SplitWindow |
|
|
503
|
-
| `masterViewVisible` | `master-view-visible` | SplitWindow |
|
|
504
|
-
| `maxElevation` | `max-elevation` | Android |
|
|
505
|
-
| `maxImages` | `max-images` | Email |
|
|
506
|
-
| `maximumLineHeight` | `maximum-line-height-*` | Label |
|
|
507
|
-
| `maxLines` | `max-lines-*` | Label |
|
|
508
|
-
| `maxRowHeight` | `max-row-height` | TableView |
|
|
509
|
-
| `maxZoomScale` | `max-zoom-scale` | ScrollView |
|
|
510
|
-
| `mediaType` | `media-type` | Camera/Video |
|
|
511
|
-
| `mediaTypes` | `media-types` | Media picker |
|
|
512
|
-
| `mediaTypesRequiringUserActionForPlayback` | `media-types-requiring-user-action-for-playback` | Video |
|
|
513
|
-
| `method` | `method-*` | HTTP |
|
|
514
|
-
| `minimizeBehavior` | `minimize-behavior` | iOS Picture-in-Picture |
|
|
515
|
-
| `minimumLineHeight` | `minimum-line-height-*` | Label |
|
|
516
|
-
| `minRowHeight` | `min-row-height` | TableView |
|
|
517
|
-
| `minZoomScale` | `min-zoom-scale` | ScrollView |
|
|
518
|
-
| `mixedContentMode` | `mixed-content-mode` | Android WebView |
|
|
519
|
-
| `modal` | `modal` | Boolean |
|
|
520
|
-
| `modalStyle` | `modal-style` | iOS |
|
|
521
|
-
| `modalTransitionStyle` | `modal-transition-style` | iOS |
|
|
522
|
-
| `mode` | `mode-*` | Various components |
|
|
523
|
-
| `moveable` | `moveable` | Boolean |
|
|
524
|
-
| `moviePlayerStatus` | `movie-player-status` | Video player |
|
|
525
|
-
| `moving` | `moving` | Boolean |
|
|
526
|
-
| `multipleWindows` | `multiple-windows` | Android |
|
|
527
|
-
| `nativeSpinner` | `native-spinner` | RefreshControl |
|
|
528
|
-
| `navBarColor` | `nav-bar-*` | Android |
|
|
529
|
-
| `navBarHidden` | `nav-bar-hidden` | iOS |
|
|
530
|
-
| `navigationIconColor` | `navigation-icon-*` | Android Toolbar |
|
|
531
|
-
| `navTintColor` | `nav-tint-*` | iOS |
|
|
532
|
-
| `needsSave` | `needs-save` | Event |
|
|
533
|
-
| `networkType` | `network-type` | Email |
|
|
534
|
-
| `noDeprecation` | `no-deprecation` | Geolocation |
|
|
535
|
-
| `notificationCenterSetting` | `notification-center-setting` | Notifications iOS |
|
|
536
|
-
| `numeric` | `numeric` | Boolean |
|
|
537
|
-
| `online` | `online` | Boolean |
|
|
538
|
-
| `onThumbColor` | `on-thumb-*` | Switch |
|
|
539
|
-
| `onTintColor` | `on-*` | Switch |
|
|
540
|
-
| `opacity` | `opacity-*` | All components |
|
|
541
|
-
| `opaque` | `opaque` | Boolean |
|
|
542
|
-
| `opaquebackground` | `opaquebackground` | Boolean |
|
|
543
|
-
| `options` | `options-*` | Option dialog |
|
|
544
|
-
| `outputs` | `outputs-*` | Media capture |
|
|
545
|
-
| `overlayEnabled` | `overlay-enabled`, `overlay-enabled-false` | iOS |
|
|
546
|
-
| `overrideCurrentAnimation` | `override-current-animation` | Navigation |
|
|
547
|
-
| `overrideUserInterfaceStyle` | `override-user-interface-style` | iOS |
|
|
548
|
-
| `overScrollMode` | `over-scroll-mode` | Android ScrollView |
|
|
549
|
-
| `padding` | `padding-*` | All directional paddings |
|
|
550
|
-
| `paddingBottom` | `padding-bottom-*` | Alternative to `pb-*` |
|
|
551
|
-
| `paddingLeft` | `padding-left-*` | Alternative to `pl-*` |
|
|
552
|
-
| `paddingRight` | `padding-right-*` | Alternative to `pr-*` |
|
|
553
|
-
| `paddingTop` | `padding-top-*` | Alternative to `pt-*` |
|
|
554
|
-
| `pageHeight` | `page-height` | ScrollView |
|
|
555
|
-
| `pageIndicatorColor` | `page-indicator-*` | ScrollView |
|
|
556
|
-
| `pageWidth` | `page-width` | ScrollView |
|
|
557
|
-
| `pagingControlAlpha` | `paging-control-alpha` | ScrollView |
|
|
558
|
-
| `pagingControlColor` | `paging-control-*` | ScrollView |
|
|
559
|
-
| `pagingControlHeight` | `paging-control-height` | ScrollView |
|
|
560
|
-
| `pagingControlOnTop` | `paging-control-on-top` | ScrollView |
|
|
561
|
-
| `pagingControlTimeout` | `paging-control-timeout` | ScrollView |
|
|
562
|
-
| `paragraphSpacingAfter` | `paragraph-spacing-after-*` | Label |
|
|
563
|
-
| `paragraphSpacingBefore` | `paragraph-spacing-before-*` | Label |
|
|
564
|
-
| `passwordKeyboardType` | `password-keyboard-type` | TextField |
|
|
565
|
-
| `passwordMask` | `password-mask` | TextField |
|
|
566
|
-
| `passwordReturnKeyType` | `password-return-key-type` | TextField |
|
|
567
|
-
| `pathOnly` | `path-only` | File |
|
|
568
|
-
| `pauseLocationUpdateAutomatically` | `pause-location-update-automatically` | Location |
|
|
569
|
-
| `persistent` | `persistent` | Boolean |
|
|
570
|
-
| `physicalSizeCategory` | `physical-size-category` | iOS |
|
|
571
|
-
| `pictureInPictureEnabled` | `picture-in-picture-enabled` | iOS |
|
|
572
|
-
| `playbackState` | `playback-state` | Audio/Video |
|
|
573
|
-
| `pluginState` | `plugin-state` | Android WebView |
|
|
574
|
-
| `position` | `position-*` | All components |
|
|
575
|
-
| `preventCornerOverlap` | `prevent-corner-overlap` | Android |
|
|
576
|
-
| `preventDefaultImage` | `prevent-default-image` | WebView |
|
|
577
|
-
| `providesAppNotificationSettings` | `provides-app-notification-settings` | Notifications iOS |
|
|
578
|
-
| `proximityDetection` | `proximity-detection` | Proximity sensor |
|
|
579
|
-
| `proximityState` | `proximity-state` | Proximity sensor |
|
|
580
|
-
| `pruneSectionsOnEdit` | `prune-sections-on-edit` | TableView |
|
|
581
|
-
| `pullBackgroundColor` | `pull-bg-*` | RefreshControl |
|
|
582
|
-
| `pushMode` | `push-mode` | Notifications |
|
|
583
|
-
|
|
584
|
-
### R-Z
|
|
585
|
-
|
|
586
|
-
| Property | Class Prefix | Notes |
|
|
587
|
-
| --------------------------------- | ---------------------------------------------- | --------------------------- |
|
|
588
|
-
| `readyState` | `ready-state` | XMLHttpRequest |
|
|
589
|
-
| `recording` | `recording` | Boolean |
|
|
590
|
-
| `remoteNotificationsEnabled` | `remote-notifications-enabled` | Notifications |
|
|
591
|
-
| `repeat` | `repeat-*` | Animation |
|
|
592
|
-
| `repeatCount` | `repeat-count-*` | Animation |
|
|
593
|
-
| `repeatMode` | `repeat-mode` | Android |
|
|
594
|
-
| `requestedOrientation` | `requested-orientation` | Android |
|
|
595
|
-
| `requiresEditingToMove` | `requires-editing-to-move` | iOS |
|
|
596
|
-
| `resultsBackgroundColor` | `results-bg-*` | SearchBar |
|
|
597
|
-
| `resultsSeparatorColor` | `results-separator-*` | SearchBar |
|
|
598
|
-
| `resultsSeparatorStyle` | `results-separator-style` | SearchBar |
|
|
599
|
-
| `returnKeyType` | `return-key-type-*` | TextField |
|
|
600
|
-
| `reverse` | `reverse` | Boolean |
|
|
601
|
-
| `right` | `right-*` | Positioning |
|
|
602
|
-
| `rightButtonMode` | `right-button-mode` | TextField |
|
|
603
|
-
| `rightButtonPadding` | `right-button-padding` | TextField |
|
|
604
|
-
| `rightDrawerLockMode` | `right-drawer-lock-mode` | Navigation |
|
|
605
|
-
| `rightTrackLeftCap` | `right-track-left-cap` | Slider |
|
|
606
|
-
| `rightTrackTopCap` | `right-track-top-cap` | Slider |
|
|
607
|
-
| `rightWidth` | `right-width` | Slider |
|
|
608
|
-
| `role` | `role-*` | Accessibility |
|
|
609
|
-
| `rotate` | `rotate-*` | 2D Matrix |
|
|
610
|
-
| `rowCount` | `row-count` | Picker |
|
|
611
|
-
| `rowHeight` | `row-height` | TableView |
|
|
612
|
-
| `running` | `running` | Boolean |
|
|
613
|
-
| `saveToPhotoGallery` | `save-to-photo-gallery` | Camera |
|
|
614
|
-
| `scale` | `scale-*` | 2D Matrix |
|
|
615
|
-
| `scalesPageToFit` | `scales-page-to-fit` | WebView |
|
|
616
|
-
| `scaleX` | `scale-x-*` | 2D Matrix |
|
|
617
|
-
| `scaleY` | `scale-y-*` | 2D Matrix |
|
|
618
|
-
| `scalingMode` | `scaling-mode` | ImageView |
|
|
619
|
-
| `scrollable` | `scrollable` | Boolean |
|
|
620
|
-
| `scrollbars` | `scrollbars-*` | ScrollView Android |
|
|
621
|
-
| `scrollIndicatorStyle` | `scroll-indicator-style` | iOS |
|
|
622
|
-
| `scrollingEnabled` | `scrolling-enabled`, `scrolling-enabled-false` | ScrollView |
|
|
623
|
-
| `scrollsToTop` | `scrolls-to-top` | ScrollView |
|
|
624
|
-
| `searchAsChild` | `search-as-child` | SearchBar |
|
|
625
|
-
| `searchHidden` | `search-hidden` | SearchBar |
|
|
626
|
-
| `sectionHeaderTopPadding` | `section-header-top-padding` | TableView |
|
|
627
|
-
| `secure` | `secure` | Boolean |
|
|
628
|
-
| `selected` | `selected`, `selected-*` | Boolean + color variants |
|
|
629
|
-
| `selectedBackgroundColor` | `selected-bg-*` | TableView/ListView |
|
|
630
|
-
| `selectedBorderColor` | `selected-border-*` | Button |
|
|
631
|
-
| `selectedButtonColor` | `selected-button-*` | Button |
|
|
632
|
-
| `selectedColor` | `selected-*` | Tab/TableView |
|
|
633
|
-
| `selectedSubtitleColor` | `selected-subtitle-*` | Android |
|
|
634
|
-
| `selectedTextColor` | `selected-text-*` | TableView |
|
|
635
|
-
| `selectionGranularity` | `selection-granularity` | iOS TextView |
|
|
636
|
-
| `selectionIndicator` | `selection-indicator` | Various |
|
|
637
|
-
| `selectionLimit` | `selection-limit` | Picker |
|
|
638
|
-
| `selectionOpens` | `selection-opens` | Picker |
|
|
639
|
-
| `selectionStyle` | `selection-style` | TableView |
|
|
640
|
-
| `separatorColor` | `separator-*` | TableView/ListView |
|
|
641
|
-
| `separatorHeight` | `separator-height` | TableView |
|
|
642
|
-
| `separatorStyle` | `separator-style` | TableView |
|
|
643
|
-
| `severity` | `severity` | Notifications Android |
|
|
644
|
-
| `shadowColor` | `shadow-*` | View |
|
|
645
|
-
| `shadowRadius` | `shadow-radius-*` | View |
|
|
646
|
-
| `shiftMode` | `shift-mode` | DatePicker |
|
|
647
|
-
| `showAsAction` | `show-as-action` | Android |
|
|
648
|
-
| `showBackgroundLocationIndicator` | `show-background-location-indicator` | Location iOS |
|
|
649
|
-
| `showBadge` | `show-badge` | Notifications Android |
|
|
650
|
-
| `showBookmark` | `show-bookmark` | Video player |
|
|
651
|
-
| `showCalibration` | `show-calibration` | Camera |
|
|
652
|
-
| `showCancel` | `show-cancel` | SearchBar |
|
|
653
|
-
| `showControls` | `show-controls` | Video player |
|
|
654
|
-
| `showHidden` | `show-hidden` | SearchBar |
|
|
655
|
-
| `showHorizontalScrollIndicator` | `show-horizontal-scroll-indicator` | ScrollView |
|
|
656
|
-
| `showMasterInPortrait` | `show-master-in-portrait` | SplitWindow |
|
|
657
|
-
| `showPagingControl` | `show-paging-control` | ScrollView |
|
|
658
|
-
| `showProxy` | `show-proxy` | HTTP |
|
|
659
|
-
| `showsControls` | `shows-controls` | Video player |
|
|
660
|
-
| `showSearchBarInNavBar` | `show-search-bar-in-nav-bar` | iOS |
|
|
661
|
-
| `showSelectionCheck` | `show-selection-check` | Picker |
|
|
662
|
-
| `showUndoRedoActions` | `show-undo-redo-actions` | iOS |
|
|
663
|
-
| `showVerticalScrollIndicator` | `show-vertical-scroll-indicator` | ScrollView |
|
|
664
|
-
| `shuffleMode` | `shuffle-mode` | Audio |
|
|
665
|
-
| `smoothScrollOnTabClick` | `smooth-scroll-on-tab-click` | Tab Android |
|
|
666
|
-
| `softKeyboardOnFocus` | `soft-keyboard-on-focus` | TextField |
|
|
667
|
-
| `sorted` | `sorted` | Boolean |
|
|
668
|
-
| `soundSetting` | `sound-setting` | Notifications |
|
|
669
|
-
| `sourceType` | `source-type` | Camera/Media |
|
|
670
|
-
| `splitTrack` | `split-track` | Switch Android |
|
|
671
|
-
| `startMode` | `start-mode` | Notification |
|
|
672
|
-
| `state` | `state-*` | Notifications |
|
|
673
|
-
| `status` | `status` | Various |
|
|
674
|
-
| `statusBarBackgroundColor` | `status-bar-bg-*` | iOS |
|
|
675
|
-
| `statusBarColor` | `status-bar-*` | Android |
|
|
676
|
-
| `statusBarHeight` | `status-bar-height` | iOS |
|
|
677
|
-
| `statusBarStyle` | `status-bar-style` | iOS |
|
|
678
|
-
| `stopped` | `stopped` | Boolean |
|
|
679
|
-
| `style` | `style-*` | Various components |
|
|
680
|
-
| `submitEnabled` | `submit-enabled`, `submit-enabled-false` | TextField |
|
|
681
|
-
| `subtitleColor` | `subtitle-*` | Android Toolbar |
|
|
682
|
-
| `subtitleTextColor` | `subtitle-text-*` | Tab |
|
|
683
|
-
| `success` | `success` | Boolean |
|
|
684
|
-
| `suppressesIncrementalRendering` | `suppresses-incremental-rendering` | WebView iOS |
|
|
685
|
-
| `suppressReturn` | `suppress-return` | TextField |
|
|
686
|
-
| `sustainedPerformanceMode` | `sustained-performance-mode` | Android |
|
|
687
|
-
| `swipeable` | `swipeable` | Boolean |
|
|
688
|
-
| `swipeToClose` | `swipe-to-close` | Navigation |
|
|
689
|
-
| `systemButton` | `system-button` | Button |
|
|
690
|
-
| `tabBarHidden` | `tab-bar-hidden` | iOS |
|
|
691
|
-
| `tabBarVisible` | `tab-bar-visible` | Android |
|
|
692
|
-
| `tabMode` | `tab-mode` | Tab Android |
|
|
693
|
-
| `tabsBackgroundColor` | `tabs-bg-*` | Tab |
|
|
694
|
-
| `tabsBackgroundSelectedColor` | `tabs-background-selected-*` | Tab |
|
|
695
|
-
| `tabsTranslucent` | `tabs-translucent` | iOS |
|
|
696
|
-
| `targetImageHeight` | `target-image-height` | Email |
|
|
697
|
-
| `targetImageWidth` | `target-image-width` | Email |
|
|
698
|
-
| `textAlign` | `text-*` | Label (left, center, right) |
|
|
699
|
-
| `textStyle` | `text-style` | Label |
|
|
700
|
-
| `thumbColor` | `thumb-*` | Slider/Switch |
|
|
701
|
-
| `thumbTintColor` | `thumb-tint-*` | Slider iOS |
|
|
702
|
-
| `timeout` | `timeout-*` | HTTP/Animation |
|
|
703
|
-
| `tint` | `tint-*` | Button/Tab |
|
|
704
|
-
| `titleColor` | `title-*` | All components |
|
|
705
|
-
| `titlePadding` | `title-padding` | Button |
|
|
706
|
-
| `titleTextColor` | `title-text-*` | Button/Tab |
|
|
707
|
-
| `tlsVersion` | `tls-version` | HTTP |
|
|
708
|
-
| `toolbarEnabled` | `toolbar-enabled`, `toolbar-enabled-false` | iOS |
|
|
709
|
-
| `top` | `top-*` | Positioning |
|
|
710
|
-
| `torch` | `torch` | Camera |
|
|
711
|
-
| `touchEnabled` | `touch-enabled`, `touch-enabled-false` | All components |
|
|
712
|
-
| `touchFeedback` | `touch-feedback` | Android |
|
|
713
|
-
| `touchFeedbackColor` | `touch-feedback-*` | Android |
|
|
714
|
-
| `traceDeprecation` | `trace-deprecation` | Logging |
|
|
715
|
-
| `trackSignificantLocationChange` | `track-significant-location-change` | Location |
|
|
716
|
-
| `trackTintColor` | `track-tint-*` | Slider/Progress |
|
|
717
|
-
| `trackUserInteraction` | `track-user-interaction` | Analytics |
|
|
718
|
-
| `transition` | `transition-*` | Navigation |
|
|
719
|
-
| `translucent` | `translucent` | Boolean |
|
|
720
|
-
| `treatReferenceAsBoundary` | `treat-reference-as-boundary` | Annotations |
|
|
721
|
-
| `type` | `type-*` | Various |
|
|
722
|
-
| `unique` | `unique` | Boolean |
|
|
723
|
-
| `updateCurrentIntent` | `update-current-intent` | Notifications Android |
|
|
724
|
-
| `uprightHeight` | `upright-height` | Safe area |
|
|
725
|
-
| `uprightWidth` | `upright-width` | Safe area |
|
|
726
|
-
| `useCameraX` | `use-camera-x` | Camera Android |
|
|
727
|
-
| `useCompatPadding` | `use-compat-padding` | Android |
|
|
728
|
-
| `useGrouping` | `use-grouping` | Picker |
|
|
729
|
-
| `userInterfaceStyle` | `user-interface-style` | iOS |
|
|
730
|
-
| `useSpinner` | `use-spinner` | RefreshControl |
|
|
731
|
-
| `validatesSecureCertificate` | `validates-secure-certificate` | HTTP |
|
|
732
|
-
| `validRow` | `valid-row` | TableView |
|
|
733
|
-
| `value` | `value-*` | Various |
|
|
734
|
-
| `verticalAlign` | `vertical-align` | Label |
|
|
735
|
-
| `verticalBounce` | `vertical-bounce` | ScrollView |
|
|
736
|
-
| `verticalMargin` | `vertical-margin` | TableView |
|
|
737
|
-
| `videoQuality` | `video-quality` | Camera |
|
|
738
|
-
| `View` | (default) | Base component styles |
|
|
739
|
-
| `viewShadowColor` | `view-shadow-*` | Android |
|
|
740
|
-
| `visibility` | `visibility` | Android |
|
|
741
|
-
| `visible` | `visible`, `visible-false`, `hidden` | All components |
|
|
742
|
-
| `waitsForConnectivity` | `waits-for-connectivity` | Notifications |
|
|
743
|
-
| `whichCamera` | `which-camera` | Camera |
|
|
744
|
-
| `width` | `w-*` | All components |
|
|
745
|
-
| `willHandleTouches` | `will-handles-touches` | ScrollView |
|
|
746
|
-
| `willScrollOnStatusTap` | `will-scroll-on-status-tap` | iOS |
|
|
747
|
-
| `Window` | (default) | Base component styles |
|
|
748
|
-
| `windowPixelFormat` | `window-pixel-format` | Android |
|
|
749
|
-
| `windowSoftInputMode` | `window-soft-input-mode` | Android |
|
|
750
|
-
| `wobble` | `wobble` | Boolean |
|
|
751
|
-
| `wraps` | `wraps` | Boolean |
|
|
752
|
-
| `xOffset` | `x-offset` | ScrollView |
|
|
753
|
-
| `yOffset` | `y-offset` | ScrollView |
|
|
754
|
-
| `zIndex` | `z-index-*` | All components |
|
|
755
|
-
| `zoomEnabled` | `zoom-enabled`, `zoom-enabled-false` | ScrollView/WebView |
|
|
756
|
-
| `zoomScale` | `zoom-scale-*` | ScrollView |
|
|
757
|
-
|
|
758
|
-
---
|
|
152
|
+
The full A–Z property→class table is maintained in a dedicated reference to keep this index scannable:
|
|
759
153
|
|
|
760
|
-
|
|
154
|
+
➡️ **[class-index-properties.md](./class-index-properties.md)** — every Titanium property with its PurgeTSS class prefix (A–Z).
|
|
761
155
|
|
|
762
156
|
---
|
|
763
157
|
|