bootstrap 5.0.0.alpha2 → 5.0.0

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 (96) hide show
  1. checksums.yaml +4 -4
  2. data/.travis.yml +1 -0
  3. data/README.md +7 -4
  4. data/assets/javascripts/bootstrap-global-this-define.js +6 -0
  5. data/assets/javascripts/bootstrap-global-this-undefine.js +2 -0
  6. data/assets/javascripts/bootstrap-sprockets.js +10 -7
  7. data/assets/javascripts/bootstrap.js +2554 -2564
  8. data/assets/javascripts/bootstrap.min.js +3 -3
  9. data/assets/javascripts/bootstrap/alert.js +119 -115
  10. data/assets/javascripts/bootstrap/base-component.js +63 -0
  11. data/assets/javascripts/bootstrap/button.js +67 -69
  12. data/assets/javascripts/bootstrap/carousel.js +340 -331
  13. data/assets/javascripts/bootstrap/collapse.js +214 -209
  14. data/assets/javascripts/bootstrap/dom/data.js +35 -48
  15. data/assets/javascripts/bootstrap/dom/event-handler.js +105 -98
  16. data/assets/javascripts/bootstrap/dom/manipulator.js +26 -34
  17. data/assets/javascripts/bootstrap/dom/selector-engine.js +28 -41
  18. data/assets/javascripts/bootstrap/dropdown.js +392 -325
  19. data/assets/javascripts/bootstrap/modal.js +492 -434
  20. data/assets/javascripts/bootstrap/offcanvas.js +671 -0
  21. data/assets/javascripts/bootstrap/popover.js +114 -132
  22. data/assets/javascripts/bootstrap/scrollspy.js +172 -180
  23. data/assets/javascripts/bootstrap/tab.js +168 -144
  24. data/assets/javascripts/bootstrap/toast.js +141 -150
  25. data/assets/javascripts/bootstrap/tooltip.js +466 -452
  26. data/assets/stylesheets/_bootstrap-grid.scss +9 -9
  27. data/assets/stylesheets/_bootstrap-reboot.scss +3 -3
  28. data/assets/stylesheets/_bootstrap.scss +5 -3
  29. data/assets/stylesheets/bootstrap/_accordion.scss +118 -0
  30. data/assets/stylesheets/bootstrap/_alert.scss +10 -3
  31. data/assets/stylesheets/bootstrap/_breadcrumb.scss +2 -4
  32. data/assets/stylesheets/bootstrap/_button-group.scss +5 -7
  33. data/assets/stylesheets/bootstrap/_buttons.scss +2 -15
  34. data/assets/stylesheets/bootstrap/_card.scss +2 -29
  35. data/assets/stylesheets/bootstrap/_carousel.scss +35 -18
  36. data/assets/stylesheets/bootstrap/_close.scss +2 -3
  37. data/assets/stylesheets/bootstrap/_dropdown.scss +33 -29
  38. data/assets/stylesheets/bootstrap/_forms.scss +1 -1
  39. data/assets/stylesheets/bootstrap/_functions.scss +11 -12
  40. data/assets/stylesheets/bootstrap/_list-group.scss +23 -6
  41. data/assets/stylesheets/bootstrap/_mixins.scss +1 -0
  42. data/assets/stylesheets/bootstrap/_modal.scss +2 -9
  43. data/assets/stylesheets/bootstrap/_nav.scss +12 -0
  44. data/assets/stylesheets/bootstrap/_navbar.scss +15 -2
  45. data/assets/stylesheets/bootstrap/_offcanvas.scss +77 -0
  46. data/assets/stylesheets/bootstrap/_pagination.scss +3 -3
  47. data/assets/stylesheets/bootstrap/_popover.scss +10 -22
  48. data/assets/stylesheets/bootstrap/_progress.scss +4 -1
  49. data/assets/stylesheets/bootstrap/_reboot.scss +48 -44
  50. data/assets/stylesheets/bootstrap/_root.scss +5 -5
  51. data/assets/stylesheets/bootstrap/_spinners.scss +18 -5
  52. data/assets/stylesheets/bootstrap/_tables.scss +15 -16
  53. data/assets/stylesheets/bootstrap/_toasts.scss +15 -12
  54. data/assets/stylesheets/bootstrap/_tooltip.scss +12 -12
  55. data/assets/stylesheets/bootstrap/_transitions.scss +2 -0
  56. data/assets/stylesheets/bootstrap/_utilities.scss +133 -70
  57. data/assets/stylesheets/bootstrap/_variables.scss +363 -207
  58. data/assets/stylesheets/bootstrap/bootstrap-utilities.scss +5 -5
  59. data/assets/stylesheets/bootstrap/forms/_floating-labels.scss +61 -0
  60. data/assets/stylesheets/bootstrap/forms/_form-check.scss +21 -11
  61. data/assets/stylesheets/bootstrap/forms/_form-control.scss +112 -9
  62. data/assets/stylesheets/bootstrap/forms/_form-range.scss +1 -46
  63. data/assets/stylesheets/bootstrap/forms/_form-select.scss +1 -16
  64. data/assets/stylesheets/bootstrap/forms/_input-group.scss +21 -40
  65. data/assets/stylesheets/bootstrap/forms/_validation.scss +1 -1
  66. data/assets/stylesheets/bootstrap/helpers/_colored-links.scss +2 -2
  67. data/assets/stylesheets/bootstrap/helpers/_ratio.scss +2 -2
  68. data/assets/stylesheets/bootstrap/helpers/_visually-hidden.scss +1 -1
  69. data/assets/stylesheets/bootstrap/mixins/_alert.scss +3 -1
  70. data/assets/stylesheets/bootstrap/mixins/_border-radius.scss +8 -6
  71. data/assets/stylesheets/bootstrap/mixins/_buttons.scss +10 -5
  72. data/assets/stylesheets/bootstrap/mixins/_caret.scss +8 -6
  73. data/assets/stylesheets/bootstrap/mixins/_color-scheme.scss +7 -0
  74. data/assets/stylesheets/bootstrap/mixins/_container.scss +2 -4
  75. data/assets/stylesheets/bootstrap/mixins/_forms.scss +26 -22
  76. data/assets/stylesheets/bootstrap/mixins/_gradients.scss +5 -1
  77. data/assets/stylesheets/bootstrap/mixins/_grid.scss +18 -13
  78. data/assets/stylesheets/bootstrap/mixins/_list-group.scss +3 -1
  79. data/assets/stylesheets/bootstrap/mixins/_pagination.scss +5 -3
  80. data/assets/stylesheets/bootstrap/mixins/_table-variants.scss +7 -7
  81. data/assets/stylesheets/bootstrap/mixins/_utilities.scss +19 -0
  82. data/assets/stylesheets/bootstrap/mixins/_visually-hidden.scss +3 -2
  83. data/assets/stylesheets/bootstrap/utilities/_api.scss +1 -1
  84. data/bootstrap.gemspec +1 -3
  85. data/lib/bootstrap/version.rb +2 -2
  86. data/tasks/updater/js.rb +20 -5
  87. data/tasks/updater/network.rb +7 -1
  88. data/test/dummy_rails/app/assets/javascripts/application.js +4 -3
  89. data/test/dummy_rails/app/views/layouts/application.html.erb +3 -1
  90. data/test/dummy_rails/app/views/pages/root.html +89 -0
  91. data/test/dummy_rails/config/application.rb +0 -3
  92. data/test/gemfiles/rails_6_1.gemfile +7 -0
  93. metadata +20 -40
  94. data/assets/javascripts/bootstrap/dom/polyfill.js +0 -110
  95. data/assets/stylesheets/bootstrap/forms/_form-file.scss +0 -91
  96. data/test/dummy_rails/app/views/pages/root.html.slim +0 -58
