bootstrap 4.4.1 → 5.0.0.alpha2

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 (136) hide show
  1. checksums.yaml +4 -4
  2. data/.travis.yml +12 -2
  3. data/README.md +1 -1
  4. data/assets/javascripts/bootstrap-sprockets.js +12 -8
  5. data/assets/javascripts/bootstrap.js +2094 -1562
  6. data/assets/javascripts/bootstrap.min.js +4 -4
  7. data/assets/javascripts/bootstrap/alert.js +145 -83
  8. data/assets/javascripts/bootstrap/button.js +66 -152
  9. data/assets/javascripts/bootstrap/carousel.js +307 -241
  10. data/assets/javascripts/bootstrap/collapse.js +287 -183
  11. data/assets/javascripts/bootstrap/dom/data.js +81 -0
  12. data/assets/javascripts/bootstrap/dom/event-handler.js +315 -0
  13. data/assets/javascripts/bootstrap/dom/manipulator.js +96 -0
  14. data/assets/javascripts/bootstrap/dom/polyfill.js +110 -0
  15. data/assets/javascripts/bootstrap/dom/selector-engine.js +98 -0
  16. data/assets/javascripts/bootstrap/dropdown.js +255 -261
  17. data/assets/javascripts/bootstrap/modal.js +364 -270
  18. data/assets/javascripts/bootstrap/popover.js +72 -113
  19. data/assets/javascripts/bootstrap/scrollspy.js +162 -147
  20. data/assets/javascripts/bootstrap/tab.js +176 -108
  21. data/assets/javascripts/bootstrap/toast.js +179 -139
  22. data/assets/javascripts/bootstrap/tooltip.js +369 -259
  23. data/assets/stylesheets/_bootstrap-grid.scss +54 -18
  24. data/assets/stylesheets/_bootstrap-reboot.scss +7 -4
  25. data/assets/stylesheets/_bootstrap.scss +17 -11
  26. data/assets/stylesheets/bootstrap/_alert.scss +6 -7
  27. data/assets/stylesheets/bootstrap/_badge.scss +2 -27
  28. data/assets/stylesheets/bootstrap/_breadcrumb.scss +5 -17
  29. data/assets/stylesheets/bootstrap/_button-group.scss +16 -38
  30. data/assets/stylesheets/bootstrap/_buttons.scss +25 -40
  31. data/assets/stylesheets/bootstrap/_card.scss +43 -79
  32. data/assets/stylesheets/bootstrap/_carousel.scss +30 -15
  33. data/assets/stylesheets/bootstrap/_close.scss +31 -31
  34. data/assets/stylesheets/bootstrap/_containers.scss +41 -0
  35. data/assets/stylesheets/bootstrap/_dropdown.scss +54 -9
  36. data/assets/stylesheets/bootstrap/_forms.scss +9 -338
  37. data/assets/stylesheets/bootstrap/_functions.scss +97 -25
  38. data/assets/stylesheets/bootstrap/_grid.scss +3 -50
  39. data/assets/stylesheets/bootstrap/_helpers.scss +7 -0
  40. data/assets/stylesheets/bootstrap/_list-group.scss +16 -17
  41. data/assets/stylesheets/bootstrap/_mixins.scss +7 -13
  42. data/assets/stylesheets/bootstrap/_modal.scss +41 -45
  43. data/assets/stylesheets/bootstrap/_nav.scss +16 -9
  44. data/assets/stylesheets/bootstrap/_navbar.scss +43 -74
  45. data/assets/stylesheets/bootstrap/_pagination.scss +11 -20
  46. data/assets/stylesheets/bootstrap/_popover.scss +5 -5
  47. data/assets/stylesheets/bootstrap/_progress.scss +2 -3
  48. data/assets/stylesheets/bootstrap/_reboot.scss +310 -175
  49. data/assets/stylesheets/bootstrap/_root.scss +5 -9
  50. data/assets/stylesheets/bootstrap/_spinners.scss +5 -4
  51. data/assets/stylesheets/bootstrap/_tables.scss +80 -114
  52. data/assets/stylesheets/bootstrap/_toasts.scss +6 -2
  53. data/assets/stylesheets/bootstrap/_tooltip.scss +5 -5
  54. data/assets/stylesheets/bootstrap/_transitions.scss +0 -1
  55. data/assets/stylesheets/bootstrap/_type.scss +38 -59
  56. data/assets/stylesheets/bootstrap/_utilities.scss +531 -17
  57. data/assets/stylesheets/bootstrap/_variables.scss +609 -444
  58. data/assets/stylesheets/bootstrap/bootstrap-utilities.scss +18 -0
  59. data/assets/stylesheets/bootstrap/forms/_form-check.scss +142 -0
  60. data/assets/stylesheets/bootstrap/forms/_form-control.scss +116 -0
  61. data/assets/stylesheets/bootstrap/forms/_form-file.scss +91 -0
  62. data/assets/stylesheets/bootstrap/forms/_form-range.scss +136 -0
  63. data/assets/stylesheets/bootstrap/forms/_form-select.scss +82 -0
  64. data/assets/stylesheets/bootstrap/forms/_form-text.scss +11 -0
  65. data/assets/stylesheets/bootstrap/forms/_input-group.scss +140 -0
  66. data/assets/stylesheets/bootstrap/forms/_labels.scss +36 -0
  67. data/assets/stylesheets/bootstrap/forms/_validation.scss +12 -0
  68. data/assets/stylesheets/bootstrap/{utilities → helpers}/_clearfix.scss +0 -0
  69. data/assets/stylesheets/bootstrap/helpers/_colored-links.scss +12 -0
  70. data/assets/stylesheets/bootstrap/helpers/_position.scss +30 -0
  71. data/assets/stylesheets/bootstrap/helpers/_ratio.scss +26 -0
  72. data/assets/stylesheets/bootstrap/helpers/_stretched-link.scss +15 -0
  73. data/assets/stylesheets/bootstrap/helpers/_text-truncation.scss +7 -0
  74. data/assets/stylesheets/bootstrap/helpers/_visually-hidden.scss +8 -0
  75. data/assets/stylesheets/bootstrap/mixins/_alert.scss +0 -4
  76. data/assets/stylesheets/bootstrap/mixins/_border-radius.scss +35 -22
  77. data/assets/stylesheets/bootstrap/mixins/_box-shadow.scss +7 -9
  78. data/assets/stylesheets/bootstrap/mixins/_breakpoints.scss +14 -10
  79. data/assets/stylesheets/bootstrap/mixins/_buttons.scss +69 -51
  80. data/assets/stylesheets/bootstrap/mixins/_caret.scss +4 -4
  81. data/assets/stylesheets/bootstrap/mixins/_clearfix.scss +2 -0
  82. data/assets/stylesheets/bootstrap/mixins/_container.scss +11 -0
  83. data/assets/stylesheets/bootstrap/mixins/_forms.scss +22 -66
  84. data/assets/stylesheets/bootstrap/mixins/_gradients.scss +9 -11
  85. data/assets/stylesheets/bootstrap/mixins/_grid.scss +84 -33
  86. data/assets/stylesheets/bootstrap/mixins/_image.scss +1 -21
  87. data/assets/stylesheets/bootstrap/mixins/_list-group.scss +2 -1
  88. data/assets/stylesheets/bootstrap/mixins/_lists.scss +1 -1
  89. data/assets/stylesheets/bootstrap/mixins/_pagination.scss +15 -8
  90. data/assets/stylesheets/bootstrap/mixins/_reset-text.scss +2 -2
  91. data/assets/stylesheets/bootstrap/mixins/_table-variants.scss +21 -0
  92. data/assets/stylesheets/bootstrap/mixins/_transition.scss +18 -8
  93. data/assets/stylesheets/bootstrap/mixins/_utilities.scss +49 -0
  94. data/assets/stylesheets/bootstrap/mixins/_visually-hidden.scss +28 -0
  95. data/assets/stylesheets/bootstrap/utilities/_api.scss +47 -0
  96. data/assets/stylesheets/bootstrap/vendor/_rfs.scss +234 -126
  97. data/lib/bootstrap/version.rb +2 -2
  98. data/tasks/updater/js.rb +3 -3
  99. data/tasks/updater/network.rb +2 -2
  100. data/test/gemfiles/rails_6_0.gemfile +7 -0
  101. metadata +36 -41
  102. data/assets/javascripts/bootstrap/util.js +0 -188
  103. data/assets/stylesheets/bootstrap/_code.scss +0 -48
  104. data/assets/stylesheets/bootstrap/_custom-forms.scss +0 -521
  105. data/assets/stylesheets/bootstrap/_input-group.scss +0 -191
  106. data/assets/stylesheets/bootstrap/_jumbotron.scss +0 -17
  107. data/assets/stylesheets/bootstrap/_media.scss +0 -8
  108. data/assets/stylesheets/bootstrap/_print.scss +0 -141
  109. data/assets/stylesheets/bootstrap/mixins/_background-variant.scss +0 -22
  110. data/assets/stylesheets/bootstrap/mixins/_badge.scss +0 -17
  111. data/assets/stylesheets/bootstrap/mixins/_float.scss +0 -14
  112. data/assets/stylesheets/bootstrap/mixins/_grid-framework.scss +0 -71
  113. data/assets/stylesheets/bootstrap/mixins/_hover.scss +0 -37
  114. data/assets/stylesheets/bootstrap/mixins/_nav-divider.scss +0 -11
  115. data/assets/stylesheets/bootstrap/mixins/_screen-reader.scss +0 -34
  116. data/assets/stylesheets/bootstrap/mixins/_size.scss +0 -7
  117. data/assets/stylesheets/bootstrap/mixins/_table-row.scss +0 -39
  118. data/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss +0 -17
  119. data/assets/stylesheets/bootstrap/mixins/_text-hide.scss +0 -11
  120. data/assets/stylesheets/bootstrap/mixins/_visibility.scss +0 -8
  121. data/assets/stylesheets/bootstrap/utilities/_align.scss +0 -8
  122. data/assets/stylesheets/bootstrap/utilities/_background.scss +0 -19
  123. data/assets/stylesheets/bootstrap/utilities/_borders.scss +0 -75
  124. data/assets/stylesheets/bootstrap/utilities/_display.scss +0 -26
  125. data/assets/stylesheets/bootstrap/utilities/_embed.scss +0 -39
  126. data/assets/stylesheets/bootstrap/utilities/_flex.scss +0 -51
  127. data/assets/stylesheets/bootstrap/utilities/_float.scss +0 -11
  128. data/assets/stylesheets/bootstrap/utilities/_overflow.scss +0 -5
  129. data/assets/stylesheets/bootstrap/utilities/_position.scss +0 -32
  130. data/assets/stylesheets/bootstrap/utilities/_screenreaders.scss +0 -11
  131. data/assets/stylesheets/bootstrap/utilities/_shadows.scss +0 -6
  132. data/assets/stylesheets/bootstrap/utilities/_sizing.scss +0 -20
  133. data/assets/stylesheets/bootstrap/utilities/_spacing.scss +0 -73
  134. data/assets/stylesheets/bootstrap/utilities/_stretched-link.scss +0 -19
  135. data/assets/stylesheets/bootstrap/utilities/_text.scss +0 -72
  136. data/assets/stylesheets/bootstrap/utilities/_visibility.scss +0 -13
