bfg-common 1.0.89 → 1.0.91

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -61,6 +61,7 @@
61
61
  <button
62
62
  v-else
63
63
  :id="`${props.testId}-next-button`"
64
+ :disabled="props.disabledNext"
64
65
  class="btn btn-primary"
65
66
  @click="next"
66
67
  >
@@ -84,15 +85,19 @@ import { UI_I_VerticalStepItem } from '~/components/atoms/models/interfaces'
84
85
 
85
86
  const props = withDefaults(
86
87
  defineProps<{
87
- testId?: string
88
88
  show: boolean
89
89
  title: string
90
- secondTitle?: string
91
90
  stepItems: UI_I_VerticalStepItem[]
92
91
  stepPosition: number
92
+ secondTitle?: string
93
+ testId?: string
93
94
  loading?: boolean
95
+ disabledNext?: boolean
94
96
  }>(),
95
- { testId: 'ui-modal-by-steps' }
97
+ {
98
+ testId: 'ui-modal-by-steps',
99
+ disabledNext: false
100
+ }
96
101
  )
97
102
  const emits = defineEmits<{
98
103
  (event: 'finish'): void
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "bfg-common",
3
3
  "private": false,
4
- "version": "1.0.89",
4
+ "version": "1.0.91",
5
5
  "scripts": {
6
6
  "build": "nuxt build",
7
7
  "dev": "nuxt dev --port=3002",