@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.
Files changed (35) hide show
  1. package/LICENSE +21 -21
  2. package/README.md +31 -31
  3. package/dist/components/index.d.ts +1 -1
  4. package/dist/components/index.js +1 -1
  5. package/dist/components/stencil-generated/index.d.ts +1 -1
  6. package/dist/components/stencil-generated/index.js +28 -28
  7. package/dist/components.d.ts +40 -40
  8. package/dist/components.js +42 -42
  9. package/dist/index.d.ts +1 -1
  10. package/dist/index.js +3 -3
  11. package/dist/react-component-lib/ReactProps.d.ts +3 -3
  12. package/dist/react-component-lib/createComponent.d.ts +10 -10
  13. package/dist/react-component-lib/createComponent.js +105 -105
  14. package/dist/react-component-lib/createComponent.js.map +1 -1
  15. package/dist/react-component-lib/createControllerComponent.d.ts +43 -43
  16. package/dist/react-component-lib/createControllerComponent.js +145 -145
  17. package/dist/react-component-lib/createOverlayComponent.d.ts +21 -21
  18. package/dist/react-component-lib/createOverlayComponent.js +188 -199
  19. package/dist/react-component-lib/createOverlayComponent.js.map +1 -1
  20. package/dist/react-component-lib/index.d.ts +2 -2
  21. package/dist/react-component-lib/index.js +2 -2
  22. package/dist/react-component-lib/interfaces.d.ts +29 -29
  23. package/dist/react-component-lib/utils/attachEventProps.d.ts +8 -8
  24. package/dist/react-component-lib/utils/attachEventProps.js +78 -78
  25. package/dist/react-component-lib/utils/attachProps.d.ts +12 -12
  26. package/dist/react-component-lib/utils/attachProps.js +98 -98
  27. package/dist/react-component-lib/utils/case.d.ts +2 -2
  28. package/dist/react-component-lib/utils/case.js +8 -10
  29. package/dist/react-component-lib/utils/case.js.map +1 -1
  30. package/dist/react-component-lib/utils/dev.d.ts +2 -2
  31. package/dist/react-component-lib/utils/dev.js +12 -12
  32. package/dist/react-component-lib/utils/index.d.ts +10 -10
  33. package/dist/react-component-lib/utils/index.js +46 -48
  34. package/dist/react-component-lib/utils/index.js.map +1 -1
  35. package/package.json +48 -48
package/package.json CHANGED
@@ -1,48 +1,48 @@
1
- {
2
- "name": "@watermarkinsights/ripple-react",
3
- "version": "3.25.0",
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.25.0"
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
+ }