@aws/mynah-ui 4.0.4 → 4.1.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/components/card/card-body.d.ts +1 -0
- 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.js +1 -1
- package/dist/main.js.map +1 -1
- package/dist/static.d.ts +2 -0
- package/package.json +4 -2
- package/postinstall.js +5 -0
package/dist/static.d.ts
CHANGED
|
@@ -106,6 +106,8 @@ export interface ChatItem {
|
|
|
106
106
|
};
|
|
107
107
|
codeReference?: ReferenceTrackerInformation[];
|
|
108
108
|
fileList?: {
|
|
109
|
+
fileTreeTitle?: string;
|
|
110
|
+
rootFolderTitle?: string;
|
|
109
111
|
filePaths?: string[];
|
|
110
112
|
deletedFiles?: string[];
|
|
111
113
|
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.1.1",
|
|
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,10 +14,12 @@
|
|
|
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 \"./**\"",
|
|
20
|
-
"test": "jest"
|
|
21
|
+
"test": "jest",
|
|
22
|
+
"postinstall": "node postinstall.js"
|
|
21
23
|
},
|
|
22
24
|
"dependencies": {
|
|
23
25
|
"marked": "^7.0.3",
|