diff --git a/LOCAL.md b/LOCAL.md index fa160d081..df670e6b8 100644 --- a/LOCAL.md +++ b/LOCAL.md @@ -1,5 +1,5 @@

- + Halstack Design System logo

@@ -12,7 +12,7 @@ These instructions will get you a copy of the project up and running on your loc ## Before start working -Remember to read [the documentation site](https://developer.dxc.com/halstack/) carefully before trying to modify any Halstack implementation, documentation or examples. +Remember to read [the documentation site](https://developer.assure.dxc.com/halstack/) carefully before trying to modify any Halstack implementation, documentation or examples. ## Monorepo structure diff --git a/README.md b/README.md index cf4d8317d..10d8826fa 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@

- + Halstack Design System logo

@@ -31,7 +31,7 @@ const App = () => ( ## Where to start -Learn everything you need to know about Halstack principles and components on the [official documentation site](https://developer.dxc.com/halstack/). +Learn everything you need to know about Halstack principles and components on the [official documentation site](https://developer.assure.dxc.com/halstack/). ## Contributing diff --git a/apps/website/screens/overview/introduction/IntroductionPage.tsx b/apps/website/screens/overview/introduction/IntroductionPage.tsx index 0f69683f3..4be5dd951 100644 --- a/apps/website/screens/overview/introduction/IntroductionPage.tsx +++ b/apps/website/screens/overview/introduction/IntroductionPage.tsx @@ -203,12 +203,12 @@ const sections = [ - + Previous React documentation - + Previous Angular documentation diff --git a/apps/website/screens/overview/releases/ReleasesPage.tsx b/apps/website/screens/overview/releases/ReleasesPage.tsx index 3f972eb52..bc95552dc 100644 --- a/apps/website/screens/overview/releases/ReleasesPage.tsx +++ b/apps/website/screens/overview/releases/ReleasesPage.tsx @@ -28,34 +28,34 @@ const sections = [ Every major release of Halstack is collected below: - Halstack 15 + Halstack 15 - Halstack 14 + Halstack 14 - Halstack 13 + Halstack 13 - Halstack 12 + Halstack 12 - Halstack 11 + Halstack 11 - Halstack 10 + Halstack 10 - Halstack 9 + Halstack 9 - Halstack 8 + Halstack 8 - Halstack 7 + Halstack 7 - Halstack 6 + Halstack 6 @@ -75,7 +75,7 @@ const sections = [ To check the latest features under development by the Halstack team, you can access the next{" "} version of the documentation through this{" "} - link. Please note that this version is + link. Please note that this version is unstable and may contain minor bugs. For a better experience with Halstack, we recommend, if possible, always using the latest release available. diff --git a/packages/lib/src/avatar/Avatar.test.tsx b/packages/lib/src/avatar/Avatar.test.tsx index 2697857ea..50a67ab5a 100644 --- a/packages/lib/src/avatar/Avatar.test.tsx +++ b/packages/lib/src/avatar/Avatar.test.tsx @@ -16,12 +16,12 @@ describe("Avatar component tests", () => { }); test("Avatar renders with image when src is passed", () => { const { getByRole } = render( - + ); const img = getByRole("img"); expect(img).toHaveAttribute( "src", - "https://developer.dxc.com/halstack/next/_next/static/media/neutral_colors.e92a8be2.png" + "https://developer.assure.dxc.com/halstack/next/_next/static/media/neutral_colors.e92a8be2.png" ); }); test("Avatar renders with initials when label is passed", () => { @@ -42,7 +42,7 @@ describe("Avatar component tests", () => { test("Avatar renders with image when src and label are passed", () => { const { getByRole, queryByText } = render( ); @@ -55,7 +55,7 @@ describe("Avatar component tests", () => { const CustomIcon = () => ; const { rerender, getByRole, getByText, getByTestId, queryByRole, queryByText, queryByTestId } = render( } /> diff --git a/packages/lib/src/dialog/Dialog.test.tsx b/packages/lib/src/dialog/Dialog.test.tsx index de7810af5..7a404a477 100644 --- a/packages/lib/src/dialog/Dialog.test.tsx +++ b/packages/lib/src/dialog/Dialog.test.tsx @@ -113,7 +113,7 @@ describe("Dialog component: Focus lock tests", () => { test("Autofocus with Card component", () => { const { getByRole } = render( - example-card + example-card ); const card = getByRole("link"); diff --git a/scripts/release-website.js b/scripts/release-website.js index 137db00ab..8e7f92a45 100644 --- a/scripts/release-website.js +++ b/scripts/release-website.js @@ -92,7 +92,7 @@ const moveToBucket = (version) => { }; const updateRedirectionToLatest = (version) => { - const redirection = `window.location.replace("https://developer.dxc.com/halstack/${version}/");`; + const redirection = `window.location.replace("https://developer.assure.dxc.com/halstack/${version}/");`; return new Promise((resolve, reject) => { exec(`echo '${redirection}' | aws s3 cp - s3://${BUCKET_NAME}/${DIRECTORY}redirect.js`, (error, stdout, stderr) => { if (error) { @@ -126,7 +126,7 @@ const updateAvailableVersions = async (versions, currentVersion) => { const currentItem = isNaN(version) ? "next" : version; return { versionNumber: currentItem, - versionURL: `https://developer.dxc.com/${ + versionURL: `https://developer.assure.dxc.com/${ isNaN(currentItem) && currentItem <= 5 ? "tools/react" : "halstack" }/${currentItem}/`, current: currentItem === currentVersion,