@oliasoft-open-source/react-ui-library 3.3.7 → 3.3.8

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/dist/index.js +1317 -8515
  2. package/package.json +64 -62
package/package.json CHANGED
@@ -1,31 +1,41 @@
1
1
  {
2
2
  "name": "@oliasoft-open-source/react-ui-library",
3
- "version": "3.3.7",
3
+ "version": "3.3.8",
4
4
  "description": "Reusable UI components for React projects",
5
- "module": "./dist/index.js",
5
+ "homepage": "https://oliasoft-open-source.gitlab.io/react-ui-library",
6
+ "bugs": {
7
+ "url": "https://https://gitlab.com/oliasoft-open-source/react-ui-library/issues"
8
+ },
9
+ "repository": {
10
+ "type": "git",
11
+ "url": "git+https://gitlab.com/oliasoft-open-source/react-ui-library.git"
12
+ },
13
+ "license": "MIT",
14
+ "author": "Oliasoft AS and contributors",
15
+ "type": "module",
6
16
  "main": "./dist/index.js",
17
+ "module": "./dist/index.js",
7
18
  "files": [
8
19
  "dist"
9
20
  ],
10
- "type": "module",
11
21
  "scripts": {
12
22
  "build": "yarn run build:docs && yarn run build:storybook",
13
- "build:docs": "vite build --config vite.config.docs.mjs",
14
23
  "build:css": "lessc src/style/external.less dist/gui-library.css",
15
- "build:storybook": "NODE_OPTIONS=--openssl-legacy-provider build-storybook --quiet --output-dir ./public/storybook",
24
+ "build:docs": "vite build --config vite.config.docs.mjs",
16
25
  "build:package": "vite build --config vite.config.mjs",
17
- "dev:storybook": "NODE_OPTIONS=--openssl-legacy-provider start-storybook -p 6006",
26
+ "build:storybook": "NODE_OPTIONS=--openssl-legacy-provider build-storybook --quiet --output-dir ./public/storybook",
18
27
  "dev:docs": "vite --config vite.config.docs.mjs",
19
- "preview:docs": "yarn run http-server ./public -o -p 9002 -c-1",
20
- "preview:storybook": "yarn run http-server ./public/storybook -o -p 9003 -c-1",
21
- "test": "yarn run prettier:check && yarn run lint:check && yarn run test:unit",
22
- "test:unit": "jest",
23
- "test:unit:coverage": "vitest --coverage",
28
+ "dev:storybook": "NODE_OPTIONS=--openssl-legacy-provider start-storybook -p 6006",
24
29
  "lint:check": "eslint \"**/*.{js,jsx}\"",
25
30
  "lint:fix": "eslint --fix \"**/*.{js,jsx}\"",
31
+ "prepare": "husky install",
26
32
  "prettier:check": "prettier --check \"**/*.{js,jsx,json,css,less}\"",
27
33
  "prettier:fix": "prettier --write \"**/*.{js,jsx,json,css,less}\"",
28
- "prepare": "husky install"
34
+ "preview:docs": "yarn run http-server ./public -o -p 9002 -c-1",
35
+ "preview:storybook": "yarn run http-server ./public/storybook -o -p 9003 -c-1",
36
+ "test": "yarn run prettier:check && yarn run lint:check && yarn run test:unit",
37
+ "test:unit": "jest",
38
+ "test:unit:coverage": "vitest --coverage"
29
39
  },
30
40
  "lint-staged": {
31
41
  "*.js": "eslint --cache --fix",
@@ -33,19 +43,32 @@
33
43
  "prettier --write"
34
44
  ]
35
45
  },
