@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/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.0.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",
package/postinstall.js ADDED
@@ -0,0 +1,5 @@
1
+ const deprecationList = [
2
+ 'Config.texts.clickFileToViewDiff will be deprecated on next major version change!'
3
+ ];
4
+
5
+ deprecationList.forEach(deprecationItem => console.log(deprecationItem));