-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
releases expands to a list of version docs
- Loading branch information
Showing
18 changed files
with
156 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,8 +3,12 @@ title: 'Releases and versions' | |
developers: 'Overview of all major releases and changes, including migration guides.' | ||
redirect_from: | ||
- /uilib/releases | ||
expanded: false | ||
--- | ||
|
||
import ListUiLibVersions from './releases/dnb-ui-lib/ListUiLibVersions' | ||
import ListEufemiaVersions from './releases/eufemia/ListEufemiaVersions' | ||
|
||
import WelcomeAdvice from 'Docs/welcome-advice.mdx' | ||
import GithubLogo from 'Docs/contribute/assets/github-logo.js' | ||
import { Icon } from '@dnb/eufemia/src' | ||
|
@@ -15,16 +19,12 @@ You may also have a look at the [<Icon icon={GithubLogo} size="default" />**GitH | |
|
||
Here you can find an overview of all major releases (versions) and changes, including migration guides: | ||
|
||
- [**@dnb/eufemia@v10**](/uilib/about-the-lib/releases/eufemia/v10-info) _May, 31. 2023_ | ||
- [**@dnb/eufemia@v9**](/uilib/about-the-lib/releases/eufemia/v9-info) _March, 3. 2021_ | ||
- [**dnb-ui-lib@v8**](/uilib/about-the-lib/releases/dnb-ui-lib/v8-info) _December, 15. 2020_ | ||
- [**[email protected]**](/uilib/about-the-lib/releases/dnb-ui-lib/v7.2-info) _November, 8. 2020_ | ||
- [**[email protected]**](/uilib/about-the-lib/releases/dnb-ui-lib/v7-info) _June, 4. 2020_ | ||
- [**[email protected]**](/uilib/about-the-lib/releases/dnb-ui-lib/v6-info) _January, 30. 2020_ | ||
- [**[email protected]**](/uilib/about-the-lib/releases/dnb-ui-lib/v5.8-info) _November, 30. 2019_ | ||
- [**[email protected]**](/uilib/about-the-lib/releases/dnb-ui-lib/v5-info) _October, 30. 2019_ | ||
- [**[email protected]**](/uilib/about-the-lib/releases/dnb-ui-lib/v4.18-info) _September, 28. 2019_ | ||
- [**[email protected]**](/uilib/about-the-lib/releases/dnb-ui-lib/v4.10-info) _August, 24. 2019_ | ||
- [**[email protected]**](/uilib/about-the-lib/releases/dnb-ui-lib/v4-info) _July, 21. 2019_ | ||
## @dnb/eufemia | ||
|
||
<ListEufemiaVersions returnListItems /> | ||
|
||
## dnb-ui-lib | ||
|
||
<ListUiLibVersions returnListItems /> | ||
|
||
<WelcomeAdvice /> |
11 changes: 11 additions & 0 deletions
11
...s/dnb-design-system-portal/src/docs/uilib/about-the-lib/releases/dnb-ui-lib.mdx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
--- | ||
title: 'dnb-ui-lib' | ||
developers: 'Overview of all major dnb-ui-lib releases and changes, including migration guides.' | ||
order: 2 | ||
--- | ||
|
||
import ListUiLibVersions from './dnb-ui-lib/ListUiLibVersions' | ||
|
||
# dnb-ui-lib releases | ||
|
||
<ListUiLibVersions size="small" returnListItems /> |
39 changes: 39 additions & 0 deletions
39
...sign-system-portal/src/docs/uilib/about-the-lib/releases/dnb-ui-lib/ListUiLibVersions.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
import { useStaticQuery, graphql } from 'gatsby' | ||
import ListSummaryFromEdges from '../../../../../shared/parts/ListSummaryFromEdges' | ||
|
||
export default function ListUiLibVersions(props) { | ||
const { | ||
allMdx: { edges }, | ||
} = useStaticQuery(graphql` | ||
{ | ||
allMdx( | ||
filter: { | ||
frontmatter: { title: { ne: null }, draft: { ne: true } } | ||
internal: { | ||
contentFilePath: { | ||
glob: "**/uilib/about-the-lib/releases/dnb-ui-lib/**/*" | ||
} | ||
} | ||
} | ||
sort: [ | ||
{ frontmatter: { order: ASC } } | ||
{ frontmatter: { title: DESC } } | ||
] | ||
) { | ||
edges { | ||
node { | ||
fields { | ||
slug | ||
} | ||
frontmatter { | ||
title | ||
description | ||
} | ||
} | ||
} | ||
} | ||
} | ||
`) | ||
|
||
return <ListSummaryFromEdges edges={edges} {...props} /> | ||
} |
3 changes: 3 additions & 0 deletions
3
...sign-system-portal/src/docs/uilib/about-the-lib/releases/dnb-ui-lib/v4-info.mdx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 3 additions & 0 deletions
3
...n-system-portal/src/docs/uilib/about-the-lib/releases/dnb-ui-lib/v4.10-info.mdx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 3 additions & 0 deletions
3
...n-system-portal/src/docs/uilib/about-the-lib/releases/dnb-ui-lib/v4.18-info.mdx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 3 additions & 0 deletions
3
...sign-system-portal/src/docs/uilib/about-the-lib/releases/dnb-ui-lib/v5-info.mdx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 3 additions & 0 deletions
3
...gn-system-portal/src/docs/uilib/about-the-lib/releases/dnb-ui-lib/v5.8-info.mdx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 3 additions & 0 deletions
3
...sign-system-portal/src/docs/uilib/about-the-lib/releases/dnb-ui-lib/v6-info.mdx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 3 additions & 0 deletions
3
...sign-system-portal/src/docs/uilib/about-the-lib/releases/dnb-ui-lib/v7-info.mdx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 3 additions & 0 deletions
3
...gn-system-portal/src/docs/uilib/about-the-lib/releases/dnb-ui-lib/v7.2-info.mdx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
3 changes: 3 additions & 0 deletions
3
...sign-system-portal/src/docs/uilib/about-the-lib/releases/dnb-ui-lib/v8-info.mdx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
11 changes: 11 additions & 0 deletions
11
...ages/dnb-design-system-portal/src/docs/uilib/about-the-lib/releases/eufemia.mdx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
--- | ||
title: '@dnb/eufemia' | ||
developers: 'Overview of all major Eufemia releases and changes, including migration guides.' | ||
order: 1 | ||
--- | ||
|
||
import ListEufemiaVersions from './eufemia/ListEufemiaVersions' | ||
|
||
# @dnb/eufemia releases | ||
|
||
<ListEufemiaVersions size="small" returnListItems /> |
39 changes: 39 additions & 0 deletions
39
...esign-system-portal/src/docs/uilib/about-the-lib/releases/eufemia/ListEufemiaVersions.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
import { useStaticQuery, graphql } from 'gatsby' | ||
import ListSummaryFromEdges from '../../../../../shared/parts/ListSummaryFromEdges' | ||
|
||
export default function ListEufemiaVersions(props) { | ||
const { | ||
allMdx: { edges }, | ||
} = useStaticQuery(graphql` | ||
{ | ||
allMdx( | ||
filter: { | ||
frontmatter: { title: { ne: null }, draft: { ne: true } } | ||
internal: { | ||
contentFilePath: { | ||
glob: "**/uilib/about-the-lib/releases/eufemia/**/*" | ||
} | ||
} | ||
} | ||
sort: [ | ||
{ frontmatter: { order: ASC } } | ||
{ frontmatter: { title: DESC } } | ||
] | ||
) { | ||
edges { | ||
node { | ||
fields { | ||
slug | ||
} | ||
frontmatter { | ||
title | ||
description | ||
} | ||
} | ||
} | ||
} | ||
} | ||
`) | ||
|
||
return <ListSummaryFromEdges edges={edges} {...props} /> | ||
} |
6 changes: 6 additions & 0 deletions
6
...design-system-portal/src/docs/uilib/about-the-lib/releases/eufemia/v10-info.mdx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,9 @@ | ||
--- | ||
title: 'v10' | ||
order: -10 | ||
description: 'May, 31. 2023' | ||
--- | ||
|
||
import { Accordion } from '@dnb/eufemia/src' | ||
|
||
# v10 | ||
|
3 changes: 3 additions & 0 deletions
3
...design-system-portal/src/docs/uilib/about-the-lib/releases/eufemia/v11-info.mdx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,7 @@ | ||
--- | ||
title: 'v11' | ||
description: 'TBA' | ||
order: -11 | ||
draft: true | ||
--- | ||
|
||
|
3 changes: 3 additions & 0 deletions
3
...design-system-portal/src/docs/uilib/about-the-lib/releases/eufemia/v12-info.mdx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,7 @@ | ||
--- | ||
title: 'v12' | ||
description: 'TBA' | ||
order: -12 | ||
draft: true | ||
--- | ||
|
||
|
6 changes: 6 additions & 0 deletions
6
...-design-system-portal/src/docs/uilib/about-the-lib/releases/eufemia/v9-info.mdx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,9 @@ | ||
--- | ||
title: 'v9' | ||
order: -9 | ||
description: 'March, 3. 2021' | ||
--- | ||
|
||
# v9 | ||
|
||
- [Migration](#migration) | ||
|