(core) Show usage banners in doc menu of free team sites

Summary:
Also fixes a minor CSS regression in UserManager where the
link to add a team member wasn't shown on a separate row.

Test Plan: Browser tests.

Reviewers: jarek

Reviewed By: jarek

Differential Revision: https://phab.getgrist.com/D3444
This commit is contained in:
George Gevoian
2022-05-25 23:47:26 -07:00
parent 2f3cf59fc3
commit 74ec9358da
16 changed files with 341 additions and 213 deletions

View File

@@ -0,0 +1,10 @@
import {DocPageModel} from 'app/client/models/DocPageModel';
import {Disposable} from 'grainjs';
export class DocUsageBanner extends Disposable {
constructor(_docPageModel: DocPageModel) { super(); }
public buildDom() {
return null;
}
}