Skip to content

Commit e35d4ec

Browse files
committed
update docs
1 parent 030cdd0 commit e35d4ec

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

57 files changed

+141
-29
lines changed

astro.config.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ export default defineConfig({
3636
{ label: 'Examples', link: '/guides/examples/' },
3737
{ label: 'Advanced Use-Cases', link: '/guides/advancedusecases/' },
3838

39-
{ label: 'Syntax Highlighting', link: '/guides/syntaxhighlighting/' },
39+
{ label: 'Styling and CSS', link: '/guides/stylingandcss/' },
4040
{ label: 'Obsidian Publish', link: '/guides/obsidianpublish/' },
4141
],
4242
},

bun.lockb

-671 Bytes
Binary file not shown.

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,16 +11,16 @@
1111
"format": "prettier --plugin prettier-plugin-astro --plugin prettier-plugin-svelte --write ."
1212
},
1313
"dependencies": {
14-
"@astrojs/starlight": "0.25.0",
14+
"@astrojs/starlight": "0.25.1",
1515
"astro": "4.11.5",
1616
"starlight-links-validator": "^0.9.1",
1717
"starlight-typedoc": "^0.13.0",
18-
"typedoc": "^0.26.3",
19-
"typedoc-plugin-markdown": "^4.1.2",
20-
"typedoc-plugin-mdn-links": "^3.2.3"
18+
"typedoc": "^0.26.4",
19+
"typedoc-plugin-markdown": "^4.2.1",
20+
"typedoc-plugin-mdn-links": "^3.2.4"
2121
},
2222
"devDependencies": {
23-
"prettier": "^3.3.2",
23+
"prettier": "^3.3.3",
2424
"prettier-plugin-astro": "^0.14.0",
2525
"prettier-plugin-svelte": "^3.2.5"
2626
}

src/components/inputField/InputFieldAllowedArguments.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
import InputFieldArgumentLink from './InputFieldArgumentLink.astro';
3-
import { InputFieldArgumentConfigs, InputFieldArgumentType, InputFieldType } from '../../config/static';
3+
import { InputFieldType } from '../../config/static';
44
import { ConfigHelper } from '../../config/configHelper';
55
66
interface Props {

src/components/inputField/InputFieldArgumentInfo.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ const { type } = Astro.props;
88
const config = InputFieldArgumentConfigs[type];
99
---
1010

11-
<table>
11+
<table class="full-width">
1212
<tbody>
1313
<tr>
1414
<td>Identifier</td>

src/components/inputField/InputFieldArgumentValuesInfo.astro

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
---
22
import { InputFieldArgumentConfigs, InputFieldArgumentType } from '../../config/static';
3-
import { FieldArgumentValueConfig } from '../../config/static';
43
import { ConfigHelper } from '../../config/configHelper';
54
interface Props {
65
type: InputFieldArgumentType;

src/components/inputField/InputFieldInfo.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ const { type } = Astro.props;
88
const config = InputFieldConfigs[type];
99
---
1010

11-
<table>
11+
<table class="full-width">
1212
<tbody>
1313
<tr>
1414
<td>Identifier</td>

src/components/viewField/ViewFieldArgumentInfo.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ const { type } = Astro.props;
88
const config = ViewFieldArgumentConfigs[type];
99
---
1010

11-
<table>
11+
<table class="full-width">
1212
<tbody>
1313
<tr>
1414
<td>Identifier</td>

src/components/viewField/ViewFieldArgumentValuesInfo.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
import { FieldArgumentValueConfig, ViewFieldArgumentConfigs, ViewFieldArgumentType } from '../../config/static';
2+
import { ViewFieldArgumentConfigs, ViewFieldArgumentType } from '../../config/static';
33
import { ConfigHelper } from '../../config/configHelper';
44
55
interface Props {

src/components/viewField/ViewFieldInfo.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ interface Props {
77
const { type } = Astro.props;
88
---
99

10-
<table>
10+
<table class="full-width">
1111
<tbody>
1212
<tr>
1313
<td>Identifier</td>
Lines changed: 29 additions & 0 deletions

src/content/docs/guides/syntaxHighlighting.md

Lines changed: 0 additions & 14 deletions
This file was deleted.

src/content/docs/reference/inputFieldArguments/addLabels.mdx

Lines changed: 2 additions & 0 deletions

src/content/docs/reference/inputFieldArguments/allowOther.mdx

Lines changed: 2 additions & 0 deletions

src/content/docs/reference/inputFieldArguments/class.mdx

Lines changed: 2 additions & 0 deletions

src/content/docs/reference/inputFieldArguments/defaultValue.mdx

Lines changed: 2 additions & 0 deletions

src/content/docs/reference/inputFieldArguments/limit.mdx

Lines changed: 2 additions & 0 deletions

src/content/docs/reference/inputFieldArguments/maxValue.mdx

Lines changed: 2 additions & 0 deletions

src/content/docs/reference/inputFieldArguments/minValue.mdx

Lines changed: 2 additions & 0 deletions

src/content/docs/reference/inputFieldArguments/offValue.mdx

Lines changed: 2 additions & 0 deletions

src/content/docs/reference/inputFieldArguments/onValue.mdx

Lines changed: 2 additions & 0 deletions

src/content/docs/reference/inputFieldArguments/option.mdx

Lines changed: 2 additions & 0 deletions

src/content/docs/reference/inputFieldArguments/optionQuery.mdx

Lines changed: 2 additions & 0 deletions

src/content/docs/reference/inputFieldArguments/placeholder.mdx

Lines changed: 2 additions & 0 deletions

src/content/docs/reference/inputFieldArguments/showcase.mdx

Lines changed: 2 additions & 0 deletions

src/content/docs/reference/inputFieldArguments/stepSize.mdx

Lines changed: 2 additions & 0 deletions

src/content/docs/reference/inputFieldArguments/title.mdx

Lines changed: 2 additions & 0 deletions

src/content/docs/reference/inputFieldArguments/useLinks.mdx

Lines changed: 2 additions & 0 deletions

src/content/docs/reference/inputFields/date.mdx

Lines changed: 3 additions & 1 deletion

src/content/docs/reference/inputFields/datePicker.mdx

Lines changed: 3 additions & 1 deletion

src/content/docs/reference/inputFields/dateTime.mdx

Lines changed: 2 additions & 0 deletions

src/content/docs/reference/inputFields/editor.mdx

Lines changed: 2 additions & 0 deletions

src/content/docs/reference/inputFields/imageListSuggester.mdx

Lines changed: 2 additions & 0 deletions

src/content/docs/reference/inputFields/imageSuggester.mdx

Lines changed: 2 additions & 0 deletions

src/content/docs/reference/inputFields/inlineList.mdx

Lines changed: 2 additions & 0 deletions

src/content/docs/reference/inputFields/inlineListSuggester.mdx

Lines changed: 2 additions & 0 deletions

src/content/docs/reference/inputFields/inlineSelect.mdx

Lines changed: 2 additions & 0 deletions

src/content/docs/reference/inputFields/list.mdx

Lines changed: 2 additions & 0 deletions

src/content/docs/reference/inputFields/listSuggester.mdx

Lines changed: 2 additions & 0 deletions

src/content/docs/reference/inputFields/multiSelect.mdx

Lines changed: 2 additions & 0 deletions

src/content/docs/reference/inputFields/number.mdx

Lines changed: 2 additions & 0 deletions

0 commit comments

Comments
 (0)