oxidized-web 0.17.1 → 0.18.0
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.
Potentially problematic release.
This version of oxidized-web might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/.github/workflows/codeql.yml +4 -4
- data/.github/workflows/ruby.yml +1 -1
- data/.github/workflows/stale.yml +1 -1
- data/CHANGELOG.md +17 -0
- data/docs/development.md +14 -12
- data/lib/oxidized/web/public/css/oxidized.css +22 -11
- data/lib/oxidized/web/public/scripts/theme-toggle.js +55 -0
- data/lib/oxidized/web/public/weblibs/bootstrap.bundle.js +2 -5
- data/lib/oxidized/web/public/weblibs/bootstrap.bundle.js.map +1 -1
- data/lib/oxidized/web/public/weblibs/bootstrap.css +6 -1
- data/lib/oxidized/web/public/weblibs/bootstrap.css.map +1 -1
- data/lib/oxidized/web/public/weblibs/bootstrap.js +2 -5
- data/lib/oxidized/web/public/weblibs/bootstrap.js.map +1 -1
- data/lib/oxidized/web/public/weblibs/buttons.bootstrap5.css +56 -39
- data/lib/oxidized/web/public/weblibs/buttons.bootstrap5.js +14 -6
- data/lib/oxidized/web/public/weblibs/dataTables.bootstrap5.css +7 -8
- data/lib/oxidized/web/public/weblibs/dataTables.buttons.js +15 -8
- data/lib/oxidized/web/public/weblibs/dataTables.js +331 -277
- data/lib/oxidized/web/version.rb +1 -1
- data/lib/oxidized/web/views/head.haml +2 -0
- data/lib/oxidized/web/views/layout.haml +2 -0
- data/lib/oxidized/web/views/node.haml +3 -3
- data/lib/oxidized/web/views/nodes.haml +3 -3
- data/lib/oxidized/web/views/versions.haml +2 -2
- data/lib/oxidized/web/webapp.rb +6 -1
- data/oxidized-web.gemspec +12 -10
- data/package-lock.json +20 -20
- data/spec/web/nodes_spec.rb +7 -0
- metadata +41 -39
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* Bootstrap v5.3.
|
|
2
|
+
* Bootstrap v5.3.8 (https://getbootstrap.com/)
|
|
3
3
|
* Copyright 2011-2025 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
|
*/
|
|
@@ -666,7 +666,7 @@
|
|
|
666
666
|
* Constants
|
|
667
667
|
*/
|
|
668
668
|
|
|
669
|
-
const VERSION = '5.3.
|
|
669
|
+
const VERSION = '5.3.8';
|
|
670
670
|
|
|
671
671
|
/**
|
|
672
672
|
* Class definition
|
|
@@ -1872,9 +1872,6 @@
|
|
|
1872
1872
|
this._element.setAttribute('aria-expanded', 'false');
|
|
1873
1873
|
Manipulator.removeDataAttribute(this._menu, 'popper');
|
|
1874
1874
|
EventHandler.trigger(this._element, EVENT_HIDDEN$5, relatedTarget);
|
|
1875
|
-
|
|
1876
|
-
// Explicitly return focus to the trigger element
|
|
1877
|
-
this._element.focus();
|
|
1878
1875
|
}
|
|
1879
1876
|
_getConfig(config) {
|
|
1880
1877
|
config = super._getConfig(config);
|