bi-sdk-react 0.0.76 → 0.0.78

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.
@@ -16,6 +16,21 @@
16
16
  * https://github.com/ecomfe/zrender/blob/master/LICENSE.txt
17
17
  */
18
18
 
19
+ /*! *****************************************************************************
20
+ Copyright (c) Microsoft Corporation. All rights reserved.
21
+ Licensed under the Apache License, Version 2.0 (the "License"); you may not use
22
+ this file except in compliance with the License. You may obtain a copy of the
23
+ License at http://www.apache.org/licenses/LICENSE-2.0
24
+
25
+ THIS CODE IS PROVIDED ON AN *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
26
+ KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
27
+ WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
28
+ MERCHANTABLITY OR NON-INFRINGEMENT.
29
+
30
+ See the Apache Version 2.0 License for specific language governing permissions
31
+ and limitations under the License.
32
+ ***************************************************************************** */
33
+
19
34
  /*! *****************************************************************************
20
35
  Copyright (c) Microsoft Corporation.
21
36
 
@@ -1,3 +1,5 @@
1
+ import "echarts-liquidfill";
2
+ import "echarts-wordcloud";
1
3
  import React from "react";
2
4
  import type { PropEditorProps } from "./types";
3
5
  export type EchartsModel = {
@@ -11,6 +11,8 @@ export type SelectModel = {
11
11
  size?: AntSelectProps["size"];
12
12
  allowClear?: boolean;
13
13
  multiple?: boolean;
14
+ source?: "local" | "script";
15
+ globalDatasetScript?: string;
14
16
  options: SelectOption[];
15
17
  };
16
18
  export declare const SelectProps: React.FC<PropEditorProps<SelectModel>>;
@@ -7,6 +7,8 @@ export type SelectRenderProps = {
7
7
  placeholder?: string;
8
8
  allowClear?: boolean;
9
9
  multiple?: boolean;
10
+ source?: "local" | "script";
11
+ globalDatasetScript?: string;
10
12
  options?: {
11
13
  label: string;
12
14
  value: any;