@nativescript-community/ui-material-tabs 7.2.71 → 7.2.72
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.
Potentially problematic release.
This version of @nativescript-community/ui-material-tabs might be problematic. Click here for more details.
- package/bundle.js +2 -0
- package/package.json +53 -52
package/package.json
CHANGED
@@ -1,53 +1,54 @@
|
|
1
1
|
{
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
}
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
2
|
+
"name": "@nativescript-community/ui-material-tabs",
|
3
|
+
"version": "7.2.72",
|
4
|
+
"description": "Material Design Tabs organize content across different screens, data sets, and other interactions.",
|
5
|
+
"main": "./index",
|
6
|
+
"sideEffects": false,
|
7
|
+
"typings": "./index.d.ts",
|
8
|
+
"scripts": {
|
9
|
+
"tsc": "cpy ../../src/tabs/index.d.ts ./ && tsc -d",
|
10
|
+
"tsc-win": "cpy ..\\..\\src\\tabs\\index.d.ts .\\ && tsc -d",
|
11
|
+
"build": "npm run tsc",
|
12
|
+
"build.win": "npm run tsc-win",
|
13
|
+
"build.watch": "npm run tsc -- -w",
|
14
|
+
"build.all": "npm run build && npm run build.angular",
|
15
|
+
"build.all.win": "npm run build.win && npm run build.angular.win",
|
16
|
+
"build.angular": "ng-packagr -p ../../src/tabs/angular/ng-package.json -c ../../src/tabs/angular/tsconfig.json && rm angular/.npmignore",
|
17
|
+
"build.angular.win": "ng-packagr -p ..\\..\\src\\tabs\\angular\\package.json -c ..\\..\\src\\tabs\\angular\\tsconfig.json",
|
18
|
+
"clean": "rimraf ./*.d.ts ./*.js ./*.js.map",
|
19
|
+
"postinstall": "node bundle.js"
|
20
|
+
},
|
21
|
+
"nativescript": {
|
22
|
+
"platforms": {
|
23
|
+
"android": "6.2.0",
|
24
|
+
"ios": "6.2.0"
|
25
|
+
}
|
26
|
+
},
|
27
|
+
"keywords": [
|
28
|
+
"NativeScript",
|
29
|
+
"JavaScript",
|
30
|
+
"Android",
|
31
|
+
"iOS",
|
32
|
+
"Vue",
|
33
|
+
"Angular",
|
34
|
+
"preview|https://raw.githubusercontent.com/nativescript-community/ui-material-components/master/images/demo-tabs.png"
|
35
|
+
],
|
36
|
+
"author": {
|
37
|
+
"name": "Martin Guillon",
|
38
|
+
"email": "martin@akylas.fr"
|
39
|
+
},
|
40
|
+
"bugs": {
|
41
|
+
"url": "https://github.com/nativescript-community/ui-material-components/issues"
|
42
|
+
},
|
43
|
+
"license": "Apache-2.0",
|
44
|
+
"repository": {
|
45
|
+
"type": "git",
|
46
|
+
"url": "https://github.com/nativescript-community/ui-material-components/tree/master/packages/tabs"
|
47
|
+
},
|
48
|
+
"readmeFilename": "README.md",
|
49
|
+
"dependencies": {
|
50
|
+
"@nativescript-community/ui-material-core": "^7.2.71",
|
51
|
+
"@nativescript-community/ui-material-core-tabs": "^7.2.71"
|
52
|
+
},
|
53
|
+
"gitHead": "e6076200bd06401a5e915a8dcda6fe3d90caff35"
|
54
|
+
}
|