mirror of
https://github.com/gristlabs/grist-core.git
synced 2024-10-27 20:44:07 +00:00
35237a5835
Summary: Adds a new Support Grist page (accessible only in grist-core), containing options to opt in to telemetry and sponsor Grist Labs on GitHub. A nudge is also shown in the doc menu, which can be collapsed or permanently dismissed. Test Plan: Browser and server tests. Reviewers: paulfitz, dsagal Reviewed By: paulfitz Subscribers: jarek, dsagal Differential Revision: https://phab.getgrist.com/D3926
25 lines
1.3 KiB
TypeScript
25 lines
1.3 KiB
TypeScript
import * as AccountPageModule from 'app/client/ui/AccountPage';
|
|
import * as ActivationPageModule from 'app/client/ui/ActivationPage';
|
|
import * as BillingPageModule from 'app/client/ui/BillingPage';
|
|
import * as SupportGristPageModule from 'app/client/ui/SupportGristPage';
|
|
import * as GristDocModule from 'app/client/components/GristDoc';
|
|
import * as ViewPane from 'app/client/components/ViewPane';
|
|
import * as UserManagerModule from 'app/client/ui/UserManager';
|
|
import * as searchModule from 'app/client/ui2018/search';
|
|
import * as momentTimezone from 'moment-timezone';
|
|
import * as plotly from 'plotly.js';
|
|
|
|
export type PlotlyType = typeof plotly;
|
|
export type MomentTimezone = typeof momentTimezone;
|
|
|
|
export function loadAccountPage(): Promise<typeof AccountPageModule>;
|
|
export function loadActivationPage(): Promise<typeof ActivationPageModule>;
|
|
export function loadBillingPage(): Promise<typeof BillingPageModule>;
|
|
export function loadSupportGristPage(): Promise<typeof SupportGristPageModule>;
|
|
export function loadGristDoc(): Promise<typeof GristDocModule>;
|
|
export function loadMomentTimezone(): Promise<MomentTimezone>;
|
|
export function loadPlotly(): Promise<PlotlyType>;
|
|
export function loadSearch(): Promise<typeof searchModule>;
|
|
export function loadUserManager(): Promise<typeof UserManagerModule>;
|
|
export function loadViewPane(): Promise<typeof ViewPane>;
|