@clickhouse/click-ui 0.0.196 → 0.0.198
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/dist/click-ui.es.js +138 -95
- package/dist/click-ui.umd.js +138 -95
- package/dist/components/CardHorizontal/CardHorizontal.d.ts +6 -2
- package/dist/components/Grid/Header.d.ts +1 -1
- package/dist/components/Grid/RowNumberColumn.d.ts +2 -1
- package/dist/components/Grid/StyledCell.d.ts +1 -0
- package/dist/components/Grid/types.d.ts +4 -0
- package/dist/components/Logos/types.d.ts +1 -1
- package/dist/styles/types.d.ts +2590 -2589
- package/dist/styles/variables.dark.json.d.ts +2 -1
- package/dist/styles/variables.json.d.ts +2 -1
- package/dist/styles/variables.light.json.d.ts +2 -1
- package/package.json +11 -9
- package/dist/components/Logos/PostgresCDCDark.d.ts +0 -4
- package/dist/components/Logos/PostgresCDCLight.d.ts +0 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@clickhouse/click-ui",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.198",
|
|
4
4
|
"description": "Official ClickHouse design system react library",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -28,19 +28,21 @@
|
|
|
28
28
|
},
|
|
29
29
|
"homepage": "https://clickhouse.com",
|
|
30
30
|
"scripts": {
|
|
31
|
-
"watch": "vitest --watch",
|
|
32
|
-
"test": "vitest",
|
|
33
|
-
"dev": "vite",
|
|
34
|
-
"generate-tokens": "node build-tokens.js",
|
|
35
|
-
"typecheck": "tsc --noEmit",
|
|
36
31
|
"build": "tsc && vite build",
|
|
32
|
+
"build-storybook": "storybook build",
|
|
37
33
|
"build:watch": "watch 'npm run build' ./src",
|
|
34
|
+
"chromatic": "npx chromatic",
|
|
35
|
+
"dev": "vite",
|
|
36
|
+
"generate-tokens": "node build-tokens.js",
|
|
38
37
|
"lint": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
|
|
38
|
+
"prettify": "prettier --write \"src/**/*.{js,jsx,ts,tsx}\" --config .prettierrc",
|
|
39
|
+
"prettier:check": "prettier --check \"src/**/*.{js,jsx,ts,tsx}\" --config .prettierrc",
|
|
39
40
|
"preview": "vite preview",
|
|
41
|
+
"publish:click-ui": "npm run test && npm run build && npm publish",
|
|
40
42
|
"storybook": "storybook dev -p 6006",
|
|
41
|
-
"
|
|
42
|
-
"
|
|
43
|
-
"
|
|
43
|
+
"test": "vitest",
|
|
44
|
+
"typecheck": "tsc --noEmit",
|
|
45
|
+
"watch": "vitest --watch"
|
|
44
46
|
},
|
|
45
47
|
"dependencies": {
|
|
46
48
|
"@h6s/calendar": "^2.0.1",
|