purgetss 6.3.3 → 6.3.5

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.
Files changed (41) hide show
  1. package/.eslintrc.js +2 -1
  2. package/__tests__/encodeHTML.test.js +7 -0
  3. package/assets/fonts/FontAwesome6Brands-Regular.ttf +0 -0
  4. package/assets/fonts/FontAwesome6Free-Regular.ttf +0 -0
  5. package/assets/fonts/FontAwesome6Free-Solid.ttf +0 -0
  6. package/dist/fontawesome.js +6 -1
  7. package/dist/fontawesome.tss +6 -1
  8. package/dist/glossary/booleanProperties/accessibilityDisableLongPress.md +7 -0
  9. package/dist/glossary/booleanProperties/interactiveDismissModeEnabled.md +6 -0
  10. package/dist/glossary/booleanProperties/maxImages.md +7 -0
  11. package/dist/glossary/booleanProperties/pathOnly.md +7 -0
  12. package/dist/glossary/booleanProperties/success.md +1 -1
  13. package/dist/glossary/colorProperties/activeTintColor.md +1 -1
  14. package/dist/glossary/colorProperties/backgroundColor.md +1 -1
  15. package/dist/glossary/colorProperties/color.md +1 -1
  16. package/dist/glossary/colorProperties/onThumbColor.md +249 -0
  17. package/dist/glossary/colorProperties/selectedBackgroundColor.md +1 -1
  18. package/dist/glossary/colorProperties/selectedBorderColor.md +250 -0
  19. package/dist/glossary/colorProperties/selectedTextColor.md +1 -1
  20. package/dist/glossary/colorProperties/statusBarColor.md +250 -0
  21. package/dist/glossary/colorProperties/thumbColor.md +249 -0
  22. package/dist/glossary/compoundClasses/moveByAnimate.md +5 -0
  23. package/dist/glossary/compoundClasses/moveByAnimation.md +5 -0
  24. package/dist/glossary/compoundClasses/moveByProperties.md +1 -1
  25. package/dist/glossary/compoundClasses/orientationModes.md +1 -0
  26. package/dist/glossary/constantProperties/code.md +1 -1
  27. package/dist/glossary/constantProperties/overrideUserInterfaceStyle.md +1 -1
  28. package/dist/glossary/constantProperties/scrollbars.md +9 -0
  29. package/dist/glossary/constantProperties/state.md +1 -1
  30. package/dist/glossary/constantProperties/textAlign.md +1 -1
  31. package/dist/purgetss.ui.js +18 -15
  32. package/dist/tailwind.tss +1052 -18
  33. package/experimental/completions2.js +2 -0
  34. package/index.js +30 -28
  35. package/lib/completions/titanium/completions-v3.json +295 -114
  36. package/lib/templates/fontawesome/free-template.js +1 -1
  37. package/lib/templates/fontawesome/free-template.tss +1 -1
  38. package/lib/templates/purgetss.ui.js +17 -14
  39. package/lib/templates/tailwind/compoundTemplate.json +239 -225
  40. package/lib/templates/tailwind/template.tss +1 -1
  41. package/package.json +8 -6
