@lawkit/ui 0.1.67 → 0.1.70

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 (28) hide show
  1. package/CLAUDE.md +213 -0
  2. package/dist/index.css +1 -1
  3. package/dist/index.js +1634 -1400
  4. package/dist/ui-v3/src/components/ApprovalLine/ApprovalLine.css.d.ts +72 -0
  5. package/dist/ui-v3/src/components/ApprovalLine/index.d.ts +21 -0
  6. package/dist/ui-v3/src/components/Box/Box.css.d.ts +21 -0
  7. package/dist/ui-v3/src/components/Box/index.d.ts +21 -0
  8. package/dist/ui-v3/src/components/Callout/Callout.css.d.ts +38 -0
  9. package/dist/ui-v3/src/components/Callout/index.d.ts +15 -0
  10. package/dist/ui-v3/src/components/Container/Container.css.d.ts +16 -0
  11. package/dist/ui-v3/src/components/Container/index.d.ts +8 -0
  12. package/dist/ui-v3/src/components/DdayBadge/DdayBadge.css.d.ts +26 -0
  13. package/dist/ui-v3/src/components/DdayBadge/index.d.ts +9 -0
  14. package/dist/ui-v3/src/components/Divider/Divider.css.d.ts +12 -0
  15. package/dist/ui-v3/src/components/Divider/index.d.ts +7 -0
  16. package/dist/ui-v3/src/components/EmptyState/EmptyState.css.d.ts +5 -0
  17. package/dist/ui-v3/src/components/EmptyState/index.d.ts +12 -0
  18. package/dist/ui-v3/src/components/Grid/Grid.css.d.ts +1 -0
  19. package/dist/ui-v3/src/components/Grid/index.d.ts +15 -0
  20. package/dist/ui-v3/src/components/PageLayout/PageLayout.css.d.ts +5 -0
  21. package/dist/ui-v3/src/components/PageLayout/index.d.ts +33 -0
  22. package/dist/ui-v3/src/components/Spacer/Spacer.css.d.ts +1 -0
  23. package/dist/ui-v3/src/components/Spacer/index.d.ts +4 -0
  24. package/dist/ui-v3/src/components/Timeline/Timeline.css.d.ts +49 -0
  25. package/dist/ui-v3/src/components/Timeline/index.d.ts +17 -0
  26. package/dist/ui-v3/src/index.d.ts +22 -0
  27. package/dist/ui-v3/src/styles/sprinkles.css.d.ts +13 -13
  28. package/package.json +1 -1
