@@ -58,8 +58,7 @@ export const wizardSchema = {
5858 fields : [
5959 {
6060 title : 'Get started with adding source' ,
61- name : 'step-1' ,
62- stepKey : 1 ,
61+ name : 1 ,
6362 nextStep : {
6463 when : 'source.source-type' ,
6564 stepMapper : {
@@ -102,8 +101,7 @@ export const wizardSchema = {
102101 } ,
103102 {
104103 title : 'Configure AWS' ,
105- name : 'step-2' ,
106- stepKey : 'aws' ,
104+ name : 'aws' ,
107105 substepOf : 'Summary' ,
108106 nextStep : 'summary' ,
109107 buttons : ValidateButtons ,
@@ -122,9 +120,8 @@ export const wizardSchema = {
122120 ]
123121 } ,
124122 {
125- stepKey : 'google' ,
123+ name : 'google' ,
126124 title : 'Configure google' ,
127- name : 'step-3' ,
128125 nextStep : 'summary' ,
129126 showTitle : false ,
130127 fields : [
@@ -147,7 +144,6 @@ export const wizardSchema = {
147144 component : 'summary'
148145 }
149146 ] ,
150- stepKey : 'summary' ,
151147 name : 'summary' ,
152148 substepOf : 'Summary' ,
153149 title : 'Summary'
@@ -171,8 +167,7 @@ export const wizardSchemaWithFunction = {
171167 fields : [
172168 {
173169 title : 'Get started with adding source' ,
174- name : 'step-1' ,
175- stepKey : 1 ,
170+ name : 1 ,
176171 nextStep : ( { values } ) => values . source && values . source [ 'source-type' ] ,
177172 fields : [
178173 {
@@ -209,8 +204,7 @@ export const wizardSchemaWithFunction = {
209204 } ,
210205 {
211206 title : 'Configure AWS' ,
212- name : 'step-2' ,
213- stepKey : 'aws' ,
207+ name : 'aws' ,
214208 substepOf : 'Summary' ,
215209 nextStep : 'summary' ,
216210 buttons : ValidateButtons ,
@@ -229,9 +223,8 @@ export const wizardSchemaWithFunction = {
229223 ]
230224 } ,
231225 {
232- stepKey : 'google' ,
226+ name : 'google' ,
233227 title : 'Configure google' ,
234- name : 'step-3' ,
235228 nextStep : 'summary' ,
236229 showTitle : false ,
237230 fields : [
@@ -254,7 +247,6 @@ export const wizardSchemaWithFunction = {
254247 component : 'summary'
255248 }
256249 ] ,
257- stepKey : 'summary' ,
258250 name : 'summary' ,
259251 substepOf : 'Summary' ,
260252 title : 'Summary'
@@ -276,7 +268,6 @@ export const wizardSchemaSimple = {
276268 {
277269 title : 'Get started with adding source' ,
278270 name : 'step-1' ,
279- stepKey : 1 ,
280271 nextStep : 'aws' ,
281272 fields : [
282273 {
@@ -289,8 +280,7 @@ export const wizardSchemaSimple = {
289280 } ,
290281 {
291282 title : 'Configure AWS' ,
292- name : 'step-2' ,
293- stepKey : 'aws' ,
283+ name : 'aws' ,
294284 nextStep : 'summary' ,
295285 fields : [
296286 {
@@ -313,7 +303,6 @@ export const wizardSchemaSimple = {
313303 component : 'summary'
314304 }
315305 ] ,
316- stepKey : 'summary' ,
317306 name : 'summary' ,
318307 title : 'Summary'
319308 }
@@ -334,8 +323,7 @@ export const wizardSchemaSubsteps = {
334323 {
335324 title : 'Get started with adding source' ,
336325 showTitle : true ,
337- name : 'step-1' ,
338- stepKey : 1 ,
326+ name : 1 ,
339327 nextStep : 'aws' ,
340328 fields : [
341329 {
@@ -348,8 +336,7 @@ export const wizardSchemaSubsteps = {
348336 } ,
349337 {
350338 title : 'Configure AWS' ,
351- name : 'step-2' ,
352- stepKey : 'aws' ,
339+ name : 'aws' ,
353340 nextStep : 'summary' ,
354341 substepOf : 'Summary' ,
355342 fields : [
@@ -367,7 +354,6 @@ export const wizardSchemaSubsteps = {
367354 component : 'summary'
368355 }
369356 ] ,
370- stepKey : 'summary' ,
371357 name : 'summary' ,
372358 title : 'Summary' ,
373359 substepOf : 'Summary'
@@ -390,8 +376,7 @@ export const wizardSchemaMoreSubsteps = {
390376 fields : [
391377 {
392378 title : 'Get started with adding source' ,
393- name : 'step-1' ,
394- stepKey : 1 ,
379+ name : 1 ,
395380 nextStep : 'aws' ,
396381 fields : [
397382 {
@@ -404,8 +389,7 @@ export const wizardSchemaMoreSubsteps = {
404389 } ,
405390 {
406391 title : 'Configure AWS' ,
407- name : 'step-2' ,
408- stepKey : 'aws' ,
392+ name : 'aws' ,
409393 nextStep : 'aws2' ,
410394 substepOf : 'Summary' ,
411395 fields : [
@@ -418,9 +402,8 @@ export const wizardSchemaMoreSubsteps = {
418402 } ,
419403 {
420404 title : 'Configure AWS part 2 - disabled jumping' ,
421- name : 'step-88' ,
422405 disableForwardJumping : true ,
423- stepKey : 'aws2' ,
406+ name : 'aws2' ,
424407 nextStep : 'summary' ,
425408 substepOf : 'Summary' ,
426409 fields : [
@@ -438,7 +421,6 @@ export const wizardSchemaMoreSubsteps = {
438421 component : 'summary'
439422 }
440423 ] ,
441- stepKey : 'summary' ,
442424 name : 'summary' ,
443425 title : 'Summary' ,
444426 substepOf : 'Finish' ,
@@ -451,7 +433,6 @@ export const wizardSchemaMoreSubsteps = {
451433 component : 'summary'
452434 }
453435 ] ,
454- stepKey : 'summary2' ,
455436 name : 'summary2' ,
456437 title : 'Summary2' ,
457438 substepOf : 'Finish'
0 commit comments