@ant-design/icons 4.8.1-0 → 4.8.1

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/dist/index.umd.js CHANGED
@@ -10,6 +10,8 @@
10
10
 
11
11
  var IconContext = /*#__PURE__*/React.createContext({});
12
12
 
13
+ var commonjsGlobal = typeof globalThis !== 'undefined' ? globalThis : typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {};
14
+
13
15
  function getDefaultExportFromCjs (x) {
14
16
  return x && x.__esModule && Object.prototype.hasOwnProperty.call(x, 'default') ? x['default'] : x;
15
17
  }
@@ -1345,6 +1347,835 @@
1345
1347
  }
1346
1348
  });
1347
1349
 
1350
+ /** Detect free variable `global` from Node.js. */
1351
+ var freeGlobal = typeof commonjsGlobal == 'object' && commonjsGlobal && commonjsGlobal.Object === Object && commonjsGlobal;
1352
+
1353
+ var _freeGlobal = freeGlobal;
1354
+
1355
+ /** Detect free variable `self`. */
1356
+ var freeSelf = typeof self == 'object' && self && self.Object === Object && self;
1357
+
1358
+ /** Used as a reference to the global object. */
1359
+ var root = _freeGlobal || freeSelf || Function('return this')();
1360
+
1361
+ var _root = root;
1362
+
1363
+ /** Built-in value references. */
1364
+ var Symbol$1 = _root.Symbol;
1365
+
1366
+ var _Symbol = Symbol$1;
1367
+
1368
+ /**
1369
+ * A specialized version of `_.map` for arrays without support for iteratee
1370
+ * shorthands.
1371
+ *
1372
+ * @private
1373
+ * @param {Array} [array] The array to iterate over.
1374
+ * @param {Function} iteratee The function invoked per iteration.
1375
+ * @returns {Array} Returns the new mapped array.
1376
+ */
1377
+ function arrayMap(array, iteratee) {
1378
+ var index = -1,
1379
+ length = array == null ? 0 : array.length,
1380
+ result = Array(length);
1381
+
1382
+ while (++index < length) {
1383
+ result[index] = iteratee(array[index], index, array);
1384
+ }
1385
+ return result;
1386
+ }
1387
+
1388
+ var _arrayMap = arrayMap;
1389
+
1390
+ /**
1391
+ * Checks if `value` is classified as an `Array` object.
1392
+ *
1393
+ * @static
1394
+ * @memberOf _
1395
+ * @since 0.1.0
1396
+ * @category Lang
1397
+ * @param {*} value The value to check.
1398
+ * @returns {boolean} Returns `true` if `value` is an array, else `false`.
1399
+ * @example
1400
+ *
1401
+ * _.isArray([1, 2, 3]);
1402
+ * // => true
1403
+ *
1404
+ * _.isArray(document.body.children);
1405
+ * // => false
1406
+ *
1407
+ * _.isArray('abc');
1408
+ * // => false
1409
+ *
1410
+ * _.isArray(_.noop);
1411
+ * // => false
1412
+ */
1413
+ var isArray = Array.isArray;
1414
+
1415
+ var isArray_1 = isArray;
1416
+
1417
+ /** Used for built-in method references. */
1418
+ var objectProto = Object.prototype;
1419
+
1420
+ /** Used to check objects for own properties. */
1421
+ var hasOwnProperty = objectProto.hasOwnProperty;
1422
+
1423
+ /**
1424
+ * Used to resolve the
1425
+ * [`toStringTag`](http://ecma-international.org/ecma-262/7.0/#sec-object.prototype.tostring)
1426
+ * of values.
1427
+ */
1428
+ var nativeObjectToString = objectProto.toString;
1429
+
1430
+ /** Built-in value references. */
1431
+ var symToStringTag = _Symbol ? _Symbol.toStringTag : undefined;
1432
+
1433
+ /**
1434
+ * A specialized version of `baseGetTag` which ignores `Symbol.toStringTag` values.
1435
+ *
1436
+ * @private
1437
+ * @param {*} value The value to query.
1438
+ * @returns {string} Returns the raw `toStringTag`.
1439
+ */
1440
+ function getRawTag(value) {
1441
+ var isOwn = hasOwnProperty.call(value, symToStringTag),
1442
+ tag = value[symToStringTag];
1443
+
1444
+ try {
1445
+ value[symToStringTag] = undefined;
1446
+ var unmasked = true;
1447
+ } catch (e) {}
1448
+
1449
+ var result = nativeObjectToString.call(value);
1450
+ if (unmasked) {
1451
+ if (isOwn) {
1452
+ value[symToStringTag] = tag;
1453
+ } else {
1454
+ delete value[symToStringTag];
1455
+ }
1456
+ }
1457
+ return result;
1458
+ }
1459
+
1460
+ var _getRawTag = getRawTag;
1461
+
1462
+ /** Used for built-in method references. */
1463
+ var objectProto$1 = Object.prototype;
1464
+
1465
+ /**
1466
+ * Used to resolve the
1467
+ * [`toStringTag`](http://ecma-international.org/ecma-262/7.0/#sec-object.prototype.tostring)
1468
+ * of values.
1469
+ */
1470
+ var nativeObjectToString$1 = objectProto$1.toString;
1471
+
1472
+ /**
1473
+ * Converts `value` to a string using `Object.prototype.toString`.
1474
+ *
1475
+ * @private
1476
+ * @param {*} value The value to convert.
1477
+ * @returns {string} Returns the converted string.
1478
+ */
1479
+ function objectToString(value) {
1480
+ return nativeObjectToString$1.call(value);
1481
+ }
1482
+
1483
+ var _objectToString = objectToString;
1484
+
1485
+ /** `Object#toString` result references. */
1486
+ var nullTag = '[object Null]',
1487
+ undefinedTag = '[object Undefined]';
1488
+
1489
+ /** Built-in value references. */
1490
+ var symToStringTag$1 = _Symbol ? _Symbol.toStringTag : undefined;
1491
+
1492
+ /**
1493
+ * The base implementation of `getTag` without fallbacks for buggy environments.
1494
+ *
1495
+ * @private
1496
+ * @param {*} value The value to query.
1497
+ * @returns {string} Returns the `toStringTag`.
1498
+ */
1499
+ function baseGetTag(value) {
1500
+ if (value == null) {
1501
+ return value === undefined ? undefinedTag : nullTag;
1502
+ }
1503
+ return (symToStringTag$1 && symToStringTag$1 in Object(value))
1504
+ ? _getRawTag(value)
1505
+ : _objectToString(value);
1506
+ }
1507
+
1508
+ var _baseGetTag = baseGetTag;
1509
+
1510
+ /**
1511
+ * Checks if `value` is object-like. A value is object-like if it's not `null`
1512
+ * and has a `typeof` result of "object".
1513
+ *
1514
+ * @static
1515
+ * @memberOf _
1516
+ * @since 4.0.0
1517
+ * @category Lang
1518
+ * @param {*} value The value to check.
1519
+ * @returns {boolean} Returns `true` if `value` is object-like, else `false`.
1520
+ * @example
1521
+ *
1522
+ * _.isObjectLike({});
1523
+ * // => true
1524
+ *
1525
+ * _.isObjectLike([1, 2, 3]);
1526
+ * // => true
1527
+ *
1528
+ * _.isObjectLike(_.noop);
1529
+ * // => false
1530
+ *
1531
+ * _.isObjectLike(null);
1532
+ * // => false
1533
+ */
1534
+ function isObjectLike(value) {
1535
+ return value != null && typeof value == 'object';
1536
+ }
1537
+
1538
+ var isObjectLike_1 = isObjectLike;
1539
+
1540
+ /** `Object#toString` result references. */
1541
+ var symbolTag = '[object Symbol]';
1542
+
1543
+ /**
1544
+ * Checks if `value` is classified as a `Symbol` primitive or object.
1545
+ *
1546
+ * @static
1547
+ * @memberOf _
1548
+ * @since 4.0.0
1549
+ * @category Lang
1550
+ * @param {*} value The value to check.
1551
+ * @returns {boolean} Returns `true` if `value` is a symbol, else `false`.
1552
+ * @example
1553
+ *
1554
+ * _.isSymbol(Symbol.iterator);
1555
+ * // => true
1556
+ *
1557
+ * _.isSymbol('abc');
1558
+ * // => false
1559
+ */
1560
+ function isSymbol(value) {
1561
+ return typeof value == 'symbol' ||
1562
+ (isObjectLike_1(value) && _baseGetTag(value) == symbolTag);
1563
+ }
1564
+
1565
+ var isSymbol_1 = isSymbol;
1566
+
1567
+ /** Used as references for various `Number` constants. */
1568
+ var INFINITY = 1 / 0;
1569
+
1570
+ /** Used to convert symbols to primitives and strings. */
1571
+ var symbolProto = _Symbol ? _Symbol.prototype : undefined,
1572
+ symbolToString = symbolProto ? symbolProto.toString : undefined;
1573
+
1574
+ /**
1575
+ * The base implementation of `_.toString` which doesn't convert nullish
1576
+ * values to empty strings.
1577
+ *
1578
+ * @private
1579
+ * @param {*} value The value to process.
1580
+ * @returns {string} Returns the string.
1581
+ */
1582
+ function baseToString(value) {
1583
+ // Exit early for strings to avoid a performance hit in some environments.
1584
+ if (typeof value == 'string') {
1585
+ return value;
1586
+ }
1587
+ if (isArray_1(value)) {
1588
+ // Recursively convert values (susceptible to call stack limits).
1589
+ return _arrayMap(value, baseToString) + '';
1590
+ }
1591
+ if (isSymbol_1(value)) {
1592
+ return symbolToString ? symbolToString.call(value) : '';
1593
+ }
1594
+ var result = (value + '');
1595
+ return (result == '0' && (1 / value) == -INFINITY) ? '-0' : result;
1596
+ }
1597
+
1598
+ var _baseToString = baseToString;
1599
+
1600
+ /**
1601
+ * Converts `value` to a string. An empty string is returned for `null`
1602
+ * and `undefined` values. The sign of `-0` is preserved.
1603
+ *
1604
+ * @static
1605
+ * @memberOf _
1606
+ * @since 4.0.0
1607
+ * @category Lang
1608
+ * @param {*} value The value to convert.
1609
+ * @returns {string} Returns the converted string.
1610
+ * @example
1611
+ *
1612
+ * _.toString(null);
1613
+ * // => ''
1614
+ *
1615
+ * _.toString(-0);
1616
+ * // => '-0'
1617
+ *
1618
+ * _.toString([1, 2, 3]);
1619
+ * // => '1,2,3'
1620
+ */
1621
+ function toString(value) {
1622
+ return value == null ? '' : _baseToString(value);
1623
+ }
1624
+
1625
+ var toString_1 = toString;
1626
+
1627
+ /**
1628
+ * The base implementation of `_.slice` without an iteratee call guard.
1629
+ *
1630
+ * @private
1631
+ * @param {Array} array The array to slice.
1632
+ * @param {number} [start=0] The start position.
1633
+ * @param {number} [end=array.length] The end position.
1634
+ * @returns {Array} Returns the slice of `array`.
1635
+ */
1636
+ function baseSlice(array, start, end) {
1637
+ var index = -1,
1638
+ length = array.length;
1639
+
1640
+ if (start < 0) {
1641
+ start = -start > length ? 0 : (length + start);
1642
+ }
1643
+ end = end > length ? length : end;
1644
+ if (end < 0) {
1645
+ end += length;
1646
+ }
1647
+ length = start > end ? 0 : ((end - start) >>> 0);
1648
+ start >>>= 0;
1649
+
1650
+ var result = Array(length);
1651
+ while (++index < length) {
1652
+ result[index] = array[index + start];
1653
+ }
1654
+ return result;
1655
+ }
1656
+
1657
+ var _baseSlice = baseSlice;
1658
+
1659
+ /**
1660
+ * Casts `array` to a slice if it's needed.
1661
+ *
1662
+ * @private
1663
+ * @param {Array} array The array to inspect.
1664
+ * @param {number} start The start position.
1665
+ * @param {number} [end=array.length] The end position.
1666
+ * @returns {Array} Returns the cast slice.
1667
+ */
1668
+ function castSlice(array, start, end) {
1669
+ var length = array.length;
1670
+ end = end === undefined ? length : end;
1671
+ return (!start && end >= length) ? array : _baseSlice(array, start, end);
1672
+ }
1673
+
1674
+ var _castSlice = castSlice;
1675
+
1676
+ /** Used to compose unicode character classes. */
1677
+ var rsAstralRange = '\\ud800-\\udfff',
1678
+ rsComboMarksRange = '\\u0300-\\u036f',
1679
+ reComboHalfMarksRange = '\\ufe20-\\ufe2f',
1680
+ rsComboSymbolsRange = '\\u20d0-\\u20ff',
1681
+ rsComboRange = rsComboMarksRange + reComboHalfMarksRange + rsComboSymbolsRange,
1682
+ rsVarRange = '\\ufe0e\\ufe0f';
1683
+
1684
+ /** Used to compose unicode capture groups. */
1685
+ var rsZWJ = '\\u200d';
1686
+
1687
+ /** Used to detect strings with [zero-width joiners or code points from the astral planes](http://eev.ee/blog/2015/09/12/dark-corners-of-unicode/). */
1688
+ var reHasUnicode = RegExp('[' + rsZWJ + rsAstralRange + rsComboRange + rsVarRange + ']');
1689
+
1690
+ /**
1691
+ * Checks if `string` contains Unicode symbols.
1692
+ *
1693
+ * @private
1694
+ * @param {string} string The string to inspect.
1695
+ * @returns {boolean} Returns `true` if a symbol is found, else `false`.
1696
+ */
1697
+ function hasUnicode(string) {
1698
+ return reHasUnicode.test(string);
1699
+ }
1700
+
1701
+ var _hasUnicode = hasUnicode;
1702
+
1703
+ /**
1704
+ * Converts an ASCII `string` to an array.
1705
+ *
1706
+ * @private
1707
+ * @param {string} string The string to convert.
1708
+ * @returns {Array} Returns the converted array.
1709
+ */
1710
+ function asciiToArray(string) {
1711
+ return string.split('');
1712
+ }
1713
+
1714
+ var _asciiToArray = asciiToArray;
1715
+
1716
+ /** Used to compose unicode character classes. */
1717
+ var rsAstralRange$1 = '\\ud800-\\udfff',
1718
+ rsComboMarksRange$1 = '\\u0300-\\u036f',
1719
+ reComboHalfMarksRange$1 = '\\ufe20-\\ufe2f',
1720
+ rsComboSymbolsRange$1 = '\\u20d0-\\u20ff',
1721
+ rsComboRange$1 = rsComboMarksRange$1 + reComboHalfMarksRange$1 + rsComboSymbolsRange$1,
1722
+ rsVarRange$1 = '\\ufe0e\\ufe0f';
1723
+
1724
+ /** Used to compose unicode capture groups. */
1725
+ var rsAstral = '[' + rsAstralRange$1 + ']',
1726
+ rsCombo = '[' + rsComboRange$1 + ']',
1727
+ rsFitz = '\\ud83c[\\udffb-\\udfff]',
1728
+ rsModifier = '(?:' + rsCombo + '|' + rsFitz + ')',
1729
+ rsNonAstral = '[^' + rsAstralRange$1 + ']',
1730
+ rsRegional = '(?:\\ud83c[\\udde6-\\uddff]){2}',
1731
+ rsSurrPair = '[\\ud800-\\udbff][\\udc00-\\udfff]',
1732
+ rsZWJ$1 = '\\u200d';
1733
+
1734
+ /** Used to compose unicode regexes. */
1735
+ var reOptMod = rsModifier + '?',
1736
+ rsOptVar = '[' + rsVarRange$1 + ']?',
1737
+ rsOptJoin = '(?:' + rsZWJ$1 + '(?:' + [rsNonAstral, rsRegional, rsSurrPair].join('|') + ')' + rsOptVar + reOptMod + ')*',
1738
+ rsSeq = rsOptVar + reOptMod + rsOptJoin,
1739
+ rsSymbol = '(?:' + [rsNonAstral + rsCombo + '?', rsCombo, rsRegional, rsSurrPair, rsAstral].join('|') + ')';
1740
+
1741
+ /** Used to match [string symbols](https://mathiasbynens.be/notes/javascript-unicode). */
1742
+ var reUnicode = RegExp(rsFitz + '(?=' + rsFitz + ')|' + rsSymbol + rsSeq, 'g');
1743
+
1744
+ /**
1745
+ * Converts a Unicode `string` to an array.
1746
+ *
1747
+ * @private
1748
+ * @param {string} string The string to convert.
1749
+ * @returns {Array} Returns the converted array.
1750
+ */
1751
+ function unicodeToArray(string) {
1752
+ return string.match(reUnicode) || [];
1753
+ }
1754
+
1755
+ var _unicodeToArray = unicodeToArray;
1756
+
1757
+ /**
1758
+ * Converts `string` to an array.
1759
+ *
1760
+ * @private
1761
+ * @param {string} string The string to convert.
1762
+ * @returns {Array} Returns the converted array.
1763
+ */
1764
+ function stringToArray(string) {
1765
+ return _hasUnicode(string)
1766
+ ? _unicodeToArray(string)
1767
+ : _asciiToArray(string);
1768
+ }
1769
+
1770
+ var _stringToArray = stringToArray;
1771
+
1772
+ /**
1773
+ * Creates a function like `_.lowerFirst`.
1774
+ *
1775
+ * @private
1776
+ * @param {string} methodName The name of the `String` case method to use.
1777
+ * @returns {Function} Returns the new case function.
1778
+ */
1779
+ function createCaseFirst(methodName) {
1780
+ return function(string) {
1781
+ string = toString_1(string);
1782
+
1783
+ var strSymbols = _hasUnicode(string)
1784
+ ? _stringToArray(string)
1785
+ : undefined;
1786
+
1787
+ var chr = strSymbols
1788
+ ? strSymbols[0]
1789
+ : string.charAt(0);
1790
+
1791
+ var trailing = strSymbols
1792
+ ? _castSlice(strSymbols, 1).join('')
1793
+ : string.slice(1);
1794
+
1795
+ return chr[methodName]() + trailing;
1796
+ };
1797
+ }
1798
+
1799
+ var _createCaseFirst = createCaseFirst;
1800
+
1801
+ /**
1802
+ * Converts the first character of `string` to upper case.
1803
+ *
1804
+ * @static
1805
+ * @memberOf _
1806
+ * @since 4.0.0
1807
+ * @category String
1808
+ * @param {string} [string=''] The string to convert.
1809
+ * @returns {string} Returns the converted string.
1810
+ * @example
1811
+ *
1812
+ * _.upperFirst('fred');
1813
+ * // => 'Fred'
1814
+ *
1815
+ * _.upperFirst('FRED');
1816
+ * // => 'FRED'
1817
+ */
1818
+ var upperFirst = _createCaseFirst('toUpperCase');
1819
+
1820
+ var upperFirst_1 = upperFirst;
1821
+
1822
+ /**
1823
+ * Converts the first character of `string` to upper case and the remaining
1824
+ * to lower case.
1825
+ *
1826
+ * @static
1827
+ * @memberOf _
1828
+ * @since 3.0.0
1829
+ * @category String
1830
+ * @param {string} [string=''] The string to capitalize.
1831
+ * @returns {string} Returns the capitalized string.
1832
+ * @example
1833
+ *
1834
+ * _.capitalize('FRED');
1835
+ * // => 'Fred'
1836
+ */
1837
+ function capitalize(string) {
1838
+ return upperFirst_1(toString_1(string).toLowerCase());
1839
+ }
1840
+
1841
+ var capitalize_1 = capitalize;
1842
+
1843
+ /**
1844
+ * A specialized version of `_.reduce` for arrays without support for
1845
+ * iteratee shorthands.
1846
+ *
1847
+ * @private
1848
+ * @param {Array} [array] The array to iterate over.
1849
+ * @param {Function} iteratee The function invoked per iteration.
1850
+ * @param {*} [accumulator] The initial value.
1851
+ * @param {boolean} [initAccum] Specify using the first element of `array` as
1852
+ * the initial value.
1853
+ * @returns {*} Returns the accumulated value.
1854
+ */
1855
+ function arrayReduce(array, iteratee, accumulator, initAccum) {
1856
+ var index = -1,
1857
+ length = array == null ? 0 : array.length;
1858
+
1859
+ if (initAccum && length) {
1860
+ accumulator = array[++index];
1861
+ }
1862
+ while (++index < length) {
1863
+ accumulator = iteratee(accumulator, array[index], index, array);
1864
+ }
1865
+ return accumulator;
1866
+ }
1867
+
1868
+ var _arrayReduce = arrayReduce;
1869
+
1870
+ /**
1871
+ * The base implementation of `_.propertyOf` without support for deep paths.
1872
+ *
1873
+ * @private
1874
+ * @param {Object} object The object to query.
1875
+ * @returns {Function} Returns the new accessor function.
1876
+ */
1877
+ function basePropertyOf(object) {
1878
+ return function(key) {
1879
+ return object == null ? undefined : object[key];
1880
+ };
1881
+ }
1882
+
1883
+ var _basePropertyOf = basePropertyOf;
1884
+
1885
+ /** Used to map Latin Unicode letters to basic Latin letters. */
1886
+ var deburredLetters = {
1887
+ // Latin-1 Supplement block.
1888
+ '\xc0': 'A', '\xc1': 'A', '\xc2': 'A', '\xc3': 'A', '\xc4': 'A', '\xc5': 'A',
1889
+ '\xe0': 'a', '\xe1': 'a', '\xe2': 'a', '\xe3': 'a', '\xe4': 'a', '\xe5': 'a',
1890
+ '\xc7': 'C', '\xe7': 'c',
1891
+ '\xd0': 'D', '\xf0': 'd',
1892
+ '\xc8': 'E', '\xc9': 'E', '\xca': 'E', '\xcb': 'E',
1893
+ '\xe8': 'e', '\xe9': 'e', '\xea': 'e', '\xeb': 'e',
1894
+ '\xcc': 'I', '\xcd': 'I', '\xce': 'I', '\xcf': 'I',
1895
+ '\xec': 'i', '\xed': 'i', '\xee': 'i', '\xef': 'i',
1896
+ '\xd1': 'N', '\xf1': 'n',
1897
+ '\xd2': 'O', '\xd3': 'O', '\xd4': 'O', '\xd5': 'O', '\xd6': 'O', '\xd8': 'O',
1898
+ '\xf2': 'o', '\xf3': 'o', '\xf4': 'o', '\xf5': 'o', '\xf6': 'o', '\xf8': 'o',
1899
+ '\xd9': 'U', '\xda': 'U', '\xdb': 'U', '\xdc': 'U',
1900
+ '\xf9': 'u', '\xfa': 'u', '\xfb': 'u', '\xfc': 'u',
1901
+ '\xdd': 'Y', '\xfd': 'y', '\xff': 'y',
1902
+ '\xc6': 'Ae', '\xe6': 'ae',
1903
+ '\xde': 'Th', '\xfe': 'th',
1904
+ '\xdf': 'ss',
1905
+ // Latin Extended-A block.
1906
+ '\u0100': 'A', '\u0102': 'A', '\u0104': 'A',
1907
+ '\u0101': 'a', '\u0103': 'a', '\u0105': 'a',
1908
+ '\u0106': 'C', '\u0108': 'C', '\u010a': 'C', '\u010c': 'C',
1909
+ '\u0107': 'c', '\u0109': 'c', '\u010b': 'c', '\u010d': 'c',
1910
+ '\u010e': 'D', '\u0110': 'D', '\u010f': 'd', '\u0111': 'd',
1911
+ '\u0112': 'E', '\u0114': 'E', '\u0116': 'E', '\u0118': 'E', '\u011a': 'E',
1912
+ '\u0113': 'e', '\u0115': 'e', '\u0117': 'e', '\u0119': 'e', '\u011b': 'e',
1913
+ '\u011c': 'G', '\u011e': 'G', '\u0120': 'G', '\u0122': 'G',
1914
+ '\u011d': 'g', '\u011f': 'g', '\u0121': 'g', '\u0123': 'g',
1915
+ '\u0124': 'H', '\u0126': 'H', '\u0125': 'h', '\u0127': 'h',
1916
+ '\u0128': 'I', '\u012a': 'I', '\u012c': 'I', '\u012e': 'I', '\u0130': 'I',
1917
+ '\u0129': 'i', '\u012b': 'i', '\u012d': 'i', '\u012f': 'i', '\u0131': 'i',
1918
+ '\u0134': 'J', '\u0135': 'j',
1919
+ '\u0136': 'K', '\u0137': 'k', '\u0138': 'k',
1920
+ '\u0139': 'L', '\u013b': 'L', '\u013d': 'L', '\u013f': 'L', '\u0141': 'L',
1921
+ '\u013a': 'l', '\u013c': 'l', '\u013e': 'l', '\u0140': 'l', '\u0142': 'l',
1922
+ '\u0143': 'N', '\u0145': 'N', '\u0147': 'N', '\u014a': 'N',
1923
+ '\u0144': 'n', '\u0146': 'n', '\u0148': 'n', '\u014b': 'n',
1924
+ '\u014c': 'O', '\u014e': 'O', '\u0150': 'O',
1925
+ '\u014d': 'o', '\u014f': 'o', '\u0151': 'o',
1926
+ '\u0154': 'R', '\u0156': 'R', '\u0158': 'R',
1927
+ '\u0155': 'r', '\u0157': 'r', '\u0159': 'r',
1928
+ '\u015a': 'S', '\u015c': 'S', '\u015e': 'S', '\u0160': 'S',
1929
+ '\u015b': 's', '\u015d': 's', '\u015f': 's', '\u0161': 's',
1930
+ '\u0162': 'T', '\u0164': 'T', '\u0166': 'T',
1931
+ '\u0163': 't', '\u0165': 't', '\u0167': 't',
1932
+ '\u0168': 'U', '\u016a': 'U', '\u016c': 'U', '\u016e': 'U', '\u0170': 'U', '\u0172': 'U',
1933
+ '\u0169': 'u', '\u016b': 'u', '\u016d': 'u', '\u016f': 'u', '\u0171': 'u', '\u0173': 'u',
1934
+ '\u0174': 'W', '\u0175': 'w',
1935
+ '\u0176': 'Y', '\u0177': 'y', '\u0178': 'Y',
1936
+ '\u0179': 'Z', '\u017b': 'Z', '\u017d': 'Z',
1937
+ '\u017a': 'z', '\u017c': 'z', '\u017e': 'z',
1938
+ '\u0132': 'IJ', '\u0133': 'ij',
1939
+ '\u0152': 'Oe', '\u0153': 'oe',
1940
+ '\u0149': "'n", '\u017f': 's'
1941
+ };
1942
+
1943
+ /**
1944
+ * Used by `_.deburr` to convert Latin-1 Supplement and Latin Extended-A
1945
+ * letters to basic Latin letters.
1946
+ *
1947
+ * @private
1948
+ * @param {string} letter The matched letter to deburr.
1949
+ * @returns {string} Returns the deburred letter.
1950
+ */
1951
+ var deburrLetter = _basePropertyOf(deburredLetters);
1952
+
1953
+ var _deburrLetter = deburrLetter;
1954
+
1955
+ /** Used to match Latin Unicode letters (excluding mathematical operators). */
1956
+ var reLatin = /[\xc0-\xd6\xd8-\xf6\xf8-\xff\u0100-\u017f]/g;
1957
+
1958
+ /** Used to compose unicode character classes. */
1959
+ var rsComboMarksRange$2 = '\\u0300-\\u036f',
1960
+ reComboHalfMarksRange$2 = '\\ufe20-\\ufe2f',
1961
+ rsComboSymbolsRange$2 = '\\u20d0-\\u20ff',
1962
+ rsComboRange$2 = rsComboMarksRange$2 + reComboHalfMarksRange$2 + rsComboSymbolsRange$2;
1963
+
1964
+ /** Used to compose unicode capture groups. */
1965
+ var rsCombo$1 = '[' + rsComboRange$2 + ']';
1966
+
1967
+ /**
1968
+ * Used to match [combining diacritical marks](https://en.wikipedia.org/wiki/Combining_Diacritical_Marks) and
1969
+ * [combining diacritical marks for symbols](https://en.wikipedia.org/wiki/Combining_Diacritical_Marks_for_Symbols).
1970
+ */
1971
+ var reComboMark = RegExp(rsCombo$1, 'g');
1972
+
1973
+ /**
1974
+ * Deburrs `string` by converting
1975
+ * [Latin-1 Supplement](https://en.wikipedia.org/wiki/Latin-1_Supplement_(Unicode_block)#Character_table)
1976
+ * and [Latin Extended-A](https://en.wikipedia.org/wiki/Latin_Extended-A)
1977
+ * letters to basic Latin letters and removing
1978
+ * [combining diacritical marks](https://en.wikipedia.org/wiki/Combining_Diacritical_Marks).
1979
+ *
1980
+ * @static
1981
+ * @memberOf _
1982
+ * @since 3.0.0
1983
+ * @category String
1984
+ * @param {string} [string=''] The string to deburr.
1985
+ * @returns {string} Returns the deburred string.
1986
+ * @example
1987
+ *
1988
+ * _.deburr('déjà vu');
1989
+ * // => 'deja vu'
1990
+ */
1991
+ function deburr(string) {
1992
+ string = toString_1(string);
1993
+ return string && string.replace(reLatin, _deburrLetter).replace(reComboMark, '');
1994
+ }
1995
+
1996
+ var deburr_1 = deburr;
1997
+
1998
+ /** Used to match words composed of alphanumeric characters. */
1999
+ var reAsciiWord = /[^\x00-\x2f\x3a-\x40\x5b-\x60\x7b-\x7f]+/g;
2000
+
2001
+ /**
2002
+ * Splits an ASCII `string` into an array of its words.
2003
+ *
2004
+ * @private
2005
+ * @param {string} The string to inspect.
2006
+ * @returns {Array} Returns the words of `string`.
2007
+ */
2008
+ function asciiWords(string) {
2009
+ return string.match(reAsciiWord) || [];
2010
+ }
2011
+
2012
+ var _asciiWords = asciiWords;
2013
+
2014
+ /** Used to detect strings that need a more robust regexp to match words. */
2015
+ var reHasUnicodeWord = /[a-z][A-Z]|[A-Z]{2}[a-z]|[0-9][a-zA-Z]|[a-zA-Z][0-9]|[^a-zA-Z0-9 ]/;
2016
+
2017
+ /**
2018
+ * Checks if `string` contains a word composed of Unicode symbols.
2019
+ *
2020
+ * @private
2021
+ * @param {string} string The string to inspect.
2022
+ * @returns {boolean} Returns `true` if a word is found, else `false`.
2023
+ */
2024
+ function hasUnicodeWord(string) {
2025
+ return reHasUnicodeWord.test(string);
2026
+ }
2027
+
2028
+ var _hasUnicodeWord = hasUnicodeWord;
2029
+
2030
+ /** Used to compose unicode character classes. */
2031
+ var rsAstralRange$2 = '\\ud800-\\udfff',
2032
+ rsComboMarksRange$3 = '\\u0300-\\u036f',
2033
+ reComboHalfMarksRange$3 = '\\ufe20-\\ufe2f',
2034
+ rsComboSymbolsRange$3 = '\\u20d0-\\u20ff',
2035
+ rsComboRange$3 = rsComboMarksRange$3 + reComboHalfMarksRange$3 + rsComboSymbolsRange$3,
2036
+ rsDingbatRange = '\\u2700-\\u27bf',
2037
+ rsLowerRange = 'a-z\\xdf-\\xf6\\xf8-\\xff',
2038
+ rsMathOpRange = '\\xac\\xb1\\xd7\\xf7',
2039
+ rsNonCharRange = '\\x00-\\x2f\\x3a-\\x40\\x5b-\\x60\\x7b-\\xbf',
2040
+ rsPunctuationRange = '\\u2000-\\u206f',
2041
+ rsSpaceRange = ' \\t\\x0b\\f\\xa0\\ufeff\\n\\r\\u2028\\u2029\\u1680\\u180e\\u2000\\u2001\\u2002\\u2003\\u2004\\u2005\\u2006\\u2007\\u2008\\u2009\\u200a\\u202f\\u205f\\u3000',
2042
+ rsUpperRange = 'A-Z\\xc0-\\xd6\\xd8-\\xde',
2043
+ rsVarRange$2 = '\\ufe0e\\ufe0f',
2044
+ rsBreakRange = rsMathOpRange + rsNonCharRange + rsPunctuationRange + rsSpaceRange;
2045
+
2046
+ /** Used to compose unicode capture groups. */
2047
+ var rsApos = "['\u2019]",
2048
+ rsBreak = '[' + rsBreakRange + ']',
2049
+ rsCombo$2 = '[' + rsComboRange$3 + ']',
2050
+ rsDigits = '\\d+',
2051
+ rsDingbat = '[' + rsDingbatRange + ']',
2052
+ rsLower = '[' + rsLowerRange + ']',
2053
+ rsMisc = '[^' + rsAstralRange$2 + rsBreakRange + rsDigits + rsDingbatRange + rsLowerRange + rsUpperRange + ']',
2054
+ rsFitz$1 = '\\ud83c[\\udffb-\\udfff]',
2055
+ rsModifier$1 = '(?:' + rsCombo$2 + '|' + rsFitz$1 + ')',
2056
+ rsNonAstral$1 = '[^' + rsAstralRange$2 + ']',
2057
+ rsRegional$1 = '(?:\\ud83c[\\udde6-\\uddff]){2}',
2058
+ rsSurrPair$1 = '[\\ud800-\\udbff][\\udc00-\\udfff]',
2059
+ rsUpper = '[' + rsUpperRange + ']',
2060
+ rsZWJ$2 = '\\u200d';
2061
+
2062
+ /** Used to compose unicode regexes. */
2063
+ var rsMiscLower = '(?:' + rsLower + '|' + rsMisc + ')',
2064
+ rsMiscUpper = '(?:' + rsUpper + '|' + rsMisc + ')',
2065
+ rsOptContrLower = '(?:' + rsApos + '(?:d|ll|m|re|s|t|ve))?',
2066
+ rsOptContrUpper = '(?:' + rsApos + '(?:D|LL|M|RE|S|T|VE))?',
2067
+ reOptMod$1 = rsModifier$1 + '?',
2068
+ rsOptVar$1 = '[' + rsVarRange$2 + ']?',
2069
+ rsOptJoin$1 = '(?:' + rsZWJ$2 + '(?:' + [rsNonAstral$1, rsRegional$1, rsSurrPair$1].join('|') + ')' + rsOptVar$1 + reOptMod$1 + ')*',
2070
+ rsOrdLower = '\\d*(?:1st|2nd|3rd|(?![123])\\dth)(?=\\b|[A-Z_])',
2071
+ rsOrdUpper = '\\d*(?:1ST|2ND|3RD|(?![123])\\dTH)(?=\\b|[a-z_])',
2072
+ rsSeq$1 = rsOptVar$1 + reOptMod$1 + rsOptJoin$1,
2073
+ rsEmoji = '(?:' + [rsDingbat, rsRegional$1, rsSurrPair$1].join('|') + ')' + rsSeq$1;
2074
+
2075
+ /** Used to match complex or compound words. */
2076
+ var reUnicodeWord = RegExp([
2077
+ rsUpper + '?' + rsLower + '+' + rsOptContrLower + '(?=' + [rsBreak, rsUpper, '$'].join('|') + ')',
2078
+ rsMiscUpper + '+' + rsOptContrUpper + '(?=' + [rsBreak, rsUpper + rsMiscLower, '$'].join('|') + ')',
2079
+ rsUpper + '?' + rsMiscLower + '+' + rsOptContrLower,
2080
+ rsUpper + '+' + rsOptContrUpper,
2081
+ rsOrdUpper,
2082
+ rsOrdLower,
2083
+ rsDigits,
2084
+ rsEmoji
2085
+ ].join('|'), 'g');
2086
+
2087
+ /**
2088
+ * Splits a Unicode `string` into an array of its words.
2089
+ *
2090
+ * @private
2091
+ * @param {string} The string to inspect.
2092
+ * @returns {Array} Returns the words of `string`.
2093
+ */
2094
+ function unicodeWords(string) {
2095
+ return string.match(reUnicodeWord) || [];
2096
+ }
2097
+
2098
+ var _unicodeWords = unicodeWords;
2099
+
2100
+ /**
2101
+ * Splits `string` into an array of its words.
2102
+ *
2103
+ * @static
2104
+ * @memberOf _
2105
+ * @since 3.0.0
2106
+ * @category String
2107
+ * @param {string} [string=''] The string to inspect.
2108
+ * @param {RegExp|string} [pattern] The pattern to match words.
2109
+ * @param- {Object} [guard] Enables use as an iteratee for methods like `_.map`.
2110
+ * @returns {Array} Returns the words of `string`.
2111
+ * @example
2112
+ *
2113
+ * _.words('fred, barney, & pebbles');
2114
+ * // => ['fred', 'barney', 'pebbles']
2115
+ *
2116
+ * _.words('fred, barney, & pebbles', /[^, ]+/g);
2117
+ * // => ['fred', 'barney', '&', 'pebbles']
2118
+ */
2119
+ function words(string, pattern, guard) {
2120
+ string = toString_1(string);
2121
+ pattern = guard ? undefined : pattern;
2122
+
2123
+ if (pattern === undefined) {
2124
+ return _hasUnicodeWord(string) ? _unicodeWords(string) : _asciiWords(string);
2125
+ }
2126
+ return string.match(pattern) || [];
2127
+ }
2128
+
2129
+ var words_1 = words;
2130
+
2131
+ /** Used to compose unicode capture groups. */
2132
+ var rsApos$1 = "['\u2019]";
2133
+
2134
+ /** Used to match apostrophes. */
2135
+ var reApos = RegExp(rsApos$1, 'g');
2136
+
2137
+ /**
2138
+ * Creates a function like `_.camelCase`.
2139
+ *
2140
+ * @private
2141
+ * @param {Function} callback The function to combine each word.
2142
+ * @returns {Function} Returns the new compounder function.
2143
+ */
2144
+ function createCompounder(callback) {
2145
+ return function(string) {
2146
+ return _arrayReduce(words_1(deburr_1(string).replace(reApos, '')), callback, '');
2147
+ };
2148
+ }
2149
+
2150
+ var _createCompounder = createCompounder;
2151
+
2152
+ /**
2153
+ * Converts `string` to [camel case](https://en.wikipedia.org/wiki/CamelCase).
2154
+ *
2155
+ * @static
2156
+ * @memberOf _
2157
+ * @since 3.0.0
2158
+ * @category String
2159
+ * @param {string} [string=''] The string to convert.
2160
+ * @returns {string} Returns the camel cased string.
2161
+ * @example
2162
+ *
2163
+ * _.camelCase('Foo Bar');
2164
+ * // => 'fooBar'
2165
+ *
2166
+ * _.camelCase('--foo-bar--');
2167
+ * // => 'fooBar'
2168
+ *
2169
+ * _.camelCase('__FOO_BAR__');
2170
+ * // => 'fooBar'
2171
+ */
2172
+ var camelCase = _createCompounder(function(result, word, index) {
2173
+ word = word.toLowerCase();
2174
+ return result + (index ? capitalize_1(word) : word);
2175
+ });
2176
+
2177
+ var camelCase_1 = camelCase;
2178
+
1348
2179
  function warning(valid, message) {
1349
2180
  warn(valid, "[@ant-design/icons] ".concat(message));
1350
2181
  }
@@ -1361,7 +2192,8 @@
1361
2192
  delete acc.class;
1362
2193
  break;
1363
2194
  default:
1364
- acc[key] = val;
2195
+ delete acc[key];
2196
+ acc[camelCase_1(key)] = val;
1365
2197
  }
1366
2198
  return acc;
1367
2199
  }, {});