mirror of
https://github.com/amir20/dozzle.git
synced 2025-12-21 13:23:07 +01:00
chore: updates modules (#4264)
This commit is contained in:
@@ -173,10 +173,10 @@ const perPage = useStorage("DOZZLE_TABLE_PAGE_SIZE", 15);
|
|||||||
const pageSizes = [15, 30, 50, 100];
|
const pageSizes = [15, 30, 50, 100];
|
||||||
|
|
||||||
const storage = useStorage<{ column: keys; direction: 1 | -1 }>("DOZZLE_TABLE_CONTAINERS_SORT", {
|
const storage = useStorage<{ column: keys; direction: 1 | -1 }>("DOZZLE_TABLE_CONTAINERS_SORT", {
|
||||||
column: "created",
|
column: "created" as keys,
|
||||||
direction: -1,
|
direction: -1 as 1 | -1,
|
||||||
});
|
});
|
||||||
const { column: sortField, direction } = toRefs(storage);
|
const { column: sortField, direction } = toRefs(storage.value);
|
||||||
const counter = useInterval(10000);
|
const counter = useInterval(10000);
|
||||||
const filteredContainers = computed(() =>
|
const filteredContainers = computed(() =>
|
||||||
containers.filter((c) => selectedHost.value === null || c.host === selectedHost.value),
|
containers.filter((c) => selectedHost.value === null || c.host === selectedHost.value),
|
||||||
|
|||||||
@@ -183,7 +183,7 @@ const menuItems = computed(() => {
|
|||||||
|
|
||||||
for (const item of sortedContainers.value) {
|
for (const item of sortedContainers.value) {
|
||||||
const namespace = item.namespace;
|
const namespace = item.namespace;
|
||||||
if (debouncedPinnedContainers.value.has(item.name)) {
|
if (debouncedPinnedContainers.value?.has(item.name)) {
|
||||||
pinned.push(item);
|
pinned.push(item);
|
||||||
} else if (namespace) {
|
} else if (namespace) {
|
||||||
namespaced[namespace] ||= [];
|
namespaced[namespace] ||= [];
|
||||||
|
|||||||
@@ -61,4 +61,4 @@ export const {
|
|||||||
search,
|
search,
|
||||||
locale,
|
locale,
|
||||||
automaticRedirect,
|
automaticRedirect,
|
||||||
} = toRefs(settings);
|
} = toRefs(settings.value);
|
||||||
|
|||||||
@@ -95,7 +95,7 @@ services:
|
|||||||
|
|
||||||
playwright:
|
playwright:
|
||||||
container_name: playwright
|
container_name: playwright
|
||||||
image: mcr.microsoft.com/playwright:v1.56.1-jammy
|
image: mcr.microsoft.com/playwright:v1.57.0-jammy
|
||||||
working_dir: /app
|
working_dir: /app
|
||||||
volumes:
|
volumes:
|
||||||
- .:/app
|
- .:/app
|
||||||
|
|||||||
30
package.json
30
package.json
@@ -33,7 +33,7 @@
|
|||||||
"@iconify-json/carbon": "^1.2.14",
|
"@iconify-json/carbon": "^1.2.14",
|
||||||
"@iconify-json/cil": "^1.2.3",
|
"@iconify-json/cil": "^1.2.3",
|
||||||
"@iconify-json/ic": "^1.2.4",
|
"@iconify-json/ic": "^1.2.4",
|
||||||
"@iconify-json/material-symbols": "^1.2.47",
|
"@iconify-json/material-symbols": "^1.2.48",
|
||||||
"@iconify-json/mdi": "^1.2.3",
|
"@iconify-json/mdi": "^1.2.3",
|
||||||
"@iconify-json/mdi-light": "^1.2.2",
|
"@iconify-json/mdi-light": "^1.2.2",
|
||||||
"@iconify-json/octicon": "^1.2.19",
|
"@iconify-json/octicon": "^1.2.19",
|
||||||
@@ -41,10 +41,10 @@
|
|||||||
"@intlify/unplugin-vue-i18n": "^11.0.1",
|
"@intlify/unplugin-vue-i18n": "^11.0.1",
|
||||||
"@tailwindcss/typography": "^0.5.19",
|
"@tailwindcss/typography": "^0.5.19",
|
||||||
"@tailwindcss/vite": "4.1.17",
|
"@tailwindcss/vite": "4.1.17",
|
||||||
"@vueuse/components": "^14.0.0",
|
"@vueuse/components": "^14.1.0",
|
||||||
"@vueuse/core": "^14.0.0",
|
"@vueuse/core": "^14.1.0",
|
||||||
"@vueuse/integrations": "^14.0.0",
|
"@vueuse/integrations": "^14.1.0",
|
||||||
"@vueuse/router": "14.0.0",
|
"@vueuse/router": "14.1.0",
|
||||||
"@xterm/addon-web-links": "^0.11.0",
|
"@xterm/addon-web-links": "^0.11.0",
|
||||||
"@xterm/xterm": "^5.5.0",
|
"@xterm/xterm": "^5.5.0",
|
||||||
"ansi-to-html": "^0.7.2",
|
"ansi-to-html": "^0.7.2",
|
||||||
@@ -63,26 +63,26 @@
|
|||||||
"splitpanes": "^4.0.4",
|
"splitpanes": "^4.0.4",
|
||||||
"strip-ansi": "^7.1.2",
|
"strip-ansi": "^7.1.2",
|
||||||
"tailwindcss": "4.1.17",
|
"tailwindcss": "4.1.17",
|
||||||
"unplugin-auto-import": "^20.2.0",
|
"unplugin-auto-import": "^20.3.0",
|
||||||
"unplugin-icons": "^22.5.0",
|
"unplugin-icons": "^22.5.0",
|
||||||
"unplugin-vue-components": "^30.0.0",
|
"unplugin-vue-components": "^30.0.0",
|
||||||
"unplugin-vue-macros": "^2.14.5",
|
"unplugin-vue-macros": "^2.14.5",
|
||||||
"unplugin-vue-router": "^0.17.1",
|
"unplugin-vue-router": "^0.18.0",
|
||||||
"vite": "7.2.4",
|
"vite": "7.2.4",
|
||||||
"vite-plugin-vue-layouts": "^0.11.0",
|
"vite-plugin-vue-layouts": "^0.11.0",
|
||||||
"vite-svg-loader": "^5.1.0",
|
"vite-svg-loader": "^5.1.0",
|
||||||
"vitepress": "1.6.4",
|
"vitepress": "1.6.4",
|
||||||
"vue": "^3.5.24",
|
"vue": "^3.5.25",
|
||||||
"vue-i18n": "^11.2.1",
|
"vue-i18n": "^11.2.2",
|
||||||
"vue-router": "^4.6.3"
|
"vue-router": "^4.6.3"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@apache-arrow/esnext-esm": "^21.1.0",
|
"@apache-arrow/esnext-esm": "^21.1.0",
|
||||||
"@iconify-json/ion": "^1.2.6",
|
"@iconify-json/ion": "^1.2.6",
|
||||||
"@iconify-json/material-symbols-light": "^1.2.47",
|
"@iconify-json/material-symbols-light": "^1.2.48",
|
||||||
"@iconify-json/ri": "^1.2.6",
|
"@iconify-json/ri": "^1.2.6",
|
||||||
"@pinia/testing": "^1.0.3",
|
"@pinia/testing": "^1.0.3",
|
||||||
"@playwright/test": "^1.56.1",
|
"@playwright/test": "^1.57.0",
|
||||||
"@types/d3-array": "^3.2.2",
|
"@types/d3-array": "^3.2.2",
|
||||||
"@types/d3-ease": "^3.0.2",
|
"@types/d3-ease": "^3.0.2",
|
||||||
"@types/d3-scale": "^4.0.9",
|
"@types/d3-scale": "^4.0.9",
|
||||||
@@ -92,20 +92,20 @@
|
|||||||
"@types/lodash.debounce": "^4.0.9",
|
"@types/lodash.debounce": "^4.0.9",
|
||||||
"@types/node": "^24.10.1",
|
"@types/node": "^24.10.1",
|
||||||
"@vitejs/plugin-vue": "6.0.2",
|
"@vitejs/plugin-vue": "6.0.2",
|
||||||
"@vue/compiler-sfc": "^3.5.24",
|
"@vue/compiler-sfc": "^3.5.25",
|
||||||
"@vue/test-utils": "^2.4.6",
|
"@vue/test-utils": "^2.4.6",
|
||||||
"bumpp": "^10.3.1",
|
"bumpp": "^10.3.2",
|
||||||
"c8": "^10.1.3",
|
"c8": "^10.1.3",
|
||||||
"concurrently": "^9.2.1",
|
"concurrently": "^9.2.1",
|
||||||
"eventsourcemock": "^2.0.0",
|
"eventsourcemock": "^2.0.0",
|
||||||
"jsdom": "^27.2.0",
|
"jsdom": "^27.2.0",
|
||||||
"lint-staged": "^16.2.7",
|
"lint-staged": "^16.2.7",
|
||||||
"prettier": "^3.6.2",
|
"prettier": "^3.7.1",
|
||||||
"prettier-plugin-tailwindcss": "^0.7.1",
|
"prettier-plugin-tailwindcss": "^0.7.1",
|
||||||
"simple-git-hooks": "^2.13.1",
|
"simple-git-hooks": "^2.13.1",
|
||||||
"ts-node": "^10.9.2",
|
"ts-node": "^10.9.2",
|
||||||
"typescript": "^5.9.3",
|
"typescript": "^5.9.3",
|
||||||
"vitest": "^4.0.13",
|
"vitest": "^4.0.14",
|
||||||
"vue-component-type-helpers": "3.1.5",
|
"vue-component-type-helpers": "3.1.5",
|
||||||
"vue-tsc": "3.1.5"
|
"vue-tsc": "3.1.5"
|
||||||
},
|
},
|
||||||
|
|||||||
928
pnpm-lock.yaml
generated
928
pnpm-lock.yaml
generated
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user