@carbon/ibm-products 2.43.2-canary.78 → 2.43.2-canary.80
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 +241 -56
- 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 +3 -0
- 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 +61 -18
- 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 +162 -42
- 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/ActionBar/ActionBarItem.js +1 -1
- package/es/components/Datagrid/Datagrid/addons/Filtering/hooks/useFilters.js +33 -1
- package/es/components/StringFormatter/StringFormatter.js +14 -3
- package/es/components/StringFormatter/utils/enums.d.ts +20 -1
- package/es/components/StringFormatter/utils/enums.js +22 -2
- package/es/node_modules/@carbon/icon-helpers/es/index.js +49 -62
- package/es/node_modules/@carbon/icons-react/es/generated/bucket-2.js +1020 -1058
- package/es/node_modules/@carbon/icons-react/es/generated/bucket-9.js +881 -758
- package/lib/components/ActionBar/ActionBarItem.js +1 -1
- package/lib/components/Datagrid/Datagrid/addons/Filtering/hooks/useFilters.js +32 -0
- package/lib/components/StringFormatter/StringFormatter.js +13 -2
- package/lib/components/StringFormatter/utils/enums.d.ts +20 -1
- package/lib/components/StringFormatter/utils/enums.js +23 -1
- package/lib/node_modules/@carbon/icon-helpers/es/index.js +49 -62
- package/lib/node_modules/@carbon/icons-react/es/generated/bucket-2.js +1036 -1074
- package/lib/node_modules/@carbon/icons-react/es/generated/bucket-9.js +946 -823
- package/package.json +4 -4
- package/scss/components/Datagrid/styles/addons/_CustomizeColumnsTearsheet.scss +7 -5
- package/scss/components/Datagrid/styles/addons/_FilterFlyout.scss +5 -4
package/package.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "@carbon/ibm-products",
|
3
3
|
"description": "Carbon for IBM Products",
|
4
|
-
"version": "2.43.2-canary.
|
4
|
+
"version": "2.43.2-canary.80+e0eb6fb53",
|
5
5
|
"license": "Apache-2.0",
|
6
6
|
"main": "lib/index.js",
|
7
7
|
"module": "es/index.js",
|
@@ -114,11 +114,11 @@
|
|
114
114
|
"@carbon/grid": "^11.22.0",
|
115
115
|
"@carbon/layout": "^11.21.0",
|
116
116
|
"@carbon/motion": "^11.17.0",
|
117
|
-
"@carbon/react": "^1.
|
118
|
-
"@carbon/themes": "^11.
|
117
|
+
"@carbon/react": "^1.60.3",
|
118
|
+
"@carbon/themes": "^11.37.1",
|
119
119
|
"@carbon/type": "^11.26.0",
|
120
120
|
"react": "^16.8.6 || ^17.0.1 || ^18.2.0",
|
121
121
|
"react-dom": "^16.8.6 || ^17.0.1 || ^18.2.0"
|
122
122
|
},
|
123
|
-
"gitHead": "
|
123
|
+
"gitHead": "e0eb6fb53b1cb01482b4c428d3c3901e4ce55514"
|
124
124
|
}
|
@@ -5,8 +5,10 @@
|
|
5
5
|
// LICENSE file in the root directory of this source tree.
|
6
6
|
//
|
7
7
|
|
8
|
+
// stylelint-disable carbon/layout-token-use
|
9
|
+
|
8
10
|
@use '@carbon/styles/scss/theme' as *;
|
9
|
-
@use '@carbon/styles/scss/spacing'
|
11
|
+
@use '@carbon/styles/scss/spacing';
|
10
12
|
@use '@carbon/styles/scss/type' as *;
|
11
13
|
@use '@carbon/type/scss/font-family';
|
12
14
|
@use '@carbon/layout' as *;
|
@@ -24,8 +26,8 @@
|
|
24
26
|
|
25
27
|
.#{variables.$block-class}__customize-columns-tearsheet--actions
|
26
28
|
input[role='searchbox'] {
|
27
|
-
height:
|
28
|
-
padding-left:
|
29
|
+
height: spacing.$spacing-09;
|
30
|
+
padding-left: spacing.$spacing-09;
|
29
31
|
border-bottom: 1px solid $background-active;
|
30
32
|
}
|
31
33
|
|
@@ -63,8 +65,8 @@
|
|
63
65
|
z-index: 1;
|
64
66
|
top: 0;
|
65
67
|
display: flex;
|
66
|
-
height:
|
67
|
-
padding-left:
|
68
|
+
height: spacing.$spacing-09;
|
69
|
+
padding-left: spacing.$spacing-08;
|
68
70
|
border-bottom: 1px solid $layer-active;
|
69
71
|
background-color: $layer;
|
70
72
|
|
@@ -9,7 +9,7 @@
|
|
9
9
|
|
10
10
|
@use '@carbon/styles/scss/theme' as *;
|
11
11
|
@use '@carbon/layout/scss/convert' as *;
|
12
|
-
@use '@carbon/styles/scss/spacing'
|
12
|
+
@use '@carbon/styles/scss/spacing';
|
13
13
|
@use '@carbon/styles/scss/type' as *;
|
14
14
|
@use '@carbon/layout' as *;
|
15
15
|
|
@@ -25,7 +25,7 @@ $action-set-height: to-rem(64px);
|
|
25
25
|
|
26
26
|
.#{variables.$block-class}-filter-flyout {
|
27
27
|
position: absolute;
|
28
|
-
top:
|
28
|
+
top: spacing.$spacing-09;
|
29
29
|
right: 0;
|
30
30
|
display: none;
|
31
31
|
/* stylelint-disable-next-line -- to-rem carbon replacement for rem */
|
@@ -53,7 +53,8 @@ $action-set-height: to-rem(64px);
|
|
53
53
|
}
|
54
54
|
|
55
55
|
.#{variables.$block-class}-filter-flyout__inner-container {
|
56
|
-
padding:
|
56
|
+
padding: spacing.$spacing-05 spacing.$spacing-05 spacing.$spacing-09
|
57
|
+
spacing.$spacing-05;
|
57
58
|
}
|
58
59
|
|
59
60
|
.#{variables.$block-class}-filter-flyout__inner-container::before {
|
@@ -74,7 +75,7 @@ $action-set-height: to-rem(64px);
|
|
74
75
|
display: block;
|
75
76
|
@include type-style('heading-compact-01');
|
76
77
|
|
77
|
-
margin-bottom:
|
78
|
+
margin-bottom: spacing.$spacing-06;
|
78
79
|
}
|
79
80
|
|
80
81
|
.#{variables.$block-class}-filter-flyout__filters {
|