bootstrap 5.2.3 → 5.3.2

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 (100) hide show
  1. checksums.yaml +4 -4
  2. data/.github/workflows/ci.yml +11 -5
  3. data/Gemfile +1 -0
  4. data/README.md +6 -2
  5. data/Rakefile +10 -1
  6. data/assets/javascripts/bootstrap/alert.js +22 -32
  7. data/assets/javascripts/bootstrap/base-component.js +22 -38
  8. data/assets/javascripts/bootstrap/button.js +19 -22
  9. data/assets/javascripts/bootstrap/carousel.js +52 -135
  10. data/assets/javascripts/bootstrap/collapse.js +40 -102
  11. data/assets/javascripts/bootstrap/dom/data.js +8 -12
  12. data/assets/javascripts/bootstrap/dom/event-handler.js +19 -66
  13. data/assets/javascripts/bootstrap/dom/manipulator.js +4 -17
  14. data/assets/javascripts/bootstrap/dom/selector-engine.js +42 -24
  15. data/assets/javascripts/bootstrap/dropdown.js +74 -145
  16. data/assets/javascripts/bootstrap/modal.js +53 -133
  17. data/assets/javascripts/bootstrap/offcanvas.js +50 -102
  18. data/assets/javascripts/bootstrap/popover.js +23 -29
  19. data/assets/javascripts/bootstrap/scrollspy.js +53 -90
  20. data/assets/javascripts/bootstrap/tab.js +63 -112
  21. data/assets/javascripts/bootstrap/toast.js +31 -73
  22. data/assets/javascripts/bootstrap/tooltip.js +75 -177
  23. data/assets/javascripts/bootstrap/util/backdrop.js +28 -54
  24. data/assets/javascripts/bootstrap/util/component-functions.js +13 -18
  25. data/assets/javascripts/bootstrap/util/config.js +15 -27
  26. data/assets/javascripts/bootstrap/util/focustrap.js +20 -36
  27. data/assets/javascripts/bootstrap/util/index.js +42 -111
  28. data/assets/javascripts/bootstrap/util/sanitizer.js +30 -42
  29. data/assets/javascripts/bootstrap/util/scrollbar.js +24 -50
  30. data/assets/javascripts/bootstrap/util/swipe.js +27 -48
  31. data/assets/javascripts/bootstrap/util/template-factory.js +25 -52
  32. data/assets/javascripts/bootstrap-sprockets.js +10 -10
  33. data/assets/javascripts/bootstrap.js +689 -1444
  34. data/assets/javascripts/bootstrap.min.js +3 -3
  35. data/assets/stylesheets/_bootstrap-grid.scss +1 -3
  36. data/assets/stylesheets/_bootstrap-reboot.scss +1 -0
  37. data/assets/stylesheets/_bootstrap-utilities.scss +19 -0
  38. data/assets/stylesheets/_bootstrap.scss +1 -0
  39. data/assets/stylesheets/bootstrap/_accordion.scss +9 -0
  40. data/assets/stylesheets/bootstrap/_alert.scss +8 -11
  41. data/assets/stylesheets/bootstrap/_button-group.scss +2 -2
  42. data/assets/stylesheets/bootstrap/_buttons.scss +3 -3
  43. data/assets/stylesheets/bootstrap/_card.scss +5 -0
  44. data/assets/stylesheets/bootstrap/_carousel.scss +20 -2
  45. data/assets/stylesheets/bootstrap/_close.scss +32 -9
  46. data/assets/stylesheets/bootstrap/_dropdown.scss +1 -0
  47. data/assets/stylesheets/bootstrap/_functions.scss +1 -1
  48. data/assets/stylesheets/bootstrap/_grid.scss +6 -0
  49. data/assets/stylesheets/bootstrap/_helpers.scss +2 -0
  50. data/assets/stylesheets/bootstrap/_list-group.scss +12 -7
  51. data/assets/stylesheets/bootstrap/_maps.scss +120 -0
  52. data/assets/stylesheets/bootstrap/_mixins.scss +1 -2
  53. data/assets/stylesheets/bootstrap/_nav.scss +42 -17
  54. data/assets/stylesheets/bootstrap/_navbar.scss +15 -4
  55. data/assets/stylesheets/bootstrap/_offcanvas.scss +4 -2
  56. data/assets/stylesheets/bootstrap/_pagination.scss +1 -1
  57. data/assets/stylesheets/bootstrap/_progress.scss +10 -1
  58. data/assets/stylesheets/bootstrap/_reboot.scss +8 -7
  59. data/assets/stylesheets/bootstrap/_root.scss +124 -10
  60. data/assets/stylesheets/bootstrap/_tables.scss +18 -11
  61. data/assets/stylesheets/bootstrap/_tooltip.scss +4 -5
  62. data/assets/stylesheets/bootstrap/_utilities.scss +175 -16
  63. data/assets/stylesheets/bootstrap/_variables-dark.scss +87 -0
  64. data/assets/stylesheets/bootstrap/_variables.scss +282 -169
  65. data/assets/stylesheets/bootstrap/forms/_floating-labels.scss +23 -3
  66. data/assets/stylesheets/bootstrap/forms/_form-check.scss +26 -12
  67. data/assets/stylesheets/bootstrap/forms/_form-control.scss +24 -4
  68. data/assets/stylesheets/bootstrap/forms/_form-range.scss +3 -3
  69. data/assets/stylesheets/bootstrap/forms/_form-select.scss +12 -3
  70. data/assets/stylesheets/bootstrap/forms/_input-group.scss +1 -1
  71. data/assets/stylesheets/bootstrap/helpers/_color-bg.scss +1 -4
  72. data/assets/stylesheets/bootstrap/helpers/_colored-links.scss +20 -2
  73. data/assets/stylesheets/bootstrap/helpers/_focus-ring.scss +5 -0
  74. data/assets/stylesheets/bootstrap/helpers/_icon-link.scss +25 -0
  75. data/assets/stylesheets/bootstrap/helpers/_vr.scss +1 -1
  76. data/assets/stylesheets/bootstrap/mixins/_alert.scss +4 -1
  77. data/assets/stylesheets/bootstrap/mixins/_banner.scss +2 -4
  78. data/assets/stylesheets/bootstrap/mixins/_caret.scss +30 -25
  79. data/assets/stylesheets/bootstrap/mixins/_color-mode.scss +21 -0
  80. data/assets/stylesheets/bootstrap/mixins/_forms.scss +8 -7
  81. data/assets/stylesheets/bootstrap/mixins/_grid.scss +1 -1
  82. data/assets/stylesheets/bootstrap/mixins/_list-group.scss +2 -0
  83. data/assets/stylesheets/bootstrap/mixins/_utilities.scss +1 -1
  84. data/assets/stylesheets/bootstrap/mixins/_visually-hidden.scss +5 -1
  85. data/assets/stylesheets/bootstrap/vendor/_rfs.scss +23 -29
  86. data/bootstrap.gemspec +4 -3
  87. data/lib/bootstrap/engine.rb +7 -1
  88. data/lib/bootstrap/version.rb +2 -2
  89. data/tasks/updater/js.rb +1 -1
  90. data/tasks/updater/scss.rb +2 -2
  91. data/test/gemfiles/rails_4_2.gemfile +1 -1
  92. data/test/gemfiles/rails_5_0.gemfile +1 -1
  93. data/test/gemfiles/rails_5_1.gemfile +1 -1
  94. data/test/gemfiles/rails_5_2.gemfile +1 -1
  95. data/test/gemfiles/rails_6_0.gemfile +1 -0
  96. data/test/gemfiles/rails_6_1.gemfile +1 -0
  97. data/test/gemfiles/rails_7_0_dartsass.gemfile +8 -0
  98. data/test/gemfiles/{rails_7_0.gemfile → rails_7_0_sassc.gemfile} +1 -0
  99. metadata +35 -15
  100. data/assets/stylesheets/bootstrap/bootstrap-utilities.scss +0 -18
