🔀 Merge branch 'dev' into feature/add-basic-authentication

This commit is contained in:
Manuel
2023-08-07 22:06:37 +02:00
213 changed files with 1584 additions and 699 deletions

View File

@@ -1,4 +1,5 @@
import { Icon, IconKey, IconPassword, IconUser } from '@tabler/icons-react';
import { Property } from 'csstype'
import { TileBaseType } from './tile';
@@ -19,6 +20,7 @@ export type ConfigAppType = Omit<AppType, 'integration'> & {
interface AppBehaviourType {
externalUrl: string;
isOpeningNewTab: boolean;
tooltipDescription?: string;
}
interface AppNetworkType {
@@ -32,6 +34,8 @@ interface AppNetworkType {
interface AppAppearanceType {
iconUrl: string;
appNameStatus: "normal"|"hover"|"hidden";
positionAppName: Property.FlexDirection;
}
export type IntegrationType =