bootstrap 4.5.0 → 5.0.0.alpha3

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 (135) hide show
  1. checksums.yaml +4 -4
  2. data/.travis.yml +1 -1
  3. data/README.md +5 -2
  4. data/assets/javascripts/bootstrap-sprockets.js +12 -9
  5. data/assets/javascripts/bootstrap.js +1852 -1266
  6. data/assets/javascripts/bootstrap.min.js +3 -3
  7. data/assets/javascripts/bootstrap/alert.js +149 -69
  8. data/assets/javascripts/bootstrap/button.js +71 -141
  9. data/assets/javascripts/bootstrap/carousel.js +291 -192
  10. data/assets/javascripts/bootstrap/collapse.js +285 -161
  11. data/assets/javascripts/bootstrap/dom/data.js +81 -0
  12. data/assets/javascripts/bootstrap/dom/event-handler.js +307 -0
  13. data/assets/javascripts/bootstrap/dom/manipulator.js +85 -0
  14. data/assets/javascripts/bootstrap/dom/selector-engine.js +98 -0
  15. data/assets/javascripts/bootstrap/dropdown.js +240 -218
  16. data/assets/javascripts/bootstrap/modal.js +342 -234
  17. data/assets/javascripts/bootstrap/popover.js +82 -106
  18. data/assets/javascripts/bootstrap/scrollspy.js +154 -114
  19. data/assets/javascripts/bootstrap/tab.js +166 -80
  20. data/assets/javascripts/bootstrap/toast.js +171 -113
  21. data/assets/javascripts/bootstrap/tooltip.js +351 -219
  22. data/assets/stylesheets/_bootstrap-grid.scss +52 -16
  23. data/assets/stylesheets/_bootstrap-reboot.scss +5 -2
  24. data/assets/stylesheets/_bootstrap.scss +16 -9
  25. data/assets/stylesheets/bootstrap/_accordion.scss +125 -0
  26. data/assets/stylesheets/bootstrap/_alert.scss +15 -9
  27. data/assets/stylesheets/bootstrap/_badge.scss +2 -27
  28. data/assets/stylesheets/bootstrap/_breadcrumb.scss +3 -19
  29. data/assets/stylesheets/bootstrap/_button-group.scss +16 -40
  30. data/assets/stylesheets/bootstrap/_buttons.scss +27 -60
  31. data/assets/stylesheets/bootstrap/_card.scss +30 -97
  32. data/assets/stylesheets/bootstrap/_carousel.scss +30 -15
  33. data/assets/stylesheets/bootstrap/_close.scss +30 -30
  34. data/assets/stylesheets/bootstrap/_containers.scss +41 -0
  35. data/assets/stylesheets/bootstrap/_dropdown.scss +52 -8
  36. data/assets/stylesheets/bootstrap/_forms.scss +9 -347
  37. data/assets/stylesheets/bootstrap/_functions.scss +88 -23
  38. data/assets/stylesheets/bootstrap/_grid.scss +3 -58
  39. data/assets/stylesheets/bootstrap/_helpers.scss +7 -0
  40. data/assets/stylesheets/bootstrap/_list-group.scss +14 -5
  41. data/assets/stylesheets/bootstrap/_mixins.scss +7 -13
  42. data/assets/stylesheets/bootstrap/_modal.scss +41 -47
  43. data/assets/stylesheets/bootstrap/_nav.scss +14 -8
  44. data/assets/stylesheets/bootstrap/_navbar.scss +43 -74
  45. data/assets/stylesheets/bootstrap/_pagination.scss +10 -20
  46. data/assets/stylesheets/bootstrap/_popover.scss +6 -6
  47. data/assets/stylesheets/bootstrap/_progress.scss +3 -5
  48. data/assets/stylesheets/bootstrap/_reboot.scss +310 -171
  49. data/assets/stylesheets/bootstrap/_root.scss +5 -9
  50. data/assets/stylesheets/bootstrap/_spinners.scss +13 -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 +545 -18
  57. data/assets/stylesheets/bootstrap/_variables.scss +653 -469
  58. data/assets/stylesheets/bootstrap/bootstrap-utilities.scss +18 -0
  59. data/assets/stylesheets/bootstrap/forms/_floating-labels.scss +61 -0
  60. data/assets/stylesheets/bootstrap/forms/_form-check.scss +151 -0
  61. data/assets/stylesheets/bootstrap/forms/_form-control.scss +223 -0
  62. data/assets/stylesheets/bootstrap/forms/_form-range.scss +91 -0
  63. data/assets/stylesheets/bootstrap/forms/_form-select.scss +68 -0
  64. data/assets/stylesheets/bootstrap/forms/_form-text.scss +11 -0
  65. data/assets/stylesheets/bootstrap/forms/_input-group.scss +121 -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 +1 -5
  76. data/assets/stylesheets/bootstrap/mixins/_border-radius.scss +9 -9
  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 +65 -47
  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 +17 -77
  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 +3 -2
  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 +2 -2
  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. metadata +33 -41
  100. data/assets/javascripts/bootstrap/util.js +0 -192
  101. data/assets/stylesheets/bootstrap/_code.scss +0 -48
  102. data/assets/stylesheets/bootstrap/_custom-forms.scss +0 -522
  103. data/assets/stylesheets/bootstrap/_input-group.scss +0 -192
  104. data/assets/stylesheets/bootstrap/_jumbotron.scss +0 -17
  105. data/assets/stylesheets/bootstrap/_media.scss +0 -8
  106. data/assets/stylesheets/bootstrap/_print.scss +0 -141
  107. data/assets/stylesheets/bootstrap/mixins/_background-variant.scss +0 -23
  108. data/assets/stylesheets/bootstrap/mixins/_badge.scss +0 -17
  109. data/assets/stylesheets/bootstrap/mixins/_float.scss +0 -14
  110. data/assets/stylesheets/bootstrap/mixins/_grid-framework.scss +0 -81
  111. data/assets/stylesheets/bootstrap/mixins/_hover.scss +0 -37
  112. data/assets/stylesheets/bootstrap/mixins/_nav-divider.scss +0 -11
  113. data/assets/stylesheets/bootstrap/mixins/_screen-reader.scss +0 -34
  114. data/assets/stylesheets/bootstrap/mixins/_size.scss +0 -7
  115. data/assets/stylesheets/bootstrap/mixins/_table-row.scss +0 -39
  116. data/assets/stylesheets/bootstrap/mixins/_text-emphasis.scss +0 -17
  117. data/assets/stylesheets/bootstrap/mixins/_text-hide.scss +0 -11
  118. data/assets/stylesheets/bootstrap/mixins/_visibility.scss +0 -8
  119. data/assets/stylesheets/bootstrap/utilities/_align.scss +0 -8
  120. data/assets/stylesheets/bootstrap/utilities/_background.scss +0 -19
  121. data/assets/stylesheets/bootstrap/utilities/_borders.scss +0 -75
  122. data/assets/stylesheets/bootstrap/utilities/_display.scss +0 -26
  123. data/assets/stylesheets/bootstrap/utilities/_embed.scss +0 -39
  124. data/assets/stylesheets/bootstrap/utilities/_flex.scss +0 -51
  125. data/assets/stylesheets/bootstrap/utilities/_float.scss +0 -11
  126. data/assets/stylesheets/bootstrap/utilities/_interactions.scss +0 -5
  127. data/assets/stylesheets/bootstrap/utilities/_overflow.scss +0 -5
  128. data/assets/stylesheets/bootstrap/utilities/_position.scss +0 -32
  129. data/assets/stylesheets/bootstrap/utilities/_screenreaders.scss +0 -11
  130. data/assets/stylesheets/bootstrap/utilities/_shadows.scss +0 -6
  131. data/assets/stylesheets/bootstrap/utilities/_sizing.scss +0 -20
  132. data/assets/stylesheets/bootstrap/utilities/_spacing.scss +0 -73
  133. data/assets/stylesheets/bootstrap/utilities/_stretched-link.scss +0 -19
  134. data/assets/stylesheets/bootstrap/utilities/_text.scss +0 -71
  135. data/assets/stylesheets/bootstrap/utilities/_visibility.scss +0 -13
