@aws/mynah-ui 4.27.0-beta.1 → 4.27.0-beta.3
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/detailed-list/detailed-list-item.d.ts +10 -3
- package/dist/components/detailed-list/detailed-list-sheet.d.ts +22 -0
- package/dist/components/detailed-list/detailed-list.d.ts +4 -3
- package/dist/components/sheet.d.ts +2 -0
- package/dist/helper/test-ids.d.ts +4 -0
- package/dist/main.d.ts +6 -10
- package/dist/main.js +1 -1
- package/dist/main.js.map +1 -1
- package/dist/static.d.ts +4 -4
- package/package.json +1 -1
package/dist/static.d.ts
CHANGED
|
@@ -165,9 +165,8 @@ export declare enum MynahEventNames {
|
|
|
165
165
|
SHOW_FEEDBACK_FORM = "showFeedbackForm",
|
|
166
166
|
OPEN_SHEET = "openSheet",
|
|
167
167
|
CLOSE_SHEET = "closeSheet",
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
DETAIL_ITEM_CLICK = "detailItemClick",
|
|
168
|
+
OPEN_DETAILED_LIST = "openDetailedList",
|
|
169
|
+
CLOSE_DETAILED_LIST = "closeDetailedList",
|
|
171
170
|
FILE_CLICK = "fileClick",
|
|
172
171
|
FILE_ACTION_CLICK = "fileActionClick",
|
|
173
172
|
TAB_FOCUS = "tabFocus",
|
|
@@ -223,6 +222,8 @@ export interface DetailedList {
|
|
|
223
222
|
icon?: MynahIcons | MynahIconsType;
|
|
224
223
|
description?: string;
|
|
225
224
|
};
|
|
225
|
+
selectable?: boolean;
|
|
226
|
+
textDirection?: 'row' | 'column';
|
|
226
227
|
}
|
|
227
228
|
export interface DetailedListItemGroup {
|
|
228
229
|
groupName?: string;
|
|
@@ -238,7 +239,6 @@ export interface DetailedListItem {
|
|
|
238
239
|
description?: string;
|
|
239
240
|
disabled?: boolean;
|
|
240
241
|
followupText?: string;
|
|
241
|
-
clickable?: boolean;
|
|
242
242
|
actions?: ChatItemButton[];
|
|
243
243
|
children?: DetailedListItemGroup[];
|
|
244
244
|
keywords?: 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.27.0-beta.
|
|
4
|
+
"version": "4.27.0-beta.3",
|
|
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",
|