@@ -0,0 +1,72 @@
1
+ export declare const root: import('@vanilla-extract/recipes').RuntimeFn<{
2
+ direction: {
3
+ horizontal: {
4
+ alignItems: "stretch";
5
+ overflowX: "auto";
6
+ paddingBottom: `var(--${string})`;
7
+ };
8
+ vertical: {
9
+ flexDirection: "column";
10
+ };
11
+ };
12
+ }>;
13
+ export declare const item: import('@vanilla-extract/recipes').RuntimeFn<{
14
+ direction: {
15
+ horizontal: {};
16
+ vertical: {
17
+ minWidth: number;
18
+ width: "100%";
19
+ };
20
+ };
21
+ status: {
22
+ pending: {
23
+ borderColor: `var(--${string})`;
24
+ };
25
+ current: {
26
+ borderColor: `var(--${string})`;
27
+ boxShadow: `var(--${string})`;
28
+ };
29
+ approved: {
30
+ borderColor: string;
31
+ };
32
+ rejected: {
33
+ borderColor: `var(--${string})`;
34
+ };
35
+ };
36
+ }>;
37
+ export declare const connector: import('@vanilla-extract/recipes').RuntimeFn<{
38
+ direction: {
39
+ horizontal: {
40
+ top: "50%";
41
+ left: "100%";
42
+ width: `var(--${string})`;
43
+ height: "1px";
44
+ transform: "translateY(-50%)";
45
+ };
46
+ vertical: {
47
+ top: "100%";
48
+ left: `var(--${string})`;
49
+ width: "1px";
50
+ height: `var(--${string})`;
51
+ };
52
+ };
53
+ status: {
54
+ pending: {};
55
+ current: {
56
+ background: `var(--${string})`;
57
+ };
58
+ approved: {
59
+ background: string;
60
+ };
61
+ rejected: {
62
+ background: `var(--${string})`;
63
+ };
64
+ };
65
+ }>;
66
+ export declare const header: string;
67
+ export declare const nameBlock: string;
68
+ export declare const name: string;
69
+ export declare const role: string;
70
+ export declare const order: string;
71
+ export declare const meta: string;
72
+ export declare const comment: string;
@@ -0,0 +1,21 @@
1
+ import { ReactNode } from 'react';
2
+ export type ApprovalLineStatus = "pending" | "current" | "approved" | "rejected";
3
+ export type ApprovalLineItem = {
4
+ id: string;
5
+ order?: number;
6
+ name: string;
7
+ role?: string;
8
+ department?: string;
9
+ status?: ApprovalLineStatus;
10
+ date?: string;
11
+ comment?: ReactNode;
12
+ metadata?: ReactNode;
13
+ };
14
+ export type ApprovalLineProps = {
15
+ items: ApprovalLineItem[];
16
+ direction?: "horizontal" | "vertical";
17
+ showConnector?: boolean;
18
+ ariaLabel?: string;
19
+ };
20
+ export declare function ApprovalLine({ ariaLabel, direction, items, showConnector }: ApprovalLineProps): import("react/jsx-runtime").JSX.Element;
21
+ export default ApprovalLine;
@@ -0,0 +1,21 @@
1
+ export declare const box: import('@vanilla-extract/recipes').RuntimeFn<{
2
+ bg: {
3
+ page: {
4
+ background: `var(--${string})`;
5
+ };
6
+ canvas: {
7
+ background: `var(--${string})`;
8
+ };
9
+ subtle: {
10
+ background: `var(--${string})`;
11
+ };
12
+ raised: {
13
+ background: `var(--${string})`;
14
+ };
15
+ };
16
+ border: {
17
+ true: {
18
+ border: `1px solid var(--${string})`;
19
+ };
20
+ };
21
+ }>;
@@ -0,0 +1,21 @@
1
+ import { HTMLAttributes, ReactNode } from 'react';
2
+ import { themeVars } from '../../../../tokens/src';
3
+ export type BoxSpacing = keyof typeof themeVars.spacing;
4
+ export type BoxBackground = "page" | "canvas" | "subtle" | "raised";
5
+ export type BoxRadius = keyof typeof themeVars.radius;
6
+ export interface BoxProps extends HTMLAttributes<HTMLDivElement> {
7
+ /** 사방 패딩 (디자인 토큰: x1=4px ~ x6=24px) */
8
+ p?: BoxSpacing;
9
+ /** 좌우 패딩 — p보다 우선 */
10
+ px?: BoxSpacing;
11
+ /** 상하 패딩 — p보다 우선 */
12
+ py?: BoxSpacing;
13
+ /** 배경 (surface 역할 토큰) */
14
+ bg?: BoxBackground;
15
+ /** 모서리 라운드 (radius 토큰: sm=4px, md=6px, lg=8px) */
16
+ radius?: BoxRadius;
17
+ /** 1px border.subtle 테두리 */
18
+ border?: boolean;
19
+ children?: ReactNode;
20
+ }
21
+ export declare function Box({ p, px, py, bg, radius, border, className, style, children, ...rest }: BoxProps): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,38 @@
1
+ export declare const root: import('@vanilla-extract/recipes').RuntimeFn<{
2
+ intent: {
3
+ info: {
4
+ background: "rgba(33, 81, 236, 0.12)";
5
+ borderColor: `var(--${string})`;
6
+ };
7
+ success: {
8
+ background: "rgba(39, 194, 129, 0.12)";
9
+ borderColor: `var(--${string})`;
10
+ };
11
+ warning: {
12
+ background: "rgba(240, 175, 35, 0.12)";
13
+ borderColor: `var(--${string})`;
14
+ };
15
+ danger: {
16
+ background: "rgba(234, 59, 59, 0.12)";
17
+ borderColor: `var(--${string})`;
18
+ };
19
+ };
20
+ }>;
21
+ export declare const icon: import('@vanilla-extract/recipes').RuntimeFn<{
22
+ intent: {
23
+ info: {
24
+ color: `var(--${string})`;
25
+ };
26
+ success: {
27
+ color: `var(--${string})`;
28
+ };
29
+ warning: {
30
+ color: `var(--${string})`;
31
+ };
32
+ danger: {
33
+ color: `var(--${string})`;
34
+ };
35
+ };
36
+ }>;
37
+ export declare const body: string;
38
+ export declare const title: string;
@@ -0,0 +1,15 @@
1
+ import { HTMLAttributes, ReactNode } from 'react';
2
+ export type CalloutIntent = "info" | "success" | "warning" | "danger";
3
+ export interface CalloutProps extends Omit<HTMLAttributes<HTMLDivElement>, "title"> {
4
+ /** 의도 색 (기본 info) */
5
+ intent?: CalloutIntent;
6
+ /** 굵은 제목 줄 (선택) */
7
+ title?: ReactNode;
8
+ /** 아이콘 교체 — 기본은 intent별 글리프 */
9
+ icon?: ReactNode;
10
+ /** 아이콘 숨김 */
11
+ hideIcon?: boolean;
12
+ /** 본문 */
13
+ children?: ReactNode;
14
+ }
15
+ export declare function Callout({ intent, title, icon, hideIcon, className, children, ...rest }: CalloutProps): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,16 @@
1
+ export declare const container: import('@vanilla-extract/recipes').RuntimeFn<{
2
+ size: {
3
+ sm: {
4
+ maxWidth: "768px";
5
+ };
6
+ md: {
7
+ maxWidth: "1024px";
8
+ };
9
+ lg: {
10
+ maxWidth: "1280px";
11
+ };
12
+ full: {
13
+ maxWidth: "none";
14
+ };
15
+ };
16
+ }>;
@@ -0,0 +1,8 @@
1
+ import { HTMLAttributes, ReactNode } from 'react';
2
+ export type ContainerSize = "sm" | "md" | "lg" | "full";
3
+ export interface ContainerProps extends HTMLAttributes<HTMLDivElement> {
4
+ /** 최대 폭 — sm=768px, md=1024px, lg=1280px, full=제한 없음 */
5
+ size?: ContainerSize;
6
+ children?: ReactNode;
7
+ }
8
+ export declare function Container({ size, className, children, ...rest }: ContainerProps): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,26 @@
1
+ export declare const badge: import('@vanilla-extract/recipes').RuntimeFn<{
2
+ level: {
3
+ dday: {
4
+ background: `var(--${string})`;
5
+ color: `var(--${string})`;
6
+ };
7
+ danger: {
8
+ background: "rgba(234, 59, 59, 0.12)";
9
+ border: `1px solid var(--${string})`;
10
+ color: `var(--${string})`;
11
+ };
12
+ warning: {
13
+ background: "rgba(240, 175, 35, 0.12)";
14
+ border: `1px solid var(--${string})`;
15
+ color: `var(--${string})`;
16
+ };
17
+ neutral: {
18
+ background: `var(--${string})`;
19
+ color: `var(--${string})`;
20
+ };
21
+ overdue: {
22
+ background: `var(--${string})`;
23
+ color: `var(--${string})`;
24
+ };
25
+ };
26
+ }>;
@@ -0,0 +1,9 @@
1
+ import { HTMLAttributes } from 'react';
2
+ export type DdayLevel = "dday" | "danger" | "warning" | "neutral" | "overdue";
3
+ export interface DdayBadgeProps extends HTMLAttributes<HTMLSpanElement> {
4
+ /** 목표 날짜 (달력일 기준으로 D-day 계산) */
5
+ date: Date | string;
6
+ /** 기준일 — 기본값은 현재. 테스트/스토리에서 고정할 때 사용 */
7
+ today?: Date | string;
8
+ }
9
+ export declare function DdayBadge({ date, today, className, ...rest }: DdayBadgeProps): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,12 @@
1
+ export declare const divider: import('@vanilla-extract/recipes').RuntimeFn<{
2
+ orientation: {
3
+ horizontal: {
4
+ width: "100%";
5
+ height: "1px";
6
+ };
7
+ vertical: {
8
+ width: "1px";
9
+ alignSelf: "stretch";
10
+ };
11
+ };
12
+ }>;
@@ -0,0 +1,7 @@
1
+ import { HTMLAttributes } from 'react';
2
+ export type DividerOrientation = "horizontal" | "vertical";
3
+ export interface DividerProps extends HTMLAttributes<HTMLElement> {
4
+ /** 방향 — vertical은 flex 부모 안에서 stretch */
5
+ orientation?: DividerOrientation;
6
+ }
7
+ export declare function Divider({ orientation, className, ...rest }: DividerProps): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,5 @@
1
+ export declare const root: string;
2
+ export declare const icon: string;
3
+ export declare const title: string;
4
+ export declare const description: string;
5
+ export declare const action: string;
@@ -0,0 +1,12 @@
1
+ import { HTMLAttributes, ReactNode } from 'react';
2
+ export interface EmptyStateProps extends Omit<HTMLAttributes<HTMLDivElement>, "title"> {
3
+ /** 상단 아이콘 (44px 내외 권장) */
4
+ icon?: ReactNode;
5
+ /** 제목 */
6
+ title: ReactNode;
7
+ /** 보조 설명 */
8
+ description?: ReactNode;
9
+ /** 하단 액션 (Button 등) */
10
+ action?: ReactNode;
11
+ }
12
+ export declare function EmptyState({ icon, title, description, action, className, ...rest }: EmptyStateProps): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1 @@
1
+ export declare const grid: string;
@@ -0,0 +1,15 @@
1
+ import { HTMLAttributes, ReactNode } from 'react';
2
+ import { themeVars } from '../../../../tokens/src';
3
+ export type GridGap = keyof typeof themeVars.spacing;
4
+ export interface GridProps extends HTMLAttributes<HTMLDivElement> {
5
+ /** 동일 폭 컬럼 수 — repeat(N, minmax(0, 1fr)) */
6
+ columns?: number;
7
+ /** 행/열 공통 간격 토큰 */
8
+ gap?: GridGap;
9
+ /** 행 간격 — gap보다 우선 */
10
+ rowGap?: GridGap;
11
+ /** 열 간격 — gap보다 우선 */
12
+ columnGap?: GridGap;
13
+ children?: ReactNode;
14
+ }
15
+ export declare function Grid({ columns, gap, rowGap, columnGap, className, style, children, ...rest }: GridProps): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,5 @@
1
+ export declare const root: string;
2
+ export declare const header: string;
3
+ export declare const nav: string;
4
+ export declare const content: string;
5
+ export declare const panel: string;
@@ -0,0 +1,33 @@
1
+ import { HTMLAttributes, ReactNode } from 'react';
2
+ export interface PageLayoutProps extends HTMLAttributes<HTMLDivElement> {
3
+ children?: ReactNode;
4
+ }
5
+ export interface PageLayoutSlotProps extends HTMLAttributes<HTMLElement> {
6
+ children?: ReactNode;
7
+ }
8
+ export interface PageLayoutNavProps extends HTMLAttributes<HTMLElement> {
9
+ /** LNB 폭 (px) */
10
+ width?: number;
11
+ /** 접힘 — collapsedWidth로 축소 */
12
+ collapsed?: boolean;
13
+ /** 접혔을 때 폭 (px) */
14
+ collapsedWidth?: number;
15
+ children?: ReactNode;
16
+ }
17
+ export interface PageLayoutPanelProps extends HTMLAttributes<HTMLElement> {
18
+ /** 보조 패널 폭 (px) */
19
+ width?: number;
20
+ children?: ReactNode;
21
+ }
22
+ export declare function PageLayoutHeader({ className, children, ...rest }: PageLayoutSlotProps): import("react/jsx-runtime").JSX.Element;
23
+ export declare function PageLayoutNav({ width, collapsed, collapsedWidth, className, style, children, ...rest }: PageLayoutNavProps): import("react/jsx-runtime").JSX.Element;
24
+ export declare function PageLayoutContent({ className, children, ...rest }: PageLayoutSlotProps): import("react/jsx-runtime").JSX.Element;
25
+ export declare function PageLayoutPanel({ width, className, style, children, ...rest }: PageLayoutPanelProps): import("react/jsx-runtime").JSX.Element;
26
+ declare function PageLayoutRoot({ className, children, ...rest }: PageLayoutProps): import("react/jsx-runtime").JSX.Element;
27
+ export declare const PageLayout: typeof PageLayoutRoot & {
28
+ Header: typeof PageLayoutHeader;
29
+ Nav: typeof PageLayoutNav;
30
+ Content: typeof PageLayoutContent;
31
+ Panel: typeof PageLayoutPanel;
32
+ };
33
+ export {};
@@ -0,0 +1 @@
1
+ export declare const spacer: string;
@@ -0,0 +1,4 @@
1
+ import { HTMLAttributes } from 'react';
2
+ export interface SpacerProps extends HTMLAttributes<HTMLDivElement> {
3
+ }
4
+ export declare function Spacer({ className, ...rest }: SpacerProps): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,49 @@
1
+ export declare const root: string;
2
+ export declare const item: string;
3
+ export declare const markerColumn: string;
4
+ export declare const dot: import('@vanilla-extract/recipes').RuntimeFn<{
5
+ status: {
6
+ done: {
7
+ width: "10px";
8
+ height: "10px";
9
+ background: `var(--${string})`;
10
+ };
11
+ current: {
12
+ width: "12px";
13
+ height: "12px";
14
+ background: `var(--${string})`;
15
+ border: `3px solid var(--${string})`;
16
+ };
17
+ upcoming: {
18
+ width: "10px";
19
+ height: "10px";
20
+ background: `var(--${string})`;
21
+ border: `2px solid var(--${string})`;
22
+ };
23
+ };
24
+ }>;
25
+ export declare const connector: string;
26
+ export declare const content: string;
27
+ export declare const date: import('@vanilla-extract/recipes').RuntimeFn<{
28
+ status: {
29
+ done: {};
30
+ current: {
31
+ color: `var(--${string})`;
32
+ fontWeight: `var(--${string})`;
33
+ };
34
+ upcoming: {
35
+ color: `var(--${string})`;
36
+ };
37
+ };
38
+ }>;
39
+ export declare const title: import('@vanilla-extract/recipes').RuntimeFn<{
40
+ status: {
41
+ done: {};
42
+ current: {};
43
+ upcoming: {
44
+ color: `var(--${string})`;
45
+ fontWeight: `var(--${string})`;
46
+ };
47
+ };
48
+ }>;
49
+ export declare const description: string;
@@ -0,0 +1,17 @@
1
+ import { HTMLAttributes, ReactNode } from 'react';
2
+ export type TimelineStatus = "done" | "current" | "upcoming";
3
+ export interface TimelineItem {
4
+ id: string;
5
+ /** 이벤트 제목 */
6
+ title: ReactNode;
7
+ /** 날짜/시각 표기 */
8
+ date?: ReactNode;
9
+ /** 보조 설명 */
10
+ description?: ReactNode;
11
+ /** 진행 상태 (기본 done) */
12
+ status?: TimelineStatus;
13
+ }
14
+ export interface TimelineProps extends Omit<HTMLAttributes<HTMLOListElement>, "children"> {
15
+ items: TimelineItem[];
16
+ }
17
+ export declare function Timeline({ items, className, ...rest }: TimelineProps): import("react/jsx-runtime").JSX.Element;
@@ -1,3 +1,5 @@
1
+ export { ApprovalLine } from './components/ApprovalLine';
2
+ export type { ApprovalLineProps, ApprovalLineItem, ApprovalLineStatus, } from './components/ApprovalLine';
1
3
  export { AutoComplete } from './components/AutoComplete';
