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, extends: BaseComponent,
props: { props: {
value: { value: {
type: String, type: [String, Number],
default: undefined default: undefined
} }
}, },

View File

@ -5,12 +5,6 @@ import StepListStyle from 'primevue/steplist/style';
export default { export default {
name: 'BaseStepList', name: 'BaseStepList',
extends: BaseComponent, extends: BaseComponent,
props: {
value: {
type: String,
default: undefined
}
},
style: StepListStyle, style: StepListStyle,
provide() { provide() {
return { return {

View File

@ -64,10 +64,6 @@ export interface StepListPassThroughAttributes {
* Defines valid properties in StepList component. * Defines valid properties in StepList component.
*/ */
export interface StepListProps { export interface StepListProps {
/**
* Value of step.
*/
value: string;
/** /**
* It generates scoped CSS variables using design tokens for the component. * 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 { export default {
name: 'BaseStepPanels', name: 'BaseStepPanels',
extends: BaseComponent, extends: BaseComponent,
props: {
value: {
type: String,
default: undefined
}
},
style: StepPanelsStyle, style: StepPanelsStyle,
provide() { provide() {
return { return {

View File

@ -64,10 +64,6 @@ export interface StepPanelsPassThroughAttributes {
* Defines valid properties in StepPanels component. * Defines valid properties in StepPanels component.
*/ */
export interface StepPanelsProps { export interface StepPanelsProps {
/**
* Value of step.
*/
value: string;
/** /**
* It generates scoped CSS variables using design tokens for the component. * It generates scoped CSS variables using design tokens for the component.
*/ */