36
- "repository": {
37
- "type": "git",
38
- "url": "git+https://gitlab.com/oliasoft-open-source/react-ui-library.git"
39
- },
40
- "author": "Oliasoft AS and contributors",
41
- "license": "MIT",
42
- "bugs": {
43
- "url": "https://https://gitlab.com/oliasoft-open-source/react-ui-library/issues"
46
+ "dependencies": {
47
+ "@infinium/react-keyboard-event-handler": "^1.5.8",
48
+ "@minoru/react-dnd-treeview": "^1.6.1",
49
+ "classnames": "^2.3.1",
50
+ "less-vars-to-js": "^1.3.0",
51
+ "memoize-one": "^5.2.1",
52
+ "normalize.css": "^8.0.1",
53
+ "path": "^0.12.7",
54
+ "rc-slider": "^9.7.2",
55
+ "react-beautiful-dnd": "^13.1.0",
56
+ "react-fast-compare": "^3.2.0",
57
+ "react-faux-dom": "^4.5.0",
58
+ "react-infinite-scroll-component": "^6.1.0",
59
+ "react-laag": "^2.0.3",
60
+ "react-resizable": "^3.0.4",
61
+ "react-router-dom": "^5.3.0",
62
+ "react-svg": "^14.0.12",
63
+ "react-toastify": "^8.0.2",
64
+ "react-window": "^1.8.6",
65
+ "resize-observer-polyfill": "^1.5.1",
66
+ "styled-components": "^5.3.1"
44
67
  },
45
- "homepage": "https://oliasoft-open-source.gitlab.io/react-ui-library",
46
68
  "devDependencies": {
47
69
  "@storybook/addon-actions": "^6.5.10",
48
70
  "@storybook/addon-essentials": "^6.5.10",
71
+ "@storybook/addon-links": "^6.5.13",
49
72
  "@storybook/addons": "^6.5.10",
50
73
  "@storybook/builder-vite": "^0.2.4",
51
74
  "@storybook/react": "^6.5.10",
@@ -54,7 +77,9 @@
54
77
  "@types/react": "^17.0.21",
55
78
  "@types/react-redux": "^7.1.18",
56
79
  "@types/seamless-immutable": "^7.1.16",
80
+ "@vitejs/plugin-react": "^2.1.0",
57
81
  "@vitest/coverage-c8": "^0.25.1",
82
+ "babel-jest": "^29.4.1",
58
83
  "eslint": "^8.27.0",
59
84
  "eslint-config-airbnb": "^18.2.1",
60
85
  "eslint-config-prettier": "^8.3.0",
@@ -63,56 +88,33 @@
63
88
  "eslint-plugin-jsx-a11y": "^6.4.1",
64
89
  "eslint-plugin-react": "^7.25.1",
65
90
  "eslint-plugin-react-hooks": "^4.2.0",
91
+ "http-server": "^14.1.1",
66
92
  "husky": "^7.0.2",
93
+ "immer": "^9",
94
+ "jest": "^29.4.1",
95
+ "jest-transform-stub": "^2.0.0",
67
96
  "less": "^4.1.1",
68
97
  "lint-staged": "^11.1.2",
98
+ "lodash": "^4",
69
99
  "prettier": "2.4.0",
100
+ "prop-types": "^15",
70
101
  "react": "^17.0",
71
102
  "react-dom": "^17.0",
72
- "storybook-dark-mode": "^1.1.0",
73
- "vite": "^3.1.8",
74
- "vite-preset-react": "^2.3.0"
75
- },
76
- "peerDependencies": {
77
- "react": "^17.0",
78
- "react-dom": "^17.0"
79
- },
80
- "dependencies": {
81
- "@infinium/react-keyboard-event-handler": "^1.5.8",
82
- "@minoru/react-dnd-treeview": "^1.6.1",
83
- "@storybook/addon-links": "^6.5.13",
84
- "@vitejs/plugin-react": "^2.1.0",
85
- "babel-jest": "^29.4.1",
86
- "classnames": "^2.3.1",
87
- "core-js": "^3.17.3",
88
- "http-server": "^14.1.1",
89
- "immer": "^9.0.6",
90
- "jest": "^29.4.1",
91
- "jest-transform-stub": "^2.0.0",
92
- "jsdom": "^20.0.2",
93
- "less-vars-to-js": "^1.3.0",
94
- "lodash": "^4.17.21",
95
- "memoize-one": "^5.2.1",
96
- "normalize.css": "^8.0.1",
97
- "path": "^0.12.7",
98
- "prop-types": "^15.7.2",
99
- "rc-slider": "^9.7.2",
100
- "react-beautiful-dnd": "^13.1.0",
101
- "react-fast-compare": "^3.2.0",
102
- "react-faux-dom": "^4.5.0",
103
- "react-icons": "^4.2.0",
104
- "react-infinite-scroll-component": "^6.1.0",
105
- "react-laag": "^2.0.3",
106
- "react-resizable": "^3.0.4",
107
- "react-router-dom": "^5.3.0",
108
- "react-svg": "^14.0.12",
109
- "react-toastify": "^8.0.2",
110
- "react-window": "^1.8.6",
111
- "resize-observer-polyfill": "^1.5.1",
103
+ "react-icons": "^4",
112
104
  "rollup-plugin-analyzer": "^4.0.0",
113
105
  "rollup-plugin-peer-deps-external": "^2.2.4",
114
- "styled-components": "^5.3.1",
106
+ "storybook-dark-mode": "^1.1.0",
107
+ "vite": "^3.1.8",
115
108
  "vite-plugin-html": "^3.2.0",
109
+ "vite-preset-react": "^2.3.0",
116
110
  "vitest": "^0.25.1"
111
+ },
112
+ "peerDependencies": {
113
+ "immer": "^9",
114
+ "lodash": "^4",
115
+ "prop-types": "^15",
116
+ "react": "^17",
117
+ "react-dom": "^17",
118
+ "react-icons": "^4"
117
119
  }
118
120
  }