@patternfly/patternfly 4.202.2 → 4.203.2

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.
Files changed (53) hide show
  1. package/base/_fonts.scss +10 -10
  2. package/base/_shield-inheritable.scss +1 -1
  3. package/base/patternfly-fonts.css +10 -10
  4. package/base/patternfly-shield-inheritable.css +1 -1
  5. package/components/AlertGroup/alert-group.css +1 -1
  6. package/components/Button/button.css +1 -1
  7. package/components/Button/button.scss +1 -1
  8. package/components/Divider/divider.css +12 -12
  9. package/components/Drawer/drawer.css +2 -35
  10. package/components/Drawer/drawer.scss +2 -2
  11. package/components/JumpLinks/jump-links.css +1 -1
  12. package/components/JumpLinks/jump-links.scss +1 -1
  13. package/components/MenuToggle/menu-toggle.css +1 -1
  14. package/components/MenuToggle/menu-toggle.scss +1 -1
  15. package/components/ProgressStepper/progress-stepper.css +1 -1
  16. package/components/Sidebar/sidebar.css +0 -30
  17. package/components/Spinner/spinner.css +2 -2
  18. package/components/Table/table.css +5 -5
  19. package/components/Table/table.scss +5 -5
  20. package/components/Tabs/tabs.css +1 -1
  21. package/components/Tabs/tabs.scss +1 -1
  22. package/components/TreeView/tree-view.css +29 -1
  23. package/components/TreeView/tree-view.scss +36 -2
  24. package/docs/components/TreeView/examples/TreeView.md +1077 -677
  25. package/package.json +8 -8
  26. package/patternfly-addons.css +322 -683
  27. package/patternfly-base-no-reset.css +10 -10
  28. package/patternfly-base.css +10 -10
  29. package/patternfly-no-reset.css +66 -101
  30. package/patternfly.css +66 -101
  31. package/patternfly.min.css +1 -1
  32. package/patternfly.min.css.map +1 -1
  33. package/utilities/Alignment/alignment.css +0 -15
  34. package/utilities/BackgroundColor/BackgroundColor.css +100 -75
  35. package/utilities/BackgroundColor/BackgroundColor.scss +6 -0
  36. package/utilities/BackgroundColor/themes/dark/BackgroundColor.css +0 -0
  37. package/utilities/BackgroundColor/themes/dark/BackgroundColor.scss +25 -0
  38. package/utilities/Display/display.css +0 -40
  39. package/utilities/Flex/flex.css +0 -140
  40. package/utilities/Float/float.css +0 -5
  41. package/utilities/Sizing/sizing.css +48 -198
  42. package/utilities/Text/text.css +173 -210
  43. package/utilities/Text/text.scss +6 -0
  44. package/utilities/Text/themes/dark/text.css +0 -0
  45. package/utilities/Text/themes/dark/text.scss +36 -0
  46. package/docs/pages/accessibility-guide.md +0 -161
  47. package/docs/pages/contribution.md +0 -109
  48. package/docs/pages/guidelines.md +0 -367
  49. package/docs/pages/icons.md +0 -129
  50. package/docs/pages/index.js +0 -13
  51. package/docs/pages/reference-docs/PF-quick-ref.key +0 -0
  52. package/docs/pages/reference-docs/PF-quick-ref.pdf +0 -0
  53. package/docs/pages/upgrade-guide.md +0 -188
