@maxio-com/react-ui-components 0.0.2
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/README.md +13 -0
- package/package.json +47 -0
package/README.md
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
# React UI Components
|
|
2
|
+
|
|
3
|
+
UI Components for React Applications. Built with Maxio Design System:
|
|
4
|
+
|
|
5
|
+
## Usage
|
|
6
|
+
|
|
7
|
+
Make sure to include the snippet with design system stylesheet CSS file on Your page:
|
|
8
|
+
|
|
9
|
+
`<link rel="stylesheet" href="styles.css">`
|
|
10
|
+
|
|
11
|
+
or import it in main js file:
|
|
12
|
+
|
|
13
|
+
`import './styles.css';`
|
package/package.json
ADDED
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@maxio-com/react-ui-components",
|
|
3
|
+
"version": "0.0.2",
|
|
4
|
+
"description": "React ui components",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"main": "dist/index.js",
|
|
7
|
+
"module": "dist/index.esm.js",
|
|
8
|
+
"types": "typings/index.d.ts",
|
|
9
|
+
"sideEffects": false,
|
|
10
|
+
"directories": {
|
|
11
|
+
"lib": "dist"
|
|
12
|
+
},
|
|
13
|
+
"files": [
|
|
14
|
+
"dist",
|
|
15
|
+
"typings",
|
|
16
|
+
"package.json"
|
|
17
|
+
],
|
|
18
|
+
"scripts": {
|
|
19
|
+
"clean": "rimraf -rf dist temporary-typings typings tsconfig.tsbuildinfo .rollup.cache",
|
|
20
|
+
"build": "rollup --config rollup.config.ts --configPlugin typescript"
|
|
21
|
+
},
|
|
22
|
+
"devDependencies": {
|
|
23
|
+
"@babel/core": "^7.19.3",
|
|
24
|
+
"@babel/preset-env": "^7.19.4",
|
|
25
|
+
"@babel/preset-react": "^7.18.6",
|
|
26
|
+
"@rollup/plugin-babel": "^6.0.0",
|
|
27
|
+
"@rollup/plugin-commonjs": "^23.0.0",
|
|
28
|
+
"@rollup/plugin-node-resolve": "^15.0.0",
|
|
29
|
+
"@rollup/plugin-typescript": "^9.0.1",
|
|
30
|
+
"@types/rollup-plugin-peer-deps-external": "^2.2.1",
|
|
31
|
+
"rimraf": "^3.0.2",
|
|
32
|
+
"rollup": "^3.2.2",
|
|
33
|
+
"rollup-plugin-dts": "^5.0.0",
|
|
34
|
+
"rollup-plugin-peer-deps-external": "^2.2.4",
|
|
35
|
+
"rollup-plugin-terser": "^7.0.2",
|
|
36
|
+
"rollup-plugin-typescript2": "^0.34.1",
|
|
37
|
+
"typescript": "^4.8.4"
|
|
38
|
+
},
|
|
39
|
+
"peerDependencies": {
|
|
40
|
+
"react": "^17.0 || ^18.0",
|
|
41
|
+
"react-dom": "^17.0 || ^18.0"
|
|
42
|
+
},
|
|
43
|
+
"publishConfig": {
|
|
44
|
+
"access": "public"
|
|
45
|
+
},
|
|
46
|
+
"gitHead": "47ef4853921116fc05179ec30b5baf940c30bfd5"
|
|
47
|
+
}
|