@ctlyst.id/internal-ui 2.1.11-canary.2 → 2.1.13
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/index.d.mts +12 -6
- package/dist/index.d.ts +12 -6
- package/dist/index.js +953 -2279
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +518 -1854
- package/dist/index.mjs.map +1 -1
- package/package.json +31 -28
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@ctlyst.id/internal-ui",
|
3
|
-
"version": "2.1.
|
3
|
+
"version": "2.1.13",
|
4
4
|
"description": "Voila Internal UI Component",
|
5
5
|
"main": "dist/index.js",
|
6
6
|
"module": "dist/internal-ui.esm.js",
|
@@ -15,25 +15,16 @@
|
|
15
15
|
"publishConfig": {
|
16
16
|
"access": "public"
|
17
17
|
},
|
18
|
-
"scripts": {
|
19
|
-
"build": "tsup --dts",
|
20
|
-
"clean": "rimraf dist",
|
21
|
-
"format": "prettier --write \"src/**/*.{js,jsx,ts,tsx}\"",
|
22
|
-
"lint": "eslint \"src/**/*.{js,jsx,ts,tsx}\"",
|
23
|
-
"prepublish": "yarn build",
|
24
|
-
"report-coverage": "codecov -f ./coverage/*.json",
|
25
|
-
"test": "jest",
|
26
|
-
"test:coverage": "jest --coverage",
|
27
|
-
"type-check": "tsc --noEmit"
|
28
|
-
},
|
29
18
|
"dependencies": {
|
30
|
-
"@chakra-ui/anatomy": "^2.
|
31
|
-
"@chakra-ui/icons": "^2.
|
32
|
-
"@chakra-ui/react": "^2.
|
33
|
-
"@chakra-ui/
|
34
|
-
"@chakra-ui/
|
35
|
-
"@chakra-ui/
|
36
|
-
"@chakra-ui/
|
19
|
+
"@chakra-ui/anatomy": "^2.2.2",
|
20
|
+
"@chakra-ui/icons": "^2.1.1",
|
21
|
+
"@chakra-ui/react": "^2.8.2",
|
22
|
+
"@chakra-ui/react-context": "^2.1.0",
|
23
|
+
"@chakra-ui/shared-utils": "^2.0.5",
|
24
|
+
"@chakra-ui/styled-system": "^2.9.2",
|
25
|
+
"@chakra-ui/system": "^2.6.0",
|
26
|
+
"@chakra-ui/theme": "3.3.1",
|
27
|
+
"@chakra-ui/theme-tools": "^2.1.2",
|
37
28
|
"@emotion/core": "^11.0.0",
|
38
29
|
"@emotion/react": "^11.9.3",
|
39
30
|
"@emotion/styled": "^11.9.3",
|
@@ -49,7 +40,7 @@
|
|
49
40
|
"tslib": "^2.3.1"
|
50
41
|
},
|
51
42
|
"peerDependencies": {
|
52
|
-
"@ctlyst.id/internal-icon": "^1.0.7
|
43
|
+
"@ctlyst.id/internal-icon": "^1.0.7",
|
53
44
|
"react": "^18.1.0",
|
54
45
|
"react-dom": "^18.1.0"
|
55
46
|
},
|
@@ -58,15 +49,27 @@
|
|
58
49
|
"@babel/preset-env": "^7.24.7",
|
59
50
|
"@babel/preset-react": "^7.24.7",
|
60
51
|
"@babel/preset-typescript": "^7.18.6",
|
61
|
-
"@ctlyst.id/ctlyst-theme": "^0.0.5
|
62
|
-
"@ctlyst.id/voila-theme": "^0.0.6
|
63
|
-
"@testing-library/
|
64
|
-
"@testing-library/
|
65
|
-
"@
|
52
|
+
"@ctlyst.id/ctlyst-theme": "^0.0.5",
|
53
|
+
"@ctlyst.id/voila-theme": "^0.0.6",
|
54
|
+
"@testing-library/dom": "^10.0.0",
|
55
|
+
"@testing-library/jest-dom": "^6.4.6",
|
56
|
+
"@testing-library/react": "^16.0.0",
|
57
|
+
"@types/jest": "^29.5.12",
|
66
58
|
"babel-loader": "^8.2.2",
|
67
59
|
"codecov": "^3.8.3",
|
68
60
|
"framer-motion": "^6.3.13",
|
69
|
-
"jest": "^
|
61
|
+
"jest": "^29.7.0"
|
70
62
|
},
|
71
|
-
"gitHead": "
|
72
|
-
|
63
|
+
"gitHead": "da79c755628cff127d3383febf834eb2c7478c31",
|
64
|
+
"scripts": {
|
65
|
+
"build": "tsup --dts",
|
66
|
+
"clean": "rimraf dist",
|
67
|
+
"format": "prettier --write \"src/**/*.{js,jsx,ts,tsx}\"",
|
68
|
+
"lint": "eslint \"src/**/*.{js,jsx,ts,tsx}\"",
|
69
|
+
"prepublish": "pnpm build",
|
70
|
+
"report-coverage": "codecov -f ./coverage/*.json",
|
71
|
+
"test": "jest",
|
72
|
+
"test:coverage": "jest --coverage",
|
73
|
+
"type-check": "tsc --noEmit"
|
74
|
+
}
|
75
|
+
}
|