@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.
- package/dist/esm/agent/prompts/index.js +3 -3
- package/dist/esm/components/mui-form-group/index.js +14 -34
- package/dist/esm/components/mui-grid/index.js +35 -15
- package/dist/esm/components/mui-stack/hstack/index.js +18 -14
- package/dist/esm/components/mui-stack/vstack/index.js +18 -14
- package/dist/esm/css/mui-brand.css +1 -1
- package/dist/esm/custom-elements.json +4115 -6068
- package/dist/esm/dynamic-attrs.json +6 -6
- package/dist/types/components/mui-accordion/api.d.ts +73 -0
- package/dist/types/components/mui-addon/api.d.ts +28 -0
- package/dist/types/components/mui-alert/api.d.ts +28 -0
- package/dist/types/components/mui-avatar/api.d.ts +28 -0
- package/dist/types/components/mui-badge/api.d.ts +28 -0
- package/dist/types/components/mui-body/api.d.ts +21 -0
- package/dist/types/components/mui-button/api.d.ts +24 -0
- package/dist/types/components/mui-button-group/api.d.ts +17 -0
- package/dist/types/components/mui-card/api.d.ts +50 -0
- package/dist/types/components/mui-carousel/api.d.ts +35 -0
- package/dist/types/components/mui-checkbox/api.d.ts +36 -0
- package/dist/types/components/mui-chip/api.d.ts +28 -0
- package/dist/types/components/mui-chip-input/api.d.ts +36 -0
- package/dist/types/components/mui-code/api.d.ts +21 -0
- package/dist/types/components/mui-container/api.d.ts +17 -0
- package/dist/types/components/mui-dialog/api.d.ts +46 -0
- package/dist/types/components/mui-drawer/api.d.ts +39 -0
- package/dist/types/components/mui-dropdown/api.d.ts +25 -0
- package/dist/types/components/mui-field/api.d.ts +24 -0
- package/dist/types/components/mui-file-upload/api.d.ts +16 -0
- package/dist/types/components/mui-form-group/api.d.ts +28 -0
- package/dist/types/components/mui-form-group/index.d.ts +0 -1
- package/dist/types/components/mui-form-message/api.d.ts +17 -0
- package/dist/types/components/mui-form-section/api.d.ts +24 -0
- package/dist/types/components/mui-form-section-footer/api.d.ts +13 -0
- package/dist/types/components/mui-grid/api.d.ts +28 -0
- package/dist/types/components/mui-heading/api.d.ts +28 -0
- package/dist/types/components/mui-hint/api.d.ts +21 -0
- package/dist/types/components/mui-icons/api.d.ts +28 -0
- package/dist/types/components/mui-illustrations/api.d.ts +17 -0
- package/dist/types/components/mui-image/api.d.ts +24 -0
- package/dist/types/components/mui-input/api.d.ts +32 -0
- package/dist/types/components/mui-link/api.d.ts +24 -0
- package/dist/types/components/mui-list/api.d.ts +32 -0
- package/dist/types/components/mui-loader/api.d.ts +17 -0
- package/dist/types/components/mui-media-player/api.d.ts +24 -0
- package/dist/types/components/mui-message/api.d.ts +28 -0
- package/dist/types/components/mui-progress/api.d.ts +24 -0
- package/dist/types/components/mui-prompt/api.d.ts +45 -0
- package/dist/types/components/mui-prompt-message/api.d.ts +17 -0
- package/dist/types/components/mui-prompt-preview/api.d.ts +36 -0
- package/dist/types/components/mui-prompt-toggle/api.d.ts +17 -0
- package/dist/types/components/mui-quote/api.d.ts +9 -0
- package/dist/types/components/mui-radio/api.d.ts +28 -0
- package/dist/types/components/mui-radio-group/api.d.ts +28 -0
- package/dist/types/components/mui-range-input/api.d.ts +29 -0
- package/dist/types/components/mui-responsive/api.d.ts +16 -0
- package/dist/types/components/mui-rule/api.d.ts +13 -0
- package/dist/types/components/mui-select/api.d.ts +24 -0
- package/dist/types/components/mui-skeleton/api.d.ts +28 -0
- package/dist/types/components/mui-slat/api.d.ts +42 -0
- package/dist/types/components/mui-slide-frame/api.d.ts +28 -0
- package/dist/types/components/mui-smart-card/api.d.ts +20 -0
- package/dist/types/components/mui-spinner/api.d.ts +13 -0
- package/dist/types/components/mui-stack/api.d.ts +54 -0
- package/dist/types/components/mui-stepper/api.d.ts +47 -0
- package/dist/types/components/mui-switch/api.d.ts +42 -0
- package/dist/types/components/mui-table/api.d.ts +65 -0
- package/dist/types/components/mui-tabs/api.d.ts +80 -0
- package/dist/types/components/mui-textarea/api.d.ts +24 -0
- package/package.json +1 -1
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
export declare const muiApi: {
|
|
2
|
+
"mui-form-group": {
|
|
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
|
+
};
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
export declare const muiApi: {
|
|
2
|
+
"mui-form-message": {
|
|
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
|
+
};
|
|
17
|
+
};
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
export declare const muiApi: {
|
|
2
|
+
"mui-form-section": {
|
|
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
|
+
};
|
|
24
|
+
};
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
export declare const muiApi: {
|
|
2
|
+
"mui-grid": {
|
|
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,28 @@
|
|
|
1
|
+
export declare const muiApi: {
|
|
2
|
+
"mui-heading": {
|
|
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,21 @@
|
|
|
1
|
+
export declare const muiApi: {
|
|
2
|
+
"mui-hint": {
|
|
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
|
+
cssProperties: {
|
|
17
|
+
name: string;
|
|
18
|
+
description: string;
|
|
19
|
+
}[];
|
|
20
|
+
};
|
|
21
|
+
};
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
export declare const muiApi: {
|
|
2
|
+
"mui-icon-add": {
|
|
3
|
+
description: string;
|
|
4
|
+
attributes: {
|
|
5
|
+
name: string;
|
|
6
|
+
type: {
|
|
7
|
+
text: string;
|
|
8
|
+
};
|
|
9
|
+
default: string;
|
|
10
|
+
description: string;
|
|
11
|
+
}[];
|
|
12
|
+
};
|
|
13
|
+
"mui-icon-toggle": {
|
|
14
|
+
description: string;
|
|
15
|
+
attributes: {
|
|
16
|
+
name: string;
|
|
17
|
+
type: {
|
|
18
|
+
text: string;
|
|
19
|
+
};
|
|
20
|
+
default: string;
|
|
21
|
+
description: string;
|
|
22
|
+
}[];
|
|
23
|
+
slots: {
|
|
24
|
+
name: string;
|
|
25
|
+
description: string;
|
|
26
|
+
}[];
|
|
27
|
+
};
|
|
28
|
+
};
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
export declare const muiApi: {
|
|
2
|
+
"mui-illustration-trash": {
|
|
3
|
+
description: string;
|
|
4
|
+
attributes: {
|
|
5
|
+
name: string;
|
|
6
|
+
type: {
|
|
7
|
+
text: string;
|
|
8
|
+
};
|
|
9
|
+
default: string;
|
|
10
|
+
description: string;
|
|
11
|
+
}[];
|
|
12
|
+
cssProperties: {
|
|
13
|
+
name: string;
|
|
14
|
+
description: string;
|
|
15
|
+
}[];
|
|
16
|
+
};
|
|
17
|
+
};
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
export declare const muiApi: {
|
|
2
|
+
"mui-image": {
|
|
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
|
+
};
|
|
24
|
+
};
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
export declare const muiApi: {
|
|
2
|
+
"mui-input": {
|
|
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
|
+
cssProperties: {
|
|
28
|
+
name: string;
|
|
29
|
+
description: string;
|
|
30
|
+
}[];
|
|
31
|
+
};
|
|
32
|
+
};
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
export declare const muiApi: {
|
|
2
|
+
"mui-link": {
|
|
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
|
+
};
|
|
24
|
+
};
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
export declare const muiApi: {
|
|
2
|
+
"mui-list": {
|
|
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
|
+
};
|
|
17
|
+
"mui-list-item": {
|
|
18
|
+
description: string;
|
|
19
|
+
attributes: {
|
|
20
|
+
name: string;
|
|
21
|
+
type: {
|
|
22
|
+
text: string;
|
|
23
|
+
};
|
|
24
|
+
default: string;
|
|
25
|
+
description: string;
|
|
26
|
+
}[];
|
|
27
|
+
slots: {
|
|
28
|
+
name: string;
|
|
29
|
+
description: string;
|
|
30
|
+
}[];
|
|
31
|
+
};
|
|
32
|
+
};
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
export declare const muiApi: {
|
|
2
|
+
"mui-loader": {
|
|
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
|
+
};
|
|
17
|
+
};
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
export declare const muiApi: {
|
|
2
|
+
"mui-media-player": {
|
|
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
|
+
cssProperties: {
|
|
20
|
+
name: string;
|
|
21
|
+
description: string;
|
|
22
|
+
}[];
|
|
23
|
+
};
|
|
24
|
+
};
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
export declare const muiApi: {
|
|
2
|
+
"mui-message": {
|
|
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,24 @@
|
|
|
1
|
+
export declare const muiApi: {
|
|
2
|
+
"mui-progress": {
|
|
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
|
+
cssProperties: {
|
|
20
|
+
name: string;
|
|
21
|
+
description: string;
|
|
22
|
+
}[];
|
|
23
|
+
};
|
|
24
|
+
};
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
export declare const muiApi: {
|
|
2
|
+
"mui-prompt": {
|
|
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
|
+
members: ({
|
|
24
|
+
kind: string;
|
|
25
|
+
name: string;
|
|
26
|
+
type: {
|
|
27
|
+
text: string;
|
|
28
|
+
};
|
|
29
|
+
description: string;
|
|
30
|
+
} | {
|
|
31
|
+
kind: string;
|
|
32
|
+
name: string;
|
|
33
|
+
description: string;
|
|
34
|
+
type?: undefined;
|
|
35
|
+
})[];
|
|
36
|
+
events: {
|
|
37
|
+
name: string;
|
|
38
|
+
description: string;
|
|
39
|
+
}[];
|
|
40
|
+
cssProperties: {
|
|
41
|
+
name: string;
|
|
42
|
+
description: string;
|
|
43
|
+
}[];
|
|
44
|
+
};
|
|
45
|
+
};
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
export declare const muiApi: {
|
|
2
|
+
"mui-prompt-message": {
|
|
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
|
+
};
|
|
17
|
+
};
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
export declare const muiApi: {
|
|
2
|
+
"mui-prompt-preview": {
|
|
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
|
+
description: string;
|
|
18
|
+
default?: undefined;
|
|
19
|
+
} | {
|
|
20
|
+
name: string;
|
|
21
|
+
type: {
|
|
22
|
+
text: string;
|
|
23
|
+
};
|
|
24
|
+
default: string;
|
|
25
|
+
description: string;
|
|
26
|
+
})[];
|
|
27
|
+
events: {
|
|
28
|
+
name: string;
|
|
29
|
+
description: string;
|
|
30
|
+
}[];
|
|
31
|
+
cssProperties: {
|
|
32
|
+
name: string;
|
|
33
|
+
description: string;
|
|
34
|
+
}[];
|
|
35
|
+
};
|
|
36
|
+
};
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
export declare const muiApi: {
|
|
2
|
+
"mui-prompt-toggle": {
|
|
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
|
+
};
|
|
17
|
+
};
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
export declare const muiApi: {
|
|
2
|
+
"mui-radio": {
|
|
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,28 @@
|
|
|
1
|
+
export declare const muiApi: {
|
|
2
|
+
"mui-radio-group": {
|
|
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
|
+
events: {
|
|
24
|
+
name: string;
|
|
25
|
+
description: string;
|
|
26
|
+
}[];
|
|
27
|
+
};
|
|
28
|
+
};
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
export declare const muiApi: {
|
|
2
|
+
"mui-range-input": {
|
|
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
|
+
default: string;
|
|
18
|
+
description: string;
|
|
19
|
+
}[];
|
|
20
|
+
events: {
|
|
21
|
+
name: string;
|
|
22
|
+
description: string;
|
|
23
|
+
}[];
|
|
24
|
+
cssProperties: {
|
|
25
|
+
name: string;
|
|
26
|
+
description: string;
|
|
27
|
+
}[];
|
|
28
|
+
};
|
|
29
|
+
};
|