@x-plat/design-system 0.3.3 → 0.3.4

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 (39) hide show
  1. package/dist/{colors-BgzpjYfN.d.cts → colors-B2QFkaH-.d.cts} +12 -34
  2. package/dist/{colors-BgzpjYfN.d.ts → colors-B2QFkaH-.d.ts} +12 -34
  3. package/dist/components/Avatar/index.d.cts +1 -1
  4. package/dist/components/Avatar/index.d.ts +1 -1
  5. package/dist/components/Badge/index.d.cts +1 -1
  6. package/dist/components/Badge/index.d.ts +1 -1
  7. package/dist/components/Button/index.d.cts +1 -1
  8. package/dist/components/Button/index.d.ts +1 -1
  9. package/dist/components/CheckBox/index.d.cts +1 -1
  10. package/dist/components/CheckBox/index.d.ts +1 -1
  11. package/dist/components/Chip/index.d.cts +1 -1
  12. package/dist/components/Chip/index.d.ts +1 -1
  13. package/dist/components/DatePicker/index.d.cts +1 -1
  14. package/dist/components/DatePicker/index.d.ts +1 -1
  15. package/dist/components/Pagination/index.d.cts +1 -1
  16. package/dist/components/Pagination/index.d.ts +1 -1
  17. package/dist/components/Progress/index.d.cts +1 -1
  18. package/dist/components/Progress/index.d.ts +1 -1
  19. package/dist/components/Radio/index.d.cts +1 -1
  20. package/dist/components/Radio/index.d.ts +1 -1
  21. package/dist/components/Spinner/index.d.cts +1 -1
  22. package/dist/components/Spinner/index.d.ts +1 -1
  23. package/dist/components/Steps/index.d.cts +1 -1
  24. package/dist/components/Steps/index.d.ts +1 -1
  25. package/dist/components/Switch/index.d.cts +1 -1
  26. package/dist/components/Switch/index.d.ts +1 -1
  27. package/dist/components/Table/index.d.cts +1 -1
  28. package/dist/components/Table/index.d.ts +1 -1
  29. package/dist/components/Tag/index.d.cts +1 -1
  30. package/dist/components/Tag/index.d.ts +1 -1
  31. package/dist/components/Tooltip/index.d.cts +1 -1
  32. package/dist/components/Tooltip/index.d.ts +1 -1
  33. package/dist/components/index.d.cts +1 -1
  34. package/dist/components/index.d.ts +1 -1
  35. package/dist/index.d.cts +1 -1
  36. package/dist/index.d.ts +1 -1
  37. package/dist/tokens/index.d.cts +1 -1
  38. package/dist/tokens/index.d.ts +1 -1
  39. package/package.json +1 -1
@@ -121,43 +121,21 @@ declare const colors: {
121
121
  };
122
122
  };
123
123
 
124
- /**
125
- * 브랜드 토큰 패키지에서 확장 가능한 인터페이스.
126
- * declare module "@x-plat/design-system" 로 머지하면 됨.
127
- *
128
- * @example
129
- * // @x-plat/tokens-cbio/types.d.ts
130
- * declare module "@x-plat/design-system" {
131
- * interface CustomNamespaces {
132
- * cbio: {
133
- * green: { 500: string; 600: string };
134
- * primitive: { 500: string };
135
- * };
136
- * }
137
- * interface CustomColors {
138
- * textColor: { 500: string };
139
- * }
140
- * }
141
- */
142
- interface CustomColors {
143
- }
144
- interface CustomNamespaces {
145
- }
146
124
  type DefaultColors = typeof colors;
147
- type AllNamespaces = DefaultColors & CustomNamespaces;
148
- type MergedNamespaceColors<N extends keyof AllNamespaces> = N extends keyof DefaultColors ? N extends keyof CustomNamespaces ? DefaultColors[N] & CustomNamespaces[N] & (N extends "xplat" ? CustomColors : {}) : DefaultColors[N] & (N extends "xplat" ? CustomColors : {}) : N extends keyof CustomNamespaces ? CustomNamespaces[N] : {};
149
- type ColorNamespace = keyof AllNamespaces;
150
- type ColorName<C extends ColorNamespace> = keyof MergedNamespaceColors<C>;
151
- type ColorDepth<C extends ColorNamespace, K extends ColorName<C>> = K extends keyof MergedNamespaceColors<C> ? MergedNamespaceColors<C>[K] extends string ? undefined : keyof MergedNamespaceColors<C>[K] : undefined;
152
- type BuildTokenStrings<N extends ColorNamespace> = {
153
- [C in ColorName<N>]: ColorDepth<N, C> extends undefined ? `${N & string}-${C & string}` : `${N & string}-${C & string}-${ColorDepth<N, C> & (string | number)}`;
154
- }[ColorName<N>];
155
- type ColorToken = {
156
- [N in ColorNamespace]: BuildTokenStrings<N>;
157
- }[ColorNamespace];
125
+ type BuildDefaultTokens<N extends keyof DefaultColors> = {
126
+ [C in keyof DefaultColors[N]]: DefaultColors[N][C] extends string ? `${N & string}-${C & string}` : `${N & string}-${C & string}-${keyof DefaultColors[N][C] & (string | number)}`;
127
+ }[keyof DefaultColors[N]];
128
+ type DefaultColorToken = {
129
+ [N in keyof DefaultColors]: BuildDefaultTokens<N>;
130
+ }[keyof DefaultColors];
131
+ /** 브랜드 토큰 확장 포인트. declare module "@x-plat/design-system" 머지. */
132
+ interface ColorTokenRegistry {
133
+ }
134
+ type ExternalColorTokens = ColorTokenRegistry extends Record<string, infer T> ? T extends string ? T : never : never;
135
+ type ColorToken = DefaultColorToken | ExternalColorTokens;
158
136
  interface ColorProps {
159
137
  /** "xplat-blue-500" 형태로 지정 (자동완성 지원) */
160
138
  color?: ColorToken;
161
139
  }
