@waggylabs/yumekit 0.4.3-beta.46 → 0.4.3-beta.47
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.
- package/dist/react.d.ts +36 -0
- package/package.json +1 -1
package/dist/react.d.ts
CHANGED
|
@@ -39,6 +39,15 @@ declare module "react" {
|
|
|
39
39
|
color?: string;
|
|
40
40
|
size?: "small" | "medium" | "large";
|
|
41
41
|
}>;
|
|
42
|
+
"y-banner": El<{
|
|
43
|
+
color?: string;
|
|
44
|
+
icon?: string;
|
|
45
|
+
position?: "push" | "overlap";
|
|
46
|
+
sticky?: boolean | string;
|
|
47
|
+
dismissable?: boolean | string;
|
|
48
|
+
dismissed?: boolean | string;
|
|
49
|
+
size?: "small" | "medium" | "large";
|
|
50
|
+
}>;
|
|
42
51
|
"y-button": El<{
|
|
43
52
|
"left-icon"?: string;
|
|
44
53
|
"right-icon"?: string;
|
|
@@ -75,6 +84,26 @@ declare module "react" {
|
|
|
75
84
|
indeterminate?: boolean | string;
|
|
76
85
|
"label-position"?: "top" | "bottom" | "left" | "right";
|
|
77
86
|
}>;
|
|
87
|
+
"y-color": El<{
|
|
88
|
+
name?: string;
|
|
89
|
+
value?: string;
|
|
90
|
+
format?: "hex" | "rgb" | "hsl" | "hsv";
|
|
91
|
+
formats?: Array<"hex" | "rgb" | "hsl" | "hsv"> | string;
|
|
92
|
+
"show-alpha"?: boolean | string;
|
|
93
|
+
placeholder?: string;
|
|
94
|
+
disabled?: boolean | string;
|
|
95
|
+
invalid?: boolean | string;
|
|
96
|
+
clearable?: boolean | string;
|
|
97
|
+
size?: "small" | "medium" | "large";
|
|
98
|
+
"label-position"?: "top" | "bottom";
|
|
99
|
+
}>;
|
|
100
|
+
"y-colorpicker": El<{
|
|
101
|
+
value?: string;
|
|
102
|
+
format?: "hex" | "rgb" | "hsl" | "hsv";
|
|
103
|
+
formats?: Array<"hex" | "rgb" | "hsl" | "hsv"> | string;
|
|
104
|
+
"show-alpha"?: boolean | string;
|
|
105
|
+
size?: "small" | "medium" | "large";
|
|
106
|
+
}>;
|
|
78
107
|
"y-date": El<{
|
|
79
108
|
name?: string;
|
|
80
109
|
value?: string;
|
|
@@ -127,6 +156,13 @@ declare module "react" {
|
|
|
127
156
|
| "bottom-center"
|
|
128
157
|
| "bottom-right";
|
|
129
158
|
}>;
|
|
159
|
+
"y-dock": El<{
|
|
160
|
+
items?: unknown[] | string;
|
|
161
|
+
position?: "top" | "bottom";
|
|
162
|
+
breakpoint?: string | number;
|
|
163
|
+
size?: "small" | "medium" | "large";
|
|
164
|
+
history?: string;
|
|
165
|
+
}>;
|
|
130
166
|
"y-drawer": El<{
|
|
131
167
|
visible?: boolean | string;
|
|
132
168
|
anchor?: string;
|