Skip to content

Commit a0fa107

Browse files
authored
fix: change links in Vue READMEs to absolute URLs
While relative links work well within the Github UI, the package READMEs are also rendered on npmjs and the API docs where they no longer resolve. This is now fixed by converting them to absolute URLs.
1 parent 7e0115f commit a0fa107

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

packages/vue/vue-vanilla/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,15 +95,15 @@ export default defineComponent({
9595
By default the Vanilla Renderers don't apply any CSS at all.
9696
For a quick start you can use `@jsonforms/vue-vanilla/vanilla.css`.
9797

98-
For more information on how JSON Forms can be configured, please see the [README of `@jsonforms/vue`](../vue/README.md).
98+
For more information on how JSON Forms can be configured, please see the [README of `@jsonforms/vue`](https://github.com/eclipsesource/jsonforms/blob/master/packages/vue/vue/README.md).
9999

100100
### Styling
101101

102102
Each rendered HTML element specifies a CSS class which can be used to style it.
103103
This process can also be customized so that each element declares user-specified CSS classes.
104104
Therefore JSON Forms Vue Vanilla can be integrated with any CSS-only UI framework quite easily.
105105

106-
You can find the default CSS classes in `[defaultStyles.ts](src/styles/defaultStyles.ts).
106+
You can find the default CSS classes in `[defaultStyles.ts](https://github.com/eclipsesource/jsonforms/blob/master/packages/vue/vue-vanilla/src/styles/defaultStyles.ts).
107107

108108
To render your own classes simply `provide` them as `styles`.
109109
These `styles` replace the `defaultStyles`.

packages/vue2/vue2-vanilla/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -131,15 +131,15 @@ export default defineComponent({
131131
By default the Vanilla Renderers don't apply any CSS at all.
132132
For a quick start you can use `@jsonforms/vue-vanilla/vanilla.css`.
133133

134-
For more information on how JSON Forms can be configured, please see the [README of `@jsonforms/vue2`](../vue2/README.md).
134+
For more information on how JSON Forms can be configured, please see the [README of `@jsonforms/vue2`](https://github.com/eclipsesource/jsonforms/blob/master/packages/vue2/vue2/README.md).
135135

136136
### Styling
137137

138138
Each rendered HTML element specifies a CSS class which can be used to style it.
139139
This process can also be customized so that each element declares user-specified CSS classes.
140140
Therefore JSON Forms Vue Vanilla can be integrated with any CSS-only UI framework quite easily.
141141

142-
You can find the default CSS classes in `[defaultStyles.ts](src/styles/defaultStyles.ts).
142+
You can find the default CSS classes in `[defaultStyles.ts](https://github.com/eclipsesource/jsonforms/blob/master/packages/vue/vue-vanilla/src/styles/defaultStyles.ts).
143143

144144
To render your own classes simply `provide` them as `styles`.
145145
These `styles` replace the `defaultStyles`.

0 commit comments

Comments
 (0)