diff --git a/assets/components.d.ts b/assets/components.d.ts index b83e0be1..1cdcaaf8 100644 --- a/assets/components.d.ts +++ b/assets/components.d.ts @@ -4,6 +4,7 @@ declare module 'vue' { export interface GlobalComponents { + CilFindInPage: typeof import('~icons/cil/find-in-page')['default'] ContainerStat: typeof import('./components/ContainerStat.vue')['default'] ContainerTitle: typeof import('./components/ContainerTitle.vue')['default'] DropdownMenu: typeof import('./components/DropdownMenu.vue')['default'] @@ -14,6 +15,7 @@ declare module 'vue' { LogEventSource: typeof import('./components/LogEventSource.vue')['default'] LogViewer: typeof import('./components/LogViewer.vue')['default'] LogViewerWithSource: typeof import('./components/LogViewerWithSource.vue')['default'] + MdiDotsVertical: typeof import('~icons/mdi/dots-vertical')['default'] MobileMenu: typeof import('./components/MobileMenu.vue')['default'] PastTime: typeof import('./components/PastTime.vue')['default'] RelativeTime: typeof import('./components/RelativeTime.vue')['default'] diff --git a/assets/components/__snapshots__/LogEventSource.spec.ts.snap b/assets/components/__snapshots__/LogEventSource.spec.ts.snap index 194c2a12..ea412a91 100644 --- a/assets/components/__snapshots__/LogEventSource.spec.ts.snap +++ b/assets/components/__snapshots__/LogEventSource.spec.ts.snap @@ -2,37 +2,55 @@ exports[` > render html correctly > should render dates with 12 hour style 1`] = ` "" `; exports[` > render html correctly > should render dates with 24 hour style 1`] = ` "" `; exports[` > render html correctly > should render messages 1`] = ` "
    -
  • \\"This is a message.\\"
  • +
  • + +
    \\"This is a message.\\"
    +
" `; exports[` > render html correctly > should render messages with color 1`] = ` "
    -
  • blackwhite
  • +
  • + +
    blackwhite
    +
" `; exports[` > render html correctly > should render messages with filter 1`] = ` "
    -
  • This is a test <hi></hi>
  • +
  • + +
    This is a test <hi></hi>
    +
" `; exports[` > render html correctly > should render messages with html entities 1`] = ` "
    -
  • <test>foo bar</test>
  • +
  • + +
    <test>foo bar</test>
    +
" `;