tenjin-ui-kit 0.3.57 → 0.3.58

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 +13 -0
  2. package/package.json +6 -4
package/README.md ADDED
@@ -0,0 +1,13 @@
1
+ # Tenjin UI Kit
2
+
3
+ The Tenjin UI kit ships a set of pre-built components that can be used while building user interfaces for Tenjin.
4
+
5
+ ## Installation
6
+
7
+ In the project directory, you can run:
8
+
9
+ npm install tenjin-ui-kit
10
+
11
+ ## Usage
12
+
13
+ The [Tenjin UI Kit](https://tenjin-ui-kit.netlify.app) storybook gives clear documentation on how to use the Tenjin UI Kit.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tenjin-ui-kit",
3
- "version": "0.3.57",
3
+ "version": "0.3.58",
4
4
  "repository": {
5
5
  "url": "git+https://gitlab.com/yethi/react/tenjin-ui-kit.git"
6
6
  },
@@ -10,7 +10,6 @@
10
10
  "@mantine/hooks": "^5.10.1",
11
11
  "@mantine/rte": "^5.10.1",
12
12
  "@mui/icons-material": "^5.11.0",
13
- "@mui/lab": "^5.0.0-alpha.116",
14
13
  "@mui/styles": "^5.11.2",
15
14
  "@testing-library/jest-dom": "^5.16.5",
16
15
  "@testing-library/react": "^13.4.0",
@@ -51,8 +50,10 @@
51
50
  "build-storybook": "build-storybook -s public",
52
51
  "clean": "rimraf dist",
53
52
  "compile": "npm run clean && cross-env NODE_ENV=production babel src/package --out-dir dist --copy-files --ignore __tests__,spec.js,test.js,stories.js,__snapshots__",
54
- "copy-and-publish": "copy package.json dist && copy README.md dist && cd dist && npm publish --tag dev",
55
- "publish-dev": "npm-run-all compile copy-and-publish"
53
+ "copy-and-publish-dev": "copy package.json dist && copy README.md dist && cd dist && npm publish --tag dev",
54
+ "copy-and-publish": "copy package.json dist && copy README.md dist && cd dist && npm publish",
55
+ "publish-dev": "npm-run-all compile copy-and-publish-dev",
56
+ "publish-prod": "npm-run-all compile copy-and-publish"
56
57
  },
57
58
  "eslintConfig": {
58
59
  "extends": [
@@ -112,6 +113,7 @@
112
113
  "@emotion/react": "^11.10.5",
113
114
  "@emotion/styled": "^11.10.5",
114
115
  "@mui/material": "^5.11.3",
116
+ "@mui/lab": "^5.0.0-alpha.116",
115
117
  "@testing-library/jest-dom": "^5.16.5",
116
118
  "@testing-library/react": "^13.4.0",
117
119
  "@testing-library/user-event": "^13.5.0",