@waggylabs/yumekit 0.4.3-beta.46 → 0.4.3-beta.48
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/CHANGELOG.md +1 -0
- package/dist/react.d.ts +36 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -45,6 +45,7 @@ Delete any empty sections before publishing.
|
|
|
45
45
|
- New `y-stack` component — a layout container for arranging child elements in rows, columns, grids, or masonry patterns. Supports `mode` (`"flex"` | `"grid"` | `"masonry"`), `direction`, `columns`, `gap` (maps to `--spacing-*` tokens), `wrap`, `align`, `justify`, and `responsive` attributes. Masonry mode uses JS absolute positioning with `ResizeObserver`. Responsive mode auto-collapses columns at configurable breakpoints.
|
|
46
46
|
- `y-tabs`: `leftIcon` and `rightIcon` properties on option objects — set a `<y-icon>` name directly in the options JSON to render icons without requiring extra child elements or named slots.
|
|
47
47
|
- `y-tabs`: `tab-content-{id}` slot — place any content (icons, badges, custom markup) inside the tab button itself by targeting this slot. Takes full precedence over `leftIcon`/`rightIcon` and the default label rendering.
|
|
48
|
+
- 14 new bundled icons: `bug`, `copy`, `fast-back`, `fast-forward`, `flower`, `paste`, `pause`, `play`, `redo`, `scissors`, `skip-back`, `skip-forward`, `stop`, `undo`.
|
|
48
49
|
|
|
49
50
|
### Fixed
|
|
50
51
|
|
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;
|