Skip to content

Commit

Permalink
fix: use correct URLs in migration guide (#1788)
Browse files Browse the repository at this point in the history
<!-- ## Title: Please consider adding the [skip chromatic] flag to the
PR title in case you dont need chromatic testing your changes. -->
## Description:
<!-- *PR notes: Please describe the changes in this PR.* -->

## Definition of Reviewable:
<!-- *PR notes: Irrelevant elements should be removed.* -->
- [ ] Documentation is created/updated
- [ ] Migration Guide is created/updated
- [ ] E2E tests (features, a11y, bug fixes) are created/updated
<!-- *If this PR includes a bug fix, an E2E test is necessary to verify
the change. If the fix is purely visual, ensuring it is captured within
our chromatic screenshot tests is sufficient.* -->
- [ ] Stories (features, a11y) are created/updated
- [ ] relevant tickets are linked
mariohamann authored Jan 16, 2025
1 parent fe2f207 commit 1fa11df
Showing 2 changed files with 10 additions and 5 deletions.
5 changes: 5 additions & 0 deletions .changeset/moody-toes-draw.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@solid-design-system/docs': patch
---

Fix wrong URLs in migration guide.
Original file line number Diff line number Diff line change
@@ -145,7 +145,7 @@ The v4 release introduces major changes to improve performance, flexibility and
**After:**

```javascript
import '@solid-design-system/components/dist/components/solid-components.js';
import '@solid-design-system/components/dist/solid-components.js';
```

</sd-tab-panel>
@@ -159,7 +159,7 @@ The v4 release introduces major changes to improve performance, flexibility and
**After:**

```javascript
import '@solid-design-system/components/dist-versioned/components/solid-components.js';
import '@solid-design-system/components/dist-versioned/solid-components.js';
```

</sd-tab-panel>
@@ -251,13 +251,13 @@ The v4 release introduces major changes to improve performance, flexibility and
<!-- Minor Wildcard -->
<link
rel="stylesheet"
href="https://solid-design-system.fe.union-investment.de/3.x.x/components/styles/solid-styles.css"
href="https://solid-design-system.fe.union-investment.de/3.x.x/components/es/solid-components.js"
/>

<!-- Patch Wildcard -->
<link
rel="stylesheet"
href="https://solid-design-system.fe.union-investment.de/3.0.x/components/styles/solid-styles.css"
href="https://solid-design-system.fe.union-investment.de/3.0.x/components/es/solid-components.js"
/>
```

@@ -267,7 +267,7 @@ The v4 release introduces major changes to improve performance, flexibility and
<!-- Specific version -->
<script
type="module"
src="https://solid-design-system.fe.union-investment.de/%COMPONENTS-VERSION%/components/es/solid-components.js"
src="https://solid-design-system.fe.union-investment.de/components/%COMPONENTS-VERSION%/cdn/solid-components.js"
></script>
```

0 comments on commit 1fa11df

Please sign in to comment.