@aws/mynah-ui 4.1.0 → 4.2.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.
- package/dist/components/chat-item/chat-item-card.d.ts +2 -0
- package/dist/components/chat-item/chat-item-tree-view-wrapper.d.ts +2 -0
- package/dist/helper/file-tree.d.ts +1 -1
- package/dist/main.d.ts +22 -19
- package/dist/main.js +1 -1
- package/dist/main.js.map +1 -1
- package/dist/static.d.ts +5 -0
- package/package.json +2 -1
package/dist/static.d.ts
CHANGED
|
@@ -14,6 +14,9 @@ export interface QuickActionCommandGroup {
|
|
|
14
14
|
}
|
|
15
15
|
export interface MynahUIDataModel {
|
|
16
16
|
tabTitle?: string;
|
|
17
|
+
tabCloseConfirmationMessage?: string | null;
|
|
18
|
+
tabCloseConfirmationKeepButton?: string | null;
|
|
19
|
+
tabCloseConfirmationCloseButton?: string | null;
|
|
17
20
|
loadingChat?: boolean;
|
|
18
21
|
showChatAvatars?: boolean;
|
|
19
22
|
cancelButtonWhenLoading?: boolean;
|
|
@@ -106,6 +109,8 @@ export interface ChatItem {
|
|
|
106
109
|
};
|
|
107
110
|
codeReference?: ReferenceTrackerInformation[];
|
|
108
111
|
fileList?: {
|
|
112
|
+
fileTreeTitle?: string;
|
|
113
|
+
rootFolderTitle?: string;
|
|
109
114
|
filePaths?: string[];
|
|
110
115
|
deletedFiles?: string[];
|
|
111
116
|
actions?: Record<string, FileNodeAction[]>;
|
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.
|
|
4
|
+
"version": "4.2.0",
|
|
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",
|
|
@@ -14,6 +14,7 @@
|
|
|
14
14
|
"scripts": {
|
|
15
15
|
"clean": "rm -rf dist node_modules",
|
|
16
16
|
"build": "rm -rf dist && webpack --config webpack.config.js --mode production",
|
|
17
|
+
"packdemo": "cd ./example && npm run pack",
|
|
17
18
|
"watch": "webpack --config webpack.config.js --mode development --watch",
|
|
18
19
|
"lint-fix": "npx eslint \"./**\" --fix",
|
|
19
20
|
"lint": "npx eslint \"./**\"",
|