@lawkit/ui 0.1.6 → 0.1.8

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.
@@ -8,4 +8,21 @@ export declare const iconRegistry: {
8
8
  readonly saveTemporarily: ({ title, ...props }: IconComponentProps) => import("react/jsx-runtime").JSX.Element;
9
9
  readonly secret: ({ title, ...props }: IconComponentProps) => import("react/jsx-runtime").JSX.Element;
10
10
  readonly close: ({ title, ...props }: IconComponentProps) => import("react/jsx-runtime").JSX.Element;
11
+ readonly filePlus: ({ title, ...props }: IconComponentProps) => import("react/jsx-runtime").JSX.Element;
12
+ readonly inProgress: ({ title, ...props }: IconComponentProps) => import("react/jsx-runtime").JSX.Element;
13
+ readonly terminate: ({ title, ...props }: IconComponentProps) => import("react/jsx-runtime").JSX.Element;
14
+ readonly save: ({ title, ...props }: IconComponentProps) => import("react/jsx-runtime").JSX.Element;
15
+ readonly checkCircle: ({ title, ...props }: IconComponentProps) => import("react/jsx-runtime").JSX.Element;
16
+ readonly feather: ({ title, ...props }: IconComponentProps) => import("react/jsx-runtime").JSX.Element;
17
+ readonly userPlus: ({ title, ...props }: IconComponentProps) => import("react/jsx-runtime").JSX.Element;
18
+ readonly userCheck: ({ title, ...props }: IconComponentProps) => import("react/jsx-runtime").JSX.Element;
19
+ readonly users: ({ title, ...props }: IconComponentProps) => import("react/jsx-runtime").JSX.Element;
20
+ readonly fileCheck: ({ title, ...props }: IconComponentProps) => import("react/jsx-runtime").JSX.Element;
21
+ readonly submit: ({ title, ...props }: IconComponentProps) => import("react/jsx-runtime").JSX.Element;
22
+ readonly pay: ({ title, ...props }: IconComponentProps) => import("react/jsx-runtime").JSX.Element;
23
+ readonly seal: ({ title, ...props }: IconComponentProps) => import("react/jsx-runtime").JSX.Element;
24
+ readonly refreshCw: ({ title, ...props }: IconComponentProps) => import("react/jsx-runtime").JSX.Element;
25
+ readonly userX: ({ title, ...props }: IconComponentProps) => import("react/jsx-runtime").JSX.Element;
26
+ readonly moreHorizontal: ({ title, ...props }: IconComponentProps) => import("react/jsx-runtime").JSX.Element;
27
+ readonly autoSign: ({ title, ...props }: IconComponentProps) => import("react/jsx-runtime").JSX.Element;
11
28
  };
@@ -1,4 +1,5 @@
1
1
  import { ReactNode, HTMLAttributes } from 'react';
2
+ import { IconName } from '../Icon/types';
2
3
  export type ProgressColor = "primary" | "success" | "danger" | "warning" | "info";
3
4
  export interface ProgressSegment {
4
5
  value: number;
@@ -25,8 +26,8 @@ export interface StepItem {
25
26
  label: string;
26
27
  /** 단계 상태 */
27
28
  status: StepStatus;
28
- /** 커스텀 아이콘 */
29
- icon?: ReactNode;
29
+ /** 커스텀 아이콘 — 아이콘 이름(string) 또는 ReactNode */
30
+ icon?: Exclude<ReactNode, string> | IconName;
30
31
  }
31
32
  export interface StepBarProps extends HTMLAttributes<HTMLDivElement> {
32
33
  /** 단계 목록 */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lawkit/ui",
3
- "version": "0.1.6",
3
+ "version": "0.1.8",
4
4
  "type": "module",
5
5
  "description": "LDS Design System — React component library with design tokens",
6
6
  "main": "./dist/index.js",