@muibook/components 19.4.0 → 19.5.1

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.
Files changed (69) hide show
  1. package/dist/esm/agent/prompts/index.js +3 -3
  2. package/dist/esm/components/mui-form-group/index.js +14 -34
  3. package/dist/esm/components/mui-grid/index.js +35 -15
  4. package/dist/esm/components/mui-stack/hstack/index.js +18 -14
  5. package/dist/esm/components/mui-stack/vstack/index.js +18 -14
  6. package/dist/esm/css/mui-brand.css +1 -1
  7. package/dist/esm/custom-elements.json +4115 -6068
  8. package/dist/esm/dynamic-attrs.json +6 -6
  9. package/dist/types/components/mui-accordion/api.d.ts +73 -0
  10. package/dist/types/components/mui-addon/api.d.ts +28 -0
  11. package/dist/types/components/mui-alert/api.d.ts +28 -0
  12. package/dist/types/components/mui-avatar/api.d.ts +28 -0
  13. package/dist/types/components/mui-badge/api.d.ts +28 -0
  14. package/dist/types/components/mui-body/api.d.ts +21 -0
  15. package/dist/types/components/mui-button/api.d.ts +24 -0
  16. package/dist/types/components/mui-button-group/api.d.ts +17 -0
  17. package/dist/types/components/mui-card/api.d.ts +50 -0
  18. package/dist/types/components/mui-carousel/api.d.ts +35 -0
  19. package/dist/types/components/mui-checkbox/api.d.ts +36 -0
  20. package/dist/types/components/mui-chip/api.d.ts +28 -0
  21. package/dist/types/components/mui-chip-input/api.d.ts +36 -0
  22. package/dist/types/components/mui-code/api.d.ts +21 -0
  23. package/dist/types/components/mui-container/api.d.ts +17 -0
  24. package/dist/types/components/mui-dialog/api.d.ts +46 -0
  25. package/dist/types/components/mui-drawer/api.d.ts +39 -0
  26. package/dist/types/components/mui-dropdown/api.d.ts +25 -0
  27. package/dist/types/components/mui-field/api.d.ts +24 -0
  28. package/dist/types/components/mui-file-upload/api.d.ts +16 -0
  29. package/dist/types/components/mui-form-group/api.d.ts +28 -0
  30. package/dist/types/components/mui-form-group/index.d.ts +0 -1
  31. package/dist/types/components/mui-form-message/api.d.ts +17 -0
  32. package/dist/types/components/mui-form-section/api.d.ts +24 -0
  33. package/dist/types/components/mui-form-section-footer/api.d.ts +13 -0
  34. package/dist/types/components/mui-grid/api.d.ts +28 -0
  35. package/dist/types/components/mui-heading/api.d.ts +28 -0
  36. package/dist/types/components/mui-hint/api.d.ts +21 -0
  37. package/dist/types/components/mui-icons/api.d.ts +28 -0
  38. package/dist/types/components/mui-illustrations/api.d.ts +17 -0
  39. package/dist/types/components/mui-image/api.d.ts +24 -0
  40. package/dist/types/components/mui-input/api.d.ts +32 -0
  41. package/dist/types/components/mui-link/api.d.ts +24 -0
  42. package/dist/types/components/mui-list/api.d.ts +32 -0
  43. package/dist/types/components/mui-loader/api.d.ts +17 -0
  44. package/dist/types/components/mui-media-player/api.d.ts +24 -0
  45. package/dist/types/components/mui-message/api.d.ts +28 -0
  46. package/dist/types/components/mui-progress/api.d.ts +24 -0
  47. package/dist/types/components/mui-prompt/api.d.ts +45 -0
  48. package/dist/types/components/mui-prompt-message/api.d.ts +17 -0
  49. package/dist/types/components/mui-prompt-preview/api.d.ts +36 -0
  50. package/dist/types/components/mui-prompt-toggle/api.d.ts +17 -0
  51. package/dist/types/components/mui-quote/api.d.ts +9 -0
  52. package/dist/types/components/mui-radio/api.d.ts +28 -0
  53. package/dist/types/components/mui-radio-group/api.d.ts +28 -0
  54. package/dist/types/components/mui-range-input/api.d.ts +29 -0
  55. package/dist/types/components/mui-responsive/api.d.ts +16 -0
  56. package/dist/types/components/mui-rule/api.d.ts +13 -0
  57. package/dist/types/components/mui-select/api.d.ts +24 -0
  58. package/dist/types/components/mui-skeleton/api.d.ts +28 -0
  59. package/dist/types/components/mui-slat/api.d.ts +42 -0
  60. package/dist/types/components/mui-slide-frame/api.d.ts +28 -0
  61. package/dist/types/components/mui-smart-card/api.d.ts +20 -0
  62. package/dist/types/components/mui-spinner/api.d.ts +13 -0
  63. package/dist/types/components/mui-stack/api.d.ts +54 -0
  64. package/dist/types/components/mui-stepper/api.d.ts +47 -0
  65. package/dist/types/components/mui-switch/api.d.ts +42 -0
  66. package/dist/types/components/mui-table/api.d.ts +65 -0
  67. package/dist/types/components/mui-tabs/api.d.ts +80 -0
  68. package/dist/types/components/mui-textarea/api.d.ts +24 -0
  69. package/package.json +1 -1
