@nocobase/plugin-calendar 1.0.0-alpha.9 → 1.0.1-alpha.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -6,7 +6,7 @@
6
6
  * This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
7
7
  * For more information, please refer to: https://www.nocobase.com/agreement.
8
8
  */
9
- import React from 'react';
10
9
  import { SchemaSettings } from '@nocobase/client';
10
+ import React from 'react';
11
11
  export declare const ShowLunarDesignerItem: () => React.JSX.Element;
12
12
  export declare const calendarBlockSettings: SchemaSettings<{}>;
@@ -0,0 +1,9 @@
1
+ /**
2
+ * This file is part of the NocoBase (R) project.
3
+ * Copyright (c) 2020-2024 NocoBase Co., Ltd.
4
+ * Authors: NocoBase Team.
5
+ *
6
+ * This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
7
+ * For more information, please refer to: https://www.nocobase.com/agreement.
8
+ */
9
+ export declare const useCalenderHeight: () => number;
@@ -9,4 +9,8 @@
9
9
  export declare function useCalendarBlockDecoratorProps(props: any): {
10
10
  params: any;
11
11
  parentRecord: any;
12
+ /**
13
+ * 为 true 则表示正在解析 filter 参数中的变量
14
+ */
15
+ parseVariableLoading: boolean;
12
16
  };
@@ -6,4 +6,7 @@
6
6
  * This project is dual-licensed under AGPL-3.0 and NocoBase Commercial License.
7
7
  * For more information, please refer to: https://www.nocobase.com/agreement.
8
8
  */
9
- export declare function useCalendarBlockParams(props: any): any;
9
+ export declare function useCalendarBlockParams(props: any): {
10
+ params: any;
11
+ parseVariableLoading: boolean;
12
+ };