@watermarkinsights/ripple-react 3.25.0 → 3.26.0-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/LICENSE +21 -21
- package/README.md +31 -31
- package/dist/components/index.d.ts +1 -1
- package/dist/components/index.js +1 -1
- package/dist/components/stencil-generated/index.d.ts +1 -1
- package/dist/components/stencil-generated/index.js +28 -28
- package/dist/components.d.ts +40 -40
- package/dist/components.js +42 -42
- package/dist/index.d.ts +1 -1
- package/dist/index.js +3 -3
- package/dist/react-component-lib/ReactProps.d.ts +3 -3
- package/dist/react-component-lib/createComponent.d.ts +10 -10
- package/dist/react-component-lib/createComponent.js +105 -105
- package/dist/react-component-lib/createComponent.js.map +1 -1
- package/dist/react-component-lib/createControllerComponent.d.ts +43 -43
- package/dist/react-component-lib/createControllerComponent.js +145 -145
- package/dist/react-component-lib/createOverlayComponent.d.ts +21 -21
- package/dist/react-component-lib/createOverlayComponent.js +188 -199
- package/dist/react-component-lib/createOverlayComponent.js.map +1 -1
- package/dist/react-component-lib/index.d.ts +2 -2
- package/dist/react-component-lib/index.js +2 -2
- package/dist/react-component-lib/interfaces.d.ts +29 -29
- package/dist/react-component-lib/utils/attachEventProps.d.ts +8 -8
- package/dist/react-component-lib/utils/attachEventProps.js +78 -78
- package/dist/react-component-lib/utils/attachProps.d.ts +12 -12
- package/dist/react-component-lib/utils/attachProps.js +98 -98
- package/dist/react-component-lib/utils/case.d.ts +2 -2
- package/dist/react-component-lib/utils/case.js +8 -10
- package/dist/react-component-lib/utils/case.js.map +1 -1
- package/dist/react-component-lib/utils/dev.d.ts +2 -2
- package/dist/react-component-lib/utils/dev.js +12 -12
- package/dist/react-component-lib/utils/index.d.ts +10 -10
- package/dist/react-component-lib/utils/index.js +46 -48
- package/dist/react-component-lib/utils/index.js.map +1 -1
- package/package.json +48 -48
package/package.json
CHANGED
|
@@ -1,48 +1,48 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@watermarkinsights/ripple-react",
|
|
3
|
-
"version": "3.
|
|
4
|
-
"description": "React specific wrappers for Ripple component library",
|
|
5
|
-
"scripts": {
|
|
6
|
-
"build": "npm run clean && npm run compile",
|
|
7
|
-
"clean": "rm -rf dist",
|
|
8
|
-
"compile": "npm run tsc",
|
|
9
|
-
"tsc": "tsc -p .",
|
|
10
|
-
"release": "sh ./scripts/release.sh"
|
|
11
|
-
},
|
|
12
|
-
"main": "./dist/index.js",
|
|
13
|
-
"module": "./dist/index.js",
|
|
14
|
-
"types": "./dist/index.d.ts",
|
|
15
|
-
"files": [
|
|
16
|
-
"dist/"
|
|
17
|
-
],
|
|
18
|
-
"sideEffects": [
|
|
19
|
-
"dist/index.js"
|
|
20
|
-
],
|
|
21
|
-
"devDependencies": {
|
|
22
|
-
"@types/jest": "23.3.9",
|
|
23
|
-
"@types/node": "^15.12.2",
|
|
24
|
-
"@types/react": "^17.0.34",
|
|
25
|
-
"@types/react-dom": "^17.0.11",
|
|
26
|
-
"jest": "^28.0.2",
|
|
27
|
-
"jest-dom": "^3.0.2",
|
|
28
|
-
"np": "^7.6.1",
|
|
29
|
-
"react": "^17.0.2",
|
|
30
|
-
"react-dom": "^17.0.2",
|
|
31
|
-
"typescript": "^3.3.4000"
|
|
32
|
-
},
|
|
33
|
-
"peerDependencies": {
|
|
34
|
-
"react": "^17.0.2",
|
|
35
|
-
"react-dom": "^17.0.2"
|
|
36
|
-
},
|
|
37
|
-
"jest": {
|
|
38
|
-
"preset": "ts-jest",
|
|
39
|
-
"setupTestFrameworkScriptFile": "<rootDir>/jest.setup.js",
|
|
40
|
-
"testPathIgnorePatterns": [
|
|
41
|
-
"node_modules",
|
|
42
|
-
"dist"
|
|
43
|
-
]
|
|
44
|
-
},
|
|
45
|
-
"dependencies": {
|
|
46
|
-
"@watermarkinsights/ripple": "3.
|
|
47
|
-
}
|
|
48
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@watermarkinsights/ripple-react",
|
|
3
|
+
"version": "3.26.0-12",
|
|
4
|
+
"description": "React specific wrappers for Ripple component library",
|
|
5
|
+
"scripts": {
|
|
6
|
+
"build": "npm run clean && npm run compile",
|
|
7
|
+
"clean": "rm -rf dist",
|
|
8
|
+
"compile": "npm run tsc",
|
|
9
|
+
"tsc": "tsc -p .",
|
|
10
|
+
"release": "sh ./scripts/release.sh"
|
|
11
|
+
},
|
|
12
|
+
"main": "./dist/index.js",
|
|
13
|
+
"module": "./dist/index.js",
|
|
14
|
+
"types": "./dist/index.d.ts",
|
|
15
|
+
"files": [
|
|
16
|
+
"dist/"
|
|
17
|
+
],
|
|
18
|
+
"sideEffects": [
|
|
19
|
+
"dist/index.js"
|
|
20
|
+
],
|
|
21
|
+
"devDependencies": {
|
|
22
|
+
"@types/jest": "23.3.9",
|
|
23
|
+
"@types/node": "^15.12.2",
|
|
24
|
+
"@types/react": "^17.0.34",
|
|
25
|
+
"@types/react-dom": "^17.0.11",
|
|
26
|
+
"jest": "^28.0.2",
|
|
27
|
+
"jest-dom": "^3.0.2",
|
|
28
|
+
"np": "^7.6.1",
|
|
29
|
+
"react": "^17.0.2",
|
|
30
|
+
"react-dom": "^17.0.2",
|
|
31
|
+
"typescript": "^3.3.4000"
|
|
32
|
+
},
|
|
33
|
+
"peerDependencies": {
|
|
34
|
+
"react": "^17.0.2",
|
|
35
|
+
"react-dom": "^17.0.2"
|
|
36
|
+
},
|
|
37
|
+
"jest": {
|
|
38
|
+
"preset": "ts-jest",
|
|
39
|
+
"setupTestFrameworkScriptFile": "<rootDir>/jest.setup.js",
|
|
40
|
+
"testPathIgnorePatterns": [
|
|
41
|
+
"node_modules",
|
|
42
|
+
"dist"
|
|
43
|
+
]
|
|
44
|
+
},
|
|
45
|
+
"dependencies": {
|
|
46
|
+
"@watermarkinsights/ripple": "3.26.0-12"
|
|
47
|
+
}
|
|
48
|
+
}
|