bi-sdk-react 0.0.43 → 0.0.45

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.
@@ -1,3 +1,36 @@
1
+ /*!
2
+ * wordcloud2.js
3
+ * http://timdream.org/wordcloud2.js/
4
+ *
5
+ * Copyright 2011 - 2019 Tim Guan-tin Chien and contributors.
6
+ * Released under the MIT license
7
+ */
8
+
9
+ /*!
10
+ * ZRender, a high performance 2d drawing library.
11
+ *
12
+ * Copyright (c) 2013, Baidu Inc.
13
+ * All rights reserved.
14
+ *
15
+ * LICENSE
16
+ * https://github.com/ecomfe/zrender/blob/master/LICENSE.txt
17
+ */
18
+
19
+ /*! *****************************************************************************
20
+ Copyright (c) Microsoft Corporation.
21
+
22
+ Permission to use, copy, modify, and/or distribute this software for any
23
+ purpose with or without fee is hereby granted.
24
+
25
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH
26
+ REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
27
+ AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
28
+ INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
29
+ LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
30
+ OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
31
+ PERFORMANCE OF THIS SOFTWARE.
32
+ ***************************************************************************** */
33
+
1
34
  /**
2
35
  * @license React
3
36
  * react-jsx-runtime.production.min.js
@@ -1,3 +1,5 @@
1
+ import "echarts-wordcloud";
2
+ import "echarts-liquidfill";
1
3
  import React from "react";
2
4
  import { HtmlBaseProps } from "../../../typing";
3
5
  export type EchartsRenderProps = {
@@ -7,4 +9,9 @@ export type EchartsRenderProps = {
7
9
  height?: number;
8
10
  style?: React.CSSProperties;
9
11
  } & HtmlBaseProps;
12
+ /**
13
+ * Echarts 渲染组件
14
+ * 用于渲染各类 Echarts 图表,支持动态脚本配置
15
+ * @param props 组件属性
16
+ */
10
17
  export declare const EchartsRender: React.FC<EchartsRenderProps>;