Extract shlink-web-component outside of src folder

This commit is contained in:
Alejandro Celaya
2023-07-24 20:14:59 +02:00
parent 768fb1992f
commit 3a0cea1268
230 changed files with 485 additions and 524 deletions

View File

@@ -1,10 +1,10 @@
import type { FC } from 'react';
import { useEffect } from 'react';
import { ShlinkWebComponent } from '../../shlink-web-component';
import type { Settings } from '../../shlink-web-component/utils/settings';
import type { ShlinkApiClientBuilder } from '../api/services/ShlinkApiClientBuilder';
import { isReachableServer } from '../servers/data';
import { withSelectedServer } from '../servers/helpers/withSelectedServer';
import { ShlinkWebComponent } from '../shlink-web-component';
import type { Settings } from '../shlink-web-component/utils/settings';
import './MenuLayout.scss';
interface MenuLayoutProps {

View File

@@ -1,5 +1,5 @@
import type { ExportableShortUrl } from '../../shlink-web-component/short-urls/data';
import type { NormalizedVisit } from '../../shlink-web-component/visits/types';
import type { ExportableShortUrl } from '../../../shlink-web-component/short-urls/data';
import type { NormalizedVisit } from '../../../shlink-web-component/visits/types';
import type { JsonToCsv } from '../../utils/helpers/csvjson';
import { saveCsv } from '../../utils/helpers/files';