@baton8/general-components 3.1.0-alpha.7 → 3.1.0-alpha.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.
|
@@ -21,7 +21,7 @@ export declare const Badge: import("react").ForwardRefExoticComponent<import("..
|
|
|
21
21
|
* 見た目のバリアント。
|
|
22
22
|
* @defaultValue `"solid"`
|
|
23
23
|
*/
|
|
24
|
-
variant?: "
|
|
24
|
+
variant?: "solid" | "light" | "outline" | undefined;
|
|
25
25
|
/**
|
|
26
26
|
* サイズ。
|
|
27
27
|
* @defaultValue `"medium"`
|
|
@@ -42,7 +42,7 @@ export declare const GeneralIcon: import("react").ForwardRefExoticComponent<impo
|
|
|
42
42
|
* アイコンの反転。
|
|
43
43
|
* @defaultValue `"none"`
|
|
44
44
|
*/
|
|
45
|
-
flip?: "
|
|
45
|
+
flip?: "both" | "none" | "horizontal" | "vertical" | undefined;
|
|
46
46
|
/**
|
|
47
47
|
* アイコンの回転角度。
|
|
48
48
|
* @defaultValue `0`
|
|
@@ -23,7 +23,7 @@ export declare const Textarea: import("react").ForwardRefExoticComponent<import(
|
|
|
23
23
|
* リサイズ可能な方向。
|
|
24
24
|
* @defaultValue `"vertical"`
|
|
25
25
|
*/
|
|
26
|
-
resize?: "
|
|
26
|
+
resize?: "both" | "none" | "horizontal" | "vertical" | undefined;
|
|
27
27
|
/** */
|
|
28
28
|
inputMode?: "search" | "numeric" | "decimal" | "text" | "none" | "tel" | "url" | "email" | undefined;
|
|
29
29
|
/**
|