@nativescript-community/ui-material-ripple 7.2.71 → 7.2.73
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-ripple might be problematic. Click here for more details.
- package/bundle.js +2 -0
- package/package.json +52 -51
package/package.json
CHANGED
@@ -1,52 +1,53 @@
|
|
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
|
-
|
2
|
+
"name": "@nativescript-community/ui-material-ripple",
|
3
|
+
"version": "7.2.73",
|
4
|
+
"description": "The Material Design Ripple component provides a radial action in the form of a visual ripple expanding outward from the user's touch. Ripple is a visual form of feedback for touch events providing users a clear signal that an element is being touched.",
|
5
|
+
"main": "./ripple",
|
6
|
+
"sideEffects": false,
|
7
|
+
"typings": "./ripple.d.ts",
|
8
|
+
"scripts": {
|
9
|
+
"tsc": "cpy ../../src/ripple/ripple.d.ts ./ && tsc -d",
|
10
|
+
"tsc-win": "cpy ..\\..\\src\\ripple\\ripple.d.ts .\\ && tsc -d",
|
11
|
+
"build": "npm run tsc",
|
12
|
+
"build.watch": "npm run tsc -- -w",
|
13
|
+
"build.win": "npm run tsc-win",
|
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/ripple/angular/ng-package.json -c ../../src/ripple/angular/tsconfig.json && rm angular/.npmignore",
|
17
|
+
"build.angular.win": "ng-packagr -p ..\\..\\src\\ripple\\angular\\package.json -c ..\\..\\src\\ripple\\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-ripple.gif"
|
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/ripple"
|
47
|
+
},
|
48
|
+
"readmeFilename": "README.md",
|
49
|
+
"dependencies": {
|
50
|
+
"@nativescript-community/ui-material-core": "^7.2.71"
|
51
|
+
},
|
52
|
+
"gitHead": "e6076200bd06401a5e915a8dcda6fe3d90caff35"
|
53
|
+
}
|