is there any list of the valid values for the Ext.Widget "ui" config option available? https://docs.sencha.com/extjs/7.4.0/modern/Ext.Widget.html#cfg-ui
I know, some of them are 'alt', 'raised', 'solo', but the documentation does not provide any of them.
Searched within the docs/examples without success.
These
uiconfiguration values are specific to the different widget classes, so you need to look for them elsewhere, not in the genericExt.Widgetclass.For example to get the possibilities for buttons:
Head to
Ext-Buttonin the documentation.Enter "ui" into the
Filter members...editbox in the top right cornet.Click on
theme variablesabove to check the possibilities (action, alt, confirm, decline, flat, plain, raised, round, segmented, square).Also check
theme mixinsfor variations.