@@ -1,29 +1,31 @@
1
1
  .toast {
2
- max-width: $toast-max-width;
2
+ width: $toast-max-width;
3
+ max-width: 100%;
3
4
  @include font-size($toast-font-size);
4
5
  color: $toast-color;
6
+ pointer-events: auto;
5
7
  background-color: $toast-background-color;
6
8
  background-clip: padding-box;
7
9
  border: $toast-border-width solid $toast-border-color;
8
10
  box-shadow: $toast-box-shadow;
9
- opacity: 0;
10
11
  @include border-radius($toast-border-radius);
11
12
 
12
- &:not(:last-child) {
13
- margin-bottom: $toast-padding-x;
13
+ &:not(.showing):not(.show) {
14
+ opacity: 0;
14
15
  }
15
16
 
16
- &.showing {
17
- opacity: 1;
17
+ &.hide {
18
+ display: none;
18
19
  }
20
+ }
19
21
 
20
- &.show {
21
- display: block;
22
- opacity: 1;
23
- }
22
+ .toast-container {
23
+ width: max-content;
24
+ max-width: 100%;
25
+ pointer-events: none;
24
26
 
25
- &.hide {
26
- display: none;
27
+ > :not(:last-child) {
28
+ margin-bottom: $toast-spacing;
27
29
  }
28
30
  }
29
31
 
@@ -45,4 +47,5 @@
45
47
 
46
48
  .toast-body {
47
49
  padding: $toast-padding-x; // apply to both vertical and horizontal
50
+ word-wrap: break-word;
48
51
  }
@@ -36,14 +36,14 @@
36
36
  bottom: 0;
37
37
 
38
38
  &::before {
39
- top: 0;
39
+ top: -1px;
40
40
  border-width: $tooltip-arrow-height ($tooltip-arrow-width / 2) 0;
41
41
  border-top-color: $tooltip-arrow-color;
42
42
  }
43
43
  }
44
44
  }
45
45
 
46
- .bs-tooltip-right {
46
+ .bs-tooltip-end {
47
47
  padding: 0 $tooltip-arrow-height;
48
48
 
49
49
  .tooltip-arrow {
@@ -52,7 +52,7 @@
52
52
  height: $tooltip-arrow-width;
53
53
 
54
54
  &::before {
55
- right: 0;
55
+ right: -1px;
56
56
  border-width: ($tooltip-arrow-width / 2) $tooltip-arrow-height ($tooltip-arrow-width / 2) 0;
57
57
  border-right-color: $tooltip-arrow-color;
58
58
  }
@@ -66,14 +66,14 @@
66
66
  top: 0;
67
67
 
68
68
  &::before {
69
- bottom: 0;
69
+ bottom: -1px;
70
70
  border-width: 0 ($tooltip-arrow-width / 2) $tooltip-arrow-height;
71
71
  border-bottom-color: $tooltip-arrow-color;
72
72
  }
73
73
  }
74
74
  }
75
75
 
76
- .bs-tooltip-left {
76
+ .bs-tooltip-start {
77
77
  padding: 0 $tooltip-arrow-height;
78
78
 
79
79
  .tooltip-arrow {
@@ -82,7 +82,7 @@
82
82
  height: $tooltip-arrow-width;
83
83
 
84
84
  &::before {
85
- left: 0;
85
+ left: -1px;
86
86
  border-width: ($tooltip-arrow-width / 2) 0 ($tooltip-arrow-width / 2) $tooltip-arrow-height;
87
87
  border-left-color: $tooltip-arrow-color;
88
88
  }
@@ -90,17 +90,17 @@
90
90
  }
91
91
 
92
92
  .bs-tooltip-auto {
93
- &[x-placement^="top"] {
93
+ &[data-popper-placement^="top"] {
94
94
  @extend .bs-tooltip-top;
95
95
  }
96
- &[x-placement^="right"] {
97
- @extend .bs-tooltip-right;
96
+ &[data-popper-placement^="right"] {
97
+ @extend .bs-tooltip-end;
98
98
  }
99
- &[x-placement^="bottom"] {
99
+ &[data-popper-placement^="bottom"] {
100
100
  @extend .bs-tooltip-bottom;
101
101
  }
102
- &[x-placement^="left"] {
103
- @extend .bs-tooltip-left;
102
+ &[data-popper-placement^="left"] {
103
+ @extend .bs-tooltip-start;
104
104
  }
105
105
  }
106
106
 
@@ -6,6 +6,7 @@
6
6
  }
7
7
  }
8
8
 
9
+ // scss-docs-start collapse-classes
9
10
  .collapse {
10
11
  &:not(.show) {
11
12
  display: none;
@@ -17,3 +18,4 @@
17
18
  overflow: hidden;
18
19
  @include transition($transition-collapse);
19
20
  }
21
+ // scss-docs-end collapse-classes
@@ -1,30 +1,45 @@
1
+ // stylelint-disable indentation
2
+
1
3
  // Utilities
2
4
 
3
5
  $utilities: () !default;
4
6
  // stylelint-disable-next-line scss/dollar-variable-default
5
7
  $utilities: map-merge(
6
8
  (
9
+ // scss-docs-start utils-vertical-align
7
10
  "align": (
8
11
  property: vertical-align,
9
12
  class: align,
10
13
  values: baseline top middle bottom text-bottom text-top
11
14
  ),
15
+ // scss-docs-end utils-vertical-align
16
+ // scss-docs-start utils-float
12
17
  "float": (
13
18
  responsive: true,
14
19
  property: float,
15
- values: left right none
20
+ values: (
21
+ start: left,
22
+ end: right,
23
+ none: none,
24
+ )
16
25
  ),
26
+ // scss-docs-end utils-float
27
+ // scss-docs-start utils-overflow
17
28
  "overflow": (
18
29
  property: overflow,
19
- values: auto hidden,
30
+ values: auto hidden visible scroll,
20
31
  ),
32
+ // scss-docs-end utils-overflow
33
+ // scss-docs-start utils-display
21
34
  "display": (
22
35
  responsive: true,
23
36
  print: true,
24
37
  property: display,
25
38
  class: d,
26
- values: inline inline-block block table table-row table-cell flex inline-flex none
39
+ values: inline inline-block block grid table table-row table-cell flex inline-flex none
27
40
  ),
41
+ // scss-docs-end utils-display
42
+ // scss-docs-start utils-shadow
28
43
  "shadow": (
29
44
  property: box-shadow,
30
45
  class: shadow,
@@ -35,6 +50,8 @@ $utilities: map-merge(
35
50
  none: none,
36
51
  )
37
52
  ),
53
+ // scss-docs-end utils-shadow
54
+ // scss-docs-start utils-position
38
55
  "position": (
39
56
  property: position,
40
57
  values: static relative absolute fixed sticky
@@ -47,21 +64,27 @@ $utilities: map-merge(
47
64
  property: bottom,
48
65
  values: $position-values
49
66
  ),
50
- "left": (
67
+ "start": (
51
68
  property: left,
69
+ class: start,
52
70
  values: $position-values
53
71
  ),
54
- "right": (
72
+ "end": (
55
73
  property: right,
74
+ class: end,
56
75
  values: $position-values
57
76
  ),
58
77
  "translate-middle": (
59
78
  property: transform,
60
79
  class: translate-middle,
61
80
  values: (
62
- null: (translateX(-50%) translateY(-50%))
81
+ null: translate(-50%, -50%),
82
+ x: translateX(-50%),
83
+ y: translateY(-50%),
63
84
  )
64
85
  ),
86
+ // scss-docs-end utils-position
87
+ // scss-docs-start utils-borders
65
88
  "border": (
66
89
  property: border,
67
90
  values: (
@@ -76,8 +99,9 @@ $utilities: map-merge(
76
99
  0: 0,
77
100
  )
78
101
  ),
79
- "border-right": (
102
+ "border-end": (
80
103
  property: border-right,
104
+ class: border-end,
81
105
  values: (
82
106
  null: $border-width solid $border-color,
83
107
  0: 0,
@@ -90,8 +114,9 @@ $utilities: map-merge(
90
114
  0: 0,
91
115
  )
92
116
  ),
93
- "border-left": (
117
+ "border-start": (
94
118
  property: border-left,
119
+ class: border-start,
95
120
  values: (
96
121
  null: $border-width solid $border-color,
97
122
  0: 0,
@@ -107,7 +132,9 @@ $utilities: map-merge(
107
132
  class: border,
108
133
  values: $border-widths
109
134
  ),
135
+ // scss-docs-end utils-borders
110
136
  // Sizing utilities
137
+ // scss-docs-start utils-sizing
111
138
  "width": (
112
139
  property: width,
113
140
  class: w,
@@ -160,7 +187,9 @@ $utilities: map-merge(
160
187
  class: min-vh,
161
188
  values: (100: 100vh)
162
189
  ),
190
+ // scss-docs-end utils-sizing
163
191
  // Flex utilities
192
+ // scss-docs-start utils-flex
164
193
  "flex": (
165
194
  responsive: true,
166
195
  property: flex,
@@ -196,6 +225,12 @@ $utilities: map-merge(
196
225
  class: flex,
197
226
  values: wrap nowrap wrap-reverse
198
227
  ),
228
+ "gap": (
229
+ responsive: true,
230
+ property: gap,
231
+ class: gap,
232
+ values: $spacers
233
+ ),
199
234
  "justify-content": (
200
235
  responsive: true,
201
236
  property: justify-content,
@@ -257,7 +292,9 @@ $utilities: map-merge(
257
292
  last: 6,
258
293
  ),
259
294
  ),
295
+ // scss-docs-end utils-flex
260
296
  // Margin utilities
297
+ // scss-docs-start utils-spacing
261
298
  "margin": (
262
299
  responsive: true,
263
300
  property: margin,
@@ -282,10 +319,10 @@ $utilities: map-merge(
282
319
  class: mt,
283
320
  values: map-merge($spacers, (auto: auto))
284
321
  ),
285
- "margin-right": (
322
+ "margin-end": (
286
323
  responsive: true,
287
324
  property: margin-right,
288
- class: mr,
325
+ class: me,
289
326
  values: map-merge($spacers, (auto: auto))
290
327
  ),
291
328
  "margin-bottom": (
@@ -294,10 +331,10 @@ $utilities: map-merge(
294
331
  class: mb,
295
332
  values: map-merge($spacers, (auto: auto))
296
333
  ),
297
- "margin-left": (
334
+ "margin-start": (
298
335
  responsive: true,
299
336
  property: margin-left,
300
- class: ml,
337
+ class: ms,
301
338
  values: map-merge($spacers, (auto: auto))
302
339
  ),
303
340
  // Negative margin utilities
@@ -325,10 +362,10 @@ $utilities: map-merge(
325
362
  class: mt,
326
363
  values: $negative-spacers
327
364
  ),
328
- "negative-margin-right": (
365
+ "negative-margin-end": (
329
366
  responsive: true,
330
367
  property: margin-right,
331
- class: mr,
368
+ class: me,
332
369
  values: $negative-spacers
333
370
  ),
334
371
  "negative-margin-bottom": (
@@ -337,10 +374,10 @@ $utilities: map-merge(
337
374
  class: mb,
338
375
  values: $negative-spacers
339
376
  ),
340
- "negative-margin-left": (
377
+ "negative-margin-start": (
341
378
  responsive: true,
342
379
  property: margin-left,
343
- class: ml,
380
+ class: ms,
344
381
  values: $negative-spacers
345
382
  ),
346
383
  // Padding utilities
@@ -368,10 +405,10 @@ $utilities: map-merge(
368
405
  class: pt,
369
406
  values: $spacers
370
407
  ),
371
- "padding-right": (
408
+ "padding-end": (
372
409
  responsive: true,
373
410
  property: padding-right,
374
- class: pr,
411
+ class: pe,
375
412
  values: $spacers
376
413
  ),
377
414
  "padding-bottom": (
@@ -380,15 +417,34 @@ $utilities: map-merge(
380
417
  class: pb,
381
418
  values: $spacers
382
419
  ),
383
- "padding-left": (
420
+ "padding-start": (
384
421
  responsive: true,
385
422
  property: padding-left,
386
- class: pl,
423
+ class: ps,
387
424
  values: $spacers
388
425
  ),
426
+ // scss-docs-end utils-spacing
389
427
  // Text
428
+ // scss-docs-start utils-text
429
+ "font-family": (
430
+ property: font-family,
431
+ class: font,
432
+ values: (monospace: var(--#{$variable-prefix}font-monospace))
433
+ ),
434
+ "font-size": (
435
+ rfs: true,
436
+ property: font-size,
437
+ class: fs,
438
+ values: $font-sizes
439
+ ),
440
+ "font-style": (
441
+ property: font-style,
442
+ class: fst,
443
+ values: italic normal
444
+ ),
390
445
  "font-weight": (
391
446
  property: font-weight,
447
+ class: fw,
392
448
  values: (
393
449
  light: $font-weight-light,
394
450
  lighter: $font-weight-lighter,
@@ -397,17 +453,51 @@ $utilities: map-merge(
397
453
  bolder: $font-weight-bolder
398
454
  )
399
455
  ),
456
+ "line-height": (
457
+ property: line-height,
458
+ class: lh,
459
+ values: (
460
+ 1: 1,
461
+ sm: $line-height-sm,
462
+ base: $line-height-base,
463
+ lg: $line-height-lg,
464
+ )
465
+ ),
466
+ "text-align": (
467
+ responsive: true,
468
+ property: text-align,
469
+ class: text,
470
+ values: (
471
+ start: left,
472
+ end: right,
473
+ center: center,
474
+ )
475
+ ),
476
+ "text-decoration": (
477
+ property: text-decoration,
478
+ values: none underline line-through
479
+ ),
400
480
  "text-transform": (
401
481
  property: text-transform,
402
482
  class: text,
403
483
  values: lowercase uppercase capitalize
404
484
  ),
405
- "text-align": (
406
- responsive: true,
407
- property: text-align,
485
+ "white-space": (
486
+ property: white-space,
408
487
  class: text,
409
- values: left right center
488
+ values: (
489
+ wrap: normal,
490
+ nowrap: nowrap,
491
+ )
410
492
  ),
493
+ "word-wrap": (
494
+ property: word-wrap word-break,
495
+ class: text,
496
+ values: (break: break-word),
497
+ rtl: false
498
+ ),
499
+ // scss-docs-end utils-text
500
+ // scss-docs-start utils-color
411
501
  "color": (
412
502
  property: color,
413
503
  class: text,
@@ -423,16 +513,8 @@ $utilities: map-merge(
423
513
  )
424
514
  )
425
515
  ),
426
- "line-height": (
427
- property: line-height,
428
- class: lh,
429
- values: (
430
- 1: 1,
431
- sm: $line-height-sm,
432
- base: $line-height-base,
433
- lg: $line-height-lg,
434
- )
435
- ),
516
+ // scss-docs-end utils-color
517
+ // scss-docs-start utils-bg-color
436
518
  "background-color": (
437
519
  property: background-color,
438
520
  class: bg,
@@ -445,38 +527,13 @@ $utilities: map-merge(
445
527
  )
446
528
  )
447
529
  ),
530
+ // scss-docs-end utils-bg-color
448
531
  "gradient": (
449
532
  property: background-image,
450
533
  class: bg,
451
- values: (gradient: var(--bs-gradient))
452
- ),
453
- "white-space": (
454
- property: white-space,
455
- class: text,
456
- values: (
457
- wrap: normal,
458
- nowrap: nowrap,
459
- )
460
- ),
461
- "text-decoration": (
462
- property: text-decoration,
463
- values: none underline line-through
464
- ),
465
- "font-style": (
466
- property: font-style,
467
- class: font,
468
- values: italic normal
469
- ),
470
- "word-wrap": (
471
- property: word-wrap word-break,
472
- class: text,
473
- values: (break: break-word)
474
- ),
475
- "font-family": (
476
- property: font-family,
477
- class: font,
478
- values: (monospace: var(--bs-font-monospace))
534
+ values: (gradient: var(--#{$variable-prefix}gradient))
479
535
  ),
536
+ // scss-docs-start utils-interaction
480
537
  "user-select": (
481
538
  property: user-select,
482
539
  values: all auto none
@@ -486,16 +543,19 @@ $utilities: map-merge(
486
543
  class: pe,
487
544
  values: none auto,
488
545
  ),
546
+ // scss-docs-end utils-interaction
547
+ // scss-docs-start utils-border-radius
489
548
  "rounded": (
490
549
  property: border-radius,
491
550
  class: rounded,
492
551
  values: (
493
552
  null: $border-radius,
494
- sm: $border-radius-sm,
495
- lg: $border-radius-lg,
496
- circle: 50%,
497
- pill: $rounded-pill,
498
553
  0: 0,
554
+ 1: $border-radius-sm,
555
+ 2: $border-radius,
556
+ 3: $border-radius-lg,
557
+ circle: 50%,
558
+ pill: $border-radius-pill
499
559
  )
500
560
  ),
501
561
  "rounded-top": (
@@ -503,9 +563,9 @@ $utilities: map-merge(
503
563
  class: rounded-top,
504
564
  values: (null: $border-radius)
505
565
  ),
506
- "rounded-right": (
566
+ "rounded-end": (
507
567
  property: border-top-right-radius border-bottom-right-radius,
508
- class: rounded-right,
568
+ class: rounded-end,
509
569
  values: (null: $border-radius)
510
570
  ),
511
571
  "rounded-bottom": (
@@ -513,11 +573,13 @@ $utilities: map-merge(
513
573
  class: rounded-bottom,
514
574
  values: (null: $border-radius)
515
575
  ),
516
- "rounded-left": (
576
+ "rounded-start": (
517
577
  property: border-bottom-left-radius border-top-left-radius,
518
- class: rounded-left,
578
+ class: rounded-start,
519
579
  values: (null: $border-radius)
520
580
  ),
581
+ // scss-docs-end utils-border-radius
582
+ // scss-docs-start utils-visibility
521
583
  "visibility": (
522
584
  property: visibility,
523
585
  class: null,
@@ -526,6 +588,7 @@ $utilities: map-merge(
526
588
  invisible: hidden,
527
589
  )
528
590
  )
591
+ // scss-docs-end utils-visibility
529
592
  ),
530
593
  $utilities
531
594
  );