-
-
Notifications
You must be signed in to change notification settings - Fork 18.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Added FullScreen functionality #4500
Conversation
Added the necessary JavaScript to allow for full screen mode to be used. This code uses the MDN Fullscreen API and also takes the F11 browser mode into account to change the icon for extend and compress depending if in full screen mode or not.
src/ts/fullscreen.ts
Outdated
const CLASS_NAME_ICON_EXPAND = 'fa-expand-arrows-alt' | ||
const CLASS_NAME_ICON_COMPRESS = 'fa-compress-arrows-alt' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
do not use fa-
add something like data-lte-fullscrenn
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not sure what you mean here? Those are the icon classes for the button that shows.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not sure what you mean here? Those are the icon classes for the button that shows.
What if they use https://heroicons.com/
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think I know what you are getting at. I will look at it again and update it.
For fullscreen icons to work you need place them within an anchor with the class="fullscreen". Then for each icon add the class="fullscreent-icon" this can be just an icon or a div that surrounds some other item, or you can add it to a svg tag. The last past for the toggle to work is to add the class="lte-show" the the same item that has the fullscreen-icon. I tested with FontAwesom icon and with heroicon svg's.
New code has been commited that allows for anything to be used as the icons as long as the fullscreen/fullscreen-icon/lte-show css classes are used. I tested with font-awesome and the heroicon svg's with no issues. Hope this works this time. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The script looks nice, for me it's ok. What you think @danny007in?
src/scss/_main-header.scss
Outdated
@@ -38,3 +38,7 @@ | |||
// margin-top: $lte-main-header-height; | |||
} | |||
} | |||
|
|||
.fullscreen-icon:not(.lte-show) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I would like to move this into a separate .scss file but it's not important for 3 lines.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'll edit this PR i my free time, Please wait 😄
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Alright 👍🏻
I merged and resolved the conflict with the new v4-dev branch. I also changed the font-awesome icons to the new v6.2.1 versions. I tested and all looks good for import again.
I pulled the fullscreen scss code from _main-header.scss and put it into its own file called _fullscreen.scss. The import was added _core.scss.
@danny007in and @REJack Items resolved in this updated PR:
Ready for approval! |
- Added link for fullscreen functionality. - Changed icons from font awesome to bootstrap icons.
I have edited this code to match up with all your changes. The checks that are making it fail are in the base code and not my code. The lint errors are in files I have not changed so nothing I can really do about it, as I am not sure what your plan is with those items.
Let me know if you need me to change anything on this PR. It should be ready to go and keeps with the previous approval of the fullscreen functionality. |
- Updated the doc files with the same changes made to the actual _topbar.astro file
Make PR commit readable https://www.youtube.com/watch?v=gXCkYkLQ3To |
commit bb191d7c0a30464aa06bb7e8120df94ef1cff9ce Merge: a6a1fd33 0cb0400d Author: Walter Burditt <[email protected]> Date: Thu Aug 31 23:26:39 2023 -0700 Merge remote-tracking branch 'upstream/master' commit a6a1fd3341db9c8b6f0b34b225b83e963f2e8444 Author: Daniel <[email protected]> Date: Wed May 10 02:08:52 2023 +0530 Update dependabot.yml (#4978) commit 5d5eb0245c4e987e699afd4049bd7e66304d321d Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon May 8 11:26:30 2023 +0530 chore(deps): bump datatables.net from 1.13.2 to 1.13.4 (#5063) Bumps [datatables.net](https://github.com/DataTables/Dist-DataTables) from 1.13.2 to 1.13.4. - [Release notes](https://github.com/DataTables/Dist-DataTables/releases) - [Commits](https://github.com/DataTables/Dist-DataTables/compare/1.13.2...1.13.4) --- updated-dependencies: - dependency-name: datatables.net dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit f629a8f2d500dc43f2d04cf9315df3e7a8452d6d Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon May 8 11:06:42 2023 +0530 chore(deps): bump engine.io and socket.io (#5096) Bumps [engine.io](https://github.com/socketio/engine.io) and [socket.io](https://github.com/socketio/socket.io). These dependencies needed to be updated together. Updates `engine.io` from 6.1.3 to 6.4.2 - [Release notes](https://github.com/socketio/engine.io/releases) - [Changelog](https://github.com/socketio/engine.io/blob/main/CHANGELOG.md) - [Commits](https://github.com/socketio/engine.io/compare/6.1.3...6.4.2) Updates `socket.io` from 4.4.1 to 4.6.1 - [Release notes](https://github.com/socketio/socket.io/releases) - [Changelog](https://github.com/socketio/socket.io/blob/main/CHANGELOG.md) - [Commits](https://github.com/socketio/socket.io/compare/4.4.1...4.6.1) --- updated-dependencies: - dependency-name: engine.io dependency-type: indirect - dependency-name: socket.io dependency-type: indirect ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 396535cbebb35613ee16bf7107a882807db409b2 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon May 8 11:01:29 2023 +0530 chore(deps-dev): bump @babel/preset-env from 7.21.4 to 7.21.5 (#5102) Bumps [@babel/preset-env](https://github.com/babel/babel/tree/HEAD/packages/babel-preset-env) from 7.21.4 to 7.21.5. - [Release notes](https://github.com/babel/babel/releases) - [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md) - [Commits](https://github.com/babel/babel/commits/v7.21.5/packages/babel-preset-env) --- updated-dependencies: - dependency-name: "@babel/preset-env" dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 0ff54af2371158165010e9ddfcd515fca3bca4aa Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon May 8 11:00:48 2023 +0530 chore(deps-dev): bump autoprefixer from 10.4.7 to 10.4.14 (#5099) Bumps [autoprefixer](https://github.com/postcss/autoprefixer) from 10.4.7 to 10.4.14. - [Release notes](https://github.com/postcss/autoprefixer/releases) - [Changelog](https://github.com/postcss/autoprefixer/blob/main/CHANGELOG.md) - [Commits](https://github.com/postcss/autoprefixer/compare/10.4.7...10.4.14) --- updated-dependencies: - dependency-name: autoprefixer dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit ec9d9056e5c5c6d5b67aaa0fff75a71a0cba78b7 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon May 8 11:00:31 2023 +0530 chore(deps): bump datatables.net-keytable-bs4 from 2.8.2 to 2.9.0 (#5100) Bumps [datatables.net-keytable-bs4](https://github.com/DataTables/Dist-DataTables-KeyTable-Bootstrap4) from 2.8.2 to 2.9.0. - [Release notes](https://github.com/DataTables/Dist-DataTables-KeyTable-Bootstrap4/releases) - [Commits](https://github.com/DataTables/Dist-DataTables-KeyTable-Bootstrap4/compare/2.8.2...2.9.0) --- updated-dependencies: - dependency-name: datatables.net-keytable-bs4 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit e78c844a916940471be428264ee4ac29113458a0 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon May 8 11:00:17 2023 +0530 chore(deps-dev): bump terser from 5.16.8 to 5.17.1 (#5101) Bumps [terser](https://github.com/terser/terser) from 5.16.8 to 5.17.1. - [Changelog](https://github.com/terser/terser/blob/master/CHANGELOG.md) - [Commits](https://github.com/terser/terser/compare/v5.16.8...v5.17.1) --- updated-dependencies: - dependency-name: terser dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 09b22bece0d2d9cfcea2f70a3f3e54bf250f4f90 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon May 8 10:59:41 2023 +0530 chore(deps-dev): bump nodemon from 2.0.19 to 2.0.22 (#5103) Bumps [nodemon](https://github.com/remy/nodemon) from 2.0.19 to 2.0.22. - [Release notes](https://github.com/remy/nodemon/releases) - [Commits](https://github.com/remy/nodemon/compare/v2.0.19...v2.0.22) --- updated-dependencies: - dependency-name: nodemon dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 4982c7d1463c66b74ec038c315fc33afccde34a4 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon May 8 09:23:01 2023 +0530 chore(deps): bump datatables.net-select-bs4 from 1.4.0 to 1.6.2 (#5058) Bumps [datatables.net-select-bs4](https://github.com/DataTables/Dist-DataTables-Select-Bootstrap4) from 1.4.0 to 1.6.2. - [Release notes](https://github.com/DataTables/Dist-DataTables-Select-Bootstrap4/releases) - [Commits](https://github.com/DataTables/Dist-DataTables-Select-Bootstrap4/compare/1.4.0...1.6.2) --- updated-dependencies: - dependency-name: datatables.net-select-bs4 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 24026ba80f335baa861fba4f63c208e0c4392e77 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon May 8 09:22:27 2023 +0530 chore(deps): bump flot from 4.2.2 to 4.2.3 (#5059) Bumps [flot](https://github.com/flot/flot) from 4.2.2 to 4.2.3. - [Release notes](https://github.com/flot/flot/releases) - [Changelog](https://github.com/flot/flot/blob/master/CHANGELOG.md) - [Commits](https://github.com/flot/flot/compare/v4.2.2...v4.2.3) --- updated-dependencies: - dependency-name: flot dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 8dc5c48f844bb3ad21001aa7aa0d451087c41a49 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon May 8 09:22:10 2023 +0530 chore(deps-dev): bump eslint-plugin-compat from 4.1.2 to 4.1.4 (#5060) Bumps [eslint-plugin-compat](https://github.com/amilajack/eslint-plugin-compat) from 4.1.2 to 4.1.4. - [Release notes](https://github.com/amilajack/eslint-plugin-compat/releases) - [Changelog](https://github.com/amilajack/eslint-plugin-compat/blob/main/CHANGELOG.md) - [Commits](https://github.com/amilajack/eslint-plugin-compat/compare/v4.1.2...v4.1.4) --- updated-dependencies: - dependency-name: eslint-plugin-compat dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 89379b283cf20509b5a30f63440ba0100869bedf Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue May 2 11:27:16 2023 +0530 chore(deps-dev): bump @babel/core from 7.21.4 to 7.21.5 (#5087) Bumps [@babel/core](https://github.com/babel/babel/tree/HEAD/packages/babel-core) from 7.21.4 to 7.21.5. - [Release notes](https://github.com/babel/babel/releases) - [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md) - [Commits](https://github.com/babel/babel/commits/v7.21.5/packages/babel-core) --- updated-dependencies: - dependency-name: "@babel/core" dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 7ede8b76ee678bc727b3abfb0a42f448f7666cf3 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue May 2 11:26:50 2023 +0530 chore(deps): bump codemirror from 5.65.11 to 5.65.13 (#5088) Bumps [codemirror](https://github.com/codemirror/basic-setup) from 5.65.11 to 5.65.13. - [Release notes](https://github.com/codemirror/basic-setup/releases) - [Changelog](https://github.com/codemirror/basic-setup/blob/main/CHANGELOG.md) - [Commits](https://github.com/codemirror/basic-setup/commits) --- updated-dependencies: - dependency-name: codemirror dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit c5bc70badd6b15542a9833294c8ccab4dc7eea34 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue May 2 11:26:13 2023 +0530 chore(deps-dev): bump stylelint from 14.9.1 to 14.16.1 (#5065) Bumps [stylelint](https://github.com/stylelint/stylelint) from 14.9.1 to 14.16.1. - [Release notes](https://github.com/stylelint/stylelint/releases) - [Changelog](https://github.com/stylelint/stylelint/blob/main/CHANGELOG.md) - [Commits](https://github.com/stylelint/stylelint/compare/14.9.1...14.16.1) --- updated-dependencies: - dependency-name: stylelint dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 3e5e252763fef079105abe87da9951d0c1b73aa5 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu Apr 27 13:33:05 2023 +0530 chore(deps-dev): bump postcss from 8.4.21 to 8.4.23 (#5076) Bumps [postcss](https://github.com/postcss/postcss) from 8.4.21 to 8.4.23. - [Release notes](https://github.com/postcss/postcss/releases) - [Changelog](https://github.com/postcss/postcss/blob/main/CHANGELOG.md) - [Commits](https://github.com/postcss/postcss/compare/8.4.21...8.4.23) --- updated-dependencies: - dependency-name: postcss dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit d66aab561c827d93c8003fc2c4e62c50b3637dc8 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon Apr 10 14:26:14 2023 +0530 chore(deps): bump jszip from 3.10.0 to 3.10.1 (#5037) Bumps [jszip](https://github.com/Stuk/jszip) from 3.10.0 to 3.10.1. - [Release notes](https://github.com/Stuk/jszip/releases) - [Changelog](https://github.com/Stuk/jszip/blob/main/CHANGES.md) - [Commits](https://github.com/Stuk/jszip/compare/v3.10.0...v3.10.1) --- updated-dependencies: - dependency-name: jszip dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit ca40f220aac22463b0c8d22c5ff18503dc12b61c Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon Apr 10 14:25:50 2023 +0530 chore(deps): bump inputmask from 5.0.7 to 5.0.8 (#5038) Bumps [inputmask](https://github.com/RobinHerbots/Inputmask) from 5.0.7 to 5.0.8. - [Release notes](https://github.com/RobinHerbots/Inputmask/releases) - [Changelog](https://github.com/RobinHerbots/Inputmask/blob/5.x/Changelog.md) - [Commits](https://github.com/RobinHerbots/Inputmask/compare/5.0.7...5.0.8) --- updated-dependencies: - dependency-name: inputmask dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 675ca1ec082fa00c13abbcaed7133a20654a9ea2 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon Apr 10 14:25:36 2023 +0530 chore(deps-dev): bump eslint from 8.37.0 to 8.38.0 (#5039) Bumps [eslint](https://github.com/eslint/eslint) from 8.37.0 to 8.38.0. - [Release notes](https://github.com/eslint/eslint/releases) - [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md) - [Commits](https://github.com/eslint/eslint/compare/v8.37.0...v8.38.0) --- updated-dependencies: - dependency-name: eslint dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit a6183f37c21b3c59569e127121f8098ec42cfbae Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon Apr 10 14:24:53 2023 +0530 chore(deps-dev): bump browser-sync from 2.27.11 to 2.29.1 (#5040) Bumps [browser-sync](https://github.com/BrowserSync/browser-sync) from 2.27.11 to 2.29.1. - [Release notes](https://github.com/BrowserSync/browser-sync/releases) - [Changelog](https://github.com/BrowserSync/browser-sync/blob/master/CHANGELOG.md) - [Commits](https://github.com/BrowserSync/browser-sync/compare/v2.27.11...v2.29.1) --- updated-dependencies: - dependency-name: browser-sync dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit bad9588c84d032ae613010bfa73a7a8d26c1c3ec Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon Apr 10 14:24:28 2023 +0530 chore(deps): bump uplot from 1.6.22 to 1.6.24 (#5041) Bumps [uplot](https://github.com/leeoniya/uPlot) from 1.6.22 to 1.6.24. - [Release notes](https://github.com/leeoniya/uPlot/releases) - [Commits](https://github.com/leeoniya/uPlot/compare/1.6.22...1.6.24) --- updated-dependencies: - dependency-name: uplot dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit c15399ed058df51e17ffde5b2cbcd8ec5868c012 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon Apr 10 14:23:59 2023 +0530 chore(deps-dev): bump @babel/core from 7.21.3 to 7.21.4 (#5042) Bumps [@babel/core](https://github.com/babel/babel/tree/HEAD/packages/babel-core) from 7.21.3 to 7.21.4. - [Release notes](https://github.com/babel/babel/releases) - [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md) - [Commits](https://github.com/babel/babel/commits/v7.21.4/packages/babel-core) --- updated-dependencies: - dependency-name: "@babel/core" dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 8577097409b8bdb769ec33df105bd97f8d009e62 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon Apr 10 14:23:36 2023 +0530 chore(deps): bump datatables.net-searchpanes-bs4 from 2.1.1 to 2.1.2 (#5043) Bumps [datatables.net-searchpanes-bs4](https://github.com/DataTables/Dist-DataTables-SearchPanes-Bootstrap4) from 2.1.1 to 2.1.2. - [Release notes](https://github.com/DataTables/Dist-DataTables-SearchPanes-Bootstrap4/releases) - [Commits](https://github.com/DataTables/Dist-DataTables-SearchPanes-Bootstrap4/compare/2.1.1...2.1.2) --- updated-dependencies: - dependency-name: datatables.net-searchpanes-bs4 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 5e5415010bf7d9fa7977540170cba95cf37b0c81 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon Apr 10 14:23:01 2023 +0530 chore(deps): bump datatables.net-bs4 from 1.12.1 to 1.13.4 (#5044) Bumps [datatables.net-bs4](https://github.com/DataTables/Dist-DataTables-Bootstrap4) from 1.12.1 to 1.13.4. - [Release notes](https://github.com/DataTables/Dist-DataTables-Bootstrap4/releases) - [Commits](https://github.com/DataTables/Dist-DataTables-Bootstrap4/compare/1.12.1...1.13.4) --- updated-dependencies: - dependency-name: datatables.net-bs4 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit e48c0be88b5d416f2e821c6d5877cc0a166911d5 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon Apr 3 18:11:36 2023 +0530 chore(deps-dev): bump postcss-cli from 10.0.0 to 10.1.0 (#5019) Bumps [postcss-cli](https://github.com/postcss/postcss-cli) from 10.0.0 to 10.1.0. - [Release notes](https://github.com/postcss/postcss-cli/releases) - [Changelog](https://github.com/postcss/postcss-cli/blob/master/CHANGELOG.md) - [Commits](https://github.com/postcss/postcss-cli/compare/10.0.0...10.1.0) --- updated-dependencies: - dependency-name: postcss-cli dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit e9264ee2467826da3d204299799af28a6c867d05 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon Apr 3 12:16:53 2023 +0530 chore(deps): bump datatables.net-scroller-bs4 from 2.1.0 to 2.1.1 (#5017) Bumps [datatables.net-scroller-bs4](https://github.com/DataTables/Dist-DataTables-Scroller-Bootstrap4) from 2.1.0 to 2.1.1. - [Release notes](https://github.com/DataTables/Dist-DataTables-Scroller-Bootstrap4/releases) - [Commits](https://github.com/DataTables/Dist-DataTables-Scroller-Bootstrap4/compare/2.1.0...2.1.1) --- updated-dependencies: - dependency-name: datatables.net-scroller-bs4 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 2042b6fff56f983b4a22d5eccaea978bf400126a Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon Apr 3 12:16:15 2023 +0530 chore(deps-dev): bump terser from 5.16.3 to 5.16.8 (#5020) Bumps [terser](https://github.com/terser/terser) from 5.16.3 to 5.16.8. - [Release notes](https://github.com/terser/terser/releases) - [Changelog](https://github.com/terser/terser/blob/master/CHANGELOG.md) - [Commits](https://github.com/terser/terser/compare/v5.16.3...v5.16.8) --- updated-dependencies: - dependency-name: terser dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 48b60b088e8a14bd7d3a81c8ca320f47b89a95bc Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon Apr 3 12:15:51 2023 +0530 chore(deps-dev): bump @babel/preset-env from 7.20.2 to 7.21.4 (#5021) Bumps [@babel/preset-env](https://github.com/babel/babel/tree/HEAD/packages/babel-preset-env) from 7.20.2 to 7.21.4. - [Release notes](https://github.com/babel/babel/releases) - [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md) - [Commits](https://github.com/babel/babel/commits/v7.21.4/packages/babel-preset-env) --- updated-dependencies: - dependency-name: "@babel/preset-env" dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 92ab47b47f29871f493411a23d565acc3e1647fc Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon Apr 3 12:15:36 2023 +0530 chore(deps): bump datatables.net-autofill-bs4 from 2.4.0 to 2.5.3 (#5022) Bumps [datatables.net-autofill-bs4](https://github.com/DataTables/Dist-DataTables-AutoFill-Bootstrap4) from 2.4.0 to 2.5.3. - [Release notes](https://github.com/DataTables/Dist-DataTables-AutoFill-Bootstrap4/releases) - [Commits](https://github.com/DataTables/Dist-DataTables-AutoFill-Bootstrap4/compare/2.4.0...2.5.3) --- updated-dependencies: - dependency-name: datatables.net-autofill-bs4 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit ebcc24124661fe4bc40c9feb31210051e6b33bfc Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon Apr 3 12:15:16 2023 +0530 chore(deps): bump sweetalert2 from 11.7.1 to 11.7.3 (#5023) Bumps [sweetalert2](https://github.com/sweetalert2/sweetalert2) from 11.7.1 to 11.7.3. - [Release notes](https://github.com/sweetalert2/sweetalert2/releases) - [Changelog](https://github.com/sweetalert2/sweetalert2/blob/main/CHANGELOG.md) - [Commits](https://github.com/sweetalert2/sweetalert2/compare/v11.7.1...v11.7.3) --- updated-dependencies: - dependency-name: sweetalert2 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit fc2da945f9b8ce6bd6b258619ea4136035d721ea Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon Apr 3 12:15:00 2023 +0530 chore(deps-dev): bump eslint from 8.36.0 to 8.37.0 (#5024) Bumps [eslint](https://github.com/eslint/eslint) from 8.36.0 to 8.37.0. - [Release notes](https://github.com/eslint/eslint/releases) - [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md) - [Commits](https://github.com/eslint/eslint/compare/v8.36.0...v8.37.0) --- updated-dependencies: - dependency-name: eslint dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 2533c6c687789d3f37d6d9f1325519770ac6f4d7 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon Apr 3 12:14:45 2023 +0530 chore(deps-dev): bump postcss from 8.4.14 to 8.4.21 (#5025) Bumps [postcss](https://github.com/postcss/postcss) from 8.4.14 to 8.4.21. - [Release notes](https://github.com/postcss/postcss/releases) - [Changelog](https://github.com/postcss/postcss/blob/main/CHANGELOG.md) - [Commits](https://github.com/postcss/postcss/compare/8.4.14...8.4.21) --- updated-dependencies: - dependency-name: postcss dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 9f26e34f20576971df1b88c0180942150086629b Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu Mar 30 11:53:36 2023 +0530 chore(deps-dev): bump eslint-plugin-unicorn from 42.0.0 to 46.0.0 (#4952) * chore(deps-dev): bump eslint-plugin-unicorn from 42.0.0 to 46.0.0 Bumps [eslint-plugin-unicorn](https://github.com/sindresorhus/eslint-plugin-unicorn) from 42.0.0 to 46.0.0. - [Release notes](https://github.com/sindresorhus/eslint-plugin-unicorn/releases) - [Commits](https://github.com/sindresorhus/eslint-plugin-unicorn/compare/v42.0.0...v46.0.0) --- updated-dependencies: - dependency-name: eslint-plugin-unicorn dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> * eslint error fixes --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Daniel <[email protected]> commit e64f39642c31bba45ee3ded902e94afe3cd2ed0e Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed Mar 29 13:15:41 2023 +0530 chore(deps): bump datatables.net-keytable-bs4 from 2.8.1 to 2.8.2 (#4998) Bumps [datatables.net-keytable-bs4](https://github.com/DataTables/Dist-DataTables-KeyTable-Bootstrap4) from 2.8.1 to 2.8.2. - [Release notes](https://github.com/DataTables/Dist-DataTables-KeyTable-Bootstrap4/releases) - [Commits](https://github.com/DataTables/Dist-DataTables-KeyTable-Bootstrap4/compare/2.8.1...2.8.2) --- updated-dependencies: - dependency-name: datatables.net-keytable-bs4 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit e7f12d5cd94735aba3848f46674c17648935a0f1 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed Mar 29 13:15:12 2023 +0530 chore(deps): bump datatables.net-fixedcolumns-bs4 from 4.1.0 to 4.2.2 (#4993) Bumps [datatables.net-fixedcolumns-bs4](https://github.com/DataTables/Dist-DataTables-FixedColumns-Bootstrap4) from 4.1.0 to 4.2.2. - [Release notes](https://github.com/DataTables/Dist-DataTables-FixedColumns-Bootstrap4/releases) - [Commits](https://github.com/DataTables/Dist-DataTables-FixedColumns-Bootstrap4/compare/4.1.0...4.2.2) --- updated-dependencies: - dependency-name: datatables.net-fixedcolumns-bs4 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit de76d7c4c0688d302cd205ed7219fe9a46aadfac Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed Mar 29 13:06:45 2023 +0530 chore(deps-dev): bump eslint from 8.34.0 to 8.36.0 (#4995) Bumps [eslint](https://github.com/eslint/eslint) from 8.34.0 to 8.36.0. - [Release notes](https://github.com/eslint/eslint/releases) - [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md) - [Commits](https://github.com/eslint/eslint/compare/v8.34.0...v8.36.0) --- updated-dependencies: - dependency-name: eslint dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 33a15ae6fb86510899fdf6bd16c8d15786228d14 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed Mar 29 13:06:37 2023 +0530 chore(deps): bump datatables.net-responsive-bs4 from 2.3.0 to 2.4.1 (#4997) Bumps [datatables.net-responsive-bs4](https://github.com/DataTables/Dist-DataTables-Responsive-Bootstrap4) from 2.3.0 to 2.4.1. - [Release notes](https://github.com/DataTables/Dist-DataTables-Responsive-Bootstrap4/releases) - [Commits](https://github.com/DataTables/Dist-DataTables-Responsive-Bootstrap4/compare/2.3.0...2.4.1) --- updated-dependencies: - dependency-name: datatables.net-responsive-bs4 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 9988f9285d6de41245c8ee4e5d04a4e8dcba0c19 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed Mar 29 13:05:01 2023 +0530 chore(deps): bump datatables.net-searchbuilder-bs4 from 1.4.0 to 1.4.2 (#4994) Bumps [datatables.net-searchbuilder-bs4](https://github.com/DataTables/Dist-DataTables-SearchBuilder-Bootstrap4) from 1.4.0 to 1.4.2. - [Release notes](https://github.com/DataTables/Dist-DataTables-SearchBuilder-Bootstrap4/releases) - [Commits](https://github.com/DataTables/Dist-DataTables-SearchBuilder-Bootstrap4/compare/1.4.0...1.4.2) --- updated-dependencies: - dependency-name: datatables.net-searchbuilder-bs4 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 60ab0ab44c8339c69ea3edccaf0f5a5f1473e7a6 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed Mar 29 13:03:59 2023 +0530 chore(deps-dev): bump @babel/core from 7.18.6 to 7.21.3 (#4996) Bumps [@babel/core](https://github.com/babel/babel/tree/HEAD/packages/babel-core) from 7.18.6 to 7.21.3. - [Release notes](https://github.com/babel/babel/releases) - [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md) - [Commits](https://github.com/babel/babel/commits/v7.21.3/packages/babel-core) --- updated-dependencies: - dependency-name: "@babel/core" dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 7c083627901f60a3c8cad9bb432991e1c848a689 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed Mar 29 13:03:30 2023 +0530 chore(deps): bump datatables.net-fixedheader-bs4 from 3.2.4 to 3.3.2 (#4999) Bumps [datatables.net-fixedheader-bs4](https://github.com/DataTables/Dist-DataTables-FixedHeader-Bootstrap4) from 3.2.4 to 3.3.2. - [Release notes](https://github.com/DataTables/Dist-DataTables-FixedHeader-Bootstrap4/releases) - [Commits](https://github.com/DataTables/Dist-DataTables-FixedHeader-Bootstrap4/compare/3.2.4...3.3.2) --- updated-dependencies: - dependency-name: datatables.net-fixedheader-bs4 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit f00cd4c0d0eead45891c61c49782d36d9a396783 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue Mar 21 18:38:32 2023 +0530 chore(deps-dev): bump eslint-config-xo from 0.41.0 to 0.43.1 (#4936) Bumps [eslint-config-xo](https://github.com/xojs/eslint-config-xo) from 0.41.0 to 0.43.1. - [Release notes](https://github.com/xojs/eslint-config-xo/releases) - [Commits](https://github.com/xojs/eslint-config-xo/compare/v0.41.0...v0.43.1) --- updated-dependencies: - dependency-name: eslint-config-xo dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit b38d005c681d22ba58d5b7ff0f38e4b285dbee65 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue Mar 21 18:37:45 2023 +0530 chore(deps): bump datatables.net-rowreorder-bs4 from 1.2.8 to 1.3.3 (#4962) Bumps [datatables.net-rowreorder-bs4](https://github.com/DataTables/Dist-DataTables-RowReorder-Bootstrap4) from 1.2.8 to 1.3.3. - [Release notes](https://github.com/DataTables/Dist-DataTables-RowReorder-Bootstrap4/releases) - [Commits](https://github.com/DataTables/Dist-DataTables-RowReorder-Bootstrap4/compare/1.2.8...1.3.3) --- updated-dependencies: - dependency-name: datatables.net-rowreorder-bs4 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 628c01e77c95655162c173579c443b3b177b6048 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue Mar 21 18:32:18 2023 +0530 chore(deps): bump jquery-ui-dist from 1.13.1 to 1.13.2 (#4933) Bumps [jquery-ui-dist](https://github.com/jquery/jquery-ui) from 1.13.1 to 1.13.2. - [Release notes](https://github.com/jquery/jquery-ui/releases) - [Commits](https://github.com/jquery/jquery-ui/compare/1.13.1...1.13.2) --- updated-dependencies: - dependency-name: jquery-ui-dist dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 1969fed885f5fbd04f5ad4d4950aeec112a32cfe Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue Mar 21 18:31:34 2023 +0530 chore(deps): bump jquery from 3.6.0 to 3.6.4 (#4963) Bumps [jquery](https://github.com/jquery/jquery) from 3.6.0 to 3.6.4. - [Release notes](https://github.com/jquery/jquery/releases) - [Commits](https://github.com/jquery/jquery/compare/3.6.0...3.6.4) --- updated-dependencies: - dependency-name: jquery dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 75b661bfdfd0e3c369c243c73d30ec4e3ccd73f6 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue Mar 21 18:31:08 2023 +0530 chore(deps): bump datatables.net-colreorder-bs4 from 1.5.6 to 1.6.2 (#4964) Bumps [datatables.net-colreorder-bs4](https://github.com/DataTables/Dist-DataTables-ColReorder-Bootstrap4) from 1.5.6 to 1.6.2. - [Release notes](https://github.com/DataTables/Dist-DataTables-ColReorder-Bootstrap4/releases) - [Commits](https://github.com/DataTables/Dist-DataTables-ColReorder-Bootstrap4/compare/1.5.6...1.6.2) --- updated-dependencies: - dependency-name: datatables.net-colreorder-bs4 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit c7fe21050c28e99d642f52ea2a4baaa94adfb884 Author: Alex Hua <[email protected]> Date: Tue Mar 21 20:55:32 2023 +0800 Fix a mini sidebar bug when embedding admin-lte into iframe (#4799) When embedding whole admin-lte page into a iframe, mini sidebar will display without content. commit 00525c1371632c24238c4784757b0ffad9950719 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue Mar 21 18:19:39 2023 +0530 chore(deps-dev): bump lockfile-lint from 4.7.6 to 4.10.1 (#4935) Bumps [lockfile-lint](https://github.com/lirantal/lockfile-lint/tree/HEAD/packages/lockfile-lint) from 4.7.6 to 4.10.1. - [Release notes](https://github.com/lirantal/lockfile-lint/releases) - [Changelog](https://github.com/lirantal/lockfile-lint/blob/master/packages/lockfile-lint/CHANGELOG.md) - [Commits](https://github.com/lirantal/lockfile-lint/commits/[email protected]/packages/lockfile-lint) --- updated-dependencies: - dependency-name: lockfile-lint dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 594a2b2e30bdc968af91f9dd6c5fc9ad451e6825 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue Mar 21 18:18:42 2023 +0530 chore(deps-dev): bump eslint-plugin-compat from 4.0.2 to 4.1.2 (#4939) Bumps [eslint-plugin-compat](https://github.com/amilajack/eslint-plugin-compat) from 4.0.2 to 4.1.2. - [Release notes](https://github.com/amilajack/eslint-plugin-compat/releases) - [Changelog](https://github.com/amilajack/eslint-plugin-compat/blob/main/CHANGELOG.md) - [Commits](https://github.com/amilajack/eslint-plugin-compat/compare/v4.0.2...v4.1.2) --- updated-dependencies: - dependency-name: eslint-plugin-compat dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 519bddfaee21c73538fc239d021ddde534a231e1 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue Mar 21 18:16:57 2023 +0530 chore(deps): bump datatables.net-rowgroup-bs4 from 1.2.0 to 1.3.1 (#4965) Bumps [datatables.net-rowgroup-bs4](https://github.com/DataTables/Dist-DataTables-RowGroup-Bootstrap4) from 1.2.0 to 1.3.1. - [Release notes](https://github.com/DataTables/Dist-DataTables-RowGroup-Bootstrap4/releases) - [Commits](https://github.com/DataTables/Dist-DataTables-RowGroup-Bootstrap4/compare/1.2.0...1.3.1) --- updated-dependencies: - dependency-name: datatables.net-rowgroup-bs4 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit a8620a02bb2b2edba074a8b86e8cc5514d355b51 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu Feb 23 17:54:07 2023 +0530 chore(deps): bump datatables.net from 1.12.1 to 1.13.2 (#4899) Bumps [datatables.net](https://github.com/DataTables/Dist-DataTables) from 1.12.1 to 1.13.2. - [Release notes](https://github.com/DataTables/Dist-DataTables/releases) - [Commits](https://github.com/DataTables/Dist-DataTables/commits/1.13.2) --- updated-dependencies: - dependency-name: datatables.net dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 50a12c2ee3ae70cc88101ecae83f90a09a5d1ce8 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu Feb 23 17:51:45 2023 +0530 chore(deps): bump pdfmake from 0.2.5 to 0.2.7 (#4924) Bumps [pdfmake](https://github.com/bpampuch/pdfmake) from 0.2.5 to 0.2.7. - [Release notes](https://github.com/bpampuch/pdfmake/releases) - [Changelog](https://github.com/bpampuch/pdfmake/blob/0.2.7/CHANGELOG.md) - [Commits](https://github.com/bpampuch/pdfmake/compare/0.2.5...0.2.7) --- updated-dependencies: - dependency-name: pdfmake dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 9661738f8f3c2cfd5acaaa721f67627c72851e62 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu Feb 23 17:45:41 2023 +0530 chore(deps): bump datatables.net-searchbuilder-bs4 from 1.3.4 to 1.4.0 (#4918) Bumps [datatables.net-searchbuilder-bs4](https://github.com/DataTables/Dist-DataTables-SearchBuilder-Bootstrap4) from 1.3.4 to 1.4.0. - [Release notes](https://github.com/DataTables/Dist-DataTables-SearchBuilder-Bootstrap4/releases) - [Commits](https://github.com/DataTables/Dist-DataTables-SearchBuilder-Bootstrap4/compare/1.3.4...1.4.0) --- updated-dependencies: - dependency-name: datatables.net-searchbuilder-bs4 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit c119c6f81f9b932229fd92ef8001b91a1c239794 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu Feb 23 17:45:28 2023 +0530 chore(deps): bump @sweetalert2/theme-bootstrap-4 from 5.0.11 to 5.0.15 (#4919) Bumps [@sweetalert2/theme-bootstrap-4](https://github.com/sweetalert2/sweetalert2-themes) from 5.0.11 to 5.0.15. - [Release notes](https://github.com/sweetalert2/sweetalert2-themes/releases) - [Changelog](https://github.com/sweetalert2/sweetalert2-themes/blob/main/CHANGELOG.md) - [Commits](https://github.com/sweetalert2/sweetalert2-themes/compare/v5.0.11...v5.0.15) --- updated-dependencies: - dependency-name: "@sweetalert2/theme-bootstrap-4" dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 88f396c6d98fc8efd61dcee0d2e9de733ca551ee Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu Feb 23 17:45:00 2023 +0530 chore(deps): bump datatables.net-keytable-bs4 from 2.7.0 to 2.8.1 (#4922) Bumps [datatables.net-keytable-bs4](https://github.com/DataTables/Dist-DataTables-KeyTable-Bootstrap4) from 2.7.0 to 2.8.1. - [Release notes](https://github.com/DataTables/Dist-DataTables-KeyTable-Bootstrap4/releases) - [Commits](https://github.com/DataTables/Dist-DataTables-KeyTable-Bootstrap4/compare/2.7.0...2.8.1) --- updated-dependencies: - dependency-name: datatables.net-keytable-bs4 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit a17edacbed3b9d839b0a7d7d942c65c481cae96a Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu Feb 23 17:44:48 2023 +0530 chore(deps-dev): bump eslint from 8.33.0 to 8.34.0 (#4921) Bumps [eslint](https://github.com/eslint/eslint) from 8.33.0 to 8.34.0. - [Release notes](https://github.com/eslint/eslint/releases) - [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md) - [Commits](https://github.com/eslint/eslint/compare/v8.33.0...v8.34.0) --- updated-dependencies: - dependency-name: eslint dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit fb7e9497fccfa6c5a0ab014cc6c8dd4e4e83f503 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu Feb 23 17:44:21 2023 +0530 chore(deps-dev): bump eslint-plugin-import from 2.26.0 to 2.27.5 (#4923) Bumps [eslint-plugin-import](https://github.com/import-js/eslint-plugin-import) from 2.26.0 to 2.27.5. - [Release notes](https://github.com/import-js/eslint-plugin-import/releases) - [Changelog](https://github.com/import-js/eslint-plugin-import/blob/main/CHANGELOG.md) - [Commits](https://github.com/import-js/eslint-plugin-import/compare/v2.26.0...v2.27.5) --- updated-dependencies: - dependency-name: eslint-plugin-import dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 6c04fb8be708a491671ae6a1775a5c5484ca9267 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon Feb 13 14:35:30 2023 +0530 chore(deps): bump datatables.net-scroller-bs4 from 2.0.7 to 2.1.0 (#4897) Bumps [datatables.net-scroller-bs4](https://github.com/DataTables/Dist-DataTables-Scroller-Bootstrap4) from 2.0.7 to 2.1.0. - [Release notes](https://github.com/DataTables/Dist-DataTables-Scroller-Bootstrap4/releases) - [Commits](https://github.com/DataTables/Dist-DataTables-Scroller-Bootstrap4/compare/2.0.7...2.1.0) --- updated-dependencies: - dependency-name: datatables.net-scroller-bs4 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 0b8a661805752cecdeac770d76da286b7f93a028 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon Feb 13 14:34:46 2023 +0530 chore(deps-dev): bump browser-sync from 2.27.10 to 2.27.11 (#4898) Bumps [browser-sync](https://github.com/BrowserSync/browser-sync) from 2.27.10 to 2.27.11. - [Release notes](https://github.com/BrowserSync/browser-sync/releases) - [Changelog](https://github.com/BrowserSync/browser-sync/blob/master/CHANGELOG.md) - [Commits](https://github.com/BrowserSync/browser-sync/compare/v2.27.10...v2.27.11) --- updated-dependencies: - dependency-name: browser-sync dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit a193f6289327f2cce45b82b2b041e31f4f785d1d Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon Feb 13 14:33:37 2023 +0530 chore(deps): bump datatables.net-searchpanes-bs4 from 2.0.2 to 2.1.1 (#4900) Bumps [datatables.net-searchpanes-bs4](https://github.com/DataTables/Dist-DataTables-SearchPanes-Bootstrap4) from 2.0.2 to 2.1.1. - [Release notes](https://github.com/DataTables/Dist-DataTables-SearchPanes-Bootstrap4/releases) - [Commits](https://github.com/DataTables/Dist-DataTables-SearchPanes-Bootstrap4/compare/2.0.2...2.1.1) --- updated-dependencies: - dependency-name: datatables.net-searchpanes-bs4 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit c871964733a90ae68daf06b2689e6a31452247e8 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon Feb 13 14:32:33 2023 +0530 chore(deps): bump codemirror from 5.65.6 to 5.65.11 (#4903) Bumps [codemirror](https://github.com/codemirror/basic-setup) from 5.65.6 to 5.65.11. - [Release notes](https://github.com/codemirror/basic-setup/releases) - [Changelog](https://github.com/codemirror/basic-setup/blob/main/CHANGELOG.md) - [Commits](https://github.com/codemirror/basic-setup/commits) --- updated-dependencies: - dependency-name: codemirror dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 576f7ebc43e09804dc9a0a55b10e4799cb026f01 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon Feb 13 14:32:05 2023 +0530 chore(deps): bump datatables.net-buttons-bs4 from 2.2.3 to 2.3.4 (#4905) Bumps [datatables.net-buttons-bs4](https://github.com/DataTables/Dist-DataTables-Buttons-Bootstrap4) from 2.2.3 to 2.3.4. - [Release notes](https://github.com/DataTables/Dist-DataTables-Buttons-Bootstrap4/releases) - [Commits](https://github.com/DataTables/Dist-DataTables-Buttons-Bootstrap4/compare/2.2.3...2.3.4) --- updated-dependencies: - dependency-name: datatables.net-buttons-bs4 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit c4e15dd6e1a20b0145d1ba061657318373e25296 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue Feb 7 22:07:38 2023 +0530 chore(deps-dev): bump clean-css-cli from 5.6.0 to 5.6.2 (#4875) Bumps [clean-css-cli](https://github.com/clean-css/clean-css-cli) from 5.6.0 to 5.6.2. - [Release notes](https://github.com/clean-css/clean-css-cli/releases) - [Changelog](https://github.com/clean-css/clean-css-cli/blob/master/History.md) - [Commits](https://github.com/clean-css/clean-css-cli/compare/v5.6.0...v5.6.2) --- updated-dependencies: - dependency-name: clean-css-cli dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 02c5cede6c00973cd30c7359182efd34b2363656 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue Feb 7 22:04:21 2023 +0530 chore(deps-dev): bump rollup from 2.76.0 to 2.79.1 (#4710) Bumps [rollup](https://github.com/rollup/rollup) from 2.76.0 to 2.79.1. - [Release notes](https://github.com/rollup/rollup/releases) - [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md) - [Commits](https://github.com/rollup/rollup/compare/v2.76.0...v2.79.1) --- updated-dependencies: - dependency-name: rollup dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 5d4c7f9a2b22c3baeff4aa8e4cce35b0cf8ddfcd Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue Feb 7 22:03:59 2023 +0530 chore(deps-dev): bump @babel/preset-env from 7.18.6 to 7.20.2 (#4780) Bumps [@babel/preset-env](https://github.com/babel/babel/tree/HEAD/packages/babel-preset-env) from 7.18.6 to 7.20.2. - [Release notes](https://github.com/babel/babel/releases) - [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md) - [Commits](https://github.com/babel/babel/commits/v7.20.2/packages/babel-preset-env) --- updated-dependencies: - dependency-name: "@babel/preset-env" dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 366e50f57dd4f1b661783f4a0a5783552a7105de Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue Feb 7 22:02:24 2023 +0530 chore(deps): bump flag-icons from 6.6.3 to 6.6.6 (#4673) Bumps [flag-icons](https://github.com/lipis/flag-icons) from 6.6.3 to 6.6.6. - [Release notes](https://github.com/lipis/flag-icons/releases) - [Changelog](https://github.com/lipis/flag-icons/blob/main/CHANGELOG.md) - [Commits](https://github.com/lipis/flag-icons/compare/v6.6.3...v6.6.6) --- updated-dependencies: - dependency-name: flag-icons dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 5470edfd0f6e6c20bc93b91c5d64fa8422b18f44 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue Feb 7 22:01:19 2023 +0530 chore(deps): bump sweetalert2 from 11.4.20 to 11.7.1 (#4880) Bumps [sweetalert2](https://github.com/sweetalert2/sweetalert2) from 11.4.20 to 11.7.1. - [Release notes](https://github.com/sweetalert2/sweetalert2/releases) - [Changelog](https://github.com/sweetalert2/sweetalert2/blob/main/CHANGELOG.md) - [Commits](https://github.com/sweetalert2/sweetalert2/compare/v11.4.20...v11.7.1) --- updated-dependencies: - dependency-name: sweetalert2 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 6ce957876a8ff62599c2af3107044d6221947c32 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue Feb 7 21:59:40 2023 +0530 chore(deps-dev): bump terser from 5.14.1 to 5.16.3 (#4887) Bumps [terser](https://github.com/terser/terser) from 5.14.1 to 5.16.3. - [Release notes](https://github.com/terser/terser/releases) - [Changelog](https://github.com/terser/terser/blob/master/CHANGELOG.md) - [Commits](https://github.com/terser/terser/compare/v5.14.1...v5.16.3) --- updated-dependencies: - dependency-name: terser dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 0b50d5ed86e9e1c107708308397136f9c233b03c Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue Feb 7 21:58:25 2023 +0530 chore(deps): bump bootstrap from 4.6.1 to 4.6.2 (#4610) Bumps [bootstrap](https://github.com/twbs/bootstrap) from 4.6.1 to 4.6.2. - [Release notes](https://github.com/twbs/bootstrap/releases) - [Commits](https://github.com/twbs/bootstrap/compare/v4.6.1...v4.6.2) --- updated-dependencies: - dependency-name: bootstrap dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit caf2a8838d3eb45635ef67c913bec23a2147fd63 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue Feb 7 21:56:30 2023 +0530 chore(deps-dev): bump eslint from 8.19.0 to 8.33.0 (#4881) Bumps [eslint](https://github.com/eslint/eslint) from 8.19.0 to 8.33.0. - [Release notes](https://github.com/eslint/eslint/releases) - [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md) - [Commits](https://github.com/eslint/eslint/compare/v8.19.0...v8.33.0) --- updated-dependencies: - dependency-name: eslint dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 9510278efd24f8fdf76a214c1ef4edfd50e5a80d Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue Jul 12 12:21:24 2022 +0200 chore(deps): bump uplot from 1.6.21 to 1.6.22 (#4573) Bumps [uplot](https://github.com/leeoniya/uPlot) from 1.6.21 to 1.6.22. - [Release notes](https://github.com/leeoniya/uPlot/releases) - [Commits](https://github.com/leeoniya/uPlot/compare/1.6.21...1.6.22) --- updated-dependencies: - dependency-name: uplot dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit a71f51455706d525c3cc7ff86773d8ebdf516290 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue Jul 12 12:21:15 2022 +0200 chore(deps): bump moment from 2.29.3 to 2.29.4 (#4574) Bumps [moment](https://github.com/moment/moment) from 2.29.3 to 2.29.4. - [Release notes](https://github.com/moment/moment/releases) - [Changelog](https://github.com/moment/moment/blob/develop/CHANGELOG.md) - [Commits](https://github.com/moment/moment/compare/2.29.3...2.29.4) --- updated-dependencies: - dependency-name: moment dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 587d402c34859ca46388c78bf8d5f083f17f1012 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue Jul 12 12:21:08 2022 +0200 chore(deps-dev): bump rollup from 2.75.7 to 2.76.0 (#4575) Bumps [rollup](https://github.com/rollup/rollup) from 2.75.7 to 2.76.0. - [Release notes](https://github.com/rollup/rollup/releases) - [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md) - [Commits](https://github.com/rollup/rollup/compare/v2.75.7...v2.76.0) --- updated-dependencies: - dependency-name: rollup dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 449fb8c08bc7dc7cfc8f18c3defad016f2323765 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue Jul 12 12:20:55 2022 +0200 chore(deps): bump flag-icons from 6.6.2 to 6.6.3 (#4577) Bumps [flag-icons](https://github.com/lipis/flag-icons) from 6.6.2 to 6.6.3. - [Release notes](https://github.com/lipis/flag-icons/releases) - [Changelog](https://github.com/lipis/flag-icons/blob/main/CHANGELOG.md) - [Commits](https://github.com/lipis/flag-icons/compare/v6.6.2...v6.6.3) --- updated-dependencies: - dependency-name: flag-icons dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 83349ce2e08b0a01a46e71e5d04b3694744ab9dd Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue Jul 12 12:20:44 2022 +0200 chore(deps-dev): bump nodemon from 2.0.18 to 2.0.19 (#4576) Bumps [nodemon](https://github.com/remy/nodemon) from 2.0.18 to 2.0.19. - [Release notes](https://github.com/remy/nodemon/releases) - [Commits](https://github.com/remy/nodemon/compare/v2.0.18...v2.0.19) --- updated-dependencies: - dependency-name: nodemon dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 9dac202e4661ca19f1aad999b47243e5a18b8c01 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue Jul 12 11:58:22 2022 +0200 chore(deps): bump sweetalert2 from 11.4.19 to 11.4.20 (#4578) Bumps [sweetalert2](https://github.com/sweetalert2/sweetalert2) from 11.4.19 to 11.4.20. - [Release notes](https://github.com/sweetalert2/sweetalert2/releases) - [Changelog](https://github.com/sweetalert2/sweetalert2/blob/main/CHANGELOG.md) - [Commits](https://github.com/sweetalert2/sweetalert2/compare/v11.4.19...v11.4.20) --- updated-dependencies: - dependency-name: sweetalert2 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit a210ae797a7c3f3c5ae28f23f342f1b612e186d0 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue Jul 5 21:16:56 2022 +0200 chore(deps-dev): bump postcss-cli from 9.1.0 to 10.0.0 (#4563) Bumps [postcss-cli](https://github.com/postcss/postcss-cli) from 9.1.0 to 10.0.0. - [Release notes](https://github.com/postcss/postcss-cli/releases) - [Changelog](https://github.com/postcss/postcss-cli/blob/master/CHANGELOG.md) - [Commits](https://github.com/postcss/postcss-cli/compare/9.1.0...10.0.0) --- updated-dependencies: - dependency-name: postcss-cli dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 01de2be6b5dbb5b2438540f87e2c8e2310b392ca Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue Jul 5 21:16:41 2022 +0200 chore(deps-dev): bump lockfile-lint from 4.7.5 to 4.7.6 (#4562) Bumps [lockfile-lint](https://github.com/lirantal/lockfile-lint) from 4.7.5 to 4.7.6. - [Release notes](https://github.com/lirantal/lockfile-lint/releases) - [Commits](https://github.com/lirantal/lockfile-lint/compare/[email protected]@4.7.6) --- updated-dependencies: - dependency-name: lockfile-lint dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> commit 8a9240c772cf7ba93d75d64e2efa11af6e942b93 Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue Jul 5 21:16:24 2022 +0200 chore(deps): bump jquery-validation from 1.19.4 to 1.19.5 (#4560) Bumps [jquery-validation](https://github.com/jquery-validation/jquery-validation) from 1.19.4 to 1.19.5. - [Release notes](https://github.com/jquery-validation/jquery-validation/releases) - [Cha…
This reverts commit 6789175.
This reverts commit b1b8b99.
This reverts commit 1e4edd2.
This reverts commit 3fa495e.
@burdittw thanks for your PR, we have upgraded your PR here https://github.com/ColorlibHQ/AdminLTE/blob/master/src/ts/fullscreen.ts if any bug or improvement is there please check |
Added the necessary JavaScript to allow for full screen mode to be used. This code uses the MDN Fullscreen API and also takes the F11 browser mode into account to change the icon to extend and compress depending if in full screen mode or not. I have tested this code on Edge, Firefox, and Brave with no issues.