Skip to content

Commit

Permalink
feat(domain): change to www.agnosui.dev all the links (#950) (#954)
Browse files Browse the repository at this point in the history
  • Loading branch information
andreascorti authored Oct 18, 2024
1 parent 1e5a82d commit c7830ec
Show file tree
Hide file tree
Showing 15 changed files with 18 additions and 18 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

AgnosUI is a powerful library that provides configurable Typescript widget factories, headless wrappers and ready-to-use widgets compliant to the [CSS Bootstrap design](https://getbootstrap.com/). Inspired by the success of [ng-bootstrap](https://ng-bootstrap.github.io/), AgnosUI takes the concept a step further by offering widgets that can seamlessly integrate with any front-end framework of your choice. With support for popular frameworks like [Angular](https://angular.io/), [React](https://react.dev/), and [Svelte](https://svelte.dev/), AgnosUI allows you to effortlessly create consistent and visually appealing UI components across your projects.

Feel free to explore the [demo site](https://amadeusitgroup.github.io/AgnosUI/latest/) to see AgnosUI's capabilities.
Feel free to explore the [demo site](https://www.agnosui.dev/latest/) to see AgnosUI's capabilities.

## Key Characteristics

Expand All @@ -37,7 +37,7 @@ Feel free to explore the [demo site](https://amadeusitgroup.github.io/AgnosUI/la

## Getting Started

To start using AgnosUI in your project, follow the instructions in the [Installation Guide](INSTALLATION.md). For detailed documentation on each widget and its usage, refer to the [Documentation](https://amadeusitgroup.github.io/AgnosUI/latest/).
To start using AgnosUI in your project, follow the instructions in the [Installation Guide](INSTALLATION.md). For detailed documentation on each widget and its usage, refer to the [Documentation](https://www.agnosui.dev/latest/).

## Contributing

Expand Down
2 changes: 1 addition & 1 deletion angular/headless/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ npm install @agnos-ui/angular-headless

## Usage

Please check [our demo site](https://amadeusitgroup.github.io/AgnosUI/latest/) to see all the available widgets and how to use them.
Please check [our demo site](https://www.agnosui.dev/latest/) to see all the available widgets and how to use them.
2 changes: 1 addition & 1 deletion angular/lib/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ npm install @agnos-ui/angular

## Usage

Please check [our demo site](https://amadeusitgroup.github.io/AgnosUI/latest/) to see all the available widgets and how to use them.
Please check [our demo site](https://www.agnosui.dev/latest/) to see all the available widgets and how to use them.
4 changes: 2 additions & 2 deletions core/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@

[![npm](https://img.shields.io/npm/v/@agnos-ui/core)](https://www.npmjs.com/package/@agnos-ui/core)

[AgnosUI](https://amadeusitgroup.github.io/AgnosUI/latest/) is a framework-agnostic widget library with adapters for multiple frameworks, either [Bootstrap](https://getbootstrap.com/)-based or headless:
[AgnosUI](https://www.agnosui.dev/latest/) is a framework-agnostic widget library with adapters for multiple frameworks, either [Bootstrap](https://getbootstrap.com/)-based or headless:

- [Angular](https://www.npmjs.com/package/@agnos-ui/angular), [Angular headless](https://www.npmjs.com/package/@agnos-ui/angular-headless)
- [React](https://www.npmjs.com/package/@agnos-ui/react), [React headless](https://www.npmjs.com/package/@agnos-ui/react-headless)
- [Svelte](https://www.npmjs.com/package/@agnos-ui/svelte), [Svelte headless](https://www.npmjs.com/package/@agnos-ui/svelte-headless)

This `@agnos-ui/core` package contains the framework-agnostic common code used by the above framework adapters.

Please check [our demo site](https://amadeusitgroup.github.io/AgnosUI/latest/) to see all the available widgets and how to use them.
Please check [our demo site](https://www.agnosui.dev/latest/) to see all the available widgets and how to use them.

Unless you want to develop an adapter for a framework, you probably do not need to use `@agnos-ui/core` directly. Please refer to one of the framework-specific packages.
2 changes: 1 addition & 1 deletion demo/src/app.html
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
document.documentElement.setAttribute('data-agnos-theme', theme);
}
</script>
<link rel="preload" href="https://amadeusitgroup.github.io/AgnosUI/versions.json" as="fetch" crossorigin="anonymous" />
<link rel="preload" href="https://www.agnosui.dev/versions.json" as="fetch" crossorigin="anonymous" />
</head>

<body data-sveltekit-preload-data="hover">
Expand Down
2 changes: 1 addition & 1 deletion demo/src/lib/stores.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export const relativePathToRoot$ = computed(() => {

export const pathToRoot$ = browser ? computed(() => new URL(relativePathToRoot$(), window.location.href).href) : relativePathToRoot$;

const baseCanonicalURL = 'https://amadeusitgroup.github.io/AgnosUI/latest/';
const baseCanonicalURL = 'https://www.agnosui.dev/latest/';
export const canonicalURL$ = computed(() => {
const pageURL = get(page).url.href;
const rootURL = new URL(relativePathToRoot$(), pageURL).href;
Expand Down
2 changes: 1 addition & 1 deletion demo/src/routes/+layout.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export const load = async () => {
versions.push({folder: 'latest', version: `v${import.meta.env.AGNOSUI_VERSION}`});
}
} else {
const versionFetch = await fetch('https://amadeusitgroup.github.io/AgnosUI/versions.json');
const versionFetch = await fetch('https://www.agnosui.dev/versions.json');
versions = [{folder: 'main', version: 'PREVIEW'}].concat(
(await versionFetch.json()).map((ver: Version) => {
return {...ver, version: `v${ver.version}`};
Expand Down
2 changes: 1 addition & 1 deletion demo/src/routes/blog/2024-02-01/tansu-reactivity.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
In [AgnosUI](https://amadeusitgroup.github.io/AgnosUI/latest/), we employ [Tansu](https://github.com/AmadeusITGroup/tansu) to handle our widget states.
In [AgnosUI](https://www.agnosui.dev/latest/), we employ [Tansu](https://github.com/AmadeusITGroup/tansu) to handle our widget states.

This article explores the effective ways to use Tansu for broader state management, drawing upon our practical experience in developing AgnosUI. To follow along, we assume that you have a basic understanding of Tansu's API, as explained in the [README](https://github.com/AmadeusITGroup/tansu/blob/master/README.md) (no need to know them in detail). Feel free to refer to it for reference if needed.

Expand Down
2 changes: 1 addition & 1 deletion demo/src/routes/sitemap.xml/+server.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ const allRoutes = Object.keys(import.meta.glob('../**/+page.svelte', {query: '?u
return frameworks.map((fwk) => route.replace('[framework]', fwk));
});

const BASE = 'https://amadeusitgroup.github.io/AgnosUI/latest/';
const BASE = 'https://www.agnosui.dev/latest/';

export async function GET() {
return new Response(
Expand Down
4 changes: 2 additions & 2 deletions e2e/demo.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ test.describe('Sitemap', () => {

test(`sitemap.xml should contain the blog and framework introduction pages`, async ({page}) => {
await page.goto('sitemap.xml');
const domain = 'https://amadeusitgroup.github.io/AgnosUI/latest';
const domain = 'https://www.agnosui.dev/latest';
const routes = [
'/blog/2024-02-01',
'/docs/angular/getting-started/introduction',
Expand All @@ -57,7 +57,7 @@ test.describe('Sitemap', () => {

test(`sitemap.xml should not contain the samples`, async ({page}) => {
await page.goto('sitemap.xml');
const domain = 'https://amadeusitgroup.github.io/AgnosUI/latest';
const domain = 'https://www.agnosui.dev/latest';
const routes = ['/angular/samples', '/react/samples', '/svelte/samples'];
const urlsetLocator = page.locator('urlset');
await urlsetLocator.waitFor({state: 'attached'});
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@agnos-ui/agnos-ui",
"description": "Framework-agnostic widget library.",
"homepage": "https://amadeusitgroup.github.io/AgnosUI/latest/",
"homepage": "https://www.agnosui.dev/latest/",
"bugs": "https://github.com/AmadeusITGroup/AgnosUI/issues",
"license": "MIT",
"private": true,
Expand Down
2 changes: 1 addition & 1 deletion react/headless/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ npm install @agnos-ui/react-headless

## Usage

Please check [our demo site](https://amadeusitgroup.github.io/AgnosUI/latest/) to see all the available widgets and how to use them.
Please check [our demo site](https://www.agnosui.dev/latest/) to see all the available widgets and how to use them.
2 changes: 1 addition & 1 deletion react/lib/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ npm install @agnos-ui/react

## Usage

Please check [our demo site](https://amadeusitgroup.github.io/AgnosUI/latest/) to see all the available widgets and how to use them.
Please check [our demo site](https://www.agnosui.dev/latest/) to see all the available widgets and how to use them.
2 changes: 1 addition & 1 deletion svelte/headless/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ npm install @agnos-ui/svelte-headless

## Usage

Please check [our demo site](https://amadeusitgroup.github.io/AgnosUI/latest/) to see all the available widgets and how to use them.
Please check [our demo site](https://www.agnosui.dev/latest/) to see all the available widgets and how to use them.
2 changes: 1 addition & 1 deletion svelte/lib/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@ npm install @agnos-ui/svelte

## Usage

Please check [our demo site](https://amadeusitgroup.github.io/AgnosUI/latest/) to see all the available widgets and how to use them.
Please check [our demo site](https://www.agnosui.dev/latest/) to see all the available widgets and how to use them.

0 comments on commit c7830ec

Please sign in to comment.