Skip to content

Commit 12523da

Browse files
committed
update NPM dependencies, fix keyboard shortcut overlay dark mode, ignore package-lock.json in git export
1 parent 6dac1b0 commit 12523da

File tree

9 files changed

+1561
-1309
lines changed

9 files changed

+1561
-1309
lines changed

.gitattributes

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,6 @@
1515
/psalm.xml.dist export-ignore
1616
/testbench.yaml export-ignore
1717
/UPGRADING.md export-ignore
18+
/package-lock.json export-ignore
1819
/phpstan.neon.dist export-ignore
1920
/phpstan-baseline.neon export-ignore

package-lock.json

Lines changed: 1531 additions & 1299 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

public/app.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

public/app.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

public/app.js.LICENSE.txt

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@
55
* @license MIT
66
*/
77

8+
/*!
9+
* pinia v2.2.2
10+
* (c) 2024 Eduardo San Martin Morote
11+
* @license MIT
12+
*/
13+
814
/*! #__NO_SIDE_EFFECTS__ */
915

1016
/*! ieee754. BSD-3-Clause License. Feross Aboukhadijeh <https://feross.org/opensource> */
@@ -19,3 +25,9 @@
1925
* Based on Underscore.js 1.8.3 <http://underscorejs.org/LICENSE>
2026
* Copyright Jeremy Ashkenas, DocumentCloud and Investigative Reporters & Editors
2127
*/
28+
29+
/**
30+
* @vue/shared v3.4.38
31+
* (c) 2018-present Yuxi (Evan) You and Vue contributors
32+
* @license MIT
33+
**/

public/mix-manifest.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"/app.js": "/app.js?id=0148b95eba6dc928019bb19168dd0247",
3-
"/app.css": "/app.css?id=12c5e78a91987c11d8a0cc04436541e9",
2+
"/app.js": "/app.js?id=6c51578cafcbf2f5e90fbf568a61ab8f",
3+
"/app.css": "/app.css?id=5593a0331dd40729ff41e32a6035d872",
44
"/img/log-viewer-128.png": "/img/log-viewer-128.png?id=d576c6d2e16074d3f064e60fe4f35166",
55
"/img/log-viewer-32.png": "/img/log-viewer-32.png?id=f8ec67d10f996aa8baf00df3b61eea6d",
66
"/img/log-viewer-64.png": "/img/log-viewer-64.png?id=8902d596fc883ca9eb8105bb683568c6"

resources/css/app.scss

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -522,7 +522,9 @@ html.dark {
522522
@apply outline-none ring-1 ring-brand-500 ring-opacity-50 dark:ring-brand-700 dark:ring-opacity-50;
523523
}
524524

525-
transform-origin: top right !important;
525+
& {
526+
transform-origin: top right !important;
527+
}
526528

527529
&.up {
528530
transform-origin: bottom right !important;
@@ -534,7 +536,9 @@ html.dark {
534536

535537
&.left {
536538
@apply left-1 right-auto;
537-
transform-origin: top left !important;
539+
& {
540+
transform-origin: top left !important;
541+
}
538542

539543
&.up {
540544
transform-origin: bottom left !important;
@@ -684,9 +688,9 @@ button.button:hover, a.button:hover {
684688
}
685689

686690
.keyboard-shortcut {
687-
@apply text-sm flex items-center justify-start mb-3 w-full text-gray-600 dark:text-gray-400;
691+
@apply text-sm flex items-center justify-start mb-3 w-full text-gray-600 dark:text-gray-300;
688692

689693
.shortcut {
690-
@apply font-mono text-base inline-flex w-6 h-6 mr-2 items-center justify-center rounded border border-gray-400 dark:border-gray-600 ring-1 ring-gray-100 dark:ring-gray-900;
694+
@apply font-mono text-base dark:text-gray-300 inline-flex w-6 h-6 mr-2 items-center justify-center rounded border border-gray-400 dark:border-gray-500 ring-1 ring-gray-100 dark:ring-gray-900;
691695
}
692696
}

resources/js/components/KeyboardShortcutsOverlay.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@
1919
<div class="flex h-full flex-col overflow-y-scroll bg-white py-6 shadow-xl dark:bg-gray-700">
2020
<div class="px-4 sm:px-6">
2121
<div class="flex items-start justify-between">
22-
<DialogTitle class="text-base font-semibold leading-6 text-gray-900">Keyboard Shortcuts</DialogTitle>
22+
<DialogTitle class="text-base font-semibold leading-6 text-gray-900 dark:text-gray-100">Keyboard Shortcuts</DialogTitle>
2323
<div class="ml-3 flex h-7 items-center">
24-
<button type="button" class="rounded-md bg-white text-gray-400 hover:text-gray-500 focus:outline-none focus:ring-2 focus:ring-brand-500 focus:ring-offset-2" @click="logViewerStore.helpSlideOverOpen = false">
24+
<button type="button" class="rounded-md bg-white dark:bg-gray-700 text-gray-400 hover:text-gray-500 dark:text-gray-400 dark:hover:text-gray-300 focus:outline-none focus:ring-2 focus:ring-brand-500 dark:focus:ring-brand-300 focus:ring-offset-2" @click="logViewerStore.helpSlideOverOpen = false">
2525
<span class="sr-only">Close panel</span>
2626
<XMarkIcon class="h-6 w-6" aria-hidden="true" />
2727
</button>

webpack.mix.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,9 @@ mix.options({
2323
'@': path.resolve(__dirname, 'resources/js/'),
2424
},
2525
},
26+
// stats: {
27+
// children: true,
28+
// }
2629
});
2730

2831
mix.disableSuccessNotifications();

0 commit comments

Comments
 (0)