Skip to content

Commit

Permalink
[DO-582] Update dependencies (#45)
Browse files Browse the repository at this point in the history
* Update dependencies to wanted

* Update dev dependencies to latest

* Update package.json

* Define tsconfig for server

* Workaround for type issue nuxt/content#2177

* Fix ProseCode warns nuxt/content#2111

* Fix internal links
  • Loading branch information
d0rich authored Jul 21, 2023
1 parent 1483afd commit bd71ebb
Show file tree
Hide file tree
Showing 7 changed files with 8,064 additions and 7,317 deletions.
53 changes: 53 additions & 0 deletions components/content/ProseCode.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
<!--
~ Copyright 2023 Exactpro (Exactpro Systems Limited)
~
~ Licensed under the Apache License, Version 2.0 (the "License");
~ you may not use this file except in compliance with the License.
~ You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing, software
~ distributed under the License is distributed on an "AS IS" BASIS,
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
~ See the License for the specific language governing permissions and
~ limitations under the License.
-->

<script lang="ts">
// File is copied from here: https://github.com/nuxt/content/blob/main/src/runtime/components/Prose/ProseCode.vue
// Here just single root element is added and styles are removed
// TODO: remove this file when https://github.com/nuxt/content/issues/2111 is resolved
import { defineComponent } from '#imports'
export default defineComponent({
props: {
code: {
type: String,
default: ''
},
language: {
type: String,
default: null
},
filename: {
type: String,
default: null
},
highlights: {
type: Array as () => number[],
default: () => []
},
meta: {
type: String,
default: null
}
}
})
</script>

<template>
<div>
<slot />
</div>
</template>
6 changes: 3 additions & 3 deletions docs/content/2.features/1.index.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ Explore them to highlight specific content and make your pages interactive.

Contents:

1. [Notice](./features/notice)
2. [Term](./features/term)
3. [Diagram](./features/mermaid)
1. [Notice](/features/notice)
2. [Term](/features/term)
3. [Diagram](/features/mermaid)
Loading

0 comments on commit bd71ebb

Please sign in to comment.