@kwantis-id3/frontend-library 0.19.0 → 0.20.1-rc.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.
- package/LICENSE +201 -201
- package/README.md +333 -333
- package/changelog.md +118 -0
- package/dist/esm/index.js +49 -26
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/components/SelectFilter/SingleSelect.d.ts +1 -0
- package/dist/index.d.ts +1 -0
- package/package.json +52 -16
package/dist/index.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,39 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kwantis-id3/frontend-library",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.20.1-rc.0",
|
|
4
4
|
"description": "Kwantis frontend components collection",
|
|
5
|
+
"scriptsComments": {
|
|
6
|
+
"storybook": "Starts storybook in development mode",
|
|
7
|
+
"rollup": "Bundles the library",
|
|
8
|
+
"test": "Runs tests",
|
|
9
|
+
"test:watch": "Runs tests in watch mode",
|
|
10
|
+
"test:coverage": "Runs tests in watch mode and generates coverage report",
|
|
11
|
+
"chromatic": "Runs chromatic tests and deploys to chromatic",
|
|
12
|
+
"build-cleanup": "Removes dist folder (if present)",
|
|
13
|
+
"build": "Removes dist folder and bundles the library",
|
|
14
|
+
"bump:patch": "Bumps the version to the next patch",
|
|
15
|
+
"bump:minor": "Bumps the version to the next minor",
|
|
16
|
+
"bump:major": "Bumps the version to the next major",
|
|
17
|
+
"bump:prepatch": "Bumps the version to the next prepatch",
|
|
18
|
+
"bump:preminor": "Bumps the version to the next preminor",
|
|
19
|
+
"bump:premajor": "Bumps the version to the next premajor"
|
|
20
|
+
},
|
|
21
|
+
"scripts": {
|
|
22
|
+
"storybook": "storybook dev -p 6006",
|
|
23
|
+
"rollup": "rollup -c",
|
|
24
|
+
"test": "vitest run",
|
|
25
|
+
"test:watch": "vitest",
|
|
26
|
+
"test:coverage": "vitest --coverage",
|
|
27
|
+
"chromatic": "npx chromatic --project-token=3dd812d03e4c",
|
|
28
|
+
"build-cleanup": "if exist dist rmdir /s /q dist",
|
|
29
|
+
"build": "pnpm clean-build && pnpm rollup",
|
|
30
|
+
"bump:patch": "pnpm version patch",
|
|
31
|
+
"bump:minor": "pnpm version minor",
|
|
32
|
+
"bump:major": "pnpm version major",
|
|
33
|
+
"bump:prepatch": "pnpm version prepatch --preid=rc",
|
|
34
|
+
"bump:preminor": "pnpm version preminor --preid=rc",
|
|
35
|
+
"bump:premajor": "pnpm version premajor --preid=rc"
|
|
36
|
+
},
|
|
5
37
|
"author": {
|
|
6
38
|
"name": "kwantis"
|
|
7
39
|
},
|
|
@@ -9,6 +41,7 @@
|
|
|
9
41
|
"devDependencies": {
|
|
10
42
|
"@rollup/plugin-commonjs": "^24.0.1",
|
|
11
43
|
"@rollup/plugin-node-resolve": "^15.0.1",
|
|
44
|
+
"@rollup/plugin-terser": "^0.4.4",
|
|
12
45
|
"@rollup/plugin-typescript": "^11.0.0",
|
|
13
46
|
"@storybook/addon-essentials": "7.4.6",
|
|
14
47
|
"@storybook/addon-interactions": "7.4.6",
|
|
@@ -20,31 +53,30 @@
|
|
|
20
53
|
"@testing-library/jest-dom": "^5.16.5",
|
|
21
54
|
"@testing-library/react": "^14.0.0",
|
|
22
55
|
"@testing-library/user-event": "^14.5.1",
|
|
23
|
-
"@types/jest": "^29.5.0",
|
|
24
56
|
"@types/react": "^18.0.33",
|
|
25
57
|
"@types/testing-library__jest-dom": "^5.14.5",
|
|
26
58
|
"@types/tinycolor2": "^1.4.3",
|
|
27
59
|
"@typescript-eslint/eslint-plugin": "^5.58.0",
|
|
28
60
|
"@typescript-eslint/parser": "^5.58.0",
|
|
61
|
+
"@vitest/coverage-v8": "^1.1.0",
|
|
29
62
|
"chromatic": "^6.17.4",
|
|
30
63
|
"eslint": "^8.38.0",
|
|
31
64
|
"eslint-config-prettier": "^8.8.0",
|
|
32
65
|
"eslint-plugin-react": "^7.32.2",
|
|
33
66
|
"eslint-plugin-react-hooks": "^4.6.0",
|
|
34
67
|
"eslint-plugin-storybook": "^0.6.14",
|
|
35
|
-
"
|
|
36
|
-
"jest-config": "^29.5.0",
|
|
37
|
-
"jest-environment-jsdom": "^29.5.0",
|
|
68
|
+
"jsdom": "^23.0.1",
|
|
38
69
|
"prop-types": "15.8.1",
|
|
39
70
|
"react": "18.2.0",
|
|
40
71
|
"react-dom": "18.2.0",
|
|
41
72
|
"rollup": "^3.20.2",
|
|
42
73
|
"rollup-plugin-dts": "^5.3.0",
|
|
74
|
+
"rollup-plugin-peer-deps-external": "^2.2.4",
|
|
43
75
|
"storybook": "7.4.6",
|
|
44
|
-
"ts-jest": "^29.1.0",
|
|
45
76
|
"ts-node": "^10.9.1",
|
|
46
77
|
"tslib": "^2.5.0",
|
|
47
|
-
"typescript": "^5.0.3"
|
|
78
|
+
"typescript": "^5.0.3",
|
|
79
|
+
"vitest": "^1.1.0"
|
|
48
80
|
},
|
|
49
81
|
"peerDependencies": {
|
|
50
82
|
"react": ">= 17.0.2"
|
|
@@ -56,22 +88,26 @@
|
|
|
56
88
|
],
|
|
57
89
|
"types": "dist/index.d.ts",
|
|
58
90
|
"dependencies": {
|
|
91
|
+
"@emotion/jest": "^11.11.0",
|
|
59
92
|
"@emotion/react": "11.10.6",
|
|
60
93
|
"@emotion/styled": "11.10.6",
|
|
61
|
-
"@rollup/plugin-terser": "^0.4.1",
|
|
62
94
|
"react-collapsible": "^2.10.0",
|
|
63
95
|
"react-icons-kit": "^2.0.0",
|
|
64
96
|
"react-range": "^1.8.14",
|
|
65
97
|
"react-select": "^5.7.3",
|
|
66
|
-
"rollup-plugin-peer-deps-external": "^2.2.4",
|
|
67
98
|
"tinycolor2": "^1.6.0"
|
|
68
99
|
},
|
|
69
100
|
"readme": "ERROR: No README data found!",
|
|
70
|
-
"
|
|
71
|
-
"
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
101
|
+
"pnpm": {
|
|
102
|
+
"overrides": {
|
|
103
|
+
"@adobe/css-tools@<4.3.1": ">=4.3.1",
|
|
104
|
+
"postcss@<8.4.31": ">=8.4.31",
|
|
105
|
+
"semver@<5.7.2": ">=5.7.2",
|
|
106
|
+
"semver@>=6.0.0 <6.3.1": ">=6.3.1",
|
|
107
|
+
"semver@>=7.0.0 <7.5.2": ">=7.5.2",
|
|
108
|
+
"tough-cookie@<4.1.3": ">=4.1.3",
|
|
109
|
+
"word-wrap@<1.2.4": ">=1.2.4",
|
|
110
|
+
"@babel/traverse@<7.23.2": ">=7.23.2"
|
|
111
|
+
}
|
|
76
112
|
}
|
|
77
|
-
}
|
|
113
|
+
}
|