purgetss 6.3.10 → 6.3.12
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/bin/purgetss +3 -2
- package/dist/glossary/booleanProperties/enabled.md +1 -1
- package/dist/glossary/booleanProperties/experimental.md +7 -0
- package/dist/glossary/booleanProperties/html.md +1 -1
- package/dist/glossary/configurableProperties/letterSpacing.md +69 -0
- package/dist/glossary/constantProperties/flags.md +1 -1
- package/dist/glossary/constantProperties/layerType.md +8 -0
- package/dist/purgetss.ui.js +1 -1
- package/dist/tailwind.tss +84 -3
- package/index.js +4 -5
- package/lib/completions/titanium/completions-v3.json +162 -18
- package/package.json +1 -1
- package/dist/glossary/compoundClasses/selectionStyle.md +0 -6
package/bin/purgetss
CHANGED
|
@@ -142,8 +142,9 @@ program
|
|
|
142
142
|
.alias('bf')
|
|
143
143
|
.description(`Generate ${chalk.yellow('fonts.tss')} from font and CSS files in ${chalk.yellow('./purgetss/fonts')}`)
|
|
144
144
|
.help(`Generate a ${chalk.yellow('./purgetss/styles/fonts.tss')} file based on the font and css files located in ${chalk.yellow('./purgetss/fonts')} folder`)
|
|
145
|
-
.option('-
|
|
146
|
-
.option('-p, --prefix',
|
|
145
|
+
.option('-f, --font-class-from-filename', 'Use the font’s filename as the name of the font class instead of the font family’s name.')
|
|
146
|
+
.option('-p, --icon-prefix-from-filename', `Apply the style’s filename as a prefix in font icons for both the ${chalk.yellow('font.tss')} and ${chalk.yellow('purgetss.fonts.js')} files.`)
|
|
147
|
+
.option('-m, --module', `Generate a CommonJS module in the ${chalk.yellow('./app/lib/')} folder called ${chalk.yellow('purgetss-fonts.js')} containing all font classes for both regular fonts and font icons.`)
|
|
147
148
|
.action((args, options, logger) => {
|
|
148
149
|
purgetss.buildFonts(options)
|
|
149
150
|
})
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
```css
|
|
2
2
|
// Property: enabled
|
|
3
|
-
// Component(s): Ti.Android.MenuItem, Ti.UI.Button, Ti.UI.Slider, Ti.UI.Switch, disableTabOptions, Ti.UI.iOS.Stepper, BarItemType
|
|
3
|
+
// Component(s): Ti.Android.MenuItem, Ti.UI.Button, Ti.UI.Slider, Ti.UI.Switch, Ti.UI.TabGroup, disableTabOptions, Ti.UI.iOS.Stepper, BarItemType
|
|
4
4
|
'.enabled': { enabled: true }
|
|
5
5
|
'.enabled-false': { enabled: false }
|
|
6
6
|
```
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
```css
|
|
2
|
+
// Property: experimental
|
|
3
|
+
// Description: Only used for a BottomNavigation setup. If set to true it will use an optimized BottomNavigation setup with fixes for Material 3 layouts and new properties: indicatorColor and iconFamily. The new BottomNavigation will only load the active Activity and doesn't support swipeable.
|
|
4
|
+
// Component(s): Ti.UI.TabGroup
|
|
5
|
+
'.experimental': { experimental: true }
|
|
6
|
+
'.experimental-false': { experimental: false }
|
|
7
|
+
```
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
```css
|
|
2
|
+
// Property: letterSpacing
|
|
3
|
+
// Description: Letter spacing of the text as a float value.
|
|
4
|
+
// Component(s): Ti.UI.Label
|
|
5
|
+
'.letter-spacing-0': { letterSpacing: 0 }
|
|
6
|
+
'.letter-spacing-1': { letterSpacing: 4 }
|
|
7
|
+
'.letter-spacing-2': { letterSpacing: 8 }
|
|
8
|
+
'.letter-spacing-3': { letterSpacing: 12 }
|
|
9
|
+
'.letter-spacing-4': { letterSpacing: 16 }
|
|
10
|
+
'.letter-spacing-5': { letterSpacing: 20 }
|
|
11
|
+
'.letter-spacing-6': { letterSpacing: 24 }
|
|
12
|
+
'.letter-spacing-7': { letterSpacing: 28 }
|
|
13
|
+
'.letter-spacing-8': { letterSpacing: 32 }
|
|
14
|
+
'.letter-spacing-9': { letterSpacing: 36 }
|
|
15
|
+
'.letter-spacing-10': { letterSpacing: 40 }
|
|
16
|
+
'.letter-spacing-11': { letterSpacing: 44 }
|
|
17
|
+
'.letter-spacing-12': { letterSpacing: 48 }
|
|
18
|
+
'.letter-spacing-14': { letterSpacing: 56 }
|
|
19
|
+
'.letter-spacing-16': { letterSpacing: 64 }
|
|
20
|
+
'.letter-spacing-20': { letterSpacing: 80 }
|
|
21
|
+
'.letter-spacing-24': { letterSpacing: 96 }
|
|
22
|
+
'.letter-spacing-28': { letterSpacing: 112 }
|
|
23
|
+
'.letter-spacing-32': { letterSpacing: 128 }
|
|
24
|
+
'.letter-spacing-36': { letterSpacing: 144 }
|
|
25
|
+
'.letter-spacing-40': { letterSpacing: 160 }
|
|
26
|
+
'.letter-spacing-44': { letterSpacing: 176 }
|
|
27
|
+
'.letter-spacing-48': { letterSpacing: 192 }
|
|
28
|
+
'.letter-spacing-52': { letterSpacing: 208 }
|
|
29
|
+
'.letter-spacing-56': { letterSpacing: 224 }
|
|
30
|
+
'.letter-spacing-60': { letterSpacing: 240 }
|
|
31
|
+
'.letter-spacing-64': { letterSpacing: 256 }
|
|
32
|
+
'.letter-spacing-72': { letterSpacing: 288 }
|
|
33
|
+
'.letter-spacing-80': { letterSpacing: 320 }
|
|
34
|
+
'.letter-spacing-96': { letterSpacing: 384 }
|
|
35
|
+
'.letter-spacing-auto': { letterSpacing: Ti.UI.SIZE }
|
|
36
|
+
'.letter-spacing-px': { letterSpacing: '1px' }
|
|
37
|
+
'.letter-spacing-0.5': { letterSpacing: 2 }
|
|
38
|
+
'.letter-spacing-1.5': { letterSpacing: 6 }
|
|
39
|
+
'.letter-spacing-2.5': { letterSpacing: 10 }
|
|
40
|
+
'.letter-spacing-3.5': { letterSpacing: 14 }
|
|
41
|
+
'.letter-spacing-1/2': { letterSpacing: '50%' }
|
|
42
|
+
'.letter-spacing-1/3': { letterSpacing: '33.333334%' }
|
|
43
|
+
'.letter-spacing-2/3': { letterSpacing: '66.666667%' }
|
|
44
|
+
'.letter-spacing-1/4': { letterSpacing: '25%' }
|
|
45
|
+
'.letter-spacing-2/4': { letterSpacing: '50%' }
|
|
46
|
+
'.letter-spacing-3/4': { letterSpacing: '75%' }
|
|
47
|
+
'.letter-spacing-1/5': { letterSpacing: '20%' }
|
|
48
|
+
'.letter-spacing-2/5': { letterSpacing: '40%' }
|
|
49
|
+
'.letter-spacing-3/5': { letterSpacing: '60%' }
|
|
50
|
+
'.letter-spacing-4/5': { letterSpacing: '80%' }
|
|
51
|
+
'.letter-spacing-1/6': { letterSpacing: '16.666667%' }
|
|
52
|
+
'.letter-spacing-2/6': { letterSpacing: '33.333334%' }
|
|
53
|
+
'.letter-spacing-3/6': { letterSpacing: '50%' }
|
|
54
|
+
'.letter-spacing-4/6': { letterSpacing: '66.666667%' }
|
|
55
|
+
'.letter-spacing-5/6': { letterSpacing: '83.333334%' }
|
|
56
|
+
'.letter-spacing-1/12': { letterSpacing: '8.333334%' }
|
|
57
|
+
'.letter-spacing-2/12': { letterSpacing: '16.666667%' }
|
|
58
|
+
'.letter-spacing-3/12': { letterSpacing: '25%' }
|
|
59
|
+
'.letter-spacing-4/12': { letterSpacing: '33.333334%' }
|
|
60
|
+
'.letter-spacing-5/12': { letterSpacing: '41.666667%' }
|
|
61
|
+
'.letter-spacing-6/12': { letterSpacing: '50%' }
|
|
62
|
+
'.letter-spacing-7/12': { letterSpacing: '58.333334%' }
|
|
63
|
+
'.letter-spacing-8/12': { letterSpacing: '66.666667%' }
|
|
64
|
+
'.letter-spacing-9/12': { letterSpacing: '75%' }
|
|
65
|
+
'.letter-spacing-10/12': { letterSpacing: '83.333334%' }
|
|
66
|
+
'.letter-spacing-11/12': { letterSpacing: '91.666667%' }
|
|
67
|
+
'.letter-spacing-full': { letterSpacing: '100%' }
|
|
68
|
+
'.letter-spacing-screen': { letterSpacing: Ti.UI.FILL }
|
|
69
|
+
```
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
```css
|
|
2
2
|
// Property: flags
|
|
3
|
-
// Component(s): Ti.Android.Intent, Ti.Android.Notification, wakeLockOptions, Ti.Android.PendingIntent, Ti.UI.Android.CollapseToolbar
|
|
3
|
+
// Component(s): Ti.Android.Intent, Ti.Android.Notification, wakeLockOptions, Ti.Android.PendingIntent, Ti.UI.Android.CollapseToolbar, Ti.UI.TabGroup
|
|
4
4
|
'.flags-activity-brought-to-front[platform=android]': { flags: Ti.Android.FLAG_ACTIVITY_BROUGHT_TO_FRONT }
|
|
5
5
|
'.flags-activity-clear-top[platform=android]': { flags: Ti.Android.FLAG_ACTIVITY_CLEAR_TOP }
|
|
6
6
|
'.flags-activity-clear-when-task-reset[platform=android]': { flags: Ti.Android.FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET }
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
```css
|
|
2
|
+
// Property: layerType
|
|
3
|
+
// Description: A value indicating the render mode of the WebView
|
|
4
|
+
// Component(s): Ti.UI.WebView
|
|
5
|
+
'.layer-type-web-view-none': { layerType: Ti.UI.WebView.LAYER_TYPE_NONE }
|
|
6
|
+
'.layer-type-web-view-software': { layerType: Ti.UI.WebView.LAYER_TYPE_SOFTWARE }
|
|
7
|
+
'.layer-type-web-view-hardware': { layerType: Ti.UI.WebView.LAYER_TYPE_HARDWARE }
|
|
8
|
+
```
|
package/dist/purgetss.ui.js
CHANGED
package/dist/tailwind.tss
CHANGED
|
@@ -8478,7 +8478,7 @@
|
|
|
8478
8478
|
'.success-false': { success: false }
|
|
8479
8479
|
|
|
8480
8480
|
// Property: flags
|
|
8481
|
-
// Component(s): Ti.Android.Intent, Ti.Android.Notification, wakeLockOptions, Ti.Android.PendingIntent, Ti.UI.Android.CollapseToolbar
|
|
8481
|
+
// Component(s): Ti.Android.Intent, Ti.Android.Notification, wakeLockOptions, Ti.Android.PendingIntent, Ti.UI.Android.CollapseToolbar, Ti.UI.TabGroup
|
|
8482
8482
|
'.flags-activity-brought-to-front[platform=android]': { flags: Ti.Android.FLAG_ACTIVITY_BROUGHT_TO_FRONT }
|
|
8483
8483
|
'.flags-activity-clear-top[platform=android]': { flags: Ti.Android.FLAG_ACTIVITY_CLEAR_TOP }
|
|
8484
8484
|
'.flags-activity-clear-when-task-reset[platform=android]': { flags: Ti.Android.FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET }
|
|
@@ -8544,7 +8544,7 @@
|
|
|
8544
8544
|
'.checked-false': { checked: false }
|
|
8545
8545
|
|
|
8546
8546
|
// Property: enabled
|
|
8547
|
-
// Component(s): Ti.Android.MenuItem, Ti.UI.Button, Ti.UI.Slider, Ti.UI.Switch, disableTabOptions, Ti.UI.iOS.Stepper, BarItemType
|
|
8547
|
+
// Component(s): Ti.Android.MenuItem, Ti.UI.Button, Ti.UI.Slider, Ti.UI.Switch, Ti.UI.TabGroup, disableTabOptions, Ti.UI.iOS.Stepper, BarItemType
|
|
8548
8548
|
'.enabled': { enabled: true }
|
|
8549
8549
|
'.enabled-false': { enabled: false }
|
|
8550
8550
|
|
|
@@ -14356,7 +14356,7 @@
|
|
|
14356
14356
|
'.wobble-false': { wobble: false }
|
|
14357
14357
|
|
|
14358
14358
|
// Property: html
|
|
14359
|
-
// Component(s): Ti.UI.EmailDialog, Ti.UI.Label, Ti.UI.WebView
|
|
14359
|
+
// Component(s): Ti.UI.EmailDialog, Ti.UI.Label, Ti.UI.TextArea, Ti.UI.WebView
|
|
14360
14360
|
'.html': { html: true }
|
|
14361
14361
|
'.html-false': { html: false }
|
|
14362
14362
|
|
|
@@ -15143,6 +15143,74 @@
|
|
|
15143
15143
|
'.lines-11': { lines: 11 }
|
|
15144
15144
|
'.lines-12': { lines: 12 }
|
|
15145
15145
|
|
|
15146
|
+
// Property: letterSpacing
|
|
15147
|
+
// Description: Letter spacing of the text as a float value.
|
|
15148
|
+
// Component(s): Ti.UI.Label
|
|
15149
|
+
'.letter-spacing-0': { letterSpacing: 0 }
|
|
15150
|
+
'.letter-spacing-1': { letterSpacing: 4 }
|
|
15151
|
+
'.letter-spacing-2': { letterSpacing: 8 }
|
|
15152
|
+
'.letter-spacing-3': { letterSpacing: 12 }
|
|
15153
|
+
'.letter-spacing-4': { letterSpacing: 16 }
|
|
15154
|
+
'.letter-spacing-5': { letterSpacing: 20 }
|
|
15155
|
+
'.letter-spacing-6': { letterSpacing: 24 }
|
|
15156
|
+
'.letter-spacing-7': { letterSpacing: 28 }
|
|
15157
|
+
'.letter-spacing-8': { letterSpacing: 32 }
|
|
15158
|
+
'.letter-spacing-9': { letterSpacing: 36 }
|
|
15159
|
+
'.letter-spacing-10': { letterSpacing: 40 }
|
|
15160
|
+
'.letter-spacing-11': { letterSpacing: 44 }
|
|
15161
|
+
'.letter-spacing-12': { letterSpacing: 48 }
|
|
15162
|
+
'.letter-spacing-14': { letterSpacing: 56 }
|
|
15163
|
+
'.letter-spacing-16': { letterSpacing: 64 }
|
|
15164
|
+
'.letter-spacing-20': { letterSpacing: 80 }
|
|
15165
|
+
'.letter-spacing-24': { letterSpacing: 96 }
|
|
15166
|
+
'.letter-spacing-28': { letterSpacing: 112 }
|
|
15167
|
+
'.letter-spacing-32': { letterSpacing: 128 }
|
|
15168
|
+
'.letter-spacing-36': { letterSpacing: 144 }
|
|
15169
|
+
'.letter-spacing-40': { letterSpacing: 160 }
|
|
15170
|
+
'.letter-spacing-44': { letterSpacing: 176 }
|
|
15171
|
+
'.letter-spacing-48': { letterSpacing: 192 }
|
|
15172
|
+
'.letter-spacing-52': { letterSpacing: 208 }
|
|
15173
|
+
'.letter-spacing-56': { letterSpacing: 224 }
|
|
15174
|
+
'.letter-spacing-60': { letterSpacing: 240 }
|
|
15175
|
+
'.letter-spacing-64': { letterSpacing: 256 }
|
|
15176
|
+
'.letter-spacing-72': { letterSpacing: 288 }
|
|
15177
|
+
'.letter-spacing-80': { letterSpacing: 320 }
|
|
15178
|
+
'.letter-spacing-96': { letterSpacing: 384 }
|
|
15179
|
+
'.letter-spacing-auto': { letterSpacing: Ti.UI.SIZE }
|
|
15180
|
+
'.letter-spacing-px': { letterSpacing: '1px' }
|
|
15181
|
+
'.letter-spacing-0.5': { letterSpacing: 2 }
|
|
15182
|
+
'.letter-spacing-1.5': { letterSpacing: 6 }
|
|
15183
|
+
'.letter-spacing-2.5': { letterSpacing: 10 }
|
|
15184
|
+
'.letter-spacing-3.5': { letterSpacing: 14 }
|
|
15185
|
+
'.letter-spacing-1/2': { letterSpacing: '50%' }
|
|
15186
|
+
'.letter-spacing-1/3': { letterSpacing: '33.333334%' }
|
|
15187
|
+
'.letter-spacing-2/3': { letterSpacing: '66.666667%' }
|
|
15188
|
+
'.letter-spacing-1/4': { letterSpacing: '25%' }
|
|
15189
|
+
'.letter-spacing-2/4': { letterSpacing: '50%' }
|
|
15190
|
+
'.letter-spacing-3/4': { letterSpacing: '75%' }
|
|
15191
|
+
'.letter-spacing-1/5': { letterSpacing: '20%' }
|
|
15192
|
+
'.letter-spacing-2/5': { letterSpacing: '40%' }
|
|
15193
|
+
'.letter-spacing-3/5': { letterSpacing: '60%' }
|
|
15194
|
+
'.letter-spacing-4/5': { letterSpacing: '80%' }
|
|
15195
|
+
'.letter-spacing-1/6': { letterSpacing: '16.666667%' }
|
|
15196
|
+
'.letter-spacing-2/6': { letterSpacing: '33.333334%' }
|
|
15197
|
+
'.letter-spacing-3/6': { letterSpacing: '50%' }
|
|
15198
|
+
'.letter-spacing-4/6': { letterSpacing: '66.666667%' }
|
|
15199
|
+
'.letter-spacing-5/6': { letterSpacing: '83.333334%' }
|
|
15200
|
+
'.letter-spacing-1/12': { letterSpacing: '8.333334%' }
|
|
15201
|
+
'.letter-spacing-2/12': { letterSpacing: '16.666667%' }
|
|
15202
|
+
'.letter-spacing-3/12': { letterSpacing: '25%' }
|
|
15203
|
+
'.letter-spacing-4/12': { letterSpacing: '33.333334%' }
|
|
15204
|
+
'.letter-spacing-5/12': { letterSpacing: '41.666667%' }
|
|
15205
|
+
'.letter-spacing-6/12': { letterSpacing: '50%' }
|
|
15206
|
+
'.letter-spacing-7/12': { letterSpacing: '58.333334%' }
|
|
15207
|
+
'.letter-spacing-8/12': { letterSpacing: '66.666667%' }
|
|
15208
|
+
'.letter-spacing-9/12': { letterSpacing: '75%' }
|
|
15209
|
+
'.letter-spacing-10/12': { letterSpacing: '83.333334%' }
|
|
15210
|
+
'.letter-spacing-11/12': { letterSpacing: '91.666667%' }
|
|
15211
|
+
'.letter-spacing-full': { letterSpacing: '100%' }
|
|
15212
|
+
'.letter-spacing-screen': { letterSpacing: Ti.UI.FILL }
|
|
15213
|
+
|
|
15146
15214
|
// Property: maxLines
|
|
15147
15215
|
// Component(s): Ti.UI.Label, Ti.UI.TextArea
|
|
15148
15216
|
'.max-lines-1': { maxLines: 1 }
|
|
@@ -23499,6 +23567,12 @@
|
|
|
23499
23567
|
'.tab-bar-visible': { tabBarVisible: true }
|
|
23500
23568
|
'.tab-bar-visible-false': { tabBarVisible: false }
|
|
23501
23569
|
|
|
23570
|
+
// Property: experimental
|
|
23571
|
+
// Description: Only used for a BottomNavigation setup. If set to true it will use an optimized BottomNavigation setup with fixes for Material 3 layouts and new properties: indicatorColor and iconFamily. The new BottomNavigation will only load the active Activity and doesn't support swipeable.
|
|
23572
|
+
// Component(s): Ti.UI.TabGroup
|
|
23573
|
+
'.experimental': { experimental: true }
|
|
23574
|
+
'.experimental-false': { experimental: false }
|
|
23575
|
+
|
|
23502
23576
|
// Property: filterAnchored
|
|
23503
23577
|
// Description: Determines whether the search is limited to the start of the string
|
|
23504
23578
|
// Component(s): Ti.UI.TableView
|
|
@@ -24846,6 +24920,13 @@
|
|
|
24846
24920
|
'.plugin-state-webview-plugins-on[platform=android]': { pluginState: Ti.UI.Android.WEBVIEW_PLUGINS_ON }
|
|
24847
24921
|
'.plugin-state-webview-plugins-on-demand[platform=android]': { pluginState: Ti.UI.Android.WEBVIEW_PLUGINS_ON_DEMAND }
|
|
24848
24922
|
|
|
24923
|
+
// Property: layerType
|
|
24924
|
+
// Description: A value indicating the render mode of the WebView
|
|
24925
|
+
// Component(s): Ti.UI.WebView
|
|
24926
|
+
'.layer-type-web-view-none': { layerType: Ti.UI.WebView.LAYER_TYPE_NONE }
|
|
24927
|
+
'.layer-type-web-view-software': { layerType: Ti.UI.WebView.LAYER_TYPE_SOFTWARE }
|
|
24928
|
+
'.layer-type-web-view-hardware': { layerType: Ti.UI.WebView.LAYER_TYPE_HARDWARE }
|
|
24929
|
+
|
|
24849
24930
|
// Property: mixedContentMode
|
|
24850
24931
|
// Description: If true, allows the loading of insecure resources from a secure origin.
|
|
24851
24932
|
// Component(s): Ti.UI.WebView
|
package/index.js
CHANGED
|
@@ -651,11 +651,10 @@ function buildFonts(options) {
|
|
|
651
651
|
tssClasses += processFontMeta(fontMeta)
|
|
652
652
|
|
|
653
653
|
const fontFamilyName = fontMeta.postScriptName.replace(/\//g, '')
|
|
654
|
-
|
|
655
|
-
if (configFile.fonts && (configFile.fonts.mode.toLowerCase() === 'postscriptname' || configFile.fonts.mode.toLowerCase() === 'postscript' || configFile.fonts.mode.toLowerCase() === 'ps')) {
|
|
656
|
-
tssClasses += `\n'.${fontFamilyName.toLowerCase()}': { font: { fontFamily: '${fontFamilyName}' } }\n`
|
|
657
|
-
} else {
|
|
654
|
+
if (options.fontClassFromFilename) {
|
|
658
655
|
tssClasses += `\n'.${getFileName(file)}': { font: { fontFamily: '${fontFamilyName}' } }\n`
|
|
656
|
+
} else {
|
|
657
|
+
tssClasses += `\n'.${fontFamilyName.toLowerCase()}': { font: { fontFamily: '${fontFamilyName}' } }\n`
|
|
659
658
|
}
|
|
660
659
|
|
|
661
660
|
// ! Copy Font File
|
|
@@ -678,7 +677,7 @@ function buildFonts(options) {
|
|
|
678
677
|
const cssFile = readCSS(file)
|
|
679
678
|
const theFile = file.split('/')
|
|
680
679
|
const theCSSFile = theFile.pop()
|
|
681
|
-
const prefix = options.
|
|
680
|
+
const prefix = options.iconPrefixFromFilename ? theCSSFile.split('.').shift() : null
|
|
682
681
|
let theFolder = theFile.pop() + '/'
|
|
683
682
|
if (theFolder === 'fonts/') {
|
|
684
683
|
theFolder = ''
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 3,
|
|
3
|
-
"sdkVersion": "12.
|
|
3
|
+
"sdkVersion": "12.7.0.GA",
|
|
4
4
|
"properties": {
|
|
5
5
|
"ACCURACY_AUTHORIZATION_FULL": {
|
|
6
6
|
"description": "The user authorized the app to access location data with full accuracy.",
|
|
@@ -4127,6 +4127,24 @@
|
|
|
4127
4127
|
"readOnly": false,
|
|
4128
4128
|
"values": []
|
|
4129
4129
|
},
|
|
4130
|
+
"LAYER_TYPE_HARDWARE": {
|
|
4131
|
+
"description": "Hardware rendering mode",
|
|
4132
|
+
"type": "Number",
|
|
4133
|
+
"readOnly": false,
|
|
4134
|
+
"values": []
|
|
4135
|
+
},
|
|
4136
|
+
"LAYER_TYPE_NONE": {
|
|
4137
|
+
"description": "Default rendering mode",
|
|
4138
|
+
"type": "Number",
|
|
4139
|
+
"readOnly": false,
|
|
4140
|
+
"values": []
|
|
4141
|
+
},
|
|
4142
|
+
"LAYER_TYPE_SOFTWARE": {
|
|
4143
|
+
"description": "Software rendering mode",
|
|
4144
|
+
"type": "Number",
|
|
4145
|
+
"readOnly": false,
|
|
4146
|
+
"values": []
|
|
4147
|
+
},
|
|
4130
4148
|
"LEFT": {
|
|
4131
4149
|
"description": "The inserted row or rows slides in from the left; the deleted row or rows slides out to the\nleft.",
|
|
4132
4150
|
"type": "Number",
|
|
@@ -6143,6 +6161,12 @@
|
|
|
6143
6161
|
"readOnly": false,
|
|
6144
6162
|
"values": []
|
|
6145
6163
|
},
|
|
6164
|
+
"STATUS_BAR_LIGHT": {
|
|
6165
|
+
"description": "Sets the color of the status bar to light mode. Needs Android API level 23.",
|
|
6166
|
+
"type": "Number",
|
|
6167
|
+
"readOnly": false,
|
|
6168
|
+
"values": []
|
|
6169
|
+
},
|
|
6146
6170
|
"STATUS_CANCELED": {
|
|
6147
6171
|
"description": "Event canceled status.",
|
|
6148
6172
|
"type": "Number",
|
|
@@ -11881,6 +11905,15 @@
|
|
|
11881
11905
|
"readOnly": true,
|
|
11882
11906
|
"values": []
|
|
11883
11907
|
},
|
|
11908
|
+
"experimental": {
|
|
11909
|
+
"description": "Only used for a BottomNavigation setup. If set to <code>true</code> it will use an optimized BottomNavigation\nsetup with fixes for Material 3 layouts and new properties: <code>indicatorColor</code> and <code>iconFamily</code>.\nThe new BottomNavigation will only load the active Activity and doesn't support <code>swipeable</code>.",
|
|
11910
|
+
"type": "Boolean",
|
|
11911
|
+
"readOnly": true,
|
|
11912
|
+
"values": [
|
|
11913
|
+
"true",
|
|
11914
|
+
"false"
|
|
11915
|
+
]
|
|
11916
|
+
},
|
|
11884
11917
|
"expirationDate": {
|
|
11885
11918
|
"description": "",
|
|
11886
11919
|
"type": "String",
|
|
@@ -13072,6 +13105,12 @@
|
|
|
13072
13105
|
"'yellow'"
|
|
13073
13106
|
]
|
|
13074
13107
|
},
|
|
13108
|
+
"iconFamily": {
|
|
13109
|
+
"description": "Specifies the font family or specific font to use.",
|
|
13110
|
+
"type": "String",
|
|
13111
|
+
"readOnly": true,
|
|
13112
|
+
"values": []
|
|
13113
|
+
},
|
|
13075
13114
|
"iconInsets": {
|
|
13076
13115
|
"description": "The icon inset or outset for each edge.",
|
|
13077
13116
|
"type": "TabIconInsets",
|
|
@@ -14047,6 +14086,16 @@
|
|
|
14047
14086
|
"false"
|
|
14048
14087
|
]
|
|
14049
14088
|
},
|
|
14089
|
+
"layerType": {
|
|
14090
|
+
"description": "A value indicating the render mode of the WebView",
|
|
14091
|
+
"type": "Number",
|
|
14092
|
+
"readOnly": true,
|
|
14093
|
+
"values": [
|
|
14094
|
+
"Ti.UI.WebView.LAYER_TYPE_NONE",
|
|
14095
|
+
"Ti.UI.WebView.LAYER_TYPE_SOFTWARE",
|
|
14096
|
+
"Ti.UI.WebView.LAYER_TYPE_HARDWARE"
|
|
14097
|
+
]
|
|
14098
|
+
},
|
|
14050
14099
|
"layout": {
|
|
14051
14100
|
"description": "",
|
|
14052
14101
|
"type": "String",
|
|
@@ -14184,6 +14233,12 @@
|
|
|
14184
14233
|
"readOnly": true,
|
|
14185
14234
|
"values": []
|
|
14186
14235
|
},
|
|
14236
|
+
"letterSpacing": {
|
|
14237
|
+
"description": "Letter spacing of the <a href=\"Titanium.UI.Label.text\">text</a> as a float value.",
|
|
14238
|
+
"type": "Number",
|
|
14239
|
+
"readOnly": true,
|
|
14240
|
+
"values": []
|
|
14241
|
+
},
|
|
14187
14242
|
"level": {
|
|
14188
14243
|
"description": "The logical floor of the building.",
|
|
14189
14244
|
"type": "Number",
|
|
@@ -15493,7 +15548,7 @@
|
|
|
15493
15548
|
},
|
|
15494
15549
|
"offset": {
|
|
15495
15550
|
"description": "",
|
|
15496
|
-
"type": "
|
|
15551
|
+
"type": "RefreshControlOffset",
|
|
15497
15552
|
"readOnly": true,
|
|
15498
15553
|
"values": []
|
|
15499
15554
|
},
|
|
@@ -18420,6 +18475,12 @@
|
|
|
18420
18475
|
"readOnly": true,
|
|
18421
18476
|
"values": []
|
|
18422
18477
|
},
|
|
18478
|
+
"start": {
|
|
18479
|
+
"description": "The offset from the top of this view at which the progress spinner should appear.",
|
|
18480
|
+
"type": "Number",
|
|
18481
|
+
"readOnly": true,
|
|
18482
|
+
"values": []
|
|
18483
|
+
},
|
|
18423
18484
|
"startMode": {
|
|
18424
18485
|
"description": "One of the <code>START_*</code> constants from <a href=\"Titanium.Android\">Titanium.Android</a> to specify the "stickiness" of the Service when Android shuts down the host application.",
|
|
18425
18486
|
"type": "Number",
|
|
@@ -19217,6 +19278,12 @@
|
|
|
19217
19278
|
"Ti.UI.TEXT_STYLE_LARGE_TITLE"
|
|
19218
19279
|
]
|
|
19219
19280
|
},
|
|
19281
|
+
"textTransform": {
|
|
19282
|
+
"description": "Property that specifies how to capitialize the text. Can be <code>lowercase</code>, <code>uppercase</code> or <code>none</code> (default)",
|
|
19283
|
+
"type": "String",
|
|
19284
|
+
"readOnly": true,
|
|
19285
|
+
"values": []
|
|
19286
|
+
},
|
|
19220
19287
|
"textid": {
|
|
19221
19288
|
"description": "Key identifying a string from the locale file to use for the label text.",
|
|
19222
19289
|
"type": "String",
|
|
@@ -20733,6 +20800,7 @@
|
|
|
20733
20800
|
"longpress",
|
|
20734
20801
|
"pinch",
|
|
20735
20802
|
"postlayout",
|
|
20803
|
+
"rotate",
|
|
20736
20804
|
"singletap",
|
|
20737
20805
|
"swipe",
|
|
20738
20806
|
"touchcancel",
|
|
@@ -25310,6 +25378,7 @@
|
|
|
25310
25378
|
"keypressed",
|
|
25311
25379
|
"longpress",
|
|
25312
25380
|
"postlayout",
|
|
25381
|
+
"rotate",
|
|
25313
25382
|
"singletap",
|
|
25314
25383
|
"swipe",
|
|
25315
25384
|
"touchcancel",
|
|
@@ -26004,7 +26073,9 @@
|
|
|
26004
26073
|
"messageid",
|
|
26005
26074
|
"style"
|
|
26006
26075
|
],
|
|
26007
|
-
"events": [
|
|
26076
|
+
"events": [
|
|
26077
|
+
"rotate"
|
|
26078
|
+
]
|
|
26008
26079
|
},
|
|
26009
26080
|
"Ti.UI.ActivityIndicatorStyle": {
|
|
26010
26081
|
"description": "A set of constants for the styles available for <a href=\"Titanium.UI.ActivityIndicator\">Titanium.UI.ActivityIndicator</a> objects.",
|
|
@@ -26102,7 +26173,8 @@
|
|
|
26102
26173
|
"value"
|
|
26103
26174
|
],
|
|
26104
26175
|
"events": [
|
|
26105
|
-
"click"
|
|
26176
|
+
"click",
|
|
26177
|
+
"rotate"
|
|
26106
26178
|
]
|
|
26107
26179
|
},
|
|
26108
26180
|
"Ti.UI.Android": {
|
|
@@ -26192,6 +26264,7 @@
|
|
|
26192
26264
|
"SOFT_KEYBOARD_DEFAULT_ON_FOCUS",
|
|
26193
26265
|
"SOFT_KEYBOARD_HIDE_ON_FOCUS",
|
|
26194
26266
|
"SOFT_KEYBOARD_SHOW_ON_FOCUS",
|
|
26267
|
+
"STATUS_BAR_LIGHT",
|
|
26195
26268
|
"SWITCH_STYLE_CHECKBOX",
|
|
26196
26269
|
"SWITCH_STYLE_TOGGLEBUTTON",
|
|
26197
26270
|
"SWITCH_STYLE_SWITCH",
|
|
@@ -26328,6 +26401,7 @@
|
|
|
26328
26401
|
"longpress",
|
|
26329
26402
|
"pinch",
|
|
26330
26403
|
"postlayout",
|
|
26404
|
+
"rotate",
|
|
26331
26405
|
"singletap",
|
|
26332
26406
|
"swipe",
|
|
26333
26407
|
"touchcancel",
|
|
@@ -26361,7 +26435,9 @@
|
|
|
26361
26435
|
"flags",
|
|
26362
26436
|
"onHomeIconItemSelected"
|
|
26363
26437
|
],
|
|
26364
|
-
"events": [
|
|
26438
|
+
"events": [
|
|
26439
|
+
"rotate"
|
|
26440
|
+
]
|
|
26365
26441
|
},
|
|
26366
26442
|
"Ti.UI.Android.DrawerLayout": {
|
|
26367
26443
|
"description": "A panel that displays the app's main navigation options on the left edge of the screen.",
|
|
@@ -26481,6 +26557,7 @@
|
|
|
26481
26557
|
"longpress",
|
|
26482
26558
|
"pinch",
|
|
26483
26559
|
"postlayout",
|
|
26560
|
+
"rotate",
|
|
26484
26561
|
"singletap",
|
|
26485
26562
|
"swipe",
|
|
26486
26563
|
"touchcancel",
|
|
@@ -26540,7 +26617,8 @@
|
|
|
26540
26617
|
"iconSize"
|
|
26541
26618
|
],
|
|
26542
26619
|
"events": [
|
|
26543
|
-
"click"
|
|
26620
|
+
"click",
|
|
26621
|
+
"rotate"
|
|
26544
26622
|
]
|
|
26545
26623
|
},
|
|
26546
26624
|
"Ti.UI.Android.ProgressIndicator": {
|
|
@@ -26588,6 +26666,7 @@
|
|
|
26588
26666
|
"type"
|
|
26589
26667
|
],
|
|
26590
26668
|
"events": [
|
|
26669
|
+
"rotate",
|
|
26591
26670
|
"cancel"
|
|
26592
26671
|
]
|
|
26593
26672
|
},
|
|
@@ -26691,6 +26770,7 @@
|
|
|
26691
26770
|
"longpress",
|
|
26692
26771
|
"pinch",
|
|
26693
26772
|
"postlayout",
|
|
26773
|
+
"rotate",
|
|
26694
26774
|
"singletap",
|
|
26695
26775
|
"swipe",
|
|
26696
26776
|
"touchcancel",
|
|
@@ -26747,7 +26827,8 @@
|
|
|
26747
26827
|
"message"
|
|
26748
26828
|
],
|
|
26749
26829
|
"events": [
|
|
26750
|
-
"click"
|
|
26830
|
+
"click",
|
|
26831
|
+
"rotate"
|
|
26751
26832
|
]
|
|
26752
26833
|
},
|
|
26753
26834
|
"AnimatedOptions": {
|
|
@@ -26978,6 +27059,7 @@
|
|
|
26978
27059
|
"longpress",
|
|
26979
27060
|
"pinch",
|
|
26980
27061
|
"postlayout",
|
|
27062
|
+
"rotate",
|
|
26981
27063
|
"singletap",
|
|
26982
27064
|
"swipe",
|
|
26983
27065
|
"touchcancel",
|
|
@@ -27088,7 +27170,8 @@
|
|
|
27088
27170
|
"keypressed",
|
|
27089
27171
|
"longpress",
|
|
27090
27172
|
"pinch",
|
|
27091
|
-
"postlayout"
|
|
27173
|
+
"postlayout",
|
|
27174
|
+
"rotate"
|
|
27092
27175
|
]
|
|
27093
27176
|
},
|
|
27094
27177
|
"Ti.UI.Clipboard": {
|
|
@@ -27249,6 +27332,7 @@
|
|
|
27249
27332
|
"longpress",
|
|
27250
27333
|
"pinch",
|
|
27251
27334
|
"postlayout",
|
|
27335
|
+
"rotate",
|
|
27252
27336
|
"singletap",
|
|
27253
27337
|
"swipe",
|
|
27254
27338
|
"twofingertap",
|
|
@@ -27340,6 +27424,7 @@
|
|
|
27340
27424
|
"toRecipients"
|
|
27341
27425
|
],
|
|
27342
27426
|
"events": [
|
|
27427
|
+
"rotate",
|
|
27343
27428
|
"complete"
|
|
27344
27429
|
]
|
|
27345
27430
|
},
|
|
@@ -27476,6 +27561,7 @@
|
|
|
27476
27561
|
"longpress",
|
|
27477
27562
|
"pinch",
|
|
27478
27563
|
"postlayout",
|
|
27564
|
+
"rotate",
|
|
27479
27565
|
"singletap",
|
|
27480
27566
|
"swipe",
|
|
27481
27567
|
"touchcancel",
|
|
@@ -27596,6 +27682,7 @@
|
|
|
27596
27682
|
"includeFontPadding",
|
|
27597
27683
|
"lines",
|
|
27598
27684
|
"lineCount",
|
|
27685
|
+
"letterSpacing",
|
|
27599
27686
|
"lineSpacing",
|
|
27600
27687
|
"maxLines",
|
|
27601
27688
|
"minimumFontSize",
|
|
@@ -27603,6 +27690,7 @@
|
|
|
27603
27690
|
"shadowOffset",
|
|
27604
27691
|
"shadowRadius",
|
|
27605
27692
|
"text",
|
|
27693
|
+
"textTransform",
|
|
27606
27694
|
"textAlign",
|
|
27607
27695
|
"textid",
|
|
27608
27696
|
"visibleText",
|
|
@@ -27619,6 +27707,7 @@
|
|
|
27619
27707
|
"longpress",
|
|
27620
27708
|
"pinch",
|
|
27621
27709
|
"postlayout",
|
|
27710
|
+
"rotate",
|
|
27622
27711
|
"singletap",
|
|
27623
27712
|
"swipe",
|
|
27624
27713
|
"touchcancel",
|
|
@@ -27894,6 +27983,7 @@
|
|
|
27894
27983
|
"selectedItems"
|
|
27895
27984
|
],
|
|
27896
27985
|
"events": [
|
|
27986
|
+
"rotate",
|
|
27897
27987
|
"indexclick",
|
|
27898
27988
|
"itemclick",
|
|
27899
27989
|
"itemsselected",
|
|
@@ -28081,6 +28171,7 @@
|
|
|
28081
28171
|
"longpress",
|
|
28082
28172
|
"pinch",
|
|
28083
28173
|
"postlayout",
|
|
28174
|
+
"rotate",
|
|
28084
28175
|
"singletap",
|
|
28085
28176
|
"swipe",
|
|
28086
28177
|
"touchcancel",
|
|
@@ -28191,9 +28282,11 @@
|
|
|
28191
28282
|
"addSharedElement",
|
|
28192
28283
|
"close",
|
|
28193
28284
|
"hideNavBar",
|
|
28285
|
+
"hideTabBar|deprecated",
|
|
28194
28286
|
"open",
|
|
28195
28287
|
"removeAllSharedElements",
|
|
28196
28288
|
"showNavBar",
|
|
28289
|
+
"showTabBar|deprecated",
|
|
28197
28290
|
"showToolbar",
|
|
28198
28291
|
"hideToolbar",
|
|
28199
28292
|
"closeWindow",
|
|
@@ -28329,6 +28422,7 @@
|
|
|
28329
28422
|
"longpress",
|
|
28330
28423
|
"pinch",
|
|
28331
28424
|
"postlayout",
|
|
28425
|
+
"rotate",
|
|
28332
28426
|
"singletap",
|
|
28333
28427
|
"swipe",
|
|
28334
28428
|
"touchcancel",
|
|
@@ -28471,7 +28565,8 @@
|
|
|
28471
28565
|
"keypressed",
|
|
28472
28566
|
"longpress",
|
|
28473
28567
|
"pinch",
|
|
28474
|
-
"postlayout"
|
|
28568
|
+
"postlayout",
|
|
28569
|
+
"rotate"
|
|
28475
28570
|
]
|
|
28476
28571
|
},
|
|
28477
28572
|
"Ti.UI.OptionDialog": {
|
|
@@ -28525,7 +28620,8 @@
|
|
|
28525
28620
|
"titleid"
|
|
28526
28621
|
],
|
|
28527
28622
|
"events": [
|
|
28528
|
-
"click"
|
|
28623
|
+
"click",
|
|
28624
|
+
"rotate"
|
|
28529
28625
|
]
|
|
28530
28626
|
},
|
|
28531
28627
|
"hideParams": {
|
|
@@ -28669,6 +28765,7 @@
|
|
|
28669
28765
|
"longpress",
|
|
28670
28766
|
"pinch",
|
|
28671
28767
|
"postlayout",
|
|
28768
|
+
"rotate",
|
|
28672
28769
|
"singletap",
|
|
28673
28770
|
"swipe",
|
|
28674
28771
|
"touchcancel",
|
|
@@ -28705,7 +28802,8 @@
|
|
|
28705
28802
|
"events": [
|
|
28706
28803
|
"focus",
|
|
28707
28804
|
"longclick",
|
|
28708
|
-
"postlayout"
|
|
28805
|
+
"postlayout",
|
|
28806
|
+
"rotate"
|
|
28709
28807
|
]
|
|
28710
28808
|
},
|
|
28711
28809
|
"Ti.UI.PickerRow": {
|
|
@@ -28815,6 +28913,7 @@
|
|
|
28815
28913
|
"longpress",
|
|
28816
28914
|
"pinch",
|
|
28817
28915
|
"postlayout",
|
|
28916
|
+
"rotate",
|
|
28818
28917
|
"singletap",
|
|
28819
28918
|
"swipe",
|
|
28820
28919
|
"touchcancel",
|
|
@@ -28932,6 +29031,7 @@
|
|
|
28932
29031
|
"longpress",
|
|
28933
29032
|
"pinch",
|
|
28934
29033
|
"postlayout",
|
|
29034
|
+
"rotate",
|
|
28935
29035
|
"singletap",
|
|
28936
29036
|
"swipe",
|
|
28937
29037
|
"touchcancel",
|
|
@@ -28957,6 +29057,7 @@
|
|
|
28957
29057
|
"lifecycleContainer",
|
|
28958
29058
|
"title",
|
|
28959
29059
|
"tintColor",
|
|
29060
|
+
"offset",
|
|
28960
29061
|
"backgroundColor"
|
|
28961
29062
|
],
|
|
28962
29063
|
"events": [
|
|
@@ -28964,6 +29065,15 @@
|
|
|
28964
29065
|
"refreshend"
|
|
28965
29066
|
]
|
|
28966
29067
|
},
|
|
29068
|
+
"RefreshControlOffset": {
|
|
29069
|
+
"description": "Offset of the refresh control view.",
|
|
29070
|
+
"functions": [],
|
|
29071
|
+
"properties": [
|
|
29072
|
+
"start",
|
|
29073
|
+
"end"
|
|
29074
|
+
],
|
|
29075
|
+
"events": []
|
|
29076
|
+
},
|
|
28967
29077
|
"Ti.UI.ScrollView": {
|
|
28968
29078
|
"description": "A view that contains a horizontally and/or vertically-scrollable region of content.",
|
|
28969
29079
|
"functions": [
|
|
@@ -29093,6 +29203,7 @@
|
|
|
29093
29203
|
"longpress",
|
|
29094
29204
|
"pinch",
|
|
29095
29205
|
"postlayout",
|
|
29206
|
+
"rotate",
|
|
29096
29207
|
"singletap",
|
|
29097
29208
|
"swipe",
|
|
29098
29209
|
"touchcancel",
|
|
@@ -29230,6 +29341,7 @@
|
|
|
29230
29341
|
"keypressed",
|
|
29231
29342
|
"longpress",
|
|
29232
29343
|
"postlayout",
|
|
29344
|
+
"rotate",
|
|
29233
29345
|
"singletap",
|
|
29234
29346
|
"touchcancel",
|
|
29235
29347
|
"touchstart",
|
|
@@ -29367,6 +29479,7 @@
|
|
|
29367
29479
|
"longpress",
|
|
29368
29480
|
"pinch",
|
|
29369
29481
|
"postlayout",
|
|
29482
|
+
"rotate",
|
|
29370
29483
|
"singletap",
|
|
29371
29484
|
"swipe",
|
|
29372
29485
|
"touchcancel",
|
|
@@ -29569,6 +29682,7 @@
|
|
|
29569
29682
|
"longclick",
|
|
29570
29683
|
"longpress",
|
|
29571
29684
|
"postlayout",
|
|
29685
|
+
"rotate",
|
|
29572
29686
|
"singletap",
|
|
29573
29687
|
"swipe",
|
|
29574
29688
|
"touchcancel",
|
|
@@ -29695,6 +29809,7 @@
|
|
|
29695
29809
|
"longpress",
|
|
29696
29810
|
"pinch",
|
|
29697
29811
|
"postlayout",
|
|
29812
|
+
"rotate",
|
|
29698
29813
|
"singletap",
|
|
29699
29814
|
"swipe",
|
|
29700
29815
|
"touchcancel",
|
|
@@ -29770,6 +29885,7 @@
|
|
|
29770
29885
|
"badgeBackgroundColor",
|
|
29771
29886
|
"badgeTextColor",
|
|
29772
29887
|
"icon",
|
|
29888
|
+
"iconFamily",
|
|
29773
29889
|
"iconInsets",
|
|
29774
29890
|
"iconIsMask",
|
|
29775
29891
|
"activeIconIsMask",
|
|
@@ -29787,6 +29903,7 @@
|
|
|
29787
29903
|
"focus",
|
|
29788
29904
|
"longpress",
|
|
29789
29905
|
"postlayout",
|
|
29906
|
+
"rotate",
|
|
29790
29907
|
"singletap",
|
|
29791
29908
|
"swipe",
|
|
29792
29909
|
"touchcancel",
|
|
@@ -29825,14 +29942,15 @@
|
|
|
29825
29942
|
"addSharedElement",
|
|
29826
29943
|
"close",
|
|
29827
29944
|
"hideNavBar",
|
|
29828
|
-
"hideTabBar",
|
|
29945
|
+
"hideTabBar|deprecated",
|
|
29829
29946
|
"open",
|
|
29830
29947
|
"removeAllSharedElements",
|
|
29831
29948
|
"showNavBar",
|
|
29949
|
+
"showTabBar|deprecated",
|
|
29832
29950
|
"showToolbar",
|
|
29833
29951
|
"hideToolbar",
|
|
29834
29952
|
"addTab",
|
|
29835
|
-
"disableTabNavigation",
|
|
29953
|
+
"disableTabNavigation|deprecated",
|
|
29836
29954
|
"getActiveTab|deprecated",
|
|
29837
29955
|
"removeTab",
|
|
29838
29956
|
"setActiveTab|deprecated",
|
|
@@ -29944,6 +30062,7 @@
|
|
|
29944
30062
|
"activeTab",
|
|
29945
30063
|
"allowUserCustomization",
|
|
29946
30064
|
"autoTabTitle",
|
|
30065
|
+
"enabled",
|
|
29947
30066
|
"paddingLeft",
|
|
29948
30067
|
"paddingRight",
|
|
29949
30068
|
"paddingBottom",
|
|
@@ -29959,6 +30078,7 @@
|
|
|
29959
30078
|
"tabMode",
|
|
29960
30079
|
"tabsTintColor",
|
|
29961
30080
|
"tabsTranslucent",
|
|
30081
|
+
"flags",
|
|
29962
30082
|
"activeTintColor",
|
|
29963
30083
|
"tabsBackgroundImage",
|
|
29964
30084
|
"unselectedItemTintColor",
|
|
@@ -29966,10 +30086,12 @@
|
|
|
29966
30086
|
"tabsBackgroundSelectedColor",
|
|
29967
30087
|
"activeTabBackgroundImage",
|
|
29968
30088
|
"tabBarVisible",
|
|
29969
|
-
"interactiveDismissModeEnabled"
|
|
30089
|
+
"interactiveDismissModeEnabled",
|
|
30090
|
+
"experimental"
|
|
29970
30091
|
],
|
|
29971
30092
|
"events": [
|
|
29972
30093
|
"focus",
|
|
30094
|
+
"rotate",
|
|
29973
30095
|
"androidback",
|
|
29974
30096
|
"androidcamera",
|
|
29975
30097
|
"androidfocus",
|
|
@@ -30092,7 +30214,8 @@
|
|
|
30092
30214
|
"keypressed",
|
|
30093
30215
|
"longpress",
|
|
30094
30216
|
"pinch",
|
|
30095
|
-
"postlayout"
|
|
30217
|
+
"postlayout",
|
|
30218
|
+
"rotate"
|
|
30096
30219
|
]
|
|
30097
30220
|
},
|
|
30098
30221
|
"Ti.UI.TableView": {
|
|
@@ -30262,6 +30385,7 @@
|
|
|
30262
30385
|
"longpress",
|
|
30263
30386
|
"pinch",
|
|
30264
30387
|
"postlayout",
|
|
30388
|
+
"rotate",
|
|
30265
30389
|
"singletap",
|
|
30266
30390
|
"swipe",
|
|
30267
30391
|
"touchcancel",
|
|
@@ -30431,6 +30555,7 @@
|
|
|
30431
30555
|
"keypressed",
|
|
30432
30556
|
"longclick",
|
|
30433
30557
|
"postlayout",
|
|
30558
|
+
"rotate",
|
|
30434
30559
|
"swipe",
|
|
30435
30560
|
"touchcancel",
|
|
30436
30561
|
"touchend",
|
|
@@ -30594,6 +30719,7 @@
|
|
|
30594
30719
|
"hintTextColor",
|
|
30595
30720
|
"hintType",
|
|
30596
30721
|
"handleLinks",
|
|
30722
|
+
"html",
|
|
30597
30723
|
"keyboardToolbar",
|
|
30598
30724
|
"keyboardToolbarColor",
|
|
30599
30725
|
"keyboardToolbarHeight",
|
|
@@ -30622,6 +30748,7 @@
|
|
|
30622
30748
|
"longpress",
|
|
30623
30749
|
"pinch",
|
|
30624
30750
|
"postlayout",
|
|
30751
|
+
"rotate",
|
|
30625
30752
|
"singletap",
|
|
30626
30753
|
"swipe",
|
|
30627
30754
|
"touchcancel",
|
|
@@ -30793,6 +30920,7 @@
|
|
|
30793
30920
|
"longpress",
|
|
30794
30921
|
"pinch",
|
|
30795
30922
|
"postlayout",
|
|
30923
|
+
"rotate",
|
|
30796
30924
|
"singletap",
|
|
30797
30925
|
"swipe",
|
|
30798
30926
|
"touchcancel",
|
|
@@ -30942,6 +31070,7 @@
|
|
|
30942
31070
|
"longpress",
|
|
30943
31071
|
"pinch",
|
|
30944
31072
|
"postlayout",
|
|
31073
|
+
"rotate",
|
|
30945
31074
|
"singletap",
|
|
30946
31075
|
"swipe",
|
|
30947
31076
|
"touchcancel",
|
|
@@ -31493,6 +31622,7 @@
|
|
|
31493
31622
|
"cacheMode",
|
|
31494
31623
|
"pluginState",
|
|
31495
31624
|
"scrollsToTop",
|
|
31625
|
+
"layerType",
|
|
31496
31626
|
"enableZoomControls",
|
|
31497
31627
|
"mixedContentMode",
|
|
31498
31628
|
"scalesPageToFit",
|
|
@@ -31510,6 +31640,9 @@
|
|
|
31510
31640
|
"timeout",
|
|
31511
31641
|
"selectionGranularity",
|
|
31512
31642
|
"secure",
|
|
31643
|
+
"LAYER_TYPE_NONE",
|
|
31644
|
+
"LAYER_TYPE_SOFTWARE",
|
|
31645
|
+
"LAYER_TYPE_HARDWARE",
|
|
31513
31646
|
"PDF_PAGE_DIN_A5",
|
|
31514
31647
|
"PDF_PAGE_DIN_A4",
|
|
31515
31648
|
"PDF_PAGE_DIN_A3",
|
|
@@ -31526,6 +31659,7 @@
|
|
|
31526
31659
|
"longpress",
|
|
31527
31660
|
"pinch",
|
|
31528
31661
|
"postlayout",
|
|
31662
|
+
"rotate",
|
|
31529
31663
|
"singletap",
|
|
31530
31664
|
"swipe",
|
|
31531
31665
|
"touchcancel",
|
|
@@ -31664,11 +31798,12 @@
|
|
|
31664
31798
|
"addSharedElement",
|
|
31665
31799
|
"close",
|
|
31666
31800
|
"hideNavBar",
|
|
31667
|
-
"hideTabBar",
|
|
31801
|
+
"hideTabBar|deprecated",
|
|
31668
31802
|
"open",
|
|
31669
31803
|
"removeAllSharedElements",
|
|
31670
31804
|
"setToolbar",
|
|
31671
31805
|
"showNavBar",
|
|
31806
|
+
"showTabBar|deprecated",
|
|
31672
31807
|
"showToolbar",
|
|
31673
31808
|
"hideToolbar"
|
|
31674
31809
|
],
|
|
@@ -31820,6 +31955,7 @@
|
|
|
31820
31955
|
"longpress",
|
|
31821
31956
|
"pinch",
|
|
31822
31957
|
"postlayout",
|
|
31958
|
+
"rotate",
|
|
31823
31959
|
"singletap",
|
|
31824
31960
|
"swipe",
|
|
31825
31961
|
"touchcancel",
|
|
@@ -32079,6 +32215,7 @@
|
|
|
32079
32215
|
"longpress",
|
|
32080
32216
|
"pinch",
|
|
32081
32217
|
"postlayout",
|
|
32218
|
+
"rotate",
|
|
32082
32219
|
"singletap",
|
|
32083
32220
|
"swipe",
|
|
32084
32221
|
"touchcancel",
|
|
@@ -32195,6 +32332,7 @@
|
|
|
32195
32332
|
"click",
|
|
32196
32333
|
"keypressed",
|
|
32197
32334
|
"postlayout",
|
|
32335
|
+
"rotate",
|
|
32198
32336
|
"change"
|
|
32199
32337
|
]
|
|
32200
32338
|
},
|
|
@@ -32223,7 +32361,8 @@
|
|
|
32223
32361
|
"apiName",
|
|
32224
32362
|
"name",
|
|
32225
32363
|
"url",
|
|
32226
|
-
"annotation"
|
|
32364
|
+
"annotation",
|
|
32365
|
+
"title"
|
|
32227
32366
|
],
|
|
32228
32367
|
"events": [
|
|
32229
32368
|
"load",
|
|
@@ -32407,6 +32546,7 @@
|
|
|
32407
32546
|
],
|
|
32408
32547
|
"events": [
|
|
32409
32548
|
"keypressed",
|
|
32549
|
+
"rotate",
|
|
32410
32550
|
"start",
|
|
32411
32551
|
"stop"
|
|
32412
32552
|
]
|
|
@@ -32609,9 +32749,10 @@
|
|
|
32609
32749
|
"getViewById",
|
|
32610
32750
|
"close",
|
|
32611
32751
|
"hideNavBar",
|
|
32612
|
-
"hideTabBar",
|
|
32752
|
+
"hideTabBar|deprecated",
|
|
32613
32753
|
"open",
|
|
32614
32754
|
"showNavBar",
|
|
32755
|
+
"showTabBar|deprecated",
|
|
32615
32756
|
"showToolbar",
|
|
32616
32757
|
"hideToolbar",
|
|
32617
32758
|
"setShowMasterInPortrait",
|
|
@@ -32724,6 +32865,7 @@
|
|
|
32724
32865
|
"longpress",
|
|
32725
32866
|
"pinch",
|
|
32726
32867
|
"postlayout",
|
|
32868
|
+
"rotate",
|
|
32727
32869
|
"singletap",
|
|
32728
32870
|
"swipe",
|
|
32729
32871
|
"touchcancel",
|
|
@@ -32836,6 +32978,7 @@
|
|
|
32836
32978
|
"events": [
|
|
32837
32979
|
"click",
|
|
32838
32980
|
"dblclick",
|
|
32981
|
+
"rotate",
|
|
32839
32982
|
"touchcancel",
|
|
32840
32983
|
"touchend",
|
|
32841
32984
|
"touchmove",
|
|
@@ -33247,6 +33390,7 @@
|
|
|
33247
33390
|
"passthroughViews"
|
|
33248
33391
|
],
|
|
33249
33392
|
"events": [
|
|
33393
|
+
"rotate",
|
|
33250
33394
|
"hide"
|
|
33251
33395
|
]
|
|
33252
33396
|
},
|
package/package.json
CHANGED