mirror of
https://github.com/gristlabs/grist-core.git
synced 2026-03-02 04:09:24 +00:00
(core) tweak how search bar places cursor on sections
Summary: It is important for linking to be maintained, or user could be gravely misled about material in other sections. Test Plan: added test Reviewers: dsagal Reviewed By: dsagal Subscribers: dsagal Differential Revision: https://phab.getgrist.com/D3003
This commit is contained in:
2
app/client/lib/imports.d.ts
vendored
2
app/client/lib/imports.d.ts
vendored
@@ -1,6 +1,5 @@
|
||||
import * as BillingPageModule from 'app/client/ui/BillingPage';
|
||||
import * as GristDocModule from 'app/client/components/GristDoc';
|
||||
import * as SearchBarModule from 'app/client/components/SearchBar';
|
||||
import * as ViewPane from 'app/client/components/ViewPane';
|
||||
import * as UserManagerModule from 'app/client/ui/UserManager';
|
||||
import * as searchModule from 'app/client/ui2018/search';
|
||||
@@ -15,6 +14,5 @@ export function loadGristDoc(): Promise<typeof GristDocModule>;
|
||||
export function loadMomentTimezone(): Promise<MomentTimezone>;
|
||||
export function loadPlotly(): Promise<PlotlyType>;
|
||||
export function loadSearch(): Promise<typeof searchModule>;
|
||||
export function loadSearchBar(): Promise<typeof SearchBarModule>;
|
||||
export function loadUserManager(): Promise<typeof UserManagerModule>;
|
||||
export function loadViewPane(): Promise<typeof ViewPane>;
|
||||
|
||||
@@ -10,7 +10,6 @@ exports.loadBillingPage = () => import('app/client/ui/BillingPage' /* webpackChu
|
||||
exports.loadGristDoc = () => import('app/client/components/GristDoc' /* webpackChunkName: "GristDoc" */);
|
||||
exports.loadMomentTimezone = () => import('moment-timezone');
|
||||
exports.loadPlotly = () => import('plotly.js-basic-dist' /* webpackChunkName: "plotly" */);
|
||||
exports.loadSearchBar = () => import('app/client/components/SearchBar' /* webpackChunkName: "searchbar" */);
|
||||
exports.loadSearch = () => import('app/client/ui2018/search' /* webpackChunkName: "search" */);
|
||||
exports.loadUserManager = () => import('app/client/ui/UserManager' /* webpackChunkName: "usermanager" */);
|
||||
exports.loadViewPane = () => import('app/client/components/ViewPane' /* webpackChunkName: "viewpane" */);
|
||||
|
||||
Reference in New Issue
Block a user