@carbon/charts 1.13.3 → 1.13.5
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 +18 -0
- package/dist/demo/index.mjs +54 -54
- package/dist/demo/index.mjs.map +1 -1
- package/dist/demo/styles.css +23850 -26853
- package/dist/demo/styles.css.map +1 -1
- package/dist/styles.css +518 -3791
- package/dist/styles.css.map +1 -1
- package/dist/styles.min.css +1 -1
- package/dist/styles.min.css.map +1 -1
- package/package.json +13 -13
- package/scss/components/_grid-brush.scss +2 -2
- package/scss/components/_title.scss +7 -5
- package/scss/components/index.scss +0 -1
- package/scss/components/toolbar/_buttons.scss +162 -0
- package/scss/components/toolbar/_modal.scss +323 -0
- package/scss/components/toolbar/index.scss +2 -0
- package/scss/demos.scss +51 -72
- package/styles.css +518 -3791
- package/styles.min.css +1 -1
- package/scss/components/_modal.scss +0 -51
- package/scss/components/_toolbar.scss +0 -60
|
@@ -1,51 +0,0 @@
|
|
|
1
|
-
@use '@carbon/styles/scss/components/modal';
|
|
2
|
-
@use '@carbon/styles/scss/components/data-table';
|
|
3
|
-
@use '@carbon/styles/scss/components/button';
|
|
4
|
-
@use '../globals';
|
|
5
|
-
@use '../tokens';
|
|
6
|
-
|
|
7
|
-
.#{globals.$prefix}--chart-holder {
|
|
8
|
-
.#{globals.$prefix}--modal {
|
|
9
|
-
&.is-visible {
|
|
10
|
-
z-index: 99999;
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
.#{globals.$prefix}--modal-container {
|
|
14
|
-
.#{globals.$prefix}--modal-header {
|
|
15
|
-
&__label {
|
|
16
|
-
margin-top: 0;
|
|
17
|
-
margin-bottom: 0;
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
&__heading {
|
|
21
|
-
margin-top: 0.5rem;
|
|
22
|
-
margin-bottom: 1rem;
|
|
23
|
-
}
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
.#{globals.$prefix}--modal-content {
|
|
27
|
-
padding: 0;
|
|
28
|
-
margin-bottom: 0;
|
|
29
|
-
color-scheme: tokens.$color-scheme;
|
|
30
|
-
|
|
31
|
-
table {
|
|
32
|
-
position: relative;
|
|
33
|
-
border-collapse: collapse;
|
|
34
|
-
|
|
35
|
-
th {
|
|
36
|
-
position: sticky;
|
|
37
|
-
top: 0;
|
|
38
|
-
}
|
|
39
|
-
}
|
|
40
|
-
}
|
|
41
|
-
|
|
42
|
-
.#{globals.$prefix}--modal-footer {
|
|
43
|
-
background-color: transparent;
|
|
44
|
-
|
|
45
|
-
.#{globals.$prefix}--#{globals.$charts-prefix}-modal-footer-spacer {
|
|
46
|
-
width: 50%;
|
|
47
|
-
}
|
|
48
|
-
}
|
|
49
|
-
}
|
|
50
|
-
}
|
|
51
|
-
}
|
|
@@ -1,60 +0,0 @@
|
|
|
1
|
-
@use '@carbon/styles/scss/theme';
|
|
2
|
-
@use '@carbon/styles/scss/components/overflow-menu';
|
|
3
|
-
@use '../globals';
|
|
4
|
-
|
|
5
|
-
.#{globals.$prefix}--chart-holder {
|
|
6
|
-
.cds--overflow-menu,
|
|
7
|
-
.cds--overflow-menu__trigger {
|
|
8
|
-
width: 2rem;
|
|
9
|
-
height: 2rem;
|
|
10
|
-
}
|
|
11
|
-
|
|
12
|
-
.#{globals.$prefix}--#{globals.$charts-prefix}--toolbar {
|
|
13
|
-
display: flex;
|
|
14
|
-
|
|
15
|
-
div.toolbar-control {
|
|
16
|
-
&.disabled {
|
|
17
|
-
&,
|
|
18
|
-
button {
|
|
19
|
-
cursor: not-allowed;
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
&:hover,
|
|
23
|
-
button:hover {
|
|
24
|
-
background-color: transparent;
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
button:focus {
|
|
28
|
-
outline: none;
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
svg {
|
|
32
|
-
fill: theme.$icon-on-color-disabled;
|
|
33
|
-
}
|
|
34
|
-
}
|
|
35
|
-
}
|
|
36
|
-
|
|
37
|
-
.cds--overflow-menu--flip {
|
|
38
|
-
right: 0;
|
|
39
|
-
left: unset;
|
|
40
|
-
|
|
41
|
-
&.is-open {
|
|
42
|
-
display: table;
|
|
43
|
-
}
|
|
44
|
-
|
|
45
|
-
ul {
|
|
46
|
-
margin: 0;
|
|
47
|
-
padding: 0;
|
|
48
|
-
}
|
|
49
|
-
}
|
|
50
|
-
|
|
51
|
-
.cds--loading__background {
|
|
52
|
-
fill: transparent;
|
|
53
|
-
}
|
|
54
|
-
|
|
55
|
-
.cds--loading__stroke {
|
|
56
|
-
stroke-dashoffset: 99;
|
|
57
|
-
fill: transparent;
|
|
58
|
-
}
|
|
59
|
-
}
|
|
60
|
-
}
|