@@ -1,4 +1,4 @@
1
- // stylelint-disable property-blacklist, scss/dollar-variable-default
1
+ // stylelint-disable scss/dimension-no-non-numeric-values
2
2
 
3
3
  // SCSS RFS mixin
4
4
  //
@@ -154,8 +154,7 @@ $rfs-mq-property-height: if($rfs-mode == max-media-query, max-height, min-height
154
154
  &.enable-rfs {
155
155
  @content;
156
156
  }
157
- }
158
- @else {
157
+ } @else {
159
158
  @content;
160
159
  }
161
160
  }
@@ -168,7 +167,7 @@ $rfs-mq-property-height: if($rfs-mode == max-media-query, max-height, min-height
168
167
  @content;
169
168
  }
170
169
 
171
- @include _rfs-media-query {
170
+ @include _rfs-media-query () {
172
171
  .enable-rfs &,
173
172
  &.enable-rfs {
174
173
  @content;
@@ -182,7 +181,7 @@ $rfs-mq-property-height: if($rfs-mode == max-media-query, max-height, min-height
182
181
  @content;
183
182
  }
184
183
  }
185
- @include _rfs-media-query {
184
+ @include _rfs-media-query () {
186
185
  @content;
187
186
  }
188
187
  }
@@ -193,12 +192,12 @@ $rfs-mq-property-height: if($rfs-mode == max-media-query, max-height, min-height
193
192
  // Convert to list
194
193
  $values: if(type-of($values) != list, ($values,), $values);
195
194
 
196
- $val: '';
195
+ $val: "";
197
196
 
198
197
  // Loop over each value and calculate value
199
198
  @each $value in $values {
200
199
  @if $value == 0 {
201
- $val: $val + ' 0';
200
+ $val: $val + " 0";
202
201
  }
203
202
  @else {
204
203
  // Cache $value unit
@@ -206,15 +205,14 @@ $rfs-mq-property-height: if($rfs-mode == max-media-query, max-height, min-height
206
205
 
207
206
  @if $unit == px {
208
207
  // Convert to rem if needed
209
- $val: $val + ' ' + if($rfs-unit == rem, #{divide($value, $value * 0 + $rfs-rem-value)}rem, $value);
208
+ $val: $val + " " + if($rfs-unit == rem, #{divide($value, $value * 0 + $rfs-rem-value)}rem, $value);
210
209
  }
211
210
  @else if $unit == rem {
212
211
  // Convert to px if needed
213
- $val: $val + ' ' + if($rfs-unit == px, #{divide($value, $value * 0 + 1) * $rfs-rem-value}px, $value);
214
- }
215
- @else {
212
+ $val: $val + " " + if($rfs-unit == px, #{divide($value, $value * 0 + 1) * $rfs-rem-value}px, $value);
213
+ } @else {
216
214
  // If $value isn't a number (like inherit) or $value has a unit (not px or rem, like 1.5em) or $ is 0, just print the value
217
- $val: $val + ' ' + $value;
215
+ $val: $val + " " + $value;
218
216
  }
219
217
  }
220
218
  }
@@ -228,30 +226,26 @@ $rfs-mq-property-height: if($rfs-mode == max-media-query, max-height, min-height
228
226
  // Convert to list
229
227
  $values: if(type-of($values) != list, ($values,), $values);
230
228
 
231
- $val: '';
229
+ $val: "";
232
230
 
233
231
  // Loop over each value and calculate value
234
232
  @each $value in $values {
235
233
  @if $value == 0 {
236
- $val: $val + ' 0';
237
- }
238
-
239
- @else {
234
+ $val: $val + " 0";
235
+ } @else {
240
236
  // Cache $value unit
241
237
  $unit: if(type-of($value) == "number", unit($value), false);
242
238
 
243
239
  // If $value isn't a number (like inherit) or $value has a unit (not px or rem, like 1.5em) or $ is 0, just print the value
244
240
  @if not $unit or $unit != px and $unit != rem {
245
- $val: $val + ' ' + $value;
246
- }
247
-
248
- @else {
241
+ $val: $val + " " + $value;
242
+ } @else {
249
243
  // Remove unit from $value for calculations
250
244
  $value: divide($value, $value * 0 + if($unit == px, 1, divide(1, $rfs-rem-value)));
251
245
 
252
246
  // Only add the media query if the value is greater than the minimum value
253
247
  @if abs($value) <= $rfs-base-value or not $enable-rfs {
254
- $val: $val + ' ' + if($rfs-unit == rem, #{divide($value, $rfs-rem-value)}rem, #{$value}px);
248
+ $val: $val + " " + if($rfs-unit == rem, #{divide($value, $rfs-rem-value)}rem, #{$value}px);
255
249
  }
256
250
  @else {
257
251
  // Calculate the minimum value
@@ -273,7 +267,7 @@ $rfs-mq-property-height: if($rfs-mode == max-media-query, max-height, min-height
273
267
  $variable-width: #{divide($value-diff * 100, $rfs-breakpoint)}#{$variable-unit};
274
268
 
275
269
  // Return the calculated value
276
- $val: $val + ' calc(' + $min-width + if($value < 0, ' - ', ' + ') + $variable-width + ')';
270
+ $val: $val + " calc(" + $min-width + if($value < 0, " - ", " + ") + $variable-width + ")";
277
271
  }
278
272
  }
279
273
  }
@@ -287,22 +281,22 @@ $rfs-mq-property-height: if($rfs-mode == max-media-query, max-height, min-height
287
281
  @mixin rfs($values, $property: font-size) {
288
282
  @if $values != null {
289
283
  $val: rfs-value($values);
290
- $fluidVal: rfs-fluid-value($values);
284
+ $fluid-val: rfs-fluid-value($values);
291
285
 
292
286
  // Do not print the media query if responsive & non-responsive values are the same
293
- @if $val == $fluidVal {
287
+ @if $val == $fluid-val {
294
288
  #{$property}: $val;
295
289
  }
296
290
  @else {
297
- @include _rfs-rule {
298
- #{$property}: if($rfs-mode == max-media-query, $val, $fluidVal);
291
+ @include _rfs-rule () {
292
+ #{$property}: if($rfs-mode == max-media-query, $val, $fluid-val);
299
293
 
300
294
  // Include safari iframe resize fix if needed
301
295
  min-width: if($rfs-safari-iframe-resize-bug-fix, (0 * 1vw), null);
302
296
  }
303
297
 
304
- @include _rfs-media-query-rule {
305
- #{$property}: if($rfs-mode == max-media-query, $fluidVal, $val);
298
+ @include _rfs-media-query-rule () {
299
+ #{$property}: if($rfs-mode == max-media-query, $fluid-val, $val);
306
300
  }
307
301
  }
308
302
  }
data/bootstrap.gemspec CHANGED
@@ -14,11 +14,11 @@ Gem::Specification.new do |s|
14
14
  # SassC requires Ruby 2.3.3. Also specify here to make it obvious.
15
15
  s.required_ruby_version = '>= 2.3.3'
16
16
 
17
- s.add_runtime_dependency 'popper_js', '>= 2.11.6', '< 3'
18
-
19
- s.add_runtime_dependency 'sassc-rails', '>= 2.0.0'
17
+ s.add_runtime_dependency 'popper_js', '>= 2.11.8', '< 3'
20
18
  s.add_runtime_dependency 'autoprefixer-rails', '>= 9.1.0'
21
19
 
20
+ s.add_development_dependency 'rake'
21
+
22
22
  # Testing dependencies
23
23
  s.add_development_dependency 'minitest', '~> 5.14.4'
24
24
  s.add_development_dependency 'minitest-reporters', '~> 1.4.3'
@@ -27,6 +27,7 @@ Gem::Specification.new do |s|
27
27
  s.add_development_dependency 'capybara', '>= 2.6.0'
28
28
  s.add_development_dependency 'cuprite'
29
29
  # Dummy Rails app dependencies
30
+ s.add_development_dependency 'railties'
30
31
  s.add_development_dependency 'actionpack', '>= 4.1.5'
31
32
  s.add_development_dependency 'activesupport', '>= 4.1.5'
32
33
  s.add_development_dependency 'json', '>= 1.8.1'
@@ -1,7 +1,13 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  require 'autoprefixer-rails'
4
- require 'sassc-rails'
4
+ begin
5
+ require 'dartsass-sprockets'
6
+ rescue LoadError
7
+ require 'sassc-rails'
8
+ rescue LoadError
9
+ raise LoadError.new("bootstrap-rubygem requires a Sass engine. Please add dartsass-sprockets or sassc-rails to your dependencies.")
10
+ end
5
11
 
6
12
  module Bootstrap
7
13
  module Rails
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Bootstrap
4
- VERSION = '5.2.3'
5
- BOOTSTRAP_SHA = 'cb021439c683d9805e2864c58095b92d405e9b11'
4
+ VERSION = '5.3.2'
5
+ BOOTSTRAP_SHA = '344e912d04b5b6a04482113eff20ab416ff01048'
6
6
  end
data/tasks/updater/js.rb CHANGED
@@ -51,7 +51,7 @@ class Updater
51
51
  # Get the imports from the ES6 files to order requires correctly.
52
52
  read_files('js/src', src_files).each do |name, content|
53
53
  file_imports = content.scan(%r{import *(?:[a-zA-Z]*|\{[a-zA-Z ,]*\}) *from '([\w/.-]+)}).flatten(1).map do |f|
54
- Pathname.new(name).dirname.join("#{f}.js").cleanpath.to_s
54
+ Pathname.new(name).dirname.join(f).cleanpath.to_s
55
55
  end.uniq
56
56
  imports.add name, *(file_imports - INLINED_SRCS)
57
57
  end
@@ -4,7 +4,7 @@ class Updater
4
4
  log_status 'Updating scss...'
5
5
  save_to = @save_to[:scss]
6
6
  contents = {}
7
- bootstrap_scss_files = get_paths_by_type('scss', /\.scss$/)
7
+ bootstrap_scss_files = get_paths_by_type('scss', /\.scss$/).reject { |p| p.start_with?('tests/') }
8
8
  read_files('scss', bootstrap_scss_files).each do |name, file|
9
9
  contents[name] = file
10
10
  save_file("#{save_to}/#{name}", file)
@@ -12,7 +12,7 @@ class Updater
12
12
  log_processed "#{bootstrap_scss_files * ' '}"
13
13
 
14
14
  log_status 'Updating scss main files'
15
- %w(bootstrap bootstrap-grid bootstrap-reboot).each do |name|
15
+ %w(bootstrap bootstrap-grid bootstrap-reboot bootstrap-utilities).each do |name|
16
16
  # Compass treats non-partials as targets to copy into the main project, so make them partials.
17
17
  # Also move them up a level to clearly indicate entry points.
18
18
  from = "#{save_to}/#{name}.scss"
@@ -2,6 +2,6 @@ source 'https://rubygems.org'
2
2
 
3
3
  gem 'actionpack', '~> 4.2.7'
4
4
  gem 'activesupport', '~> 4.2.7'
5
+ gem 'sassc-rails', '~> 2.0'
5
6
 
6
7
  gemspec path: '../../'
7
-
@@ -3,6 +3,6 @@ source 'https://rubygems.org'
3
3
  gem 'actionpack', '~> 5.0.0'
4
4
  gem 'activesupport', '~> 5.0.0'
5
5
  gem 'autoprefixer-rails', '>= 6.3.6.1'
6
+ gem 'sassc-rails', '~> 2.0'
6
7
 
7
8
  gemspec path: '../../'
8
-
@@ -3,6 +3,6 @@ source 'https://rubygems.org'
3
3
  gem 'actionpack', '~> 5.1.0'
4
4
  gem 'activesupport', '~> 5.1.0'
5
5
  gem 'autoprefixer-rails', '>= 7.1.1'
6
+ gem 'sassc-rails', '~> 2.0'
6
7
 
7
8
  gemspec path: '../../'
8
-
@@ -3,6 +3,6 @@ source 'https://rubygems.org'
3
3
  gem 'actionpack', '~> 5.2.8'
4
4
  gem 'activesupport', '~> 5.2.8'
5
5
  gem 'autoprefixer-rails', '>= 7.1.1'
6
+ gem 'sassc-rails', '~> 2.0'
6
7
 
7
8
  gemspec path: '../../'
8
-
@@ -3,5 +3,6 @@ source 'https://rubygems.org'
3
3
  gem 'actionpack', '~> 6.0.3'
4
4
  gem 'activesupport', '~> 6.0.3'
5
5
  gem 'autoprefixer-rails', '>= 9.7.6'
6
+ gem 'sassc-rails', '~> 2.0'
6
7
 
7
8
  gemspec path: '../../'
@@ -3,5 +3,6 @@ source 'https://rubygems.org'
3
3
  gem 'actionpack', '~> 6.1.3'
4
4
  gem 'activesupport', '~> 6.1.3'
5
5
  gem 'autoprefixer-rails', '>= 9.7.6'
6
+ gem 'sassc-rails', '~> 2.0'
6
7
 
7
8
  gemspec path: '../../'
@@ -0,0 +1,8 @@
1
+ source 'https://rubygems.org'
2
+
3
+ gem 'actionpack', '~> 7.0.4'
4
+ gem 'activesupport', '~> 7.0.4'
5
+ gem 'autoprefixer-rails', '>= 9.7.6'
6
+ gem 'dartsass-sprockets', '~> 3.0'
7
+
8
+ gemspec path: '../../'
@@ -3,5 +3,6 @@ source 'https://rubygems.org'
3
3
  gem 'actionpack', '~> 7.0.4'
4
4
  gem 'activesupport', '~> 7.0.4'
5
5
  gem 'autoprefixer-rails', '>= 9.7.6'
6
+ gem 'sassc-rails', '~> 2.0'
6
7
 
7
8
  gemspec path: '../../'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bootstrap
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.2.3
4
+ version: 5.3.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Twitter, Inc.
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-11-25 00:00:00.000000000 Z
11
+ date: 2023-10-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: popper_js
@@ -16,7 +16,7 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: 2.11.6
19
+ version: 2.11.8
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
22
  version: '3'
@@ -26,38 +26,38 @@ dependencies:
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- version: 2.11.6
29
+ version: 2.11.8
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: '3'
33
33
  - !ruby/object:Gem::Dependency
34
- name: sassc-rails
34
+ name: autoprefixer-rails
35
35
  requirement: !ruby/object:Gem::Requirement
36
36
  requirements:
37
37
  - - ">="
38
38
  - !ruby/object:Gem::Version
39
- version: 2.0.0
39
+ version: 9.1.0
40
40
  type: :runtime
41
41
  prerelease: false
42
42
  version_requirements: !ruby/object:Gem::Requirement
43
43
  requirements:
44
44
  - - ">="
45
45
  - !ruby/object:Gem::Version
46
- version: 2.0.0
46
+ version: 9.1.0
47
47
  - !ruby/object:Gem::Dependency
48
- name: autoprefixer-rails
48
+ name: rake
49
49
  requirement: !ruby/object:Gem::Requirement
50
50
  requirements:
51
51
  - - ">="
52
52
  - !ruby/object:Gem::Version
53
- version: 9.1.0
54
- type: :runtime
53
+ version: '0'
54
+ type: :development
55
55
  prerelease: false
56
56
  version_requirements: !ruby/object:Gem::Requirement
57
57
  requirements:
58
58
  - - ">="
59
59
  - !ruby/object:Gem::Version
60
- version: 9.1.0
60
+ version: '0'
61
61
  - !ruby/object:Gem::Dependency
62
62
  name: minitest
63
63
  requirement: !ruby/object:Gem::Requirement
@@ -128,6 +128,20 @@ dependencies:
128
128
  - - ">="
129
129
  - !ruby/object:Gem::Version
130
130
  version: '0'
131
+ - !ruby/object:Gem::Dependency
132
+ name: railties
133
+ requirement: !ruby/object:Gem::Requirement
134
+ requirements:
135
+ - - ">="
136
+ - !ruby/object:Gem::Version
137
+ version: '0'
138
+ type: :development
139
+ prerelease: false
140
+ version_requirements: !ruby/object:Gem::Requirement
141
+ requirements:
142
+ - - ">="
143
+ - !ruby/object:Gem::Version
144
+ version: '0'
131
145
  - !ruby/object:Gem::Dependency
132
146
  name: actionpack
133
147
  requirement: !ruby/object:Gem::Requirement
@@ -245,6 +259,7 @@ files:
245
259
  - assets/javascripts/bootstrap/util/template-factory.js
246
260
  - assets/stylesheets/_bootstrap-grid.scss
247
261
  - assets/stylesheets/_bootstrap-reboot.scss
262
+ - assets/stylesheets/_bootstrap-utilities.scss
248
263
  - assets/stylesheets/_bootstrap.scss
249
264
  - assets/stylesheets/bootstrap/_accordion.scss
250
265
  - assets/stylesheets/bootstrap/_alert.scss
@@ -282,8 +297,8 @@ files:
282
297
  - assets/stylesheets/bootstrap/_transitions.scss
283
298
  - assets/stylesheets/bootstrap/_type.scss
284
299
  - assets/stylesheets/bootstrap/_utilities.scss
300
+ - assets/stylesheets/bootstrap/_variables-dark.scss
285
301
  - assets/stylesheets/bootstrap/_variables.scss
286
- - assets/stylesheets/bootstrap/bootstrap-utilities.scss
287
302
  - assets/stylesheets/bootstrap/forms/_floating-labels.scss
288
303
  - assets/stylesheets/bootstrap/forms/_form-check.scss
289
304
  - assets/stylesheets/bootstrap/forms/_form-control.scss
@@ -296,6 +311,8 @@ files:
296
311
  - assets/stylesheets/bootstrap/helpers/_clearfix.scss
297
312
  - assets/stylesheets/bootstrap/helpers/_color-bg.scss
298
313
  - assets/stylesheets/bootstrap/helpers/_colored-links.scss
314
+ - assets/stylesheets/bootstrap/helpers/_focus-ring.scss
315
+ - assets/stylesheets/bootstrap/helpers/_icon-link.scss
299
316
  - assets/stylesheets/bootstrap/helpers/_position.scss
300
317
  - assets/stylesheets/bootstrap/helpers/_ratio.scss
301
318
  - assets/stylesheets/bootstrap/helpers/_stacks.scss
@@ -312,6 +329,7 @@ files:
312
329
  - assets/stylesheets/bootstrap/mixins/_buttons.scss
313
330
  - assets/stylesheets/bootstrap/mixins/_caret.scss
314
331
  - assets/stylesheets/bootstrap/mixins/_clearfix.scss
332
+ - assets/stylesheets/bootstrap/mixins/_color-mode.scss
315
333
  - assets/stylesheets/bootstrap/mixins/_color-scheme.scss
316
334
  - assets/stylesheets/bootstrap/mixins/_container.scss
317
335
  - assets/stylesheets/bootstrap/mixins/_deprecate.scss
@@ -376,7 +394,8 @@ files:
376
394
  - test/gemfiles/rails_5_2.gemfile
377
395
  - test/gemfiles/rails_6_0.gemfile
378
396
  - test/gemfiles/rails_6_1.gemfile
379
- - test/gemfiles/rails_7_0.gemfile
397
+ - test/gemfiles/rails_7_0_dartsass.gemfile
398
+ - test/gemfiles/rails_7_0_sassc.gemfile
380
399
  - test/rails_test.rb
381
400
  - test/support/dummy_rails_integration.rb
382
401
  - test/support/reporting.rb
@@ -401,7 +420,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
401
420
  - !ruby/object:Gem::Version
402
421
  version: '0'
403
422
  requirements: []
404
- rubygems_version: 3.1.2
423
+ rubygems_version: 3.4.20
405
424
  signing_key:
406
425
  specification_version: 4
407
426
  summary: The most popular HTML, CSS, and JavaScript framework for developing responsive,
@@ -443,7 +462,8 @@ test_files:
443
462
  - test/gemfiles/rails_5_2.gemfile
444
463
  - test/gemfiles/rails_6_0.gemfile
445
464
  - test/gemfiles/rails_6_1.gemfile
446
- - test/gemfiles/rails_7_0.gemfile
465
+ - test/gemfiles/rails_7_0_dartsass.gemfile
466
+ - test/gemfiles/rails_7_0_sassc.gemfile
447
467
  - test/rails_test.rb
448
468
  - test/support/dummy_rails_integration.rb
449
469
  - test/support/reporting.rb
@@ -1,18 +0,0 @@
1
- @import "mixins/banner";
2
- @include bsBanner(Utilities);
3
-
4
- // Configuration
5
- @import "functions";
6
- @import "variables";
7
- @import "maps";
8
- @import "mixins";
9
- @import "utilities";
10
-
11
- // Layout & components
12
- @import "root";
13
-
14
- // Helpers
15
- @import "helpers";
16
-
17
- // Utilities
18
- @import "utilities/api";