@@ -0,0 +1,24 @@
1
+ export declare const muiApi: {
2
+ "mui-select": {
3
+ description: string;
4
+ attributes: ({
5
+ name: string;
6
+ type: {
7
+ text: string;
8
+ };
9
+ description: string;
10
+ default?: undefined;
11
+ } | {
12
+ name: string;
13
+ type: {
14
+ text: string;
15
+ };
16
+ default: string;
17
+ description: string;
18
+ })[];
19
+ events: {
20
+ name: string;
21
+ description: string;
22
+ }[];
23
+ };
24
+ };
@@ -0,0 +1,28 @@
1
+ export declare const muiApi: {
2
+ "mui-skeleton": {
3
+ description: string;
4
+ attributes: ({
5
+ name: string;
6
+ type: {
7
+ text: string;
8
+ };
9
+ default: string;
10
+ description: string;
11
+ } | {
12
+ name: string;
13
+ type: {
14
+ text: string;
15
+ };
16
+ description: string;
17
+ default?: undefined;
18
+ })[];
19
+ slots: {
20
+ name: string;
21
+ description: string;
22
+ }[];
23
+ cssProperties: {
24
+ name: string;
25
+ description: string;
26
+ }[];
27
+ };
28
+ };
@@ -0,0 +1,42 @@
1
+ export declare const muiApi: {
2
+ "mui-slat": {
3
+ description: string;
4
+ attributes: ({
5
+ name: string;
6
+ type: {
7
+ text: string;
8
+ };
9
+ description: string;
10
+ default?: undefined;
11
+ } | {
12
+ name: string;
13
+ type: {
14
+ text: string;
15
+ };
16
+ default: string;
17
+ description: string;
18
+ })[];
19
+ slots: {
20
+ name: string;
21
+ description: string;
22
+ }[];
23
+ cssProperties: {
24
+ name: string;
25
+ description: string;
26
+ }[];
27
+ };
28
+ "mui-slat-group": {
29
+ description: string;
30
+ attributes: {
31
+ name: string;
32
+ type: {
33
+ text: string;
34
+ };
35
+ description: string;
36
+ }[];
37
+ slots: {
38
+ name: string;
39
+ description: string;
40
+ }[];
41
+ };
42
+ };
@@ -0,0 +1,28 @@
1
+ export declare const muiApi: {
2
+ "mui-slide-frame": {
3
+ description: string;
4
+ attributes: ({
5
+ name: string;
6
+ type: {
7
+ text: string;
8
+ };
9
+ default: string;
10
+ description: string;
11
+ } | {
12
+ name: string;
13
+ type: {
14
+ text: string;
15
+ };
16
+ description: string;
17
+ default?: undefined;
18
+ })[];
19
+ slots: {
20
+ name: string;
21
+ description: string;
22
+ }[];
23
+ events: {
24
+ name: string;
25
+ description: string;
26
+ }[];
27
+ };
28
+ };
@@ -0,0 +1,20 @@
1
+ export declare const muiApi: {
2
+ "mui-smart-card": {
3
+ description: string;
4
+ attributes: ({
5
+ name: string;
6
+ type: {
7
+ text: string;
8
+ };
9
+ default: string;
10
+ description: string;
11
+ } | {
12
+ name: string;
13
+ type: {
14
+ text: string;
15
+ };
16
+ description: string;
17
+ default?: undefined;
18
+ })[];
19
+ };
20
+ };
@@ -0,0 +1,13 @@
1
+ export declare const muiApi: {
2
+ "mui-spinner": {
3
+ description: string;
4
+ attributes: {
5
+ name: string;
6
+ type: {
7
+ text: string;
8
+ };
9
+ default: string;
10
+ description: string;
11
+ }[];
12
+ };
13
+ };
@@ -0,0 +1,54 @@
1
+ export declare const muiApi: {
2
+ "mui-h-stack": {
3
+ description: string;
4
+ attributes: ({
5
+ name: string;
6
+ type: {
7
+ text: string;
8
+ };
9
+ default: string;
10
+ description: string;
11
+ } | {
12
+ name: string;
13
+ type: {
14
+ text: string;
15
+ };
16
+ description: string;
17
+ default?: undefined;
18
+ })[];
19
+ slots: {
20
+ name: string;
21
+ description: string;
22
+ }[];
23
+ cssProperties: {
24
+ name: string;
25
+ description: string;
26
+ }[];
27
+ };
28
+ "mui-v-stack": {
29
+ description: string;
30
+ attributes: ({
31
+ name: string;
32
+ type: {
33
+ text: string;
34
+ };
35
+ default: string;
36
+ description: string;
37
+ } | {
38
+ name: string;
39
+ type: {
40
+ text: string;
41
+ };
42
+ description: string;
43
+ default?: undefined;
44
+ })[];
45
+ slots: {
46
+ name: string;
47
+ description: string;
48
+ }[];
49
+ cssProperties: {
50
+ name: string;
51
+ description: string;
52
+ }[];
53
+ };
54
+ };
@@ -0,0 +1,47 @@
1
+ export declare const muiApi: {
2
+ "mui-stepper": {
3
+ description: string;
4
+ attributes: {
5
+ name: string;
6
+ type: {
7
+ text: string;
8
+ };
9
+ default: string;
10
+ description: string;
11
+ }[];
12
+ slots: {
13
+ name: string;
14
+ description: string;
15
+ }[];
16
+ events: {
17
+ name: string;
18
+ description: string;
19
+ }[];
20
+ };
21
+ "mui-step": {
22
+ description: string;
23
+ attributes: ({
24
+ name: string;
25
+ type: {
26
+ text: string;
27
+ };
28
+ description: string;
29
+ default?: undefined;
30
+ } | {
31
+ name: string;
32
+ type: {
33
+ text: string;
34
+ };
35
+ default: string;
36
+ description: string;
37
+ })[];
38
+ slots: {
39
+ name: string;
40
+ description: string;
41
+ }[];
42
+ cssProperties: {
43
+ name: string;
44
+ description: string;
45
+ }[];
46
+ };
47
+ };
@@ -0,0 +1,42 @@
1
+ export declare const muiApi: {
2
+ "mui-switch": {
3
+ description: string;
4
+ members: {
5
+ kind: string;
6
+ name: string;
7
+ type: {
8
+ text: string;
9
+ };
10
+ description: string;
11
+ }[];
12
+ attributes: ({
13
+ name: string;
14
+ type: {
15
+ text: string;
16
+ };
17
+ required: boolean;
18
+ description: string;
19
+ default?: undefined;
20
+ } | {
21
+ name: string;
22
+ type: {
23
+ text: string;
24
+ };
25
+ default: string;
26
+ description: string;
27
+ required?: undefined;
28
+ })[];
29
+ slots: {
30
+ name: string;
31
+ description: string;
32
+ }[];
33
+ events: {
34
+ name: string;
35
+ description: string;
36
+ }[];
37
+ cssProperties: {
38
+ name: string;
39
+ description: string;
40
+ }[];
41
+ };
42
+ };
@@ -0,0 +1,65 @@
1
+ export declare const muiApi: {
2
+ "mui-table": {
3
+ description: string;
4
+ slots: {
5
+ name: string;
6
+ description: string;
7
+ }[];
8
+ };
9
+ "mui-row-group": {
10
+ description: string;
11
+ attributes: {
12
+ name: string;
13
+ type: {
14
+ text: string;
15
+ };
16
+ default: string;
17
+ description: string;
18
+ }[];
19
+ slots: {
20
+ name: string;
21
+ description: string;
22
+ }[];
23
+ };
24
+ "mui-row": {
25
+ description: string;
26
+ attributes: ({
27
+ name: string;
28
+ type: {
29
+ text: string;
30
+ };
31
+ description: string;
32
+ default?: undefined;
33
+ } | {
34
+ name: string;
35
+ type: {
36
+ text: string;
37
+ };
38
+ default: string;
39
+ description: string;
40
+ })[];
41
+ slots: {
42
+ name: string;
43
+ description: string;
44
+ }[];
45
+ cssProperties: {
46
+ name: string;
47
+ description: string;
48
+ }[];
49
+ };
50
+ "mui-cell": {
51
+ description: string;
52
+ attributes: {
53
+ name: string;
54
+ type: {
55
+ text: string;
56
+ };
57
+ default: string;
58
+ description: string;
59
+ }[];
60
+ slots: {
61
+ name: string;
62
+ description: string;
63
+ }[];
64
+ };
65
+ };
@@ -0,0 +1,80 @@
1
+ export declare const muiApi: {
2
+ "mui-tab-bar": {
3
+ description: string;
4
+ attributes: {
5
+ name: string;
6
+ type: {
7
+ text: string;
8
+ };
9
+ default: string;
10
+ description: string;
11
+ }[];
12
+ slots: {
13
+ name: string;
14
+ description: string;
15
+ }[];
16
+ events: {
17
+ name: string;
18
+ description: string;
19
+ }[];
20
+ cssProperties: {
21
+ name: string;
22
+ description: string;
23
+ }[];
24
+ };
25
+ "mui-tab-controller": {
26
+ description: string;
27
+ slots: {
28
+ name: string;
29
+ description: string;
30
+ }[];
31
+ };
32
+ "mui-tab-item": {
33
+ description: string;
34
+ attributes: ({
35
+ name: string;
36
+ type: {
37
+ text: string;
38
+ };
39
+ default: string;
40
+ description: string;
41
+ } | {
42
+ name: string;
43
+ type: {
44
+ text: string;
45
+ };
46
+ description: string;
47
+ default?: undefined;
48
+ })[];
49
+ slots: {
50
+ name: string;
51
+ description: string;
52
+ }[];
53
+ };
54
+ "mui-tab-panel": {
55
+ description: string;
56
+ members: {
57
+ kind: string;
58
+ name: string;
59
+ type: {
60
+ text: string;
61
+ };
62
+ description: string;
63
+ }[];
64
+ attributes: {
65
+ name: string;
66
+ type: {
67
+ text: string;
68
+ };
69
+ description: string;
70
+ }[];
71
+ slots: {
72
+ name: string;
73
+ description: string;
74
+ }[];
75
+ cssProperties: {
76
+ name: string;
77
+ description: string;
78
+ }[];
79
+ };
80
+ };
@@ -0,0 +1,24 @@
1
+ export declare const muiApi: {
2
+ "mui-textarea": {
3
+ description: string;
4
+ attributes: ({
5
+ name: string;
6
+ type: {
7
+ text: string;
8
+ };
9
+ description: string;
10
+ default?: undefined;
11
+ } | {
12
+ name: string;
13
+ type: {
14
+ text: string;
15
+ };
16
+ default: string;
17
+ description: string;
18
+ })[];
19
+ events: {
20
+ name: string;
21
+ description: string;
22
+ }[];
23
+ };
24
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@muibook/components",
3
- "version": "19.4.0",
3
+ "version": "19.5.1",
4
4
  "type": "module",
5
5
  "description": "A library of MUI-based design system components.",
6
6
  "author": "Michael Trilford",