162
140
 
163
- export { type CustomColors as C, type CustomNamespaces as a, type ColorNamespace as b, colors as c, type ColorName as d, type ColorDepth as e, type ColorToken as f, type ColorProps as g };
141
+ export { type ColorTokenRegistry as C, type ColorToken as a, type ColorProps as b, colors as c };
@@ -121,43 +121,21 @@ declare const colors: {
121
121
  };
122
122
  };
123
123
 
124
- /**
125
- * 브랜드 토큰 패키지에서 확장 가능한 인터페이스.
126
- * declare module "@x-plat/design-system" 로 머지하면 됨.
127
- *
128
- * @example
129
- * // @x-plat/tokens-cbio/types.d.ts
130
- * declare module "@x-plat/design-system" {
131
- * interface CustomNamespaces {
132
- * cbio: {
133
- * green: { 500: string; 600: string };
134
- * primitive: { 500: string };
135
- * };
136
- * }
137
- * interface CustomColors {
138
- * textColor: { 500: string };
139
- * }
140
- * }
141
- */
142
- interface CustomColors {
143
- }
144
- interface CustomNamespaces {
145
- }
146
124
  type DefaultColors = typeof colors;
147
- type AllNamespaces = DefaultColors & CustomNamespaces;
148
- type MergedNamespaceColors<N extends keyof AllNamespaces> = N extends keyof DefaultColors ? N extends keyof CustomNamespaces ? DefaultColors[N] & CustomNamespaces[N] & (N extends "xplat" ? CustomColors : {}) : DefaultColors[N] & (N extends "xplat" ? CustomColors : {}) : N extends keyof CustomNamespaces ? CustomNamespaces[N] : {};
149
- type ColorNamespace = keyof AllNamespaces;
150
- type ColorName<C extends ColorNamespace> = keyof MergedNamespaceColors<C>;
151
- type ColorDepth<C extends ColorNamespace, K extends ColorName<C>> = K extends keyof MergedNamespaceColors<C> ? MergedNamespaceColors<C>[K] extends string ? undefined : keyof MergedNamespaceColors<C>[K] : undefined;
152
- type BuildTokenStrings<N extends ColorNamespace> = {
153
- [C in ColorName<N>]: ColorDepth<N, C> extends undefined ? `${N & string}-${C & string}` : `${N & string}-${C & string}-${ColorDepth<N, C> & (string | number)}`;
154
- }[ColorName<N>];
155
- type ColorToken = {
156
- [N in ColorNamespace]: BuildTokenStrings<N>;
157
- }[ColorNamespace];
125
+ type BuildDefaultTokens<N extends keyof DefaultColors> = {
126
+ [C in keyof DefaultColors[N]]: DefaultColors[N][C] extends string ? `${N & string}-${C & string}` : `${N & string}-${C & string}-${keyof DefaultColors[N][C] & (string | number)}`;
127
+ }[keyof DefaultColors[N]];
128
+ type DefaultColorToken = {
129
+ [N in keyof DefaultColors]: BuildDefaultTokens<N>;
130
+ }[keyof DefaultColors];
131
+ /** 브랜드 토큰 확장 포인트. declare module "@x-plat/design-system" 머지. */
132
+ interface ColorTokenRegistry {
133
+ }
134
+ type ExternalColorTokens = ColorTokenRegistry extends Record<string, infer T> ? T extends string ? T : never : never;
135
+ type ColorToken = DefaultColorToken | ExternalColorTokens;
158
136
  interface ColorProps {
159
137
  /** "xplat-blue-500" 형태로 지정 (자동완성 지원) */
160
138
  color?: ColorToken;
161
139
  }
162
140
 
163
- export { type CustomColors as C, type CustomNamespaces as a, type ColorNamespace as b, colors as c, type ColorName as d, type ColorDepth as e, type ColorToken as f, type ColorProps as g };
141
+ export { type ColorTokenRegistry as C, type ColorToken as a, type ColorProps as b, colors as c };
@@ -1,5 +1,5 @@
1
1
  import * as react_jsx_runtime from 'react/jsx-runtime';
