This commit is contained in:
2025-09-19 14:25:20 +08:00
parent 269893a435
commit fbf3f77229
24949 changed files with 2839404 additions and 0 deletions

View File

@@ -0,0 +1,54 @@
'use strict';
Object.defineProperty(exports, '__esModule', { value: true });
var content = require('./content.js');
var runtime = require('../../../utils/vue/props/runtime.js');
var icon = require('../../../utils/vue/icon.js');
const tourStepProps = runtime.buildProps({
target: {
type: runtime.definePropType([String, Object, Function])
},
title: String,
description: String,
showClose: {
type: Boolean,
default: void 0
},
closeIcon: {
type: icon.iconPropType
},
showArrow: {
type: Boolean,
default: void 0
},
placement: content.tourContentProps.placement,
mask: {
type: runtime.definePropType([Boolean, Object]),
default: void 0
},
contentStyle: {
type: runtime.definePropType([Object])
},
prevButtonProps: {
type: runtime.definePropType(Object)
},
nextButtonProps: {
type: runtime.definePropType(Object)
},
scrollIntoViewOptions: {
type: runtime.definePropType([Boolean, Object]),
default: void 0
},
type: {
type: runtime.definePropType(String)
}
});
const tourStepEmits = {
close: () => true
};
exports.tourStepEmits = tourStepEmits;
exports.tourStepProps = tourStepProps;
//# sourceMappingURL=step.js.map