@patternfly/react-tokens 4.84.13 → 4.85.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/CHANGELOG.md +11 -0
- package/dist/esm/c_scroll_outer_wrapper_MaxHeight.d.ts +6 -0
- package/dist/esm/c_scroll_outer_wrapper_MaxHeight.js +6 -0
- package/dist/esm/c_table_scrollable.d.ts +4 -0
- package/dist/esm/c_table_scrollable.js +4 -0
- package/dist/esm/index.d.ts +1 -0
- package/dist/esm/index.js +1 -0
- package/dist/js/c_scroll_outer_wrapper_MaxHeight.d.ts +6 -0
- package/dist/js/c_scroll_outer_wrapper_MaxHeight.js +8 -0
- package/dist/js/c_table_scrollable.d.ts +4 -0
- package/dist/js/c_table_scrollable.js +4 -0
- package/dist/js/index.d.ts +1 -0
- package/dist/js/index.js +1 -0
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,17 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# 4.85.0 (2022-08-19)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **ExpandableSection:** add truncated variant ([#7852](https://github.com/patternfly/patternfly-react/issues/7852)) ([f628cdf](https://github.com/patternfly/patternfly-react/commit/f628cdf571d71addfc04e69728be73895e261094))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
## 4.84.13 (2022-08-19)
|
|
7
18
|
|
|
8
19
|
**Note:** Version bump only for package @patternfly/react-tokens
|
|
@@ -144,6 +144,10 @@ export const c_table_scrollable: {
|
|
|
144
144
|
"c_scroll_outer_wrapper_MinHeight": {
|
|
145
145
|
"name": "--pf-c-scroll-outer-wrapper--MinHeight",
|
|
146
146
|
"value": "25rem"
|
|
147
|
+
},
|
|
148
|
+
"c_scroll_outer_wrapper_MaxHeight": {
|
|
149
|
+
"name": "--pf-c-scroll-outer-wrapper--MaxHeight",
|
|
150
|
+
"value": "100%"
|
|
147
151
|
}
|
|
148
152
|
}
|
|
149
153
|
};
|
|
@@ -144,6 +144,10 @@ export const c_table_scrollable = {
|
|
|
144
144
|
"c_scroll_outer_wrapper_MinHeight": {
|
|
145
145
|
"name": "--pf-c-scroll-outer-wrapper--MinHeight",
|
|
146
146
|
"value": "25rem"
|
|
147
|
+
},
|
|
148
|
+
"c_scroll_outer_wrapper_MaxHeight": {
|
|
149
|
+
"name": "--pf-c-scroll-outer-wrapper--MaxHeight",
|
|
150
|
+
"value": "100%"
|
|
147
151
|
}
|
|
148
152
|
}
|
|
149
153
|
};
|
package/dist/esm/index.d.ts
CHANGED
|
@@ -929,6 +929,7 @@ export { c_table__sticky_column_m_border_left_before_BorderLeftWidth } from './c
|
|
|
929
929
|
export { c_table__sticky_column_m_border_left_before_BorderLeftColor } from './c_table__sticky_column_m_border_left_before_BorderLeftColor';
|
|
930
930
|
export { c_table_m_sticky_header_thead__sticky_column_ZIndex } from './c_table_m_sticky_header_thead__sticky_column_ZIndex';
|
|
931
931
|
export { c_scroll_outer_wrapper_MinHeight } from './c_scroll_outer_wrapper_MinHeight';
|
|
932
|
+
export { c_scroll_outer_wrapper_MaxHeight } from './c_scroll_outer_wrapper_MaxHeight';
|
|
932
933
|
export { c_table_grid } from './c_table_grid';
|
|
933
934
|
export { c_table_responsive_BorderColor } from './c_table_responsive_BorderColor';
|
|
934
935
|
export { c_table_tbody_responsive_border_width_base } from './c_table_tbody_responsive_border_width_base';
|
package/dist/esm/index.js
CHANGED
|
@@ -929,6 +929,7 @@ export { c_table__sticky_column_m_border_left_before_BorderLeftWidth } from './c
|
|
|
929
929
|
export { c_table__sticky_column_m_border_left_before_BorderLeftColor } from './c_table__sticky_column_m_border_left_before_BorderLeftColor';
|
|
930
930
|
export { c_table_m_sticky_header_thead__sticky_column_ZIndex } from './c_table_m_sticky_header_thead__sticky_column_ZIndex';
|
|
931
931
|
export { c_scroll_outer_wrapper_MinHeight } from './c_scroll_outer_wrapper_MinHeight';
|
|
932
|
+
export { c_scroll_outer_wrapper_MaxHeight } from './c_scroll_outer_wrapper_MaxHeight';
|
|
932
933
|
export { c_table_grid } from './c_table_grid';
|
|
933
934
|
export { c_table_responsive_BorderColor } from './c_table_responsive_BorderColor';
|
|
934
935
|
export { c_table_tbody_responsive_border_width_base } from './c_table_tbody_responsive_border_width_base';
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
exports.__esModule = true;
|
|
3
|
+
exports.c_scroll_outer_wrapper_MaxHeight = {
|
|
4
|
+
"name": "--pf-c-scroll-outer-wrapper--MaxHeight",
|
|
5
|
+
"value": "100%",
|
|
6
|
+
"var": "var(--pf-c-scroll-outer-wrapper--MaxHeight)"
|
|
7
|
+
};
|
|
8
|
+
exports["default"] = exports.c_scroll_outer_wrapper_MaxHeight;
|
|
@@ -144,6 +144,10 @@ export const c_table_scrollable: {
|
|
|
144
144
|
"c_scroll_outer_wrapper_MinHeight": {
|
|
145
145
|
"name": "--pf-c-scroll-outer-wrapper--MinHeight",
|
|
146
146
|
"value": "25rem"
|
|
147
|
+
},
|
|
148
|
+
"c_scroll_outer_wrapper_MaxHeight": {
|
|
149
|
+
"name": "--pf-c-scroll-outer-wrapper--MaxHeight",
|
|
150
|
+
"value": "100%"
|
|
147
151
|
}
|
|
148
152
|
}
|
|
149
153
|
};
|
|
@@ -146,6 +146,10 @@ exports.c_table_scrollable = {
|
|
|
146
146
|
"c_scroll_outer_wrapper_MinHeight": {
|
|
147
147
|
"name": "--pf-c-scroll-outer-wrapper--MinHeight",
|
|
148
148
|
"value": "25rem"
|
|
149
|
+
},
|
|
150
|
+
"c_scroll_outer_wrapper_MaxHeight": {
|
|
151
|
+
"name": "--pf-c-scroll-outer-wrapper--MaxHeight",
|
|
152
|
+
"value": "100%"
|
|
149
153
|
}
|
|
150
154
|
}
|
|
151
155
|
};
|
package/dist/js/index.d.ts
CHANGED
|
@@ -929,6 +929,7 @@ export { c_table__sticky_column_m_border_left_before_BorderLeftWidth } from './c
|
|
|
929
929
|
export { c_table__sticky_column_m_border_left_before_BorderLeftColor } from './c_table__sticky_column_m_border_left_before_BorderLeftColor';
|
|
930
930
|
export { c_table_m_sticky_header_thead__sticky_column_ZIndex } from './c_table_m_sticky_header_thead__sticky_column_ZIndex';
|
|
931
931
|
export { c_scroll_outer_wrapper_MinHeight } from './c_scroll_outer_wrapper_MinHeight';
|
|
932
|
+
export { c_scroll_outer_wrapper_MaxHeight } from './c_scroll_outer_wrapper_MaxHeight';
|
|
932
933
|
export { c_table_grid } from './c_table_grid';
|
|
933
934
|
export { c_table_responsive_BorderColor } from './c_table_responsive_BorderColor';
|
|
934
935
|
export { c_table_tbody_responsive_border_width_base } from './c_table_tbody_responsive_border_width_base';
|
package/dist/js/index.js
CHANGED
|
@@ -934,6 +934,7 @@ __export(require('./c_table__sticky_column_m_border_left_before_BorderLeftWidth'
|
|
|
934
934
|
__export(require('./c_table__sticky_column_m_border_left_before_BorderLeftColor'));
|
|
935
935
|
__export(require('./c_table_m_sticky_header_thead__sticky_column_ZIndex'));
|
|
936
936
|
__export(require('./c_scroll_outer_wrapper_MinHeight'));
|
|
937
|
+
__export(require('./c_scroll_outer_wrapper_MaxHeight'));
|
|
937
938
|
__export(require('./c_table_grid'));
|
|
938
939
|
__export(require('./c_table_responsive_BorderColor'));
|
|
939
940
|
__export(require('./c_table_tbody_responsive_border_width_base'));
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@patternfly/react-tokens",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.85.0",
|
|
4
4
|
"description": "This library provides access to the design tokens of PatternFly 4 from JavaScript",
|
|
5
5
|
"main": "dist/js/index.js",
|
|
6
6
|
"module": "dist/esm/index.js",
|
|
@@ -29,11 +29,11 @@
|
|
|
29
29
|
"clean": "rimraf dist"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
|
-
"@patternfly/patternfly": "4.
|
|
32
|
+
"@patternfly/patternfly": "4.209.0",
|
|
33
33
|
"css": "^2.2.3",
|
|
34
34
|
"fs-extra": "^6.0.1",
|
|
35
35
|
"glob": "^7.1.2",
|
|
36
36
|
"rimraf": "^2.6.2"
|
|
37
37
|
},
|
|
38
|
-
"gitHead": "
|
|
38
|
+
"gitHead": "816b8605d11e6374b6f6b4c5d6da80d43265fc70"
|
|
39
39
|
}
|