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