@aws/mynah-ui 4.26.0-beta.2 → 4.26.0-beta.4
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/components/chat-item/chat-wrapper.d.ts +4 -1
- package/dist/components/detailed-list/detailed-list.d.ts +12 -6
- package/dist/helper/test-ids.d.ts +2 -0
- package/dist/main.js +1 -1
- package/dist/main.js.map +1 -1
- package/dist/static.d.ts +7 -5
- package/package.json +1 -1
- package/test-config/config.js +1 -0
package/dist/static.d.ts
CHANGED
|
@@ -212,11 +212,12 @@ export declare enum ChatItemType {
|
|
|
212
212
|
}
|
|
213
213
|
export interface DetailedList {
|
|
214
214
|
filterOptions?: FilterOption[] | null;
|
|
215
|
-
actions?: Action[];
|
|
216
|
-
title?: string;
|
|
217
|
-
icon?: MynahIcons | MynahIconsType;
|
|
218
|
-
description?: string;
|
|
219
215
|
list?: DetailedListItemGroup[];
|
|
216
|
+
header?: {
|
|
217
|
+
title?: string;
|
|
218
|
+
icon?: MynahIcons | MynahIconsType;
|
|
219
|
+
description?: string;
|
|
220
|
+
};
|
|
220
221
|
}
|
|
221
222
|
export interface DetailedListItemGroup {
|
|
222
223
|
groupName?: string;
|
|
@@ -225,7 +226,8 @@ export interface DetailedListItemGroup {
|
|
|
225
226
|
children?: DetailedListItem[];
|
|
226
227
|
}
|
|
227
228
|
export interface DetailedListItem {
|
|
228
|
-
title
|
|
229
|
+
title?: string;
|
|
230
|
+
name?: string;
|
|
229
231
|
id?: string;
|
|
230
232
|
icon?: MynahIcons | MynahIconsType;
|
|
231
233
|
description?: string;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws/mynah-ui",
|
|
3
3
|
"displayName": "AWS Mynah UI",
|
|
4
|
-
"version": "4.26.0-beta.
|
|
4
|
+
"version": "4.26.0-beta.4",
|
|
5
5
|
"description": "AWS Toolkit VSCode and Intellij IDE Extension Mynah UI",
|
|
6
6
|
"publisher": "Amazon Web Services",
|
|
7
7
|
"license": "Apache License 2.0",
|
package/test-config/config.js
CHANGED