arkaos 3.70.1 → 3.70.2
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.
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.70.
|
|
1
|
+
3.70.2
|
|
@@ -9,7 +9,8 @@ import { FitAddon } from '@xterm/addon-fit'
|
|
|
9
9
|
import { WebLinksAddon } from '@xterm/addon-web-links'
|
|
10
10
|
import { SearchAddon } from '@xterm/addon-search'
|
|
11
11
|
import '@xterm/xterm/css/xterm.css'
|
|
12
|
-
import type
|
|
12
|
+
import { useTerminalThemes, type XtermTheme } from '~/composables/useTerminalThemes'
|
|
13
|
+
import { useTerminalSession } from '~/composables/useTerminalSession'
|
|
13
14
|
|
|
14
15
|
interface Props {
|
|
15
16
|
session?: ReturnType<typeof useTerminalSession>
|
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
<script setup lang="ts">
|
|
2
2
|
// PR99b v3.68.0 — Real-shell terminal (single session).
|
|
3
3
|
// PR99c v3.69.0 — Multi-session tabs + browser-local command history.
|
|
4
|
-
//
|
|
5
|
-
//
|
|
6
|
-
|
|
7
|
-
|
|
4
|
+
// v3.70.2 — explicit composable imports (auto-import was missing the
|
|
5
|
+
// newly added useTerminalThemes on dev servers that didn't restart).
|
|
6
|
+
|
|
7
|
+
import { useTerminalTabs } from '~/composables/useTerminalTabs'
|
|
8
|
+
import { useTerminalThemes } from '~/composables/useTerminalThemes'
|
|
8
9
|
|
|
9
10
|
definePageMeta({ layout: 'default' })
|
|
10
11
|
|
package/package.json
CHANGED