Linear Stepper added
parent
15c7860624
commit
874c321b51
|
@ -0,0 +1,174 @@
|
||||||
|
<template>
|
||||||
|
<DocSectionText v-bind="$attrs">
|
||||||
|
<p>Stepper consists of one or more StepperPanel elements.</p>
|
||||||
|
</DocSectionText>
|
||||||
|
<div class="card">
|
||||||
|
<Stepper v-model:activeStep="active" linear>
|
||||||
|
<StepperPanel header="Header I">
|
||||||
|
<template #content="{ prevCallback, nextCallback }">
|
||||||
|
<div class="flex flex-column h-12rem">
|
||||||
|
<div class="border-2 border-dashed surface-border border-round surface-ground flex-auto flex justify-content-center align-items-center font-medium">Content I</div>
|
||||||
|
</div>
|
||||||
|
<div class="flex pt-4 justify-content-between">
|
||||||
|
<Button label="Back" severity="secondary" icon="pi pi-arrow-left" disabled @click="prevCallback" />
|
||||||
|
<Button label="Next" severity="contrast" icon="pi pi-arrow-right" iconPos="right" @click="nextCallback" />
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
</StepperPanel>
|
||||||
|
<StepperPanel header="Header II">
|
||||||
|
<template #content="{ prevCallback, nextCallback }">
|
||||||
|
<div class="flex flex-column h-12rem">
|
||||||
|
<div class="border-2 border-dashed surface-border border-round surface-ground flex-auto flex justify-content-center align-items-center font-medium">Content II</div>
|
||||||
|
</div>
|
||||||
|
<div class="flex pt-4 justify-content-between">
|
||||||
|
<Button label="Back" severity="secondary" icon="pi pi-arrow-left" @click="prevCallback" />
|
||||||
|
<Button label="Next" severity="contrast" icon="pi pi-arrow-right" iconPos="right" @click="nextCallback" />
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
</StepperPanel>
|
||||||
|
<StepperPanel header="Header III">
|
||||||
|
<template #content="{ prevCallback, nextCallback }">
|
||||||
|
<div class="flex flex-column h-12rem">
|
||||||
|
<div class="border-2 border-dashed surface-border border-round surface-ground flex-auto flex justify-content-center align-items-center font-medium">Content III</div>
|
||||||
|
</div>
|
||||||
|
<div class="flex pt-4 justify-content-between">
|
||||||
|
<Button label="Back" severity="secondary" icon="pi pi-arrow-left" @click="prevCallback" />
|
||||||
|
<Button label="Next" severity="contrast" icon="pi pi-arrow-right" disabled iconPos="right" @click="nextCallback" />
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
</StepperPanel>
|
||||||
|
</Stepper>
|
||||||
|
</div>
|
||||||
|
<DocSectionCode :code="code" />
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
export default {
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
active: 0,
|
||||||
|
code: {
|
||||||
|
basic: `
|
||||||
|
<Stepper>
|
||||||
|
<StepperPanel header="Header I">
|
||||||
|
<template #content="{ prevCallback, nextCallback }">
|
||||||
|
<div class="flex flex-column h-12rem">
|
||||||
|
<div class="border-2 border-dashed surface-border border-round surface-ground flex-auto flex justify-content-center align-items-center font-medium">Content I</div>
|
||||||
|
</div>
|
||||||
|
<div class="flex pt-4 justify-content-between">
|
||||||
|
<Button label="Back" severity="secondary" icon="pi pi-arrow-left" disabled @click="prevCallback" />
|
||||||
|
<Button label="Next" severity="contrast" icon="pi pi-arrow-right" iconPos="right" @click="nextCallback" />
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
</StepperPanel>
|
||||||
|
<StepperPanel header="Header II">
|
||||||
|
<template #content="{ prevCallback, nextCallback }">
|
||||||
|
<div class="flex flex-column h-12rem">
|
||||||
|
<div class="border-2 border-dashed surface-border border-round surface-ground flex-auto flex justify-content-center align-items-center font-medium">Content II</div>
|
||||||
|
</div>
|
||||||
|
<div class="flex pt-4 justify-content-between">
|
||||||
|
<Button label="Back" severity="secondary" icon="pi pi-arrow-left" @click="prevCallback" />
|
||||||
|
<Button label="Next" severity="contrast" icon="pi pi-arrow-right" iconPos="right" @click="nextCallback" />
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
</StepperPanel>
|
||||||
|
<StepperPanel header="Header III">
|
||||||
|
<template #content="{ prevCallback, nextCallback }">
|
||||||
|
<div class="flex flex-column h-12rem">
|
||||||
|
<div class="border-2 border-dashed surface-border border-round surface-ground flex-auto flex justify-content-center align-items-center font-medium">Content III</div>
|
||||||
|
</div>
|
||||||
|
<div class="flex pt-4 justify-content-between">
|
||||||
|
<Button label="Back" severity="secondary" icon="pi pi-arrow-left" @click="prevCallback" />
|
||||||
|
<Button label="Next" severity="contrast" icon="pi pi-arrow-right" disabled iconPos="right" @click="nextCallback" />
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
</StepperPanel>
|
||||||
|
</Stepper>
|
||||||
|
`,
|
||||||
|
options: `
|
||||||
|
<template>
|
||||||
|
<div class="card">
|
||||||
|
<Stepper>
|
||||||
|
<StepperPanel header="Header I">
|
||||||
|
<template #content="{ prevCallback, nextCallback }">
|
||||||
|
<div class="flex flex-column h-12rem">
|
||||||
|
<div class="border-2 border-dashed surface-border border-round surface-ground flex-auto flex justify-content-center align-items-center font-medium">Content I</div>
|
||||||
|
</div>
|
||||||
|
<div class="flex pt-4 justify-content-between">
|
||||||
|
<Button label="Back" severity="secondary" icon="pi pi-arrow-left" disabled @click="prevCallback" />
|
||||||
|
<Button label="Next" severity="contrast" icon="pi pi-arrow-right" iconPos="right" @click="nextCallback" />
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
</StepperPanel>
|
||||||
|
<StepperPanel header="Header II">
|
||||||
|
<template #content="{ prevCallback, nextCallback }">
|
||||||
|
<div class="flex flex-column h-12rem">
|
||||||
|
<div class="border-2 border-dashed surface-border border-round surface-ground flex-auto flex justify-content-center align-items-center font-medium">Content II</div>
|
||||||
|
</div>
|
||||||
|
<div class="flex pt-4 justify-content-between">
|
||||||
|
<Button label="Back" severity="secondary" icon="pi pi-arrow-left" @click="prevCallback" />
|
||||||
|
<Button label="Next" severity="contrast" icon="pi pi-arrow-right" iconPos="right" @click="nextCallback" />
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
</StepperPanel>
|
||||||
|
<StepperPanel header="Header III">
|
||||||
|
<template #content="{ prevCallback, nextCallback }">
|
||||||
|
<div class="flex flex-column h-12rem">
|
||||||
|
<div class="border-2 border-dashed surface-border border-round surface-ground flex-auto flex justify-content-center align-items-center font-medium">Content III</div>
|
||||||
|
</div>
|
||||||
|
<div class="flex pt-4 justify-content-between">
|
||||||
|
<Button label="Back" severity="secondary" icon="pi pi-arrow-left" @click="prevCallback" />
|
||||||
|
<Button label="Next" severity="contrast" icon="pi pi-arrow-right" disabled iconPos="right" @click="nextCallback" />
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
</StepperPanel>
|
||||||
|
</Stepper>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
`,
|
||||||
|
composition: `
|
||||||
|
<template>
|
||||||
|
<div class="card">
|
||||||
|
<Stepper>
|
||||||
|
<StepperPanel header="Header I">
|
||||||
|
<template #content="{ prevCallback, nextCallback }">
|
||||||
|
<div class="flex flex-column h-12rem">
|
||||||
|
<div class="border-2 border-dashed surface-border border-round surface-ground flex-auto flex justify-content-center align-items-center font-medium">Content I</div>
|
||||||
|
</div>
|
||||||
|
<div class="flex pt-4 justify-content-between">
|
||||||
|
<Button label="Back" severity="secondary" icon="pi pi-arrow-left" disabled @click="prevCallback" />
|
||||||
|
<Button label="Next" severity="contrast" icon="pi pi-arrow-right" iconPos="right" @click="nextCallback" />
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
</StepperPanel>
|
||||||
|
<StepperPanel header="Header II">
|
||||||
|
<template #content="{ prevCallback, nextCallback }">
|
||||||
|
<div class="flex flex-column h-12rem">
|
||||||
|
<div class="border-2 border-dashed surface-border border-round surface-ground flex-auto flex justify-content-center align-items-center font-medium">Content II</div>
|
||||||
|
</div>
|
||||||
|
<div class="flex pt-4 justify-content-between">
|
||||||
|
<Button label="Back" severity="secondary" icon="pi pi-arrow-left" @click="prevCallback" />
|
||||||
|
<Button label="Next" severity="contrast" icon="pi pi-arrow-right" iconPos="right" @click="nextCallback" />
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
</StepperPanel>
|
||||||
|
<StepperPanel header="Header III">
|
||||||
|
<template #content="{ prevCallback, nextCallback }">
|
||||||
|
<div class="flex flex-column h-12rem">
|
||||||
|
<div class="border-2 border-dashed surface-border border-round surface-ground flex-auto flex justify-content-center align-items-center font-medium">Content III</div>
|
||||||
|
</div>
|
||||||
|
<div class="flex pt-4 justify-content-between">
|
||||||
|
<Button label="Back" severity="secondary" icon="pi pi-arrow-left" @click="prevCallback" />
|
||||||
|
<Button label="Next" severity="contrast" icon="pi pi-arrow-right" disabled iconPos="right" @click="nextCallback" />
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
</StepperPanel>
|
||||||
|
</Stepper>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
`
|
||||||
|
}
|
||||||
|
};
|
||||||
|
}
|
||||||
|
};
|
||||||
|
</script>
|
|
@ -13,8 +13,9 @@
|
||||||
<script>
|
<script>
|
||||||
import AccessibilityDoc from '@/doc/stepper/AccessibilityDoc.vue';
|
import AccessibilityDoc from '@/doc/stepper/AccessibilityDoc.vue';
|
||||||
import BasicDoc from '@/doc/stepper/BasicDoc.vue';
|
import BasicDoc from '@/doc/stepper/BasicDoc.vue';
|
||||||
import ExampleDoc from '@/doc/stepper/ExampleDoc.vue';
|
|
||||||
import ImportDoc from '@/doc/stepper/ImportDoc.vue';
|
import ImportDoc from '@/doc/stepper/ImportDoc.vue';
|
||||||
|
import LinearDoc from '@/doc/stepper/LinearDoc.vue';
|
||||||
|
import TemplateDoc from '@/doc/stepper/TemplateDoc.vue';
|
||||||
import VerticalDoc from '@/doc/stepper/VerticalDoc.vue';
|
import VerticalDoc from '@/doc/stepper/VerticalDoc.vue';
|
||||||
import PTComponent from '@/doc/stepper/pt/index.vue';
|
import PTComponent from '@/doc/stepper/pt/index.vue';
|
||||||
import ThemingDoc from '@/doc/stepper/theming/index.vue';
|
import ThemingDoc from '@/doc/stepper/theming/index.vue';
|
||||||
|
@ -39,9 +40,14 @@ export default {
|
||||||
component: VerticalDoc
|
component: VerticalDoc
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: 'example',
|
id: 'linear',
|
||||||
label: 'Example',
|
label: 'Linear',
|
||||||
component: ExampleDoc
|
component: LinearDoc
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 'template',
|
||||||
|
label: 'Template',
|
||||||
|
component: TemplateDoc
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: 'accessibility',
|
id: 'accessibility',
|
||||||
|
|
Loading…
Reference in New Issue