ksk-design-system 1.37.2 → 1.37.3
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.
|
@@ -36,6 +36,9 @@ interface DialogContentProps extends React.ComponentProps<typeof DialogPrimitive
|
|
|
36
36
|
*/
|
|
37
37
|
position?: "center" | "top";
|
|
38
38
|
children?: React.ReactNode;
|
|
39
|
+
className?: string;
|
|
40
|
+
style?: React.CSSProperties;
|
|
41
|
+
id?: string;
|
|
39
42
|
}
|
|
40
43
|
declare function DialogContent({ className, children, padding, description, position, ...props }: DialogContentProps): import("react/jsx-runtime").JSX.Element;
|
|
41
44
|
declare function DialogHeader({ className, ...props }: React.ComponentProps<"div">): import("react/jsx-runtime").JSX.Element;
|
|
@@ -19,6 +19,8 @@ export interface ProgressProps extends React.ComponentProps<typeof ProgressPrimi
|
|
|
19
19
|
transitionDuration?: ProgressDuration;
|
|
20
20
|
/** 進捗値(0〜100)。Radix v2 系で `React.ComponentProps` 経由だと型に出てこないため明示。 */
|
|
21
21
|
value?: number | null;
|
|
22
|
+
className?: string;
|
|
23
|
+
id?: string;
|
|
22
24
|
}
|
|
23
25
|
/**
|
|
24
26
|
* Progress — 進捗バー。
|
|
@@ -13,6 +13,8 @@ declare function SelectGroup({ ...props }: React.ComponentProps<typeof SelectPri
|
|
|
13
13
|
declare function SelectValue({ ...props }: React.ComponentProps<typeof SelectPrimitive.Value>): import("react/jsx-runtime").JSX.Element;
|
|
14
14
|
interface SelectTriggerProps extends React.ComponentProps<typeof SelectPrimitive.Trigger>, VariantProps<typeof selectTriggerVariants> {
|
|
15
15
|
children?: React.ReactNode;
|
|
16
|
+
className?: string;
|
|
17
|
+
id?: string;
|
|
16
18
|
}
|
|
17
19
|
declare function SelectTrigger({ className, children, size, ...props }: SelectTriggerProps): import("react/jsx-runtime").JSX.Element;
|
|
18
20
|
declare function SelectContent({ className, children, position, ...props }: React.ComponentProps<typeof SelectPrimitive.Content>): import("react/jsx-runtime").JSX.Element;
|
|
@@ -71,6 +71,10 @@ interface SheetProps extends React.ComponentProps<typeof DialogPrimitive.Root> {
|
|
|
71
71
|
*/
|
|
72
72
|
overlay?: boolean;
|
|
73
73
|
children?: React.ReactNode;
|
|
74
|
+
open?: boolean;
|
|
75
|
+
defaultOpen?: boolean;
|
|
76
|
+
onOpenChange?: (open: boolean) => void;
|
|
77
|
+
modal?: boolean;
|
|
74
78
|
}
|
|
75
79
|
declare function Sheet({ snapPoints, activeSnapPoint: activeSnapPointProp, setActiveSnapPoint: setActiveSnapPointProp, fadeFromIndex, dismissible, overlay, onOpenChange, open, defaultOpen, ...props }: SheetProps): import("react/jsx-runtime").JSX.Element;
|
|
76
80
|
declare function SheetTrigger({ ...props }: React.ComponentProps<typeof DialogPrimitive.Trigger>): import("react/jsx-runtime").JSX.Element;
|
|
@@ -123,6 +127,9 @@ interface SheetContentProps extends React.ComponentProps<typeof DialogPrimitive.
|
|
|
123
127
|
*/
|
|
124
128
|
description?: React.ReactNode;
|
|
125
129
|
children?: React.ReactNode;
|
|
130
|
+
className?: string;
|
|
131
|
+
style?: React.CSSProperties;
|
|
132
|
+
id?: string;
|
|
126
133
|
}
|
|
127
134
|
declare function SheetContent({ className, children, side, glassOverlay, container, padding, swipeToClose, description, ...props }: SheetContentProps): import("react/jsx-runtime").JSX.Element;
|
|
128
135
|
declare function SheetHeader({ className, ...props }: React.ComponentProps<"div">): import("react/jsx-runtime").JSX.Element;
|