mirror of
https://github.com/gristlabs/grist-core.git
synced 2026-03-02 04:09:24 +00:00
(core) Update sort and filter UI
Summary: The sort and filter UI now has a more unified UI, with similar capabilities that are accessible from different parts of Grist. It's now also possible to pin individual filters to the filter bar, which replaces the old toggle for showing all filters in the filter bar. Test Plan: Various tests (browser, migration, project). Reviewers: jarek, dsagal Reviewed By: jarek, dsagal Subscribers: dsagal Differential Revision: https://phab.getgrist.com/D3669
This commit is contained in:
@@ -4,7 +4,7 @@ import { GristObjCode } from "app/plugin/GristData";
|
||||
|
||||
// tslint:disable:object-literal-key-quotes
|
||||
|
||||
export const SCHEMA_VERSION = 33;
|
||||
export const SCHEMA_VERSION = 34;
|
||||
|
||||
export const schema = {
|
||||
|
||||
@@ -194,6 +194,7 @@ export const schema = {
|
||||
viewSectionRef : "Ref:_grist_Views_section",
|
||||
colRef : "Ref:_grist_Tables_column",
|
||||
filter : "Text",
|
||||
pinned : "Bool",
|
||||
},
|
||||
|
||||
"_grist_Cells": {
|
||||
@@ -397,6 +398,7 @@ export interface SchemaTypes {
|
||||
viewSectionRef: number;
|
||||
colRef: number;
|
||||
filter: string;
|
||||
pinned: boolean;
|
||||
};
|
||||
|
||||
"_grist_Cells": {
|
||||
|
||||
Reference in New Issue
Block a user