@carbon/charts 1.16.3 → 1.16.4
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 +13 -0
- package/dist/charts/choropleth.d.ts +1 -1
- package/dist/charts/index.d.ts +3 -3
- package/dist/charts/wordcloud.d.ts +3 -2
- package/dist/color-scale-utils-C93P4hee.mjs.map +1 -1
- package/dist/configuration.d.ts +2 -2
- package/dist/demo/charts/choropleth.d.ts +0 -2
- package/dist/demo/index.mjs +27 -32
- package/dist/demo/index.mjs.map +1 -1
- package/dist/demo/styles.css +43 -2
- package/dist/demo/styles.css.map +1 -1
- package/dist/index.d.ts +10 -2
- package/dist/index.mjs +1 -0
- package/dist/index.mjs.map +1 -1
- package/dist/index.umd.d.ts +5 -1
- package/dist/interfaces/charts.d.ts +3 -2
- package/dist/interfaces/index.d.ts +5 -1
- package/dist/umd/bundle.umd.js +14 -14
- package/dist/umd/bundle.umd.js.map +1 -1
- package/package.json +7 -7
package/dist/demo/styles.css
CHANGED
|
@@ -12541,6 +12541,26 @@ fieldset[disabled] .cds--form__helper-text {
|
|
|
12541
12541
|
margin-block-start: -0.0625rem;
|
|
12542
12542
|
}
|
|
12543
12543
|
|
|
12544
|
+
.cds--checkbox-group--horizontal {
|
|
12545
|
+
position: relative;
|
|
12546
|
+
display: flex;
|
|
12547
|
+
flex-flow: row wrap;
|
|
12548
|
+
justify-content: flex-start;
|
|
12549
|
+
}
|
|
12550
|
+
.cds--checkbox-group--horizontal .cds--form-item {
|
|
12551
|
+
flex: none;
|
|
12552
|
+
margin-block-end: 0;
|
|
12553
|
+
}
|
|
12554
|
+
.cds--checkbox-group--horizontal .cds--form-item:not(:last-of-type) {
|
|
12555
|
+
margin-inline-end: 1rem;
|
|
12556
|
+
}
|
|
12557
|
+
.cds--checkbox-group--horizontal .cds--checkbox-label-text {
|
|
12558
|
+
padding-inline-start: 0.5rem;
|
|
12559
|
+
}
|
|
12560
|
+
.cds--checkbox-group--horizontal .cds--label + .cds--form-item.cds--checkbox-wrapper {
|
|
12561
|
+
margin-block-start: 0;
|
|
12562
|
+
}
|
|
12563
|
+
|
|
12544
12564
|
.cds--copy-btn {
|
|
12545
12565
|
position: relative;
|
|
12546
12566
|
display: flex;
|
|
@@ -28964,6 +28984,7 @@ span.cds--pagination__text.cds--pagination__items-count {
|
|
|
28964
28984
|
}
|
|
28965
28985
|
|
|
28966
28986
|
.cds--tile--expandable.cds--tile--expandable--interactive {
|
|
28987
|
+
border: none;
|
|
28967
28988
|
cursor: default;
|
|
28968
28989
|
transition: max-height 150ms cubic-bezier(0.2, 0, 0.38, 0.9);
|
|
28969
28990
|
}
|
|
@@ -29086,6 +29107,15 @@ span.cds--pagination__text.cds--pagination__items-count {
|
|
|
29086
29107
|
inset-inline-end: 2.5rem;
|
|
29087
29108
|
}
|
|
29088
29109
|
|
|
29110
|
+
.cds--tile.cds--tile--selectable.cds--tile--radio > .cds--slug {
|
|
29111
|
+
inset-inline-end: 1rem;
|
|
29112
|
+
transition: inset-inline-end 110ms cubic-bezier(0.2, 0, 0.38, 0.9);
|
|
29113
|
+
}
|
|
29114
|
+
|
|
29115
|
+
.cds--tile.cds--tile--selectable.cds--tile--radio.cds--tile--is-selected > .cds--slug {
|
|
29116
|
+
inset-inline-end: 2.5rem;
|
|
29117
|
+
}
|
|
29118
|
+
|
|
29089
29119
|
.cds--tile.cds--tile--clickable > .cds--slug {
|
|
29090
29120
|
pointer-events: none;
|
|
29091
29121
|
}
|
|
@@ -29126,7 +29156,8 @@ span.cds--pagination__text.cds--pagination__items-count {
|
|
|
29126
29156
|
}
|
|
29127
29157
|
|
|
29128
29158
|
.cds--tile--slug.cds--tile--selectable:focus,
|
|
29129
|
-
.cds--tile--slug.cds--tile--clickable:focus
|
|
29159
|
+
.cds--tile--slug.cds--tile--clickable:focus,
|
|
29160
|
+
.cds--tile-input:focus + .cds--tile--slug.cds--tile {
|
|
29130
29161
|
outline-offset: -1px;
|
|
29131
29162
|
}
|
|
29132
29163
|
|
|
@@ -29150,10 +29181,20 @@ span.cds--pagination__text.cds--pagination__items-count {
|
|
|
29150
29181
|
.cds--tile--slug.cds--tile--selectable .cds--tile-content,
|
|
29151
29182
|
.cds--tile--slug.cds--tile--clickable .cds--tile-content {
|
|
29152
29183
|
position: relative;
|
|
29153
|
-
z-index: 1;
|
|
29154
29184
|
cursor: pointer;
|
|
29155
29185
|
}
|
|
29156
29186
|
|
|
29187
|
+
.cds--tile--slug.cds--tile--selectable .cds--tile-content,
|
|
29188
|
+
.cds--tile--slug.cds--tile--clickable .cds--tile-content,
|
|
29189
|
+
.cds--tile--slug.cds--tile--selectable > .cds--tile__checkmark,
|
|
29190
|
+
.cds--tile--slug.cds--tile--is-selected .cds--slug {
|
|
29191
|
+
z-index: 1;
|
|
29192
|
+
}
|
|
29193
|
+
|
|
29194
|
+
.cds--tile--slug.cds--tile--selectable .cds--slug:has(> .cds--popover--open) {
|
|
29195
|
+
z-index: 2;
|
|
29196
|
+
}
|
|
29197
|
+
|
|
29157
29198
|
.cds--tile--slug.cds--tile--selectable > .cds--slug,
|
|
29158
29199
|
.cds--tile--slug.cds--tile--selectable > .cds--tile__checkmark {
|
|
29159
29200
|
z-index: 1;
|