@patternfly/documentation-framework 2.0.0-alpha.7 → 2.0.0-alpha.71
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 +590 -0
- package/README.md +1 -1
- package/app.js +20 -14
- package/components/autoLinkHeader/autoLinkHeader.css +2 -2
- package/components/autoLinkHeader/autoLinkHeader.js +18 -13
- package/components/cssVariables/cssSearch.js +3 -4
- package/components/cssVariables/cssVariables.css +4 -4
- package/components/cssVariables/cssVariables.js +83 -84
- package/components/example/example.css +29 -29
- package/components/example/example.js +34 -6
- package/components/footer/footer.css +16 -16
- package/components/footer/footer.js +16 -16
- package/components/functionsTable/functionsTable.js +57 -0
- package/components/gdprBanner/gdprBanner.css +2 -2
- package/components/gdprBanner/gdprBanner.js +3 -3
- package/components/inlineAlert/inlineAlert.js +1 -1
- package/components/link/link.js +1 -2
- package/components/propsTable/propsTable.js +85 -79
- package/components/sectionGallery/TextSummary.js +31 -0
- package/components/sectionGallery/sectionDataListLayout.js +51 -0
- package/components/sectionGallery/sectionGallery.css +53 -0
- package/components/sectionGallery/sectionGallery.js +76 -0
- package/components/sectionGallery/sectionGalleryLayout.js +41 -0
- package/components/sectionGallery/sectionGalleryToolbar.js +38 -0
- package/components/sectionGallery/sectionGalleryWrapper.js +110 -0
- package/components/sideNav/sideNav.css +12 -12
- package/components/sideNav/sideNav.js +44 -16
- package/components/tableOfContents/tableOfContents.css +17 -17
- package/helpers/codesandbox.js +3 -5
- package/helpers/getTitle.js +2 -2
- package/layouts/sideNavLayout/sideNavLayout.css +7 -11
- package/layouts/sideNavLayout/sideNavLayout.js +59 -45
- package/package.json +28 -25
- package/pages/404/404.css +2 -2
- package/pages/404/index.js +1 -1
- package/pages/global-css-variables.md +16 -16
- package/routes.js +20 -10
- package/scripts/cli/build.js +6 -1
- package/scripts/cli/cli.js +3 -1
- package/scripts/cli/generate.js +2 -2
- package/scripts/cli/start.js +6 -8
- package/scripts/md/parseMD.js +46 -11
- package/scripts/md/styled-tags.js +8 -4
- package/scripts/tsDocgen.js +119 -91
- package/scripts/typeDocGen.js +209 -0
- package/scripts/webpack/getHtmlWebpackPlugins.js +1 -2
- package/scripts/webpack/prerender.js +1 -2
- package/scripts/webpack/webpack.base.config.js +35 -35
- package/scripts/webpack/webpack.client.config.js +11 -8
- package/scripts/webpack/webpack.server.config.js +8 -5
- package/scripts/writeScreenshots.js +3 -3
- package/templates/html.ejs +2 -4
- package/templates/mdx.css +156 -161
- package/templates/mdx.js +122 -51
- package/templates/patternfly-docs/content/extensions/extension/design-guidelines/design-guidelines.md +2 -0
- package/templates/patternfly-docs/content/extensions/extension/examples/basic.md +2 -0
- package/templates/sitemap.ejs +1 -1
- package/versions.json +29 -9
- package/components/topNav/topNav.css +0 -30
- package/pages/red-hat-font.md +0 -40
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,596 @@
|
|
|
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
|
+
# 2.0.0-alpha.71 (2023-06-22)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @patternfly/documentation-framework
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# 2.0.0-alpha.70 (2023-06-22)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @patternfly/documentation-framework
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
# 2.0.0-alpha.69 (2023-06-22)
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
### Bug Fixes
|
|
26
|
+
|
|
27
|
+
* **docs:** fixed broken css vars header link ([#3617](https://github.com/patternfly/patternfly-org/issues/3617)) ([ad2b012](https://github.com/patternfly/patternfly-org/commit/ad2b01252d68cf8c4e53fac283b142b13994b222))
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
# 2.0.0-alpha.68 (2023-06-21)
|
|
34
|
+
|
|
35
|
+
**Note:** Version bump only for package @patternfly/documentation-framework
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
# 2.0.0-alpha.67 (2023-06-21)
|
|
42
|
+
|
|
43
|
+
**Note:** Version bump only for package @patternfly/documentation-framework
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
# 2.0.0-alpha.66 (2023-06-16)
|
|
50
|
+
|
|
51
|
+
**Note:** Version bump only for package @patternfly/documentation-framework
|
|
52
|
+
|
|
53
|
+
|
|
54
|
+
|
|
55
|
+
|
|
56
|
+
|
|
57
|
+
# 2.0.0-alpha.65 (2023-06-15)
|
|
58
|
+
|
|
59
|
+
**Note:** Version bump only for package @patternfly/documentation-framework
|
|
60
|
+
|
|
61
|
+
|
|
62
|
+
|
|
63
|
+
|
|
64
|
+
|
|
65
|
+
# 2.0.0-alpha.64 (2023-06-15)
|
|
66
|
+
|
|
67
|
+
|
|
68
|
+
### Bug Fixes
|
|
69
|
+
|
|
70
|
+
* **Sidenav:** updated PageContext props ([#3593](https://github.com/patternfly/patternfly-org/issues/3593)) ([1cc24ea](https://github.com/patternfly/patternfly-org/commit/1cc24ea1ef88c42a6b62a4a6b2421d157bc298d8))
|
|
71
|
+
|
|
72
|
+
|
|
73
|
+
|
|
74
|
+
|
|
75
|
+
|
|
76
|
+
# 2.0.0-alpha.63 (2023-06-14)
|
|
77
|
+
|
|
78
|
+
**Note:** Version bump only for package @patternfly/documentation-framework
|
|
79
|
+
|
|
80
|
+
|
|
81
|
+
|
|
82
|
+
|
|
83
|
+
|
|
84
|
+
# 2.0.0-alpha.62 (2023-06-14)
|
|
85
|
+
|
|
86
|
+
**Note:** Version bump only for package @patternfly/documentation-framework
|
|
87
|
+
|
|
88
|
+
|
|
89
|
+
|
|
90
|
+
|
|
91
|
+
|
|
92
|
+
# 2.0.0-alpha.61 (2023-06-14)
|
|
93
|
+
|
|
94
|
+
**Note:** Version bump only for package @patternfly/documentation-framework
|
|
95
|
+
|
|
96
|
+
|
|
97
|
+
|
|
98
|
+
|
|
99
|
+
|
|
100
|
+
# 2.0.0-alpha.60 (2023-06-13)
|
|
101
|
+
|
|
102
|
+
|
|
103
|
+
### Bug Fixes
|
|
104
|
+
|
|
105
|
+
* **docs:** fixed gallery styles affecting width, font vars ([#3596](https://github.com/patternfly/patternfly-org/issues/3596)) ([04f1b54](https://github.com/patternfly/patternfly-org/commit/04f1b54f947e1afca88926d8f371d3bf37a70e25))
|
|
106
|
+
|
|
107
|
+
|
|
108
|
+
|
|
109
|
+
|
|
110
|
+
|
|
111
|
+
# 2.0.0-alpha.59 (2023-06-13)
|
|
112
|
+
|
|
113
|
+
**Note:** Version bump only for package @patternfly/documentation-framework
|
|
114
|
+
|
|
115
|
+
|
|
116
|
+
|
|
117
|
+
|
|
118
|
+
|
|
119
|
+
# 2.0.0-alpha.58 (2023-06-13)
|
|
120
|
+
|
|
121
|
+
**Note:** Version bump only for package @patternfly/documentation-framework
|
|
122
|
+
|
|
123
|
+
|
|
124
|
+
|
|
125
|
+
|
|
126
|
+
|
|
127
|
+
# 2.0.0-alpha.57 (2023-06-12)
|
|
128
|
+
|
|
129
|
+
**Note:** Version bump only for package @patternfly/documentation-framework
|
|
130
|
+
|
|
131
|
+
|
|
132
|
+
|
|
133
|
+
|
|
134
|
+
|
|
135
|
+
# 2.0.0-alpha.56 (2023-06-12)
|
|
136
|
+
|
|
137
|
+
|
|
138
|
+
### Features
|
|
139
|
+
|
|
140
|
+
* turn on dark switcher, remove extra css ([#3519](https://github.com/patternfly/patternfly-org/issues/3519)) ([0059891](https://github.com/patternfly/patternfly-org/commit/005989134d6a962189690a49faccb8dfc6e3de77))
|
|
141
|
+
|
|
142
|
+
|
|
143
|
+
|
|
144
|
+
|
|
145
|
+
|
|
146
|
+
# 2.0.0-alpha.55 (2023-06-12)
|
|
147
|
+
|
|
148
|
+
|
|
149
|
+
### Bug Fixes
|
|
150
|
+
|
|
151
|
+
* **whitespace:** whitespace change to push out new release ([84d1bb3](https://github.com/patternfly/patternfly-org/commit/84d1bb3ccc79a9ef2c4cf5fb93b19fbb719b6078))
|
|
152
|
+
|
|
153
|
+
|
|
154
|
+
|
|
155
|
+
|
|
156
|
+
|
|
157
|
+
# 2.0.0-alpha.54 (2023-06-09)
|
|
158
|
+
|
|
159
|
+
**Note:** Version bump only for package @patternfly/documentation-framework
|
|
160
|
+
|
|
161
|
+
|
|
162
|
+
|
|
163
|
+
|
|
164
|
+
|
|
165
|
+
# 2.0.0-alpha.53 (2023-06-09)
|
|
166
|
+
|
|
167
|
+
**Note:** Version bump only for package @patternfly/documentation-framework
|
|
168
|
+
|
|
169
|
+
|
|
170
|
+
|
|
171
|
+
|
|
172
|
+
|
|
173
|
+
# 2.0.0-alpha.52 (2023-06-07)
|
|
174
|
+
|
|
175
|
+
**Note:** Version bump only for package @patternfly/documentation-framework
|
|
176
|
+
|
|
177
|
+
|
|
178
|
+
|
|
179
|
+
|
|
180
|
+
|
|
181
|
+
# 2.0.0-alpha.51 (2023-06-06)
|
|
182
|
+
|
|
183
|
+
**Note:** Version bump only for package @patternfly/documentation-framework
|
|
184
|
+
|
|
185
|
+
|
|
186
|
+
|
|
187
|
+
|
|
188
|
+
|
|
189
|
+
# 2.0.0-alpha.50 (2023-06-01)
|
|
190
|
+
|
|
191
|
+
|
|
192
|
+
### Bug Fixes
|
|
193
|
+
|
|
194
|
+
* **labels:** Update label logic to include html components ([#3567](https://github.com/patternfly/patternfly-org/issues/3567)) ([32bdc0f](https://github.com/patternfly/patternfly-org/commit/32bdc0fe2120e2c86f39c1e5da94e3f2d11d9705))
|
|
195
|
+
|
|
196
|
+
|
|
197
|
+
|
|
198
|
+
|
|
199
|
+
|
|
200
|
+
# 2.0.0-alpha.49 (2023-06-01)
|
|
201
|
+
|
|
202
|
+
**Note:** Version bump only for package @patternfly/documentation-framework
|
|
203
|
+
|
|
204
|
+
|
|
205
|
+
|
|
206
|
+
|
|
207
|
+
|
|
208
|
+
# 2.0.0-alpha.48 (2023-05-31)
|
|
209
|
+
|
|
210
|
+
**Note:** Version bump only for package @patternfly/documentation-framework
|
|
211
|
+
|
|
212
|
+
|
|
213
|
+
|
|
214
|
+
|
|
215
|
+
|
|
216
|
+
# 2.0.0-alpha.47 (2023-05-31)
|
|
217
|
+
|
|
218
|
+
|
|
219
|
+
### Bug Fixes
|
|
220
|
+
|
|
221
|
+
* **CSSVariables:** check for values before looping over them ([f2d167f](https://github.com/patternfly/patternfly-org/commit/f2d167f57c0cd38b289ade62d98022d7902de38f))
|
|
222
|
+
|
|
223
|
+
|
|
224
|
+
|
|
225
|
+
|
|
226
|
+
|
|
227
|
+
# 2.0.0-alpha.46 (2023-05-31)
|
|
228
|
+
|
|
229
|
+
|
|
230
|
+
### Bug Fixes
|
|
231
|
+
|
|
232
|
+
* **CSSVariables:** resolve a11y issues in tables ([41a7837](https://github.com/patternfly/patternfly-org/commit/41a78379de36c08d7b36fe48a9ff40a4140cdc63))
|
|
233
|
+
|
|
234
|
+
|
|
235
|
+
|
|
236
|
+
|
|
237
|
+
|
|
238
|
+
# 2.0.0-alpha.45 (2023-05-25)
|
|
239
|
+
|
|
240
|
+
**Note:** Version bump only for package @patternfly/documentation-framework
|
|
241
|
+
|
|
242
|
+
|
|
243
|
+
|
|
244
|
+
|
|
245
|
+
|
|
246
|
+
# 2.0.0-alpha.44 (2023-05-25)
|
|
247
|
+
|
|
248
|
+
**Note:** Version bump only for package @patternfly/documentation-framework
|
|
249
|
+
|
|
250
|
+
|
|
251
|
+
|
|
252
|
+
|
|
253
|
+
|
|
254
|
+
# 2.0.0-alpha.43 (2023-05-25)
|
|
255
|
+
|
|
256
|
+
|
|
257
|
+
### Features
|
|
258
|
+
|
|
259
|
+
* **labels:** add deprecated/demo/beta labels to headers + nav items ([#3547](https://github.com/patternfly/patternfly-org/issues/3547)) ([010a0e0](https://github.com/patternfly/patternfly-org/commit/010a0e05baea661964660d2a733569a34abbf243))
|
|
260
|
+
|
|
261
|
+
|
|
262
|
+
|
|
263
|
+
|
|
264
|
+
|
|
265
|
+
# 2.0.0-alpha.42 (2023-05-18)
|
|
266
|
+
|
|
267
|
+
**Note:** Version bump only for package @patternfly/documentation-framework
|
|
268
|
+
|
|
269
|
+
|
|
270
|
+
|
|
271
|
+
|
|
272
|
+
|
|
273
|
+
# 2.0.0-alpha.41 (2023-05-15)
|
|
274
|
+
|
|
275
|
+
|
|
276
|
+
### Bug Fixes
|
|
277
|
+
|
|
278
|
+
* broken link in search-input summary ([7cbf968](https://github.com/patternfly/patternfly-org/commit/7cbf968c1b00aef2257ef8b7434c7ff8b9a4255a))
|
|
279
|
+
|
|
280
|
+
|
|
281
|
+
|
|
282
|
+
|
|
283
|
+
|
|
284
|
+
# 2.0.0-alpha.40 (2023-05-15)
|
|
285
|
+
|
|
286
|
+
|
|
287
|
+
### Bug Fixes
|
|
288
|
+
|
|
289
|
+
* **docs:** use correct theme class on full page dark theme switcher ([#3532](https://github.com/patternfly/patternfly-org/issues/3532)) ([0008236](https://github.com/patternfly/patternfly-org/commit/0008236da2b105fd1789db2263323c59780b5194))
|
|
290
|
+
|
|
291
|
+
|
|
292
|
+
|
|
293
|
+
|
|
294
|
+
|
|
295
|
+
# 2.0.0-alpha.39 (2023-05-11)
|
|
296
|
+
|
|
297
|
+
**Note:** Version bump only for package @patternfly/documentation-framework
|
|
298
|
+
|
|
299
|
+
|
|
300
|
+
|
|
301
|
+
|
|
302
|
+
|
|
303
|
+
# 2.0.0-alpha.38 (2023-05-11)
|
|
304
|
+
|
|
305
|
+
**Note:** Version bump only for package @patternfly/documentation-framework
|
|
306
|
+
|
|
307
|
+
|
|
308
|
+
|
|
309
|
+
|
|
310
|
+
|
|
311
|
+
# 2.0.0-alpha.37 (2023-05-10)
|
|
312
|
+
|
|
313
|
+
**Note:** Version bump only for package @patternfly/documentation-framework
|
|
314
|
+
|
|
315
|
+
|
|
316
|
+
|
|
317
|
+
|
|
318
|
+
|
|
319
|
+
# 2.0.0-alpha.36 (2023-05-10)
|
|
320
|
+
|
|
321
|
+
**Note:** Version bump only for package @patternfly/documentation-framework
|
|
322
|
+
|
|
323
|
+
|
|
324
|
+
|
|
325
|
+
|
|
326
|
+
|
|
327
|
+
# 2.0.0-alpha.35 (2023-05-09)
|
|
328
|
+
|
|
329
|
+
|
|
330
|
+
### Bug Fixes
|
|
331
|
+
|
|
332
|
+
* **org:** Fix up org css issues after doc framework update ([#3518](https://github.com/patternfly/patternfly-org/issues/3518)) ([a6f20c5](https://github.com/patternfly/patternfly-org/commit/a6f20c569a8ba8df2da23722c48f73f750e229e3))
|
|
333
|
+
|
|
334
|
+
|
|
335
|
+
|
|
336
|
+
|
|
337
|
+
|
|
338
|
+
# 2.0.0-alpha.34 (2023-05-05)
|
|
339
|
+
|
|
340
|
+
|
|
341
|
+
### Features
|
|
342
|
+
|
|
343
|
+
* **docs:** Update docs framework with latest react code ([#3517](https://github.com/patternfly/patternfly-org/issues/3517)) ([2df0147](https://github.com/patternfly/patternfly-org/commit/2df014737dbbe35033d0b28ee71b40d5fbe22ed2))
|
|
344
|
+
|
|
345
|
+
|
|
346
|
+
|
|
347
|
+
|
|
348
|
+
|
|
349
|
+
# 2.0.0-alpha.33 (2023-05-04)
|
|
350
|
+
|
|
351
|
+
|
|
352
|
+
### Bug Fixes
|
|
353
|
+
|
|
354
|
+
* **css:** update css selectors for v5 versioning ([#3516](https://github.com/patternfly/patternfly-org/issues/3516)) ([f681945](https://github.com/patternfly/patternfly-org/commit/f681945e2de1200fbb7d2d6ab8262091b1e72a8e))
|
|
355
|
+
|
|
356
|
+
|
|
357
|
+
|
|
358
|
+
|
|
359
|
+
|
|
360
|
+
# 2.0.0-alpha.32 (2023-05-02)
|
|
361
|
+
|
|
362
|
+
**Note:** Version bump only for package @patternfly/documentation-framework
|
|
363
|
+
|
|
364
|
+
|
|
365
|
+
|
|
366
|
+
|
|
367
|
+
|
|
368
|
+
# 2.0.0-alpha.31 (2023-05-01)
|
|
369
|
+
|
|
370
|
+
|
|
371
|
+
### Bug Fixes
|
|
372
|
+
|
|
373
|
+
* update Text component summary to fix build ([64b3590](https://github.com/patternfly/patternfly-org/commit/64b359029fa14be143ddec212fdf89a3033145d5))
|
|
374
|
+
|
|
375
|
+
|
|
376
|
+
|
|
377
|
+
|
|
378
|
+
|
|
379
|
+
# 2.0.0-alpha.30 (2023-04-27)
|
|
380
|
+
|
|
381
|
+
|
|
382
|
+
### Bug Fixes
|
|
383
|
+
|
|
384
|
+
* white space change to test CI ([e9e7ed3](https://github.com/patternfly/patternfly-org/commit/e9e7ed3cf6007fcf022dd7693bfed12bdf9d7e9a))
|
|
385
|
+
|
|
386
|
+
|
|
387
|
+
|
|
388
|
+
|
|
389
|
+
|
|
390
|
+
# 2.0.0-alpha.29 (2023-04-26)
|
|
391
|
+
|
|
392
|
+
|
|
393
|
+
### Bug Fixes
|
|
394
|
+
|
|
395
|
+
* sidebar open by default ([#3506](https://github.com/patternfly/patternfly-org/issues/3506)) ([fb5f086](https://github.com/patternfly/patternfly-org/commit/fb5f08611d3edde80a559635b39dab7138f06d1d))
|
|
396
|
+
|
|
397
|
+
|
|
398
|
+
|
|
399
|
+
|
|
400
|
+
|
|
401
|
+
# 2.0.0-alpha.28 (2023-04-26)
|
|
402
|
+
|
|
403
|
+
**Note:** Version bump only for package @patternfly/documentation-framework
|
|
404
|
+
|
|
405
|
+
|
|
406
|
+
|
|
407
|
+
|
|
408
|
+
|
|
409
|
+
# 2.0.0-alpha.27 (2023-04-25)
|
|
410
|
+
|
|
411
|
+
|
|
412
|
+
### Bug Fixes
|
|
413
|
+
|
|
414
|
+
* **docs:** Update static dir and fix null loading ([#3505](https://github.com/patternfly/patternfly-org/issues/3505)) ([e65a1b2](https://github.com/patternfly/patternfly-org/commit/e65a1b21ae7671322adcbcef1ada69436fd07802))
|
|
415
|
+
|
|
416
|
+
|
|
417
|
+
|
|
418
|
+
|
|
419
|
+
|
|
420
|
+
# 2.0.0-alpha.26 (2023-04-21)
|
|
421
|
+
|
|
422
|
+
**Note:** Version bump only for package @patternfly/documentation-framework
|
|
423
|
+
|
|
424
|
+
|
|
425
|
+
|
|
426
|
+
|
|
427
|
+
|
|
428
|
+
# 2.0.0-alpha.25 (2023-04-19)
|
|
429
|
+
|
|
430
|
+
**Note:** Version bump only for package @patternfly/documentation-framework
|
|
431
|
+
|
|
432
|
+
|
|
433
|
+
|
|
434
|
+
|
|
435
|
+
|
|
436
|
+
# 2.0.0-alpha.24 (2023-04-17)
|
|
437
|
+
|
|
438
|
+
**Note:** Version bump only for package @patternfly/documentation-framework
|
|
439
|
+
|
|
440
|
+
|
|
441
|
+
|
|
442
|
+
|
|
443
|
+
|
|
444
|
+
# 2.0.0-alpha.23 (2023-04-17)
|
|
445
|
+
|
|
446
|
+
|
|
447
|
+
### Features
|
|
448
|
+
|
|
449
|
+
* **docs-framework:** add support for exposing function documentation ([#3485](https://github.com/patternfly/patternfly-org/issues/3485)) ([2f19ded](https://github.com/patternfly/patternfly-org/commit/2f19deda84c75042df1870c0950bb173eb2c3d84))
|
|
450
|
+
|
|
451
|
+
|
|
452
|
+
|
|
453
|
+
|
|
454
|
+
|
|
455
|
+
# 2.0.0-alpha.22 (2023-04-17)
|
|
456
|
+
|
|
457
|
+
**Note:** Version bump only for package @patternfly/documentation-framework
|
|
458
|
+
|
|
459
|
+
|
|
460
|
+
|
|
461
|
+
|
|
462
|
+
|
|
463
|
+
# 2.0.0-alpha.21 (2023-04-15)
|
|
464
|
+
|
|
465
|
+
|
|
466
|
+
### Bug Fixes
|
|
467
|
+
|
|
468
|
+
* clean up references to katacoda ([#3491](https://github.com/patternfly/patternfly-org/issues/3491)) ([5de986b](https://github.com/patternfly/patternfly-org/commit/5de986b917ee7edf9c476bb2df2f2ee4d454a7e1))
|
|
469
|
+
|
|
470
|
+
|
|
471
|
+
|
|
472
|
+
|
|
473
|
+
|
|
474
|
+
# 2.0.0-alpha.20 (2023-04-14)
|
|
475
|
+
|
|
476
|
+
**Note:** Version bump only for package @patternfly/documentation-framework
|
|
477
|
+
|
|
478
|
+
|
|
479
|
+
|
|
480
|
+
|
|
481
|
+
|
|
482
|
+
# 2.0.0-alpha.19 (2023-04-12)
|
|
483
|
+
|
|
484
|
+
**Note:** Version bump only for package @patternfly/documentation-framework
|
|
485
|
+
|
|
486
|
+
|
|
487
|
+
|
|
488
|
+
|
|
489
|
+
|
|
490
|
+
# 2.0.0-alpha.18 (2023-04-11)
|
|
491
|
+
|
|
492
|
+
|
|
493
|
+
### Bug Fixes
|
|
494
|
+
|
|
495
|
+
* **cssVariables:** Update expandId ([b9b0a6e](https://github.com/patternfly/patternfly-org/commit/b9b0a6edcc103c442f24caae086b68558415be57))
|
|
496
|
+
|
|
497
|
+
|
|
498
|
+
|
|
499
|
+
|
|
500
|
+
|
|
501
|
+
# 2.0.0-alpha.17 (2023-04-11)
|
|
502
|
+
|
|
503
|
+
|
|
504
|
+
### Bug Fixes
|
|
505
|
+
|
|
506
|
+
* **docs:** fixes display & search bugs on icons page ([#3483](https://github.com/patternfly/patternfly-org/issues/3483)) ([39b225c](https://github.com/patternfly/patternfly-org/commit/39b225cdcbdc4c01c5002750600708eab6427f60))
|
|
507
|
+
|
|
508
|
+
|
|
509
|
+
|
|
510
|
+
|
|
511
|
+
|
|
512
|
+
# 2.0.0-alpha.16 (2023-04-11)
|
|
513
|
+
|
|
514
|
+
|
|
515
|
+
### Features
|
|
516
|
+
|
|
517
|
+
* **tables:** update tables, context selector ([#3474](https://github.com/patternfly/patternfly-org/issues/3474)) ([cd82c35](https://github.com/patternfly/patternfly-org/commit/cd82c356f568f3368bc22319d614fde8dd74fb38))
|
|
518
|
+
|
|
519
|
+
|
|
520
|
+
|
|
521
|
+
|
|
522
|
+
|
|
523
|
+
# 2.0.0-alpha.15 (2023-04-06)
|
|
524
|
+
|
|
525
|
+
**Note:** Version bump only for package @patternfly/documentation-framework
|
|
526
|
+
|
|
527
|
+
|
|
528
|
+
|
|
529
|
+
|
|
530
|
+
|
|
531
|
+
# 2.0.0-alpha.14 (2023-04-03)
|
|
532
|
+
|
|
533
|
+
|
|
534
|
+
### Bug Fixes
|
|
535
|
+
|
|
536
|
+
* **Tables:** temporarily comment out tables so Table can be deprecated ([#3468](https://github.com/patternfly/patternfly-org/issues/3468)) ([f4aa5ed](https://github.com/patternfly/patternfly-org/commit/f4aa5ed791161851cdc92d02d0c752eef4028306))
|
|
537
|
+
|
|
538
|
+
|
|
539
|
+
|
|
540
|
+
|
|
541
|
+
|
|
542
|
+
# 2.0.0-alpha.13 (2023-03-31)
|
|
543
|
+
|
|
544
|
+
**Note:** Version bump only for package @patternfly/documentation-framework
|
|
545
|
+
|
|
546
|
+
|
|
547
|
+
|
|
548
|
+
|
|
549
|
+
|
|
550
|
+
# 2.0.0-alpha.12 (2023-03-30)
|
|
551
|
+
|
|
552
|
+
**Note:** Version bump only for package @patternfly/documentation-framework
|
|
553
|
+
|
|
554
|
+
|
|
555
|
+
|
|
556
|
+
|
|
557
|
+
|
|
558
|
+
# 2.0.0-alpha.11 (2023-03-29)
|
|
559
|
+
|
|
560
|
+
**Note:** Version bump only for package @patternfly/documentation-framework
|
|
561
|
+
|
|
562
|
+
|
|
563
|
+
|
|
564
|
+
|
|
565
|
+
|
|
566
|
+
# 2.0.0-alpha.10 (2023-03-15)
|
|
567
|
+
|
|
568
|
+
**Note:** Version bump only for package @patternfly/documentation-framework
|
|
569
|
+
|
|
570
|
+
|
|
571
|
+
|
|
572
|
+
|
|
573
|
+
|
|
574
|
+
# 2.0.0-alpha.9 (2023-03-09)
|
|
575
|
+
|
|
576
|
+
|
|
577
|
+
### Bug Fixes
|
|
578
|
+
|
|
579
|
+
* **versions:** fix typo ([a9b8fe2](https://github.com/patternfly/patternfly-org/commit/a9b8fe296a9c28bdd9ada01a80b1653810802ddf))
|
|
580
|
+
|
|
581
|
+
|
|
582
|
+
|
|
583
|
+
|
|
584
|
+
|
|
585
|
+
# 2.0.0-alpha.8 (2023-03-03)
|
|
586
|
+
|
|
587
|
+
|
|
588
|
+
### Features
|
|
589
|
+
|
|
590
|
+
* **docs-framework:** add legacy ssl cli option ([#3433](https://github.com/patternfly/patternfly-org/issues/3433)) ([ccb56fb](https://github.com/patternfly/patternfly-org/commit/ccb56fb27026ebe4be5f5166a86cf3c2f995a872))
|
|
591
|
+
|
|
592
|
+
|
|
593
|
+
|
|
594
|
+
|
|
595
|
+
|
|
6
596
|
# 2.0.0-alpha.7 (2023-03-01)
|
|
7
597
|
|
|
8
598
|
**Note:** Version bump only for package @patternfly/documentation-framework
|
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# @patternfly/documentation-framework
|
|
2
2
|
|
|
3
|
-
## The PatternFly documentation framework lets you develop component examples in markdown format, so that they can be added to [patternfly.org](https://www.patternfly.org/
|
|
3
|
+
## The PatternFly documentation framework lets you develop component examples in markdown format, so that they can be added to [patternfly.org](https://www.patternfly.org/).
|
|
4
4
|
|
|
5
5
|
## Install
|
|
6
6
|
|
package/app.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import
|
|
2
|
+
import { createRoot, hydrateRoot } from 'react-dom/client';
|
|
3
3
|
import { Router, useLocation } from '@reach/router';
|
|
4
4
|
import 'client-styles'; // Webpack replaces this import: patternfly-docs.css.js
|
|
5
5
|
import { SideNavLayout } from '@patternfly/documentation-framework/layouts';
|
|
@@ -13,17 +13,23 @@ import './components/tableOfContents/tableOfContents.css';
|
|
|
13
13
|
import './components/example/example.css';
|
|
14
14
|
import './components/footer/footer.css';
|
|
15
15
|
import './components/sideNav/sideNav.css';
|
|
16
|
-
import './components/topNav/topNav.css';
|
|
17
16
|
import './layouts/sideNavLayout/sideNavLayout.css';
|
|
18
17
|
|
|
19
|
-
const AppRoute = ({ child,
|
|
18
|
+
const AppRoute = ({ child, title, path }) => {
|
|
20
19
|
const pathname = useLocation().pathname;
|
|
21
20
|
if (typeof window !== 'undefined' && window.gtag) {
|
|
22
|
-
gtag('config',
|
|
21
|
+
gtag('config', process.env.googleAnalyticsID, {
|
|
23
22
|
'page_path': pathname,
|
|
24
23
|
'page_title': (title || pathname)
|
|
25
24
|
});
|
|
26
25
|
}
|
|
26
|
+
|
|
27
|
+
// Redirect all v4 url paths to the archived v4 site
|
|
28
|
+
if(pathname.startsWith("/v4")){
|
|
29
|
+
window.location.href = `https://v4-archive.patternfly.org${pathname}`;
|
|
30
|
+
return;
|
|
31
|
+
}
|
|
32
|
+
|
|
27
33
|
// Send 404 event if redirected to 404 page
|
|
28
34
|
if (path === '/404' && pathname.split('/').pop() !== '404') {
|
|
29
35
|
trackEvent('404_redirect', 'redirect', pathname);
|
|
@@ -31,26 +37,23 @@ const AppRoute = ({ child, katacodaLayout, title, path }) => {
|
|
|
31
37
|
return (
|
|
32
38
|
<React.Fragment>
|
|
33
39
|
{child}
|
|
34
|
-
{
|
|
40
|
+
{process.env.hasFooter && <Footer />}
|
|
35
41
|
</React.Fragment>
|
|
36
42
|
);
|
|
37
43
|
}
|
|
38
44
|
|
|
39
45
|
const SideNavRouter = () => {
|
|
40
|
-
const pathname = useLocation().pathname.replace(process.env.pathPrefix, '');
|
|
41
46
|
const componentsData = process?.env?.componentsData;
|
|
42
|
-
const navOpen = !routes[pathname] || !routes[pathname].katacodaLayout;
|
|
43
47
|
return (
|
|
44
|
-
<SideNavLayout groupedRoutes={groupedRoutes} navOpen={
|
|
48
|
+
<SideNavLayout groupedRoutes={groupedRoutes} navOpen={true} >
|
|
45
49
|
<Router id="ws-page-content-router">
|
|
46
50
|
{Object.entries(routes)
|
|
47
|
-
.map(([path, { Component, title, sources,
|
|
51
|
+
.map(([path, { Component, title, sources, id }]) => Component
|
|
48
52
|
? <AppRoute
|
|
49
53
|
key={path}
|
|
50
54
|
path={path}
|
|
51
55
|
default={path === '/404'}
|
|
52
56
|
child={<Component />}
|
|
53
|
-
katacodaLayout={katacodaLayout}
|
|
54
57
|
title={title}
|
|
55
58
|
/>
|
|
56
59
|
: <AppRoute
|
|
@@ -65,7 +68,6 @@ const SideNavRouter = () => {
|
|
|
65
68
|
componentsData={componentsData}
|
|
66
69
|
/>
|
|
67
70
|
}
|
|
68
|
-
katacodaLayout={katacodaLayout}
|
|
69
71
|
title={title}
|
|
70
72
|
/>
|
|
71
73
|
)
|
|
@@ -87,7 +89,7 @@ const FullscreenComponent = ({ Component, title }) => {
|
|
|
87
89
|
|
|
88
90
|
// Export for SSR
|
|
89
91
|
export const App = () => (
|
|
90
|
-
<Router
|
|
92
|
+
<Router id="ws-router">
|
|
91
93
|
<SideNavRouter path="/*" />
|
|
92
94
|
{Object.entries(fullscreenRoutes)
|
|
93
95
|
.map(([path, { title, Component }]) =>
|
|
@@ -107,8 +109,12 @@ const isPrerender = process.env.PRERENDER;
|
|
|
107
109
|
// Don't use ReactDOM in SSR
|
|
108
110
|
if (!isPrerender) {
|
|
109
111
|
function render() {
|
|
110
|
-
const
|
|
111
|
-
|
|
112
|
+
const container = document.getElementById('root');
|
|
113
|
+
if (isProd) {
|
|
114
|
+
hydrateRoot(container, <App />);
|
|
115
|
+
} else {
|
|
116
|
+
createRoot(container).render(<App />);
|
|
117
|
+
}
|
|
112
118
|
}
|
|
113
119
|
// On first load, await promise for the current page to avoid flashing a "Loading..." state
|
|
114
120
|
const Component = getAsyncComponent(null);
|
|
@@ -3,8 +3,8 @@
|
|
|
3
3
|
}
|
|
4
4
|
|
|
5
5
|
.ws-heading-anchor {
|
|
6
|
-
color: var(--pf-global--Color--100);
|
|
7
|
-
transform: translate(calc(-100% - var(--pf-global--spacer--xs)), -50%);
|
|
6
|
+
color: var(--pf-v5-global--Color--100);
|
|
7
|
+
transform: translate(calc(-100% - var(--pf-v5-global--spacer--xs)), -50%);
|
|
8
8
|
opacity: 0;
|
|
9
9
|
position: absolute;
|
|
10
10
|
left: 0;
|