@carbon/ibm-products 1.5.0 → 1.6.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 +206 -44
- package/css/index-full-carbon.css.map +1 -1
- package/css/index-full-carbon.min.css +3 -3
- package/css/index-without-carbon-released-only.css +31 -27
- package/css/index-without-carbon-released-only.css.map +1 -1
- package/css/index-without-carbon-released-only.min.css +3 -3
- package/css/index-without-carbon.css +193 -39
- package/css/index-without-carbon.css.map +1 -1
- package/css/index-without-carbon.min.css +3 -3
- package/css/index.css +195 -41
- package/css/index.css.map +1 -1
- package/css/index.min.css +3 -3
- package/es/components/AddSelect/AddSelect.js +106 -65
- package/es/components/AddSelect/AddSelectBreadcrumbs.js +56 -0
- package/es/components/AddSelect/AddSelectList.js +94 -0
- package/es/components/AddSelect/AddSelectSidebar.js +46 -0
- package/es/components/BreadcrumbWithOverflow/BreadcrumbWithOverflow.js +5 -2
- package/es/components/CancelableTextEdit/CancelableTextEdit.js +2 -2
- package/es/components/Card/Card.js +6 -4
- package/es/components/InlineEdit/InlineEdit.js +223 -74
- package/es/components/NotificationsPanel/NotificationsPanel.js +16 -3
- package/es/components/PageHeader/PageHeader.js +7 -4
- package/es/components/PageHeader/PageHeaderTitle.js +10 -6
- package/es/components/SidePanel/SidePanel.js +32 -15
- package/es/components/WebTerminal/WebTerminal.js +1 -1
- package/es/settings.js +0 -5
- package/lib/components/AddSelect/AddSelect.js +110 -65
- package/lib/components/AddSelect/AddSelectBreadcrumbs.js +71 -0
- package/lib/components/AddSelect/AddSelectList.js +112 -0
- package/lib/components/AddSelect/AddSelectSidebar.js +63 -0
- package/lib/components/BreadcrumbWithOverflow/BreadcrumbWithOverflow.js +5 -2
- package/lib/components/CancelableTextEdit/CancelableTextEdit.js +1 -1
- package/lib/components/Card/Card.js +6 -4
- package/lib/components/InlineEdit/InlineEdit.js +219 -72
- package/lib/components/NotificationsPanel/NotificationsPanel.js +13 -1
- package/lib/components/PageHeader/PageHeader.js +7 -4
- package/lib/components/PageHeader/PageHeaderTitle.js +10 -6
- package/lib/components/SidePanel/SidePanel.js +32 -15
- package/lib/components/WebTerminal/WebTerminal.js +1 -1
- package/lib/settings.js +0 -6
- package/package.json +12 -12
- package/scss/components/AddSelect/_add-select.scss +24 -0
- package/scss/components/BreadcrumbWithOverflow/_index.scss +1 -1
- package/scss/components/CancelableTextEdit/_cancelable-text-edit.scss +1 -0
- package/scss/components/CreateInfluencer/_create-influencer.scss +4 -4
- package/scss/components/CreateTearsheet/_create-tearsheet.scss +2 -2
- package/scss/components/InlineEdit/_inline-edit.scss +210 -9
- package/scss/components/InlineEdit/_storybook-styles.scss +13 -0
- package/scss/components/NotificationsPanel/_notifications-panel.scss +2 -2
- package/scss/components/PageHeader/_index.scss +1 -1
- package/scss/components/PageHeader/_page-header.scss +1 -1
- package/scss/components/ProductiveCard/_productive-card.scss +0 -4
- package/scss/components/SidePanel/_side-panel.scss +15 -6
- package/scss/components/StatusIcon/_index.scss +1 -1
- package/scss/components/TagSet/_index.scss +1 -1
- package/scss/components/UserProfileImage/_index.scss +1 -1
- package/scss/components/WebTerminal/_web-terminal.scss +2 -2
- package/scss/global/styles/_project-settings.scss +5 -1
- package/es/generated/feature-flags/feature-flags.js +0 -15
- package/lib/generated/feature-flags/feature-flags.js +0 -22
- package/scss/generated/feature-flags/_feature-flags.scss +0 -19
@@ -25,7 +25,7 @@ $block-class: #{$pkg-prefix}--side-panel;
|
|
25
25
|
$action-set-block-class: #{$pkg-prefix}--action-set;
|
26
26
|
|
27
27
|
@mixin sidePanelEntranceRight($size: map-get($side-panel-sizes, md)) {
|
28
|
-
@keyframes
|
28
|
+
@keyframes side-panel-entrance-right {
|
29
29
|
0% {
|
30
30
|
opacity: 0;
|
31
31
|
// stylelint-disable-next-line carbon/layout-token-use
|
@@ -39,7 +39,7 @@ $action-set-block-class: #{$pkg-prefix}--action-set;
|
|
39
39
|
}
|
40
40
|
|
41
41
|
@mixin sidePanelEntranceLeft($size: map-get($side-panel-sizes, md)) {
|
42
|
-
@keyframes
|
42
|
+
@keyframes side-panel-entrance-left {
|
43
43
|
0% {
|
44
44
|
opacity: 0;
|
45
45
|
// stylelint-disable-next-line carbon/layout-token-use
|
@@ -90,7 +90,7 @@ $action-set-block-class: #{$pkg-prefix}--action-set;
|
|
90
90
|
}
|
91
91
|
|
92
92
|
@mixin side-panel {
|
93
|
-
@keyframes
|
93
|
+
@keyframes side-panel-exit-left {
|
94
94
|
0% {
|
95
95
|
opacity: 1;
|
96
96
|
transform: translateX(0);
|
@@ -102,7 +102,7 @@ $action-set-block-class: #{$pkg-prefix}--action-set;
|
|
102
102
|
}
|
103
103
|
}
|
104
104
|
|
105
|
-
@keyframes
|
105
|
+
@keyframes side-panel-exit-right {
|
106
106
|
0% {
|
107
107
|
opacity: 1;
|
108
108
|
transform: translateX(0);
|
@@ -186,6 +186,15 @@ $action-set-block-class: #{$pkg-prefix}--action-set;
|
|
186
186
|
&::before {
|
187
187
|
@include setDividerStyles();
|
188
188
|
}
|
189
|
+
&.#{$block-class}__title-container--reduced-motion {
|
190
|
+
z-index: 5;
|
191
|
+
border-bottom: 1px solid $decorative-01;
|
192
|
+
margin-bottom: $spacing-05;
|
193
|
+
}
|
194
|
+
&.#{$block-class}__title-container--reduced-motion.#{$block-class}__title-container--no-title-animation {
|
195
|
+
border-bottom: 0;
|
196
|
+
margin-bottom: 0;
|
197
|
+
}
|
189
198
|
&.#{$block-class}__on-detail-step .#{$block-class}__collapsed-title-text {
|
190
199
|
top: $spacing-09;
|
191
200
|
}
|
@@ -444,7 +453,7 @@ $action-set-block-class: #{$pkg-prefix}--action-set;
|
|
444
453
|
background-color: $field-02;
|
445
454
|
}
|
446
455
|
|
447
|
-
@keyframes
|
456
|
+
@keyframes side-panel-overlay-entrance {
|
448
457
|
0% {
|
449
458
|
opacity: 0;
|
450
459
|
}
|
@@ -453,7 +462,7 @@ $action-set-block-class: #{$pkg-prefix}--action-set;
|
|
453
462
|
}
|
454
463
|
}
|
455
464
|
|
456
|
-
@keyframes
|
465
|
+
@keyframes side-panel-overlay-exit {
|
457
466
|
0% {
|
458
467
|
opacity: 1;
|
459
468
|
}
|
@@ -4,7 +4,7 @@
|
|
4
4
|
$web-terminal-width: 36.5rem;
|
5
5
|
$block-class: #{$pkg-prefix}--web-terminal;
|
6
6
|
|
7
|
-
@keyframes
|
7
|
+
@keyframes web-terminal-entrance {
|
8
8
|
0% {
|
9
9
|
opacity: 0;
|
10
10
|
// stylelint-disable-next-line carbon/layout-token-use
|
@@ -16,7 +16,7 @@ $block-class: #{$pkg-prefix}--web-terminal;
|
|
16
16
|
}
|
17
17
|
}
|
18
18
|
|
19
|
-
@keyframes
|
19
|
+
@keyframes web-terminal-exit {
|
20
20
|
0% {
|
21
21
|
opacity: 1;
|
22
22
|
transform: translateX(0);
|
@@ -6,7 +6,11 @@
|
|
6
6
|
//
|
7
7
|
|
8
8
|
// set required feature flags for carbon
|
9
|
-
|
9
|
+
$feature-flags: (
|
10
|
+
ui-shell: true,
|
11
|
+
grid-columns-16: true,
|
12
|
+
enable-css-custom-properties: true,
|
13
|
+
);
|
10
14
|
|
11
15
|
// import the carbon import-once mechanism
|
12
16
|
@import '@carbon/import-once/scss/import-once';
|
@@ -1,15 +0,0 @@
|
|
1
|
-
//
|
2
|
-
// Copyright IBM Corp. 2020, 2020
|
3
|
-
//
|
4
|
-
// This source code is licensed under the Apache-2.0 license found in the
|
5
|
-
// LICENSE file in the root directory of this source tree.
|
6
|
-
//
|
7
|
-
// ******************************
|
8
|
-
// *
|
9
|
-
// * ONLY EDIT IN /common-files/feature-flags files elsewhere are copies
|
10
|
-
// * created by a pre-commit step
|
11
|
-
// *
|
12
|
-
// ******************************
|
13
|
-
export default {
|
14
|
-
'enable-css-custom-properties': false
|
15
|
-
};
|
@@ -1,22 +0,0 @@
|
|
1
|
-
"use strict";
|
2
|
-
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
4
|
-
value: true
|
5
|
-
});
|
6
|
-
exports.default = void 0;
|
7
|
-
//
|
8
|
-
// Copyright IBM Corp. 2020, 2020
|
9
|
-
//
|
10
|
-
// This source code is licensed under the Apache-2.0 license found in the
|
11
|
-
// LICENSE file in the root directory of this source tree.
|
12
|
-
//
|
13
|
-
// ******************************
|
14
|
-
// *
|
15
|
-
// * ONLY EDIT IN /common-files/feature-flags files elsewhere are copies
|
16
|
-
// * created by a pre-commit step
|
17
|
-
// *
|
18
|
-
// ******************************
|
19
|
-
var _default = {
|
20
|
-
'enable-css-custom-properties': false
|
21
|
-
};
|
22
|
-
exports.default = _default;
|
@@ -1,19 +0,0 @@
|
|
1
|
-
//
|
2
|
-
// Copyright IBM Corp. 2020, 2020
|
3
|
-
//
|
4
|
-
// This source code is licensed under the Apache-2.0 license found in the
|
5
|
-
// LICENSE file in the root directory of this source tree.
|
6
|
-
//
|
7
|
-
|
8
|
-
// ******************************
|
9
|
-
// *
|
10
|
-
// * ONLY EDIT IN /common-files/feature-flags files elsewhere are copies
|
11
|
-
// * created by a pre-commit step
|
12
|
-
// *
|
13
|
-
// ******************************
|
14
|
-
|
15
|
-
$feature-flags: (
|
16
|
-
ui-shell: true,
|
17
|
-
grid-columns-16: true,
|
18
|
-
enable-css-custom-properties: true,
|
19
|
-
);
|