@carbon/ibm-products 2.75.0 → 2.76.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 +43 -11
- 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 +34 -6
- 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 +43 -11
- 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 +43 -11
- package/css/index.css.map +1 -1
- package/css/index.min.css +1 -1
- package/css/index.min.css.map +1 -1
- package/es/components/Coachmark/next/Coachmark/CoachmarkTagline/CoachmarkTagline.d.ts +39 -0
- package/es/components/Coachmark/next/Coachmark/CoachmarkTagline/CoachmarkTagline.js +97 -0
- package/es/components/Coachmark/next/Coachmark/CoachmarkTagline/index.d.ts +8 -0
- package/es/components/Coachmark/next/Coachmark/CoachmarkTagline/index.js +8 -0
- package/es/components/PageHeader/next/PageHeader.d.ts +10 -10
- package/es/components/PageHeader/next/PageHeader.js +55 -71
- package/es/components/PageHeader/next/index.d.ts +2 -2
- package/es/components/TagOverflow/TagOverflowPopover.js +7 -2
- package/es/components/TagSet/TagSetOverflow.js +7 -2
- package/es/components/index.d.ts +1 -0
- package/es/index.js +20 -18
- package/es/patterns/DeleteAndRemove/_story-assets/utils.d.ts +7 -0
- package/lib/components/Coachmark/next/Coachmark/CoachmarkTagline/CoachmarkTagline.d.ts +39 -0
- package/lib/components/Coachmark/next/Coachmark/CoachmarkTagline/CoachmarkTagline.js +99 -0
- package/lib/components/Coachmark/next/Coachmark/CoachmarkTagline/index.d.ts +8 -0
- package/lib/components/Coachmark/next/Coachmark/CoachmarkTagline/index.js +14 -0
- package/lib/components/PageHeader/next/PageHeader.d.ts +10 -10
- package/lib/components/PageHeader/next/PageHeader.js +54 -68
- package/lib/components/PageHeader/next/index.d.ts +2 -2
- package/lib/components/TagOverflow/TagOverflowPopover.js +7 -2
- package/lib/components/TagSet/TagSetOverflow.js +7 -2
- package/lib/components/index.d.ts +1 -0
- package/lib/index.js +29 -27
- package/lib/patterns/DeleteAndRemove/_story-assets/utils.d.ts +7 -0
- package/package.json +7 -7
- package/scss/components/PageHeader/_page-header.scss +26 -1
- package/scss/components/TagOverflow/_tag-overflow.scss +12 -6
- package/scss/components/TagSet/_tag-set.scss +12 -6
- package/telemetry.yml +4 -2
@@ -100,12 +100,6 @@ $block-class-modal: #{$block-class}-modal;
|
|
100
100
|
font-family: inherit;
|
101
101
|
}
|
102
102
|
|
103
|
-
.#{$block-class-overflow}__show-all-tags-link.#{c4p-settings.$carbon-prefix}--link:visited {
|
104
|
-
display: inline-block;
|
105
|
-
margin: $spacing-03 0 $spacing-02; // to match the tags
|
106
|
-
color: $link-inverse;
|
107
|
-
}
|
108
|
-
|
109
103
|
.#{c4p-settings.$carbon-prefix}--link:active,
|
110
104
|
.#{c4p-settings.$carbon-prefix}--link:active:visited,
|
111
105
|
.#{c4p-settings.$carbon-prefix}--link:active:visited:hover {
|
@@ -120,6 +114,18 @@ $block-class-modal: #{$block-class}-modal;
|
|
120
114
|
.#{$block-class-overflow}__show-all-tags-link {
|
121
115
|
color: $link-inverse;
|
122
116
|
margin-block-start: $spacing-03;
|
117
|
+
|
118
|
+
&:hover {
|
119
|
+
color: $link-inverse-hover;
|
120
|
+
}
|
121
|
+
|
122
|
+
&:focus {
|
123
|
+
color: $focus-inverse;
|
124
|
+
}
|
125
|
+
|
126
|
+
&:visited {
|
127
|
+
color: $link-inverse;
|
128
|
+
}
|
123
129
|
}
|
124
130
|
|
125
131
|
.#{$block-class-overflow}__tag-item.#{$block-class-overflow}__tag-item--tag
|
@@ -102,12 +102,6 @@ $block-class-modal: #{$_block-class}-modal;
|
|
102
102
|
text-align: start;
|
103
103
|
}
|
104
104
|
|
105
|
-
.#{$block-class-overflow}__show-all-tags-link.#{$carbon-prefix}--link:visited {
|
106
|
-
display: inline-block;
|
107
|
-
margin: $spacing-03 0 $spacing-02; // to match the tags
|
108
|
-
color: $link-inverse;
|
109
|
-
}
|
110
|
-
|
111
105
|
.#{$carbon-prefix}--link:active,
|
112
106
|
.#{$carbon-prefix}--link:active:visited,
|
113
107
|
.#{$carbon-prefix}--link:active:visited:hover {
|
@@ -122,6 +116,18 @@ $block-class-modal: #{$_block-class}-modal;
|
|
122
116
|
.#{$block-class-overflow}__show-all-tags-link {
|
123
117
|
color: $link-inverse;
|
124
118
|
margin-block-start: $spacing-03;
|
119
|
+
|
120
|
+
&:hover {
|
121
|
+
color: $link-inverse-hover;
|
122
|
+
}
|
123
|
+
|
124
|
+
&:focus {
|
125
|
+
color: $focus-inverse;
|
126
|
+
}
|
127
|
+
|
128
|
+
&:visited {
|
129
|
+
color: $link-inverse;
|
130
|
+
}
|
125
131
|
}
|
126
132
|
|
127
133
|
.#{$block-class-overflow}__tag-item.#{$block-class-overflow}__tag-item--tag
|
package/telemetry.yml
CHANGED
@@ -44,6 +44,7 @@ collect:
|
|
44
44
|
- breadcrumbOverflowTooltipAlign
|
45
45
|
- breadcrumbs
|
46
46
|
- button
|
47
|
+
- buttonProps
|
47
48
|
- cancelButtonText
|
48
49
|
- caret
|
49
50
|
- cellSize
|
@@ -545,8 +546,6 @@ collect:
|
|
545
546
|
- overlayRef
|
546
547
|
- position
|
547
548
|
- positionTune
|
548
|
-
# CoachmarkBeacon
|
549
|
-
- buttonProps
|
550
549
|
# CoachmarkDragbar
|
551
550
|
- a11yKeyboardHandler
|
552
551
|
- onDrag
|
@@ -867,6 +866,9 @@ collect:
|
|
867
866
|
- expandText
|
868
867
|
# PageHeaderTabBar
|
869
868
|
- scroller
|
869
|
+
# PageHeaderTagOverflow
|
870
|
+
- renderOverflowTag
|
871
|
+
- renderPopoverContent
|
870
872
|
# PageHeaderTitle
|
871
873
|
- blockClass
|
872
874
|
- hasBreadcrumbRow
|