@watermarkinsights/ripple-react 3.0.0-3 → 3.1.0

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 (2) hide show
  1. package/README.md +4 -3
  2. package/package.json +4 -3
package/README.md CHANGED
@@ -1,13 +1,14 @@
1
1
  # React wrappers
2
2
 
3
- This package is React-specific wrapper created for Ripple, Watermark's component library. It makes it easier to use the components in React projects, i.e., the same way you would any other React component. Implementing the components is slightly different than standard usage, which is documented [here](https://ripple.watermarkinsights.com/). The main differences:
3
+ This package is React-specific wrapper created for [Ripple](https://www.npmjs.com/package/@watermarkinsights/ripple), Watermark's component library. It makes it easier to use the components in React projects, i.e., the same way you would any other React component. Implementing the components is slightly different than standard usage, which is documented [here](https://ripple.watermarkinsights.com/). The main differences:
4
4
 
5
5
  - Component names start with an uppercase letter and use CamelCase instead of kebab-case.
6
6
 
7
7
  - All events start with `on`. For example, the pagination component's `pageClicked` event will translate to `onPageClicked` when using the React package.
8
8
 
9
- For installation instructions, see https://ripple.watermarkinsights.com/components/installation
10
- This project is based on https://github.com/ionic-team/stencil-ds-plugins-demo/tree/master/packages/component-library-react
9
+
10
+ For installation instructions, see https://ripple.watermarkinsights.com/components/installation
11
+ This project is based on https://github.com/ionic-team/stencil-ds-plugins-demo/tree/master/packages/component-library-react
11
12
 
12
13
  ## Usage
13
14
 
package/package.json CHANGED
@@ -1,11 +1,12 @@
1
1
  {
2
2
  "name": "@watermarkinsights/ripple-react",
3
3
  "sideEffects": false,
4
- "version": "3.0.0-3",
4
+ "version": "3.1.0",
5
5
  "description": "React specific wrappers for Ripple component library",
6
6
  "scripts": {
7
7
  "compile": "npm run tsc",
8
- "tsc": "tsc -p ."
8
+ "tsc": "tsc -p .",
9
+ "release": "sh ./scripts/release.sh"
9
10
  },
10
11
  "main": "./dist/index.js",
11
12
  "module": "./dist/index.js",
@@ -39,6 +40,6 @@
39
40
  ]
40
41
  },
41
42
  "dependencies": {
42
- "@watermarkinsights/ripple": "3.0.0-2"
43
+ "@watermarkinsights/ripple": "3.1.0"
43
44
  }
44
45
  }