@cloudtower/eagle 0.32.10 → 0.32.12
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/README.md +6 -0
- package/dist/cjs/core/Alert/index.js +10 -4
- package/dist/cjs/core/TableForm/TableFormBodyCell.js +2 -1
- package/dist/cjs/core/TableForm/TableFormHeaderCell.js +4 -2
- package/dist/cjs/stats1.html +1 -1
- package/dist/components.css +2930 -2907
- package/dist/esm/core/Alert/index.js +10 -4
- package/dist/esm/core/TableForm/TableFormBodyCell.js +2 -1
- package/dist/esm/core/TableForm/TableFormHeaderCell.js +4 -2
- package/dist/esm/stats1.html +1 -1
- package/dist/src/core/TableForm/types.d.ts +1 -0
- package/dist/stories/docs/core/SearchInput.stories.d.ts +20 -20
- package/dist/style.css +2775 -2757
- package/package.json +7 -7
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cloudtower/eagle",
|
|
3
|
-
"version": "0.32.
|
|
3
|
+
"version": "0.32.12",
|
|
4
4
|
"main": "dist/cjs/index.js",
|
|
5
5
|
"module": "./dist/esm/index.js",
|
|
6
6
|
"types": "dist/src/index.d.ts",
|
|
@@ -16,10 +16,10 @@
|
|
|
16
16
|
"url": "https://github.com/webzard-io/cloudtower-ui-kit.git"
|
|
17
17
|
},
|
|
18
18
|
"scripts": {
|
|
19
|
-
"build": "rollup --config rollup.config.js --bundleConfigAsCjs",
|
|
19
|
+
"build": "rollup --config rollup.config.js --bundleConfigAsCjs --silent",
|
|
20
20
|
"prebuild": "node tools/prebuild-antd-less.js",
|
|
21
21
|
"test": "vitest",
|
|
22
|
-
"test:ci": "vitest run",
|
|
22
|
+
"test:ci": "vitest run --silent",
|
|
23
23
|
"coverage": "vitest run --coverage",
|
|
24
24
|
"typings": "tsc --emitDeclarationOnly && tsc-alias",
|
|
25
25
|
"storybook": "storybook dev -p 6006",
|
|
@@ -27,8 +27,8 @@
|
|
|
27
27
|
"sync:color": "node tools/fetch-figma-color.js"
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@cloudtower/icons-react": "^0.32.
|
|
31
|
-
"@cloudtower/parrot": "^0.32.
|
|
30
|
+
"@cloudtower/icons-react": "^0.32.12",
|
|
31
|
+
"@cloudtower/parrot": "^0.32.12",
|
|
32
32
|
"@cloudtower/rc-notification": "^4.6.1",
|
|
33
33
|
"@linaria/core": "^4.2.2",
|
|
34
34
|
"@linaria/react": "^4.3.0",
|
|
@@ -112,7 +112,7 @@
|
|
|
112
112
|
"tsc-alias": "^1.8.8",
|
|
113
113
|
"typescript": "5.0.2",
|
|
114
114
|
"vite": "^4.5.1",
|
|
115
|
-
"vitest": "^0.
|
|
115
|
+
"vitest": "^3.0.2"
|
|
116
116
|
},
|
|
117
|
-
"gitHead": "
|
|
117
|
+
"gitHead": "c4d8f2afb55f333dfd07cf372bae70b156b458f3"
|
|
118
118
|
}
|