nsn-comp
Version:
NSN核心组件
22 lines (16 loc) • 1.37 kB
JavaScript
import "antd/es/menu/style";
import _Menu from "antd/es/menu";
function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
import { NodeExpandOutlined } from '@ant-design/icons';
import { NLocale } from 'nsn-util';
import React from 'react';
var ExpandAllMenu = function ExpandAllMenu(props) {
var id = props.id,
restProps = _objectWithoutProperties(props, ["id"]);
return React.createElement(_Menu.Item, Object.assign({}, restProps, {
key: id || 'expandAll',
icon: React.createElement(NodeExpandOutlined, null)
}), props.title || NLocale.getText('operation.expand.all'));
};
export { ExpandAllMenu };