velo-data-vue-render 0.0.1

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.
Files changed (68) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +375 -0
  3. package/dist/components/RendererItem.vue.d.ts +12 -0
  4. package/dist/components/VeloRenderer.vue.d.ts +39 -0
  5. package/dist/components/charts/CalendarChart.vue.d.ts +9 -0
  6. package/dist/components/charts/CityMapChart.vue.d.ts +9 -0
  7. package/dist/components/charts/DoubleBarChart.vue.d.ts +9 -0
  8. package/dist/components/charts/DoubleLineChart.vue.d.ts +9 -0
  9. package/dist/components/charts/FunnelChart.vue.d.ts +9 -0
  10. package/dist/components/charts/GaugeChart.vue.d.ts +9 -0
  11. package/dist/components/charts/HalfPieChart.vue.d.ts +9 -0
  12. package/dist/components/charts/HorizontalBarChart.vue.d.ts +9 -0
  13. package/dist/components/charts/MapChart.vue.d.ts +9 -0
  14. package/dist/components/charts/PieChart.vue.d.ts +9 -0
  15. package/dist/components/charts/RadarChart.vue.d.ts +9 -0
  16. package/dist/components/charts/SankeyChart.vue.d.ts +9 -0
  17. package/dist/components/charts/ScatterChart.vue.d.ts +9 -0
  18. package/dist/components/charts/SingleBarChart.vue.d.ts +9 -0
  19. package/dist/components/charts/SingleLineChart.vue.d.ts +9 -0
  20. package/dist/components/charts/TreeChart.vue.d.ts +9 -0
  21. package/dist/components/charts/WordCloudChart.vue.d.ts +9 -0
  22. package/dist/components/decorations/BorderBox1.vue.d.ts +21 -0
  23. package/dist/components/decorations/BorderBox2.vue.d.ts +21 -0
  24. package/dist/components/decorations/BorderBox3.vue.d.ts +21 -0
  25. package/dist/components/decorations/BorderBox4.vue.d.ts +21 -0
  26. package/dist/components/decorations/BorderBox5.vue.d.ts +21 -0
  27. package/dist/components/decorations/CustomImageBorder.vue.d.ts +21 -0
  28. package/dist/components/decorations/Decoration1.vue.d.ts +21 -0
  29. package/dist/components/decorations/Decoration2.vue.d.ts +6 -0
  30. package/dist/components/decorations/FlipCountdown.vue.d.ts +6 -0
  31. package/dist/components/decorations/FullscreenButton.vue.d.ts +6 -0
  32. package/dist/components/decorations/FuturisticTitle.vue.d.ts +6 -0
  33. package/dist/components/decorations/GradientText.vue.d.ts +21 -0
  34. package/dist/components/layouts/LayoutCell.vue.d.ts +8 -0
  35. package/dist/components/layouts/LayoutHeader.vue.d.ts +8 -0
  36. package/dist/components/layouts/LayoutSidebar.vue.d.ts +8 -0
  37. package/dist/components/layouts/LayoutThreeColumn.vue.d.ts +8 -0
  38. package/dist/components/layouts/LayoutTwoColumn.vue.d.ts +8 -0
  39. package/dist/components/ui/Avatar.vue.d.ts +6 -0
  40. package/dist/components/ui/Badge.vue.d.ts +6 -0
  41. package/dist/components/ui/Button.vue.d.ts +10 -0
  42. package/dist/components/ui/Card.vue.d.ts +21 -0
  43. package/dist/components/ui/Carousel.vue.d.ts +6 -0
  44. package/dist/components/ui/CarouselList.vue.d.ts +6 -0
  45. package/dist/components/ui/Container.vue.d.ts +21 -0
  46. package/dist/components/ui/Icon.vue.d.ts +6 -0
  47. package/dist/components/ui/Image.vue.d.ts +6 -0
  48. package/dist/components/ui/Input.vue.d.ts +12 -0
  49. package/dist/components/ui/Progress.vue.d.ts +6 -0
  50. package/dist/components/ui/ScrollRankList.vue.d.ts +6 -0
  51. package/dist/components/ui/Select.vue.d.ts +10 -0
  52. package/dist/components/ui/Switch.vue.d.ts +10 -0
  53. package/dist/components/ui/Table.vue.d.ts +6 -0
  54. package/dist/components/ui/Tag.vue.d.ts +10 -0
  55. package/dist/components/ui/Text.vue.d.ts +6 -0
  56. package/dist/config/constants.d.ts +16 -0
  57. package/dist/index.d.ts +5 -0
  58. package/dist/types/index.d.ts +704 -0
  59. package/dist/utils/chartOptions.d.ts +21 -0
  60. package/dist/utils/chartOptionsHelper.d.ts +13 -0
  61. package/dist/utils/dataSource.d.ts +59 -0
  62. package/dist/utils/mapData.d.ts +54 -0
  63. package/dist/velo-data-vue-render.css +1 -0
  64. package/dist/velo-data-vue-render.es.js +105844 -0
  65. package/dist/velo-data-vue-render.es.js.map +1 -0
  66. package/dist/velo-data-vue-render.umd.js +407 -0
  67. package/dist/velo-data-vue-render.umd.js.map +1 -0
  68. package/package.json +74 -0
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 ShutDown
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,375 @@
1
+ # VeloData Vue Renderer
2
+
3
+ <div align="center">
4
+
5
+ [![npm version](https://img.shields.io/npm/v/velo-data-vue-render.svg)](https://www.npmjs.com/package/velo-data-vue-render)
6
+ [![license](https://img.shields.io/npm/l/velo-data-vue-render.svg)](https://github.com/UvDream/velo-data-vue-render/blob/main/LICENSE)
7
+ [![downloads](https://img.shields.io/npm/dm/velo-data-vue-render.svg)](https://www.npmjs.com/package/velo-data-vue-render)
8
+
9
+ **一个强大的 Vue 3 大屏可视化渲染器组件**
10
+
11
+ 支持图表、3D效果、UI组件、装饰元素等50+组件类型
12
+
13
+ [文档](https://github.com/UvDream/velo-data-vue-render#readme) | [示例](https://github.com/UvDream/velo-data-vue-render/tree/main/examples) | [VisualizationDashboard编辑器](https://visualization-dashboard-sooty.vercel.app/)
14
+
15
+ </div>
16
+
17
+ ## ✨ 特性
18
+
19
+ - 📊 **17种图表组件** - 基于ECharts的折线图、柱状图、饼图、地图等
20
+ - 🎨 **13种UI组件** - Ant Design Vue组件封装,适配大屏主题
21
+ - 🌟 **10种3D组件** - Three.js 3D地球、粒子系统、动画效果
22
+ - 🔲 **布局组件** - 灵活的多栏布局系统
23
+ - 📡 **数据源支持** - Mock数据和API接口,支持自动刷新
24
+ - 📱 **响应式** - 自动缩放适配不同屏幕尺寸
25
+ - 🎭 **主题系统** - 内置多种图表主题
26
+ - ⚡ **高性能** - 懒加载和优化的渲染性能
27
+ - 📦 **TypeScript** - 完整的类型定义
28
+ - 🎯 **Vue 3** - 基于 Composition API 构建
29
+
30
+ ## 📦 安装
31
+
32
+ ```bash
33
+ npm install velo-data-vue-render
34
+ # 或
35
+ yarn add velo-data-vue-render
36
+ # 或
37
+ pnpm add velo-data-vue-render
38
+ ```
39
+
40
+ ## 🚀 快速开始
41
+
42
+ ### 方式1: 直接传入JSON数据 (推荐)
43
+
44
+ 最简单的使用方式 - 直接导入编辑器导出的JSON文件:
45
+
46
+ ```vue
47
+ <script setup lang="ts">
48
+ import { VeloRenderer } from 'velo-data-vue-render'
49
+ import 'velo-data-vue-render/dist/style.css'
50
+ import dashboardData from './dashboard.json'
51
+ </script>
52
+
53
+ <template>
54
+ <VeloRenderer :data="dashboardData" />
55
+ </template>
56
+ ```
57
+
58
+ JSON数据格式 (从VisualizationDashboard导出):
59
+ ```json
60
+ {
61
+ "canvasConfig": {
62
+ "width": 1920,
63
+ "height": 1080,
64
+ "backgroundColor": "#0a0e27",
65
+ "name": "我的大屏"
66
+ },
67
+ "components": [
68
+ {
69
+ "id": "1",
70
+ "type": "text",
71
+ "name": "标题",
72
+ "props": { "content": "数据大屏", "fontSize": 48 },
73
+ "style": { "x": 100, "y": 50, "width": 400, "height": 80 },
74
+ "visible": true,
75
+ "locked": false
76
+ }
77
+ ]
78
+ }
79
+ ```
80
+
81
+ ### 方式2: 分别传入配置 (向后兼容)
82
+
83
+ 如果需要动态构建配置:
84
+
85
+ ```vue
86
+ <script setup lang="ts">
87
+ import { VeloRenderer } from 'velo-data-vue-render'
88
+ import 'velo-data-vue-render/dist/style.css'
89
+
90
+ const config = {
91
+ width: 1920,
92
+ height: 1080,
93
+ backgroundColor: '#0a0e27',
94
+ name: '我的大屏',
95
+ }
96
+
97
+ const components = [
98
+ {
99
+ id: '1',
100
+ type: 'text',
101
+ name: '标题',
102
+ props: {
103
+ content: '数据大屏',
104
+ fontSize: 48,
105
+ color: '#ffffff',
106
+ },
107
+ style: {
108
+ x: 100,
109
+ y: 50,
110
+ width: 400,
111
+ height: 80,
112
+ },
113
+ visible: true,
114
+ locked: false,
115
+ },
116
+ {
117
+ id: '2',
118
+ type: 'singleLineChart',
119
+ name: '折线图',
120
+ props: {
121
+ chartTitle: '销售趋势',
122
+ xAxisData: ['1月', '2月', '3月', '4月', '5月'],
123
+ seriesData: [
124
+ {
125
+ name: '销售额',
126
+ data: [120, 200, 150, 80, 70],
127
+ },
128
+ ],
129
+ },
130
+ style: {
131
+ x: 100,
132
+ y: 150,
133
+ width: 600,
134
+ height: 400,
135
+ },
136
+ visible: true,
137
+ locked: false,
138
+ },
139
+ ]
140
+ </script>
141
+
142
+ <template>
143
+ <VeloRenderer :config="config" :components="components" :auto-scale="true" />
144
+ </template>
145
+ ```
146
+
147
+ ### 使用API数据源
148
+
149
+ ```vue
150
+ <script setup lang="ts">
151
+ const components = [
152
+ {
153
+ id: '1',
154
+ type: 'pieChart',
155
+ name: '销售占比',
156
+ props: {
157
+ chartTitle: '产品销售占比',
158
+ dataSource: {
159
+ type: 'api',
160
+ apiConfig: {
161
+ url: 'https://api.example.com/sales',
162
+ method: 'GET',
163
+ refreshInterval: 30, // 30秒自动刷新
164
+ dataPath: 'data.pieData', // 数据路径
165
+ },
166
+ },
167
+ },
168
+ style: {
169
+ x: 100,
170
+ y: 100,
171
+ width: 500,
172
+ height: 400,
173
+ },
174
+ visible: true,
175
+ locked: false,
176
+ },
177
+ ]
178
+ </script>
179
+ ```
180
+
181
+ ### 使用VisualizationDashboard编辑器
182
+
183
+ 最佳实践是使用 [VisualizationDashboard编辑器](https://visualization-dashboard-sooty.vercel.app/) 可视化创建大屏,然后导出JSON配置:
184
+
185
+ ```vue
186
+ <script setup lang="ts">
187
+ import { VeloRenderer } from 'velo-data-vue-render'
188
+ import dashboardConfig from './dashboard-config.json'
189
+ </script>
190
+
191
+ <template>
192
+ <VeloRenderer
193
+ :config="dashboardConfig.canvasConfig"
194
+ :components="dashboardConfig.components"
195
+ :auto-scale="true"
196
+ />
197
+ </template>
198
+ ```
199
+
200
+ ## 📚 API
201
+
202
+ ### VeloRenderer Props
203
+
204
+ | 属性 | 类型 | 默认值 | 说明 |
205
+ |------|------|--------|------|
206
+ | `data` | `VeloDataSchema` | - | 完整数据(推荐方式) |
207
+ | `config` | `CanvasConfig` | - | 画布配置 |
208
+ | `components` | `ComponentItem[]` | - | 组件列表 |
209
+ | `autoScale` | `boolean` | `true` | 是否自动缩放适应屏幕 |
210
+ | `className` | `string` | `''` | 自定义类名 |
211
+ | `style` | `CSSProperties` | `{}` | 自定义样式 |
212
+
213
+ ### Events
214
+
215
+ | 事件名 | 参数 | 说明 |
216
+ |--------|------|------|
217
+ | `componentClick` | `(id: string)` | 组件点击事件 |
218
+
219
+ ## 🎨 支持的组件类型
220
+
221
+ ### 图表组件 (17种)
222
+
223
+ - `singleLineChart` / `doubleLineChart` - 折线图
224
+ - `singleBarChart` / `doubleBarChart` - 柱状图
225
+ - `horizontalBarChart` - 横向柱状图
226
+ - `pieChart` / `halfPieChart` - 饼图/半环形图
227
+ - `gaugeChart` - 仪表盘
228
+ - `radarChart` - 雷达图
229
+ - `scatterChart` - 散点图
230
+ - `funnelChart` - 漏斗图
231
+ - `wordCloudChart` - 词云图
232
+ - `mapChart` / `cityMapChart` - 地图
233
+ - `calendarChart` - 日历热力图
234
+ - `treeChart` - 树形图
235
+ - `sankeyChart` - 桑基图
236
+
237
+ ### UI组件 (13种)
238
+
239
+ - `text` - 文本
240
+ - `button` - 按钮
241
+ - `input` - 输入框
242
+ - `select` - 选择器
243
+ - `switch` - 开关
244
+ - `progress` - 进度条
245
+ - `tag` - 标签
246
+ - `badge` - 徽标
247
+ - `avatar` - 头像
248
+ - `card` - 卡片
249
+ - `table` - 表格
250
+ - `scrollRankList` - 滚动排名列表
251
+ - `carouselList` - 轮播列表
252
+
253
+ ### 3D组件 (10种)
254
+
255
+ - `threeEarth` - 3D地球
256
+ - `threeParticles` - 粒子背景
257
+ - `threeCube` - 3D魔方
258
+ - `threeDNA` - DNA螺旋
259
+ - `threeWave` - 3D波浪
260
+ - `threeTorus` - 3D环形
261
+ - `threeGalaxy` - 星系
262
+ - `threeTunnel` - 时空隧道
263
+ - `threeMatrix` - 矩阵雨
264
+ - `threePlasma` - 等离子球
265
+
266
+ ### 装饰组件
267
+
268
+ - `borderBox1/2/3` - 科技边框
269
+ - `decoration1/2` - 装饰元素
270
+ - `gradientText` - 渐变文字
271
+ - `flipCountdown` - 翻转倒计时
272
+ - `futuristicTitle` - 科技标题
273
+ - `fullscreenButton` - 全屏按钮
274
+ - `customImageBorder` - 自定义图片边框
275
+
276
+ ### 布局组件
277
+
278
+ - `layoutTwoColumn` - 两栏布局
279
+ - `layoutThreeColumn` - 三栏布局
280
+ - `layoutHeader` - 头部布局
281
+ - `layoutSidebar` - 侧栏布局
282
+
283
+ ### 媒体组件
284
+
285
+ - `image` - 图片
286
+ - `carousel` - 轮播图
287
+
288
+ ## 🔧 高级用法
289
+
290
+ ### 自定义组件点击事件
291
+
292
+ ```vue
293
+ <script setup lang="ts">
294
+ const handleComponentClick = (id: string) => {
295
+ console.log('点击了组件:', id)
296
+ // 处理点击事件,如跳转详情页
297
+ }
298
+ </script>
299
+
300
+ <template>
301
+ <VeloRenderer
302
+ :config="config"
303
+ :components="components"
304
+ @component-click="handleComponentClick"
305
+ />
306
+ </template>
307
+ ```
308
+
309
+ ### 禁用自动缩放
310
+
311
+ ```vue
312
+ <template>
313
+ <VeloRenderer
314
+ :config="config"
315
+ :components="components"
316
+ :auto-scale="false"
317
+ />
318
+ </template>
319
+ ```
320
+
321
+ ### 自定义容器样式
322
+
323
+ ```vue
324
+ <template>
325
+ <VeloRenderer
326
+ :config="config"
327
+ :components="components"
328
+ class-name="my-dashboard"
329
+ :style="{
330
+ background: 'linear-gradient(135deg, #667eea 0%, #764ba2 100%)',
331
+ }"
332
+ />
333
+ </template>
334
+ ```
335
+
336
+ ## 🌐 浏览器支持
337
+
338
+ - Chrome ≥ 88
339
+ - Firefox ≥ 85
340
+ - Safari ≥ 14
341
+ - Edge ≥ 88
342
+
343
+ ## 📝 许可证
344
+
345
+ MIT © ShutDown
346
+
347
+ ## 🙏 致谢
348
+
349
+ - [Vue 3](https://vuejs.org/)
350
+ - [ECharts](https://echarts.apache.org/)
351
+ - [Ant Design Vue](https://antdv.com/)
352
+ - [Three.js](https://threejs.org/)
353
+ - [VisualizationDashboard](https://visualization-dashboard-sooty.vercel.app/)
354
+
355
+ ## 🔗 相关链接
356
+
357
+ - [VisualizationDashboard编辑器](https://visualization-dashboard-sooty.vercel.app/)
358
+ - [问题反馈](https://github.com/UvDream/velo-data-vue-render/issues)
359
+ - [变更日志](https://github.com/UvDream/velo-data-vue-render/releases)
360
+
361
+ ## 📅 开发状态
362
+
363
+ **当前版本**: 0.0.1 (开发中)
364
+
365
+ **已实现组件**:
366
+ - ✅ 核心渲染器
367
+ - ✅ Text (文本组件)
368
+ - ✅ SingleLineChart (单折线图)
369
+ - ✅ BorderBox1 (科技边框1)
370
+
371
+ **开发路线图**:
372
+ - 🔄 第二阶段: 完成所有图表组件 (17种)
373
+ - ⏳ 第三阶段: 完成UI和3D组件 (23种)
374
+ - ⏳ 第四阶段: 完成装饰和布局组件 (15种)
375
+ - ⏳ 第五阶段: 测试和正式发布
@@ -0,0 +1,12 @@
1
+ import { ComponentItem, CanvasConfig } from '../types';
2
+ export interface RendererItemProps {
3
+ item: ComponentItem;
4
+ allComponents: ComponentItem[];
5
+ chartTheme?: CanvasConfig['chartTheme'];
6
+ }
7
+ declare const _default: import('vue').DefineComponent<RendererItemProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
8
+ click: () => any;
9
+ }, string, import('vue').PublicProps, Readonly<RendererItemProps> & Readonly<{
10
+ onClick?: (() => any) | undefined;
11
+ }>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
12
+ export default _default;
@@ -0,0 +1,39 @@
1
+ import { CSSProperties } from 'vue';
2
+ import { CanvasConfig, ComponentItem } from '../types';
3
+ /** 编辑器导出的完整数据结构 */
4
+ export interface VeloDataSchema {
5
+ /** 画布配置 */
6
+ canvasConfig: CanvasConfig;
7
+ /** 组件列表 */
8
+ components: ComponentItem[];
9
+ }
10
+ export interface VeloRendererProps {
11
+ /**
12
+ * 方式1: 直接传入编辑器导出的完整JSON数据
13
+ * 推荐使用此方式
14
+ */
15
+ data?: VeloDataSchema;
16
+ /**
17
+ * 方式2: 分别传入画布配置和组件列表 (向后兼容)
18
+ */
19
+ config?: CanvasConfig;
20
+ components?: ComponentItem[];
21
+ /** 是否自动缩放适应屏幕 */
22
+ autoScale?: boolean;
23
+ /** 自定义类名 */
24
+ className?: string;
25
+ /** 自定义样式 */
26
+ style?: CSSProperties;
27
+ }
28
+ declare const _default: import('vue').DefineComponent<VeloRendererProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
29
+ componentClick: (id: string) => any;
30
+ }, string, import('vue').PublicProps, Readonly<VeloRendererProps> & Readonly<{
31
+ onComponentClick?: ((id: string) => any) | undefined;
32
+ }>, {
33
+ style: CSSProperties;
34
+ className: string;
35
+ autoScale: boolean;
36
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
37
+ canvasRef: HTMLDivElement;
38
+ }, HTMLDivElement>;
39
+ export default _default;
@@ -0,0 +1,9 @@
1
+ import { ComponentItem, CanvasConfig } from '../../types';
2
+ export interface CalendarChartProps {
3
+ item: ComponentItem;
4
+ chartTheme?: CanvasConfig['chartTheme'];
5
+ }
6
+ declare const _default: import('vue').DefineComponent<CalendarChartProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<CalendarChartProps> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
7
+ chartRef: HTMLDivElement;
8
+ }, HTMLDivElement>;
9
+ export default _default;
@@ -0,0 +1,9 @@
1
+ import { ComponentItem, CanvasConfig } from '../../types';
2
+ export interface CityMapChartProps {
3
+ item: ComponentItem;
4
+ chartTheme?: CanvasConfig['chartTheme'];
5
+ }
6
+ declare const _default: import('vue').DefineComponent<CityMapChartProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<CityMapChartProps> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
7
+ chartRef: HTMLDivElement;
8
+ }, HTMLDivElement>;
9
+ export default _default;
@@ -0,0 +1,9 @@
1
+ import { ComponentItem, CanvasConfig } from '../../types';
2
+ export interface DoubleBarChartProps {
3
+ item: ComponentItem;
4
+ chartTheme?: CanvasConfig['chartTheme'];
5
+ }
6
+ declare const _default: import('vue').DefineComponent<DoubleBarChartProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<DoubleBarChartProps> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
7
+ chartRef: HTMLDivElement;
8
+ }, HTMLDivElement>;
9
+ export default _default;
@@ -0,0 +1,9 @@
1
+ import { ComponentItem, CanvasConfig } from '../../types';
2
+ export interface DoubleLineChartProps {
3
+ item: ComponentItem;
4
+ chartTheme?: CanvasConfig['chartTheme'];
5
+ }
6
+ declare const _default: import('vue').DefineComponent<DoubleLineChartProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<DoubleLineChartProps> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
7
+ chartRef: HTMLDivElement;
8
+ }, HTMLDivElement>;
9
+ export default _default;
@@ -0,0 +1,9 @@
1
+ import { ComponentItem, CanvasConfig } from '../../types';
2
+ export interface FunnelChartProps {
3
+ item: ComponentItem;
4
+ chartTheme?: CanvasConfig['chartTheme'];
5
+ }
6
+ declare const _default: import('vue').DefineComponent<FunnelChartProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<FunnelChartProps> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
7
+ chartRef: HTMLDivElement;
8
+ }, HTMLDivElement>;
9
+ export default _default;
@@ -0,0 +1,9 @@
1
+ import { ComponentItem, CanvasConfig } from '../../types';
2
+ export interface GaugeChartProps {
3
+ item: ComponentItem;
4
+ chartTheme?: CanvasConfig['chartTheme'];
5
+ }
6
+ declare const _default: import('vue').DefineComponent<GaugeChartProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<GaugeChartProps> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
7
+ chartRef: HTMLDivElement;
8
+ }, HTMLDivElement>;
9
+ export default _default;
@@ -0,0 +1,9 @@
1
+ import { ComponentItem, CanvasConfig } from '../../types';
2
+ export interface HalfPieChartProps {
3
+ item: ComponentItem;
4
+ chartTheme?: CanvasConfig['chartTheme'];
5
+ }
6
+ declare const _default: import('vue').DefineComponent<HalfPieChartProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<HalfPieChartProps> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
7
+ chartRef: HTMLDivElement;
8
+ }, HTMLDivElement>;
9
+ export default _default;
@@ -0,0 +1,9 @@
1
+ import { ComponentItem, CanvasConfig } from '../../types';
2
+ export interface HorizontalBarChartProps {
3
+ item: ComponentItem;
4
+ chartTheme?: CanvasConfig['chartTheme'];
5
+ }
6
+ declare const _default: import('vue').DefineComponent<HorizontalBarChartProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<HorizontalBarChartProps> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
7
+ chartRef: HTMLDivElement;
8
+ }, HTMLDivElement>;
9
+ export default _default;
@@ -0,0 +1,9 @@
1
+ import { ComponentItem, CanvasConfig } from '../../types';
2
+ export interface MapChartProps {
3
+ item: ComponentItem;
4
+ chartTheme?: CanvasConfig['chartTheme'];
5
+ }
6
+ declare const _default: import('vue').DefineComponent<MapChartProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<MapChartProps> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
7
+ chartRef: HTMLDivElement;
8
+ }, HTMLDivElement>;
9
+ export default _default;
@@ -0,0 +1,9 @@
1
+ import { ComponentItem, CanvasConfig } from '../../types';
2
+ export interface PieChartProps {
3
+ item: ComponentItem;
4
+ chartTheme?: CanvasConfig['chartTheme'];
5
+ }
6
+ declare const _default: import('vue').DefineComponent<PieChartProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<PieChartProps> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
7
+ chartRef: HTMLDivElement;
8
+ }, HTMLDivElement>;
9
+ export default _default;
@@ -0,0 +1,9 @@
1
+ import { ComponentItem, CanvasConfig } from '../../types';
2
+ export interface RadarChartProps {
3
+ item: ComponentItem;
4
+ chartTheme?: CanvasConfig['chartTheme'];
5
+ }
6
+ declare const _default: import('vue').DefineComponent<RadarChartProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<RadarChartProps> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
7
+ chartRef: HTMLDivElement;
8
+ }, HTMLDivElement>;
9
+ export default _default;
@@ -0,0 +1,9 @@
1
+ import { ComponentItem, CanvasConfig } from '../../types';
2
+ export interface SankeyChartProps {
3
+ item: ComponentItem;
4
+ chartTheme?: CanvasConfig['chartTheme'];
5
+ }
6
+ declare const _default: import('vue').DefineComponent<SankeyChartProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<SankeyChartProps> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
7
+ chartRef: HTMLDivElement;
8
+ }, HTMLDivElement>;
9
+ export default _default;
@@ -0,0 +1,9 @@
1
+ import { ComponentItem, CanvasConfig } from '../../types';
2
+ export interface ScatterChartProps {
3
+ item: ComponentItem;
4
+ chartTheme?: CanvasConfig['chartTheme'];
5
+ }
6
+ declare const _default: import('vue').DefineComponent<ScatterChartProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<ScatterChartProps> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
7
+ chartRef: HTMLDivElement;
8
+ }, HTMLDivElement>;
9
+ export default _default;
@@ -0,0 +1,9 @@
1
+ import { ComponentItem, CanvasConfig } from '../../types';
2
+ export interface SingleBarChartProps {
3
+ item: ComponentItem;
4
+ chartTheme?: CanvasConfig['chartTheme'];
5
+ }
6
+ declare const _default: import('vue').DefineComponent<SingleBarChartProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<SingleBarChartProps> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
7
+ chartRef: HTMLDivElement;
8
+ }, HTMLDivElement>;
9
+ export default _default;
@@ -0,0 +1,9 @@
1
+ import { ComponentItem, CanvasConfig } from '../../types';
2
+ export interface SingleLineChartProps {
3
+ item: ComponentItem;
4
+ chartTheme?: CanvasConfig['chartTheme'];
5
+ }
6
+ declare const _default: import('vue').DefineComponent<SingleLineChartProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<SingleLineChartProps> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
7
+ chartRef: HTMLDivElement;
8
+ }, HTMLDivElement>;
9
+ export default _default;
@@ -0,0 +1,9 @@
1
+ import { ComponentItem, CanvasConfig } from '../../types';
2
+ export interface TreeChartProps {
3
+ item: ComponentItem;
4
+ chartTheme?: CanvasConfig['chartTheme'];
5
+ }
6
+ declare const _default: import('vue').DefineComponent<TreeChartProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<TreeChartProps> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
7
+ chartRef: HTMLDivElement;
8
+ }, HTMLDivElement>;
9
+ export default _default;
@@ -0,0 +1,9 @@
1
+ import { ComponentItem, CanvasConfig } from '../../types';
2
+ export interface WordCloudChartProps {
3
+ item: ComponentItem;
4
+ chartTheme?: CanvasConfig['chartTheme'];
5
+ }
6
+ declare const _default: import('vue').DefineComponent<WordCloudChartProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<WordCloudChartProps> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
7
+ chartRef: HTMLDivElement;
8
+ }, HTMLDivElement>;
9
+ export default _default;
@@ -0,0 +1,21 @@
1
+ import { ComponentItem } from '../../types';
2
+ export interface BorderBox1Props {
3
+ item: ComponentItem;
4
+ }
5
+ declare function __VLS_template(): {
6
+ attrs: Partial<{}>;
7
+ slots: {
8
+ default?(_: {}): any;
9
+ };
10
+ refs: {};
11
+ rootEl: HTMLDivElement;
12
+ };
13
+ type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
14
+ declare const __VLS_component: import('vue').DefineComponent<BorderBox1Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<BorderBox1Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
15
+ declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
16
+ export default _default;
17
+ type __VLS_WithTemplateSlots<T, S> = T & {
18
+ new (): {
19
+ $slots: S;
20
+ };
21
+ };