@douyinfe/semi-ui 2.12.0-beta.1 → 2.12.0-beta.4

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.
@@ -22425,19 +22425,6 @@ function baseClone(value, bitmask, customizer, key, object, stack) {
22425
22425
  module.exports = baseClone;
22426
22426
 
22427
22427
 
22428
- /***/ }),
22429
-
22430
- /***/ "kq48":
22431
- /***/ (function(module, __webpack_exports__, __webpack_require__) {
22432
-
22433
- "use strict";
22434
- /* WEBPACK VAR INJECTION */(function(global) {/** Detect free variable `global` from Node.js. */
22435
- var freeGlobal = typeof global == 'object' && global && global.Object === Object && global;
22436
-
22437
- /* harmony default export */ __webpack_exports__["a"] = (freeGlobal);
22438
-
22439
- /* WEBPACK VAR INJECTION */}.call(this, __webpack_require__("fRV1")))
22440
-
22441
22428
  /***/ }),
22442
22429
 
22443
22430
  /***/ "krtk":
@@ -25856,8 +25843,8 @@ var lodash_each = __webpack_require__("h4um");
25856
25843
  var each_default = /*#__PURE__*/__webpack_require__.n(lodash_each);
25857
25844
 
25858
25845
  // EXTERNAL MODULE: /home/runner/work/semi-design/semi-design/node_modules/@babel/runtime-corejs3/core-js-stable/instance/includes.js
25859
- var instance_includes = __webpack_require__("DeC2");
25860
- var includes_default = /*#__PURE__*/__webpack_require__.n(instance_includes);
25846
+ var includes = __webpack_require__("DeC2");
25847
+ var includes_default = /*#__PURE__*/__webpack_require__.n(includes);
25861
25848
 
25862
25849
  // EXTERNAL MODULE: ../semi-foundation/utils/warning.ts
25863
25850
  var warning = __webpack_require__("MYbw");
