primevue-mirror/doc/stepper/BasicDoc.vue

187 lines
9.1 KiB
Vue
Raw Normal View History

2024-02-13 06:24:01 +00:00
<template>
<DocSectionText v-bind="$attrs">
2024-02-22 09:45:53 +00:00
<p>
Stepper consists of one or more StepperPanel elements to encapsulate each step in the progress. The elements to navigate between the steps are not built-in for ease of customization, instead <i>prevCallback</i> and
<i>nextCallback</i> events should be bound to your custom UI elements.
</p>
2024-02-13 06:24:01 +00:00
</DocSectionText>
2024-05-20 12:14:38 +00:00
<div class="card flex justify-center">
2024-02-13 06:24:01 +00:00
<Stepper>
2024-02-20 14:56:58 +00:00
<StepperPanel header="Header I">
2024-02-22 09:35:09 +00:00
<template #content="{ nextCallback }">
2024-05-20 12:14:38 +00:00
<div class="flex flex-col h-48">
<div class="border-2 border-dashed border-surface-200 dark:border-surface-700 rounded bg-surface-50 dark:bg-surface-950 flex-auto flex justify-center items-center font-medium">Content I</div>
2024-02-20 14:56:58 +00:00
</div>
2024-05-20 12:14:38 +00:00
<div class="flex pt-6 justify-end">
2024-02-22 09:35:09 +00:00
<Button label="Next" icon="pi pi-arrow-right" iconPos="right" @click="nextCallback" />
2024-02-13 06:24:01 +00:00
</div>
</template>
</StepperPanel>
2024-02-20 14:56:58 +00:00
<StepperPanel header="Header II">
2024-02-13 06:24:01 +00:00
<template #content="{ prevCallback, nextCallback }">
2024-05-20 12:14:38 +00:00
<div class="flex flex-col h-48">
<div class="border-2 border-dashed border-surface-200 dark:border-surface-700 rounded bg-surface-50 dark:bg-surface-950 flex-auto flex justify-center items-center font-medium">Content II</div>
2024-02-20 14:56:58 +00:00
</div>
2024-05-20 12:14:38 +00:00
<div class="flex pt-6 justify-between">
2024-02-20 14:56:58 +00:00
<Button label="Back" severity="secondary" icon="pi pi-arrow-left" @click="prevCallback" />
2024-02-22 09:35:09 +00:00
<Button label="Next" icon="pi pi-arrow-right" iconPos="right" @click="nextCallback" />
2024-02-13 06:24:01 +00:00
</div>
</template>
</StepperPanel>
2024-02-20 14:56:58 +00:00
<StepperPanel header="Header III">
2024-02-22 09:35:09 +00:00
<template #content="{ prevCallback }">
2024-05-20 12:14:38 +00:00
<div class="flex flex-col h-48">
<div class="border-2 border-dashed border-surface-200 dark:border-surface-700 rounded bg-surface-50 dark:bg-surface-950 flex-auto flex justify-center items-center font-medium">Content III</div>
2024-02-20 14:56:58 +00:00
</div>
2024-05-20 12:14:38 +00:00
<div class="flex pt-6 justify-start">
2024-02-20 14:56:58 +00:00
<Button label="Back" severity="secondary" icon="pi pi-arrow-left" @click="prevCallback" />
2024-02-13 06:24:01 +00:00
</div>
</template>
</StepperPanel>
</Stepper>
</div>
2024-02-13 07:08:22 +00:00
<DocSectionCode :code="code" />
2024-02-13 06:24:01 +00:00
</template>
2024-02-13 07:08:22 +00:00
<script>
export default {
data() {
return {
code: {
basic: `
<Stepper>
2024-02-20 14:56:58 +00:00
<StepperPanel header="Header I">
2024-02-22 09:35:09 +00:00
<template #content="{ nextCallback }">
2024-05-20 12:14:38 +00:00
<div class="flex flex-col h-48">
<div class="border-2 border-dashed border-surface-200 dark:border-surface-700 rounded bg-surface-50 dark:bg-surface-950 flex-auto flex justify-center items-center font-medium">Content I</div>
2024-02-20 14:56:58 +00:00
</div>
2024-05-20 12:14:38 +00:00
<div class="flex pt-6 justify-end">
2024-02-22 09:35:09 +00:00
<Button label="Next" icon="pi pi-arrow-right" iconPos="right" @click="nextCallback" />
2024-02-13 07:08:22 +00:00
</div>
</template>
</StepperPanel>
2024-02-20 14:56:58 +00:00
<StepperPanel header="Header II">
2024-02-13 07:08:22 +00:00
<template #content="{ prevCallback, nextCallback }">
2024-05-20 12:14:38 +00:00
<div class="flex flex-col h-48">
<div class="border-2 border-dashed border-surface-200 dark:border-surface-700 rounded bg-surface-50 dark:bg-surface-950 flex-auto flex justify-center items-center font-medium">Content II</div>
2024-02-20 14:56:58 +00:00
</div>
2024-05-20 12:14:38 +00:00
<div class="flex pt-6 justify-between">
2024-02-20 14:56:58 +00:00
<Button label="Back" severity="secondary" icon="pi pi-arrow-left" @click="prevCallback" />
2024-02-22 09:35:09 +00:00
<Button label="Next" icon="pi pi-arrow-right" iconPos="right" @click="nextCallback" />
2024-02-13 07:08:22 +00:00
</div>
</template>
</StepperPanel>
2024-02-20 14:56:58 +00:00
<StepperPanel header="Header III">
2024-02-22 09:35:09 +00:00
<template #content="{ prevCallback }">
2024-05-20 12:14:38 +00:00
<div class="flex flex-col h-48">
<div class="border-2 border-dashed border-surface-200 dark:border-surface-700 rounded bg-surface-50 dark:bg-surface-950 flex-auto flex justify-center items-center font-medium">Content III</div>
2024-02-20 14:56:58 +00:00
</div>
2024-05-20 12:14:38 +00:00
<div class="flex pt-6 justify-start">
2024-02-20 14:56:58 +00:00
<Button label="Back" severity="secondary" icon="pi pi-arrow-left" @click="prevCallback" />
2024-02-13 07:08:22 +00:00
</div>
</template>
</StepperPanel>
</Stepper>
`,
options: `
<template>
2024-05-20 12:14:38 +00:00
<div class="card flex justify-center">
2024-02-13 07:08:22 +00:00
<Stepper>
2024-02-20 14:56:58 +00:00
<StepperPanel header="Header I">
2024-02-22 09:35:09 +00:00
<template #content="{ nextCallback }">
2024-05-20 12:14:38 +00:00
<div class="flex flex-col h-48">
<div class="border-2 border-dashed border-surface-200 dark:border-surface-700 rounded bg-surface-50 dark:bg-surface-950 flex-auto flex justify-center items-center font-medium">Content I</div>
2024-02-20 14:56:58 +00:00
</div>
2024-05-20 12:14:38 +00:00
<div class="flex pt-6 justify-end">
2024-02-22 09:35:09 +00:00
<Button label="Next" icon="pi pi-arrow-right" iconPos="right" @click="nextCallback" />
2024-02-13 07:08:22 +00:00
</div>
</template>
</StepperPanel>
2024-02-20 14:56:58 +00:00
<StepperPanel header="Header II">
2024-02-13 07:08:22 +00:00
<template #content="{ prevCallback, nextCallback }">
2024-05-20 12:14:38 +00:00
<div class="flex flex-col h-48">
<div class="border-2 border-dashed border-surface-200 dark:border-surface-700 rounded bg-surface-50 dark:bg-surface-950 flex-auto flex justify-center items-center font-medium">Content II</div>
2024-02-20 14:56:58 +00:00
</div>
2024-05-20 12:14:38 +00:00
<div class="flex pt-6 justify-between">
2024-02-20 14:56:58 +00:00
<Button label="Back" severity="secondary" icon="pi pi-arrow-left" @click="prevCallback" />
2024-02-22 09:35:09 +00:00
<Button label="Next" icon="pi pi-arrow-right" iconPos="right" @click="nextCallback" />
2024-02-13 07:08:22 +00:00
</div>
</template>
</StepperPanel>
2024-02-20 14:56:58 +00:00
<StepperPanel header="Header III">
2024-02-22 09:35:09 +00:00
<template #content="{ prevCallback }">
2024-05-20 12:14:38 +00:00
<div class="flex flex-col h-48">
<div class="border-2 border-dashed border-surface-200 dark:border-surface-700 rounded bg-surface-50 dark:bg-surface-950 flex-auto flex justify-center items-center font-medium">Content III</div>
2024-02-20 14:56:58 +00:00
</div>
2024-05-20 12:14:38 +00:00
<div class="flex pt-6 justify-start">
2024-02-20 14:56:58 +00:00
<Button label="Back" severity="secondary" icon="pi pi-arrow-left" @click="prevCallback" />
2024-02-13 07:08:22 +00:00
</div>
</template>
</StepperPanel>
</Stepper>
</div>
</template>
2024-02-22 09:35:09 +00:00
<style scoped>
.p-stepper {
flex-basis: 50rem;
}
<\/style>
2024-02-13 07:08:22 +00:00
`,
composition: `
<template>
2024-05-20 12:14:38 +00:00
<div class="card flex justify-center">
2024-02-13 07:08:22 +00:00
<Stepper>
2024-02-20 14:56:58 +00:00
<StepperPanel header="Header I">
2024-02-22 09:35:09 +00:00
<template #content="{ nextCallback }">
2024-05-20 12:14:38 +00:00
<div class="flex flex-col h-48">
<div class="border-2 border-dashed border-surface-200 dark:border-surface-700 rounded bg-surface-50 dark:bg-surface-950 flex-auto flex justify-center items-center font-medium">Content I</div>
2024-02-20 14:56:58 +00:00
</div>
2024-05-20 12:14:38 +00:00
<div class="flex pt-6 justify-end">
2024-02-22 09:35:09 +00:00
<Button label="Next" icon="pi pi-arrow-right" iconPos="right" @click="nextCallback" />
2024-02-13 07:08:22 +00:00
</div>
</template>
</StepperPanel>
2024-02-20 14:56:58 +00:00
<StepperPanel header="Header II">
2024-02-13 07:08:22 +00:00
<template #content="{ prevCallback, nextCallback }">
2024-05-20 12:14:38 +00:00
<div class="flex flex-col h-48">
<div class="border-2 border-dashed border-surface-200 dark:border-surface-700 rounded bg-surface-50 dark:bg-surface-950 flex-auto flex justify-center items-center font-medium">Content II</div>
2024-02-20 14:56:58 +00:00
</div>
2024-05-20 12:14:38 +00:00
<div class="flex pt-6 justify-between">
2024-02-20 14:56:58 +00:00
<Button label="Back" severity="secondary" icon="pi pi-arrow-left" @click="prevCallback" />
2024-02-22 09:35:09 +00:00
<Button label="Next" icon="pi pi-arrow-right" iconPos="right" @click="nextCallback" />
2024-02-13 07:08:22 +00:00
</div>
</template>
</StepperPanel>
2024-02-20 14:56:58 +00:00
<StepperPanel header="Header III">
2024-02-22 09:35:09 +00:00
<template #content="{ prevCallback }">
2024-05-20 12:14:38 +00:00
<div class="flex flex-col h-48">
<div class="border-2 border-dashed border-surface-200 dark:border-surface-700 rounded bg-surface-50 dark:bg-surface-950 flex-auto flex justify-center items-center font-medium">Content III</div>
2024-02-20 14:56:58 +00:00
</div>
2024-05-20 12:14:38 +00:00
<div class="flex pt-6 justify-start">
2024-02-20 14:56:58 +00:00
<Button label="Back" severity="secondary" icon="pi pi-arrow-left" @click="prevCallback" />
2024-02-13 07:08:22 +00:00
</div>
</template>
</StepperPanel>
</Stepper>
</div>
</template>
2024-02-22 09:35:09 +00:00
<style scoped>
.p-stepper {
flex-basis: 50rem;
}
<\/style>
2024-02-13 07:08:22 +00:00
`
}
};
}
};
</script>
2024-02-22 09:35:09 +00:00
<style scoped>
.p-stepper {
flex-basis: 50rem;
}
</style>