Create src folder for shlink-web-component

This commit is contained in:
Alejandro Celaya
2023-08-02 08:23:48 +02:00
parent b7d57a53f2
commit c48facc863
294 changed files with 347 additions and 347 deletions

View File

@@ -1,9 +1,9 @@
import { fromPartial } from '@total-typescript/shoehorn';
import type { ShortUrl } from '../../../shlink-web-component/short-urls/data';
import type { ShortUrl } from '../../../shlink-web-component/src/short-urls/data';
import {
createShortUrl as createShortUrlCreator,
shortUrlCreationReducerCreator,
} from '../../../shlink-web-component/short-urls/reducers/shortUrlCreation';
} from '../../../shlink-web-component/src/short-urls/reducers/shortUrlCreation';
import type { ShlinkApiClient } from '../../../src/api/services/ShlinkApiClient';
import type { ShlinkState } from '../../../src/container/types';

View File

@@ -2,7 +2,7 @@ import { fromPartial } from '@total-typescript/shoehorn';
import {
deleteShortUrl as deleteShortUrlCreator,
shortUrlDeletionReducerCreator,
} from '../../../shlink-web-component/short-urls/reducers/shortUrlDeletion';
} from '../../../shlink-web-component/src/short-urls/reducers/shortUrlDeletion';
import type { ShlinkApiClient } from '../../../src/api/services/ShlinkApiClient';
import type { ProblemDetailsError } from '../../../src/api/types/errors';

View File

@@ -1,7 +1,7 @@
import { fromPartial } from '@total-typescript/shoehorn';
import type { ShortUrl } from '../../../shlink-web-component/short-urls/data';
import { shortUrlDetailReducerCreator } from '../../../shlink-web-component/short-urls/reducers/shortUrlDetail';
import type { ShortUrlsList } from '../../../shlink-web-component/short-urls/reducers/shortUrlsList';
import type { ShortUrl } from '../../../shlink-web-component/src/short-urls/data';
import { shortUrlDetailReducerCreator } from '../../../shlink-web-component/src/short-urls/reducers/shortUrlDetail';
import type { ShortUrlsList } from '../../../shlink-web-component/src/short-urls/reducers/shortUrlsList';
import type { ShlinkApiClient } from '../../../src/api/services/ShlinkApiClient';
import type { ShlinkState } from '../../../src/container/types';

View File

@@ -1,9 +1,9 @@
import { fromPartial } from '@total-typescript/shoehorn';
import type { ShortUrl } from '../../../shlink-web-component/short-urls/data';
import type { ShortUrl } from '../../../shlink-web-component/src/short-urls/data';
import {
editShortUrl as editShortUrlCreator,
shortUrlEditionReducerCreator,
} from '../../../shlink-web-component/short-urls/reducers/shortUrlEdition';
} from '../../../shlink-web-component/src/short-urls/reducers/shortUrlEdition';
import type { ShlinkState } from '../../../src/container/types';
import type { SelectedServer } from '../../../src/servers/data';

View File

@@ -1,14 +1,14 @@
import { fromPartial } from '@total-typescript/shoehorn';
import type { ShortUrl } from '../../../shlink-web-component/short-urls/data';
import { createShortUrl as createShortUrlCreator } from '../../../shlink-web-component/short-urls/reducers/shortUrlCreation';
import { shortUrlDeleted } from '../../../shlink-web-component/short-urls/reducers/shortUrlDeletion';
import { editShortUrl as editShortUrlCreator } from '../../../shlink-web-component/short-urls/reducers/shortUrlEdition';
import type { ShortUrl } from '../../../shlink-web-component/src/short-urls/data';
import { createShortUrl as createShortUrlCreator } from '../../../shlink-web-component/src/short-urls/reducers/shortUrlCreation';
import { shortUrlDeleted } from '../../../shlink-web-component/src/short-urls/reducers/shortUrlDeletion';
import { editShortUrl as editShortUrlCreator } from '../../../shlink-web-component/src/short-urls/reducers/shortUrlEdition';
import {
listShortUrls as listShortUrlsCreator,
shortUrlsListReducerCreator,
} from '../../../shlink-web-component/short-urls/reducers/shortUrlsList';
import { createNewVisits } from '../../../shlink-web-component/visits/reducers/visitCreation';
import type { CreateVisit } from '../../../shlink-web-component/visits/types';
} from '../../../shlink-web-component/src/short-urls/reducers/shortUrlsList';
import { createNewVisits } from '../../../shlink-web-component/src/visits/reducers/visitCreation';
import type { CreateVisit } from '../../../shlink-web-component/src/visits/types';
import type { ShlinkApiClient } from '../../../src/api/services/ShlinkApiClient';
import type { ShlinkShortUrlsResponse } from '../../../src/api/types';