gristlabs_grist-core/app/plugin/CustomSectionAPI-ti.ts
Jarosław Sadziński b6a431dd58 (core) Cursor in custom widgets
Summary:
Adding a new method `setCursorPos` in the widget API, and a new configuration option for the ready message `allowSelectBy` that exposes custom widgets in the `Select by` dropdown.
With this, a custom widget can control the position of the linked widgets and is able to change the column in the creator panel.

Test Plan: Added new test. Existing tests should pass.

Reviewers: JakubSerafin

Reviewed By: JakubSerafin

Subscribers: JakubSerafin

Differential Revision: https://phab.getgrist.com/D3993
2023-08-29 09:19:52 +02:00

47 lines
1.3 KiB
TypeScript

/**
* This module was automatically generated by `ts-interface-builder`
*/
import * as t from "ts-interface-checker";
// tslint:disable:object-literal-key-quotes
export const ColumnToMap = t.iface([], {
"name": "string",
"title": t.opt(t.union("string", "null")),
"description": t.opt(t.union("string", "null")),
"type": t.opt("string"),
"optional": t.opt("boolean"),
"allowMultiple": t.opt("boolean"),
});
export const ColumnsToMap = t.array(t.union("string", "ColumnToMap"));
export const InteractionOptionsRequest = t.iface([], {
"requiredAccess": t.opt("string"),
"hasCustomOptions": t.opt("boolean"),
"columns": t.opt("ColumnsToMap"),
"allowSelectBy": t.opt("boolean"),
});
export const InteractionOptions = t.iface([], {
"accessLevel": "string",
});
export const WidgetColumnMap = t.iface([], {
[t.indexKey]: t.union("string", t.array("string"), "null"),
});
export const CustomSectionAPI = t.iface([], {
"configure": t.func("void", t.param("customOptions", "InteractionOptionsRequest")),
"mappings": t.func(t.union("WidgetColumnMap", "null")),
});
const exportedTypeSuite: t.ITypeSuite = {
ColumnToMap,
ColumnsToMap,
InteractionOptionsRequest,
InteractionOptions,
WidgetColumnMap,
CustomSectionAPI,
};
export default exportedTypeSuite;