bootstrap 5.2.2 → 5.3.3

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 (105) hide show
  1. checksums.yaml +4 -4
  2. data/.github/workflows/ci.yml +61 -0
  3. data/CHANGELOG.md +4 -0
  4. data/Gemfile +1 -0
  5. data/README.md +9 -3
  6. data/Rakefile +17 -4
  7. data/assets/javascripts/bootstrap/alert.js +22 -32
  8. data/assets/javascripts/bootstrap/base-component.js +22 -38
  9. data/assets/javascripts/bootstrap/button.js +19 -22
  10. data/assets/javascripts/bootstrap/carousel.js +52 -135
  11. data/assets/javascripts/bootstrap/collapse.js +40 -102
  12. data/assets/javascripts/bootstrap/dom/data.js +8 -12
  13. data/assets/javascripts/bootstrap/dom/event-handler.js +19 -66
  14. data/assets/javascripts/bootstrap/dom/manipulator.js +4 -17
  15. data/assets/javascripts/bootstrap/dom/selector-engine.js +42 -24
  16. data/assets/javascripts/bootstrap/dropdown.js +74 -145
  17. data/assets/javascripts/bootstrap/modal.js +53 -133
  18. data/assets/javascripts/bootstrap/offcanvas.js +50 -102
  19. data/assets/javascripts/bootstrap/popover.js +23 -29
  20. data/assets/javascripts/bootstrap/scrollspy.js +53 -90
  21. data/assets/javascripts/bootstrap/tab.js +63 -112
  22. data/assets/javascripts/bootstrap/toast.js +31 -73
  23. data/assets/javascripts/bootstrap/tooltip.js +80 -191
  24. data/assets/javascripts/bootstrap/util/backdrop.js +27 -54
  25. data/assets/javascripts/bootstrap/util/component-functions.js +13 -18
  26. data/assets/javascripts/bootstrap/util/config.js +15 -27
  27. data/assets/javascripts/bootstrap/util/focustrap.js +19 -36
  28. data/assets/javascripts/bootstrap/util/index.js +42 -112
  29. data/assets/javascripts/bootstrap/util/sanitizer.js +33 -42
  30. data/assets/javascripts/bootstrap/util/scrollbar.js +24 -50
  31. data/assets/javascripts/bootstrap/util/swipe.js +27 -48
  32. data/assets/javascripts/bootstrap/util/template-factory.js +25 -52
  33. data/assets/javascripts/bootstrap-sprockets.js +8 -8
  34. data/assets/javascripts/bootstrap.js +686 -1450
  35. data/assets/javascripts/bootstrap.min.js +3 -3
  36. data/assets/stylesheets/_bootstrap-grid.scss +1 -3
  37. data/assets/stylesheets/_bootstrap-reboot.scss +1 -0
  38. data/assets/stylesheets/_bootstrap-utilities.scss +19 -0
  39. data/assets/stylesheets/_bootstrap.scss +1 -0
  40. data/assets/stylesheets/bootstrap/_accordion.scss +20 -11
  41. data/assets/stylesheets/bootstrap/_alert.scss +8 -11
  42. data/assets/stylesheets/bootstrap/_button-group.scss +2 -2
  43. data/assets/stylesheets/bootstrap/_buttons.scss +12 -3
  44. data/assets/stylesheets/bootstrap/_card.scss +5 -0
  45. data/assets/stylesheets/bootstrap/_carousel.scss +22 -15
  46. data/assets/stylesheets/bootstrap/_close.scss +32 -9
  47. data/assets/stylesheets/bootstrap/_dropdown.scss +1 -0
  48. data/assets/stylesheets/bootstrap/_functions.scss +2 -2
  49. data/assets/stylesheets/bootstrap/_grid.scss +6 -0
  50. data/assets/stylesheets/bootstrap/_helpers.scss +2 -0
  51. data/assets/stylesheets/bootstrap/_list-group.scss +12 -7
  52. data/assets/stylesheets/bootstrap/_maps.scss +120 -0
  53. data/assets/stylesheets/bootstrap/_mixins.scss +1 -2
  54. data/assets/stylesheets/bootstrap/_modal.scss +0 -1
  55. data/assets/stylesheets/bootstrap/_nav.scss +42 -17
  56. data/assets/stylesheets/bootstrap/_navbar.scss +15 -4
  57. data/assets/stylesheets/bootstrap/_offcanvas.scss +5 -6
  58. data/assets/stylesheets/bootstrap/_pagination.scss +1 -1
  59. data/assets/stylesheets/bootstrap/_progress.scss +10 -1
  60. data/assets/stylesheets/bootstrap/_reboot.scss +8 -7
  61. data/assets/stylesheets/bootstrap/_root.scss +124 -10
  62. data/assets/stylesheets/bootstrap/_tables.scss +19 -12
  63. data/assets/stylesheets/bootstrap/_tooltip.scss +4 -5
  64. data/assets/stylesheets/bootstrap/_utilities.scss +175 -16
  65. data/assets/stylesheets/bootstrap/_variables-dark.scss +87 -0
  66. data/assets/stylesheets/bootstrap/_variables.scss +289 -172
  67. data/assets/stylesheets/bootstrap/forms/_floating-labels.scss +23 -3
  68. data/assets/stylesheets/bootstrap/forms/_form-check.scss +27 -13
  69. data/assets/stylesheets/bootstrap/forms/_form-control.scss +24 -4
  70. data/assets/stylesheets/bootstrap/forms/_form-range.scss +3 -3
  71. data/assets/stylesheets/bootstrap/forms/_form-select.scss +12 -3
  72. data/assets/stylesheets/bootstrap/forms/_input-group.scss +1 -1
  73. data/assets/stylesheets/bootstrap/helpers/_color-bg.scss +1 -4
  74. data/assets/stylesheets/bootstrap/helpers/_colored-links.scss +20 -2
  75. data/assets/stylesheets/bootstrap/helpers/_focus-ring.scss +5 -0
  76. data/assets/stylesheets/bootstrap/helpers/_icon-link.scss +25 -0
  77. data/assets/stylesheets/bootstrap/helpers/_vr.scss +1 -1
  78. data/assets/stylesheets/bootstrap/mixins/_alert.scss +4 -1
  79. data/assets/stylesheets/bootstrap/mixins/_banner.scss +2 -4
  80. data/assets/stylesheets/bootstrap/mixins/_caret.scss +30 -25
  81. data/assets/stylesheets/bootstrap/mixins/_color-mode.scss +21 -0
  82. data/assets/stylesheets/bootstrap/mixins/_forms.scss +20 -9
  83. data/assets/stylesheets/bootstrap/mixins/_grid.scss +2 -2
  84. data/assets/stylesheets/bootstrap/mixins/_list-group.scss +2 -0
  85. data/assets/stylesheets/bootstrap/mixins/_utilities.scss +1 -1
  86. data/assets/stylesheets/bootstrap/mixins/_visually-hidden.scss +5 -1
  87. data/assets/stylesheets/bootstrap/vendor/_rfs.scss +23 -29
  88. data/bootstrap.gemspec +4 -3
  89. data/lib/bootstrap/engine.rb +17 -1
  90. data/lib/bootstrap/version.rb +2 -2
  91. data/tasks/updater/js.rb +1 -1
  92. data/tasks/updater/network.rb +2 -2
  93. data/tasks/updater/scss.rb +2 -2
  94. data/test/gemfiles/rails_4_2.gemfile +2 -1
  95. data/test/gemfiles/rails_5_0.gemfile +1 -1
  96. data/test/gemfiles/rails_5_1.gemfile +1 -1
  97. data/test/gemfiles/rails_5_2.gemfile +8 -0
  98. data/test/gemfiles/rails_6_0.gemfile +1 -0
  99. data/test/gemfiles/rails_6_1.gemfile +1 -0
  100. data/test/gemfiles/rails_7_0_dartsass.gemfile +8 -0
  101. data/test/gemfiles/rails_7_0_sassc.gemfile +8 -0
  102. data/test/test_helper.rb +3 -2
  103. metadata +42 -18
  104. data/.travis.yml +0 -32
  105. data/assets/stylesheets/bootstrap/bootstrap-utilities.scss +0 -15
