diff --git a/compiler/src/component_map.ts b/compiler/src/component_map.ts index 81a7ef1f2e04cbb11a62314b8b5727810be84fd2..bb64266fd0ee8f62e67e216a6705aea60db207f2 100644 --- a/compiler/src/component_map.ts +++ b/compiler/src/component_map.ts @@ -152,6 +152,17 @@ export const COMPONENT_MAP: any = { 'loop', 'duration', 'vertical', 'itemSpace', 'displayMode', 'onChange' ] }, + Stepper: { + children: ['StepperItem'], + attrs: [ + 'onFinish', 'onSkip', 'onChange', 'onNext', 'onPrevious' + ] + }, + StepperItem: { + parents: ['Stepper'], + single: true, + attrs: ['prevLabel', 'nextLabel', 'status'] + }, Rating: { attrs: ['stars', 'stepSize', 'starStyle', 'onChange'] },