UNPKG

hongluan-ui

Version:
29 lines (26 loc) 918 B
import '../../../utils/index.mjs'; import { transferProps, transferCheckedChangeFn } from './transfer.mjs'; import { buildProps, definePropType } from '../../../utils/vue/props/runtime.mjs'; const CHECKED_CHANGE_EVENT = "checked-change"; const transferPanelProps = buildProps({ data: transferProps.data, optionRender: { type: definePropType(Function) }, placeholder: String, title: String, mark: String, filterable: Boolean, format: transferProps.format, filterMethod: transferProps.filterMethod, filterProps: transferProps.filterProps, confirmMethod: transferProps.confirmMethod, defaultChecked: transferProps.leftDefaultChecked, props: transferProps.props, showButtons: Boolean }); const transferPanelEmits = { [CHECKED_CHANGE_EVENT]: transferCheckedChangeFn }; export { CHECKED_CHANGE_EVENT, transferPanelEmits, transferPanelProps }; //# sourceMappingURL=transfer-panel2.mjs.map