@@ -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,23 @@
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
+ begin
8
+ require 'sassc-rails'
9
+ rescue LoadError
10
+ begin
11
+ require 'dartsass-rails'
12
+ rescue LoadError
13
+ begin
14
+ require 'cssbundling-rails'
15
+ rescue LoadError
16
+ raise LoadError.new("bootstrap-rubygem requires a Sass engine. Please add dartsass-sprockets, sassc-rails, dartsass-rails or cssbundling-rails to your dependencies.")
17
+ end
18
+ end
19
+ end
20
+ end
5
21
 
6
22
  module Bootstrap
7
23
  module Rails
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Bootstrap
4
- VERSION = '5.2.2'
5
- BOOTSTRAP_SHA = '961d5ff9844372a4e294980c667bbe7e0651cdeb'
4
+ VERSION = '5.3.3'
5
+ BOOTSTRAP_SHA = '6e1f75f420f68e1d52733b8e407fc7c3766c9dba'
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
@@ -44,7 +44,7 @@ class Updater
44
44
  if File.directory?(full_path)
45
45
  files.each do |name|
46
46
  path = "#{full_path}/#{name}"
47
- contents[name] = File.read(path, mode: 'rb') if File.exists?(path)
47
+ contents[name] = File.read(path, mode: 'rb') if File.exist?(path)
48
48
  end
