@nativescript-community/ui-material-core-tabs 7.1.4 → 7.2.1
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/package.json +3 -3
- package/react/index.d.ts +4 -4
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@nativescript-community/ui-material-core-tabs",
|
3
|
-
"version": "7.1
|
3
|
+
"version": "7.2.1",
|
4
4
|
"description": "Material Core Tabs component",
|
5
5
|
"main": "./index",
|
6
6
|
"sideEffects": false,
|
@@ -39,7 +39,7 @@
|
|
39
39
|
"repository": "https://github.com/nativescript-community/ui-material-components",
|
40
40
|
"readmeFilename": "README.md",
|
41
41
|
"dependencies": {
|
42
|
-
"@nativescript-community/ui-material-core": "^7.1
|
42
|
+
"@nativescript-community/ui-material-core": "^7.2.1"
|
43
43
|
},
|
44
|
-
"gitHead": "
|
44
|
+
"gitHead": "75b7a4ee372bce6dacaa260d05a106179dfa2713"
|
45
45
|
}
|
package/react/index.d.ts
CHANGED
@@ -4,7 +4,7 @@ import { SelectedIndexChangedEventData } from '../tab-navigation-base';
|
|
4
4
|
import { TabContentItem } from '../tab-content-item';
|
5
5
|
import { TabStrip } from '../tab-strip';
|
6
6
|
import { TabStripItem } from '../tab-strip-item';
|
7
|
-
export
|
7
|
+
export type TabNavigationBaseAttributes = ViewAttributes & {
|
8
8
|
android?: any;
|
9
9
|
ios?: any;
|
10
10
|
items?: string | TabContentItem[];
|
@@ -15,10 +15,10 @@ export declare type TabNavigationBaseAttributes = ViewAttributes & {
|
|
15
15
|
selectedIndex?: string | number;
|
16
16
|
tabStrip?: string | TabStrip;
|
17
17
|
};
|
18
|
-
export
|
18
|
+
export type TabContentItemAttributes = ContentViewAttributes & {
|
19
19
|
canBeLoaded?: false | true;
|
20
20
|
};
|
21
|
-
export
|
21
|
+
export type TabStripAttributes = ViewAttributes & {
|
22
22
|
highlightColor?: string | Color;
|
23
23
|
iosIconRenderingMode?: 'automatic' | 'alwaysOriginal' | 'alwaysTemplate';
|
24
24
|
isIconSizeFixed?: string | false | true;
|
@@ -33,7 +33,7 @@ export declare type TabStripAttributes = ViewAttributes & {
|
|
33
33
|
selectedItemColor?: string | Color;
|
34
34
|
unSelectedItemColor?: string | Color;
|
35
35
|
};
|
36
|
-
export
|
36
|
+
export type TabStripItemAttributes = ViewAttributes & {
|
37
37
|
iconClass?: string;
|
38
38
|
iconSource?: string;
|
39
39
|
image?: Image;
|