bootstrap 5.2.2 → 5.2.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.
- checksums.yaml +4 -4
- data/.github/workflows/ci.yml +55 -0
- data/README.md +1 -1
- data/assets/javascripts/bootstrap/alert.js +2 -2
- data/assets/javascripts/bootstrap/base-component.js +3 -3
- data/assets/javascripts/bootstrap/button.js +2 -2
- data/assets/javascripts/bootstrap/carousel.js +2 -2
- data/assets/javascripts/bootstrap/collapse.js +2 -2
- data/assets/javascripts/bootstrap/dom/data.js +2 -2
- data/assets/javascripts/bootstrap/dom/event-handler.js +2 -2
- data/assets/javascripts/bootstrap/dom/manipulator.js +2 -2
- data/assets/javascripts/bootstrap/dom/selector-engine.js +2 -2
- data/assets/javascripts/bootstrap/dropdown.js +2 -2
- data/assets/javascripts/bootstrap/modal.js +2 -2
- data/assets/javascripts/bootstrap/offcanvas.js +2 -2
- data/assets/javascripts/bootstrap/popover.js +2 -2
- data/assets/javascripts/bootstrap/scrollspy.js +2 -2
- data/assets/javascripts/bootstrap/tab.js +2 -2
- data/assets/javascripts/bootstrap/toast.js +2 -2
- data/assets/javascripts/bootstrap/tooltip.js +10 -19
- data/assets/javascripts/bootstrap/util/backdrop.js +2 -2
- data/assets/javascripts/bootstrap/util/component-functions.js +2 -2
- data/assets/javascripts/bootstrap/util/config.js +2 -2
- data/assets/javascripts/bootstrap/util/focustrap.js +2 -2
- data/assets/javascripts/bootstrap/util/index.js +2 -2
- data/assets/javascripts/bootstrap/util/sanitizer.js +2 -2
- data/assets/javascripts/bootstrap/util/scrollbar.js +2 -2
- data/assets/javascripts/bootstrap/util/swipe.js +2 -2
- data/assets/javascripts/bootstrap/util/template-factory.js +2 -2
- data/assets/javascripts/bootstrap-sprockets.js +10 -10
- data/assets/javascripts/bootstrap.js +37 -46
- data/assets/javascripts/bootstrap.min.js +2 -2
- data/assets/stylesheets/bootstrap/_carousel.scss +0 -3
- data/assets/stylesheets/bootstrap/_functions.scss +1 -1
- data/assets/stylesheets/bootstrap/bootstrap-utilities.scss +3 -0
- data/assets/stylesheets/bootstrap/mixins/_banner.scss +1 -1
- data/lib/bootstrap/version.rb +2 -2
- data/tasks/updater/network.rb +2 -2
- data/test/gemfiles/rails_5_2.gemfile +8 -0
- data/test/gemfiles/rails_7_0.gemfile +7 -0
- data/test/test_helper.rb +3 -2
- metadata +7 -3
- data/.travis.yml +0 -32
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5b9b76b3a8107fa8c73e4b760273a561e05e569e150a086196903c4ccb49ddbc
|
4
|
+
data.tar.gz: 116115a60a5315e39b3bb6d5df9fe3568d48c139682d17f6de88b48762ddb06b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: '054324796db1631c6ad2dc41451f8b39dfcede1a4526a665c87d51549190dba106641fc4cf4716bd3e28f3332039369eb37f0806a5a4617acb08617373ea2bb3'
|
7
|
+
data.tar.gz: c53409f131522034f9d02b5d4b18b6f69460be5ccfb232639132f5939ac63b3aa2ee7de91c6ac119c6c656ca91f2656579e20e9e50be6568564da9c3aa5f8263
|
@@ -0,0 +1,55 @@
|
|
1
|
+
name: CI
|
2
|
+
|
3
|
+
on:
|
4
|
+
push:
|
5
|
+
pull_request:
|
6
|
+
|
7
|
+
jobs:
|
8
|
+
test:
|
9
|
+
env:
|
10
|
+
BUNDLE_GEMFILE: ${{ matrix.gemfile }}
|
11
|
+
strategy:
|
12
|
+
fail-fast: false
|
13
|
+
matrix:
|
14
|
+
ruby_version: ['2.5', '2.6', '2.7', '3.0', '3.1']
|
15
|
+
gemfile:
|
16
|
+
- test/gemfiles/rails_5_0.gemfile
|
17
|
+
- test/gemfiles/rails_5_1.gemfile
|
18
|
+
- test/gemfiles/rails_5_2.gemfile
|
19
|
+
- test/gemfiles/rails_6_0.gemfile
|
20
|
+
- test/gemfiles/rails_6_1.gemfile
|
21
|
+
- test/gemfiles/rails_7_0.gemfile
|
22
|
+
include:
|
23
|
+
- ruby_version: '2.5'
|
24
|
+
gemfile: test/gemfiles/rails_4_2.gemfile
|
25
|
+
- ruby_version: '2.6'
|
26
|
+
gemfile: test/gemfiles/rails_4_2.gemfile
|
27
|
+
exclude:
|
28
|
+
- ruby_version: '2.5'
|
29
|
+
gemfile: test/gemfiles/rails_7_0.gemfile
|
30
|
+
- ruby_version: '2.6'
|
31
|
+
gemfile: test/gemfiles/rails_7_0.gemfile
|
32
|
+
- ruby_version: '3.0'
|
33
|
+
gemfile: test/gemfiles/rails_5_0.gemfile
|
34
|
+
- ruby_version: '3.0'
|
35
|
+
gemfile: test/gemfiles/rails_5_1.gemfile
|
36
|
+
- ruby_version: '3.0'
|
37
|
+
gemfile: test/gemfiles/rails_5_2.gemfile
|
38
|
+
- ruby_version: '3.1'
|
39
|
+
gemfile: test/gemfiles/rails_5_0.gemfile
|
40
|
+
- ruby_version: '3.1'
|
41
|
+
gemfile: test/gemfiles/rails_5_1.gemfile
|
42
|
+
- ruby_version: '3.1'
|
43
|
+
gemfile: test/gemfiles/rails_5_2.gemfile
|
44
|
+
- ruby_version: '3.1'
|
45
|
+
gemfile: test/gemfiles/rails_6_0.gemfile
|
46
|
+
runs-on: ubuntu-latest
|
47
|
+
steps:
|
48
|
+
- uses: actions/checkout@v3
|
49
|
+
- name: Set up Ruby
|
50
|
+
uses: ruby/setup-ruby@v1
|
51
|
+
with:
|
52
|
+
ruby-version: ${{ matrix.ruby_version }}
|
53
|
+
bundler-cache: true # 'bundle install' and cache
|
54
|
+
- name: Build and test with Rake
|
55
|
+
run: bundle exec rake --trace
|
data/README.md
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
# Bootstrap Ruby Gem [](https://github.com/twbs/bootstrap-rubygem/actions/workflows/ci.yml) [](https://rubygems.org/gems/bootstrap)
|
2
2
|
|
3
3
|
[Bootstrap 5][bootstrap-home] ruby gem for Ruby on Rails (*Sprockets*/*Importmaps*) and Hanami (formerly Lotus).
|
4
4
|
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Bootstrap alert.js v5.2.
|
2
|
+
* Bootstrap alert.js v5.2.3 (https://getbootstrap.com/)
|
3
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
|
*/
|
@@ -16,7 +16,7 @@
|
|
16
16
|
|
17
17
|
/**
|
18
18
|
* --------------------------------------------------------------------------
|
19
|
-
* Bootstrap (v5.2.
|
19
|
+
* Bootstrap (v5.2.3): alert.js
|
20
20
|
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
|
21
21
|
* --------------------------------------------------------------------------
|
22
22
|
*/
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Bootstrap base-component.js v5.2.
|
2
|
+
* Bootstrap base-component.js v5.2.3 (https://getbootstrap.com/)
|
3
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
|
*/
|
@@ -17,7 +17,7 @@
|
|
17
17
|
|
18
18
|
/**
|
19
19
|
* --------------------------------------------------------------------------
|
20
|
-
* Bootstrap (v5.2.
|
20
|
+
* Bootstrap (v5.2.3): base-component.js
|
21
21
|
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
|
22
22
|
* --------------------------------------------------------------------------
|
23
23
|
*/
|
@@ -25,7 +25,7 @@
|
|
25
25
|
* Constants
|
26
26
|
*/
|
27
27
|
|
28
|
-
const VERSION = '5.2.
|
28
|
+
const VERSION = '5.2.3';
|
29
29
|
/**
|
30
30
|
* Class definition
|
31
31
|
*/
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Bootstrap button.js v5.2.
|
2
|
+
* Bootstrap button.js v5.2.3 (https://getbootstrap.com/)
|
3
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
|
*/
|
@@ -16,7 +16,7 @@
|
|
16
16
|
|
17
17
|
/**
|
18
18
|
* --------------------------------------------------------------------------
|
19
|
-
* Bootstrap (v5.2.
|
19
|
+
* Bootstrap (v5.2.3): button.js
|
20
20
|
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
|
21
21
|
* --------------------------------------------------------------------------
|
22
22
|
*/
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Bootstrap carousel.js v5.2.
|
2
|
+
* Bootstrap carousel.js v5.2.3 (https://getbootstrap.com/)
|
3
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
|
*/
|
@@ -19,7 +19,7 @@
|
|
19
19
|
|
20
20
|
/**
|
21
21
|
* --------------------------------------------------------------------------
|
22
|
-
* Bootstrap (v5.2.
|
22
|
+
* Bootstrap (v5.2.3): carousel.js
|
23
23
|
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
|
24
24
|
* --------------------------------------------------------------------------
|
25
25
|
*/
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Bootstrap collapse.js v5.2.
|
2
|
+
* Bootstrap collapse.js v5.2.3 (https://getbootstrap.com/)
|
3
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
|
*/
|
@@ -17,7 +17,7 @@
|
|
17
17
|
|
18
18
|
/**
|
19
19
|
* --------------------------------------------------------------------------
|
20
|
-
* Bootstrap (v5.2.
|
20
|
+
* Bootstrap (v5.2.3): collapse.js
|
21
21
|
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
|
22
22
|
* --------------------------------------------------------------------------
|
23
23
|
*/
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Bootstrap data.js v5.2.
|
2
|
+
* Bootstrap data.js v5.2.3 (https://getbootstrap.com/)
|
3
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
|
*/
|
@@ -11,7 +11,7 @@
|
|
11
11
|
|
12
12
|
/**
|
13
13
|
* --------------------------------------------------------------------------
|
14
|
-
* Bootstrap (v5.2.
|
14
|
+
* Bootstrap (v5.2.3): dom/data.js
|
15
15
|
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
|
16
16
|
* --------------------------------------------------------------------------
|
17
17
|
*/
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Bootstrap event-handler.js v5.2.
|
2
|
+
* Bootstrap event-handler.js v5.2.3 (https://getbootstrap.com/)
|
3
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
|
*/
|
@@ -11,7 +11,7 @@
|
|
11
11
|
|
12
12
|
/**
|
13
13
|
* --------------------------------------------------------------------------
|
14
|
-
* Bootstrap (v5.2.
|
14
|
+
* Bootstrap (v5.2.3): dom/event-handler.js
|
15
15
|
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
|
16
16
|
* --------------------------------------------------------------------------
|
17
17
|
*/
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Bootstrap manipulator.js v5.2.
|
2
|
+
* Bootstrap manipulator.js v5.2.3 (https://getbootstrap.com/)
|
3
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
|
*/
|
@@ -11,7 +11,7 @@
|
|
11
11
|
|
12
12
|
/**
|
13
13
|
* --------------------------------------------------------------------------
|
14
|
-
* Bootstrap (v5.2.
|
14
|
+
* Bootstrap (v5.2.3): dom/manipulator.js
|
15
15
|
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
|
16
16
|
* --------------------------------------------------------------------------
|
17
17
|
*/
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Bootstrap selector-engine.js v5.2.
|
2
|
+
* Bootstrap selector-engine.js v5.2.3 (https://getbootstrap.com/)
|
3
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
|
*/
|
@@ -11,7 +11,7 @@
|
|
11
11
|
|
12
12
|
/**
|
13
13
|
* --------------------------------------------------------------------------
|
14
|
-
* Bootstrap (v5.2.
|
14
|
+
* Bootstrap (v5.2.3): dom/selector-engine.js
|
15
15
|
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
|
16
16
|
* --------------------------------------------------------------------------
|
17
17
|
*/
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Bootstrap dropdown.js v5.2.
|
2
|
+
* Bootstrap dropdown.js v5.2.3 (https://getbootstrap.com/)
|
3
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
|
*/
|
@@ -37,7 +37,7 @@
|
|
37
37
|
|
38
38
|
/**
|
39
39
|
* --------------------------------------------------------------------------
|
40
|
-
* Bootstrap (v5.2.
|
40
|
+
* Bootstrap (v5.2.3): dropdown.js
|
41
41
|
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
|
42
42
|
* --------------------------------------------------------------------------
|
43
43
|
*/
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Bootstrap modal.js v5.2.
|
2
|
+
* Bootstrap modal.js v5.2.3 (https://getbootstrap.com/)
|
3
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
|
*/
|
@@ -20,7 +20,7 @@
|
|
20
20
|
|
21
21
|
/**
|
22
22
|
* --------------------------------------------------------------------------
|
23
|
-
* Bootstrap (v5.2.
|
23
|
+
* Bootstrap (v5.2.3): modal.js
|
24
24
|
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
|
25
25
|
* --------------------------------------------------------------------------
|
26
26
|
*/
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Bootstrap offcanvas.js v5.2.
|
2
|
+
* Bootstrap offcanvas.js v5.2.3 (https://getbootstrap.com/)
|
3
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
|
*/
|
@@ -20,7 +20,7 @@
|
|
20
20
|
|
21
21
|
/**
|
22
22
|
* --------------------------------------------------------------------------
|
23
|
-
* Bootstrap (v5.2.
|
23
|
+
* Bootstrap (v5.2.3): offcanvas.js
|
24
24
|
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
|
25
25
|
* --------------------------------------------------------------------------
|
26
26
|
*/
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Bootstrap popover.js v5.2.
|
2
|
+
* Bootstrap popover.js v5.2.3 (https://getbootstrap.com/)
|
3
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
|
*/
|
@@ -15,7 +15,7 @@
|
|
15
15
|
|
16
16
|
/**
|
17
17
|
* --------------------------------------------------------------------------
|
18
|
-
* Bootstrap (v5.2.
|
18
|
+
* Bootstrap (v5.2.3): popover.js
|
19
19
|
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
|
20
20
|
* --------------------------------------------------------------------------
|
21
21
|
*/
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Bootstrap scrollspy.js v5.2.
|
2
|
+
* Bootstrap scrollspy.js v5.2.3 (https://getbootstrap.com/)
|
3
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
|
*/
|
@@ -17,7 +17,7 @@
|
|
17
17
|
|
18
18
|
/**
|
19
19
|
* --------------------------------------------------------------------------
|
20
|
-
* Bootstrap (v5.2.
|
20
|
+
* Bootstrap (v5.2.3): scrollspy.js
|
21
21
|
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
|
22
22
|
* --------------------------------------------------------------------------
|
23
23
|
*/
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Bootstrap tab.js v5.2.
|
2
|
+
* Bootstrap tab.js v5.2.3 (https://getbootstrap.com/)
|
3
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
|
*/
|
@@ -17,7 +17,7 @@
|
|
17
17
|
|
18
18
|
/**
|
19
19
|
* --------------------------------------------------------------------------
|
20
|
-
* Bootstrap (v5.2.
|
20
|
+
* Bootstrap (v5.2.3): tab.js
|
21
21
|
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
|
22
22
|
* --------------------------------------------------------------------------
|
23
23
|
*/
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Bootstrap toast.js v5.2.
|
2
|
+
* Bootstrap toast.js v5.2.3 (https://getbootstrap.com/)
|
3
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
|
*/
|
@@ -16,7 +16,7 @@
|
|
16
16
|
|
17
17
|
/**
|
18
18
|
* --------------------------------------------------------------------------
|
19
|
-
* Bootstrap (v5.2.
|
19
|
+
* Bootstrap (v5.2.3): toast.js
|
20
20
|
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
|
21
21
|
* --------------------------------------------------------------------------
|
22
22
|
*/
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Bootstrap tooltip.js v5.2.
|
2
|
+
* Bootstrap tooltip.js v5.2.3 (https://getbootstrap.com/)
|
3
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
|
*/
|
@@ -37,7 +37,7 @@
|
|
37
37
|
|
38
38
|
/**
|
39
39
|
* --------------------------------------------------------------------------
|
40
|
-
* Bootstrap (v5.2.
|
40
|
+
* Bootstrap (v5.2.3): tooltip.js
|
41
41
|
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
|
42
42
|
* --------------------------------------------------------------------------
|
43
43
|
*/
|
@@ -187,10 +187,6 @@
|
|
187
187
|
clearTimeout(this._timeout);
|
188
188
|
EventHandler__default.default.off(this._element.closest(SELECTOR_MODAL), EVENT_MODAL_HIDE, this._hideModalHandler);
|
189
189
|
|
190
|
-
if (this.tip) {
|
191
|
-
this.tip.remove();
|
192
|
-
}
|
193
|
-
|
194
190
|
if (this._element.getAttribute('data-bs-original-title')) {
|
195
191
|
this._element.setAttribute('title', this._element.getAttribute('data-bs-original-title'));
|
196
192
|
}
|
@@ -219,10 +215,7 @@
|
|
219
215
|
} // todo v6 remove this OR make it optional
|
220
216
|
|
221
217
|
|
222
|
-
|
223
|
-
this.tip.remove();
|
224
|
-
this.tip = null;
|
225
|
-
}
|
218
|
+
this._disposePopper();
|
226
219
|
|
227
220
|
const tip = this._getTipElement();
|
228
221
|
|
@@ -237,12 +230,7 @@
|
|
237
230
|
EventHandler__default.default.trigger(this._element, this.constructor.eventName(EVENT_INSERTED));
|
238
231
|
}
|
239
232
|
|
240
|
-
|
241
|
-
this._popper.update();
|
242
|
-
} else {
|
243
|
-
this._popper = this._createPopper(tip);
|
244
|
-
}
|
245
|
-
|
233
|
+
this._popper = this._createPopper(tip);
|
246
234
|
tip.classList.add(CLASS_NAME_SHOW); // If this is a touch-enabled device we add extra
|
247
235
|
// empty mouseover listeners to the body's immediate children;
|
248
236
|
// only needed because of broken event delegation on iOS
|
@@ -300,14 +288,12 @@
|
|
300
288
|
}
|
301
289
|
|
302
290
|
if (!this._isHovered) {
|
303
|
-
|
291
|
+
this._disposePopper();
|
304
292
|
}
|
305
293
|
|
306
294
|
this._element.removeAttribute('aria-describedby');
|
307
295
|
|
308
296
|
EventHandler__default.default.trigger(this._element, this.constructor.eventName(EVENT_HIDDEN));
|
309
|
-
|
310
|
-
this._disposePopper();
|
311
297
|
};
|
312
298
|
|
313
299
|
this._queueCallback(complete, this.tip, this._isAnimated());
|
@@ -624,6 +610,11 @@
|
|
624
610
|
|
625
611
|
this._popper = null;
|
626
612
|
}
|
613
|
+
|
614
|
+
if (this.tip) {
|
615
|
+
this.tip.remove();
|
616
|
+
this.tip = null;
|
617
|
+
}
|
627
618
|
} // Static
|
628
619
|
|
629
620
|
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Bootstrap backdrop.js v5.2.
|
2
|
+
* Bootstrap backdrop.js v5.2.3 (https://getbootstrap.com/)
|
3
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
|
*/
|
@@ -16,7 +16,7 @@
|
|
16
16
|
|
17
17
|
/**
|
18
18
|
* --------------------------------------------------------------------------
|
19
|
-
* Bootstrap (v5.2.
|
19
|
+
* Bootstrap (v5.2.3): util/backdrop.js
|
20
20
|
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
|
21
21
|
* --------------------------------------------------------------------------
|
22
22
|
*/
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Bootstrap component-functions.js v5.2.
|
2
|
+
* Bootstrap component-functions.js v5.2.3 (https://getbootstrap.com/)
|
3
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
|
*/
|
@@ -15,7 +15,7 @@
|
|
15
15
|
|
16
16
|
/**
|
17
17
|
* --------------------------------------------------------------------------
|
18
|
-
* Bootstrap (v5.2.
|
18
|
+
* Bootstrap (v5.2.3): util/component-functions.js
|
19
19
|
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
|
20
20
|
* --------------------------------------------------------------------------
|
21
21
|
*/
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Bootstrap config.js v5.2.
|
2
|
+
* Bootstrap config.js v5.2.3 (https://getbootstrap.com/)
|
3
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
|
*/
|
@@ -15,7 +15,7 @@
|
|
15
15
|
|
16
16
|
/**
|
17
17
|
* --------------------------------------------------------------------------
|
18
|
-
* Bootstrap (v5.2.
|
18
|
+
* Bootstrap (v5.2.3): util/config.js
|
19
19
|
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
|
20
20
|
* --------------------------------------------------------------------------
|
21
21
|
*/
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Bootstrap focustrap.js v5.2.
|
2
|
+
* Bootstrap focustrap.js v5.2.3 (https://getbootstrap.com/)
|
3
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
|
*/
|
@@ -17,7 +17,7 @@
|
|
17
17
|
|
18
18
|
/**
|
19
19
|
* --------------------------------------------------------------------------
|
20
|
-
* Bootstrap (v5.2.
|
20
|
+
* Bootstrap (v5.2.3): util/focustrap.js
|
21
21
|
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
|
22
22
|
* --------------------------------------------------------------------------
|
23
23
|
*/
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Bootstrap index.js v5.2.
|
2
|
+
* Bootstrap index.js v5.2.3 (https://getbootstrap.com/)
|
3
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
|
*/
|
@@ -11,7 +11,7 @@
|
|
11
11
|
|
12
12
|
/**
|
13
13
|
* --------------------------------------------------------------------------
|
14
|
-
* Bootstrap (v5.2.
|
14
|
+
* Bootstrap (v5.2.3): util/index.js
|
15
15
|
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
|
16
16
|
* --------------------------------------------------------------------------
|
17
17
|
*/
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Bootstrap sanitizer.js v5.2.
|
2
|
+
* Bootstrap sanitizer.js v5.2.3 (https://getbootstrap.com/)
|
3
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
|
*/
|
@@ -11,7 +11,7 @@
|
|
11
11
|
|
12
12
|
/**
|
13
13
|
* --------------------------------------------------------------------------
|
14
|
-
* Bootstrap (v5.2.
|
14
|
+
* Bootstrap (v5.2.3): util/sanitizer.js
|
15
15
|
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
|
16
16
|
* --------------------------------------------------------------------------
|
17
17
|
*/
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Bootstrap scrollbar.js v5.2.
|
2
|
+
* Bootstrap scrollbar.js v5.2.3 (https://getbootstrap.com/)
|
3
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
|
*/
|
@@ -16,7 +16,7 @@
|
|
16
16
|
|
17
17
|
/**
|
18
18
|
* --------------------------------------------------------------------------
|
19
|
-
* Bootstrap (v5.2.
|
19
|
+
* Bootstrap (v5.2.3): util/scrollBar.js
|
20
20
|
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
|
21
21
|
* --------------------------------------------------------------------------
|
22
22
|
*/
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Bootstrap swipe.js v5.2.
|
2
|
+
* Bootstrap swipe.js v5.2.3 (https://getbootstrap.com/)
|
3
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
|
*/
|
@@ -16,7 +16,7 @@
|
|
16
16
|
|
17
17
|
/**
|
18
18
|
* --------------------------------------------------------------------------
|
19
|
-
* Bootstrap (v5.2.
|
19
|
+
* Bootstrap (v5.2.3): util/swipe.js
|
20
20
|
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
|
21
21
|
* --------------------------------------------------------------------------
|
22
22
|
*/
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/*!
|
2
|
-
* Bootstrap template-factory.js v5.2.
|
2
|
+
* Bootstrap template-factory.js v5.2.3 (https://getbootstrap.com/)
|
3
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
|
*/
|
@@ -16,7 +16,7 @@
|
|
16
16
|
|
17
17
|
/**
|
18
18
|
* --------------------------------------------------------------------------
|
19
|
-
* Bootstrap (v5.2.
|
19
|
+
* Bootstrap (v5.2.3): util/template-factory.js
|
20
20
|
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
|
21
21
|
* --------------------------------------------------------------------------
|
22
22
|
*/
|
@@ -7,22 +7,22 @@
|
|
7
7
|
//= require ./bootstrap/base-component
|
8
8
|
//= require ./bootstrap/util/component-functions
|
9
9
|
//= require ./bootstrap/alert
|
10
|
+
//= require ./bootstrap/button
|
10
11
|
//= require ./bootstrap/dom/selector-engine
|
12
|
+
//= require ./bootstrap/util/swipe
|
13
|
+
//= require ./bootstrap/carousel
|
14
|
+
//= require ./bootstrap/collapse
|
15
|
+
//= require ./bootstrap/dropdown
|
16
|
+
//= require ./bootstrap/util/backdrop
|
11
17
|
//= require ./bootstrap/util/focustrap
|
18
|
+
//= require ./bootstrap/util/scrollbar
|
19
|
+
//= require ./bootstrap/modal
|
20
|
+
//= require ./bootstrap/offcanvas
|
12
21
|
//= require ./bootstrap/util/sanitizer
|
13
22
|
//= require ./bootstrap/util/template-factory
|
14
23
|
//= require ./bootstrap/tooltip
|
15
24
|
//= require ./bootstrap/popover
|
16
|
-
//= require ./bootstrap/util/scrollbar
|
17
|
-
//= require ./bootstrap/util/swipe
|
18
|
-
//= require ./bootstrap/util/backdrop
|
19
|
-
//= require ./bootstrap/button
|
20
|
-
//= require ./bootstrap/modal
|
21
|
-
//= require ./bootstrap/toast
|
22
|
-
//= require ./bootstrap/offcanvas
|
23
|
-
//= require ./bootstrap/collapse
|
24
25
|
//= require ./bootstrap/scrollspy
|
25
|
-
//= require ./bootstrap/carousel
|
26
26
|
//= require ./bootstrap/tab
|
27
|
-
//= require ./bootstrap/
|
27
|
+
//= require ./bootstrap/toast
|
28
28
|
//= require ./bootstrap-global-this-undefine
|