aboutsummaryrefslogtreecommitdiff
path: root/js/src
diff options
context:
space:
mode:
authorXhmikosR <[email protected]>2020-09-29 18:33:00 +0300
committerGitHub <[email protected]>2020-09-29 18:33:00 +0300
commitb083c9639fd9012e5cba57d6c4088d43b3c3e57d (patch)
tree7a945ab82b979987d298e2afd807f77216c3c453 /js/src
parentd862a9f27657ec95a0a49e159236824141f0c9ae (diff)
downloadbootstrap-5.0.0-alpha2.tar.xz
bootstrap-5.0.0-alpha2.zip
Prepare v5.0.0-alpha2. (#31748)v5.0.0-alpha2
Diffstat (limited to 'js/src')
-rw-r--r--js/src/alert.js4
-rw-r--r--js/src/button.js4
-rw-r--r--js/src/carousel.js4
-rw-r--r--js/src/collapse.js4
-rw-r--r--js/src/dom/data.js2
-rw-r--r--js/src/dom/event-handler.js2
-rw-r--r--js/src/dom/manipulator.js2
-rw-r--r--js/src/dom/polyfill.js2
-rw-r--r--js/src/dom/selector-engine.js2
-rw-r--r--js/src/dropdown.js4
-rw-r--r--js/src/modal.js4
-rw-r--r--js/src/popover.js4
-rw-r--r--js/src/scrollspy.js4
-rw-r--r--js/src/tab.js4
-rw-r--r--js/src/toast.js4
-rw-r--r--js/src/tooltip.js4
-rw-r--r--js/src/util/index.js2
-rw-r--r--js/src/util/sanitizer.js2
18 files changed, 29 insertions, 29 deletions
diff --git a/js/src/alert.js b/js/src/alert.js
index 324dc700a..b337fbc57 100644
--- a/js/src/alert.js
+++ b/js/src/alert.js
@@ -1,6 +1,6 @@
/**
* --------------------------------------------------------------------------
- * Bootstrap (v5.0.0-alpha1): alert.js
+ * Bootstrap (v5.0.0-alpha2): alert.js
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
* --------------------------------------------------------------------------
*/
@@ -22,7 +22,7 @@ import EventHandler from './dom/event-handler'
*/
const NAME = 'alert'
-const VERSION = '5.0.0-alpha1'
+const VERSION = '5.0.0-alpha2'
const DATA_KEY = 'bs.alert'
const EVENT_KEY = `.${DATA_KEY}`
const DATA_API_KEY = '.data-api'
diff --git a/js/src/button.js b/js/src/button.js
index 23c1a0db6..f80b5e28c 100644
--- a/js/src/button.js
+++ b/js/src/button.js
@@ -1,6 +1,6 @@
/**
* --------------------------------------------------------------------------
- * Bootstrap (v5.0.0-alpha1): button.js
+ * Bootstrap (v5.0.0-alpha2): button.js
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
* --------------------------------------------------------------------------
*/
@@ -16,7 +16,7 @@ import EventHandler from './dom/event-handler'
*/
const NAME = 'button'
-const VERSION = '5.0.0-alpha1'
+const VERSION = '5.0.0-alpha2'
const DATA_KEY = 'bs.button'
const EVENT_KEY = `.${DATA_KEY}`
const DATA_API_KEY = '.data-api'
diff --git a/js/src/carousel.js b/js/src/carousel.js
index b40410cd7..bd5f3d204 100644
--- a/js/src/carousel.js
+++ b/js/src/carousel.js
@@ -1,6 +1,6 @@
/**
* --------------------------------------------------------------------------
- * Bootstrap (v5.0.0-alpha1): carousel.js
+ * Bootstrap (v5.0.0-alpha2): carousel.js
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
* --------------------------------------------------------------------------
*/
@@ -28,7 +28,7 @@ import SelectorEngine from './dom/selector-engine'
*/
const NAME = 'carousel'
-const VERSION = '5.0.0-alpha1'
+const VERSION = '5.0.0-alpha2'
const DATA_KEY = 'bs.carousel'
const EVENT_KEY = `.${DATA_KEY}`
const DATA_API_KEY = '.data-api'
diff --git a/js/src/collapse.js b/js/src/collapse.js
index e569d9981..f90238bc5 100644
--- a/js/src/collapse.js
+++ b/js/src/collapse.js
@@ -1,6 +1,6 @@
/**
* --------------------------------------------------------------------------
- * Bootstrap (v5.0.0-alpha1): collapse.js
+ * Bootstrap (v5.0.0-alpha2): collapse.js
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
* --------------------------------------------------------------------------
*/
@@ -28,7 +28,7 @@ import SelectorEngine from './dom/selector-engine'
*/
const NAME = 'collapse'
-const VERSION = '5.0.0-alpha1'
+const VERSION = '5.0.0-alpha2'
const DATA_KEY = 'bs.collapse'
const EVENT_KEY = `.${DATA_KEY}`
const DATA_API_KEY = '.data-api'
diff --git a/js/src/dom/data.js b/js/src/dom/data.js
index af23aa2b5..4254fc63b 100644
--- a/js/src/dom/data.js
+++ b/js/src/dom/data.js
@@ -1,6 +1,6 @@
/**
* --------------------------------------------------------------------------
- * Bootstrap (v5.0.0-alpha1): dom/data.js
+ * Bootstrap (v5.0.0-alpha2): dom/data.js
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
* --------------------------------------------------------------------------
*/
diff --git a/js/src/dom/event-handler.js b/js/src/dom/event-handler.js
index e909805f0..dced8d9de 100644
--- a/js/src/dom/event-handler.js
+++ b/js/src/dom/event-handler.js
@@ -1,6 +1,6 @@
/**
* --------------------------------------------------------------------------
- * Bootstrap (v5.0.0-alpha1): dom/event-handler.js
+ * Bootstrap (v5.0.0-alpha2): dom/event-handler.js
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
* --------------------------------------------------------------------------
*/
diff --git a/js/src/dom/manipulator.js b/js/src/dom/manipulator.js
index 471913e0e..a81354e78 100644
--- a/js/src/dom/manipulator.js
+++ b/js/src/dom/manipulator.js
@@ -1,6 +1,6 @@
/**
* --------------------------------------------------------------------------
- * Bootstrap (v5.0.0-alpha1): dom/manipulator.js
+ * Bootstrap (v5.0.0-alpha2): dom/manipulator.js
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
* --------------------------------------------------------------------------
*/
diff --git a/js/src/dom/polyfill.js b/js/src/dom/polyfill.js
index c239842ee..55bc5d694 100644
--- a/js/src/dom/polyfill.js
+++ b/js/src/dom/polyfill.js
@@ -2,7 +2,7 @@
/**
* --------------------------------------------------------------------------
- * Bootstrap (v5.0.0-alpha1): dom/polyfill.js
+ * Bootstrap (v5.0.0-alpha2): dom/polyfill.js
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
* --------------------------------------------------------------------------
*/
diff --git a/js/src/dom/selector-engine.js b/js/src/dom/selector-engine.js
index 4a508b97a..481f5a100 100644
--- a/js/src/dom/selector-engine.js
+++ b/js/src/dom/selector-engine.js
@@ -1,6 +1,6 @@
/**
* --------------------------------------------------------------------------
- * Bootstrap (v5.0.0-alpha1): dom/selector-engine.js
+ * Bootstrap (v5.0.0-alpha2): dom/selector-engine.js
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
* --------------------------------------------------------------------------
*/
diff --git a/js/src/dropdown.js b/js/src/dropdown.js
index 4af48cadb..37bdd1f24 100644
--- a/js/src/dropdown.js
+++ b/js/src/dropdown.js
@@ -1,6 +1,6 @@
/**
* --------------------------------------------------------------------------
- * Bootstrap (v5.0.0-alpha1): dropdown.js
+ * Bootstrap (v5.0.0-alpha2): dropdown.js
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
* --------------------------------------------------------------------------
*/
@@ -26,7 +26,7 @@ import SelectorEngine from './dom/selector-engine'
*/
const NAME = 'dropdown'
-const VERSION = '5.0.0-alpha1'
+const VERSION = '5.0.0-alpha2'
const DATA_KEY = 'bs.dropdown'
const EVENT_KEY = `.${DATA_KEY}`
const DATA_API_KEY = '.data-api'
diff --git a/js/src/modal.js b/js/src/modal.js
index 1285793f3..4c1db3d5c 100644
--- a/js/src/modal.js
+++ b/js/src/modal.js
@@ -1,6 +1,6 @@
/**
* --------------------------------------------------------------------------
- * Bootstrap (v5.0.0-alpha1): modal.js
+ * Bootstrap (v5.0.0-alpha2): modal.js
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
* --------------------------------------------------------------------------
*/
@@ -27,7 +27,7 @@ import SelectorEngine from './dom/selector-engine'
*/
const NAME = 'modal'
-const VERSION = '5.0.0-alpha1'
+const VERSION = '5.0.0-alpha2'
const DATA_KEY = 'bs.modal'
const EVENT_KEY = `.${DATA_KEY}`
const DATA_API_KEY = '.data-api'
diff --git a/js/src/popover.js b/js/src/popover.js
index 4f8aeeb2c..54abe1f96 100644
--- a/js/src/popover.js
+++ b/js/src/popover.js
@@ -1,6 +1,6 @@
/**
* --------------------------------------------------------------------------
- * Bootstrap (v5.0.0-alpha1): popover.js
+ * Bootstrap (v5.0.0-alpha2): popover.js
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
* --------------------------------------------------------------------------
*/
@@ -17,7 +17,7 @@ import Tooltip from './tooltip'
*/
const NAME = 'popover'
-const VERSION = '5.0.0-alpha1'
+const VERSION = '5.0.0-alpha2'
const DATA_KEY = 'bs.popover'
const EVENT_KEY = `.${DATA_KEY}`
const CLASS_PREFIX = 'bs-popover'
diff --git a/js/src/scrollspy.js b/js/src/scrollspy.js
index 6c72ba3e2..d37ca923d 100644
--- a/js/src/scrollspy.js
+++ b/js/src/scrollspy.js
@@ -1,6 +1,6 @@
/**
* --------------------------------------------------------------------------
- * Bootstrap (v5.0.0-alpha1): scrollspy.js
+ * Bootstrap (v5.0.0-alpha2): scrollspy.js
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
* --------------------------------------------------------------------------
*/
@@ -24,7 +24,7 @@ import SelectorEngine from './dom/selector-engine'
*/
const NAME = 'scrollspy'
-const VERSION = '5.0.0-alpha1'
+const VERSION = '5.0.0-alpha2'
const DATA_KEY = 'bs.scrollspy'
const EVENT_KEY = `.${DATA_KEY}`
const DATA_API_KEY = '.data-api'
diff --git a/js/src/tab.js b/js/src/tab.js
index 1c1f5d28d..76895b8dd 100644
--- a/js/src/tab.js
+++ b/js/src/tab.js
@@ -1,6 +1,6 @@
/**
* --------------------------------------------------------------------------
- * Bootstrap (v5.0.0-alpha1): tab.js
+ * Bootstrap (v5.0.0-alpha2): tab.js
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
* --------------------------------------------------------------------------
*/
@@ -24,7 +24,7 @@ import SelectorEngine from './dom/selector-engine'
*/
const NAME = 'tab'
-const VERSION = '5.0.0-alpha1'
+const VERSION = '5.0.0-alpha2'
const DATA_KEY = 'bs.tab'
const EVENT_KEY = `.${DATA_KEY}`
const DATA_API_KEY = '.data-api'
diff --git a/js/src/toast.js b/js/src/toast.js
index 30f90c295..91eaba53f 100644
--- a/js/src/toast.js
+++ b/js/src/toast.js
@@ -1,6 +1,6 @@
/**
* --------------------------------------------------------------------------
- * Bootstrap (v5.0.0-alpha1): toast.js
+ * Bootstrap (v5.0.0-alpha2): toast.js
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
* --------------------------------------------------------------------------
*/
@@ -24,7 +24,7 @@ import Manipulator from './dom/manipulator'
*/
const NAME = 'toast'
-const VERSION = '5.0.0-alpha1'
+const VERSION = '5.0.0-alpha2'
const DATA_KEY = 'bs.toast'
const EVENT_KEY = `.${DATA_KEY}`
diff --git a/js/src/tooltip.js b/js/src/tooltip.js
index 1bda97e38..1203142ed 100644
--- a/js/src/tooltip.js
+++ b/js/src/tooltip.js
@@ -1,6 +1,6 @@
/**
* --------------------------------------------------------------------------
- * Bootstrap (v5.0.0-alpha1): tooltip.js
+ * Bootstrap (v5.0.0-alpha2): tooltip.js
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
* --------------------------------------------------------------------------
*/
@@ -33,7 +33,7 @@ import SelectorEngine from './dom/selector-engine'
*/
const NAME = 'tooltip'
-const VERSION = '5.0.0-alpha1'
+const VERSION = '5.0.0-alpha2'
const DATA_KEY = 'bs.tooltip'
const EVENT_KEY = `.${DATA_KEY}`
const CLASS_PREFIX = 'bs-tooltip'
diff --git a/js/src/util/index.js b/js/src/util/index.js
index d9a975554..457b2e027 100644
--- a/js/src/util/index.js
+++ b/js/src/util/index.js
@@ -1,6 +1,6 @@
/**
* --------------------------------------------------------------------------
- * Bootstrap (v5.0.0-alpha1): util/index.js
+ * Bootstrap (v5.0.0-alpha2): util/index.js
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
* --------------------------------------------------------------------------
*/
diff --git a/js/src/util/sanitizer.js b/js/src/util/sanitizer.js
index 27bdf6cb1..d50b43157 100644
--- a/js/src/util/sanitizer.js
+++ b/js/src/util/sanitizer.js
@@ -1,6 +1,6 @@
/**
* --------------------------------------------------------------------------
- * Bootstrap (v5.0.0-alpha1): util/sanitizer.js
+ * Bootstrap (v5.0.0-alpha2): util/sanitizer.js
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
* --------------------------------------------------------------------------
*/