sag_components 2.0.0-beta91 → 2.0.0-beta92
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.esm.js
CHANGED
|
@@ -25119,13 +25119,13 @@ const OneColumnContainer = props => {
|
|
|
25119
25119
|
}))), isPercentOfChange && !isLoading && !hover && /*#__PURE__*/React$1.createElement(PercentOfChange, {
|
|
25120
25120
|
className: "PercentOfChange",
|
|
25121
25121
|
isPercentDataPositive: PercentOfChangeData
|
|
25122
|
-
}, PercentOfChangeData > 0 ? /*#__PURE__*/React$1.createElement(UpArrowIcon, {
|
|
25122
|
+
}, PercentOfChangeData === null || PercentOfChangeData === undefined ? 'N/A' : /*#__PURE__*/React$1.createElement(React$1.Fragment, null, PercentOfChangeData > 0 ? /*#__PURE__*/React$1.createElement(UpArrowIcon, {
|
|
25123
25123
|
width: "11",
|
|
25124
25124
|
height: "10"
|
|
25125
25125
|
}) : PercentOfChangeData < 0 ? /*#__PURE__*/React$1.createElement(DownArrowIcon, {
|
|
25126
25126
|
width: "11",
|
|
25127
25127
|
height: "10"
|
|
25128
|
-
}) : null, `${Math.abs(PercentOfChangeData)}%`), isLoading && /*#__PURE__*/React$1.createElement(LoadingDiv, {
|
|
25128
|
+
}) : null, `${Math.abs(PercentOfChangeData ?? 0)}%`)), isLoading && /*#__PURE__*/React$1.createElement(LoadingDiv, {
|
|
25129
25129
|
className: "loadingDiv"
|
|
25130
25130
|
}, /*#__PURE__*/React$1.createElement(SkeletonTheme, {
|
|
25131
25131
|
baseColor: "#EAEAEA"
|