@aws/mynah-ui 4.5.2 → 4.5.4
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/icon.d.ts +2 -0
- package/dist/components/no-tabs.d.ts +9 -0
- package/dist/helper/dom.d.ts +1 -1
- package/dist/main.d.ts +1 -1
- package/dist/main.js +1 -1
- package/dist/main.js.map +1 -1
- package/dist/static.d.ts +3 -0
- package/package.json +1 -1
package/dist/static.d.ts
CHANGED
|
@@ -6,6 +6,7 @@ import { MynahIcons } from './components/icon';
|
|
|
6
6
|
import { ChatItemBodyRenderer } from './helper/dom';
|
|
7
7
|
export interface QuickActionCommand {
|
|
8
8
|
command: string;
|
|
9
|
+
disabled?: boolean;
|
|
9
10
|
description?: string;
|
|
10
11
|
placeholder?: string;
|
|
11
12
|
}
|
|
@@ -273,6 +274,8 @@ export interface ConfigTexts {
|
|
|
273
274
|
tabCloseConfirmationMessage: string;
|
|
274
275
|
tabCloseConfirmationKeepButton: string;
|
|
275
276
|
tabCloseConfirmationCloseButton: string;
|
|
277
|
+
noTabsOpen: string;
|
|
278
|
+
openNewTab: string;
|
|
276
279
|
}
|
|
277
280
|
export interface ConfigOptions {
|
|
278
281
|
feedbackOptions: Array<{
|
package/package.json
CHANGED