@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.
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "version": 1,
3
- "generatedAt": "2026-03-30T07:14:53.148Z",
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 ht, Parts as jt, getPartMap as kt } from "./utils/part-map/index.js";
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
- ht as PartTypes,
129
- jt as Parts,
130
- kt as getPartMap
129
+ jt as PartTypes,
130
+ kt as Parts,
131
+ lt as getPartMap
131
132
  };
@@ -1 +1 @@
1
- export declare const muiKeywords: Record<string, string[]>;
1
+ export declare const keywords: Record<string, string[]>;
@@ -1,13 +1,4 @@
1
- export declare const muiPrompts: ({
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,2 @@
1
+ import type { MuiDocs } from "../../types/guidelines";
2
+ export declare const muiDocs: MuiDocs;
@@ -0,0 +1,2 @@
1
+ import type { MuiDocs } from "../../types/guidelines";
2
+ export declare const muiDocs: MuiDocs;
@@ -0,0 +1 @@
1
+ import "./trash";
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,2 @@
1
+ import type { MuiDocs } from '../../types/guidelines';
2
+ export declare const muiDocs: MuiDocs;
@@ -0,0 +1,2 @@
1
+ import type { MuiDocs } from '../../types/guidelines';
2
+ export declare const muiDocs: MuiDocs;
@@ -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.1.1",
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"