mirror of
https://github.com/gristlabs/grist-core.git
synced 2024-10-27 20:44:07 +00:00
12 lines
356 B
TypeScript
12 lines
356 B
TypeScript
import { CustomView, CustomViewSettings } from "app/client/components/CustomView";
|
|
import { AccessLevel } from "app/common/CustomWidget";
|
|
|
|
export class CustomCalendarView extends CustomView {
|
|
protected getBuiltInSettings(): CustomViewSettings {
|
|
return {
|
|
widgetId: '@gristlabs/widget-calendar',
|
|
accessLevel: AccessLevel.full,
|
|
};
|
|
}
|
|
}
|