@patternfly/patternfly 6.3.0-prerelease.6 → 6.3.0-prerelease.61
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/README.md +22 -14
- package/assets/images/icon-help.hbs +3 -0
- package/assets/images/icon-outlined-star.hbs +3 -0
- package/assets/images/icon-star.hbs +3 -0
- package/base/normalize.scss +4 -0
- package/base/patternfly-common.css +46 -11
- package/base/patternfly-common.scss +58 -13
- package/base/patternfly-variables.css +1172 -1
- package/base/patternfly-variables.scss +10 -0
- package/base/tokens/tokens-charts-dark.scss +1 -1
- package/base/tokens/tokens-charts.scss +1 -1
- package/base/tokens/tokens-dark.scss +13 -1
- package/base/tokens/tokens-default.scss +60 -2
- package/base/tokens/tokens-highcontrast-dark.scss +396 -0
- package/base/tokens/tokens-highcontrast.scss +703 -0
- package/base/tokens/tokens-local.scss +1 -0
- package/base/tokens/tokens-palette.scss +9 -1
- package/components/Accordion/accordion.css +102 -6
- package/components/Accordion/accordion.scss +112 -10
- package/components/Alert/alert-group.css +67 -33
- package/components/Alert/alert-group.scss +95 -48
- package/components/Badge/badge.css +2 -0
- package/components/Badge/badge.scss +2 -0
- package/components/Banner/banner.css +4 -0
- package/components/Banner/banner.scss +4 -0
- package/components/Button/button.css +187 -9
- package/components/Button/button.scss +195 -13
- package/components/CalendarMonth/calendar-month.css +16 -0
- package/components/CalendarMonth/calendar-month.scss +16 -0
- package/components/Card/card.css +5 -4
- package/components/Card/card.scss +5 -4
- package/components/CodeBlock/code-block.css +3 -0
- package/components/CodeBlock/code-block.scss +3 -0
- package/components/CodeEditor/code-editor.css +8 -3
- package/components/CodeEditor/code-editor.scss +11 -6
- package/components/DataList/data-list.css +2 -2
- package/components/DataList/data-list.scss +2 -2
- package/components/DatePicker/date-picker.css +3 -0
- package/components/DatePicker/date-picker.scss +4 -0
- package/components/Drawer/drawer.css +44 -41
- package/components/Drawer/drawer.scss +42 -36
- package/components/DualListSelector/dual-list-selector.css +55 -1
- package/components/DualListSelector/dual-list-selector.scss +63 -1
- package/components/ExpandableSection/expandable-section.css +63 -1
- package/components/ExpandableSection/expandable-section.scss +76 -2
- package/components/FileUpload/file-upload.css +3 -3
- package/components/FileUpload/file-upload.scss +3 -3
- package/components/Form/form.css +40 -1
- package/components/Form/form.scss +47 -1
- package/components/FormControl/form-control.css +16 -0
- package/components/FormControl/form-control.scss +9 -0
- package/components/InputGroup/input-group.css +80 -0
- package/components/InputGroup/input-group.scss +95 -0
- package/components/Label/label.css +20 -11
- package/components/Label/label.scss +21 -11
- package/components/Login/login.css +3 -0
- package/components/Login/login.scss +3 -0
- package/components/Menu/menu.css +42 -4
- package/components/Menu/menu.scss +39 -6
- package/components/MenuToggle/menu-toggle.css +51 -10
- package/components/MenuToggle/menu-toggle.scss +61 -9
- package/components/ModalBox/modal-box.css +3 -0
- package/components/ModalBox/modal-box.scss +3 -0
- package/components/Nav/nav.css +39 -8
- package/components/Nav/nav.scss +42 -9
- package/components/Page/page.css +124 -26
- package/components/Page/page.scss +86 -16
- package/components/Pagination/pagination.css +14 -1
- package/components/Pagination/pagination.scss +14 -1
- package/components/Panel/panel.css +14 -1
- package/components/Panel/panel.scss +14 -1
- package/components/Popover/popover.css +4 -0
- package/components/Popover/popover.scss +4 -0
- package/components/Progress/progress.css +26 -0
- package/components/Progress/progress.scss +22 -1
- package/components/ProgressStepper/progress-stepper.scss +1 -0
- package/components/SimpleList/simple-list.css +15 -0
- package/components/SimpleList/simple-list.scss +17 -1
- package/components/Skeleton/skeleton.css +22 -2
- package/components/Skeleton/skeleton.scss +25 -3
- package/components/Spinner/spinner.css +5 -0
- package/components/Spinner/spinner.scss +6 -0
- package/components/Table/table-grid.css +51 -5
- package/components/Table/table-grid.scss +22 -1
- package/components/Table/table.css +124 -2
- package/components/Table/table.scss +171 -3
- package/components/Tabs/tabs.css +32 -15
- package/components/Tabs/tabs.scss +34 -14
- package/components/TextInputGroup/text-input-group.css +23 -0
- package/components/TextInputGroup/text-input-group.scss +16 -1
- package/components/Timestamp/timestamp.css +4 -0
- package/components/Timestamp/timestamp.scss +7 -0
- package/components/TreeView/tree-view.css +54 -0
- package/components/TreeView/tree-view.scss +59 -2
- package/components/Truncate/truncate.css +1 -0
- package/components/Truncate/truncate.scss +3 -0
- package/components/Wizard/wizard.css +33 -6
- package/components/Wizard/wizard.scss +38 -8
- package/components/_index.css +1404 -195
- package/docs/components/Alert/examples/Alert.md +2 -2
- package/docs/components/Breadcrumb/examples/Breadcrumb.md +1 -1
- package/docs/components/Button/examples/Button.md +159 -6
- package/docs/components/Card/examples/Card.md +8 -8
- package/docs/components/ClipboardCopy/examples/ClipboardCopy.md +24 -32
- package/docs/components/CodeBlock/examples/CodeBlock.md +10 -10
- package/docs/components/CodeEditor/examples/CodeEditor.md +29 -5
- package/docs/components/DataList/examples/DataList.md +83 -207
- package/docs/components/DescriptionList/examples/DescriptionList.md +78 -22
- package/docs/components/DualListSelector/examples/DualListSelector.md +642 -319
- package/docs/components/EmptyState/examples/EmptyState.md +6 -6
- package/docs/components/ExpandableSection/examples/ExpandableSection.md +26 -15
- package/docs/components/Form/examples/Form.md +1178 -113
- package/docs/components/Hint/examples/Hint.md +3 -3
- package/docs/components/InlineEdit/examples/InlineEdit.md +2 -6
- package/docs/components/InputGroup/examples/InputGroup.md +5 -1
- package/docs/components/Label/examples/Label.md +2 -2
- package/docs/components/Login/examples/Login.md +22 -22
- package/docs/components/Masthead/examples/masthead.md +90 -12
- package/docs/components/Menu/examples/Menu.md +122 -6
- package/docs/components/MenuToggle/examples/MenuToggle.md +93 -55
- package/docs/components/ModalBox/examples/ModalBox.md +13 -1
- package/docs/components/OverflowMenu/examples/overflow-menu.md +5 -5
- package/docs/components/Page/examples/Page.md +147 -14
- package/docs/components/Pagination/examples/Pagination.md +123 -12
- package/docs/components/Popover/examples/Popover.md +0 -4
- package/docs/components/Progress/examples/Progress.md +222 -210
- package/docs/components/ProgressStepper/examples/ProgressStepper.md +32 -6
- package/docs/components/Skeleton/examples/Skeleton.md +21 -7
- package/docs/components/Slider/examples/Slider.md +2 -2
- package/docs/components/Spinner/examples/Spinner.md +10 -0
- package/docs/components/Table/examples/Table.md +7699 -4896
- package/docs/components/Tabs/examples/Tabs.md +1214 -6729
- package/docs/components/TextInputGroup/examples/TextInputGroup.md +168 -49
- package/docs/components/Title/examples/Title.md +8 -8
- package/docs/components/Toolbar/examples/Toolbar.md +7 -7
- package/docs/components/Wizard/examples/Wizard.md +583 -0
- package/docs/demos/AboutModal/examples/AboutModal.md +22 -3
- package/docs/demos/Alert/examples/Alert.md +66 -9
- package/docs/demos/BackToTop/examples/BackToTop.md +22 -3
- package/docs/demos/Banner/examples/Banner.md +47 -6
- package/docs/demos/Card/examples/Card.md +13 -67
- package/docs/demos/CardView/examples/CardView.md +24 -5
- package/docs/demos/Dashboard/examples/Dashboard.md +34 -27
- package/docs/demos/DataList/examples/DataList.md +628 -192
- package/docs/demos/DescriptionList/examples/DescriptionList.md +79 -50
- package/docs/demos/Drawer/examples/Drawer.md +110 -53
- package/docs/demos/Form/examples/BasicForms.md +146 -26
- package/docs/demos/JumpLinks/examples/JumpLinks.md +132 -18
- package/docs/demos/Masthead/examples/Masthead.md +170 -18
- package/docs/demos/Modal/examples/Modal.md +171 -21
- package/docs/demos/Nav/examples/Nav.md +111 -16
- package/docs/demos/NotificationDrawer/examples/NotificationDrawer.md +114 -19
- package/docs/demos/Page/examples/Page.md +309 -43
- package/docs/demos/PasswordGenerator/examples/PasswordGenerator.md +13 -1
- package/docs/demos/PrimaryDetail/examples/PrimaryDetail.md +886 -415
- package/docs/demos/Skeleton/examples/Skeleton.md +25 -4
- package/docs/demos/Table/examples/Table.md +480 -177
- package/docs/demos/Tabs/examples/Tabs.md +139 -594
- package/docs/demos/Toolbar/examples/Toolbar.md +72 -34
- package/docs/demos/Wizard/examples/Wizard.md +198 -27
- package/package.json +12 -7
- package/patternfly-base-no-globals.css +1217 -12
- package/patternfly-base.css +1221 -12
- package/patternfly-no-globals.css +2851 -437
- package/patternfly.css +2853 -435
- package/patternfly.min.css +1 -1
- package/patternfly.min.css.map +1 -1
- package/sass-utilities/mixins.scss +54 -0
|
@@ -19,12 +19,31 @@ section: components
|
|
|
19
19
|
<div class="pf-v6-c-masthead__main">
|
|
20
20
|
<span class="pf-v6-c-masthead__toggle">
|
|
21
21
|
<button
|
|
22
|
-
class="pf-v6-c-button pf-m-plain"
|
|
22
|
+
class="pf-v6-c-button pf-m-hamburger pf-m-plain"
|
|
23
23
|
type="button"
|
|
24
24
|
aria-label="Global navigation"
|
|
25
25
|
>
|
|
26
26
|
<span class="pf-v6-c-button__icon">
|
|
27
|
-
<
|
|
27
|
+
<svg
|
|
28
|
+
viewBox="0 0 10 10"
|
|
29
|
+
class="pf-v6-c-button--hamburger-icon pf-v6-svg"
|
|
30
|
+
width="1em"
|
|
31
|
+
height="1em"
|
|
32
|
+
>
|
|
33
|
+
<path class="pf-v6-c-button--hamburger-icon--top" d="M1,1 L9,1" />
|
|
34
|
+
<path
|
|
35
|
+
class="pf-v6-c-button--hamburger-icon--middle"
|
|
36
|
+
d="M1,5 L9,5"
|
|
37
|
+
/>
|
|
38
|
+
<path
|
|
39
|
+
class="pf-v6-c-button--hamburger-icon--arrow"
|
|
40
|
+
d="M1,5 L1,5 L1,5"
|
|
41
|
+
/>
|
|
42
|
+
<path
|
|
43
|
+
class="pf-v6-c-button--hamburger-icon--bottom"
|
|
44
|
+
d="M9,9 L1,9"
|
|
45
|
+
/>
|
|
46
|
+
</svg>
|
|
28
47
|
</span>
|
|
29
48
|
</button>
|
|
30
49
|
</span>
|
|
@@ -132,7 +151,7 @@ section: components
|
|
|
132
151
|
</div>
|
|
133
152
|
<div class="pf-v6-c-toolbar__item">
|
|
134
153
|
<button
|
|
135
|
-
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
154
|
+
class="pf-v6-c-menu-toggle pf-m-settings pf-m-plain"
|
|
136
155
|
type="button"
|
|
137
156
|
aria-expanded="false"
|
|
138
157
|
aria-label="Settings"
|
|
@@ -276,25 +295,6 @@ section: components
|
|
|
276
295
|
<button
|
|
277
296
|
type="button"
|
|
278
297
|
class="pf-v6-c-tabs__link"
|
|
279
|
-
onclick="
|
|
280
|
-
event.preventDefault();
|
|
281
|
-
((e) => {
|
|
282
|
-
const el = this,
|
|
283
|
-
li = this.closest('li'),
|
|
284
|
-
ul = this.closest('ul'),
|
|
285
|
-
tabs = this.closest('.pf-v6-c-tabs'),
|
|
286
|
-
left = Math.round(li.offsetLeft),
|
|
287
|
-
top = Math.round(li.offsetTop),
|
|
288
|
-
width = Math.round(li.offsetWidth),
|
|
289
|
-
height = Math.round(li.offsetHeight);
|
|
290
|
-
|
|
291
|
-
ul.querySelectorAll('li').forEach(function(el) {
|
|
292
|
-
el.classList.remove('pf-m-current')});
|
|
293
|
-
li.classList.add('pf-m-current');
|
|
294
|
-
tabs.style.setProperty('--pf-v6-c-tabs--link-accent--start', left + 'px');
|
|
295
|
-
tabs.style.setProperty('--pf-v6-c-tabs--link-accent--length', width + 'px');
|
|
296
|
-
}
|
|
297
|
-
)()"
|
|
298
298
|
role="tab"
|
|
299
299
|
aria-controls="tabs-tables-and-tabs-example-tabs-details-panel"
|
|
300
300
|
id="tabs-tables-and-tabs-example-tabs-details-link"
|
|
@@ -306,25 +306,6 @@ section: components
|
|
|
306
306
|
<button
|
|
307
307
|
type="button"
|
|
308
308
|
class="pf-v6-c-tabs__link"
|
|
309
|
-
onclick="
|
|
310
|
-
event.preventDefault();
|
|
311
|
-
((e) => {
|
|
312
|
-
const el = this,
|
|
313
|
-
li = this.closest('li'),
|
|
314
|
-
ul = this.closest('ul'),
|
|
315
|
-
tabs = this.closest('.pf-v6-c-tabs'),
|
|
316
|
-
left = Math.round(li.offsetLeft),
|
|
317
|
-
top = Math.round(li.offsetTop),
|
|
318
|
-
width = Math.round(li.offsetWidth),
|
|
319
|
-
height = Math.round(li.offsetHeight);
|
|
320
|
-
|
|
321
|
-
ul.querySelectorAll('li').forEach(function(el) {
|
|
322
|
-
el.classList.remove('pf-m-current')});
|
|
323
|
-
li.classList.add('pf-m-current');
|
|
324
|
-
tabs.style.setProperty('--pf-v6-c-tabs--link-accent--start', left + 'px');
|
|
325
|
-
tabs.style.setProperty('--pf-v6-c-tabs--link-accent--length', width + 'px');
|
|
326
|
-
}
|
|
327
|
-
)()"
|
|
328
309
|
role="tab"
|
|
329
310
|
aria-controls="tabs-tables-and-tabs-example-tabs-yaml-panel"
|
|
330
311
|
id="tabs-tables-and-tabs-example-tabs-yaml-link"
|
|
@@ -336,25 +317,6 @@ section: components
|
|
|
336
317
|
<button
|
|
337
318
|
type="button"
|
|
338
319
|
class="pf-v6-c-tabs__link"
|
|
339
|
-
onclick="
|
|
340
|
-
event.preventDefault();
|
|
341
|
-
((e) => {
|
|
342
|
-
const el = this,
|
|
343
|
-
li = this.closest('li'),
|
|
344
|
-
ul = this.closest('ul'),
|
|
345
|
-
tabs = this.closest('.pf-v6-c-tabs'),
|
|
346
|
-
left = Math.round(li.offsetLeft),
|
|
347
|
-
top = Math.round(li.offsetTop),
|
|
348
|
-
width = Math.round(li.offsetWidth),
|
|
349
|
-
height = Math.round(li.offsetHeight);
|
|
350
|
-
|
|
351
|
-
ul.querySelectorAll('li').forEach(function(el) {
|
|
352
|
-
el.classList.remove('pf-m-current')});
|
|
353
|
-
li.classList.add('pf-m-current');
|
|
354
|
-
tabs.style.setProperty('--pf-v6-c-tabs--link-accent--start', left + 'px');
|
|
355
|
-
tabs.style.setProperty('--pf-v6-c-tabs--link-accent--length', width + 'px');
|
|
356
|
-
}
|
|
357
|
-
)()"
|
|
358
320
|
role="tab"
|
|
359
321
|
aria-controls="tabs-tables-and-tabs-example-tabs-environment-panel"
|
|
360
322
|
id="tabs-tables-and-tabs-example-tabs-environment-link"
|
|
@@ -366,25 +328,6 @@ section: components
|
|
|
366
328
|
<button
|
|
367
329
|
type="button"
|
|
368
330
|
class="pf-v6-c-tabs__link"
|
|
369
|
-
onclick="
|
|
370
|
-
event.preventDefault();
|
|
371
|
-
((e) => {
|
|
372
|
-
const el = this,
|
|
373
|
-
li = this.closest('li'),
|
|
374
|
-
ul = this.closest('ul'),
|
|
375
|
-
tabs = this.closest('.pf-v6-c-tabs'),
|
|
376
|
-
left = Math.round(li.offsetLeft),
|
|
377
|
-
top = Math.round(li.offsetTop),
|
|
378
|
-
width = Math.round(li.offsetWidth),
|
|
379
|
-
height = Math.round(li.offsetHeight);
|
|
380
|
-
|
|
381
|
-
ul.querySelectorAll('li').forEach(function(el) {
|
|
382
|
-
el.classList.remove('pf-m-current')});
|
|
383
|
-
li.classList.add('pf-m-current');
|
|
384
|
-
tabs.style.setProperty('--pf-v6-c-tabs--link-accent--start', left + 'px');
|
|
385
|
-
tabs.style.setProperty('--pf-v6-c-tabs--link-accent--length', width + 'px');
|
|
386
|
-
}
|
|
387
|
-
)()"
|
|
388
331
|
role="tab"
|
|
389
332
|
aria-controls="tabs-tables-and-tabs-example-tabs-logs-panel"
|
|
390
333
|
id="tabs-tables-and-tabs-example-tabs-logs-link"
|
|
@@ -396,25 +339,6 @@ section: components
|
|
|
396
339
|
<button
|
|
397
340
|
type="button"
|
|
398
341
|
class="pf-v6-c-tabs__link"
|
|
399
|
-
onclick="
|
|
400
|
-
event.preventDefault();
|
|
401
|
-
((e) => {
|
|
402
|
-
const el = this,
|
|
403
|
-
li = this.closest('li'),
|
|
404
|
-
ul = this.closest('ul'),
|
|
405
|
-
tabs = this.closest('.pf-v6-c-tabs'),
|
|
406
|
-
left = Math.round(li.offsetLeft),
|
|
407
|
-
top = Math.round(li.offsetTop),
|
|
408
|
-
width = Math.round(li.offsetWidth),
|
|
409
|
-
height = Math.round(li.offsetHeight);
|
|
410
|
-
|
|
411
|
-
ul.querySelectorAll('li').forEach(function(el) {
|
|
412
|
-
el.classList.remove('pf-m-current')});
|
|
413
|
-
li.classList.add('pf-m-current');
|
|
414
|
-
tabs.style.setProperty('--pf-v6-c-tabs--link-accent--start', left + 'px');
|
|
415
|
-
tabs.style.setProperty('--pf-v6-c-tabs--link-accent--length', width + 'px');
|
|
416
|
-
}
|
|
417
|
-
)()"
|
|
418
342
|
role="tab"
|
|
419
343
|
aria-controls="tabs-tables-and-tabs-example-tabs-events-panel"
|
|
420
344
|
id="tabs-tables-and-tabs-example-tabs-events-link"
|
|
@@ -426,25 +350,6 @@ section: components
|
|
|
426
350
|
<button
|
|
427
351
|
type="button"
|
|
428
352
|
class="pf-v6-c-tabs__link"
|
|
429
|
-
onclick="
|
|
430
|
-
event.preventDefault();
|
|
431
|
-
((e) => {
|
|
432
|
-
const el = this,
|
|
433
|
-
li = this.closest('li'),
|
|
434
|
-
ul = this.closest('ul'),
|
|
435
|
-
tabs = this.closest('.pf-v6-c-tabs'),
|
|
436
|
-
left = Math.round(li.offsetLeft),
|
|
437
|
-
top = Math.round(li.offsetTop),
|
|
438
|
-
width = Math.round(li.offsetWidth),
|
|
439
|
-
height = Math.round(li.offsetHeight);
|
|
440
|
-
|
|
441
|
-
ul.querySelectorAll('li').forEach(function(el) {
|
|
442
|
-
el.classList.remove('pf-m-current')});
|
|
443
|
-
li.classList.add('pf-m-current');
|
|
444
|
-
tabs.style.setProperty('--pf-v6-c-tabs--link-accent--start', left + 'px');
|
|
445
|
-
tabs.style.setProperty('--pf-v6-c-tabs--link-accent--length', width + 'px');
|
|
446
|
-
}
|
|
447
|
-
)()"
|
|
448
353
|
role="tab"
|
|
449
354
|
aria-controls="tabs-tables-and-tabs-example-tabs-terminal-panel"
|
|
450
355
|
id="tabs-tables-and-tabs-example-tabs-terminal-link"
|
|
@@ -477,6 +382,7 @@ section: components
|
|
|
477
382
|
<div class="pf-v6-l-flex__item">
|
|
478
383
|
<dl
|
|
479
384
|
class="pf-v6-c-description-list pf-m-2-col-on-lg"
|
|
385
|
+
aria-label="API 1"
|
|
480
386
|
aria-labelledby="-details-title"
|
|
481
387
|
>
|
|
482
388
|
<div class="pf-v6-c-description-list__group">
|
|
@@ -699,12 +605,31 @@ section: components
|
|
|
699
605
|
<div class="pf-v6-c-masthead__main">
|
|
700
606
|
<span class="pf-v6-c-masthead__toggle">
|
|
701
607
|
<button
|
|
702
|
-
class="pf-v6-c-button pf-m-plain"
|
|
608
|
+
class="pf-v6-c-button pf-m-hamburger pf-m-plain"
|
|
703
609
|
type="button"
|
|
704
610
|
aria-label="Global navigation"
|
|
705
611
|
>
|
|
706
612
|
<span class="pf-v6-c-button__icon">
|
|
707
|
-
<
|
|
613
|
+
<svg
|
|
614
|
+
viewBox="0 0 10 10"
|
|
615
|
+
class="pf-v6-c-button--hamburger-icon pf-v6-svg"
|
|
616
|
+
width="1em"
|
|
617
|
+
height="1em"
|
|
618
|
+
>
|
|
619
|
+
<path class="pf-v6-c-button--hamburger-icon--top" d="M1,1 L9,1" />
|
|
620
|
+
<path
|
|
621
|
+
class="pf-v6-c-button--hamburger-icon--middle"
|
|
622
|
+
d="M1,5 L9,5"
|
|
623
|
+
/>
|
|
624
|
+
<path
|
|
625
|
+
class="pf-v6-c-button--hamburger-icon--arrow"
|
|
626
|
+
d="M1,5 L1,5 L1,5"
|
|
627
|
+
/>
|
|
628
|
+
<path
|
|
629
|
+
class="pf-v6-c-button--hamburger-icon--bottom"
|
|
630
|
+
d="M9,9 L1,9"
|
|
631
|
+
/>
|
|
632
|
+
</svg>
|
|
708
633
|
</span>
|
|
709
634
|
</button>
|
|
710
635
|
</span>
|
|
@@ -812,7 +737,7 @@ section: components
|
|
|
812
737
|
</div>
|
|
813
738
|
<div class="pf-v6-c-toolbar__item">
|
|
814
739
|
<button
|
|
815
|
-
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
740
|
+
class="pf-v6-c-menu-toggle pf-m-settings pf-m-plain"
|
|
816
741
|
type="button"
|
|
817
742
|
aria-expanded="false"
|
|
818
743
|
aria-label="Settings"
|
|
@@ -955,25 +880,6 @@ section: components
|
|
|
955
880
|
<button
|
|
956
881
|
type="button"
|
|
957
882
|
class="pf-v6-c-tabs__link"
|
|
958
|
-
onclick="
|
|
959
|
-
event.preventDefault();
|
|
960
|
-
((e) => {
|
|
961
|
-
const el = this,
|
|
962
|
-
li = this.closest('li'),
|
|
963
|
-
ul = this.closest('ul'),
|
|
964
|
-
tabs = this.closest('.pf-v6-c-tabs'),
|
|
965
|
-
left = Math.round(li.offsetLeft),
|
|
966
|
-
top = Math.round(li.offsetTop),
|
|
967
|
-
width = Math.round(li.offsetWidth),
|
|
968
|
-
height = Math.round(li.offsetHeight);
|
|
969
|
-
|
|
970
|
-
ul.querySelectorAll('li').forEach(function(el) {
|
|
971
|
-
el.classList.remove('pf-m-current')});
|
|
972
|
-
li.classList.add('pf-m-current');
|
|
973
|
-
tabs.style.setProperty('--pf-v6-c-tabs--link-accent--start', left + 'px');
|
|
974
|
-
tabs.style.setProperty('--pf-v6-c-tabs--link-accent--length', width + 'px');
|
|
975
|
-
}
|
|
976
|
-
)()"
|
|
977
883
|
role="tab"
|
|
978
884
|
aria-controls="tabs-tables-and-tabs-example-tabs-details-panel"
|
|
979
885
|
id="tabs-tables-and-tabs-example-tabs-details-link"
|
|
@@ -985,25 +891,6 @@ section: components
|
|
|
985
891
|
<button
|
|
986
892
|
type="button"
|
|
987
893
|
class="pf-v6-c-tabs__link"
|
|
988
|
-
onclick="
|
|
989
|
-
event.preventDefault();
|
|
990
|
-
((e) => {
|
|
991
|
-
const el = this,
|
|
992
|
-
li = this.closest('li'),
|
|
993
|
-
ul = this.closest('ul'),
|
|
994
|
-
tabs = this.closest('.pf-v6-c-tabs'),
|
|
995
|
-
left = Math.round(li.offsetLeft),
|
|
996
|
-
top = Math.round(li.offsetTop),
|
|
997
|
-
width = Math.round(li.offsetWidth),
|
|
998
|
-
height = Math.round(li.offsetHeight);
|
|
999
|
-
|
|
1000
|
-
ul.querySelectorAll('li').forEach(function(el) {
|
|
1001
|
-
el.classList.remove('pf-m-current')});
|
|
1002
|
-
li.classList.add('pf-m-current');
|
|
1003
|
-
tabs.style.setProperty('--pf-v6-c-tabs--link-accent--start', left + 'px');
|
|
1004
|
-
tabs.style.setProperty('--pf-v6-c-tabs--link-accent--length', width + 'px');
|
|
1005
|
-
}
|
|
1006
|
-
)()"
|
|
1007
894
|
role="tab"
|
|
1008
895
|
aria-controls="tabs-tables-and-tabs-example-tabs-yaml-panel"
|
|
1009
896
|
id="tabs-tables-and-tabs-example-tabs-yaml-link"
|
|
@@ -1015,25 +902,6 @@ section: components
|
|
|
1015
902
|
<button
|
|
1016
903
|
type="button"
|
|
1017
904
|
class="pf-v6-c-tabs__link"
|
|
1018
|
-
onclick="
|
|
1019
|
-
event.preventDefault();
|
|
1020
|
-
((e) => {
|
|
1021
|
-
const el = this,
|
|
1022
|
-
li = this.closest('li'),
|
|
1023
|
-
ul = this.closest('ul'),
|
|
1024
|
-
tabs = this.closest('.pf-v6-c-tabs'),
|
|
1025
|
-
left = Math.round(li.offsetLeft),
|
|
1026
|
-
top = Math.round(li.offsetTop),
|
|
1027
|
-
width = Math.round(li.offsetWidth),
|
|
1028
|
-
height = Math.round(li.offsetHeight);
|
|
1029
|
-
|
|
1030
|
-
ul.querySelectorAll('li').forEach(function(el) {
|
|
1031
|
-
el.classList.remove('pf-m-current')});
|
|
1032
|
-
li.classList.add('pf-m-current');
|
|
1033
|
-
tabs.style.setProperty('--pf-v6-c-tabs--link-accent--start', left + 'px');
|
|
1034
|
-
tabs.style.setProperty('--pf-v6-c-tabs--link-accent--length', width + 'px');
|
|
1035
|
-
}
|
|
1036
|
-
)()"
|
|
1037
905
|
role="tab"
|
|
1038
906
|
aria-controls="tabs-tables-and-tabs-example-tabs-environment-panel"
|
|
1039
907
|
id="tabs-tables-and-tabs-example-tabs-environment-link"
|
|
@@ -1045,25 +913,6 @@ section: components
|
|
|
1045
913
|
<button
|
|
1046
914
|
type="button"
|
|
1047
915
|
class="pf-v6-c-tabs__link"
|
|
1048
|
-
onclick="
|
|
1049
|
-
event.preventDefault();
|
|
1050
|
-
((e) => {
|
|
1051
|
-
const el = this,
|
|
1052
|
-
li = this.closest('li'),
|
|
1053
|
-
ul = this.closest('ul'),
|
|
1054
|
-
tabs = this.closest('.pf-v6-c-tabs'),
|
|
1055
|
-
left = Math.round(li.offsetLeft),
|
|
1056
|
-
top = Math.round(li.offsetTop),
|
|
1057
|
-
width = Math.round(li.offsetWidth),
|
|
1058
|
-
height = Math.round(li.offsetHeight);
|
|
1059
|
-
|
|
1060
|
-
ul.querySelectorAll('li').forEach(function(el) {
|
|
1061
|
-
el.classList.remove('pf-m-current')});
|
|
1062
|
-
li.classList.add('pf-m-current');
|
|
1063
|
-
tabs.style.setProperty('--pf-v6-c-tabs--link-accent--start', left + 'px');
|
|
1064
|
-
tabs.style.setProperty('--pf-v6-c-tabs--link-accent--length', width + 'px');
|
|
1065
|
-
}
|
|
1066
|
-
)()"
|
|
1067
916
|
role="tab"
|
|
1068
917
|
aria-controls="tabs-tables-and-tabs-example-tabs-logs-panel"
|
|
1069
918
|
id="tabs-tables-and-tabs-example-tabs-logs-link"
|
|
@@ -1075,25 +924,6 @@ section: components
|
|
|
1075
924
|
<button
|
|
1076
925
|
type="button"
|
|
1077
926
|
class="pf-v6-c-tabs__link"
|
|
1078
|
-
onclick="
|
|
1079
|
-
event.preventDefault();
|
|
1080
|
-
((e) => {
|
|
1081
|
-
const el = this,
|
|
1082
|
-
li = this.closest('li'),
|
|
1083
|
-
ul = this.closest('ul'),
|
|
1084
|
-
tabs = this.closest('.pf-v6-c-tabs'),
|
|
1085
|
-
left = Math.round(li.offsetLeft),
|
|
1086
|
-
top = Math.round(li.offsetTop),
|
|
1087
|
-
width = Math.round(li.offsetWidth),
|
|
1088
|
-
height = Math.round(li.offsetHeight);
|
|
1089
|
-
|
|
1090
|
-
ul.querySelectorAll('li').forEach(function(el) {
|
|
1091
|
-
el.classList.remove('pf-m-current')});
|
|
1092
|
-
li.classList.add('pf-m-current');
|
|
1093
|
-
tabs.style.setProperty('--pf-v6-c-tabs--link-accent--start', left + 'px');
|
|
1094
|
-
tabs.style.setProperty('--pf-v6-c-tabs--link-accent--length', width + 'px');
|
|
1095
|
-
}
|
|
1096
|
-
)()"
|
|
1097
927
|
role="tab"
|
|
1098
928
|
aria-controls="tabs-tables-and-tabs-example-tabs-events-panel"
|
|
1099
929
|
id="tabs-tables-and-tabs-example-tabs-events-link"
|
|
@@ -1105,25 +935,6 @@ section: components
|
|
|
1105
935
|
<button
|
|
1106
936
|
type="button"
|
|
1107
937
|
class="pf-v6-c-tabs__link"
|
|
1108
|
-
onclick="
|
|
1109
|
-
event.preventDefault();
|
|
1110
|
-
((e) => {
|
|
1111
|
-
const el = this,
|
|
1112
|
-
li = this.closest('li'),
|
|
1113
|
-
ul = this.closest('ul'),
|
|
1114
|
-
tabs = this.closest('.pf-v6-c-tabs'),
|
|
1115
|
-
left = Math.round(li.offsetLeft),
|
|
1116
|
-
top = Math.round(li.offsetTop),
|
|
1117
|
-
width = Math.round(li.offsetWidth),
|
|
1118
|
-
height = Math.round(li.offsetHeight);
|
|
1119
|
-
|
|
1120
|
-
ul.querySelectorAll('li').forEach(function(el) {
|
|
1121
|
-
el.classList.remove('pf-m-current')});
|
|
1122
|
-
li.classList.add('pf-m-current');
|
|
1123
|
-
tabs.style.setProperty('--pf-v6-c-tabs--link-accent--start', left + 'px');
|
|
1124
|
-
tabs.style.setProperty('--pf-v6-c-tabs--link-accent--length', width + 'px');
|
|
1125
|
-
}
|
|
1126
|
-
)()"
|
|
1127
938
|
role="tab"
|
|
1128
939
|
aria-controls="tabs-tables-and-tabs-example-tabs-terminal-panel"
|
|
1129
940
|
id="tabs-tables-and-tabs-example-tabs-terminal-link"
|
|
@@ -1147,25 +958,6 @@ section: components
|
|
|
1147
958
|
<button
|
|
1148
959
|
type="button"
|
|
1149
960
|
class="pf-v6-c-tabs__link"
|
|
1150
|
-
onclick="
|
|
1151
|
-
event.preventDefault();
|
|
1152
|
-
((e) => {
|
|
1153
|
-
const el = this,
|
|
1154
|
-
li = this.closest('li'),
|
|
1155
|
-
ul = this.closest('ul'),
|
|
1156
|
-
tabs = this.closest('.pf-v6-c-tabs'),
|
|
1157
|
-
left = Math.round(li.offsetLeft),
|
|
1158
|
-
top = Math.round(li.offsetTop),
|
|
1159
|
-
width = Math.round(li.offsetWidth),
|
|
1160
|
-
height = Math.round(li.offsetHeight);
|
|
1161
|
-
|
|
1162
|
-
ul.querySelectorAll('li').forEach(function(el) {
|
|
1163
|
-
el.classList.remove('pf-m-current')});
|
|
1164
|
-
li.classList.add('pf-m-current');
|
|
1165
|
-
tabs.style.setProperty('--pf-v6-c-tabs--link-accent--start', left + 'px');
|
|
1166
|
-
tabs.style.setProperty('--pf-v6-c-tabs--link-accent--length', width + 'px');
|
|
1167
|
-
}
|
|
1168
|
-
)()"
|
|
1169
961
|
role="tab"
|
|
1170
962
|
aria-controls="tabs-tables-and-tabs-example-tabs-secondary-pod-info-panel"
|
|
1171
963
|
id="tabs-tables-and-tabs-example-tabs-secondary-pod-info-link"
|
|
@@ -1177,25 +969,6 @@ section: components
|
|
|
1177
969
|
<button
|
|
1178
970
|
type="button"
|
|
1179
971
|
class="pf-v6-c-tabs__link"
|
|
1180
|
-
onclick="
|
|
1181
|
-
event.preventDefault();
|
|
1182
|
-
((e) => {
|
|
1183
|
-
const el = this,
|
|
1184
|
-
li = this.closest('li'),
|
|
1185
|
-
ul = this.closest('ul'),
|
|
1186
|
-
tabs = this.closest('.pf-v6-c-tabs'),
|
|
1187
|
-
left = Math.round(li.offsetLeft),
|
|
1188
|
-
top = Math.round(li.offsetTop),
|
|
1189
|
-
width = Math.round(li.offsetWidth),
|
|
1190
|
-
height = Math.round(li.offsetHeight);
|
|
1191
|
-
|
|
1192
|
-
ul.querySelectorAll('li').forEach(function(el) {
|
|
1193
|
-
el.classList.remove('pf-m-current')});
|
|
1194
|
-
li.classList.add('pf-m-current');
|
|
1195
|
-
tabs.style.setProperty('--pf-v6-c-tabs--link-accent--start', left + 'px');
|
|
1196
|
-
tabs.style.setProperty('--pf-v6-c-tabs--link-accent--length', width + 'px');
|
|
1197
|
-
}
|
|
1198
|
-
)()"
|
|
1199
972
|
role="tab"
|
|
1200
973
|
aria-controls="tabs-tables-and-tabs-example-tabs-secondary-editable-aspects-panel"
|
|
1201
974
|
id="tabs-tables-and-tabs-example-tabs-secondary-editable-aspects-link"
|
|
@@ -1225,7 +998,7 @@ section: components
|
|
|
1225
998
|
<div class="pf-v6-l-flex__item">
|
|
1226
999
|
<dl
|
|
1227
1000
|
class="pf-v6-c-description-list pf-m-2-col-on-lg"
|
|
1228
|
-
aria-label="
|
|
1001
|
+
aria-label="API 2"
|
|
1229
1002
|
>
|
|
1230
1003
|
<div class="pf-v6-c-description-list__group">
|
|
1231
1004
|
<dt class="pf-v6-c-description-list__term">Name</dt>
|
|
@@ -1418,12 +1191,31 @@ section: components
|
|
|
1418
1191
|
<div class="pf-v6-c-masthead__main">
|
|
1419
1192
|
<span class="pf-v6-c-masthead__toggle">
|
|
1420
1193
|
<button
|
|
1421
|
-
class="pf-v6-c-button pf-m-plain"
|
|
1194
|
+
class="pf-v6-c-button pf-m-hamburger pf-m-plain"
|
|
1422
1195
|
type="button"
|
|
1423
1196
|
aria-label="Global navigation"
|
|
1424
1197
|
>
|
|
1425
1198
|
<span class="pf-v6-c-button__icon">
|
|
1426
|
-
<
|
|
1199
|
+
<svg
|
|
1200
|
+
viewBox="0 0 10 10"
|
|
1201
|
+
class="pf-v6-c-button--hamburger-icon pf-v6-svg"
|
|
1202
|
+
width="1em"
|
|
1203
|
+
height="1em"
|
|
1204
|
+
>
|
|
1205
|
+
<path class="pf-v6-c-button--hamburger-icon--top" d="M1,1 L9,1" />
|
|
1206
|
+
<path
|
|
1207
|
+
class="pf-v6-c-button--hamburger-icon--middle"
|
|
1208
|
+
d="M1,5 L9,5"
|
|
1209
|
+
/>
|
|
1210
|
+
<path
|
|
1211
|
+
class="pf-v6-c-button--hamburger-icon--arrow"
|
|
1212
|
+
d="M1,5 L1,5 L1,5"
|
|
1213
|
+
/>
|
|
1214
|
+
<path
|
|
1215
|
+
class="pf-v6-c-button--hamburger-icon--bottom"
|
|
1216
|
+
d="M9,9 L1,9"
|
|
1217
|
+
/>
|
|
1218
|
+
</svg>
|
|
1427
1219
|
</span>
|
|
1428
1220
|
</button>
|
|
1429
1221
|
</span>
|
|
@@ -1531,7 +1323,7 @@ section: components
|
|
|
1531
1323
|
</div>
|
|
1532
1324
|
<div class="pf-v6-c-toolbar__item">
|
|
1533
1325
|
<button
|
|
1534
|
-
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
1326
|
+
class="pf-v6-c-menu-toggle pf-m-settings pf-m-plain"
|
|
1535
1327
|
type="button"
|
|
1536
1328
|
aria-expanded="false"
|
|
1537
1329
|
aria-label="Settings"
|
|
@@ -1674,25 +1466,6 @@ section: components
|
|
|
1674
1466
|
<button
|
|
1675
1467
|
type="button"
|
|
1676
1468
|
class="pf-v6-c-tabs__link"
|
|
1677
|
-
onclick="
|
|
1678
|
-
event.preventDefault();
|
|
1679
|
-
((e) => {
|
|
1680
|
-
const el = this,
|
|
1681
|
-
li = this.closest('li'),
|
|
1682
|
-
ul = this.closest('ul'),
|
|
1683
|
-
tabs = this.closest('.pf-v6-c-tabs'),
|
|
1684
|
-
left = Math.round(li.offsetLeft),
|
|
1685
|
-
top = Math.round(li.offsetTop),
|
|
1686
|
-
width = Math.round(li.offsetWidth),
|
|
1687
|
-
height = Math.round(li.offsetHeight);
|
|
1688
|
-
|
|
1689
|
-
ul.querySelectorAll('li').forEach(function(el) {
|
|
1690
|
-
el.classList.remove('pf-m-current')});
|
|
1691
|
-
li.classList.add('pf-m-current');
|
|
1692
|
-
tabs.style.setProperty('--pf-v6-c-tabs--link-accent--start', left + 'px');
|
|
1693
|
-
tabs.style.setProperty('--pf-v6-c-tabs--link-accent--length', width + 'px');
|
|
1694
|
-
}
|
|
1695
|
-
)()"
|
|
1696
1469
|
role="tab"
|
|
1697
1470
|
aria-controls="nested-tabs-example-tabs-tabs-cluster-1-panel"
|
|
1698
1471
|
id="nested-tabs-example-tabs-tabs-cluster-1-link"
|
|
@@ -1704,25 +1477,6 @@ section: components
|
|
|
1704
1477
|
<button
|
|
1705
1478
|
type="button"
|
|
1706
1479
|
class="pf-v6-c-tabs__link"
|
|
1707
|
-
onclick="
|
|
1708
|
-
event.preventDefault();
|
|
1709
|
-
((e) => {
|
|
1710
|
-
const el = this,
|
|
1711
|
-
li = this.closest('li'),
|
|
1712
|
-
ul = this.closest('ul'),
|
|
1713
|
-
tabs = this.closest('.pf-v6-c-tabs'),
|
|
1714
|
-
left = Math.round(li.offsetLeft),
|
|
1715
|
-
top = Math.round(li.offsetTop),
|
|
1716
|
-
width = Math.round(li.offsetWidth),
|
|
1717
|
-
height = Math.round(li.offsetHeight);
|
|
1718
|
-
|
|
1719
|
-
ul.querySelectorAll('li').forEach(function(el) {
|
|
1720
|
-
el.classList.remove('pf-m-current')});
|
|
1721
|
-
li.classList.add('pf-m-current');
|
|
1722
|
-
tabs.style.setProperty('--pf-v6-c-tabs--link-accent--start', left + 'px');
|
|
1723
|
-
tabs.style.setProperty('--pf-v6-c-tabs--link-accent--length', width + 'px');
|
|
1724
|
-
}
|
|
1725
|
-
)()"
|
|
1726
1480
|
role="tab"
|
|
1727
1481
|
aria-controls="nested-tabs-example-tabs-tabs-cluster-2-panel"
|
|
1728
1482
|
id="nested-tabs-example-tabs-tabs-cluster-2-link"
|
|
@@ -1768,25 +1522,6 @@ section: components
|
|
|
1768
1522
|
<button
|
|
1769
1523
|
type="button"
|
|
1770
1524
|
class="pf-v6-c-tabs__link"
|
|
1771
|
-
onclick="
|
|
1772
|
-
event.preventDefault();
|
|
1773
|
-
((e) => {
|
|
1774
|
-
const el = this,
|
|
1775
|
-
li = this.closest('li'),
|
|
1776
|
-
ul = this.closest('ul'),
|
|
1777
|
-
tabs = this.closest('.pf-v6-c-tabs'),
|
|
1778
|
-
left = Math.round(li.offsetLeft),
|
|
1779
|
-
top = Math.round(li.offsetTop),
|
|
1780
|
-
width = Math.round(li.offsetWidth),
|
|
1781
|
-
height = Math.round(li.offsetHeight);
|
|
1782
|
-
|
|
1783
|
-
ul.querySelectorAll('li').forEach(function(el) {
|
|
1784
|
-
el.classList.remove('pf-m-current')});
|
|
1785
|
-
li.classList.add('pf-m-current');
|
|
1786
|
-
tabs.style.setProperty('--pf-v6-c-tabs--link-accent--start', left + 'px');
|
|
1787
|
-
tabs.style.setProperty('--pf-v6-c-tabs--link-accent--length', width + 'px');
|
|
1788
|
-
}
|
|
1789
|
-
)()"
|
|
1790
1525
|
role="tab"
|
|
1791
1526
|
aria-controls="nested-tabs-example-tabs-tabs-subtabs-cluster-panel"
|
|
1792
1527
|
id="nested-tabs-example-tabs-tabs-subtabs-cluster-link"
|
|
@@ -1801,25 +1536,6 @@ section: components
|
|
|
1801
1536
|
<button
|
|
1802
1537
|
type="button"
|
|
1803
1538
|
class="pf-v6-c-tabs__link"
|
|
1804
|
-
onclick="
|
|
1805
|
-
event.preventDefault();
|
|
1806
|
-
((e) => {
|
|
1807
|
-
const el = this,
|
|
1808
|
-
li = this.closest('li'),
|
|
1809
|
-
ul = this.closest('ul'),
|
|
1810
|
-
tabs = this.closest('.pf-v6-c-tabs'),
|
|
1811
|
-
left = Math.round(li.offsetLeft),
|
|
1812
|
-
top = Math.round(li.offsetTop),
|
|
1813
|
-
width = Math.round(li.offsetWidth),
|
|
1814
|
-
height = Math.round(li.offsetHeight);
|
|
1815
|
-
|
|
1816
|
-
ul.querySelectorAll('li').forEach(function(el) {
|
|
1817
|
-
el.classList.remove('pf-m-current')});
|
|
1818
|
-
li.classList.add('pf-m-current');
|
|
1819
|
-
tabs.style.setProperty('--pf-v6-c-tabs--link-accent--start', left + 'px');
|
|
1820
|
-
tabs.style.setProperty('--pf-v6-c-tabs--link-accent--length', width + 'px');
|
|
1821
|
-
}
|
|
1822
|
-
)()"
|
|
1823
1539
|
role="tab"
|
|
1824
1540
|
aria-controls="nested-tabs-example-tabs-tabs-subtabs-control-plane-panel"
|
|
1825
1541
|
id="nested-tabs-example-tabs-tabs-subtabs-control-plane-link"
|
|
@@ -1836,25 +1552,6 @@ section: components
|
|
|
1836
1552
|
<button
|
|
1837
1553
|
type="button"
|
|
1838
1554
|
class="pf-v6-c-tabs__link"
|
|
1839
|
-
onclick="
|
|
1840
|
-
event.preventDefault();
|
|
1841
|
-
((e) => {
|
|
1842
|
-
const el = this,
|
|
1843
|
-
li = this.closest('li'),
|
|
1844
|
-
ul = this.closest('ul'),
|
|
1845
|
-
tabs = this.closest('.pf-v6-c-tabs'),
|
|
1846
|
-
left = Math.round(li.offsetLeft),
|
|
1847
|
-
top = Math.round(li.offsetTop),
|
|
1848
|
-
width = Math.round(li.offsetWidth),
|
|
1849
|
-
height = Math.round(li.offsetHeight);
|
|
1850
|
-
|
|
1851
|
-
ul.querySelectorAll('li').forEach(function(el) {
|
|
1852
|
-
el.classList.remove('pf-m-current')});
|
|
1853
|
-
li.classList.add('pf-m-current');
|
|
1854
|
-
tabs.style.setProperty('--pf-v6-c-tabs--link-accent--start', left + 'px');
|
|
1855
|
-
tabs.style.setProperty('--pf-v6-c-tabs--link-accent--length', width + 'px');
|
|
1856
|
-
}
|
|
1857
|
-
)()"
|
|
1858
1555
|
role="tab"
|
|
1859
1556
|
aria-controls="nested-tabs-example-tabs-tabs-subtabs-operators-panel"
|
|
1860
1557
|
id="nested-tabs-example-tabs-tabs-subtabs-operators-link"
|
|
@@ -1871,25 +1568,6 @@ section: components
|
|
|
1871
1568
|
<button
|
|
1872
1569
|
type="button"
|
|
1873
1570
|
class="pf-v6-c-tabs__link"
|
|
1874
|
-
onclick="
|
|
1875
|
-
event.preventDefault();
|
|
1876
|
-
((e) => {
|
|
1877
|
-
const el = this,
|
|
1878
|
-
li = this.closest('li'),
|
|
1879
|
-
ul = this.closest('ul'),
|
|
1880
|
-
tabs = this.closest('.pf-v6-c-tabs'),
|
|
1881
|
-
left = Math.round(li.offsetLeft),
|
|
1882
|
-
top = Math.round(li.offsetTop),
|
|
1883
|
-
width = Math.round(li.offsetWidth),
|
|
1884
|
-
height = Math.round(li.offsetHeight);
|
|
1885
|
-
|
|
1886
|
-
ul.querySelectorAll('li').forEach(function(el) {
|
|
1887
|
-
el.classList.remove('pf-m-current')});
|
|
1888
|
-
li.classList.add('pf-m-current');
|
|
1889
|
-
tabs.style.setProperty('--pf-v6-c-tabs--link-accent--start', left + 'px');
|
|
1890
|
-
tabs.style.setProperty('--pf-v6-c-tabs--link-accent--length', width + 'px');
|
|
1891
|
-
}
|
|
1892
|
-
)()"
|
|
1893
1571
|
role="tab"
|
|
1894
1572
|
aria-controls="nested-tabs-example-tabs-tabs-subtabs-virtualization-panel"
|
|
1895
1573
|
id="nested-tabs-example-tabs-tabs-subtabs-virtualization-link"
|
|
@@ -2018,12 +1696,31 @@ section: components
|
|
|
2018
1696
|
<div class="pf-v6-c-masthead__main">
|
|
2019
1697
|
<span class="pf-v6-c-masthead__toggle">
|
|
2020
1698
|
<button
|
|
2021
|
-
class="pf-v6-c-button pf-m-plain"
|
|
1699
|
+
class="pf-v6-c-button pf-m-hamburger pf-m-plain"
|
|
2022
1700
|
type="button"
|
|
2023
1701
|
aria-label="Global navigation"
|
|
2024
1702
|
>
|
|
2025
1703
|
<span class="pf-v6-c-button__icon">
|
|
2026
|
-
<
|
|
1704
|
+
<svg
|
|
1705
|
+
viewBox="0 0 10 10"
|
|
1706
|
+
class="pf-v6-c-button--hamburger-icon pf-v6-svg"
|
|
1707
|
+
width="1em"
|
|
1708
|
+
height="1em"
|
|
1709
|
+
>
|
|
1710
|
+
<path class="pf-v6-c-button--hamburger-icon--top" d="M1,1 L9,1" />
|
|
1711
|
+
<path
|
|
1712
|
+
class="pf-v6-c-button--hamburger-icon--middle"
|
|
1713
|
+
d="M1,5 L9,5"
|
|
1714
|
+
/>
|
|
1715
|
+
<path
|
|
1716
|
+
class="pf-v6-c-button--hamburger-icon--arrow"
|
|
1717
|
+
d="M1,5 L1,5 L1,5"
|
|
1718
|
+
/>
|
|
1719
|
+
<path
|
|
1720
|
+
class="pf-v6-c-button--hamburger-icon--bottom"
|
|
1721
|
+
d="M9,9 L1,9"
|
|
1722
|
+
/>
|
|
1723
|
+
</svg>
|
|
2027
1724
|
</span>
|
|
2028
1725
|
</button>
|
|
2029
1726
|
</span>
|
|
@@ -2131,7 +1828,7 @@ section: components
|
|
|
2131
1828
|
</div>
|
|
2132
1829
|
<div class="pf-v6-c-toolbar__item">
|
|
2133
1830
|
<button
|
|
2134
|
-
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
1831
|
+
class="pf-v6-c-menu-toggle pf-m-settings pf-m-plain"
|
|
2135
1832
|
type="button"
|
|
2136
1833
|
aria-expanded="false"
|
|
2137
1834
|
aria-label="Settings"
|
|
@@ -2524,7 +2221,7 @@ section: components
|
|
|
2524
2221
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
2525
2222
|
type="button"
|
|
2526
2223
|
aria-expanded="false"
|
|
2527
|
-
aria-label="
|
|
2224
|
+
aria-label="Table actions"
|
|
2528
2225
|
>
|
|
2529
2226
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
2530
2227
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -2616,7 +2313,7 @@ section: components
|
|
|
2616
2313
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
2617
2314
|
type="button"
|
|
2618
2315
|
aria-expanded="false"
|
|
2619
|
-
aria-label="
|
|
2316
|
+
aria-label="Table actions"
|
|
2620
2317
|
>
|
|
2621
2318
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
2622
2319
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -2708,7 +2405,7 @@ section: components
|
|
|
2708
2405
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
2709
2406
|
type="button"
|
|
2710
2407
|
aria-expanded="false"
|
|
2711
|
-
aria-label="
|
|
2408
|
+
aria-label="Table actions"
|
|
2712
2409
|
>
|
|
2713
2410
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
2714
2411
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -2800,7 +2497,7 @@ section: components
|
|
|
2800
2497
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
2801
2498
|
type="button"
|
|
2802
2499
|
aria-expanded="false"
|
|
2803
|
-
aria-label="
|
|
2500
|
+
aria-label="Table actions"
|
|
2804
2501
|
>
|
|
2805
2502
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
2806
2503
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -2891,7 +2588,7 @@ section: components
|
|
|
2891
2588
|
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
2892
2589
|
type="button"
|
|
2893
2590
|
aria-expanded="false"
|
|
2894
|
-
aria-label="
|
|
2591
|
+
aria-label="Table actions"
|
|
2895
2592
|
>
|
|
2896
2593
|
<span class="pf-v6-c-menu-toggle__icon">
|
|
2897
2594
|
<i class="fas fa-ellipsis-v" aria-hidden="true"></i>
|
|
@@ -2961,25 +2658,6 @@ section: components
|
|
|
2961
2658
|
<button
|
|
2962
2659
|
type="button"
|
|
2963
2660
|
class="pf-v6-c-tabs__link"
|
|
2964
|
-
onclick="
|
|
2965
|
-
event.preventDefault();
|
|
2966
|
-
((e) => {
|
|
2967
|
-
const el = this,
|
|
2968
|
-
li = this.closest('li'),
|
|
2969
|
-
ul = this.closest('ul'),
|
|
2970
|
-
tabs = this.closest('.pf-v6-c-tabs'),
|
|
2971
|
-
left = Math.round(li.offsetLeft),
|
|
2972
|
-
top = Math.round(li.offsetTop),
|
|
2973
|
-
width = Math.round(li.offsetWidth),
|
|
2974
|
-
height = Math.round(li.offsetHeight);
|
|
2975
|
-
|
|
2976
|
-
ul.querySelectorAll('li').forEach(function(el) {
|
|
2977
|
-
el.classList.remove('pf-m-current')});
|
|
2978
|
-
li.classList.add('pf-m-current');
|
|
2979
|
-
tabs.style.setProperty('--pf-v6-c-tabs--link-accent--start', left + 'px');
|
|
2980
|
-
tabs.style.setProperty('--pf-v6-c-tabs--link-accent--length', width + 'px');
|
|
2981
|
-
}
|
|
2982
|
-
)()"
|
|
2983
2661
|
role="tab"
|
|
2984
2662
|
aria-controls="-tabs-tab1-panel"
|
|
2985
2663
|
id="-tabs-tab1-link"
|
|
@@ -2991,25 +2669,6 @@ section: components
|
|
|
2991
2669
|
<button
|
|
2992
2670
|
type="button"
|
|
2993
2671
|
class="pf-v6-c-tabs__link"
|
|
2994
|
-
onclick="
|
|
2995
|
-
event.preventDefault();
|
|
2996
|
-
((e) => {
|
|
2997
|
-
const el = this,
|
|
2998
|
-
li = this.closest('li'),
|
|
2999
|
-
ul = this.closest('ul'),
|
|
3000
|
-
tabs = this.closest('.pf-v6-c-tabs'),
|
|
3001
|
-
left = Math.round(li.offsetLeft),
|
|
3002
|
-
top = Math.round(li.offsetTop),
|
|
3003
|
-
width = Math.round(li.offsetWidth),
|
|
3004
|
-
height = Math.round(li.offsetHeight);
|
|
3005
|
-
|
|
3006
|
-
ul.querySelectorAll('li').forEach(function(el) {
|
|
3007
|
-
el.classList.remove('pf-m-current')});
|
|
3008
|
-
li.classList.add('pf-m-current');
|
|
3009
|
-
tabs.style.setProperty('--pf-v6-c-tabs--link-accent--start', left + 'px');
|
|
3010
|
-
tabs.style.setProperty('--pf-v6-c-tabs--link-accent--length', width + 'px');
|
|
3011
|
-
}
|
|
3012
|
-
)()"
|
|
3013
2672
|
role="tab"
|
|
3014
2673
|
aria-controls="-tabs-tab2-panel"
|
|
3015
2674
|
id="-tabs-tab2-link"
|
|
@@ -3226,25 +2885,6 @@ section: components
|
|
|
3226
2885
|
<button
|
|
3227
2886
|
type="button"
|
|
3228
2887
|
class="pf-v6-c-tabs__link"
|
|
3229
|
-
onclick="
|
|
3230
|
-
event.preventDefault();
|
|
3231
|
-
((e) => {
|
|
3232
|
-
const el = this,
|
|
3233
|
-
li = this.closest('li'),
|
|
3234
|
-
ul = this.closest('ul'),
|
|
3235
|
-
tabs = this.closest('.pf-v6-c-tabs'),
|
|
3236
|
-
left = Math.round(li.offsetLeft),
|
|
3237
|
-
top = Math.round(li.offsetTop),
|
|
3238
|
-
width = Math.round(li.offsetWidth),
|
|
3239
|
-
height = Math.round(li.offsetHeight);
|
|
3240
|
-
|
|
3241
|
-
ul.querySelectorAll('li').forEach(function(el) {
|
|
3242
|
-
el.classList.remove('pf-m-current')});
|
|
3243
|
-
li.classList.add('pf-m-current');
|
|
3244
|
-
tabs.style.setProperty('--pf-v6-c-tabs--link-accent--start', left + 'px');
|
|
3245
|
-
tabs.style.setProperty('--pf-v6-c-tabs--link-accent--length', width + 'px');
|
|
3246
|
-
}
|
|
3247
|
-
)()"
|
|
3248
2888
|
role="tab"
|
|
3249
2889
|
aria-controls="modal-tabs-example-tabs-details-panel"
|
|
3250
2890
|
id="modal-tabs-example-tabs-details-link"
|
|
@@ -3256,25 +2896,6 @@ section: components
|
|
|
3256
2896
|
<button
|
|
3257
2897
|
type="button"
|
|
3258
2898
|
class="pf-v6-c-tabs__link"
|
|
3259
|
-
onclick="
|
|
3260
|
-
event.preventDefault();
|
|
3261
|
-
((e) => {
|
|
3262
|
-
const el = this,
|
|
3263
|
-
li = this.closest('li'),
|
|
3264
|
-
ul = this.closest('ul'),
|
|
3265
|
-
tabs = this.closest('.pf-v6-c-tabs'),
|
|
3266
|
-
left = Math.round(li.offsetLeft),
|
|
3267
|
-
top = Math.round(li.offsetTop),
|
|
3268
|
-
width = Math.round(li.offsetWidth),
|
|
3269
|
-
height = Math.round(li.offsetHeight);
|
|
3270
|
-
|
|
3271
|
-
ul.querySelectorAll('li').forEach(function(el) {
|
|
3272
|
-
el.classList.remove('pf-m-current')});
|
|
3273
|
-
li.classList.add('pf-m-current');
|
|
3274
|
-
tabs.style.setProperty('--pf-v6-c-tabs--link-accent--start', left + 'px');
|
|
3275
|
-
tabs.style.setProperty('--pf-v6-c-tabs--link-accent--length', width + 'px');
|
|
3276
|
-
}
|
|
3277
|
-
)()"
|
|
3278
2899
|
role="tab"
|
|
3279
2900
|
aria-controls="modal-tabs-example-tabs-documentation-panel"
|
|
3280
2901
|
id="modal-tabs-example-tabs-documentation-link"
|
|
@@ -3339,12 +2960,31 @@ section: components
|
|
|
3339
2960
|
<div class="pf-v6-c-masthead__main">
|
|
3340
2961
|
<span class="pf-v6-c-masthead__toggle">
|
|
3341
2962
|
<button
|
|
3342
|
-
class="pf-v6-c-button pf-m-plain"
|
|
2963
|
+
class="pf-v6-c-button pf-m-hamburger pf-m-plain"
|
|
3343
2964
|
type="button"
|
|
3344
2965
|
aria-label="Global navigation"
|
|
3345
2966
|
>
|
|
3346
2967
|
<span class="pf-v6-c-button__icon">
|
|
3347
|
-
<
|
|
2968
|
+
<svg
|
|
2969
|
+
viewBox="0 0 10 10"
|
|
2970
|
+
class="pf-v6-c-button--hamburger-icon pf-v6-svg"
|
|
2971
|
+
width="1em"
|
|
2972
|
+
height="1em"
|
|
2973
|
+
>
|
|
2974
|
+
<path class="pf-v6-c-button--hamburger-icon--top" d="M1,1 L9,1" />
|
|
2975
|
+
<path
|
|
2976
|
+
class="pf-v6-c-button--hamburger-icon--middle"
|
|
2977
|
+
d="M1,5 L9,5"
|
|
2978
|
+
/>
|
|
2979
|
+
<path
|
|
2980
|
+
class="pf-v6-c-button--hamburger-icon--arrow"
|
|
2981
|
+
d="M1,5 L1,5 L1,5"
|
|
2982
|
+
/>
|
|
2983
|
+
<path
|
|
2984
|
+
class="pf-v6-c-button--hamburger-icon--bottom"
|
|
2985
|
+
d="M9,9 L1,9"
|
|
2986
|
+
/>
|
|
2987
|
+
</svg>
|
|
3348
2988
|
</span>
|
|
3349
2989
|
</button>
|
|
3350
2990
|
</span>
|
|
@@ -3452,7 +3092,7 @@ section: components
|
|
|
3452
3092
|
</div>
|
|
3453
3093
|
<div class="pf-v6-c-toolbar__item">
|
|
3454
3094
|
<button
|
|
3455
|
-
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
3095
|
+
class="pf-v6-c-menu-toggle pf-m-settings pf-m-plain"
|
|
3456
3096
|
type="button"
|
|
3457
3097
|
aria-expanded="false"
|
|
3458
3098
|
aria-label="Settings"
|
|
@@ -3644,12 +3284,31 @@ section: components
|
|
|
3644
3284
|
<div class="pf-v6-c-masthead__main">
|
|
3645
3285
|
<span class="pf-v6-c-masthead__toggle">
|
|
3646
3286
|
<button
|
|
3647
|
-
class="pf-v6-c-button pf-m-plain"
|
|
3287
|
+
class="pf-v6-c-button pf-m-hamburger pf-m-plain"
|
|
3648
3288
|
type="button"
|
|
3649
3289
|
aria-label="Global navigation"
|
|
3650
3290
|
>
|
|
3651
3291
|
<span class="pf-v6-c-button__icon">
|
|
3652
|
-
<
|
|
3292
|
+
<svg
|
|
3293
|
+
viewBox="0 0 10 10"
|
|
3294
|
+
class="pf-v6-c-button--hamburger-icon pf-v6-svg"
|
|
3295
|
+
width="1em"
|
|
3296
|
+
height="1em"
|
|
3297
|
+
>
|
|
3298
|
+
<path class="pf-v6-c-button--hamburger-icon--top" d="M1,1 L9,1" />
|
|
3299
|
+
<path
|
|
3300
|
+
class="pf-v6-c-button--hamburger-icon--middle"
|
|
3301
|
+
d="M1,5 L9,5"
|
|
3302
|
+
/>
|
|
3303
|
+
<path
|
|
3304
|
+
class="pf-v6-c-button--hamburger-icon--arrow"
|
|
3305
|
+
d="M1,5 L1,5 L1,5"
|
|
3306
|
+
/>
|
|
3307
|
+
<path
|
|
3308
|
+
class="pf-v6-c-button--hamburger-icon--bottom"
|
|
3309
|
+
d="M9,9 L1,9"
|
|
3310
|
+
/>
|
|
3311
|
+
</svg>
|
|
3653
3312
|
</span>
|
|
3654
3313
|
</button>
|
|
3655
3314
|
</span>
|
|
@@ -3757,7 +3416,7 @@ section: components
|
|
|
3757
3416
|
</div>
|
|
3758
3417
|
<div class="pf-v6-c-toolbar__item">
|
|
3759
3418
|
<button
|
|
3760
|
-
class="pf-v6-c-menu-toggle pf-m-plain"
|
|
3419
|
+
class="pf-v6-c-menu-toggle pf-m-settings pf-m-plain"
|
|
3761
3420
|
type="button"
|
|
3762
3421
|
aria-expanded="false"
|
|
3763
3422
|
aria-label="Settings"
|
|
@@ -3900,25 +3559,6 @@ section: components
|
|
|
3900
3559
|
<button
|
|
3901
3560
|
type="button"
|
|
3902
3561
|
class="pf-v6-c-tabs__link"
|
|
3903
|
-
onclick="
|
|
3904
|
-
event.preventDefault();
|
|
3905
|
-
((e) => {
|
|
3906
|
-
const el = this,
|
|
3907
|
-
li = this.closest('li'),
|
|
3908
|
-
ul = this.closest('ul'),
|
|
3909
|
-
tabs = this.closest('.pf-v6-c-tabs'),
|
|
3910
|
-
left = Math.round(li.offsetLeft),
|
|
3911
|
-
top = Math.round(li.offsetTop),
|
|
3912
|
-
width = Math.round(li.offsetWidth),
|
|
3913
|
-
height = Math.round(li.offsetHeight);
|
|
3914
|
-
|
|
3915
|
-
ul.querySelectorAll('li').forEach(function(el) {
|
|
3916
|
-
el.classList.remove('pf-m-current')});
|
|
3917
|
-
li.classList.add('pf-m-current');
|
|
3918
|
-
tabs.style.setProperty('--pf-v6-c-tabs--link-accent--start', left + 'px');
|
|
3919
|
-
tabs.style.setProperty('--pf-v6-c-tabs--link-accent--length', width + 'px');
|
|
3920
|
-
}
|
|
3921
|
-
)()"
|
|
3922
3562
|
role="tab"
|
|
3923
3563
|
aria-controls="gray-tabs-example-tabs-tabs-new-panel"
|
|
3924
3564
|
id="gray-tabs-example-tabs-tabs-new-link"
|
|
@@ -3930,25 +3570,6 @@ section: components
|
|
|
3930
3570
|
<button
|
|
3931
3571
|
type="button"
|
|
3932
3572
|
class="pf-v6-c-tabs__link"
|
|
3933
|
-
onclick="
|
|
3934
|
-
event.preventDefault();
|
|
3935
|
-
((e) => {
|
|
3936
|
-
const el = this,
|
|
3937
|
-
li = this.closest('li'),
|
|
3938
|
-
ul = this.closest('ul'),
|
|
3939
|
-
tabs = this.closest('.pf-v6-c-tabs'),
|
|
3940
|
-
left = Math.round(li.offsetLeft),
|
|
3941
|
-
top = Math.round(li.offsetTop),
|
|
3942
|
-
width = Math.round(li.offsetWidth),
|
|
3943
|
-
height = Math.round(li.offsetHeight);
|
|
3944
|
-
|
|
3945
|
-
ul.querySelectorAll('li').forEach(function(el) {
|
|
3946
|
-
el.classList.remove('pf-m-current')});
|
|
3947
|
-
li.classList.add('pf-m-current');
|
|
3948
|
-
tabs.style.setProperty('--pf-v6-c-tabs--link-accent--start', left + 'px');
|
|
3949
|
-
tabs.style.setProperty('--pf-v6-c-tabs--link-accent--length', width + 'px');
|
|
3950
|
-
}
|
|
3951
|
-
)()"
|
|
3952
3573
|
role="tab"
|
|
3953
3574
|
aria-controls="gray-tabs-example-tabs-tabs-get-started-panel"
|
|
3954
3575
|
id="gray-tabs-example-tabs-tabs-get-started-link"
|
|
@@ -3960,25 +3581,6 @@ section: components
|
|
|
3960
3581
|
<button
|
|
3961
3582
|
type="button"
|
|
3962
3583
|
class="pf-v6-c-tabs__link"
|
|
3963
|
-
onclick="
|
|
3964
|
-
event.preventDefault();
|
|
3965
|
-
((e) => {
|
|
3966
|
-
const el = this,
|
|
3967
|
-
li = this.closest('li'),
|
|
3968
|
-
ul = this.closest('ul'),
|
|
3969
|
-
tabs = this.closest('.pf-v6-c-tabs'),
|
|
3970
|
-
left = Math.round(li.offsetLeft),
|
|
3971
|
-
top = Math.round(li.offsetTop),
|
|
3972
|
-
width = Math.round(li.offsetWidth),
|
|
3973
|
-
height = Math.round(li.offsetHeight);
|
|
3974
|
-
|
|
3975
|
-
ul.querySelectorAll('li').forEach(function(el) {
|
|
3976
|
-
el.classList.remove('pf-m-current')});
|
|
3977
|
-
li.classList.add('pf-m-current');
|
|
3978
|
-
tabs.style.setProperty('--pf-v6-c-tabs--link-accent--start', left + 'px');
|
|
3979
|
-
tabs.style.setProperty('--pf-v6-c-tabs--link-accent--length', width + 'px');
|
|
3980
|
-
}
|
|
3981
|
-
)()"
|
|
3982
3584
|
role="tab"
|
|
3983
3585
|
aria-controls="gray-tabs-example-tabs-tabs-knowledge-panel"
|
|
3984
3586
|
id="gray-tabs-example-tabs-tabs-knowledge-link"
|
|
@@ -3990,25 +3592,6 @@ section: components
|
|
|
3990
3592
|
<button
|
|
3991
3593
|
type="button"
|
|
3992
3594
|
class="pf-v6-c-tabs__link"
|
|
3993
|
-
onclick="
|
|
3994
|
-
event.preventDefault();
|
|
3995
|
-
((e) => {
|
|
3996
|
-
const el = this,
|
|
3997
|
-
li = this.closest('li'),
|
|
3998
|
-
ul = this.closest('ul'),
|
|
3999
|
-
tabs = this.closest('.pf-v6-c-tabs'),
|
|
4000
|
-
left = Math.round(li.offsetLeft),
|
|
4001
|
-
top = Math.round(li.offsetTop),
|
|
4002
|
-
width = Math.round(li.offsetWidth),
|
|
4003
|
-
height = Math.round(li.offsetHeight);
|
|
4004
|
-
|
|
4005
|
-
ul.querySelectorAll('li').forEach(function(el) {
|
|
4006
|
-
el.classList.remove('pf-m-current')});
|
|
4007
|
-
li.classList.add('pf-m-current');
|
|
4008
|
-
tabs.style.setProperty('--pf-v6-c-tabs--link-accent--start', left + 'px');
|
|
4009
|
-
tabs.style.setProperty('--pf-v6-c-tabs--link-accent--length', width + 'px');
|
|
4010
|
-
}
|
|
4011
|
-
)()"
|
|
4012
3595
|
role="tab"
|
|
4013
3596
|
aria-controls="gray-tabs-example-tabs-tabs-support-panel"
|
|
4014
3597
|
id="gray-tabs-example-tabs-tabs-support-link"
|
|
@@ -4060,25 +3643,6 @@ section: components
|
|
|
4060
3643
|
<button
|
|
4061
3644
|
type="button"
|
|
4062
3645
|
class="pf-v6-c-tabs__link"
|
|
4063
|
-
onclick="
|
|
4064
|
-
event.preventDefault();
|
|
4065
|
-
((e) => {
|
|
4066
|
-
const el = this,
|
|
4067
|
-
li = this.closest('li'),
|
|
4068
|
-
ul = this.closest('ul'),
|
|
4069
|
-
tabs = this.closest('.pf-v6-c-tabs'),
|
|
4070
|
-
left = Math.round(li.offsetLeft),
|
|
4071
|
-
top = Math.round(li.offsetTop),
|
|
4072
|
-
width = Math.round(li.offsetWidth),
|
|
4073
|
-
height = Math.round(li.offsetHeight);
|
|
4074
|
-
|
|
4075
|
-
ul.querySelectorAll('li').forEach(function(el) {
|
|
4076
|
-
el.classList.remove('pf-m-current')});
|
|
4077
|
-
li.classList.add('pf-m-current');
|
|
4078
|
-
tabs.style.setProperty('--pf-v6-c-tabs--link-accent--start', left + 'px');
|
|
4079
|
-
tabs.style.setProperty('--pf-v6-c-tabs--link-accent--length', width + 'px');
|
|
4080
|
-
}
|
|
4081
|
-
)()"
|
|
4082
3646
|
role="tab"
|
|
4083
3647
|
aria-controls="gray-tabs-example-tabs-subtabs-x86-panel"
|
|
4084
3648
|
id="gray-tabs-example-tabs-subtabs-x86-link"
|
|
@@ -4090,25 +3654,6 @@ section: components
|
|
|
4090
3654
|
<button
|
|
4091
3655
|
type="button"
|
|
4092
3656
|
class="pf-v6-c-tabs__link"
|
|
4093
|
-
onclick="
|
|
4094
|
-
event.preventDefault();
|
|
4095
|
-
((e) => {
|
|
4096
|
-
const el = this,
|
|
4097
|
-
li = this.closest('li'),
|
|
4098
|
-
ul = this.closest('ul'),
|
|
4099
|
-
tabs = this.closest('.pf-v6-c-tabs'),
|
|
4100
|
-
left = Math.round(li.offsetLeft),
|
|
4101
|
-
top = Math.round(li.offsetTop),
|
|
4102
|
-
width = Math.round(li.offsetWidth),
|
|
4103
|
-
height = Math.round(li.offsetHeight);
|
|
4104
|
-
|
|
4105
|
-
ul.querySelectorAll('li').forEach(function(el) {
|
|
4106
|
-
el.classList.remove('pf-m-current')});
|
|
4107
|
-
li.classList.add('pf-m-current');
|
|
4108
|
-
tabs.style.setProperty('--pf-v6-c-tabs--link-accent--start', left + 'px');
|
|
4109
|
-
tabs.style.setProperty('--pf-v6-c-tabs--link-accent--length', width + 'px');
|
|
4110
|
-
}
|
|
4111
|
-
)()"
|
|
4112
3657
|
role="tab"
|
|
4113
3658
|
aria-controls="gray-tabs-example-tabs-subtabs-additional-architectures-panel"
|
|
4114
3659
|
id="gray-tabs-example-tabs-subtabs-additional-architectures-link"
|