Welcome to mirror list, hosted at ThFree Co, Russian Federation.

step_nav.vue « components « pipeline_wizard « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e3d825bbcc7e15c189c7be063dc47b70593fcda0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<script>
import { GlButton } from '@gitlab/ui';

export default {
  name: 'StepNav',
  components: {
    GlButton,
  },
  props: {
    showBackButton: {
      type: Boolean,
      required: false,
      default: false,
    },
    showNextButton: {
      type: Boolean,
      required: false,
      default: false,
    },
    nextButtonEnabled: {
      type: Boolean,
      required: false,
      default: true,
    },
  },
};
</script>

<template>
  <div class="gl-display-flex">
    <slot name="before"></slot>
    <gl-button
      v-if="showBackButton"
      category="secondary"
      data-testid="back-button"
      class="gl-mr-3"
      @click="$emit('back')"
    >
      {{ __('Back') }}
    </gl-button>
    <gl-button
      v-if="showNextButton"
      :disabled="!nextButtonEnabled"
      category="primary"
      data-testid="next-button"
      variant="confirm"
      @click="$emit('next')"
    >
      {{ __('Next') }}
    </gl-button>
    <slot name="after"></slot>
  </div>
</template>

<style scoped></style>