rsuite 5.83.2 → 5.83.3

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/rsuite.css CHANGED
@@ -14550,6 +14550,12 @@ textarea.rs-inline-edit-sm .rs-plaintext {
14550
14550
  .rs-table-cell-header .rs-table-cell-content {
14551
14551
  padding: 10px 10px;
14552
14552
  line-height: 1.66666667;
14553
+ display: -webkit-box;
14554
+ display: -ms-flexbox;
14555
+ display: flex;
14556
+ -webkit-box-align: center;
14557
+ -ms-flex-align: center;
14558
+ align-items: center;
14553
14559
  }
14554
14560
  .rs-table-cell-header-sort-wrapper {
14555
14561
  cursor: pointer;
@@ -14561,6 +14567,13 @@ textarea.rs-inline-edit-sm .rs-plaintext {
14561
14567
  color: var(--rs-table-sort);
14562
14568
  font-size: 16px;
14563
14569
  line-height: 1.66666667;
14570
+ display: -webkit-box;
14571
+ display: -ms-flexbox;
14572
+ display: flex;
14573
+ }
14574
+ .rs-table-cell-header-icon-sort:where([data-sort='asc']) {
14575
+ -webkit-transform: rotate(180deg);
14576
+ transform: rotate(180deg);
14564
14577
  }
14565
14578
  .rs-table-cell-rowspan {
14566
14579
  border-bottom: 1px solid #f2f2f5 !important;
@@ -14713,6 +14726,14 @@ textarea.rs-inline-edit-sm .rs-plaintext {
14713
14726
  cursor: pointer;
14714
14727
  outline: none;
14715
14728
  font-size: 16px;
14729
+ -webkit-transition: -webkit-transform 0.3s ease;
14730
+ transition: -webkit-transform 0.3s ease;
14731
+ transition: transform 0.3s ease;
14732
+ transition: transform 0.3s ease, -webkit-transform 0.3s ease;
14733
+ }
14734
+ .rs-table-cell-expand-icon:where([data-expanded='true']) {
14735
+ -webkit-transform: rotate(90deg);
14736
+ transform: rotate(90deg);
14716
14737
  }
14717
14738
  .rs-table-scrollbar {
14718
14739
  background-color: #e5e5ea;
package/dist/rsuite.js CHANGED
@@ -10752,9 +10752,9 @@ eval("var memoizeCapped = __webpack_require__(/*! ./_memoizeCapped */ \"./node_m
10752
10752
  /*!***************************************!*\
10753
10753
  !*** ./node_modules/lodash/_toKey.js ***!
10754
10754
  \***************************************/
10755
- /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
10755
+ /***/ (function(module) {
10756
10756
 
10757
- eval("var isSymbol = __webpack_require__(/*! ./isSymbol */ \"./node_modules/lodash/isSymbol.js\");\n\n/** Used as references for various `Number` constants. */\nvar INFINITY = 1 / 0;\n\n/**\n * Converts `value` to a string key if it's not a string or symbol.\n *\n * @private\n * @param {*} value The value to inspect.\n * @returns {string|symbol} Returns the key.\n */\nfunction toKey(value) {\n if (typeof value == 'string' || isSymbol(value)) {\n return value;\n }\n var result = (value + '');\n return (result == '0' && (1 / value) == -INFINITY) ? '-0' : result;\n}\n\nmodule.exports = toKey;\n\n\n//# sourceURL=webpack://rsuite/./node_modules/lodash/_toKey.js?");
10757
+ eval("/**\n * This method returns the first argument it receives.\n *\n * @static\n * @since 0.1.0\n * @memberOf _\n * @category Util\n * @param {*} value Any value.\n * @returns {*} Returns `value`.\n * @example\n *\n * var object = { 'a': 1 };\n *\n * console.log(_.identity(object) === object);\n * // => true\n */\nfunction identity(value) {\n return value;\n}\n\nmodule.exports = identity;\n\n\n//# sourceURL=webpack://rsuite/./node_modules/lodash/_toKey.js?");
10758
10758
 
10759
10759
  /***/ }),
10760
10760
 
@@ -11442,9 +11442,9 @@ eval("var toFinite = __webpack_require__(/*! ./toFinite */ \"./node_modules/loda
11442
11442
  /*!*****************************************!*\
11443
11443
  !*** ./node_modules/lodash/toNumber.js ***!
11444
11444
  \*****************************************/
11445
- /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
11445
+ /***/ (function(module) {
11446
11446
 
11447
- eval("var baseTrim = __webpack_require__(/*! ./_baseTrim */ \"./node_modules/lodash/_baseTrim.js\"),\n isObject = __webpack_require__(/*! ./isObject */ \"./node_modules/lodash/isObject.js\"),\n isSymbol = __webpack_require__(/*! ./isSymbol */ \"./node_modules/lodash/isSymbol.js\");\n\n/** Used as references for various `Number` constants. */\nvar NAN = 0 / 0;\n\n/** Used to detect bad signed hexadecimal string values. */\nvar reIsBadHex = /^[-+]0x[0-9a-f]+$/i;\n\n/** Used to detect binary string values. */\nvar reIsBinary = /^0b[01]+$/i;\n\n/** Used to detect octal string values. */\nvar reIsOctal = /^0o[0-7]+$/i;\n\n/** Built-in method references without a dependency on `root`. */\nvar freeParseInt = parseInt;\n\n/**\n * Converts `value` to a number.\n *\n * @static\n * @memberOf _\n * @since 4.0.0\n * @category Lang\n * @param {*} value The value to process.\n * @returns {number} Returns the number.\n * @example\n *\n * _.toNumber(3.2);\n * // => 3.2\n *\n * _.toNumber(Number.MIN_VALUE);\n * // => 5e-324\n *\n * _.toNumber(Infinity);\n * // => Infinity\n *\n * _.toNumber('3.2');\n * // => 3.2\n */\nfunction toNumber(value) {\n if (typeof value == 'number') {\n return value;\n }\n if (isSymbol(value)) {\n return NAN;\n }\n if (isObject(value)) {\n var other = typeof value.valueOf == 'function' ? value.valueOf() : value;\n value = isObject(other) ? (other + '') : other;\n }\n if (typeof value != 'string') {\n return value === 0 ? value : +value;\n }\n value = baseTrim(value);\n var isBinary = reIsBinary.test(value);\n return (isBinary || reIsOctal.test(value))\n ? freeParseInt(value.slice(2), isBinary ? 2 : 8)\n : (reIsBadHex.test(value) ? NAN : +value);\n}\n\nmodule.exports = toNumber;\n\n\n//# sourceURL=webpack://rsuite/./node_modules/lodash/toNumber.js?");
11447
+ eval("/**\n * This method returns the first argument it receives.\n *\n * @static\n * @since 0.1.0\n * @memberOf _\n * @category Util\n * @param {*} value Any value.\n * @returns {*} Returns `value`.\n * @example\n *\n * var object = { 'a': 1 };\n *\n * console.log(_.identity(object) === object);\n * // => true\n */\nfunction identity(value) {\n return value;\n}\n\nmodule.exports = identity;\n\n\n//# sourceURL=webpack://rsuite/./node_modules/lodash/toNumber.js?");
11448
11448
 
11449
11449
  /***/ }),
11450
11450
 
@@ -11462,9 +11462,9 @@ eval("var copyObject = __webpack_require__(/*! ./_copyObject */ \"./node_modules
11462
11462
  /*!*****************************************!*\
11463
11463
  !*** ./node_modules/lodash/toString.js ***!
11464
11464
  \*****************************************/
11465
- /***/ (function(module, __unused_webpack_exports, __webpack_require__) {
11465
+ /***/ (function(module) {
11466
11466
 
11467
- eval("var baseToString = __webpack_require__(/*! ./_baseToString */ \"./node_modules/lodash/_baseToString.js\");\n\n/**\n * Converts `value` to a string. An empty string is returned for `null`\n * and `undefined` values. The sign of `-0` is preserved.\n *\n * @static\n * @memberOf _\n * @since 4.0.0\n * @category Lang\n * @param {*} value The value to convert.\n * @returns {string} Returns the converted string.\n * @example\n *\n * _.toString(null);\n * // => ''\n *\n * _.toString(-0);\n * // => '-0'\n *\n * _.toString([1, 2, 3]);\n * // => '1,2,3'\n */\nfunction toString(value) {\n return value == null ? '' : baseToString(value);\n}\n\nmodule.exports = toString;\n\n\n//# sourceURL=webpack://rsuite/./node_modules/lodash/toString.js?");
11467
+ eval("/**\n * This method returns the first argument it receives.\n *\n * @static\n * @since 0.1.0\n * @memberOf _\n * @category Util\n * @param {*} value Any value.\n * @returns {*} Returns `value`.\n * @example\n *\n * var object = { 'a': 1 };\n *\n * console.log(_.identity(object) === object);\n * // => true\n */\nfunction identity(value) {\n return value;\n}\n\nmodule.exports = identity;\n\n\n//# sourceURL=webpack://rsuite/./node_modules/lodash/toString.js?");
11468
11468
 
11469
11469
  /***/ }),
11470
11470