ui-beyable 1.0.2 → 1.0.4
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/lib/cjs/components/Avatar/Avatar.d.ts +5 -0
- package/lib/cjs/components/Avatar/type.d.ts +5 -0
- package/lib/cjs/components/Breadcrumb/BYbreadcrumbItem.d.ts +4 -0
- package/lib/cjs/components/Breadcrumb/Breadcrumb.d.ts +5 -0
- package/lib/cjs/components/Breadcrumb/type.d.ts +21 -0
- package/lib/cjs/components/Checkbox/Checkbox.d.ts +4 -0
- package/lib/cjs/components/Checkbox/type.d.ts +15 -0
- package/lib/cjs/components/InputCustom/InputCustom.d.ts +10 -0
- package/lib/cjs/components/InputCustom/types.d.ts +40 -0
- package/lib/cjs/components/Spinner/Spinner.d.ts +4 -0
- package/lib/cjs/components/Spinner/type.d.ts +3 -0
- package/lib/cjs/components/SpinnerWheel/BYspinnerWheel.d.ts +6 -0
- package/lib/cjs/components/SpinnerWheel/type.d.ts +5 -0
- package/lib/cjs/index.css +3 -3
- package/lib/cjs/index.css.map +1 -1
- package/lib/cjs/index.d.ts +11 -5
- package/lib/cjs/index.js +4755 -0
- package/lib/cjs/index.js.map +1 -1
- package/lib/esm/components/Avatar/Avatar.d.ts +5 -0
- package/lib/esm/components/Avatar/type.d.ts +5 -0
- package/lib/esm/components/Breadcrumb/BYbreadcrumbItem.d.ts +4 -0
- package/lib/esm/components/Breadcrumb/Breadcrumb.d.ts +5 -0
- package/lib/esm/components/Breadcrumb/type.d.ts +21 -0
- package/lib/esm/components/Checkbox/Checkbox.d.ts +4 -0
- package/lib/esm/components/Checkbox/type.d.ts +15 -0
- package/lib/esm/components/InputCustom/InputCustom.d.ts +10 -0
- package/lib/esm/components/InputCustom/types.d.ts +40 -0
- package/lib/esm/components/Spinner/Spinner.d.ts +4 -0
- package/lib/esm/components/Spinner/type.d.ts +3 -0
- package/lib/esm/components/SpinnerWheel/BYspinnerWheel.d.ts +6 -0
- package/lib/esm/components/SpinnerWheel/type.d.ts +5 -0
- package/lib/esm/index.css +3 -3
- package/lib/esm/index.css.map +1 -1
- package/lib/esm/index.d.ts +11 -5
- package/lib/esm/index.js +4751 -2
- package/lib/esm/index.js.map +1 -1
- package/package.json +19 -3
package/package.json
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ui-beyable",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.4",
|
|
4
4
|
"description": "Ui library of Beyable projets",
|
|
5
5
|
"main": "./lib/cjs/index.js",
|
|
6
6
|
"module": "./lib/esm/index.js",
|
|
7
7
|
"types": "./lib/esm/index.d.ts",
|
|
8
8
|
"scripts": {
|
|
9
|
+
"test": "jest",
|
|
9
10
|
"buildrollup": "rollup -c",
|
|
10
11
|
"build": "npm run build:esm && npm run build:cjs",
|
|
11
12
|
"build:esm": "tsc",
|
|
@@ -40,8 +41,10 @@
|
|
|
40
41
|
"@rollup/plugin-node-resolve": "^15.1.0",
|
|
41
42
|
"@rollup/plugin-typescript": "^11.1.1",
|
|
42
43
|
"@tsconfig/recommended": "^1.0.2",
|
|
44
|
+
"@types/react-tooltip": "^4.2.4",
|
|
43
45
|
"autoprefixer": "^10.4.14",
|
|
44
46
|
"postcss": "^8.4.24",
|
|
47
|
+
"react-tooltip": "^4.2.21",
|
|
45
48
|
"rollup": "^3.25.1",
|
|
46
49
|
"rollup-plugin-dts": "^5.3.0",
|
|
47
50
|
"rollup-plugin-peer-deps-external": "^2.2.4",
|
|
@@ -49,14 +52,27 @@
|
|
|
49
52
|
"rollup-plugin-postcss-modules": "^2.1.1",
|
|
50
53
|
"rollup-plugin-typescript2": "^0.34.1",
|
|
51
54
|
"tslib": "^2.5.3",
|
|
52
|
-
"typescript-plugin-css-modules": "^5.0.1"
|
|
55
|
+
"typescript-plugin-css-modules": "^5.0.1",
|
|
56
|
+
"uuid": "^9.0.0"
|
|
53
57
|
},
|
|
54
58
|
"devDependencies": {
|
|
59
|
+
"@testing-library/jest-dom": "^5.16.5",
|
|
60
|
+
"@testing-library/react": "^14.0.0",
|
|
55
61
|
"@types/react": "18.2.0",
|
|
56
62
|
"@types/react-dom": "18.2.0",
|
|
63
|
+
"@types/uuid": "^9.0.2",
|
|
64
|
+
"jest": "^29.5.0",
|
|
65
|
+
"jest-environment-jsdom": "^29.5.0",
|
|
66
|
+
"jest-watch-typeahead": "^2.2.2",
|
|
57
67
|
"react": "18.2.0",
|
|
58
68
|
"react-dom": "18.2.0",
|
|
59
|
-
"
|
|
69
|
+
"react-scripts": "^5.0.1",
|
|
70
|
+
"react-test-renderer": "^18.2.0",
|
|
71
|
+
"ts-jest": "^29.1.0",
|
|
72
|
+
"tsconfig-paths": "^4.2.0",
|
|
73
|
+
"typescript": "^4.0.2",
|
|
74
|
+
"webpack": "^5.87.0",
|
|
75
|
+
"webpack-cli": "^5.1.4"
|
|
60
76
|
},
|
|
61
77
|
"files": [
|
|
62
78
|
"/lib"
|