@sis-cc/dotstatsuite-components 21.2.0 → 21.4.0
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.
|
@@ -61,7 +61,7 @@ import getISOWeek from "date-fns/get_iso_week";
|
|
|
61
61
|
import makeStyles from "@mui/styles/makeStyles";
|
|
62
62
|
import { useTheme } from "@mui/material/styles";
|
|
63
63
|
const name$1 = "@sis-cc/dotstatsuite-components";
|
|
64
|
-
const version$1 = "21.
|
|
64
|
+
const version$1 = "21.4.0";
|
|
65
65
|
const meta$1 = {
|
|
66
66
|
name: name$1,
|
|
67
67
|
version: version$1
|
|
@@ -6743,7 +6743,7 @@ const dataTransformer = (dataNew, options2 = {}) => {
|
|
|
6743
6743
|
return {
|
|
6744
6744
|
observation: append$1({
|
|
6745
6745
|
...observation2,
|
|
6746
|
-
rejected: isAllDimHidden,
|
|
6746
|
+
rejected: isAllDimHidden || isEmpty$1(values4),
|
|
6747
6747
|
display: !isHidden,
|
|
6748
6748
|
__index: obsIndex,
|
|
6749
6749
|
name: getName2(observation2),
|
|
@@ -38044,10 +38044,12 @@ const Viewer = ({ type: type4, targets = {}, width, ...rest }) => {
|
|
|
38044
38044
|
"div",
|
|
38045
38045
|
{
|
|
38046
38046
|
...targets.viewer ? { ref: targets.viewer } : {},
|
|
38047
|
-
className:
|
|
38048
|
-
|
|
38049
|
-
|
|
38050
|
-
|
|
38047
|
+
className: join$1(" ")(
|
|
38048
|
+
[
|
|
38049
|
+
classes.container,
|
|
38050
|
+
type4 === "table" ? classes.tableContainer : classes.chartContainer
|
|
38051
|
+
]
|
|
38052
|
+
),
|
|
38051
38053
|
children: [
|
|
38052
38054
|
/* @__PURE__ */ jsx(
|
|
38053
38055
|
Header,
|