@patternfly/react-styles 5.0.0-alpha.12 → 5.0.0-alpha.13
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 +6 -0
- package/css/components/Table/table-grid.css +380 -391
- package/css/components/Table/table-grid.d.ts +6 -1
- package/css/components/Table/table-grid.js +6 -1
- package/css/components/Table/table-grid.mjs +6 -1
- package/css/components/Table/table-tree-view.css +254 -254
- package/css/components/Table/table-tree-view.d.ts +5 -0
- package/css/components/Table/table-tree-view.js +5 -0
- package/css/components/Table/table-tree-view.mjs +5 -0
- package/css/components/Table/table.css +232 -232
- package/css/components/Table/table.d.ts +7 -0
- package/css/components/Table/table.js +7 -0
- package/css/components/Table/table.mjs +7 -0
- package/package.json +3 -3
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import './table.css';
|
|
2
2
|
declare const _default: {
|
|
3
3
|
"button": "pf-v5-c-button",
|
|
4
|
+
"checkInput": "pf-v5-c-check__input",
|
|
4
5
|
"modifiers": {
|
|
5
6
|
"hidden": "pf-m-hidden",
|
|
6
7
|
"hiddenOnSm": "pf-m-hidden-on-sm",
|
|
@@ -59,6 +60,7 @@ declare const _default: {
|
|
|
59
60
|
"tableAction": "pf-v5-c-table__action",
|
|
60
61
|
"tableButton": "pf-v5-c-table__button",
|
|
61
62
|
"tableButtonContent": "pf-v5-c-table__button-content",
|
|
63
|
+
"tableCaption": "pf-v5-c-table__caption",
|
|
62
64
|
"tableCheck": "pf-v5-c-table__check",
|
|
63
65
|
"tableColumnHelp": "pf-v5-c-table__column-help",
|
|
64
66
|
"tableColumnHelpAction": "pf-v5-c-table__column-help-action",
|
|
@@ -74,9 +76,14 @@ declare const _default: {
|
|
|
74
76
|
"tableSort": "pf-v5-c-table__sort",
|
|
75
77
|
"tableSortIndicator": "pf-v5-c-table__sort-indicator",
|
|
76
78
|
"tableSubhead": "pf-v5-c-table__subhead",
|
|
79
|
+
"tableTbody": "pf-v5-c-table__tbody",
|
|
80
|
+
"tableTd": "pf-v5-c-table__td",
|
|
77
81
|
"tableText": "pf-v5-c-table__text",
|
|
82
|
+
"tableTh": "pf-v5-c-table__th",
|
|
83
|
+
"tableThead": "pf-v5-c-table__thead",
|
|
78
84
|
"tableToggle": "pf-v5-c-table__toggle",
|
|
79
85
|
"tableToggleIcon": "pf-v5-c-table__toggle-icon",
|
|
86
|
+
"tableTr": "pf-v5-c-table__tr",
|
|
80
87
|
"themeDark": "pf-v5-theme-dark"
|
|
81
88
|
};
|
|
82
89
|
export default _default;
|
|
@@ -3,6 +3,7 @@ exports.__esModule = true;
|
|
|
3
3
|
require('./table.css');
|
|
4
4
|
exports.default = {
|
|
5
5
|
"button": "pf-v5-c-button",
|
|
6
|
+
"checkInput": "pf-v5-c-check__input",
|
|
6
7
|
"modifiers": {
|
|
7
8
|
"hidden": "pf-m-hidden",
|
|
8
9
|
"hiddenOnSm": "pf-m-hidden-on-sm",
|
|
@@ -61,6 +62,7 @@ exports.default = {
|
|
|
61
62
|
"tableAction": "pf-v5-c-table__action",
|
|
62
63
|
"tableButton": "pf-v5-c-table__button",
|
|
63
64
|
"tableButtonContent": "pf-v5-c-table__button-content",
|
|
65
|
+
"tableCaption": "pf-v5-c-table__caption",
|
|
64
66
|
"tableCheck": "pf-v5-c-table__check",
|
|
65
67
|
"tableColumnHelp": "pf-v5-c-table__column-help",
|
|
66
68
|
"tableColumnHelpAction": "pf-v5-c-table__column-help-action",
|
|
@@ -76,8 +78,13 @@ exports.default = {
|
|
|
76
78
|
"tableSort": "pf-v5-c-table__sort",
|
|
77
79
|
"tableSortIndicator": "pf-v5-c-table__sort-indicator",
|
|
78
80
|
"tableSubhead": "pf-v5-c-table__subhead",
|
|
81
|
+
"tableTbody": "pf-v5-c-table__tbody",
|
|
82
|
+
"tableTd": "pf-v5-c-table__td",
|
|
79
83
|
"tableText": "pf-v5-c-table__text",
|
|
84
|
+
"tableTh": "pf-v5-c-table__th",
|
|
85
|
+
"tableThead": "pf-v5-c-table__thead",
|
|
80
86
|
"tableToggle": "pf-v5-c-table__toggle",
|
|
81
87
|
"tableToggleIcon": "pf-v5-c-table__toggle-icon",
|
|
88
|
+
"tableTr": "pf-v5-c-table__tr",
|
|
82
89
|
"themeDark": "pf-v5-theme-dark"
|
|
83
90
|
};
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import './table.css';
|
|
2
2
|
export default {
|
|
3
3
|
"button": "pf-v5-c-button",
|
|
4
|
+
"checkInput": "pf-v5-c-check__input",
|
|
4
5
|
"modifiers": {
|
|
5
6
|
"hidden": "pf-m-hidden",
|
|
6
7
|
"hiddenOnSm": "pf-m-hidden-on-sm",
|
|
@@ -59,6 +60,7 @@ export default {
|
|
|
59
60
|
"tableAction": "pf-v5-c-table__action",
|
|
60
61
|
"tableButton": "pf-v5-c-table__button",
|
|
61
62
|
"tableButtonContent": "pf-v5-c-table__button-content",
|
|
63
|
+
"tableCaption": "pf-v5-c-table__caption",
|
|
62
64
|
"tableCheck": "pf-v5-c-table__check",
|
|
63
65
|
"tableColumnHelp": "pf-v5-c-table__column-help",
|
|
64
66
|
"tableColumnHelpAction": "pf-v5-c-table__column-help-action",
|
|
@@ -74,8 +76,13 @@ export default {
|
|
|
74
76
|
"tableSort": "pf-v5-c-table__sort",
|
|
75
77
|
"tableSortIndicator": "pf-v5-c-table__sort-indicator",
|
|
76
78
|
"tableSubhead": "pf-v5-c-table__subhead",
|
|
79
|
+
"tableTbody": "pf-v5-c-table__tbody",
|
|
80
|
+
"tableTd": "pf-v5-c-table__td",
|
|
77
81
|
"tableText": "pf-v5-c-table__text",
|
|
82
|
+
"tableTh": "pf-v5-c-table__th",
|
|
83
|
+
"tableThead": "pf-v5-c-table__thead",
|
|
78
84
|
"tableToggle": "pf-v5-c-table__toggle",
|
|
79
85
|
"tableToggleIcon": "pf-v5-c-table__toggle-icon",
|
|
86
|
+
"tableTr": "pf-v5-c-table__tr",
|
|
80
87
|
"themeDark": "pf-v5-theme-dark"
|
|
81
88
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@patternfly/react-styles",
|
|
3
|
-
"version": "5.0.0-alpha.
|
|
3
|
+
"version": "5.0.0-alpha.13",
|
|
4
4
|
"main": "dist/js/index.js",
|
|
5
5
|
"module": "dist/esm/index.js",
|
|
6
6
|
"types": "dist/esm/index.d.ts",
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"clean": "rimraf dist css"
|
|
20
20
|
},
|
|
21
21
|
"devDependencies": {
|
|
22
|
-
"@patternfly/patternfly": "5.0.0-alpha.
|
|
22
|
+
"@patternfly/patternfly": "5.0.0-alpha.55",
|
|
23
23
|
"camel-case": "^3.0.0",
|
|
24
24
|
"css": "^2.2.3",
|
|
25
25
|
"fs-extra": "^11.1.1",
|
|
@@ -29,5 +29,5 @@
|
|
|
29
29
|
"typescript": "^4.7.4"
|
|
30
30
|
},
|
|
31
31
|
"license": "MIT",
|
|
32
|
-
"gitHead": "
|
|
32
|
+
"gitHead": "5ca3b66fb6082856f2ab3758f7c1181be80cac79"
|
|
33
33
|
}
|