(core) Cleanup removing some old unused files, fixing logo.css, and removing #grist-app.

Summary:
- Move logo.css to core, since it's not included otherwise
- Remove unused old DocList and ViewLinker files.
- Remove #grist-app div that was only serving to supply a background

Test Plan: No changes of behavior, existing tests should pass.

Reviewers: paulfitz

Reviewed By: paulfitz

Differential Revision: https://phab.getgrist.com/D2634
This commit is contained in:
Dmitry S
2020-10-09 16:47:22 -04:00
parent bd6a54e901
commit d2ad5edc46
10 changed files with 74 additions and 1009 deletions

View File

@@ -128,27 +128,6 @@ declare module "app/client/components/ViewConfigTab" {
export = ViewConfigTab;
}
declare module "app/client/components/ViewLinker" {
import {ViewRec} from "app/client/models/DocModel";
namespace ViewLinker {
// eslint-disable-next-line @typescript-eslint/no-unused-vars
class ViewLinkerNode {
public section: any;
public sectionRef: number;
public col: any;
public colRef: number;
public isValidLinkTo(node: ViewLinkerNode): boolean;
}
}
class ViewLinker {
public static create(viewRec: ViewRec): ViewLinker;
public static createNodes(section: any|null, table: any): ViewLinker.ViewLinkerNode[];
}
export = ViewLinker;
}
declare module "app/client/components/commands" {
export class Command {
public name: string;