2
- import { g as ColorProps } from '../../colors-BgzpjYfN.cjs';
2
+ import { b as ColorProps } from '../../colors-B2QFkaH-.cjs';
3
3
 
4
4
  type AvatarSize = "sm" | "md" | "lg";
5
5
  interface AvatarProps extends ColorProps {
@@ -1,5 +1,5 @@
1
1
  import * as react_jsx_runtime from 'react/jsx-runtime';
2
- import { g as ColorProps } from '../../colors-BgzpjYfN.js';
2
+ import { b as ColorProps } from '../../colors-B2QFkaH-.js';
3
3
 
4
4
  type AvatarSize = "sm" | "md" | "lg";
5
5
  interface AvatarProps extends ColorProps {
@@ -1,6 +1,6 @@
1
1
  import * as react_jsx_runtime from 'react/jsx-runtime';
2
2
  import React from 'react';
3
- import { g as ColorProps } from '../../colors-BgzpjYfN.cjs';
3
+ import { b as ColorProps } from '../../colors-B2QFkaH-.cjs';
4
4
 
5
5
  type BadgeSize = "sm" | "md" | "lg";
6
6
  interface BadgeProps extends ColorProps {
@@ -1,6 +1,6 @@
1
1
  import * as react_jsx_runtime from 'react/jsx-runtime';
2
2
  import React from 'react';
3
- import { g as ColorProps } from '../../colors-BgzpjYfN.js';
3
+ import { b as ColorProps } from '../../colors-B2QFkaH-.js';
4
4
 
5
5
  type BadgeSize = "sm" | "md" | "lg";
6
6
  interface BadgeProps extends ColorProps {
@@ -1,7 +1,7 @@
1
1
  import * as react_jsx_runtime from 'react/jsx-runtime';
2
2
  import React from 'react';
3
3
  import { B as ButtonAttributes } from '../../attributes-DJIWir_0.cjs';
4
- import { g as ColorProps } from '../../colors-BgzpjYfN.cjs';
4
+ import { b as ColorProps } from '../../colors-B2QFkaH-.cjs';
5
5
 
6
6
  type ButtonType = "primary" | "secondary";
7
7
  type ButtonSize = "sm" | "md" | "lg";
@@ -1,7 +1,7 @@
1
1
  import * as react_jsx_runtime from 'react/jsx-runtime';
2
2
  import React from 'react';
3
3
  import { B as ButtonAttributes } from '../../attributes-DJIWir_0.js';
4
- import { g as ColorProps } from '../../colors-BgzpjYfN.js';
4
+ import { b as ColorProps } from '../../colors-B2QFkaH-.js';
5
5
 
6
6
  type ButtonType = "primary" | "secondary";
7
7
  type ButtonSize = "sm" | "md" | "lg";
@@ -1,6 +1,6 @@
1
1
  import * as react_jsx_runtime from 'react/jsx-runtime';
2
2
  import { I as InputAttributes } from '../../attributes-DJIWir_0.cjs';
3
- import { g as ColorProps } from '../../colors-BgzpjYfN.cjs';
3
+ import { b as ColorProps } from '../../colors-B2QFkaH-.cjs';
4
4
  import 'react';
5
5
 
6
6
  type CheckBoxSize = "sm" | "md" | "lg";
@@ -1,6 +1,6 @@
1
1
  import * as react_jsx_runtime from 'react/jsx-runtime';
2
2
  import { I as InputAttributes } from '../../attributes-DJIWir_0.js';
3
- import { g as ColorProps } from '../../colors-BgzpjYfN.js';
3
+ import { b as ColorProps } from '../../colors-B2QFkaH-.js';
4
4
  import 'react';
5
5
 
6
6
  type CheckBoxSize = "sm" | "md" | "lg";
@@ -1,6 +1,6 @@
1
1
  import * as react_jsx_runtime from 'react/jsx-runtime';
2
2
  import React from 'react';
3
- import { g as ColorProps } from '../../colors-BgzpjYfN.cjs';
3
+ import { b as ColorProps } from '../../colors-B2QFkaH-.cjs';
4
4
 
5
5
  type ChipType = "primary" | "secondary";
6
6
  type ChipSize = "sm" | "md" | "lg";
@@ -1,6 +1,6 @@
1
1
  import * as react_jsx_runtime from 'react/jsx-runtime';
2
2
  import React from 'react';
3
- import { g as ColorProps } from '../../colors-BgzpjYfN.js';
3
+ import { b as ColorProps } from '../../colors-B2QFkaH-.js';
4
4
 
5
5
  type ChipType = "primary" | "secondary";
6
6
  type ChipSize = "sm" | "md" | "lg";
@@ -1,6 +1,6 @@
1
1
  import React from 'react';
2
2
  import * as react_jsx_runtime from 'react/jsx-runtime';
3
- import { g as ColorProps } from '../../colors-BgzpjYfN.cjs';
3
+ import { b as ColorProps } from '../../colors-B2QFkaH-.cjs';
4
4
 
5
5
  interface InputDatePickerProps {
6
6
  value: Date;
@@ -1,6 +1,6 @@
1
1
  import React from 'react';
2
2
  import * as react_jsx_runtime from 'react/jsx-runtime';
3
- import { g as ColorProps } from '../../colors-BgzpjYfN.js';
3
+ import { b as ColorProps } from '../../colors-B2QFkaH-.js';
4
4
 
5
5
  interface InputDatePickerProps {
6
6
  value: Date;
@@ -1,5 +1,5 @@
1
1
  import * as react_jsx_runtime from 'react/jsx-runtime';
2
- import { g as ColorProps } from '../../colors-BgzpjYfN.cjs';
2
+ import { b as ColorProps } from '../../colors-B2QFkaH-.cjs';
3
3
 
4
4
  type PaginationSize = "sm" | "md" | "lg";
5
5
  interface PaginationProps extends ColorProps {
@@ -1,5 +1,5 @@
1
1
  import * as react_jsx_runtime from 'react/jsx-runtime';
2
- import { g as ColorProps } from '../../colors-BgzpjYfN.js';
2
+ import { b as ColorProps } from '../../colors-B2QFkaH-.js';
3
3
 
4
4
  type PaginationSize = "sm" | "md" | "lg";
5
5
  interface PaginationProps extends ColorProps {
@@ -1,5 +1,5 @@
1
1
  import * as react_jsx_runtime from 'react/jsx-runtime';
2
- import { g as ColorProps } from '../../colors-BgzpjYfN.cjs';
2
+ import { b as ColorProps } from '../../colors-B2QFkaH-.cjs';
3
3
 
4
4
  type ProgressSize = "sm" | "md" | "lg";
5
5
  interface ProgressProps extends ColorProps {
@@ -1,5 +1,5 @@
1
1
  import * as react_jsx_runtime from 'react/jsx-runtime';
2
- import { g as ColorProps } from '../../colors-BgzpjYfN.js';
2
+ import { b as ColorProps } from '../../colors-B2QFkaH-.js';
3
3
 
4
4
  type ProgressSize = "sm" | "md" | "lg";
5
5
  interface ProgressProps extends ColorProps {
@@ -1,6 +1,6 @@
1
1
  import * as react_jsx_runtime from 'react/jsx-runtime';
2
2
  import { I as InputAttributes } from '../../attributes-DJIWir_0.cjs';
3
- import { g as ColorProps } from '../../colors-BgzpjYfN.cjs';
3
+ import { b as ColorProps } from '../../colors-B2QFkaH-.cjs';
4
4
  import React from 'react';
5
5
 
6
6
  type RadioSize = "sm" | "md" | "lg";
@@ -1,6 +1,6 @@
1
1
  import * as react_jsx_runtime from 'react/jsx-runtime';
2
2
  import { I as InputAttributes } from '../../attributes-DJIWir_0.js';
3
- import { g as ColorProps } from '../../colors-BgzpjYfN.js';
3
+ import { b as ColorProps } from '../../colors-B2QFkaH-.js';
4
4
  import React from 'react';
5
5
 
6
6
  type RadioSize = "sm" | "md" | "lg";
@@ -1,5 +1,5 @@
1
1
  import * as react_jsx_runtime from 'react/jsx-runtime';
2
- import { g as ColorProps } from '../../colors-BgzpjYfN.cjs';
2
+ import { b as ColorProps } from '../../colors-B2QFkaH-.cjs';
3
3
 
4
4
  type SpinnerSize = "sm" | "md" | "lg";
5
5
  interface SpinnerProps extends ColorProps {
@@ -1,5 +1,5 @@
1
1
  import * as react_jsx_runtime from 'react/jsx-runtime';
2
- import { g as ColorProps } from '../../colors-BgzpjYfN.js';
2
+ import { b as ColorProps } from '../../colors-B2QFkaH-.js';
3
3
 
4
4
  type SpinnerSize = "sm" | "md" | "lg";
5
5
  interface SpinnerProps extends ColorProps {
@@ -1,5 +1,5 @@
1
1
  import * as react_jsx_runtime from 'react/jsx-runtime';
2
- import { g as ColorProps } from '../../colors-BgzpjYfN.cjs';
2
+ import { b as ColorProps } from '../../colors-B2QFkaH-.cjs';
3
3
 
4
4
  interface StepItem {
5
5
  title: string;
@@ -1,5 +1,5 @@
1
1
  import * as react_jsx_runtime from 'react/jsx-runtime';
2
- import { g as ColorProps } from '../../colors-BgzpjYfN.js';
2
+ import { b as ColorProps } from '../../colors-B2QFkaH-.js';
3
3
 
4
4
  interface StepItem {
5
5
  title: string;
@@ -1,5 +1,5 @@
1
1
  import * as react_jsx_runtime from 'react/jsx-runtime';
2
- import { g as ColorProps } from '../../colors-BgzpjYfN.cjs';
2
+ import { b as ColorProps } from '../../colors-B2QFkaH-.cjs';
3
3
 
4
4
  type SwitchSize = "sm" | "md" | "lg";
5
5
  interface SwitchProps extends ColorProps {
@@ -1,5 +1,5 @@
1
1
  import * as react_jsx_runtime from 'react/jsx-runtime';
2
- import { g as ColorProps } from '../../colors-BgzpjYfN.js';
2
+ import { b as ColorProps } from '../../colors-B2QFkaH-.js';
3
3
 
4
4
  type SwitchSize = "sm" | "md" | "lg";
5
5
  interface SwitchProps extends ColorProps {
@@ -1,6 +1,6 @@
1
1
  import * as react_jsx_runtime from 'react/jsx-runtime';
2
2
  import React from 'react';
3
- import { g as ColorProps } from '../../colors-BgzpjYfN.cjs';
3
+ import { b as ColorProps } from '../../colors-B2QFkaH-.cjs';
4
4
 
5
5
  interface TableProps {
6
6
  className?: string;
@@ -1,6 +1,6 @@
1
1
  import * as react_jsx_runtime from 'react/jsx-runtime';
2
2
  import React from 'react';
3
- import { g as ColorProps } from '../../colors-BgzpjYfN.js';
3
+ import { b as ColorProps } from '../../colors-B2QFkaH-.js';
4
4
 
5
5
  interface TableProps {
6
6
  className?: string;
@@ -1,6 +1,6 @@
1
1
  import * as react_jsx_runtime from 'react/jsx-runtime';
2
2
  import React from 'react';
3
- import { g as ColorProps } from '../../colors-BgzpjYfN.cjs';
3
+ import { b as ColorProps } from '../../colors-B2QFkaH-.cjs';
4
4
 
5
5
  type TagSize = "sm" | "md" | "lg";
6
6
  interface TagProps extends ColorProps {
@@ -1,6 +1,6 @@
1
1
  import * as react_jsx_runtime from 'react/jsx-runtime';
2
2
  import React from 'react';
3
- import { g as ColorProps } from '../../colors-BgzpjYfN.js';
3
+ import { b as ColorProps } from '../../colors-B2QFkaH-.js';
4
4
 
5
5
  type TagSize = "sm" | "md" | "lg";
6
6
  interface TagProps extends ColorProps {
@@ -1,6 +1,6 @@
1
1
  import * as react_jsx_runtime from 'react/jsx-runtime';
2
2
  import React from 'react';
3
- import { g as ColorProps } from '../../colors-BgzpjYfN.cjs';
3
+ import { b as ColorProps } from '../../colors-B2QFkaH-.cjs';
4
4
 
5
5
  interface TooltipProps extends ColorProps {
6
6
  type?: "primary" | "secondary";
@@ -1,6 +1,6 @@
1
1
  import * as react_jsx_runtime from 'react/jsx-runtime';
2
2
  import React from 'react';
3
- import { g as ColorProps } from '../../colors-BgzpjYfN.js';
3
+ import { b as ColorProps } from '../../colors-B2QFkaH-.js';
4
4
 
5
5
  interface TooltipProps extends ColorProps {
6
6
  type?: "primary" | "secondary";
@@ -38,5 +38,5 @@ export { Tooltip } from './Tooltip/index.cjs';
38
38
  export { Video, VideoProps } from './Video/index.cjs';
39
39
  import 'react';
40
40
  import 'react/jsx-runtime';
41
- import '../colors-BgzpjYfN.cjs';
41
+ import '../colors-B2QFkaH-.cjs';
42
42
  import '../attributes-DJIWir_0.cjs';
@@ -38,5 +38,5 @@ export { Tooltip } from './Tooltip/index.js';
38
38
  export { Video, VideoProps } from './Video/index.js';
39
39
  import 'react';
40
40
  import 'react/jsx-runtime';
41
- import '../colors-BgzpjYfN.js';
41
+ import '../colors-B2QFkaH-.js';
42
42
  import '../attributes-DJIWir_0.js';
package/dist/index.d.cts CHANGED
@@ -43,7 +43,7 @@ export { B as BREAKPOINT_KEYS_ORDERED, a as BreakpointKey, b as GridColumnConfig
43
43
  export { Header } from './layout/Header/index.cjs';
44
44
  export { Layout } from './layout/Layout/index.cjs';
45
45
  export { SideBar, SideBarContext, useSideBarContext } from './layout/SideBar/index.cjs';
46
- export { e as ColorDepth, d as ColorName, b as ColorNamespace, g as ColorProps, f as ColorToken, C as CustomColors, a as CustomNamespaces, c as colors } from './colors-BgzpjYfN.cjs';
46
+ export { b as ColorProps, a as ColorToken, C as ColorTokenRegistry, c as colors } from './colors-B2QFkaH-.cjs';
47
47
  export { ActivityIcon, AirplayIcon, AlertCircleIcon, AlertOctagonIcon, AlertTriangleIcon, AlignCenterIcon, AlignJustifyIcon, AlignLeftIcon, AlignRightIcon, AnchorIcon, ApertureIcon, ArchiveIcon, ArrowDownCircleIcon, ArrowDownIcon, ArrowDownLeftIcon, ArrowDownRightIcon, ArrowLeftCircleIcon, ArrowLeftIcon, ArrowRightCircleIcon, ArrowRightIcon, ArrowUpCircleIcon, ArrowUpIcon, ArrowUpLeftIcon, ArrowUpRightIcon, AtSignIcon, AwardIcon, BarChart2Icon, BarChartIcon, BatteryChargingIcon, BatteryIcon, BellIcon, BellOffIcon, BluetoothIcon, BoldIcon, BookIcon, BookOpenIcon, BookmarkIcon, BoxIcon, BriefcaseIcon, CalendarIcon, CalenderIcon, CallActiveIcon, CallForwardedIcon, DefaultCall as CallIcon, CallIncomingIcon, CallMissedIcon, CallOffIcon, CallOutgoingIcon, CameraIcon, CameraOffIcon, CastIcon, CheckCircleIcon, CheckIcon, CheckSquareIcon, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, ChevronsDownIcon, ChevronsLeftIcon, ChevronsRightIcon, ChevronsUpIcon, ChromeIcon, CircleIcon, ClipboardIcon, ClockIcon, CloseEyeIcon, CloudDrizzleIcon, CloudIcon, CloudLightningIcon, CloudOffIcon, CloudRainIcon, CloudSnowIcon, CodeIcon, CodepenIcon, CodesandboxIcon, CoffeeIcon, ColumnsIcon, CommandIcon, CompassIcon, CopyIcon, CornerDownLeftIcon, CornerDownRightIcon, CornerLeftDownIcon, CornerLeftUpIcon, CornerRightDownIcon, CornerRightUpIcon, CornerUpLeftIcon, CornerUpRightIcon, CpuIcon, CreditCardIcon, CropIcon, CrosshairIcon, DatabaseIcon, DefaultCall, DeleteIcon, DiscIcon, DivideCircleIcon, DivideIcon, DivideSquareIcon, DollarSignIcon, DownloadCloudIcon, DownloadIcon, DribbbleIcon, DropletIcon, Edit2Icon, Edit3Icon, EditIcon, ErrorIcon, ExternalLinkIcon, EyeIcon, EyeOffIcon, FacebookIcon, FastForwardIcon, FeatherIcon, FigmaIcon, FileIcon, FileMinusIcon, FilePlusIcon, FileTextIcon, FilmIcon, FilterIcon, FlagIcon, FolderIcon, FolderMinusIcon, FolderPlusIcon, FramerIcon, FrownIcon, GierIcon, GiftIcon, GitBranchIcon, GitCommitIcon, GitMergeIcon, GitPullRequestIcon, GithubIcon, GitlabIcon, GlobeIcon, GridIcon, HardDriveIcon, HashIcon, HeadphonesIcon, HeartIcon, HelpCircleIcon, HexagonIcon, HomeIcon, ImageIcon, InboxIcon, InfoIcon, InstagramIcon, ItalicIcon, KeyIcon, LayersIcon, LayoutIcon, LifeBuoyIcon, Link2Icon, LinkIcon, LinkedinIcon, ListIcon, LoaderIcon, LockIcon, LogInIcon, LogOutIcon, MailIcon, MapIcon, MapPinIcon, Maximize2Icon, MaximizeIcon, MehIcon, MenuIcon, MessageCircleIcon, MessageSquareIcon, MicIcon, MicOffIcon, Minimize2Icon, MinimizeIcon, MinusCircleIcon, MinusIcon, MinusSquareIcon, MonitorIcon, MoonIcon, MoreHorizontalIcon, MoreVerticalIcon, MousePointerIcon, MoveIcon, MusicIcon, Navigation2Icon, NavigationIcon, OctagonIcon, OpenEyeIcon, PackageIcon, PaperclipIcon, PauseCircleIcon, PauseIcon, PenToolIcon, PercentIcon, PieChartIcon, PlayCircleIcon, PlayIcon, PlusCircleIcon, PlusIcon, PlusSquareIcon, PocketIcon, PowerIcon, PrinterIcon, ProfileIcon, RadioIcon, RefreshCcwIcon, RefreshCwIcon, RepeatIcon, RewindIcon, RotateCcwIcon, RotateCwIcon, RssIcon, SaveIcon, ScissorsIcon, SearchIcon, SendIcon, ServerIcon, SettingsIcon, Share2Icon, ShareIcon, ShieldIcon, ShieldOffIcon, ShoppingBagIcon, ShoppingCartIcon, ShuffleIcon, SidebarIcon, SkipBackIcon, SkipForwardIcon, SlackIcon, SlashIcon, SlidersIcon, SmartphoneIcon, SmileIcon, SpeakerIcon, SquareIcon, StarIcon, StopCircleIcon, SuccessIcon, SunIcon, SunriseIcon, SunsetIcon, TableIcon, TabletIcon, TagIcon, TargetIcon, TerminalIcon, ThermometerIcon, ThumbsDownIcon, ThumbsUpIcon, ToggleLeftIcon, ToggleRightIcon, ToolIcon, Trash2Icon, TrashIcon, TrelloIcon, TrendingDownIcon, TrendingUpIcon, TriangleIcon, TruckIcon, TvIcon, TwitchIcon, TwitterIcon, TypeIcon, UmbrellaIcon, UnderlineIcon, UnlockIcon, UploadCloudIcon, UploadIcon, UserCheckIcon, UserIcon, UserMinusIcon, UserPlusIcon, UserXIcon, UsersIcon, VideoIcon, VideoOffIcon, VoicemailIcon, Volume1Icon, Volume2Icon, VolumeIcon, VolumeXIcon, WatchIcon, WifiIcon, WifiOffIcon, WindIcon, XCircleIcon, XIcon, XOctagonIcon, XSquareIcon, YoutubeIcon, ZapIcon, ZapOffIcon, ZoomInIcon, ZoomOutIcon } from './tokens/index.cjs';
48
48
  import 'react';
49
49
  import 'react/jsx-runtime';
package/dist/index.d.ts CHANGED
@@ -43,7 +43,7 @@ export { B as BREAKPOINT_KEYS_ORDERED, a as BreakpointKey, b as GridColumnConfig
43
43
  export { Header } from './layout/Header/index.js';
44
44
  export { Layout } from './layout/Layout/index.js';
45
45
  export { SideBar, SideBarContext, useSideBarContext } from './layout/SideBar/index.js';
46
- export { e as ColorDepth, d as ColorName, b as ColorNamespace, g as ColorProps, f as ColorToken, C as CustomColors, a as CustomNamespaces, c as colors } from './colors-BgzpjYfN.js';
46
+ export { b as ColorProps, a as ColorToken, C as ColorTokenRegistry, c as colors } from './colors-B2QFkaH-.js';
47
47
  export { ActivityIcon, AirplayIcon, AlertCircleIcon, AlertOctagonIcon, AlertTriangleIcon, AlignCenterIcon, AlignJustifyIcon, AlignLeftIcon, AlignRightIcon, AnchorIcon, ApertureIcon, ArchiveIcon, ArrowDownCircleIcon, ArrowDownIcon, ArrowDownLeftIcon, ArrowDownRightIcon, ArrowLeftCircleIcon, ArrowLeftIcon, ArrowRightCircleIcon, ArrowRightIcon, ArrowUpCircleIcon, ArrowUpIcon, ArrowUpLeftIcon, ArrowUpRightIcon, AtSignIcon, AwardIcon, BarChart2Icon, BarChartIcon, BatteryChargingIcon, BatteryIcon, BellIcon, BellOffIcon, BluetoothIcon, BoldIcon, BookIcon, BookOpenIcon, BookmarkIcon, BoxIcon, BriefcaseIcon, CalendarIcon, CalenderIcon, CallActiveIcon, CallForwardedIcon, DefaultCall as CallIcon, CallIncomingIcon, CallMissedIcon, CallOffIcon, CallOutgoingIcon, CameraIcon, CameraOffIcon, CastIcon, CheckCircleIcon, CheckIcon, CheckSquareIcon, ChevronDownIcon, ChevronLeftIcon, ChevronRightIcon, ChevronUpIcon, ChevronsDownIcon, ChevronsLeftIcon, ChevronsRightIcon, ChevronsUpIcon, ChromeIcon, CircleIcon, ClipboardIcon, ClockIcon, CloseEyeIcon, CloudDrizzleIcon, CloudIcon, CloudLightningIcon, CloudOffIcon, CloudRainIcon, CloudSnowIcon, CodeIcon, CodepenIcon, CodesandboxIcon, CoffeeIcon, ColumnsIcon, CommandIcon, CompassIcon, CopyIcon, CornerDownLeftIcon, CornerDownRightIcon, CornerLeftDownIcon, CornerLeftUpIcon, CornerRightDownIcon, CornerRightUpIcon, CornerUpLeftIcon, CornerUpRightIcon, CpuIcon, CreditCardIcon, CropIcon, CrosshairIcon, DatabaseIcon, DefaultCall, DeleteIcon, DiscIcon, DivideCircleIcon, DivideIcon, DivideSquareIcon, DollarSignIcon, DownloadCloudIcon, DownloadIcon, DribbbleIcon, DropletIcon, Edit2Icon, Edit3Icon, EditIcon, ErrorIcon, ExternalLinkIcon, EyeIcon, EyeOffIcon, FacebookIcon, FastForwardIcon, FeatherIcon, FigmaIcon, FileIcon, FileMinusIcon, FilePlusIcon, FileTextIcon, FilmIcon, FilterIcon, FlagIcon, FolderIcon, FolderMinusIcon, FolderPlusIcon, FramerIcon, FrownIcon, GierIcon, GiftIcon, GitBranchIcon, GitCommitIcon, GitMergeIcon, GitPullRequestIcon, GithubIcon, GitlabIcon, GlobeIcon, GridIcon, HardDriveIcon, HashIcon, HeadphonesIcon, HeartIcon, HelpCircleIcon, HexagonIcon, HomeIcon, ImageIcon, InboxIcon, InfoIcon, InstagramIcon, ItalicIcon, KeyIcon, LayersIcon, LayoutIcon, LifeBuoyIcon, Link2Icon, LinkIcon, LinkedinIcon, ListIcon, LoaderIcon, LockIcon, LogInIcon, LogOutIcon, MailIcon, MapIcon, MapPinIcon, Maximize2Icon, MaximizeIcon, MehIcon, MenuIcon, MessageCircleIcon, MessageSquareIcon, MicIcon, MicOffIcon, Minimize2Icon, MinimizeIcon, MinusCircleIcon, MinusIcon, MinusSquareIcon, MonitorIcon, MoonIcon, MoreHorizontalIcon, MoreVerticalIcon, MousePointerIcon, MoveIcon, MusicIcon, Navigation2Icon, NavigationIcon, OctagonIcon, OpenEyeIcon, PackageIcon, PaperclipIcon, PauseCircleIcon, PauseIcon, PenToolIcon, PercentIcon, PieChartIcon, PlayCircleIcon, PlayIcon, PlusCircleIcon, PlusIcon, PlusSquareIcon, PocketIcon, PowerIcon, PrinterIcon, ProfileIcon, RadioIcon, RefreshCcwIcon, RefreshCwIcon, RepeatIcon, RewindIcon, RotateCcwIcon, RotateCwIcon, RssIcon, SaveIcon, ScissorsIcon, SearchIcon, SendIcon, ServerIcon, SettingsIcon, Share2Icon, ShareIcon, ShieldIcon, ShieldOffIcon, ShoppingBagIcon, ShoppingCartIcon, ShuffleIcon, SidebarIcon, SkipBackIcon, SkipForwardIcon, SlackIcon, SlashIcon, SlidersIcon, SmartphoneIcon, SmileIcon, SpeakerIcon, SquareIcon, StarIcon, StopCircleIcon, SuccessIcon, SunIcon, SunriseIcon, SunsetIcon, TableIcon, TabletIcon, TagIcon, TargetIcon, TerminalIcon, ThermometerIcon, ThumbsDownIcon, ThumbsUpIcon, ToggleLeftIcon, ToggleRightIcon, ToolIcon, Trash2Icon, TrashIcon, TrelloIcon, TrendingDownIcon, TrendingUpIcon, TriangleIcon, TruckIcon, TvIcon, TwitchIcon, TwitterIcon, TypeIcon, UmbrellaIcon, UnderlineIcon, UnlockIcon, UploadCloudIcon, UploadIcon, UserCheckIcon, UserIcon, UserMinusIcon, UserPlusIcon, UserXIcon, UsersIcon, VideoIcon, VideoOffIcon, VoicemailIcon, Volume1Icon, Volume2Icon, VolumeIcon, VolumeXIcon, WatchIcon, WifiIcon, WifiOffIcon, WindIcon, XCircleIcon, XIcon, XOctagonIcon, XSquareIcon, YoutubeIcon, ZapIcon, ZapOffIcon, ZoomInIcon, ZoomOutIcon } from './tokens/index.js';
48
48
  import 'react';
49
49
  import 'react/jsx-runtime';
@@ -1,5 +1,5 @@
1
1
  export { B as BREAKPOINT_KEYS_ORDERED, a as BreakpointKey, b as GridColumnConfig, G as GridSpanFor, c as breakpoints, g as gridColumns } from '../breakpoints-DsXkJgdl.cjs';
2
- export { e as ColorDepth, d as ColorName, b as ColorNamespace, g as ColorProps, f as ColorToken, C as CustomColors, a as CustomNamespaces, c as colors } from '../colors-BgzpjYfN.cjs';
2
+ export { b as ColorProps, a as ColorToken, C as ColorTokenRegistry, c as colors } from '../colors-B2QFkaH-.cjs';
3
3
  import React from 'react';
4
4
 
5
5
  declare const CopyIcon: React.FC;
@@ -1,5 +1,5 @@
1
1
  export { B as BREAKPOINT_KEYS_ORDERED, a as BreakpointKey, b as GridColumnConfig, G as GridSpanFor, c as breakpoints, g as gridColumns } from '../breakpoints-DsXkJgdl.js';
2
- export { e as ColorDepth, d as ColorName, b as ColorNamespace, g as ColorProps, f as ColorToken, C as CustomColors, a as CustomNamespaces, c as colors } from '../colors-BgzpjYfN.js';
2
+ export { b as ColorProps, a as ColorToken, C as ColorTokenRegistry, c as colors } from '../colors-B2QFkaH-.js';
3
3
  import React from 'react';
4
4
 
5
5
  declare const CopyIcon: React.FC;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@x-plat/design-system",
3
- "version": "0.3.3",
3
+ "version": "0.3.4",
4
4
  "description": "XPLAT UI Design System",
5
5
  "author": "XPLAT WOONG",
6
6
  "main": "dist/index.cjs",