@@ -1,367 +0,0 @@
1
- ---
2
- id: Guidelines
3
- ---
4
-
5
- Please enforce these guidelines at all times. Small or large, call out what's incorrect.
6
-
7
- Every line of code should appear to be written by a single person, no matter the number of contributors.
8
-
9
- This set of rules generate some constraints and conventions. If you run into instances where a convention isn’t obvious or a solution could be handled in a few different ways, contact the PatternFly community, have a conversation about how to handle it and update this guidelines when needed.
10
-
11
- ## Separation of UI structure concerns
12
-
13
- PatternFly is made out of isolated and modular structures that fall into 2 categories:
14
-
15
- - Layouts
16
- - Components
17
-
18
- ### Layouts
19
-
20
- Layouts are the containers that allow for organizing and grouping its immediate children on the page.
21
-
22
- - A layout never imposes padding or element styles on its children.
23
-
24
- The classes are prefixed with `-l` (after the PatternFly prefix `pf-`), for example: `.pf-l-split` or `.pf-l-stack`.
25
-
26
- ### Components
27
-
28
- Components are modular and independent structures concerned with how a thing looks.
29
-
30
- - A component always touches all four sides of its parent container.
31
- - The component itself never has widths, floats or margins.
32
- - The first element in a component should never use top margins and should touch the top of its component.
33
- - Components should include semantic markup and necessary ARIA tags to implement the [accessibility guidelines](/accessibility-guide).
34
-
35
- The parent container of a component is prefixed with `-c` (after the PatternFly prefix `pf-`), for example: `.pf-c-alert` or `.pf-c-button`.
36
-
37
- ### When to create a new component
38
-
39
- As a general rule, create an extension to an element with BEM modifiers if it’s a change of color or scale. If the change generates a new entity, then create a new component.
40
-
41
- Repetition is better than the wrong abstraction.
42
-
43
- ## Additional features
44
-
45
- ### Utilities
46
-
47
- PatternFly is made up of isolated components that don't allow dependencies. Therefore, the use of helpers or utility classes is discouraged.
48
-
49
- However, from time to time it is recognized that an exception to the PatternFly styling may be needed for a special case. For those instances, utility classes are supplied to assist in allowing minor styling changes without creating the need for adding custom CSS.
50
-
51
- A utility class is prefixed with `-u` (after the PatternFly prefix `pf-`), for example: `.pf-u-align-content-center`.
52
-
53
- ### Demos
54
-
55
- Demos show how components and layouts can be put together to build more complex structures.
56
-
57
- - A demo never includes its own styles. If styling is necessary to implement a desired demo, then new components or layouts, or variants of the components or layouts used, should be created instead.
58
- - A demo doesn't add any accessibility tags that aren't already in the components. All accessibility should be handled at the component level.
59
-
60
- ## Variables
61
-
62
- PatternFly follows a two-layer theming system where **global variables** always inform **component variables**. Each one of those layers follow a set of very specific rules.
63
-
64
- ### Global variables
65
-
66
- The main reason to have global variables is to maintain consistency. They adhere to the following rules:
67
-
68
- - They are prefixed with the word `global` and follow the formula `--pf-global--concept--PropertyCamelCase--modifier--state`.
69
- - a `concept` is something like a `spacer` or `main-title`.
70
- - a `PropertyCamelCase` is something like `BackgroundColor` or `FontSize`.
71
- - a `modifier` is something like `sm`, or `lg`.
72
- - and a `state` is something like `hover`, or `expanded`.
73
- - They are concepts, never tied to an element or component. This is incorrect: `--pf-global--h1--FontSize`, this is correct: `--pf-global--FontSize--3xl`.
74
-
75
- For example a global variable setup would look like:
76
-
77
- ```scss
78
- // --pf-global--concept--size
79
- --pf-global--spacer--lg: .5rem;
80
- --pf-global--spacer--xl: 1rem;
81
- --pf-global--spacer--2xl: 2rem;
82
-
83
- // --pf-global--PropertyCamelCase--modifier
84
- --pf-global--FontSize--3xl: 2rem;
85
- --pf-global--FontSize--2xl: 1.8rem;
86
- --pf-global--FontSize--lg: 1rem;
87
-
88
- // --pf-global--PropertyCamelCase--state
89
- --pf-global--link--TextDecoration--hover: #ccc;
90
-
91
- // --pf-global--PropertyCamelCase--modifier
92
- --pf-global--Color--100: #000;
93
-
94
- // --pf-global--concept--modifier
95
- --pf-global--primary-color--100: #00f;
96
- ```
97
-
98
- ### Component variables
99
-
100
- The second layer is scoped to themeable component custom properties. This setup allows for consistency across components, generates a common language between designers and developers, and gives granular control to authors. The rules are as follows:
101
-
102
- - They follow this general formula `--pf-c-block[__element][--modifier][--state][--breakpoint][--pseudo-element]--PropertyCamelCase`.
103
- - `--pf-c-block` refers to the block, usually the component or layout name (i.e., `--pf-c-alert`).
104
- - `__element` refers to the element inside of the block (i.e., `__title`).
105
- - `--modifier` refers to a modifier class such as `.pf-m-danger`, and is prefixed with `m-` in the component variable (i.e., `--m-danger`).
106
- - `--state` is something like `hover` or `active`.
107
- - `--breakpoint` is a media query breakpoint such as `sm` for `$pf-global--breakpoint--xs`.
108
- - `--pseudo-element` is one of either `before` or `after`.
109
- - The value of a component variable is **always** defined by a global variable.
110
- - It's possible to include multiple elements, modifiers, states, and breakpoints in a single component variable.
111
- - The order of elements, modifiers, states, and breakpoints in the variable name should match the selector order.
112
-
113
- For example:
114
-
115
- ```scss
116
- // Component scoped variables are always defined by global variables
117
- --pf-c-alert--Padding: var(--pf-global--spacer--xl);
118
- --pf-c-alert--hover--BackgroundColor: var(--pf-global--BackgroundColor--200);
119
- --pf-c-alert__title--FontSize: var(--pf-global--FontSize--2xl);
120
-
121
- // --block--PropertyCamelCase
122
- .pf-c-alert {
123
- padding: var(--pf-c-alert--Padding);
124
- }
125
-
126
- // --block--state--PropertyCamelCase
127
- .pf-c-alert {
128
- &:hover {
129
- background-color: var(--pf-c-alert--hover--BackgroundColor);
130
- }
131
- }
132
-
133
- // --block__element--PropertyCamelCase
134
- .pf-c-alert__title {
135
- font-size: var(--pf-c-alert__title--FontSize);
136
- }
137
-
138
- // A more complex example
139
- .pf-c-switch {
140
- @media (max-width: $pf-global--breakpoint--sm) {
141
- .pf-c-switch__input {
142
- &:disabled {
143
- ~ .pf-c-switch__toggle {
144
- &::before {
145
- background-color: var(--pf-c-switch--sm__input--disabled__toggle--before--BackgroundColor);
146
- }
147
- }
148
- }
149
- }
150
- }
151
- }
152
- ```
153
-
154
- ### Comment all magic values
155
-
156
- If a situation arises where a value needs entering into the style sheets that isn't already defined in the global variables this should serve as a red flag to you.
157
-
158
- In the case where a 'magic' value needs entering, ensure a comment is added on the line above to explain its relevance.
159
-
160
- ## Harry Robert's Guidelines
161
-
162
- PatternFly follows [Harry Robert's CSS Guidelines](https://cssguidelin.es/) with some exceptions, deviations and additions.
163
-
164
- ### Exceptions
165
-
166
- PatternFly doesn't follow these rules:
167
-
168
- - [Table of contents](https://cssguidelin.es/#able-of-contents)
169
- - [Titling](https://cssguidelin.es/#titling)
170
- - [Anatomy of a Ruleset](https://cssguidelin.es/#anatomy-of-a-ruleset)
171
- - [Multi-line CSS](https://cssguidelin.es/#multi-line-css)
172
- - [Indenting](https://cssguidelin.es/#indenting)
173
- - [Meaningful Whitespace](https://cssguidelin.es/#meaningful-whitespace)
174
- - [80 Characters Wide](https://cssguidelin.es/#characters-wide)
175
-
176
- ### Deviations from Harry Robert's Guidelines
177
-
178
- #### HTML
179
-
180
- **Practicality over purity**. Strive to maintain HTML standards and semantics, but not at the expense of practicality. Use the least amount of markup with the fewest intricacies whenever possible.
181
-
182
- #### Comment and organization
183
-
184
- Code is written and maintained by people. Ensure your code is descriptive, well commented, and approachable by others. Great code comments convey context or purpose. Do not simply reiterate a component or class name.
185
-
186
- Be sure to write in complete sentences for larger comments and succinct phrases for general notes.
187
-
188
- Follow this comment structure:
189
-
190
- 1. Block
191
- 1. Sections
192
- 1. Line
193
-
194
- ```scss
195
- // Section level comment
196
- .selector {
197
- line-height: 1.5; // Line level comment
198
- color: #333;
199
- }
200
- ```
201
-
202
- ##### 1. Section
203
-
204
- This comment is a section divider or describes a block of code.
205
-
206
- - Leave one blank lines above.
207
-
208
- ##### 2. Line
209
-
210
- Describes a specific line of code.
211
-
212
- ### Additions to Harry Robert's Guidelines
213
-
214
- #### Lintable CSS rules
215
-
216
- The [CSS linter](https://stylelint.io/) is PatternFly's single source of truth for CSS syntax, declaration order, and other CSS rules like disallow type selectors, disallow vendor prefixes, and more.
217
-
218
- #### Shorthand notation
219
-
220
- Limit the use of shorthand declarations to instances where you must explicitly set all the available values. Common overused shorthand properties include:
221
-
222
- - `padding`
223
- - `margin`
224
- - `font`
225
- - `background`
226
- - `border`
227
- - `border-radius`
228
-
229
- ```scss
230
- // Bad
231
- .element {
232
- margin: 0 0 10px;
233
- background: #f00;
234
- background: url("image.jpg");
235
- border-radius: 3px 3px 0 0;
236
- }
237
-
238
- // Good
239
- .element {
240
- margin-bottom: 10px;
241
- background-color: #f00;
242
- background-image: url("image.jpg");
243
- border-top-left-radius: 3px;
244
- border-top-right-radius: 3px;
245
- }
246
- ```
247
-
248
- The [Mozilla Developer Network](https://developer.mozilla.org/en-US/docs/Web/CSS/Shorthand_properties) and [Harry Robert](https://csswizardry.com/2016/12/css-shorthand-syntax-considered-an-anti-pattern/) both have great articles on shorthand properties for those unfamiliar with notation and behaviour.
249
-
250
- ### Sass
251
-
252
- PatternFly uses [Sass](http://sass-lang.com/) to preprocess CSS.
253
-
254
- As a general rule don't overcomplicate Sass, keep it easy to parse for a normal human.
255
-
256
- #### Nesting
257
-
258
- As a general rule avoid Sass nesting to increase specificity. Try not to nest more than three layers deep.
259
-
260
- Limit nesting to the following use cases:
261
-
262
- 1. Modifiers
263
- 1. Media queries
264
- 1. States, pseudo-classes, and pseudo-elements
265
- 1. Combinators
266
-
267
- ##### 1. Modifiers and elements of a block
268
-
269
- * Do not use [Sass's parent selector](https://css-tricks.com/the-sass-ampersand/) mechanism to construct BEM elements.
270
- * Do use that method to create compound selectors with modifier classes.
271
-
272
- ```scss
273
- // Good
274
- .pf-nav {
275
- // styles
276
-
277
- &.pf-m-vertical {
278
- // styles
279
- }
280
- }
281
-
282
- .pf-nav__item {
283
- // styles
284
- }
285
-
286
- // Bad
287
- .pf-nav {
288
- // styles
289
-
290
- &__item {
291
- // styles
292
- }
293
- }
294
-
295
- .pf-m-nav.pf-m-vertical {
296
- // styles
297
- }
298
- ```
299
-
300
- ##### 2. Media queries
301
-
302
- Component-specific media queries should be nested inside the component block. Remember that PatternFly is mobile first. **Do progressive enhancement, not gracefully degradation.**
303
-
304
- PatternFly has 5 breakpoints:
305
-
306
- ```scss
307
- $pf-global-breakpoint--xs: 0;
308
- $pf-global-breakpoint--sm: 576px;
309
- $pf-global-breakpoint--md: 768px;
310
- $pf-global-breakpoint--lg: 992px;
311
- $pf-global-breakpoint--xl: 1200px;
312
- ```
313
-
314
- To make sure you are writing mobile first, always do `min-width`:
315
-
316
- ```scss
317
- .pf-nav {
318
- // mobile styles
319
-
320
- // Styles for small view ports and up
321
- @media (min-width: $pf-global-breakpoint--xs) {
322
- // non-mobile styles
323
- }
324
- }
325
- ```
326
-
327
- ##### 4. States, pseudo-classes and pseudo-elements
328
-
329
- States of a component should be included as a nested element. This includes hover, focus, and active states:
330
-
331
- ```scss
332
- .pf-c-button {
333
- background: var(--pf-c-button--Background);
334
-
335
- &:hover {
336
- background: var(--pf-c-button--hover--Background);
337
- }
338
- }
339
- ```
340
-
341
-
342
- #### Sass variables
343
-
344
- We create global Sass variables to keep a Bootstrap theme in sync. These values also inform our component level variables.
345
-
346
- #### @mixin and @extend
347
-
348
- Since our components are isolated and modular try to avoid `@mixin` and `@extend` because they generate a dependency.
349
-
350
- #### Nested calc() functions
351
-
352
- There is currently a bug in cssnano ([issue #64 on postcss-calc](https://github.com/postcss/postcss-calc/issues/64)) that causes nested `calc()` CSS functions to be removed. So a function like `calc(5 * calc(3 - 1))` becomes `calc(5 * 3 - 1)`. It's worth noting that this problem only impacts our distribution package. Nested `calc()` functions work fine in the development environment.
353
-
354
- PatternFly developers should avoid nested `calc()` CSS functions until this bug is resolved and the package is updated in the [patternfly repository](https://github.com/patternfly/patternfly). If you're interested in following this issue, you can do so in [issue #1295 on patternfly](https://github.com/patternfly/patternfly/issues/1295).
355
-
356
- #### Hover styles
357
-
358
- While the default styles applied to an element might not provide a visual indication of target area, the styles that display on hover should. To ensure that these styles accurately convey the target area of an element where the user can click, `:hover` styles should be applied to the clickable element of a component, and not to a larger wrapping element.
359
-
360
- ## References
361
-
362
- This guide is inspired by people we follow and respect:
363
-
364
- - **[Mark Otto](http://markdotto.com/):** [Code Guideline](http://codeguide.co/)
365
- - **[Robert Harris](http://csswizardry.com/):** [CSS Guidelines](http://cssguidelin.es/)
366
- - **[Gravity Department](http://gravitydept.com/)**: [Style Guide Field Manual](http://manuals.gravitydept.com/code/css/style-guide)
367
- - **[Kitty Giraudel](http://kittygiraudel.com/):** [SASS Guidelines](https://sass-guidelin.es/)
@@ -1,129 +0,0 @@
1
- ---
2
- id: Icons
3
- ---
4
- | Icon name | Icon | Code |
5
- | --- | --- | --- |
6
- | add-circle-o | <i class="pf-icon pf-icon-add-circle-o"></i> | &lt;i class=&quot;pf-icon pf-icon-add-circle-o&quot;&gt;&lt;/i&gt;
7
- | ansible-tower | <i class="pf-icon pf-icon-ansible-tower"></i> | &lt;i class=&quot;pf-icon pf-icon-ansible-tower&quot;&gt;&lt;/i&gt;
8
- | applications | <i class="pf-icon pf-icon-applications"></i> | &lt;i class=&quot;pf-icon pf-icon-applications&quot;&gt;&lt;/i&gt;
9
- | arrow | <i class="pf-icon pf-icon-arrow"></i> | &lt;i class=&quot;pf-icon pf-icon-arrow&quot;&gt;&lt;/i&gt;
10
- | asleep | <i class="pf-icon pf-icon-asleep"></i> | &lt;i class=&quot;pf-icon pf-icon-asleep&quot;&gt;&lt;/i&gt;
11
- | attention-bell | <i class="pf-icon pf-icon-attention-bell"></i> | &lt;i class=&quot;pf-icon pf-icon-attention-bell&quot;&gt;&lt;/i&gt;
12
- | automation | <i class="pf-icon pf-icon-automation"></i> | &lt;i class=&quot;pf-icon pf-icon-automation&quot;&gt;&lt;/i&gt;
13
- | bell | <i class="pf-icon pf-icon-bell"></i> | &lt;i class=&quot;pf-icon pf-icon-bell&quot;&gt;&lt;/i&gt;
14
- | blueprint | <i class="pf-icon pf-icon-blueprint"></i> | &lt;i class=&quot;pf-icon pf-icon-blueprint&quot;&gt;&lt;/i&gt;
15
- | build | <i class="pf-icon pf-icon-build"></i> | &lt;i class=&quot;pf-icon pf-icon-build&quot;&gt;&lt;/i&gt;
16
- | builder-image | <i class="pf-icon pf-icon-builder-image"></i> | &lt;i class=&quot;pf-icon pf-icon-builder-image&quot;&gt;&lt;/i&gt;
17
- | bundle | <i class="pf-icon pf-icon-bundle"></i> | &lt;i class=&quot;pf-icon pf-icon-bundle&quot;&gt;&lt;/i&gt;
18
- | catalog | <i class="pf-icon pf-icon-catalog"></i> | &lt;i class=&quot;pf-icon pf-icon-catalog&quot;&gt;&lt;/i&gt;
19
- | chat | <i class="pf-icon pf-icon-chat"></i> | &lt;i class=&quot;pf-icon pf-icon-chat&quot;&gt;&lt;/i&gt;
20
- | close | <i class="pf-icon pf-icon-close"></i> | &lt;i class=&quot;pf-icon pf-icon-close&quot;&gt;&lt;/i&gt;
21
- | cloud-security | <i class="pf-icon pf-icon-cloud-security"></i> | &lt;i class=&quot;pf-icon pf-icon-cloud-security&quot;&gt;&lt;/i&gt;
22
- | cloud-tenant | <i class="pf-icon pf-icon-cloud-tenant"></i> | &lt;i class=&quot;pf-icon pf-icon-cloud-tenant&quot;&gt;&lt;/i&gt;
23
- | cluster | <i class="pf-icon pf-icon-cluster"></i> | &lt;i class=&quot;pf-icon pf-icon-cluster&quot;&gt;&lt;/i&gt;
24
- | connected | <i class="pf-icon pf-icon-connected"></i> | &lt;i class=&quot;pf-icon pf-icon-connected&quot;&gt;&lt;/i&gt;
25
- | container-node | <i class="pf-icon pf-icon-container-node"></i> | &lt;i class=&quot;pf-icon pf-icon-container-node&quot;&gt;&lt;/i&gt;
26
- | cpu | <i class="pf-icon pf-icon-cpu"></i> | &lt;i class=&quot;pf-icon pf-icon-cpu&quot;&gt;&lt;/i&gt;
27
- | critical-risk | <i class="pf-icon pf-icon-critical-risk"></i> | &lt;i class=&quot;pf-icon pf-icon-critical-risk&quot;&gt;&lt;/i&gt;
28
- | degraded | <i class="pf-icon pf-icon-degraded"></i> | &lt;i class=&quot;pf-icon pf-icon-degraded&quot;&gt;&lt;/i&gt;
29
- | disconnected | <i class="pf-icon pf-icon-disconnected"></i> | &lt;i class=&quot;pf-icon pf-icon-disconnected&quot;&gt;&lt;/i&gt;
30
- | domain | <i class="pf-icon pf-icon-domain"></i> | &lt;i class=&quot;pf-icon pf-icon-domain&quot;&gt;&lt;/i&gt;
31
- | edit | <i class="pf-icon pf-icon-edit"></i> | &lt;i class=&quot;pf-icon pf-icon-edit&quot;&gt;&lt;/i&gt;
32
- | enhancement | <i class="pf-icon pf-icon-enhancement"></i> | &lt;i class=&quot;pf-icon pf-icon-enhancement&quot;&gt;&lt;/i&gt;
33
- | enterprise | <i class="pf-icon pf-icon-enterprise"></i> | &lt;i class=&quot;pf-icon pf-icon-enterprise&quot;&gt;&lt;/i&gt;
34
- | equalizer | <i class="pf-icon pf-icon-equalizer"></i> | &lt;i class=&quot;pf-icon pf-icon-equalizer&quot;&gt;&lt;/i&gt;
35
- | error-circle-o | <i class="pf-icon pf-icon-error-circle-o"></i> | &lt;i class=&quot;pf-icon pf-icon-error-circle-o&quot;&gt;&lt;/i&gt;
36
- | export | <i class="pf-icon pf-icon-export"></i> | &lt;i class=&quot;pf-icon pf-icon-export&quot;&gt;&lt;/i&gt;
37
- | filter | <i class="pf-icon pf-icon-filter"></i> | &lt;i class=&quot;pf-icon pf-icon-filter&quot;&gt;&lt;/i&gt;
38
- | flavor | <i class="pf-icon pf-icon-flavor"></i> | &lt;i class=&quot;pf-icon pf-icon-flavor&quot;&gt;&lt;/i&gt;
39
- | folder-close | <i class="pf-icon pf-icon-folder-close"></i> | &lt;i class=&quot;pf-icon pf-icon-folder-close&quot;&gt;&lt;/i&gt;
40
- | folder-open | <i class="pf-icon pf-icon-folder-open"></i> | &lt;i class=&quot;pf-icon pf-icon-folder-open&quot;&gt;&lt;/i&gt;
41
- | globe-route | <i class="pf-icon pf-icon-globe-route"></i> | &lt;i class=&quot;pf-icon pf-icon-globe-route&quot;&gt;&lt;/i&gt;
42
- | help | <i class="pf-icon pf-icon-help"></i> | &lt;i class=&quot;pf-icon pf-icon-help&quot;&gt;&lt;/i&gt;
43
- | history | <i class="pf-icon pf-icon-history"></i> | &lt;i class=&quot;pf-icon pf-icon-history&quot;&gt;&lt;/i&gt;
44
- | home | <i class="pf-icon pf-icon-home"></i> | &lt;i class=&quot;pf-icon pf-icon-home&quot;&gt;&lt;/i&gt;
45
- | import | <i class="pf-icon pf-icon-import"></i> | &lt;i class=&quot;pf-icon pf-icon-import&quot;&gt;&lt;/i&gt;
46
- | in-progress | <i class="pf-icon pf-icon-in-progress"></i> | &lt;i class=&quot;pf-icon pf-icon-in-progress&quot;&gt;&lt;/i&gt;
47
- | info | <i class="pf-icon pf-icon-info"></i> | &lt;i class=&quot;pf-icon pf-icon-info&quot;&gt;&lt;/i&gt;
48
- | infrastructure | <i class="pf-icon pf-icon-infrastructure"></i> | &lt;i class=&quot;pf-icon pf-icon-infrastructure&quot;&gt;&lt;/i&gt;
49
- | integration | <i class="pf-icon pf-icon-integration"></i> | &lt;i class=&quot;pf-icon pf-icon-integration&quot;&gt;&lt;/i&gt;
50
- | key | <i class="pf-icon pf-icon-key"></i> | &lt;i class=&quot;pf-icon pf-icon-key&quot;&gt;&lt;/i&gt;
51
- | locked | <i class="pf-icon pf-icon-locked"></i> | &lt;i class=&quot;pf-icon pf-icon-locked&quot;&gt;&lt;/i&gt;
52
- | maintenance | <i class="pf-icon pf-icon-maintenance"></i> | &lt;i class=&quot;pf-icon pf-icon-maintenance&quot;&gt;&lt;/i&gt;
53
- | memory | <i class="pf-icon pf-icon-memory"></i> | &lt;i class=&quot;pf-icon pf-icon-memory&quot;&gt;&lt;/i&gt;
54
- | messages | <i class="pf-icon pf-icon-messages"></i> | &lt;i class=&quot;pf-icon pf-icon-messages&quot;&gt;&lt;/i&gt;
55
- | middleware | <i class="pf-icon pf-icon-middleware"></i> | &lt;i class=&quot;pf-icon pf-icon-middleware&quot;&gt;&lt;/i&gt;
56
- | migration | <i class="pf-icon pf-icon-migration"></i> | &lt;i class=&quot;pf-icon pf-icon-migration&quot;&gt;&lt;/i&gt;
57
- | module | <i class="pf-icon pf-icon-module"></i> | &lt;i class=&quot;pf-icon pf-icon-module&quot;&gt;&lt;/i&gt;
58
- | monitoring | <i class="pf-icon pf-icon-monitoring"></i> | &lt;i class=&quot;pf-icon pf-icon-monitoring&quot;&gt;&lt;/i&gt;
59
- | namespaces | <i class="pf-icon pf-icon-namespaces"></i> | &lt;i class=&quot;pf-icon pf-icon-namespaces&quot;&gt;&lt;/i&gt;
60
- | not-started | <i class="pf-icon pf-icon-not-started"></i> | &lt;i class=&quot;pf-icon pf-icon-not-started&quot;&gt;&lt;/i&gt;
61
- | network | <i class="pf-icon pf-icon-network"></i> | &lt;i class=&quot;pf-icon pf-icon-network&quot;&gt;&lt;/i&gt;
62
- | new-process | <i class="pf-icon pf-icon-new-process"></i> | &lt;i class=&quot;pf-icon pf-icon-new-process&quot;&gt;&lt;/i&gt;
63
- | off | <i class="pf-icon pf-icon-off"></i> | &lt;i class=&quot;pf-icon pf-icon-off&quot;&gt;&lt;/i&gt;
64
- | ok | <i class="pf-icon pf-icon-ok"></i> | &lt;i class=&quot;pf-icon pf-icon-ok&quot;&gt;&lt;/i&gt;
65
- | on-running | <i class="pf-icon pf-icon-on-running"></i> | &lt;i class=&quot;pf-icon pf-icon-on-running&quot;&gt;&lt;/i&gt;
66
- | on | <i class="pf-icon pf-icon-on"></i> | &lt;i class=&quot;pf-icon pf-icon-on&quot;&gt;&lt;/i&gt;
67
- | openshift | <i class="pf-icon pf-icon-openshift"></i> | &lt;i class=&quot;pf-icon pf-icon-openshift&quot;&gt;&lt;/i&gt;
68
- | openstack | <i class="pf-icon pf-icon-openstack"></i> | &lt;i class=&quot;pf-icon pf-icon-openstack&quot;&gt;&lt;/i&gt;
69
- | optimize | <i class="pf-icon pf-icon-optimize"></i> | &lt;i class=&quot;pf-icon pf-icon-optimize&quot;&gt;&lt;/i&gt;
70
- | orders | <i class="pf-icon pf-icon-orders"></i> | &lt;i class=&quot;pf-icon pf-icon-orders&quot;&gt;&lt;/i&gt;
71
- | os-image | <i class="pf-icon pf-icon-os-image"></i> | &lt;i class=&quot;pf-icon pf-icon-os-image&quot;&gt;&lt;/i&gt;
72
- | package | <i class="pf-icon pf-icon-package"></i> | &lt;i class=&quot;pf-icon pf-icon-package&quot;&gt;&lt;/i&gt;
73
- | panel-open | <i class="pf-icon pf-icon-panel-open"></i> | &lt;i class=&quot;pf-icon pf-icon-panel-open&quot;&gt;&lt;/i&gt;
74
- | panel-close | <i class="pf-icon pf-icon-panel-close"></i> | &lt;i class=&quot;pf-icon pf-icon-panel-close&quot;&gt;&lt;/i&gt;
75
- | paused | <i class="pf-icon pf-icon-paused"></i> | &lt;i class=&quot;pf-icon pf-icon-paused&quot;&gt;&lt;/i&gt;
76
- | pending | <i class="pf-icon pf-icon-pending"></i> | &lt;i class=&quot;pf-icon pf-icon-pending&quot;&gt;&lt;/i&gt;
77
- | pficon-dragdrop | <i class="pf-icon pf-icon-pficon-dragdrop"></i> | &lt;i class=&quot;pf-icon pf-icon-pficon-dragdrop&quot;&gt;&lt;/i&gt;
78
- | pficon-history | <i class="pf-icon pf-icon-pficon-history"></i> | &lt;i class=&quot;pf-icon pf-icon-pficon-history&quot;&gt;&lt;/i&gt;
79
- | pficon-network-range | <i class="pf-icon pf-icon-pficon-network-range"></i> | &lt;i class=&quot;pf-icon pf-icon-pficon-network-range&quot;&gt;&lt;/i&gt;
80
- | pficon-satellite | <i class="pf-icon pf-icon-pficon-satellite"></i> | &lt;i class=&quot;pf-icon pf-icon-pficon-satellite&quot;&gt;&lt;/i&gt;
81
- | pficon-sort-common-asc | <i class="pf-icon pf-icon-pficon-sort-common-asc"></i> | &lt;i class=&quot;pf-icon pf-icon-pficon-sort-common-asc&quot;&gt;&lt;/i&gt;
82
- | pficon-sort-common-desc | <i class="pf-icon pf-icon-pficon-sort-common-desc"></i> | &lt;i class=&quot;pf-icon pf-icon-pficon-sort-common-desc&quot;&gt;&lt;/i&gt;
83
- | pficon-template | <i class="pf-icon pf-icon-pficon-template"></i> | &lt;i class=&quot;pf-icon pf-icon-pficon-template&quot;&gt;&lt;/i&gt;
84
- | pficon-vcenter | <i class="pf-icon pf-icon-pficon-vcenter"></i> | &lt;i class=&quot;pf-icon pf-icon-pficon-vcenter&quot;&gt;&lt;/i&gt;
85
- | plugged | <i class="pf-icon pf-icon-plugged"></i> | &lt;i class=&quot;pf-icon pf-icon-plugged&quot;&gt;&lt;/i&gt;
86
- | port | <i class="pf-icon pf-icon-port"></i> | &lt;i class=&quot;pf-icon pf-icon-port&quot;&gt;&lt;/i&gt;
87
- | print | <i class="pf-icon pf-icon-print"></i> | &lt;i class=&quot;pf-icon pf-icon-print&quot;&gt;&lt;/i&gt;
88
- | private | <i class="pf-icon pf-icon-private"></i> | &lt;i class=&quot;pf-icon pf-icon-private&quot;&gt;&lt;/i&gt;
89
- | process-automation | <i class="pf-icon pf-icon-process-automation"></i> | &lt;i class=&quot;pf-icon pf-icon-process-automation&quot;&gt;&lt;/i&gt;
90
- | project | <i class="pf-icon pf-icon-project"></i> | &lt;i class=&quot;pf-icon pf-icon-project&quot;&gt;&lt;/i&gt;
91
- | rebalance | <i class="pf-icon pf-icon-rebalance"></i> | &lt;i class=&quot;pf-icon pf-icon-rebalance&quot;&gt;&lt;/i&gt;
92
- | rebooting | <i class="pf-icon pf-icon-rebooting"></i> | &lt;i class=&quot;pf-icon pf-icon-rebooting&quot;&gt;&lt;/i&gt;
93
- | regions | <i class="pf-icon pf-icon-regions"></i> | &lt;i class=&quot;pf-icon pf-icon-regions&quot;&gt;&lt;/i&gt;
94
- | registry | <i class="pf-icon pf-icon-registry"></i> | &lt;i class=&quot;pf-icon pf-icon-registry&quot;&gt;&lt;/i&gt;
95
- | remove2 | <i class="pf-icon pf-icon-remove2"></i> | &lt;i class=&quot;pf-icon pf-icon-remove2&quot;&gt;&lt;/i&gt;
96
- | replicator | <i class="pf-icon pf-icon-replicator"></i> | &lt;i class=&quot;pf-icon pf-icon-replicator&quot;&gt;&lt;/i&gt;
97
- | repository | <i class="pf-icon pf-icon-repository"></i> | &lt;i class=&quot;pf-icon pf-icon-repository&quot;&gt;&lt;/i&gt;
98
- | resource-pool | <i class="pf-icon pf-icon-resource-pool"></i> | &lt;i class=&quot;pf-icon pf-icon-resource-pool&quot;&gt;&lt;/i&gt;
99
- | resources-almost-empty | <i class="pf-icon pf-icon-resources-almost-empty"></i> | &lt;i class=&quot;pf-icon pf-icon-resources-almost-empty&quot;&gt;&lt;/i&gt;
100
- | resources-almost-full | <i class="pf-icon pf-icon-resources-almost-full"></i> | &lt;i class=&quot;pf-icon pf-icon-resources-almost-full&quot;&gt;&lt;/i&gt;
101
- | resources-empty | <i class="pf-icon pf-icon-resources-empty"></i> | &lt;i class=&quot;pf-icon pf-icon-resources-empty&quot;&gt;&lt;/i&gt;
102
- | resources-full | <i class="pf-icon pf-icon-resources-full"></i> | &lt;i class=&quot;pf-icon pf-icon-resources-full&quot;&gt;&lt;/i&gt;
103
- | running | <i class="pf-icon pf-icon-running"></i> | &lt;i class=&quot;pf-icon pf-icon-running&quot;&gt;&lt;/i&gt;
104
- | save | <i class="pf-icon pf-icon-save"></i> | &lt;i class=&quot;pf-icon pf-icon-save&quot;&gt;&lt;/i&gt;
105
- | screen | <i class="pf-icon pf-icon-screen"></i> | &lt;i class=&quot;pf-icon pf-icon-screen&quot;&gt;&lt;/i&gt;
106
- | security | <i class="pf-icon pf-icon-security"></i> | &lt;i class=&quot;pf-icon pf-icon-security&quot;&gt;&lt;/i&gt;
107
- | server-group | <i class="pf-icon pf-icon-server-group"></i> | &lt;i class=&quot;pf-icon pf-icon-server-group&quot;&gt;&lt;/i&gt;
108
- | server | <i class="pf-icon pf-icon-server"></i> | &lt;i class=&quot;pf-icon pf-icon-server&quot;&gt;&lt;/i&gt;
109
- | service-catalog | <i class="pf-icon pf-icon-service-catalog"></i> | &lt;i class=&quot;pf-icon pf-icon-service-catalog&quot;&gt;&lt;/i&gt;
110
- | service | <i class="pf-icon pf-icon-service"></i> | &lt;i class=&quot;pf-icon pf-icon-service&quot;&gt;&lt;/i&gt;
111
- | services | <i class="pf-icon pf-icon-services"></i> | &lt;i class=&quot;pf-icon pf-icon-services&quot;&gt;&lt;/i&gt;
112
- | spinner | <i class="pf-icon pf-icon-spinner"></i> | &lt;i class=&quot;pf-icon pf-icon-spinner&quot;&gt;&lt;/i&gt;
113
- | spinner2 | <i class="pf-icon pf-icon-spinner2"></i> | &lt;i class=&quot;pf-icon pf-icon-spinner2&quot;&gt;&lt;/i&gt;
114
- | storage-domain | <i class="pf-icon pf-icon-storage-domain"></i> | &lt;i class=&quot;pf-icon pf-icon-storage-domain&quot;&gt;&lt;/i&gt;
115
- | task | <i class="pf-icon pf-icon-task"></i> | &lt;i class=&quot;pf-icon pf-icon-task&quot;&gt;&lt;/i&gt;
116
- | tenant | <i class="pf-icon pf-icon-tenant"></i> | &lt;i class=&quot;pf-icon pf-icon-tenant&quot;&gt;&lt;/i&gt;
117
- | thumb-tack | <i class="pf-icon pf-icon-thumb-tack"></i> | &lt;i class=&quot;pf-icon pf-icon-thumb-tack&quot;&gt;&lt;/i&gt;
118
- | topology | <i class="pf-icon pf-icon-topology"></i> | &lt;i class=&quot;pf-icon pf-icon-topology&quot;&gt;&lt;/i&gt;
119
- | trend-down | <i class="pf-icon pf-icon-trend-down"></i> | &lt;i class=&quot;pf-icon pf-icon-trend-down&quot;&gt;&lt;/i&gt;
120
- | trend-up | <i class="pf-icon pf-icon-trend-up"></i> | &lt;i class=&quot;pf-icon pf-icon-trend-up&quot;&gt;&lt;/i&gt;
121
- | unknown | <i class="pf-icon pf-icon-unknown"></i> | &lt;i class=&quot;pf-icon pf-icon-unknown&quot;&gt;&lt;/i&gt;
122
- | unlocked | <i class="pf-icon pf-icon-unlocked"></i> | &lt;i class=&quot;pf-icon pf-icon-unlocked&quot;&gt;&lt;/i&gt;
123
- | unplugged | <i class="pf-icon pf-icon-unplugged"></i> | &lt;i class=&quot;pf-icon pf-icon-unplugged&quot;&gt;&lt;/i&gt;
124
- | user | <i class="pf-icon pf-icon-user"></i> | &lt;i class=&quot;pf-icon pf-icon-user&quot;&gt;&lt;/i&gt;
125
- | users | <i class="pf-icon pf-icon-users"></i> | &lt;i class=&quot;pf-icon pf-icon-users&quot;&gt;&lt;/i&gt;
126
- | virtual-machine | <i class="pf-icon pf-icon-virtual-machine"></i> | &lt;i class=&quot;pf-icon pf-icon-virtual-machine&quot;&gt;&lt;/i&gt;
127
- | volume | <i class="pf-icon pf-icon-volume"></i> | &lt;i class=&quot;pf-icon pf-icon-volume&quot;&gt;&lt;/i&gt;
128
- | warning-triangle | <i class="pf-icon pf-icon-warning-triangle"></i> | &lt;i class=&quot;pf-icon pf-icon-warning-triangle&quot;&gt;&lt;/i&gt;
129
- | zone | <i class="pf-icon pf-icon-zone"></i> | &lt;i class=&quot;pf-icon pf-icon-zone&quot;&gt;&lt;/i&gt;
@@ -1,13 +0,0 @@
1
- import React from 'react';
2
- import { PageSection } from '@patternfly/react-core';
3
- import quickRefPdf from './reference-docs/PF-quick-ref.pdf';
4
-
5
- const HomePage = () => (
6
- <PageSection variant="light">
7
- Just getting started? Take a look at the <a href="/contribution">Contribution guide</a> and{' '}
8
- <a href="/guidelines">Coding guidelines.</a> Always keep our <a href="/accessibility-guide">Accessibility guide</a>{' '}
9
- in mind. Download a <a href={quickRefPdf}>quick reference sheet.</a>
10
- </PageSection>
11
- );
12
-
13
- export default HomePage;