@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.
@@ -1303,7 +1303,8 @@ declare const _default: {
1303
1303
  "default": "#323232"
1304
1304
  },
1305
1305
  "text": {
1306
- "default": "#ffffff"
1306
+ "default": "#ffffff",
1307
+ "disabled": "#808080"
1307
1308
  },
1308
1309
  "link": {
1309
1310
  "default": "#FAFF69"
@@ -2388,7 +2388,8 @@ declare const _default: {
2388
2388
  "default": "#e6e7e9"
2389
2389
  },
2390
2390
  "text": {
2391
- "default": "#161517"
2391
+ "default": "#161517",
2392
+ "disabled": "#a0a0a0"
2392
2393
  },
2393
2394
  "link": {
2394
2395
  "default": "#437EEF"
@@ -1293,7 +1293,8 @@ declare const _default: {
1293
1293
  "default": "#e6e7e9"
1294
1294
  },
1295
1295
  "text": {
1296
- "default": "#161517"
1296
+ "default": "#161517",
1297
+ "disabled": "#a0a0a0"
1297
1298
  },
1298
1299
  "link": {
1299
1300
  "default": "#437EEF"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@clickhouse/click-ui",
3
- "version": "0.0.196",
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
- "build-storybook": "storybook build",
42
- "chromatic": "npx chromatic",
43
- "publish:click-ui": "npm run test && npm run build && npm publish"
43
+ "test": "vitest",
44
+ "typecheck": "tsc --noEmit",
45
+ "watch": "vitest --watch"
44
46
  },
45
47
  "dependencies": {
46
48
  "@h6s/calendar": "^2.0.1",
@@ -1,4 +0,0 @@
1
- import { SVGAttributes } from 'react';
2
-
3
- declare const PostgresCDCDark: (props: SVGAttributes<SVGElement>) => import("react/jsx-runtime").JSX.Element;
4
- export default PostgresCDCDark;
@@ -1,4 +0,0 @@
1
- import { SVGAttributes } from 'react';
2
-
3
- declare const PostgresCDCLight: (props: SVGAttributes<SVGElement>) => import("react/jsx-runtime").JSX.Element;
4
- export default PostgresCDCLight;