Fixed #6059
parent
19f8e584a5
commit
ac1931de13
|
@ -7,7 +7,7 @@ export default {
|
||||||
extends: BaseComponent,
|
extends: BaseComponent,
|
||||||
props: {
|
props: {
|
||||||
value: {
|
value: {
|
||||||
type: String,
|
type: [String, Number],
|
||||||
default: undefined
|
default: undefined
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
|
@ -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 {
|
||||||
|
|
|
@ -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.
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -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 {
|
||||||
|
|
|
@ -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.
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in New Issue