@muibook/components 19.1.1 → 19.3.0
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/esm/agent/keywords/index.js +67 -24
- package/dist/esm/agent/prompts/index.js +297 -845
- package/dist/esm/components/mui-button/index.js +98 -72
- package/dist/esm/components/mui-dialog/index.js +14 -5
- package/dist/esm/components/mui-field/index.js +1 -1
- package/dist/esm/components/mui-illustrations/index.js +1 -0
- package/dist/esm/components/mui-illustrations/trash/index.js +81 -0
- package/dist/esm/components/mui-input/index.js +2 -2
- package/dist/esm/css/mui-brand.css +1 -1
- package/dist/esm/css/mui-tokens.css +16 -0
- package/dist/esm/custom-elements.json +1292 -1115
- package/dist/esm/dynamic-attrs.json +2 -1
- package/dist/esm/index.js +5 -4
- package/dist/types/agent/keywords/index.d.ts +1 -1
- package/dist/types/agent/prompts/index.d.ts +1 -10
- package/dist/types/components/mui-form-message/doc.d.ts +2 -0
- package/dist/types/components/mui-illustrations/doc.d.ts +2 -0
- package/dist/types/components/mui-illustrations/index.d.ts +1 -0
- package/dist/types/components/mui-illustrations/trash.d.ts +1 -0
- package/dist/types/components/mui-prompt-toggle/doc.d.ts +2 -0
- package/dist/types/components/mui-radio-group/doc.d.ts +2 -0
- package/dist/types/index.d.ts +2 -0
- package/package.json +9 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 1,
|
|
3
|
-
"generatedAt": "2026-
|
|
3
|
+
"generatedAt": "2026-05-07T04:13:11.487Z",
|
|
4
4
|
"components": {
|
|
5
5
|
"mui-body": {
|
|
6
6
|
"version": 1,
|
|
@@ -17,6 +17,7 @@
|
|
|
17
17
|
"has-before",
|
|
18
18
|
"has-after",
|
|
19
19
|
"icon-only",
|
|
20
|
+
"avatar-only",
|
|
20
21
|
"dropdown-slot",
|
|
21
22
|
"dropdown-slot-first",
|
|
22
23
|
"dropdown-slot-last",
|
package/dist/esm/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { PartTypes as
|
|
1
|
+
import { PartTypes as jt, Parts as kt, getPartMap as lt } from "./utils/part-map/index.js";
|
|
2
2
|
import "./components/mui-field/index.js";
|
|
3
3
|
import "./components/mui-form-section/index.js";
|
|
4
4
|
import "./components/mui-form-section-footer/index.js";
|
|
@@ -93,6 +93,7 @@ import "./components/mui-icons/rectangle-bottom-panel/index.js";
|
|
|
93
93
|
import "./components/mui-icons/pin/index.js";
|
|
94
94
|
import "./components/mui-icons/pin-slash/index.js";
|
|
95
95
|
import "./components/mui-icons/text-below-folder/index.js";
|
|
96
|
+
import "./components/mui-illustrations/trash/index.js";
|
|
96
97
|
import "./components/mui-stack/hstack/index.js";
|
|
97
98
|
import "./components/mui-stack/vstack/index.js";
|
|
98
99
|
import "./components/mui-grid/index.js";
|
|
@@ -125,7 +126,7 @@ import "./components/mui-carousel/panel/index.js";
|
|
|
125
126
|
import "./components/mui-stepper/stepper/index.js";
|
|
126
127
|
import "./components/mui-stepper/step/index.js";
|
|
127
128
|
export {
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
129
|
+
jt as PartTypes,
|
|
130
|
+
kt as Parts,
|
|
131
|
+
lt as getPartMap
|
|
131
132
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const
|
|
1
|
+
export declare const keywords: Record<string, string[]>;
|
|
@@ -1,13 +1,4 @@
|
|
|
1
|
-
export declare const
|
|
2
|
-
role: string;
|
|
3
|
-
content: string;
|
|
4
|
-
name?: undefined;
|
|
5
|
-
} | {
|
|
6
|
-
role: string;
|
|
7
|
-
name: string;
|
|
8
|
-
content: string;
|
|
9
|
-
})[];
|
|
10
|
-
export declare const muiA2UIPrompts: ({
|
|
1
|
+
export declare const prompts: ({
|
|
11
2
|
role: string;
|
|
12
3
|
content: string;
|
|
13
4
|
name?: undefined;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import "./trash";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/dist/types/index.d.ts
CHANGED
|
@@ -94,6 +94,8 @@ export * from "./components/mui-icons/rectangle-bottom-panel";
|
|
|
94
94
|
export * from "./components/mui-icons/pin";
|
|
95
95
|
export * from "./components/mui-icons/pin-slash";
|
|
96
96
|
export * from "./components/mui-icons/text-below-folder";
|
|
97
|
+
export * from "./components/mui-illustrations";
|
|
98
|
+
export * from "./components/mui-illustrations/trash";
|
|
97
99
|
export * from "./components/mui-stack/hstack";
|
|
98
100
|
export * from "./components/mui-stack/vstack";
|
|
99
101
|
export * from "./components/mui-grid";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@muibook/components",
|
|
3
|
-
"version": "19.
|
|
3
|
+
"version": "19.3.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "A library of MUI-based design system components.",
|
|
6
6
|
"author": "Michael Trilford",
|
|
@@ -188,6 +188,14 @@
|
|
|
188
188
|
"import": "./dist/esm/components/mui-icons/index.js",
|
|
189
189
|
"types": "./dist/types/components/mui-icons/index.d.ts"
|
|
190
190
|
},
|
|
191
|
+
"./mui-illustrations": {
|
|
192
|
+
"import": "./dist/esm/components/mui-illustrations/index.js",
|
|
193
|
+
"types": "./dist/types/components/mui-illustrations/index.d.ts"
|
|
194
|
+
},
|
|
195
|
+
"./mui-illustrations/trash": {
|
|
196
|
+
"import": "./dist/esm/components/mui-illustrations/trash/index.js",
|
|
197
|
+
"types": "./dist/types/components/mui-illustrations/trash.d.ts"
|
|
198
|
+
},
|
|
191
199
|
"./mui-icons/accessibility": {
|
|
192
200
|
"import": "./dist/esm/components/mui-icons/accessibility/index.js",
|
|
193
201
|
"types": "./dist/types/components/mui-icons/accessibility/index.d.ts"
|