@@ -1,17 +1,531 @@
1
- @import "utilities/align";
2
- @import "utilities/background";
3
- @import "utilities/borders";
4
- @import "utilities/clearfix";
5
- @import "utilities/display";
6
- @import "utilities/embed";
7
- @import "utilities/flex";
8
- @import "utilities/float";
9
- @import "utilities/overflow";
10
- @import "utilities/position";
11
- @import "utilities/screenreaders";
12
- @import "utilities/shadows";
13
- @import "utilities/sizing";
14
- @import "utilities/stretched-link";
15
- @import "utilities/spacing";
16
- @import "utilities/text";
17
- @import "utilities/visibility";
1
+ // Utilities
2
+
3
+ $utilities: () !default;
4
+ // stylelint-disable-next-line scss/dollar-variable-default
5
+ $utilities: map-merge(
6
+ (
7
+ "align": (
8
+ property: vertical-align,
9
+ class: align,
10
+ values: baseline top middle bottom text-bottom text-top
11
+ ),
12
+ "float": (
13
+ responsive: true,
14
+ property: float,
15
+ values: left right none
16
+ ),
17
+ "overflow": (
18
+ property: overflow,
19
+ values: auto hidden,
20
+ ),
21
+ "display": (
22
+ responsive: true,
23
+ print: true,
24
+ property: display,
25
+ class: d,
26
+ values: inline inline-block block table table-row table-cell flex inline-flex none
27
+ ),
28
+ "shadow": (
29
+ property: box-shadow,
30
+ class: shadow,
31
+ values: (
32
+ null: $box-shadow,
33
+ sm: $box-shadow-sm,
34
+ lg: $box-shadow-lg,
35
+ none: none,
36
+ )
37
+ ),
38
+ "position": (
39
+ property: position,
40
+ values: static relative absolute fixed sticky
41
+ ),
42
+ "top": (
43
+ property: top,
44
+ values: $position-values
45
+ ),
46
+ "bottom": (
47
+ property: bottom,
48
+ values: $position-values
49
+ ),
50
+ "left": (
51
+ property: left,
52
+ values: $position-values
53
+ ),
54
+ "right": (
55
+ property: right,
56
+ values: $position-values
57
+ ),
58
+ "translate-middle": (
59
+ property: transform,
60
+ class: translate-middle,
61
+ values: (
62
+ null: (translateX(-50%) translateY(-50%))
63
+ )
64
+ ),
65
+ "border": (
66
+ property: border,
67
+ values: (
68
+ null: $border-width solid $border-color,
69
+ 0: 0,
70
+ )
71
+ ),
72
+ "border-top": (
73
+ property: border-top,
74
+ values: (
75
+ null: $border-width solid $border-color,
76
+ 0: 0,
77
+ )
78
+ ),
79
+ "border-right": (
80
+ property: border-right,
81
+ values: (
82
+ null: $border-width solid $border-color,
83
+ 0: 0,
84
+ )
85
+ ),
86
+ "border-bottom": (
87
+ property: border-bottom,
88
+ values: (
89
+ null: $border-width solid $border-color,
90
+ 0: 0,
91
+ )
92
+ ),
93
+ "border-left": (
94
+ property: border-left,
95
+ values: (
96
+ null: $border-width solid $border-color,
97
+ 0: 0,
98
+ )
99
+ ),
100
+ "border-color": (
101
+ property: border-color,
102
+ class: border,
103
+ values: map-merge($theme-colors, ("white": $white))
104
+ ),
105
+ "border-width": (
106
+ property: border-width,
107
+ class: border,
108
+ values: $border-widths
109
+ ),
110
+ // Sizing utilities
111
+ "width": (
112
+ property: width,
113
+ class: w,
114
+ values: (
115
+ 25: 25%,
116
+ 50: 50%,
117
+ 75: 75%,
118
+ 100: 100%,
119
+ auto: auto
120
+ )
121
+ ),
122
+ "max-width": (
123
+ property: max-width,
124
+ class: mw,
125
+ values: (100: 100%)
126
+ ),
127
+ "viewport-width": (
128
+ property: width,
129
+ class: vw,
130
+ values: (100: 100vw)
131
+ ),
132
+ "min-viewport-width": (
133
+ property: min-width,
134
+ class: min-vw,
135
+ values: (100: 100vw)
136
+ ),
137
+ "height": (
138
+ property: height,
139
+ class: h,
140
+ values: (
141
+ 25: 25%,
142
+ 50: 50%,
143
+ 75: 75%,
144
+ 100: 100%,
145
+ auto: auto
146
+ )
147
+ ),
148
+ "max-height": (
149
+ property: max-height,
150
+ class: mh,
151
+ values: (100: 100%)
152
+ ),
153
+ "viewport-height": (
154
+ property: height,
155
+ class: vh,
156
+ values: (100: 100vh)
157
+ ),
158
+ "min-viewport-height": (
159
+ property: min-height,
160
+ class: min-vh,
161
+ values: (100: 100vh)
162
+ ),
163
+ // Flex utilities
164
+ "flex": (
165
+ responsive: true,
166
+ property: flex,
167
+ values: (fill: 1 1 auto)
168
+ ),
169
+ "flex-direction": (
170
+ responsive: true,
171
+ property: flex-direction,
172
+ class: flex,
173
+ values: row column row-reverse column-reverse
174
+ ),
175
+ "flex-grow": (
176
+ responsive: true,
177
+ property: flex-grow,
178
+ class: flex,
179
+ values: (
180
+ grow-0: 0,
181
+ grow-1: 1,
182
+ )
183
+ ),
184
+ "flex-shrink": (
185
+ responsive: true,
186
+ property: flex-shrink,
187
+ class: flex,
188
+ values: (
189
+ shrink-0: 0,
190
+ shrink-1: 1,
191
+ )
192
+ ),
193
+ "flex-wrap": (
194
+ responsive: true,
195
+ property: flex-wrap,
196
+ class: flex,
197
+ values: wrap nowrap wrap-reverse
198
+ ),
199
+ "justify-content": (
200
+ responsive: true,
201
+ property: justify-content,
202
+ values: (
203
+ start: flex-start,
204
+ end: flex-end,
205
+ center: center,
206
+ between: space-between,
207
+ around: space-around,
208
+ evenly: space-evenly,
209
+ )
210
+ ),
211
+ "align-items": (
212
+ responsive: true,
213
+ property: align-items,
214
+ values: (
215
+ start: flex-start,
216
+ end: flex-end,
217
+ center: center,
218
+ baseline: baseline,
219
+ stretch: stretch,
220
+ )
221
+ ),
222
+ "align-content": (
223
+ responsive: true,
224
+ property: align-content,
225
+ values: (
226
+ start: flex-start,
227
+ end: flex-end,
228
+ center: center,
229
+ between: space-between,
230
+ around: space-around,
231
+ stretch: stretch,
232
+ )
233
+ ),
234
+ "align-self": (
235
+ responsive: true,
236
+ property: align-self,
237
+ values: (
238
+ auto: auto,
239
+ start: flex-start,
240
+ end: flex-end,
241
+ center: center,
242
+ baseline: baseline,
243
+ stretch: stretch,
244
+ )
245
+ ),
246
+ "order": (
247
+ responsive: true,
248
+ property: order,
249
+ values: (
250
+ first: -1,
251
+ 0: 0,
252
+ 1: 1,
253
+ 2: 2,
254
+ 3: 3,
255
+ 4: 4,
256
+ 5: 5,
257
+ last: 6,
258
+ ),
259
+ ),
260
+ // Margin utilities
261
+ "margin": (
262
+ responsive: true,
263
+ property: margin,
264
+ class: m,
265
+ values: map-merge($spacers, (auto: auto))
266
+ ),
267
+ "margin-x": (
268
+ responsive: true,
269
+ property: margin-right margin-left,
270
+ class: mx,
271
+ values: map-merge($spacers, (auto: auto))
272
+ ),
273
+ "margin-y": (
274
+ responsive: true,
275
+ property: margin-top margin-bottom,
276
+ class: my,
277
+ values: map-merge($spacers, (auto: auto))
278
+ ),
279
+ "margin-top": (
280
+ responsive: true,
281
+ property: margin-top,
282
+ class: mt,
283
+ values: map-merge($spacers, (auto: auto))
284
+ ),
285
+ "margin-right": (
286
+ responsive: true,
287
+ property: margin-right,
288
+ class: mr,
289
+ values: map-merge($spacers, (auto: auto))
290
+ ),
291
+ "margin-bottom": (
292
+ responsive: true,
293
+ property: margin-bottom,
294
+ class: mb,
295
+ values: map-merge($spacers, (auto: auto))
296
+ ),
297
+ "margin-left": (
298
+ responsive: true,
299
+ property: margin-left,
300
+ class: ml,
301
+ values: map-merge($spacers, (auto: auto))
302
+ ),
303
+ // Negative margin utilities
304
+ "negative-margin": (
305
+ responsive: true,
306
+ property: margin,
307
+ class: m,
308
+ values: $negative-spacers
309
+ ),
310
+ "negative-margin-x": (
311
+ responsive: true,
312
+ property: margin-right margin-left,
313
+ class: mx,
314
+ values: $negative-spacers
315
+ ),
316
+ "negative-margin-y": (
317
+ responsive: true,
318
+ property: margin-top margin-bottom,
319
+ class: my,
320
+ values: $negative-spacers
321
+ ),
322
+ "negative-margin-top": (
323
+ responsive: true,
324
+ property: margin-top,
325
+ class: mt,
326
+ values: $negative-spacers
327
+ ),
328
+ "negative-margin-right": (
329
+ responsive: true,
330
+ property: margin-right,
331
+ class: mr,
332
+ values: $negative-spacers
333
+ ),
334
+ "negative-margin-bottom": (
335
+ responsive: true,
336
+ property: margin-bottom,
337
+ class: mb,
338
+ values: $negative-spacers
339
+ ),
340
+ "negative-margin-left": (
341
+ responsive: true,
342
+ property: margin-left,
343
+ class: ml,
344
+ values: $negative-spacers
345
+ ),
346
+ // Padding utilities
347
+ "padding": (
348
+ responsive: true,
349
+ property: padding,
350
+ class: p,
351
+ values: $spacers
352
+ ),
353
+ "padding-x": (
354
+ responsive: true,
355
+ property: padding-right padding-left,
356
+ class: px,
357
+ values: $spacers
358
+ ),
359
+ "padding-y": (
360
+ responsive: true,
361
+ property: padding-top padding-bottom,
362
+ class: py,
363
+ values: $spacers
364
+ ),
365
+ "padding-top": (
366
+ responsive: true,
367
+ property: padding-top,
368
+ class: pt,
369
+ values: $spacers
370
+ ),
371
+ "padding-right": (
372
+ responsive: true,
373
+ property: padding-right,
374
+ class: pr,
375
+ values: $spacers
376
+ ),
377
+ "padding-bottom": (
378
+ responsive: true,
379
+ property: padding-bottom,
380
+ class: pb,
381
+ values: $spacers
382
+ ),
383
+ "padding-left": (
384
+ responsive: true,
385
+ property: padding-left,
386
+ class: pl,
387
+ values: $spacers
388
+ ),
389
+ // Text
390
+ "font-weight": (
391
+ property: font-weight,
392
+ values: (
393
+ light: $font-weight-light,
394
+ lighter: $font-weight-lighter,
395
+ normal: $font-weight-normal,
396
+ bold: $font-weight-bold,
397
+ bolder: $font-weight-bolder
398
+ )
399
+ ),
400
+ "text-transform": (
401
+ property: text-transform,
402
+ class: text,
403
+ values: lowercase uppercase capitalize
404
+ ),
405
+ "text-align": (
406
+ responsive: true,
407
+ property: text-align,
408
+ class: text,
409
+ values: left right center
410
+ ),
411
+ "color": (
412
+ property: color,
413
+ class: text,
414
+ values: map-merge(
415
+ $theme-colors,
416
+ (
417
+ "white": $white,
418
+ "body": $body-color,
419
+ "muted": $text-muted,
420
+ "black-50": rgba($black, .5),
421
+ "white-50": rgba($white, .5),
422
+ "reset": inherit,
423
+ )
424
+ )
425
+ ),
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
+ ),
436
+ "background-color": (
437
+ property: background-color,
438
+ class: bg,
439
+ values: map-merge(
440
+ $theme-colors,
441
+ (
442
+ "body": $body-bg,
443
+ "white": $white,
444
+ "transparent": transparent
445
+ )
446
+ )
447
+ ),
448
+ "gradient": (
449
+ property: background-image,
450
+ 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))
479
+ ),
480
+ "user-select": (
481
+ property: user-select,
482
+ values: all auto none
483
+ ),
484
+ "pointer-events": (
485
+ property: pointer-events,
486
+ class: pe,
487
+ values: none auto,
488
+ ),
489
+ "rounded": (
490
+ property: border-radius,
491
+ class: rounded,
492
+ values: (
493
+ null: $border-radius,
494
+ sm: $border-radius-sm,
495
+ lg: $border-radius-lg,
496
+ circle: 50%,
497
+ pill: $rounded-pill,
498
+ 0: 0,
499
+ )
500
+ ),
501
+ "rounded-top": (
502
+ property: border-top-left-radius border-top-right-radius,
503
+ class: rounded-top,
504
+ values: (null: $border-radius)
505
+ ),
506
+ "rounded-right": (
507
+ property: border-top-right-radius border-bottom-right-radius,
508
+ class: rounded-right,
509
+ values: (null: $border-radius)
510
+ ),
511
+ "rounded-bottom": (
512
+ property: border-bottom-right-radius border-bottom-left-radius,
513
+ class: rounded-bottom,
514
+ values: (null: $border-radius)
515
+ ),
516
+ "rounded-left": (
517
+ property: border-bottom-left-radius border-top-left-radius,
518
+ class: rounded-left,
519
+ values: (null: $border-radius)
520
+ ),
521
+ "visibility": (
522
+ property: visibility,
523
+ class: null,
524
+ values: (
525
+ visible: visible,
526
+ invisible: hidden,
527
+ )
528
+ )
529
+ ),
530
+ $utilities
531
+ );