@loword/loword-design-system 0.1.0 → 0.1.1

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.
Files changed (2) hide show
  1. package/dist/index.css +21 -0
  2. package/package.json +3 -2
package/dist/index.css CHANGED
@@ -1247,6 +1247,9 @@
1247
1247
  .ml-1 {
1248
1248
  margin-left: calc(var(--spacing) * 1);
1249
1249
  }
1250
+ .ml-2 {
1251
+ margin-left: calc(var(--spacing) * 2);
1252
+ }
1250
1253
  .ml-auto {
1251
1254
  margin-left: auto;
1252
1255
  }
@@ -1941,6 +1944,9 @@
1941
1944
  .grid-cols-\[64px_repeat\(3\,180px\)\] {
1942
1945
  grid-template-columns: 64px repeat(3,180px);
1943
1946
  }
1947
+ .grid-cols-\[auto_1fr\] {
1948
+ grid-template-columns: auto 1fr;
1949
+ }
1944
1950
  .grid-rows-\[0fr\] {
1945
1951
  grid-template-rows: 0fr;
1946
1952
  }
@@ -2058,6 +2064,9 @@
2058
2064
  .gap-x-4 {
2059
2065
  column-gap: calc(var(--spacing) * 4);
2060
2066
  }
2067
+ .gap-y-1 {
2068
+ row-gap: calc(var(--spacing) * 1);
2069
+ }
2061
2070
  .divide-x {
2062
2071
  :where(& > :not(:last-child)) {
2063
2072
  --tw-divide-x-reverse: 0;
@@ -2883,6 +2892,9 @@
2883
2892
  .text-nowrap {
2884
2893
  text-wrap: nowrap;
2885
2894
  }
2895
+ .break-all {
2896
+ word-break: break-all;
2897
+ }
2886
2898
  .whitespace-nowrap {
2887
2899
  white-space: nowrap;
2888
2900
  }
@@ -2937,12 +2949,18 @@
2937
2949
  .text-mono500 {
2938
2950
  color: var(--color-mono500);
2939
2951
  }
2952
+ .text-mono600 {
2953
+ color: var(--color-mono600);
2954
+ }
2940
2955
  .text-mono700 {
2941
2956
  color: var(--color-mono700);
2942
2957
  }
2943
2958
  .text-mono800 {
2944
2959
  color: var(--color-mono800);
2945
2960
  }
2961
+ .text-mono900 {
2962
+ color: var(--color-mono900);
2963
+ }
2946
2964
  .text-neutral100 {
2947
2965
  color: var(--color-neutral100);
2948
2966
  }
@@ -2979,6 +2997,9 @@
2979
2997
  .text-red500 {
2980
2998
  color: var(--color-red500);
2981
2999
  }
3000
+ .text-success600 {
3001
+ color: var(--color-success600);
3002
+ }
2982
3003
  .text-transparent {
2983
3004
  color: transparent;
2984
3005
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@loword/loword-design-system",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "로워드 디자인 시스템 컴포넌트 패키지(Tailwind v4)",
5
5
  "keywords": [
6
6
  "react",
@@ -281,6 +281,7 @@
281
281
  "storybook": "storybook dev -p 6006",
282
282
  "storybook:stop": "lsof -ti tcp:6006 -sTCP:LISTEN | xargs -r kill",
283
283
  "build-storybook": "storybook build",
284
- "generate-story": "npx tsx scripts/generate-story.ts"
284
+ "generate-story": "npx tsx scripts/generate-story.ts",
285
+ "switch": "sh scripts/switch.sh"
285
286
  }
286
287
  }