@@ -29082,14 +29069,14 @@ const TooltipTransition = function () {
29082
29069
  const {
29083
29070
  children
29084
29071
  } = props;
29085
- const motion = getMotionObjFromProps(props); // add fillMode forward to fix issue 715, tooltip close will flashing under react 18
29072
+ const motion = getMotionObjFromProps(props); // add fillMode forwards to fix issue 715, tooltip close will flashing under react 18
29086
29073
 
29087
29074
  return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_default.a.createElement(StyledTransition_StyledTransition, assign_default()({}, props, {
29088
29075
  enter: enterCls,
29089
29076
  leave: leaveCls,
29090
- duration: '100ms'
29077
+ duration: '1000ms'
29091
29078
  }, motion, {
29092
- fillMode: 'forward'
29079
+ fillMode: 'forwards'
29093
29080
  }), typeof children === 'function' ? _ref => {
29094
29081
  let {
29095
29082
  animateCls,
@@ -65123,1893 +65110,289 @@ const Divider = props => {
65123
65110
  overrideDefaultStyle = {
65124
65111
  'marginLeft': margin,
65125
65112
  'marginRight': margin
65126
- };
65127
- } else if (layout === 'horizontal') {
65128
- overrideDefaultStyle = {
65129
- 'marginTop': margin,
65130
- 'marginBottom': margin
65131
- };
65132
- }
65133
- }
65134
-
65135
- return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_default.a.createElement("div", assign_default()({}, rest, {
65136
- className: dividerClassNames,
65137
- style: assign_default()(assign_default()({}, overrideDefaultStyle), style)
65138
- }), children && layout === 'horizontal' ? typeof children === 'string' ? /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_default.a.createElement("span", {
65139
- className: "".concat(divider_prefixCls, "-divider_inner-text")
65140
- }, children) : children : null);
65141
- };
65142
-
65143
- /* harmony default export */ var divider_0 = (Divider);
65144
- // CONCATENATED MODULE: ../semi-foundation/empty/constants.ts
65145
-
65146
- const empty_constants_cssClasses = {
65147
- PREFIX: "".concat(BASE_CLASS_PREFIX, "-empty")
65148
- };
65149
- const empty_constants_strings = {
65150
- LAYOUT: ['vertical', 'horizontal']
65151
- };
65152
-
65153
- // EXTERNAL MODULE: ../semi-foundation/empty/empty.scss
65154
- var empty_empty = __webpack_require__("UO4o");
65155
-
65156
- // CONCATENATED MODULE: ./empty/index.tsx
65157
-
65158
-
65159
-
65160
-
65161
-
65162
-
65163
-
65164
-
65165
- const empty_prefixCls = empty_constants_cssClasses.PREFIX;
65166
- class empty_Empty extends baseComponent_BaseComponent {
65167
- constructor(props) {
65168
- super(props);
65169
-
65170
- this.observe = mutationsList => {
65171
- for (const mutation of mutationsList) {
65172
- if (mutation.type === 'attributes' && mutation.attributeName === 'theme-mode') {
65173
- this.updateMode();
65174
- }
65175
- }
65176
- };
65177
-
65178
- this.updateMode = () => {
65179
- const val = this.body.getAttribute('theme-mode');
65180
-
65181
- if (val !== this.state.mode) {
65182
- this.setState({
65183
- mode: val
65184
- });
65185
- }
65186
- };
65187
-
65188
- this.state = {
65189
- mode: null
65190
- };
65191
- }
65192
-
65193
- componentDidMount() {
65194
- if (this.props.darkModeImage) {
65195
- this.body = window.document.body;
65196
- this.updateMode();
65197
- const config = {
65198
- attributes: true,
65199
- childList: false,
65200
- subtree: false
65201
- };
65202
- this.observer = new MutationObserver(this.observe);
65203
- this.observer.observe(this.body, config);
65204
- }
65205
- }
65206
-
65207
- componentWillUnmount() {
65208
- this.observer && this.observer.disconnect();
65209
- }
65210
-
65211
- render() {
65212
- var _context;
65213
-
65214
- const {
65215
- className,
65216
- image,
65217
- description,
65218
- style,
65219
- title,
65220
- imageStyle,
65221
- children,
65222
- layout,
65223
- darkModeImage
65224
- } = this.props;
65225
- const alt = typeof description === 'string' ? description : 'empty';
65226
- const imgSrc = this.state.mode && darkModeImage ? darkModeImage : image;
65227
- let imageNode = null;
65228
-
65229
- if (typeof imgSrc === 'string') {
65230
- imageNode = /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_default.a.createElement("img", {
65231
- alt: alt,
65232
- src: imgSrc
65233
- });
65234
- } else if (imgSrc && 'id' in imgSrc) {
65235
- imageNode = /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_default.a.createElement("svg", {
65236
- "aria-hidden": "true"
65237
- }, /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_default.a.createElement("use", {
65238
- xlinkHref: "#".concat(imgSrc.id)
65239
- }));
65240
- } else {
65241
- imageNode = imgSrc;
65242
- }
65243
-
65244
- const wrapperCls = classnames_default()(className, empty_prefixCls, {
65245
- [concat_default()(_context = "".concat(empty_prefixCls, "-")).call(_context, layout)]: layout
65246
- });
65247
- const titleProps = imageNode ? {
65248
- heading: 4
65249
- } : {
65250
- heading: 6,
65251
- style: {
65252
- fontWeight: 400
65253
- }
65254
- };
65255
- return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_default.a.createElement("div", {
65256
- className: wrapperCls,
65257
- style: style
65258
- }, /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_default.a.createElement("div", {
65259
- className: "".concat(empty_prefixCls, "-image"),
65260
- style: imageStyle
65261
- }, imageNode), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_default.a.createElement("div", {
65262
- className: "".concat(empty_prefixCls, "-content")
65263
- }, title ? /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_default.a.createElement(typography_0.Title, assign_default()({}, titleProps, {
65264
- className: "".concat(empty_prefixCls, "-title")
65265
- }), title) : null, description ? /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_default.a.createElement("div", {
65266
- className: "".concat(empty_prefixCls, "-description")
65267
- }, description) : null, children ? /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_default.a.createElement("div", {
65268
- className: "".concat(empty_prefixCls, "-footer")
65269
- }, children) : null));
65270
- }
65271
-
65272
- }
65273
- empty_Empty.defaultProps = {
65274
- layout: 'vertical'
65275
- };
65276
- // EXTERNAL MODULE: ../semi-foundation/modal/modal.scss
65277
- var modal_modal = __webpack_require__("CbLw");
65278
-
65279
- // EXTERNAL MODULE: /home/runner/work/semi-design/semi-design/node_modules/@babel/runtime-corejs3/core-js/global-this.js
65280
- var global_this = __webpack_require__("re6r");
65281
- var global_this_default = /*#__PURE__*/__webpack_require__.n(global_this);
65282
-
65283
- // CONCATENATED MODULE: ../semi-foundation/modal/constants.ts
65284
-
65285
- const modal_constants_cssClasses = {
65286
- DIALOG: "".concat(BASE_CLASS_PREFIX, "-modal")
65287
- };
65288
- const modal_constants_strings = {
65289
- cancelKey: 'cancel',
65290
- confirmKey: 'confirm',
65291
- SIZE: ['small', 'medium', 'large', 'full-width'],
65292
- directions: ['ltr', 'rtl']
65293
- };
65294
-
65295
- // CONCATENATED MODULE: ../semi-foundation/modal/modalFoundation.ts
65296
-
65297
-
65298
- class modalFoundation_ModalFoundation extends foundation {
65299
- constructor(adapter) {
65300
- super(assign_default()({}, adapter));
65301
-
65302
- this.toggleHidden = (hidden, callback) => {
65303
- this._adapter.toggleHidden(hidden, callback);
65304
- };
65305
- }
65306
-
65307
- destroy() {
65308
- this.afterHide();
65309
- }
65310
-
65311
- handleCancel(e) {
65312
- this._adapter.notifyCancel(e);
65313
- }
65314
-
65315
- handleOk(e) {
65316
- this._adapter.notifyOk(e);
65317
- }
65318
-
65319
- beforeShow() {
65320
- this._adapter.disabledBodyScroll();
65321
- }
65322
-
65323
- afterHide() {
65324
- this._adapter.enabledBodyScroll();
65325
- }
65326
-
65327
- afterClose() {
65328
- this._adapter.notifyClose();
65329
- }
65330
-
65331
- }
65332
- // CONCATENATED MODULE: ../semi-foundation/modal/modalContentFoundation.ts
65333
-
65334
-
65335
-
65336
- class modalContentFoundation_ModalContentFoundation extends foundation {
65337
- constructor(adapter) {
65338
- super(assign_default()(assign_default()({}, modalContentFoundation_ModalContentFoundation.defaultAdapter), adapter));
65339
- }
65340
-
65341
- destroy() {
65342
- this.handleKeyDownEventListenerUnmount();
65343
- this.modalDialogBlur();
65344
- this.prevFocusElementReFocus();
65345
- }
65346
-
65347
- handleDialogMouseDown() {
65348
- this._adapter.notifyDialogMouseDown();
65349
- }
65350
-
65351
- handleMaskMouseUp() {
65352
- this._adapter.notifyDialogMouseUp();
65353
- }
65354
-
65355
- handleKeyDown(e) {
65356
- const {
65357
- closeOnEsc
65358
- } = this.getProps();
65359
-
65360
- if (closeOnEsc && e.keyCode === utils_keyCode.ESC) {
65361
- e.stopPropagation();
65362
- this.close(e);
65363
- return;
65364
- }
65365
- }
65366
-
65367
- handleKeyDownEventListenerMount() {
65368
- this._adapter.addKeyDownEventListener();
65369
- }
65370
-
65371
- handleKeyDownEventListenerUnmount() {
65372
- this._adapter.removeKeyDownEventListener();
65373
- }
65374
-
65375
- getMouseState() {
65376
- this._adapter.getMouseState();
65377
- }
65378
-
65379
- handleMaskClick(e) {
65380
- const {
65381
- dialogMouseDown
65382
- } = this.getStates();
65383
-
65384
- if (e.target === e.currentTarget && !dialogMouseDown) {
65385
- this.close(e);
65386
- }
65387
- }
65388
-
65389
- close(e) {
65390
- this._adapter.notifyClose(e);
65391
- }
65392
-
65393
- modalDialogFocus() {
65394
- this._adapter.modalDialogFocus();
65395
- }
65396
-
65397
- modalDialogBlur() {
65398
- this._adapter.modalDialogBlur();
65399
- }
65400
-
65401
- prevFocusElementReFocus() {
65402
- this._adapter.prevFocusElementReFocus();
65403
- }
65404
-
65405
- }
65406
- // EXTERNAL MODULE: /home/runner/work/semi-design/semi-design/node_modules/lodash-es/_freeGlobal.js
65407
- var _freeGlobal = __webpack_require__("kq48");
65408
-
65409
- // CONCATENATED MODULE: /home/runner/work/semi-design/semi-design/node_modules/lodash-es/_root.js
65410
-
65411
-
65412
- /** Detect free variable `self`. */
65413
- var freeSelf = typeof self == 'object' && self && self.Object === Object && self;
65414
-
65415
- /** Used as a reference to the global object. */
65416
- var _root_root = _freeGlobal["a" /* default */] || freeSelf || Function('return this')();
65417
-
65418
- /* harmony default export */ var _root = (_root_root);
65419
-
65420
- // CONCATENATED MODULE: /home/runner/work/semi-design/semi-design/node_modules/lodash-es/_Symbol.js
65421
-
65422
-
65423
- /** Built-in value references. */
65424
- var _Symbol_Symbol = _root.Symbol;
65425
-
65426
- /* harmony default export */ var _Symbol = (_Symbol_Symbol);
65427
-
65428
- // CONCATENATED MODULE: /home/runner/work/semi-design/semi-design/node_modules/lodash-es/_getRawTag.js
65429
-
65430
-
65431
- /** Used for built-in method references. */
65432
- var objectProto = Object.prototype;
65433
-
65434
- /** Used to check objects for own properties. */
65435
- var _getRawTag_hasOwnProperty = objectProto.hasOwnProperty;
65436
-
65437
- /**
65438
- * Used to resolve the
65439
- * [`toStringTag`](http://ecma-international.org/ecma-262/7.0/#sec-object.prototype.tostring)
65440
- * of values.
65441
- */
65442
- var nativeObjectToString = objectProto.toString;
65443
-
65444
- /** Built-in value references. */
65445
- var symToStringTag = _Symbol ? _Symbol.toStringTag : undefined;
65446
-
65447
- /**
65448
- * A specialized version of `baseGetTag` which ignores `Symbol.toStringTag` values.
65449
- *
65450
- * @private
65451
- * @param {*} value The value to query.
65452
- * @returns {string} Returns the raw `toStringTag`.
65453
- */
65454
- function getRawTag(value) {
65455
- var isOwn = _getRawTag_hasOwnProperty.call(value, symToStringTag),
65456
- tag = value[symToStringTag];
65457
-
65458
- try {
65459
- value[symToStringTag] = undefined;
65460
- var unmasked = true;
65461
- } catch (e) {}
65462
-
65463
- var result = nativeObjectToString.call(value);
65464
- if (unmasked) {
65465
- if (isOwn) {
65466
- value[symToStringTag] = tag;
65467
- } else {
65468
- delete value[symToStringTag];
65469
- }
65470
- }
65471
- return result;
65472
- }
65473
-
65474
- /* harmony default export */ var _getRawTag = (getRawTag);
65475
-
65476
- // CONCATENATED MODULE: /home/runner/work/semi-design/semi-design/node_modules/lodash-es/_objectToString.js
65477
- /** Used for built-in method references. */
65478
- var _objectToString_objectProto = Object.prototype;
65479
-
65480
- /**
65481
- * Used to resolve the
65482
- * [`toStringTag`](http://ecma-international.org/ecma-262/7.0/#sec-object.prototype.tostring)
65483
- * of values.
65484
- */
65485
- var _objectToString_nativeObjectToString = _objectToString_objectProto.toString;
65486
-
65487
- /**
65488
- * Converts `value` to a string using `Object.prototype.toString`.
65489
- *
65490
- * @private
65491
- * @param {*} value The value to convert.
65492
- * @returns {string} Returns the converted string.
65493
- */
65494
- function objectToString(value) {
65495
- return _objectToString_nativeObjectToString.call(value);
65496
- }
65497
-
65498
- /* harmony default export */ var _objectToString = (objectToString);
65499
-
65500
- // CONCATENATED MODULE: /home/runner/work/semi-design/semi-design/node_modules/lodash-es/_baseGetTag.js
65501
-
65502
-
65503
-
65504
-
65505
- /** `Object#toString` result references. */
65506
- var nullTag = '[object Null]',
65507
- undefinedTag = '[object Undefined]';
65508
-
65509
- /** Built-in value references. */
65510
- var _baseGetTag_symToStringTag = _Symbol ? _Symbol.toStringTag : undefined;
65511
-
65512
- /**
65513
- * The base implementation of `getTag` without fallbacks for buggy environments.
65514
- *
65515
- * @private
65516
- * @param {*} value The value to query.
65517
- * @returns {string} Returns the `toStringTag`.
65518
- */
65519
- function baseGetTag(value) {
65520
- if (value == null) {
65521
- return value === undefined ? undefinedTag : nullTag;
65522
- }
65523
- return (_baseGetTag_symToStringTag && _baseGetTag_symToStringTag in Object(value))
65524
- ? _getRawTag(value)
65525
- : _objectToString(value);
65526
- }
65527
-
65528
- /* harmony default export */ var _baseGetTag = (baseGetTag);
65529
-
65530
- // CONCATENATED MODULE: /home/runner/work/semi-design/semi-design/node_modules/lodash-es/isObject.js
65531
- /**
65532
- * Checks if `value` is the
65533
- * [language type](http://www.ecma-international.org/ecma-262/7.0/#sec-ecmascript-language-types)
65534
- * of `Object`. (e.g. arrays, functions, objects, regexes, `new Number(0)`, and `new String('')`)
65535
- *
65536
- * @static
65537
- * @memberOf _
65538
- * @since 0.1.0
65539
- * @category Lang
65540
- * @param {*} value The value to check.
65541
- * @returns {boolean} Returns `true` if `value` is an object, else `false`.
65542
- * @example
65543
- *
65544
- * _.isObject({});
65545
- * // => true
65546
- *
65547
- * _.isObject([1, 2, 3]);
65548
- * // => true
65549
- *
65550
- * _.isObject(_.noop);
65551
- * // => true
65552
- *
65553
- * _.isObject(null);
65554
- * // => false
65555
- */
65556
- function isObject_isObject(value) {
65557
- var type = typeof value;
65558
- return value != null && (type == 'object' || type == 'function');
65559
- }
65560
-
65561
- /* harmony default export */ var lodash_es_isObject = (isObject_isObject);
65562
-
65563
- // CONCATENATED MODULE: /home/runner/work/semi-design/semi-design/node_modules/lodash-es/isFunction.js
65564
-
65565
-
65566
-
65567
- /** `Object#toString` result references. */
65568
- var asyncTag = '[object AsyncFunction]',
65569
- funcTag = '[object Function]',
65570
- genTag = '[object GeneratorFunction]',
65571
- proxyTag = '[object Proxy]';
65572
-
65573
- /**
65574
- * Checks if `value` is classified as a `Function` object.
65575
- *
65576
- * @static
65577
- * @memberOf _
65578
- * @since 0.1.0
65579
- * @category Lang
65580
- * @param {*} value The value to check.
65581
- * @returns {boolean} Returns `true` if `value` is a function, else `false`.
65582
- * @example
65583
- *
65584
- * _.isFunction(_);
65585
- * // => true
65586
- *
65587
- * _.isFunction(/abc/);
65588
- * // => false
65589
- */
65590
- function isFunction_isFunction(value) {
65591
- if (!lodash_es_isObject(value)) {
65592
- return false;
65593
- }
65594
- // The use of `Object#toString` avoids issues with the `typeof` operator
65595
- // in Safari 9 which returns 'object' for typed arrays and other constructors.
65596
- var tag = _baseGetTag(value);
65597
- return tag == funcTag || tag == genTag || tag == asyncTag || tag == proxyTag;
65598
- }
65599
-
65600
- /* harmony default export */ var lodash_es_isFunction = (isFunction_isFunction);
65601
-
65602
- // CONCATENATED MODULE: /home/runner/work/semi-design/semi-design/node_modules/lodash-es/_coreJsData.js
65603
-
65604
-
65605
- /** Used to detect overreaching core-js shims. */
65606
- var coreJsData = _root['__core-js_shared__'];
65607
-
65608
- /* harmony default export */ var _coreJsData = (coreJsData);
65609
-
65610
- // CONCATENATED MODULE: /home/runner/work/semi-design/semi-design/node_modules/lodash-es/_isMasked.js
65611
-
65612
-
65613
- /** Used to detect methods masquerading as native. */
65614
- var maskSrcKey = (function() {
65615
- var uid = /[^.]+$/.exec(_coreJsData && _coreJsData.keys && _coreJsData.keys.IE_PROTO || '');
65616
- return uid ? ('Symbol(src)_1.' + uid) : '';
65617
- }());
65618
-
65619
- /**
65620
- * Checks if `func` has its source masked.
65621
- *
65622
- * @private
65623
- * @param {Function} func The function to check.
65624
- * @returns {boolean} Returns `true` if `func` is masked, else `false`.
65625
- */
65626
- function isMasked(func) {
65627
- return !!maskSrcKey && (maskSrcKey in func);
65628
- }
65629
-
65630
- /* harmony default export */ var _isMasked = (isMasked);
65631
-
65632
- // CONCATENATED MODULE: /home/runner/work/semi-design/semi-design/node_modules/lodash-es/_toSource.js
65633
- /** Used for built-in method references. */
65634
- var funcProto = Function.prototype;
65635
-
65636
- /** Used to resolve the decompiled source of functions. */
65637
- var funcToString = funcProto.toString;
65638
-
65639
- /**
65640
- * Converts `func` to its source code.
65641
- *
65642
- * @private
65643
- * @param {Function} func The function to convert.
65644
- * @returns {string} Returns the source code.
65645
- */
65646
- function toSource(func) {
65647
- if (func != null) {
65648
- try {
65649
- return funcToString.call(func);
65650
- } catch (e) {}
65651
- try {
65652
- return (func + '');
65653
- } catch (e) {}
65654
- }
65655
- return '';
65656
- }
65657
-
65658
- /* harmony default export */ var _toSource = (toSource);
65659
-
65660
- // CONCATENATED MODULE: /home/runner/work/semi-design/semi-design/node_modules/lodash-es/_baseIsNative.js
65661
-
65662
-
65663
-
65664
-
65665
-
65666
- /**
65667
- * Used to match `RegExp`
65668
- * [syntax characters](http://ecma-international.org/ecma-262/7.0/#sec-patterns).
65669
- */
65670
- var reRegExpChar = /[\\^$.*+?()[\]{}|]/g;
65671
-
65672
- /** Used to detect host constructors (Safari). */
65673
- var reIsHostCtor = /^\[object .+?Constructor\]$/;
65674
-
65675
- /** Used for built-in method references. */
65676
- var _baseIsNative_funcProto = Function.prototype,
65677
- _baseIsNative_objectProto = Object.prototype;
65678
-
65679
- /** Used to resolve the decompiled source of functions. */
65680
- var _baseIsNative_funcToString = _baseIsNative_funcProto.toString;
65681
-
65682
- /** Used to check objects for own properties. */
65683
- var _baseIsNative_hasOwnProperty = _baseIsNative_objectProto.hasOwnProperty;
65684
-
65685
- /** Used to detect if a method is native. */
65686
- var reIsNative = RegExp('^' +
65687
- _baseIsNative_funcToString.call(_baseIsNative_hasOwnProperty).replace(reRegExpChar, '\\$&')
65688
- .replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g, '$1.*?') + '$'
65689
- );
65690
-
65691
- /**
65692
- * The base implementation of `_.isNative` without bad shim checks.
65693
- *
65694
- * @private
65695
- * @param {*} value The value to check.
65696
- * @returns {boolean} Returns `true` if `value` is a native function,
65697
- * else `false`.
65698
- */
65699
- function baseIsNative(value) {
65700
- if (!lodash_es_isObject(value) || _isMasked(value)) {
65701
- return false;
65702
- }
65703
- var pattern = lodash_es_isFunction(value) ? reIsNative : reIsHostCtor;
65704
- return pattern.test(_toSource(value));
65705
- }
65706
-
65707
- /* harmony default export */ var _baseIsNative = (baseIsNative);
65708
-
65709
- // CONCATENATED MODULE: /home/runner/work/semi-design/semi-design/node_modules/lodash-es/_getValue.js
65710
- /**
65711
- * Gets the value at `key` of `object`.
65712
- *
65713
- * @private
65714
- * @param {Object} [object] The object to query.
65715
- * @param {string} key The key of the property to get.
65716
- * @returns {*} Returns the property value.
65717
- */
65718
- function getValue(object, key) {
65719
- return object == null ? undefined : object[key];
65720
- }
65721
-
65722
- /* harmony default export */ var _getValue = (getValue);
65723
-
65724
- // CONCATENATED MODULE: /home/runner/work/semi-design/semi-design/node_modules/lodash-es/_getNative.js
65725
-
65726
-
65727
-
65728
- /**
65729
- * Gets the native function at `key` of `object`.
65730
- *
65731
- * @private
65732
- * @param {Object} object The object to query.
65733
- * @param {string} key The key of the method to get.
65734
- * @returns {*} Returns the function if it's native, else `undefined`.
65735
- */
65736
- function getNative(object, key) {
65737
- var value = _getValue(object, key);
65738
- return _baseIsNative(value) ? value : undefined;
65739
- }
65740
-
65741
- /* harmony default export */ var _getNative = (getNative);
65742
-
65743
- // CONCATENATED MODULE: /home/runner/work/semi-design/semi-design/node_modules/lodash-es/_nativeCreate.js
65744
-
65745
-
65746
- /* Built-in method references that are verified to be native. */
65747
- var nativeCreate = _getNative(Object, 'create');
65748
-
65749
- /* harmony default export */ var _nativeCreate = (nativeCreate);
65750
-
65751
- // CONCATENATED MODULE: /home/runner/work/semi-design/semi-design/node_modules/lodash-es/_hashClear.js
65752
-
65753
-
65754
- /**
65755
- * Removes all key-value entries from the hash.
65756
- *
65757
- * @private
65758
- * @name clear
65759
- * @memberOf Hash
65760
- */
65761
- function hashClear() {
65762
- this.__data__ = _nativeCreate ? _nativeCreate(null) : {};
65763
- this.size = 0;
65764
- }
65765
-
65766
- /* harmony default export */ var _hashClear = (hashClear);
65767
-
65768
- // CONCATENATED MODULE: /home/runner/work/semi-design/semi-design/node_modules/lodash-es/_hashDelete.js
65769
- /**
65770
- * Removes `key` and its value from the hash.
65771
- *
65772
- * @private
65773
- * @name delete
65774
- * @memberOf Hash
65775
- * @param {Object} hash The hash to modify.
65776
- * @param {string} key The key of the value to remove.
65777
- * @returns {boolean} Returns `true` if the entry was removed, else `false`.
65778
- */
65779
- function hashDelete(key) {
65780
- var result = this.has(key) && delete this.__data__[key];
65781
- this.size -= result ? 1 : 0;
65782
- return result;
65783
- }
65784
-
65785
- /* harmony default export */ var _hashDelete = (hashDelete);
65786
-
65787
- // CONCATENATED MODULE: /home/runner/work/semi-design/semi-design/node_modules/lodash-es/_hashGet.js
65788
-
65789
-
65790
- /** Used to stand-in for `undefined` hash values. */
65791
- var HASH_UNDEFINED = '__lodash_hash_undefined__';
65792
-
65793
- /** Used for built-in method references. */
65794
- var _hashGet_objectProto = Object.prototype;
65795
-
65796
- /** Used to check objects for own properties. */
65797
- var _hashGet_hasOwnProperty = _hashGet_objectProto.hasOwnProperty;
65798
-
65799
- /**
65800
- * Gets the hash value for `key`.
65801
- *
65802
- * @private
65803
- * @name get
65804
- * @memberOf Hash
65805
- * @param {string} key The key of the value to get.
65806
- * @returns {*} Returns the entry value.
65807
- */
65808
- function hashGet(key) {
65809
- var data = this.__data__;
65810
- if (_nativeCreate) {
65811
- var result = data[key];
65812
- return result === HASH_UNDEFINED ? undefined : result;
65813
- }
65814
- return _hashGet_hasOwnProperty.call(data, key) ? data[key] : undefined;
65815
- }
65816
-
65817
- /* harmony default export */ var _hashGet = (hashGet);
65818
-
65819
- // CONCATENATED MODULE: /home/runner/work/semi-design/semi-design/node_modules/lodash-es/_hashHas.js
65820
-
65821
-
65822
- /** Used for built-in method references. */
65823
- var _hashHas_objectProto = Object.prototype;
65824
-
65825
- /** Used to check objects for own properties. */
65826
- var _hashHas_hasOwnProperty = _hashHas_objectProto.hasOwnProperty;
65827
-
65828
- /**
65829
- * Checks if a hash value for `key` exists.
65830
- *
65831
- * @private
65832
- * @name has
65833
- * @memberOf Hash
65834
- * @param {string} key The key of the entry to check.
65835
- * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`.
65836
- */
65837
- function hashHas(key) {
65838
- var data = this.__data__;
65839
- return _nativeCreate ? (data[key] !== undefined) : _hashHas_hasOwnProperty.call(data, key);
65840
- }
65841
-
65842
- /* harmony default export */ var _hashHas = (hashHas);
65843
-
65844
- // CONCATENATED MODULE: /home/runner/work/semi-design/semi-design/node_modules/lodash-es/_hashSet.js
65845
-
65846
-
65847
- /** Used to stand-in for `undefined` hash values. */
65848
- var _hashSet_HASH_UNDEFINED = '__lodash_hash_undefined__';
65849
-
65850
- /**
65851
- * Sets the hash `key` to `value`.
65852
- *
65853
- * @private
65854
- * @name set
65855
- * @memberOf Hash
65856
- * @param {string} key The key of the value to set.
65857
- * @param {*} value The value to set.
65858
- * @returns {Object} Returns the hash instance.
65859
- */
65860
- function hashSet(key, value) {
65861
- var data = this.__data__;
65862
- this.size += this.has(key) ? 0 : 1;
65863
- data[key] = (_nativeCreate && value === undefined) ? _hashSet_HASH_UNDEFINED : value;
65864
- return this;
65865
- }
65866
-
65867
- /* harmony default export */ var _hashSet = (hashSet);
65868
-
65869
- // CONCATENATED MODULE: /home/runner/work/semi-design/semi-design/node_modules/lodash-es/_Hash.js
65870
-
65871
-
65872
-
65873
-
65874
-
65875
-
65876
- /**
65877
- * Creates a hash object.
65878
- *
65879
- * @private
65880
- * @constructor
65881
- * @param {Array} [entries] The key-value pairs to cache.
65882
- */
65883
- function Hash(entries) {
65884
- var index = -1,
65885
- length = entries == null ? 0 : entries.length;
65886
-
65887
- this.clear();
65888
- while (++index < length) {
65889
- var entry = entries[index];
65890
- this.set(entry[0], entry[1]);
65891
- }
65892
- }
65893
-
65894
- // Add methods to `Hash`.
65895
- Hash.prototype.clear = _hashClear;
65896
- Hash.prototype['delete'] = _hashDelete;
65897
- Hash.prototype.get = _hashGet;
65898
- Hash.prototype.has = _hashHas;
65899
- Hash.prototype.set = _hashSet;
65900
-
65901
- /* harmony default export */ var _Hash = (Hash);
65902
-
65903
- // CONCATENATED MODULE: /home/runner/work/semi-design/semi-design/node_modules/lodash-es/_listCacheClear.js
65904
- /**
65905
- * Removes all key-value entries from the list cache.
65906
- *
65907
- * @private
65908
- * @name clear
65909
- * @memberOf ListCache
65910
- */
65911
- function listCacheClear() {
65912
- this.__data__ = [];
65913
- this.size = 0;
65914
- }
65915
-
65916
- /* harmony default export */ var _listCacheClear = (listCacheClear);
65917
-
65918
- // CONCATENATED MODULE: /home/runner/work/semi-design/semi-design/node_modules/lodash-es/eq.js
65919
- /**
65920
- * Performs a
65921
- * [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero)
65922
- * comparison between two values to determine if they are equivalent.
65923
- *
65924
- * @static
65925
- * @memberOf _
65926
- * @since 4.0.0
65927
- * @category Lang
65928
- * @param {*} value The value to compare.
65929
- * @param {*} other The other value to compare.
65930
- * @returns {boolean} Returns `true` if the values are equivalent, else `false`.
65931
- * @example
65932
- *
65933
- * var object = { 'a': 1 };
65934
- * var other = { 'a': 1 };
65935
- *
65936
- * _.eq(object, object);
65937
- * // => true
65938
- *
65939
- * _.eq(object, other);
65940
- * // => false
65941
- *
65942
- * _.eq('a', 'a');
65943
- * // => true
65944
- *
65945
- * _.eq('a', Object('a'));
65946
- * // => false
65947
- *
65948
- * _.eq(NaN, NaN);
65949
- * // => true
65950
- */
65951
- function eq(value, other) {
65952
- return value === other || (value !== value && other !== other);
65953
- }
65954
-
65955
- /* harmony default export */ var lodash_es_eq = (eq);
65956
-
65957
- // CONCATENATED MODULE: /home/runner/work/semi-design/semi-design/node_modules/lodash-es/_assocIndexOf.js
65958
-
65959
-
65960
- /**
65961
- * Gets the index at which the `key` is found in `array` of key-value pairs.
65962
- *
65963
- * @private
65964
- * @param {Array} array The array to inspect.
65965
- * @param {*} key The key to search for.
65966
- * @returns {number} Returns the index of the matched value, else `-1`.
65967
- */
65968
- function assocIndexOf(array, key) {
65969
- var length = array.length;
65970
- while (length--) {
65971
- if (lodash_es_eq(array[length][0], key)) {
65972
- return length;
65973
- }
65974
- }
65975
- return -1;
65976
- }
65977
-
65978
- /* harmony default export */ var _assocIndexOf = (assocIndexOf);
65979
-
65980
- // CONCATENATED MODULE: /home/runner/work/semi-design/semi-design/node_modules/lodash-es/_listCacheDelete.js
65981
-
65982
-
65983
- /** Used for built-in method references. */
65984
- var arrayProto = Array.prototype;
65985
-
65986
- /** Built-in value references. */
65987
- var _listCacheDelete_splice = arrayProto.splice;
65988
-
65989
- /**
65990
- * Removes `key` and its value from the list cache.
65991
- *
65992
- * @private
65993
- * @name delete
65994
- * @memberOf ListCache
65995
- * @param {string} key The key of the value to remove.
65996
- * @returns {boolean} Returns `true` if the entry was removed, else `false`.
65997
- */
65998
- function listCacheDelete(key) {
65999
- var data = this.__data__,
66000
- index = _assocIndexOf(data, key);
66001
-
66002
- if (index < 0) {
66003
- return false;
66004
- }
66005
- var lastIndex = data.length - 1;
66006
- if (index == lastIndex) {
66007
- data.pop();
66008
- } else {
66009
- _listCacheDelete_splice.call(data, index, 1);
66010
- }
66011
- --this.size;
66012
- return true;
66013
- }
66014
-
66015
- /* harmony default export */ var _listCacheDelete = (listCacheDelete);
66016
-
66017
- // CONCATENATED MODULE: /home/runner/work/semi-design/semi-design/node_modules/lodash-es/_listCacheGet.js
66018
-
66019
-
66020
- /**
66021
- * Gets the list cache value for `key`.
66022
- *
66023
- * @private
66024
- * @name get
66025
- * @memberOf ListCache
66026
- * @param {string} key The key of the value to get.
66027
- * @returns {*} Returns the entry value.
66028
- */
66029
- function listCacheGet(key) {
66030
- var data = this.__data__,
66031
- index = _assocIndexOf(data, key);
66032
-
66033
- return index < 0 ? undefined : data[index][1];
66034
- }
66035
-
66036
- /* harmony default export */ var _listCacheGet = (listCacheGet);
66037
-
66038
- // CONCATENATED MODULE: /home/runner/work/semi-design/semi-design/node_modules/lodash-es/_listCacheHas.js
66039
-
66040
-
66041
- /**
66042
- * Checks if a list cache value for `key` exists.
66043
- *
66044
- * @private
66045
- * @name has
66046
- * @memberOf ListCache
66047
- * @param {string} key The key of the entry to check.
66048
- * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`.
66049
- */
66050
- function listCacheHas(key) {
66051
- return _assocIndexOf(this.__data__, key) > -1;
66052
- }
66053
-
66054
- /* harmony default export */ var _listCacheHas = (listCacheHas);
66055
-
66056
- // CONCATENATED MODULE: /home/runner/work/semi-design/semi-design/node_modules/lodash-es/_listCacheSet.js
66057
-
66058
-
66059
- /**
66060
- * Sets the list cache `key` to `value`.
66061
- *
66062
- * @private
66063
- * @name set
66064
- * @memberOf ListCache
66065
- * @param {string} key The key of the value to set.
66066
- * @param {*} value The value to set.
66067
- * @returns {Object} Returns the list cache instance.
66068
- */
66069
- function listCacheSet(key, value) {
66070
- var data = this.__data__,
66071
- index = _assocIndexOf(data, key);
66072
-
66073
- if (index < 0) {
66074
- ++this.size;
66075
- data.push([key, value]);
66076
- } else {
66077
- data[index][1] = value;
66078
- }
66079
- return this;
66080
- }
66081
-
66082
- /* harmony default export */ var _listCacheSet = (listCacheSet);
66083
-
66084
- // CONCATENATED MODULE: /home/runner/work/semi-design/semi-design/node_modules/lodash-es/_ListCache.js
66085
-
66086
-
66087
-
66088
-
66089
-
66090
-
66091
- /**
66092
- * Creates an list cache object.
66093
- *
66094
- * @private
66095
- * @constructor
66096
- * @param {Array} [entries] The key-value pairs to cache.
66097
- */
66098
- function ListCache(entries) {
66099
- var index = -1,
66100
- length = entries == null ? 0 : entries.length;
66101
-
66102
- this.clear();
66103
- while (++index < length) {
66104
- var entry = entries[index];
66105
- this.set(entry[0], entry[1]);
66106
- }
66107
- }
66108
-
66109
- // Add methods to `ListCache`.
66110
- ListCache.prototype.clear = _listCacheClear;
66111
- ListCache.prototype['delete'] = _listCacheDelete;
66112
- ListCache.prototype.get = _listCacheGet;
66113
- ListCache.prototype.has = _listCacheHas;
66114
- ListCache.prototype.set = _listCacheSet;
66115
-
66116
- /* harmony default export */ var _ListCache = (ListCache);
66117
-
66118
- // CONCATENATED MODULE: /home/runner/work/semi-design/semi-design/node_modules/lodash-es/_Map.js
66119
-
66120
-
66121
-
66122
- /* Built-in method references that are verified to be native. */
66123
- var Map = _getNative(_root, 'Map');
66124
-
66125
- /* harmony default export */ var _Map = (Map);
66126
-
66127
- // CONCATENATED MODULE: /home/runner/work/semi-design/semi-design/node_modules/lodash-es/_mapCacheClear.js
66128
-
66129
-
66130
-
66131
-
66132
- /**
66133
- * Removes all key-value entries from the map.
66134
- *
66135
- * @private
66136
- * @name clear
66137
- * @memberOf MapCache
66138
- */
66139
- function mapCacheClear() {
66140
- this.size = 0;
66141
- this.__data__ = {
66142
- 'hash': new _Hash,
66143
- 'map': new (_Map || _ListCache),
66144
- 'string': new _Hash
66145
- };
66146
- }
66147
-
66148
- /* harmony default export */ var _mapCacheClear = (mapCacheClear);
66149
-
66150
- // CONCATENATED MODULE: /home/runner/work/semi-design/semi-design/node_modules/lodash-es/_isKeyable.js
66151
- /**
66152
- * Checks if `value` is suitable for use as unique object key.
66153
- *
66154
- * @private
66155
- * @param {*} value The value to check.
66156
- * @returns {boolean} Returns `true` if `value` is suitable, else `false`.
66157
- */
66158
- function isKeyable(value) {
66159
- var type = typeof value;
66160
- return (type == 'string' || type == 'number' || type == 'symbol' || type == 'boolean')
66161
- ? (value !== '__proto__')
66162
- : (value === null);
66163
- }
66164
-
66165
- /* harmony default export */ var _isKeyable = (isKeyable);
66166
-
66167
- // CONCATENATED MODULE: /home/runner/work/semi-design/semi-design/node_modules/lodash-es/_getMapData.js
66168
-
66169
-
66170
- /**
66171
- * Gets the data for `map`.
66172
- *
66173
- * @private
66174
- * @param {Object} map The map to query.
66175
- * @param {string} key The reference key.
66176
- * @returns {*} Returns the map data.
66177
- */
66178
- function getMapData(map, key) {
66179
- var data = map.__data__;
66180
- return _isKeyable(key)
66181
- ? data[typeof key == 'string' ? 'string' : 'hash']
66182
- : data.map;
66183
- }
66184
-
66185
- /* harmony default export */ var _getMapData = (getMapData);
66186
-
66187
- // CONCATENATED MODULE: /home/runner/work/semi-design/semi-design/node_modules/lodash-es/_mapCacheDelete.js
66188
-
66189
-
66190
- /**
66191
- * Removes `key` and its value from the map.
66192
- *
66193
- * @private
66194
- * @name delete
66195
- * @memberOf MapCache
66196
- * @param {string} key The key of the value to remove.
66197
- * @returns {boolean} Returns `true` if the entry was removed, else `false`.
66198
- */
66199
- function mapCacheDelete(key) {
66200
- var result = _getMapData(this, key)['delete'](key);
66201
- this.size -= result ? 1 : 0;
66202
- return result;
66203
- }
66204
-
66205
- /* harmony default export */ var _mapCacheDelete = (mapCacheDelete);
66206
-
66207
- // CONCATENATED MODULE: /home/runner/work/semi-design/semi-design/node_modules/lodash-es/_mapCacheGet.js
66208
-
66209
-
66210
- /**
66211
- * Gets the map value for `key`.
66212
- *
66213
- * @private
66214
- * @name get
66215
- * @memberOf MapCache
66216
- * @param {string} key The key of the value to get.
66217
- * @returns {*} Returns the entry value.
66218
- */
66219
- function mapCacheGet(key) {
66220
- return _getMapData(this, key).get(key);
66221
- }
66222
-
66223
- /* harmony default export */ var _mapCacheGet = (mapCacheGet);
66224
-
66225
- // CONCATENATED MODULE: /home/runner/work/semi-design/semi-design/node_modules/lodash-es/_mapCacheHas.js
66226
-
66227
-
66228
- /**
66229
- * Checks if a map value for `key` exists.
66230
- *
66231
- * @private
66232
- * @name has
66233
- * @memberOf MapCache
66234
- * @param {string} key The key of the entry to check.
66235
- * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`.
66236
- */
66237
- function mapCacheHas(key) {
66238
- return _getMapData(this, key).has(key);
66239
- }
66240
-
66241
- /* harmony default export */ var _mapCacheHas = (mapCacheHas);
66242
-
66243
- // CONCATENATED MODULE: /home/runner/work/semi-design/semi-design/node_modules/lodash-es/_mapCacheSet.js
66244
-
66245
-
66246
- /**
66247
- * Sets the map `key` to `value`.
66248
- *
66249
- * @private
66250
- * @name set
66251
- * @memberOf MapCache
66252
- * @param {string} key The key of the value to set.
66253
- * @param {*} value The value to set.
66254
- * @returns {Object} Returns the map cache instance.
66255
- */
66256
- function mapCacheSet(key, value) {
66257
- var data = _getMapData(this, key),
66258
- size = data.size;
66259
-
66260
- data.set(key, value);
66261
- this.size += data.size == size ? 0 : 1;
66262
- return this;
66263
- }
66264
-
66265
- /* harmony default export */ var _mapCacheSet = (mapCacheSet);
66266
-
66267
- // CONCATENATED MODULE: /home/runner/work/semi-design/semi-design/node_modules/lodash-es/_MapCache.js
66268
-
66269
-
66270
-
66271
-
66272
-
66273
-
66274
- /**
66275
- * Creates a map cache object to store key-value pairs.
66276
- *
66277
- * @private
66278
- * @constructor
66279
- * @param {Array} [entries] The key-value pairs to cache.
66280
- */
66281
- function MapCache(entries) {
66282
- var index = -1,
66283
- length = entries == null ? 0 : entries.length;
66284
-
66285
- this.clear();
66286
- while (++index < length) {
66287
- var entry = entries[index];
66288
- this.set(entry[0], entry[1]);
66289
- }
66290
- }
66291
-
66292
- // Add methods to `MapCache`.
66293
- MapCache.prototype.clear = _mapCacheClear;
66294
- MapCache.prototype['delete'] = _mapCacheDelete;
66295
- MapCache.prototype.get = _mapCacheGet;
66296
- MapCache.prototype.has = _mapCacheHas;
66297
- MapCache.prototype.set = _mapCacheSet;
66298
-
66299
- /* harmony default export */ var _MapCache = (MapCache);
66300
-
66301
- // CONCATENATED MODULE: /home/runner/work/semi-design/semi-design/node_modules/lodash-es/_setCacheAdd.js
66302
- /** Used to stand-in for `undefined` hash values. */
66303
- var _setCacheAdd_HASH_UNDEFINED = '__lodash_hash_undefined__';
66304
-
66305
- /**
66306
- * Adds `value` to the array cache.
66307
- *
66308
- * @private
66309
- * @name add
66310
- * @memberOf SetCache
66311
- * @alias push
66312
- * @param {*} value The value to cache.
66313
- * @returns {Object} Returns the cache instance.
66314
- */
66315
- function setCacheAdd(value) {
66316
- this.__data__.set(value, _setCacheAdd_HASH_UNDEFINED);
66317
- return this;
66318
- }
66319
-
66320
- /* harmony default export */ var _setCacheAdd = (setCacheAdd);
66321
-
66322
- // CONCATENATED MODULE: /home/runner/work/semi-design/semi-design/node_modules/lodash-es/_setCacheHas.js
66323
- /**
66324
- * Checks if `value` is in the array cache.
66325
- *
66326
- * @private
66327
- * @name has
66328
- * @memberOf SetCache
66329
- * @param {*} value The value to search for.
66330
- * @returns {number} Returns `true` if `value` is found, else `false`.
66331
- */
66332
- function setCacheHas(value) {
66333
- return this.__data__.has(value);
66334
- }
66335
-
66336
- /* harmony default export */ var _setCacheHas = (setCacheHas);
66337
-
66338
- // CONCATENATED MODULE: /home/runner/work/semi-design/semi-design/node_modules/lodash-es/_SetCache.js
66339
-
66340
-
66341
-
66342
-
66343
- /**
66344
- *
66345
- * Creates an array cache object to store unique values.
66346
- *
66347
- * @private
66348
- * @constructor
66349
- * @param {Array} [values] The values to cache.
66350
- */
66351
- function SetCache(values) {
66352
- var index = -1,
66353
- length = values == null ? 0 : values.length;
66354
-
66355
- this.__data__ = new _MapCache;
66356
- while (++index < length) {
66357
- this.add(values[index]);
66358
- }
66359
- }
66360
-
66361
- // Add methods to `SetCache`.
66362
- SetCache.prototype.add = SetCache.prototype.push = _setCacheAdd;
66363
- SetCache.prototype.has = _setCacheHas;
66364
-
66365
- /* harmony default export */ var _SetCache = (SetCache);
66366
-
66367
- // CONCATENATED MODULE: /home/runner/work/semi-design/semi-design/node_modules/lodash-es/_baseFindIndex.js
66368
- /**
66369
- * The base implementation of `_.findIndex` and `_.findLastIndex` without
66370
- * support for iteratee shorthands.
66371
- *
66372
- * @private
66373
- * @param {Array} array The array to inspect.
66374
- * @param {Function} predicate The function invoked per iteration.
66375
- * @param {number} fromIndex The index to search from.
66376
- * @param {boolean} [fromRight] Specify iterating from right to left.
66377
- * @returns {number} Returns the index of the matched value, else `-1`.
66378
- */
66379
- function baseFindIndex(array, predicate, fromIndex, fromRight) {
66380
- var length = array.length,
66381
- index = fromIndex + (fromRight ? 1 : -1);
66382
-
66383
- while ((fromRight ? index-- : ++index < length)) {
66384
- if (predicate(array[index], index, array)) {
66385
- return index;
66386
- }
66387
- }
66388
- return -1;
66389
- }
66390
-
66391
- /* harmony default export */ var _baseFindIndex = (baseFindIndex);
66392
-
66393
- // CONCATENATED MODULE: /home/runner/work/semi-design/semi-design/node_modules/lodash-es/_baseIsNaN.js
66394
- /**
66395
- * The base implementation of `_.isNaN` without support for number objects.
66396
- *
66397
- * @private
66398
- * @param {*} value The value to check.
66399
- * @returns {boolean} Returns `true` if `value` is `NaN`, else `false`.
66400
- */
66401
- function baseIsNaN(value) {
66402
- return value !== value;
66403
- }
66404
-
66405
- /* harmony default export */ var _baseIsNaN = (baseIsNaN);
66406
-
66407
- // CONCATENATED MODULE: /home/runner/work/semi-design/semi-design/node_modules/lodash-es/_strictIndexOf.js
66408
- /**
66409
- * A specialized version of `_.indexOf` which performs strict equality
66410
- * comparisons of values, i.e. `===`.
66411
- *
66412
- * @private
66413
- * @param {Array} array The array to inspect.
66414
- * @param {*} value The value to search for.
66415
- * @param {number} fromIndex The index to search from.
66416
- * @returns {number} Returns the index of the matched value, else `-1`.
66417
- */
66418
- function strictIndexOf(array, value, fromIndex) {
66419
- var index = fromIndex - 1,
66420
- length = array.length;
66421
-
66422
- while (++index < length) {
66423
- if (array[index] === value) {
66424
- return index;
66425
- }
66426
- }
66427
- return -1;
66428
- }
66429
-
66430
- /* harmony default export */ var _strictIndexOf = (strictIndexOf);
66431
-
66432
- // CONCATENATED MODULE: /home/runner/work/semi-design/semi-design/node_modules/lodash-es/_baseIndexOf.js
66433
-
66434
-
66435
-
66436
-
66437
- /**
66438
- * The base implementation of `_.indexOf` without `fromIndex` bounds checks.
66439
- *
66440
- * @private
66441
- * @param {Array} array The array to inspect.
66442
- * @param {*} value The value to search for.
66443
- * @param {number} fromIndex The index to search from.
66444
- * @returns {number} Returns the index of the matched value, else `-1`.
66445
- */
66446
- function baseIndexOf(array, value, fromIndex) {
66447
- return value === value
66448
- ? _strictIndexOf(array, value, fromIndex)
66449
- : _baseFindIndex(array, _baseIsNaN, fromIndex);
66450
- }
66451
-
66452
- /* harmony default export */ var _baseIndexOf = (baseIndexOf);
66453
-
66454
- // CONCATENATED MODULE: /home/runner/work/semi-design/semi-design/node_modules/lodash-es/_arrayIncludes.js
66455
-
66456
-
66457
- /**
66458
- * A specialized version of `_.includes` for arrays without support for
66459
- * specifying an index to search from.
66460
- *
66461
- * @private
66462
- * @param {Array} [array] The array to inspect.
66463
- * @param {*} target The value to search for.
66464
- * @returns {boolean} Returns `true` if `target` is found, else `false`.
66465
- */
66466
- function arrayIncludes(array, value) {
66467
- var length = array == null ? 0 : array.length;
66468
- return !!length && _baseIndexOf(array, value, 0) > -1;
66469
- }
66470
-
66471
- /* harmony default export */ var _arrayIncludes = (arrayIncludes);
66472
-
66473
- // CONCATENATED MODULE: /home/runner/work/semi-design/semi-design/node_modules/lodash-es/_arrayIncludesWith.js
66474
- /**
66475
- * This function is like `arrayIncludes` except that it accepts a comparator.
66476
- *
66477
- * @private
66478
- * @param {Array} [array] The array to inspect.
66479
- * @param {*} target The value to search for.
66480
- * @param {Function} comparator The comparator invoked per element.
66481
- * @returns {boolean} Returns `true` if `target` is found, else `false`.
66482
- */
66483
- function arrayIncludesWith(array, value, comparator) {
66484
- var index = -1,
66485
- length = array == null ? 0 : array.length;
66486
-
66487
- while (++index < length) {
66488
- if (comparator(value, array[index])) {
66489
- return true;
66490
- }
66491
- }
66492
- return false;
66493
- }
66494
-
66495
- /* harmony default export */ var _arrayIncludesWith = (arrayIncludesWith);
66496
-
66497
- // CONCATENATED MODULE: /home/runner/work/semi-design/semi-design/node_modules/lodash-es/_arrayMap.js
66498
- /**
66499
- * A specialized version of `_.map` for arrays without support for iteratee
66500
- * shorthands.
66501
- *
66502
- * @private
66503
- * @param {Array} [array] The array to iterate over.
66504
- * @param {Function} iteratee The function invoked per iteration.
66505
- * @returns {Array} Returns the new mapped array.
66506
- */
66507
- function arrayMap(array, iteratee) {
66508
- var index = -1,
66509
- length = array == null ? 0 : array.length,
66510
- result = Array(length);
66511
-
66512
- while (++index < length) {
66513
- result[index] = iteratee(array[index], index, array);
66514
- }
66515
- return result;
66516
- }
66517
-
66518
- /* harmony default export */ var _arrayMap = (arrayMap);
66519
-
66520
- // CONCATENATED MODULE: /home/runner/work/semi-design/semi-design/node_modules/lodash-es/_baseUnary.js
66521
- /**
66522
- * The base implementation of `_.unary` without support for storing metadata.
66523
- *
66524
- * @private
66525
- * @param {Function} func The function to cap arguments for.
66526
- * @returns {Function} Returns the new capped function.
66527
- */
66528
- function baseUnary(func) {
66529
- return function(value) {
66530
- return func(value);
66531
- };
66532
- }
66533
-
66534
- /* harmony default export */ var _baseUnary = (baseUnary);
66535
-
66536
- // CONCATENATED MODULE: /home/runner/work/semi-design/semi-design/node_modules/lodash-es/_cacheHas.js
66537
- /**
66538
- * Checks if a `cache` value for `key` exists.
66539
- *
66540
- * @private
66541
- * @param {Object} cache The cache to query.
66542
- * @param {string} key The key of the entry to check.
66543
- * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`.
66544
- */
66545
- function cacheHas(cache, key) {
66546
- return cache.has(key);
66547
- }
66548
-
66549
- /* harmony default export */ var _cacheHas = (cacheHas);
66550
-
66551
- // CONCATENATED MODULE: /home/runner/work/semi-design/semi-design/node_modules/lodash-es/_baseDifference.js
66552
-
66553
-
66554
-
66555
-
66556
-
66557
-
66558
-
66559
- /** Used as the size to enable large array optimizations. */
66560
- var LARGE_ARRAY_SIZE = 200;
66561
-
66562
- /**
66563
- * The base implementation of methods like `_.difference` without support
66564
- * for excluding multiple arrays or iteratee shorthands.
66565
- *
66566
- * @private
66567
- * @param {Array} array The array to inspect.
66568
- * @param {Array} values The values to exclude.
66569
- * @param {Function} [iteratee] The iteratee invoked per element.
66570
- * @param {Function} [comparator] The comparator invoked per element.
66571
- * @returns {Array} Returns the new array of filtered values.
66572
- */
66573
- function baseDifference(array, values, iteratee, comparator) {
66574
- var index = -1,
66575
- includes = _arrayIncludes,
66576
- isCommon = true,
66577
- length = array.length,
66578
- result = [],
66579
- valuesLength = values.length;
66580
-
66581
- if (!length) {
66582
- return result;
66583
- }
66584
- if (iteratee) {
66585
- values = _arrayMap(values, _baseUnary(iteratee));
66586
- }
66587
- if (comparator) {
66588
- includes = _arrayIncludesWith;
66589
- isCommon = false;
66590
- }
66591
- else if (values.length >= LARGE_ARRAY_SIZE) {
66592
- includes = _cacheHas;
66593
- isCommon = false;
66594
- values = new _SetCache(values);
66595
- }
66596
- outer:
66597
- while (++index < length) {
66598
- var value = array[index],
66599
- computed = iteratee == null ? value : iteratee(value);
66600
-
66601
- value = (comparator || value !== 0) ? value : 0;
66602
- if (isCommon && computed === computed) {
66603
- var valuesIndex = valuesLength;
66604
- while (valuesIndex--) {
66605
- if (values[valuesIndex] === computed) {
66606
- continue outer;
66607
- }
66608
- }
66609
- result.push(value);
66610
- }
66611
- else if (!includes(values, computed, comparator)) {
66612
- result.push(value);
66613
- }
66614
- }
66615
- return result;
66616
- }
66617
-
66618
- /* harmony default export */ var _baseDifference = (baseDifference);
66619
-
66620
- // CONCATENATED MODULE: /home/runner/work/semi-design/semi-design/node_modules/lodash-es/identity.js
66621
- /**
66622
- * This method returns the first argument it receives.
66623
- *
66624
- * @static
66625
- * @since 0.1.0
66626
- * @memberOf _
66627
- * @category Util
66628
- * @param {*} value Any value.
66629
- * @returns {*} Returns `value`.
66630
- * @example
66631
- *
66632
- * var object = { 'a': 1 };
66633
- *
66634
- * console.log(_.identity(object) === object);
66635
- * // => true
66636
- */
66637
- function identity(value) {
66638
- return value;
66639
- }
66640
-
66641
- /* harmony default export */ var lodash_es_identity = (identity);
66642
-
66643
- // CONCATENATED MODULE: /home/runner/work/semi-design/semi-design/node_modules/lodash-es/_apply.js
66644
- /**
66645
- * A faster alternative to `Function#apply`, this function invokes `func`
66646
- * with the `this` binding of `thisArg` and the arguments of `args`.
66647
- *
66648
- * @private
66649
- * @param {Function} func The function to invoke.
66650
- * @param {*} thisArg The `this` binding of `func`.
66651
- * @param {Array} args The arguments to invoke `func` with.
66652
- * @returns {*} Returns the result of `func`.
66653
- */
66654
- function apply(func, thisArg, args) {
66655
- switch (args.length) {
66656
- case 0: return func.call(thisArg);
66657
- case 1: return func.call(thisArg, args[0]);
66658
- case 2: return func.call(thisArg, args[0], args[1]);
66659
- case 3: return func.call(thisArg, args[0], args[1], args[2]);
65113
+ };
65114
+ } else if (layout === 'horizontal') {
65115
+ overrideDefaultStyle = {
65116
+ 'marginTop': margin,
65117
+ 'marginBottom': margin
65118
+ };
65119
+ }
66660
65120
  }
