@aws/mynah-ui 4.7.1 → 4.8.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/CONTRIBUTING.md +3 -0
- package/README.md +5 -0
- package/dist/components/card/card-body.d.ts +5 -0
- package/dist/main.d.ts +1 -0
- package/dist/main.js +1 -1
- package/dist/main.js.map +1 -1
- package/dist/static.d.ts +1 -0
- package/package.json +5 -3
package/dist/static.d.ts
CHANGED
|
@@ -113,6 +113,7 @@ export declare enum MynahEventNames {
|
|
|
113
113
|
SHOW_FEEDBACK_FORM = "showFeedbackForm",
|
|
114
114
|
FILE_CLICK = "fileClick",
|
|
115
115
|
FILE_ACTION_CLICK = "fileActionClick",
|
|
116
|
+
TAB_FOCUS = "tabFocus",
|
|
116
117
|
CUSTOM_FORM_ACTION_CLICK = "customFormActionClick",
|
|
117
118
|
ADD_CODE_SNIPPET = "addCodeSnippet",
|
|
118
119
|
REMOVE_CODE_SNIPPET = "removeCodeSnippet",
|
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.8.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",
|
|
@@ -19,11 +19,13 @@
|
|
|
19
19
|
"lint-fix": "npx eslint \"./**\" --fix",
|
|
20
20
|
"lint": "npx eslint \"./**\"",
|
|
21
21
|
"test": "jest",
|
|
22
|
+
"api-docs": "npx typedoc src/main.ts --out ./api-docs",
|
|
23
|
+
"api-doc-deploy": "npx typedoc src/main.ts --out ./example/dist/api-doc",
|
|
22
24
|
"postinstall": "node postinstall.js"
|
|
23
25
|
},
|
|
24
26
|
"dependencies": {
|
|
25
27
|
"just-clone": "^6.2.0",
|
|
26
|
-
"marked": "^
|
|
28
|
+
"marked": "^12.0.2",
|
|
27
29
|
"prismjs": "1.29.0",
|
|
28
30
|
"sanitize-html": "^2.12.1",
|
|
29
31
|
"unescape-html": "^1.1.0"
|
|
@@ -36,7 +38,6 @@
|
|
|
36
38
|
"@types/glob": "7.1.3",
|
|
37
39
|
"@types/jest": "^29.5.5",
|
|
38
40
|
"@types/json-schema": "7.0.7",
|
|
39
|
-
"@types/marked": "^5.0.1",
|
|
40
41
|
"@types/node": "17.0.29",
|
|
41
42
|
"@types/prismjs": "^1.26.2",
|
|
42
43
|
"@types/sanitize-html": "^2.11.0",
|
|
@@ -66,6 +67,7 @@
|
|
|
66
67
|
"ts-jest": "^29.1.1",
|
|
67
68
|
"ts-loader": "^9.4.4",
|
|
68
69
|
"ts-node": "^10.9.1",
|
|
70
|
+
"typedoc": "^0.25.13",
|
|
69
71
|
"typescript": "^5.0.4",
|
|
70
72
|
"webpack": "5.76.0",
|
|
71
73
|
"webpack-cli": "4.7.2"
|