diff --git a/compiler/src/component_map.ts b/compiler/src/component_map.ts index 81a7ef1..bb64266 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'] },