refactor(stage-ui): rename composables to kebab-case

This commit is contained in:
Neko Ayaka
2026-01-08 15:52:02 +08:00
parent bdea074927
commit 774b819e4d
6 changed files with 5 additions and 5 deletions
@@ -1,8 +1,7 @@
<script setup lang="ts">
import { IconStatusItem, RippleGrid } from '@proj-airi/stage-ui/components'
import { useAnalytics } from '@proj-airi/stage-ui/composables'
import { useAnalytics, useScrollToHash } from '@proj-airi/stage-ui/composables'
import { useRippleGridState } from '@proj-airi/stage-ui/composables/use-ripple-grid-state'
import { useScrollToHash } from '@proj-airi/stage-ui/composables/useScrollToHash'
import { useProvidersStore } from '@proj-airi/stage-ui/stores/providers'
import { storeToRefs } from 'pinia'
import { computed } from 'vue'
+2 -1
View File
@@ -1,11 +1,12 @@
export * from './audio'
export * from './canvas-alpha'
export * from './llmmarkerParser'
export * from './llm-marker-parser'
export * from './markdown'
export * from './micvad'
export * from './queues'
export * from './use-analytics'
export * from './use-build-info'
export * from './use-chat-session/summary'
export * from './use-scroll-to-hash'
export * from './use-versioned-local-storage'
export * from './whisper'
@@ -1,6 +1,6 @@
import { describe, expect, it } from 'vitest'
import { useLlmmarkerParser } from './llmmarkerParser'
import { useLlmmarkerParser } from './llm-marker-parser'
describe('useLlmmarkerParser', async () => {
it('should parse pure literals', async () => {
+1 -1
View File
@@ -10,7 +10,7 @@ import { defineStore, storeToRefs } from 'pinia'
import { computed, ref, toRaw, watch } from 'vue'
import { useAnalytics } from '../composables'
import { useLlmmarkerParser } from '../composables/llmmarkerParser'
import { useLlmmarkerParser } from '../composables/llm-marker-parser'
import { categorizeResponse, createStreamingCategorizer } from '../composables/response-categoriser'
import { useLLM } from '../stores/llm'
import { createQueue } from '../utils/queue'