@carbon/styles 1.89.0-rc.0 → 1.90.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/styles.css +28 -4
- package/css/styles.min.css +1 -1
- package/package.json +11 -11
- package/scss/components/number-input/_number-input.scss +1 -2
- package/scss/components/progress-bar/_progress-bar.scss +5 -2
- package/scss/components/search/_search.scss +9 -0
- package/scss/components/tag/_tag.scss +0 -1
- package/scss/components/ui-shell/header/_header.scss +21 -1
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@carbon/styles",
|
|
3
3
|
"description": "Styles for the Carbon Design System",
|
|
4
|
-
"version": "1.
|
|
4
|
+
"version": "1.90.0-rc.0",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
@@ -40,18 +40,18 @@
|
|
|
40
40
|
}
|
|
41
41
|
},
|
|
42
42
|
"dependencies": {
|
|
43
|
-
"@carbon/colors": "^11.
|
|
43
|
+
"@carbon/colors": "^11.40.0-rc.0",
|
|
44
44
|
"@carbon/feature-flags": "^0.30.0",
|
|
45
|
-
"@carbon/grid": "^11.
|
|
46
|
-
"@carbon/layout": "^11.
|
|
47
|
-
"@carbon/motion": "^11.
|
|
48
|
-
"@carbon/themes": "^11.
|
|
49
|
-
"@carbon/type": "^11.
|
|
45
|
+
"@carbon/grid": "^11.43.0-rc.0",
|
|
46
|
+
"@carbon/layout": "^11.41.0-rc.0",
|
|
47
|
+
"@carbon/motion": "^11.35.0-rc.0",
|
|
48
|
+
"@carbon/themes": "^11.60.0-rc.0",
|
|
49
|
+
"@carbon/type": "^11.47.0-rc.0",
|
|
50
50
|
"@ibm/plex": "6.0.0-next.6",
|
|
51
51
|
"@ibm/plex-mono": "1.1.0",
|
|
52
|
-
"@ibm/plex-sans": "
|
|
52
|
+
"@ibm/plex-sans": "1.1.0",
|
|
53
53
|
"@ibm/plex-sans-arabic": "1.1.0",
|
|
54
|
-
"@ibm/plex-sans-devanagari": "
|
|
54
|
+
"@ibm/plex-sans-devanagari": "1.1.0",
|
|
55
55
|
"@ibm/plex-sans-hebrew": "0.0.3-alpha.0",
|
|
56
56
|
"@ibm/plex-sans-thai": "0.0.3-alpha.0",
|
|
57
57
|
"@ibm/plex-sans-thai-looped": "0.0.3-alpha.0",
|
|
@@ -59,7 +59,7 @@
|
|
|
59
59
|
"@ibm/telemetry-js": "^1.5.0"
|
|
60
60
|
},
|
|
61
61
|
"devDependencies": {
|
|
62
|
-
"@carbon/test-utils": "^10.38.0
|
|
62
|
+
"@carbon/test-utils": "^10.38.0",
|
|
63
63
|
"autoprefixer": "^10.4.7",
|
|
64
64
|
"browserslist-config-carbon": "^11.2.0",
|
|
65
65
|
"css": "^3.0.0",
|
|
@@ -75,5 +75,5 @@
|
|
|
75
75
|
"scss/**/*.css",
|
|
76
76
|
"css/**/*.css"
|
|
77
77
|
],
|
|
78
|
-
"gitHead": "
|
|
78
|
+
"gitHead": "d70cdbd45cfce813ce7ec6b396fcfa95ad2a81b6"
|
|
79
79
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
//
|
|
2
|
-
// Copyright IBM Corp. 2016,
|
|
2
|
+
// Copyright IBM Corp. 2016, 2025
|
|
3
3
|
//
|
|
4
4
|
// This source code is licensed under the Apache-2.0 license found in the
|
|
5
5
|
// LICENSE file in the root directory of this source tree.
|
|
@@ -131,7 +131,6 @@
|
|
|
131
131
|
.#{$prefix}--number input[type='number']:disabled,
|
|
132
132
|
.#{$prefix}--number input[type='text']:disabled {
|
|
133
133
|
background-color: $field;
|
|
134
|
-
border-block-end-color: transparent;
|
|
135
134
|
color: $text-disabled;
|
|
136
135
|
cursor: not-allowed;
|
|
137
136
|
}
|
|
@@ -114,11 +114,14 @@
|
|
|
114
114
|
}
|
|
115
115
|
|
|
116
116
|
.#{$prefix}--progress-bar--error .#{$prefix}--progress-bar__bar,
|
|
117
|
-
.#{$prefix}--progress-bar--error .#{$prefix}--progress-bar__status-icon
|
|
118
|
-
.#{$prefix}--progress-bar--error .#{$prefix}--progress-bar__helper-text {
|
|
117
|
+
.#{$prefix}--progress-bar--error .#{$prefix}--progress-bar__status-icon {
|
|
119
118
|
color: $support-error;
|
|
120
119
|
}
|
|
121
120
|
|
|
121
|
+
.#{$prefix}--progress-bar--error .#{$prefix}--progress-bar__helper-text {
|
|
122
|
+
color: $text-error;
|
|
123
|
+
}
|
|
124
|
+
|
|
122
125
|
.#{$prefix}--progress-bar--finished .#{$prefix}--progress-bar__bar,
|
|
123
126
|
.#{$prefix}--progress-bar--error .#{$prefix}--progress-bar__bar {
|
|
124
127
|
transform: scaleX(1);
|
|
@@ -68,6 +68,15 @@
|
|
|
68
68
|
&::-ms-clear {
|
|
69
69
|
display: none;
|
|
70
70
|
}
|
|
71
|
+
|
|
72
|
+
&::-webkit-search-decoration,
|
|
73
|
+
&::-webkit-search-cancel-button,
|
|
74
|
+
&::-webkit-search-results-button,
|
|
75
|
+
&::-webkit-search-results-decoration {
|
|
76
|
+
display: none;
|
|
77
|
+
-webkit-appearance: none;
|
|
78
|
+
appearance: none;
|
|
79
|
+
}
|
|
71
80
|
}
|
|
72
81
|
|
|
73
82
|
.#{$prefix}--search-input[disabled] {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
//
|
|
2
|
-
// Copyright IBM Corp. 2016,
|
|
2
|
+
// Copyright IBM Corp. 2016, 2025
|
|
3
3
|
//
|
|
4
4
|
// This source code is licensed under the Apache-2.0 license found in the
|
|
5
5
|
// LICENSE file in the root directory of this source tree.
|
|
@@ -57,6 +57,26 @@
|
|
|
57
57
|
z-index: z('header') + 1;
|
|
58
58
|
}
|
|
59
59
|
|
|
60
|
+
.#{$prefix}--header {
|
|
61
|
+
.#{$prefix}--popover--bottom-start:not(.#{$prefix}--popover--auto-align) {
|
|
62
|
+
> .#{$prefix}--popover {
|
|
63
|
+
> .#{$prefix}--popover-caret,
|
|
64
|
+
> .#{$prefix}--popover-content {
|
|
65
|
+
inset-inline-start: $spacing-05;
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
.#{$prefix}--popover--bottom-end:not(.#{$prefix}--popover--auto-align) {
|
|
71
|
+
> .#{$prefix}--popover {
|
|
72
|
+
> .#{$prefix}--popover-caret,
|
|
73
|
+
> .#{$prefix}--popover-content {
|
|
74
|
+
inset-inline-end: $spacing-05;
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
}
|
|
79
|
+
|
|
60
80
|
.#{$prefix}--header__action > :first-child {
|
|
61
81
|
margin-block-start: 0;
|
|
62
82
|
}
|