@@ -1,18 +1,545 @@
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/interactions";
10
- @import "utilities/overflow";
11
- @import "utilities/position";
12
- @import "utilities/screenreaders";
13
- @import "utilities/shadows";
14
- @import "utilities/sizing";
15
- @import "utilities/spacing";
16
- @import "utilities/stretched-link";
17
- @import "utilities/text";
18
- @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 visible scroll,
20
+ ),
21
+ "display": (
22
+ responsive: true,
23
+ print: true,
24
+ property: display,
25
+ class: d,
26
+ values: inline inline-block block grid 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
+ "gap": (
200
+ responsive: true,
201
+ property: gap,
202
+ class: gap,
203
+ values: $spacers
204
+ ),
205
+ "justify-content": (
206
+ responsive: true,
207
+ property: justify-content,
208
+ values: (
209
+ start: flex-start,
210
+ end: flex-end,
211
+ center: center,
212
+ between: space-between,
213
+ around: space-around,
214
+ evenly: space-evenly,
215
+ )
216
+ ),
217
+ "align-items": (
218
+ responsive: true,
219
+ property: align-items,
220
+ values: (
221
+ start: flex-start,
222
+ end: flex-end,
223
+ center: center,
224
+ baseline: baseline,
225
+ stretch: stretch,
226
+ )
227
+ ),
228
+ "align-content": (
229
+ responsive: true,
230
+ property: align-content,
231
+ values: (
232
+ start: flex-start,
233
+ end: flex-end,
234
+ center: center,
235
+ between: space-between,
236
+ around: space-around,
237
+ stretch: stretch,
238
+ )
239
+ ),
240
+ "align-self": (
241
+ responsive: true,
242
+ property: align-self,
243
+ values: (
244
+ auto: auto,
245
+ start: flex-start,
246
+ end: flex-end,
247
+ center: center,
248
+ baseline: baseline,
249
+ stretch: stretch,
250
+ )
251
+ ),
252
+ "order": (
253
+ responsive: true,
254
+ property: order,
255
+ values: (
256
+ first: -1,
257
+ 0: 0,
258
+ 1: 1,
259
+ 2: 2,
260
+ 3: 3,
261
+ 4: 4,
262
+ 5: 5,
263
+ last: 6,
264
+ ),
265
+ ),
266
+ // Margin utilities
267
+ "margin": (
268
+ responsive: true,
269
+ property: margin,
270
+ class: m,
271
+ values: map-merge($spacers, (auto: auto))
272
+ ),
273
+ "margin-x": (
274
+ responsive: true,
275
+ property: margin-right margin-left,
276
+ class: mx,
277
+ values: map-merge($spacers, (auto: auto))
278
+ ),
279
+ "margin-y": (
280
+ responsive: true,
281
+ property: margin-top margin-bottom,
282
+ class: my,
283
+ values: map-merge($spacers, (auto: auto))
284
+ ),
285
+ "margin-top": (
286
+ responsive: true,
287
+ property: margin-top,
288
+ class: mt,
289
+ values: map-merge($spacers, (auto: auto))
290
+ ),
291
+ "margin-right": (
292
+ responsive: true,
293
+ property: margin-right,
294
+ class: mr,
295
+ values: map-merge($spacers, (auto: auto))
296
+ ),
297
+ "margin-bottom": (
298
+ responsive: true,
299
+ property: margin-bottom,
300
+ class: mb,
301
+ values: map-merge($spacers, (auto: auto))
302
+ ),
303
+ "margin-left": (
304
+ responsive: true,
305
+ property: margin-left,
306
+ class: ml,
307
+ values: map-merge($spacers, (auto: auto))
308
+ ),
309
+ // Negative margin utilities
310
+ "negative-margin": (
311
+ responsive: true,
312
+ property: margin,
313
+ class: m,
314
+ values: $negative-spacers
315
+ ),
316
+ "negative-margin-x": (
317
+ responsive: true,
318
+ property: margin-right margin-left,
319
+ class: mx,
320
+ values: $negative-spacers
321
+ ),
322
+ "negative-margin-y": (
323
+ responsive: true,
324
+ property: margin-top margin-bottom,
325
+ class: my,
326
+ values: $negative-spacers
327
+ ),
328
+ "negative-margin-top": (
329
+ responsive: true,
330
+ property: margin-top,
331
+ class: mt,
332
+ values: $negative-spacers
333
+ ),
334
+ "negative-margin-right": (
335
+ responsive: true,
336
+ property: margin-right,
337
+ class: mr,
338
+ values: $negative-spacers
339
+ ),
340
+ "negative-margin-bottom": (
341
+ responsive: true,
342
+ property: margin-bottom,
343
+ class: mb,
344
+ values: $negative-spacers
345
+ ),
346
+ "negative-margin-left": (
347
+ responsive: true,
348
+ property: margin-left,
349
+ class: ml,
350
+ values: $negative-spacers
351
+ ),
352
+ // Padding utilities
353
+ "padding": (
354
+ responsive: true,
355
+ property: padding,
356
+ class: p,
357
+ values: $spacers
358
+ ),
359
+ "padding-x": (
360
+ responsive: true,
361
+ property: padding-right padding-left,
362
+ class: px,
363
+ values: $spacers
364
+ ),
365
+ "padding-y": (
366
+ responsive: true,
367
+ property: padding-top padding-bottom,
368
+ class: py,
369
+ values: $spacers
370
+ ),
371
+ "padding-top": (
372
+ responsive: true,
373
+ property: padding-top,
374
+ class: pt,
375
+ values: $spacers
376
+ ),
377
+ "padding-right": (
378
+ responsive: true,
379
+ property: padding-right,
380
+ class: pr,
381
+ values: $spacers
382
+ ),
383
+ "padding-bottom": (
384
+ responsive: true,
385
+ property: padding-bottom,
386
+ class: pb,
387
+ values: $spacers
388
+ ),
389
+ "padding-left": (
390
+ responsive: true,
391
+ property: padding-left,
392
+ class: pl,
393
+ values: $spacers
394
+ ),
395
+ // Text
396
+ "font-size": (
397
+ rfs: true,
398
+ property: font-size,
399
+ class: fs,
400
+ values: $font-sizes
401
+ ),
402
+ "font-style": (
403
+ property: font-style,
404
+ class: fst,
405
+ values: italic normal
406
+ ),
407
+ "font-weight": (
408
+ property: font-weight,
409
+ class: fw,
410
+ values: (
411
+ light: $font-weight-light,
412
+ lighter: $font-weight-lighter,
413
+ normal: $font-weight-normal,
414
+ bold: $font-weight-bold,
415
+ bolder: $font-weight-bolder
416
+ )
417
+ ),
418
+ "text-transform": (
419
+ property: text-transform,
420
+ class: text,
421
+ values: lowercase uppercase capitalize
422
+ ),
423
+ "text-align": (
424
+ responsive: true,
425
+ property: text-align,
426
+ class: text,
427
+ values: left right center
428
+ ),
429
+ "color": (
430
+ property: color,
431
+ class: text,
432
+ values: map-merge(
433
+ $theme-colors,
434
+ (
435
+ "white": $white,
436
+ "body": $body-color,
437
+ "muted": $text-muted,
438
+ "black-50": rgba($black, .5),
439
+ "white-50": rgba($white, .5),
440
+ "reset": inherit,
441
+ )
442
+ )
443
+ ),
444
+ "line-height": (
445
+ property: line-height,
446
+ class: lh,
447
+ values: (
448
+ 1: 1,
449
+ sm: $line-height-sm,
450
+ base: $line-height-base,
451
+ lg: $line-height-lg,
452
+ )
453
+ ),
454
+ "background-color": (
455
+ property: background-color,
456
+ class: bg,
457
+ values: map-merge(
458
+ $theme-colors,
459
+ (
460
+ "body": $body-bg,
461
+ "white": $white,
462
+ "transparent": transparent
463
+ )
464
+ )
465
+ ),
466
+ "gradient": (
467
+ property: background-image,
468
+ class: bg,
469
+ values: (gradient: var(--#{$variable-prefix}gradient))
470
+ ),
471
+ "white-space": (
472
+ property: white-space,
473
+ class: text,
474
+ values: (
475
+ wrap: normal,
476
+ nowrap: nowrap,
477
+ )
478
+ ),
479
+ "text-decoration": (
480
+ property: text-decoration,
481
+ values: none underline line-through
482
+ ),
483
+ "word-wrap": (
484
+ property: word-wrap word-break,
485
+ class: text,
486
+ values: (break: break-word)
487
+ ),
488
+ "font-family": (
489
+ property: font-family,
490
+ class: font,
491
+ values: (monospace: var(--#{$variable-prefix}font-monospace))
492
+ ),
493
+ "user-select": (
494
+ property: user-select,
495
+ values: all auto none
496
+ ),
497
+ "pointer-events": (
498
+ property: pointer-events,
499
+ class: pe,
500
+ values: none auto,
501
+ ),
502
+ "rounded": (
503
+ property: border-radius,
504
+ class: rounded,
505
+ values: (
506
+ null: $border-radius,
507
+ 0: 0,
508
+ 1: $border-radius-sm,
509
+ 2: $border-radius,
510
+ 3: $border-radius-lg,
511
+ circle: 50%,
512
+ pill: $border-radius-pill
513
+ )
514
+ ),
515
+ "rounded-top": (
516
+ property: border-top-left-radius border-top-right-radius,
517
+ class: rounded-top,
518
+ values: (null: $border-radius)
519
+ ),
520
+ "rounded-right": (
521
+ property: border-top-right-radius border-bottom-right-radius,
522
+ class: rounded-right,
523
+ values: (null: $border-radius)
524
+ ),
525
+ "rounded-bottom": (
526
+ property: border-bottom-right-radius border-bottom-left-radius,
527
+ class: rounded-bottom,
528
+ values: (null: $border-radius)
529
+ ),
530
+ "rounded-left": (
531
+ property: border-bottom-left-radius border-top-left-radius,
532
+ class: rounded-left,
533
+ values: (null: $border-radius)
534
+ ),
535
+ "visibility": (
536
+ property: visibility,
537
+ class: null,
538
+ values: (
539
+ visible: visible,
540
+ invisible: hidden,
541
+ )
542
+ )
543
+ ),
544
+ $utilities
545
+ );