66661
- return func.apply(thisArg, args);
66662
- }
66663
-
66664
- /* harmony default export */ var _apply = (apply);
66665
-
66666
- // CONCATENATED MODULE: /home/runner/work/semi-design/semi-design/node_modules/lodash-es/_overRest.js
66667
65121
 
65122
+ return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_default.a.createElement("div", assign_default()({}, rest, {
65123
+ className: dividerClassNames,
65124
+ style: assign_default()(assign_default()({}, overrideDefaultStyle), style)
65125
+ }), children && layout === 'horizontal' ? typeof children === 'string' ? /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_default.a.createElement("span", {
65126
+ className: "".concat(divider_prefixCls, "-divider_inner-text")
65127
+ }, children) : children : null);
65128
+ };
66668
65129
 
66669
- /* Built-in method references for those with the same name as other `lodash` methods. */
66670
- var nativeMax = Math.max;
65130
+ /* harmony default export */ var divider_0 = (Divider);
65131
+ // CONCATENATED MODULE: ../semi-foundation/empty/constants.ts
66671
65132
 
66672
- /**
66673
- * A specialized version of `baseRest` which transforms the rest array.
66674
- *
66675
- * @private
66676
- * @param {Function} func The function to apply a rest parameter to.
66677
- * @param {number} [start=func.length-1] The start position of the rest parameter.
66678
- * @param {Function} transform The rest array transform.
66679
- * @returns {Function} Returns the new function.
66680
- */
66681
- function overRest(func, start, transform) {
66682
- start = nativeMax(start === undefined ? (func.length - 1) : start, 0);
66683
- return function() {
66684
- var args = arguments,
66685
- index = -1,
66686
- length = nativeMax(args.length - start, 0),
66687
- array = Array(length);
65133
+ const empty_constants_cssClasses = {
65134
+ PREFIX: "".concat(BASE_CLASS_PREFIX, "-empty")
65135
+ };
65136
+ const empty_constants_strings = {
65137
+ LAYOUT: ['vertical', 'horizontal']
65138
+ };
66688
65139
 
66689
- while (++index < length) {
66690
- array[index] = args[start + index];
66691
- }
66692
- index = -1;
66693
- var otherArgs = Array(start + 1);
66694
- while (++index < start) {
66695
- otherArgs[index] = args[index];
66696
- }
66697
- otherArgs[start] = transform(array);
66698
- return _apply(func, this, otherArgs);
66699
- };
66700
- }
65140
+ // EXTERNAL MODULE: ../semi-foundation/empty/empty.scss
65141
+ var empty_empty = __webpack_require__("UO4o");
66701
65142
 
