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/CHANGELOG.md +9 -0
- package/Table/styles/index.css +21 -0
- package/Table/styles/index.less +11 -0
- package/dist/rsuite-no-reset-rtl.css +21 -0
- package/dist/rsuite-no-reset-rtl.min.css +1 -1
- package/dist/rsuite-no-reset-rtl.min.css.map +1 -1
- package/dist/rsuite-no-reset.css +21 -0
- package/dist/rsuite-no-reset.min.css +1 -1
- package/dist/rsuite-no-reset.min.css.map +1 -1
- package/dist/rsuite-rtl.css +21 -0
- package/dist/rsuite-rtl.min.css +1 -1
- package/dist/rsuite-rtl.min.css.map +1 -1
- package/dist/rsuite.css +21 -0
- package/dist/rsuite.js +6 -6
- package/dist/rsuite.min.css +1 -1
- package/dist/rsuite.min.css.map +1 -1
- package/package.json +1 -1
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
|
|
10755
|
+
/***/ (function(module) {
|
|
10756
10756
|
|
|
10757
|
-
eval("
|
|
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
|
|
11445
|
+
/***/ (function(module) {
|
|
11446
11446
|
|
|
11447
|
-
eval("
|
|
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
|
|
11465
|
+
/***/ (function(module) {
|
|
11466
11466
|
|
|
11467
|
-
eval("
|
|
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
|
|