2
4
  export type { AutoCompleteProps, AutoCompleteOption, AutoCompleteSize, } from './components/AutoComplete';
3
5
  export { Alert } from './components/Alert';
@@ -20,6 +22,24 @@ export { ChipsNavigation } from './components/ChipsNavigation';
20
22
  export type { ChipsNavigationProps, ChipsNavigationItem, } from './components/ChipsNavigation';
21
23
  export { Card, CardHeader, CardBody, CardFooter } from './components/Card';
22
24
  export type { CardProps } from './components/Card';
25
+ export { Box } from './components/Box';
26
+ export type { BoxProps, BoxSpacing, BoxBackground, BoxRadius } from './components/Box';
27
+ export { Container } from './components/Container';
28
+ export type { ContainerProps, ContainerSize } from './components/Container';
29
+ export { DdayBadge } from './components/DdayBadge';
30
+ export type { DdayBadgeProps, DdayLevel } from './components/DdayBadge';
31
+ export { Divider } from './components/Divider';
32
+ export type { DividerProps, DividerOrientation } from './components/Divider';
33
+ export { Spacer } from './components/Spacer';
34
+ export type { SpacerProps } from './components/Spacer';
35
+ export { Grid } from './components/Grid';
36
+ export type { GridProps, GridGap } from './components/Grid';
37
+ export { PageLayout, PageLayoutHeader, PageLayoutNav, PageLayoutContent, PageLayoutPanel, } from './components/PageLayout';
38
+ export type { PageLayoutProps, PageLayoutSlotProps, PageLayoutNavProps, PageLayoutPanelProps, } from './components/PageLayout';
39
+ export { EmptyState } from './components/EmptyState';
40
+ export type { EmptyStateProps } from './components/EmptyState';
41
+ export { Timeline } from './components/Timeline';
42
+ export type { TimelineProps, TimelineItem, TimelineStatus } from './components/Timeline';
23
43
  export { HStack, VStack } from './components/Stack';
