@patternfly/documentation-framework 6.0.0-alpha.51 → 6.0.0-alpha.53
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 +19 -0
- package/components/tableOfContents/tableOfContents.css +8 -24
- package/package.json +3 -3
- package/versions.json +4 -3
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,25 @@
|
|
|
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
|
+
# 6.0.0-alpha.53 (2024-07-08)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* clean up toc/JumpLinks styling ([#4083](https://github.com/patternfly/patternfly-org/issues/4083)) ([9840ac3](https://github.com/patternfly/patternfly-org/commit/9840ac35087b9e79a51d6c14f4c320586acd817f))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
# 6.0.0-alpha.52 (2024-06-27)
|
|
18
|
+
|
|
19
|
+
**Note:** Version bump only for package @patternfly/documentation-framework
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
6
25
|
# 6.0.0-alpha.51 (2024-06-27)
|
|
7
26
|
|
|
8
27
|
|
|
@@ -1,34 +1,34 @@
|
|
|
1
1
|
.ws-toc {
|
|
2
2
|
align-self: flex-start;
|
|
3
3
|
position: sticky;
|
|
4
|
-
width: calc(100% + var(--pf-v6-c-page__main-section--
|
|
5
|
-
background-color: var(--pf-t--global--background--color--
|
|
6
|
-
z-index:
|
|
4
|
+
width: calc(100% + var(--pf-v6-c-page__main-section--PaddingInlineStart) + var(--pf-v6-c-page__main-section--PaddingInlineEnd));
|
|
5
|
+
background-color: var(--pf-t--global--background--color--secondary--default);
|
|
6
|
+
z-index: 201;
|
|
7
7
|
margin-block-start: calc(var(--pf-v6-c-page__main-section--PaddingTop) * -1);
|
|
8
8
|
margin-block-end: var(--pf-t--global--spacer--md);
|
|
9
|
-
margin-inline-start: calc(var(--pf-v6-c-page__main-section--
|
|
10
|
-
margin-inline-end: calc(var(--pf-v6-c-page__main-section--
|
|
9
|
+
margin-inline-start: calc(var(--pf-v6-c-page__main-section--PaddingInlineStart) * -1);
|
|
10
|
+
margin-inline-end: calc(var(--pf-v6-c-page__main-section--PaddingInlineEnd) * -2);
|
|
11
11
|
padding-block-start: var(--pf-t--global--spacer--md);
|
|
12
12
|
padding-block-end: var(--pf-t--global--spacer--md);
|
|
13
13
|
padding-inline-start: var(--pf-t--global--spacer--md);
|
|
14
14
|
padding-inline-end: 0;
|
|
15
|
-
|
|
15
|
+
box-shadow: var(--pf-t--global--box-shadow--lg--bottom);
|
|
16
16
|
}
|
|
17
17
|
|
|
18
18
|
.ws-toc.pf-m-expanded {
|
|
19
|
-
|
|
19
|
+
box-shadow: var(--pf-t--global--box-shadow--sm--bottom)
|
|
20
20
|
}
|
|
21
21
|
|
|
22
22
|
/* Mobile jumplinks */
|
|
23
23
|
@media (max-width: 1450px) {
|
|
24
24
|
.ws-toc.pf-m-expanded .pf-v6-c-jump-links__main {
|
|
25
25
|
max-height: 65vh;
|
|
26
|
+
overflow-y:auto;
|
|
26
27
|
}
|
|
27
28
|
|
|
28
29
|
.ws-toc .pf-v6-c-jump-links__header {
|
|
29
30
|
position: sticky;
|
|
30
31
|
top: 0;
|
|
31
|
-
background-color: var(--pf-t--global--background--color--primary--default);
|
|
32
32
|
z-index: 2;
|
|
33
33
|
}
|
|
34
34
|
}
|
|
@@ -63,19 +63,3 @@
|
|
|
63
63
|
}
|
|
64
64
|
}
|
|
65
65
|
|
|
66
|
-
/* .ws-toc-link { */
|
|
67
|
-
.ws-toc-item .pf-v6-c-jump-links__link {
|
|
68
|
-
position: relative;
|
|
69
|
-
display: block;
|
|
70
|
-
/* color: var(--ws-toc-link--Color, var(--pf-v6-global--Color--300)); */
|
|
71
|
-
/* font-size: var(--pf-v6-global--FontSize--sm); */
|
|
72
|
-
margin: -4px 0;
|
|
73
|
-
}
|
|
74
|
-
|
|
75
|
-
.ws-toc-sublist > .ws-toc-item:first-child .pf-v6-c-jump-links__link {
|
|
76
|
-
margin-top: 0;
|
|
77
|
-
}
|
|
78
|
-
|
|
79
|
-
.ws-toc-item.pf-m-current .pf-v6-c-jump-links__link::before {
|
|
80
|
-
z-index: 1;
|
|
81
|
-
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@patternfly/documentation-framework",
|
|
3
3
|
"description": "A framework to build documentation for PatternFly.",
|
|
4
|
-
"version": "6.0.0-alpha.
|
|
4
|
+
"version": "6.0.0-alpha.53",
|
|
5
5
|
"author": "Red Hat",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"private": false,
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"@babel/preset-env": "^7.24.3",
|
|
14
14
|
"@babel/preset-react": "^7.24.1",
|
|
15
15
|
"@mdx-js/util": "1.6.16",
|
|
16
|
-
"@patternfly/ast-helpers": "^1.4.0-alpha.
|
|
16
|
+
"@patternfly/ast-helpers": "^1.4.0-alpha.42",
|
|
17
17
|
"@reach/router": "npm:@gatsbyjs/reach-router@1.3.9",
|
|
18
18
|
"autoprefixer": "9.8.6",
|
|
19
19
|
"babel-loader": "^9.1.3",
|
|
@@ -80,5 +80,5 @@
|
|
|
80
80
|
"react": "^17.0.0 || ^18.0.0",
|
|
81
81
|
"react-dom": "^17.0.0 || ^18.0.0"
|
|
82
82
|
},
|
|
83
|
-
"gitHead": "
|
|
83
|
+
"gitHead": "36335b4cb6e46ea7936cb67045e7fb45940a5362"
|
|
84
84
|
}
|
package/versions.json
CHANGED
|
@@ -6,17 +6,18 @@
|
|
|
6
6
|
"latest": true,
|
|
7
7
|
"versions": {
|
|
8
8
|
"@patternfly/patternfly": "6.0.0-alpha.139",
|
|
9
|
-
"@patternfly/react-catalog-view-extension": "
|
|
9
|
+
"@patternfly/react-catalog-view-extension": "6.0.0-alpha.4",
|
|
10
10
|
"@patternfly/react-charts": "8.0.0-alpha.23",
|
|
11
11
|
"@patternfly/react-code-editor": "6.0.0-alpha.61",
|
|
12
|
+
"@patternfly/react-component-groups": "6.0.0-alpha.3",
|
|
12
13
|
"@patternfly/react-core": "6.0.0-alpha.61",
|
|
13
14
|
"@patternfly/react-drag-drop": "6.0.0-alpha.43",
|
|
14
15
|
"@patternfly/react-icons": "6.0.0-alpha.23",
|
|
15
|
-
"@patternfly/react-log-viewer": "6.0.0-alpha.
|
|
16
|
+
"@patternfly/react-log-viewer": "6.0.0-alpha.2",
|
|
16
17
|
"@patternfly/react-styles": "6.0.0-alpha.23",
|
|
17
18
|
"@patternfly/react-table": "6.0.0-alpha.61",
|
|
18
19
|
"@patternfly/react-tokens": "6.0.0-alpha.23",
|
|
19
|
-
"@patternfly/react-topology": "
|
|
20
|
+
"@patternfly/react-topology": "6.0.0-alpha.1",
|
|
20
21
|
"@patternfly/react-user-feedback": "6.0.0-alpha.1",
|
|
21
22
|
"@patternfly/react-console": "6.0.0-alpha.1",
|
|
22
23
|
"@patternfly/quickstarts": "5.1.0",
|