49
49
  end
50
50
  contents
@@ -63,7 +63,7 @@ class Updater
63
63
  uri = URI(url)
64
64
  cache_path = "./#@cache_path#{uri.path}#{uri.query.tr('?&=', '-') if uri.query}"
65
65
  FileUtils.mkdir_p File.dirname(cache_path)
66
- if File.exists?(cache_path)
66
+ if File.exist?(cache_path)
67
67
  log_http_get_file url, true
68
68
  File.read(cache_path, mode: 'rb')
69
69
  else
@@ -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,7 @@ 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'
6
+ gem 'bigdecimal', '1.3.5'
5
7
 
6
8
  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
-
@@ -0,0 +1,8 @@
1
+ source 'https://rubygems.org'
2
+
3
+ gem 'actionpack', '~> 5.2.8'
4
+ gem 'activesupport', '~> 5.2.8'
5
+ gem 'autoprefixer-rails', '>= 7.1.1'
6
+ gem 'sassc-rails', '~> 2.0'
7
+
8
+ gemspec path: '../../'
@@ -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: '../../'
@@ -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 'sassc-rails', '~> 2.0'
7
+
8
+ gemspec path: '../../'
data/test/test_helper.rb CHANGED
@@ -24,7 +24,9 @@ browser_path = ENV['CHROMIUM_BIN'] || %w[
24
24
 
25
25
  Capybara.register_driver :cuprite do |app|
26
26
  options = {
27
- window_size: [1280, 1024]
27
+ window_size: [1280, 1024],
28
+ timeout: 30,
29
+ process_timeout: 30
28
30
  }
29
31
  options[:browser_path] = browser_path if browser_path
30
32
  Capybara::Cuprite::Driver.new(app, options)
@@ -38,4 +40,3 @@ Capybara.configure do |config|
38
40
  config.server_port = 7000
39
41
  config.default_max_wait_time = 10
40
42
  end
41
-
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.2
4
+ version: 5.3.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Twitter, Inc.
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-10-15 00:00:00.000000000 Z
11
+ date: 2024-04-29 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
@@ -198,15 +212,15 @@ dependencies:
198
212
  - - ">="
199
213
  - !ruby/object:Gem::Version
200
214
  version: '0'
201
- description:
215
+ description:
202
216
  email: glex.spb@gmail.com
203
217
  executables: []
204
218
  extensions: []
205
219
  extra_rdoc_files: []
206
220
  files:
207
221
  - ".gitattributes"
222
+ - ".github/workflows/ci.yml"
208
223
  - ".gitignore"
209
- - ".travis.yml"
210
224
  - CHANGELOG.md
211
225
  - Gemfile
212
226
  - LICENSE
@@ -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
@@ -373,8 +391,11 @@ files:
373
391
  - test/gemfiles/rails_4_2.gemfile
374
392
  - test/gemfiles/rails_5_0.gemfile
375
393
  - test/gemfiles/rails_5_1.gemfile
394
+ - test/gemfiles/rails_5_2.gemfile
376
395
  - test/gemfiles/rails_6_0.gemfile
377
396
  - test/gemfiles/rails_6_1.gemfile
397
+ - test/gemfiles/rails_7_0_dartsass.gemfile
398
+ - test/gemfiles/rails_7_0_sassc.gemfile
378
399
  - test/rails_test.rb
379
400
  - test/support/dummy_rails_integration.rb
380
401
  - test/support/reporting.rb
@@ -384,7 +405,7 @@ homepage: https://github.com/twbs/bootstrap-rubygem
384
405
  licenses:
385
406
  - MIT
386
407
  metadata: {}
387
- post_install_message:
408
+ post_install_message:
388
409
  rdoc_options: []
389
410
  require_paths:
390
411
  - lib
@@ -399,8 +420,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
399
420
  - !ruby/object:Gem::Version
400
421
  version: '0'
401
422
  requirements: []
402
- rubygems_version: 3.1.2
403
- signing_key:
423
+ rubygems_version: 3.5.3
424
+ signing_key:
404
425
  specification_version: 4
405
426
  summary: The most popular HTML, CSS, and JavaScript framework for developing responsive,
406
427
  mobile first projects on the web. http://getbootstrap.com
@@ -438,8 +459,11 @@ test_files:
438
459
  - test/gemfiles/rails_4_2.gemfile
439
460
  - test/gemfiles/rails_5_0.gemfile
440
461
  - test/gemfiles/rails_5_1.gemfile
462
+ - test/gemfiles/rails_5_2.gemfile
441
463
  - test/gemfiles/rails_6_0.gemfile
442
464
  - test/gemfiles/rails_6_1.gemfile
465
+ - test/gemfiles/rails_7_0_dartsass.gemfile
466
+ - test/gemfiles/rails_7_0_sassc.gemfile
443
467
  - test/rails_test.rb
444
468
  - test/support/dummy_rails_integration.rb
445
469
  - test/support/reporting.rb
data/.travis.yml DELETED
@@ -1,32 +0,0 @@
1
- language: ruby
2
- dist: focal
3
- addons:
4
- apt:
5
- packages:
6
- - chromium-browser
7
- rvm:
8
- - 2.5
9
- - 2.6
10
- - 2.7
11
-
12
- gemfile:
13
- - test/gemfiles/rails_4_2.gemfile
14
- - test/gemfiles/rails_5_0.gemfile
15
- - test/gemfiles/rails_5_1.gemfile
16
- - test/gemfiles/rails_6_0.gemfile
17
- - test/gemfiles/rails_6_1.gemfile
18
-
19
- jobs:
20
- exclude:
21
- rvm: 2.7
22
- gemfile: test/gemfiles/rails_4_2.gemfile
23
-
24
- cache: bundler
25
- bundler_args: --path ../../vendor/bundle --without debug
26
- notifications:
27
- slack: heybb:3n88HHilXn76ji9vV4gL819Y
28
- env:
29
- global:
30
- - VERBOSE=1
31
- script:
32
- bundle exec rake --trace
@@ -1,15 +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
- // Helpers
12
- @import "helpers";
13
-
14
- // Utilities
15
- @import "utilities/api";