24
44
  export type { HStackProps, VStackProps, StackGap, StackAlign, StackJustify, } from './components/Stack';
25
45
  export { Collapse, CollapseGroup } from './components/Collapse';
@@ -44,6 +64,8 @@ export { ChartTooltip } from './components/ChartTooltip';
44
64
  export type { ChartTooltipProps, ChartTooltipDataItem, } from './components/ChartTooltip';
45
65
  export { InfoPopover } from './components/InfoPopover';
46
66
  export type { InfoPopoverProps, InfoPopoverStep, } from './components/InfoPopover';
67
+ export { Callout } from './components/Callout';
68
+ export type { CalloutProps, CalloutIntent } from './components/Callout';
47
69
  export { CalendarPopover } from './components/CalendarPopover';
48
70
  export type { CalendarPopoverProps, CalendarPopoverPlacement, CalendarPopoverField, } from './components/CalendarPopover';
49
71
  export { Toast, ToastContainer } from './components/Toast';
@@ -3,27 +3,27 @@ export declare const sprinkles: ((props: {
3
3
  mobile?: "flex" | "grid" | "block" | "inline-flex" | "none" | undefined;
4
4
  tablet?: "flex" | "grid" | "block" | "inline-flex" | "none" | undefined;
5
5
  desktop?: "flex" | "grid" | "block" | "inline-flex" | "none" | undefined;
6
- } | undefined) | import('@vanilla-extract/sprinkles').ResponsiveArray<1 | 2 | 3, "flex" | "grid" | "block" | "inline-flex" | "none" | null>;
7
- alignItems?: ("stretch" | "center" | {
8
- mobile?: "stretch" | "center" | undefined;
9
- tablet?: "stretch" | "center" | undefined;
10
- desktop?: "stretch" | "center" | undefined;
11
- } | undefined) | import('@vanilla-extract/sprinkles').ResponsiveArray<1 | 2 | 3, "stretch" | "center" | null>;
12
- justifyContent?: ("space-between" | "center" | "flex-start" | {
13
- mobile?: "space-between" | "center" | "flex-start" | undefined;
14
- tablet?: "space-between" | "center" | "flex-start" | undefined;
15
- desktop?: "space-between" | "center" | "flex-start" | undefined;
16
- } | undefined) | import('@vanilla-extract/sprinkles').ResponsiveArray<1 | 2 | 3, "space-between" | "center" | "flex-start" | null>;
6
+ } | undefined) | import('@vanilla-extract/sprinkles').ResponsiveArray<2 | 1 | 3, "flex" | "grid" | "block" | "inline-flex" | "none" | null>;
7
+ alignItems?: ("center" | "stretch" | {
8
+ mobile?: "center" | "stretch" | undefined;
9
+ tablet?: "center" | "stretch" | undefined;
10
+ desktop?: "center" | "stretch" | undefined;
11
+ } | undefined) | import('@vanilla-extract/sprinkles').ResponsiveArray<2 | 1 | 3, "center" | "stretch" | null>;
12
+ justifyContent?: ("center" | "flex-start" | "space-between" | {
13
+ mobile?: "center" | "flex-start" | "space-between" | undefined;
14
+ tablet?: "center" | "flex-start" | "space-between" | undefined;
15
+ desktop?: "center" | "flex-start" | "space-between" | undefined;
16
+ } | undefined) | import('@vanilla-extract/sprinkles').ResponsiveArray<2 | 1 | 3, "center" | "flex-start" | "space-between" | null>;
17
17
  width?: ("100%" | {
18
18
  mobile?: "100%" | undefined;
19
19
  tablet?: "100%" | undefined;
20
20
  desktop?: "100%" | undefined;
21
- } | undefined) | import('@vanilla-extract/sprinkles').ResponsiveArray<1 | 2 | 3, "100%" | null>;
21
+ } | undefined) | import('@vanilla-extract/sprinkles').ResponsiveArray<2 | 1 | 3, "100%" | null>;
22
22
  gap?: ("x1" | "x2" | "x3" | "x4" | "x5" | "x6" | {
23
23
  mobile?: "x1" | "x2" | "x3" | "x4" | "x5" | "x6" | undefined;
24
24
  tablet?: "x1" | "x2" | "x3" | "x4" | "x5" | "x6" | undefined;
25
25
  desktop?: "x1" | "x2" | "x3" | "x4" | "x5" | "x6" | undefined;
26
- } | undefined) | import('@vanilla-extract/sprinkles').ResponsiveArray<1 | 2 | 3, "x1" | "x2" | "x3" | "x4" | "x5" | "x6" | null>;
26
+ } | undefined) | import('@vanilla-extract/sprinkles').ResponsiveArray<2 | 1 | 3, "x1" | "x2" | "x3" | "x4" | "x5" | "x6" | null>;
27
27
  }) => string) & {
28
28
  properties: Set<"alignItems" | "display" | "justifyContent" | "width" | "gap">;
29
29
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lawkit/ui",
3
- "version": "0.1.67",
3
+ "version": "0.1.70",
4
4
  "type": "module",
5
5
  "description": "LDS Design System — React component library with design tokens",
6
6
  "main": "./dist/index.js",