groundfloor-react-ui 1.2.12 → 1.2.13

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "groundfloor-react-ui",
3
3
  "description": "Official component library for Ground Floor",
4
- "version": "1.2.12",
4
+ "version": "1.2.13",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.es.js",
7
7
  "private": false,
@@ -13,29 +13,28 @@
13
13
  },
14
14
  "peerDependencies": {
15
15
  "@babel/preset-react": "^7.18.6",
16
+ "@rollup/plugin-babel": "^6.0.0",
16
17
  "@rollup/plugin-image": "^3.0.0",
17
18
  "@rollup/plugin-node-resolve": "^15.0.0",
18
19
  "@rollup/plugin-url": "^8.0.0",
19
- "prop-types": "^15.8.1",
20
+ "@types/prop-types": "^15.7.3",
21
+ "@types/react": ">=16.14.8",
22
+ "prop-types": ">=15.7.2",
20
23
  "react": ">=16.8.0",
21
- "react-data-table-component": "^7.5.3",
22
- "react-datepicker": "^4.8.0",
24
+ "react-data-table-component": ">=7.4.7",
25
+ "react-datepicker": ">=4.6.0",
23
26
  "react-dom": ">=16.8.0",
24
- "react-modal": "^3.15.1",
25
- "react-popper": "^2.3.0",
26
- "react-popper-tooltip": "^4.4.2",
27
- "react-router": "^6.4.2",
28
- "react-select": "^5.4.0",
29
- "react-signature-pad-wrapper": "3.2.3",
30
- "react-svg": "^15.1.10",
27
+ "react-modal": ">=3.15.1",
28
+ "react-popper": ">=2.2.5",
29
+ "react-popper-tooltip": ">=4.3.1",
30
+ "react-select": ">=5.3.2",
31
+ "react-signature-pad-wrapper": ">=1.3.0",
32
+ "react-svg": ">=14.1.6",
31
33
  "rollup": "^2.79.1",
32
- "rollup-plugin-babel": "^4.4.0",
33
- "rollup-plugin-commonjs": "^10.1.0",
34
34
  "rollup-plugin-peer-deps-external": "^2.2.4",
35
35
  "rollup-plugin-postcss": "^4.0.2",
36
36
  "rollup-plugin-terser": "^7.0.2",
37
- "styled-components": "^5.3.6",
38
- "@types/prop-types": "^15.7.3",
39
- "@types/react": ">=16.14.8"
37
+ "styled-components": ">=5.2.1",
38
+ "@rollup/plugin-commonjs": "^23.0.0"
40
39
  }
41
40
  }
package/rollup.config.js CHANGED
@@ -1,13 +1,13 @@
1
+ import { babel } from '@rollup/plugin-babel';
2
+ import commonjs from '@rollup/plugin-commonjs';
1
3
  import image from '@rollup/plugin-image';
2
4
  import resolve from '@rollup/plugin-node-resolve';
3
5
  import url from '@rollup/plugin-url';
4
- import babel from 'rollup-plugin-babel';
5
- import commonjs from 'rollup-plugin-commonjs';
6
6
  import external from 'rollup-plugin-peer-deps-external';
7
7
  import postcss from 'rollup-plugin-postcss';
8
8
  import { terser } from 'rollup-plugin-terser';
9
9
 
10
- export default [
10
+ const configuration = [
11
11
  {
12
12
  input: '../library/index.js',
13
13
  output: [
@@ -51,3 +51,4 @@ export default [
51
51
  ]
52
52
  }
53
53
  ]
54
+ export default configuration