You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: site/content/docs/5.0/components/carousel.md
+12-12
Original file line number
Diff line number
Diff line change
@@ -239,40 +239,40 @@ Options can be passed via data attributes or JavaScript. For data attributes, ap
239
239
</thead>
240
240
<tbody>
241
241
<tr>
242
-
<td>interval</td>
242
+
<td><code>interval</code></td>
243
243
<td>number</td>
244
-
<td>5000</td>
244
+
<td><code>5000</code></td>
245
245
<td>The amount of time to delay between automatically cycling an item. If false, carousel will not automatically cycle.</td>
246
246
</tr>
247
247
<tr>
248
-
<td>keyboard</td>
248
+
<td><code>keyboard</code></td>
249
249
<td>boolean</td>
250
-
<td>true</td>
250
+
<td><code>true</code></td>
251
251
<td>Whether the carousel should react to keyboard events.</td>
252
252
</tr>
253
253
<tr>
254
-
<td>pause</td>
254
+
<td><code>pause</code></td>
255
255
<td>string | boolean</td>
256
-
<td>"hover"</td>
256
+
<td><code>"hover"</code></td>
257
257
<td><p>If set to <code>"hover"</code>, pauses the cycling of the carousel on <code>mouseenter</code> and resumes the cycling of the carousel on <code>mouseleave</code>. If set to <code>false</code>, hovering over the carousel won't pause it.</p>
258
258
<p>On touch-enabled devices, when set to <code>"hover"</code>, cycling will pause on <code>touchend</code> (once the user finished interacting with the carousel) for two intervals, before automatically resuming. Note that this is in addition to the above mouse behavior.</p></td>
259
259
</tr>
260
260
<tr>
261
-
<td>slide</td>
261
+
<td><code>slide</code></td>
262
262
<td>string | boolean</td>
263
-
<td>false</td>
263
+
<td><code>false</code></td>
264
264
<td>Autoplays the carousel after the user manually cycles the first item. If "carousel", autoplays the carousel on load.</td>
265
265
</tr>
266
266
<tr>
267
-
<td>wrap</td>
267
+
<td><code>wrap</code></td>
268
268
<td>boolean</td>
269
-
<td>true</td>
269
+
<td><code>true</code></td>
270
270
<td>Whether the carousel should cycle continuously or have hard stops.</td>
271
271
</tr>
272
272
<tr>
273
-
<td>touch</td>
273
+
<td><code>touch</code></td>
274
274
<td>boolean</td>
275
-
<td>true</td>
275
+
<td><code>true</code></td>
276
276
<td>Whether the carousel should support left/right swipe interactions on touchscreen devices.</td>
Copy file name to clipboardexpand all lines: site/content/docs/5.0/components/collapse.md
+8-8
Original file line number
Diff line number
Diff line change
@@ -171,15 +171,15 @@ Options can be passed via data attributes or JavaScript. For data attributes, ap
171
171
</thead>
172
172
<tbody>
173
173
<tr>
174
-
<td>parent</td>
174
+
<td><code>parent</code></td>
175
175
<td>selector | jQuery object | DOM element </td>
176
-
<td>false</td>
176
+
<td><code>false</code></td>
177
177
<td>If parent is provided, then all collapsible elements under the specified parent will be closed when this collapsible item is shown. (similar to traditional accordion behavior - this is dependent on the <code>card</code> class). The attribute has to be set on the target collapsible area.</td>
178
178
</tr>
179
179
<tr>
180
-
<td>toggle</td>
180
+
<td><code>toggle</code></td>
181
181
<td>boolean</td>
182
-
<td>true</td>
182
+
<td><code>true</code></td>
183
183
<td>Toggles the collapsible element on invocation</td>
184
184
</tr>
185
185
</tbody>
@@ -246,19 +246,19 @@ Bootstrap's collapse class exposes a few events for hooking into collapse functi
246
246
</thead>
247
247
<tbody>
248
248
<tr>
249
-
<td>show.bs.collapse</td>
249
+
<td><code>show.bs.collapse</code></td>
250
250
<td>This event fires immediately when the <code>show</code> instance method is called.</td>
251
251
</tr>
252
252
<tr>
253
-
<td>shown.bs.collapse</td>
253
+
<td><code>shown.bs.collapse</code></td>
254
254
<td>This event is fired when a collapse element has been made visible to the user (will wait for CSS transitions to complete).</td>
255
255
</tr>
256
256
<tr>
257
-
<td>hide.bs.collapse</td>
257
+
<td><code>hide.bs.collapse</code></td>
258
258
<td>This event is fired immediately when the <code>hide</code> method has been called.</td>
259
259
</tr>
260
260
<tr>
261
-
<td>hidden.bs.collapse</td>
261
+
<td><code>hidden.bs.collapse</code></td>
262
262
<td>This event is fired when a collapse element has been hidden from the user (will wait for CSS transitions to complete).</td>
Copy file name to clipboardexpand all lines: site/content/docs/5.0/components/dropdowns.md
+12-12
Original file line number
Diff line number
Diff line change
@@ -822,43 +822,43 @@ Options can be passed via data attributes or JavaScript. For data attributes, ap
822
822
</thead>
823
823
<tbody>
824
824
<tr>
825
-
<td>offset</td>
825
+
<td><code>offset</code></td>
826
826
<td>number | string | function</td>
827
-
<td>0</td>
827
+
<td><code>0</code></td>
828
828
<td>
829
829
<p>Offset of the dropdown relative to its target.</p>
830
830
<p>When a function is used to determine the offset, it is called with an object containing the offset data as its first argument. The function must return an object with the same structure. The triggering element DOM node is passed as the second argument.</p>
831
831
<p>For more information refer to Popper.js's <a href="https://popper.js.org/docs/v1/#modifiers..offset.offset">offset docs</a>.</p>
832
832
</td>
833
833
</tr>
834
834
<tr>
835
-
<td>flip</td>
835
+
<td><code>flip</code></td>
836
836
<td>boolean</td>
837
-
<td>true</td>
837
+
<td><code>true</code></td>
838
838
<td>Allow Dropdown to flip in case of an overlapping on the reference element. For more information refer to Popper.js's <a href="https://popper.js.org/docs/v1/#modifiers..flip.enabled">flip docs</a>.</td>
839
839
</tr>
840
840
<tr>
841
-
<td>boundary</td>
841
+
<td><code>boundary</code></td>
842
842
<td>string | element</td>
843
-
<td>'scrollParent'</td>
843
+
<td><code>'scrollParent'</code></td>
844
844
<td>Overflow constraint boundary of the dropdown menu. Accepts the values of <code>'viewport'</code>, <code>'window'</code>, <code>'scrollParent'</code>, or an HTMLElement reference (JavaScript only). For more information refer to Popper.js's <a href="https://popper.js.org/docs/v1/#modifiers..preventOverflow.boundariesElement">preventOverflow docs</a>.</td>
845
845
</tr>
846
846
<tr>
847
-
<td>reference</td>
847
+
<td><code>reference</code></td>
848
848
<td>string | element</td>
849
-
<td>'toggle'</td>
849
+
<td><code>'toggle'</code></td>
850
850
<td>Reference element of the dropdown menu. Accepts the values of <code>'toggle'</code>, <code>'parent'</code>, or an HTMLElement reference. For more information refer to Popper.js's <a href="https://popper.js.org/docs/v1/#referenceObject">referenceObject docs</a>.</td>
851
851
</tr>
852
852
<tr>
853
-
<td>display</td>
853
+
<td><code>display</code></td>
854
854
<td>string</td>
855
-
<td>'dynamic'</td>
855
+
<td><code>'dynamic'</code></td>
856
856
<td>By default, we use Popper.js for dynamic positioning. Disable this with <code>static</code>.</td>
857
857
</tr>
858
858
<tr>
859
-
<td>popperConfig</td>
859
+
<td><code>popperConfig</code></td>
860
860
<td>null | object</td>
861
-
<td>null</td>
861
+
<td><code>null</code></td>
862
862
<td>To change Bootstrap's default Popper.js config, see <a href="https://popper.js.org/docs/v1/#Popper.Defaults">Popper.js's configuration</a></td>
Copy file name to clipboardexpand all lines: site/content/docs/5.0/components/list-group.md
+4-4
Original file line number
Diff line number
Diff line change
@@ -445,19 +445,19 @@ If no tab was already active, the `hide.bs.tab` and `hidden.bs.tab` events will
445
445
</thead>
446
446
<tbody>
447
447
<tr>
448
-
<td>show.bs.tab</td>
448
+
<td><code>show.bs.tab</code></td>
449
449
<td>This event fires on tab show, but before the new tab has been shown. Use <code>event.target</code> and <code>event.relatedTarget</code> to target the active tab and the previous active tab (if available) respectively.</td>
450
450
</tr>
451
451
<tr>
452
-
<td>shown.bs.tab</td>
452
+
<td><code>shown.bs.tab</code></td>
453
453
<td>This event fires on tab show after a tab has been shown. Use <code>event.target</code> and <code>event.relatedTarget</code> to target the active tab and the previous active tab (if available) respectively.</td>
454
454
</tr>
455
455
<tr>
456
-
<td>hide.bs.tab</td>
456
+
<td><code>hide.bs.tab</code></td>
457
457
<td>This event fires when a new tab is to be shown (and thus the previous active tab is to be hidden). Use <code>event.target</code> and <code>event.relatedTarget</code> to target the current active tab and the new soon-to-be-active tab, respectively.</td>
458
458
</tr>
459
459
<tr>
460
-
<td>hidden.bs.tab</td>
460
+
<td><code>hidden.bs.tab</code></td>
461
461
<td>This event fires after a new tab is shown (and thus the previous active tab is hidden). Use <code>event.target</code> and <code>event.relatedTarget</code> to target the previous active tab and the new active tab, respectively.</td>
Copy file name to clipboardexpand all lines: site/content/docs/5.0/components/modal.md
+17-17
Original file line number
Diff line number
Diff line change
@@ -699,19 +699,19 @@ Another override is the option to pop up a modal that covers the user viewport,
699
699
</tr>
700
700
<tr>
701
701
<td><code>.modal-fullscreen-sm-down</code></td>
702
-
<td><code>Below 576px</code></td>
702
+
<td>Below <code>576px</code></td>
703
703
</tr>
704
704
<tr>
705
705
<td><code>.modal-fullscreen-md-down</code></td>
706
-
<td><code>Below 768px</code></td>
706
+
<td>Below <code>768px</code></td>
707
707
</tr>
708
708
<tr>
709
709
<td><code>.modal-fullscreen-lg-down</code></td>
710
-
<td><code>Below 992px</code></td>
710
+
<td>Below <code>992px</code></td>
711
711
</tr>
712
712
<tr>
713
713
<td><code>.modal-fullscreen-xl-down</code></td>
714
-
<td><code>Below 1200px</code></td>
714
+
<td>Below <code>1200px</code></td>
715
715
</tr>
716
716
</tbody>
717
717
</table>
@@ -878,27 +878,27 @@ Options can be passed via data attributes or JavaScript. For data attributes, ap
878
878
</thead>
879
879
<tbody>
880
880
<tr>
881
-
<td>backdrop</td>
881
+
<td><code>backdrop</code></td>
882
882
<td>boolean or the string <code>'static'</code></td>
883
-
<td>true</td>
883
+
<td><code>true</code></td>
884
884
<td>Includes a modal-backdrop element. Alternatively, specify <code>static</code> for a backdrop which doesn't close the modal on click.</td>
885
885
</tr>
886
886
<tr>
887
-
<td>keyboard</td>
887
+
<td><code>keyboard</code></td>
888
888
<td>boolean</td>
889
-
<td>true</td>
889
+
<td><code>true</code></td>
890
890
<td>Closes the modal when escape key is pressed</td>
891
891
</tr>
892
892
<tr>
893
-
<td>focus</td>
893
+
<td><code>focus</code></td>
894
894
<td>boolean</td>
895
-
<td>true</td>
895
+
<td><code>true</code></td>
896
896
<td>Puts the focus on the modal when initialized.</td>
897
897
</tr>
898
898
<tr>
899
-
<td>show</td>
899
+
<td><code>show</code></td>
900
900
<td>boolean</td>
901
-
<td>true</td>
901
+
<td><code>true</code></td>
902
902
<td>Shows the modal when initialized.</td>
903
903
</tr>
904
904
</tbody>
@@ -972,23 +972,23 @@ Bootstrap's modal class exposes a few events for hooking into modal functionalit
972
972
</thead>
973
973
<tbody>
974
974
<tr>
975
-
<td>show.bs.modal</td>
975
+
<td><code>show.bs.modal</code></td>
976
976
<td>This event fires immediately when the <code>show</code> instance method is called. If caused by a click, the clicked element is available as the <code>relatedTarget</code> property of the event.</td>
977
977
</tr>
978
978
<tr>
979
-
<td>shown.bs.modal</td>
979
+
<td><code>shown.bs.modal</code></td>
980
980
<td>This event is fired when the modal has been made visible to the user (will wait for CSS transitions to complete). If caused by a click, the clicked element is available as the <code>relatedTarget</code> property of the event.</td>
981
981
</tr>
982
982
<tr>
983
-
<td>hide.bs.modal</td>
983
+
<td><code>hide.bs.modal</code></td>
984
984
<td>This event is fired immediately when the <code>hide</code> instance method has been called.</td>
985
985
</tr>
986
986
<tr>
987
-
<td>hidden.bs.modal</td>
987
+
<td><code>hidden.bs.modal</code></td>
988
988
<td>This event is fired when the modal has finished being hidden from the user (will wait for CSS transitions to complete).</td>
989
989
</tr>
990
990
<tr>
991
-
<td>hidePrevented.bs.modal</td>
991
+
<td><code>hidePrevented.bs.modal</code></td>
992
992
<td>This event is fired when the modal is shown, its backdrop is <code>static</code> and a click outside the modal or an escape key press is performed with the keyboard option or <code>data-keyboard</code> set to <code>false</code>.</td>
Copy file name to clipboardexpand all lines: site/content/docs/5.0/components/navs.md
+4-4
Original file line number
Diff line number
Diff line change
@@ -645,19 +645,19 @@ If no tab was already active, then the `hide.bs.tab` and `hidden.bs.tab` events
645
645
</thead>
646
646
<tbody>
647
647
<tr>
648
-
<td>show.bs.tab</td>
648
+
<td><code>show.bs.tab</code></td>
649
649
<td>This event fires on tab show, but before the new tab has been shown. Use <code>event.target</code> and <code>event.relatedTarget</code> to target the active tab and the previous active tab (if available) respectively.</td>
650
650
</tr>
651
651
<tr>
652
-
<td>shown.bs.tab</td>
652
+
<td><code>shown.bs.tab</code></td>
653
653
<td>This event fires on tab show after a tab has been shown. Use <code>event.target</code> and <code>event.relatedTarget</code> to target the active tab and the previous active tab (if available) respectively.</td>
654
654
</tr>
655
655
<tr>
656
-
<td>hide.bs.tab</td>
656
+
<td><code>hide.bs.tab</code></td>
657
657
<td>This event fires when a new tab is to be shown (and thus the previous active tab is to be hidden). Use <code>event.target</code> and <code>event.relatedTarget</code> to target the current active tab and the new soon-to-be-active tab, respectively.</td>
658
658
</tr>
659
659
<tr>
660
-
<td>hidden.bs.tab</td>
660
+
<td><code>hidden.bs.tab</code></td>
661
661
<td>This event fires after a new tab is shown (and thus the previous active tab is hidden). Use <code>event.target</code> and <code>event.relatedTarget</code> to target the previous active tab and the new active tab, respectively.</td>
0 commit comments