Skip to content

Commit 030cdd0

Browse files
committed
update to match latest version
1 parent 3807622 commit 030cdd0

Some content is hidden

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

51 files changed

+1841
-351
lines changed

astro.config.mjs

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ export default defineConfig({
2929
{ label: 'Input Fields', link: '/guides/inputfields/' },
3030
{ label: 'Input Field Templates', link: '/guides/templates/' },
3131
{ label: 'View Fields', link: '/guides/viewfields/' },
32-
{ label: 'Buttons', link: '/guides/buttons/', badge: 'New' },
32+
{ label: 'Buttons', link: '/guides/buttons/' },
3333
{ label: 'Meta Bind Embeds', link: '/guides/metabindembed/' },
3434
{ label: 'Bind Targets', link: '/guides/bindtargets/' },
3535

@@ -70,13 +70,14 @@ export default defineConfig({
7070
plugins: [
7171
starlightLinksValidator({
7272
errorOnRelativeLinks: false,
73+
exclude: ['/obsidian-meta-bind-plugin-docs/api/**/*'],
7374
}),
7475
starlightTypeDoc({
7576
entryPoints: ['obsidian-meta-bind-plugin/packages/obsidian/src/docsExports.ts'],
7677
typeDoc: {
77-
parametersFormat: 'table',
78+
parametersFormat: 'htmlTable',
7879
propertiesFormat: 'list',
79-
enumMembersFormat: 'table',
80+
enumMembersFormat: 'htmlTable',
8081
typeDeclarationFormat: 'table',
8182
excludePrivate: true,
8283
excludeProtected: true,

bun.lockb

-15.8 KB
Binary file not shown.

package.json

Lines changed: 25 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,27 @@
11
{
2-
"name": "",
3-
"type": "module",
4-
"version": "0.0.1",
5-
"scripts": {
6-
"dev": "astro dev",
7-
"start": "astro dev",
8-
"build": "astro build",
9-
"preview": "astro preview",
10-
"astro": "astro",
11-
"format": "prettier --plugin prettier-plugin-astro --plugin prettier-plugin-svelte --write ."
12-
},
13-
"dependencies": {
14-
"@astrojs/starlight": "0.24.4",
15-
"astro": "^4.11.0",
16-
"starlight-links-validator": "^0.8.0",
17-
"starlight-typedoc": "^0.12.2",
18-
"typedoc": "^0.25.13",
19-
"typedoc-plugin-markdown": "4.0.0-next.60",
20-
"typedoc-plugin-mdn-links": "^3.1.30"
21-
},
22-
"devDependencies": {
23-
"prettier": "^3.3.2",
24-
"prettier-plugin-astro": "^0.13.0",
25-
"prettier-plugin-svelte": "^3.2.5"
26-
}
2+
"name": "",
3+
"type": "module",
4+
"version": "0.0.1",
5+
"scripts": {
6+
"dev": "astro dev",
7+
"start": "astro dev",
8+
"build": "astro build",
9+
"preview": "astro preview",
10+
"astro": "astro",
11+
"format": "prettier --plugin prettier-plugin-astro --plugin prettier-plugin-svelte --write ."
12+
},
13+
"dependencies": {
14+
"@astrojs/starlight": "0.25.0",
15+
"astro": "4.11.5",
16+
"starlight-links-validator": "^0.9.1",
17+
"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"
21+
},
22+
"devDependencies": {
23+
"prettier": "^3.3.2",
24+
"prettier-plugin-astro": "^0.14.0",
25+
"prettier-plugin-svelte": "^3.2.5"
26+
}
2727
}

src/content/docs/api/classes/NotePosition.md

Lines changed: 24 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -13,27 +13,42 @@ title: "NotePosition"
1313
1414
#### Parameters
1515

16-
| Parameter | Type |
17-
| :------ | :------ |
18-
| `linePosition` | `undefined` \| [`LinePosition`](/obsidian-meta-bind-plugin-docs/api/interfaces/lineposition/) |
16+
<table>
17+
<tr>
18+
<th>Parameter</th>
19+
<th>Type</th>
20+
</tr>
21+
<tr>
22+
<td>
23+
24+
`linePosition`
25+
26+
</td>
27+
<td>
28+
29+
`undefined` \| [`LinePosition`](/obsidian-meta-bind-plugin-docs/api/interfaces/lineposition/)
30+
31+
</td>
32+
</tr>
33+
</table>
1934

2035
#### Returns
2136

2237
[`NotePosition`](/obsidian-meta-bind-plugin-docs/api/classes/noteposition/)
2338

24-
#### Source
39+
#### Defined in
2540

26-
[packages/core/src/config/APIConfigs.ts:65](https://github.com/mProjectsCode/obsidian-meta-bind-plugin/blob/8e08e1ccdd48957df7fc9ebdd7577cd62133b8ff/packages/core/src/config/APIConfigs.ts#L65)
41+
[packages/core/src/config/APIConfigs.ts:65](https://github.com/mProjectsCode/obsidian-meta-bind-plugin/blob/6d84d4e1af13951a4f9f713d142b213b046a5a9e/packages/core/src/config/APIConfigs.ts#L65)
2742

2843
## Properties
2944

3045
### linePosition
3146

3247
> **linePosition**: `undefined` \| [`LinePosition`](/obsidian-meta-bind-plugin-docs/api/interfaces/lineposition/)
3348
34-
#### Source
49+
#### Defined in
3550

36-
[packages/core/src/config/APIConfigs.ts:63](https://github.com/mProjectsCode/obsidian-meta-bind-plugin/blob/8e08e1ccdd48957df7fc9ebdd7577cd62133b8ff/packages/core/src/config/APIConfigs.ts#L63)
51+
[packages/core/src/config/APIConfigs.ts:63](https://github.com/mProjectsCode/obsidian-meta-bind-plugin/blob/6d84d4e1af13951a4f9f713d142b213b046a5a9e/packages/core/src/config/APIConfigs.ts#L63)
3752

3853
## Methods
3954

@@ -45,6 +60,6 @@ title: "NotePosition"
4560

4661
`undefined` \| [`LinePosition`](/obsidian-meta-bind-plugin-docs/api/interfaces/lineposition/)
4762

48-
#### Source
63+
#### Defined in
4964

50-
[packages/core/src/config/APIConfigs.ts:69](https://github.com/mProjectsCode/obsidian-meta-bind-plugin/blob/8e08e1ccdd48957df7fc9ebdd7577cd62133b8ff/packages/core/src/config/APIConfigs.ts#L69)
65+
[packages/core/src/config/APIConfigs.ts:69](https://github.com/mProjectsCode/obsidian-meta-bind-plugin/blob/6d84d4e1af13951a4f9f713d142b213b046a5a9e/packages/core/src/config/APIConfigs.ts#L69)

0 commit comments

Comments
 (0)