@lawkit/ui 0.1.64 → 0.1.66
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/CLAUDE.md
CHANGED
|
@@ -1,36 +1,7 @@
|
|
|
1
|
+
import { LdsThemeInput } from '../../../tokens/src';
|
|
1
2
|
/**
|
|
2
3
|
* 스토리북 데모용 브랜드 프리셋.
|
|
3
4
|
* Theming.stories.tsx / Colors.stories.tsx에서 공유.
|
|
4
5
|
* (.stories 파일에서 export하면 Storybook이 스토리로 인식하므로 별도 모듈로 분리)
|
|
5
6
|
*/
|
|
6
|
-
export declare const brandPresets:
|
|
7
|
-
readonly "Law.ai (\uAE30\uBCF8)": {};
|
|
8
|
-
readonly "Green Brand": {
|
|
9
|
-
readonly color: {
|
|
10
|
-
readonly accentPrimary: "#16a34a";
|
|
11
|
-
readonly accentPrimaryHover: "#15803d";
|
|
12
|
-
readonly accentPrimaryActive: "#166534";
|
|
13
|
-
};
|
|
14
|
-
};
|
|
15
|
-
readonly "Purple Brand": {
|
|
16
|
-
readonly color: {
|
|
17
|
-
readonly accentPrimary: "#7c3aed";
|
|
18
|
-
readonly accentPrimaryHover: "#6d28d9";
|
|
19
|
-
readonly accentPrimaryActive: "#5b21b6";
|
|
20
|
-
};
|
|
21
|
-
};
|
|
22
|
-
readonly "Orange Brand": {
|
|
23
|
-
readonly color: {
|
|
24
|
-
readonly accentPrimary: "#ea580c";
|
|
25
|
-
readonly accentPrimaryHover: "#c2410c";
|
|
26
|
-
readonly accentPrimaryActive: "#9a3412";
|
|
27
|
-
};
|
|
28
|
-
};
|
|
29
|
-
readonly "Scourt Blue": {
|
|
30
|
-
readonly color: {
|
|
31
|
-
readonly accentPrimary: "#003399";
|
|
32
|
-
readonly accentPrimaryHover: "#002b80";
|
|
33
|
-
readonly accentPrimaryActive: "#001f5c";
|
|
34
|
-
};
|
|
35
|
-
};
|
|
36
|
-
};
|
|
7
|
+
export declare const brandPresets: Record<string, LdsThemeInput>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lawkit/ui",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.66",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "LDS Design System — React component library with design tokens",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -70,7 +70,7 @@
|
|
|
70
70
|
"dev": "vite build --watch",
|
|
71
71
|
"build": "vite build",
|
|
72
72
|
"lint": "echo \"No lint configured yet\"",
|
|
73
|
-
"check": "tsc --noEmit",
|
|
73
|
+
"check": "tsc --noEmit -p tsconfig.check.json",
|
|
74
74
|
"test": "vitest run --config vitest.config.ts",
|
|
75
75
|
"docs": "node ../../scripts/generate-component-docs.mjs",
|
|
76
76
|
"postinstall": "node scripts/postinstall.js"
|