package/.eslintrc.js CHANGED
@@ -2,7 +2,8 @@ module.exports = {
2
2
  env: {
3
3
  browser: true,
4
4
  commonjs: true,
5
- es2021: true
5
+ es2021: true,
6
+ jest: true // Esto le dice a ESLint que estás usando Jest
6
7
  },
7
8
  extends: 'standard',
8
9
  globals: {
@@ -0,0 +1,7 @@
1
+ const { encodeHTML } = require('../index') // Asegúrate de que la ruta sea correcta
2
+
3
+ test('encodeHTML should convert & to &', () => {
4
+ const input = 'Hello & World'
5
+ const expectedOutput = 'Hello & World'
6
+ expect(encodeHTML(input)).toBe(expectedOutput)
7
+ })
@@ -1,5 +1,5 @@
1
1
  /**
2
- * Font Awesome Free 6.5.2 by @fontawesome - https://fontawesome.com
2
+ * Font Awesome Free 6.6.0 by @fontawesome - https://fontawesome.com
3
3
  * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
4
4
  */
5
5
 
@@ -493,6 +493,8 @@ const icons = {
493
493
  signInAlt: '\uf2f6',
494
494
  venus: '\uf221',
495
495
  passport: '\uf5ab',
496
+ thumbtackSlash: '\ue68f',
497
+ thumbTackSlash: '\ue68f',
496
498
  heartPulse: '\uf21e',
497
499
  heartbeat: '\uf21e',
498
500
  peopleCarryBox: '\uf4ce',
@@ -1930,6 +1932,7 @@ const icons = {
1930
1932
  bugSlash: '\ue490',
1931
1933
  arrowUpFromWaterPump: '\ue4b6',
1932
1934
  bone: '\uf5d7',
1935
+ tableCellsRowUnlock: '\ue691',
1933
1936
  userInjured: '\uf728',
1934
1937
  faceSadTear: '\uf5b4',
1935
1938
  sadTear: '\uf5b4',
@@ -2013,6 +2016,7 @@ const icons = {
2013
2016
  glideG: '\uf2a6',
2014
2017
  drupal: '\uf1a9',
2015
2018
  jxl: '\ue67b',
2019
+ dartLang: '\ue693',
2016
2020
  hireAHelper: '\uf3b0',
2017
2021
  creativeCommonsBy: '\uf4e7',
2018
2022
  unity: '\ue049',
@@ -2326,6 +2330,7 @@ const icons = {
2326
2330
  hubspot: '\uf3b2',
2327
2331
  deploydog: '\uf38e',
2328
2332
  twitch: '\uf1e8',
2333
+ flutter: '\ue694',
2329
2334
  ravelry: '\uf2d9',
2330
2335
  mixer: '\ue056',
2331
2336
  squareLastfm: '\uf203',
@@ -1,4 +1,4 @@
1
- // Font Awesome Free 6.5.2 by @fontawesome - https://fontawesome.com
1
+ // Font Awesome Free 6.6.0 by @fontawesome - https://fontawesome.com
2
2
  // License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
3
3
 
4
4
  // Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen readers do not read off random characters that represent icons
@@ -501,6 +501,8 @@
501
501
  '.fa-sign-in-alt': { text: '\uf2f6', title: '\uf2f6' }
502
502
  '.fa-venus': { text: '\uf221', title: '\uf221' }
503
503
  '.fa-passport': { text: '\uf5ab', title: '\uf5ab' }
504
+ '.fa-thumbtack-slash': { text: '\ue68f', title: '\ue68f' }
505
+ '.fa-thumb-tack-slash': { text: '\ue68f', title: '\ue68f' }
504
506
  '.fa-heart-pulse': { text: '\uf21e', title: '\uf21e' }
505
507
  '.fa-heartbeat': { text: '\uf21e', title: '\uf21e' }
506
508
  '.fa-people-carry-box': { text: '\uf4ce', title: '\uf4ce' }
@@ -1938,6 +1940,7 @@
1938
1940
  '.fa-bug-slash': { text: '\ue490', title: '\ue490' }
1939
1941
  '.fa-arrow-up-from-water-pump': { text: '\ue4b6', title: '\ue4b6' }
1940
1942
  '.fa-bone': { text: '\uf5d7', title: '\uf5d7' }
1943
+ '.fa-table-cells-row-unlock': { text: '\ue691', title: '\ue691' }
1941
1944
  '.fa-user-injured': { text: '\uf728', title: '\uf728' }
1942
1945
  '.fa-face-sad-tear': { text: '\uf5b4', title: '\uf5b4' }
1943
1946
  '.fa-sad-tear': { text: '\uf5b4', title: '\uf5b4' }
@@ -2021,6 +2024,7 @@
2021
2024
  '.fa-glide-g': { text: '\uf2a6', title: '\uf2a6' }
2022
2025
  '.fa-drupal': { text: '\uf1a9', title: '\uf1a9' }
2023
2026
  '.fa-jxl': { text: '\ue67b', title: '\ue67b' }
2027
+ '.fa-dart-lang': { text: '\ue693', title: '\ue693' }
2024
2028
  '.fa-hire-a-helper': { text: '\uf3b0', title: '\uf3b0' }
2025
2029
  '.fa-creative-commons-by': { text: '\uf4e7', title: '\uf4e7' }
2026
2030
  '.fa-unity': { text: '\ue049', title: '\ue049' }
@@ -2334,6 +2338,7 @@
2334
2338
  '.fa-hubspot': { text: '\uf3b2', title: '\uf3b2' }
2335
2339
  '.fa-deploydog': { text: '\uf38e', title: '\uf38e' }
2336
2340
  '.fa-twitch': { text: '\uf1e8', title: '\uf1e8' }
2341
+ '.fa-flutter': { text: '\ue694', title: '\ue694' }
2337
2342
  '.fa-ravelry': { text: '\uf2d9', title: '\uf2d9' }
2338
2343
  '.fa-mixer': { text: '\ue056', title: '\ue056' }
2339
2344
  '.fa-square-lastfm': { text: '\uf203', title: '\uf203' }
@@ -0,0 +1,7 @@
1
+ ```scss
2
+ // Property: accessibilityDisableLongPress
3
+ // Description: Boolean value to remove the long press notification for the device's accessibility service.
4
+ // Component(s): Ti.UI.View, Ti.Media.VideoPlayer, Ti.UI.ActivityIndicator, Ti.UI.AlertDialog, Ti.UI.Android.CardView, Ti.UI.Android.CollapseToolbar, Ti.UI.Android.DrawerLayout, Ti.UI.Android.FloatingActionButton, Ti.UI.Android.ProgressIndicator, Ti.UI.Android.SearchView, Ti.UI.Android.Snackbar, Ti.UI.Button, Ti.UI.ButtonBar, Ti.UI.EmailDialog, Ti.UI.ImageView, Ti.UI.Label, Ti.UI.ListView, Ti.UI.MaskedImage, Ti.UI.NavigationWindow, Ti.UI.OptionBar, Ti.UI.OptionDialog, Ti.UI.Picker, Ti.UI.PickerColumn, Ti.UI.PickerRow, Ti.UI.ProgressBar, Ti.UI.ScrollView, Ti.UI.ScrollableView, Ti.UI.SearchBar, Ti.UI.Slider, Ti.UI.Switch, Ti.UI.Tab, Ti.UI.TabGroup, Ti.UI.TabbedBar, Ti.UI.TableView, Ti.UI.TableViewRow, Ti.UI.TextArea, Ti.UI.TextField, Ti.UI.Toolbar, Ti.UI.WebView, Ti.UI.Window
5
+ '.accessibility-disable-long-press': { accessibilityDisableLongPress: true }
6
+ '.accessibility-disable-long-press-false': { accessibilityDisableLongPress: false }
7
+ ```
@@ -0,0 +1,6 @@
1
+ ```scss
2
+ // Property: interactiveDismissModeEnabled
3
+ // Component(s): Ti.UI.NavigationWindow, Ti.UI.TabGroup
4
+ '.interactive-dismiss-mode-enabled': { interactiveDismissModeEnabled: true }
5
+ '.interactive-dismiss-mode-enabled-false': { interactiveDismissModeEnabled: false }
6
+ ```
@@ -0,0 +1,7 @@
1
+ ```scss
2
+ // Property: maxImages
3
+ // Description: Specifies the number of images a user can select at maximum.
4
+ // Component(s): PhotoGalleryOptionsType
5
+ '.max-images': { maxImages: true }
6
+ '.max-images-false': { maxImages: false }
7
+ ```
@@ -0,0 +1,7 @@
1
+ ```scss
2
+ // Property: pathOnly
3
+ // Description: Do not include the blob in the result
4
+ // Component(s): PhotoGalleryOptionsType
5
+ '.path-only': { pathOnly: true }
6
+ '.path-only-false': { pathOnly: false }
7
+ ```
@@ -1,6 +1,6 @@
1
1
  ```scss
2
2
  // Property: success
3
- // Component(s): RequestPermissionAccessResult, EventsAuthorizationResponse, ContactsAuthorizationResponse, ErrorResponse, SuccessResponse, FailureResponse, RequestStorageAccessResult, LocationResults, ForwardGeocodeResponse, HeadingResponse, ReverseGeocodeResponse, LocationAuthorizationResponse, LocationAccuracyAuthorizationResponse, MusicLibraryOptionsType, CameraOptionsType, PhotoGalleryOptionsType, CameraMediaMultipleItemsType, CameraMediaItemType, PreviewImageOptions, PreviewImageError, MediaAuthorizationResponse, RequestCameraAccessResult, RequestMusicLibraryAccessResult, RequestPhotoGalleryAccessResult, ThumbnailResponse, PushNotificationConfig, PushNotificationSuccessArg, PushNotificationErrorArg, ErrorCallbackArgs, ReadCallbackArgs, WriteCallbackArgs, WriteStreamCallbackArgs, PumpCallbackArgs, SnapshotResult, DataCreationResult, SearchResult, MessageReply, YQLResponse
3
+ // Component(s): RequestPermissionAccessResult, EventsAuthorizationResponse, ContactsAuthorizationResponse, ErrorResponse, SuccessResponse, FailureResponse, RequestStorageAccessResult, LocationResults, ForwardGeocodeResponse, HeadingResponse, ReverseGeocodeResponse, LocationAuthorizationResponse, LocationAccuracyAuthorizationResponse, MusicLibraryOptionsType, CameraOptionsType, PhotoGalleryOptionsType, CameraMediaMultipleItemsType, CameraMediaItemType, PreviewImageOptions, PreviewImageError, MediaAuthorizationResponse, RequestCameraAccessResult, RequestMusicLibraryAccessResult, RequestPhotoGalleryAccessResult, ThumbnailResponse, PushNotificationConfig, PushNotificationSuccessArg, PushNotificationErrorArg, ErrorCallbackArgs, ReadCallbackArgs, WriteCallbackArgs, WriteStreamCallbackArgs, PumpCallbackArgs, SnapshotResult, DataCreationResult, SearchResult, MessageReply
4
4
  '.success': { success: true }
5
5
  '.success-false': { success: false }
6
6
  ```
@@ -1,6 +1,6 @@
1
1
  ```scss
2
2
  // Property: activeTintColor
3
- // Component(s): Ti.UI.Tab, Ti.UI.TabGroup
3
+ // Component(s): Ti.UI.Tab, Ti.UI.TabGroup, Ti.UI.TabbedBar
4
4
  '.active-tint-transparent': { activeTintColor: 'transparent' }
5
5
  '.active-tint-black': { activeTintColor: '#000000' }
6
6
  '.active-tint-white': { activeTintColor: '#ffffff' }
@@ -1,6 +1,6 @@
1
1
  ```scss
2
2
  // Property: backgroundColor
3
- // Component(s): Ti.UI.View, Ti.Media.VideoPlayer, Ti.UI.Android.CardView, Ti.UI.Android.DrawerLayout, Ti.UI.Android.FloatingActionButton, Ti.UI.Android.SearchView, Ti.UI.Animation, Ti.UI.Button, Ti.UI.ButtonBar, Ti.UI.DashboardView, Ti.UI.ImageView, Ti.UI.Label, Ti.UI.ListItem, Ti.UI.ListView, Ti.UI.MaskedImage, Ti.UI.NavigationWindow, Ti.UI.OptionBar, Ti.UI.Picker, Ti.UI.PickerRow, Ti.UI.ProgressBar, Ti.UI.ScrollView, Ti.UI.ScrollableView, Ti.UI.SearchBar, Ti.UI.Slider, Ti.UI.Switch, Ti.UI.Tab, Ti.UI.TabGroup, Ti.UI.TabbedBar, Ti.UI.TableView, Ti.UI.TableViewRow, Ti.UI.TextArea, Ti.UI.TextField, Ti.UI, Ti.UI.WebView, Ti.UI.Window, Ti.UI.iOS.BlurView, Ti.UI.iOS.CoverFlowView, Ti.UI.iOS.LivePhotoView, Ti.UI.iOS.SplitWindow, Ti.UI.iOS.Stepper, Ti.UI.iPad.Popover
3
+ // Component(s): Ti.UI.View, Ti.Media.VideoPlayer, Ti.UI.Android.CardView, Ti.UI.Android.DrawerLayout, Ti.UI.Android.FloatingActionButton, Ti.UI.Android.SearchView, Ti.UI.Animation, Ti.UI.Button, Ti.UI.ButtonBar, Ti.UI.DashboardView, Ti.UI.ImageView, Ti.UI.Label, Ti.UI.ListItem, Ti.UI.ListView, Ti.UI.MaskedImage, Ti.UI.NavigationWindow, Ti.UI.OptionBar, Ti.UI.Picker, Ti.UI.PickerRow, Ti.UI.ProgressBar, Ti.UI.RefreshControl, Ti.UI.ScrollView, Ti.UI.ScrollableView, Ti.UI.SearchBar, Ti.UI.Slider, Ti.UI.Switch, Ti.UI.Tab, Ti.UI.TabGroup, Ti.UI.TabbedBar, Ti.UI.TableView, Ti.UI.TableViewRow, Ti.UI.TextArea, Ti.UI.TextField, Ti.UI, Ti.UI.WebView, Ti.UI.Window, Ti.UI.iOS.BlurView, Ti.UI.iOS.CoverFlowView, Ti.UI.iOS.LivePhotoView, Ti.UI.iOS.SplitWindow, Ti.UI.iOS.Stepper, Ti.UI.iPad.Popover
4
4
  '.bg-transparent': { backgroundColor: 'transparent' }
5
5
  '.bg-black': { backgroundColor: '#000000' }
6
6
  '.bg-white': { backgroundColor: '#ffffff' }
@@ -1,6 +1,6 @@
1
1
  ```scss
2
2
  // Property: color
3
- // Component(s): Ti.Android.Notification, Ti.Android.R, Ti.UI.ActivityIndicator, Ti.UI.Android.CollapseToolbar, Ti.UI.Android.SearchView, Ti.UI.Animation, Ti.UI.Button, Ti.UI.Label, Ti.UI.ListItem, RowActionType, Ti.UI.Picker, Ti.UI.PickerRow, Ti.UI.ProgressBar, Ti.UI.SearchBar, Ti.UI.Switch, Ti.UI.TableViewRow, Ti.UI.TextArea, Ti.UI.TextField, GradientColorRef, titleAttributesParams, shadowDict
3
+ // Component(s): Ti.Android.Notification, Ti.Android.R, Ti.UI.ActivityIndicator, Ti.UI.Android.CollapseToolbar, Ti.UI.Android.SearchView, Ti.UI.Animation, Ti.UI.Button, Ti.UI.Label, Ti.UI.ListItem, RowActionType, Ti.UI.OptionBar, Ti.UI.Picker, Ti.UI.PickerRow, Ti.UI.ProgressBar, Ti.UI.SearchBar, Ti.UI.Switch, Ti.UI.TableViewRow, Ti.UI.TextArea, Ti.UI.TextField, GradientColorRef, titleAttributesParams, shadowDict
4
4
  '.transparent': { color: 'transparent' }
5
5
  '.black': { color: '#000000' }
6
6
  '.white': { color: '#ffffff' }
@@ -0,0 +1,249 @@
1
+ ```scss
2
+ // Property: onThumbColor
3
+ // Component(s): Ti.UI.Switch
4
+ '.on-thumb-transparent': { onThumbColor: 'transparent' }
5
+ '.on-thumb-black': { onThumbColor: '#000000' }
6
+ '.on-thumb-white': { onThumbColor: '#ffffff' }
7
+ '.on-thumb-slate-50': { onThumbColor: '#f8fafc' }
8
+ '.on-thumb-slate-100': { onThumbColor: '#f1f5f9' }
9
+ '.on-thumb-slate-200': { onThumbColor: '#e2e8f0' }
10
+ '.on-thumb-slate-300': { onThumbColor: '#cbd5e1' }
11
+ '.on-thumb-slate-400': { onThumbColor: '#94a3b8' }
12
+ '.on-thumb-slate-500': { onThumbColor: '#64748b' }
13
+ '.on-thumb-slate-600': { onThumbColor: '#475569' }
14
+ '.on-thumb-slate-700': { onThumbColor: '#334155' }
15
+ '.on-thumb-slate-800': { onThumbColor: '#1e293b' }
16
+ '.on-thumb-slate-900': { onThumbColor: '#0f172a' }
17
+ '.on-thumb-slate-950': { onThumbColor: '#020617' }
18
+ '.on-thumb-gray-50': { onThumbColor: '#f9fafb' }
19
+ '.on-thumb-gray-100': { onThumbColor: '#f3f4f6' }
20
+ '.on-thumb-gray-200': { onThumbColor: '#e5e7eb' }
21
+ '.on-thumb-gray-300': { onThumbColor: '#d1d5db' }
22
+ '.on-thumb-gray-400': { onThumbColor: '#9ca3af' }
23
+ '.on-thumb-gray-500': { onThumbColor: '#6b7280' }
24
+ '.on-thumb-gray-600': { onThumbColor: '#4b5563' }
25
+ '.on-thumb-gray-700': { onThumbColor: '#374151' }
26
+ '.on-thumb-gray-800': { onThumbColor: '#1f2937' }
27
+ '.on-thumb-gray-900': { onThumbColor: '#111827' }
28
+ '.on-thumb-gray-950': { onThumbColor: '#030712' }
29
+ '.on-thumb-zinc-50': { onThumbColor: '#fafafa' }
30
+ '.on-thumb-zinc-100': { onThumbColor: '#f4f4f5' }
31
+ '.on-thumb-zinc-200': { onThumbColor: '#e4e4e7' }
32
+ '.on-thumb-zinc-300': { onThumbColor: '#d4d4d8' }
33
+ '.on-thumb-zinc-400': { onThumbColor: '#a1a1aa' }
34
+ '.on-thumb-zinc-500': { onThumbColor: '#71717a' }
35
+ '.on-thumb-zinc-600': { onThumbColor: '#52525b' }
36
+ '.on-thumb-zinc-700': { onThumbColor: '#3f3f46' }
37
+ '.on-thumb-zinc-800': { onThumbColor: '#27272a' }
38
+ '.on-thumb-zinc-900': { onThumbColor: '#18181b' }
39
+ '.on-thumb-zinc-950': { onThumbColor: '#09090b' }
40
+ '.on-thumb-neutral-50': { onThumbColor: '#fafafa' }
41
+ '.on-thumb-neutral-100': { onThumbColor: '#f5f5f5' }
42
+ '.on-thumb-neutral-200': { onThumbColor: '#e5e5e5' }
43
+ '.on-thumb-neutral-300': { onThumbColor: '#d4d4d4' }
44
+ '.on-thumb-neutral-400': { onThumbColor: '#a3a3a3' }
45
+ '.on-thumb-neutral-500': { onThumbColor: '#737373' }
46
+ '.on-thumb-neutral-600': { onThumbColor: '#525252' }
47
+ '.on-thumb-neutral-700': { onThumbColor: '#404040' }
48
+ '.on-thumb-neutral-800': { onThumbColor: '#262626' }
49
+ '.on-thumb-neutral-900': { onThumbColor: '#171717' }
50
+ '.on-thumb-neutral-950': { onThumbColor: '#0a0a0a' }
51
+ '.on-thumb-stone-50': { onThumbColor: '#fafaf9' }
52
+ '.on-thumb-stone-100': { onThumbColor: '#f5f5f4' }
53
+ '.on-thumb-stone-200': { onThumbColor: '#e7e5e4' }
54
+ '.on-thumb-stone-300': { onThumbColor: '#d6d3d1' }
55
+ '.on-thumb-stone-400': { onThumbColor: '#a8a29e' }
56
+ '.on-thumb-stone-500': { onThumbColor: '#78716c' }
57
+ '.on-thumb-stone-600': { onThumbColor: '#57534e' }
58
+ '.on-thumb-stone-700': { onThumbColor: '#44403c' }
59
+ '.on-thumb-stone-800': { onThumbColor: '#292524' }
60
+ '.on-thumb-stone-900': { onThumbColor: '#1c1917' }
61
+ '.on-thumb-stone-950': { onThumbColor: '#0c0a09' }
62
+ '.on-thumb-red-50': { onThumbColor: '#fef2f2' }
63
+ '.on-thumb-red-100': { onThumbColor: '#fee2e2' }
64
+ '.on-thumb-red-200': { onThumbColor: '#fecaca' }
65
+ '.on-thumb-red-300': { onThumbColor: '#fca5a5' }
66
+ '.on-thumb-red-400': { onThumbColor: '#f87171' }
67
+ '.on-thumb-red-500': { onThumbColor: '#ef4444' }
68
+ '.on-thumb-red-600': { onThumbColor: '#dc2626' }
69
+ '.on-thumb-red-700': { onThumbColor: '#b91c1c' }
70
+ '.on-thumb-red-800': { onThumbColor: '#991b1b' }
71
+ '.on-thumb-red-900': { onThumbColor: '#7f1d1d' }
72
+ '.on-thumb-red-950': { onThumbColor: '#450a0a' }
73
+ '.on-thumb-orange-50': { onThumbColor: '#fff7ed' }
74
+ '.on-thumb-orange-100': { onThumbColor: '#ffedd5' }
75
+ '.on-thumb-orange-200': { onThumbColor: '#fed7aa' }
76
+ '.on-thumb-orange-300': { onThumbColor: '#fdba74' }
77
+ '.on-thumb-orange-400': { onThumbColor: '#fb923c' }
78
+ '.on-thumb-orange-500': { onThumbColor: '#f97316' }
79
+ '.on-thumb-orange-600': { onThumbColor: '#ea580c' }
80
+ '.on-thumb-orange-700': { onThumbColor: '#c2410c' }
81
+ '.on-thumb-orange-800': { onThumbColor: '#9a3412' }
82
+ '.on-thumb-orange-900': { onThumbColor: '#7c2d12' }
83
+ '.on-thumb-orange-950': { onThumbColor: '#431407' }
84
+ '.on-thumb-amber-50': { onThumbColor: '#fffbeb' }
85
+ '.on-thumb-amber-100': { onThumbColor: '#fef3c7' }
86
+ '.on-thumb-amber-200': { onThumbColor: '#fde68a' }
87
+ '.on-thumb-amber-300': { onThumbColor: '#fcd34d' }
88
+ '.on-thumb-amber-400': { onThumbColor: '#fbbf24' }
89
+ '.on-thumb-amber-500': { onThumbColor: '#f59e0b' }
90
+ '.on-thumb-amber-600': { onThumbColor: '#d97706' }
91
+ '.on-thumb-amber-700': { onThumbColor: '#b45309' }
92
+ '.on-thumb-amber-800': { onThumbColor: '#92400e' }
93
+ '.on-thumb-amber-900': { onThumbColor: '#78350f' }
94
+ '.on-thumb-amber-950': { onThumbColor: '#451a03' }
95
+ '.on-thumb-yellow-50': { onThumbColor: '#fefce8' }
96
+ '.on-thumb-yellow-100': { onThumbColor: '#fef9c3' }
97
+ '.on-thumb-yellow-200': { onThumbColor: '#fef08a' }
98
+ '.on-thumb-yellow-300': { onThumbColor: '#fde047' }
99
+ '.on-thumb-yellow-400': { onThumbColor: '#facc15' }
100
+ '.on-thumb-yellow-500': { onThumbColor: '#eab308' }
101
+ '.on-thumb-yellow-600': { onThumbColor: '#ca8a04' }
102
+ '.on-thumb-yellow-700': { onThumbColor: '#a16207' }
103
+ '.on-thumb-yellow-800': { onThumbColor: '#854d0e' }
104
+ '.on-thumb-yellow-900': { onThumbColor: '#713f12' }
105
+ '.on-thumb-yellow-950': { onThumbColor: '#422006' }
106
+ '.on-thumb-lime-50': { onThumbColor: '#f7fee7' }
107
+ '.on-thumb-lime-100': { onThumbColor: '#ecfccb' }
108
+ '.on-thumb-lime-200': { onThumbColor: '#d9f99d' }
109
+ '.on-thumb-lime-300': { onThumbColor: '#bef264' }
110
+ '.on-thumb-lime-400': { onThumbColor: '#a3e635' }
111
+ '.on-thumb-lime-500': { onThumbColor: '#84cc16' }
112
+ '.on-thumb-lime-600': { onThumbColor: '#65a30d' }
113
+ '.on-thumb-lime-700': { onThumbColor: '#4d7c0f' }
114
+ '.on-thumb-lime-800': { onThumbColor: '#3f6212' }
115
+ '.on-thumb-lime-900': { onThumbColor: '#365314' }
116
+ '.on-thumb-lime-950': { onThumbColor: '#1a2e05' }
117
+ '.on-thumb-green-50': { onThumbColor: '#f0fdf4' }
118
+ '.on-thumb-green-100': { onThumbColor: '#dcfce7' }
119
+ '.on-thumb-green-200': { onThumbColor: '#bbf7d0' }
120
+ '.on-thumb-green-300': { onThumbColor: '#86efac' }
121
+ '.on-thumb-green-400': { onThumbColor: '#4ade80' }
122
+ '.on-thumb-green-500': { onThumbColor: '#22c55e' }
123
+ '.on-thumb-green-600': { onThumbColor: '#16a34a' }
124
+ '.on-thumb-green-700': { onThumbColor: '#15803d' }
125
+ '.on-thumb-green-800': { onThumbColor: '#166534' }
126
+ '.on-thumb-green-900': { onThumbColor: '#14532d' }
127
+ '.on-thumb-green-950': { onThumbColor: '#052e16' }
128
+ '.on-thumb-emerald-50': { onThumbColor: '#ecfdf5' }
129
+ '.on-thumb-emerald-100': { onThumbColor: '#d1fae5' }
130
+ '.on-thumb-emerald-200': { onThumbColor: '#a7f3d0' }
131
+ '.on-thumb-emerald-300': { onThumbColor: '#6ee7b7' }
132
+ '.on-thumb-emerald-400': { onThumbColor: '#34d399' }
133
+ '.on-thumb-emerald-500': { onThumbColor: '#10b981' }
134
+ '.on-thumb-emerald-600': { onThumbColor: '#059669' }
135
+ '.on-thumb-emerald-700': { onThumbColor: '#047857' }
136
+ '.on-thumb-emerald-800': { onThumbColor: '#065f46' }
137
+ '.on-thumb-emerald-900': { onThumbColor: '#064e3b' }
138
+ '.on-thumb-emerald-950': { onThumbColor: '#022c22' }
139
+ '.on-thumb-teal-50': { onThumbColor: '#f0fdfa' }
140
+ '.on-thumb-teal-100': { onThumbColor: '#ccfbf1' }
141
+ '.on-thumb-teal-200': { onThumbColor: '#99f6e4' }
142
+ '.on-thumb-teal-300': { onThumbColor: '#5eead4' }
143
+ '.on-thumb-teal-400': { onThumbColor: '#2dd4bf' }
144
+ '.on-thumb-teal-500': { onThumbColor: '#14b8a6' }
145
+ '.on-thumb-teal-600': { onThumbColor: '#0d9488' }
146
+ '.on-thumb-teal-700': { onThumbColor: '#0f766e' }
147
+ '.on-thumb-teal-800': { onThumbColor: '#115e59' }
148
+ '.on-thumb-teal-900': { onThumbColor: '#134e4a' }
149
+ '.on-thumb-teal-950': { onThumbColor: '#042f2e' }
150
+ '.on-thumb-cyan-50': { onThumbColor: '#ecfeff' }
151
+ '.on-thumb-cyan-100': { onThumbColor: '#cffafe' }
152
+ '.on-thumb-cyan-200': { onThumbColor: '#a5f3fc' }
153
+ '.on-thumb-cyan-300': { onThumbColor: '#67e8f9' }
154
+ '.on-thumb-cyan-400': { onThumbColor: '#22d3ee' }
155
+ '.on-thumb-cyan-500': { onThumbColor: '#06b6d4' }
156
+ '.on-thumb-cyan-600': { onThumbColor: '#0891b2' }
157
+ '.on-thumb-cyan-700': { onThumbColor: '#0e7490' }
158
+ '.on-thumb-cyan-800': { onThumbColor: '#155e75' }
159
+ '.on-thumb-cyan-900': { onThumbColor: '#164e63' }
160
+ '.on-thumb-cyan-950': { onThumbColor: '#083344' }
161
+ '.on-thumb-sky-50': { onThumbColor: '#f0f9ff' }
162
+ '.on-thumb-sky-100': { onThumbColor: '#e0f2fe' }
163
+ '.on-thumb-sky-200': { onThumbColor: '#bae6fd' }
164
+ '.on-thumb-sky-300': { onThumbColor: '#7dd3fc' }
165
+ '.on-thumb-sky-400': { onThumbColor: '#38bdf8' }
166
+ '.on-thumb-sky-500': { onThumbColor: '#0ea5e9' }
167
+ '.on-thumb-sky-600': { onThumbColor: '#0284c7' }
168
+ '.on-thumb-sky-700': { onThumbColor: '#0369a1' }
169
+ '.on-thumb-sky-800': { onThumbColor: '#075985' }
170
+ '.on-thumb-sky-900': { onThumbColor: '#0c4a6e' }
171
+ '.on-thumb-sky-950': { onThumbColor: '#082f49' }
172
+ '.on-thumb-blue-50': { onThumbColor: '#eff6ff' }
173
+ '.on-thumb-blue-100': { onThumbColor: '#dbeafe' }
174
+ '.on-thumb-blue-200': { onThumbColor: '#bfdbfe' }
175
+ '.on-thumb-blue-300': { onThumbColor: '#93c5fd' }
176
+ '.on-thumb-blue-400': { onThumbColor: '#60a5fa' }
177
+ '.on-thumb-blue-500': { onThumbColor: '#3b82f6' }
178
+ '.on-thumb-blue-600': { onThumbColor: '#2563eb' }
179
+ '.on-thumb-blue-700': { onThumbColor: '#1d4ed8' }
180
+ '.on-thumb-blue-800': { onThumbColor: '#1e40af' }
181
+ '.on-thumb-blue-900': { onThumbColor: '#1e3a8a' }
182
+ '.on-thumb-blue-950': { onThumbColor: '#172554' }
183
+ '.on-thumb-indigo-50': { onThumbColor: '#eef2ff' }
184
+ '.on-thumb-indigo-100': { onThumbColor: '#e0e7ff' }
185
+ '.on-thumb-indigo-200': { onThumbColor: '#c7d2fe' }
186
+ '.on-thumb-indigo-300': { onThumbColor: '#a5b4fc' }
187
+ '.on-thumb-indigo-400': { onThumbColor: '#818cf8' }
188
+ '.on-thumb-indigo-500': { onThumbColor: '#6366f1' }
189
+ '.on-thumb-indigo-600': { onThumbColor: '#4f46e5' }
190
+ '.on-thumb-indigo-700': { onThumbColor: '#4338ca' }
191
+ '.on-thumb-indigo-800': { onThumbColor: '#3730a3' }
192
+ '.on-thumb-indigo-900': { onThumbColor: '#312e81' }
193
+ '.on-thumb-indigo-950': { onThumbColor: '#1e1b4b' }
194
+ '.on-thumb-violet-50': { onThumbColor: '#f5f3ff' }
195
+ '.on-thumb-violet-100': { onThumbColor: '#ede9fe' }
196
+ '.on-thumb-violet-200': { onThumbColor: '#ddd6fe' }
197
+ '.on-thumb-violet-300': { onThumbColor: '#c4b5fd' }
198
+ '.on-thumb-violet-400': { onThumbColor: '#a78bfa' }
199
+ '.on-thumb-violet-500': { onThumbColor: '#8b5cf6' }
200
+ '.on-thumb-violet-600': { onThumbColor: '#7c3aed' }
201
+ '.on-thumb-violet-700': { onThumbColor: '#6d28d9' }
202
+ '.on-thumb-violet-800': { onThumbColor: '#5b21b6' }
203
+ '.on-thumb-violet-900': { onThumbColor: '#4c1d95' }
204
+ '.on-thumb-violet-950': { onThumbColor: '#2e1065' }
205
+ '.on-thumb-purple-50': { onThumbColor: '#faf5ff' }
206
+ '.on-thumb-purple-100': { onThumbColor: '#f3e8ff' }
207
+ '.on-thumb-purple-200': { onThumbColor: '#e9d5ff' }
208
+ '.on-thumb-purple-300': { onThumbColor: '#d8b4fe' }
209
+ '.on-thumb-purple-400': { onThumbColor: '#c084fc' }
210
+ '.on-thumb-purple-500': { onThumbColor: '#a855f7' }
211
+ '.on-thumb-purple-600': { onThumbColor: '#9333ea' }
212
+ '.on-thumb-purple-700': { onThumbColor: '#7e22ce' }
213
+ '.on-thumb-purple-800': { onThumbColor: '#6b21a8' }
214
+ '.on-thumb-purple-900': { onThumbColor: '#581c87' }
215
+ '.on-thumb-purple-950': { onThumbColor: '#3b0764' }
216
+ '.on-thumb-fuchsia-50': { onThumbColor: '#fdf4ff' }
217
+ '.on-thumb-fuchsia-100': { onThumbColor: '#fae8ff' }
218
+ '.on-thumb-fuchsia-200': { onThumbColor: '#f5d0fe' }
219
+ '.on-thumb-fuchsia-300': { onThumbColor: '#f0abfc' }
220
+ '.on-thumb-fuchsia-400': { onThumbColor: '#e879f9' }
221
+ '.on-thumb-fuchsia-500': { onThumbColor: '#d946ef' }
222
+ '.on-thumb-fuchsia-600': { onThumbColor: '#c026d3' }
223
+ '.on-thumb-fuchsia-700': { onThumbColor: '#a21caf' }
224
+ '.on-thumb-fuchsia-800': { onThumbColor: '#86198f' }
225
+ '.on-thumb-fuchsia-900': { onThumbColor: '#701a75' }
226
+ '.on-thumb-fuchsia-950': { onThumbColor: '#4a044e' }
227
+ '.on-thumb-pink-50': { onThumbColor: '#fdf2f8' }
228
+ '.on-thumb-pink-100': { onThumbColor: '#fce7f3' }
229
+ '.on-thumb-pink-200': { onThumbColor: '#fbcfe8' }
230
+ '.on-thumb-pink-300': { onThumbColor: '#f9a8d4' }
231
+ '.on-thumb-pink-400': { onThumbColor: '#f472b6' }
232
+ '.on-thumb-pink-500': { onThumbColor: '#ec4899' }
233
+ '.on-thumb-pink-600': { onThumbColor: '#db2777' }
234
+ '.on-thumb-pink-700': { onThumbColor: '#be185d' }
235
+ '.on-thumb-pink-800': { onThumbColor: '#9d174d' }
236
+ '.on-thumb-pink-900': { onThumbColor: '#831843' }
237
+ '.on-thumb-pink-950': { onThumbColor: '#500724' }
238
+ '.on-thumb-rose-50': { onThumbColor: '#fff1f2' }
239
+ '.on-thumb-rose-100': { onThumbColor: '#ffe4e6' }
240
+ '.on-thumb-rose-200': { onThumbColor: '#fecdd3' }
241
+ '.on-thumb-rose-300': { onThumbColor: '#fda4af' }
242
+ '.on-thumb-rose-400': { onThumbColor: '#fb7185' }
243
+ '.on-thumb-rose-500': { onThumbColor: '#f43f5e' }
244
+ '.on-thumb-rose-600': { onThumbColor: '#e11d48' }
245
+ '.on-thumb-rose-700': { onThumbColor: '#be123c' }
246
+ '.on-thumb-rose-800': { onThumbColor: '#9f1239' }
247
+ '.on-thumb-rose-900': { onThumbColor: '#881337' }
248
+ '.on-thumb-rose-950': { onThumbColor: '#4c0519' }
249
+ ```
@@ -1,6 +1,6 @@
1
1
  ```scss
2
2
  // Property: selectedBackgroundColor
3
- // Component(s): Ti.UI.ListItem, Ti.UI.TableViewRow
3
+ // Component(s): Ti.UI.ListItem, Ti.UI.OptionBar, Ti.UI.TabbedBar, Ti.UI.TableViewRow
4
4
  '.selected-bg-transparent': { selectedBackgroundColor: 'transparent' }
5
5
  '.selected-bg-black': { selectedBackgroundColor: '#000000' }
6
6
  '.selected-bg-white': { selectedBackgroundColor: '#ffffff' }