bootstrap 4.6.1 → 4.6.2.1
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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/README.md +7 -1
- data/Rakefile +16 -4
- data/assets/javascripts/bootstrap/alert.js +6 -3
- data/assets/javascripts/bootstrap/button.js +6 -3
- data/assets/javascripts/bootstrap/carousel.js +7 -5
- data/assets/javascripts/bootstrap/collapse.js +7 -5
- data/assets/javascripts/bootstrap/dropdown.js +7 -5
- data/assets/javascripts/bootstrap/modal.js +7 -5
- data/assets/javascripts/bootstrap/popover.js +8 -7
- data/assets/javascripts/bootstrap/scrollspy.js +8 -8
- data/assets/javascripts/bootstrap/tab.js +7 -4
- data/assets/javascripts/bootstrap/toast.js +7 -5
- data/assets/javascripts/bootstrap/tooltip.js +8 -6
- data/assets/javascripts/bootstrap/util.js +3 -3
- data/assets/javascripts/bootstrap-sprockets.js +6 -6
- data/assets/javascripts/bootstrap.js +22 -23
- data/assets/javascripts/bootstrap.min.js +3 -3
- data/assets/stylesheets/_bootstrap-grid.scss +3 -3
- data/assets/stylesheets/_bootstrap-reboot.scss +3 -3
- data/assets/stylesheets/_bootstrap.scss +3 -3
- data/assets/stylesheets/bootstrap/_custom-forms.scss +2 -2
- data/assets/stylesheets/bootstrap/_nav.scss +5 -0
- data/assets/stylesheets/bootstrap/_spinners.scss +2 -2
- data/assets/stylesheets/bootstrap/_transitions.scss +6 -0
- data/assets/stylesheets/bootstrap/_variables.scss +2 -1
- data/assets/stylesheets/bootstrap/mixins/_reset-text.scss +1 -1
- data/bootstrap.gemspec +1 -3
- data/lib/bootstrap/engine.rb +17 -1
- data/lib/bootstrap/version.rb +2 -2
- data/tasks/updater/js.rb +18 -6
- data/tasks/updater/network.rb +7 -1
- data/test/gemfiles/rails_7_0_dartsass.gemfile +8 -0
- data/test/gemfiles/rails_7_0_sassc.gemfile +8 -0
- metadata +9 -19
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: dd382f63309c8fbf7da627ee4990fdaeb3e9eb7f25ba5d06f77346c0dcc68de4
|
4
|
+
data.tar.gz: 2c24101f290892643a48f3d530132cca24fb35b9d05e8b19c5305056508065ac
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ed3113b844e211e9bd1875de399f167043a7b57c81d399fedaa9fb2a6e9b49dd01d1164c89801476bf6ccce66baf3c88fa88d086895cfc655429f14f821c6b2b
|
7
|
+
data.tar.gz: b79d08b3e67931da95f530aea47619c1eb486f7f1cf3eae873645b875f65aec62f30018fbd169a490add197037650f0f3cca4dd11de4a7b07f603bbb6c2fb0c8
|
data/CHANGELOG.md
CHANGED
@@ -6,6 +6,10 @@ The changelog only includes changes specific to the RubyGem.
|
|
6
6
|
The Bootstrap framework changes can be found in [the Releases section of twbs/bootstrap](https://github.com/twbs/bootstrap/releases).
|
7
7
|
Release announcement posts on [the official Bootstrap blog](http://blog.getbootstrap.com) contain summaries of the most noteworthy changes made in each release of Bootstrap.
|
8
8
|
|
9
|
+
# 4.6.2.1
|
10
|
+
|
11
|
+
* Adds support for other Sass compilers. [#278](https://github.com/twbs/bootstrap-rubygem/pull/278)
|
12
|
+
|
9
13
|
# 4.2.1
|
10
14
|
|
11
15
|
* Bootstrap rubygem now depends on SassC instead of Sass.
|
data/README.md
CHANGED
@@ -17,9 +17,15 @@ Please see the appropriate guide for your environment of choice:
|
|
17
17
|
Add `bootstrap` to your Gemfile:
|
18
18
|
|
19
19
|
```ruby
|
20
|
-
gem 'bootstrap', '~> 4.6.1'
|
20
|
+
gem 'bootstrap', '~> 4.6.2.1'
|
21
21
|
```
|
22
22
|
|
23
|
+
This gem requires a Sass engine, so make sure you have **one** of these four gems in your Gemfile:
|
24
|
+
- [`dartsass-sprockets`](https://github.com/tablecheck/dartsass-sprockets): Dart Sass engine, recommended but only works for Ruby 2.6+ and Rails 5+
|
25
|
+
- [`dartsass-rails`](https://github.com/rails/dartsass-rails): Dart Sass engine, recommended for Rails projects that use Propshaft
|
26
|
+
- [`cssbundling-rails`](https://github.com/rails/cssbundling-rails): External Sass engine
|
27
|
+
- [`sassc-rails`](https://github.com/sass/sassc-rails): SassC engine, deprecated but compatible with Ruby 2.3+ and Rails 4
|
28
|
+
|
23
29
|
Ensure that `sprockets-rails` is at least v2.3.2.
|
24
30
|
|
25
31
|
`bundle install` and restart your server to make the files available through the pipeline.
|
data/Rakefile
CHANGED
@@ -45,16 +45,28 @@ end
|
|
45
45
|
|
46
46
|
desc 'Dumps output to a CSS file for testing'
|
47
47
|
task :debug do
|
48
|
-
|
48
|
+
begin
|
49
|
+
require 'sass-embedded'
|
50
|
+
rescue LoadError
|
51
|
+
begin
|
52
|
+
require 'sassc'
|
53
|
+
rescue LoadError
|
54
|
+
raise LoadError.new("bootstrap-rubygem requires a Sass engine. Please add dartsass-sprockets or sassc-rails to your dependencies.")
|
55
|
+
end
|
56
|
+
end
|
49
57
|
require './lib/bootstrap'
|
50
58
|
require 'term/ansicolor'
|
51
59
|
require 'autoprefixer-rails'
|
52
60
|
path = Bootstrap.stylesheets_path
|
53
61
|
%w(_bootstrap _bootstrap-reboot _bootstrap-grid).each do |file|
|
54
|
-
|
55
|
-
|
56
|
-
|
62
|
+
filename = "#{path}/#{file}.scss"
|
63
|
+
css = if defined?(SassC::Engine)
|
64
|
+
SassC::Engine.new(File.read(filename), filename: filename, syntax: :scss).render
|
65
|
+
else
|
66
|
+
Sass.compile(filename).css
|
67
|
+
end
|
57
68
|
css = AutoprefixerRails.process(css)
|
69
|
+
out = File.join('tmp', "#{file[1..-1]}.css")
|
58
70
|
File.write(out, css)
|
59
71
|
$stderr.puts Term::ANSIColor.green "Compiled #{out}"
|
60
72
|
end
|
@@ -1,6 +1,6 @@
|
|
1
1
|
/*!
|
2
|
-
* Bootstrap alert.js v4.6.
|
3
|
-
* Copyright 2011-
|
2
|
+
* Bootstrap alert.js v4.6.2 (https://getbootstrap.com/)
|
3
|
+
* Copyright 2011-2022 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
|
4
4
|
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
|
5
5
|
*/
|
6
6
|
(function (global, factory) {
|
@@ -27,6 +27,9 @@
|
|
27
27
|
function _createClass(Constructor, protoProps, staticProps) {
|
28
28
|
if (protoProps) _defineProperties(Constructor.prototype, protoProps);
|
29
29
|
if (staticProps) _defineProperties(Constructor, staticProps);
|
30
|
+
Object.defineProperty(Constructor, "prototype", {
|
31
|
+
writable: false
|
32
|
+
});
|
30
33
|
return Constructor;
|
31
34
|
}
|
32
35
|
|
@@ -35,7 +38,7 @@
|
|
35
38
|
*/
|
36
39
|
|
37
40
|
var NAME = 'alert';
|
38
|
-
var VERSION = '4.6.
|
41
|
+
var VERSION = '4.6.2';
|
39
42
|
var DATA_KEY = 'bs.alert';
|
40
43
|
var EVENT_KEY = "." + DATA_KEY;
|
41
44
|
var DATA_API_KEY = '.data-api';
|
@@ -1,6 +1,6 @@
|
|
1
1
|
/*!
|
2
|
-
* Bootstrap button.js v4.6.
|
3
|
-
* Copyright 2011-
|
2
|
+
* Bootstrap button.js v4.6.2 (https://getbootstrap.com/)
|
3
|
+
* Copyright 2011-2022 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
|
4
4
|
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
|
5
5
|
*/
|
6
6
|
(function (global, factory) {
|
@@ -26,6 +26,9 @@
|
|
26
26
|
function _createClass(Constructor, protoProps, staticProps) {
|
27
27
|
if (protoProps) _defineProperties(Constructor.prototype, protoProps);
|
28
28
|
if (staticProps) _defineProperties(Constructor, staticProps);
|
29
|
+
Object.defineProperty(Constructor, "prototype", {
|
30
|
+
writable: false
|
31
|
+
});
|
29
32
|
return Constructor;
|
30
33
|
}
|
31
34
|
|
@@ -34,7 +37,7 @@
|
|
34
37
|
*/
|
35
38
|
|
36
39
|
var NAME = 'button';
|
37
|
-
var VERSION = '4.6.
|
40
|
+
var VERSION = '4.6.2';
|
38
41
|
var DATA_KEY = 'bs.button';
|
39
42
|
var EVENT_KEY = "." + DATA_KEY;
|
40
43
|
var DATA_API_KEY = '.data-api';
|
@@ -1,6 +1,6 @@
|
|
1
1
|
/*!
|
2
|
-
* Bootstrap carousel.js v4.6.
|
3
|
-
* Copyright 2011-
|
2
|
+
* Bootstrap carousel.js v4.6.2 (https://getbootstrap.com/)
|
3
|
+
* Copyright 2011-2022 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
|
4
4
|
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
|
5
5
|
*/
|
6
6
|
(function (global, factory) {
|
@@ -27,11 +27,14 @@
|
|
27
27
|
function _createClass(Constructor, protoProps, staticProps) {
|
28
28
|
if (protoProps) _defineProperties(Constructor.prototype, protoProps);
|
29
29
|
if (staticProps) _defineProperties(Constructor, staticProps);
|
30
|
+
Object.defineProperty(Constructor, "prototype", {
|
31
|
+
writable: false
|
32
|
+
});
|
30
33
|
return Constructor;
|
31
34
|
}
|
32
35
|
|
33
36
|
function _extends() {
|
34
|
-
_extends = Object.assign
|
37
|
+
_extends = Object.assign ? Object.assign.bind() : function (target) {
|
35
38
|
for (var i = 1; i < arguments.length; i++) {
|
36
39
|
var source = arguments[i];
|
37
40
|
|
@@ -44,7 +47,6 @@
|
|
44
47
|
|
45
48
|
return target;
|
46
49
|
};
|
47
|
-
|
48
50
|
return _extends.apply(this, arguments);
|
49
51
|
}
|
50
52
|
|
@@ -53,7 +55,7 @@
|
|
53
55
|
*/
|
54
56
|
|
55
57
|
var NAME = 'carousel';
|
56
|
-
var VERSION = '4.6.
|
58
|
+
var VERSION = '4.6.2';
|
57
59
|
var DATA_KEY = 'bs.carousel';
|
58
60
|
var EVENT_KEY = "." + DATA_KEY;
|
59
61
|
var DATA_API_KEY = '.data-api';
|
@@ -1,6 +1,6 @@
|
|
1
1
|
/*!
|
2
|
-
* Bootstrap collapse.js v4.6.
|
3
|
-
* Copyright 2011-
|
2
|
+
* Bootstrap collapse.js v4.6.2 (https://getbootstrap.com/)
|
3
|
+
* Copyright 2011-2022 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
|
4
4
|
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
|
5
5
|
*/
|
6
6
|
(function (global, factory) {
|
@@ -27,11 +27,14 @@
|
|
27
27
|
function _createClass(Constructor, protoProps, staticProps) {
|
28
28
|
if (protoProps) _defineProperties(Constructor.prototype, protoProps);
|
29
29
|
if (staticProps) _defineProperties(Constructor, staticProps);
|
30
|
+
Object.defineProperty(Constructor, "prototype", {
|
31
|
+
writable: false
|
32
|
+
});
|
30
33
|
return Constructor;
|
31
34
|
}
|
32
35
|
|
33
36
|
function _extends() {
|
34
|
-
_extends = Object.assign
|
37
|
+
_extends = Object.assign ? Object.assign.bind() : function (target) {
|
35
38
|
for (var i = 1; i < arguments.length; i++) {
|
36
39
|
var source = arguments[i];
|
37
40
|
|
@@ -44,7 +47,6 @@
|
|
44
47
|
|
45
48
|
return target;
|
46
49
|
};
|
47
|
-
|
48
50
|
return _extends.apply(this, arguments);
|
49
51
|
}
|
50
52
|
|
@@ -53,7 +55,7 @@
|
|
53
55
|
*/
|
54
56
|
|
55
57
|
var NAME = 'collapse';
|
56
|
-
var VERSION = '4.6.
|
58
|
+
var VERSION = '4.6.2';
|
57
59
|
var DATA_KEY = 'bs.collapse';
|
58
60
|
var EVENT_KEY = "." + DATA_KEY;
|
59
61
|
var DATA_API_KEY = '.data-api';
|
@@ -1,6 +1,6 @@
|
|
1
1
|
/*!
|
2
|
-
* Bootstrap dropdown.js v4.6.
|
3
|
-
* Copyright 2011-
|
2
|
+
* Bootstrap dropdown.js v4.6.2 (https://getbootstrap.com/)
|
3
|
+
* Copyright 2011-2022 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
|
4
4
|
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
|
5
5
|
*/
|
6
6
|
(function (global, factory) {
|
@@ -28,11 +28,14 @@
|
|
28
28
|
function _createClass(Constructor, protoProps, staticProps) {
|
29
29
|
if (protoProps) _defineProperties(Constructor.prototype, protoProps);
|
30
30
|
if (staticProps) _defineProperties(Constructor, staticProps);
|
31
|
+
Object.defineProperty(Constructor, "prototype", {
|
32
|
+
writable: false
|
33
|
+
});
|
31
34
|
return Constructor;
|
32
35
|
}
|
33
36
|
|
34
37
|
function _extends() {
|
35
|
-
_extends = Object.assign
|
38
|
+
_extends = Object.assign ? Object.assign.bind() : function (target) {
|
36
39
|
for (var i = 1; i < arguments.length; i++) {
|
37
40
|
var source = arguments[i];
|
38
41
|
|
@@ -45,7 +48,6 @@
|
|
45
48
|
|
46
49
|
return target;
|
47
50
|
};
|
48
|
-
|
49
51
|
return _extends.apply(this, arguments);
|
50
52
|
}
|
51
53
|
|
@@ -54,7 +56,7 @@
|
|
54
56
|
*/
|
55
57
|
|
56
58
|
var NAME = 'dropdown';
|
57
|
-
var VERSION = '4.6.
|
59
|
+
var VERSION = '4.6.2';
|
58
60
|
var DATA_KEY = 'bs.dropdown';
|
59
61
|
var EVENT_KEY = "." + DATA_KEY;
|
60
62
|
var DATA_API_KEY = '.data-api';
|
@@ -1,6 +1,6 @@
|
|
1
1
|
/*!
|
2
|
-
* Bootstrap modal.js v4.6.
|
3
|
-
* Copyright 2011-
|
2
|
+
* Bootstrap modal.js v4.6.2 (https://getbootstrap.com/)
|
3
|
+
* Copyright 2011-2022 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
|
4
4
|
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
|
5
5
|
*/
|
6
6
|
(function (global, factory) {
|
@@ -27,11 +27,14 @@
|
|
27
27
|
function _createClass(Constructor, protoProps, staticProps) {
|
28
28
|
if (protoProps) _defineProperties(Constructor.prototype, protoProps);
|
29
29
|
if (staticProps) _defineProperties(Constructor, staticProps);
|
30
|
+
Object.defineProperty(Constructor, "prototype", {
|
31
|
+
writable: false
|
32
|
+
});
|
30
33
|
return Constructor;
|
31
34
|
}
|
32
35
|
|
33
36
|
function _extends() {
|
34
|
-
_extends = Object.assign
|
37
|
+
_extends = Object.assign ? Object.assign.bind() : function (target) {
|
35
38
|
for (var i = 1; i < arguments.length; i++) {
|
36
39
|
var source = arguments[i];
|
37
40
|
|
@@ -44,7 +47,6 @@
|
|
44
47
|
|
45
48
|
return target;
|
46
49
|
};
|
47
|
-
|
48
50
|
return _extends.apply(this, arguments);
|
49
51
|
}
|
50
52
|
|
@@ -53,7 +55,7 @@
|
|
53
55
|
*/
|
54
56
|
|
55
57
|
var NAME = 'modal';
|
56
|
-
var VERSION = '4.6.
|
58
|
+
var VERSION = '4.6.2';
|
57
59
|
var DATA_KEY = 'bs.modal';
|
58
60
|
var EVENT_KEY = "." + DATA_KEY;
|
59
61
|
var DATA_API_KEY = '.data-api';
|
@@ -1,6 +1,6 @@
|
|
1
1
|
/*!
|
2
|
-
* Bootstrap popover.js v4.6.
|
3
|
-
* Copyright 2011-
|
2
|
+
* Bootstrap popover.js v4.6.2 (https://getbootstrap.com/)
|
3
|
+
* Copyright 2011-2022 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
|
4
4
|
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
|
5
5
|
*/
|
6
6
|
(function (global, factory) {
|
@@ -27,11 +27,14 @@
|
|
27
27
|
function _createClass(Constructor, protoProps, staticProps) {
|
28
28
|
if (protoProps) _defineProperties(Constructor.prototype, protoProps);
|
29
29
|
if (staticProps) _defineProperties(Constructor, staticProps);
|
30
|
+
Object.defineProperty(Constructor, "prototype", {
|
31
|
+
writable: false
|
32
|
+
});
|
30
33
|
return Constructor;
|
31
34
|
}
|
32
35
|
|
33
36
|
function _extends() {
|
34
|
-
_extends = Object.assign
|
37
|
+
_extends = Object.assign ? Object.assign.bind() : function (target) {
|
35
38
|
for (var i = 1; i < arguments.length; i++) {
|
36
39
|
var source = arguments[i];
|
37
40
|
|
@@ -44,7 +47,6 @@
|
|
44
47
|
|
45
48
|
return target;
|
46
49
|
};
|
47
|
-
|
48
50
|
return _extends.apply(this, arguments);
|
49
51
|
}
|
50
52
|
|
@@ -56,11 +58,10 @@
|
|
56
58
|
}
|
57
59
|
|
58
60
|
function _setPrototypeOf(o, p) {
|
59
|
-
_setPrototypeOf = Object.setPrototypeOf
|
61
|
+
_setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) {
|
60
62
|
o.__proto__ = p;
|
61
63
|
return o;
|
62
64
|
};
|
63
|
-
|
64
65
|
return _setPrototypeOf(o, p);
|
65
66
|
}
|
66
67
|
|
@@ -69,7 +70,7 @@
|
|
69
70
|
*/
|
70
71
|
|
71
72
|
var NAME = 'popover';
|
72
|
-
var VERSION = '4.6.
|
73
|
+
var VERSION = '4.6.2';
|
73
74
|
var DATA_KEY = 'bs.popover';
|
74
75
|
var EVENT_KEY = "." + DATA_KEY;
|
75
76
|
var JQUERY_NO_CONFLICT = $__default["default"].fn[NAME];
|
@@ -1,6 +1,6 @@
|
|
1
1
|
/*!
|
2
|
-
* Bootstrap scrollspy.js v4.6.
|
3
|
-
* Copyright 2011-
|
2
|
+
* Bootstrap scrollspy.js v4.6.2 (https://getbootstrap.com/)
|
3
|
+
* Copyright 2011-2022 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
|
4
4
|
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
|
5
5
|
*/
|
6
6
|
(function (global, factory) {
|
@@ -27,11 +27,14 @@
|
|
27
27
|
function _createClass(Constructor, protoProps, staticProps) {
|
28
28
|
if (protoProps) _defineProperties(Constructor.prototype, protoProps);
|
29
29
|
if (staticProps) _defineProperties(Constructor, staticProps);
|
30
|
+
Object.defineProperty(Constructor, "prototype", {
|
31
|
+
writable: false
|
32
|
+
});
|
30
33
|
return Constructor;
|
31
34
|
}
|
32
35
|
|
33
36
|
function _extends() {
|
34
|
-
_extends = Object.assign
|
37
|
+
_extends = Object.assign ? Object.assign.bind() : function (target) {
|
35
38
|
for (var i = 1; i < arguments.length; i++) {
|
36
39
|
var source = arguments[i];
|
37
40
|
|
@@ -44,7 +47,6 @@
|
|
44
47
|
|
45
48
|
return target;
|
46
49
|
};
|
47
|
-
|
48
50
|
return _extends.apply(this, arguments);
|
49
51
|
}
|
50
52
|
|
@@ -53,7 +55,7 @@
|
|
53
55
|
*/
|
54
56
|
|
55
57
|
var NAME = 'scrollspy';
|
56
|
-
var VERSION = '4.6.
|
58
|
+
var VERSION = '4.6.2';
|
57
59
|
var DATA_KEY = 'bs.scrollspy';
|
58
60
|
var EVENT_KEY = "." + DATA_KEY;
|
59
61
|
var DATA_API_KEY = '.data-api';
|
@@ -139,9 +141,7 @@
|
|
139
141
|
}
|
140
142
|
|
141
143
|
return null;
|
142
|
-
}).filter(function (
|
143
|
-
return item;
|
144
|
-
}).sort(function (a, b) {
|
144
|
+
}).filter(Boolean).sort(function (a, b) {
|
145
145
|
return a[0] - b[0];
|
146
146
|
}).forEach(function (item) {
|
147
147
|
_this2._offsets.push(item[0]);
|
@@ -1,6 +1,6 @@
|
|
1
1
|
/*!
|
2
|
-
* Bootstrap tab.js v4.6.
|
3
|
-
* Copyright 2011-
|
2
|
+
* Bootstrap tab.js v4.6.2 (https://getbootstrap.com/)
|
3
|
+
* Copyright 2011-2022 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
|
4
4
|
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
|
5
5
|
*/
|
6
6
|
(function (global, factory) {
|
@@ -27,6 +27,9 @@
|
|
27
27
|
function _createClass(Constructor, protoProps, staticProps) {
|
28
28
|
if (protoProps) _defineProperties(Constructor.prototype, protoProps);
|
29
29
|
if (staticProps) _defineProperties(Constructor, staticProps);
|
30
|
+
Object.defineProperty(Constructor, "prototype", {
|
31
|
+
writable: false
|
32
|
+
});
|
30
33
|
return Constructor;
|
31
34
|
}
|
32
35
|
|
@@ -35,7 +38,7 @@
|
|
35
38
|
*/
|
36
39
|
|
37
40
|
var NAME = 'tab';
|
38
|
-
var VERSION = '4.6.
|
41
|
+
var VERSION = '4.6.2';
|
39
42
|
var DATA_KEY = 'bs.tab';
|
40
43
|
var EVENT_KEY = "." + DATA_KEY;
|
41
44
|
var DATA_API_KEY = '.data-api';
|
@@ -73,7 +76,7 @@
|
|
73
76
|
_proto.show = function show() {
|
74
77
|
var _this = this;
|
75
78
|
|
76
|
-
if (this._element.parentNode && this._element.parentNode.nodeType === Node.ELEMENT_NODE && $__default["default"](this._element).hasClass(CLASS_NAME_ACTIVE) || $__default["default"](this._element).hasClass(CLASS_NAME_DISABLED)) {
|
79
|
+
if (this._element.parentNode && this._element.parentNode.nodeType === Node.ELEMENT_NODE && $__default["default"](this._element).hasClass(CLASS_NAME_ACTIVE) || $__default["default"](this._element).hasClass(CLASS_NAME_DISABLED) || this._element.hasAttribute('disabled')) {
|
77
80
|
return;
|
78
81
|
}
|
79
82
|
|
@@ -1,6 +1,6 @@
|
|
1
1
|
/*!
|
2
|
-
* Bootstrap toast.js v4.6.
|
3
|
-
* Copyright 2011-
|
2
|
+
* Bootstrap toast.js v4.6.2 (https://getbootstrap.com/)
|
3
|
+
* Copyright 2011-2022 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
|
4
4
|
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
|
5
5
|
*/
|
6
6
|
(function (global, factory) {
|
@@ -27,11 +27,14 @@
|
|
27
27
|
function _createClass(Constructor, protoProps, staticProps) {
|
28
28
|
if (protoProps) _defineProperties(Constructor.prototype, protoProps);
|
29
29
|
if (staticProps) _defineProperties(Constructor, staticProps);
|
30
|
+
Object.defineProperty(Constructor, "prototype", {
|
31
|
+
writable: false
|
32
|
+
});
|
30
33
|
return Constructor;
|
31
34
|
}
|
32
35
|
|
33
36
|
function _extends() {
|
34
|
-
_extends = Object.assign
|
37
|
+
_extends = Object.assign ? Object.assign.bind() : function (target) {
|
35
38
|
for (var i = 1; i < arguments.length; i++) {
|
36
39
|
var source = arguments[i];
|
37
40
|
|
@@ -44,7 +47,6 @@
|
|
44
47
|
|
45
48
|
return target;
|
46
49
|
};
|
47
|
-
|
48
50
|
return _extends.apply(this, arguments);
|
49
51
|
}
|
50
52
|
|
@@ -53,7 +55,7 @@
|
|
53
55
|
*/
|
54
56
|
|
55
57
|
var NAME = 'toast';
|
56
|
-
var VERSION = '4.6.
|
58
|
+
var VERSION = '4.6.2';
|
57
59
|
var DATA_KEY = 'bs.toast';
|
58
60
|
var EVENT_KEY = "." + DATA_KEY;
|
59
61
|
var JQUERY_NO_CONFLICT = $__default["default"].fn[NAME];
|
@@ -1,6 +1,6 @@
|
|
1
1
|
/*!
|
2
|
-
* Bootstrap tooltip.js v4.6.
|
3
|
-
* Copyright 2011-
|
2
|
+
* Bootstrap tooltip.js v4.6.2 (https://getbootstrap.com/)
|
3
|
+
* Copyright 2011-2022 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
|
4
4
|
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
|
5
5
|
*/
|
6
6
|
(function (global, factory) {
|
@@ -28,11 +28,14 @@
|
|
28
28
|
function _createClass(Constructor, protoProps, staticProps) {
|
29
29
|
if (protoProps) _defineProperties(Constructor.prototype, protoProps);
|
30
30
|
if (staticProps) _defineProperties(Constructor, staticProps);
|
31
|
+
Object.defineProperty(Constructor, "prototype", {
|
32
|
+
writable: false
|
33
|
+
});
|
31
34
|
return Constructor;
|
32
35
|
}
|
33
36
|
|
34
37
|
function _extends() {
|
35
|
-
_extends = Object.assign
|
38
|
+
_extends = Object.assign ? Object.assign.bind() : function (target) {
|
36
39
|
for (var i = 1; i < arguments.length; i++) {
|
37
40
|
var source = arguments[i];
|
38
41
|
|
@@ -45,13 +48,12 @@
|
|
45
48
|
|
46
49
|
return target;
|
47
50
|
};
|
48
|
-
|
49
51
|
return _extends.apply(this, arguments);
|
50
52
|
}
|
51
53
|
|
52
54
|
/**
|
53
55
|
* --------------------------------------------------------------------------
|
54
|
-
* Bootstrap (v4.6.
|
56
|
+
* Bootstrap (v4.6.2): tools/sanitizer.js
|
55
57
|
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
|
56
58
|
* --------------------------------------------------------------------------
|
57
59
|
*/
|
@@ -176,7 +178,7 @@
|
|
176
178
|
*/
|
177
179
|
|
178
180
|
var NAME = 'tooltip';
|
179
|
-
var VERSION = '4.6.
|
181
|
+
var VERSION = '4.6.2';
|
180
182
|
var DATA_KEY = 'bs.tooltip';
|
181
183
|
var EVENT_KEY = "." + DATA_KEY;
|
182
184
|
var JQUERY_NO_CONFLICT = $__default["default"].fn[NAME];
|
@@ -1,6 +1,6 @@
|
|
1
1
|
/*!
|
2
|
-
* Bootstrap util.js v4.6.
|
3
|
-
* Copyright 2011-
|
2
|
+
* Bootstrap util.js v4.6.2 (https://getbootstrap.com/)
|
3
|
+
* Copyright 2011-2022 The Bootstrap Authors (https://github.com/twbs/bootstrap/graphs/contributors)
|
4
4
|
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
|
5
5
|
*/
|
6
6
|
(function (global, factory) {
|
@@ -15,7 +15,7 @@
|
|
15
15
|
|
16
16
|
/**
|
17
17
|
* --------------------------------------------------------------------------
|
18
|
-
* Bootstrap (v4.6.
|
18
|
+
* Bootstrap (v4.6.2): util.js
|
19
19
|
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
|
20
20
|
* --------------------------------------------------------------------------
|
21
21
|
*/
|
@@ -1,12 +1,12 @@
|
|
1
1
|
//= require ./bootstrap/util
|
2
|
+
//= require ./bootstrap/alert
|
3
|
+
//= require ./bootstrap/button
|
4
|
+
//= require ./bootstrap/carousel
|
5
|
+
//= require ./bootstrap/collapse
|
6
|
+
//= require ./bootstrap/dropdown
|
7
|
+
//= require ./bootstrap/modal
|
2
8
|
//= require ./bootstrap/tooltip
|
3
9
|
//= require ./bootstrap/popover
|
4
|
-
//= require ./bootstrap/collapse
|
5
10
|
//= require ./bootstrap/scrollspy
|
6
|
-
//= require ./bootstrap/button
|
7
|
-
//= require ./bootstrap/modal
|
8
11
|
//= require ./bootstrap/tab
|
9
|
-
//= require ./bootstrap/dropdown
|
10
|
-
//= require ./bootstrap/carousel
|
11
|
-
//= require ./bootstrap/alert
|
12
12
|
//= require ./bootstrap/toast
|