@aws/mynah-ui 4.17.0 → 4.18.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/background.d.ts +10 -0
- package/dist/components/button.d.ts +4 -3
- package/dist/components/card/card-body.d.ts +1 -1
- package/dist/components/chat-item/chat-item-buttons.d.ts +1 -1
- package/dist/components/chat-item/chat-item-card-content.d.ts +2 -2
- package/dist/components/chat-item/chat-item-card.d.ts +4 -1
- package/dist/components/chat-item/chat-item-information-card.d.ts +5 -13
- package/dist/components/chat-item/chat-item-tabbed-card.d.ts +17 -0
- package/dist/components/chat-item/chat-item-tree-file.d.ts +1 -0
- package/dist/components/chat-item/chat-prompt-input.d.ts +3 -1
- package/dist/components/chat-item/chat-wrapper.d.ts +4 -0
- package/dist/components/icon.d.ts +1 -0
- package/dist/components/syntax-highlighter.d.ts +0 -21
- package/dist/components/title-description-with-icon.d.ts +20 -0
- package/dist/helper/chat-item.d.ts +2 -1
- package/dist/helper/dom.d.ts +1 -1
- package/dist/helper/test-ids.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 +51 -13
- package/docs/CONFIG.md +3 -0
- package/docs/DATAMODEL.md +354 -32
- package/docs/img/data-model/chatItems/actions.png +0 -0
- package/docs/img/data-model/chatItems/buttonFlash.png +0 -0
- package/docs/img/data-model/chatItems/confirmationButtons.png +0 -0
- package/docs/img/data-model/chatItems/hoverEffect.png +0 -0
- package/docs/img/data-model/chatItems/tabbed-card.png +0 -0
- package/docs/img/data-model/tabStore/compactMode.png +0 -0
- package/docs/img/data-model/tabStore/promptInputLabel.png +0 -0
- package/docs/img/data-model/tabStore/promptInputText.png +0 -0
- package/docs/img/data-model/tabStore/promptInputVisible.png +0 -0
- package/docs/img/data-model/tabStore/tabBackground.png +0 -0
- package/docs/img/data-model/tabStore/tabHeaderDetails.png +0 -0
- package/docs/img/data-model/tabStore/tabHeaderDetails2.png +0 -0
- package/package.json +2 -2
- package/ui-tests/dist/main.js +1 -1
- package/ui-tests/dist/main.js.map +1 -1
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
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.18.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",
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
"tests:e2e": "cd ./ui-tests && npm install && npm run prepare && npm run e2e",
|
|
32
32
|
"api-docs": "npx typedoc src/main.ts --out ./api-docs",
|
|
33
33
|
"api-doc-deploy": "npx typedoc src/main.ts --out ./example/dist/api-doc",
|
|
34
|
-
"postinstall": "
|
|
34
|
+
"postinstall": "node postinstall.js",
|
|
35
35
|
"prepare": "npx husky"
|
|
36
36
|
},
|
|
37
37
|
"dependencies": {
|