66702
- /* harmony default export */ var _overRest = (overRest);
65143
+ // CONCATENATED MODULE: ./empty/index.tsx
66703
65144
 
66704
- // CONCATENATED MODULE: /home/runner/work/semi-design/semi-design/node_modules/lodash-es/constant.js
66705
- /**
66706
- * Creates a function that returns `value`.
66707
- *
66708
- * @static
66709
- * @memberOf _
66710
- * @since 2.4.0
66711
- * @category Util
66712
- * @param {*} value The value to return from the new function.
66713
- * @returns {Function} Returns the new constant function.
66714
- * @example
66715
- *
66716
- * var objects = _.times(2, _.constant({ 'a': 1 }));
66717
- *
66718
- * console.log(objects);
66719
- * // => [{ 'a': 1 }, { 'a': 1 }]
66720
- *
66721
- * console.log(objects[0] === objects[1]);
66722
- * // => true
66723
- */
66724
- function constant(value) {
66725
- return function() {
66726
- return value;
66727
- };
66728
- }
66729
65145
 
66730
- /* harmony default export */ var lodash_es_constant = (constant);
66731
65146
 
66732
- // CONCATENATED MODULE: /home/runner/work/semi-design/semi-design/node_modules/lodash-es/_defineProperty.js
66733
65147
 
