@carbon/ibm-products 2.0.0-rc.24 → 2.0.0-rc.25
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 +18 -26
- package/css/index-full-carbon.css.map +1 -1
- package/css/index-full-carbon.min.css +3 -3
- package/css/index-full-carbon.min.css.map +1 -1
- package/css/index-without-carbon-released-only.css +9 -21
- package/css/index-without-carbon-released-only.css.map +1 -1
- package/css/index-without-carbon-released-only.min.css +2 -2
- package/css/index-without-carbon-released-only.min.css.map +1 -1
- package/css/index-without-carbon.css +18 -26
- package/css/index-without-carbon.css.map +1 -1
- package/css/index-without-carbon.min.css +3 -3
- package/css/index-without-carbon.min.css.map +1 -1
- package/css/index.css +18 -26
- package/css/index.css.map +1 -1
- package/css/index.min.css +3 -3
- package/css/index.min.css.map +1 -1
- package/es/components/CreateFullPage/CreateFullPageStep.js +16 -9
- package/es/components/CreateTearsheet/CreateTearsheetStep.js +8 -8
- package/es/components/CreateTearsheet/preview-components/MultiStepTearsheet.js +11 -17
- package/es/components/CreateTearsheet/preview-components/MultiStepWithIntro.js +9 -13
- package/es/components/Datagrid/Datagrid/DatagridContent.js +1 -1
- package/es/components/Datagrid/Datagrid/DatagridVirtualBody.js +15 -4
- package/es/components/Datagrid/Datagrid/addons/CustomizeColumns/Columns.js +6 -1
- package/es/components/Datagrid/Datagrid/addons/CustomizeColumns/CustomizeColumnsTearsheet.js +1 -6
- package/es/components/Datagrid/useSortableColumns.js +12 -4
- package/es/components/SidePanel/SidePanel.js +3 -5
- package/lib/components/CreateFullPage/CreateFullPageStep.js +14 -7
- package/lib/components/CreateTearsheet/CreateTearsheetStep.js +7 -7
- package/lib/components/CreateTearsheet/preview-components/MultiStepTearsheet.js +10 -16
- package/lib/components/CreateTearsheet/preview-components/MultiStepWithIntro.js +9 -13
- package/lib/components/Datagrid/Datagrid/DatagridContent.js +1 -1
- package/lib/components/Datagrid/Datagrid/DatagridVirtualBody.js +15 -3
- package/lib/components/Datagrid/Datagrid/addons/CustomizeColumns/Columns.js +6 -1
- package/lib/components/Datagrid/Datagrid/addons/CustomizeColumns/CustomizeColumnsTearsheet.js +1 -6
- package/lib/components/Datagrid/useSortableColumns.js +12 -4
- package/lib/components/SidePanel/SidePanel.js +2 -4
- package/package.json +2 -2
- package/scss/components/CreateFullPage/_create-full-page.scss +5 -10
- package/scss/components/CreateTearsheet/_create-tearsheet.scss +8 -3
- package/scss/components/Datagrid/styles/_datagrid.scss +4 -0
- package/scss/components/Datagrid/styles/_useSortableColumns.scss +6 -3
- package/scss/components/EmptyStates/_empty-state.scss +2 -2
- package/scss/components/SidePanel/_side-panel.scss +5 -14
@@ -1,5 +1,5 @@
|
|
1
1
|
//
|
2
|
-
// Copyright IBM Corp. 2021,
|
2
|
+
// Copyright IBM Corp. 2021, 2023
|
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.
|
@@ -41,6 +41,11 @@ $tearsheet-divider-class: #{c4p-settings.$pkg-prefix}--tearsheet-create__section
|
|
41
41
|
$tearsheet-fieldset-class: #{c4p-settings.$pkg-prefix}--tearsheet-create__step--fieldset;
|
42
42
|
|
43
43
|
.#{$create-tearsheet-block-class} .#{$step-block-class}__step--visible-step {
|
44
|
+
padding-right: $spacing-03;
|
45
|
+
padding-left: $spacing-03;
|
46
|
+
|
47
|
+
margin-left: 0;
|
48
|
+
|
44
49
|
// stylelint-disable-next-line carbon/motion-easing-use
|
45
50
|
animation: step-content-entrance $duration-slow-01;
|
46
51
|
animation-fill-mode: forwards;
|
@@ -53,7 +58,6 @@ $tearsheet-fieldset-class: #{c4p-settings.$pkg-prefix}--tearsheet-create__step--
|
|
53
58
|
}
|
54
59
|
|
55
60
|
.#{$step-block-class} .#{c4p-settings.$carbon-prefix}--css-grid {
|
56
|
-
padding-left: 0;
|
57
61
|
margin-left: 0;
|
58
62
|
}
|
59
63
|
|
@@ -78,7 +82,8 @@ $tearsheet-fieldset-class: #{c4p-settings.$pkg-prefix}--tearsheet-create__step--
|
|
78
82
|
|
79
83
|
.#{$create-tearsheet-block-class} .#{$create-tearsheet-block-class}__content {
|
80
84
|
height: 100%;
|
81
|
-
padding: $spacing-06;
|
85
|
+
padding-top: $spacing-06;
|
86
|
+
padding-bottom: $spacing-06;
|
82
87
|
overflow-x: hidden;
|
83
88
|
}
|
84
89
|
|
@@ -24,7 +24,9 @@
|
|
24
24
|
.#{c4p-settings.$carbon-prefix}--table-sort:focus,
|
25
25
|
.#{c4p-settings.$carbon-prefix}--table-header-label
|
26
26
|
.#{c4p-settings.$carbon-prefix}--table-sort:active,
|
27
|
-
.#{c4p-settings.$carbon-prefix}--table-header-label
|
27
|
+
.#{c4p-settings.$carbon-prefix}--table-header-label
|
28
|
+
button:focus
|
29
|
+
.#{$block-class}__sortable-icon {
|
28
30
|
/* stylelint-disable-next-line declaration-no-important */
|
29
31
|
background: none !important;
|
30
32
|
/* stylelint-disable-next-line declaration-no-important */
|
@@ -54,7 +56,7 @@
|
|
54
56
|
}
|
55
57
|
.#{c4p-settings.$carbon-prefix}--table-header-label
|
56
58
|
.#{c4p-settings.$carbon-prefix}--table-sort
|
57
|
-
|
59
|
+
.#{$block-class}__sortable-icon {
|
58
60
|
fill: $text-primary;
|
59
61
|
opacity: 0;
|
60
62
|
visibility: hidden;
|
@@ -69,7 +71,8 @@
|
|
69
71
|
.#{$block-class}__sortableColumn:hover,
|
70
72
|
.#{$block-class}__sortableColumn:focus-within,
|
71
73
|
.#{$block-class}__sortableColumn.#{$block-class}__isSorted {
|
72
|
-
.#{c4p-settings.$carbon-prefix}--table-header-label
|
74
|
+
.#{c4p-settings.$carbon-prefix}--table-header-label
|
75
|
+
.#{$block-class}__sortable-icon {
|
73
76
|
opacity: 1;
|
74
77
|
visibility: visible;
|
75
78
|
}
|
@@ -18,8 +18,8 @@ $block-class: #{c4p-settings.$pkg-prefix}--empty-state;
|
|
18
18
|
|
19
19
|
.#{$block-class}__header {
|
20
20
|
@include type.type-style('heading-03');
|
21
|
-
|
22
|
-
padding-bottom:
|
21
|
+
|
22
|
+
padding-bottom: $spacing-03;
|
23
23
|
margin: 0;
|
24
24
|
}
|
25
25
|
|
@@ -1,5 +1,5 @@
|
|
1
1
|
//
|
2
|
-
// Copyright IBM Corp. 2020,
|
2
|
+
// Copyright IBM Corp. 2020, 2023
|
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.
|
@@ -314,19 +314,10 @@ $action-set-block-class: #{c4p-settings.$pkg-prefix}--action-set;
|
|
314
314
|
margin-bottom: $spacing-03;
|
315
315
|
background-color: $layer-01;
|
316
316
|
transition: transform $duration-moderate-01 motion(standard);
|
317
|
-
|
318
|
-
|
319
|
-
|
320
|
-
|
321
|
-
color: $text-primary;
|
322
|
-
}
|
323
|
-
&.#{$block-class}__action-toolbar-icon-only-button svg {
|
324
|
-
margin-left: $spacing-03;
|
325
|
-
}
|
326
|
-
&.#{$block-class}__action-toolbar-leading-button {
|
327
|
-
margin-right: $spacing-03;
|
328
|
-
}
|
329
|
-
}
|
317
|
+
}
|
318
|
+
|
319
|
+
.#{$block-class}__action-toolbar-leading-button {
|
320
|
+
margin-right: $spacing-03;
|
330
321
|
}
|
331
322
|
|
332
323
|
.#{c4p-settings.$carbon-prefix}--btn.#{$block-class}__navigation-back-button {
|