@waggylabs/yumekit 0.5.1 → 0.5.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.
- package/CHANGELOG.md +24 -0
- package/README.md +54 -63
- package/dist/ai/llm.txt +14 -11
- package/dist/ai/skill/examples/nav-layout.html +5 -5
- package/dist/ai/skill/examples/themed-app.html +6 -6
- package/dist/ai/skill/patterns.md +7 -7
- package/dist/ai/skill/reference.md +21 -18
- package/dist/components/y-appbar.js +45 -16
- package/dist/components/y-banner.js +44 -15
- package/dist/components/y-button/y-button.d.ts +11 -4
- package/dist/components/y-button.d.ts +11 -4
- package/dist/components/y-button.js +43 -14
- package/dist/components/y-checkbox.js +7 -1
- package/dist/components/y-code.js +9 -2
- package/dist/components/y-color.js +12 -2
- package/dist/components/y-colorpicker.js +12 -2
- package/dist/components/y-data-grid.js +83 -35
- package/dist/components/y-date.js +72 -30
- package/dist/components/y-datepicker.js +72 -30
- package/dist/components/y-dialog.js +1 -1
- package/dist/components/y-help.js +46 -17
- package/dist/components/y-input.js +11 -1
- package/dist/components/y-paginator.js +46 -17
- package/dist/components/y-select.js +1 -1
- package/dist/components/y-sidebar.js +45 -16
- package/dist/components/y-tabs/y-tabs.d.ts +17 -0
- package/dist/components/y-tabs.d.ts +17 -0
- package/dist/components/y-tabs.js +193 -8
- package/dist/components/y-tag/y-tag.d.ts +9 -2
- package/dist/components/y-tag.d.ts +9 -2
- package/dist/components/y-tag.js +36 -8
- package/dist/components/y-textarea.js +11 -1
- package/dist/index.js +341 -63
- package/dist/react.d.ts +5 -0
- package/dist/yumekit.min.js +1 -1
- package/llm.txt +14 -11
- package/package.json +1 -1
- package/scripts/install-ai-docs.js +93 -72
package/dist/react.d.ts
CHANGED
|
@@ -98,6 +98,8 @@ declare module "react" {
|
|
|
98
98
|
"right-icon"?: string;
|
|
99
99
|
color?: string;
|
|
100
100
|
size?: "small" | "medium" | "large";
|
|
101
|
+
variant?: "outlined" | "filled" | "flat";
|
|
102
|
+
/** @deprecated Use `variant` instead. */
|
|
101
103
|
"style-type"?: "outlined" | "filled" | "flat";
|
|
102
104
|
"padding-mode"?: "auto" | "square" | "wide";
|
|
103
105
|
type?: string;
|
|
@@ -718,11 +720,14 @@ declare module "react" {
|
|
|
718
720
|
size?: "small" | "medium" | "large";
|
|
719
721
|
position?: "top" | "bottom" | "left" | "right";
|
|
720
722
|
variant?: "default" | "accent";
|
|
723
|
+
overflow?: "scroll" | "wrap";
|
|
721
724
|
}>;
|
|
722
725
|
"y-tag": El<{
|
|
723
726
|
color?: string;
|
|
724
727
|
size?: "small" | "medium" | "large";
|
|
725
728
|
removable?: boolean | string;
|
|
729
|
+
variant?: "filled" | "outlined" | "flat";
|
|
730
|
+
/** @deprecated Use `variant` instead. */
|
|
726
731
|
"style-type"?: "filled" | "outlined" | "flat";
|
|
727
732
|
shape?: "square" | "round";
|
|
728
733
|
}>;
|