@douyinfe/semi-ui 2.41.2 → 2.42.0-beta.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +115 -10
- package/dist/css/semi.css +28 -7
- package/dist/css/semi.min.css +1 -1
- package/dist/umd/semi-ui.js +1450 -1744
- package/dist/umd/semi-ui.js.map +1 -1
- package/dist/umd/semi-ui.min.js +1 -1
- package/dist/umd/semi-ui.min.js.map +1 -1
- package/lib/cjs/button/splitButtonGroup.d.ts +2 -0
- package/lib/cjs/button/splitButtonGroup.js +14 -0
- package/lib/cjs/collapse/item.d.ts +2 -1
- package/lib/cjs/collapse/item.js +4 -1
- package/lib/cjs/form/baseForm.d.ts +12 -10
- package/lib/cjs/form/baseForm.js +17 -13
- package/lib/cjs/form/hoc/withField.js +13 -11
- package/lib/cjs/form/interface.d.ts +5 -3
- package/lib/cjs/inputNumber/index.js +1 -1
- package/lib/cjs/modal/confirm.d.ts +1 -1
- package/lib/cjs/table/ResizableHeaderCell.d.ts +2 -0
- package/lib/cjs/table/ResizableHeaderCell.js +6 -4
- package/lib/cjs/table/TableHeader.d.ts +2 -2
- package/lib/cjs/table/TableHeaderRow.d.ts +2 -1
- package/lib/cjs/table/TableHeaderRow.js +3 -0
- package/lib/cjs/table/interface.d.ts +2 -1
- package/lib/cjs/toast/index.d.ts +18 -0
- package/lib/cjs/toast/index.js +49 -4
- package/lib/cjs/toast/toast.d.ts +11 -0
- package/lib/cjs/toast/toast.js +22 -2
- package/lib/cjs/tooltip/index.d.ts +1 -1
- package/lib/cjs/tooltip/index.js +2 -1
- package/lib/cjs/tree/treeNode.js +1 -2
- package/lib/cjs/typography/base.js +1 -3
- package/lib/cjs/upload/fileCard.d.ts +13 -2
- package/lib/cjs/upload/fileCard.js +52 -11
- package/lib/cjs/upload/index.d.ts +4 -0
- package/lib/cjs/upload/index.js +16 -4
- package/lib/es/button/splitButtonGroup.d.ts +2 -0
- package/lib/es/button/splitButtonGroup.js +14 -0
- package/lib/es/collapse/item.d.ts +2 -1
- package/lib/es/collapse/item.js +4 -1
- package/lib/es/form/baseForm.d.ts +12 -10
- package/lib/es/form/baseForm.js +17 -13
- package/lib/es/form/hoc/withField.js +14 -12
- package/lib/es/form/interface.d.ts +5 -3
- package/lib/es/inputNumber/index.js +1 -1
- package/lib/es/modal/confirm.d.ts +1 -1
- package/lib/es/table/ResizableHeaderCell.d.ts +2 -0
- package/lib/es/table/ResizableHeaderCell.js +6 -4
- package/lib/es/table/TableHeader.d.ts +2 -2
- package/lib/es/table/TableHeaderRow.d.ts +2 -1
- package/lib/es/table/TableHeaderRow.js +3 -0
- package/lib/es/table/interface.d.ts +2 -1
- package/lib/es/toast/index.d.ts +18 -0
- package/lib/es/toast/index.js +49 -4
- package/lib/es/toast/toast.d.ts +11 -0
- package/lib/es/toast/toast.js +22 -2
- package/lib/es/tooltip/index.d.ts +1 -1
- package/lib/es/tooltip/index.js +2 -1
- package/lib/es/tree/treeNode.js +1 -2
- package/lib/es/typography/base.js +1 -3
- package/lib/es/upload/fileCard.d.ts +13 -2
- package/lib/es/upload/fileCard.js +52 -9
- package/lib/es/upload/index.d.ts +4 -0
- package/lib/es/upload/index.js +16 -4
- package/package.json +12 -8
package/dist/umd/semi-ui.js
CHANGED
|
@@ -15005,149 +15005,125 @@ function dontSetMe(props
|
|
|
15005
15005
|
|
|
15006
15006
|
exports.__esModule = true;
|
|
15007
15007
|
exports["default"] = void 0;
|
|
15008
|
-
|
|
15009
|
-
var _react = _interopRequireDefault(__webpack_require__("neV8"));
|
|
15010
|
-
|
|
15008
|
+
var React = _interopRequireWildcard(__webpack_require__("neV8"));
|
|
15011
15009
|
var _reactDraggable = __webpack_require__("j6Rw");
|
|
15012
|
-
|
|
15013
15010
|
var _utils = __webpack_require__("+cYm");
|
|
15014
|
-
|
|
15015
15011
|
var _propTypes = __webpack_require__("6rtJ");
|
|
15016
|
-
|
|
15017
|
-
function
|
|
15018
|
-
|
|
15019
|
-
function _extends() { _extends = Object.assign
|
|
15020
|
-
|
|
15021
|
-
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; }
|
|
15022
|
-
|
|
15023
|
-
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }
|
|
15024
|
-
|
|
15012
|
+
var _excluded = ["children", "className", "draggableOpts", "width", "height", "handle", "handleSize", "lockAspectRatio", "axis", "minConstraints", "maxConstraints", "onResize", "onResizeStop", "onResizeStart", "resizeHandles", "transformScale"];
|
|
15013
|
+
function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
|
|
15014
|
+
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || typeof obj !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
|
15015
|
+
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
15025
15016
|
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; }
|
|
15026
|
-
|
|
15027
|
-
function
|
|
15028
|
-
|
|
15029
|
-
function
|
|
15030
|
-
|
|
15031
|
-
function
|
|
15032
|
-
|
|
15017
|
+
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
|
15018
|
+
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
|
|
15019
|
+
function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
|
15020
|
+
function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return typeof key === "symbol" ? key : String(key); }
|
|
15021
|
+
function _toPrimitive(input, hint) { if (typeof input !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (typeof res !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); }
|
|
15022
|
+
function _inheritsLoose(subClass, superClass) { subClass.prototype = Object.create(superClass.prototype); subClass.prototype.constructor = subClass; _setPrototypeOf(subClass, superClass); }
|
|
15023
|
+
function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
|
|
15024
|
+
// The base <Resizable> component.
|
|
15025
|
+
// This component does not have state and relies on the parent to set its props based on callback data.
|
|
15033
15026
|
var Resizable = /*#__PURE__*/function (_React$Component) {
|
|
15034
15027
|
_inheritsLoose(Resizable, _React$Component);
|
|
15035
|
-
|
|
15036
15028
|
function Resizable() {
|
|
15037
15029
|
var _this;
|
|
15038
|
-
|
|
15039
15030
|
for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {
|
|
15040
15031
|
args[_key] = arguments[_key];
|
|
15041
15032
|
}
|
|
15042
|
-
|
|
15043
15033
|
_this = _React$Component.call.apply(_React$Component, [this].concat(args)) || this;
|
|
15044
|
-
|
|
15045
|
-
|
|
15046
|
-
|
|
15047
|
-
_defineProperty(_assertThisInitialized(_this), "lastHandleRect", null);
|
|
15048
|
-
|
|
15049
|
-
_defineProperty(_assertThisInitialized(_this), "slack", null);
|
|
15050
|
-
|
|
15034
|
+
_this.handleRefs = {};
|
|
15035
|
+
_this.lastHandleRect = null;
|
|
15036
|
+
_this.slack = null;
|
|
15051
15037
|
return _this;
|
|
15052
15038
|
}
|
|
15053
|
-
|
|
15054
15039
|
var _proto = Resizable.prototype;
|
|
15055
|
-
|
|
15056
15040
|
_proto.componentWillUnmount = function componentWillUnmount() {
|
|
15057
15041
|
this.resetData();
|
|
15058
15042
|
};
|
|
15059
|
-
|
|
15060
|
-
_proto.lockAspectRatio = function lockAspectRatio(width, height, aspectRatio) {
|
|
15061
|
-
height = width / aspectRatio;
|
|
15062
|
-
width = height * aspectRatio;
|
|
15063
|
-
return [width, height];
|
|
15064
|
-
};
|
|
15065
|
-
|
|
15066
15043
|
_proto.resetData = function resetData() {
|
|
15067
15044
|
this.lastHandleRect = this.slack = null;
|
|
15068
|
-
}
|
|
15069
|
-
;
|
|
15045
|
+
}
|
|
15070
15046
|
|
|
15047
|
+
// Clamp width and height within provided constraints
|
|
15048
|
+
;
|
|
15071
15049
|
_proto.runConstraints = function runConstraints(width, height) {
|
|
15072
|
-
var
|
|
15073
|
-
|
|
15074
|
-
|
|
15075
|
-
|
|
15076
|
-
|
|
15077
|
-
if (
|
|
15078
|
-
|
|
15079
|
-
|
|
15080
|
-
|
|
15081
|
-
|
|
15050
|
+
var _this$props = this.props,
|
|
15051
|
+
minConstraints = _this$props.minConstraints,
|
|
15052
|
+
maxConstraints = _this$props.maxConstraints,
|
|
15053
|
+
lockAspectRatio = _this$props.lockAspectRatio;
|
|
15054
|
+
// short circuit
|
|
15055
|
+
if (!minConstraints && !maxConstraints && !lockAspectRatio) return [width, height];
|
|
15056
|
+
|
|
15057
|
+
// If constraining to min and max, we need to also fit width and height to aspect ratio.
|
|
15058
|
+
if (lockAspectRatio) {
|
|
15059
|
+
var ratio = this.props.width / this.props.height;
|
|
15060
|
+
var deltaW = width - this.props.width;
|
|
15061
|
+
var deltaH = height - this.props.height;
|
|
15062
|
+
|
|
15063
|
+
// Find which coordinate was greater and should push the other toward it.
|
|
15064
|
+
// E.g.:
|
|
15065
|
+
// ratio = 1, deltaW = 10, deltaH = 5, deltaH should become 10.
|
|
15066
|
+
// ratio = 2, deltaW = 10, deltaH = 6, deltaW should become 12.
|
|
15067
|
+
if (Math.abs(deltaW) > Math.abs(deltaH * ratio)) {
|
|
15082
15068
|
height = width / ratio;
|
|
15083
|
-
width = height * ratio;
|
|
15084
15069
|
} else {
|
|
15085
|
-
|
|
15086
|
-
// ratio. Calculate the change height-first, instead of width-first
|
|
15087
|
-
var _ratio = this.props.height / this.props.width;
|
|
15088
|
-
|
|
15089
|
-
width = height / _ratio;
|
|
15090
|
-
height = width * _ratio;
|
|
15070
|
+
width = height * ratio;
|
|
15091
15071
|
}
|
|
15092
15072
|
}
|
|
15093
|
-
|
|
15094
15073
|
var oldW = width,
|
|
15095
|
-
|
|
15074
|
+
oldH = height;
|
|
15075
|
+
|
|
15076
|
+
// Add slack to the values used to calculate bound position. This will ensure that if
|
|
15096
15077
|
// we start removing slack, the element won't react to it right away until it's been
|
|
15097
15078
|
// completely removed.
|
|
15098
|
-
|
|
15099
|
-
|
|
15100
|
-
|
|
15101
|
-
slackH = _ref2[1];
|
|
15102
|
-
|
|
15079
|
+
var _ref = this.slack || [0, 0],
|
|
15080
|
+
slackW = _ref[0],
|
|
15081
|
+
slackH = _ref[1];
|
|
15103
15082
|
width += slackW;
|
|
15104
15083
|
height += slackH;
|
|
15105
|
-
|
|
15106
|
-
|
|
15107
|
-
|
|
15108
|
-
|
|
15084
|
+
if (minConstraints) {
|
|
15085
|
+
width = Math.max(minConstraints[0], width);
|
|
15086
|
+
height = Math.max(minConstraints[1], height);
|
|
15087
|
+
}
|
|
15088
|
+
if (maxConstraints) {
|
|
15089
|
+
width = Math.min(maxConstraints[0], width);
|
|
15090
|
+
height = Math.min(maxConstraints[1], height);
|
|
15109
15091
|
}
|
|
15110
15092
|
|
|
15111
|
-
|
|
15112
|
-
width = Math.min(max[0], width);
|
|
15113
|
-
height = Math.min(max[1], height);
|
|
15114
|
-
} // If the width or height changed, we must have introduced some slack. Record it for the next iteration.
|
|
15115
|
-
|
|
15116
|
-
|
|
15093
|
+
// If the width or height changed, we must have introduced some slack. Record it for the next iteration.
|
|
15117
15094
|
this.slack = [slackW + (oldW - width), slackH + (oldH - height)];
|
|
15118
15095
|
return [width, height];
|
|
15119
15096
|
}
|
|
15097
|
+
|
|
15120
15098
|
/**
|
|
15121
15099
|
* Wrapper around drag events to provide more useful data.
|
|
15122
15100
|
*
|
|
15123
15101
|
* @param {String} handlerName Handler name to wrap.
|
|
15124
15102
|
* @return {Function} Handler function.
|
|
15125
|
-
|
|
15126
|
-
;
|
|
15127
|
-
|
|
15103
|
+
*/;
|
|
15128
15104
|
_proto.resizeHandler = function resizeHandler(handlerName, axis) {
|
|
15129
15105
|
var _this2 = this;
|
|
15130
|
-
|
|
15131
|
-
|
|
15132
|
-
|
|
15133
|
-
|
|
15134
|
-
deltaY = _ref3.deltaY;
|
|
15106
|
+
return function (e, _ref2) {
|
|
15107
|
+
var node = _ref2.node,
|
|
15108
|
+
deltaX = _ref2.deltaX,
|
|
15109
|
+
deltaY = _ref2.deltaY;
|
|
15135
15110
|
// Reset data in case it was left over somehow (should not be possible)
|
|
15136
|
-
if (handlerName === 'onResizeStart') _this2.resetData();
|
|
15111
|
+
if (handlerName === 'onResizeStart') _this2.resetData();
|
|
15137
15112
|
|
|
15113
|
+
// Axis restrictions
|
|
15138
15114
|
var canDragX = (_this2.props.axis === 'both' || _this2.props.axis === 'x') && axis !== 'n' && axis !== 's';
|
|
15139
|
-
var canDragY = (_this2.props.axis === 'both' || _this2.props.axis === 'y') && axis !== 'e' && axis !== 'w';
|
|
15140
|
-
|
|
15141
|
-
if (!canDragX && !canDragY) return;
|
|
15115
|
+
var canDragY = (_this2.props.axis === 'both' || _this2.props.axis === 'y') && axis !== 'e' && axis !== 'w';
|
|
15116
|
+
// No dragging possible.
|
|
15117
|
+
if (!canDragX && !canDragY) return;
|
|
15142
15118
|
|
|
15119
|
+
// Decompose axis for later use
|
|
15143
15120
|
var axisV = axis[0];
|
|
15144
15121
|
var axisH = axis[axis.length - 1]; // intentionally not axis[1], so that this catches axis === 'w' for example
|
|
15122
|
+
|
|
15145
15123
|
// Track the element being dragged to account for changes in position.
|
|
15146
15124
|
// If a handle's position is changed between callbacks, we need to factor this in to the next callback.
|
|
15147
15125
|
// Failure to do so will cause the element to "skip" when resized upwards or leftwards.
|
|
15148
|
-
|
|
15149
15126
|
var handleRect = node.getBoundingClientRect();
|
|
15150
|
-
|
|
15151
15127
|
if (_this2.lastHandleRect != null) {
|
|
15152
15128
|
// If the handle has repositioned on either axis since last render,
|
|
15153
15129
|
// we need to increase our callback values by this much.
|
|
@@ -15156,34 +15132,34 @@ var Resizable = /*#__PURE__*/function (_React$Component) {
|
|
|
15156
15132
|
var deltaLeftSinceLast = handleRect.left - _this2.lastHandleRect.left;
|
|
15157
15133
|
deltaX += deltaLeftSinceLast;
|
|
15158
15134
|
}
|
|
15159
|
-
|
|
15160
15135
|
if (axisV === 'n') {
|
|
15161
15136
|
var deltaTopSinceLast = handleRect.top - _this2.lastHandleRect.top;
|
|
15162
15137
|
deltaY += deltaTopSinceLast;
|
|
15163
15138
|
}
|
|
15164
|
-
}
|
|
15165
|
-
|
|
15166
|
-
|
|
15167
|
-
_this2.lastHandleRect = handleRect; // Reverse delta if using top or left drag handles.
|
|
15139
|
+
}
|
|
15140
|
+
// Storage of last rect so we know how much it has really moved.
|
|
15141
|
+
_this2.lastHandleRect = handleRect;
|
|
15168
15142
|
|
|
15143
|
+
// Reverse delta if using top or left drag handles.
|
|
15169
15144
|
if (axisH === 'w') deltaX = -deltaX;
|
|
15170
|
-
if (axisV === 'n') deltaY = -deltaY;
|
|
15145
|
+
if (axisV === 'n') deltaY = -deltaY;
|
|
15171
15146
|
|
|
15147
|
+
// Update w/h by the deltas. Also factor in transformScale.
|
|
15172
15148
|
var width = _this2.props.width + (canDragX ? deltaX / _this2.props.transformScale : 0);
|
|
15173
|
-
var height = _this2.props.height + (canDragY ? deltaY / _this2.props.transformScale : 0);
|
|
15149
|
+
var height = _this2.props.height + (canDragY ? deltaY / _this2.props.transformScale : 0);
|
|
15174
15150
|
|
|
15151
|
+
// Run user-provided constraints.
|
|
15175
15152
|
var _this2$runConstraints = _this2.runConstraints(width, height);
|
|
15176
|
-
|
|
15177
15153
|
width = _this2$runConstraints[0];
|
|
15178
15154
|
height = _this2$runConstraints[1];
|
|
15179
|
-
var dimensionsChanged = width !== _this2.props.width || height !== _this2.props.height;
|
|
15180
|
-
|
|
15181
|
-
var cb = typeof _this2.props[handlerName] === 'function' ? _this2.props[handlerName] : null; // Don't call 'onResize' if dimensions haven't changed.
|
|
15155
|
+
var dimensionsChanged = width !== _this2.props.width || height !== _this2.props.height;
|
|
15182
15156
|
|
|
15157
|
+
// Call user-supplied callback if present.
|
|
15158
|
+
var cb = typeof _this2.props[handlerName] === 'function' ? _this2.props[handlerName] : null;
|
|
15159
|
+
// Don't call 'onResize' if dimensions haven't changed.
|
|
15183
15160
|
var shouldSkipCb = handlerName === 'onResize' && !dimensionsChanged;
|
|
15184
|
-
|
|
15185
15161
|
if (cb && !shouldSkipCb) {
|
|
15186
|
-
|
|
15162
|
+
e.persist == null ? void 0 : e.persist();
|
|
15187
15163
|
cb(e, {
|
|
15188
15164
|
node: node,
|
|
15189
15165
|
size: {
|
|
@@ -15192,86 +15168,95 @@ var Resizable = /*#__PURE__*/function (_React$Component) {
|
|
|
15192
15168
|
},
|
|
15193
15169
|
handle: axis
|
|
15194
15170
|
});
|
|
15195
|
-
}
|
|
15196
|
-
|
|
15171
|
+
}
|
|
15197
15172
|
|
|
15173
|
+
// Reset internal data
|
|
15198
15174
|
if (handlerName === 'onResizeStop') _this2.resetData();
|
|
15199
15175
|
};
|
|
15200
|
-
}
|
|
15176
|
+
}
|
|
15201
15177
|
|
|
15202
|
-
|
|
15178
|
+
// Render a resize handle given an axis & DOM ref. Ref *must* be attached for
|
|
15179
|
+
// the underlying draggable library to work properly.
|
|
15180
|
+
;
|
|
15181
|
+
_proto.renderResizeHandle = function renderResizeHandle(handleAxis, ref) {
|
|
15203
15182
|
var handle = this.props.handle;
|
|
15204
|
-
|
|
15205
|
-
if (handle) {
|
|
15206
|
-
|
|
15207
|
-
|
|
15208
|
-
|
|
15209
|
-
|
|
15210
|
-
return handle;
|
|
15183
|
+
// No handle provided, make the default
|
|
15184
|
+
if (!handle) {
|
|
15185
|
+
return /*#__PURE__*/React.createElement("span", {
|
|
15186
|
+
className: "react-resizable-handle react-resizable-handle-" + handleAxis,
|
|
15187
|
+
ref: ref
|
|
15188
|
+
});
|
|
15211
15189
|
}
|
|
15212
|
-
|
|
15213
|
-
|
|
15214
|
-
|
|
15190
|
+
// Handle is a function, such as:
|
|
15191
|
+
// `handle={(handleAxis) => <span className={...} />}`
|
|
15192
|
+
if (typeof handle === 'function') {
|
|
15193
|
+
return handle(handleAxis, ref);
|
|
15194
|
+
}
|
|
15195
|
+
// Handle is a React component (composite or DOM).
|
|
15196
|
+
var isDOMElement = typeof handle.type === 'string';
|
|
15197
|
+
var props = _objectSpread({
|
|
15198
|
+
ref: ref
|
|
15199
|
+
}, isDOMElement ? {} : {
|
|
15200
|
+
handleAxis: handleAxis
|
|
15215
15201
|
});
|
|
15202
|
+
return /*#__PURE__*/React.cloneElement(handle, props);
|
|
15216
15203
|
};
|
|
15217
|
-
|
|
15218
15204
|
_proto.render = function render() {
|
|
15219
15205
|
var _this3 = this;
|
|
15220
|
-
|
|
15221
15206
|
// Pass along only props not meant for the `<Resizable>`.`
|
|
15222
15207
|
// eslint-disable-next-line no-unused-vars
|
|
15223
|
-
var _this$
|
|
15224
|
-
|
|
15225
|
-
|
|
15226
|
-
|
|
15227
|
-
|
|
15228
|
-
|
|
15229
|
-
|
|
15230
|
-
|
|
15231
|
-
|
|
15232
|
-
|
|
15233
|
-
|
|
15234
|
-
|
|
15235
|
-
|
|
15236
|
-
|
|
15237
|
-
|
|
15238
|
-
|
|
15239
|
-
|
|
15240
|
-
|
|
15208
|
+
var _this$props2 = this.props,
|
|
15209
|
+
children = _this$props2.children,
|
|
15210
|
+
className = _this$props2.className,
|
|
15211
|
+
draggableOpts = _this$props2.draggableOpts,
|
|
15212
|
+
width = _this$props2.width,
|
|
15213
|
+
height = _this$props2.height,
|
|
15214
|
+
handle = _this$props2.handle,
|
|
15215
|
+
handleSize = _this$props2.handleSize,
|
|
15216
|
+
lockAspectRatio = _this$props2.lockAspectRatio,
|
|
15217
|
+
axis = _this$props2.axis,
|
|
15218
|
+
minConstraints = _this$props2.minConstraints,
|
|
15219
|
+
maxConstraints = _this$props2.maxConstraints,
|
|
15220
|
+
onResize = _this$props2.onResize,
|
|
15221
|
+
onResizeStop = _this$props2.onResizeStop,
|
|
15222
|
+
onResizeStart = _this$props2.onResizeStart,
|
|
15223
|
+
resizeHandles = _this$props2.resizeHandles,
|
|
15224
|
+
transformScale = _this$props2.transformScale,
|
|
15225
|
+
p = _objectWithoutPropertiesLoose(_this$props2, _excluded);
|
|
15226
|
+
|
|
15227
|
+
// What we're doing here is getting the child of this element, and cloning it with this element's props.
|
|
15241
15228
|
// We are then defining its children as:
|
|
15242
|
-
// Its original children (resizable's child's children), and
|
|
15243
|
-
// One or more draggable handles.
|
|
15244
|
-
|
|
15245
|
-
|
|
15229
|
+
// 1. Its original children (resizable's child's children), and
|
|
15230
|
+
// 2. One or more draggable handles.
|
|
15246
15231
|
return (0, _utils.cloneElement)(children, _objectSpread(_objectSpread({}, p), {}, {
|
|
15247
15232
|
className: (className ? className + " " : '') + "react-resizable",
|
|
15248
15233
|
children: [].concat(children.props.children, resizeHandles.map(function (handleAxis) {
|
|
15249
|
-
|
|
15234
|
+
var _this3$handleRefs$han;
|
|
15235
|
+
// Create a ref to the handle so that `<DraggableCore>` doesn't have to use ReactDOM.findDOMNode().
|
|
15236
|
+
var ref = (_this3$handleRefs$han = _this3.handleRefs[handleAxis]) != null ? _this3$handleRefs$han : _this3.handleRefs[handleAxis] = /*#__PURE__*/React.createRef();
|
|
15237
|
+
return /*#__PURE__*/React.createElement(_reactDraggable.DraggableCore, _extends({}, draggableOpts, {
|
|
15238
|
+
nodeRef: ref,
|
|
15250
15239
|
key: "resizableHandle-" + handleAxis,
|
|
15251
15240
|
onStop: _this3.resizeHandler('onResizeStop', handleAxis),
|
|
15252
15241
|
onStart: _this3.resizeHandler('onResizeStart', handleAxis),
|
|
15253
15242
|
onDrag: _this3.resizeHandler('onResize', handleAxis)
|
|
15254
|
-
}), _this3.renderResizeHandle(handleAxis));
|
|
15243
|
+
}), _this3.renderResizeHandle(handleAxis, ref));
|
|
15255
15244
|
}))
|
|
15256
15245
|
}));
|
|
15257
15246
|
};
|
|
15258
|
-
|
|
15259
15247
|
return Resizable;
|
|
15260
|
-
}(
|
|
15261
|
-
|
|
15248
|
+
}(React.Component);
|
|
15262
15249
|
exports["default"] = Resizable;
|
|
15263
|
-
|
|
15264
|
-
|
|
15265
|
-
|
|
15266
|
-
_defineProperty(Resizable, "defaultProps", {
|
|
15250
|
+
Resizable.propTypes = _propTypes.resizableProps;
|
|
15251
|
+
Resizable.defaultProps = {
|
|
15252
|
+
axis: 'both',
|
|
15267
15253
|
handleSize: [20, 20],
|
|
15268
15254
|
lockAspectRatio: false,
|
|
15269
|
-
axis: 'both',
|
|
15270
15255
|
minConstraints: [20, 20],
|
|
15271
15256
|
maxConstraints: [Infinity, Infinity],
|
|
15272
15257
|
resizeHandles: ['se'],
|
|
15273
15258
|
transformScale: 1
|
|
15274
|
-
}
|
|
15259
|
+
};
|
|
15275
15260
|
|
|
15276
15261
|
/***/ }),
|
|
15277
15262
|
|
|
@@ -15284,71 +15269,50 @@ var __webpack_unused_export__;
|
|
|
15284
15269
|
|
|
15285
15270
|
__webpack_unused_export__ = true;
|
|
15286
15271
|
exports["default"] = void 0;
|
|
15287
|
-
|
|
15288
15272
|
var React = _interopRequireWildcard(__webpack_require__("neV8"));
|
|
15289
|
-
|
|
15290
15273
|
var _propTypes = _interopRequireDefault(__webpack_require__("aWzz"));
|
|
15291
|
-
|
|
15292
15274
|
var _Resizable = _interopRequireDefault(__webpack_require__("DIYL"));
|
|
15293
|
-
|
|
15294
15275
|
var _propTypes2 = __webpack_require__("6rtJ");
|
|
15295
|
-
|
|
15276
|
+
var _excluded = ["handle", "handleSize", "onResize", "onResizeStart", "onResizeStop", "draggableOpts", "minConstraints", "maxConstraints", "lockAspectRatio", "axis", "width", "height", "resizeHandles", "style", "transformScale"];
|
|
15296
15277
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
15297
|
-
|
|
15298
|
-
function
|
|
15299
|
-
|
|
15300
|
-
function
|
|
15301
|
-
|
|
15302
|
-
function
|
|
15303
|
-
|
|
15304
|
-
function
|
|
15305
|
-
|
|
15306
|
-
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }
|
|
15307
|
-
|
|
15278
|
+
function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
|
|
15279
|
+
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || typeof obj !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
|
15280
|
+
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
|
|
15281
|
+
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
|
15282
|
+
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
|
|
15283
|
+
function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
|
15284
|
+
function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return typeof key === "symbol" ? key : String(key); }
|
|
15285
|
+
function _toPrimitive(input, hint) { if (typeof input !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (typeof res !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); }
|
|
15308
15286
|
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; }
|
|
15309
|
-
|
|
15310
|
-
function
|
|
15311
|
-
|
|
15312
|
-
function _inheritsLoose(subClass, superClass) { subClass.prototype = Object.create(superClass.prototype); subClass.prototype.constructor = subClass; subClass.__proto__ = superClass; }
|
|
15313
|
-
|
|
15314
|
-
function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
|
15315
|
-
|
|
15287
|
+
function _inheritsLoose(subClass, superClass) { subClass.prototype = Object.create(superClass.prototype); subClass.prototype.constructor = subClass; _setPrototypeOf(subClass, superClass); }
|
|
15288
|
+
function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
|
|
15316
15289
|
var ResizableBox = /*#__PURE__*/function (_React$Component) {
|
|
15317
15290
|
_inheritsLoose(ResizableBox, _React$Component);
|
|
15318
|
-
|
|
15319
15291
|
function ResizableBox() {
|
|
15320
15292
|
var _this;
|
|
15321
|
-
|
|
15322
15293
|
for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {
|
|
15323
15294
|
args[_key] = arguments[_key];
|
|
15324
15295
|
}
|
|
15325
|
-
|
|
15326
15296
|
_this = _React$Component.call.apply(_React$Component, [this].concat(args)) || this;
|
|
15327
|
-
|
|
15328
|
-
_defineProperty(_assertThisInitialized(_this), "state", {
|
|
15297
|
+
_this.state = {
|
|
15329
15298
|
width: _this.props.width,
|
|
15330
15299
|
height: _this.props.height,
|
|
15331
15300
|
propsWidth: _this.props.width,
|
|
15332
15301
|
propsHeight: _this.props.height
|
|
15333
|
-
}
|
|
15334
|
-
|
|
15335
|
-
_defineProperty(_assertThisInitialized(_this), "onResize", function (e, data) {
|
|
15302
|
+
};
|
|
15303
|
+
_this.onResize = function (e, data) {
|
|
15336
15304
|
var size = data.size;
|
|
15337
|
-
|
|
15338
15305
|
if (_this.props.onResize) {
|
|
15339
|
-
e.persist
|
|
15340
|
-
|
|
15306
|
+
e.persist == null ? void 0 : e.persist();
|
|
15341
15307
|
_this.setState(size, function () {
|
|
15342
15308
|
return _this.props.onResize && _this.props.onResize(e, data);
|
|
15343
15309
|
});
|
|
15344
15310
|
} else {
|
|
15345
15311
|
_this.setState(size);
|
|
15346
15312
|
}
|
|
15347
|
-
}
|
|
15348
|
-
|
|
15313
|
+
};
|
|
15349
15314
|
return _this;
|
|
15350
15315
|
}
|
|
15351
|
-
|
|
15352
15316
|
ResizableBox.getDerivedStateFromProps = function getDerivedStateFromProps(props, state) {
|
|
15353
15317
|
// If parent changes height/width, set that in our state.
|
|
15354
15318
|
if (state.propsWidth !== props.width || state.propsHeight !== props.height) {
|
|
@@ -15359,34 +15323,30 @@ var ResizableBox = /*#__PURE__*/function (_React$Component) {
|
|
|
15359
15323
|
propsHeight: props.height
|
|
15360
15324
|
};
|
|
15361
15325
|
}
|
|
15362
|
-
|
|
15363
15326
|
return null;
|
|
15364
15327
|
};
|
|
15365
|
-
|
|
15366
15328
|
var _proto = ResizableBox.prototype;
|
|
15367
|
-
|
|
15368
15329
|
_proto.render = function render() {
|
|
15369
15330
|
// Basic wrapper around a Resizable instance.
|
|
15370
15331
|
// If you use Resizable directly, you are responsible for updating the child component
|
|
15371
15332
|
// with a new width and height.
|
|
15372
15333
|
var _this$props = this.props,
|
|
15373
|
-
|
|
15374
|
-
|
|
15375
|
-
|
|
15376
|
-
|
|
15377
|
-
|
|
15378
|
-
|
|
15379
|
-
|
|
15380
|
-
|
|
15381
|
-
|
|
15382
|
-
|
|
15383
|
-
|
|
15384
|
-
|
|
15385
|
-
|
|
15386
|
-
|
|
15387
|
-
|
|
15388
|
-
|
|
15389
|
-
|
|
15334
|
+
handle = _this$props.handle,
|
|
15335
|
+
handleSize = _this$props.handleSize,
|
|
15336
|
+
onResize = _this$props.onResize,
|
|
15337
|
+
onResizeStart = _this$props.onResizeStart,
|
|
15338
|
+
onResizeStop = _this$props.onResizeStop,
|
|
15339
|
+
draggableOpts = _this$props.draggableOpts,
|
|
15340
|
+
minConstraints = _this$props.minConstraints,
|
|
15341
|
+
maxConstraints = _this$props.maxConstraints,
|
|
15342
|
+
lockAspectRatio = _this$props.lockAspectRatio,
|
|
15343
|
+
axis = _this$props.axis,
|
|
15344
|
+
width = _this$props.width,
|
|
15345
|
+
height = _this$props.height,
|
|
15346
|
+
resizeHandles = _this$props.resizeHandles,
|
|
15347
|
+
style = _this$props.style,
|
|
15348
|
+
transformScale = _this$props.transformScale,
|
|
15349
|
+
props = _objectWithoutPropertiesLoose(_this$props, _excluded);
|
|
15390
15350
|
return /*#__PURE__*/React.createElement(_Resizable.default, {
|
|
15391
15351
|
axis: axis,
|
|
15392
15352
|
draggableOpts: draggableOpts,
|
|
@@ -15409,15 +15369,13 @@ var ResizableBox = /*#__PURE__*/function (_React$Component) {
|
|
|
15409
15369
|
})
|
|
15410
15370
|
})));
|
|
15411
15371
|
};
|
|
15412
|
-
|
|
15413
15372
|
return ResizableBox;
|
|
15414
15373
|
}(React.Component);
|
|
15415
|
-
|
|
15416
15374
|
exports["default"] = ResizableBox;
|
|
15417
|
-
|
|
15418
|
-
|
|
15375
|
+
// PropTypes are identical to <Resizable>, except that children are not strictly required to be present.
|
|
15376
|
+
ResizableBox.propTypes = _objectSpread(_objectSpread({}, _propTypes2.resizableProps), {}, {
|
|
15419
15377
|
children: _propTypes.default.element
|
|
15420
|
-
})
|
|
15378
|
+
});
|
|
15421
15379
|
|
|
15422
15380
|
/***/ }),
|
|
15423
15381
|
|
|
@@ -15429,13 +15387,9 @@ _defineProperty(ResizableBox, "propTypes", _objectSpread(_objectSpread({}, _prop
|
|
|
15429
15387
|
|
|
15430
15388
|
exports.__esModule = true;
|
|
15431
15389
|
exports.resizableProps = void 0;
|
|
15432
|
-
|
|
15433
15390
|
var _propTypes = _interopRequireDefault(__webpack_require__("aWzz"));
|
|
15434
|
-
|
|
15435
15391
|
var _reactDraggable = __webpack_require__("j6Rw");
|
|
15436
|
-
|
|
15437
15392
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
15438
|
-
|
|
15439
15393
|
var resizableProps = {
|
|
15440
15394
|
/*
|
|
15441
15395
|
* Restricts resizing to a particular axis (default: 'both')
|
|
@@ -15446,12 +15400,10 @@ var resizableProps = {
|
|
|
15446
15400
|
* */
|
|
15447
15401
|
axis: _propTypes.default.oneOf(['both', 'x', 'y', 'none']),
|
|
15448
15402
|
className: _propTypes.default.string,
|
|
15449
|
-
|
|
15450
15403
|
/*
|
|
15451
15404
|
* Require that one and only one child be present.
|
|
15452
15405
|
* */
|
|
15453
15406
|
children: _propTypes.default.element.isRequired,
|
|
15454
|
-
|
|
15455
15407
|
/*
|
|
15456
15408
|
* These will be passed wholesale to react-draggable's DraggableCore
|
|
15457
15409
|
* */
|
|
@@ -15471,48 +15423,50 @@ var resizableProps = {
|
|
|
15471
15423
|
onMouseDown: _propTypes.default.func,
|
|
15472
15424
|
scale: _propTypes.default.number
|
|
15473
15425
|
}),
|
|
15474
|
-
|
|
15475
15426
|
/*
|
|
15476
15427
|
* Initial height
|
|
15477
15428
|
* */
|
|
15478
|
-
height:
|
|
15479
|
-
|
|
15429
|
+
height: function height() {
|
|
15430
|
+
for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {
|
|
15431
|
+
args[_key] = arguments[_key];
|
|
15432
|
+
}
|
|
15433
|
+
var props = args[0];
|
|
15434
|
+
// Required if resizing height or both
|
|
15435
|
+
if (props.axis === 'both' || props.axis === 'y') {
|
|
15436
|
+
var _PropTypes$number;
|
|
15437
|
+
return (_PropTypes$number = _propTypes.default.number).isRequired.apply(_PropTypes$number, args);
|
|
15438
|
+
}
|
|
15439
|
+
return _propTypes.default.number.apply(_propTypes.default, args);
|
|
15440
|
+
},
|
|
15480
15441
|
/*
|
|
15481
15442
|
* Customize cursor resize handle
|
|
15482
15443
|
* */
|
|
15483
15444
|
handle: _propTypes.default.oneOfType([_propTypes.default.node, _propTypes.default.func]),
|
|
15484
|
-
|
|
15485
15445
|
/*
|
|
15486
15446
|
* If you change this, be sure to update your css
|
|
15487
15447
|
* */
|
|
15488
15448
|
handleSize: _propTypes.default.arrayOf(_propTypes.default.number),
|
|
15489
15449
|
lockAspectRatio: _propTypes.default.bool,
|
|
15490
|
-
|
|
15491
15450
|
/*
|
|
15492
15451
|
* Max X & Y measure
|
|
15493
15452
|
* */
|
|
15494
15453
|
maxConstraints: _propTypes.default.arrayOf(_propTypes.default.number),
|
|
15495
|
-
|
|
15496
15454
|
/*
|
|
15497
15455
|
* Min X & Y measure
|
|
15498
15456
|
* */
|
|
15499
15457
|
minConstraints: _propTypes.default.arrayOf(_propTypes.default.number),
|
|
15500
|
-
|
|
15501
15458
|
/*
|
|
15502
15459
|
* Called on stop resize event
|
|
15503
15460
|
* */
|
|
15504
15461
|
onResizeStop: _propTypes.default.func,
|
|
15505
|
-
|
|
15506
15462
|
/*
|
|
15507
15463
|
* Called on start resize event
|
|
15508
15464
|
* */
|
|
15509
15465
|
onResizeStart: _propTypes.default.func,
|
|
15510
|
-
|
|
15511
15466
|
/*
|
|
15512
15467
|
* Called on resize event
|
|
15513
15468
|
* */
|
|
15514
15469
|
onResize: _propTypes.default.func,
|
|
15515
|
-
|
|
15516
15470
|
/*
|
|
15517
15471
|
* Defines which resize handles should be rendered (default: 'se')
|
|
15518
15472
|
* 's' - South handle (bottom-center)
|
|
@@ -15525,16 +15479,25 @@ var resizableProps = {
|
|
|
15525
15479
|
* 'ne' - Northeast handle (top-center)
|
|
15526
15480
|
* */
|
|
15527
15481
|
resizeHandles: _propTypes.default.arrayOf(_propTypes.default.oneOf(['s', 'w', 'e', 'n', 'sw', 'nw', 'se', 'ne'])),
|
|
15528
|
-
|
|
15529
15482
|
/*
|
|
15530
15483
|
* If `transform: scale(n)` is set on the parent, this should be set to `n`.
|
|
15531
15484
|
* */
|
|
15532
15485
|
transformScale: _propTypes.default.number,
|
|
15533
|
-
|
|
15534
15486
|
/*
|
|
15535
15487
|
* Initial width
|
|
15536
15488
|
*/
|
|
15537
|
-
width:
|
|
15489
|
+
width: function width() {
|
|
15490
|
+
for (var _len2 = arguments.length, args = new Array(_len2), _key2 = 0; _key2 < _len2; _key2++) {
|
|
15491
|
+
args[_key2] = arguments[_key2];
|
|
15492
|
+
}
|
|
15493
|
+
var props = args[0];
|
|
15494
|
+
// Required if resizing width or both
|
|
15495
|
+
if (props.axis === 'both' || props.axis === 'x') {
|
|
15496
|
+
var _PropTypes$number2;
|
|
15497
|
+
return (_PropTypes$number2 = _propTypes.default.number).isRequired.apply(_PropTypes$number2, args);
|
|
15498
|
+
}
|
|
15499
|
+
return _propTypes.default.number.apply(_propTypes.default, args);
|
|
15500
|
+
}
|
|
15538
15501
|
};
|
|
15539
15502
|
exports.resizableProps = resizableProps;
|
|
15540
15503
|
|
|
@@ -15548,27 +15511,21 @@ exports.resizableProps = resizableProps;
|
|
|
15548
15511
|
|
|
15549
15512
|
exports.__esModule = true;
|
|
15550
15513
|
exports.cloneElement = cloneElement;
|
|
15551
|
-
|
|
15552
15514
|
var _react = _interopRequireDefault(__webpack_require__("neV8"));
|
|
15553
|
-
|
|
15554
15515
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
15555
|
-
|
|
15556
|
-
function
|
|
15557
|
-
|
|
15558
|
-
function
|
|
15559
|
-
|
|
15560
|
-
function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
|
15561
|
-
|
|
15516
|
+
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
|
15517
|
+
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
|
|
15518
|
+
function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
|
15519
|
+
function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return typeof key === "symbol" ? key : String(key); }
|
|
15520
|
+
function _toPrimitive(input, hint) { if (typeof input !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (typeof res !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); }
|
|
15562
15521
|
// React.addons.cloneWithProps look-alike that merges style & className.
|
|
15563
15522
|
function cloneElement(element, props) {
|
|
15564
15523
|
if (props.style && element.props.style) {
|
|
15565
15524
|
props.style = _objectSpread(_objectSpread({}, element.props.style), props.style);
|
|
15566
15525
|
}
|
|
15567
|
-
|
|
15568
15526
|
if (props.className && element.props.className) {
|
|
15569
15527
|
props.className = element.props.className + " " + props.className;
|
|
15570
15528
|
}
|
|
15571
|
-
|
|
15572
15529
|
return /*#__PURE__*/_react.default.cloneElement(element, props);
|
|
15573
15530
|
}
|
|
15574
15531
|
|
|
@@ -18340,7 +18297,7 @@ class foundation_Tooltip extends foundation {
|
|
|
18340
18297
|
* Because the handler needs to be bound to the document. If you bind during the constructor phase
|
|
18341
18298
|
* When there are multiple container instances in a page, one click triggers the handler of multiple containers
|
|
18342
18299
|
*/
|
|
18343
|
-
if (trigger === 'click' || clickTriggerToHide) {
|
|
18300
|
+
if (trigger === 'click' || clickTriggerToHide || trigger === 'contextMenu') {
|
|
18344
18301
|
this._adapter.registerClickOutsideHandler(this.hide);
|
|
18345
18302
|
}
|
|
18346
18303
|
this._bindScrollEvent();
|
|
@@ -18612,6 +18569,13 @@ class foundation_Tooltip extends foundation {
|
|
|
18612
18569
|
// when trigger type is 'custom', no need to bind eventHandler
|
|
18613
18570
|
// show/hide completely depend on props.visible which change by user
|
|
18614
18571
|
break;
|
|
18572
|
+
case 'contextMenu':
|
|
18573
|
+
triggerEventSet[eventNames.contextMenu] = e => {
|
|
18574
|
+
e.preventDefault();
|
|
18575
|
+
this.show();
|
|
18576
|
+
};
|
|
18577
|
+
// Click outside needs special treatment, can not be directly tied to the trigger Element, need to be bound to the document
|
|
18578
|
+
break;
|
|
18615
18579
|
default:
|
|
18616
18580
|
break;
|
|
18617
18581
|
}
|
|
@@ -19346,7 +19310,7 @@ const tooltip_constants_cssClasses = {
|
|
|
19346
19310
|
};
|
|
19347
19311
|
const tooltip_constants_strings = {
|
|
19348
19312
|
POSITION_SET: ['top', 'topLeft', 'topRight', 'left', 'leftTop', 'leftBottom', 'right', 'rightTop', 'rightBottom', 'bottom', 'bottomLeft', 'bottomRight', 'leftTopOver', 'rightTopOver', 'leftBottomOver', 'rightBottomOver'],
|
|
19349
|
-
TRIGGER_SET: ['hover', 'focus', 'click', 'custom'],
|
|
19313
|
+
TRIGGER_SET: ['hover', 'focus', 'click', 'custom', 'contextMenu'],
|
|
19350
19314
|
STATUS_DISABLED: 'disabled',
|
|
19351
19315
|
STATUS_LOADING: 'loading'
|
|
19352
19316
|
};
|
|
@@ -20393,7 +20357,8 @@ class Tooltip extends BaseComponent {
|
|
|
20393
20357
|
click: 'onClick',
|
|
20394
20358
|
focus: 'onFocus',
|
|
20395
20359
|
blur: 'onBlur',
|
|
20396
|
-
keydown: 'onKeyDown'
|
|
20360
|
+
keydown: 'onKeyDown',
|
|
20361
|
+
contextMenu: 'onContextMenu'
|
|
20397
20362
|
}),
|
|
20398
20363
|
registerTriggerEvent: triggerEventSet => {
|
|
20399
20364
|
this.setState({
|
|
@@ -21677,7 +21642,7 @@ const convertIcon = (Svg, iconType) => {
|
|
|
21677
21642
|
};
|
|
21678
21643
|
|
|
21679
21644
|
/* harmony default export */ const components_Icon = (Icon);
|
|
21680
|
-
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/
|
|
21645
|
+
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconTick.js
|
|
21681
21646
|
|
|
21682
21647
|
|
|
21683
21648
|
function SvgComponent(props) {
|
|
@@ -21692,100 +21657,16 @@ function SvgComponent(props) {
|
|
|
21692
21657
|
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
21693
21658
|
fillRule: "evenodd",
|
|
21694
21659
|
clipRule: "evenodd",
|
|
21695
|
-
d: "
|
|
21696
|
-
fill: "currentColor"
|
|
21697
|
-
}));
|
|
21698
|
-
}
|
|
21699
|
-
const IconComponent = convertIcon(SvgComponent, 'alert_circle');
|
|
21700
|
-
/* harmony default export */ const IconAlertCircle = (IconComponent);
|
|
21701
|
-
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconAlertTriangle.js
|
|
21702
|
-
|
|
21703
|
-
|
|
21704
|
-
function IconAlertTriangle_SvgComponent(props) {
|
|
21705
|
-
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
21706
|
-
viewBox: "0 0 24 24",
|
|
21707
|
-
fill: "none",
|
|
21708
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
21709
|
-
width: "1em",
|
|
21710
|
-
height: "1em",
|
|
21711
|
-
focusable: false,
|
|
21712
|
-
"aria-hidden": true
|
|
21713
|
-
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
21714
|
-
fillRule: "evenodd",
|
|
21715
|
-
clipRule: "evenodd",
|
|
21716
|
-
d: "M10.2268 2.3986L1.52616 19.0749C0.831449 20.4064 1.79747 22 3.29933 22H20.7007C22.2025 22 23.1686 20.4064 22.4739 19.0749L13.7732 2.3986C13.0254 0.965441 10.9746 0.965442 10.2268 2.3986ZM13.1415 14.0101C13.0603 14.5781 12.5739 15 12.0001 15C11.4263 15 10.9398 14.5781 10.8586 14.0101L10.2829 9.97992C10.1336 8.93495 10.9445 8.00002 12.0001 8.00002C13.0556 8.00002 13.8665 8.93495 13.7172 9.97992L13.1415 14.0101ZM13.5001 18.5C13.5001 19.3284 12.8285 20 12.0001 20C11.1716 20 10.5001 19.3284 10.5001 18.5C10.5001 17.6716 11.1716 17 12.0001 17C12.8285 17 13.5001 17.6716 13.5001 18.5Z",
|
|
21717
|
-
fill: "currentColor"
|
|
21718
|
-
}));
|
|
21719
|
-
}
|
|
21720
|
-
const IconAlertTriangle_IconComponent = convertIcon(IconAlertTriangle_SvgComponent, 'alert_triangle');
|
|
21721
|
-
/* harmony default export */ const IconAlertTriangle = (IconAlertTriangle_IconComponent);
|
|
21722
|
-
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconArrowLeft.js
|
|
21723
|
-
|
|
21724
|
-
|
|
21725
|
-
function IconArrowLeft_SvgComponent(props) {
|
|
21726
|
-
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
21727
|
-
viewBox: "0 0 24 24",
|
|
21728
|
-
fill: "none",
|
|
21729
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
21730
|
-
width: "1em",
|
|
21731
|
-
height: "1em",
|
|
21732
|
-
focusable: false,
|
|
21733
|
-
"aria-hidden": true
|
|
21734
|
-
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
21735
|
-
fillRule: "evenodd",
|
|
21736
|
-
clipRule: "evenodd",
|
|
21737
|
-
d: "M23 12C23 12.8284 22.3284 13.5 21.5 13.5L6.12132 13.5L12.5607 19.9393C13.1464 20.5251 13.1464 21.4749 12.5607 22.0607C11.9749 22.6464 11.0251 22.6464 10.4393 22.0607L1.43934 13.0607C0.853554 12.4749 0.853554 11.5251 1.43934 10.9393L10.4393 1.93934C11.0251 1.35355 11.9749 1.35355 12.5607 1.93934C13.1464 2.52513 13.1464 3.47487 12.5607 4.06066L6.12132 10.5L21.5 10.5C22.3284 10.5 23 11.1716 23 12Z",
|
|
21738
|
-
fill: "currentColor"
|
|
21739
|
-
}));
|
|
21740
|
-
}
|
|
21741
|
-
const IconArrowLeft_IconComponent = convertIcon(IconArrowLeft_SvgComponent, 'arrow_left');
|
|
21742
|
-
/* harmony default export */ const IconArrowLeft = (IconArrowLeft_IconComponent);
|
|
21743
|
-
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconArrowRight.js
|
|
21744
|
-
|
|
21745
|
-
|
|
21746
|
-
function IconArrowRight_SvgComponent(props) {
|
|
21747
|
-
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
21748
|
-
viewBox: "0 0 24 24",
|
|
21749
|
-
fill: "none",
|
|
21750
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
21751
|
-
width: "1em",
|
|
21752
|
-
height: "1em",
|
|
21753
|
-
focusable: false,
|
|
21754
|
-
"aria-hidden": true
|
|
21755
|
-
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
21756
|
-
fillRule: "evenodd",
|
|
21757
|
-
clipRule: "evenodd",
|
|
21758
|
-
d: "M1 12C1 11.1716 1.67157 10.5 2.5 10.5L17.8787 10.5L11.4393 4.06066C10.8536 3.47487 10.8536 2.52513 11.4393 1.93934C12.0251 1.35355 12.9749 1.35355 13.5607 1.93934L22.5607 10.9393C23.1464 11.5251 23.1464 12.4749 22.5607 13.0607L13.5607 22.0607C12.9749 22.6464 12.0251 22.6464 11.4393 22.0607C10.8536 21.4749 10.8536 20.5251 11.4393 19.9393L17.8787 13.5L2.5 13.5C1.67157 13.5 1 12.8284 1 12Z",
|
|
21759
|
-
fill: "currentColor"
|
|
21760
|
-
}));
|
|
21761
|
-
}
|
|
21762
|
-
const IconArrowRight_IconComponent = convertIcon(IconArrowRight_SvgComponent, 'arrow_right');
|
|
21763
|
-
/* harmony default export */ const IconArrowRight = (IconArrowRight_IconComponent);
|
|
21764
|
-
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconCalendar.js
|
|
21765
|
-
|
|
21766
|
-
|
|
21767
|
-
function IconCalendar_SvgComponent(props) {
|
|
21768
|
-
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
21769
|
-
viewBox: "0 0 24 24",
|
|
21770
|
-
fill: "none",
|
|
21771
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
21772
|
-
width: "1em",
|
|
21773
|
-
height: "1em",
|
|
21774
|
-
focusable: false,
|
|
21775
|
-
"aria-hidden": true
|
|
21776
|
-
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
21777
|
-
fillRule: "evenodd",
|
|
21778
|
-
clipRule: "evenodd",
|
|
21779
|
-
d: "M4 20V8H20V20H4ZM2 4C2 2.89543 2.89543 2 4 2H20C21.1046 2 22 2.89543 22 4V20C22 21.1046 21.1046 22 20 22H4C2.89543 22 2 21.1046 2 20V4ZM6 10.5C6 10.2239 6.22386 10 6.5 10H8.5C8.77614 10 9 10.2239 9 10.5V12.5C9 12.7761 8.77614 13 8.5 13H6.5C6.22386 13 6 12.7761 6 12.5V10.5ZM6.5 15C6.22386 15 6 15.2239 6 15.5V17.5C6 17.7761 6.22386 18 6.5 18H8.5C8.77614 18 9 17.7761 9 17.5V15.5C9 15.2239 8.77614 15 8.5 15H6.5ZM10.5 10.5C10.5 10.2239 10.7239 10 11 10H13C13.2761 10 13.5 10.2239 13.5 10.5V12.5C13.5 12.7761 13.2761 13 13 13H11C10.7239 13 10.5 12.7761 10.5 12.5V10.5ZM11 15C10.7239 15 10.5 15.2239 10.5 15.5V17.5C10.5 17.7761 10.7239 18 11 18H13C13.2761 18 13.5 17.7761 13.5 17.5V15.5C13.5 15.2239 13.2761 15 13 15H11ZM15 10.5C15 10.2239 15.2239 10 15.5 10H17.5C17.7761 10 18 10.2239 18 10.5V12.5C18 12.7761 17.7761 13 17.5 13H15.5C15.2239 13 15 12.7761 15 12.5V10.5ZM15.5 15C15.2239 15 15 15.2239 15 15.5V17.5C15 17.7761 15.2239 18 15.5 18H17.5C17.7761 18 18 17.7761 18 17.5V15.5C18 15.2239 17.7761 15 17.5 15H15.5Z",
|
|
21660
|
+
d: "M21.3516 4.2652C22.0336 4.73552 22.2052 5.66964 21.7348 6.35162L11.7348 20.8516C11.4765 21.2262 11.0622 21.4632 10.6084 21.4961C10.1546 21.529 9.71041 21.3541 9.40082 21.0207L2.90082 14.0207C2.33711 13.4136 2.37226 12.4645 2.97933 11.9008C3.5864 11.3371 4.53549 11.3723 5.0992 11.9793L10.3268 17.6091L19.2652 4.64842C19.7355 3.96644 20.6696 3.79487 21.3516 4.2652Z",
|
|
21780
21661
|
fill: "currentColor"
|
|
21781
21662
|
}));
|
|
21782
21663
|
}
|
|
21783
|
-
const
|
|
21784
|
-
/* harmony default export */ const
|
|
21785
|
-
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/
|
|
21664
|
+
const IconComponent = convertIcon(SvgComponent, 'tick');
|
|
21665
|
+
/* harmony default export */ const IconTick = (IconComponent);
|
|
21666
|
+
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconCopy.js
|
|
21786
21667
|
|
|
21787
21668
|
|
|
21788
|
-
function
|
|
21669
|
+
function IconCopy_SvgComponent(props) {
|
|
21789
21670
|
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
21790
21671
|
viewBox: "0 0 24 24",
|
|
21791
21672
|
fill: "none",
|
|
@@ -21795,1355 +21676,15 @@ function IconCalendarClock_SvgComponent(props) {
|
|
|
21795
21676
|
focusable: false,
|
|
21796
21677
|
"aria-hidden": true
|
|
21797
21678
|
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
21798
|
-
d: "
|
|
21799
|
-
fill: "currentColor"
|
|
21800
|
-
}), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
21801
|
-
d: "M16 10H17C16.4614 10 15.9369 10.0608 15.4332 10.176C15.5943 10.065 15.7896 10 16 10Z",
|
|
21802
|
-
fill: "currentColor"
|
|
21803
|
-
}), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
21804
|
-
d: "M13.4981 10.9376C13.4659 10.4144 13.0313 10 12.5 10H11.5C10.9477 10 10.5 10.4477 10.5 11V12C10.5 12.4742 10.83 12.8712 11.2729 12.9741C11.857 12.1446 12.6168 11.4478 13.4981 10.9376Z",
|
|
21805
|
-
fill: "currentColor"
|
|
21806
|
-
}), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
21807
|
-
d: "M7 10C6.44772 10 6 10.4477 6 11V12C6 12.5523 6.44772 13 7 13H8C8.55228 13 9 12.5523 9 12V11C9 10.4477 8.55228 10 8 10H7Z",
|
|
21808
|
-
fill: "currentColor"
|
|
21809
|
-
}), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
21810
|
-
d: "M6 16C6 15.4477 6.44772 15 7 15H8C8.55228 15 9 15.4477 9 16V17C9 17.5523 8.55228 18 8 18H7C6.44772 18 6 17.5523 6 17V16Z",
|
|
21679
|
+
d: "M7 4C7 2.89543 7.89543 2 9 2H20C21.1046 2 22 2.89543 22 4V15C22 16.1046 21.1046 17 20 17H19V8C19 6 18 5 16 5H7V4Z",
|
|
21811
21680
|
fill: "currentColor"
|
|
21812
21681
|
}), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
21813
|
-
|
|
21814
|
-
clipRule: "evenodd",
|
|
21815
|
-
d: "M22 17C22 19.7614 19.7614 22 17 22C14.2386 22 12 19.7614 12 17C12 14.2386 14.2386 12 17 12C19.7614 12 22 14.2386 22 17ZM18 15C18 14.4477 17.5523 14 17 14C16.4477 14 16 14.4477 16 15V17C16 17.2652 16.1054 17.5196 16.2929 17.7071L17.7929 19.2071C18.1834 19.5976 18.8166 19.5976 19.2071 19.2071C19.5976 18.8166 19.5976 18.1834 19.2071 17.7929L18 16.5858V15Z",
|
|
21816
|
-
fill: "currentColor"
|
|
21817
|
-
}));
|
|
21818
|
-
}
|
|
21819
|
-
const IconCalendarClock_IconComponent = convertIcon(IconCalendarClock_SvgComponent, 'calendar_clock');
|
|
21820
|
-
/* harmony default export */ const IconCalendarClock = (IconCalendarClock_IconComponent);
|
|
21821
|
-
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconCaretdown.js
|
|
21822
|
-
|
|
21823
|
-
|
|
21824
|
-
function IconCaretdown_SvgComponent(props) {
|
|
21825
|
-
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
21826
|
-
viewBox: "0 0 24 24",
|
|
21827
|
-
fill: "none",
|
|
21828
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
21829
|
-
width: "1em",
|
|
21830
|
-
height: "1em",
|
|
21831
|
-
focusable: false,
|
|
21832
|
-
"aria-hidden": true
|
|
21833
|
-
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
21834
|
-
d: "M17.549 15.659L12.753 21.139C12.6591 21.2464 12.5434 21.3325 12.4135 21.3915C12.2836 21.4505 12.1427 21.481 12 21.481C11.8574 21.481 11.7164 21.4505 11.5865 21.3915C11.4566 21.3325 11.3409 21.2464 11.247 21.139L6.45101 15.659C5.88501 15.011 6.34501 14 7.20401 14H16.796C17.656 14 18.115 15.012 17.549 15.659Z",
|
|
21835
|
-
fill: "currentColor"
|
|
21836
|
-
}));
|
|
21837
|
-
}
|
|
21838
|
-
const IconCaretdown_IconComponent = convertIcon(IconCaretdown_SvgComponent, 'caretdown');
|
|
21839
|
-
/* harmony default export */ const IconCaretdown = (IconCaretdown_IconComponent);
|
|
21840
|
-
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconCaretup.js
|
|
21841
|
-
|
|
21842
|
-
|
|
21843
|
-
function IconCaretup_SvgComponent(props) {
|
|
21844
|
-
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
21845
|
-
viewBox: "0 0 24 24",
|
|
21846
|
-
fill: "none",
|
|
21847
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
21848
|
-
width: "1em",
|
|
21849
|
-
height: "1em",
|
|
21850
|
-
focusable: false,
|
|
21851
|
-
"aria-hidden": true
|
|
21852
|
-
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
21853
|
-
d: "M6.45096 8.34102L11.247 2.86102C11.3408 2.75361 11.4566 2.66753 11.5865 2.60854C11.7163 2.54956 11.8573 2.51904 12 2.51904C12.1426 2.51904 12.2836 2.54956 12.4135 2.60854C12.5433 2.66753 12.6591 2.75361 12.753 2.86102L17.549 8.34102C18.115 8.98802 17.655 10 16.796 10H7.20396C6.34396 10 5.88496 8.98802 6.45096 8.34102Z",
|
|
21854
|
-
fill: "currentColor"
|
|
21855
|
-
}));
|
|
21856
|
-
}
|
|
21857
|
-
const IconCaretup_IconComponent = convertIcon(IconCaretup_SvgComponent, 'caretup');
|
|
21858
|
-
/* harmony default export */ const IconCaretup = (IconCaretup_IconComponent);
|
|
21859
|
-
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconCheckboxIndeterminate.js
|
|
21860
|
-
|
|
21861
|
-
|
|
21862
|
-
function IconCheckboxIndeterminate_SvgComponent(props) {
|
|
21863
|
-
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
21864
|
-
viewBox: "0 0 24 24",
|
|
21865
|
-
fill: "none",
|
|
21866
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
21867
|
-
width: "1em",
|
|
21868
|
-
height: "1em",
|
|
21869
|
-
focusable: false,
|
|
21870
|
-
"aria-hidden": true
|
|
21871
|
-
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
21872
|
-
d: "M5 12.5C5 11.6716 5.67157 11 6.5 11H17.5C18.3284 11 19 11.6716 19 12.5C19 13.3284 18.3284 14 17.5 14H6.5C5.67157 14 5 13.3284 5 12.5Z",
|
|
21873
|
-
fill: "currentColor"
|
|
21874
|
-
}));
|
|
21875
|
-
}
|
|
21876
|
-
const IconCheckboxIndeterminate_IconComponent = convertIcon(IconCheckboxIndeterminate_SvgComponent, 'checkbox_indeterminate');
|
|
21877
|
-
/* harmony default export */ const IconCheckboxIndeterminate = (IconCheckboxIndeterminate_IconComponent);
|
|
21878
|
-
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconCheckboxTick.js
|
|
21879
|
-
|
|
21880
|
-
|
|
21881
|
-
function IconCheckboxTick_SvgComponent(props) {
|
|
21882
|
-
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
21883
|
-
viewBox: "0 0 24 24",
|
|
21884
|
-
fill: "none",
|
|
21885
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
21886
|
-
width: "1em",
|
|
21887
|
-
height: "1em",
|
|
21888
|
-
focusable: false,
|
|
21889
|
-
"aria-hidden": true
|
|
21890
|
-
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
21891
|
-
fillRule: "evenodd",
|
|
21892
|
-
clipRule: "evenodd",
|
|
21893
|
-
d: "M17.4111 7.30848C18.0692 7.81171 18.1947 8.75312 17.6915 9.41119L11.1915 17.9112C10.909 18.2806 10.4711 18.4981 10.0061 18.5C9.54105 18.5019 9.10143 18.288 8.81592 17.9209L5.31592 13.4209C4.80731 12.767 4.92512 11.8246 5.57904 11.316C6.23296 10.8074 7.17537 10.9252 7.68398 11.5791L9.98988 14.5438L15.3084 7.58884C15.8116 6.93077 16.7531 6.80525 17.4111 7.30848Z",
|
|
21894
|
-
fill: "currentColor"
|
|
21895
|
-
}));
|
|
21896
|
-
}
|
|
21897
|
-
const IconCheckboxTick_IconComponent = convertIcon(IconCheckboxTick_SvgComponent, 'checkbox_tick');
|
|
21898
|
-
/* harmony default export */ const IconCheckboxTick = (IconCheckboxTick_IconComponent);
|
|
21899
|
-
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconChevronDown.js
|
|
21900
|
-
|
|
21901
|
-
|
|
21902
|
-
function IconChevronDown_SvgComponent(props) {
|
|
21903
|
-
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
21904
|
-
viewBox: "0 0 24 24",
|
|
21905
|
-
fill: "none",
|
|
21906
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
21907
|
-
width: "1em",
|
|
21908
|
-
height: "1em",
|
|
21909
|
-
focusable: false,
|
|
21910
|
-
"aria-hidden": true
|
|
21911
|
-
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
21912
|
-
fillRule: "evenodd",
|
|
21913
|
-
clipRule: "evenodd",
|
|
21914
|
-
d: "M4.08045 7.59809C4.66624 7.01231 5.61599 7.01231 6.20177 7.59809L11.8586 13.2549L17.5155 7.59809C18.1013 7.01231 19.051 7.01231 19.6368 7.59809C20.2226 8.18388 20.2226 9.13363 19.6368 9.71941L12.9193 16.4369C12.3335 17.0227 11.3838 17.0227 10.798 16.4369L4.08045 9.71941C3.49467 9.13363 3.49467 8.18388 4.08045 7.59809Z",
|
|
21915
|
-
fill: "currentColor"
|
|
21916
|
-
}));
|
|
21917
|
-
}
|
|
21918
|
-
const IconChevronDown_IconComponent = convertIcon(IconChevronDown_SvgComponent, 'chevron_down');
|
|
21919
|
-
/* harmony default export */ const IconChevronDown = (IconChevronDown_IconComponent);
|
|
21920
|
-
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconChevronLeft.js
|
|
21921
|
-
|
|
21922
|
-
|
|
21923
|
-
function IconChevronLeft_SvgComponent(props) {
|
|
21924
|
-
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
21925
|
-
viewBox: "0 0 24 24",
|
|
21926
|
-
fill: "none",
|
|
21927
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
21928
|
-
width: "1em",
|
|
21929
|
-
height: "1em",
|
|
21930
|
-
focusable: false,
|
|
21931
|
-
"aria-hidden": true
|
|
21932
|
-
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
21933
|
-
fillRule: "evenodd",
|
|
21934
|
-
clipRule: "evenodd",
|
|
21935
|
-
d: "M16.2782 4.23933C16.864 4.82511 16.864 5.77486 16.2782 6.36065L10.6213 12.0175L16.2782 17.6744C16.864 18.2601 16.864 19.2099 16.2782 19.7957C15.6924 20.3815 14.7426 20.3815 14.1569 19.7957L7.43934 13.0782C6.85355 12.4924 6.85355 11.5426 7.43934 10.9568L14.1569 4.23933C14.7426 3.65354 15.6924 3.65354 16.2782 4.23933Z",
|
|
21936
|
-
fill: "currentColor"
|
|
21937
|
-
}));
|
|
21938
|
-
}
|
|
21939
|
-
const IconChevronLeft_IconComponent = convertIcon(IconChevronLeft_SvgComponent, 'chevron_left');
|
|
21940
|
-
/* harmony default export */ const IconChevronLeft = (IconChevronLeft_IconComponent);
|
|
21941
|
-
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconChevronRight.js
|
|
21942
|
-
|
|
21943
|
-
|
|
21944
|
-
function IconChevronRight_SvgComponent(props) {
|
|
21945
|
-
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
21946
|
-
viewBox: "0 0 24 24",
|
|
21947
|
-
fill: "none",
|
|
21948
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
21949
|
-
width: "1em",
|
|
21950
|
-
height: "1em",
|
|
21951
|
-
focusable: false,
|
|
21952
|
-
"aria-hidden": true
|
|
21953
|
-
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
21954
|
-
fillRule: "evenodd",
|
|
21955
|
-
clipRule: "evenodd",
|
|
21956
|
-
d: "M7.43934 19.7957C6.85355 19.2099 6.85355 18.2601 7.43934 17.6744L13.0962 12.0175L7.43934 6.36065C6.85355 5.77486 6.85355 4.82511 7.43934 4.23933C8.02513 3.65354 8.97487 3.65354 9.56066 4.23933L16.2782 10.9568C16.864 11.5426 16.864 12.4924 16.2782 13.0782L9.56066 19.7957C8.97487 20.3815 8.02513 20.3815 7.43934 19.7957Z",
|
|
21957
|
-
fill: "currentColor"
|
|
21958
|
-
}));
|
|
21959
|
-
}
|
|
21960
|
-
const IconChevronRight_IconComponent = convertIcon(IconChevronRight_SvgComponent, 'chevron_right');
|
|
21961
|
-
/* harmony default export */ const IconChevronRight = (IconChevronRight_IconComponent);
|
|
21962
|
-
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconChevronUp.js
|
|
21963
|
-
|
|
21964
|
-
|
|
21965
|
-
function IconChevronUp_SvgComponent(props) {
|
|
21966
|
-
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
21967
|
-
viewBox: "0 0 24 24",
|
|
21968
|
-
fill: "none",
|
|
21969
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
21970
|
-
width: "1em",
|
|
21971
|
-
height: "1em",
|
|
21972
|
-
focusable: false,
|
|
21973
|
-
"aria-hidden": true
|
|
21974
|
-
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
21975
|
-
fillRule: "evenodd",
|
|
21976
|
-
clipRule: "evenodd",
|
|
21977
|
-
d: "M19.637 16.4369C19.0513 17.0227 18.1015 17.0227 17.5157 16.4369L11.8589 10.7801L6.20202 16.4369C5.61623 17.0227 4.66648 17.0227 4.0807 16.4369C3.49491 15.8511 3.49491 14.9014 4.0807 14.3156L10.7982 7.59809C11.384 7.01231 12.3337 7.01231 12.9195 7.59809L19.637 14.3156C20.2228 14.9014 20.2228 15.8511 19.637 16.4369Z",
|
|
21978
|
-
fill: "currentColor"
|
|
21979
|
-
}));
|
|
21980
|
-
}
|
|
21981
|
-
const IconChevronUp_IconComponent = convertIcon(IconChevronUp_SvgComponent, 'chevron_up');
|
|
21982
|
-
/* harmony default export */ const IconChevronUp = (IconChevronUp_IconComponent);
|
|
21983
|
-
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconClear.js
|
|
21984
|
-
|
|
21985
|
-
|
|
21986
|
-
function IconClear_SvgComponent(props) {
|
|
21987
|
-
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
21988
|
-
viewBox: "0 0 24 24",
|
|
21989
|
-
fill: "none",
|
|
21990
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
21991
|
-
width: "1em",
|
|
21992
|
-
height: "1em",
|
|
21993
|
-
focusable: false,
|
|
21994
|
-
"aria-hidden": true
|
|
21995
|
-
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
21996
|
-
fillRule: "evenodd",
|
|
21997
|
-
clipRule: "evenodd",
|
|
21998
|
-
d: "M12 23C18.0751 23 23 18.0751 23 12C23 5.92487 18.0751 1 12 1C5.92487 1 1 5.92487 1 12C1 18.0751 5.92487 23 12 23ZM17.0352 16.8626C16.4597 17.4585 15.5101 17.4751 14.9142 16.8996L12.0368 14.121L9.25822 16.9984C8.68274 17.5943 7.73314 17.6109 7.13722 17.0354C6.5413 16.4599 6.52472 15.5103 7.1002 14.9144L9.87883 12.037L7.00147 9.2584C6.40555 8.68293 6.38897 7.73332 6.96445 7.1374C7.53992 6.54148 8.48953 6.52491 9.08545 7.10038L11.9628 9.87901L14.7414 7.00165C15.3169 6.40573 16.2665 6.38916 16.8624 6.96463C17.4584 7.54011 17.4749 8.48971 16.8995 9.08563L14.1208 11.963L16.9982 14.7416C17.5941 15.3171 17.6107 16.2667 17.0352 16.8626Z",
|
|
21999
|
-
fill: "currentColor"
|
|
22000
|
-
}));
|
|
22001
|
-
}
|
|
22002
|
-
const IconClear_IconComponent = convertIcon(IconClear_SvgComponent, 'clear');
|
|
22003
|
-
/* harmony default export */ const IconClear = (IconClear_IconComponent);
|
|
22004
|
-
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconClock.js
|
|
22005
|
-
|
|
22006
|
-
|
|
22007
|
-
function IconClock_SvgComponent(props) {
|
|
22008
|
-
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
22009
|
-
viewBox: "0 0 24 24",
|
|
22010
|
-
fill: "none",
|
|
22011
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
22012
|
-
width: "1em",
|
|
22013
|
-
height: "1em",
|
|
22014
|
-
focusable: false,
|
|
22015
|
-
"aria-hidden": true
|
|
22016
|
-
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
22017
|
-
fillRule: "evenodd",
|
|
22018
|
-
clipRule: "evenodd",
|
|
22019
|
-
d: "M12 23C18.0751 23 23 18.0751 23 12C23 5.92487 18.0751 1 12 1C5.92487 1 1 5.92487 1 12C1 18.0751 5.92487 23 12 23ZM13.5 6.5V11.3787L17.0607 14.9393C17.6464 15.5251 17.6464 16.4749 17.0607 17.0607C16.4749 17.6464 15.5251 17.6464 14.9393 17.0607L10.9393 13.0607C10.658 12.7794 10.5 12.3978 10.5 12V6.5C10.5 5.67157 11.1716 5 12 5C12.8284 5 13.5 5.67157 13.5 6.5Z",
|
|
22020
|
-
fill: "currentColor"
|
|
22021
|
-
}));
|
|
22022
|
-
}
|
|
22023
|
-
const IconClock_IconComponent = convertIcon(IconClock_SvgComponent, 'clock');
|
|
22024
|
-
/* harmony default export */ const IconClock = (IconClock_IconComponent);
|
|
22025
|
-
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconClose.js
|
|
22026
|
-
|
|
22027
|
-
|
|
22028
|
-
function IconClose_SvgComponent(props) {
|
|
22029
|
-
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
22030
|
-
viewBox: "0 0 24 24",
|
|
22031
|
-
fill: "none",
|
|
22032
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
22033
|
-
width: "1em",
|
|
22034
|
-
height: "1em",
|
|
22035
|
-
focusable: false,
|
|
22036
|
-
"aria-hidden": true
|
|
22037
|
-
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
22038
|
-
d: "M17.6568 19.7782C18.2426 20.3639 19.1924 20.3639 19.7782 19.7782C20.3639 19.1924 20.3639 18.2426 19.7782 17.6568L14.1213 12L19.7782 6.34313C20.3639 5.75734 20.3639 4.8076 19.7782 4.22181C19.1924 3.63602 18.2426 3.63602 17.6568 4.22181L12 9.87866L6.34313 4.22181C5.75734 3.63602 4.8076 3.63602 4.22181 4.22181C3.63602 4.8076 3.63602 5.75734 4.22181 6.34313L9.87866 12L4.22181 17.6568C3.63602 18.2426 3.63602 19.1924 4.22181 19.7782C4.8076 20.3639 5.75734 20.3639 6.34313 19.7782L12 14.1213L17.6568 19.7782Z",
|
|
22039
|
-
fill: "currentColor"
|
|
22040
|
-
}));
|
|
22041
|
-
}
|
|
22042
|
-
const IconClose_IconComponent = convertIcon(IconClose_SvgComponent, 'close');
|
|
22043
|
-
/* harmony default export */ const IconClose = (IconClose_IconComponent);
|
|
22044
|
-
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconCopy.js
|
|
22045
|
-
|
|
22046
|
-
|
|
22047
|
-
function IconCopy_SvgComponent(props) {
|
|
22048
|
-
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
22049
|
-
viewBox: "0 0 24 24",
|
|
22050
|
-
fill: "none",
|
|
22051
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
22052
|
-
width: "1em",
|
|
22053
|
-
height: "1em",
|
|
22054
|
-
focusable: false,
|
|
22055
|
-
"aria-hidden": true
|
|
22056
|
-
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
22057
|
-
d: "M7 4C7 2.89543 7.89543 2 9 2H20C21.1046 2 22 2.89543 22 4V15C22 16.1046 21.1046 17 20 17H19V8C19 6 18 5 16 5H7V4Z",
|
|
22058
|
-
fill: "currentColor"
|
|
22059
|
-
}), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
22060
|
-
d: "M5 7C3.89543 7 3 7.89543 3 9V19C3 20.1046 3.89543 21 5 21H15C16.1046 21 17 20.1046 17 19V9C17 7.89543 16.1046 7 15 7H5Z",
|
|
21682
|
+
d: "M5 7C3.89543 7 3 7.89543 3 9V19C3 20.1046 3.89543 21 5 21H15C16.1046 21 17 20.1046 17 19V9C17 7.89543 16.1046 7 15 7H5Z",
|
|
22061
21683
|
fill: "currentColor"
|
|
22062
21684
|
}));
|
|
22063
21685
|
}
|
|
22064
21686
|
const IconCopy_IconComponent = convertIcon(IconCopy_SvgComponent, 'copy');
|
|
22065
21687
|
/* harmony default export */ const IconCopy = (IconCopy_IconComponent);
|
|
22066
|
-
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconDoubleChevronLeft.js
|
|
22067
|
-
|
|
22068
|
-
|
|
22069
|
-
function IconDoubleChevronLeft_SvgComponent(props) {
|
|
22070
|
-
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
22071
|
-
viewBox: "0 0 24 24",
|
|
22072
|
-
fill: "none",
|
|
22073
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
22074
|
-
width: "1em",
|
|
22075
|
-
height: "1em",
|
|
22076
|
-
focusable: false,
|
|
22077
|
-
"aria-hidden": true
|
|
22078
|
-
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
22079
|
-
fillRule: "evenodd",
|
|
22080
|
-
clipRule: "evenodd",
|
|
22081
|
-
d: "M12.6185 4.39653C13.1272 4.92524 13.1272 5.78245 12.6185 6.31116L7.14483 12L12.6185 17.6888C13.1272 18.2176 13.1272 19.0748 12.6185 19.6035C12.1098 20.1322 11.285 20.1322 10.7763 19.6035L4.38153 12.9573C3.87282 12.4286 3.87282 11.5714 4.38153 11.0427L10.7763 4.39653C11.285 3.86782 12.1098 3.86782 12.6185 4.39653Z",
|
|
22082
|
-
fill: "currentColor"
|
|
22083
|
-
}), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
22084
|
-
fillRule: "evenodd",
|
|
22085
|
-
clipRule: "evenodd",
|
|
22086
|
-
d: "M19.6185 4.39653C20.1272 4.92524 20.1272 5.78245 19.6185 6.31116L14.1448 12L19.6185 17.6888C20.1272 18.2176 20.1272 19.0748 19.6185 19.6035C19.1098 20.1322 18.285 20.1322 17.7763 19.6035L11.3815 12.9573C10.8728 12.4286 10.8728 11.5714 11.3815 11.0427L17.7763 4.39653C18.285 3.86782 19.1098 3.86782 19.6185 4.39653Z",
|
|
22087
|
-
fill: "currentColor"
|
|
22088
|
-
}));
|
|
22089
|
-
}
|
|
22090
|
-
const IconDoubleChevronLeft_IconComponent = convertIcon(IconDoubleChevronLeft_SvgComponent, 'double_chevron_left');
|
|
22091
|
-
/* harmony default export */ const IconDoubleChevronLeft = (IconDoubleChevronLeft_IconComponent);
|
|
22092
|
-
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconDoubleChevronRight.js
|
|
22093
|
-
|
|
22094
|
-
|
|
22095
|
-
function IconDoubleChevronRight_SvgComponent(props) {
|
|
22096
|
-
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
22097
|
-
viewBox: "0 0 24 24",
|
|
22098
|
-
fill: "none",
|
|
22099
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
22100
|
-
width: "1em",
|
|
22101
|
-
height: "1em",
|
|
22102
|
-
focusable: false,
|
|
22103
|
-
"aria-hidden": true
|
|
22104
|
-
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
22105
|
-
fillRule: "evenodd",
|
|
22106
|
-
clipRule: "evenodd",
|
|
22107
|
-
d: "M4.38153 4.39653C4.89024 3.86782 5.71502 3.86782 6.22373 4.39653L12.6185 11.0427C13.1272 11.5714 13.1272 12.4286 12.6185 12.9573L6.22373 19.6035C5.71502 20.1322 4.89024 20.1322 4.38153 19.6035C3.87282 19.0748 3.87282 18.2176 4.38153 17.6888L9.85517 12L4.38153 6.31116C3.87282 5.78245 3.87282 4.92524 4.38153 4.39653Z",
|
|
22108
|
-
fill: "currentColor"
|
|
22109
|
-
}), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
22110
|
-
fillRule: "evenodd",
|
|
22111
|
-
clipRule: "evenodd",
|
|
22112
|
-
d: "M11.3815 4.39653C11.8902 3.86782 12.715 3.86782 13.2237 4.39653L19.6185 11.0427C20.1272 11.5714 20.1272 12.4286 19.6185 12.9573L13.2237 19.6035C12.715 20.1322 11.8902 20.1322 11.3815 19.6035C10.8728 19.0748 10.8728 18.2176 11.3815 17.6888L16.8552 12L11.3815 6.31116C10.8728 5.78245 10.8728 4.92524 11.3815 4.39653Z",
|
|
22113
|
-
fill: "currentColor"
|
|
22114
|
-
}));
|
|
22115
|
-
}
|
|
22116
|
-
const IconDoubleChevronRight_IconComponent = convertIcon(IconDoubleChevronRight_SvgComponent, 'double_chevron_right');
|
|
22117
|
-
/* harmony default export */ const IconDoubleChevronRight = (IconDoubleChevronRight_IconComponent);
|
|
22118
|
-
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconDownload.js
|
|
22119
|
-
|
|
22120
|
-
|
|
22121
|
-
function IconDownload_SvgComponent(props) {
|
|
22122
|
-
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
22123
|
-
viewBox: "0 0 24 24",
|
|
22124
|
-
fill: "none",
|
|
22125
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
22126
|
-
width: "1em",
|
|
22127
|
-
height: "1em",
|
|
22128
|
-
focusable: false,
|
|
22129
|
-
"aria-hidden": true
|
|
22130
|
-
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
22131
|
-
fillRule: "evenodd",
|
|
22132
|
-
clipRule: "evenodd",
|
|
22133
|
-
d: "M17.8395 8.05827C17.1837 5.16226 14.5944 3 11.5 3C7.91015 3 5 5.91015 5 9.5C5 10.0204 5.06115 10.5264 5.17665 11.0114C2.84229 11.1772 1 13.1234 1 15.5C1 17.9853 3.01469 20 5.49995 20H17C20.3137 20 23 17.3137 23 14C23 10.9712 20.7558 8.46659 17.8395 8.05827ZM11.6799 17.7333C11.8653 17.8878 12.1347 17.8878 12.3201 17.7333L17.4695 13.4421C17.6492 13.2924 17.5433 13 17.3095 13H14V9.5C14 9.22386 13.7761 9 13.5 9H10.5C10.2239 9 10 9.22386 10 9.5V13H6.69051C6.45669 13 6.35084 13.2924 6.53047 13.4421L11.6799 17.7333Z",
|
|
22134
|
-
fill: "currentColor"
|
|
22135
|
-
}));
|
|
22136
|
-
}
|
|
22137
|
-
const IconDownload_IconComponent = convertIcon(IconDownload_SvgComponent, 'download');
|
|
22138
|
-
/* harmony default export */ const IconDownload = (IconDownload_IconComponent);
|
|
22139
|
-
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconEyeClosedSolid.js
|
|
22140
|
-
|
|
22141
|
-
|
|
22142
|
-
function IconEyeClosedSolid_SvgComponent(props) {
|
|
22143
|
-
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
22144
|
-
viewBox: "0 0 24 24",
|
|
22145
|
-
fill: "none",
|
|
22146
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
22147
|
-
width: "1em",
|
|
22148
|
-
height: "1em",
|
|
22149
|
-
focusable: false,
|
|
22150
|
-
"aria-hidden": true
|
|
22151
|
-
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
22152
|
-
fillRule: "evenodd",
|
|
22153
|
-
clipRule: "evenodd",
|
|
22154
|
-
d: "M21.7071 3.70711C22.0976 3.31658 22.0976 2.68342 21.7071 2.29289C21.3166 1.90237 20.6834 1.90237 20.2929 2.29289L17.3135 5.27233C15.8114 4.50566 14.0321 4 12 4C5 4 1 10 1 12C1 13.1757 2.38219 15.7335 4.94345 17.6423L2.29289 20.2929C1.90237 20.6834 1.90237 21.3166 2.29289 21.7071C2.68342 22.0976 3.31658 22.0976 3.70711 21.7071L21.7071 3.70711ZM7.8284 14.7574L9.29237 13.2934C9.10495 12.9018 9 12.4631 9 12C9 10.3431 10.3431 9 12 9C12.4631 9 12.9018 9.10495 13.2934 9.29237L14.7574 7.8284C13.967 7.30488 13.0191 7 12 7C9.23858 7 7 9.23858 7 12C7 13.0191 7.30488 13.967 7.8284 14.7574Z",
|
|
22155
|
-
fill: "currentColor"
|
|
22156
|
-
}), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
22157
|
-
d: "M12 20C10.7789 20 9.64914 19.8174 8.61594 19.5054L11.1871 16.9342C11.4516 16.9775 11.7232 17 12 17C14.7614 17 17 14.7614 17 12C17 11.7232 16.9775 11.4516 16.9342 11.1871L20.5032 7.61808C22.1342 9.27317 23 11.0695 23 12C23 14 19 20 12 20Z",
|
|
22158
|
-
fill: "currentColor"
|
|
22159
|
-
}));
|
|
22160
|
-
}
|
|
22161
|
-
const IconEyeClosedSolid_IconComponent = convertIcon(IconEyeClosedSolid_SvgComponent, 'eye_closed_solid');
|
|
22162
|
-
/* harmony default export */ const IconEyeClosedSolid = (IconEyeClosedSolid_IconComponent);
|
|
22163
|
-
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconEyeOpened.js
|
|
22164
|
-
|
|
22165
|
-
|
|
22166
|
-
function IconEyeOpened_SvgComponent(props) {
|
|
22167
|
-
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
22168
|
-
viewBox: "0 0 24 24",
|
|
22169
|
-
fill: "none",
|
|
22170
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
22171
|
-
width: "1em",
|
|
22172
|
-
height: "1em",
|
|
22173
|
-
focusable: false,
|
|
22174
|
-
"aria-hidden": true
|
|
22175
|
-
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
22176
|
-
fillRule: "evenodd",
|
|
22177
|
-
clipRule: "evenodd",
|
|
22178
|
-
d: "M12 4C5 4 1 10 1 12C1 14 5 20 12 20C19 20 23 14 23 12C23 10 19 4 12 4ZM17 12C17 14.7614 14.7614 17 12 17C9.23858 17 7 14.7614 7 12C7 9.23858 9.23858 7 12 7C14.7614 7 17 9.23858 17 12ZM12 15C13.6569 15 15 13.6569 15 12C15 10.3431 13.6569 9 12 9C10.3431 9 9 10.3431 9 12C9 13.6569 10.3431 15 12 15Z",
|
|
22179
|
-
fill: "currentColor"
|
|
22180
|
-
}));
|
|
22181
|
-
}
|
|
22182
|
-
const IconEyeOpened_IconComponent = convertIcon(IconEyeOpened_SvgComponent, 'eye_opened');
|
|
22183
|
-
/* harmony default export */ const IconEyeOpened = (IconEyeOpened_IconComponent);
|
|
22184
|
-
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconFile.js
|
|
22185
|
-
|
|
22186
|
-
|
|
22187
|
-
function IconFile_SvgComponent(props) {
|
|
22188
|
-
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
22189
|
-
viewBox: "0 0 24 24",
|
|
22190
|
-
fill: "none",
|
|
22191
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
22192
|
-
width: "1em",
|
|
22193
|
-
height: "1em",
|
|
22194
|
-
focusable: false,
|
|
22195
|
-
"aria-hidden": true
|
|
22196
|
-
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
22197
|
-
fillRule: "evenodd",
|
|
22198
|
-
clipRule: "evenodd",
|
|
22199
|
-
d: "M12 2C12 1.44772 11.5523 1 11 1H6C4.89543 1 4 1.89543 4 3V21C4 22.1046 4.89543 23 6 23H18C19.1046 23 20 22.1046 20 21V10C20 9.44772 19.5523 9 19 9H14C12.8954 9 12 8.10457 12 7V2ZM7 8C7 7.44772 7.44772 7 8 7H9C9.55228 7 10 7.44772 10 8C10 8.55228 9.55228 9 9 9H8C7.44772 9 7 8.55228 7 8ZM7 13C7 12.4477 7.44772 12 8 12H16C16.5523 12 17 12.4477 17 13C17 13.5523 16.5523 14 16 14H8C7.44772 14 7 13.5523 7 13ZM8 17C7.44772 17 7 17.4477 7 18C7 18.5523 7.44772 19 8 19H16C16.5523 19 17 18.5523 17 18C17 17.4477 16.5523 17 16 17H8ZM19.0686 7.49999H14.5C13.9477 7.49999 13.5 7.05228 13.5 6.49999V1.93136C13.5 1.21864 14.3617 0.861707 14.8657 1.36568L19.6343 6.13431C20.1383 6.63828 19.7814 7.49999 19.0686 7.49999Z",
|
|
22200
|
-
fill: "currentColor"
|
|
22201
|
-
}));
|
|
22202
|
-
}
|
|
22203
|
-
const IconFile_IconComponent = convertIcon(IconFile_SvgComponent, 'file');
|
|
22204
|
-
/* harmony default export */ const IconFile = (IconFile_IconComponent);
|
|
22205
|
-
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconFilter.js
|
|
22206
|
-
|
|
22207
|
-
|
|
22208
|
-
function IconFilter_SvgComponent(props) {
|
|
22209
|
-
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
22210
|
-
viewBox: "0 0 24 24",
|
|
22211
|
-
fill: "none",
|
|
22212
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
22213
|
-
width: "1em",
|
|
22214
|
-
height: "1em",
|
|
22215
|
-
focusable: false,
|
|
22216
|
-
"aria-hidden": true
|
|
22217
|
-
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
22218
|
-
fillRule: "evenodd",
|
|
22219
|
-
clipRule: "evenodd",
|
|
22220
|
-
d: "M1.0929 2.57912C1.25675 2.22596 1.61069 2 2.00001 2H22C22.3893 2 22.7433 2.22596 22.9071 2.57912C23.071 2.93229 23.015 3.34845 22.7636 3.64573L14.5654 12.8261V21C14.5654 21.3466 14.386 21.6684 14.0911 21.8507C13.7963 22.0329 13.4282 22.0494 13.1182 21.8944L10.0528 19.8944C9.71401 19.725 9.5 19.3788 9.5 19V12.8261L1.23644 3.64573C0.985045 3.34845 0.929036 2.93229 1.0929 2.57912Z",
|
|
22221
|
-
fill: "currentColor"
|
|
22222
|
-
}));
|
|
22223
|
-
}
|
|
22224
|
-
const IconFilter_IconComponent = convertIcon(IconFilter_SvgComponent, 'filter');
|
|
22225
|
-
/* harmony default export */ const IconFilter = (IconFilter_IconComponent);
|
|
22226
|
-
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconFolder.js
|
|
22227
|
-
|
|
22228
|
-
|
|
22229
|
-
function IconFolder_SvgComponent(props) {
|
|
22230
|
-
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
22231
|
-
viewBox: "0 0 24 24",
|
|
22232
|
-
fill: "none",
|
|
22233
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
22234
|
-
width: "1em",
|
|
22235
|
-
height: "1em",
|
|
22236
|
-
focusable: false,
|
|
22237
|
-
"aria-hidden": true
|
|
22238
|
-
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
22239
|
-
d: "M5 2C3.34315 2 2 3.34315 2 5V8H22C22 6 21 4 19 4H12.5523C11.8711 4 11.2102 3.76816 10.6783 3.34261L9.54783 2.43826C9.1932 2.15456 8.75258 2 8.29844 2H5Z",
|
|
22240
|
-
fill: "currentColor"
|
|
22241
|
-
}), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
22242
|
-
d: "M22 10H2V19C2 20.6569 3.34315 22 5 22H19C20.6569 22 22 20.6569 22 19V10Z",
|
|
22243
|
-
fill: "currentColor"
|
|
22244
|
-
}));
|
|
22245
|
-
}
|
|
22246
|
-
const IconFolder_IconComponent = convertIcon(IconFolder_SvgComponent, 'folder');
|
|
22247
|
-
/* harmony default export */ const IconFolder = (IconFolder_IconComponent);
|
|
22248
|
-
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconFolderOpen.js
|
|
22249
|
-
|
|
22250
|
-
|
|
22251
|
-
function IconFolderOpen_SvgComponent(props) {
|
|
22252
|
-
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
22253
|
-
viewBox: "0 0 24 24",
|
|
22254
|
-
fill: "none",
|
|
22255
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
22256
|
-
width: "1em",
|
|
22257
|
-
height: "1em",
|
|
22258
|
-
focusable: false,
|
|
22259
|
-
"aria-hidden": true
|
|
22260
|
-
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
22261
|
-
fillRule: "evenodd",
|
|
22262
|
-
clipRule: "evenodd",
|
|
22263
|
-
d: "M2 5C2 3.34315 3.34315 2 5 2H8.29844C8.75258 2 9.1932 2.15456 9.54783 2.43826L10.6783 3.34261C11.2102 3.76816 11.8711 4 12.5523 4H18C20 4 21 6 21 8H7.53361C6.62889 8 5.83683 8.60735 5.6021 9.48109L2.57151 20.7617C2.21202 20.2671 2 19.6583 2 19V5ZM22.1667 10H9.5C8.61111 10 7.82889 10.5867 7.58 11.44L4.87333 20.72C4.68667 21.36 5.16667 22 5.83333 22H18.5C19.3889 22 20.1711 21.4133 20.42 20.56L23.1267 11.28C23.3133 10.64 22.8333 10 22.1667 10Z",
|
|
22264
|
-
fill: "currentColor"
|
|
22265
|
-
}));
|
|
22266
|
-
}
|
|
22267
|
-
const IconFolderOpen_IconComponent = convertIcon(IconFolderOpen_SvgComponent, 'folder_open');
|
|
22268
|
-
/* harmony default export */ const IconFolderOpen = (IconFolderOpen_IconComponent);
|
|
22269
|
-
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconHandle.js
|
|
22270
|
-
|
|
22271
|
-
|
|
22272
|
-
function IconHandle_SvgComponent(props) {
|
|
22273
|
-
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
22274
|
-
viewBox: "0 0 24 24",
|
|
22275
|
-
fill: "none",
|
|
22276
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
22277
|
-
width: "1em",
|
|
22278
|
-
height: "1em",
|
|
22279
|
-
focusable: false,
|
|
22280
|
-
"aria-hidden": true
|
|
22281
|
-
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
22282
|
-
d: "M9 7C10.1046 7 11 6.10457 11 5C11 3.89543 10.1046 3 9 3C7.89543 3 7 3.89543 7 5C7 6.10457 7.89543 7 9 7Z",
|
|
22283
|
-
fill: "currentColor"
|
|
22284
|
-
}), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
22285
|
-
d: "M9 14C10.1046 14 11 13.1046 11 12C11 10.8954 10.1046 10 9 10C7.89543 10 7 10.8954 7 12C7 13.1046 7.89543 14 9 14Z",
|
|
22286
|
-
fill: "currentColor"
|
|
22287
|
-
}), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
22288
|
-
d: "M11 19C11 20.1046 10.1046 21 9 21C7.89543 21 7 20.1046 7 19C7 17.8954 7.89543 17 9 17C10.1046 17 11 17.8954 11 19Z",
|
|
22289
|
-
fill: "currentColor"
|
|
22290
|
-
}), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
22291
|
-
d: "M15 7C16.1046 7 17 6.10457 17 5C17 3.89543 16.1046 3 15 3C13.8954 3 13 3.89543 13 5C13 6.10457 13.8954 7 15 7Z",
|
|
22292
|
-
fill: "currentColor"
|
|
22293
|
-
}), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
22294
|
-
d: "M17 12C17 13.1046 16.1046 14 15 14C13.8954 14 13 13.1046 13 12C13 10.8954 13.8954 10 15 10C16.1046 10 17 10.8954 17 12Z",
|
|
22295
|
-
fill: "currentColor"
|
|
22296
|
-
}), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
22297
|
-
d: "M15 21C16.1046 21 17 20.1046 17 19C17 17.8954 16.1046 17 15 17C13.8954 17 13 17.8954 13 19C13 20.1046 13.8954 21 15 21Z",
|
|
22298
|
-
fill: "currentColor"
|
|
22299
|
-
}));
|
|
22300
|
-
}
|
|
22301
|
-
const IconHandle_IconComponent = convertIcon(IconHandle_SvgComponent, 'handle');
|
|
22302
|
-
/* harmony default export */ const IconHandle = (IconHandle_IconComponent);
|
|
22303
|
-
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconHelpCircle.js
|
|
22304
|
-
|
|
22305
|
-
|
|
22306
|
-
function IconHelpCircle_SvgComponent(props) {
|
|
22307
|
-
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
22308
|
-
viewBox: "0 0 24 24",
|
|
22309
|
-
fill: "none",
|
|
22310
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
22311
|
-
width: "1em",
|
|
22312
|
-
height: "1em",
|
|
22313
|
-
focusable: false,
|
|
22314
|
-
"aria-hidden": true
|
|
22315
|
-
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
22316
|
-
fillRule: "evenodd",
|
|
22317
|
-
clipRule: "evenodd",
|
|
22318
|
-
d: "M12 23C18.0751 23 23 18.0751 23 12C23 5.92487 18.0751 1 12 1C5.92487 1 1 5.92487 1 12C1 18.0751 5.92487 23 12 23ZM11.8281 14.6094C10.9688 14.6094 10.5391 14.0723 10.5391 13.3691C10.5391 12.3242 11.0566 11.6504 12.2676 10.7324C12.2894 10.7158 12.3111 10.6993 12.3326 10.6829C13.1573 10.0555 13.7324 9.61807 13.7324 8.82812C13.7324 7.93945 12.9023 7.42188 11.9746 7.42188C11.2129 7.42188 10.627 7.70508 10.168 8.30078C9.83594 8.64258 9.57227 8.82812 9.12305 8.82812C8.38086 8.82812 8 8.31055 8 7.71484C8 7.10938 8.3418 6.49414 8.87891 6.02539C9.60156 5.40039 10.7539 5 12.2773 5C14.9922 5 16.8965 6.33789 16.8965 8.64258C16.8965 10.3223 15.8906 11.1328 14.709 11.9531C13.9082 12.5391 13.5273 12.8809 13.2246 13.5742L13.2238 13.5756C12.8922 14.1609 12.638 14.6094 11.8281 14.6094ZM11.8086 18.7695C10.8711 18.7695 10.0996 18.1641 10.0996 17.2266C10.0996 16.2891 10.8711 15.6836 11.8086 15.6836C12.7461 15.6836 13.5078 16.2891 13.5078 17.2266C13.5078 18.1641 12.7461 18.7695 11.8086 18.7695Z",
|
|
22319
|
-
fill: "currentColor"
|
|
22320
|
-
}));
|
|
22321
|
-
}
|
|
22322
|
-
const IconHelpCircle_IconComponent = convertIcon(IconHelpCircle_SvgComponent, 'help_circle');
|
|
22323
|
-
/* harmony default export */ const IconHelpCircle = (IconHelpCircle_IconComponent);
|
|
22324
|
-
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconInfoCircle.js
|
|
22325
|
-
|
|
22326
|
-
|
|
22327
|
-
function IconInfoCircle_SvgComponent(props) {
|
|
22328
|
-
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
22329
|
-
viewBox: "0 0 24 24",
|
|
22330
|
-
fill: "none",
|
|
22331
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
22332
|
-
width: "1em",
|
|
22333
|
-
height: "1em",
|
|
22334
|
-
focusable: false,
|
|
22335
|
-
"aria-hidden": true
|
|
22336
|
-
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
22337
|
-
fillRule: "evenodd",
|
|
22338
|
-
clipRule: "evenodd",
|
|
22339
|
-
d: "M12 23C18.0751 23 23 18.0751 23 12C23 5.92487 18.0751 1 12 1C5.92487 1 1 5.92487 1 12C1 18.0751 5.92487 23 12 23ZM14 7C14 8.10457 13.1046 9 12 9C10.8954 9 10 8.10457 10 7C10 5.89543 10.8954 5 12 5C13.1046 5 14 5.89543 14 7ZM9 10.75C9 10.3358 9.33579 10 9.75 10H12.5C13.0523 10 13.5 10.4477 13.5 11V16.5H14.25C14.6642 16.5 15 16.8358 15 17.25C15 17.6642 14.6642 18 14.25 18H9.75C9.33579 18 9 17.6642 9 17.25C9 16.8358 9.33579 16.5 9.75 16.5H10.5V11.5H9.75C9.33579 11.5 9 11.1642 9 10.75Z",
|
|
22340
|
-
fill: "currentColor"
|
|
22341
|
-
}));
|
|
22342
|
-
}
|
|
22343
|
-
const IconInfoCircle_IconComponent = convertIcon(IconInfoCircle_SvgComponent, 'info_circle');
|
|
22344
|
-
/* harmony default export */ const IconInfoCircle = (IconInfoCircle_IconComponent);
|
|
22345
|
-
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconMinus.js
|
|
22346
|
-
|
|
22347
|
-
|
|
22348
|
-
function IconMinus_SvgComponent(props) {
|
|
22349
|
-
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
22350
|
-
viewBox: "0 0 24 24",
|
|
22351
|
-
fill: "none",
|
|
22352
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
22353
|
-
width: "1em",
|
|
22354
|
-
height: "1em",
|
|
22355
|
-
focusable: false,
|
|
22356
|
-
"aria-hidden": true
|
|
22357
|
-
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
22358
|
-
d: "M2 12C2 11.1716 2.67157 10.5 3.5 10.5H20.5C21.3284 10.5 22 11.1716 22 12C22 12.8284 21.3284 13.5 20.5 13.5H3.5C2.67157 13.5 2 12.8284 2 12Z",
|
|
22359
|
-
fill: "currentColor"
|
|
22360
|
-
}));
|
|
22361
|
-
}
|
|
22362
|
-
const IconMinus_IconComponent = convertIcon(IconMinus_SvgComponent, 'minus');
|
|
22363
|
-
/* harmony default export */ const IconMinus = (IconMinus_IconComponent);
|
|
22364
|
-
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconMore.js
|
|
22365
|
-
|
|
22366
|
-
|
|
22367
|
-
function IconMore_SvgComponent(props) {
|
|
22368
|
-
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
22369
|
-
viewBox: "0 0 24 24",
|
|
22370
|
-
fill: "none",
|
|
22371
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
22372
|
-
width: "1em",
|
|
22373
|
-
height: "1em",
|
|
22374
|
-
focusable: false,
|
|
22375
|
-
"aria-hidden": true
|
|
22376
|
-
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
22377
|
-
d: "M7 12C7 13.3807 5.88071 14.5 4.5 14.5C3.11929 14.5 2 13.3807 2 12C2 10.6193 3.11929 9.5 4.5 9.5C5.88071 9.5 7 10.6193 7 12Z",
|
|
22378
|
-
fill: "currentColor"
|
|
22379
|
-
}), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
22380
|
-
d: "M14.5 12C14.5 13.3807 13.3807 14.5 12 14.5C10.6193 14.5 9.5 13.3807 9.5 12C9.5 10.6193 10.6193 9.5 12 9.5C13.3807 9.5 14.5 10.6193 14.5 12Z",
|
|
22381
|
-
fill: "currentColor"
|
|
22382
|
-
}), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
22383
|
-
d: "M19.5 14.5C20.8807 14.5 22 13.3807 22 12C22 10.6193 20.8807 9.5 19.5 9.5C18.1193 9.5 17 10.6193 17 12C17 13.3807 18.1193 14.5 19.5 14.5Z",
|
|
22384
|
-
fill: "currentColor"
|
|
22385
|
-
}));
|
|
22386
|
-
}
|
|
22387
|
-
const IconMore_IconComponent = convertIcon(IconMore_SvgComponent, 'more');
|
|
22388
|
-
/* harmony default export */ const IconMore = (IconMore_IconComponent);
|
|
22389
|
-
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconPlus.js
|
|
22390
|
-
|
|
22391
|
-
|
|
22392
|
-
function IconPlus_SvgComponent(props) {
|
|
22393
|
-
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
22394
|
-
viewBox: "0 0 24 24",
|
|
22395
|
-
fill: "none",
|
|
22396
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
22397
|
-
width: "1em",
|
|
22398
|
-
height: "1em",
|
|
22399
|
-
focusable: false,
|
|
22400
|
-
"aria-hidden": true
|
|
22401
|
-
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
22402
|
-
d: "M20.5 13.5C21.3284 13.5 22 12.8284 22 12C22 11.1716 21.3284 10.5 20.5 10.5L13.5 10.5L13.5 3.5C13.5 2.67157 12.8284 2 12 2C11.1716 2 10.5 2.67157 10.5 3.5L10.5 10.5L3.5 10.5C2.67157 10.5 2 11.1716 2 12C2 12.8284 2.67157 13.5 3.5 13.5L10.5 13.5V20.5C10.5 21.3284 11.1716 22 12 22C12.8284 22 13.5 21.3284 13.5 20.5V13.5L20.5 13.5Z",
|
|
22403
|
-
fill: "currentColor"
|
|
22404
|
-
}));
|
|
22405
|
-
}
|
|
22406
|
-
const IconPlus_IconComponent = convertIcon(IconPlus_SvgComponent, 'plus');
|
|
22407
|
-
/* harmony default export */ const IconPlus = (IconPlus_IconComponent);
|
|
22408
|
-
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconRadio.js
|
|
22409
|
-
|
|
22410
|
-
|
|
22411
|
-
function IconRadio_SvgComponent(props) {
|
|
22412
|
-
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
22413
|
-
viewBox: "0 0 24 24",
|
|
22414
|
-
fill: "none",
|
|
22415
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
22416
|
-
width: "1em",
|
|
22417
|
-
height: "1em",
|
|
22418
|
-
focusable: false,
|
|
22419
|
-
"aria-hidden": true
|
|
22420
|
-
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("circle", {
|
|
22421
|
-
cx: 12,
|
|
22422
|
-
cy: 12,
|
|
22423
|
-
r: 5,
|
|
22424
|
-
fill: "currentColor"
|
|
22425
|
-
}));
|
|
22426
|
-
}
|
|
22427
|
-
const IconRadio_IconComponent = convertIcon(IconRadio_SvgComponent, 'radio');
|
|
22428
|
-
/* harmony default export */ const IconRadio = (IconRadio_IconComponent);
|
|
22429
|
-
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconRealSizeStroked.js
|
|
22430
|
-
|
|
22431
|
-
|
|
22432
|
-
function IconRealSizeStroked_SvgComponent(props) {
|
|
22433
|
-
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
22434
|
-
viewBox: "0 0 24 24",
|
|
22435
|
-
fill: "none",
|
|
22436
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
22437
|
-
width: "1em",
|
|
22438
|
-
height: "1em",
|
|
22439
|
-
focusable: false,
|
|
22440
|
-
"aria-hidden": true
|
|
22441
|
-
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
22442
|
-
fillRule: "evenodd",
|
|
22443
|
-
clipRule: "evenodd",
|
|
22444
|
-
d: "M1 6C1 4.89543 1.89543 4 3 4H21C22.1046 4 23 4.89543 23 6V18C23 19.1046 22.1046 20 21 20H3C1.89543 20 1 19.1046 1 18V6ZM21 6L3 6V18H21V6ZM5 9C5 8.44772 5.44772 8 6 8H7.5C8.05228 8 8.5 8.44772 8.5 9V15C8.5 15.5523 8.05228 16 7.5 16C6.94772 16 6.5 15.5523 6.5 15V10H6C5.44772 10 5 9.55228 5 9ZM16 8C15.4477 8 15 8.44772 15 9C15 9.55228 15.4477 10 16 10H16.5V15C16.5 15.5523 16.9477 16 17.5 16C18.0523 16 18.5 15.5523 18.5 15V9C18.5 8.44772 18.0523 8 17.5 8H16ZM13 10C13 10.5523 12.5523 11 12 11C11.4477 11 11 10.5523 11 10C11 9.44772 11.4477 9 12 9C12.5523 9 13 9.44772 13 10ZM12 15C12.5523 15 13 14.5523 13 14C13 13.4477 12.5523 13 12 13C11.4477 13 11 13.4477 11 14C11 14.5523 11.4477 15 12 15Z",
|
|
22445
|
-
fill: "currentColor"
|
|
22446
|
-
}));
|
|
22447
|
-
}
|
|
22448
|
-
const IconRealSizeStroked_IconComponent = convertIcon(IconRealSizeStroked_SvgComponent, 'real_size_stroked');
|
|
22449
|
-
/* harmony default export */ const IconRealSizeStroked = (IconRealSizeStroked_IconComponent);
|
|
22450
|
-
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconRefresh.js
|
|
22451
|
-
|
|
22452
|
-
|
|
22453
|
-
function IconRefresh_SvgComponent(props) {
|
|
22454
|
-
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
22455
|
-
viewBox: "0 0 24 24",
|
|
22456
|
-
fill: "none",
|
|
22457
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
22458
|
-
width: "1em",
|
|
22459
|
-
height: "1em",
|
|
22460
|
-
focusable: false,
|
|
22461
|
-
"aria-hidden": true
|
|
22462
|
-
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
22463
|
-
fillRule: "evenodd",
|
|
22464
|
-
clipRule: "evenodd",
|
|
22465
|
-
d: "M4.49993 11.9998C4.49993 7.85775 7.85775 4.49993 11.9998 4.49993C14.6403 4.49993 16.9645 5.86506 18.3012 7.9305L16.2939 7.52902C15.4815 7.36656 14.6913 7.89337 14.5288 8.7057C14.3664 9.51803 14.8932 10.3083 15.7055 10.4707L20.7055 11.4707C21.4643 11.6225 22.214 11.1721 22.4363 10.4309L23.9363 5.43095C24.1744 4.63747 23.7241 3.80126 22.9307 3.56321C22.1372 3.32517 21.301 3.77543 21.0629 4.56891L20.6287 6.01635C18.7332 3.28781 15.5765 1.49998 11.9998 1.49998C6.20092 1.49998 1.49998 6.20092 1.49998 11.9998C1.49998 17.7987 6.20092 22.4997 11.9998 22.4997C16.5739 22.4997 20.4611 19.5757 21.9018 15.4996C22.1779 14.7186 21.7685 13.8616 20.9874 13.5855C20.2064 13.3095 19.3494 13.7189 19.0733 14.4999C18.0431 17.4149 15.263 19.4997 11.9998 19.4997C7.85775 19.4997 4.49993 16.1419 4.49993 11.9998Z",
|
|
22466
|
-
fill: "currentColor"
|
|
22467
|
-
}));
|
|
22468
|
-
}
|
|
22469
|
-
const IconRefresh_IconComponent = convertIcon(IconRefresh_SvgComponent, 'refresh');
|
|
22470
|
-
/* harmony default export */ const IconRefresh = (IconRefresh_IconComponent);
|
|
22471
|
-
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconRotate.js
|
|
22472
|
-
|
|
22473
|
-
|
|
22474
|
-
function IconRotate_SvgComponent(props) {
|
|
22475
|
-
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
22476
|
-
viewBox: "0 0 24 24",
|
|
22477
|
-
fill: "none",
|
|
22478
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
22479
|
-
width: "1em",
|
|
22480
|
-
height: "1em",
|
|
22481
|
-
focusable: false,
|
|
22482
|
-
"aria-hidden": true
|
|
22483
|
-
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
22484
|
-
d: "M14.2071 2.20711C14.5976 1.81658 14.5976 1.18342 14.2071 0.792893C13.8166 0.402369 13.1834 0.402369 12.7929 0.792893L10.2929 3.29289C9.90237 3.68342 9.90237 4.31658 10.2929 4.70711L12.7929 7.20711C13.1834 7.59763 13.8166 7.59763 14.2071 7.20711C14.5976 6.81658 14.5976 6.18342 14.2071 5.79289L13.4142 5H16C18.7614 5 21 7.23858 21 10V12C21 12.5523 21.4477 13 22 13C22.5523 13 23 12.5523 23 12V10C23 6.13401 19.866 3 16 3H13.4142L14.2071 2.20711Z",
|
|
22485
|
-
fill: "currentColor"
|
|
22486
|
-
}), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
22487
|
-
d: "M3 10C3 8.89543 3.89543 8 5 8H17C18.1046 8 19 8.89543 19 10V20C19 21.1046 18.1046 22 17 22H5C3.89543 22 3 21.1046 3 20V10Z",
|
|
22488
|
-
fill: "currentColor"
|
|
22489
|
-
}));
|
|
22490
|
-
}
|
|
22491
|
-
const IconRotate_IconComponent = convertIcon(IconRotate_SvgComponent, 'rotate');
|
|
22492
|
-
/* harmony default export */ const IconRotate = (IconRotate_IconComponent);
|
|
22493
|
-
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconSearch.js
|
|
22494
|
-
|
|
22495
|
-
|
|
22496
|
-
function IconSearch_SvgComponent(props) {
|
|
22497
|
-
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
22498
|
-
viewBox: "0 0 24 24",
|
|
22499
|
-
fill: "none",
|
|
22500
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
22501
|
-
width: "1em",
|
|
22502
|
-
height: "1em",
|
|
22503
|
-
focusable: false,
|
|
22504
|
-
"aria-hidden": true
|
|
22505
|
-
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
22506
|
-
fillRule: "evenodd",
|
|
22507
|
-
clipRule: "evenodd",
|
|
22508
|
-
d: "M10.5 2C5.80558 2 2 5.80558 2 10.5C2 15.1944 5.80558 19 10.5 19C12.3054 19 13.9794 18.4371 15.356 17.4773L19.4393 21.5606C20.0251 22.1464 20.9749 22.1464 21.5606 21.5606C22.1464 20.9749 22.1464 20.0251 21.5606 19.4393L17.4773 15.356C18.4371 13.9794 19 12.3054 19 10.5C19 5.80558 15.1944 2 10.5 2ZM5 10.5C5 7.46243 7.46243 5 10.5 5C13.5376 5 16 7.46243 16 10.5C16 13.5376 13.5376 16 10.5 16C7.46243 16 5 13.5376 5 10.5Z",
|
|
22509
|
-
fill: "currentColor"
|
|
22510
|
-
}));
|
|
22511
|
-
}
|
|
22512
|
-
const IconSearch_IconComponent = convertIcon(IconSearch_SvgComponent, 'search');
|
|
22513
|
-
/* harmony default export */ const IconSearch = (IconSearch_IconComponent);
|
|
22514
|
-
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconSidebar.js
|
|
22515
|
-
|
|
22516
|
-
|
|
22517
|
-
function IconSidebar_SvgComponent(props) {
|
|
22518
|
-
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
22519
|
-
viewBox: "0 0 24 24",
|
|
22520
|
-
fill: "none",
|
|
22521
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
22522
|
-
width: "1em",
|
|
22523
|
-
height: "1em",
|
|
22524
|
-
focusable: false,
|
|
22525
|
-
"aria-hidden": true
|
|
22526
|
-
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
22527
|
-
fillRule: "evenodd",
|
|
22528
|
-
clipRule: "evenodd",
|
|
22529
|
-
d: "M5 2H19C20.6569 2 22 3.34315 22 5V19C22 20.6569 20.6569 22 19 22H5C3.34315 22 2 20.6569 2 19V5C2 3.34315 3.34315 2 5 2ZM6 4C5.44772 4 5 4.44772 5 5V19C5 19.5523 5.44772 20 6 20H9C9.55229 20 10 19.5523 10 19V5C10 4.44772 9.55229 4 9 4H6Z",
|
|
22530
|
-
fill: "currentColor"
|
|
22531
|
-
}));
|
|
22532
|
-
}
|
|
22533
|
-
const IconSidebar_IconComponent = convertIcon(IconSidebar_SvgComponent, 'sidebar');
|
|
22534
|
-
/* harmony default export */ const IconSidebar = (IconSidebar_IconComponent);
|
|
22535
|
-
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconStar.js
|
|
22536
|
-
|
|
22537
|
-
|
|
22538
|
-
function IconStar_SvgComponent(props) {
|
|
22539
|
-
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
22540
|
-
viewBox: "0 0 24 24",
|
|
22541
|
-
fill: "none",
|
|
22542
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
22543
|
-
width: "1em",
|
|
22544
|
-
height: "1em",
|
|
22545
|
-
focusable: false,
|
|
22546
|
-
"aria-hidden": true
|
|
22547
|
-
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
22548
|
-
d: "M10.7525 1.90411C11.1451 0.698628 12.8549 0.698631 13.2475 1.90411L15.2395 8.01946H21.6858C22.9565 8.01946 23.4848 9.64143 22.4568 10.3865L17.2417 14.1659L19.2337 20.2813C19.6263 21.4868 18.2431 22.4892 17.2151 21.7442L12 17.9647L6.78489 21.7442C5.75687 22.4892 4.37368 21.4868 4.76635 20.2813L6.75834 14.1659L1.54323 10.3865C0.515206 9.64142 1.04354 8.01946 2.31425 8.01946H8.76048L10.7525 1.90411Z",
|
|
22549
|
-
fill: "currentColor"
|
|
22550
|
-
}));
|
|
22551
|
-
}
|
|
22552
|
-
const IconStar_IconComponent = convertIcon(IconStar_SvgComponent, 'star');
|
|
22553
|
-
/* harmony default export */ const IconStar = (IconStar_IconComponent);
|
|
22554
|
-
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconTick.js
|
|
22555
|
-
|
|
22556
|
-
|
|
22557
|
-
function IconTick_SvgComponent(props) {
|
|
22558
|
-
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
22559
|
-
viewBox: "0 0 24 24",
|
|
22560
|
-
fill: "none",
|
|
22561
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
22562
|
-
width: "1em",
|
|
22563
|
-
height: "1em",
|
|
22564
|
-
focusable: false,
|
|
22565
|
-
"aria-hidden": true
|
|
22566
|
-
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
22567
|
-
fillRule: "evenodd",
|
|
22568
|
-
clipRule: "evenodd",
|
|
22569
|
-
d: "M21.3516 4.2652C22.0336 4.73552 22.2052 5.66964 21.7348 6.35162L11.7348 20.8516C11.4765 21.2262 11.0622 21.4632 10.6084 21.4961C10.1546 21.529 9.71041 21.3541 9.40082 21.0207L2.90082 14.0207C2.33711 13.4136 2.37226 12.4645 2.97933 11.9008C3.5864 11.3371 4.53549 11.3723 5.0992 11.9793L10.3268 17.6091L19.2652 4.64842C19.7355 3.96644 20.6696 3.79487 21.3516 4.2652Z",
|
|
22570
|
-
fill: "currentColor"
|
|
22571
|
-
}));
|
|
22572
|
-
}
|
|
22573
|
-
const IconTick_IconComponent = convertIcon(IconTick_SvgComponent, 'tick');
|
|
22574
|
-
/* harmony default export */ const IconTick = (IconTick_IconComponent);
|
|
22575
|
-
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconTickCircle.js
|
|
22576
|
-
|
|
22577
|
-
|
|
22578
|
-
function IconTickCircle_SvgComponent(props) {
|
|
22579
|
-
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
22580
|
-
viewBox: "0 0 24 24",
|
|
22581
|
-
fill: "none",
|
|
22582
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
22583
|
-
width: "1em",
|
|
22584
|
-
height: "1em",
|
|
22585
|
-
focusable: false,
|
|
22586
|
-
"aria-hidden": true
|
|
22587
|
-
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
22588
|
-
fillRule: "evenodd",
|
|
22589
|
-
clipRule: "evenodd",
|
|
22590
|
-
d: "M12 23C18.0751 23 23 18.0751 23 12C23 5.92487 18.0751 1 12 1C5.92487 1 1 5.92487 1 12C1 18.0751 5.92487 23 12 23ZM17.8831 9.82235L11.6854 17.4112C11.4029 17.7806 10.965 17.9981 10.5 18C10.035 18.0019 9.59533 17.788 9.30982 17.421L5.81604 13.4209C5.30744 12.767 5.42524 11.8246 6.07916 11.316C6.73308 10.8074 7.67549 10.9252 8.1841 11.5791L10.4838 14.0439L15.5 8C16.0032 7.34193 16.9446 7.21641 17.6027 7.71964C18.2608 8.22287 18.3863 9.16428 17.8831 9.82235Z",
|
|
22591
|
-
fill: "currentColor"
|
|
22592
|
-
}));
|
|
22593
|
-
}
|
|
22594
|
-
const IconTickCircle_IconComponent = convertIcon(IconTickCircle_SvgComponent, 'tick_circle');
|
|
22595
|
-
/* harmony default export */ const IconTickCircle = (IconTickCircle_IconComponent);
|
|
22596
|
-
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconTreeTriangleDown.js
|
|
22597
|
-
|
|
22598
|
-
|
|
22599
|
-
function IconTreeTriangleDown_SvgComponent(props) {
|
|
22600
|
-
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
22601
|
-
viewBox: "0 0 24 24",
|
|
22602
|
-
fill: "none",
|
|
22603
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
22604
|
-
width: "1em",
|
|
22605
|
-
height: "1em",
|
|
22606
|
-
focusable: false,
|
|
22607
|
-
"aria-hidden": true
|
|
22608
|
-
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
22609
|
-
d: "M20.5598 9.65618L12.7546 18.6322C12.3559 19.0906 11.644 19.0906 11.2453 18.6322L3.4401 9.65618C2.8773 9.00895 3.33701 8 4.19471 8L19.8052 8C20.6629 8 21.1226 9.00895 20.5598 9.65618Z",
|
|
22610
|
-
fill: "currentColor"
|
|
22611
|
-
}));
|
|
22612
|
-
}
|
|
22613
|
-
const IconTreeTriangleDown_IconComponent = convertIcon(IconTreeTriangleDown_SvgComponent, 'tree_triangle_down');
|
|
22614
|
-
/* harmony default export */ const IconTreeTriangleDown = (IconTreeTriangleDown_IconComponent);
|
|
22615
|
-
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconTreeTriangleRight.js
|
|
22616
|
-
|
|
22617
|
-
|
|
22618
|
-
function IconTreeTriangleRight_SvgComponent(props) {
|
|
22619
|
-
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
22620
|
-
viewBox: "0 0 24 24",
|
|
22621
|
-
fill: "none",
|
|
22622
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
22623
|
-
width: "1em",
|
|
22624
|
-
height: "1em",
|
|
22625
|
-
focusable: false,
|
|
22626
|
-
"aria-hidden": true
|
|
22627
|
-
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
22628
|
-
d: "M9.65618 3.44015L18.6322 11.2454C19.0906 11.644 19.0906 12.356 18.6322 12.7546L9.65618 20.5598C9.00895 21.1226 8 20.6629 8 19.8052V4.19475C8 3.33705 9.00895 2.87734 9.65618 3.44015Z",
|
|
22629
|
-
fill: "currentColor"
|
|
22630
|
-
}));
|
|
22631
|
-
}
|
|
22632
|
-
const IconTreeTriangleRight_IconComponent = convertIcon(IconTreeTriangleRight_SvgComponent, 'tree_triangle_right');
|
|
22633
|
-
/* harmony default export */ const IconTreeTriangleRight = (IconTreeTriangleRight_IconComponent);
|
|
22634
|
-
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconUpload.js
|
|
22635
|
-
|
|
22636
|
-
|
|
22637
|
-
function IconUpload_SvgComponent(props) {
|
|
22638
|
-
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
22639
|
-
viewBox: "0 0 24 24",
|
|
22640
|
-
fill: "none",
|
|
22641
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
22642
|
-
width: "1em",
|
|
22643
|
-
height: "1em",
|
|
22644
|
-
focusable: false,
|
|
22645
|
-
"aria-hidden": true
|
|
22646
|
-
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
22647
|
-
fillRule: "evenodd",
|
|
22648
|
-
clipRule: "evenodd",
|
|
22649
|
-
d: "M17.8395 8.05827C17.1837 5.16226 14.5944 3 11.5 3C7.91015 3 5 5.91015 5 9.5C5 10.0204 5.06115 10.5264 5.17665 11.0114C2.84229 11.1772 1 13.1234 1 15.5C1 17.9853 3.01469 20 5.49995 20H17C20.3137 20 23 17.3137 23 14C23 10.9712 20.7558 8.46659 17.8395 8.05827ZM12.3201 8.26674C12.1347 8.11222 11.8653 8.11222 11.6799 8.26674L6.53047 12.5579C6.35084 12.7076 6.45669 13 6.69051 13H10V17.5C10 17.7761 10.2239 18 10.5 18H13.5C13.7761 18 14 17.7761 14 17.5V13H17.3095C17.5433 13 17.6492 12.7076 17.4695 12.5579L12.3201 8.26674Z",
|
|
22650
|
-
fill: "currentColor"
|
|
22651
|
-
}));
|
|
22652
|
-
}
|
|
22653
|
-
const IconUpload_IconComponent = convertIcon(IconUpload_SvgComponent, 'upload');
|
|
22654
|
-
/* harmony default export */ const IconUpload = (IconUpload_IconComponent);
|
|
22655
|
-
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconUploadError.js
|
|
22656
|
-
|
|
22657
|
-
|
|
22658
|
-
function IconUploadError_SvgComponent(props) {
|
|
22659
|
-
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
22660
|
-
viewBox: "0 0 24 24",
|
|
22661
|
-
fill: "none",
|
|
22662
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
22663
|
-
width: "1em",
|
|
22664
|
-
height: "1em",
|
|
22665
|
-
focusable: false,
|
|
22666
|
-
"aria-hidden": true
|
|
22667
|
-
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
22668
|
-
fillRule: "evenodd",
|
|
22669
|
-
clipRule: "evenodd",
|
|
22670
|
-
d: "M22.9998 12.0001C22.9998 18.0753 18.0749 23.0001 11.9998 23.0001C5.92463 23.0001 0.999756 18.0753 0.999756 12.0001C0.999756 5.92499 5.92463 1.00012 11.9998 1.00012C18.0749 1.00012 22.9998 5.92499 22.9998 12.0001ZM13.4998 17.5C13.4998 16.6718 12.8282 16.0001 11.9998 16.0001C11.1713 16.0001 10.4998 16.6718 10.4998 17.5C10.4998 18.3285 11.1713 19 11.9998 19C12.8282 19 13.4998 18.3285 13.4998 17.5ZM11.9998 5.00011C10.9136 5.00011 10.0505 5.91257 10.1107 6.99704L10.4166 12.5024C10.4632 13.3427 11.1582 14.0001 11.9998 14.0001C12.8413 14.0001 13.5363 13.3427 13.583 12.5024L13.8888 6.99704C13.9491 5.91257 13.0859 5.00011 11.9998 5.00011Z",
|
|
22671
|
-
fill: "currentColor"
|
|
22672
|
-
}));
|
|
22673
|
-
}
|
|
22674
|
-
const IconUploadError_IconComponent = convertIcon(IconUploadError_SvgComponent, 'upload_error');
|
|
22675
|
-
/* harmony default export */ const IconUploadError = (IconUploadError_IconComponent);
|
|
22676
|
-
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconWindowAdaptionStroked.js
|
|
22677
|
-
|
|
22678
|
-
|
|
22679
|
-
function IconWindowAdaptionStroked_SvgComponent(props) {
|
|
22680
|
-
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
22681
|
-
viewBox: "0 0 24 24",
|
|
22682
|
-
fill: "none",
|
|
22683
|
-
xmlns: "http://www.w3.org/2000/svg",
|
|
22684
|
-
width: "1em",
|
|
22685
|
-
height: "1em",
|
|
22686
|
-
focusable: false,
|
|
22687
|
-
"aria-hidden": true
|
|
22688
|
-
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
22689
|
-
fillRule: "evenodd",
|
|
22690
|
-
clipRule: "evenodd",
|
|
22691
|
-
d: "M14 3C14 2.44772 14.4477 2 15 2H21C21.5523 2 22 2.44772 22 3V9C22 9.55229 21.5523 10 21 10C20.4477 10 20 9.55229 20 9V4H15C14.4477 4 14 3.55229 14 3ZM10 21C10 21.5523 9.55229 22 9 22H3C2.44772 22 2 21.5523 2 21V15C2 14.4477 2.44772 14 3 14C3.55228 14 4 14.4477 4 15L4 20H9C9.55229 20 10 20.4477 10 21ZM2 9C2 9.55228 2.44772 10 3 10C3.55229 10 4 9.55228 4 9L4 4L9 4C9.55229 4 10 3.55228 10 3C10 2.44771 9.55229 2 9 2H3C2.44772 2 2 2.44772 2 3V9ZM21 14C21.5523 14 22 14.4477 22 15V21C22 21.5523 21.5523 22 21 22H15C14.4477 22 14 21.5523 14 21C14 20.4477 14.4477 20 15 20H20V15C20 14.4477 20.4477 14 21 14ZM8.5 7.5C7.94772 7.5 7.5 7.94772 7.5 8.5V15.5C7.5 16.0523 7.94772 16.5 8.5 16.5H15.5C16.0523 16.5 16.5 16.0523 16.5 15.5V8.5C16.5 7.94772 16.0523 7.5 15.5 7.5H8.5ZM9.5 14.5V9.5H14.5V14.5H9.5Z",
|
|
22692
|
-
fill: "currentColor"
|
|
22693
|
-
}));
|
|
22694
|
-
}
|
|
22695
|
-
const IconWindowAdaptionStroked_IconComponent = convertIcon(IconWindowAdaptionStroked_SvgComponent, 'window_adaption_stroked');
|
|
22696
|
-
/* harmony default export */ const IconWindowAdaptionStroked = (IconWindowAdaptionStroked_IconComponent);
|
|
22697
|
-
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/index.js
|
|
22698
|
-
|
|
22699
|
-
|
|
22700
|
-
|
|
22701
|
-
|
|
22702
|
-
|
|
22703
|
-
|
|
22704
|
-
|
|
22705
|
-
|
|
22706
|
-
|
|
22707
|
-
|
|
22708
|
-
|
|
22709
|
-
|
|
22710
|
-
|
|
22711
|
-
|
|
22712
|
-
|
|
22713
|
-
|
|
22714
|
-
|
|
22715
|
-
|
|
22716
|
-
|
|
22717
|
-
|
|
22718
|
-
|
|
22719
|
-
|
|
22720
|
-
|
|
22721
|
-
|
|
22722
|
-
|
|
22723
|
-
|
|
22724
|
-
|
|
22725
|
-
|
|
22726
|
-
|
|
22727
|
-
|
|
22728
|
-
|
|
22729
|
-
|
|
22730
|
-
|
|
22731
|
-
|
|
22732
|
-
|
|
22733
|
-
|
|
22734
|
-
|
|
22735
|
-
|
|
22736
|
-
|
|
22737
|
-
|
|
22738
|
-
|
|
22739
|
-
|
|
22740
|
-
|
|
22741
|
-
|
|
22742
|
-
|
|
22743
|
-
|
|
22744
|
-
|
|
22745
|
-
|
|
22746
|
-
|
|
22747
|
-
|
|
22748
|
-
|
|
22749
|
-
|
|
22750
|
-
|
|
22751
|
-
|
|
22752
|
-
|
|
22753
|
-
|
|
22754
|
-
|
|
22755
|
-
|
|
22756
|
-
|
|
22757
|
-
|
|
22758
|
-
|
|
22759
|
-
|
|
22760
|
-
|
|
22761
|
-
|
|
22762
|
-
|
|
22763
|
-
|
|
22764
|
-
|
|
22765
|
-
|
|
22766
|
-
|
|
22767
|
-
|
|
22768
|
-
|
|
22769
|
-
|
|
22770
|
-
|
|
22771
|
-
|
|
22772
|
-
|
|
22773
|
-
|
|
22774
|
-
|
|
22775
|
-
|
|
22776
|
-
|
|
22777
|
-
|
|
22778
|
-
|
|
22779
|
-
|
|
22780
|
-
|
|
22781
|
-
|
|
22782
|
-
|
|
22783
|
-
|
|
22784
|
-
|
|
22785
|
-
|
|
22786
|
-
|
|
22787
|
-
|
|
22788
|
-
|
|
22789
|
-
|
|
22790
|
-
|
|
22791
|
-
|
|
22792
|
-
|
|
22793
|
-
|
|
22794
|
-
|
|
22795
|
-
|
|
22796
|
-
|
|
22797
|
-
|
|
22798
|
-
|
|
22799
|
-
|
|
22800
|
-
|
|
22801
|
-
|
|
22802
|
-
|
|
22803
|
-
|
|
22804
|
-
|
|
22805
|
-
|
|
22806
|
-
|
|
22807
|
-
|
|
22808
|
-
|
|
22809
|
-
|
|
22810
|
-
|
|
22811
|
-
|
|
22812
|
-
|
|
22813
|
-
|
|
22814
|
-
|
|
22815
|
-
|
|
22816
|
-
|
|
22817
|
-
|
|
22818
|
-
|
|
22819
|
-
|
|
22820
|
-
|
|
22821
|
-
|
|
22822
|
-
|
|
22823
|
-
|
|
22824
|
-
|
|
22825
|
-
|
|
22826
|
-
|
|
22827
|
-
|
|
22828
|
-
|
|
22829
|
-
|
|
22830
|
-
|
|
22831
|
-
|
|
22832
|
-
|
|
22833
|
-
|
|
22834
|
-
|
|
22835
|
-
|
|
22836
|
-
|
|
22837
|
-
|
|
22838
|
-
|
|
22839
|
-
|
|
22840
|
-
|
|
22841
|
-
|
|
22842
|
-
|
|
22843
|
-
|
|
22844
|
-
|
|
22845
|
-
|
|
22846
|
-
|
|
22847
|
-
|
|
22848
|
-
|
|
22849
|
-
|
|
22850
|
-
|
|
22851
|
-
|
|
22852
|
-
|
|
22853
|
-
|
|
22854
|
-
|
|
22855
|
-
|
|
22856
|
-
|
|
22857
|
-
|
|
22858
|
-
|
|
22859
|
-
|
|
22860
|
-
|
|
22861
|
-
|
|
22862
|
-
|
|
22863
|
-
|
|
22864
|
-
|
|
22865
|
-
|
|
22866
|
-
|
|
22867
|
-
|
|
22868
|
-
|
|
22869
|
-
|
|
22870
|
-
|
|
22871
|
-
|
|
22872
|
-
|
|
22873
|
-
|
|
22874
|
-
|
|
22875
|
-
|
|
22876
|
-
|
|
22877
|
-
|
|
22878
|
-
|
|
22879
|
-
|
|
22880
|
-
|
|
22881
|
-
|
|
22882
|
-
|
|
22883
|
-
|
|
22884
|
-
|
|
22885
|
-
|
|
22886
|
-
|
|
22887
|
-
|
|
22888
|
-
|
|
22889
|
-
|
|
22890
|
-
|
|
22891
|
-
|
|
22892
|
-
|
|
22893
|
-
|
|
22894
|
-
|
|
22895
|
-
|
|
22896
|
-
|
|
22897
|
-
|
|
22898
|
-
|
|
22899
|
-
|
|
22900
|
-
|
|
22901
|
-
|
|
22902
|
-
|
|
22903
|
-
|
|
22904
|
-
|
|
22905
|
-
|
|
22906
|
-
|
|
22907
|
-
|
|
22908
|
-
|
|
22909
|
-
|
|
22910
|
-
|
|
22911
|
-
|
|
22912
|
-
|
|
22913
|
-
|
|
22914
|
-
|
|
22915
|
-
|
|
22916
|
-
|
|
22917
|
-
|
|
22918
|
-
|
|
22919
|
-
|
|
22920
|
-
|
|
22921
|
-
|
|
22922
|
-
|
|
22923
|
-
|
|
22924
|
-
|
|
22925
|
-
|
|
22926
|
-
|
|
22927
|
-
|
|
22928
|
-
|
|
22929
|
-
|
|
22930
|
-
|
|
22931
|
-
|
|
22932
|
-
|
|
22933
|
-
|
|
22934
|
-
|
|
22935
|
-
|
|
22936
|
-
|
|
22937
|
-
|
|
22938
|
-
|
|
22939
|
-
|
|
22940
|
-
|
|
22941
|
-
|
|
22942
|
-
|
|
22943
|
-
|
|
22944
|
-
|
|
22945
|
-
|
|
22946
|
-
|
|
22947
|
-
|
|
22948
|
-
|
|
22949
|
-
|
|
22950
|
-
|
|
22951
|
-
|
|
22952
|
-
|
|
22953
|
-
|
|
22954
|
-
|
|
22955
|
-
|
|
22956
|
-
|
|
22957
|
-
|
|
22958
|
-
|
|
22959
|
-
|
|
22960
|
-
|
|
22961
|
-
|
|
22962
|
-
|
|
22963
|
-
|
|
22964
|
-
|
|
22965
|
-
|
|
22966
|
-
|
|
22967
|
-
|
|
22968
|
-
|
|
22969
|
-
|
|
22970
|
-
|
|
22971
|
-
|
|
22972
|
-
|
|
22973
|
-
|
|
22974
|
-
|
|
22975
|
-
|
|
22976
|
-
|
|
22977
|
-
|
|
22978
|
-
|
|
22979
|
-
|
|
22980
|
-
|
|
22981
|
-
|
|
22982
|
-
|
|
22983
|
-
|
|
22984
|
-
|
|
22985
|
-
|
|
22986
|
-
|
|
22987
|
-
|
|
22988
|
-
|
|
22989
|
-
|
|
22990
|
-
|
|
22991
|
-
|
|
22992
|
-
|
|
22993
|
-
|
|
22994
|
-
|
|
22995
|
-
|
|
22996
|
-
|
|
22997
|
-
|
|
22998
|
-
|
|
22999
|
-
|
|
23000
|
-
|
|
23001
|
-
|
|
23002
|
-
|
|
23003
|
-
|
|
23004
|
-
|
|
23005
|
-
|
|
23006
|
-
|
|
23007
|
-
|
|
23008
|
-
|
|
23009
|
-
|
|
23010
|
-
|
|
23011
|
-
|
|
23012
|
-
|
|
23013
|
-
|
|
23014
|
-
|
|
23015
|
-
|
|
23016
|
-
|
|
23017
|
-
|
|
23018
|
-
|
|
23019
|
-
|
|
23020
|
-
|
|
23021
|
-
|
|
23022
|
-
|
|
23023
|
-
|
|
23024
|
-
|
|
23025
|
-
|
|
23026
|
-
|
|
23027
|
-
|
|
23028
|
-
|
|
23029
|
-
|
|
23030
|
-
|
|
23031
|
-
|
|
23032
|
-
|
|
23033
|
-
|
|
23034
|
-
|
|
23035
|
-
|
|
23036
|
-
|
|
23037
|
-
|
|
23038
|
-
|
|
23039
|
-
|
|
23040
|
-
|
|
23041
|
-
|
|
23042
|
-
|
|
23043
|
-
|
|
23044
|
-
|
|
23045
|
-
|
|
23046
|
-
|
|
23047
|
-
|
|
23048
|
-
|
|
23049
|
-
|
|
23050
|
-
|
|
23051
|
-
|
|
23052
|
-
|
|
23053
|
-
|
|
23054
|
-
|
|
23055
|
-
|
|
23056
|
-
|
|
23057
|
-
|
|
23058
|
-
|
|
23059
|
-
|
|
23060
|
-
|
|
23061
|
-
|
|
23062
|
-
|
|
23063
|
-
|
|
23064
|
-
|
|
23065
|
-
|
|
23066
|
-
|
|
23067
|
-
|
|
23068
|
-
|
|
23069
|
-
|
|
23070
|
-
|
|
23071
|
-
|
|
23072
|
-
|
|
23073
|
-
|
|
23074
|
-
|
|
23075
|
-
|
|
23076
|
-
|
|
23077
|
-
|
|
23078
|
-
|
|
23079
|
-
|
|
23080
|
-
|
|
23081
|
-
|
|
23082
|
-
|
|
23083
|
-
|
|
23084
|
-
|
|
23085
|
-
|
|
23086
|
-
|
|
23087
|
-
|
|
23088
|
-
|
|
23089
|
-
|
|
23090
|
-
|
|
23091
|
-
|
|
23092
|
-
|
|
23093
|
-
|
|
23094
|
-
|
|
23095
|
-
|
|
23096
|
-
|
|
23097
|
-
|
|
23098
|
-
|
|
23099
|
-
|
|
23100
|
-
|
|
23101
|
-
|
|
23102
|
-
|
|
23103
|
-
|
|
23104
|
-
|
|
23105
|
-
|
|
23106
|
-
|
|
23107
|
-
|
|
23108
|
-
|
|
23109
|
-
|
|
23110
|
-
|
|
23111
|
-
|
|
23112
|
-
|
|
23113
|
-
|
|
23114
|
-
|
|
23115
|
-
|
|
23116
|
-
|
|
23117
|
-
|
|
23118
|
-
|
|
23119
|
-
|
|
23120
|
-
|
|
23121
|
-
|
|
23122
|
-
|
|
23123
|
-
|
|
23124
|
-
|
|
23125
|
-
|
|
23126
|
-
|
|
23127
|
-
|
|
23128
|
-
|
|
23129
|
-
|
|
23130
|
-
|
|
23131
|
-
|
|
23132
|
-
|
|
23133
|
-
|
|
23134
|
-
|
|
23135
|
-
|
|
23136
|
-
|
|
23137
|
-
|
|
23138
|
-
|
|
23139
|
-
|
|
23140
|
-
|
|
23141
|
-
|
|
23142
|
-
;// CONCATENATED MODULE: ../semi-icons/lib/es/index.js
|
|
23143
|
-
|
|
23144
|
-
|
|
23145
|
-
|
|
23146
|
-
/* harmony default export */ const lib_es = (components_Icon);
|
|
23147
21688
|
;// CONCATENATED MODULE: ../semi-foundation/utils/keyCode.ts
|
|
23148
21689
|
/**
|
|
23149
21690
|
* @ignore
|
|
@@ -25233,9 +23774,7 @@ class Base extends external_root_React_commonjs2_react_commonjs_react_amd_react_
|
|
|
25233
23774
|
if (showTooltip.type && showTooltip.type.toLowerCase() === 'popover') {
|
|
25234
23775
|
return merge_default()({
|
|
25235
23776
|
opts: {
|
|
25236
|
-
style: {
|
|
25237
|
-
width: '240px'
|
|
25238
|
-
},
|
|
23777
|
+
// style: { width: '240px' },
|
|
25239
23778
|
showArrow: true
|
|
25240
23779
|
}
|
|
25241
23780
|
}, showTooltip);
|
|
@@ -27525,6 +26064,72 @@ class InputFoundation extends foundation {
|
|
|
27525
26064
|
/* harmony default export */ const input_foundation = (InputFoundation);
|
|
27526
26065
|
// EXTERNAL MODULE: ../semi-foundation/input/input.scss
|
|
27527
26066
|
var input = __webpack_require__("Q7vW");
|
|
26067
|
+
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconClear.js
|
|
26068
|
+
|
|
26069
|
+
|
|
26070
|
+
function IconClear_SvgComponent(props) {
|
|
26071
|
+
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
26072
|
+
viewBox: "0 0 24 24",
|
|
26073
|
+
fill: "none",
|
|
26074
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
26075
|
+
width: "1em",
|
|
26076
|
+
height: "1em",
|
|
26077
|
+
focusable: false,
|
|
26078
|
+
"aria-hidden": true
|
|
26079
|
+
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
26080
|
+
fillRule: "evenodd",
|
|
26081
|
+
clipRule: "evenodd",
|
|
26082
|
+
d: "M12 23C18.0751 23 23 18.0751 23 12C23 5.92487 18.0751 1 12 1C5.92487 1 1 5.92487 1 12C1 18.0751 5.92487 23 12 23ZM17.0352 16.8626C16.4597 17.4585 15.5101 17.4751 14.9142 16.8996L12.0368 14.121L9.25822 16.9984C8.68274 17.5943 7.73314 17.6109 7.13722 17.0354C6.5413 16.4599 6.52472 15.5103 7.1002 14.9144L9.87883 12.037L7.00147 9.2584C6.40555 8.68293 6.38897 7.73332 6.96445 7.1374C7.53992 6.54148 8.48953 6.52491 9.08545 7.10038L11.9628 9.87901L14.7414 7.00165C15.3169 6.40573 16.2665 6.38916 16.8624 6.96463C17.4584 7.54011 17.4749 8.48971 16.8995 9.08563L14.1208 11.963L16.9982 14.7416C17.5941 15.3171 17.6107 16.2667 17.0352 16.8626Z",
|
|
26083
|
+
fill: "currentColor"
|
|
26084
|
+
}));
|
|
26085
|
+
}
|
|
26086
|
+
const IconClear_IconComponent = convertIcon(IconClear_SvgComponent, 'clear');
|
|
26087
|
+
/* harmony default export */ const IconClear = (IconClear_IconComponent);
|
|
26088
|
+
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconEyeClosedSolid.js
|
|
26089
|
+
|
|
26090
|
+
|
|
26091
|
+
function IconEyeClosedSolid_SvgComponent(props) {
|
|
26092
|
+
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
26093
|
+
viewBox: "0 0 24 24",
|
|
26094
|
+
fill: "none",
|
|
26095
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
26096
|
+
width: "1em",
|
|
26097
|
+
height: "1em",
|
|
26098
|
+
focusable: false,
|
|
26099
|
+
"aria-hidden": true
|
|
26100
|
+
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
26101
|
+
fillRule: "evenodd",
|
|
26102
|
+
clipRule: "evenodd",
|
|
26103
|
+
d: "M21.7071 3.70711C22.0976 3.31658 22.0976 2.68342 21.7071 2.29289C21.3166 1.90237 20.6834 1.90237 20.2929 2.29289L17.3135 5.27233C15.8114 4.50566 14.0321 4 12 4C5 4 1 10 1 12C1 13.1757 2.38219 15.7335 4.94345 17.6423L2.29289 20.2929C1.90237 20.6834 1.90237 21.3166 2.29289 21.7071C2.68342 22.0976 3.31658 22.0976 3.70711 21.7071L21.7071 3.70711ZM7.8284 14.7574L9.29237 13.2934C9.10495 12.9018 9 12.4631 9 12C9 10.3431 10.3431 9 12 9C12.4631 9 12.9018 9.10495 13.2934 9.29237L14.7574 7.8284C13.967 7.30488 13.0191 7 12 7C9.23858 7 7 9.23858 7 12C7 13.0191 7.30488 13.967 7.8284 14.7574Z",
|
|
26104
|
+
fill: "currentColor"
|
|
26105
|
+
}), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
26106
|
+
d: "M12 20C10.7789 20 9.64914 19.8174 8.61594 19.5054L11.1871 16.9342C11.4516 16.9775 11.7232 17 12 17C14.7614 17 17 14.7614 17 12C17 11.7232 16.9775 11.4516 16.9342 11.1871L20.5032 7.61808C22.1342 9.27317 23 11.0695 23 12C23 14 19 20 12 20Z",
|
|
26107
|
+
fill: "currentColor"
|
|
26108
|
+
}));
|
|
26109
|
+
}
|
|
26110
|
+
const IconEyeClosedSolid_IconComponent = convertIcon(IconEyeClosedSolid_SvgComponent, 'eye_closed_solid');
|
|
26111
|
+
/* harmony default export */ const IconEyeClosedSolid = (IconEyeClosedSolid_IconComponent);
|
|
26112
|
+
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconEyeOpened.js
|
|
26113
|
+
|
|
26114
|
+
|
|
26115
|
+
function IconEyeOpened_SvgComponent(props) {
|
|
26116
|
+
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
26117
|
+
viewBox: "0 0 24 24",
|
|
26118
|
+
fill: "none",
|
|
26119
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
26120
|
+
width: "1em",
|
|
26121
|
+
height: "1em",
|
|
26122
|
+
focusable: false,
|
|
26123
|
+
"aria-hidden": true
|
|
26124
|
+
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
26125
|
+
fillRule: "evenodd",
|
|
26126
|
+
clipRule: "evenodd",
|
|
26127
|
+
d: "M12 4C5 4 1 10 1 12C1 14 5 20 12 20C19 20 23 14 23 12C23 10 19 4 12 4ZM17 12C17 14.7614 14.7614 17 12 17C9.23858 17 7 14.7614 7 12C7 9.23858 9.23858 7 12 7C14.7614 7 17 9.23858 17 12ZM12 15C13.6569 15 15 13.6569 15 12C15 10.3431 13.6569 9 12 9C10.3431 9 9 10.3431 9 12C9 13.6569 10.3431 15 12 15Z",
|
|
26128
|
+
fill: "currentColor"
|
|
26129
|
+
}));
|
|
26130
|
+
}
|
|
26131
|
+
const IconEyeOpened_IconComponent = convertIcon(IconEyeOpened_SvgComponent, 'eye_opened');
|
|
26132
|
+
/* harmony default export */ const IconEyeOpened = (IconEyeOpened_IconComponent);
|
|
27528
26133
|
;// CONCATENATED MODULE: ./input/index.tsx
|
|
27529
26134
|
|
|
27530
26135
|
|
|
@@ -29959,6 +28564,27 @@ IconButton.propTypes = {
|
|
|
29959
28564
|
onMouseLeave: (prop_types_default()).func
|
|
29960
28565
|
};
|
|
29961
28566
|
/* harmony default export */ const iconButton_0 = (IconButton);
|
|
28567
|
+
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconChevronUp.js
|
|
28568
|
+
|
|
28569
|
+
|
|
28570
|
+
function IconChevronUp_SvgComponent(props) {
|
|
28571
|
+
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
28572
|
+
viewBox: "0 0 24 24",
|
|
28573
|
+
fill: "none",
|
|
28574
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
28575
|
+
width: "1em",
|
|
28576
|
+
height: "1em",
|
|
28577
|
+
focusable: false,
|
|
28578
|
+
"aria-hidden": true
|
|
28579
|
+
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
28580
|
+
fillRule: "evenodd",
|
|
28581
|
+
clipRule: "evenodd",
|
|
28582
|
+
d: "M19.637 16.4369C19.0513 17.0227 18.1015 17.0227 17.5157 16.4369L11.8589 10.7801L6.20202 16.4369C5.61623 17.0227 4.66648 17.0227 4.0807 16.4369C3.49491 15.8511 3.49491 14.9014 4.0807 14.3156L10.7982 7.59809C11.384 7.01231 12.3337 7.01231 12.9195 7.59809L19.637 14.3156C20.2228 14.9014 20.2228 15.8511 19.637 16.4369Z",
|
|
28583
|
+
fill: "currentColor"
|
|
28584
|
+
}));
|
|
28585
|
+
}
|
|
28586
|
+
const IconChevronUp_IconComponent = convertIcon(IconChevronUp_SvgComponent, 'chevron_up');
|
|
28587
|
+
/* harmony default export */ const IconChevronUp = (IconChevronUp_IconComponent);
|
|
29962
28588
|
;// CONCATENATED MODULE: ./backtop/index.tsx
|
|
29963
28589
|
var backtop_rest = undefined && undefined.__rest || function (s, e) {
|
|
29964
28590
|
var t = {};
|
|
@@ -30190,6 +28816,109 @@ class BannerFoundation extends foundation {
|
|
|
30190
28816
|
}
|
|
30191
28817
|
// EXTERNAL MODULE: ../semi-foundation/banner/banner.scss
|
|
30192
28818
|
var banner = __webpack_require__("9wFu");
|
|
28819
|
+
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconClose.js
|
|
28820
|
+
|
|
28821
|
+
|
|
28822
|
+
function IconClose_SvgComponent(props) {
|
|
28823
|
+
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
28824
|
+
viewBox: "0 0 24 24",
|
|
28825
|
+
fill: "none",
|
|
28826
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
28827
|
+
width: "1em",
|
|
28828
|
+
height: "1em",
|
|
28829
|
+
focusable: false,
|
|
28830
|
+
"aria-hidden": true
|
|
28831
|
+
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
28832
|
+
d: "M17.6568 19.7782C18.2426 20.3639 19.1924 20.3639 19.7782 19.7782C20.3639 19.1924 20.3639 18.2426 19.7782 17.6568L14.1213 12L19.7782 6.34313C20.3639 5.75734 20.3639 4.8076 19.7782 4.22181C19.1924 3.63602 18.2426 3.63602 17.6568 4.22181L12 9.87866L6.34313 4.22181C5.75734 3.63602 4.8076 3.63602 4.22181 4.22181C3.63602 4.8076 3.63602 5.75734 4.22181 6.34313L9.87866 12L4.22181 17.6568C3.63602 18.2426 3.63602 19.1924 4.22181 19.7782C4.8076 20.3639 5.75734 20.3639 6.34313 19.7782L12 14.1213L17.6568 19.7782Z",
|
|
28833
|
+
fill: "currentColor"
|
|
28834
|
+
}));
|
|
28835
|
+
}
|
|
28836
|
+
const IconClose_IconComponent = convertIcon(IconClose_SvgComponent, 'close');
|
|
28837
|
+
/* harmony default export */ const IconClose = (IconClose_IconComponent);
|
|
28838
|
+
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconAlertTriangle.js
|
|
28839
|
+
|
|
28840
|
+
|
|
28841
|
+
function IconAlertTriangle_SvgComponent(props) {
|
|
28842
|
+
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
28843
|
+
viewBox: "0 0 24 24",
|
|
28844
|
+
fill: "none",
|
|
28845
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
28846
|
+
width: "1em",
|
|
28847
|
+
height: "1em",
|
|
28848
|
+
focusable: false,
|
|
28849
|
+
"aria-hidden": true
|
|
28850
|
+
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
28851
|
+
fillRule: "evenodd",
|
|
28852
|
+
clipRule: "evenodd",
|
|
28853
|
+
d: "M10.2268 2.3986L1.52616 19.0749C0.831449 20.4064 1.79747 22 3.29933 22H20.7007C22.2025 22 23.1686 20.4064 22.4739 19.0749L13.7732 2.3986C13.0254 0.965441 10.9746 0.965442 10.2268 2.3986ZM13.1415 14.0101C13.0603 14.5781 12.5739 15 12.0001 15C11.4263 15 10.9398 14.5781 10.8586 14.0101L10.2829 9.97992C10.1336 8.93495 10.9445 8.00002 12.0001 8.00002C13.0556 8.00002 13.8665 8.93495 13.7172 9.97992L13.1415 14.0101ZM13.5001 18.5C13.5001 19.3284 12.8285 20 12.0001 20C11.1716 20 10.5001 19.3284 10.5001 18.5C10.5001 17.6716 11.1716 17 12.0001 17C12.8285 17 13.5001 17.6716 13.5001 18.5Z",
|
|
28854
|
+
fill: "currentColor"
|
|
28855
|
+
}));
|
|
28856
|
+
}
|
|
28857
|
+
const IconAlertTriangle_IconComponent = convertIcon(IconAlertTriangle_SvgComponent, 'alert_triangle');
|
|
28858
|
+
/* harmony default export */ const IconAlertTriangle = (IconAlertTriangle_IconComponent);
|
|
28859
|
+
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconTickCircle.js
|
|
28860
|
+
|
|
28861
|
+
|
|
28862
|
+
function IconTickCircle_SvgComponent(props) {
|
|
28863
|
+
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
28864
|
+
viewBox: "0 0 24 24",
|
|
28865
|
+
fill: "none",
|
|
28866
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
28867
|
+
width: "1em",
|
|
28868
|
+
height: "1em",
|
|
28869
|
+
focusable: false,
|
|
28870
|
+
"aria-hidden": true
|
|
28871
|
+
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
28872
|
+
fillRule: "evenodd",
|
|
28873
|
+
clipRule: "evenodd",
|
|
28874
|
+
d: "M12 23C18.0751 23 23 18.0751 23 12C23 5.92487 18.0751 1 12 1C5.92487 1 1 5.92487 1 12C1 18.0751 5.92487 23 12 23ZM17.8831 9.82235L11.6854 17.4112C11.4029 17.7806 10.965 17.9981 10.5 18C10.035 18.0019 9.59533 17.788 9.30982 17.421L5.81604 13.4209C5.30744 12.767 5.42524 11.8246 6.07916 11.316C6.73308 10.8074 7.67549 10.9252 8.1841 11.5791L10.4838 14.0439L15.5 8C16.0032 7.34193 16.9446 7.21641 17.6027 7.71964C18.2608 8.22287 18.3863 9.16428 17.8831 9.82235Z",
|
|
28875
|
+
fill: "currentColor"
|
|
28876
|
+
}));
|
|
28877
|
+
}
|
|
28878
|
+
const IconTickCircle_IconComponent = convertIcon(IconTickCircle_SvgComponent, 'tick_circle');
|
|
28879
|
+
/* harmony default export */ const IconTickCircle = (IconTickCircle_IconComponent);
|
|
28880
|
+
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconInfoCircle.js
|
|
28881
|
+
|
|
28882
|
+
|
|
28883
|
+
function IconInfoCircle_SvgComponent(props) {
|
|
28884
|
+
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
28885
|
+
viewBox: "0 0 24 24",
|
|
28886
|
+
fill: "none",
|
|
28887
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
28888
|
+
width: "1em",
|
|
28889
|
+
height: "1em",
|
|
28890
|
+
focusable: false,
|
|
28891
|
+
"aria-hidden": true
|
|
28892
|
+
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
28893
|
+
fillRule: "evenodd",
|
|
28894
|
+
clipRule: "evenodd",
|
|
28895
|
+
d: "M12 23C18.0751 23 23 18.0751 23 12C23 5.92487 18.0751 1 12 1C5.92487 1 1 5.92487 1 12C1 18.0751 5.92487 23 12 23ZM14 7C14 8.10457 13.1046 9 12 9C10.8954 9 10 8.10457 10 7C10 5.89543 10.8954 5 12 5C13.1046 5 14 5.89543 14 7ZM9 10.75C9 10.3358 9.33579 10 9.75 10H12.5C13.0523 10 13.5 10.4477 13.5 11V16.5H14.25C14.6642 16.5 15 16.8358 15 17.25C15 17.6642 14.6642 18 14.25 18H9.75C9.33579 18 9 17.6642 9 17.25C9 16.8358 9.33579 16.5 9.75 16.5H10.5V11.5H9.75C9.33579 11.5 9 11.1642 9 10.75Z",
|
|
28896
|
+
fill: "currentColor"
|
|
28897
|
+
}));
|
|
28898
|
+
}
|
|
28899
|
+
const IconInfoCircle_IconComponent = convertIcon(IconInfoCircle_SvgComponent, 'info_circle');
|
|
28900
|
+
/* harmony default export */ const IconInfoCircle = (IconInfoCircle_IconComponent);
|
|
28901
|
+
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconAlertCircle.js
|
|
28902
|
+
|
|
28903
|
+
|
|
28904
|
+
function IconAlertCircle_SvgComponent(props) {
|
|
28905
|
+
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
28906
|
+
viewBox: "0 0 24 24",
|
|
28907
|
+
fill: "none",
|
|
28908
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
28909
|
+
width: "1em",
|
|
28910
|
+
height: "1em",
|
|
28911
|
+
focusable: false,
|
|
28912
|
+
"aria-hidden": true
|
|
28913
|
+
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
28914
|
+
fillRule: "evenodd",
|
|
28915
|
+
clipRule: "evenodd",
|
|
28916
|
+
d: "M23 12C23 18.0751 18.0751 23 12 23C5.92487 23 1 18.0751 1 12C1 5.92487 5.92487 1 12 1C18.0751 1 23 5.92487 23 12ZM13.5 17.5C13.5 16.6716 12.8284 16 12 16C11.1716 16 10.5 16.6716 10.5 17.5C10.5 18.3284 11.1716 19 12 19C12.8284 19 13.5 18.3284 13.5 17.5ZM12 5C10.9138 5 10.0507 5.91244 10.1109 6.99692L10.4168 12.5023C10.4635 13.3426 11.1584 14 12 14C12.8416 14 13.5365 13.3426 13.5832 12.5023L13.8891 6.99692C13.9493 5.91244 13.0862 5 12 5Z",
|
|
28917
|
+
fill: "currentColor"
|
|
28918
|
+
}));
|
|
28919
|
+
}
|
|
28920
|
+
const IconAlertCircle_IconComponent = convertIcon(IconAlertCircle_SvgComponent, 'alert_circle');
|
|
28921
|
+
/* harmony default export */ const IconAlertCircle = (IconAlertCircle_IconComponent);
|
|
30193
28922
|
;// CONCATENATED MODULE: ./banner/index.tsx
|
|
30194
28923
|
|
|
30195
28924
|
|
|
@@ -30618,6 +29347,31 @@ BreadcrumbItem.defaultProps = {
|
|
|
30618
29347
|
onClick: function_noop,
|
|
30619
29348
|
shouldRenderSeparator: true
|
|
30620
29349
|
};
|
|
29350
|
+
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconMore.js
|
|
29351
|
+
|
|
29352
|
+
|
|
29353
|
+
function IconMore_SvgComponent(props) {
|
|
29354
|
+
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
29355
|
+
viewBox: "0 0 24 24",
|
|
29356
|
+
fill: "none",
|
|
29357
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
29358
|
+
width: "1em",
|
|
29359
|
+
height: "1em",
|
|
29360
|
+
focusable: false,
|
|
29361
|
+
"aria-hidden": true
|
|
29362
|
+
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
29363
|
+
d: "M7 12C7 13.3807 5.88071 14.5 4.5 14.5C3.11929 14.5 2 13.3807 2 12C2 10.6193 3.11929 9.5 4.5 9.5C5.88071 9.5 7 10.6193 7 12Z",
|
|
29364
|
+
fill: "currentColor"
|
|
29365
|
+
}), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
29366
|
+
d: "M14.5 12C14.5 13.3807 13.3807 14.5 12 14.5C10.6193 14.5 9.5 13.3807 9.5 12C9.5 10.6193 10.6193 9.5 12 9.5C13.3807 9.5 14.5 10.6193 14.5 12Z",
|
|
29367
|
+
fill: "currentColor"
|
|
29368
|
+
}), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
29369
|
+
d: "M19.5 14.5C20.8807 14.5 22 13.3807 22 12C22 10.6193 20.8807 9.5 19.5 9.5C18.1193 9.5 17 10.6193 17 12C17 13.3807 18.1193 14.5 19.5 14.5Z",
|
|
29370
|
+
fill: "currentColor"
|
|
29371
|
+
}));
|
|
29372
|
+
}
|
|
29373
|
+
const IconMore_IconComponent = convertIcon(IconMore_SvgComponent, 'more');
|
|
29374
|
+
/* harmony default export */ const IconMore = (IconMore_IconComponent);
|
|
30621
29375
|
;// CONCATENATED MODULE: ./breadcrumb/index.tsx
|
|
30622
29376
|
|
|
30623
29377
|
|
|
@@ -37059,6 +35813,48 @@ CarouselIndicator.propTypes = {
|
|
|
37059
35813
|
trigger: prop_types_default().oneOf(carousel_constants_strings.TRIGGER)
|
|
37060
35814
|
};
|
|
37061
35815
|
/* harmony default export */ const carousel_CarouselIndicator = (CarouselIndicator);
|
|
35816
|
+
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconChevronLeft.js
|
|
35817
|
+
|
|
35818
|
+
|
|
35819
|
+
function IconChevronLeft_SvgComponent(props) {
|
|
35820
|
+
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
35821
|
+
viewBox: "0 0 24 24",
|
|
35822
|
+
fill: "none",
|
|
35823
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
35824
|
+
width: "1em",
|
|
35825
|
+
height: "1em",
|
|
35826
|
+
focusable: false,
|
|
35827
|
+
"aria-hidden": true
|
|
35828
|
+
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
35829
|
+
fillRule: "evenodd",
|
|
35830
|
+
clipRule: "evenodd",
|
|
35831
|
+
d: "M16.2782 4.23933C16.864 4.82511 16.864 5.77486 16.2782 6.36065L10.6213 12.0175L16.2782 17.6744C16.864 18.2601 16.864 19.2099 16.2782 19.7957C15.6924 20.3815 14.7426 20.3815 14.1569 19.7957L7.43934 13.0782C6.85355 12.4924 6.85355 11.5426 7.43934 10.9568L14.1569 4.23933C14.7426 3.65354 15.6924 3.65354 16.2782 4.23933Z",
|
|
35832
|
+
fill: "currentColor"
|
|
35833
|
+
}));
|
|
35834
|
+
}
|
|
35835
|
+
const IconChevronLeft_IconComponent = convertIcon(IconChevronLeft_SvgComponent, 'chevron_left');
|
|
35836
|
+
/* harmony default export */ const IconChevronLeft = (IconChevronLeft_IconComponent);
|
|
35837
|
+
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconChevronRight.js
|
|
35838
|
+
|
|
35839
|
+
|
|
35840
|
+
function IconChevronRight_SvgComponent(props) {
|
|
35841
|
+
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
35842
|
+
viewBox: "0 0 24 24",
|
|
35843
|
+
fill: "none",
|
|
35844
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
35845
|
+
width: "1em",
|
|
35846
|
+
height: "1em",
|
|
35847
|
+
focusable: false,
|
|
35848
|
+
"aria-hidden": true
|
|
35849
|
+
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
35850
|
+
fillRule: "evenodd",
|
|
35851
|
+
clipRule: "evenodd",
|
|
35852
|
+
d: "M7.43934 19.7957C6.85355 19.2099 6.85355 18.2601 7.43934 17.6744L13.0962 12.0175L7.43934 6.36065C6.85355 5.77486 6.85355 4.82511 7.43934 4.23933C8.02513 3.65354 8.97487 3.65354 9.56066 4.23933L16.2782 10.9568C16.864 11.5426 16.864 12.4924 16.2782 13.0782L9.56066 19.7957C8.97487 20.3815 8.02513 20.3815 7.43934 19.7957Z",
|
|
35853
|
+
fill: "currentColor"
|
|
35854
|
+
}));
|
|
35855
|
+
}
|
|
35856
|
+
const IconChevronRight_IconComponent = convertIcon(IconChevronRight_SvgComponent, 'chevron_right');
|
|
35857
|
+
/* harmony default export */ const IconChevronRight = (IconChevronRight_IconComponent);
|
|
37062
35858
|
;// CONCATENATED MODULE: ./carousel/CarouselArrow.tsx
|
|
37063
35859
|
|
|
37064
35860
|
/* eslint-disable jsx-a11y/click-events-have-key-events */
|
|
@@ -39019,6 +37815,27 @@ class CascaderFoundation extends foundation {
|
|
|
39019
37815
|
}
|
|
39020
37816
|
// EXTERNAL MODULE: ../semi-foundation/cascader/cascader.scss
|
|
39021
37817
|
var cascader = __webpack_require__("B2DP");
|
|
37818
|
+
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconChevronDown.js
|
|
37819
|
+
|
|
37820
|
+
|
|
37821
|
+
function IconChevronDown_SvgComponent(props) {
|
|
37822
|
+
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
37823
|
+
viewBox: "0 0 24 24",
|
|
37824
|
+
fill: "none",
|
|
37825
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
37826
|
+
width: "1em",
|
|
37827
|
+
height: "1em",
|
|
37828
|
+
focusable: false,
|
|
37829
|
+
"aria-hidden": true
|
|
37830
|
+
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
37831
|
+
fillRule: "evenodd",
|
|
37832
|
+
clipRule: "evenodd",
|
|
37833
|
+
d: "M4.08045 7.59809C4.66624 7.01231 5.61599 7.01231 6.20177 7.59809L11.8586 13.2549L17.5155 7.59809C18.1013 7.01231 19.051 7.01231 19.6368 7.59809C20.2226 8.18388 20.2226 9.13363 19.6368 9.71941L12.9193 16.4369C12.3335 17.0227 11.3838 17.0227 10.798 16.4369L4.08045 9.71941C3.49467 9.13363 3.49467 8.18388 4.08045 7.59809Z",
|
|
37834
|
+
fill: "currentColor"
|
|
37835
|
+
}));
|
|
37836
|
+
}
|
|
37837
|
+
const IconChevronDown_IconComponent = convertIcon(IconChevronDown_SvgComponent, 'chevron_down');
|
|
37838
|
+
/* harmony default export */ const IconChevronDown = (IconChevronDown_IconComponent);
|
|
39022
37839
|
// EXTERNAL MODULE: ../../node_modules/lodash/isBoolean.js
|
|
39023
37840
|
var isBoolean = __webpack_require__("p6M4");
|
|
39024
37841
|
var isBoolean_default = /*#__PURE__*/__webpack_require__.n(isBoolean);
|
|
@@ -39150,6 +37967,46 @@ class CheckboxFoundation extends foundation {
|
|
|
39150
37967
|
|
|
39151
37968
|
const Context = /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_default().createContext({});
|
|
39152
37969
|
|
|
37970
|
+
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconCheckboxTick.js
|
|
37971
|
+
|
|
37972
|
+
|
|
37973
|
+
function IconCheckboxTick_SvgComponent(props) {
|
|
37974
|
+
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
37975
|
+
viewBox: "0 0 24 24",
|
|
37976
|
+
fill: "none",
|
|
37977
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
37978
|
+
width: "1em",
|
|
37979
|
+
height: "1em",
|
|
37980
|
+
focusable: false,
|
|
37981
|
+
"aria-hidden": true
|
|
37982
|
+
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
37983
|
+
fillRule: "evenodd",
|
|
37984
|
+
clipRule: "evenodd",
|
|
37985
|
+
d: "M17.4111 7.30848C18.0692 7.81171 18.1947 8.75312 17.6915 9.41119L11.1915 17.9112C10.909 18.2806 10.4711 18.4981 10.0061 18.5C9.54105 18.5019 9.10143 18.288 8.81592 17.9209L5.31592 13.4209C4.80731 12.767 4.92512 11.8246 5.57904 11.316C6.23296 10.8074 7.17537 10.9252 7.68398 11.5791L9.98988 14.5438L15.3084 7.58884C15.8116 6.93077 16.7531 6.80525 17.4111 7.30848Z",
|
|
37986
|
+
fill: "currentColor"
|
|
37987
|
+
}));
|
|
37988
|
+
}
|
|
37989
|
+
const IconCheckboxTick_IconComponent = convertIcon(IconCheckboxTick_SvgComponent, 'checkbox_tick');
|
|
37990
|
+
/* harmony default export */ const IconCheckboxTick = (IconCheckboxTick_IconComponent);
|
|
37991
|
+
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconCheckboxIndeterminate.js
|
|
37992
|
+
|
|
37993
|
+
|
|
37994
|
+
function IconCheckboxIndeterminate_SvgComponent(props) {
|
|
37995
|
+
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
37996
|
+
viewBox: "0 0 24 24",
|
|
37997
|
+
fill: "none",
|
|
37998
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
37999
|
+
width: "1em",
|
|
38000
|
+
height: "1em",
|
|
38001
|
+
focusable: false,
|
|
38002
|
+
"aria-hidden": true
|
|
38003
|
+
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
38004
|
+
d: "M5 12.5C5 11.6716 5.67157 11 6.5 11H17.5C18.3284 11 19 11.6716 19 12.5C19 13.3284 18.3284 14 17.5 14H6.5C5.67157 14 5 13.3284 5 12.5Z",
|
|
38005
|
+
fill: "currentColor"
|
|
38006
|
+
}));
|
|
38007
|
+
}
|
|
38008
|
+
const IconCheckboxIndeterminate_IconComponent = convertIcon(IconCheckboxIndeterminate_SvgComponent, 'checkbox_indeterminate');
|
|
38009
|
+
/* harmony default export */ const IconCheckboxIndeterminate = (IconCheckboxIndeterminate_IconComponent);
|
|
39153
38010
|
;// CONCATENATED MODULE: ./checkbox/checkboxInner.tsx
|
|
39154
38011
|
|
|
39155
38012
|
|
|
@@ -40619,6 +39476,40 @@ class TagInputFoundation extends foundation {
|
|
|
40619
39476
|
}
|
|
40620
39477
|
}
|
|
40621
39478
|
/* harmony default export */ const tagInput_foundation = (TagInputFoundation);
|
|
39479
|
+
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconHandle.js
|
|
39480
|
+
|
|
39481
|
+
|
|
39482
|
+
function IconHandle_SvgComponent(props) {
|
|
39483
|
+
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
39484
|
+
viewBox: "0 0 24 24",
|
|
39485
|
+
fill: "none",
|
|
39486
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
39487
|
+
width: "1em",
|
|
39488
|
+
height: "1em",
|
|
39489
|
+
focusable: false,
|
|
39490
|
+
"aria-hidden": true
|
|
39491
|
+
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
39492
|
+
d: "M9 7C10.1046 7 11 6.10457 11 5C11 3.89543 10.1046 3 9 3C7.89543 3 7 3.89543 7 5C7 6.10457 7.89543 7 9 7Z",
|
|
39493
|
+
fill: "currentColor"
|
|
39494
|
+
}), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
39495
|
+
d: "M9 14C10.1046 14 11 13.1046 11 12C11 10.8954 10.1046 10 9 10C7.89543 10 7 10.8954 7 12C7 13.1046 7.89543 14 9 14Z",
|
|
39496
|
+
fill: "currentColor"
|
|
39497
|
+
}), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
39498
|
+
d: "M11 19C11 20.1046 10.1046 21 9 21C7.89543 21 7 20.1046 7 19C7 17.8954 7.89543 17 9 17C10.1046 17 11 17.8954 11 19Z",
|
|
39499
|
+
fill: "currentColor"
|
|
39500
|
+
}), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
39501
|
+
d: "M15 7C16.1046 7 17 6.10457 17 5C17 3.89543 16.1046 3 15 3C13.8954 3 13 3.89543 13 5C13 6.10457 13.8954 7 15 7Z",
|
|
39502
|
+
fill: "currentColor"
|
|
39503
|
+
}), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
39504
|
+
d: "M17 12C17 13.1046 16.1046 14 15 14C13.8954 14 13 13.1046 13 12C13 10.8954 13.8954 10 15 10C16.1046 10 17 10.8954 17 12Z",
|
|
39505
|
+
fill: "currentColor"
|
|
39506
|
+
}), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
39507
|
+
d: "M15 21C16.1046 21 17 20.1046 17 19C17 17.8954 16.1046 17 15 17C13.8954 17 13 17.8954 13 19C13 20.1046 13.8954 21 15 21Z",
|
|
39508
|
+
fill: "currentColor"
|
|
39509
|
+
}));
|
|
39510
|
+
}
|
|
39511
|
+
const IconHandle_IconComponent = convertIcon(IconHandle_SvgComponent, 'handle');
|
|
39512
|
+
/* harmony default export */ const IconHandle = (IconHandle_IconComponent);
|
|
40622
39513
|
;// CONCATENATED MODULE: ../../node_modules/@dnd-kit/utilities/dist/utilities.esm.js
|
|
40623
39514
|
|
|
40624
39515
|
|
|
@@ -47715,7 +46606,7 @@ class CollapsePanel extends external_root_React_commonjs2_react_commonjs_react_a
|
|
|
47715
46606
|
constructor() {
|
|
47716
46607
|
super(...arguments);
|
|
47717
46608
|
this.headerExpandIconTriggerRef = /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_default().createRef();
|
|
47718
|
-
this.ariaID =
|
|
46609
|
+
this.ariaID = "";
|
|
47719
46610
|
this.handleClick = (itemKey, e) => {
|
|
47720
46611
|
var _a;
|
|
47721
46612
|
// Judge user click Icon or Header
|
|
@@ -47725,6 +46616,9 @@ class CollapsePanel extends external_root_React_commonjs2_react_commonjs_react_a
|
|
|
47725
46616
|
}
|
|
47726
46617
|
};
|
|
47727
46618
|
}
|
|
46619
|
+
componentDidMount() {
|
|
46620
|
+
this.ariaID = getUuidShort({});
|
|
46621
|
+
}
|
|
47728
46622
|
renderHeader(active) {
|
|
47729
46623
|
let expandIconEnable = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : true;
|
|
47730
46624
|
const {
|
|
@@ -53714,6 +52608,63 @@ class inputFoundation_InputFoundation extends foundation {
|
|
|
53714
52608
|
return inputValue;
|
|
53715
52609
|
}
|
|
53716
52610
|
}
|
|
52611
|
+
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconCalendar.js
|
|
52612
|
+
|
|
52613
|
+
|
|
52614
|
+
function IconCalendar_SvgComponent(props) {
|
|
52615
|
+
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
52616
|
+
viewBox: "0 0 24 24",
|
|
52617
|
+
fill: "none",
|
|
52618
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
52619
|
+
width: "1em",
|
|
52620
|
+
height: "1em",
|
|
52621
|
+
focusable: false,
|
|
52622
|
+
"aria-hidden": true
|
|
52623
|
+
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
52624
|
+
fillRule: "evenodd",
|
|
52625
|
+
clipRule: "evenodd",
|
|
52626
|
+
d: "M4 20V8H20V20H4ZM2 4C2 2.89543 2.89543 2 4 2H20C21.1046 2 22 2.89543 22 4V20C22 21.1046 21.1046 22 20 22H4C2.89543 22 2 21.1046 2 20V4ZM6 10.5C6 10.2239 6.22386 10 6.5 10H8.5C8.77614 10 9 10.2239 9 10.5V12.5C9 12.7761 8.77614 13 8.5 13H6.5C6.22386 13 6 12.7761 6 12.5V10.5ZM6.5 15C6.22386 15 6 15.2239 6 15.5V17.5C6 17.7761 6.22386 18 6.5 18H8.5C8.77614 18 9 17.7761 9 17.5V15.5C9 15.2239 8.77614 15 8.5 15H6.5ZM10.5 10.5C10.5 10.2239 10.7239 10 11 10H13C13.2761 10 13.5 10.2239 13.5 10.5V12.5C13.5 12.7761 13.2761 13 13 13H11C10.7239 13 10.5 12.7761 10.5 12.5V10.5ZM11 15C10.7239 15 10.5 15.2239 10.5 15.5V17.5C10.5 17.7761 10.7239 18 11 18H13C13.2761 18 13.5 17.7761 13.5 17.5V15.5C13.5 15.2239 13.2761 15 13 15H11ZM15 10.5C15 10.2239 15.2239 10 15.5 10H17.5C17.7761 10 18 10.2239 18 10.5V12.5C18 12.7761 17.7761 13 17.5 13H15.5C15.2239 13 15 12.7761 15 12.5V10.5ZM15.5 15C15.2239 15 15 15.2239 15 15.5V17.5C15 17.7761 15.2239 18 15.5 18H17.5C17.7761 18 18 17.7761 18 17.5V15.5C18 15.2239 17.7761 15 17.5 15H15.5Z",
|
|
52627
|
+
fill: "currentColor"
|
|
52628
|
+
}));
|
|
52629
|
+
}
|
|
52630
|
+
const IconCalendar_IconComponent = convertIcon(IconCalendar_SvgComponent, 'calendar');
|
|
52631
|
+
/* harmony default export */ const IconCalendar = (IconCalendar_IconComponent);
|
|
52632
|
+
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconCalendarClock.js
|
|
52633
|
+
|
|
52634
|
+
|
|
52635
|
+
function IconCalendarClock_SvgComponent(props) {
|
|
52636
|
+
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
52637
|
+
viewBox: "0 0 24 24",
|
|
52638
|
+
fill: "none",
|
|
52639
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
52640
|
+
width: "1em",
|
|
52641
|
+
height: "1em",
|
|
52642
|
+
focusable: false,
|
|
52643
|
+
"aria-hidden": true
|
|
52644
|
+
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
52645
|
+
d: "M2 5V19C2 20.6569 3.34315 22 5 22H12.101C11.5151 21.4259 11.0297 20.7496 10.6736 20H6C4.89543 20 4 19.1046 4 18V8C4 7.44772 4.44772 7 5 7H19C19.5523 7 20 7.44772 20 8V10.6736C20.7496 11.0297 21.4259 11.5151 22 12.101V5C22 3.34315 20.6569 2 19 2H5C3.34315 2 2 3.34315 2 5Z",
|
|
52646
|
+
fill: "currentColor"
|
|
52647
|
+
}), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
52648
|
+
d: "M16 10H17C16.4614 10 15.9369 10.0608 15.4332 10.176C15.5943 10.065 15.7896 10 16 10Z",
|
|
52649
|
+
fill: "currentColor"
|
|
52650
|
+
}), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
52651
|
+
d: "M13.4981 10.9376C13.4659 10.4144 13.0313 10 12.5 10H11.5C10.9477 10 10.5 10.4477 10.5 11V12C10.5 12.4742 10.83 12.8712 11.2729 12.9741C11.857 12.1446 12.6168 11.4478 13.4981 10.9376Z",
|
|
52652
|
+
fill: "currentColor"
|
|
52653
|
+
}), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
52654
|
+
d: "M7 10C6.44772 10 6 10.4477 6 11V12C6 12.5523 6.44772 13 7 13H8C8.55228 13 9 12.5523 9 12V11C9 10.4477 8.55228 10 8 10H7Z",
|
|
52655
|
+
fill: "currentColor"
|
|
52656
|
+
}), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
52657
|
+
d: "M6 16C6 15.4477 6.44772 15 7 15H8C8.55228 15 9 15.4477 9 16V17C9 17.5523 8.55228 18 8 18H7C6.44772 18 6 17.5523 6 17V16Z",
|
|
52658
|
+
fill: "currentColor"
|
|
52659
|
+
}), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
52660
|
+
fillRule: "evenodd",
|
|
52661
|
+
clipRule: "evenodd",
|
|
52662
|
+
d: "M22 17C22 19.7614 19.7614 22 17 22C14.2386 22 12 19.7614 12 17C12 14.2386 14.2386 12 17 12C19.7614 12 22 14.2386 22 17ZM18 15C18 14.4477 17.5523 14 17 14C16.4477 14 16 14.4477 16 15V17C16 17.2652 16.1054 17.5196 16.2929 17.7071L17.7929 19.2071C18.1834 19.5976 18.8166 19.5976 19.2071 19.2071C19.5976 18.8166 19.5976 18.1834 19.2071 17.7929L18 16.5858V15Z",
|
|
52663
|
+
fill: "currentColor"
|
|
52664
|
+
}));
|
|
52665
|
+
}
|
|
52666
|
+
const IconCalendarClock_IconComponent = convertIcon(IconCalendarClock_SvgComponent, 'calendar_clock');
|
|
52667
|
+
/* harmony default export */ const IconCalendarClock = (IconCalendarClock_IconComponent);
|
|
53717
52668
|
;// CONCATENATED MODULE: ./datePicker/insetInput.tsx
|
|
53718
52669
|
|
|
53719
52670
|
|
|
@@ -55506,6 +54457,58 @@ class MonthsGridFoundation extends foundation {
|
|
|
55506
54457
|
}
|
|
55507
54458
|
}
|
|
55508
54459
|
}
|
|
54460
|
+
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconDoubleChevronLeft.js
|
|
54461
|
+
|
|
54462
|
+
|
|
54463
|
+
function IconDoubleChevronLeft_SvgComponent(props) {
|
|
54464
|
+
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
54465
|
+
viewBox: "0 0 24 24",
|
|
54466
|
+
fill: "none",
|
|
54467
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
54468
|
+
width: "1em",
|
|
54469
|
+
height: "1em",
|
|
54470
|
+
focusable: false,
|
|
54471
|
+
"aria-hidden": true
|
|
54472
|
+
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
54473
|
+
fillRule: "evenodd",
|
|
54474
|
+
clipRule: "evenodd",
|
|
54475
|
+
d: "M12.6185 4.39653C13.1272 4.92524 13.1272 5.78245 12.6185 6.31116L7.14483 12L12.6185 17.6888C13.1272 18.2176 13.1272 19.0748 12.6185 19.6035C12.1098 20.1322 11.285 20.1322 10.7763 19.6035L4.38153 12.9573C3.87282 12.4286 3.87282 11.5714 4.38153 11.0427L10.7763 4.39653C11.285 3.86782 12.1098 3.86782 12.6185 4.39653Z",
|
|
54476
|
+
fill: "currentColor"
|
|
54477
|
+
}), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
54478
|
+
fillRule: "evenodd",
|
|
54479
|
+
clipRule: "evenodd",
|
|
54480
|
+
d: "M19.6185 4.39653C20.1272 4.92524 20.1272 5.78245 19.6185 6.31116L14.1448 12L19.6185 17.6888C20.1272 18.2176 20.1272 19.0748 19.6185 19.6035C19.1098 20.1322 18.285 20.1322 17.7763 19.6035L11.3815 12.9573C10.8728 12.4286 10.8728 11.5714 11.3815 11.0427L17.7763 4.39653C18.285 3.86782 19.1098 3.86782 19.6185 4.39653Z",
|
|
54481
|
+
fill: "currentColor"
|
|
54482
|
+
}));
|
|
54483
|
+
}
|
|
54484
|
+
const IconDoubleChevronLeft_IconComponent = convertIcon(IconDoubleChevronLeft_SvgComponent, 'double_chevron_left');
|
|
54485
|
+
/* harmony default export */ const IconDoubleChevronLeft = (IconDoubleChevronLeft_IconComponent);
|
|
54486
|
+
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconDoubleChevronRight.js
|
|
54487
|
+
|
|
54488
|
+
|
|
54489
|
+
function IconDoubleChevronRight_SvgComponent(props) {
|
|
54490
|
+
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
54491
|
+
viewBox: "0 0 24 24",
|
|
54492
|
+
fill: "none",
|
|
54493
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
54494
|
+
width: "1em",
|
|
54495
|
+
height: "1em",
|
|
54496
|
+
focusable: false,
|
|
54497
|
+
"aria-hidden": true
|
|
54498
|
+
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
54499
|
+
fillRule: "evenodd",
|
|
54500
|
+
clipRule: "evenodd",
|
|
54501
|
+
d: "M4.38153 4.39653C4.89024 3.86782 5.71502 3.86782 6.22373 4.39653L12.6185 11.0427C13.1272 11.5714 13.1272 12.4286 12.6185 12.9573L6.22373 19.6035C5.71502 20.1322 4.89024 20.1322 4.38153 19.6035C3.87282 19.0748 3.87282 18.2176 4.38153 17.6888L9.85517 12L4.38153 6.31116C3.87282 5.78245 3.87282 4.92524 4.38153 4.39653Z",
|
|
54502
|
+
fill: "currentColor"
|
|
54503
|
+
}), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
54504
|
+
fillRule: "evenodd",
|
|
54505
|
+
clipRule: "evenodd",
|
|
54506
|
+
d: "M11.3815 4.39653C11.8902 3.86782 12.715 3.86782 13.2237 4.39653L19.6185 11.0427C20.1272 11.5714 20.1272 12.4286 19.6185 12.9573L13.2237 19.6035C12.715 20.1322 11.8902 20.1322 11.3815 19.6035C10.8728 19.0748 10.8728 18.2176 11.3815 17.6888L16.8552 12L11.3815 6.31116C10.8728 5.78245 10.8728 4.92524 11.3815 4.39653Z",
|
|
54507
|
+
fill: "currentColor"
|
|
54508
|
+
}));
|
|
54509
|
+
}
|
|
54510
|
+
const IconDoubleChevronRight_IconComponent = convertIcon(IconDoubleChevronRight_SvgComponent, 'double_chevron_right');
|
|
54511
|
+
/* harmony default export */ const IconDoubleChevronRight = (IconDoubleChevronRight_IconComponent);
|
|
55509
54512
|
;// CONCATENATED MODULE: ./datePicker/navigation.tsx
|
|
55510
54513
|
|
|
55511
54514
|
|
|
@@ -57945,6 +56948,27 @@ YearAndMonth.defaultProps = {
|
|
|
57945
56948
|
type: 'month'
|
|
57946
56949
|
};
|
|
57947
56950
|
/* harmony default export */ const yearAndMonth = (YearAndMonth);
|
|
56951
|
+
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconClock.js
|
|
56952
|
+
|
|
56953
|
+
|
|
56954
|
+
function IconClock_SvgComponent(props) {
|
|
56955
|
+
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
56956
|
+
viewBox: "0 0 24 24",
|
|
56957
|
+
fill: "none",
|
|
56958
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
56959
|
+
width: "1em",
|
|
56960
|
+
height: "1em",
|
|
56961
|
+
focusable: false,
|
|
56962
|
+
"aria-hidden": true
|
|
56963
|
+
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
56964
|
+
fillRule: "evenodd",
|
|
56965
|
+
clipRule: "evenodd",
|
|
56966
|
+
d: "M12 23C18.0751 23 23 18.0751 23 12C23 5.92487 18.0751 1 12 1C5.92487 1 1 5.92487 1 12C1 18.0751 5.92487 23 12 23ZM13.5 6.5V11.3787L17.0607 14.9393C17.6464 15.5251 17.6464 16.4749 17.0607 17.0607C16.4749 17.6464 15.5251 17.6464 14.9393 17.0607L10.9393 13.0607C10.658 12.7794 10.5 12.3978 10.5 12V6.5C10.5 5.67157 11.1716 5 12 5C12.8284 5 13.5 5.67157 13.5 6.5Z",
|
|
56967
|
+
fill: "currentColor"
|
|
56968
|
+
}));
|
|
56969
|
+
}
|
|
56970
|
+
const IconClock_IconComponent = convertIcon(IconClock_SvgComponent, 'clock');
|
|
56971
|
+
/* harmony default export */ const IconClock = (IconClock_IconComponent);
|
|
57948
56972
|
;// CONCATENATED MODULE: ./datePicker/monthsGrid.tsx
|
|
57949
56973
|
|
|
57950
56974
|
|
|
@@ -60673,6 +59697,27 @@ const ConfirmModal = props => {
|
|
|
60673
59697
|
}, content));
|
|
60674
59698
|
};
|
|
60675
59699
|
/* harmony default export */ const modal_ConfirmModal = (ConfirmModal);
|
|
59700
|
+
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconHelpCircle.js
|
|
59701
|
+
|
|
59702
|
+
|
|
59703
|
+
function IconHelpCircle_SvgComponent(props) {
|
|
59704
|
+
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
59705
|
+
viewBox: "0 0 24 24",
|
|
59706
|
+
fill: "none",
|
|
59707
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
59708
|
+
width: "1em",
|
|
59709
|
+
height: "1em",
|
|
59710
|
+
focusable: false,
|
|
59711
|
+
"aria-hidden": true
|
|
59712
|
+
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
59713
|
+
fillRule: "evenodd",
|
|
59714
|
+
clipRule: "evenodd",
|
|
59715
|
+
d: "M12 23C18.0751 23 23 18.0751 23 12C23 5.92487 18.0751 1 12 1C5.92487 1 1 5.92487 1 12C1 18.0751 5.92487 23 12 23ZM11.8281 14.6094C10.9688 14.6094 10.5391 14.0723 10.5391 13.3691C10.5391 12.3242 11.0566 11.6504 12.2676 10.7324C12.2894 10.7158 12.3111 10.6993 12.3326 10.6829C13.1573 10.0555 13.7324 9.61807 13.7324 8.82812C13.7324 7.93945 12.9023 7.42188 11.9746 7.42188C11.2129 7.42188 10.627 7.70508 10.168 8.30078C9.83594 8.64258 9.57227 8.82812 9.12305 8.82812C8.38086 8.82812 8 8.31055 8 7.71484C8 7.10938 8.3418 6.49414 8.87891 6.02539C9.60156 5.40039 10.7539 5 12.2773 5C14.9922 5 16.8965 6.33789 16.8965 8.64258C16.8965 10.3223 15.8906 11.1328 14.709 11.9531C13.9082 12.5391 13.5273 12.8809 13.2246 13.5742L13.2238 13.5756C12.8922 14.1609 12.638 14.6094 11.8281 14.6094ZM11.8086 18.7695C10.8711 18.7695 10.0996 18.1641 10.0996 17.2266C10.0996 16.2891 10.8711 15.6836 11.8086 15.6836C12.7461 15.6836 13.5078 16.2891 13.5078 17.2266C13.5078 18.1641 12.7461 18.7695 11.8086 18.7695Z",
|
|
59716
|
+
fill: "currentColor"
|
|
59717
|
+
}));
|
|
59718
|
+
}
|
|
59719
|
+
const IconHelpCircle_IconComponent = convertIcon(IconHelpCircle_SvgComponent, 'help_circle');
|
|
59720
|
+
/* harmony default export */ const IconHelpCircle = (IconHelpCircle_IconComponent);
|
|
60676
59721
|
;// CONCATENATED MODULE: ./modal/confirm.tsx
|
|
60677
59722
|
|
|
60678
59723
|
|
|
@@ -62600,6 +61645,11 @@ List.defaultProps = {
|
|
|
62600
61645
|
onClick: (noop_default())
|
|
62601
61646
|
};
|
|
62602
61647
|
/* harmony default export */ const list_0 = (List);
|
|
61648
|
+
;// CONCATENATED MODULE: ../semi-icons/lib/es/index.js
|
|
61649
|
+
|
|
61650
|
+
|
|
61651
|
+
|
|
61652
|
+
/* harmony default export */ const lib_es = (components_Icon);
|
|
62603
61653
|
;// CONCATENATED MODULE: ./icons/index.tsx
|
|
62604
61654
|
|
|
62605
61655
|
/* harmony default export */ const icons_0 = (lib_es);
|
|
@@ -62612,7 +61662,8 @@ const form_constants_strings = {
|
|
|
62612
61662
|
LAYOUT: ['horizontal', 'vertical'],
|
|
62613
61663
|
LABEL_POS: ['left', 'top', 'inset'],
|
|
62614
61664
|
LABEL_ALIGN: ['left', 'right'],
|
|
62615
|
-
EXTRA_POS: ['middle', 'bottom']
|
|
61665
|
+
EXTRA_POS: ['middle', 'bottom'],
|
|
61666
|
+
DEFAULT_TRIGGER: 'change'
|
|
62616
61667
|
};
|
|
62617
61668
|
const form_constants_numbers = {};
|
|
62618
61669
|
|
|
@@ -64273,7 +63324,7 @@ class InputNumber extends BaseComponent {
|
|
|
64273
63324
|
} else {
|
|
64274
63325
|
let valueStr = value;
|
|
64275
63326
|
if (typeof value === 'number') {
|
|
64276
|
-
valueStr =
|
|
63327
|
+
valueStr = this.foundation.doFormat(value);
|
|
64277
63328
|
}
|
|
64278
63329
|
const parsedNum = this.foundation.doParse(valueStr, false, true, true);
|
|
64279
63330
|
const toNum = typeof value === 'number' ? value : this.foundation.doParse(valueStr, false, false, false);
|
|
@@ -65605,6 +64656,27 @@ SubNav.defaultProps = {
|
|
|
65605
64656
|
maxHeight: navigation_constants_numbers.DEFAULT_SUBNAV_MAX_HEIGHT,
|
|
65606
64657
|
disabled: false
|
|
65607
64658
|
};
|
|
64659
|
+
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconSidebar.js
|
|
64660
|
+
|
|
64661
|
+
|
|
64662
|
+
function IconSidebar_SvgComponent(props) {
|
|
64663
|
+
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
64664
|
+
viewBox: "0 0 24 24",
|
|
64665
|
+
fill: "none",
|
|
64666
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
64667
|
+
width: "1em",
|
|
64668
|
+
height: "1em",
|
|
64669
|
+
focusable: false,
|
|
64670
|
+
"aria-hidden": true
|
|
64671
|
+
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
64672
|
+
fillRule: "evenodd",
|
|
64673
|
+
clipRule: "evenodd",
|
|
64674
|
+
d: "M5 2H19C20.6569 2 22 3.34315 22 5V19C22 20.6569 20.6569 22 19 22H5C3.34315 22 2 20.6569 2 19V5C2 3.34315 3.34315 2 5 2ZM6 4C5.44772 4 5 4.44772 5 5V19C5 19.5523 5.44772 20 6 20H9C9.55229 20 10 19.5523 10 19V5C10 4.44772 9.55229 4 9 4H6Z",
|
|
64675
|
+
fill: "currentColor"
|
|
64676
|
+
}));
|
|
64677
|
+
}
|
|
64678
|
+
const IconSidebar_IconComponent = convertIcon(IconSidebar_SvgComponent, 'sidebar');
|
|
64679
|
+
/* harmony default export */ const IconSidebar = (IconSidebar_IconComponent);
|
|
65608
64680
|
;// CONCATENATED MODULE: ./navigation/CollapseButton.tsx
|
|
65609
64681
|
|
|
65610
64682
|
|
|
@@ -74213,6 +73285,27 @@ class RadioInnerFoundation extends foundation {
|
|
|
74213
73285
|
|
|
74214
73286
|
const context_Context = /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_default().createContext(null);
|
|
74215
73287
|
/* harmony default export */ const radio_context = (context_Context);
|
|
73288
|
+
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconRadio.js
|
|
73289
|
+
|
|
73290
|
+
|
|
73291
|
+
function IconRadio_SvgComponent(props) {
|
|
73292
|
+
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
73293
|
+
viewBox: "0 0 24 24",
|
|
73294
|
+
fill: "none",
|
|
73295
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
73296
|
+
width: "1em",
|
|
73297
|
+
height: "1em",
|
|
73298
|
+
focusable: false,
|
|
73299
|
+
"aria-hidden": true
|
|
73300
|
+
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("circle", {
|
|
73301
|
+
cx: 12,
|
|
73302
|
+
cy: 12,
|
|
73303
|
+
r: 5,
|
|
73304
|
+
fill: "currentColor"
|
|
73305
|
+
}));
|
|
73306
|
+
}
|
|
73307
|
+
const IconRadio_IconComponent = convertIcon(IconRadio_SvgComponent, 'radio');
|
|
73308
|
+
/* harmony default export */ const IconRadio = (IconRadio_IconComponent);
|
|
74216
73309
|
;// CONCATENATED MODULE: ./radio/radioInner.tsx
|
|
74217
73310
|
|
|
74218
73311
|
|
|
@@ -74798,6 +73891,25 @@ const rating_constants_strings = {
|
|
|
74798
73891
|
|
|
74799
73892
|
// EXTERNAL MODULE: ../semi-foundation/rating/rating.scss
|
|
74800
73893
|
var rating = __webpack_require__("FII7");
|
|
73894
|
+
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconStar.js
|
|
73895
|
+
|
|
73896
|
+
|
|
73897
|
+
function IconStar_SvgComponent(props) {
|
|
73898
|
+
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
73899
|
+
viewBox: "0 0 24 24",
|
|
73900
|
+
fill: "none",
|
|
73901
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
73902
|
+
width: "1em",
|
|
73903
|
+
height: "1em",
|
|
73904
|
+
focusable: false,
|
|
73905
|
+
"aria-hidden": true
|
|
73906
|
+
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
73907
|
+
d: "M10.7525 1.90411C11.1451 0.698628 12.8549 0.698631 13.2475 1.90411L15.2395 8.01946H21.6858C22.9565 8.01946 23.4848 9.64143 22.4568 10.3865L17.2417 14.1659L19.2337 20.2813C19.6263 21.4868 18.2431 22.4892 17.2151 21.7442L12 17.9647L6.78489 21.7442C5.75687 22.4892 4.37368 21.4868 4.76635 20.2813L6.75834 14.1659L1.54323 10.3865C0.515206 9.64142 1.04354 8.01946 2.31425 8.01946H8.76048L10.7525 1.90411Z",
|
|
73908
|
+
fill: "currentColor"
|
|
73909
|
+
}));
|
|
73910
|
+
}
|
|
73911
|
+
const IconStar_IconComponent = convertIcon(IconStar_SvgComponent, 'star');
|
|
73912
|
+
/* harmony default export */ const IconStar = (IconStar_IconComponent);
|
|
74801
73913
|
;// CONCATENATED MODULE: ../semi-foundation/rating/foundation.ts
|
|
74802
73914
|
|
|
74803
73915
|
|
|
@@ -77526,6 +76638,19 @@ Slider.defaultProps = {
|
|
|
77526
76638
|
|
|
77527
76639
|
const splitButtonGroup_prefixCls = button_constants_cssClasses.PREFIX;
|
|
77528
76640
|
class SplitButtonGroup extends BaseComponent {
|
|
76641
|
+
constructor() {
|
|
76642
|
+
super(...arguments);
|
|
76643
|
+
this.containerRef = /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_default().createRef();
|
|
76644
|
+
}
|
|
76645
|
+
componentDidMount() {
|
|
76646
|
+
if (this.containerRef.current) {
|
|
76647
|
+
const buttons = this.containerRef.current.querySelectorAll('button');
|
|
76648
|
+
const firstButton = buttons[0];
|
|
76649
|
+
const lastButton = buttons[buttons.length - 1];
|
|
76650
|
+
firstButton === null || firstButton === void 0 ? void 0 : firstButton.classList.add(`${splitButtonGroup_prefixCls}-first`);
|
|
76651
|
+
lastButton === null || lastButton === void 0 ? void 0 : lastButton.classList.add(`${splitButtonGroup_prefixCls}-last`);
|
|
76652
|
+
}
|
|
76653
|
+
}
|
|
77529
76654
|
render() {
|
|
77530
76655
|
const {
|
|
77531
76656
|
children,
|
|
@@ -77534,6 +76659,7 @@ class SplitButtonGroup extends BaseComponent {
|
|
|
77534
76659
|
} = this.props;
|
|
77535
76660
|
const cls = classnames_default()(`${splitButtonGroup_prefixCls}-split`, className);
|
|
77536
76661
|
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_default().createElement("div", {
|
|
76662
|
+
ref: this.containerRef,
|
|
77537
76663
|
className: cls,
|
|
77538
76664
|
style: style,
|
|
77539
76665
|
role: "group",
|
|
@@ -80363,6 +79489,27 @@ TablePagination.propTypes = {
|
|
|
80363
79489
|
TablePagination.defaultProps = {
|
|
80364
79490
|
prefixCls: table_constants_cssClasses.PREFIX
|
|
80365
79491
|
};
|
|
79492
|
+
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconFilter.js
|
|
79493
|
+
|
|
79494
|
+
|
|
79495
|
+
function IconFilter_SvgComponent(props) {
|
|
79496
|
+
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
79497
|
+
viewBox: "0 0 24 24",
|
|
79498
|
+
fill: "none",
|
|
79499
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
79500
|
+
width: "1em",
|
|
79501
|
+
height: "1em",
|
|
79502
|
+
focusable: false,
|
|
79503
|
+
"aria-hidden": true
|
|
79504
|
+
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
79505
|
+
fillRule: "evenodd",
|
|
79506
|
+
clipRule: "evenodd",
|
|
79507
|
+
d: "M1.0929 2.57912C1.25675 2.22596 1.61069 2 2.00001 2H22C22.3893 2 22.7433 2.22596 22.9071 2.57912C23.071 2.93229 23.015 3.34845 22.7636 3.64573L14.5654 12.8261V21C14.5654 21.3466 14.386 21.6684 14.0911 21.8507C13.7963 22.0329 13.4282 22.0494 13.1182 21.8944L10.0528 19.8944C9.71401 19.725 9.5 19.3788 9.5 19V12.8261L1.23644 3.64573C0.985045 3.34845 0.929036 2.93229 1.0929 2.57912Z",
|
|
79508
|
+
fill: "currentColor"
|
|
79509
|
+
}));
|
|
79510
|
+
}
|
|
79511
|
+
const IconFilter_IconComponent = convertIcon(IconFilter_SvgComponent, 'filter');
|
|
79512
|
+
/* harmony default export */ const IconFilter = (IconFilter_IconComponent);
|
|
80366
79513
|
;// CONCATENATED MODULE: ./table/ColumnFilter.tsx
|
|
80367
79514
|
|
|
80368
79515
|
|
|
@@ -80501,6 +79648,44 @@ function ColumnFilter() {
|
|
|
80501
79648
|
}) : renderDropdown(renderProps, iconElem);
|
|
80502
79649
|
return filterDropdown;
|
|
80503
79650
|
}
|
|
79651
|
+
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconCaretup.js
|
|
79652
|
+
|
|
79653
|
+
|
|
79654
|
+
function IconCaretup_SvgComponent(props) {
|
|
79655
|
+
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
79656
|
+
viewBox: "0 0 24 24",
|
|
79657
|
+
fill: "none",
|
|
79658
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
79659
|
+
width: "1em",
|
|
79660
|
+
height: "1em",
|
|
79661
|
+
focusable: false,
|
|
79662
|
+
"aria-hidden": true
|
|
79663
|
+
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
79664
|
+
d: "M6.45096 8.34102L11.247 2.86102C11.3408 2.75361 11.4566 2.66753 11.5865 2.60854C11.7163 2.54956 11.8573 2.51904 12 2.51904C12.1426 2.51904 12.2836 2.54956 12.4135 2.60854C12.5433 2.66753 12.6591 2.75361 12.753 2.86102L17.549 8.34102C18.115 8.98802 17.655 10 16.796 10H7.20396C6.34396 10 5.88496 8.98802 6.45096 8.34102Z",
|
|
79665
|
+
fill: "currentColor"
|
|
79666
|
+
}));
|
|
79667
|
+
}
|
|
79668
|
+
const IconCaretup_IconComponent = convertIcon(IconCaretup_SvgComponent, 'caretup');
|
|
79669
|
+
/* harmony default export */ const IconCaretup = (IconCaretup_IconComponent);
|
|
79670
|
+
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconCaretdown.js
|
|
79671
|
+
|
|
79672
|
+
|
|
79673
|
+
function IconCaretdown_SvgComponent(props) {
|
|
79674
|
+
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
79675
|
+
viewBox: "0 0 24 24",
|
|
79676
|
+
fill: "none",
|
|
79677
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
79678
|
+
width: "1em",
|
|
79679
|
+
height: "1em",
|
|
79680
|
+
focusable: false,
|
|
79681
|
+
"aria-hidden": true
|
|
79682
|
+
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
79683
|
+
d: "M17.549 15.659L12.753 21.139C12.6591 21.2464 12.5434 21.3325 12.4135 21.3915C12.2836 21.4505 12.1427 21.481 12 21.481C11.8574 21.481 11.7164 21.4505 11.5865 21.3915C11.4566 21.3325 11.3409 21.2464 11.247 21.139L6.45101 15.659C5.88501 15.011 6.34501 14 7.20401 14H16.796C17.656 14 18.115 15.012 17.549 15.659Z",
|
|
79684
|
+
fill: "currentColor"
|
|
79685
|
+
}));
|
|
79686
|
+
}
|
|
79687
|
+
const IconCaretdown_IconComponent = convertIcon(IconCaretdown_SvgComponent, 'caretdown');
|
|
79688
|
+
/* harmony default export */ const IconCaretdown = (IconCaretdown_IconComponent);
|
|
80504
79689
|
;// CONCATENATED MODULE: ./table/ColumnSorter.tsx
|
|
80505
79690
|
|
|
80506
79691
|
|
|
@@ -80566,6 +79751,44 @@ ColumnSorter.defaultProps = {
|
|
|
80566
79751
|
onClick: (noop_default()),
|
|
80567
79752
|
sortOrder: false
|
|
80568
79753
|
};
|
|
79754
|
+
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconTreeTriangleDown.js
|
|
79755
|
+
|
|
79756
|
+
|
|
79757
|
+
function IconTreeTriangleDown_SvgComponent(props) {
|
|
79758
|
+
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
79759
|
+
viewBox: "0 0 24 24",
|
|
79760
|
+
fill: "none",
|
|
79761
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
79762
|
+
width: "1em",
|
|
79763
|
+
height: "1em",
|
|
79764
|
+
focusable: false,
|
|
79765
|
+
"aria-hidden": true
|
|
79766
|
+
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
79767
|
+
d: "M20.5598 9.65618L12.7546 18.6322C12.3559 19.0906 11.644 19.0906 11.2453 18.6322L3.4401 9.65618C2.8773 9.00895 3.33701 8 4.19471 8L19.8052 8C20.6629 8 21.1226 9.00895 20.5598 9.65618Z",
|
|
79768
|
+
fill: "currentColor"
|
|
79769
|
+
}));
|
|
79770
|
+
}
|
|
79771
|
+
const IconTreeTriangleDown_IconComponent = convertIcon(IconTreeTriangleDown_SvgComponent, 'tree_triangle_down');
|
|
79772
|
+
/* harmony default export */ const IconTreeTriangleDown = (IconTreeTriangleDown_IconComponent);
|
|
79773
|
+
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconTreeTriangleRight.js
|
|
79774
|
+
|
|
79775
|
+
|
|
79776
|
+
function IconTreeTriangleRight_SvgComponent(props) {
|
|
79777
|
+
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
79778
|
+
viewBox: "0 0 24 24",
|
|
79779
|
+
fill: "none",
|
|
79780
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
79781
|
+
width: "1em",
|
|
79782
|
+
height: "1em",
|
|
79783
|
+
focusable: false,
|
|
79784
|
+
"aria-hidden": true
|
|
79785
|
+
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
79786
|
+
d: "M9.65618 3.44015L18.6322 11.2454C19.0906 11.644 19.0906 12.356 18.6322 12.7546L9.65618 20.5598C9.00895 21.1226 8 20.6629 8 19.8052V4.19475C8 3.33705 9.00895 2.87734 9.65618 3.44015Z",
|
|
79787
|
+
fill: "currentColor"
|
|
79788
|
+
}));
|
|
79789
|
+
}
|
|
79790
|
+
const IconTreeTriangleRight_IconComponent = convertIcon(IconTreeTriangleRight_SvgComponent, 'tree_triangle_right');
|
|
79791
|
+
/* harmony default export */ const IconTreeTriangleRight = (IconTreeTriangleRight_IconComponent);
|
|
80569
79792
|
;// CONCATENATED MODULE: ./table/CustomExpandIcon.tsx
|
|
80570
79793
|
|
|
80571
79794
|
/* eslint-disable react-hooks/exhaustive-deps */
|
|
@@ -80835,6 +80058,9 @@ class TableHeaderRow extends BaseComponent {
|
|
|
80835
80058
|
}
|
|
80836
80059
|
}
|
|
80837
80060
|
}
|
|
80061
|
+
Object.assign(cellProps, {
|
|
80062
|
+
resize: column.resize
|
|
80063
|
+
});
|
|
80838
80064
|
const props = omit_default()(Object.assign(Object.assign({}, cellProps), customProps), ['colStart', 'colEnd', 'hasSubColumns', 'parents', 'level']);
|
|
80839
80065
|
const {
|
|
80840
80066
|
rowSpan,
|
|
@@ -84609,10 +83835,11 @@ class ResizableHeaderCell extends (external_root_React_commonjs2_react_commonjs_
|
|
|
84609
83835
|
onResize,
|
|
84610
83836
|
onResizeStart,
|
|
84611
83837
|
onResizeStop,
|
|
84612
|
-
width
|
|
83838
|
+
width,
|
|
83839
|
+
resize
|
|
84613
83840
|
} = _a,
|
|
84614
|
-
restProps = ResizableHeaderCell_rest(_a, ["onResize", "onResizeStart", "onResizeStop", "width"]);
|
|
84615
|
-
if (typeof width !== 'number') {
|
|
83841
|
+
restProps = ResizableHeaderCell_rest(_a, ["onResize", "onResizeStart", "onResizeStop", "width", "resize"]);
|
|
83842
|
+
if (typeof width !== 'number' || resize === false) {
|
|
84616
83843
|
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_default().createElement("th", Object.assign({}, restProps));
|
|
84617
83844
|
}
|
|
84618
83845
|
let {
|
|
@@ -84630,7 +83857,8 @@ class ResizableHeaderCell extends (external_root_React_commonjs2_react_commonjs_
|
|
|
84630
83857
|
onResizeStop: onResizeStop,
|
|
84631
83858
|
draggableOpts: {
|
|
84632
83859
|
enableUserSelectHack: false
|
|
84633
|
-
}
|
|
83860
|
+
},
|
|
83861
|
+
axis: 'x'
|
|
84634
83862
|
}, /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_default().createElement("th", Object.assign({}, restProps), children));
|
|
84635
83863
|
}
|
|
84636
83864
|
}
|
|
@@ -87223,6 +86451,12 @@ LocaleTimePicker.defaultProps = TimePicker.defaultProps;
|
|
|
87223
86451
|
class ToastListFoundation extends foundation {
|
|
87224
86452
|
constructor(adapter) {
|
|
87225
86453
|
super(Object.assign(Object.assign({}, ToastListFoundation.defaultAdapter), adapter));
|
|
86454
|
+
this.handleMouseInSideChange = mouseInSideChange => {
|
|
86455
|
+
this._adapter.handleMouseInSideChange(mouseInSideChange);
|
|
86456
|
+
};
|
|
86457
|
+
this.getInputWrapperRect = () => {
|
|
86458
|
+
return this._adapter.getInputWrapperRect();
|
|
86459
|
+
};
|
|
87226
86460
|
}
|
|
87227
86461
|
hasToast(id) {
|
|
87228
86462
|
const toastList = this._adapter.getState('list');
|
|
@@ -87346,6 +86580,7 @@ const toast_prefixCls = toast_constants_cssClasses.PREFIX;
|
|
|
87346
86580
|
class Toast extends BaseComponent {
|
|
87347
86581
|
constructor(props) {
|
|
87348
86582
|
super(props);
|
|
86583
|
+
this.toastEle = /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_default().createRef();
|
|
87349
86584
|
this.clearCloseTimer = () => {
|
|
87350
86585
|
this.foundation.clearCloseTimer_();
|
|
87351
86586
|
};
|
|
@@ -87425,11 +86660,15 @@ class Toast extends BaseComponent {
|
|
|
87425
86660
|
textStyle.maxWidth = textMaxWidth;
|
|
87426
86661
|
const btnTheme = 'borderless';
|
|
87427
86662
|
const btnSize = 'small';
|
|
87428
|
-
|
|
86663
|
+
const reservedIndex = this.props.positionInList ? this.props.positionInList.length - this.props.positionInList.index - 1 : 0;
|
|
86664
|
+
const toastEle = /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_default().createElement("div", {
|
|
86665
|
+
ref: this.toastEle,
|
|
87429
86666
|
role: "alert",
|
|
87430
86667
|
"aria-label": `${type ? type : 'default'} type`,
|
|
87431
86668
|
className: toastCls,
|
|
87432
|
-
style: style,
|
|
86669
|
+
style: Object.assign(Object.assign({}, style), {
|
|
86670
|
+
transform: `translate3d(0,0,${reservedIndex * -10}px)`
|
|
86671
|
+
}),
|
|
87433
86672
|
onMouseEnter: this.clearCloseTimer,
|
|
87434
86673
|
onMouseLeave: this.startCloseTimer,
|
|
87435
86674
|
onAnimationStart: this.props.onAnimationStart,
|
|
@@ -87451,6 +86690,17 @@ class Toast extends BaseComponent {
|
|
|
87451
86690
|
theme: btnTheme,
|
|
87452
86691
|
size: btnSize
|
|
87453
86692
|
}))));
|
|
86693
|
+
if (this.props.stack) {
|
|
86694
|
+
const height = this.props.stackExpanded && this.toastEle.current && getComputedStyle(this.toastEle.current).height || 0;
|
|
86695
|
+
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_default().createElement("div", {
|
|
86696
|
+
className: `${toast_prefixCls}-zero-height-wrapper`,
|
|
86697
|
+
style: {
|
|
86698
|
+
height
|
|
86699
|
+
}
|
|
86700
|
+
}, toastEle);
|
|
86701
|
+
} else {
|
|
86702
|
+
return toastEle;
|
|
86703
|
+
}
|
|
87454
86704
|
}
|
|
87455
86705
|
}
|
|
87456
86706
|
Toast.contextType = context;
|
|
@@ -87465,6 +86715,8 @@ Toast.propTypes = {
|
|
|
87465
86715
|
style: (prop_types_default()).object,
|
|
87466
86716
|
className: (prop_types_default()).string,
|
|
87467
86717
|
showClose: (prop_types_default()).bool,
|
|
86718
|
+
stack: (prop_types_default()).bool,
|
|
86719
|
+
stackExpanded: (prop_types_default()).bool,
|
|
87468
86720
|
icon: prop_types_default().oneOfType([(prop_types_default()).string, (prop_types_default()).node]),
|
|
87469
86721
|
direction: prop_types_default().oneOf(toast_constants_strings.directions)
|
|
87470
86722
|
};
|
|
@@ -87475,6 +86727,8 @@ Toast.defaultProps = {
|
|
|
87475
86727
|
duration: toast_constants_numbers.duration,
|
|
87476
86728
|
textMaxWidth: 450,
|
|
87477
86729
|
showClose: true,
|
|
86730
|
+
stack: false,
|
|
86731
|
+
stackExpanded: false,
|
|
87478
86732
|
theme: 'normal'
|
|
87479
86733
|
};
|
|
87480
86734
|
/* harmony default export */ const toast = (Toast);
|
|
@@ -87611,10 +86865,27 @@ const createBaseToast = () => {
|
|
|
87611
86865
|
return _a = class ToastList extends BaseComponent {
|
|
87612
86866
|
constructor(props) {
|
|
87613
86867
|
super(props);
|
|
86868
|
+
this.stack = false;
|
|
86869
|
+
this.innerWrapperRef = /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_default().createRef();
|
|
86870
|
+
this.handleMouseEnter = e => {
|
|
86871
|
+
if (this.stack) {
|
|
86872
|
+
this.foundation.handleMouseInSideChange(true);
|
|
86873
|
+
}
|
|
86874
|
+
};
|
|
86875
|
+
this.handleMouseLeave = e => {
|
|
86876
|
+
var _a;
|
|
86877
|
+
if (this.stack) {
|
|
86878
|
+
const height = (_a = this.foundation.getInputWrapperRect()) === null || _a === void 0 ? void 0 : _a.height;
|
|
86879
|
+
if (height) {
|
|
86880
|
+
this.foundation.handleMouseInSideChange(false);
|
|
86881
|
+
}
|
|
86882
|
+
}
|
|
86883
|
+
};
|
|
87614
86884
|
this.state = {
|
|
87615
86885
|
list: [],
|
|
87616
86886
|
removedItems: [],
|
|
87617
|
-
updatedItems: []
|
|
86887
|
+
updatedItems: [],
|
|
86888
|
+
mouseInSide: false
|
|
87618
86889
|
};
|
|
87619
86890
|
this.foundation = new ToastListFoundation(this.adapter);
|
|
87620
86891
|
}
|
|
@@ -87626,6 +86897,15 @@ const createBaseToast = () => {
|
|
|
87626
86897
|
removedItems,
|
|
87627
86898
|
updatedItems
|
|
87628
86899
|
});
|
|
86900
|
+
},
|
|
86901
|
+
handleMouseInSideChange: mouseInSide => {
|
|
86902
|
+
this.setState({
|
|
86903
|
+
mouseInSide
|
|
86904
|
+
});
|
|
86905
|
+
},
|
|
86906
|
+
getInputWrapperRect: () => {
|
|
86907
|
+
var _a;
|
|
86908
|
+
return (_a = this.innerWrapperRef.current) === null || _a === void 0 ? void 0 : _a.getBoundingClientRect();
|
|
87629
86909
|
}
|
|
87630
86910
|
});
|
|
87631
86911
|
}
|
|
@@ -87660,6 +86940,7 @@ const createBaseToast = () => {
|
|
|
87660
86940
|
ToastList.ref.add(Object.assign(Object.assign({}, opts), {
|
|
87661
86941
|
id
|
|
87662
86942
|
}));
|
|
86943
|
+
ToastList.ref.stack = Boolean(opts.stack);
|
|
87663
86944
|
});
|
|
87664
86945
|
} else {
|
|
87665
86946
|
const node = document.querySelector(`#${this.wrapperId}`);
|
|
@@ -87668,6 +86949,9 @@ const createBaseToast = () => {
|
|
|
87668
86949
|
node.style[pos] = typeof opts[pos] === 'number' ? `${opts[pos]}px` : opts[pos];
|
|
87669
86950
|
}
|
|
87670
86951
|
});
|
|
86952
|
+
if (Boolean(opts.stack) !== ToastList.ref.stack) {
|
|
86953
|
+
ToastList.ref.stack = Boolean(opts.stack);
|
|
86954
|
+
}
|
|
87671
86955
|
if (ToastList.ref.has(id)) {
|
|
87672
86956
|
ToastList.ref.update(id, Object.assign(Object.assign({}, opts), {
|
|
87673
86957
|
id
|
|
@@ -87793,7 +87077,15 @@ const createBaseToast = () => {
|
|
|
87793
87077
|
toast.foundation.restartCloseTimer();
|
|
87794
87078
|
}
|
|
87795
87079
|
};
|
|
87796
|
-
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_default().createElement((external_root_React_commonjs2_react_commonjs_react_amd_react_default()).Fragment, null,
|
|
87080
|
+
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_default().createElement((external_root_React_commonjs2_react_commonjs_react_amd_react_default()).Fragment, null, /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_default().createElement("div", {
|
|
87081
|
+
className: classnames_default()({
|
|
87082
|
+
[`${toast_constants_cssClasses.PREFIX}-innerWrapper`]: true,
|
|
87083
|
+
[`${toast_constants_cssClasses.PREFIX}-innerWrapper-hover`]: this.state.mouseInSide
|
|
87084
|
+
}),
|
|
87085
|
+
ref: this.innerWrapperRef,
|
|
87086
|
+
onMouseEnter: this.handleMouseEnter,
|
|
87087
|
+
onMouseLeave: this.handleMouseLeave
|
|
87088
|
+
}, list.map((item, index) => {
|
|
87797
87089
|
const isRemoved = removedItems.find(removedItem => removedItem.id === item.id) !== undefined;
|
|
87798
87090
|
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_default().createElement(_cssAnimation, {
|
|
87799
87091
|
key: item.id,
|
|
@@ -87807,6 +87099,12 @@ const createBaseToast = () => {
|
|
|
87807
87099
|
isAnimating
|
|
87808
87100
|
} = _ref2;
|
|
87809
87101
|
return isRemoved && !isAnimating ? null : /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_default().createElement(toast, Object.assign({}, item, {
|
|
87102
|
+
stack: this.stack,
|
|
87103
|
+
stackExpanded: this.state.mouseInSide,
|
|
87104
|
+
positionInList: {
|
|
87105
|
+
length: list.length,
|
|
87106
|
+
index
|
|
87107
|
+
},
|
|
87810
87108
|
className: classnames_default()({
|
|
87811
87109
|
[item.className]: Boolean(item.className),
|
|
87812
87110
|
[animationClassName]: true
|
|
@@ -87817,7 +87115,7 @@ const createBaseToast = () => {
|
|
|
87817
87115
|
ref: refFn
|
|
87818
87116
|
}));
|
|
87819
87117
|
});
|
|
87820
|
-
}));
|
|
87118
|
+
})));
|
|
87821
87119
|
}
|
|
87822
87120
|
}, _a.defaultOpts = {
|
|
87823
87121
|
motion: true,
|
|
@@ -87828,7 +87126,8 @@ const createBaseToast = () => {
|
|
|
87828
87126
|
duration: (prop_types_default()).number,
|
|
87829
87127
|
onClose: (prop_types_default()).func,
|
|
87830
87128
|
icon: (prop_types_default()).node,
|
|
87831
|
-
direction: prop_types_default().oneOf(toast_constants_strings.directions)
|
|
87129
|
+
direction: prop_types_default().oneOf(toast_constants_strings.directions),
|
|
87130
|
+
stack: (prop_types_default()).bool
|
|
87832
87131
|
}, _a.defaultProps = {}, _a;
|
|
87833
87132
|
};
|
|
87834
87133
|
class ToastFactory {
|
|
@@ -88548,6 +87847,70 @@ AutoSizer.defaultProps = {
|
|
|
88548
87847
|
|
|
88549
87848
|
const TreeContext = /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_default().createContext(null);
|
|
88550
87849
|
/* harmony default export */ const treeContext = (TreeContext);
|
|
87850
|
+
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconFile.js
|
|
87851
|
+
|
|
87852
|
+
|
|
87853
|
+
function IconFile_SvgComponent(props) {
|
|
87854
|
+
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
87855
|
+
viewBox: "0 0 24 24",
|
|
87856
|
+
fill: "none",
|
|
87857
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
87858
|
+
width: "1em",
|
|
87859
|
+
height: "1em",
|
|
87860
|
+
focusable: false,
|
|
87861
|
+
"aria-hidden": true
|
|
87862
|
+
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
87863
|
+
fillRule: "evenodd",
|
|
87864
|
+
clipRule: "evenodd",
|
|
87865
|
+
d: "M12 2C12 1.44772 11.5523 1 11 1H6C4.89543 1 4 1.89543 4 3V21C4 22.1046 4.89543 23 6 23H18C19.1046 23 20 22.1046 20 21V10C20 9.44772 19.5523 9 19 9H14C12.8954 9 12 8.10457 12 7V2ZM7 8C7 7.44772 7.44772 7 8 7H9C9.55228 7 10 7.44772 10 8C10 8.55228 9.55228 9 9 9H8C7.44772 9 7 8.55228 7 8ZM7 13C7 12.4477 7.44772 12 8 12H16C16.5523 12 17 12.4477 17 13C17 13.5523 16.5523 14 16 14H8C7.44772 14 7 13.5523 7 13ZM8 17C7.44772 17 7 17.4477 7 18C7 18.5523 7.44772 19 8 19H16C16.5523 19 17 18.5523 17 18C17 17.4477 16.5523 17 16 17H8ZM19.0686 7.49999H14.5C13.9477 7.49999 13.5 7.05228 13.5 6.49999V1.93136C13.5 1.21864 14.3617 0.861707 14.8657 1.36568L19.6343 6.13431C20.1383 6.63828 19.7814 7.49999 19.0686 7.49999Z",
|
|
87866
|
+
fill: "currentColor"
|
|
87867
|
+
}));
|
|
87868
|
+
}
|
|
87869
|
+
const IconFile_IconComponent = convertIcon(IconFile_SvgComponent, 'file');
|
|
87870
|
+
/* harmony default export */ const IconFile = (IconFile_IconComponent);
|
|
87871
|
+
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconFolderOpen.js
|
|
87872
|
+
|
|
87873
|
+
|
|
87874
|
+
function IconFolderOpen_SvgComponent(props) {
|
|
87875
|
+
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
87876
|
+
viewBox: "0 0 24 24",
|
|
87877
|
+
fill: "none",
|
|
87878
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
87879
|
+
width: "1em",
|
|
87880
|
+
height: "1em",
|
|
87881
|
+
focusable: false,
|
|
87882
|
+
"aria-hidden": true
|
|
87883
|
+
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
87884
|
+
fillRule: "evenodd",
|
|
87885
|
+
clipRule: "evenodd",
|
|
87886
|
+
d: "M2 5C2 3.34315 3.34315 2 5 2H8.29844C8.75258 2 9.1932 2.15456 9.54783 2.43826L10.6783 3.34261C11.2102 3.76816 11.8711 4 12.5523 4H18C20 4 21 6 21 8H7.53361C6.62889 8 5.83683 8.60735 5.6021 9.48109L2.57151 20.7617C2.21202 20.2671 2 19.6583 2 19V5ZM22.1667 10H9.5C8.61111 10 7.82889 10.5867 7.58 11.44L4.87333 20.72C4.68667 21.36 5.16667 22 5.83333 22H18.5C19.3889 22 20.1711 21.4133 20.42 20.56L23.1267 11.28C23.3133 10.64 22.8333 10 22.1667 10Z",
|
|
87887
|
+
fill: "currentColor"
|
|
87888
|
+
}));
|
|
87889
|
+
}
|
|
87890
|
+
const IconFolderOpen_IconComponent = convertIcon(IconFolderOpen_SvgComponent, 'folder_open');
|
|
87891
|
+
/* harmony default export */ const IconFolderOpen = (IconFolderOpen_IconComponent);
|
|
87892
|
+
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconFolder.js
|
|
87893
|
+
|
|
87894
|
+
|
|
87895
|
+
function IconFolder_SvgComponent(props) {
|
|
87896
|
+
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
87897
|
+
viewBox: "0 0 24 24",
|
|
87898
|
+
fill: "none",
|
|
87899
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
87900
|
+
width: "1em",
|
|
87901
|
+
height: "1em",
|
|
87902
|
+
focusable: false,
|
|
87903
|
+
"aria-hidden": true
|
|
87904
|
+
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
87905
|
+
d: "M5 2C3.34315 2 2 3.34315 2 5V8H22C22 6 21 4 19 4H12.5523C11.8711 4 11.2102 3.76816 10.6783 3.34261L9.54783 2.43826C9.1932 2.15456 8.75258 2 8.29844 2H5Z",
|
|
87906
|
+
fill: "currentColor"
|
|
87907
|
+
}), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
87908
|
+
d: "M22 10H2V19C2 20.6569 3.34315 22 5 22H19C20.6569 22 22 20.6569 22 19V10Z",
|
|
87909
|
+
fill: "currentColor"
|
|
87910
|
+
}));
|
|
87911
|
+
}
|
|
87912
|
+
const IconFolder_IconComponent = convertIcon(IconFolder_SvgComponent, 'folder');
|
|
87913
|
+
/* harmony default export */ const IconFolder = (IconFolder_IconComponent);
|
|
88551
87914
|
;// CONCATENATED MODULE: ./tree/treeNode.tsx
|
|
88552
87915
|
|
|
88553
87916
|
|
|
@@ -88759,7 +88122,7 @@ class TreeNode extends external_root_React_commonjs2_react_commonjs_react_amd_re
|
|
|
88759
88122
|
} = this.props;
|
|
88760
88123
|
if (isFunction_default()(renderLabel)) {
|
|
88761
88124
|
return renderLabel(label, data);
|
|
88762
|
-
} else if (isString_default()(label) && filtered && keyword
|
|
88125
|
+
} else if (isString_default()(label) && filtered && keyword) {
|
|
88763
88126
|
return getHighLightTextHTML({
|
|
88764
88127
|
sourceString: label,
|
|
88765
88128
|
searchWords: [keyword],
|
|
@@ -88909,7 +88272,6 @@ class TreeNode extends external_root_React_commonjs2_react_commonjs_react_amd_re
|
|
|
88909
88272
|
[`${treeNode_prefixcls}-selected`]: selected,
|
|
88910
88273
|
[`${treeNode_prefixcls}-active`]: !multiple && active,
|
|
88911
88274
|
[`${treeNode_prefixcls}-ellipsis`]: labelEllipsis,
|
|
88912
|
-
[`${treeNode_prefixcls}-filtered`]: filtered && treeNodeFilterProp !== 'label',
|
|
88913
88275
|
[`${treeNode_prefixcls}-drag-over`]: !disabled && dragOver,
|
|
88914
88276
|
[`${treeNode_prefixcls}-draggable`]: !disabled && draggable && !renderFullLabel,
|
|
88915
88277
|
// When draggable + renderFullLabel is enabled, the default style
|
|
@@ -89149,6 +88511,27 @@ class NodeList extends external_root_React_commonjs2_react_commonjs_react_amd_re
|
|
|
89149
88511
|
NodeList.contextType = treeContext;
|
|
89150
88512
|
// EXTERNAL MODULE: ../semi-foundation/tree/tree.scss
|
|
89151
88513
|
var tree = __webpack_require__("TKyF");
|
|
88514
|
+
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconSearch.js
|
|
88515
|
+
|
|
88516
|
+
|
|
88517
|
+
function IconSearch_SvgComponent(props) {
|
|
88518
|
+
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
88519
|
+
viewBox: "0 0 24 24",
|
|
88520
|
+
fill: "none",
|
|
88521
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
88522
|
+
width: "1em",
|
|
88523
|
+
height: "1em",
|
|
88524
|
+
focusable: false,
|
|
88525
|
+
"aria-hidden": true
|
|
88526
|
+
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
88527
|
+
fillRule: "evenodd",
|
|
88528
|
+
clipRule: "evenodd",
|
|
88529
|
+
d: "M10.5 2C5.80558 2 2 5.80558 2 10.5C2 15.1944 5.80558 19 10.5 19C12.3054 19 13.9794 18.4371 15.356 17.4773L19.4393 21.5606C20.0251 22.1464 20.9749 22.1464 21.5606 21.5606C22.1464 20.9749 22.1464 20.0251 21.5606 19.4393L17.4773 15.356C18.4371 13.9794 19 12.3054 19 10.5C19 5.80558 15.1944 2 10.5 2ZM5 10.5C5 7.46243 7.46243 5 10.5 5C13.5376 5 16 7.46243 16 10.5C16 13.5376 13.5376 16 10.5 16C7.46243 16 5 13.5376 5 10.5Z",
|
|
88530
|
+
fill: "currentColor"
|
|
88531
|
+
}));
|
|
88532
|
+
}
|
|
88533
|
+
const IconSearch_IconComponent = convertIcon(IconSearch_SvgComponent, 'search');
|
|
88534
|
+
/* harmony default export */ const IconSearch = (IconSearch_IconComponent);
|
|
89152
88535
|
;// CONCATENATED MODULE: ./tree/index.tsx
|
|
89153
88536
|
|
|
89154
88537
|
|
|
@@ -93049,6 +92432,38 @@ class UploadFoundation extends foundation {
|
|
|
93049
92432
|
}
|
|
93050
92433
|
}
|
|
93051
92434
|
/* harmony default export */ const upload_foundation = (UploadFoundation);
|
|
92435
|
+
;// CONCATENATED MODULE: ../semi-foundation/upload/fileCardFoundation.ts
|
|
92436
|
+
|
|
92437
|
+
class FileCardFoundation extends foundation {
|
|
92438
|
+
constructor(adapter) {
|
|
92439
|
+
super(Object.assign({}, adapter));
|
|
92440
|
+
}
|
|
92441
|
+
handleImageError(error) {
|
|
92442
|
+
this._adapter.updateFallbackPreview(true);
|
|
92443
|
+
}
|
|
92444
|
+
}
|
|
92445
|
+
/* harmony default export */ const fileCardFoundation = (FileCardFoundation);
|
|
92446
|
+
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconRefresh.js
|
|
92447
|
+
|
|
92448
|
+
|
|
92449
|
+
function IconRefresh_SvgComponent(props) {
|
|
92450
|
+
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
92451
|
+
viewBox: "0 0 24 24",
|
|
92452
|
+
fill: "none",
|
|
92453
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
92454
|
+
width: "1em",
|
|
92455
|
+
height: "1em",
|
|
92456
|
+
focusable: false,
|
|
92457
|
+
"aria-hidden": true
|
|
92458
|
+
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
92459
|
+
fillRule: "evenodd",
|
|
92460
|
+
clipRule: "evenodd",
|
|
92461
|
+
d: "M4.49993 11.9998C4.49993 7.85775 7.85775 4.49993 11.9998 4.49993C14.6403 4.49993 16.9645 5.86506 18.3012 7.9305L16.2939 7.52902C15.4815 7.36656 14.6913 7.89337 14.5288 8.7057C14.3664 9.51803 14.8932 10.3083 15.7055 10.4707L20.7055 11.4707C21.4643 11.6225 22.214 11.1721 22.4363 10.4309L23.9363 5.43095C24.1744 4.63747 23.7241 3.80126 22.9307 3.56321C22.1372 3.32517 21.301 3.77543 21.0629 4.56891L20.6287 6.01635C18.7332 3.28781 15.5765 1.49998 11.9998 1.49998C6.20092 1.49998 1.49998 6.20092 1.49998 11.9998C1.49998 17.7987 6.20092 22.4997 11.9998 22.4997C16.5739 22.4997 20.4611 19.5757 21.9018 15.4996C22.1779 14.7186 21.7685 13.8616 20.9874 13.5855C20.2064 13.3095 19.3494 13.7189 19.0733 14.4999C18.0431 17.4149 15.263 19.4997 11.9998 19.4997C7.85775 19.4997 4.49993 16.1419 4.49993 11.9998Z",
|
|
92462
|
+
fill: "currentColor"
|
|
92463
|
+
}));
|
|
92464
|
+
}
|
|
92465
|
+
const IconRefresh_IconComponent = convertIcon(IconRefresh_SvgComponent, 'refresh');
|
|
92466
|
+
/* harmony default export */ const IconRefresh = (IconRefresh_IconComponent);
|
|
93052
92467
|
;// CONCATENATED MODULE: ./_base/reactUtils.ts
|
|
93053
92468
|
// https://stackoverflow.com/questions/33199959/how-to-detect-a-react-component-vs-a-react-element
|
|
93054
92469
|
|
|
@@ -93089,6 +92504,8 @@ function isEmptyChildren(children) {
|
|
|
93089
92504
|
|
|
93090
92505
|
|
|
93091
92506
|
|
|
92507
|
+
|
|
92508
|
+
|
|
93092
92509
|
const fileCard_prefixCls = upload_constants_cssClasses.PREFIX;
|
|
93093
92510
|
const ErrorSvg = function () {
|
|
93094
92511
|
let props = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
|
|
@@ -93158,7 +92575,21 @@ const DirectorySvg = function () {
|
|
|
93158
92575
|
strokeLinejoin: "round"
|
|
93159
92576
|
}));
|
|
93160
92577
|
};
|
|
93161
|
-
class FileCard extends
|
|
92578
|
+
class FileCard extends BaseComponent {
|
|
92579
|
+
constructor(props) {
|
|
92580
|
+
super(props);
|
|
92581
|
+
this.state = {
|
|
92582
|
+
fallbackPreview: false
|
|
92583
|
+
};
|
|
92584
|
+
this.foundation = new fileCardFoundation(this.adapter);
|
|
92585
|
+
}
|
|
92586
|
+
get adapter() {
|
|
92587
|
+
return Object.assign(Object.assign({}, super.adapter), {
|
|
92588
|
+
updateFallbackPreview: fallbackPreview => this.setState({
|
|
92589
|
+
fallbackPreview
|
|
92590
|
+
})
|
|
92591
|
+
});
|
|
92592
|
+
}
|
|
93162
92593
|
transSize(size) {
|
|
93163
92594
|
if (typeof size === 'number') {
|
|
93164
92595
|
return getFileSize(size);
|
|
@@ -93219,6 +92650,9 @@ class FileCard extends external_root_React_commonjs2_react_commonjs_react_amd_re
|
|
|
93219
92650
|
}, icon) : null;
|
|
93220
92651
|
}
|
|
93221
92652
|
renderPic(locale) {
|
|
92653
|
+
const {
|
|
92654
|
+
fallbackPreview
|
|
92655
|
+
} = this.state;
|
|
93222
92656
|
const {
|
|
93223
92657
|
url,
|
|
93224
92658
|
percent,
|
|
@@ -93231,7 +92665,9 @@ class FileCard extends external_root_React_commonjs2_react_commonjs_react_amd_re
|
|
|
93231
92665
|
renderPicPreviewIcon,
|
|
93232
92666
|
renderThumbnail,
|
|
93233
92667
|
name,
|
|
93234
|
-
index
|
|
92668
|
+
index,
|
|
92669
|
+
picHeight,
|
|
92670
|
+
picWidth
|
|
93235
92671
|
} = this.props;
|
|
93236
92672
|
const showProgress = status === upload_constants_strings.FILE_STATUS_UPLOADING && percent !== 100;
|
|
93237
92673
|
const showRetry = status === upload_constants_strings.FILE_STATUS_UPLOAD_FAIL && this.props.showRetry;
|
|
@@ -93239,6 +92675,7 @@ class FileCard extends external_root_React_commonjs2_react_commonjs_react_amd_re
|
|
|
93239
92675
|
const showPreview = status === upload_constants_strings.FILE_STATUS_SUCCESS && !this.props.showReplace;
|
|
93240
92676
|
const filePicCardCls = classnames_default()({
|
|
93241
92677
|
[`${fileCard_prefixCls}-picture-file-card`]: true,
|
|
92678
|
+
[`${fileCard_prefixCls}-picture-file-card-preview-fallback`]: fallbackPreview,
|
|
93242
92679
|
[`${fileCard_prefixCls}-picture-file-card-disabled`]: disabled,
|
|
93243
92680
|
[`${fileCard_prefixCls}-picture-file-card-show-pointer`]: typeof onPreviewClick !== 'undefined',
|
|
93244
92681
|
[`${fileCard_prefixCls}-picture-file-card-error`]: status === upload_constants_strings.FILE_STATUS_UPLOAD_FAIL,
|
|
@@ -93280,14 +92717,29 @@ class FileCard extends external_root_React_commonjs2_react_commonjs_react_amd_re
|
|
|
93280
92717
|
const picInfo = typeof renderPicInfo === 'function' ? renderPicInfo(this.props) : /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_default().createElement("div", {
|
|
93281
92718
|
className: `${fileCard_prefixCls}-picture-file-card-pic-info`
|
|
93282
92719
|
}, index + 1);
|
|
93283
|
-
|
|
92720
|
+
let imgStyle = {};
|
|
92721
|
+
let itemStyle = style ? Object.assign({}, style) : {};
|
|
92722
|
+
if (picHeight) {
|
|
92723
|
+
itemStyle.height = picHeight;
|
|
92724
|
+
imgStyle.height = picHeight;
|
|
92725
|
+
}
|
|
92726
|
+
if (picWidth) {
|
|
92727
|
+
itemStyle.width = picWidth;
|
|
92728
|
+
imgStyle.width = picWidth;
|
|
92729
|
+
}
|
|
92730
|
+
const defaultThumbTail = !fallbackPreview ? /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_default().createElement("img", {
|
|
93284
92731
|
src: url,
|
|
93285
|
-
alt: name
|
|
92732
|
+
alt: name,
|
|
92733
|
+
onError: error => this.foundation.handleImageError(error),
|
|
92734
|
+
style: imgStyle
|
|
92735
|
+
}) : /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_default().createElement(IconFile, {
|
|
92736
|
+
size: "large"
|
|
93286
92737
|
});
|
|
92738
|
+
const thumbnail = typeof renderThumbnail === 'function' ? renderThumbnail(this.props) : defaultThumbTail;
|
|
93287
92739
|
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_default().createElement("div", {
|
|
93288
92740
|
role: "listitem",
|
|
93289
92741
|
className: filePicCardCls,
|
|
93290
|
-
style:
|
|
92742
|
+
style: itemStyle,
|
|
93291
92743
|
onClick: onPreviewClick
|
|
93292
92744
|
}, thumbnail, showProgress ? /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_default().createElement(progress_0, {
|
|
93293
92745
|
percent: percent,
|
|
@@ -93312,6 +92764,9 @@ class FileCard extends external_root_React_commonjs2_react_commonjs_react_amd_re
|
|
|
93312
92764
|
onPreviewClick,
|
|
93313
92765
|
renderFileOperation
|
|
93314
92766
|
} = this.props;
|
|
92767
|
+
const {
|
|
92768
|
+
fallbackPreview
|
|
92769
|
+
} = this.state;
|
|
93315
92770
|
const fileCardCls = classnames_default()({
|
|
93316
92771
|
[`${fileCard_prefixCls}-file-card`]: true,
|
|
93317
92772
|
[`${fileCard_prefixCls}-file-card-fail`]: status === upload_constants_strings.FILE_STATUS_VALID_FAIL || status === upload_constants_strings.FILE_STATUS_UPLOAD_FAIL,
|
|
@@ -93319,7 +92774,7 @@ class FileCard extends external_root_React_commonjs2_react_commonjs_react_amd_re
|
|
|
93319
92774
|
});
|
|
93320
92775
|
const previewCls = classnames_default()({
|
|
93321
92776
|
[`${fileCard_prefixCls}-file-card-preview`]: true,
|
|
93322
|
-
[`${fileCard_prefixCls}-file-card-preview-placeholder`]: !preview || previewFile
|
|
92777
|
+
[`${fileCard_prefixCls}-file-card-preview-placeholder`]: !preview || previewFile || fallbackPreview
|
|
93323
92778
|
});
|
|
93324
92779
|
const infoCls = `${fileCard_prefixCls}-file-card-info`;
|
|
93325
92780
|
const closeCls = `${fileCard_prefixCls}-file-card-close`;
|
|
@@ -93329,9 +92784,10 @@ class FileCard extends external_root_React_commonjs2_react_commonjs_react_amd_re
|
|
|
93329
92784
|
const showRetry = status === upload_constants_strings.FILE_STATUS_UPLOAD_FAIL && propsShowRetry;
|
|
93330
92785
|
const showReplace = status === upload_constants_strings.FILE_STATUS_SUCCESS && propsShowReplace;
|
|
93331
92786
|
const fileSize = this.transSize(size);
|
|
93332
|
-
let previewContent = preview ? /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_default().createElement("img", {
|
|
92787
|
+
let previewContent = preview && !fallbackPreview ? /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_default().createElement("img", {
|
|
93333
92788
|
src: url,
|
|
93334
|
-
alt: name
|
|
92789
|
+
alt: name,
|
|
92790
|
+
onError: error => this.foundation.handleImageError(error)
|
|
93335
92791
|
}) : /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_default().createElement(IconFile, {
|
|
93336
92792
|
size: "large"
|
|
93337
92793
|
});
|
|
@@ -93431,6 +92887,8 @@ FileCard.propTypes = {
|
|
|
93431
92887
|
percent: (prop_types_default()).number,
|
|
93432
92888
|
preview: (prop_types_default()).bool,
|
|
93433
92889
|
previewFile: (prop_types_default()).func,
|
|
92890
|
+
picWidth: prop_types_default().oneOfType([(prop_types_default()).number, (prop_types_default()).string]),
|
|
92891
|
+
picHeight: prop_types_default().oneOfType([(prop_types_default()).number, (prop_types_default()).string]),
|
|
93434
92892
|
showReplace: (prop_types_default()).bool,
|
|
93435
92893
|
showRetry: (prop_types_default()).bool,
|
|
93436
92894
|
size: prop_types_default().oneOfType([(prop_types_default()).number, (prop_types_default()).string]),
|
|
@@ -93449,6 +92907,27 @@ FileCard.defaultProps = {
|
|
|
93449
92907
|
size: ''
|
|
93450
92908
|
};
|
|
93451
92909
|
/* harmony default export */ const fileCard = (FileCard);
|
|
92910
|
+
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconUpload.js
|
|
92911
|
+
|
|
92912
|
+
|
|
92913
|
+
function IconUpload_SvgComponent(props) {
|
|
92914
|
+
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
92915
|
+
viewBox: "0 0 24 24",
|
|
92916
|
+
fill: "none",
|
|
92917
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
92918
|
+
width: "1em",
|
|
92919
|
+
height: "1em",
|
|
92920
|
+
focusable: false,
|
|
92921
|
+
"aria-hidden": true
|
|
92922
|
+
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
92923
|
+
fillRule: "evenodd",
|
|
92924
|
+
clipRule: "evenodd",
|
|
92925
|
+
d: "M17.8395 8.05827C17.1837 5.16226 14.5944 3 11.5 3C7.91015 3 5 5.91015 5 9.5C5 10.0204 5.06115 10.5264 5.17665 11.0114C2.84229 11.1772 1 13.1234 1 15.5C1 17.9853 3.01469 20 5.49995 20H17C20.3137 20 23 17.3137 23 14C23 10.9712 20.7558 8.46659 17.8395 8.05827ZM12.3201 8.26674C12.1347 8.11222 11.8653 8.11222 11.6799 8.26674L6.53047 12.5579C6.35084 12.7076 6.45669 13 6.69051 13H10V17.5C10 17.7761 10.2239 18 10.5 18H13.5C13.7761 18 14 17.7761 14 17.5V13H17.3095C17.5433 13 17.6492 12.7076 17.4695 12.5579L12.3201 8.26674Z",
|
|
92926
|
+
fill: "currentColor"
|
|
92927
|
+
}));
|
|
92928
|
+
}
|
|
92929
|
+
const IconUpload_IconComponent = convertIcon(IconUpload_SvgComponent, 'upload');
|
|
92930
|
+
/* harmony default export */ const IconUpload = (IconUpload_IconComponent);
|
|
93452
92931
|
// EXTERNAL MODULE: ../semi-foundation/upload/upload.scss
|
|
93453
92932
|
var upload = __webpack_require__("kbHv");
|
|
93454
92933
|
;// CONCATENATED MODULE: ./upload/index.tsx
|
|
@@ -93563,7 +93042,9 @@ class Upload extends BaseComponent {
|
|
|
93563
93042
|
renderFileItem,
|
|
93564
93043
|
renderThumbnail,
|
|
93565
93044
|
disabled,
|
|
93566
|
-
onPreviewClick
|
|
93045
|
+
onPreviewClick,
|
|
93046
|
+
picWidth,
|
|
93047
|
+
picHeight
|
|
93567
93048
|
} = this.props;
|
|
93568
93049
|
const onRemove = () => this.remove(file);
|
|
93569
93050
|
const onRetry = () => {
|
|
@@ -93587,7 +93068,9 @@ class Upload extends BaseComponent {
|
|
|
93587
93068
|
renderFileOperation,
|
|
93588
93069
|
renderThumbnail,
|
|
93589
93070
|
onReplace,
|
|
93590
|
-
onPreviewClick: typeof onPreviewClick !== 'undefined' ? () => this.foundation.handlePreviewClick(file) : undefined
|
|
93071
|
+
onPreviewClick: typeof onPreviewClick !== 'undefined' ? () => this.foundation.handlePreviewClick(file) : undefined,
|
|
93072
|
+
picWidth,
|
|
93073
|
+
picHeight
|
|
93591
93074
|
});
|
|
93592
93075
|
if (status === upload_constants_strings.FILE_STATUS_UPLOAD_FAIL && !validateMessage) {
|
|
93593
93076
|
fileCardProps.validateMessage = locale.fail;
|
|
@@ -93620,7 +93103,9 @@ class Upload extends BaseComponent {
|
|
|
93620
93103
|
disabled,
|
|
93621
93104
|
children,
|
|
93622
93105
|
draggable,
|
|
93623
|
-
hotSpotLocation
|
|
93106
|
+
hotSpotLocation,
|
|
93107
|
+
picHeight,
|
|
93108
|
+
picWidth
|
|
93624
93109
|
} = this.props;
|
|
93625
93110
|
const {
|
|
93626
93111
|
fileList: stateFileList,
|
|
@@ -93644,7 +93129,11 @@ class Upload extends BaseComponent {
|
|
|
93644
93129
|
const addContentProps = {
|
|
93645
93130
|
role: 'button',
|
|
93646
93131
|
className: uploadAddCls,
|
|
93647
|
-
onClick: this.onClick
|
|
93132
|
+
onClick: this.onClick,
|
|
93133
|
+
style: {
|
|
93134
|
+
height: picHeight,
|
|
93135
|
+
width: picWidth
|
|
93136
|
+
}
|
|
93648
93137
|
};
|
|
93649
93138
|
const containerProps = {
|
|
93650
93139
|
className: fileListCls
|
|
@@ -94025,6 +93514,8 @@ Upload.propTypes = {
|
|
|
94025
93514
|
previewFile: (prop_types_default()).func,
|
|
94026
93515
|
prompt: (prop_types_default()).node,
|
|
94027
93516
|
promptPosition: prop_types_default().oneOf(upload_constants_strings.PROMPT_POSITION),
|
|
93517
|
+
picWidth: prop_types_default().oneOfType([(prop_types_default()).number, (prop_types_default()).string]),
|
|
93518
|
+
picHeight: prop_types_default().oneOfType([(prop_types_default()).number, (prop_types_default()).string]),
|
|
94028
93519
|
renderFileItem: (prop_types_default()).func,
|
|
94029
93520
|
renderPicPreviewIcon: (prop_types_default()).func,
|
|
94030
93521
|
renderFileOperation: (prop_types_default()).func,
|
|
@@ -96493,6 +95984,7 @@ Schema.validators = validators;
|
|
|
96493
95984
|
|
|
96494
95985
|
;// CONCATENATED MODULE: ../semi-foundation/form/utils.ts
|
|
96495
95986
|
|
|
95987
|
+
|
|
96496
95988
|
var form_utils_rest = undefined && undefined.__rest || function (s, e) {
|
|
96497
95989
|
var t = {};
|
|
96498
95990
|
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0) t[p] = s[p];
|
|
@@ -96502,6 +95994,7 @@ var form_utils_rest = undefined && undefined.__rest || function (s, e) {
|
|
|
96502
95994
|
return t;
|
|
96503
95995
|
};
|
|
96504
95996
|
|
|
95997
|
+
|
|
96505
95998
|
/**
|
|
96506
95999
|
*
|
|
96507
96000
|
* @param WrappedComponent React.ComponentType | any
|
|
@@ -96544,16 +96037,40 @@ function utils_isValid(errors) {
|
|
|
96544
96037
|
}
|
|
96545
96038
|
return valid;
|
|
96546
96039
|
}
|
|
96547
|
-
|
|
96548
|
-
|
|
96040
|
+
/**
|
|
96041
|
+
* trigger transform rule
|
|
96042
|
+
1. If the user has set fieldProps, follow the user's fieldProps
|
|
96043
|
+
2. If the user does not set fieldProps, follow formProps
|
|
96044
|
+
3. If there is no formProps, follow the change
|
|
96045
|
+
4. If it is an array, follow the array, if it is not an array (pure string), convert it to a string array
|
|
96046
|
+
*/
|
|
96047
|
+
function transformTrigger(fieldTrigger, formTrigger) {
|
|
96549
96048
|
let result = [];
|
|
96550
|
-
|
|
96551
|
-
|
|
96049
|
+
let finalResult = [];
|
|
96050
|
+
if (!isUndefined_default()(fieldTrigger)) {
|
|
96051
|
+
result = fieldTrigger;
|
|
96052
|
+
} else if (!isUndefined_default()(formTrigger)) {
|
|
96053
|
+
result = formTrigger;
|
|
96054
|
+
} else {
|
|
96055
|
+
result = form_constants_strings.DEFAULT_TRIGGER;
|
|
96552
96056
|
}
|
|
96553
|
-
if (
|
|
96554
|
-
|
|
96057
|
+
if (Array.isArray(result)) {
|
|
96058
|
+
finalResult = result;
|
|
96059
|
+
}
|
|
96060
|
+
if (typeof result === 'string') {
|
|
96061
|
+
finalResult[0] = result;
|
|
96062
|
+
}
|
|
96063
|
+
return finalResult;
|
|
96064
|
+
}
|
|
96065
|
+
function transformDefaultBooleanAPI(fieldProp, formProp) {
|
|
96066
|
+
let defaultVal = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : false;
|
|
96067
|
+
if (!isUndefined_default()(fieldProp)) {
|
|
96068
|
+
return fieldProp;
|
|
96069
|
+
} else if (!isUndefined_default()(formProp)) {
|
|
96070
|
+
return formProp;
|
|
96071
|
+
} else {
|
|
96072
|
+
return defaultVal;
|
|
96555
96073
|
}
|
|
96556
|
-
return result;
|
|
96557
96074
|
}
|
|
96558
96075
|
function mergeOptions(opts, props) {
|
|
96559
96076
|
// Opts: different types of component identification value, value change callback function may be inconsistent, used to adapt 1, input, select 2, radio, checkbox 3, switch
|
|
@@ -96577,15 +96094,13 @@ function mergeOptions(opts, props) {
|
|
|
96577
96094
|
}
|
|
96578
96095
|
function mergeProps(props) {
|
|
96579
96096
|
const defaultProps = {
|
|
96580
|
-
trigger: 'change',
|
|
96581
96097
|
// validateStatus: 'default',
|
|
96582
96098
|
allowEmptyString: false,
|
|
96583
96099
|
allowEmpty: false,
|
|
96584
96100
|
emptyValue: '',
|
|
96585
96101
|
noLabel: false,
|
|
96586
96102
|
noErrorMessage: false,
|
|
96587
|
-
isInInputGroup: false
|
|
96588
|
-
stopValidateWithError: false
|
|
96103
|
+
isInInputGroup: false
|
|
96589
96104
|
};
|
|
96590
96105
|
let _a = Object.assign(Object.assign({}, defaultProps), props),
|
|
96591
96106
|
{
|
|
@@ -96640,7 +96155,6 @@ function mergeProps(props) {
|
|
|
96640
96155
|
initValue = cloneDeep_default()(initValue);
|
|
96641
96156
|
}
|
|
96642
96157
|
const required = isRequired(rules);
|
|
96643
|
-
trigger = transformTrigger(trigger);
|
|
96644
96158
|
emptyValue = typeof emptyValue !== 'undefined' ? emptyValue : '';
|
|
96645
96159
|
return {
|
|
96646
96160
|
field,
|
|
@@ -97896,6 +97410,15 @@ function withField(Component, opts) {
|
|
|
97896
97410
|
warning(true, '[Semi Form]: Field Component must be use inside the Form, please check your dom declaration');
|
|
97897
97411
|
return null;
|
|
97898
97412
|
}
|
|
97413
|
+
let formProps = updater.getFormProps(['labelPosition', 'labelWidth', 'labelAlign', 'labelCol', 'wrapperCol', 'disabled', 'showValidateIcon', 'extraTextPosition', 'stopValidateWithError', 'trigger']);
|
|
97414
|
+
let mergeLabelPos = labelPosition || formProps.labelPosition;
|
|
97415
|
+
let mergeLabelWidth = labelWidth || formProps.labelWidth;
|
|
97416
|
+
let mergeLabelAlign = labelAlign || formProps.labelAlign;
|
|
97417
|
+
let mergeLabelCol = labelCol || formProps.labelCol;
|
|
97418
|
+
let mergeWrapperCol = wrapperCol || formProps.wrapperCol;
|
|
97419
|
+
let mergeExtraPos = extraTextPosition || formProps.extraTextPosition || 'bottom';
|
|
97420
|
+
let mergeStopValidateWithError = transformDefaultBooleanAPI(stopValidateWithError, formProps.stopValidateWithError, false);
|
|
97421
|
+
let mergeTrigger = transformTrigger(trigger, formProps.trigger);
|
|
97899
97422
|
// To prevent user forgetting to pass the field, use undefined as the key, and updater.getValue will get the wrong value.
|
|
97900
97423
|
let initValueInFormOpts = typeof field !== 'undefined' ? updater.getValue(field) : undefined; // Get the init value of form from formP rops.init Values Get the initial value set in the initValues of Form
|
|
97901
97424
|
let initVal = typeof initValue !== 'undefined' ? initValue : initValueInFormOpts;
|
|
@@ -97909,7 +97432,7 @@ function withField(Component, opts) {
|
|
|
97909
97432
|
} catch (err) {}
|
|
97910
97433
|
// FIXME typeof initVal
|
|
97911
97434
|
const [value, setValue, getVal] = useStateWithGetter(typeof initVal !== undefined ? initVal : null);
|
|
97912
|
-
const validateOnMount =
|
|
97435
|
+
const validateOnMount = mergeTrigger.includes('mount');
|
|
97913
97436
|
allowEmpty = allowEmpty || updater.getFormProps().allowEmpty;
|
|
97914
97437
|
// Error information: Array, String, undefined
|
|
97915
97438
|
const [error, setError, getError] = useStateWithGetter();
|
|
@@ -97968,7 +97491,7 @@ function withField(Component, opts) {
|
|
|
97968
97491
|
};
|
|
97969
97492
|
const rootPromise = new Promise((resolve, reject) => {
|
|
97970
97493
|
validator.validate(model, {
|
|
97971
|
-
first:
|
|
97494
|
+
first: mergeStopValidateWithError
|
|
97972
97495
|
}, (errors, fields) => {}).then(res => {
|
|
97973
97496
|
if (validatePromise.current !== rootPromise) {
|
|
97974
97497
|
return;
|
|
@@ -98116,7 +97639,7 @@ function withField(Component, opts) {
|
|
|
98116
97639
|
});
|
|
98117
97640
|
updateValue(val);
|
|
98118
97641
|
// only validate when trigger includes change
|
|
98119
|
-
if (
|
|
97642
|
+
if (mergeTrigger.includes('change')) {
|
|
98120
97643
|
fieldValidate(val);
|
|
98121
97644
|
}
|
|
98122
97645
|
};
|
|
@@ -98127,7 +97650,7 @@ function withField(Component, opts) {
|
|
|
98127
97650
|
if (!touched) {
|
|
98128
97651
|
updateTouched(true);
|
|
98129
97652
|
}
|
|
98130
|
-
if (
|
|
97653
|
+
if (mergeTrigger.includes('blur')) {
|
|
98131
97654
|
let val = getVal();
|
|
98132
97655
|
fieldValidate(val);
|
|
98133
97656
|
}
|
|
@@ -98187,13 +97710,6 @@ function withField(Component, opts) {
|
|
|
98187
97710
|
};
|
|
98188
97711
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
98189
97712
|
}, [field]);
|
|
98190
|
-
let formProps = updater.getFormProps(['labelPosition', 'labelWidth', 'labelAlign', 'labelCol', 'wrapperCol', 'disabled', 'showValidateIcon', 'extraTextPosition']);
|
|
98191
|
-
let mergeLabelPos = labelPosition || formProps.labelPosition;
|
|
98192
|
-
let mergeLabelWidth = labelWidth || formProps.labelWidth;
|
|
98193
|
-
let mergeLabelAlign = labelAlign || formProps.labelAlign;
|
|
98194
|
-
let mergeLabelCol = labelCol || formProps.labelCol;
|
|
98195
|
-
let mergeWrapperCol = wrapperCol || formProps.wrapperCol;
|
|
98196
|
-
let mergeExtraPos = extraTextPosition || formProps.extraTextPosition || 'bottom';
|
|
98197
97713
|
// id attribute to improve a11y
|
|
98198
97714
|
const a11yId = id ? id : field;
|
|
98199
97715
|
const labelId = `${a11yId}-label`;
|
|
@@ -98561,10 +98077,12 @@ class Form extends BaseComponent {
|
|
|
98561
98077
|
allowEmpty,
|
|
98562
98078
|
autoScrollToError,
|
|
98563
98079
|
showValidateIcon,
|
|
98080
|
+
stopValidateWithError,
|
|
98564
98081
|
extraTextPosition,
|
|
98565
|
-
id
|
|
98082
|
+
id,
|
|
98083
|
+
trigger
|
|
98566
98084
|
} = _a,
|
|
98567
|
-
rest = baseForm_rest(_a, ["children", "getFormApi", "onChange", "onSubmit", "onSubmitFail", "onValueChange", "component", "render", "validateFields", "initValues", "layout", "style", "className", "labelPosition", "labelWidth", "labelAlign", "labelCol", "wrapperCol", "allowEmpty", "autoScrollToError", "showValidateIcon", "extraTextPosition", "id"]);
|
|
98085
|
+
rest = baseForm_rest(_a, ["children", "getFormApi", "onChange", "onSubmit", "onSubmitFail", "onValueChange", "component", "render", "validateFields", "initValues", "layout", "style", "className", "labelPosition", "labelWidth", "labelAlign", "labelCol", "wrapperCol", "allowEmpty", "autoScrollToError", "showValidateIcon", "stopValidateWithError", "extraTextPosition", "id", "trigger"]);
|
|
98568
98086
|
const formCls = classnames_default()(baseForm_prefix, className, {
|
|
98569
98087
|
[baseForm_prefix + '-vertical']: layout === 'vertical',
|
|
98570
98088
|
[baseForm_prefix + '-horizontal']: layout === 'horizontal'
|
|
@@ -98597,25 +98115,27 @@ Form.propTypes = {
|
|
|
98597
98115
|
onReset: (prop_types_default()).func,
|
|
98598
98116
|
// Triggered when the value of the form is updated, only when the value of the subfield changes. The entry parameter is formState.values
|
|
98599
98117
|
onValueChange: (prop_types_default()).func,
|
|
98600
|
-
|
|
98601
|
-
|
|
98118
|
+
autoScrollToError: prop_types_default().oneOfType([(prop_types_default()).bool, (prop_types_default()).object]),
|
|
98119
|
+
allowEmpty: (prop_types_default()).bool,
|
|
98120
|
+
className: (prop_types_default()).string,
|
|
98602
98121
|
component: prop_types_default().oneOfType([(prop_types_default()).node, (prop_types_default()).func]),
|
|
98603
|
-
|
|
98122
|
+
disabled: (prop_types_default()).bool,
|
|
98123
|
+
extraTextPosition: prop_types_default().oneOf(form_constants_strings.EXTRA_POS),
|
|
98124
|
+
getFormApi: (prop_types_default()).func,
|
|
98125
|
+
initValues: (prop_types_default()).object,
|
|
98604
98126
|
validateFields: (prop_types_default()).func,
|
|
98605
|
-
style: (prop_types_default()).object,
|
|
98606
|
-
className: (prop_types_default()).string,
|
|
98607
98127
|
layout: prop_types_default().oneOf(form_constants_strings.LAYOUT),
|
|
98608
98128
|
labelPosition: prop_types_default().oneOf(form_constants_strings.LABEL_POS),
|
|
98609
98129
|
labelWidth: prop_types_default().oneOfType([(prop_types_default()).number, (prop_types_default()).string]),
|
|
98610
98130
|
labelAlign: prop_types_default().oneOf(form_constants_strings.LABEL_ALIGN),
|
|
98611
98131
|
labelCol: (prop_types_default()).object,
|
|
98612
|
-
|
|
98613
|
-
|
|
98614
|
-
autoScrollToError: prop_types_default().oneOfType([(prop_types_default()).bool, (prop_types_default()).object]),
|
|
98615
|
-
disabled: (prop_types_default()).bool,
|
|
98132
|
+
render: (prop_types_default()).func,
|
|
98133
|
+
style: (prop_types_default()).object,
|
|
98616
98134
|
showValidateIcon: (prop_types_default()).bool,
|
|
98617
|
-
|
|
98618
|
-
id: (prop_types_default()).string
|
|
98135
|
+
stopValidateWithError: (prop_types_default()).bool,
|
|
98136
|
+
id: (prop_types_default()).string,
|
|
98137
|
+
wrapperCol: (prop_types_default()).object,
|
|
98138
|
+
trigger: prop_types_default().oneOfType([prop_types_default().oneOf(['blur', 'change', 'custom', 'mount']), prop_types_default().arrayOf(prop_types_default().oneOf(['blur', 'change', 'custom', 'mount']))])
|
|
98619
98139
|
};
|
|
98620
98140
|
Form.defaultProps = {
|
|
98621
98141
|
onChange: (noop_default()),
|
|
@@ -98918,6 +98438,69 @@ const image_constants_cssClasses = {
|
|
|
98918
98438
|
PREFIX: `${BASE_CLASS_PREFIX}-image`
|
|
98919
98439
|
};
|
|
98920
98440
|
|
|
98441
|
+
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconUploadError.js
|
|
98442
|
+
|
|
98443
|
+
|
|
98444
|
+
function IconUploadError_SvgComponent(props) {
|
|
98445
|
+
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
98446
|
+
viewBox: "0 0 24 24",
|
|
98447
|
+
fill: "none",
|
|
98448
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
98449
|
+
width: "1em",
|
|
98450
|
+
height: "1em",
|
|
98451
|
+
focusable: false,
|
|
98452
|
+
"aria-hidden": true
|
|
98453
|
+
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
98454
|
+
fillRule: "evenodd",
|
|
98455
|
+
clipRule: "evenodd",
|
|
98456
|
+
d: "M22.9998 12.0001C22.9998 18.0753 18.0749 23.0001 11.9998 23.0001C5.92463 23.0001 0.999756 18.0753 0.999756 12.0001C0.999756 5.92499 5.92463 1.00012 11.9998 1.00012C18.0749 1.00012 22.9998 5.92499 22.9998 12.0001ZM13.4998 17.5C13.4998 16.6718 12.8282 16.0001 11.9998 16.0001C11.1713 16.0001 10.4998 16.6718 10.4998 17.5C10.4998 18.3285 11.1713 19 11.9998 19C12.8282 19 13.4998 18.3285 13.4998 17.5ZM11.9998 5.00011C10.9136 5.00011 10.0505 5.91257 10.1107 6.99704L10.4166 12.5024C10.4632 13.3427 11.1582 14.0001 11.9998 14.0001C12.8413 14.0001 13.5363 13.3427 13.583 12.5024L13.8888 6.99704C13.9491 5.91257 13.0859 5.00011 11.9998 5.00011Z",
|
|
98457
|
+
fill: "currentColor"
|
|
98458
|
+
}));
|
|
98459
|
+
}
|
|
98460
|
+
const IconUploadError_IconComponent = convertIcon(IconUploadError_SvgComponent, 'upload_error');
|
|
98461
|
+
/* harmony default export */ const IconUploadError = (IconUploadError_IconComponent);
|
|
98462
|
+
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconArrowLeft.js
|
|
98463
|
+
|
|
98464
|
+
|
|
98465
|
+
function IconArrowLeft_SvgComponent(props) {
|
|
98466
|
+
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
98467
|
+
viewBox: "0 0 24 24",
|
|
98468
|
+
fill: "none",
|
|
98469
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
98470
|
+
width: "1em",
|
|
98471
|
+
height: "1em",
|
|
98472
|
+
focusable: false,
|
|
98473
|
+
"aria-hidden": true
|
|
98474
|
+
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
98475
|
+
fillRule: "evenodd",
|
|
98476
|
+
clipRule: "evenodd",
|
|
98477
|
+
d: "M23 12C23 12.8284 22.3284 13.5 21.5 13.5L6.12132 13.5L12.5607 19.9393C13.1464 20.5251 13.1464 21.4749 12.5607 22.0607C11.9749 22.6464 11.0251 22.6464 10.4393 22.0607L1.43934 13.0607C0.853554 12.4749 0.853554 11.5251 1.43934 10.9393L10.4393 1.93934C11.0251 1.35355 11.9749 1.35355 12.5607 1.93934C13.1464 2.52513 13.1464 3.47487 12.5607 4.06066L6.12132 10.5L21.5 10.5C22.3284 10.5 23 11.1716 23 12Z",
|
|
98478
|
+
fill: "currentColor"
|
|
98479
|
+
}));
|
|
98480
|
+
}
|
|
98481
|
+
const IconArrowLeft_IconComponent = convertIcon(IconArrowLeft_SvgComponent, 'arrow_left');
|
|
98482
|
+
/* harmony default export */ const IconArrowLeft = (IconArrowLeft_IconComponent);
|
|
98483
|
+
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconArrowRight.js
|
|
98484
|
+
|
|
98485
|
+
|
|
98486
|
+
function IconArrowRight_SvgComponent(props) {
|
|
98487
|
+
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
98488
|
+
viewBox: "0 0 24 24",
|
|
98489
|
+
fill: "none",
|
|
98490
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
98491
|
+
width: "1em",
|
|
98492
|
+
height: "1em",
|
|
98493
|
+
focusable: false,
|
|
98494
|
+
"aria-hidden": true
|
|
98495
|
+
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
98496
|
+
fillRule: "evenodd",
|
|
98497
|
+
clipRule: "evenodd",
|
|
98498
|
+
d: "M1 12C1 11.1716 1.67157 10.5 2.5 10.5L17.8787 10.5L11.4393 4.06066C10.8536 3.47487 10.8536 2.52513 11.4393 1.93934C12.0251 1.35355 12.9749 1.35355 13.5607 1.93934L22.5607 10.9393C23.1464 11.5251 23.1464 12.4749 22.5607 13.0607L13.5607 22.0607C12.9749 22.6464 12.0251 22.6464 11.4393 22.0607C10.8536 21.4749 10.8536 20.5251 11.4393 19.9393L17.8787 13.5L2.5 13.5C1.67157 13.5 1 12.8284 1 12Z",
|
|
98499
|
+
fill: "currentColor"
|
|
98500
|
+
}));
|
|
98501
|
+
}
|
|
98502
|
+
const IconArrowRight_IconComponent = convertIcon(IconArrowRight_SvgComponent, 'arrow_right');
|
|
98503
|
+
/* harmony default export */ const IconArrowRight = (IconArrowRight_IconComponent);
|
|
98921
98504
|
;// CONCATENATED MODULE: ./image/previewContext.tsx
|
|
98922
98505
|
|
|
98923
98506
|
const PreviewContext = /*#__PURE__*/(0,external_root_React_commonjs2_react_commonjs_react_amd_react_.createContext)({});
|
|
@@ -98956,6 +98539,129 @@ const previewHeader_Header = _ref => {
|
|
|
98956
98539
|
});
|
|
98957
98540
|
};
|
|
98958
98541
|
/* harmony default export */ const previewHeader = (previewHeader_Header);
|
|
98542
|
+
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconMinus.js
|
|
98543
|
+
|
|
98544
|
+
|
|
98545
|
+
function IconMinus_SvgComponent(props) {
|
|
98546
|
+
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
98547
|
+
viewBox: "0 0 24 24",
|
|
98548
|
+
fill: "none",
|
|
98549
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
98550
|
+
width: "1em",
|
|
98551
|
+
height: "1em",
|
|
98552
|
+
focusable: false,
|
|
98553
|
+
"aria-hidden": true
|
|
98554
|
+
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
98555
|
+
d: "M2 12C2 11.1716 2.67157 10.5 3.5 10.5H20.5C21.3284 10.5 22 11.1716 22 12C22 12.8284 21.3284 13.5 20.5 13.5H3.5C2.67157 13.5 2 12.8284 2 12Z",
|
|
98556
|
+
fill: "currentColor"
|
|
98557
|
+
}));
|
|
98558
|
+
}
|
|
98559
|
+
const IconMinus_IconComponent = convertIcon(IconMinus_SvgComponent, 'minus');
|
|
98560
|
+
/* harmony default export */ const IconMinus = (IconMinus_IconComponent);
|
|
98561
|
+
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconPlus.js
|
|
98562
|
+
|
|
98563
|
+
|
|
98564
|
+
function IconPlus_SvgComponent(props) {
|
|
98565
|
+
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
98566
|
+
viewBox: "0 0 24 24",
|
|
98567
|
+
fill: "none",
|
|
98568
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
98569
|
+
width: "1em",
|
|
98570
|
+
height: "1em",
|
|
98571
|
+
focusable: false,
|
|
98572
|
+
"aria-hidden": true
|
|
98573
|
+
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
98574
|
+
d: "M20.5 13.5C21.3284 13.5 22 12.8284 22 12C22 11.1716 21.3284 10.5 20.5 10.5L13.5 10.5L13.5 3.5C13.5 2.67157 12.8284 2 12 2C11.1716 2 10.5 2.67157 10.5 3.5L10.5 10.5L3.5 10.5C2.67157 10.5 2 11.1716 2 12C2 12.8284 2.67157 13.5 3.5 13.5L10.5 13.5V20.5C10.5 21.3284 11.1716 22 12 22C12.8284 22 13.5 21.3284 13.5 20.5V13.5L20.5 13.5Z",
|
|
98575
|
+
fill: "currentColor"
|
|
98576
|
+
}));
|
|
98577
|
+
}
|
|
98578
|
+
const IconPlus_IconComponent = convertIcon(IconPlus_SvgComponent, 'plus');
|
|
98579
|
+
/* harmony default export */ const IconPlus = (IconPlus_IconComponent);
|
|
98580
|
+
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconRealSizeStroked.js
|
|
98581
|
+
|
|
98582
|
+
|
|
98583
|
+
function IconRealSizeStroked_SvgComponent(props) {
|
|
98584
|
+
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
98585
|
+
viewBox: "0 0 24 24",
|
|
98586
|
+
fill: "none",
|
|
98587
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
98588
|
+
width: "1em",
|
|
98589
|
+
height: "1em",
|
|
98590
|
+
focusable: false,
|
|
98591
|
+
"aria-hidden": true
|
|
98592
|
+
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
98593
|
+
fillRule: "evenodd",
|
|
98594
|
+
clipRule: "evenodd",
|
|
98595
|
+
d: "M1 6C1 4.89543 1.89543 4 3 4H21C22.1046 4 23 4.89543 23 6V18C23 19.1046 22.1046 20 21 20H3C1.89543 20 1 19.1046 1 18V6ZM21 6L3 6V18H21V6ZM5 9C5 8.44772 5.44772 8 6 8H7.5C8.05228 8 8.5 8.44772 8.5 9V15C8.5 15.5523 8.05228 16 7.5 16C6.94772 16 6.5 15.5523 6.5 15V10H6C5.44772 10 5 9.55228 5 9ZM16 8C15.4477 8 15 8.44772 15 9C15 9.55228 15.4477 10 16 10H16.5V15C16.5 15.5523 16.9477 16 17.5 16C18.0523 16 18.5 15.5523 18.5 15V9C18.5 8.44772 18.0523 8 17.5 8H16ZM13 10C13 10.5523 12.5523 11 12 11C11.4477 11 11 10.5523 11 10C11 9.44772 11.4477 9 12 9C12.5523 9 13 9.44772 13 10ZM12 15C12.5523 15 13 14.5523 13 14C13 13.4477 12.5523 13 12 13C11.4477 13 11 13.4477 11 14C11 14.5523 11.4477 15 12 15Z",
|
|
98596
|
+
fill: "currentColor"
|
|
98597
|
+
}));
|
|
98598
|
+
}
|
|
98599
|
+
const IconRealSizeStroked_IconComponent = convertIcon(IconRealSizeStroked_SvgComponent, 'real_size_stroked');
|
|
98600
|
+
/* harmony default export */ const IconRealSizeStroked = (IconRealSizeStroked_IconComponent);
|
|
98601
|
+
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconWindowAdaptionStroked.js
|
|
98602
|
+
|
|
98603
|
+
|
|
98604
|
+
function IconWindowAdaptionStroked_SvgComponent(props) {
|
|
98605
|
+
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
98606
|
+
viewBox: "0 0 24 24",
|
|
98607
|
+
fill: "none",
|
|
98608
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
98609
|
+
width: "1em",
|
|
98610
|
+
height: "1em",
|
|
98611
|
+
focusable: false,
|
|
98612
|
+
"aria-hidden": true
|
|
98613
|
+
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
98614
|
+
fillRule: "evenodd",
|
|
98615
|
+
clipRule: "evenodd",
|
|
98616
|
+
d: "M14 3C14 2.44772 14.4477 2 15 2H21C21.5523 2 22 2.44772 22 3V9C22 9.55229 21.5523 10 21 10C20.4477 10 20 9.55229 20 9V4H15C14.4477 4 14 3.55229 14 3ZM10 21C10 21.5523 9.55229 22 9 22H3C2.44772 22 2 21.5523 2 21V15C2 14.4477 2.44772 14 3 14C3.55228 14 4 14.4477 4 15L4 20H9C9.55229 20 10 20.4477 10 21ZM2 9C2 9.55228 2.44772 10 3 10C3.55229 10 4 9.55228 4 9L4 4L9 4C9.55229 4 10 3.55228 10 3C10 2.44771 9.55229 2 9 2H3C2.44772 2 2 2.44772 2 3V9ZM21 14C21.5523 14 22 14.4477 22 15V21C22 21.5523 21.5523 22 21 22H15C14.4477 22 14 21.5523 14 21C14 20.4477 14.4477 20 15 20H20V15C20 14.4477 20.4477 14 21 14ZM8.5 7.5C7.94772 7.5 7.5 7.94772 7.5 8.5V15.5C7.5 16.0523 7.94772 16.5 8.5 16.5H15.5C16.0523 16.5 16.5 16.0523 16.5 15.5V8.5C16.5 7.94772 16.0523 7.5 15.5 7.5H8.5ZM9.5 14.5V9.5H14.5V14.5H9.5Z",
|
|
98617
|
+
fill: "currentColor"
|
|
98618
|
+
}));
|
|
98619
|
+
}
|
|
98620
|
+
const IconWindowAdaptionStroked_IconComponent = convertIcon(IconWindowAdaptionStroked_SvgComponent, 'window_adaption_stroked');
|
|
98621
|
+
/* harmony default export */ const IconWindowAdaptionStroked = (IconWindowAdaptionStroked_IconComponent);
|
|
98622
|
+
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconRotate.js
|
|
98623
|
+
|
|
98624
|
+
|
|
98625
|
+
function IconRotate_SvgComponent(props) {
|
|
98626
|
+
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
98627
|
+
viewBox: "0 0 24 24",
|
|
98628
|
+
fill: "none",
|
|
98629
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
98630
|
+
width: "1em",
|
|
98631
|
+
height: "1em",
|
|
98632
|
+
focusable: false,
|
|
98633
|
+
"aria-hidden": true
|
|
98634
|
+
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
98635
|
+
d: "M14.2071 2.20711C14.5976 1.81658 14.5976 1.18342 14.2071 0.792893C13.8166 0.402369 13.1834 0.402369 12.7929 0.792893L10.2929 3.29289C9.90237 3.68342 9.90237 4.31658 10.2929 4.70711L12.7929 7.20711C13.1834 7.59763 13.8166 7.59763 14.2071 7.20711C14.5976 6.81658 14.5976 6.18342 14.2071 5.79289L13.4142 5H16C18.7614 5 21 7.23858 21 10V12C21 12.5523 21.4477 13 22 13C22.5523 13 23 12.5523 23 12V10C23 6.13401 19.866 3 16 3H13.4142L14.2071 2.20711Z",
|
|
98636
|
+
fill: "currentColor"
|
|
98637
|
+
}), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
98638
|
+
d: "M3 10C3 8.89543 3.89543 8 5 8H17C18.1046 8 19 8.89543 19 10V20C19 21.1046 18.1046 22 17 22H5C3.89543 22 3 21.1046 3 20V10Z",
|
|
98639
|
+
fill: "currentColor"
|
|
98640
|
+
}));
|
|
98641
|
+
}
|
|
98642
|
+
const IconRotate_IconComponent = convertIcon(IconRotate_SvgComponent, 'rotate');
|
|
98643
|
+
/* harmony default export */ const IconRotate = (IconRotate_IconComponent);
|
|
98644
|
+
;// CONCATENATED MODULE: ../semi-icons/lib/es/icons/IconDownload.js
|
|
98645
|
+
|
|
98646
|
+
|
|
98647
|
+
function IconDownload_SvgComponent(props) {
|
|
98648
|
+
return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("svg", Object.assign({
|
|
98649
|
+
viewBox: "0 0 24 24",
|
|
98650
|
+
fill: "none",
|
|
98651
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
98652
|
+
width: "1em",
|
|
98653
|
+
height: "1em",
|
|
98654
|
+
focusable: false,
|
|
98655
|
+
"aria-hidden": true
|
|
98656
|
+
}, props), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_.createElement("path", {
|
|
98657
|
+
fillRule: "evenodd",
|
|
98658
|
+
clipRule: "evenodd",
|
|
98659
|
+
d: "M17.8395 8.05827C17.1837 5.16226 14.5944 3 11.5 3C7.91015 3 5 5.91015 5 9.5C5 10.0204 5.06115 10.5264 5.17665 11.0114C2.84229 11.1772 1 13.1234 1 15.5C1 17.9853 3.01469 20 5.49995 20H17C20.3137 20 23 17.3137 23 14C23 10.9712 20.7558 8.46659 17.8395 8.05827ZM11.6799 17.7333C11.8653 17.8878 12.1347 17.8878 12.3201 17.7333L17.4695 13.4421C17.6492 13.2924 17.5433 13 17.3095 13H14V9.5C14 9.22386 13.7761 9 13.5 9H10.5C10.2239 9 10 9.22386 10 9.5V13H6.69051C6.45669 13 6.35084 13.2924 6.53047 13.4421L11.6799 17.7333Z",
|
|
98660
|
+
fill: "currentColor"
|
|
98661
|
+
}));
|
|
98662
|
+
}
|
|
98663
|
+
const IconDownload_IconComponent = convertIcon(IconDownload_SvgComponent, 'download');
|
|
98664
|
+
/* harmony default export */ const IconDownload = (IconDownload_IconComponent);
|
|
98959
98665
|
;// CONCATENATED MODULE: ../semi-foundation/image/previewFooterFoundation.ts
|
|
98960
98666
|
|
|
98961
98667
|
class PreviewFooterFoundation extends foundation {
|