pull/6138/head
tugcekucukoglu 2024-07-31 15:45:04 +03:00
parent 19f8e584a5
commit ac1931de13
5 changed files with 1 additions and 21 deletions

View File

@ -7,7 +7,7 @@ export default {
extends: BaseComponent,
props: {
value: {
type: String,
type: [String, Number],
default: undefined
}
},

View File

@ -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 {

View File

@ -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.
*/

View File

@ -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 {

View File

@ -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.
*/