UNPKG

@rxflow/base

Version:

BaseFlow - 核心 Flow 组件库

20 lines (19 loc) 557 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.SelectionStrategy = void 0; /** * @author: yanxianliang * @date: 2025-08-23 23:11 * @modified:2025/8/23 23:11 by yanxianliang * @desc: 选中策略 * * Copyright (c) 2025 by yanxianliang, All Rights Reserved. */ let SelectionStrategy = exports.SelectionStrategy = /*#__PURE__*/function (SelectionStrategy) { SelectionStrategy["PARENT"] = "parent"; SelectionStrategy["CHILD"] = "child"; SelectionStrategy["ALL"] = "all"; return SelectionStrategy; }({});