66734
65148
 
66735
- var defineProperty = (function() {
66736
- try {
66737
- var func = _getNative(Object, 'defineProperty');
66738
- func({}, '', {});
66739
- return func;
66740
- } catch (e) {}
66741
- }());
66742
65149
 
66743
- /* harmony default export */ var _defineProperty = (defineProperty);
66744
65150
 
66745
- // CONCATENATED MODULE: /home/runner/work/semi-design/semi-design/node_modules/lodash-es/_baseSetToString.js
66746
65151
 
65152
+ const empty_prefixCls = empty_constants_cssClasses.PREFIX;
65153
+ class empty_Empty extends baseComponent_BaseComponent {
65154
+ constructor(props) {
65155
+ super(props);
66747
65156
 
65157
+ this.observe = mutationsList => {
65158
+ for (const mutation of mutationsList) {
65159
+ if (mutation.type === 'attributes' && mutation.attributeName === 'theme-mode') {
65160
+ this.updateMode();
65161
+ }
65162
+ }
65163
+ };
66748
65164
 
65165
+ this.updateMode = () => {
65166
+ const val = this.body.getAttribute('theme-mode');
66749
65167
 
66750
- /**
66751
- * The base implementation of `setToString` without support for hot loop shorting.
66752
- *
66753
- * @private
66754
- * @param {Function} func The function to modify.
66755
- * @param {Function} string The `toString` result.
66756
- * @returns {Function} Returns `func`.
66757
- */
66758
- var baseSetToString = !_defineProperty ? lodash_es_identity : function(func, string) {
66759
- return _defineProperty(func, 'toString', {
66760
- 'configurable': true,
66761
- 'enumerable': false,
66762
- 'value': lodash_es_constant(string),
66763
- 'writable': true
66764
- });
66765
- };
65168
+ if (val !== this.state.mode) {
65169
+ this.setState({
65170
+ mode: val
65171
+ });
65172
+ }
65173
+ };
66766
65174
 
66767
- /* harmony default export */ var _baseSetToString = (baseSetToString);
65175
+ this.state = {
65176
+ mode: null
65177
+ };
65178
+ }
66768
65179
 
66769
- // CONCATENATED MODULE: /home/runner/work/semi-design/semi-design/node_modules/lodash-es/_shortOut.js
66770
- /** Used to detect hot functions by number of calls within a span of milliseconds. */
66771
- var HOT_COUNT = 800,
66772
- HOT_SPAN = 16;
65180
+ componentDidMount() {
65181
+ if (this.props.darkModeImage) {
65182
+ this.body = window.document.body;
65183
+ this.updateMode();
65184
+ const config = {
65185
+ attributes: true,
65186
+ childList: false,
65187
+ subtree: false
65188
+ };
65189
+ this.observer = new MutationObserver(this.observe);
65190
+ this.observer.observe(this.body, config);
65191
+ }
65192
+ }
66773
65193
 
66774
- /* Built-in method references for those with the same name as other `lodash` methods. */
66775
- var nativeNow = Date.now;
65194
+ componentWillUnmount() {
65195
+ this.observer && this.observer.disconnect();
65196
+ }
66776
65197
 
66777
- /**
66778
- * Creates a function that'll short out and invoke `identity` instead
66779
- * of `func` when it's called `HOT_COUNT` or more times in `HOT_SPAN`
66780
- * milliseconds.
66781
- *
66782
- * @private
66783
- * @param {Function} func The function to restrict.
66784
- * @returns {Function} Returns the new shortable function.
66785
- */
66786
- function shortOut(func) {
66787
- var count = 0,
66788
- lastCalled = 0;
65198
+ render() {
65199
+ var _context;
66789
65200
 
66790
- return function() {
66791
- var stamp = nativeNow(),
66792
- remaining = HOT_SPAN - (stamp - lastCalled);
65201
+ const {
65202
+ className,
65203
+ image,
65204
+ description,
65205
+ style,
65206
+ title,
65207
+ imageStyle,
65208
+ children,
65209
+ layout,
65210
+ darkModeImage
65211
+ } = this.props;
65212
+ const alt = typeof description === 'string' ? description : 'empty';
65213
+ const imgSrc = this.state.mode && darkModeImage ? darkModeImage : image;
65214
+ let imageNode = null;
66793
65215
 
66794
- lastCalled = stamp;
66795
- if (remaining > 0) {
66796
- if (++count >= HOT_COUNT) {
66797
- return arguments[0];
66798
- }
65216
+ if (typeof imgSrc === 'string') {
65217
+ imageNode = /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_default.a.createElement("img", {
65218
+ alt: alt,
65219
+ src: imgSrc
65220
+ });
65221
+ } else if (imgSrc && 'id' in imgSrc) {
65222
+ imageNode = /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_default.a.createElement("svg", {
65223
+ "aria-hidden": "true"
65224
+ }, /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_default.a.createElement("use", {
65225
+ xlinkHref: "#".concat(imgSrc.id)
65226
+ }));
66799
65227
  } else {
66800
- count = 0;
65228
+ imageNode = imgSrc;
66801
65229
  }
66802
- return func.apply(undefined, arguments);
66803
- };
65230
+
65231
+ const wrapperCls = classnames_default()(className, empty_prefixCls, {
65232
+ [concat_default()(_context = "".concat(empty_prefixCls, "-")).call(_context, layout)]: layout
65233
+ });
65234
+ const titleProps = imageNode ? {
65235
+ heading: 4
65236
+ } : {
65237
+ heading: 6,
65238
+ style: {
65239
+ fontWeight: 400
65240
+ }
65241
+ };
65242
+ return /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_default.a.createElement("div", {
65243
+ className: wrapperCls,
65244
+ style: style
65245
+ }, /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_default.a.createElement("div", {
65246
+ className: "".concat(empty_prefixCls, "-image"),
65247
+ style: imageStyle
65248
+ }, imageNode), /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_default.a.createElement("div", {
65249
+ className: "".concat(empty_prefixCls, "-content")
65250
+ }, title ? /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_default.a.createElement(typography_0.Title, assign_default()({}, titleProps, {
65251
+ className: "".concat(empty_prefixCls, "-title")
65252
+ }), title) : null, description ? /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_default.a.createElement("div", {
65253
+ className: "".concat(empty_prefixCls, "-description")
65254
+ }, description) : null, children ? /*#__PURE__*/external_root_React_commonjs2_react_commonjs_react_amd_react_default.a.createElement("div", {
65255
+ className: "".concat(empty_prefixCls, "-footer")
65256
+ }, children) : null));
65257
+ }
65258
+
66804
65259
  }
65260
+ empty_Empty.defaultProps = {
65261
+ layout: 'vertical'
65262
+ };
65263
+ // EXTERNAL MODULE: ../semi-foundation/modal/modal.scss
65264
+ var modal_modal = __webpack_require__("CbLw");
66805
65265
 
66806
- /* harmony default export */ var _shortOut = (shortOut);
65266
+ // EXTERNAL MODULE: /home/runner/work/semi-design/semi-design/node_modules/@babel/runtime-corejs3/core-js/global-this.js
65267
+ var global_this = __webpack_require__("re6r");
65268
+ var global_this_default = /*#__PURE__*/__webpack_require__.n(global_this);
66807
65269
 
66808
- // CONCATENATED MODULE: /home/runner/work/semi-design/semi-design/node_modules/lodash-es/_setToString.js
65270
+ // CONCATENATED MODULE: ../semi-foundation/modal/constants.ts
66809
65271
 
65272
+ const modal_constants_cssClasses = {
65273
+ DIALOG: "".concat(BASE_CLASS_PREFIX, "-modal")
65274
+ };
65275
+ const modal_constants_strings = {
65276
+ cancelKey: 'cancel',
65277
+ confirmKey: 'confirm',
65278
+ SIZE: ['small', 'medium', 'large', 'full-width'],
65279
+ directions: ['ltr', 'rtl']
65280
+ };
66810
65281
 
65282
+ // CONCATENATED MODULE: ../semi-foundation/modal/modalFoundation.ts
66811
65283
 
66812
- /**
66813
- * Sets the `toString` method of `func` to return `string`.
66814
- *
66815
- * @private
66816
- * @param {Function} func The function to modify.
66817
- * @param {Function} string The `toString` result.
66818
- * @returns {Function} Returns `func`.
66819
- */
66820
- var setToString = _shortOut(_baseSetToString);
66821
65284
 
66822
- /* harmony default export */ var _setToString = (setToString);
65285
+ class modalFoundation_ModalFoundation extends foundation {
65286
+ constructor(adapter) {
65287
+ super(assign_default()({}, adapter));
66823
65288
 
66824
- // CONCATENATED MODULE: /home/runner/work/semi-design/semi-design/node_modules/lodash-es/_baseRest.js
65289
+ this.toggleHidden = (hidden, callback) => {
65290
+ this._adapter.toggleHidden(hidden, callback);
65291
+ };
65292
+ }
66825
65293
 
65294
+ destroy() {
65295
+ this.afterHide();
65296
+ }
66826
65297
 
65298
+ handleCancel(e) {
65299
+ this._adapter.notifyCancel(e);
65300
+ }
66827
65301
 
65302
+ handleOk(e) {
65303
+ this._adapter.notifyOk(e);
65304
+ }
66828
65305
 
66829
- /**
66830
- * The base implementation of `_.rest` which doesn't validate or coerce arguments.
66831
- *
66832
- * @private
66833
- * @param {Function} func The function to apply a rest parameter to.
66834
- * @param {number} [start=func.length-1] The start position of the rest parameter.
66835
- * @returns {Function} Returns the new function.
66836
- */
66837
- function baseRest(func, start) {
66838
- return _setToString(_overRest(func, start, lodash_es_identity), func + '');
66839
- }
65306
+ beforeShow() {
65307
+ this._adapter.disabledBodyScroll();
65308
+ }
66840
65309
 
66841
- /* harmony default export */ var _baseRest = (baseRest);
65310
+ afterHide() {
65311
+ this._adapter.enabledBodyScroll();
65312
+ }
66842
65313
 
66843
- // CONCATENATED MODULE: /home/runner/work/semi-design/semi-design/node_modules/lodash-es/isLength.js
66844
- /** Used as references for various `Number` constants. */
66845
- var MAX_SAFE_INTEGER = 9007199254740991;
65314
+ afterClose() {
65315
+ this._adapter.notifyClose();
65316
+ }
66846
65317
 
66847
- /**
66848
- * Checks if `value` is a valid array-like length.
66849
- *
66850
- * **Note:** This method is loosely based on
66851
- * [`ToLength`](http://ecma-international.org/ecma-262/7.0/#sec-tolength).
66852
- *
66853
- * @static
66854
- * @memberOf _
66855
- * @since 4.0.0
66856
- * @category Lang
66857
- * @param {*} value The value to check.
66858
- * @returns {boolean} Returns `true` if `value` is a valid length, else `false`.
66859
- * @example
66860
- *
66861
- * _.isLength(3);
66862
- * // => true
66863
- *
66864
- * _.isLength(Number.MIN_VALUE);
66865
- * // => false
66866
- *
66867
- * _.isLength(Infinity);
66868
- * // => false
66869
- *
66870
- * _.isLength('3');
66871
- * // => false
66872
- */
66873
- function isLength(value) {
66874
- return typeof value == 'number' &&
66875
- value > -1 && value % 1 == 0 && value <= MAX_SAFE_INTEGER;
66876
65318
  }
65319
+ // CONCATENATED MODULE: ../semi-foundation/modal/modalContentFoundation.ts
66877
65320
 
66878
- /* harmony default export */ var lodash_es_isLength = (isLength);
66879
-
66880
- // CONCATENATED MODULE: /home/runner/work/semi-design/semi-design/node_modules/lodash-es/isArrayLike.js
66881
65321
 
66882
65322
 
65323
+ class modalContentFoundation_ModalContentFoundation extends foundation {
65324
+ constructor(adapter) {
65325
+ super(assign_default()(assign_default()({}, modalContentFoundation_ModalContentFoundation.defaultAdapter), adapter));
65326
+ }
66883
65327
 
66884
- /**
66885
- * Checks if `value` is array-like. A value is considered array-like if it's
66886
- * not a function and has a `value.length` that's an integer greater than or
66887
- * equal to `0` and less than or equal to `Number.MAX_SAFE_INTEGER`.
66888
- *
66889
- * @static
66890
- * @memberOf _
66891
- * @since 4.0.0
66892
- * @category Lang
66893
- * @param {*} value The value to check.
66894
- * @returns {boolean} Returns `true` if `value` is array-like, else `false`.
66895
- * @example
66896
- *
66897
- * _.isArrayLike([1, 2, 3]);
66898
- * // => true
66899
- *
66900
- * _.isArrayLike(document.body.children);
66901
- * // => true
66902
- *
66903
- * _.isArrayLike('abc');
66904
- * // => true
66905
- *
66906
- * _.isArrayLike(_.noop);
66907
- * // => false
66908
- */
66909
- function isArrayLike(value) {
66910
- return value != null && lodash_es_isLength(value.length) && !lodash_es_isFunction(value);
66911
- }
65328
+ destroy() {
65329
+ this.handleKeyDownEventListenerUnmount();
65330
+ this.modalDialogBlur();
65331
+ this.prevFocusElementReFocus();
65332
+ }
66912
65333
 
66913
- /* harmony default export */ var lodash_es_isArrayLike = (isArrayLike);
65334
+ handleDialogMouseDown() {
65335
+ this._adapter.notifyDialogMouseDown();
65336
+ }
66914
65337
 
66915
- // CONCATENATED MODULE: /home/runner/work/semi-design/semi-design/node_modules/lodash-es/isObjectLike.js
66916
- /**
66917
- * Checks if `value` is object-like. A value is object-like if it's not `null`
66918
- * and has a `typeof` result of "object".
66919
- *
66920
- * @static
66921
- * @memberOf _
66922
- * @since 4.0.0
66923
- * @category Lang
66924
- * @param {*} value The value to check.
66925
- * @returns {boolean} Returns `true` if `value` is object-like, else `false`.
66926
- * @example
66927
- *
66928
- * _.isObjectLike({});
66929
- * // => true
66930
- *
66931
- * _.isObjectLike([1, 2, 3]);
66932
- * // => true
66933
- *
66934
- * _.isObjectLike(_.noop);
66935
- * // => false
66936
- *
66937
- * _.isObjectLike(null);
66938
- * // => false
66939
- */
66940
- function isObjectLike(value) {
66941
- return value != null && typeof value == 'object';
66942
- }
65338
+ handleMaskMouseUp() {
65339
+ this._adapter.notifyDialogMouseUp();
65340
+ }
66943
65341
 
66944
- /* harmony default export */ var lodash_es_isObjectLike = (isObjectLike);
65342
+ handleKeyDown(e) {
65343
+ const {
65344
+ closeOnEsc
65345
+ } = this.getProps();
66945
65346
 
66946
- // CONCATENATED MODULE: /home/runner/work/semi-design/semi-design/node_modules/lodash-es/isArrayLikeObject.js
65347
+ if (closeOnEsc && e.keyCode === utils_keyCode.ESC) {
65348
+ e.stopPropagation();
65349
+ this.close(e);
65350
+ return;
65351
+ }
65352
+ }
66947
65353
 
65354
+ handleKeyDownEventListenerMount() {
65355
+ this._adapter.addKeyDownEventListener();
65356
+ }
66948
65357
 
65358
+ handleKeyDownEventListenerUnmount() {
65359
+ this._adapter.removeKeyDownEventListener();
65360
+ }
66949
65361
 
66950
- /**
66951
- * This method is like `_.isArrayLike` except that it also checks if `value`
66952
- * is an object.
66953
- *
66954
- * @static
66955
- * @memberOf _
66956
- * @since 4.0.0
66957
- * @category Lang
66958
- * @param {*} value The value to check.
66959
- * @returns {boolean} Returns `true` if `value` is an array-like object,
66960
- * else `false`.
66961
- * @example
66962
- *
66963
- * _.isArrayLikeObject([1, 2, 3]);
66964
- * // => true
66965
- *
66966
- * _.isArrayLikeObject(document.body.children);
66967
- * // => true
66968
- *
66969
- * _.isArrayLikeObject('abc');
66970
- * // => false
66971
- *
66972
- * _.isArrayLikeObject(_.noop);
66973
- * // => false
66974
- */
66975
- function isArrayLikeObject(value) {
66976
- return lodash_es_isObjectLike(value) && lodash_es_isArrayLike(value);
66977
- }
65362
+ getMouseState() {
65363
+ this._adapter.getMouseState();
65364
+ }
66978
65365
 
66979
- /* harmony default export */ var lodash_es_isArrayLikeObject = (isArrayLikeObject);
65366
+ handleMaskClick(e) {
65367
+ const {
65368
+ dialogMouseDown
65369
+ } = this.getStates();
66980
65370
 
66981
- // CONCATENATED MODULE: /home/runner/work/semi-design/semi-design/node_modules/lodash-es/without.js
65371
+ if (e.target === e.currentTarget && !dialogMouseDown) {
65372
+ this.close(e);
65373
+ }
65374
+ }
66982
65375
 
65376
+ close(e) {
65377
+ this._adapter.notifyClose(e);
65378
+ }
66983
65379
 
65380
+ modalDialogFocus() {
65381
+ this._adapter.modalDialogFocus();
65382
+ }
66984
65383
 
65384
+ modalDialogBlur() {
65385
+ this._adapter.modalDialogBlur();
65386
+ }
66985
65387
 
66986
- /**
66987
- * Creates an array excluding all given values using
66988
- * [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero)
66989
- * for equality comparisons.
66990
- *
66991
- * **Note:** Unlike `_.pull`, this method returns a new array.
66992
- *
66993
- * @static
66994
- * @memberOf _
66995
- * @since 0.1.0
66996
- * @category Array
66997
- * @param {Array} array The array to inspect.
66998
- * @param {...*} [values] The values to exclude.
66999
- * @returns {Array} Returns the new array of filtered values.
67000
- * @see _.difference, _.xor
67001
- * @example
67002
- *
67003
- * _.without([2, 1, 2, 3], 1, 2);
67004
- * // => [3]
67005
- */
67006
- var without = _baseRest(function(array, values) {
67007
- return lodash_es_isArrayLikeObject(array)
67008
- ? _baseDifference(array, values)
67009
- : [];
67010
- });
65388
+ prevFocusElementReFocus() {
65389
+ this._adapter.prevFocusElementReFocus();
65390
+ }
67011
65391
 
67012
- /* harmony default export */ var lodash_es_without = (without);
65392
+ }
65393
+ // EXTERNAL MODULE: /home/runner/work/semi-design/semi-design/node_modules/lodash/without.js
65394
+ var without = __webpack_require__("uUTq");
65395
+ var without_default = /*#__PURE__*/__webpack_require__.n(without);
67013
65396
 
67014
65397
  // EXTERNAL MODULE: /home/runner/work/semi-design/semi-design/node_modules/@babel/runtime-corejs3/core-js-stable/object/freeze.js
67015
65398
  var freeze = __webpack_require__("p7I/");
@@ -67049,7 +65432,7 @@ class FocusHandle_FocusTrapHandle {
67049
65432
  };
67050
65433
 
67051
65434
  this.removeFocusRedirectListener = listener => {
67052
- this.focusRedirectListenerList = lodash_es_without(this.focusRedirectListenerList, listener);
65435
+ this.focusRedirectListenerList = without_default()(this.focusRedirectListenerList, listener);
67053
65436
  };
67054
65437
 
67055
65438
  this.destroy = () => {
@@ -102029,13 +100412,13 @@ var core_js_stable_url = __webpack_require__("QjT4");
102029
100412
  var url_default = /*#__PURE__*/__webpack_require__.n(core_js_stable_url);
102030
100413
 
102031
100414
  // CONCATENATED MODULE: ../semi-foundation/utils/isObject.ts
102032
- function utils_isObject_isObject(obj) {
100415
+ function isObject_isObject(obj) {
102033
100416
  return obj !== null && typeof obj === 'object';
102034
100417
  }
102035
100418
  // CONCATENATED MODULE: ../semi-foundation/utils/isPromise.ts
102036
100419
 
102037
100420
  function isPromise(value) {
102038
- return utils_isObject_isObject(value) && typeof value.then === 'function';
100421
+ return isObject_isObject(value) && typeof value.then === 'function';
102039
100422
  }
102040
100423
  // CONCATENATED MODULE: ../semi-foundation/upload/constants.ts
102041
100424
 
@@ -104562,7 +102945,7 @@ function _slicedToArray(arr, i) {
104562
102945
  return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest();
104563
102946
  }
104564
102947
  // CONCATENATED MODULE: /home/runner/work/semi-design/semi-design/node_modules/@babel/runtime/helpers/esm/defineProperty.js
104565
- function defineProperty_defineProperty(obj, key, value) {
102948
+ function _defineProperty(obj, key, value) {
104566
102949
  if (key in obj) {
104567
102950
  Object.defineProperty(obj, key, {
104568
102951
  value: value,
@@ -104590,7 +102973,7 @@ function _objectSpread(target) {
104590
102973
  }
104591
102974
 
104592
102975
  ownKeys.forEach(function (key) {
104593
- defineProperty_defineProperty(target, key, source[key]);
102976
+ _defineProperty(target, key, source[key]);
104594
102977
  });
104595
102978
  }
104596
102979
 
@@ -104719,7 +103102,7 @@ var react_sortable_hoc_esm_Manager = function () {
104719
103102
  function Manager() {
104720
103103
  _classCallCheck(this, Manager);
104721
103104
 
104722
- defineProperty_defineProperty(this, "refs", {});
103105
+ _defineProperty(this, "refs", {});
104723
103106
  }
104724
103107
 
104725
103108
  _createClass(Manager, [{
@@ -105066,7 +103449,7 @@ function sortableHandle(WrappedComponent) {
105066
103449
 
105067
103450
  _this = _possibleConstructorReturn(this, (_getPrototypeOf2 = _getPrototypeOf(WithSortableHandle)).call.apply(_getPrototypeOf2, [this].concat(args)));
105068
103451
 
105069
- defineProperty_defineProperty(_assertThisInitialized(_assertThisInitialized(_this)), "wrappedInstance", Object(external_root_React_commonjs2_react_commonjs_react_amd_react_["createRef"])());
103452
+ _defineProperty(_assertThisInitialized(_assertThisInitialized(_this)), "wrappedInstance", Object(external_root_React_commonjs2_react_commonjs_react_amd_react_["createRef"])());
105070
103453
 
105071
103454
  return _this;
105072
103455
  }
@@ -105094,7 +103477,7 @@ function sortableHandle(WrappedComponent) {
105094
103477
  }]);
105095
103478
 
105096
103479
  return WithSortableHandle;
105097
- }(external_root_React_commonjs2_react_commonjs_react_amd_react_["Component"]), defineProperty_defineProperty(_class, "displayName", provideDisplayName('sortableHandle', WrappedComponent)), _temp;
103480
+ }(external_root_React_commonjs2_react_commonjs_react_amd_react_["Component"]), _defineProperty(_class, "displayName", provideDisplayName('sortableHandle', WrappedComponent)), _temp;
105098
103481
  }
105099
103482
  function isSortableHandle(node) {
105100
103483
  return node.sortableHandle != null;
@@ -105306,9 +103689,9 @@ function sortableContainer(WrappedComponent) {
105306
103689
 
105307
103690
  _this = _possibleConstructorReturn(this, _getPrototypeOf(WithSortableContainer).call(this, props));
105308
103691
 
105309
- defineProperty_defineProperty(_assertThisInitialized(_assertThisInitialized(_this)), "state", {});
103692
+ _defineProperty(_assertThisInitialized(_assertThisInitialized(_this)), "state", {});
105310
103693
 
105311
- defineProperty_defineProperty(_assertThisInitialized(_assertThisInitialized(_this)), "handleStart", function (event) {
103694
+ _defineProperty(_assertThisInitialized(_assertThisInitialized(_this)), "handleStart", function (event) {
105312
103695
  var _this$props = _this.props,
105313
103696
  distance = _this$props.distance,
105314
103697
  shouldCancelStart = _this$props.shouldCancelStart;
@@ -105359,11 +103742,11 @@ function sortableContainer(WrappedComponent) {
105359
103742
  }
105360
103743
  });
105361
103744
 
105362
- defineProperty_defineProperty(_assertThisInitialized(_assertThisInitialized(_this)), "nodeIsChild", function (node) {
103745
+ _defineProperty(_assertThisInitialized(_assertThisInitialized(_this)), "nodeIsChild", function (node) {
105363
103746
  return node.sortableInfo.manager === _this.manager;
105364
103747
  });
105365
103748
 
105366
- defineProperty_defineProperty(_assertThisInitialized(_assertThisInitialized(_this)), "handleMove", function (event) {
103749
+ _defineProperty(_assertThisInitialized(_assertThisInitialized(_this)), "handleMove", function (event) {
105367
103750
  var _this$props2 = _this.props,
105368
103751
  distance = _this$props2.distance,
105369
103752
  pressThreshold = _this$props2.pressThreshold;
@@ -105386,13 +103769,13 @@ function sortableContainer(WrappedComponent) {
105386
103769
  }
105387
103770
  });
105388
103771
 
105389
- defineProperty_defineProperty(_assertThisInitialized(_assertThisInitialized(_this)), "handleEnd", function () {
103772
+ _defineProperty(_assertThisInitialized(_assertThisInitialized(_this)), "handleEnd", function () {
105390
103773
  _this.touched = false;
105391
103774
 
105392
103775
  _this.cancel();
105393
103776
  });
105394
103777
 
105395
- defineProperty_defineProperty(_assertThisInitialized(_assertThisInitialized(_this)), "cancel", function () {
103778
+ _defineProperty(_assertThisInitialized(_assertThisInitialized(_this)), "cancel", function () {
105396
103779
  var distance = _this.props.distance;
105397
103780
  var sorting = _this.state.sorting;
105398
103781
 
@@ -105405,7 +103788,7 @@ function sortableContainer(WrappedComponent) {
105405
103788
  }
105406
103789
  });
105407
103790
 
105408
- defineProperty_defineProperty(_assertThisInitialized(_assertThisInitialized(_this)), "handlePress", function (event) {
103791
+ _defineProperty(_assertThisInitialized(_assertThisInitialized(_this)), "handlePress", function (event) {
105409
103792
  try {
105410
103793
  var active = _this.manager.getActive();
105411
103794
 
@@ -105610,7 +103993,7 @@ function sortableContainer(WrappedComponent) {
105610
103993
  }
105611
103994
  });
105612
103995
 
105613
- defineProperty_defineProperty(_assertThisInitialized(_assertThisInitialized(_this)), "handleSortMove", function (event) {
103996
+ _defineProperty(_assertThisInitialized(_assertThisInitialized(_this)), "handleSortMove", function (event) {
105614
103997
  var onSortMove = _this.props.onSortMove;
105615
103998
 
105616
103999
  if (typeof event.preventDefault === 'function' && event.cancelable) {
@@ -105628,7 +104011,7 @@ function sortableContainer(WrappedComponent) {
105628
104011
  }
105629
104012
  });
105630
104013
 
105631
- defineProperty_defineProperty(_assertThisInitialized(_assertThisInitialized(_this)), "handleSortEnd", function (event) {
104014
+ _defineProperty(_assertThisInitialized(_assertThisInitialized(_this)), "handleSortEnd", function (event) {
105632
104015
  var _this$props4 = _this.props,
105633
104016
  hideSortableGhost = _this$props4.hideSortableGhost,
105634
104017
  onSortEnd = _this$props4.onSortEnd;
@@ -105697,7 +104080,7 @@ function sortableContainer(WrappedComponent) {
105697
104080
  _this.touched = false;
105698
104081
  });
105699
104082
 
105700
- defineProperty_defineProperty(_assertThisInitialized(_assertThisInitialized(_this)), "autoscroll", function () {
104083
+ _defineProperty(_assertThisInitialized(_assertThisInitialized(_this)), "autoscroll", function () {
105701
104084
  var disableAutoscroll = _this.props.disableAutoscroll;
105702
104085
  var isKeySorting = _this.manager.isKeySorting;
105703
104086
 
@@ -105739,14 +104122,14 @@ function sortableContainer(WrappedComponent) {
105739
104122
  });
105740
104123
  });
105741
104124
 
105742
- defineProperty_defineProperty(_assertThisInitialized(_assertThisInitialized(_this)), "onAutoScroll", function (offset) {
104125
+ _defineProperty(_assertThisInitialized(_assertThisInitialized(_this)), "onAutoScroll", function (offset) {
105743
104126
  _this.translate.x += offset.left;
105744
104127
  _this.translate.y += offset.top;
105745
104128
 
105746
104129
  _this.animateNodes();
105747
104130
  });
105748
104131
 
105749
- defineProperty_defineProperty(_assertThisInitialized(_assertThisInitialized(_this)), "handleKeyDown", function (event) {
104132
+ _defineProperty(_assertThisInitialized(_assertThisInitialized(_this)), "handleKeyDown", function (event) {
105750
104133
  var keyCode = event.keyCode;
105751
104134
  var _this$props5 = _this.props,
105752
104135
  shouldCancelStart = _this$props5.shouldCancelStart,
@@ -105777,7 +104160,7 @@ function sortableContainer(WrappedComponent) {
105777
104160
  }
105778
104161
  });
105779
104162
 
105780
- defineProperty_defineProperty(_assertThisInitialized(_assertThisInitialized(_this)), "keyLift", function (event) {
104163
+ _defineProperty(_assertThisInitialized(_assertThisInitialized(_this)), "keyLift", function (event) {
105781
104164
  var target = event.target;
105782
104165
  var node = closest(target, function (el) {
105783
104166
  return el.sortableInfo != null;
@@ -105795,7 +104178,7 @@ function sortableContainer(WrappedComponent) {
105795
104178
  _this.handlePress(event);
105796
104179
  });
105797
104180
 
105798
- defineProperty_defineProperty(_assertThisInitialized(_assertThisInitialized(_this)), "keyMove", function (shift) {
104181
+ _defineProperty(_assertThisInitialized(_assertThisInitialized(_this)), "keyMove", function (shift) {
105799
104182
  var nodes = _this.manager.getOrderedRefs();
105800
104183
 
105801
104184
  var lastIndex = nodes[nodes.length - 1].node.sortableInfo.index;
@@ -105837,7 +104220,7 @@ function sortableContainer(WrappedComponent) {
105837
104220
  });
105838
104221
  });
105839
104222
 
105840
- defineProperty_defineProperty(_assertThisInitialized(_assertThisInitialized(_this)), "keyDrop", function (event) {
104223
+ _defineProperty(_assertThisInitialized(_assertThisInitialized(_this)), "keyDrop", function (event) {
105841
104224
  _this.handleSortEnd(event);
105842
104225
 
105843
104226
  if (_this.initialFocusedNode) {
@@ -105845,13 +104228,13 @@ function sortableContainer(WrappedComponent) {
105845
104228
  }
105846
104229
  });
105847
104230
 
105848
- defineProperty_defineProperty(_assertThisInitialized(_assertThisInitialized(_this)), "handleKeyEnd", function (event) {
104231
+ _defineProperty(_assertThisInitialized(_assertThisInitialized(_this)), "handleKeyEnd", function (event) {
105849
104232
  if (_this.manager.active) {
105850
104233
  _this.keyDrop(event);
105851
104234
  }
105852
104235
  });
105853
104236
 
105854
- defineProperty_defineProperty(_assertThisInitialized(_assertThisInitialized(_this)), "isValidSortingTarget", function (event) {
104237
+ _defineProperty(_assertThisInitialized(_assertThisInitialized(_this)), "isValidSortingTarget", function (event) {
105855
104238
  var useDragHandle = _this.props.useDragHandle;
105856
104239
  var target = event.target;
105857
104240
  var node = closest(target, function (el) {
@@ -106188,7 +104571,7 @@ function sortableContainer(WrappedComponent) {
106188
104571
  }]);
106189
104572
 
106190
104573
  return WithSortableContainer;
106191
- }(external_root_React_commonjs2_react_commonjs_react_amd_react_["Component"]), defineProperty_defineProperty(_class, "displayName", provideDisplayName('sortableList', WrappedComponent)), defineProperty_defineProperty(_class, "defaultProps", react_sortable_hoc_esm_defaultProps), defineProperty_defineProperty(_class, "propTypes", propTypes), _temp;
104574
+ }(external_root_React_commonjs2_react_commonjs_react_amd_react_["Component"]), _defineProperty(_class, "displayName", provideDisplayName('sortableList', WrappedComponent)), _defineProperty(_class, "defaultProps", react_sortable_hoc_esm_defaultProps), _defineProperty(_class, "propTypes", propTypes), _temp;
106192
104575
  }
106193
104576
 
106194
104577
  var propTypes$1 = {
@@ -106219,7 +104602,7 @@ function sortableElement(WrappedComponent) {
106219
104602
 
106220
104603
  _this = _possibleConstructorReturn(this, (_getPrototypeOf2 = _getPrototypeOf(WithSortableElement)).call.apply(_getPrototypeOf2, [this].concat(args)));
106221
104604
 
106222
- defineProperty_defineProperty(_assertThisInitialized(_assertThisInitialized(_this)), "wrappedInstance", Object(external_root_React_commonjs2_react_commonjs_react_amd_react_["createRef"])());
104605
+ _defineProperty(_assertThisInitialized(_assertThisInitialized(_this)), "wrappedInstance", Object(external_root_React_commonjs2_react_commonjs_react_amd_react_["createRef"])());
106223
104606
 
106224
104607
  return _this;
106225
104608
  }
@@ -106295,7 +104678,7 @@ function sortableElement(WrappedComponent) {
106295
104678
  }]);
106296
104679
 
106297
104680
  return WithSortableElement;
106298
- }(external_root_React_commonjs2_react_commonjs_react_amd_react_["Component"]), defineProperty_defineProperty(_class, "displayName", provideDisplayName('sortableElement', WrappedComponent)), defineProperty_defineProperty(_class, "contextType", SortableContext), defineProperty_defineProperty(_class, "propTypes", propTypes$1), defineProperty_defineProperty(_class, "defaultProps", {
104681
+ }(external_root_React_commonjs2_react_commonjs_react_amd_react_["Component"]), _defineProperty(_class, "displayName", provideDisplayName('sortableElement', WrappedComponent)), _defineProperty(_class, "contextType", SortableContext), _defineProperty(_class, "propTypes", propTypes$1), _defineProperty(_class, "defaultProps", {
106299
104682
  collection: 0
106300
104683
  }), _temp;
106301
104684
  }
@@ -111851,6 +110234,44 @@ $({ target: 'Date', stat: true }, {
111851
110234
  });
111852
110235
 
111853
110236
 
110237
+ /***/ }),
110238
+
110239
+ /***/ "uUTq":
110240
+ /***/ (function(module, exports, __webpack_require__) {
110241
+
110242
+ var baseDifference = __webpack_require__("X+YX"),
110243
+ baseRest = __webpack_require__("R3TX"),
110244
+ isArrayLikeObject = __webpack_require__("Ndl3");
110245
+
110246
+ /**
110247
+ * Creates an array excluding all given values using
110248
+ * [`SameValueZero`](http://ecma-international.org/ecma-262/7.0/#sec-samevaluezero)
110249
+ * for equality comparisons.
110250
+ *
110251
+ * **Note:** Unlike `_.pull`, this method returns a new array.
110252
+ *
110253
+ * @static
110254
+ * @memberOf _
110255
+ * @since 0.1.0
110256
+ * @category Array
110257
+ * @param {Array} array The array to inspect.
110258
+ * @param {...*} [values] The values to exclude.
110259
+ * @returns {Array} Returns the new array of filtered values.
110260
+ * @see _.difference, _.xor
110261
+ * @example
110262
+ *
110263
+ * _.without([2, 1, 2, 3], 1, 2);
110264
+ * // => [3]
110265
+ */
110266
+ var without = baseRest(function(array, values) {
110267
+ return isArrayLikeObject(array)
110268
+ ? baseDifference(array, values)
110269
+ : [];
110270
+ });
110271
+
110272
+ module.exports = without;
110273
+
110274
+
111854
110275
  /***/ }),
111855
110276
 
111856
110277
  /***/ "uZih":