Fixed #5823 #5824 - New Stepper implementation

This commit is contained in:
tugcekucukoglu 2024-06-04 09:23:00 +03:00
parent ff0df14ed7
commit 033a50fcbb
51 changed files with 1571 additions and 693 deletions

View file

@ -0,0 +1,16 @@
import BaseStyle from 'primevue/base/style';
const classes = {
root: ({ instance }) => [
'p-steppanel',
{
'p-steppanel-active': instance.isVertical && instance.active
}
],
content: 'p-steppanel-content'
};
export default BaseStyle.extend({
name: 'steppanel',
classes
});