Optional
source: DeepPartial<ManualCountEditDialog>Configuration of the edit dialog's cancel button. Hiding both the update and cancel buttons simultaneously is an undefined behavior.
new ButtonConfiguration({
"visible": true,
"text": "Cancel",
"background": new BackgroundStyle({
"strokeColor": "#00000000",
"fillColor": "#00000000",
"strokeWidth": 1.0
}),
"foreground": new ForegroundStyle({
"iconVisible": false,
"color": "?sbColorPrimary",
"useShadow": false
})
});
Configuration of the edit dialog's button to clear the entered count number.
new IconStyle({
"visible": true,
"color": "?sbColorOnSurfaceVariant"
});
Color of the divider and separator lines in the edit dialog.
"?sbColorOutline";
Configuration of the edit dialog's info text.
new StyledText({
"text": "Adjust the number of items you scanned.",
"color": "?sbColorOnSurfaceVariant"
});
Background color of the overlay surrounding the edit dialog.
"?sbColorModalOverlay";
Color of the edit dialog's background.
"?sbColorSurface";
Configuration of the edit dialog's title.
new StyledText({
"text": "Update count",
"color": "?sbColorOnSurface"
});
Configuration of the edit dialog's confirm button. Hiding both the update and cancel buttons simultaneously is an undefined behavior.
new ButtonConfiguration({
"visible": true,
"text": "Update",
"background": new BackgroundStyle({
"strokeColor": "?sbColorPrimary",
"fillColor": "?sbColorPrimary",
"strokeWidth": 1.0
}),
"foreground": new ForegroundStyle({
"iconVisible": false,
"color": "?sbColorOnPrimary",
"useShadow": false
})
});
Generated using TypeDoc
Configuration of the dialog to manually edit the barcode count.