@nocobase/plugin-ui-templates 2.2.0-alpha.1 → 2.2.0-alpha.10

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.
@@ -11,10 +11,12 @@ export declare function renderTemplateSelectLabel(name: React.ReactNode, maxWidt
11
11
  export type TemplateSelectOptionData = {
12
12
  rawName?: React.ReactNode;
13
13
  description?: React.ReactNode;
14
+ disabled?: boolean;
14
15
  disabledReason?: React.ReactNode;
15
16
  };
16
17
  export type TemplateSelectOptionRenderArg = {
17
18
  label?: React.ReactNode;
19
+ disabled?: boolean;
18
20
  data?: TemplateSelectOptionData;
19
21
  };
20
22
  export declare function renderTemplateSelectOption(option: TemplateSelectOptionRenderArg): React.JSX.Element;
@@ -0,0 +1,10 @@
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
+ import type { FlowEngine } from '@nocobase/flow-engine';
10
+ export declare function registerReferenceBlockDynamicFlowSourceProvider(flowEngine: FlowEngine): void;