@carbon/ibm-products-styles 2.78.0 → 2.79.0-rc.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.
- package/css/index-full-carbon.css +1308 -362
- package/css/index-full-carbon.css.map +1 -1
- package/css/index-full-carbon.min.css +1 -1
- package/css/index-full-carbon.min.css.map +1 -1
- package/css/index-without-carbon-released-only.css +189 -10
- package/css/index-without-carbon-released-only.css.map +1 -1
- package/css/index-without-carbon-released-only.min.css +1 -1
- package/css/index-without-carbon-released-only.min.css.map +1 -1
- package/css/index-without-carbon.css +557 -20
- package/css/index-without-carbon.css.map +1 -1
- package/css/index-without-carbon.min.css +1 -1
- package/css/index-without-carbon.min.css.map +1 -1
- package/css/index.css +670 -161
- package/css/index.css.map +1 -1
- package/css/index.min.css +1 -1
- package/css/index.min.css.map +1 -1
- package/package.json +3 -3
- package/scss/components/BreadcrumbWithOverflow/_breadcrumb-with-overflow.scss +5 -0
- package/scss/components/Checklist/_checklist.scss +0 -2
- package/scss/components/PageHeader/_page-header.scss +8 -0
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@carbon/ibm-products-styles",
|
|
3
3
|
"description": "Carbon for IBM Products styles",
|
|
4
|
-
"version": "2.
|
|
4
|
+
"version": "2.79.0-rc.0",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"installConfig": {
|
|
7
7
|
"hoistingLimits": "none"
|
|
@@ -49,7 +49,7 @@
|
|
|
49
49
|
"cross-env": "^10.0.0",
|
|
50
50
|
"glob": "^11.0.1",
|
|
51
51
|
"jest": "^29.7.0",
|
|
52
|
-
"jest-config-ibm-cloud-cognitive": "^1.
|
|
52
|
+
"jest-config-ibm-cloud-cognitive": "^1.42.0-rc.0",
|
|
53
53
|
"jest-environment-jsdom": "^29.7.0",
|
|
54
54
|
"npm-run-all2": "^8.0.0",
|
|
55
55
|
"rimraf": "^6.0.1",
|
|
@@ -66,5 +66,5 @@
|
|
|
66
66
|
"dependencies": {
|
|
67
67
|
"@ibm/telemetry-js": "^1.9.1"
|
|
68
68
|
},
|
|
69
|
-
"gitHead": "
|
|
69
|
+
"gitHead": "90b99422707f0902441d908a6e05aaddc54c0755"
|
|
70
70
|
}
|
|
@@ -8,6 +8,7 @@
|
|
|
8
8
|
// Standard imports.
|
|
9
9
|
@use '@carbon/styles/scss/breakpoint' as *;
|
|
10
10
|
@use '@carbon/styles/scss/spacing' as *;
|
|
11
|
+
@use '@carbon/styles/scss/theme' as *;
|
|
11
12
|
@use '@carbon/styles/scss/utilities';
|
|
12
13
|
@use '../../global/styles/project-settings' as c4p-settings;
|
|
13
14
|
@use '../../global/styles/mixins' as *;
|
|
@@ -45,6 +46,10 @@ $_block-class: #{c4p-settings.$pkg-prefix}--breadcrumb-with-overflow;
|
|
|
45
46
|
|
|
46
47
|
.#{$_block-class}__breadcrumb-back {
|
|
47
48
|
display: none;
|
|
49
|
+
|
|
50
|
+
svg {
|
|
51
|
+
fill: $icon-primary;
|
|
52
|
+
}
|
|
48
53
|
}
|
|
49
54
|
|
|
50
55
|
.#{$_block-class}__back__button.#{c4p-settings.$carbon-prefix}--btn {
|
|
@@ -62,12 +62,10 @@ $block-class: #{c4p-settings.$pkg-prefix}--checklist;
|
|
|
62
62
|
|
|
63
63
|
.#{$block-class}__title {
|
|
64
64
|
@include type-style('productive-heading-02');
|
|
65
|
-
@include ellipsis-2-lines();
|
|
66
65
|
}
|
|
67
66
|
|
|
68
67
|
.#{$block-class}__chart-label {
|
|
69
68
|
@include type-style('label-01');
|
|
70
|
-
@include ellipsis-2-lines();
|
|
71
69
|
|
|
72
70
|
color: $text-secondary;
|
|
73
71
|
}
|
|
@@ -774,6 +774,10 @@ $duration: 1000ms;
|
|
|
774
774
|
|
|
775
775
|
.#{$block-class}__breadcrumb__icon {
|
|
776
776
|
margin-inline-end: $spacing-03;
|
|
777
|
+
|
|
778
|
+
svg {
|
|
779
|
+
fill: $icon-primary;
|
|
780
|
+
}
|
|
777
781
|
}
|
|
778
782
|
|
|
779
783
|
.#{$block-class}__breadcrumb__actions {
|
|
@@ -870,6 +874,10 @@ $duration: 1000ms;
|
|
|
870
874
|
|
|
871
875
|
.#{$block-class}__content__icon {
|
|
872
876
|
margin-inline-end: $spacing-05;
|
|
877
|
+
|
|
878
|
+
svg {
|
|
879
|
+
fill: $icon-primary;
|
|
880
|
+
}
|
|
873
881
|
}
|
|
874
882
|
|
|
875
883
|
.#{$block-class}__content__page-actions {
|