Skip to content

Commit 2b49d13

Browse files
renovate[bot]farnabazTahul
authored
chore(deps): update all non-major dependencies (#1724)
Co-authored-by: Ahad Birang <[email protected]> Co-authored-by: Yaël Guilloux <[email protected]>
1 parent 9258e5c commit 2b49d13

File tree

9 files changed

+388
-430
lines changed

9 files changed

+388
-430
lines changed

docs/components/content/ChangeLog.vue

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,12 +46,12 @@ css({
4646
paddingBottom: '{space.4}',
4747
4848
'h2': {
49-
fontSize: '{fontSizes.2xl}',
50-
fontWeight: '{fontWeights.bold}',
51-
color: '{colors.gray.900}',
49+
fontSize: '{fontSize.2xl}',
50+
fontWeight: '{fontWeight.bold}',
51+
color: '{color.gray.900}',
5252
marginTop: '{space.8}',
5353
'@dark': {
54-
color: '{colors.gray.100}'
54+
color: '{color.gray.100}'
5555
}
5656
}
5757
},

docs/components/content/HeroAnnouncement.vue

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@ defineProps({
2121
<style scoped lang="ts">
2222
css({
2323
'.link': {
24-
color: '{colors.primary.900}',
25-
backgroundColor: '{colors.primary.100}',
26-
borderColor: '{colors.primary.400}',
24+
color: '{color.primary.900}',
25+
backgroundColor: '{color.primary.100}',
26+
borderColor: '{color.primary.400}',
2727
borderRadius: '{radii.md}',
28-
borderWidth: '{borderWidths.sm}',
28+
borderWidth: '{borderWidth.sm}',
2929
borderStyle: 'solid',
3030
display: 'inline-flex',
3131
padding: '{space.2} {space.4}',
@@ -35,22 +35,22 @@ css({
3535
gap: '{space.1}',
3636
3737
'@dark': {
38-
color: '{colors.primary.100}',
38+
color: '{color.primary.100}',
3939
backgroundColor: 'transparent',
40-
borderColor: '{colors.primary.700}'
40+
borderColor: '{color.primary.700}'
4141
},
4242
4343
'&:hover': {
44-
backgroundColor: '{colors.primary.200}',
44+
backgroundColor: '{color.primary.200}',
4545
'@dark': {
46-
backgroundColor: '{colors.primary.900}'
46+
backgroundColor: '{color.primary.900}'
4747
},
4848
}
4949
},
5050
'.link span': {
5151
// font-medium text-sm
52-
fontWeight: '{fontWeights.medium}',
53-
fontSize: '{fontSizes.sm}'
52+
fontWeight: '{fontWeight.medium}',
53+
fontSize: '{fontSize.sm}'
5454
},
5555
'.link .icon': {
5656
width: '{space.4}',

docs/components/content/V1DocsLinks.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,9 @@ css({
3838
justifyContent: 'center'
3939
},
4040
'.links-wrapper a': {
41-
color: '{colors.black}',
41+
color: '{color.black}',
4242
'@dark': {
43-
color: '{colors.white}'
43+
color: '{color.white}'
4444
}
4545
}
4646
})

docs/content/2.get-started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ How to get started with Nuxt Content by creating a new project or adding it to a
1212

1313
You can start playing with Nuxt Content in your browser using our online sandboxes:
1414

15-
:button-link[Play on StackBlitz]{icon="IconStackBlitz" href="https://stackblitz.com/github/nuxt/starter/tree/content" blank .mr-2}
15+
:button-link[Play on StackBlitz]{icon="IconStackBlitz" href="https://stackblitz.com/github/nuxt/starter/tree/content" blank style="margin-right: var(--space-4);"}
1616
:button-link[Play on CodeSandbox]{icon="IconCodeSandBox" href="https://codesandbox.io/s/github/nuxt/starter/tree/content" blank}
1717

1818
## New Project

docs/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@
99
"generate": "nuxi generate"
1010
},
1111
"devDependencies": {
12-
"@nuxt-themes/docus": "^1.0.3",
13-
"@nuxthq/studio": "^0.3.1",
14-
"@nuxtlabs/github-module": "^1.5.3",
12+
"@nuxt-themes/docus": "^1.1.3",
13+
"@nuxthq/studio": "^0.3.5",
14+
"@nuxtlabs/github-module": "^1.5.4",
1515
"monaco-editor-core": "^0.34.1",
1616
"nuxt": "v3.0.0",
1717
"vue-plausible": "^1.3.2"

docs/tokens.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { defineTheme } from 'pinceau'
22

33
export default defineTheme({
4-
colors: {
4+
color: {
55
primary: {
66
50: { value: '#ecfdf5' },
77
100: { value: '#d1fae5' },

0 commit comments

Comments
 (0)