@sis-cc/dotstatsuite-visions 7.13.0 → 7.13.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/es/TableHtml5/TableHtml5.js +2 -2
- package/es/TableHtml5/cell.js +3 -3
- package/es/TableHtml5/header.js +2 -2
- package/es/TableHtml5/section.js +4 -4
- package/es/TableHtml5/sectionHeader.js +2 -2
- package/es/TableHtml5/subHeader.js +4 -4
- package/lib/TableHtml5/TableHtml5.js +2 -2
- package/lib/TableHtml5/cell.js +3 -3
- package/lib/TableHtml5/header.js +2 -2
- package/lib/TableHtml5/section.js +4 -4
- package/lib/TableHtml5/sectionHeader.js +2 -2
- package/lib/TableHtml5/subHeader.js +4 -4
- package/package.json +1 -1
|
@@ -22,8 +22,8 @@ var useStyles = makeStyles(function (theme) {
|
|
|
22
22
|
return {
|
|
23
23
|
table: {
|
|
24
24
|
borderCollapse: 'separate',
|
|
25
|
-
borderLeft: '
|
|
26
|
-
borderTop: '
|
|
25
|
+
borderLeft: 'thin solid ' + theme.palette.grey[500],
|
|
26
|
+
borderTop: 'thin solid ' + theme.palette.grey[500]
|
|
27
27
|
},
|
|
28
28
|
stickyHeader: {
|
|
29
29
|
position: 'sticky',
|
package/es/TableHtml5/cell.js
CHANGED
|
@@ -11,8 +11,8 @@ import { getIsRtl } from '../utils';
|
|
|
11
11
|
var useStyles = makeStyles(function (theme) {
|
|
12
12
|
return {
|
|
13
13
|
cell: {
|
|
14
|
-
borderBottom: '
|
|
15
|
-
borderRight: '
|
|
14
|
+
borderBottom: 'thin solid ' + theme.palette.grey[500],
|
|
15
|
+
borderRight: 'thin solid ' + theme.palette.grey[500],
|
|
16
16
|
padding: theme.spacing(0.5) + 'px ' + theme.spacing(1) + 'px',
|
|
17
17
|
verticalAlign: 'baseline',
|
|
18
18
|
color: theme.palette.grey['A700'],
|
|
@@ -26,7 +26,7 @@ var useStyles = makeStyles(function (theme) {
|
|
|
26
26
|
},
|
|
27
27
|
highlight: theme.mixins.table.cellHighlight,
|
|
28
28
|
oneCell: {
|
|
29
|
-
border: '
|
|
29
|
+
border: 'thin solid ' + theme.palette.grey[500],
|
|
30
30
|
display: 'block' // MUI TableCell is inline-block
|
|
31
31
|
},
|
|
32
32
|
link: {
|
package/es/TableHtml5/header.js
CHANGED
|
@@ -15,8 +15,8 @@ var useStyles = makeStyles(function (theme) {
|
|
|
15
15
|
color: theme.palette.getContrastText(theme.palette.primary.main),
|
|
16
16
|
backgroundColor: theme.palette.primary.main,
|
|
17
17
|
border: 'inherit',
|
|
18
|
-
borderBottom: '
|
|
19
|
-
borderRight: '
|
|
18
|
+
borderBottom: 'thin solid ' + theme.palette.grey[500],
|
|
19
|
+
borderRight: 'thin solid ' + theme.palette.grey[500],
|
|
20
20
|
padding: theme.spacing(0.5) + 'px ' + theme.spacing(1) + 'px',
|
|
21
21
|
verticalAlign: 'middle',
|
|
22
22
|
'&:focus ': {
|
package/es/TableHtml5/section.js
CHANGED
|
@@ -19,8 +19,8 @@ var useStyles = makeStyles(function (theme) {
|
|
|
19
19
|
rowTitle: {
|
|
20
20
|
backgroundColor: getLight(theme) || theme.palette.secondary.light,
|
|
21
21
|
border: 'inherit',
|
|
22
|
-
borderBottom: '
|
|
23
|
-
borderRight: '
|
|
22
|
+
borderBottom: 'thin solid ' + theme.palette.grey[500],
|
|
23
|
+
borderRight: 'thin solid ' + theme.palette.grey[500],
|
|
24
24
|
padding: theme.spacing(0.5) + 'px ' + theme.spacing(1) + 'px',
|
|
25
25
|
color: theme.palette.grey['A700'],
|
|
26
26
|
verticalAlign: 'middle'
|
|
@@ -30,8 +30,8 @@ var useStyles = makeStyles(function (theme) {
|
|
|
30
30
|
backgroundColor: theme.palette.grey[200],
|
|
31
31
|
verticalAlign: 'top',
|
|
32
32
|
border: 'inherit',
|
|
33
|
-
borderBottom: '
|
|
34
|
-
borderRight: '
|
|
33
|
+
borderBottom: 'thin solid ' + theme.palette.grey[500],
|
|
34
|
+
borderRight: 'thin solid ' + theme.palette.grey[500],
|
|
35
35
|
padding: theme.spacing(0.5) + 'px ' + theme.spacing(1) + 'px',
|
|
36
36
|
position: 'sticky',
|
|
37
37
|
zIndex: 1
|
|
@@ -17,8 +17,8 @@ var useStyles = makeStyles(function (theme) {
|
|
|
17
17
|
section: {
|
|
18
18
|
backgroundColor: getDark(theme) || theme.palette.secondary.dark,
|
|
19
19
|
border: 'inherit',
|
|
20
|
-
borderBottom: '
|
|
21
|
-
borderRight: '
|
|
20
|
+
borderBottom: 'thin solid ' + theme.palette.grey[500],
|
|
21
|
+
borderRight: 'thin solid ' + theme.palette.grey[500],
|
|
22
22
|
padding: theme.spacing(0, 1),
|
|
23
23
|
color: theme.palette.grey['A700'],
|
|
24
24
|
verticalAlign: 'middle',
|
|
@@ -14,8 +14,8 @@ var useStyles = makeStyles(function (theme) {
|
|
|
14
14
|
columnsTitle: {
|
|
15
15
|
backgroundColor: getLight(theme) || theme.palette.secondary.light,
|
|
16
16
|
border: 'inherit',
|
|
17
|
-
borderBottom: '
|
|
18
|
-
borderRight: '
|
|
17
|
+
borderBottom: 'thin solid ' + theme.palette.grey[500],
|
|
18
|
+
borderRight: 'thin solid ' + theme.palette.grey[500],
|
|
19
19
|
padding: theme.spacing(0.5) + 'px ' + theme.spacing(1) + 'px',
|
|
20
20
|
color: theme.palette.grey['A700'],
|
|
21
21
|
verticalAlign: 'middle',
|
|
@@ -25,8 +25,8 @@ var useStyles = makeStyles(function (theme) {
|
|
|
25
25
|
fillerCell: {
|
|
26
26
|
backgroundColor: theme.palette.grey[200],
|
|
27
27
|
border: 'inherit',
|
|
28
|
-
borderBottom: '
|
|
29
|
-
borderRight: '
|
|
28
|
+
borderBottom: 'thin solid ' + theme.palette.grey[500],
|
|
29
|
+
borderRight: 'thin solid ' + theme.palette.grey[500],
|
|
30
30
|
padding: theme.spacing(0.5) + 'px ' + theme.spacing(1) + 'px',
|
|
31
31
|
verticalAlign: 'middle',
|
|
32
32
|
textAlign: 'center',
|
|
@@ -55,8 +55,8 @@ var useStyles = (0, _styles.makeStyles)(function (theme) {
|
|
|
55
55
|
return {
|
|
56
56
|
table: {
|
|
57
57
|
borderCollapse: 'separate',
|
|
58
|
-
borderLeft: '
|
|
59
|
-
borderTop: '
|
|
58
|
+
borderLeft: 'thin solid ' + theme.palette.grey[500],
|
|
59
|
+
borderTop: 'thin solid ' + theme.palette.grey[500]
|
|
60
60
|
},
|
|
61
61
|
stickyHeader: {
|
|
62
62
|
position: 'sticky',
|
package/lib/TableHtml5/cell.js
CHANGED
|
@@ -41,8 +41,8 @@ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { de
|
|
|
41
41
|
var useStyles = (0, _styles.makeStyles)(function (theme) {
|
|
42
42
|
return {
|
|
43
43
|
cell: {
|
|
44
|
-
borderBottom: '
|
|
45
|
-
borderRight: '
|
|
44
|
+
borderBottom: 'thin solid ' + theme.palette.grey[500],
|
|
45
|
+
borderRight: 'thin solid ' + theme.palette.grey[500],
|
|
46
46
|
padding: theme.spacing(0.5) + 'px ' + theme.spacing(1) + 'px',
|
|
47
47
|
verticalAlign: 'baseline',
|
|
48
48
|
color: theme.palette.grey['A700'],
|
|
@@ -56,7 +56,7 @@ var useStyles = (0, _styles.makeStyles)(function (theme) {
|
|
|
56
56
|
},
|
|
57
57
|
highlight: theme.mixins.table.cellHighlight,
|
|
58
58
|
oneCell: {
|
|
59
|
-
border: '
|
|
59
|
+
border: 'thin solid ' + theme.palette.grey[500],
|
|
60
60
|
display: 'block' // MUI TableCell is inline-block
|
|
61
61
|
},
|
|
62
62
|
link: {
|
package/lib/TableHtml5/header.js
CHANGED
|
@@ -48,8 +48,8 @@ var useStyles = (0, _styles.makeStyles)(function (theme) {
|
|
|
48
48
|
color: theme.palette.getContrastText(theme.palette.primary.main),
|
|
49
49
|
backgroundColor: theme.palette.primary.main,
|
|
50
50
|
border: 'inherit',
|
|
51
|
-
borderBottom: '
|
|
52
|
-
borderRight: '
|
|
51
|
+
borderBottom: 'thin solid ' + theme.palette.grey[500],
|
|
52
|
+
borderRight: 'thin solid ' + theme.palette.grey[500],
|
|
53
53
|
padding: theme.spacing(0.5) + 'px ' + theme.spacing(1) + 'px',
|
|
54
54
|
verticalAlign: 'middle',
|
|
55
55
|
'&:focus ': {
|
|
@@ -61,8 +61,8 @@ var useStyles = (0, _styles.makeStyles)(function (theme) {
|
|
|
61
61
|
rowTitle: {
|
|
62
62
|
backgroundColor: (0, _utils.getLight)(theme) || theme.palette.secondary.light,
|
|
63
63
|
border: 'inherit',
|
|
64
|
-
borderBottom: '
|
|
65
|
-
borderRight: '
|
|
64
|
+
borderBottom: 'thin solid ' + theme.palette.grey[500],
|
|
65
|
+
borderRight: 'thin solid ' + theme.palette.grey[500],
|
|
66
66
|
padding: theme.spacing(0.5) + 'px ' + theme.spacing(1) + 'px',
|
|
67
67
|
color: theme.palette.grey['A700'],
|
|
68
68
|
verticalAlign: 'middle'
|
|
@@ -72,8 +72,8 @@ var useStyles = (0, _styles.makeStyles)(function (theme) {
|
|
|
72
72
|
backgroundColor: theme.palette.grey[200],
|
|
73
73
|
verticalAlign: 'top',
|
|
74
74
|
border: 'inherit',
|
|
75
|
-
borderBottom: '
|
|
76
|
-
borderRight: '
|
|
75
|
+
borderBottom: 'thin solid ' + theme.palette.grey[500],
|
|
76
|
+
borderRight: 'thin solid ' + theme.palette.grey[500],
|
|
77
77
|
padding: theme.spacing(0.5) + 'px ' + theme.spacing(1) + 'px',
|
|
78
78
|
position: 'sticky',
|
|
79
79
|
zIndex: 1
|
|
@@ -53,8 +53,8 @@ var useStyles = (0, _styles.makeStyles)(function (theme) {
|
|
|
53
53
|
section: {
|
|
54
54
|
backgroundColor: (0, _utils.getDark)(theme) || theme.palette.secondary.dark,
|
|
55
55
|
border: 'inherit',
|
|
56
|
-
borderBottom: '
|
|
57
|
-
borderRight: '
|
|
56
|
+
borderBottom: 'thin solid ' + theme.palette.grey[500],
|
|
57
|
+
borderRight: 'thin solid ' + theme.palette.grey[500],
|
|
58
58
|
padding: theme.spacing(0, 1),
|
|
59
59
|
color: theme.palette.grey['A700'],
|
|
60
60
|
verticalAlign: 'middle',
|
|
@@ -47,8 +47,8 @@ var useStyles = (0, _styles.makeStyles)(function (theme) {
|
|
|
47
47
|
columnsTitle: {
|
|
48
48
|
backgroundColor: (0, _utils.getLight)(theme) || theme.palette.secondary.light,
|
|
49
49
|
border: 'inherit',
|
|
50
|
-
borderBottom: '
|
|
51
|
-
borderRight: '
|
|
50
|
+
borderBottom: 'thin solid ' + theme.palette.grey[500],
|
|
51
|
+
borderRight: 'thin solid ' + theme.palette.grey[500],
|
|
52
52
|
padding: theme.spacing(0.5) + 'px ' + theme.spacing(1) + 'px',
|
|
53
53
|
color: theme.palette.grey['A700'],
|
|
54
54
|
verticalAlign: 'middle',
|
|
@@ -58,8 +58,8 @@ var useStyles = (0, _styles.makeStyles)(function (theme) {
|
|
|
58
58
|
fillerCell: {
|
|
59
59
|
backgroundColor: theme.palette.grey[200],
|
|
60
60
|
border: 'inherit',
|
|
61
|
-
borderBottom: '
|
|
62
|
-
borderRight: '
|
|
61
|
+
borderBottom: 'thin solid ' + theme.palette.grey[500],
|
|
62
|
+
borderRight: 'thin solid ' + theme.palette.grey[500],
|
|
63
63
|
padding: theme.spacing(0.5) + 'px ' + theme.spacing(1) + 'px',
|
|
64
64
|
verticalAlign: 'middle',
|
|
65
65
|
textAlign: 'center',
|