mirror of
https://github.com/DanielnetoDotCom/YouPHPTube
synced 2025-10-06 03:50:04 +02:00
also npm update
This commit is contained in:
parent
b6d47e94c8
commit
65f15c7e46
2882 changed files with 382239 additions and 10785 deletions
2
node_modules/bootstrap/js/src/base-component.js
generated
vendored
2
node_modules/bootstrap/js/src/base-component.js
generated
vendored
|
@ -14,7 +14,7 @@ import { executeAfterTransition, getElement } from './util/index.js'
|
|||
* Constants
|
||||
*/
|
||||
|
||||
const VERSION = '5.3.1'
|
||||
const VERSION = '5.3.2'
|
||||
|
||||
/**
|
||||
* Class definition
|
||||
|
|
4
node_modules/bootstrap/js/src/dom/selector-engine.js
generated
vendored
4
node_modules/bootstrap/js/src/dom/selector-engine.js
generated
vendored
|
@ -26,10 +26,10 @@ const getSelector = element => {
|
|||
hrefAttribute = `#${hrefAttribute.split('#')[1]}`
|
||||
}
|
||||
|
||||
selector = hrefAttribute && hrefAttribute !== '#' ? hrefAttribute.trim() : null
|
||||
selector = hrefAttribute && hrefAttribute !== '#' ? parseSelector(hrefAttribute.trim()) : null
|
||||
}
|
||||
|
||||
return parseSelector(selector)
|
||||
return selector
|
||||
}
|
||||
|
||||
const SelectorEngine = {
|
||||
|
|
2
node_modules/bootstrap/js/src/tab.js
generated
vendored
2
node_modules/bootstrap/js/src/tab.js
generated
vendored
|
@ -40,7 +40,7 @@ const CLASS_DROPDOWN = 'dropdown'
|
|||
|
||||
const SELECTOR_DROPDOWN_TOGGLE = '.dropdown-toggle'
|
||||
const SELECTOR_DROPDOWN_MENU = '.dropdown-menu'
|
||||
const NOT_SELECTOR_DROPDOWN_TOGGLE = ':not(.dropdown-toggle)'
|
||||
const NOT_SELECTOR_DROPDOWN_TOGGLE = `:not(${SELECTOR_DROPDOWN_TOGGLE})`
|
||||
|
||||
const SELECTOR_TAB_PANEL = '.list-group, .nav, [role="tablist"]'
|
||||
const SELECTOR_OUTER = '.nav-item, .list-group-item'
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue