@nativescript-community/ui-material-tabs 7.0.26 → 7.0.27
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/CHANGELOG.md +8 -0
- package/angular/index.d.ts +1 -1
- package/package.json +4 -4
- package/index-common.d.ts +0 -19
- package/index-common.js +0 -36
- package/index-common.js.map +0 -1
- package/pnpm-lock.yaml +0 -90
- package/tabs-common.d.ts +0 -18
- package/tabs-common.js +0 -34
- package/tabs-common.js.map +0 -1
- package/tabs.android.d.ts +0 -63
- package/tabs.android.js +0 -779
- package/tabs.android.js.map +0 -1
- package/tabs.ios.d.ts +0 -108
- package/tabs.ios.js +0 -995
- package/tabs.ios.js.map +0 -1
package/CHANGELOG.md
CHANGED
@@ -3,6 +3,14 @@
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
5
5
|
|
6
|
+
## [7.0.27](https://github.com/nativescript-community/ui-material-components/compare/v7.0.26...v7.0.27) (2022-09-16)
|
7
|
+
|
8
|
+
**Note:** Version bump only for package @nativescript-community/ui-material-tabs
|
9
|
+
|
10
|
+
|
11
|
+
|
12
|
+
|
13
|
+
|
6
14
|
## [7.0.26](https://github.com/nativescript-community/ui-material-components/compare/v7.0.25...v7.0.26) (2022-09-14)
|
7
15
|
|
8
16
|
**Note:** Version bump only for package @nativescript-community/ui-material-tabs
|
package/angular/index.d.ts
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
import * as i0 from "@angular/core";
|
2
2
|
export declare class MaterialTabsDirective {
|
3
3
|
static ɵfac: i0.ɵɵFactoryDeclaration<MaterialTabsDirective, never>;
|
4
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<MaterialTabsDirective, "MDTabs", never, {}, {}, never>;
|
4
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MaterialTabsDirective, "MDTabs", never, {}, {}, never, never, false>;
|
5
5
|
}
|
6
6
|
export declare class NativeScriptMaterialTabsModule {
|
7
7
|
static ɵfac: i0.ɵɵFactoryDeclaration<NativeScriptMaterialTabsModule, never>;
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@nativescript-community/ui-material-tabs",
|
3
|
-
"version": "7.0.
|
3
|
+
"version": "7.0.27",
|
4
4
|
"description": "Material Design Tabs organize content across different screens, data sets, and other interactions.",
|
5
5
|
"main": "./index",
|
6
6
|
"sideEffects": false,
|
@@ -46,8 +46,8 @@
|
|
46
46
|
},
|
47
47
|
"readmeFilename": "README.md",
|
48
48
|
"dependencies": {
|
49
|
-
"@nativescript-community/ui-material-core": "^7.0.
|
50
|
-
"@nativescript-community/ui-material-core-tabs": "^7.0.
|
49
|
+
"@nativescript-community/ui-material-core": "^7.0.27",
|
50
|
+
"@nativescript-community/ui-material-core-tabs": "^7.0.27"
|
51
51
|
},
|
52
|
-
"gitHead": "
|
52
|
+
"gitHead": "fb2d519dbb349a40263a74cae272a7f7afa8d4e6"
|
53
53
|
}
|
package/index-common.d.ts
DELETED
@@ -1,19 +0,0 @@
|
|
1
|
-
import { Color, Property } from '@nativescript/core';
|
2
|
-
import { TabNavigationBase } from '@nativescript-community/ui-material-core/tab-navigation-base/tab-navigation-base';
|
3
|
-
import { Tabs as TabsDefinition } from '.';
|
4
|
-
import { TabsPosition } from '@nativescript-community/ui-material-core/tab-navigation-base/tab-navigation/index-common';
|
5
|
-
export declare const traceCategory = "TabView";
|
6
|
-
export declare namespace knownCollections {
|
7
|
-
const items = "items";
|
8
|
-
}
|
9
|
-
export declare class TabsBase extends TabNavigationBase implements TabsDefinition {
|
10
|
-
swipeEnabled: boolean;
|
11
|
-
offscreenTabLimit: number;
|
12
|
-
tabsPosition: TabsPosition;
|
13
|
-
animationEnabled: boolean;
|
14
|
-
rippleColor: Color;
|
15
|
-
}
|
16
|
-
export declare const swipeEnabledProperty: Property<TabsBase, boolean>;
|
17
|
-
export declare const offscreenTabLimitProperty: Property<TabsBase, number>;
|
18
|
-
export declare const tabsPositionProperty: Property<TabsBase, "top" | "bottom">;
|
19
|
-
export declare const animationEnabledProperty: Property<TabsBase, boolean>;
|
package/index-common.js
DELETED
@@ -1,36 +0,0 @@
|
|
1
|
-
import { cssProperty } from '@nativescript-community/ui-material-core';
|
2
|
-
import { CSSType, Color, Property, booleanConverter } from '@nativescript/core';
|
3
|
-
import { TabNavigationBase } from '@nativescript-community/ui-material-core/tab-navigation-base/tab-navigation-base';
|
4
|
-
import { Tabs as TabsDefinition } from '.';
|
5
|
-
import { TabsPosition } from '@nativescript-community/ui-material-core/tab-navigation-base/tab-navigation/index-common';
|
6
|
-
export const traceCategory = 'TabView';
|
7
|
-
export var knownCollections;
|
8
|
-
(function (knownCollections) {
|
9
|
-
knownCollections.items = 'items';
|
10
|
-
})(knownCollections || (knownCollections = {}));
|
11
|
-
let TabsBase = class TabsBase extends TabNavigationBase {
|
12
|
-
};
|
13
|
-
__decorate([
|
14
|
-
cssProperty
|
15
|
-
], TabsBase.prototype, "rippleColor", void 0);
|
16
|
-
TabsBase = __decorate([
|
17
|
-
CSSType('MDTabs')
|
18
|
-
], TabsBase);
|
19
|
-
export { TabsBase };
|
20
|
-
export const swipeEnabledProperty = new Property({
|
21
|
-
name: 'swipeEnabled',
|
22
|
-
defaultValue: true,
|
23
|
-
valueConverter: booleanConverter
|
24
|
-
});
|
25
|
-
swipeEnabledProperty.register(TabsBase);
|
26
|
-
export const offscreenTabLimitProperty = new Property({
|
27
|
-
name: 'offscreenTabLimit',
|
28
|
-
defaultValue: 1,
|
29
|
-
valueConverter: (v) => parseInt(v, 10)
|
30
|
-
});
|
31
|
-
offscreenTabLimitProperty.register(TabsBase);
|
32
|
-
export const tabsPositionProperty = new Property({ name: 'tabsPosition', defaultValue: TabsPosition.Top });
|
33
|
-
tabsPositionProperty.register(TabsBase);
|
34
|
-
export const animationEnabledProperty = new Property({ name: 'animationEnabled', defaultValue: true, valueConverter: booleanConverter });
|
35
|
-
animationEnabledProperty.register(TabsBase);
|
36
|
-
//# sourceMappingURL=index-common.js.map
|
package/index-common.js.map
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"index-common.js","sourceRoot":"../src/","sources":["index-common.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,0CAA0C,CAAC;AAEvE,OAAO,EAAE,OAAO,EAAE,KAAK,EAAE,QAAQ,EAAE,gBAAgB,EAAE,MAAM,oBAAoB,CAAC;AAChF,OAAO,EAAE,iBAAiB,EAAE,MAAM,kFAAkF,CAAC;AAErH,OAAO,EAAE,IAAI,IAAI,cAAc,EAAE,MAAM,GAAG,CAAC;AAC3C,OAAO,EAAE,YAAY,EAAE,MAAM,0FAA0F,CAAC;AAExH,MAAM,CAAC,MAAM,aAAa,GAAG,SAAS,CAAC;AAEvC,MAAM,KAAW,gBAAgB,CAEhC;AAFD,WAAiB,gBAAgB;IAChB,sBAAK,GAAG,OAAO,CAAC;AACjC,CAAC,EAFgB,gBAAgB,KAAhB,gBAAgB,QAEhC;AAGD,IAAa,QAAQ,GAArB,MAAa,QAAS,SAAQ,iBAAiB;CAO9C,CAAA;AADgB;IAAZ,WAAW;6CAAoB;AANvB,QAAQ;IADpB,OAAO,CAAC,QAAQ,CAAC;GACL,QAAQ,CAOpB;SAPY,QAAQ;AAUrB,MAAM,CAAC,MAAM,oBAAoB,GAAG,IAAI,QAAQ,CAAoB;IAChE,IAAI,EAAE,cAAc;IACpB,YAAY,EAAE,IAAI;IAClB,cAAc,EAAE,gBAAgB;CACnC,CAAC,CAAC;AACH,oBAAoB,CAAC,QAAQ,CAAC,QAAQ,CAAC,CAAC;AAIxC,MAAM,CAAC,MAAM,yBAAyB,GAAG,IAAI,QAAQ,CAAmB;IACpE,IAAI,EAAE,mBAAmB;IACzB,YAAY,EAAE,CAAC;IACf,cAAc,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,QAAQ,CAAC,CAAC,EAAE,EAAE,CAAC;CACzC,CAAC,CAAC;AACH,yBAAyB,CAAC,QAAQ,CAAC,QAAQ,CAAC,CAAC;AAE7C,MAAM,CAAC,MAAM,oBAAoB,GAAG,IAAI,QAAQ,CAA6B,EAAE,IAAI,EAAE,cAAc,EAAE,YAAY,EAAE,YAAY,CAAC,GAAG,EAAE,CAAC,CAAC;AACvI,oBAAoB,CAAC,QAAQ,CAAC,QAAQ,CAAC,CAAC;AAMxC,MAAM,CAAC,MAAM,wBAAwB,GAAG,IAAI,QAAQ,CAAoB,EAAE,IAAI,EAAE,kBAAkB,EAAE,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,gBAAgB,EAAE,CAAC,CAAC;AAC5J,wBAAwB,CAAC,QAAQ,CAAC,QAAQ,CAAC,CAAC"}
|
package/pnpm-lock.yaml
DELETED
@@ -1,90 +0,0 @@
|
|
1
|
-
dependencies:
|
2
|
-
'@nativescript-community/ui-material-core': 5.2.13
|
3
|
-
lockfileVersion: 5.2
|
4
|
-
packages:
|
5
|
-
/@nativescript-community/ui-material-core/5.2.13:
|
6
|
-
dependencies:
|
7
|
-
'@nativescript/hook': 2.0.0
|
8
|
-
dev: false
|
9
|
-
requiresBuild: true
|
10
|
-
resolution:
|
11
|
-
integrity: sha512-wKSy2XeN6M+93/YV4W0WZBdsmQGpVogVwWlD+SHQ3MTiOMLL8GwOdAIrGBZEPVfyei1GLqIF4N3ALTp6mNhgVg==
|
12
|
-
/@nativescript/hook/2.0.0:
|
13
|
-
dependencies:
|
14
|
-
glob: 7.1.6
|
15
|
-
mkdirp: 1.0.4
|
16
|
-
dev: false
|
17
|
-
resolution:
|
18
|
-
integrity: sha512-v3Hj3Zpd69sQJfFpDNXonV0EjO1a2OL4l48wlo1Ycsqk4r7RY822d/irFTjt0LllRG0OcdEGgfG6wKb0YgPyHw==
|
19
|
-
/balanced-match/1.0.0:
|
20
|
-
dev: false
|
21
|
-
resolution:
|
22
|
-
integrity: sha1-ibTRmasr7kneFk6gK4nORi1xt2c=
|
23
|
-
/brace-expansion/1.1.11:
|
24
|
-
dependencies:
|
25
|
-
balanced-match: 1.0.0
|
26
|
-
concat-map: 0.0.1
|
27
|
-
dev: false
|
28
|
-
resolution:
|
29
|
-
integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==
|
30
|
-
/concat-map/0.0.1:
|
31
|
-
dev: false
|
32
|
-
resolution:
|
33
|
-
integrity: sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=
|
34
|
-
/fs.realpath/1.0.0:
|
35
|
-
dev: false
|
36
|
-
resolution:
|
37
|
-
integrity: sha1-FQStJSMVjKpA20onh8sBQRmU6k8=
|
38
|
-
/glob/7.1.6:
|
39
|
-
dependencies:
|
40
|
-
fs.realpath: 1.0.0
|
41
|
-
inflight: 1.0.6
|
42
|
-
inherits: 2.0.4
|
43
|
-
minimatch: 3.0.4
|
44
|
-
once: 1.4.0
|
45
|
-
path-is-absolute: 1.0.1
|
46
|
-
dev: false
|
47
|
-
resolution:
|
48
|
-
integrity: sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==
|
49
|
-
/inflight/1.0.6:
|
50
|
-
dependencies:
|
51
|
-
once: 1.4.0
|
52
|
-
wrappy: 1.0.2
|
53
|
-
dev: false
|
54
|
-
resolution:
|
55
|
-
integrity: sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=
|
56
|
-
/inherits/2.0.4:
|
57
|
-
dev: false
|
58
|
-
resolution:
|
59
|
-
integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==
|
60
|
-
/minimatch/3.0.4:
|
61
|
-
dependencies:
|
62
|
-
brace-expansion: 1.1.11
|
63
|
-
dev: false
|
64
|
-
resolution:
|
65
|
-
integrity: sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==
|
66
|
-
/mkdirp/1.0.4:
|
67
|
-
dev: false
|
68
|
-
engines:
|
69
|
-
node: '>=10'
|
70
|
-
hasBin: true
|
71
|
-
resolution:
|
72
|
-
integrity: sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==
|
73
|
-
/once/1.4.0:
|
74
|
-
dependencies:
|
75
|
-
wrappy: 1.0.2
|
76
|
-
dev: false
|
77
|
-
resolution:
|
78
|
-
integrity: sha1-WDsap3WWHUsROsF9nFC6753Xa9E=
|
79
|
-
/path-is-absolute/1.0.1:
|
80
|
-
dev: false
|
81
|
-
engines:
|
82
|
-
node: '>=0.10.0'
|
83
|
-
resolution:
|
84
|
-
integrity: sha1-F0uSaHNVNP+8es5r9TpanhtcX18=
|
85
|
-
/wrappy/1.0.2:
|
86
|
-
dev: false
|
87
|
-
resolution:
|
88
|
-
integrity: sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=
|
89
|
-
specifiers:
|
90
|
-
'@nativescript-community/ui-material-core': ^5.2.13
|
package/tabs-common.d.ts
DELETED
@@ -1,18 +0,0 @@
|
|
1
|
-
import { Color, Property } from '@nativescript/core';
|
2
|
-
import { TabNavigationBase } from '@nativescript-community/ui-material-core/tab-navigation-base/tab-navigation-base';
|
3
|
-
import { Tabs as TabsDefinition } from './tabs';
|
4
|
-
export declare const traceCategory = "TabView";
|
5
|
-
export declare namespace knownCollections {
|
6
|
-
const items = "items";
|
7
|
-
}
|
8
|
-
export declare class TabsBase extends TabNavigationBase implements TabsDefinition {
|
9
|
-
swipeEnabled: boolean;
|
10
|
-
offscreenTabLimit: number;
|
11
|
-
tabsPosition: 'top' | 'bottom';
|
12
|
-
animationEnabled: boolean;
|
13
|
-
rippleColor: Color;
|
14
|
-
}
|
15
|
-
export declare const swipeEnabledProperty: Property<TabsBase, boolean>;
|
16
|
-
export declare const offscreenTabLimitProperty: Property<TabsBase, number>;
|
17
|
-
export declare const tabsPositionProperty: Property<TabsBase, "top" | "bottom">;
|
18
|
-
export declare const animationEnabledProperty: Property<TabsBase, boolean>;
|
package/tabs-common.js
DELETED
@@ -1,34 +0,0 @@
|
|
1
|
-
import { cssProperty } from '@nativescript-community/ui-material-core';
|
2
|
-
import { CSSType, Property, booleanConverter } from '@nativescript/core';
|
3
|
-
import { TabNavigationBase } from '@nativescript-community/ui-material-core/tab-navigation-base/tab-navigation-base';
|
4
|
-
export const traceCategory = 'TabView';
|
5
|
-
export var knownCollections;
|
6
|
-
(function (knownCollections) {
|
7
|
-
knownCollections.items = 'items';
|
8
|
-
})(knownCollections || (knownCollections = {}));
|
9
|
-
let TabsBase = class TabsBase extends TabNavigationBase {
|
10
|
-
};
|
11
|
-
__decorate([
|
12
|
-
cssProperty
|
13
|
-
], TabsBase.prototype, "rippleColor", void 0);
|
14
|
-
TabsBase = __decorate([
|
15
|
-
CSSType('MDTabs')
|
16
|
-
], TabsBase);
|
17
|
-
export { TabsBase };
|
18
|
-
export const swipeEnabledProperty = new Property({
|
19
|
-
name: 'swipeEnabled',
|
20
|
-
defaultValue: true,
|
21
|
-
valueConverter: booleanConverter
|
22
|
-
});
|
23
|
-
swipeEnabledProperty.register(TabsBase);
|
24
|
-
export const offscreenTabLimitProperty = new Property({
|
25
|
-
name: 'offscreenTabLimit',
|
26
|
-
defaultValue: 1,
|
27
|
-
valueConverter: (v) => parseInt(v, 10)
|
28
|
-
});
|
29
|
-
offscreenTabLimitProperty.register(TabsBase);
|
30
|
-
export const tabsPositionProperty = new Property({ name: 'tabsPosition', defaultValue: 'top' });
|
31
|
-
tabsPositionProperty.register(TabsBase);
|
32
|
-
export const animationEnabledProperty = new Property({ name: 'animationEnabled', defaultValue: true, valueConverter: booleanConverter });
|
33
|
-
animationEnabledProperty.register(TabsBase);
|
34
|
-
//# sourceMappingURL=tabs-common.js.map
|
package/tabs-common.js.map
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"tabs-common.js","sourceRoot":"../src/","sources":["tabs-common.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,MAAM,0CAA0C,CAAC;AAEvE,OAAO,EAAE,OAAO,EAAS,QAAQ,EAAE,gBAAgB,EAAE,MAAM,oBAAoB,CAAC;AAChF,OAAO,EAAE,iBAAiB,EAAE,MAAM,kFAAkF,CAAC;AAIrH,MAAM,CAAC,MAAM,aAAa,GAAG,SAAS,CAAC;AAEvC,MAAM,KAAW,gBAAgB,CAEhC;AAFD,WAAiB,gBAAgB;IAChB,sBAAK,GAAG,OAAO,CAAC;AACjC,CAAC,EAFgB,gBAAgB,KAAhB,gBAAgB,QAEhC;AAGD,IAAa,QAAQ,GAArB,MAAa,QAAS,SAAQ,iBAAiB;CAO9C,CAAA;AADgB;IAAZ,WAAW;6CAAoB;AANvB,QAAQ;IADpB,OAAO,CAAC,QAAQ,CAAC;GACL,QAAQ,CAOpB;SAPY,QAAQ;AAUrB,MAAM,CAAC,MAAM,oBAAoB,GAAG,IAAI,QAAQ,CAAoB;IAChE,IAAI,EAAE,cAAc;IACpB,YAAY,EAAE,IAAI;IAClB,cAAc,EAAE,gBAAgB;CACnC,CAAC,CAAC;AACH,oBAAoB,CAAC,QAAQ,CAAC,QAAQ,CAAC,CAAC;AAIxC,MAAM,CAAC,MAAM,yBAAyB,GAAG,IAAI,QAAQ,CAAmB;IACpE,IAAI,EAAE,mBAAmB;IACzB,YAAY,EAAE,CAAC;IACf,cAAc,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,QAAQ,CAAC,CAAC,EAAE,EAAE,CAAC;CACzC,CAAC,CAAC;AACH,yBAAyB,CAAC,QAAQ,CAAC,QAAQ,CAAC,CAAC;AAE7C,MAAM,CAAC,MAAM,oBAAoB,GAAG,IAAI,QAAQ,CAA6B,EAAE,IAAI,EAAE,cAAc,EAAE,YAAY,EAAE,KAAK,EAAE,CAAC,CAAC;AAC5H,oBAAoB,CAAC,QAAQ,CAAC,QAAQ,CAAC,CAAC;AAMxC,MAAM,CAAC,MAAM,wBAAwB,GAAG,IAAI,QAAQ,CAAoB,EAAE,IAAI,EAAE,kBAAkB,EAAE,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,gBAAgB,EAAE,CAAC,CAAC;AAC5J,wBAAwB,CAAC,QAAQ,CAAC,QAAQ,CAAC,CAAC"}
|
package/tabs.android.d.ts
DELETED
@@ -1,63 +0,0 @@
|
|
1
|
-
import { Color, CoreTypes, Font } from '@nativescript/core';
|
2
|
-
import { TabStrip } from '@nativescript-community/ui-material-core/tab-navigation-base/tab-strip';
|
3
|
-
import { TabStripItem } from '@nativescript-community/ui-material-core/tab-navigation-base/tab-strip-item';
|
4
|
-
import { TabContentItem } from '@nativescript-community/ui-material-core/tab-navigation-base/tab-content-item';
|
5
|
-
import { TabsBase } from './tabs-common';
|
6
|
-
export { TabContentItem, TabStrip, TabStripItem };
|
7
|
-
export * from './tabs-common';
|
8
|
-
export declare const tabs: WeakRef<Tabs>[];
|
9
|
-
export declare class Tabs extends TabsBase {
|
10
|
-
private _tabsBar;
|
11
|
-
private _viewPager;
|
12
|
-
private _pagerAdapter;
|
13
|
-
private _androidViewId;
|
14
|
-
_originalBackground: any;
|
15
|
-
private _textTransform;
|
16
|
-
private _selectedItemColor;
|
17
|
-
private _unSelectedItemColor;
|
18
|
-
fragments: androidx.fragment.app.Fragment[];
|
19
|
-
private _attachedToWindow;
|
20
|
-
constructor();
|
21
|
-
get _hasFragments(): boolean;
|
22
|
-
onItemsChanged(oldItems: TabContentItem[], newItems: TabContentItem[]): void;
|
23
|
-
createNativeView(): org.nativescript.widgets.GridLayout;
|
24
|
-
onSelectedIndexChanged(oldIndex: number, newIndex: number): void;
|
25
|
-
initNativeView(): void;
|
26
|
-
_onAttachedToWindow(): void;
|
27
|
-
_onDetachedFromWindow(): void;
|
28
|
-
_loadUnloadTabItems(newIndex: number): void;
|
29
|
-
onLoaded(): void;
|
30
|
-
onUnloaded(): void;
|
31
|
-
disposeNativeView(): void;
|
32
|
-
_onRootViewReset(): void;
|
33
|
-
private disposeCurrentFragments;
|
34
|
-
private shouldUpdateAdapter;
|
35
|
-
private setItems;
|
36
|
-
private setTabStripItems;
|
37
|
-
private getItemLabelTextTransform;
|
38
|
-
private createTabItemSpec;
|
39
|
-
private getIcon;
|
40
|
-
private getFixedSizeIcon;
|
41
|
-
updateAndroidItemAt(index: number, spec: com.nativescript.material.core.TabItemSpec): void;
|
42
|
-
getTabBarBackgroundColor(): android.graphics.drawable.Drawable;
|
43
|
-
setTabBarBackgroundColor(value: android.graphics.drawable.Drawable | Color): void;
|
44
|
-
getTabBarHighlightColor(): number;
|
45
|
-
setTabBarHighlightColor(value: number | Color): void;
|
46
|
-
getTabBarSelectedItemColor(): Color;
|
47
|
-
setTabBarSelectedItemColor(value: Color): void;
|
48
|
-
getTabBarUnSelectedItemColor(): Color;
|
49
|
-
setTabBarUnSelectedItemColor(value: Color): void;
|
50
|
-
private updateItem;
|
51
|
-
setTabBarItemTitle(tabStripItem: TabStripItem, value: string): void;
|
52
|
-
setTabBarItemBackgroundColor(tabStripItem: TabStripItem, value: android.graphics.drawable.Drawable | Color): void;
|
53
|
-
_setItemColor(tabStripItem: TabStripItem): void;
|
54
|
-
private setIconColor;
|
55
|
-
setTabBarItemColor(tabStripItem: TabStripItem, value: number | Color): void;
|
56
|
-
setTabBarIconColor(tabStripItem: TabStripItem, value: number | Color): void;
|
57
|
-
setTabBarIconSource(tabStripItem: TabStripItem, value: number | Color): void;
|
58
|
-
setTabBarItemFontInternal(tabStripItem: TabStripItem, value: Font): void;
|
59
|
-
getTabBarItemTextTransform(tabStripItem: TabStripItem): CoreTypes.TextTransformType;
|
60
|
-
setTabBarItemTextTransform(tabStripItem: TabStripItem, value: CoreTypes.TextTransformType): void;
|
61
|
-
getTabBarTextTransform(): CoreTypes.TextTransformType;
|
62
|
-
setTabBarTextTransform(value: CoreTypes.TextTransformType): void;
|
63
|
-
}
|