mirror of
https://github.com/gristlabs/grist-core.git
synced 2024-10-27 20:44:07 +00:00
b4c34cedad
Summary: - Update styling of label, id, and "derived ID from label" checkbox. - Implement a label which shows 'Data Column' vs 'Formula Column' vs 'Empty Column', and a dropdown with column actions (such as Clear/Convert) - Implement new formula display in the side-panel, and open the standard FormulaEditor when clicked. - Remove old FieldConfigTab, of which now very little would be used. - Fix up remaining code that relied on it (RefSelect) Test Plan: Fixed old tests, added new browser cases, and a case for a new helper function. Reviewers: paulfitz Reviewed By: paulfitz Differential Revision: https://phab.getgrist.com/D2757
7 lines
339 B
TypeScript
7 lines
339 B
TypeScript
// This module is unused except to group some modules for a webpack bundle.
|
|
// TODO It is a vestige of the old ViewPane.js, and can go away with some bundling improvements.
|
|
|
|
import * as ViewConfigTab from 'app/client/components/ViewConfigTab';
|
|
import * as FieldConfig from 'app/client/ui/FieldConfig';
|
|
export {ViewConfigTab, FieldConfig};
|