mirror of
https://github.com/portainer/portainer.git
synced 2025-08-02 12:25:22 +02:00
feat(sidebar): implement new design [EE-3447] (#7118)
This commit is contained in:
parent
e5e57978af
commit
ed8f9b5931
54 changed files with 1928 additions and 857 deletions
17
app/global.d.ts
vendored
17
app/global.d.ts
vendored
|
@ -5,6 +5,13 @@ declare module '*.png' {
|
|||
export default '' as string;
|
||||
}
|
||||
|
||||
type SvgrComponent = React.StatelessComponent<React.SVGAttributes<SVGElement>>;
|
||||
|
||||
declare module '*.svg?c' {
|
||||
const value: SvgrComponent;
|
||||
export default value;
|
||||
}
|
||||
|
||||
declare module '*.css';
|
||||
|
||||
declare module '@open-amt-cloud-toolkit/ui-toolkit-react/reactjs/src/kvm.bundle';
|
||||
|
@ -25,3 +32,13 @@ interface Window {
|
|||
*/
|
||||
ddExtension?: boolean;
|
||||
}
|
||||
|
||||
declare module 'process' {
|
||||
global {
|
||||
namespace NodeJS {
|
||||
interface ProcessEnv {
|
||||
PORTAINER_EDITION: 'BE' | 'CE';
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue