@aws/mynah-ui 4.32.0 → 4.32.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/components/button.d.ts +1 -1
- package/dist/main.js +1 -1
- package/dist/main.js.map +1 -1
- package/dist/static.d.ts +1 -1
- package/docs/DATAMODEL.md +1 -1
- package/package.json +1 -1
- package/ui-tests/dist/main.js +1 -1
- package/ui-tests/dist/main.js.map +1 -1
- package/ui-tests/package.json +1 -1
package/dist/static.d.ts
CHANGED
|
@@ -439,7 +439,7 @@ export interface ChatItemAction extends ChatPrompt {
|
|
|
439
439
|
export interface ChatItemButton extends Omit<Action, 'status'> {
|
|
440
440
|
keepCardAfterClick?: boolean;
|
|
441
441
|
waitMandatoryFormItems?: boolean;
|
|
442
|
-
status?: 'main' | 'primary' | 'clear' | Status;
|
|
442
|
+
status?: 'main' | 'primary' | 'clear' | 'dimmed-clear' | Status;
|
|
443
443
|
flash?: 'infinite' | 'once';
|
|
444
444
|
fillState?: 'hover' | 'always';
|
|
445
445
|
position?: 'inside' | 'outside';
|
package/docs/DATAMODEL.md
CHANGED
|
@@ -2380,7 +2380,7 @@ interface ChatItemButton {
|
|
|
2380
2380
|
id: string; // id of the button, since when they are clicked they all call the same property onInBodyButtonClicked
|
|
2381
2381
|
disabled?: boolean; // in any case if you want to make the button disabled (mandatory check will discard this)
|
|
2382
2382
|
description?: string; // A text to be shown inside a tooltip and it can be markdown
|
|
2383
|
-
status?: 'main' | 'primary' | 'clear' | Status;
|
|
2383
|
+
status?: 'main' | 'primary' | 'clear' | 'dimmed-clear' | Status;
|
|
2384
2384
|
flash?: 'infinite' | 'once'; // Flashes the card
|
|
2385
2385
|
fillState?: 'hover' | 'always'; // background is filled always or only when hover
|
|
2386
2386
|
icon?: MynahIcons; // in case if you want to put an icon to the button.
|
package/package.json
CHANGED