@aws/mynah-ui 4.0.1 → 4.0.3
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/chat-item/chat-prompt-input.d.ts +1 -1
- package/dist/components/navigation-tabs.d.ts +4 -0
- package/dist/components/toggle.d.ts +1 -1
- package/dist/helper/config.d.ts +6 -2
- package/dist/helper/dom.d.ts +7 -1
- 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 +32 -24
- package/package.json +1 -1
package/dist/static.d.ts
CHANGED
|
@@ -210,34 +210,42 @@ export declare enum NotificationType {
|
|
|
210
210
|
WARNING = "warning",
|
|
211
211
|
ERROR = "error"
|
|
212
212
|
}
|
|
213
|
-
export interface
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
213
|
+
export interface ConfigTexts {
|
|
214
|
+
mainTitle: string;
|
|
215
|
+
feedbackFormTitle: string;
|
|
216
|
+
feedbackFormOptionsLabel: string;
|
|
217
|
+
feedbackFormCommentLabel: string;
|
|
218
|
+
feedbackThanks: string;
|
|
219
|
+
feedbackReportButtonLabel: string;
|
|
220
|
+
codeSuggestions: string;
|
|
221
|
+
clickFileToViewDiff: string;
|
|
222
|
+
files: string;
|
|
223
|
+
insertAtCursorLabel: string;
|
|
224
|
+
copy: string;
|
|
225
|
+
showMore: string;
|
|
226
|
+
save: string;
|
|
227
|
+
cancel: string;
|
|
228
|
+
submit: string;
|
|
229
|
+
pleaseSelect: string;
|
|
230
|
+
stopGenerating: string;
|
|
231
|
+
copyToClipboard: string;
|
|
232
|
+
noMoreTabsTooltip: string;
|
|
233
|
+
codeSuggestionWithReferenceTitle: string;
|
|
234
|
+
spinnerText: string;
|
|
235
|
+
tabCloseConfirmationMessage: string;
|
|
236
|
+
tabCloseConfirmationKeepButton: string;
|
|
237
|
+
tabCloseConfirmationCloseButton: string;
|
|
238
|
+
}
|
|
239
|
+
export interface ConfigOptions {
|
|
237
240
|
feedbackOptions: Array<{
|
|
238
241
|
label: string;
|
|
239
242
|
value: string;
|
|
240
243
|
}>;
|
|
241
244
|
maxTabs: number;
|
|
242
245
|
showPromptField: boolean;
|
|
246
|
+
autoFocus: boolean;
|
|
247
|
+
maxUserInput: number;
|
|
248
|
+
}
|
|
249
|
+
export interface ConfigModel extends ConfigOptions {
|
|
250
|
+
texts: Partial<ConfigTexts>;
|
|
243
251
|
}
|
package/package.json
CHANGED