Fixed #6059
parent
19f8e584a5
commit
ac1931de13
|
@ -7,7 +7,7 @@ export default {
|
|||
extends: BaseComponent,
|
||||
props: {
|
||||
value: {
|
||||
type: String,
|
||||
type: [String, Number],
|
||||
default: undefined
|
||||
}
|
||||
},
|
||||
|
|
|
@ -5,12 +5,6 @@ import StepListStyle from 'primevue/steplist/style';
|
|||
export default {
|
||||
name: 'BaseStepList',
|
||||
extends: BaseComponent,
|
||||
props: {
|
||||
value: {
|
||||
type: String,
|
||||
default: undefined
|
||||
}
|
||||
},
|
||||
style: StepListStyle,
|
||||
provide() {
|
||||
return {
|
||||
|
|
|
@ -64,10 +64,6 @@ export interface StepListPassThroughAttributes {
|
|||
* Defines valid properties in StepList component.
|
||||
*/
|
||||
export interface StepListProps {
|
||||
/**
|
||||
* Value of step.
|
||||
*/
|
||||
value: string;
|
||||
/**
|
||||
* It generates scoped CSS variables using design tokens for the component.
|
||||
*/
|
||||
|
|
|
@ -5,12 +5,6 @@ import StepPanelsStyle from 'primevue/steppanels/style';
|
|||
export default {
|
||||
name: 'BaseStepPanels',
|
||||
extends: BaseComponent,
|
||||
props: {
|
||||
value: {
|
||||
type: String,
|
||||
default: undefined
|
||||
}
|
||||
},
|
||||
style: StepPanelsStyle,
|
||||
provide() {
|
||||
return {
|
||||
|
|
|
@ -64,10 +64,6 @@ export interface StepPanelsPassThroughAttributes {
|
|||
* Defines valid properties in StepPanels component.
|
||||
*/
|
||||
export interface StepPanelsProps {
|
||||
/**
|
||||
* Value of step.
|
||||
*/
|
||||
value: string;
|
||||
/**
|
||||
* It generates scoped CSS variables using design tokens for the component.
|
||||
*/
|
||||
|
|
Loading…
Reference in New Issue