├── .editorconfig ├── .eslintignore ├── .eslintrc.js ├── .github └── workflows │ ├── deploy.yml │ └── static-deploy.yml ├── .gitignore ├── .prettierignore ├── .prettierrc ├── .sentryclirc ├── .stylelintrc.js ├── README.md ├── assets ├── development │ ├── H5设计器.md │ ├── README.md │ ├── attention │ │ ├── 1.21.md │ │ └── README.md │ ├── component.md │ ├── data.md │ ├── function.md │ ├── screen.md │ ├── structure.md │ ├── 展示组件抽离.md │ └── 版本升级文档修改流程.md ├── docs │ ├── 1.0.md │ ├── 1.1.md │ ├── 1.10.md │ ├── 1.11.md │ ├── 1.12.md │ ├── 1.13.md │ ├── 1.14.md │ ├── 1.15.md │ ├── 1.16.md │ ├── 1.17.md │ ├── 1.18.md │ ├── 1.19.md │ ├── 1.2.md │ ├── 1.20.md │ ├── 1.21.md │ ├── 1.3.md │ ├── 1.4.md │ ├── 1.5.md │ ├── 1.6.md │ ├── 1.7.md │ ├── 1.8.md │ └── 1.9.md ├── icons │ ├── icon-128x128.png │ ├── icon-192x192.png │ └── icon-512x512.png ├── other │ ├── background.jpeg │ ├── home_bg.png │ ├── screenshoot-1.png │ ├── screenshoot-2.png │ ├── screenshoot-3.jpg │ ├── screenshoot-4.jpg │ ├── screenshoot-5.jpg │ └── screenshoot-6.jpg └── panel.png ├── config ├── config.ts ├── defaultSettings.ts ├── proxy.ts ├── router-config.ts └── theme.ts ├── jsconfig.json ├── mock └── .gitkeep ├── package.json ├── public ├── CNAME ├── components │ ├── ali-map.jpg │ ├── audio.jpg │ ├── bar-basic.png │ ├── box-plot.png │ ├── bubble-scatter.png │ ├── button.jpg │ ├── cachet-bar.png │ ├── candlestick-basic.png │ ├── carousel-basic.jpg │ ├── carousel-text.jpg │ ├── checkbox.jpg │ ├── circle-pie.png │ ├── clock-gauge.png │ ├── count-up-number.jpg │ ├── date-picker.jpg │ ├── decoration-1.jpg │ ├── decoration-2.jpg │ ├── decoration-3.jpg │ ├── decoration-4.jpg │ ├── decoration-5.jpg │ ├── decoration-6.jpg │ ├── decoration-7.jpg │ ├── decoration-8.jpg │ ├── default-chart.png │ ├── full-screen.jpg │ ├── funnel-basic.png │ ├── gauge-basic.png │ ├── horizontal-bar.png │ ├── icon.jpg │ ├── iframe.jpg │ ├── image-basic.jpg │ ├── input.jpg │ ├── line-bar.png │ ├── line-basic.png │ ├── list-basic.jpg │ ├── lucky-draw.jpg │ ├── model.jpg │ ├── negative-bar.png │ ├── nightingale-pie.png │ ├── pagination.jpg │ ├── parallel-basic.png │ ├── path-basic.jpg │ ├── percent-bar.png │ ├── percent-pie.png │ ├── pictorial-bar-basic.png │ ├── picture-wall.jpg │ ├── pie-basic.png │ ├── polar-bar.png │ ├── polar-stack-bar.png │ ├── progress-bar.png │ ├── qrcode.jpg │ ├── radar-basic.png │ ├── radial-bar.png │ ├── radial-line.png │ ├── radial-stack-line.png │ ├── radio.jpg │ ├── rank-bar.png │ ├── rate.jpg │ ├── scatter-basic.png │ ├── scatter-map.png │ ├── select-basic.jpg │ ├── stack-bar.png │ ├── state-card.jpg │ ├── state-list.jpg │ ├── step-line.png │ ├── steps.jpg │ ├── sub-burst-basic.png │ ├── switch.jpg │ ├── tab-basic.jpg │ ├── tag.jpg │ ├── text-carousel.jpg │ ├── text.jpg │ ├── ticket.jpg │ ├── time-machine.jpg │ ├── title-basic.jpg │ ├── tree-map-basic.png │ ├── tree.png │ ├── typed.jpg │ ├── video-basic.jpg │ ├── water-ball.png │ ├── waterfall-bar.png │ ├── weather.png │ ├── word-cloud.png │ └── zebra-bar.png ├── favicon.ico ├── home │ ├── area-chart.png │ ├── bar-chart.png │ ├── condition-1.png │ ├── condition-2.png │ ├── condition-normal.png │ ├── dot-chart.png │ ├── earth-chart.png │ ├── image-chart.png │ ├── line-chart.png │ ├── list-chart.png │ ├── pie-chart.png │ ├── radar-chart.png │ ├── thermogram-chart.png │ ├── title-chart.png │ ├── video-chart.png │ └── wall.svg ├── login │ ├── cloud-bottom.png │ ├── cloud-small.png │ ├── cloud-top.png │ ├── login-background-main.png │ ├── login-left-circle.png │ ├── login-main-background.png │ └── login-pink-background.png ├── logo.jpg ├── other │ ├── prizes-1.png │ ├── prizes-2.png │ ├── prizes-3.png │ ├── prizes-4.png │ ├── prizes-5.png │ └── prizes-6.png ├── pro_icon.svg └── start-background.jpeg ├── scripts ├── GenerateComponent │ ├── README.md │ ├── TemplateComponentFolder │ │ ├── component │ │ │ └── index.tsx │ │ ├── config │ │ │ ├── Condition.tsx │ │ │ └── index.tsx │ │ ├── defaultConfig.ts │ │ ├── id.ts │ │ ├── index.ts │ │ └── type.ts │ ├── TemplateComponentImport.txt │ ├── index.js │ ├── parentType.js │ └── subParent.js ├── StaticFileDebug │ └── index.js └── write-sentry-key.js ├── src ├── INTERNAL.md ├── access.ts ├── app.tsx ├── component-type.d.ts ├── component.d.ts ├── components │ ├── BackgroundSelect │ │ ├── index.less │ │ └── index.tsx │ ├── ChartComponents │ │ ├── Chart │ │ │ ├── Bar │ │ │ │ ├── BarBasic │ │ │ │ │ ├── component │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── config │ │ │ │ │ │ ├── Animation.tsx │ │ │ │ │ │ ├── Axis.tsx │ │ │ │ │ │ ├── Condition.tsx │ │ │ │ │ │ ├── GridConfig.tsx │ │ │ │ │ │ ├── Legend.tsx │ │ │ │ │ │ ├── Series.tsx │ │ │ │ │ │ ├── Tooltip.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── defaultConfig.ts │ │ │ │ │ ├── id.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── type.ts │ │ │ │ ├── CachetBar │ │ │ │ │ ├── component │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── config │ │ │ │ │ │ ├── Animation.tsx │ │ │ │ │ │ ├── Axis.tsx │ │ │ │ │ │ ├── Condition.tsx │ │ │ │ │ │ ├── GridConfig.tsx │ │ │ │ │ │ ├── Legend.tsx │ │ │ │ │ │ ├── Series.tsx │ │ │ │ │ │ ├── Tooltip.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── defaultConfig.ts │ │ │ │ │ ├── id.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── type.ts │ │ │ │ ├── HorizontalBar │ │ │ │ │ ├── component │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── config │ │ │ │ │ │ ├── Animation.tsx │ │ │ │ │ │ ├── Axis.tsx │ │ │ │ │ │ ├── Condition.tsx │ │ │ │ │ │ ├── GridConfig.tsx │ │ │ │ │ │ ├── Legend.tsx │ │ │ │ │ │ ├── Series.tsx │ │ │ │ │ │ ├── Tooltip.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── defaultConfig.ts │ │ │ │ │ ├── id.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── type.ts │ │ │ │ ├── LineBar │ │ │ │ │ ├── component │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── config │ │ │ │ │ │ ├── Animation.tsx │ │ │ │ │ │ ├── Axis.tsx │ │ │ │ │ │ ├── Condition.tsx │ │ │ │ │ │ ├── GridConfig.tsx │ │ │ │ │ │ ├── Legend.tsx │ │ │ │ │ │ ├── Series.tsx │ │ │ │ │ │ ├── Tooltip.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── defaultConfig.ts │ │ │ │ │ ├── id.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── type.ts │ │ │ │ ├── NegativeBar │ │ │ │ │ ├── component │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── config │ │ │ │ │ │ ├── Animation.tsx │ │ │ │ │ │ ├── Axis.tsx │ │ │ │ │ │ ├── Condition.tsx │ │ │ │ │ │ ├── GridConfig.tsx │ │ │ │ │ │ ├── Legend.tsx │ │ │ │ │ │ ├── Series.tsx │ │ │ │ │ │ ├── Tooltip.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── defaultConfig.ts │ │ │ │ │ ├── id.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── type.ts │ │ │ │ ├── PercentBar │ │ │ │ │ ├── component │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── config │ │ │ │ │ │ ├── Animation.tsx │ │ │ │ │ │ ├── Condition.tsx │ │ │ │ │ │ ├── GridConfig.tsx │ │ │ │ │ │ ├── Series.tsx │ │ │ │ │ │ ├── Tooltip.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── defaultConfig.ts │ │ │ │ │ ├── id.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── type.ts │ │ │ │ ├── PolarBar │ │ │ │ │ ├── component │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── config │ │ │ │ │ │ ├── Animation.tsx │ │ │ │ │ │ ├── Axis.tsx │ │ │ │ │ │ ├── Condition.tsx │ │ │ │ │ │ ├── Legend.tsx │ │ │ │ │ │ ├── Polar.tsx │ │ │ │ │ │ ├── Series.tsx │ │ │ │ │ │ ├── Tooltip.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── defaultConfig.ts │ │ │ │ │ ├── id.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── type.ts │ │ │ │ ├── PolarStackBar │ │ │ │ │ ├── component │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── config │ │ │ │ │ │ ├── Animation.tsx │ │ │ │ │ │ ├── Axis.tsx │ │ │ │ │ │ ├── Condition.tsx │ │ │ │ │ │ ├── Legend.tsx │ │ │ │ │ │ ├── Polar.tsx │ │ │ │ │ │ ├── Series.tsx │ │ │ │ │ │ ├── Tooltip.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── defaultConfig.ts │ │ │ │ │ ├── id.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── type.ts │ │ │ │ ├── ProgressBar │ │ │ │ │ ├── component │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── config │ │ │ │ │ │ ├── Animation.tsx │ │ │ │ │ │ ├── Axis.tsx │ │ │ │ │ │ ├── Condition.tsx │ │ │ │ │ │ ├── GridConfig.tsx │ │ │ │ │ │ ├── Series.tsx │ │ │ │ │ │ ├── Tooltip.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── defaultConfig.ts │ │ │ │ │ ├── id.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── type.ts │ │ │ │ ├── RadialBar │ │ │ │ │ ├── component │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── config │ │ │ │ │ │ ├── Animation.tsx │ │ │ │ │ │ ├── Axis.tsx │ │ │ │ │ │ ├── Condition.tsx │ │ │ │ │ │ ├── GridConfig.tsx │ │ │ │ │ │ ├── Legend.tsx │ │ │ │ │ │ ├── Series.tsx │ │ │ │ │ │ ├── Tooltip.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── defaultConfig.ts │ │ │ │ │ ├── id.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── type.ts │ │ │ │ ├── RankBar │ │ │ │ │ ├── component │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── config │ │ │ │ │ │ ├── Animation.tsx │ │ │ │ │ │ ├── Axis.tsx │ │ │ │ │ │ ├── Condition.tsx │ │ │ │ │ │ ├── GridConfig.tsx │ │ │ │ │ │ ├── Series.tsx │ │ │ │ │ │ ├── Tooltip.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── defaultConfig.ts │ │ │ │ │ ├── id.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── type.ts │ │ │ │ ├── StackBar │ │ │ │ │ ├── component │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── config │ │ │ │ │ │ ├── Animation.tsx │ │ │ │ │ │ ├── Axis.tsx │ │ │ │ │ │ ├── Condition.tsx │ │ │ │ │ │ ├── GridConfig.tsx │ │ │ │ │ │ ├── Legend.tsx │ │ │ │ │ │ ├── Series.tsx │ │ │ │ │ │ ├── Tooltip.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── defaultConfig.ts │ │ │ │ │ ├── id.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── type.ts │ │ │ │ ├── WaterFallBar │ │ │ │ │ ├── component │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── config │ │ │ │ │ │ ├── Animation.tsx │ │ │ │ │ │ ├── Axis.tsx │ │ │ │ │ │ ├── Condition.tsx │ │ │ │ │ │ ├── GridConfig.tsx │ │ │ │ │ │ ├── Series.tsx │ │ │ │ │ │ ├── Tooltip.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── defaultConfig.ts │ │ │ │ │ ├── id.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── type.ts │ │ │ │ └── ZebraBar │ │ │ │ │ ├── component │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── config │ │ │ │ │ ├── Animation.tsx │ │ │ │ │ ├── Axis.tsx │ │ │ │ │ ├── Condition.tsx │ │ │ │ │ ├── GridConfig.tsx │ │ │ │ │ ├── Legend.tsx │ │ │ │ │ ├── Series.tsx │ │ │ │ │ ├── Tooltip.tsx │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── defaultConfig.ts │ │ │ │ │ ├── id.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── type.ts │ │ │ ├── BoxPlot │ │ │ │ └── BoxPlotBasic │ │ │ │ │ ├── component │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── config │ │ │ │ │ ├── Animation.tsx │ │ │ │ │ ├── Axis.tsx │ │ │ │ │ ├── Condition.tsx │ │ │ │ │ ├── GridConfig.tsx │ │ │ │ │ ├── Legend.tsx │ │ │ │ │ ├── Series.tsx │ │ │ │ │ ├── Tooltip.tsx │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── defaultConfig.ts │ │ │ │ │ ├── id.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── type.ts │ │ │ ├── Candlestick │ │ │ │ └── CandlestickBasic │ │ │ │ │ ├── component │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── config │ │ │ │ │ ├── Animation.tsx │ │ │ │ │ ├── Axis.tsx │ │ │ │ │ ├── Condition.tsx │ │ │ │ │ ├── GridConfig.tsx │ │ │ │ │ ├── Series.tsx │ │ │ │ │ ├── Tooltip.tsx │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── defaultConfig.ts │ │ │ │ │ ├── id.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── type.ts │ │ │ ├── Funnel │ │ │ │ └── FunnelBasic │ │ │ │ │ ├── component │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── config │ │ │ │ │ ├── Animation.tsx │ │ │ │ │ ├── Condition.tsx │ │ │ │ │ ├── Legend.tsx │ │ │ │ │ ├── Series.tsx │ │ │ │ │ ├── Tooltip.tsx │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── defaultConfig.ts │ │ │ │ │ ├── id.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── type.ts │ │ │ ├── Gauge │ │ │ │ ├── ClockGauge │ │ │ │ │ ├── component │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── config │ │ │ │ │ │ ├── Series.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── defaultConfig.ts │ │ │ │ │ ├── id.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── type.ts │ │ │ │ └── GaugeBasic │ │ │ │ │ ├── component │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── config │ │ │ │ │ ├── Animation.tsx │ │ │ │ │ ├── Condition.tsx │ │ │ │ │ ├── Series.tsx │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── defaultConfig.ts │ │ │ │ │ ├── id.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── type.ts │ │ │ ├── Line │ │ │ │ ├── LineBasic │ │ │ │ │ ├── component │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── config │ │ │ │ │ │ ├── Animation.tsx │ │ │ │ │ │ ├── Axis.tsx │ │ │ │ │ │ ├── Condition.tsx │ │ │ │ │ │ ├── GridConfig.tsx │ │ │ │ │ │ ├── Legend.tsx │ │ │ │ │ │ ├── Series.tsx │ │ │ │ │ │ ├── Tooltip.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── defaultConfig.ts │ │ │ │ │ ├── id.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── type.ts │ │ │ │ ├── RadialLine │ │ │ │ │ ├── component │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── config │ │ │ │ │ │ ├── Animation.tsx │ │ │ │ │ │ ├── Axis.tsx │ │ │ │ │ │ ├── Condition.tsx │ │ │ │ │ │ ├── GridConfig.tsx │ │ │ │ │ │ ├── Legend.tsx │ │ │ │ │ │ ├── Series.tsx │ │ │ │ │ │ ├── Tooltip.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── defaultConfig.ts │ │ │ │ │ ├── id.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── type.ts │ │ │ │ ├── RadialStackLine │ │ │ │ │ ├── component │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── config │ │ │ │ │ │ ├── Animation.tsx │ │ │ │ │ │ ├── Axis.tsx │ │ │ │ │ │ ├── Condition.tsx │ │ │ │ │ │ ├── GridConfig.tsx │ │ │ │ │ │ ├── Legend.tsx │ │ │ │ │ │ ├── Series.tsx │ │ │ │ │ │ ├── Tooltip.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── defaultConfig.ts │ │ │ │ │ ├── id.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── type.ts │ │ │ │ └── StepLine │ │ │ │ │ ├── component │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── config │ │ │ │ │ ├── Animation.tsx │ │ │ │ │ ├── Axis.tsx │ │ │ │ │ ├── Condition.tsx │ │ │ │ │ ├── GridConfig.tsx │ │ │ │ │ ├── Legend.tsx │ │ │ │ │ ├── Series.tsx │ │ │ │ │ ├── Tooltip.tsx │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── defaultConfig.ts │ │ │ │ │ ├── id.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── type.ts │ │ │ ├── Parallel │ │ │ │ └── ParallelBasic │ │ │ │ │ ├── component │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── config │ │ │ │ │ ├── Animation.tsx │ │ │ │ │ ├── Condition.tsx │ │ │ │ │ ├── Legend.tsx │ │ │ │ │ ├── ParallelAxis.tsx │ │ │ │ │ ├── ParallelConfig.tsx │ │ │ │ │ ├── Series.tsx │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── defaultConfig.ts │ │ │ │ │ ├── id.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── type.ts │ │ │ ├── PictorialBar │ │ │ │ └── PictorialBarBasic │ │ │ │ │ ├── component │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── config │ │ │ │ │ ├── Animation.tsx │ │ │ │ │ ├── Axis.tsx │ │ │ │ │ ├── Condition.tsx │ │ │ │ │ ├── GridConfig.tsx │ │ │ │ │ ├── Series.tsx │ │ │ │ │ ├── Tooltip.tsx │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── defaultConfig.ts │ │ │ │ │ ├── id.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── type.ts │ │ │ ├── Pie │ │ │ │ ├── CirclePie │ │ │ │ │ ├── component │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── config │ │ │ │ │ │ ├── Animation.tsx │ │ │ │ │ │ ├── Condition.tsx │ │ │ │ │ │ ├── Legend.tsx │ │ │ │ │ │ ├── Series.tsx │ │ │ │ │ │ ├── Statistics.tsx │ │ │ │ │ │ ├── Tooltip.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── defaultConfig.ts │ │ │ │ │ ├── id.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── type.ts │ │ │ │ ├── NightingalePie │ │ │ │ │ ├── component │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── config │ │ │ │ │ │ ├── Animation.tsx │ │ │ │ │ │ ├── Condition.tsx │ │ │ │ │ │ ├── Legend.tsx │ │ │ │ │ │ ├── Series.tsx │ │ │ │ │ │ ├── Tooltip.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── defaultConfig.ts │ │ │ │ │ ├── id.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── type.ts │ │ │ │ ├── PercentPie │ │ │ │ │ ├── component │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── config │ │ │ │ │ │ ├── Animation.tsx │ │ │ │ │ │ ├── Condition.tsx │ │ │ │ │ │ ├── LineStyle.tsx │ │ │ │ │ │ ├── Series.tsx │ │ │ │ │ │ ├── Statistics.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── defaultConfig.ts │ │ │ │ │ ├── id.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── type.ts │ │ │ │ └── PieBasic │ │ │ │ │ ├── component │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── config │ │ │ │ │ ├── Animation.tsx │ │ │ │ │ ├── Condition.tsx │ │ │ │ │ ├── Legend.tsx │ │ │ │ │ ├── Series.tsx │ │ │ │ │ ├── Tooltip.tsx │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── defaultConfig.ts │ │ │ │ │ ├── id.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── type.ts │ │ │ ├── Radar │ │ │ │ └── RadarBasic │ │ │ │ │ ├── component │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── config │ │ │ │ │ ├── Animation.tsx │ │ │ │ │ ├── Condition.tsx │ │ │ │ │ ├── Legend.tsx │ │ │ │ │ ├── Radar.tsx │ │ │ │ │ ├── Series.tsx │ │ │ │ │ ├── Tooltip.tsx │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── defaultConfig.ts │ │ │ │ │ ├── id.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── type.ts │ │ │ ├── Scatter │ │ │ │ ├── BubbleScatter │ │ │ │ │ ├── component │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── config │ │ │ │ │ │ ├── Animation.tsx │ │ │ │ │ │ ├── Axis.tsx │ │ │ │ │ │ ├── Condition.tsx │ │ │ │ │ │ ├── GridConfig.tsx │ │ │ │ │ │ ├── Series.tsx │ │ │ │ │ │ ├── Title.tsx │ │ │ │ │ │ ├── Tooltip.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── defaultConfig.ts │ │ │ │ │ ├── id.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── type.ts │ │ │ │ └── ScatterBasic │ │ │ │ │ ├── component │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── config │ │ │ │ │ ├── Animation.tsx │ │ │ │ │ ├── Axis.tsx │ │ │ │ │ ├── Condition.tsx │ │ │ │ │ ├── GridConfig.tsx │ │ │ │ │ ├── Legend.tsx │ │ │ │ │ ├── Series.tsx │ │ │ │ │ ├── Tooltip.tsx │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── defaultConfig.ts │ │ │ │ │ ├── id.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── type.ts │ │ │ ├── SunBurst │ │ │ │ └── SunBurstBasic │ │ │ │ │ ├── component │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── config │ │ │ │ │ ├── Animation.tsx │ │ │ │ │ ├── Condition.tsx │ │ │ │ │ ├── Series.tsx │ │ │ │ │ ├── Tooltip.tsx │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── defaultConfig.ts │ │ │ │ │ ├── id.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── type.ts │ │ │ ├── Tree │ │ │ │ └── TreeBasic │ │ │ │ │ ├── component │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── config │ │ │ │ │ ├── Animation.tsx │ │ │ │ │ ├── Condition.tsx │ │ │ │ │ ├── Series.tsx │ │ │ │ │ ├── Tooltip.tsx │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── defaultConfig.ts │ │ │ │ │ ├── id.ts │ │ │ │ │ ├── index.ts │ │ │ │ │ └── type.ts │ │ │ └── TreeMap │ │ │ │ └── TreeMapBasic │ │ │ │ ├── component │ │ │ │ └── index.tsx │ │ │ │ ├── config │ │ │ │ ├── Animation.tsx │ │ │ │ ├── Condition.tsx │ │ │ │ ├── Series.tsx │ │ │ │ ├── Tooltip.tsx │ │ │ │ └── index.tsx │ │ │ │ ├── defaultConfig.ts │ │ │ │ ├── id.ts │ │ │ │ ├── index.ts │ │ │ │ └── type.ts │ │ ├── Common │ │ │ ├── AngleSelect │ │ │ │ ├── CircleSelect.tsx │ │ │ │ ├── index.less │ │ │ │ └── index.tsx │ │ │ ├── AnimationConfig │ │ │ │ └── index.tsx │ │ │ ├── AxisConfig │ │ │ │ ├── XAxisPosition.tsx │ │ │ │ ├── YAxisPosition.tsx │ │ │ │ └── index.tsx │ │ │ ├── BarCarouselConfig │ │ │ │ ├── index.tsx │ │ │ │ └── useBarCarousel.ts │ │ │ ├── BaseConfig │ │ │ │ ├── connect.ts │ │ │ │ ├── index.less │ │ │ │ └── index.tsx │ │ │ ├── BootstrapIconSelect │ │ │ │ └── index.tsx │ │ │ ├── BoxShadowConfig │ │ │ │ └── index.tsx │ │ │ ├── CenterPositionConfig │ │ │ │ └── index.tsx │ │ │ ├── ChartAnimationTypeSelect │ │ │ │ └── index.tsx │ │ │ ├── ChartGradientSelect │ │ │ │ └── index.tsx │ │ │ ├── Checkbox │ │ │ │ ├── index.less │ │ │ │ └── index.tsx │ │ │ ├── ClipPathSelect │ │ │ │ └── index.tsx │ │ │ ├── Collapse │ │ │ │ ├── index.less │ │ │ │ └── index.tsx │ │ │ ├── Component │ │ │ │ ├── EventEmitter.ts │ │ │ │ ├── hook │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── useAnimationChange.ts │ │ │ │ │ ├── useChartComponentResize.ts │ │ │ │ │ ├── useChartComponentTooltip.ts │ │ │ │ │ ├── useChartEvent.ts │ │ │ │ │ ├── useChartPerConfig.ts │ │ │ │ │ ├── useChartValueMap.ts │ │ │ │ │ ├── useComponent.ts │ │ │ │ │ ├── useComponentResize.ts │ │ │ │ │ ├── useComponentSize.ts │ │ │ │ │ ├── useCondition.ts │ │ │ │ │ ├── useFilterChange.ts │ │ │ │ │ ├── useGroupComponent.ts │ │ │ │ │ └── useLinkageInteractive.ts │ │ │ │ └── index.tsx │ │ │ ├── ComponentOptionConfig │ │ │ │ ├── index.less │ │ │ │ └── index.tsx │ │ │ ├── ConditionConfig │ │ │ │ ├── components │ │ │ │ │ ├── CodeEditor │ │ │ │ │ │ └── index.tsx │ │ │ │ │ └── InitialStateConfig │ │ │ │ │ │ └── index.tsx │ │ │ │ └── index.tsx │ │ │ ├── ConfigRender │ │ │ │ ├── SubConfigRender.tsx │ │ │ │ ├── index.tsx │ │ │ │ ├── type.ts │ │ │ │ └── utils.tsx │ │ │ ├── ConfigWrapper │ │ │ │ ├── index.less │ │ │ │ └── index.tsx │ │ │ ├── Constants │ │ │ │ └── defaultConfig.ts │ │ │ ├── DataConfig │ │ │ │ ├── components │ │ │ │ │ ├── FieldMap │ │ │ │ │ │ ├── index.less │ │ │ │ │ │ └── index.tsx │ │ │ │ │ └── ResponseData │ │ │ │ │ │ ├── components │ │ │ │ │ │ ├── AutoUpdate │ │ │ │ │ │ │ ├── index.less │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── CodeViewer │ │ │ │ │ │ │ ├── connect.ts │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ └── DataConfigDetail │ │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ ├── DataFilter │ │ │ │ │ │ │ │ ├── List.tsx │ │ │ │ │ │ │ │ ├── ListItem │ │ │ │ │ │ │ │ │ ├── NameEditor.tsx │ │ │ │ │ │ │ │ │ ├── StepData.tsx │ │ │ │ │ │ │ │ │ ├── index.less │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ ├── addItem.tsx │ │ │ │ │ │ │ │ ├── connect.ts │ │ │ │ │ │ │ │ ├── index.less │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ ├── DefineConfig │ │ │ │ │ │ │ │ ├── ApiConfig │ │ │ │ │ │ │ │ │ ├── connect.ts │ │ │ │ │ │ │ │ │ ├── index.less │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ ├── MockConfig │ │ │ │ │ │ │ │ │ ├── connect.ts │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ ├── SaveCodeEditor │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ ├── StaticConfig │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ │ │ └── type.d.ts │ │ │ │ │ │ │ ├── NormalTitle │ │ │ │ │ │ │ │ ├── index.less │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ ├── ResponseDataMap │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ ├── ResponseDataTitle │ │ │ │ │ │ │ │ ├── connect.ts │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ └── SubTitle │ │ │ │ │ │ │ │ ├── index.less │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ ├── index.less │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── index.less │ │ │ │ │ │ └── index.tsx │ │ │ │ ├── connect.ts │ │ │ │ ├── index.less │ │ │ │ └── index.tsx │ │ │ ├── Dropdown │ │ │ │ └── index.tsx │ │ │ ├── FetchFragment │ │ │ │ ├── connect.ts │ │ │ │ └── index.tsx │ │ │ ├── FontConfig │ │ │ │ └── index.tsx │ │ │ ├── FormModal │ │ │ │ └── index.tsx │ │ │ ├── FormatterSelect │ │ │ │ └── index.tsx │ │ │ ├── GridConfig │ │ │ │ └── index.tsx │ │ │ ├── Icon │ │ │ │ └── index.tsx │ │ │ ├── IconRadio │ │ │ │ ├── index.less │ │ │ │ └── index.tsx │ │ │ ├── Input │ │ │ │ └── index.tsx │ │ │ ├── InputNumber │ │ │ │ └── index.tsx │ │ │ ├── InterActiveConfig │ │ │ │ ├── components │ │ │ │ │ ├── BaseConfig │ │ │ │ │ │ ├── FieldSetting.tsx │ │ │ │ │ │ ├── connect.ts │ │ │ │ │ │ ├── index.less │ │ │ │ │ │ └── index.tsx │ │ │ │ │ └── LinkageConfig │ │ │ │ │ │ ├── index.less │ │ │ │ │ │ └── index.tsx │ │ │ │ ├── connect.ts │ │ │ │ ├── index.less │ │ │ │ └── index.tsx │ │ │ ├── KeyWordPosition │ │ │ │ └── index.tsx │ │ │ ├── LabelPositionConfig │ │ │ │ └── index.tsx │ │ │ ├── LegendConfig │ │ │ │ └── index.tsx │ │ │ ├── LineStyleGroupConfig │ │ │ │ └── index.tsx │ │ │ ├── LineStyleSelect │ │ │ │ └── index.tsx │ │ │ ├── LocalUpload │ │ │ │ ├── index.less │ │ │ │ └── index.tsx │ │ │ ├── MapTable │ │ │ │ ├── index.less │ │ │ │ └── index.tsx │ │ │ ├── MarginConfig │ │ │ │ └── index.tsx │ │ │ ├── MaxMinConfig │ │ │ │ └── index.tsx │ │ │ ├── Modal │ │ │ │ └── index.tsx │ │ │ ├── MultipleSeriesConfig │ │ │ │ ├── index.less │ │ │ │ └── index.tsx │ │ │ ├── NumberPositionConfig │ │ │ │ └── index.tsx │ │ │ ├── Opacity │ │ │ │ └── index.tsx │ │ │ ├── OrientSelect │ │ │ │ └── index.tsx │ │ │ ├── PositionConfig │ │ │ │ ├── index.less │ │ │ │ └── index.tsx │ │ │ ├── RenderWrapper │ │ │ │ ├── InViewportWrapper │ │ │ │ │ └── index.tsx │ │ │ │ ├── README.md │ │ │ │ ├── ShowIdWrapper │ │ │ │ │ ├── connect.ts │ │ │ │ │ ├── index.less │ │ │ │ │ └── index.tsx │ │ │ │ └── index.tsx │ │ │ ├── RuleTree │ │ │ │ ├── components │ │ │ │ │ ├── Condition │ │ │ │ │ │ ├── index.less │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── Header │ │ │ │ │ │ ├── index.less │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── InnerConnectLeft │ │ │ │ │ │ ├── index.svg │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── InnerConnectRight │ │ │ │ │ │ ├── index.svg │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── OuterConnectLeft │ │ │ │ │ │ ├── index.svg │ │ │ │ │ │ └── index.tsx │ │ │ │ │ └── OuterConnectRight │ │ │ │ │ │ ├── index.svg │ │ │ │ │ │ └── index.tsx │ │ │ │ ├── index.less │ │ │ │ └── index.tsx │ │ │ ├── Select │ │ │ │ └── index.tsx │ │ │ ├── SeriesLabelConfig │ │ │ │ └── index.tsx │ │ │ ├── ShadowConfig │ │ │ │ └── index.tsx │ │ │ ├── SimpleHueSelect │ │ │ │ ├── index.less │ │ │ │ └── index.tsx │ │ │ ├── SingleDefineSelect │ │ │ │ └── index.tsx │ │ │ ├── Slider │ │ │ │ └── index.tsx │ │ │ ├── Structure │ │ │ │ ├── ConfigList │ │ │ │ │ ├── index.less │ │ │ │ │ └── index.tsx │ │ │ │ ├── Container │ │ │ │ │ ├── index.less │ │ │ │ │ └── index.tsx │ │ │ │ ├── FullForm │ │ │ │ │ ├── index.less │ │ │ │ │ └── index.tsx │ │ │ │ ├── HalfForm │ │ │ │ │ ├── index.less │ │ │ │ │ └── index.tsx │ │ │ │ ├── HalfFormPlaceHolder │ │ │ │ │ ├── index.less │ │ │ │ │ └── index.tsx │ │ │ │ └── PlaceHolder │ │ │ │ │ ├── index.less │ │ │ │ │ └── index.tsx │ │ │ ├── Switch │ │ │ │ ├── index.less │ │ │ │ └── index.tsx │ │ │ ├── SymbolSelect │ │ │ │ └── index.tsx │ │ │ ├── TextAlignConfig │ │ │ │ └── index.tsx │ │ │ ├── Textarea │ │ │ │ └── index.tsx │ │ │ ├── Tooltip │ │ │ │ └── index.tsx │ │ │ ├── TooltipAnimationConfig │ │ │ │ └── index.tsx │ │ │ ├── TooltipCommon │ │ │ │ └── index.tsx │ │ │ ├── global.less │ │ │ ├── index.less │ │ │ └── utils │ │ │ │ └── index.ts │ │ ├── Font │ │ │ ├── CountUpNumber │ │ │ │ ├── component │ │ │ │ │ ├── index.less │ │ │ │ │ └── index.tsx │ │ │ │ ├── config │ │ │ │ │ ├── Condition.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── defaultConfig.ts │ │ │ │ ├── id.ts │ │ │ │ ├── index.ts │ │ │ │ └── type.ts │ │ │ ├── FontCarousel │ │ │ │ ├── component │ │ │ │ │ ├── index.less │ │ │ │ │ └── index.tsx │ │ │ │ ├── config │ │ │ │ │ ├── Condition.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── defaultConfig.ts │ │ │ │ ├── id.ts │ │ │ │ ├── index.ts │ │ │ │ └── type.ts │ │ │ ├── Icon │ │ │ │ ├── component │ │ │ │ │ ├── index.less │ │ │ │ │ └── index.tsx │ │ │ │ ├── config │ │ │ │ │ └── index.tsx │ │ │ │ ├── defaultConfig.ts │ │ │ │ ├── id.ts │ │ │ │ ├── index.ts │ │ │ │ └── type.ts │ │ │ ├── LoopText │ │ │ │ ├── component │ │ │ │ │ ├── index.less │ │ │ │ │ └── index.tsx │ │ │ │ ├── config │ │ │ │ │ ├── Condition.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── defaultConfig.ts │ │ │ │ ├── id.ts │ │ │ │ ├── index.ts │ │ │ │ └── type.ts │ │ │ ├── Tag │ │ │ │ ├── component │ │ │ │ │ ├── index.less │ │ │ │ │ └── index.tsx │ │ │ │ ├── config │ │ │ │ │ ├── Condition.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── defaultConfig.ts │ │ │ │ ├── id.ts │ │ │ │ ├── index.ts │ │ │ │ └── type.ts │ │ │ ├── Text │ │ │ │ ├── component │ │ │ │ │ ├── index.less │ │ │ │ │ └── index.tsx │ │ │ │ ├── config │ │ │ │ │ ├── Condition.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── defaultConfig.ts │ │ │ │ ├── id.ts │ │ │ │ ├── index.ts │ │ │ │ └── type.ts │ │ │ ├── TimeMachine │ │ │ │ ├── component │ │ │ │ │ ├── index.less │ │ │ │ │ └── index.tsx │ │ │ │ ├── config │ │ │ │ │ └── index.tsx │ │ │ │ ├── defaultConfig.ts │ │ │ │ ├── id.ts │ │ │ │ ├── index.ts │ │ │ │ └── type.ts │ │ │ └── Title │ │ │ │ ├── component │ │ │ │ ├── index.less │ │ │ │ └── index.tsx │ │ │ │ ├── config │ │ │ │ ├── Condition.tsx │ │ │ │ └── index.tsx │ │ │ │ ├── defaultConfig.ts │ │ │ │ ├── id.ts │ │ │ │ ├── index.ts │ │ │ │ └── type.ts │ │ ├── Interactive │ │ │ ├── Button │ │ │ │ ├── component │ │ │ │ │ ├── index.less │ │ │ │ │ └── index.tsx │ │ │ │ ├── config │ │ │ │ │ └── index.tsx │ │ │ │ ├── defaultConfig.ts │ │ │ │ ├── id.ts │ │ │ │ ├── index.ts │ │ │ │ └── type.ts │ │ │ ├── Checkbox │ │ │ │ ├── component │ │ │ │ │ ├── index.less │ │ │ │ │ └── index.tsx │ │ │ │ ├── config │ │ │ │ │ └── index.tsx │ │ │ │ ├── defaultConfig.ts │ │ │ │ ├── id.ts │ │ │ │ ├── index.ts │ │ │ │ └── type.ts │ │ │ ├── Datepicker │ │ │ │ ├── component │ │ │ │ │ ├── index.less │ │ │ │ │ └── index.tsx │ │ │ │ ├── config │ │ │ │ │ ├── components │ │ │ │ │ │ └── CodeEditor │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── defaultConfig.ts │ │ │ │ ├── id.ts │ │ │ │ ├── index.ts │ │ │ │ └── type.ts │ │ │ ├── FullScreen │ │ │ │ ├── component │ │ │ │ │ ├── index.less │ │ │ │ │ └── index.tsx │ │ │ │ ├── config │ │ │ │ │ └── index.tsx │ │ │ │ ├── defaultConfig.ts │ │ │ │ ├── id.ts │ │ │ │ ├── index.ts │ │ │ │ └── type.ts │ │ │ ├── Input │ │ │ │ ├── component │ │ │ │ │ ├── index.less │ │ │ │ │ └── index.tsx │ │ │ │ ├── config │ │ │ │ │ └── index.tsx │ │ │ │ ├── defaultConfig.ts │ │ │ │ ├── id.ts │ │ │ │ ├── index.ts │ │ │ │ └── type.ts │ │ │ ├── Pagination │ │ │ │ ├── component │ │ │ │ │ ├── index.less │ │ │ │ │ └── index.tsx │ │ │ │ ├── config │ │ │ │ │ ├── Condition.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── defaultConfig.ts │ │ │ │ ├── id.ts │ │ │ │ ├── index.ts │ │ │ │ └── type.ts │ │ │ ├── Radio │ │ │ │ ├── component │ │ │ │ │ ├── index.less │ │ │ │ │ └── index.tsx │ │ │ │ ├── config │ │ │ │ │ └── index.tsx │ │ │ │ ├── defaultConfig.ts │ │ │ │ ├── id.ts │ │ │ │ ├── index.ts │ │ │ │ └── type.ts │ │ │ ├── Rate │ │ │ │ ├── component │ │ │ │ │ ├── index.less │ │ │ │ │ └── index.tsx │ │ │ │ ├── config │ │ │ │ │ └── index.tsx │ │ │ │ ├── defaultConfig.ts │ │ │ │ ├── id.ts │ │ │ │ ├── index.ts │ │ │ │ └── type.ts │ │ │ ├── Select │ │ │ │ ├── component │ │ │ │ │ ├── index.less │ │ │ │ │ └── index.tsx │ │ │ │ ├── config │ │ │ │ │ └── index.tsx │ │ │ │ ├── defaultConfig.ts │ │ │ │ ├── id.ts │ │ │ │ ├── index.ts │ │ │ │ └── type.ts │ │ │ ├── Steps │ │ │ │ ├── component │ │ │ │ │ ├── components │ │ │ │ │ │ └── RcSteps │ │ │ │ │ │ │ ├── Step.tsx │ │ │ │ │ │ │ ├── Steps.tsx │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ ├── custom-icon.less │ │ │ │ │ │ │ ├── iconfont.less │ │ │ │ │ │ │ ├── index.less │ │ │ │ │ │ │ ├── label-placement.less │ │ │ │ │ │ │ ├── nav.less │ │ │ │ │ │ │ ├── progress-dot.less │ │ │ │ │ │ │ ├── small.less │ │ │ │ │ │ │ ├── variables.less │ │ │ │ │ │ │ └── vertical.less │ │ │ │ │ │ │ ├── index.ts │ │ │ │ │ │ │ └── interface.ts │ │ │ │ │ ├── index.less │ │ │ │ │ └── index.tsx │ │ │ │ ├── config │ │ │ │ │ └── index.tsx │ │ │ │ ├── defaultConfig.ts │ │ │ │ ├── id.ts │ │ │ │ ├── index.ts │ │ │ │ └── type.ts │ │ │ ├── Switch │ │ │ │ ├── component │ │ │ │ │ ├── components │ │ │ │ │ │ └── Switch │ │ │ │ │ │ │ ├── getBackgroundColor.js │ │ │ │ │ │ │ ├── hexColorPropType.js │ │ │ │ │ │ │ ├── icons.jsx │ │ │ │ │ │ │ └── index.jsx │ │ │ │ │ ├── index.less │ │ │ │ │ └── index.tsx │ │ │ │ ├── config │ │ │ │ │ └── index.tsx │ │ │ │ ├── defaultConfig.ts │ │ │ │ ├── id.ts │ │ │ │ ├── index.ts │ │ │ │ └── type.ts │ │ │ └── Tab │ │ │ │ ├── component │ │ │ │ ├── index.less │ │ │ │ └── index.tsx │ │ │ │ ├── config │ │ │ │ └── index.tsx │ │ │ │ ├── defaultConfig.ts │ │ │ │ ├── id.ts │ │ │ │ ├── index.ts │ │ │ │ └── type.ts │ │ ├── Map │ │ │ ├── Ali3DMap │ │ │ │ ├── component │ │ │ │ │ ├── index.less │ │ │ │ │ └── index.tsx │ │ │ │ ├── config │ │ │ │ │ ├── Base.tsx │ │ │ │ │ ├── Condition.tsx │ │ │ │ │ ├── Scatter.tsx │ │ │ │ │ ├── Tooltip.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── defaultConfig.ts │ │ │ │ ├── id.ts │ │ │ │ ├── index.ts │ │ │ │ └── type.ts │ │ │ └── ScatterMap │ │ │ │ ├── component │ │ │ │ ├── china.json │ │ │ │ └── index.tsx │ │ │ │ ├── config │ │ │ │ ├── Condition.tsx │ │ │ │ ├── Geo.tsx │ │ │ │ ├── Scatter.tsx │ │ │ │ ├── Tooltip.tsx │ │ │ │ └── index.tsx │ │ │ │ ├── defaultConfig.ts │ │ │ │ ├── id.ts │ │ │ │ ├── index.ts │ │ │ │ └── type.ts │ │ ├── Media │ │ │ ├── Audio │ │ │ │ ├── component │ │ │ │ │ ├── index.less │ │ │ │ │ └── index.tsx │ │ │ │ ├── config │ │ │ │ │ ├── Condition.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── defaultConfig.ts │ │ │ │ ├── id.ts │ │ │ │ ├── index.ts │ │ │ │ └── type.ts │ │ │ ├── Carousel │ │ │ │ ├── component │ │ │ │ │ ├── index.less │ │ │ │ │ └── index.tsx │ │ │ │ ├── config │ │ │ │ │ ├── Condition.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── defaultConfig.ts │ │ │ │ ├── id.ts │ │ │ │ ├── index.ts │ │ │ │ └── type.ts │ │ │ ├── Image │ │ │ │ ├── component │ │ │ │ │ ├── index.less │ │ │ │ │ └── index.tsx │ │ │ │ ├── config │ │ │ │ │ ├── Condition.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── defaultConfig.ts │ │ │ │ ├── id.ts │ │ │ │ ├── index.ts │ │ │ │ └── type.ts │ │ │ ├── Model │ │ │ │ ├── component │ │ │ │ │ ├── index.less │ │ │ │ │ └── index.tsx │ │ │ │ ├── config │ │ │ │ │ └── index.tsx │ │ │ │ ├── defaultConfig.ts │ │ │ │ ├── id.ts │ │ │ │ ├── index.ts │ │ │ │ └── type.ts │ │ │ ├── PictureWall │ │ │ │ ├── component │ │ │ │ │ ├── index.less │ │ │ │ │ └── index.tsx │ │ │ │ ├── config │ │ │ │ │ └── index.tsx │ │ │ │ ├── defaultConfig.ts │ │ │ │ ├── id.ts │ │ │ │ ├── index.ts │ │ │ │ └── type.ts │ │ │ └── Video │ │ │ │ ├── component │ │ │ │ ├── index.less │ │ │ │ └── index.tsx │ │ │ │ ├── config │ │ │ │ ├── Condition.tsx │ │ │ │ └── index.tsx │ │ │ │ ├── defaultConfig.ts │ │ │ │ ├── id.ts │ │ │ │ ├── index.ts │ │ │ │ └── type.ts │ │ ├── Other │ │ │ ├── Iframe │ │ │ │ ├── component │ │ │ │ │ ├── MessageTooltip │ │ │ │ │ │ ├── index.less │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── MessageUitl │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── index.less │ │ │ │ │ └── index.tsx │ │ │ │ ├── config │ │ │ │ │ └── index.tsx │ │ │ │ ├── defaultConfig.ts │ │ │ │ ├── id.ts │ │ │ │ ├── index.ts │ │ │ │ └── type.ts │ │ │ ├── List │ │ │ │ ├── component │ │ │ │ │ ├── index.less │ │ │ │ │ └── index.tsx │ │ │ │ ├── config │ │ │ │ │ ├── Condition.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── defaultConfig.ts │ │ │ │ ├── id.ts │ │ │ │ ├── index.ts │ │ │ │ └── type.ts │ │ │ ├── LuckyDraw │ │ │ │ ├── component │ │ │ │ │ ├── index.less │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── util.tsx │ │ │ │ ├── config │ │ │ │ │ ├── Condition.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── defaultConfig.ts │ │ │ │ ├── id.ts │ │ │ │ ├── index.ts │ │ │ │ └── type.ts │ │ │ ├── PathBasic │ │ │ │ ├── component │ │ │ │ │ ├── index.less │ │ │ │ │ └── index.tsx │ │ │ │ ├── config │ │ │ │ │ ├── Condition.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── defaultConfig.ts │ │ │ │ ├── id.ts │ │ │ │ ├── index.ts │ │ │ │ └── type.ts │ │ │ ├── QrCode │ │ │ │ ├── component │ │ │ │ │ ├── index.less │ │ │ │ │ └── index.tsx │ │ │ │ ├── config │ │ │ │ │ ├── Condition.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── defaultConfig.ts │ │ │ │ ├── id.ts │ │ │ │ ├── index.ts │ │ │ │ └── type.ts │ │ │ ├── StateCard │ │ │ │ ├── component │ │ │ │ │ ├── index.less │ │ │ │ │ └── index.tsx │ │ │ │ ├── config │ │ │ │ │ ├── Condition.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── defaultConfig.ts │ │ │ │ ├── id.ts │ │ │ │ ├── index.ts │ │ │ │ └── type.ts │ │ │ ├── StateList │ │ │ │ ├── component │ │ │ │ │ ├── index.less │ │ │ │ │ └── index.tsx │ │ │ │ ├── config │ │ │ │ │ ├── Condition.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── defaultConfig.ts │ │ │ │ ├── id.ts │ │ │ │ ├── index.ts │ │ │ │ └── type.ts │ │ │ ├── WaterBall │ │ │ │ ├── component │ │ │ │ │ └── index.tsx │ │ │ │ ├── config │ │ │ │ │ ├── Animation.tsx │ │ │ │ │ ├── Condition.tsx │ │ │ │ │ ├── Series.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── defaultConfig.ts │ │ │ │ ├── id.ts │ │ │ │ ├── index.ts │ │ │ │ └── type.ts │ │ │ ├── Weather │ │ │ │ ├── component │ │ │ │ │ ├── index.less │ │ │ │ │ └── index.tsx │ │ │ │ ├── config │ │ │ │ │ └── index.tsx │ │ │ │ ├── defaultConfig.ts │ │ │ │ ├── id.ts │ │ │ │ ├── index.ts │ │ │ │ └── type.ts │ │ │ └── WordCloud │ │ │ │ ├── component │ │ │ │ └── index.tsx │ │ │ │ ├── config │ │ │ │ ├── Condition.tsx │ │ │ │ ├── Series.tsx │ │ │ │ ├── Tooltip.tsx │ │ │ │ └── index.tsx │ │ │ │ ├── defaultConfig.ts │ │ │ │ ├── id.ts │ │ │ │ ├── index.ts │ │ │ │ └── type.ts │ │ ├── README.md │ │ ├── Source │ │ │ ├── Decoration1 │ │ │ │ ├── component │ │ │ │ │ ├── index.less │ │ │ │ │ └── index.tsx │ │ │ │ ├── config │ │ │ │ │ └── index.tsx │ │ │ │ ├── defaultConfig.ts │ │ │ │ ├── id.ts │ │ │ │ ├── index.ts │ │ │ │ └── type.ts │ │ │ ├── Decoration2 │ │ │ │ ├── component │ │ │ │ │ ├── index.less │ │ │ │ │ └── index.tsx │ │ │ │ ├── config │ │ │ │ │ └── index.tsx │ │ │ │ ├── defaultConfig.ts │ │ │ │ ├── id.ts │ │ │ │ ├── index.ts │ │ │ │ └── type.ts │ │ │ ├── Decoration3 │ │ │ │ ├── component │ │ │ │ │ ├── index.less │ │ │ │ │ └── index.tsx │ │ │ │ ├── config │ │ │ │ │ └── index.tsx │ │ │ │ ├── defaultConfig.ts │ │ │ │ ├── id.ts │ │ │ │ ├── index.ts │ │ │ │ └── type.ts │ │ │ ├── Decoration4 │ │ │ │ ├── component │ │ │ │ │ ├── index.less │ │ │ │ │ └── index.tsx │ │ │ │ ├── config │ │ │ │ │ └── index.tsx │ │ │ │ ├── defaultConfig.ts │ │ │ │ ├── id.ts │ │ │ │ ├── index.ts │ │ │ │ └── type.ts │ │ │ ├── Decoration5 │ │ │ │ ├── component │ │ │ │ │ ├── index.less │ │ │ │ │ └── index.tsx │ │ │ │ ├── config │ │ │ │ │ └── index.tsx │ │ │ │ ├── defaultConfig.ts │ │ │ │ ├── id.ts │ │ │ │ ├── index.ts │ │ │ │ └── type.ts │ │ │ ├── Decoration6 │ │ │ │ ├── component │ │ │ │ │ ├── index.less │ │ │ │ │ └── index.tsx │ │ │ │ ├── config │ │ │ │ │ └── index.tsx │ │ │ │ ├── defaultConfig.ts │ │ │ │ ├── id.ts │ │ │ │ ├── index.ts │ │ │ │ └── type.ts │ │ │ ├── Decoration7 │ │ │ │ ├── component │ │ │ │ │ ├── index.less │ │ │ │ │ └── index.tsx │ │ │ │ ├── config │ │ │ │ │ └── index.tsx │ │ │ │ ├── defaultConfig.ts │ │ │ │ ├── id.ts │ │ │ │ ├── index.ts │ │ │ │ └── type.ts │ │ │ ├── Decoration8 │ │ │ │ ├── component │ │ │ │ │ ├── index.less │ │ │ │ │ └── index.tsx │ │ │ │ ├── config │ │ │ │ │ └── index.tsx │ │ │ │ ├── defaultConfig.ts │ │ │ │ ├── id.ts │ │ │ │ ├── index.ts │ │ │ │ └── type.ts │ │ │ ├── Ticket │ │ │ │ ├── component │ │ │ │ │ ├── index.less │ │ │ │ │ └── index.tsx │ │ │ │ ├── config │ │ │ │ │ └── index.tsx │ │ │ │ ├── defaultConfig.ts │ │ │ │ ├── id.ts │ │ │ │ ├── index.ts │ │ │ │ └── type.ts │ │ │ └── Typed │ │ │ │ ├── component │ │ │ │ ├── index.less │ │ │ │ └── index.tsx │ │ │ │ ├── config │ │ │ │ └── index.tsx │ │ │ │ ├── defaultConfig.ts │ │ │ │ ├── id.ts │ │ │ │ ├── index.ts │ │ │ │ └── type.ts │ │ └── index.ts │ ├── CodeEditor │ │ └── index.tsx │ ├── CodeView │ │ └── index.tsx │ ├── ColorGradientSelect │ │ ├── index.less │ │ └── index.tsx │ ├── ColorImageBackground │ │ ├── index.less │ │ └── index.tsx │ ├── ColorMatcher │ │ └── index.tsx │ ├── ColorSelect │ │ ├── index.less │ │ └── index.tsx │ ├── ComponentError │ │ ├── index.less │ │ └── index.tsx │ ├── ComponentSelect │ │ ├── index.less │ │ └── index.tsx │ ├── ConfirmModal │ │ └── index.tsx │ ├── ContextMenu │ │ ├── Actions │ │ │ ├── Bottom.tsx │ │ │ ├── ChangeComponentWithData.tsx │ │ │ ├── Clone.tsx │ │ │ ├── Copy.tsx │ │ │ ├── CopyComponentWithStyle.tsx │ │ │ ├── Delete.tsx │ │ │ ├── EditName.tsx │ │ │ ├── Group.tsx │ │ │ ├── Lock.tsx │ │ │ ├── NextOrder.tsx │ │ │ ├── Paste.tsx │ │ │ ├── PrevOrder.tsx │ │ │ ├── RecoverDefault.tsx │ │ │ ├── Redo.tsx │ │ │ ├── Show.tsx │ │ │ ├── Top.tsx │ │ │ ├── UnGroup.tsx │ │ │ ├── Undo.tsx │ │ │ ├── index.tsx │ │ │ ├── type.ts │ │ │ └── useChildren.tsx │ │ ├── action.map.ts │ │ ├── connect.ts │ │ └── index.tsx │ ├── CoverSelect │ │ └── index.tsx │ ├── DebounceButton │ │ └── index.tsx │ ├── Decoration │ │ ├── Decoration1 │ │ │ ├── index.less │ │ │ └── index.tsx │ │ ├── Decoration11 │ │ │ ├── index.less │ │ │ └── index.tsx │ │ ├── Decoration2 │ │ │ ├── index.less │ │ │ └── index.tsx │ │ ├── Decoration3 │ │ │ ├── index.less │ │ │ └── index.tsx │ │ ├── Decoration4 │ │ │ ├── index.less │ │ │ └── index.tsx │ │ ├── Decoration5 │ │ │ ├── index.less │ │ │ └── index.tsx │ │ ├── Decoration6 │ │ │ ├── index.less │ │ │ └── index.tsx │ │ └── Decoration8 │ │ │ ├── index.less │ │ │ └── index.tsx │ ├── DeepStructureComponent │ │ └── index.tsx │ ├── DesignerBackground │ │ ├── index.less │ │ └── index.tsx │ ├── Empty │ │ └── index.tsx │ ├── EnterSubmitWrapper │ │ └── index.tsx │ ├── FocusWrapper │ │ └── index.tsx │ ├── GhostButton │ │ ├── index.less │ │ └── index.tsx │ ├── GlobalLoadingActionButton │ │ └── index.tsx │ ├── GuideLine │ │ ├── connect.ts │ │ ├── index.less │ │ ├── index.tsx │ │ └── utils.ts │ ├── IconTooltip │ │ ├── index.less │ │ └── index.tsx │ ├── ImageUpload │ │ ├── Input.tsx │ │ ├── index.less │ │ └── index.tsx │ ├── InternalBackground │ │ ├── components │ │ │ └── Background │ │ │ │ ├── ColorLineBackground │ │ │ │ ├── Canvas.jsx │ │ │ │ ├── index.jsx │ │ │ │ └── index.less │ │ │ │ ├── DoodleBubbleBackground │ │ │ │ ├── index.less │ │ │ │ └── index.tsx │ │ │ │ ├── GradientMixBackground │ │ │ │ ├── index.less │ │ │ │ └── index.tsx │ │ │ │ ├── index.less │ │ │ │ └── index.tsx │ │ └── index.tsx │ ├── InternalBorder │ │ ├── components │ │ │ └── Border │ │ │ │ ├── BorderBox1 │ │ │ │ ├── index.less │ │ │ │ └── index.tsx │ │ │ │ ├── BorderBox10 │ │ │ │ ├── index.less │ │ │ │ └── index.tsx │ │ │ │ ├── BorderBox11 │ │ │ │ ├── index.less │ │ │ │ └── index.tsx │ │ │ │ ├── BorderBox12 │ │ │ │ ├── index.less │ │ │ │ └── index.tsx │ │ │ │ ├── BorderBox13 │ │ │ │ ├── index.less │ │ │ │ └── index.tsx │ │ │ │ ├── BorderBox2 │ │ │ │ ├── index.less │ │ │ │ └── index.tsx │ │ │ │ ├── BorderBox3 │ │ │ │ ├── index.less │ │ │ │ └── index.tsx │ │ │ │ ├── BorderBox4 │ │ │ │ ├── index.less │ │ │ │ └── index.tsx │ │ │ │ ├── BorderBox5 │ │ │ │ ├── index.less │ │ │ │ └── index.tsx │ │ │ │ ├── BorderBox6 │ │ │ │ ├── index.less │ │ │ │ └── index.tsx │ │ │ │ ├── BorderBox7 │ │ │ │ ├── index.less │ │ │ │ └── index.tsx │ │ │ │ ├── BorderBox8 │ │ │ │ ├── index.less │ │ │ │ └── index.tsx │ │ │ │ ├── BorderBox9 │ │ │ │ ├── index.less │ │ │ │ └── index.tsx │ │ │ │ ├── ConnorBorder │ │ │ │ ├── index.less │ │ │ │ └── index.tsx │ │ │ │ ├── DashedBorder │ │ │ │ ├── index.less │ │ │ │ └── index.tsx │ │ │ │ ├── FlickerBorder │ │ │ │ ├── index.less │ │ │ │ └── index.tsx │ │ │ │ ├── GradientBorder │ │ │ │ ├── index.less │ │ │ │ └── index.tsx │ │ │ │ ├── GradientLoopBorder │ │ │ │ ├── index.less │ │ │ │ └── index.tsx │ │ │ │ ├── RotateLoopBorder │ │ │ │ ├── index.less │ │ │ │ └── index.tsx │ │ │ │ ├── autoResize-prev.js │ │ │ │ ├── autoResize.ts │ │ │ │ ├── hooks.ts │ │ │ │ ├── index.less │ │ │ │ ├── index.tsx │ │ │ │ └── type.ts │ │ ├── connect.ts │ │ └── index.tsx │ ├── IntroductionButton │ │ ├── index.less │ │ └── index.tsx │ ├── LazyLoad │ │ └── index.tsx │ ├── LoadingButton │ │ └── index.tsx │ ├── PageLoading │ │ ├── index.less │ │ └── index.tsx │ ├── ParamsSelect │ │ ├── connect.ts │ │ ├── index.less │ │ └── index.tsx │ ├── PromptChrome │ │ ├── index.less │ │ └── index.tsx │ ├── RelationBorder │ │ ├── index.less │ │ └── index.tsx │ ├── RequestMessage │ │ └── index.tsx │ ├── Ruler │ │ ├── connect.ts │ │ └── index.tsx │ ├── ScreenComponentConfigChangeTooltip │ │ ├── Constants │ │ │ ├── 1.21 │ │ │ │ └── index.ts │ │ │ └── index.ts │ │ ├── connect.ts │ │ ├── index.less │ │ └── index.tsx │ ├── ScrollText │ │ ├── index.less │ │ └── index.tsx │ ├── SyncCodeEditor │ │ ├── Clipboard.tsx │ │ ├── Editor.tsx │ │ ├── EditorNext.tsx │ │ ├── FullScreenEditor.tsx │ │ ├── FunctionHeader.tsx │ │ ├── Typesetting.tsx │ │ ├── index.less │ │ └── index.tsx │ ├── Tooltip │ │ ├── index.less │ │ └── index.tsx │ └── Winbox │ │ └── index.tsx ├── favicon.ico ├── global.less ├── global.ts ├── hooks │ ├── index.ts │ ├── useAnyDva.ts │ ├── useBackground.ts │ ├── useClipPath.ts │ ├── useComponentHover.ts │ ├── useComponentStyle.ts │ ├── useComponentsPath.ts │ ├── useControlModalDisabledKeyPressVisible.ts │ ├── useDeepUpdateEffect.ts │ ├── useFirstChange.ts │ ├── useGetUserInfo.ts │ ├── useGlobalLoading.ts │ ├── useHash.ts │ ├── useIsScrolling.ts │ ├── useLayerHover.ts │ ├── useLocalStorage.ts │ ├── usePanelFocus.ts │ ├── usePrimaryColor.ts │ ├── useResponseData.ts │ ├── useScrollBar.ts │ └── useValidatorChange.ts ├── layouts │ ├── AuthLayout │ │ └── index.tsx │ ├── CommonLayout │ │ └── index.tsx │ ├── StaticLayout │ │ └── index.tsx │ └── components │ │ ├── Avatar │ │ ├── connect.ts │ │ └── index.tsx │ │ └── CommonLayout │ │ ├── ContainerWrapper │ │ └── index.tsx │ │ ├── ContainerWrapper4Static │ │ └── index.tsx │ │ ├── DocumentTitleSetWrapper │ │ └── index.tsx │ │ ├── DocumentTitleSetWrapper4Static │ │ └── index.tsx │ │ ├── EnvironmentPrompt │ │ └── index.tsx │ │ ├── EventEmitWrapper │ │ └── index.tsx │ │ ├── FetchLoginWrapper │ │ ├── connect.ts │ │ └── index.tsx │ │ ├── InitialConfigWrapper │ │ └── index.tsx │ │ ├── ListLayout │ │ ├── index.less │ │ └── index.tsx │ │ └── index.tsx ├── lib │ ├── color-thief.js │ └── shine.js ├── loading.tsx ├── manifest.json ├── models │ ├── connect.d.ts │ ├── data.ts │ ├── global.ts │ ├── local.ts │ ├── settings.ts │ └── user.ts ├── pages │ ├── Designer │ │ ├── components │ │ │ ├── ExchangeScreenFlag │ │ │ │ ├── components │ │ │ │ │ └── MobilePreviewer │ │ │ │ │ │ ├── context.ts │ │ │ │ │ │ ├── index.less │ │ │ │ │ │ └── index.tsx │ │ │ │ ├── connect.ts │ │ │ │ └── index.tsx │ │ │ ├── FetchScreenComponent │ │ │ │ ├── connect.ts │ │ │ │ └── index.tsx │ │ │ ├── Header │ │ │ │ ├── ActionList │ │ │ │ │ ├── components │ │ │ │ │ │ ├── CollapseConfigPanel │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── ComponentListCollapse │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── ComponentSearch │ │ │ │ │ │ │ ├── index.less │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── DebugConfig │ │ │ │ │ │ │ ├── Winbox │ │ │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ │ │ └── InsertComponent │ │ │ │ │ │ │ │ │ │ ├── connect.ts │ │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── LayerSearch │ │ │ │ │ │ │ ├── index.less │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ └── LayerShowControl │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── index.less │ │ │ │ │ └── index.tsx │ │ │ │ ├── connect.ts │ │ │ │ ├── index.less │ │ │ │ └── index.tsx │ │ │ ├── LeftContent │ │ │ │ ├── components │ │ │ │ │ ├── CallbackManage │ │ │ │ │ │ ├── connect.ts │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── ComponentList │ │ │ │ │ │ ├── SearchList.tsx │ │ │ │ │ │ ├── connect.ts │ │ │ │ │ │ ├── index.less │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ └── item.tsx │ │ │ │ │ ├── ComponentTypeList │ │ │ │ │ │ ├── index.less │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── ConstantManage │ │ │ │ │ │ ├── connect.ts │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── LayerManage │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ ├── Header │ │ │ │ │ │ │ │ ├── index.less │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ └── Tree │ │ │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ │ ├── ActionBar │ │ │ │ │ │ │ │ │ ├── connect.ts │ │ │ │ │ │ │ │ │ ├── index.less │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ └── TreeNode │ │ │ │ │ │ │ │ │ ├── Lock.tsx │ │ │ │ │ │ │ │ │ ├── NameEdit.tsx │ │ │ │ │ │ │ │ │ ├── Visible.tsx │ │ │ │ │ │ │ │ │ ├── index.less │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ ├── connect.ts │ │ │ │ │ │ │ │ ├── index.less │ │ │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ │ │ └── prev-tree.tsx │ │ │ │ │ │ ├── index.less │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ └── type.ts │ │ │ │ │ ├── LensConfig │ │ │ │ │ │ ├── connect.ts │ │ │ │ │ │ ├── index.less │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── LocalConfigMange │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ ├── BackgroundConfig │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ ├── CrossClipboard │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ └── GuideLineSticky │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── RequestDefaultConfig │ │ │ │ │ │ ├── CodeEditor │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── connect.ts │ │ │ │ │ │ ├── index.less │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── ThemeConfig │ │ │ │ │ │ ├── ColorItem.tsx │ │ │ │ │ │ ├── CustomConfig │ │ │ │ │ │ │ ├── UploadImage.tsx │ │ │ │ │ │ │ ├── index.less │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── connect.ts │ │ │ │ │ │ ├── index.less │ │ │ │ │ │ └── index.tsx │ │ │ │ │ └── ToolBar │ │ │ │ │ │ ├── action.map.tsx │ │ │ │ │ │ ├── connect.ts │ │ │ │ │ │ ├── index.less │ │ │ │ │ │ └── index.tsx │ │ │ │ ├── index.less │ │ │ │ └── index.tsx │ │ │ ├── PageLoading │ │ │ │ ├── index.less │ │ │ │ └── index.tsx │ │ │ ├── Panel │ │ │ │ ├── components │ │ │ │ │ ├── Clipboard │ │ │ │ │ │ ├── connect.ts │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── ComponentList │ │ │ │ │ │ ├── connect.ts │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── H5AutoHeight │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── Painter │ │ │ │ │ │ ├── connect.ts │ │ │ │ │ │ ├── index.less │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── PanelWrapper │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ ├── AbsorbGuideLine │ │ │ │ │ │ │ │ ├── connect.ts │ │ │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ │ │ └── utils.ts │ │ │ │ │ │ │ ├── GuideLineButton │ │ │ │ │ │ │ │ ├── index.less │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ └── Ruler │ │ │ │ │ │ │ │ ├── connect.ts │ │ │ │ │ │ │ │ ├── index.less │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── connect.ts │ │ │ │ │ │ ├── constants.ts │ │ │ │ │ │ ├── index.less │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── ReactSelecto │ │ │ │ │ │ ├── connect.ts │ │ │ │ │ │ ├── index.less │ │ │ │ │ │ └── index.tsx │ │ │ │ │ └── ToolBar │ │ │ │ │ │ ├── components │ │ │ │ │ │ ├── PanelThumb │ │ │ │ │ │ │ ├── connect.ts │ │ │ │ │ │ │ ├── index.less │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── Scale │ │ │ │ │ │ │ ├── connect.ts │ │ │ │ │ │ │ ├── index.less │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ └── ShortcutKeys │ │ │ │ │ │ │ ├── index.less │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── connect.ts │ │ │ │ │ │ ├── index.less │ │ │ │ │ │ └── index.tsx │ │ │ │ ├── index.less │ │ │ │ └── index.tsx │ │ │ ├── RenderComponent │ │ │ │ ├── components │ │ │ │ │ ├── Content │ │ │ │ │ │ ├── ComponentInternalWrapper │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── ComponentWrapper │ │ │ │ │ │ │ ├── connect.ts │ │ │ │ │ │ │ ├── index.less │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── SubGroup │ │ │ │ │ │ │ ├── AbstractComponent.tsx │ │ │ │ │ │ │ ├── CarouselGroupWrapper.tsx │ │ │ │ │ │ │ ├── index.less │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── connect.ts │ │ │ │ │ │ ├── index.less │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── HoverChangeWrapper.tsx │ │ │ │ │ ├── NameTag │ │ │ │ │ │ ├── connect.ts │ │ │ │ │ │ ├── index.less │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── SelectChangeWrapper.tsx │ │ │ │ │ └── Wrapper │ │ │ │ │ │ ├── H5Wrapper │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── PcWrapper │ │ │ │ │ │ ├── KeyActionComponent.tsx │ │ │ │ │ │ ├── ResizeComponent.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ ├── connect.ts │ │ │ │ ├── index.less │ │ │ │ └── index.tsx │ │ │ ├── RightContent │ │ │ │ ├── components │ │ │ │ │ ├── ComponentConfig │ │ │ │ │ │ ├── ConfigComponent.tsx │ │ │ │ │ │ ├── connect.ts │ │ │ │ │ │ ├── index.less │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── GlobalConfig │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ ├── ScaleConfig │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ └── ThemeConfig │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── connect.ts │ │ │ │ │ │ ├── index.less │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── GroupConfig │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ ├── CarouselConfig │ │ │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ │ │ └── ComponentList │ │ │ │ │ │ │ │ │ │ ├── index.less │ │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ ├── ComponentSelect │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ ├── Config │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ ├── OptionConfig │ │ │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ │ │ ├── ConditionConfig │ │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ │ ├── KeyWordPosition │ │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ │ └── TransformConfig │ │ │ │ │ │ │ │ │ │ ├── ChildTransformConfig.tsx │ │ │ │ │ │ │ │ │ │ ├── PerspectiveConfig.tsx │ │ │ │ │ │ │ │ │ │ ├── index.less │ │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ └── WrapperConfig │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── connect.ts │ │ │ │ │ │ ├── index.less │ │ │ │ │ │ └── index.tsx │ │ │ │ │ └── MultiConfig │ │ │ │ │ │ ├── index.less │ │ │ │ │ │ └── index.tsx │ │ │ │ ├── connect.ts │ │ │ │ ├── index.less │ │ │ │ └── index.tsx │ │ │ └── ShepherdWrapper │ │ │ │ ├── connect.ts │ │ │ │ ├── index.less │ │ │ │ └── index.tsx │ │ ├── connect.ts │ │ ├── index.less │ │ ├── index.tsx │ │ └── utils │ │ │ └── component │ │ │ ├── GenerateList │ │ │ └── index.tsx │ │ │ └── index.tsx │ ├── Forget │ │ ├── connect.ts │ │ └── index.tsx │ ├── Home │ │ ├── components │ │ │ ├── ActionSection │ │ │ │ ├── index.less │ │ │ │ └── index.tsx │ │ │ ├── AnimationSection │ │ │ │ ├── index.less │ │ │ │ └── index.tsx │ │ │ ├── AnimationSvg │ │ │ │ ├── Animation.tsx │ │ │ │ └── index.tsx │ │ │ ├── AnimationTitle │ │ │ │ ├── index.less │ │ │ │ └── index.tsx │ │ │ ├── Background │ │ │ │ ├── index.less │ │ │ │ └── index.tsx │ │ │ ├── LinearBackground │ │ │ │ ├── index.less │ │ │ │ └── index.tsx │ │ │ ├── MatterBoxes │ │ │ │ ├── index.less │ │ │ │ └── index.tsx │ │ │ └── SubMainSection │ │ │ │ ├── index.less │ │ │ │ └── index.tsx │ │ ├── index.less │ │ └── index.tsx │ ├── Login │ │ ├── components │ │ │ └── Background │ │ │ │ └── index.tsx │ │ ├── connect.ts │ │ ├── index.less │ │ └── index.tsx │ ├── ModelList │ │ ├── components │ │ │ └── List │ │ │ │ ├── index.less │ │ │ │ └── index.tsx │ │ ├── index.less │ │ └── index.tsx │ ├── Previewer │ │ ├── connect.ts │ │ └── index.tsx │ ├── Register │ │ ├── connect.ts │ │ └── index.tsx │ ├── ScreenList │ │ ├── components │ │ │ ├── AddDesigner │ │ │ │ └── index.tsx │ │ │ ├── ScreenList │ │ │ │ ├── ShareSetting.tsx │ │ │ │ ├── index.less │ │ │ │ └── index.tsx │ │ │ └── SvgAnimation │ │ │ │ ├── SvgMap.tsx │ │ │ │ ├── index.less │ │ │ │ └── index.tsx │ │ ├── connect.ts │ │ ├── index.less │ │ └── index.tsx │ ├── Share │ │ ├── components │ │ │ ├── PainterWrapper │ │ │ │ └── index.tsx │ │ │ ├── PasswordConfirm │ │ │ │ └── index.tsx │ │ │ └── WaterMark │ │ │ │ ├── connect.ts │ │ │ │ ├── index.less │ │ │ │ └── index.tsx │ │ ├── connect.ts │ │ ├── index.less │ │ ├── index.tsx │ │ ├── useResize.ts │ │ └── useWrapperProps.ts │ ├── Test │ │ └── index.tsx │ └── Viewer │ │ ├── connect.ts │ │ └── index.tsx ├── services │ ├── api.d.ts │ ├── index.ts │ ├── mock.ts │ ├── model.ts │ ├── screen.ts │ ├── third.ts │ ├── upload.ts │ └── user.ts ├── theme │ ├── essos.project.json │ ├── macarons.project.json │ ├── roma.project.json │ ├── shine.project.json │ ├── westeros.project.json │ └── wonderland.project.json ├── typings.d.ts └── utils │ ├── Assist │ ├── About │ │ ├── README.md │ │ └── index.tsx │ ├── BreakingChange │ │ ├── ComponentInputButtonWidthChange │ │ │ ├── README.md │ │ │ └── index.ts │ │ ├── ComponentTransformOriginChange │ │ │ ├── README.md │ │ │ └── index.ts │ │ ├── ConditionChange │ │ │ ├── README.md │ │ │ └── index.ts │ │ ├── README.md │ │ ├── ScreenComponentConfigChangeTooltip │ │ │ ├── README.md │ │ │ └── index.ts │ │ ├── ScreenThemeTypeChange │ │ │ ├── README.md │ │ │ └── index.ts │ │ └── index.ts │ ├── ClipboardComponent │ │ └── index.ts │ ├── Component │ │ ├── ComponentActionValidator.ts │ │ ├── ComponentThemeChange.ts │ │ ├── ComponentUtil.ts │ │ └── index.tsx │ ├── ComponentSelect │ │ └── index.ts │ ├── CopyAndPaste │ │ └── index.ts │ ├── DataChangePool │ │ ├── SaveScreenData.ts │ │ └── index.ts │ ├── EchartsLoader │ │ └── index.ts │ ├── ErrorBoundary │ │ └── index.ts │ ├── EventEmitter │ │ ├── ComponentAbout.event.ts │ │ ├── PresetEmit │ │ │ └── index.ts │ │ ├── README.md │ │ └── index.ts │ ├── FilterData │ │ └── index.tsx │ ├── GlobalComponent │ │ └── index.ts │ ├── GlobalConfig │ │ └── index.ts │ ├── GlobalDva │ │ └── index.ts │ ├── Group │ │ └── index.ts │ ├── History │ │ └── index.ts │ ├── Interactive │ │ └── index.ts │ ├── LeadInAndOutput │ │ └── index.ts │ ├── LocalConfig │ │ └── index.ts │ ├── Logger │ │ ├── RequestLogger │ │ │ ├── index.less │ │ │ └── index.tsx │ │ ├── Window │ │ │ ├── index.less │ │ │ └── index.tsx │ │ └── index.ts │ ├── MultiComponentAction │ │ └── index.ts │ ├── Progress │ │ └── index.ts │ ├── RequestPool │ │ └── index.ts │ ├── Theme │ │ └── index.ts │ ├── Upload │ │ └── index.ts │ └── VariableString │ │ └── index.ts │ ├── captureCover.ts │ ├── constants │ ├── another.ts │ ├── color.ts │ ├── data.ts │ ├── defaultValue.ts │ ├── index.ts │ ├── mobile.ts │ ├── screenData.ts │ └── theme.ts │ ├── getImageColor.ts │ ├── index.ts │ ├── request.ts │ ├── string2arraybuffer.ts │ └── tool.ts ├── tsconfig.json ├── typings.d.ts └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | /lambda/ 2 | /scripts 3 | /config 4 | .history -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.github/workflows/static-deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/.github/workflows/static-deploy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/.prettierrc -------------------------------------------------------------------------------- /.sentryclirc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/.sentryclirc -------------------------------------------------------------------------------- /.stylelintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/.stylelintrc.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/README.md -------------------------------------------------------------------------------- /assets/development/H5设计器.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/assets/development/H5设计器.md -------------------------------------------------------------------------------- /assets/development/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/assets/development/README.md -------------------------------------------------------------------------------- /assets/development/attention/1.21.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/assets/development/attention/1.21.md -------------------------------------------------------------------------------- /assets/development/attention/README.md: -------------------------------------------------------------------------------- 1 | # 记录逻辑代码更新细节 -------------------------------------------------------------------------------- /assets/development/component.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/assets/development/component.md -------------------------------------------------------------------------------- /assets/development/data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/assets/development/data.md -------------------------------------------------------------------------------- /assets/development/function.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/assets/development/function.md -------------------------------------------------------------------------------- /assets/development/screen.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/assets/development/screen.md -------------------------------------------------------------------------------- /assets/development/structure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/assets/development/structure.md -------------------------------------------------------------------------------- /assets/development/展示组件抽离.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/assets/development/展示组件抽离.md -------------------------------------------------------------------------------- /assets/development/版本升级文档修改流程.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/assets/development/版本升级文档修改流程.md -------------------------------------------------------------------------------- /assets/docs/1.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/assets/docs/1.0.md -------------------------------------------------------------------------------- /assets/docs/1.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/assets/docs/1.1.md -------------------------------------------------------------------------------- /assets/docs/1.10.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/assets/docs/1.10.md -------------------------------------------------------------------------------- /assets/docs/1.11.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/assets/docs/1.11.md -------------------------------------------------------------------------------- /assets/docs/1.12.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/assets/docs/1.12.md -------------------------------------------------------------------------------- /assets/docs/1.13.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/assets/docs/1.13.md -------------------------------------------------------------------------------- /assets/docs/1.14.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/assets/docs/1.14.md -------------------------------------------------------------------------------- /assets/docs/1.15.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/assets/docs/1.15.md -------------------------------------------------------------------------------- /assets/docs/1.16.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/assets/docs/1.16.md -------------------------------------------------------------------------------- /assets/docs/1.17.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/assets/docs/1.17.md -------------------------------------------------------------------------------- /assets/docs/1.18.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/assets/docs/1.18.md -------------------------------------------------------------------------------- /assets/docs/1.19.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/assets/docs/1.19.md -------------------------------------------------------------------------------- /assets/docs/1.2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/assets/docs/1.2.md -------------------------------------------------------------------------------- /assets/docs/1.20.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/assets/docs/1.20.md -------------------------------------------------------------------------------- /assets/docs/1.21.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/assets/docs/1.21.md -------------------------------------------------------------------------------- /assets/docs/1.3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/assets/docs/1.3.md -------------------------------------------------------------------------------- /assets/docs/1.4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/assets/docs/1.4.md -------------------------------------------------------------------------------- /assets/docs/1.5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/assets/docs/1.5.md -------------------------------------------------------------------------------- /assets/docs/1.6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/assets/docs/1.6.md -------------------------------------------------------------------------------- /assets/docs/1.7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/assets/docs/1.7.md -------------------------------------------------------------------------------- /assets/docs/1.8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/assets/docs/1.8.md -------------------------------------------------------------------------------- /assets/docs/1.9.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/assets/docs/1.9.md -------------------------------------------------------------------------------- /assets/icons/icon-128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/assets/icons/icon-128x128.png -------------------------------------------------------------------------------- /assets/icons/icon-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/assets/icons/icon-192x192.png -------------------------------------------------------------------------------- /assets/icons/icon-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/assets/icons/icon-512x512.png -------------------------------------------------------------------------------- /assets/other/background.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/assets/other/background.jpeg -------------------------------------------------------------------------------- /assets/other/home_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/assets/other/home_bg.png -------------------------------------------------------------------------------- /assets/other/screenshoot-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/assets/other/screenshoot-1.png -------------------------------------------------------------------------------- /assets/other/screenshoot-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/assets/other/screenshoot-2.png -------------------------------------------------------------------------------- /assets/other/screenshoot-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/assets/other/screenshoot-3.jpg -------------------------------------------------------------------------------- /assets/other/screenshoot-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/assets/other/screenshoot-4.jpg -------------------------------------------------------------------------------- /assets/other/screenshoot-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/assets/other/screenshoot-5.jpg -------------------------------------------------------------------------------- /assets/other/screenshoot-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/assets/other/screenshoot-6.jpg -------------------------------------------------------------------------------- /assets/panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/assets/panel.png -------------------------------------------------------------------------------- /config/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/config/config.ts -------------------------------------------------------------------------------- /config/defaultSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/config/defaultSettings.ts -------------------------------------------------------------------------------- /config/proxy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/config/proxy.ts -------------------------------------------------------------------------------- /config/router-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/config/router-config.ts -------------------------------------------------------------------------------- /config/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/config/theme.ts -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/jsconfig.json -------------------------------------------------------------------------------- /mock/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/package.json -------------------------------------------------------------------------------- /public/CNAME: -------------------------------------------------------------------------------- 1 | preview.pro.ant.design -------------------------------------------------------------------------------- /public/components/ali-map.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/public/components/ali-map.jpg -------------------------------------------------------------------------------- /public/components/audio.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/public/components/audio.jpg -------------------------------------------------------------------------------- /public/components/bar-basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/public/components/bar-basic.png -------------------------------------------------------------------------------- /public/components/box-plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/public/components/box-plot.png -------------------------------------------------------------------------------- /public/components/bubble-scatter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/public/components/bubble-scatter.png -------------------------------------------------------------------------------- /public/components/button.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/public/components/button.jpg -------------------------------------------------------------------------------- /public/components/cachet-bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/public/components/cachet-bar.png -------------------------------------------------------------------------------- /public/components/candlestick-basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/public/components/candlestick-basic.png -------------------------------------------------------------------------------- /public/components/carousel-basic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/public/components/carousel-basic.jpg -------------------------------------------------------------------------------- /public/components/carousel-text.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/public/components/carousel-text.jpg -------------------------------------------------------------------------------- /public/components/checkbox.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/public/components/checkbox.jpg -------------------------------------------------------------------------------- /public/components/circle-pie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/public/components/circle-pie.png -------------------------------------------------------------------------------- /public/components/clock-gauge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/public/components/clock-gauge.png -------------------------------------------------------------------------------- /public/components/count-up-number.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/public/components/count-up-number.jpg -------------------------------------------------------------------------------- /public/components/date-picker.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/public/components/date-picker.jpg -------------------------------------------------------------------------------- /public/components/decoration-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/public/components/decoration-1.jpg -------------------------------------------------------------------------------- /public/components/decoration-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/public/components/decoration-2.jpg -------------------------------------------------------------------------------- /public/components/decoration-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/public/components/decoration-3.jpg -------------------------------------------------------------------------------- /public/components/decoration-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/public/components/decoration-4.jpg -------------------------------------------------------------------------------- /public/components/decoration-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/public/components/decoration-5.jpg -------------------------------------------------------------------------------- /public/components/decoration-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/public/components/decoration-6.jpg -------------------------------------------------------------------------------- /public/components/decoration-7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/public/components/decoration-7.jpg -------------------------------------------------------------------------------- /public/components/decoration-8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/public/components/decoration-8.jpg -------------------------------------------------------------------------------- /public/components/default-chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/public/components/default-chart.png -------------------------------------------------------------------------------- /public/components/full-screen.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/public/components/full-screen.jpg -------------------------------------------------------------------------------- /public/components/funnel-basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/public/components/funnel-basic.png -------------------------------------------------------------------------------- /public/components/gauge-basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/public/components/gauge-basic.png -------------------------------------------------------------------------------- /public/components/horizontal-bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/public/components/horizontal-bar.png -------------------------------------------------------------------------------- /public/components/icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/public/components/icon.jpg -------------------------------------------------------------------------------- /public/components/iframe.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/public/components/iframe.jpg -------------------------------------------------------------------------------- /public/components/image-basic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/public/components/image-basic.jpg -------------------------------------------------------------------------------- /public/components/input.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/public/components/input.jpg -------------------------------------------------------------------------------- /public/components/line-bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/public/components/line-bar.png -------------------------------------------------------------------------------- /public/components/line-basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/public/components/line-basic.png -------------------------------------------------------------------------------- /public/components/list-basic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/public/components/list-basic.jpg -------------------------------------------------------------------------------- /public/components/lucky-draw.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/public/components/lucky-draw.jpg -------------------------------------------------------------------------------- /public/components/model.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/public/components/model.jpg -------------------------------------------------------------------------------- /public/components/negative-bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/public/components/negative-bar.png -------------------------------------------------------------------------------- /public/components/nightingale-pie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/public/components/nightingale-pie.png -------------------------------------------------------------------------------- /public/components/pagination.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/public/components/pagination.jpg -------------------------------------------------------------------------------- /public/components/parallel-basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/public/components/parallel-basic.png -------------------------------------------------------------------------------- /public/components/path-basic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/public/components/path-basic.jpg -------------------------------------------------------------------------------- /public/components/percent-bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/public/components/percent-bar.png -------------------------------------------------------------------------------- /public/components/percent-pie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/public/components/percent-pie.png -------------------------------------------------------------------------------- /public/components/pictorial-bar-basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/public/components/pictorial-bar-basic.png -------------------------------------------------------------------------------- /public/components/picture-wall.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/public/components/picture-wall.jpg -------------------------------------------------------------------------------- /public/components/pie-basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/public/components/pie-basic.png -------------------------------------------------------------------------------- /public/components/polar-bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/public/components/polar-bar.png -------------------------------------------------------------------------------- /public/components/polar-stack-bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/public/components/polar-stack-bar.png -------------------------------------------------------------------------------- /public/components/progress-bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/public/components/progress-bar.png -------------------------------------------------------------------------------- /public/components/qrcode.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/public/components/qrcode.jpg -------------------------------------------------------------------------------- /public/components/radar-basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/public/components/radar-basic.png -------------------------------------------------------------------------------- /public/components/radial-bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/public/components/radial-bar.png -------------------------------------------------------------------------------- /public/components/radial-line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/public/components/radial-line.png -------------------------------------------------------------------------------- /public/components/radial-stack-line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/public/components/radial-stack-line.png -------------------------------------------------------------------------------- /public/components/radio.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/public/components/radio.jpg -------------------------------------------------------------------------------- /public/components/rank-bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/public/components/rank-bar.png -------------------------------------------------------------------------------- /public/components/rate.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/public/components/rate.jpg -------------------------------------------------------------------------------- /public/components/scatter-basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/public/components/scatter-basic.png -------------------------------------------------------------------------------- /public/components/scatter-map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/public/components/scatter-map.png -------------------------------------------------------------------------------- /public/components/select-basic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/public/components/select-basic.jpg -------------------------------------------------------------------------------- /public/components/stack-bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/public/components/stack-bar.png -------------------------------------------------------------------------------- /public/components/state-card.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/public/components/state-card.jpg -------------------------------------------------------------------------------- /public/components/state-list.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/public/components/state-list.jpg -------------------------------------------------------------------------------- /public/components/step-line.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/public/components/step-line.png -------------------------------------------------------------------------------- /public/components/steps.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/public/components/steps.jpg -------------------------------------------------------------------------------- /public/components/sub-burst-basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/public/components/sub-burst-basic.png -------------------------------------------------------------------------------- /public/components/switch.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/public/components/switch.jpg -------------------------------------------------------------------------------- /public/components/tab-basic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/public/components/tab-basic.jpg -------------------------------------------------------------------------------- /public/components/tag.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/public/components/tag.jpg -------------------------------------------------------------------------------- /public/components/text-carousel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/public/components/text-carousel.jpg -------------------------------------------------------------------------------- /public/components/text.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/public/components/text.jpg -------------------------------------------------------------------------------- /public/components/ticket.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/public/components/ticket.jpg -------------------------------------------------------------------------------- /public/components/time-machine.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/public/components/time-machine.jpg -------------------------------------------------------------------------------- /public/components/title-basic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/public/components/title-basic.jpg -------------------------------------------------------------------------------- /public/components/tree-map-basic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/public/components/tree-map-basic.png -------------------------------------------------------------------------------- /public/components/tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/public/components/tree.png -------------------------------------------------------------------------------- /public/components/typed.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/public/components/typed.jpg -------------------------------------------------------------------------------- /public/components/video-basic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/public/components/video-basic.jpg -------------------------------------------------------------------------------- /public/components/water-ball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/public/components/water-ball.png -------------------------------------------------------------------------------- /public/components/waterfall-bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/public/components/waterfall-bar.png -------------------------------------------------------------------------------- /public/components/weather.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/public/components/weather.png -------------------------------------------------------------------------------- /public/components/word-cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/public/components/word-cloud.png -------------------------------------------------------------------------------- /public/components/zebra-bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/public/components/zebra-bar.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/home/area-chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/public/home/area-chart.png -------------------------------------------------------------------------------- /public/home/bar-chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/public/home/bar-chart.png -------------------------------------------------------------------------------- /public/home/condition-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/public/home/condition-1.png -------------------------------------------------------------------------------- /public/home/condition-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/public/home/condition-2.png -------------------------------------------------------------------------------- /public/home/condition-normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/public/home/condition-normal.png -------------------------------------------------------------------------------- /public/home/dot-chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/public/home/dot-chart.png -------------------------------------------------------------------------------- /public/home/earth-chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/public/home/earth-chart.png -------------------------------------------------------------------------------- /public/home/image-chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/public/home/image-chart.png -------------------------------------------------------------------------------- /public/home/line-chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/public/home/line-chart.png -------------------------------------------------------------------------------- /public/home/list-chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/public/home/list-chart.png -------------------------------------------------------------------------------- /public/home/pie-chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/public/home/pie-chart.png -------------------------------------------------------------------------------- /public/home/radar-chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/public/home/radar-chart.png -------------------------------------------------------------------------------- /public/home/thermogram-chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/public/home/thermogram-chart.png -------------------------------------------------------------------------------- /public/home/title-chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/public/home/title-chart.png -------------------------------------------------------------------------------- /public/home/video-chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/public/home/video-chart.png -------------------------------------------------------------------------------- /public/home/wall.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/public/home/wall.svg -------------------------------------------------------------------------------- /public/login/cloud-bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/public/login/cloud-bottom.png -------------------------------------------------------------------------------- /public/login/cloud-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/public/login/cloud-small.png -------------------------------------------------------------------------------- /public/login/cloud-top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/public/login/cloud-top.png -------------------------------------------------------------------------------- /public/login/login-background-main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/public/login/login-background-main.png -------------------------------------------------------------------------------- /public/login/login-left-circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/public/login/login-left-circle.png -------------------------------------------------------------------------------- /public/login/login-main-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/public/login/login-main-background.png -------------------------------------------------------------------------------- /public/login/login-pink-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/public/login/login-pink-background.png -------------------------------------------------------------------------------- /public/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/public/logo.jpg -------------------------------------------------------------------------------- /public/other/prizes-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/public/other/prizes-1.png -------------------------------------------------------------------------------- /public/other/prizes-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/public/other/prizes-2.png -------------------------------------------------------------------------------- /public/other/prizes-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/public/other/prizes-3.png -------------------------------------------------------------------------------- /public/other/prizes-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/public/other/prizes-4.png -------------------------------------------------------------------------------- /public/other/prizes-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/public/other/prizes-5.png -------------------------------------------------------------------------------- /public/other/prizes-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/public/other/prizes-6.png -------------------------------------------------------------------------------- /public/pro_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/public/pro_icon.svg -------------------------------------------------------------------------------- /public/start-background.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/public/start-background.jpeg -------------------------------------------------------------------------------- /scripts/GenerateComponent/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/scripts/GenerateComponent/README.md -------------------------------------------------------------------------------- /scripts/GenerateComponent/TemplateComponentFolder/id.ts: -------------------------------------------------------------------------------- 1 | export const CHART_ID:ComponentSelfType = '{{COMPONENT_TYPE}}'; -------------------------------------------------------------------------------- /scripts/GenerateComponent/TemplateComponentFolder/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/scripts/GenerateComponent/TemplateComponentFolder/index.ts -------------------------------------------------------------------------------- /scripts/GenerateComponent/TemplateComponentFolder/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/scripts/GenerateComponent/TemplateComponentFolder/type.ts -------------------------------------------------------------------------------- /scripts/GenerateComponent/TemplateComponentImport.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/scripts/GenerateComponent/TemplateComponentImport.txt -------------------------------------------------------------------------------- /scripts/GenerateComponent/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/scripts/GenerateComponent/index.js -------------------------------------------------------------------------------- /scripts/GenerateComponent/parentType.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/scripts/GenerateComponent/parentType.js -------------------------------------------------------------------------------- /scripts/GenerateComponent/subParent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/scripts/GenerateComponent/subParent.js -------------------------------------------------------------------------------- /scripts/StaticFileDebug/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/scripts/StaticFileDebug/index.js -------------------------------------------------------------------------------- /scripts/write-sentry-key.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/scripts/write-sentry-key.js -------------------------------------------------------------------------------- /src/INTERNAL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/INTERNAL.md -------------------------------------------------------------------------------- /src/access.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/app.tsx -------------------------------------------------------------------------------- /src/component-type.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/component-type.d.ts -------------------------------------------------------------------------------- /src/component.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/component.d.ts -------------------------------------------------------------------------------- /src/components/BackgroundSelect/index.less: -------------------------------------------------------------------------------- 1 | .component-background-select { 2 | } 3 | -------------------------------------------------------------------------------- /src/components/BackgroundSelect/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/BackgroundSelect/index.tsx -------------------------------------------------------------------------------- /src/components/ChartComponents/Chart/Bar/BarBasic/id.ts: -------------------------------------------------------------------------------- 1 | export const CHART_ID: ComponentSelfType = 'BAR_BASIC'; 2 | -------------------------------------------------------------------------------- /src/components/ChartComponents/Chart/Bar/BarBasic/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Chart/Bar/BarBasic/index.ts -------------------------------------------------------------------------------- /src/components/ChartComponents/Chart/Bar/BarBasic/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Chart/Bar/BarBasic/type.ts -------------------------------------------------------------------------------- /src/components/ChartComponents/Chart/Bar/CachetBar/id.ts: -------------------------------------------------------------------------------- 1 | export const CHART_ID: ComponentSelfType = 'CACHET_BAR'; 2 | -------------------------------------------------------------------------------- /src/components/ChartComponents/Chart/Bar/CachetBar/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Chart/Bar/CachetBar/index.ts -------------------------------------------------------------------------------- /src/components/ChartComponents/Chart/Bar/CachetBar/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Chart/Bar/CachetBar/type.ts -------------------------------------------------------------------------------- /src/components/ChartComponents/Chart/Bar/HorizontalBar/id.ts: -------------------------------------------------------------------------------- 1 | export const CHART_ID: ComponentSelfType = 'HORIZONTAL_BAR'; 2 | -------------------------------------------------------------------------------- /src/components/ChartComponents/Chart/Bar/LineBar/id.ts: -------------------------------------------------------------------------------- 1 | export const CHART_ID: ComponentSelfType = 'LINE_BAR'; 2 | -------------------------------------------------------------------------------- /src/components/ChartComponents/Chart/Bar/LineBar/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Chart/Bar/LineBar/index.ts -------------------------------------------------------------------------------- /src/components/ChartComponents/Chart/Bar/LineBar/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Chart/Bar/LineBar/type.ts -------------------------------------------------------------------------------- /src/components/ChartComponents/Chart/Bar/NegativeBar/id.ts: -------------------------------------------------------------------------------- 1 | export const CHART_ID: ComponentSelfType = 'NEGATIVE_BAR'; 2 | -------------------------------------------------------------------------------- /src/components/ChartComponents/Chart/Bar/NegativeBar/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Chart/Bar/NegativeBar/type.ts -------------------------------------------------------------------------------- /src/components/ChartComponents/Chart/Bar/PercentBar/id.ts: -------------------------------------------------------------------------------- 1 | export const CHART_ID: ComponentSelfType = 'PERCENT_BAR'; 2 | -------------------------------------------------------------------------------- /src/components/ChartComponents/Chart/Bar/PercentBar/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Chart/Bar/PercentBar/index.ts -------------------------------------------------------------------------------- /src/components/ChartComponents/Chart/Bar/PercentBar/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Chart/Bar/PercentBar/type.ts -------------------------------------------------------------------------------- /src/components/ChartComponents/Chart/Bar/PolarBar/id.ts: -------------------------------------------------------------------------------- 1 | export const CHART_ID: ComponentSelfType = 'POLAR_BAR'; 2 | -------------------------------------------------------------------------------- /src/components/ChartComponents/Chart/Bar/PolarBar/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Chart/Bar/PolarBar/index.ts -------------------------------------------------------------------------------- /src/components/ChartComponents/Chart/Bar/PolarBar/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Chart/Bar/PolarBar/type.ts -------------------------------------------------------------------------------- /src/components/ChartComponents/Chart/Bar/PolarStackBar/id.ts: -------------------------------------------------------------------------------- 1 | export const CHART_ID: ComponentSelfType = 'POLAR_STACK_BAR'; 2 | -------------------------------------------------------------------------------- /src/components/ChartComponents/Chart/Bar/ProgressBar/id.ts: -------------------------------------------------------------------------------- 1 | export const CHART_ID: ComponentSelfType = 'PROGRESS_BAR'; 2 | -------------------------------------------------------------------------------- /src/components/ChartComponents/Chart/Bar/ProgressBar/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Chart/Bar/ProgressBar/type.ts -------------------------------------------------------------------------------- /src/components/ChartComponents/Chart/Bar/RadialBar/id.ts: -------------------------------------------------------------------------------- 1 | export const CHART_ID: ComponentSelfType = 'RADIAL_BAR'; 2 | -------------------------------------------------------------------------------- /src/components/ChartComponents/Chart/Bar/RadialBar/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Chart/Bar/RadialBar/index.ts -------------------------------------------------------------------------------- /src/components/ChartComponents/Chart/Bar/RadialBar/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Chart/Bar/RadialBar/type.ts -------------------------------------------------------------------------------- /src/components/ChartComponents/Chart/Bar/RankBar/id.ts: -------------------------------------------------------------------------------- 1 | export const CHART_ID: ComponentSelfType = 'RANK_BAR'; 2 | -------------------------------------------------------------------------------- /src/components/ChartComponents/Chart/Bar/RankBar/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Chart/Bar/RankBar/index.ts -------------------------------------------------------------------------------- /src/components/ChartComponents/Chart/Bar/RankBar/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Chart/Bar/RankBar/type.ts -------------------------------------------------------------------------------- /src/components/ChartComponents/Chart/Bar/StackBar/id.ts: -------------------------------------------------------------------------------- 1 | export const CHART_ID: ComponentSelfType = 'STACK_BAR'; 2 | -------------------------------------------------------------------------------- /src/components/ChartComponents/Chart/Bar/StackBar/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Chart/Bar/StackBar/index.ts -------------------------------------------------------------------------------- /src/components/ChartComponents/Chart/Bar/StackBar/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Chart/Bar/StackBar/type.ts -------------------------------------------------------------------------------- /src/components/ChartComponents/Chart/Bar/WaterFallBar/id.ts: -------------------------------------------------------------------------------- 1 | export const CHART_ID: ComponentSelfType = 'WATER_FALL_BAR'; 2 | -------------------------------------------------------------------------------- /src/components/ChartComponents/Chart/Bar/ZebraBar/id.ts: -------------------------------------------------------------------------------- 1 | export const CHART_ID: ComponentSelfType = 'ZEBRA_BAR'; 2 | -------------------------------------------------------------------------------- /src/components/ChartComponents/Chart/Bar/ZebraBar/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Chart/Bar/ZebraBar/index.ts -------------------------------------------------------------------------------- /src/components/ChartComponents/Chart/Bar/ZebraBar/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Chart/Bar/ZebraBar/type.ts -------------------------------------------------------------------------------- /src/components/ChartComponents/Chart/BoxPlot/BoxPlotBasic/id.ts: -------------------------------------------------------------------------------- 1 | export const CHART_ID: ComponentSelfType = 'BOX_PLOT_BASIC'; 2 | -------------------------------------------------------------------------------- /src/components/ChartComponents/Chart/Candlestick/CandlestickBasic/id.ts: -------------------------------------------------------------------------------- 1 | export const CHART_ID: ComponentSelfType = 'CANDLESTICK_BASIC'; 2 | -------------------------------------------------------------------------------- /src/components/ChartComponents/Chart/Funnel/FunnelBasic/id.ts: -------------------------------------------------------------------------------- 1 | export const CHART_ID: ComponentSelfType = 'FUNNEL_BASIC'; 2 | -------------------------------------------------------------------------------- /src/components/ChartComponents/Chart/Gauge/ClockGauge/id.ts: -------------------------------------------------------------------------------- 1 | export const CHART_ID: ComponentSelfType = 'CLOCK_GAUGE'; 2 | -------------------------------------------------------------------------------- /src/components/ChartComponents/Chart/Gauge/GaugeBasic/id.ts: -------------------------------------------------------------------------------- 1 | export const CHART_ID: ComponentSelfType = 'GAUGE_BASIC'; 2 | -------------------------------------------------------------------------------- /src/components/ChartComponents/Chart/Line/LineBasic/id.ts: -------------------------------------------------------------------------------- 1 | export const CHART_ID: ComponentSelfType = 'LINE_BASIC'; 2 | -------------------------------------------------------------------------------- /src/components/ChartComponents/Chart/Line/LineBasic/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Chart/Line/LineBasic/index.ts -------------------------------------------------------------------------------- /src/components/ChartComponents/Chart/Line/LineBasic/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Chart/Line/LineBasic/type.ts -------------------------------------------------------------------------------- /src/components/ChartComponents/Chart/Line/RadialLine/id.ts: -------------------------------------------------------------------------------- 1 | export const CHART_ID: ComponentSelfType = 'RADIAL_LINE'; 2 | -------------------------------------------------------------------------------- /src/components/ChartComponents/Chart/Line/RadialLine/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Chart/Line/RadialLine/type.ts -------------------------------------------------------------------------------- /src/components/ChartComponents/Chart/Line/RadialStackLine/id.ts: -------------------------------------------------------------------------------- 1 | export const CHART_ID: ComponentSelfType = 'RADIAL_STACK_LINE'; 2 | -------------------------------------------------------------------------------- /src/components/ChartComponents/Chart/Line/StepLine/id.ts: -------------------------------------------------------------------------------- 1 | export const CHART_ID: ComponentSelfType = 'STEP_LINE'; 2 | -------------------------------------------------------------------------------- /src/components/ChartComponents/Chart/Line/StepLine/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Chart/Line/StepLine/index.ts -------------------------------------------------------------------------------- /src/components/ChartComponents/Chart/Line/StepLine/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Chart/Line/StepLine/type.ts -------------------------------------------------------------------------------- /src/components/ChartComponents/Chart/Parallel/ParallelBasic/id.ts: -------------------------------------------------------------------------------- 1 | export const CHART_ID: ComponentSelfType = 'PARALLEL_BASIC'; 2 | -------------------------------------------------------------------------------- /src/components/ChartComponents/Chart/PictorialBar/PictorialBarBasic/id.ts: -------------------------------------------------------------------------------- 1 | export const CHART_ID: ComponentSelfType = 'PICTORIAL_BAR_BASIC'; 2 | -------------------------------------------------------------------------------- /src/components/ChartComponents/Chart/Pie/CirclePie/id.ts: -------------------------------------------------------------------------------- 1 | export const CHART_ID: ComponentSelfType = 'CIRCLE_PIE'; 2 | -------------------------------------------------------------------------------- /src/components/ChartComponents/Chart/Pie/CirclePie/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Chart/Pie/CirclePie/index.ts -------------------------------------------------------------------------------- /src/components/ChartComponents/Chart/Pie/CirclePie/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Chart/Pie/CirclePie/type.ts -------------------------------------------------------------------------------- /src/components/ChartComponents/Chart/Pie/NightingalePie/id.ts: -------------------------------------------------------------------------------- 1 | export const CHART_ID: ComponentSelfType = 'NIGHTINGALE_PIE'; 2 | -------------------------------------------------------------------------------- /src/components/ChartComponents/Chart/Pie/PercentPie/id.ts: -------------------------------------------------------------------------------- 1 | export const CHART_ID: ComponentSelfType = 'PERCENT_PIE'; 2 | -------------------------------------------------------------------------------- /src/components/ChartComponents/Chart/Pie/PercentPie/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Chart/Pie/PercentPie/index.ts -------------------------------------------------------------------------------- /src/components/ChartComponents/Chart/Pie/PercentPie/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Chart/Pie/PercentPie/type.ts -------------------------------------------------------------------------------- /src/components/ChartComponents/Chart/Pie/PieBasic/id.ts: -------------------------------------------------------------------------------- 1 | export const CHART_ID: ComponentSelfType = 'PIE_BASIC'; 2 | -------------------------------------------------------------------------------- /src/components/ChartComponents/Chart/Pie/PieBasic/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Chart/Pie/PieBasic/index.ts -------------------------------------------------------------------------------- /src/components/ChartComponents/Chart/Pie/PieBasic/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Chart/Pie/PieBasic/type.ts -------------------------------------------------------------------------------- /src/components/ChartComponents/Chart/Radar/RadarBasic/id.ts: -------------------------------------------------------------------------------- 1 | export const CHART_ID: ComponentSelfType = 'RADAR_BASIC'; 2 | -------------------------------------------------------------------------------- /src/components/ChartComponents/Chart/Scatter/BubbleScatter/id.ts: -------------------------------------------------------------------------------- 1 | export const CHART_ID: ComponentSelfType = 'BUBBLE_SCATTER'; 2 | -------------------------------------------------------------------------------- /src/components/ChartComponents/Chart/Scatter/ScatterBasic/id.ts: -------------------------------------------------------------------------------- 1 | export const CHART_ID: ComponentSelfType = 'SCATTER_BASIC'; 2 | -------------------------------------------------------------------------------- /src/components/ChartComponents/Chart/SunBurst/SunBurstBasic/id.ts: -------------------------------------------------------------------------------- 1 | export const CHART_ID: ComponentSelfType = 'SUN_BURST_BASIC'; 2 | -------------------------------------------------------------------------------- /src/components/ChartComponents/Chart/Tree/TreeBasic/id.ts: -------------------------------------------------------------------------------- 1 | export const CHART_ID: ComponentSelfType = 'TREE_BASIC'; 2 | -------------------------------------------------------------------------------- /src/components/ChartComponents/Chart/Tree/TreeBasic/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Chart/Tree/TreeBasic/index.ts -------------------------------------------------------------------------------- /src/components/ChartComponents/Chart/Tree/TreeBasic/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Chart/Tree/TreeBasic/type.ts -------------------------------------------------------------------------------- /src/components/ChartComponents/Chart/TreeMap/TreeMapBasic/id.ts: -------------------------------------------------------------------------------- 1 | export const CHART_ID: ComponentSelfType = 'TREE_MAP_BASIC'; 2 | -------------------------------------------------------------------------------- /src/components/ChartComponents/Common/AngleSelect/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Common/AngleSelect/index.less -------------------------------------------------------------------------------- /src/components/ChartComponents/Common/AngleSelect/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Common/AngleSelect/index.tsx -------------------------------------------------------------------------------- /src/components/ChartComponents/Common/AxisConfig/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Common/AxisConfig/index.tsx -------------------------------------------------------------------------------- /src/components/ChartComponents/Common/BaseConfig/connect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Common/BaseConfig/connect.ts -------------------------------------------------------------------------------- /src/components/ChartComponents/Common/BaseConfig/index.less: -------------------------------------------------------------------------------- 1 | .component-design-config-base { 2 | } 3 | -------------------------------------------------------------------------------- /src/components/ChartComponents/Common/BaseConfig/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Common/BaseConfig/index.tsx -------------------------------------------------------------------------------- /src/components/ChartComponents/Common/Checkbox/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Common/Checkbox/index.less -------------------------------------------------------------------------------- /src/components/ChartComponents/Common/Checkbox/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Common/Checkbox/index.tsx -------------------------------------------------------------------------------- /src/components/ChartComponents/Common/Collapse/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Common/Collapse/index.less -------------------------------------------------------------------------------- /src/components/ChartComponents/Common/Collapse/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Common/Collapse/index.tsx -------------------------------------------------------------------------------- /src/components/ChartComponents/Common/Component/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Common/Component/index.tsx -------------------------------------------------------------------------------- /src/components/ChartComponents/Common/ConfigRender/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Common/ConfigRender/index.tsx -------------------------------------------------------------------------------- /src/components/ChartComponents/Common/ConfigRender/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Common/ConfigRender/type.ts -------------------------------------------------------------------------------- /src/components/ChartComponents/Common/ConfigRender/utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Common/ConfigRender/utils.tsx -------------------------------------------------------------------------------- /src/components/ChartComponents/Common/DataConfig/components/ResponseData/components/DataConfigDetail/index.less: -------------------------------------------------------------------------------- 1 | .design-config-data-detail { 2 | width: 100%; 3 | } 4 | -------------------------------------------------------------------------------- /src/components/ChartComponents/Common/DataConfig/connect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Common/DataConfig/connect.ts -------------------------------------------------------------------------------- /src/components/ChartComponents/Common/DataConfig/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Common/DataConfig/index.less -------------------------------------------------------------------------------- /src/components/ChartComponents/Common/DataConfig/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Common/DataConfig/index.tsx -------------------------------------------------------------------------------- /src/components/ChartComponents/Common/Dropdown/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Common/Dropdown/index.tsx -------------------------------------------------------------------------------- /src/components/ChartComponents/Common/FontConfig/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Common/FontConfig/index.tsx -------------------------------------------------------------------------------- /src/components/ChartComponents/Common/FormModal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Common/FormModal/index.tsx -------------------------------------------------------------------------------- /src/components/ChartComponents/Common/GridConfig/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Common/GridConfig/index.tsx -------------------------------------------------------------------------------- /src/components/ChartComponents/Common/Icon/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Common/Icon/index.tsx -------------------------------------------------------------------------------- /src/components/ChartComponents/Common/IconRadio/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Common/IconRadio/index.less -------------------------------------------------------------------------------- /src/components/ChartComponents/Common/IconRadio/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Common/IconRadio/index.tsx -------------------------------------------------------------------------------- /src/components/ChartComponents/Common/Input/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Common/Input/index.tsx -------------------------------------------------------------------------------- /src/components/ChartComponents/Common/InputNumber/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Common/InputNumber/index.tsx -------------------------------------------------------------------------------- /src/components/ChartComponents/Common/InterActiveConfig/components/LinkageConfig/index.less: -------------------------------------------------------------------------------- 1 | .design-config-interactive-linkage { 2 | } 3 | -------------------------------------------------------------------------------- /src/components/ChartComponents/Common/LegendConfig/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Common/LegendConfig/index.tsx -------------------------------------------------------------------------------- /src/components/ChartComponents/Common/LocalUpload/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Common/LocalUpload/index.less -------------------------------------------------------------------------------- /src/components/ChartComponents/Common/LocalUpload/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Common/LocalUpload/index.tsx -------------------------------------------------------------------------------- /src/components/ChartComponents/Common/MapTable/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Common/MapTable/index.less -------------------------------------------------------------------------------- /src/components/ChartComponents/Common/MapTable/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Common/MapTable/index.tsx -------------------------------------------------------------------------------- /src/components/ChartComponents/Common/MarginConfig/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Common/MarginConfig/index.tsx -------------------------------------------------------------------------------- /src/components/ChartComponents/Common/MaxMinConfig/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Common/MaxMinConfig/index.tsx -------------------------------------------------------------------------------- /src/components/ChartComponents/Common/Modal/index.tsx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/ChartComponents/Common/Opacity/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Common/Opacity/index.tsx -------------------------------------------------------------------------------- /src/components/ChartComponents/Common/OrientSelect/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Common/OrientSelect/index.tsx -------------------------------------------------------------------------------- /src/components/ChartComponents/Common/RenderWrapper/README.md: -------------------------------------------------------------------------------- 1 | # 对组件的render进行一系列的同类处理 -------------------------------------------------------------------------------- /src/components/ChartComponents/Common/RuleTree/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Common/RuleTree/index.less -------------------------------------------------------------------------------- /src/components/ChartComponents/Common/RuleTree/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Common/RuleTree/index.tsx -------------------------------------------------------------------------------- /src/components/ChartComponents/Common/Select/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Common/Select/index.tsx -------------------------------------------------------------------------------- /src/components/ChartComponents/Common/ShadowConfig/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Common/ShadowConfig/index.tsx -------------------------------------------------------------------------------- /src/components/ChartComponents/Common/SimpleHueSelect/index.less: -------------------------------------------------------------------------------- 1 | .simple-hue-select-wrapper { 2 | align-items: center; 3 | } 4 | -------------------------------------------------------------------------------- /src/components/ChartComponents/Common/Slider/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Common/Slider/index.tsx -------------------------------------------------------------------------------- /src/components/ChartComponents/Common/Switch/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Common/Switch/index.less -------------------------------------------------------------------------------- /src/components/ChartComponents/Common/Switch/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Common/Switch/index.tsx -------------------------------------------------------------------------------- /src/components/ChartComponents/Common/SymbolSelect/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Common/SymbolSelect/index.tsx -------------------------------------------------------------------------------- /src/components/ChartComponents/Common/Textarea/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Common/Textarea/index.tsx -------------------------------------------------------------------------------- /src/components/ChartComponents/Common/Tooltip/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Common/Tooltip/index.tsx -------------------------------------------------------------------------------- /src/components/ChartComponents/Common/global.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Common/global.less -------------------------------------------------------------------------------- /src/components/ChartComponents/Common/index.less: -------------------------------------------------------------------------------- 1 | @design-config-sub-color: #bcc9d4; 2 | -------------------------------------------------------------------------------- /src/components/ChartComponents/Common/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Common/utils/index.ts -------------------------------------------------------------------------------- /src/components/ChartComponents/Font/CountUpNumber/id.ts: -------------------------------------------------------------------------------- 1 | export const CHART_ID: ComponentSelfType = 'COUNT_UP_NUMBER'; 2 | -------------------------------------------------------------------------------- /src/components/ChartComponents/Font/CountUpNumber/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Font/CountUpNumber/index.ts -------------------------------------------------------------------------------- /src/components/ChartComponents/Font/CountUpNumber/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Font/CountUpNumber/type.ts -------------------------------------------------------------------------------- /src/components/ChartComponents/Font/FontCarousel/id.ts: -------------------------------------------------------------------------------- 1 | export const CHART_ID: ComponentSelfType = 'FONT_CAROUSEL'; 2 | -------------------------------------------------------------------------------- /src/components/ChartComponents/Font/FontCarousel/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Font/FontCarousel/index.ts -------------------------------------------------------------------------------- /src/components/ChartComponents/Font/FontCarousel/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Font/FontCarousel/type.ts -------------------------------------------------------------------------------- /src/components/ChartComponents/Font/Icon/component/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Font/Icon/component/index.tsx -------------------------------------------------------------------------------- /src/components/ChartComponents/Font/Icon/config/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Font/Icon/config/index.tsx -------------------------------------------------------------------------------- /src/components/ChartComponents/Font/Icon/defaultConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Font/Icon/defaultConfig.ts -------------------------------------------------------------------------------- /src/components/ChartComponents/Font/Icon/id.ts: -------------------------------------------------------------------------------- 1 | export const CHART_ID: ComponentSelfType = 'ICON'; 2 | -------------------------------------------------------------------------------- /src/components/ChartComponents/Font/Icon/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Font/Icon/index.ts -------------------------------------------------------------------------------- /src/components/ChartComponents/Font/Icon/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Font/Icon/type.ts -------------------------------------------------------------------------------- /src/components/ChartComponents/Font/LoopText/component/index.less: -------------------------------------------------------------------------------- 1 | .component-font-loop-text { 2 | white-space: nowrap; 3 | } 4 | -------------------------------------------------------------------------------- /src/components/ChartComponents/Font/LoopText/id.ts: -------------------------------------------------------------------------------- 1 | export const CHART_ID: ComponentSelfType = 'LOOP_TEXT'; 2 | -------------------------------------------------------------------------------- /src/components/ChartComponents/Font/LoopText/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Font/LoopText/index.ts -------------------------------------------------------------------------------- /src/components/ChartComponents/Font/LoopText/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Font/LoopText/type.ts -------------------------------------------------------------------------------- /src/components/ChartComponents/Font/Tag/component/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Font/Tag/component/index.less -------------------------------------------------------------------------------- /src/components/ChartComponents/Font/Tag/component/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Font/Tag/component/index.tsx -------------------------------------------------------------------------------- /src/components/ChartComponents/Font/Tag/config/Condition.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Font/Tag/config/Condition.tsx -------------------------------------------------------------------------------- /src/components/ChartComponents/Font/Tag/config/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Font/Tag/config/index.tsx -------------------------------------------------------------------------------- /src/components/ChartComponents/Font/Tag/defaultConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Font/Tag/defaultConfig.ts -------------------------------------------------------------------------------- /src/components/ChartComponents/Font/Tag/id.ts: -------------------------------------------------------------------------------- 1 | export const CHART_ID: ComponentSelfType = 'TAG'; 2 | -------------------------------------------------------------------------------- /src/components/ChartComponents/Font/Tag/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Font/Tag/index.ts -------------------------------------------------------------------------------- /src/components/ChartComponents/Font/Tag/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Font/Tag/type.ts -------------------------------------------------------------------------------- /src/components/ChartComponents/Font/Text/component/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Font/Text/component/index.tsx -------------------------------------------------------------------------------- /src/components/ChartComponents/Font/Text/config/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Font/Text/config/index.tsx -------------------------------------------------------------------------------- /src/components/ChartComponents/Font/Text/defaultConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Font/Text/defaultConfig.ts -------------------------------------------------------------------------------- /src/components/ChartComponents/Font/Text/id.ts: -------------------------------------------------------------------------------- 1 | export const CHART_ID: ComponentSelfType = 'TEXT'; 2 | -------------------------------------------------------------------------------- /src/components/ChartComponents/Font/Text/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Font/Text/index.ts -------------------------------------------------------------------------------- /src/components/ChartComponents/Font/Text/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Font/Text/type.ts -------------------------------------------------------------------------------- /src/components/ChartComponents/Font/TimeMachine/id.ts: -------------------------------------------------------------------------------- 1 | export const CHART_ID: ComponentSelfType = 'TIME_MACHINE'; 2 | -------------------------------------------------------------------------------- /src/components/ChartComponents/Font/TimeMachine/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Font/TimeMachine/index.ts -------------------------------------------------------------------------------- /src/components/ChartComponents/Font/TimeMachine/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Font/TimeMachine/type.ts -------------------------------------------------------------------------------- /src/components/ChartComponents/Font/Title/component/index.less: -------------------------------------------------------------------------------- 1 | .component-font-title { 2 | } 3 | -------------------------------------------------------------------------------- /src/components/ChartComponents/Font/Title/config/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Font/Title/config/index.tsx -------------------------------------------------------------------------------- /src/components/ChartComponents/Font/Title/defaultConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Font/Title/defaultConfig.ts -------------------------------------------------------------------------------- /src/components/ChartComponents/Font/Title/id.ts: -------------------------------------------------------------------------------- 1 | export const CHART_ID: ComponentSelfType = 'TITLE'; 2 | -------------------------------------------------------------------------------- /src/components/ChartComponents/Font/Title/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Font/Title/index.ts -------------------------------------------------------------------------------- /src/components/ChartComponents/Font/Title/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Font/Title/type.ts -------------------------------------------------------------------------------- /src/components/ChartComponents/Interactive/Button/id.ts: -------------------------------------------------------------------------------- 1 | export const CHART_ID: ComponentSelfType = 'BUTTON'; 2 | -------------------------------------------------------------------------------- /src/components/ChartComponents/Interactive/Button/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Interactive/Button/index.ts -------------------------------------------------------------------------------- /src/components/ChartComponents/Interactive/Button/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Interactive/Button/type.ts -------------------------------------------------------------------------------- /src/components/ChartComponents/Interactive/Checkbox/id.ts: -------------------------------------------------------------------------------- 1 | export const CHART_ID: ComponentSelfType = 'CHECKBOX'; 2 | -------------------------------------------------------------------------------- /src/components/ChartComponents/Interactive/Checkbox/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Interactive/Checkbox/index.ts -------------------------------------------------------------------------------- /src/components/ChartComponents/Interactive/Checkbox/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Interactive/Checkbox/type.ts -------------------------------------------------------------------------------- /src/components/ChartComponents/Interactive/Datepicker/id.ts: -------------------------------------------------------------------------------- 1 | export const CHART_ID: ComponentSelfType = 'DATE_PICKER'; 2 | -------------------------------------------------------------------------------- /src/components/ChartComponents/Interactive/FullScreen/id.ts: -------------------------------------------------------------------------------- 1 | export const CHART_ID: ComponentSelfType = 'FULL_SCREEN'; 2 | -------------------------------------------------------------------------------- /src/components/ChartComponents/Interactive/Input/id.ts: -------------------------------------------------------------------------------- 1 | export const CHART_ID: ComponentSelfType = 'INPUT'; 2 | -------------------------------------------------------------------------------- /src/components/ChartComponents/Interactive/Input/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Interactive/Input/index.ts -------------------------------------------------------------------------------- /src/components/ChartComponents/Interactive/Input/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Interactive/Input/type.ts -------------------------------------------------------------------------------- /src/components/ChartComponents/Interactive/Pagination/id.ts: -------------------------------------------------------------------------------- 1 | export const CHART_ID: ComponentSelfType = 'PAGINATION'; 2 | -------------------------------------------------------------------------------- /src/components/ChartComponents/Interactive/Radio/id.ts: -------------------------------------------------------------------------------- 1 | export const CHART_ID: ComponentSelfType = 'RADIO'; 2 | -------------------------------------------------------------------------------- /src/components/ChartComponents/Interactive/Radio/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Interactive/Radio/index.ts -------------------------------------------------------------------------------- /src/components/ChartComponents/Interactive/Radio/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Interactive/Radio/type.ts -------------------------------------------------------------------------------- /src/components/ChartComponents/Interactive/Rate/id.ts: -------------------------------------------------------------------------------- 1 | export const CHART_ID: ComponentSelfType = 'RATE'; 2 | -------------------------------------------------------------------------------- /src/components/ChartComponents/Interactive/Rate/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Interactive/Rate/index.ts -------------------------------------------------------------------------------- /src/components/ChartComponents/Interactive/Rate/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Interactive/Rate/type.ts -------------------------------------------------------------------------------- /src/components/ChartComponents/Interactive/Select/id.ts: -------------------------------------------------------------------------------- 1 | export const CHART_ID: ComponentSelfType = 'SELECT'; 2 | -------------------------------------------------------------------------------- /src/components/ChartComponents/Interactive/Select/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Interactive/Select/index.ts -------------------------------------------------------------------------------- /src/components/ChartComponents/Interactive/Select/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Interactive/Select/type.ts -------------------------------------------------------------------------------- /src/components/ChartComponents/Interactive/Steps/id.ts: -------------------------------------------------------------------------------- 1 | export const CHART_ID: ComponentSelfType = 'STEPS'; 2 | -------------------------------------------------------------------------------- /src/components/ChartComponents/Interactive/Steps/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Interactive/Steps/index.ts -------------------------------------------------------------------------------- /src/components/ChartComponents/Interactive/Steps/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Interactive/Steps/type.ts -------------------------------------------------------------------------------- /src/components/ChartComponents/Interactive/Switch/id.ts: -------------------------------------------------------------------------------- 1 | export const CHART_ID: ComponentSelfType = 'SWITCH'; 2 | -------------------------------------------------------------------------------- /src/components/ChartComponents/Interactive/Switch/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Interactive/Switch/index.ts -------------------------------------------------------------------------------- /src/components/ChartComponents/Interactive/Switch/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Interactive/Switch/type.ts -------------------------------------------------------------------------------- /src/components/ChartComponents/Interactive/Tab/id.ts: -------------------------------------------------------------------------------- 1 | export const CHART_ID: ComponentSelfType = 'TAB'; 2 | -------------------------------------------------------------------------------- /src/components/ChartComponents/Interactive/Tab/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Interactive/Tab/index.ts -------------------------------------------------------------------------------- /src/components/ChartComponents/Interactive/Tab/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Interactive/Tab/type.ts -------------------------------------------------------------------------------- /src/components/ChartComponents/Map/Ali3DMap/config/Base.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Map/Ali3DMap/config/Base.tsx -------------------------------------------------------------------------------- /src/components/ChartComponents/Map/Ali3DMap/config/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Map/Ali3DMap/config/index.tsx -------------------------------------------------------------------------------- /src/components/ChartComponents/Map/Ali3DMap/defaultConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Map/Ali3DMap/defaultConfig.ts -------------------------------------------------------------------------------- /src/components/ChartComponents/Map/Ali3DMap/id.ts: -------------------------------------------------------------------------------- 1 | export const CHART_ID: ComponentSelfType = 'ALI3D_MAP'; 2 | -------------------------------------------------------------------------------- /src/components/ChartComponents/Map/Ali3DMap/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Map/Ali3DMap/index.ts -------------------------------------------------------------------------------- /src/components/ChartComponents/Map/Ali3DMap/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Map/Ali3DMap/type.ts -------------------------------------------------------------------------------- /src/components/ChartComponents/Map/ScatterMap/config/Geo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Map/ScatterMap/config/Geo.tsx -------------------------------------------------------------------------------- /src/components/ChartComponents/Map/ScatterMap/id.ts: -------------------------------------------------------------------------------- 1 | export const CHART_ID: ComponentSelfType = 'SCATTER_MAP'; 2 | -------------------------------------------------------------------------------- /src/components/ChartComponents/Map/ScatterMap/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Map/ScatterMap/index.ts -------------------------------------------------------------------------------- /src/components/ChartComponents/Map/ScatterMap/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Map/ScatterMap/type.ts -------------------------------------------------------------------------------- /src/components/ChartComponents/Media/Audio/config/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Media/Audio/config/index.tsx -------------------------------------------------------------------------------- /src/components/ChartComponents/Media/Audio/defaultConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Media/Audio/defaultConfig.ts -------------------------------------------------------------------------------- /src/components/ChartComponents/Media/Audio/id.ts: -------------------------------------------------------------------------------- 1 | export const CHART_ID: ComponentSelfType = 'AUDIO'; 2 | -------------------------------------------------------------------------------- /src/components/ChartComponents/Media/Audio/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Media/Audio/index.ts -------------------------------------------------------------------------------- /src/components/ChartComponents/Media/Audio/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Media/Audio/type.ts -------------------------------------------------------------------------------- /src/components/ChartComponents/Media/Carousel/id.ts: -------------------------------------------------------------------------------- 1 | export const CHART_ID: ComponentSelfType = 'CAROUSEL'; 2 | -------------------------------------------------------------------------------- /src/components/ChartComponents/Media/Carousel/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Media/Carousel/index.ts -------------------------------------------------------------------------------- /src/components/ChartComponents/Media/Carousel/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Media/Carousel/type.ts -------------------------------------------------------------------------------- /src/components/ChartComponents/Media/Image/component/index.less: -------------------------------------------------------------------------------- 1 | .component-media-image { 2 | } 3 | -------------------------------------------------------------------------------- /src/components/ChartComponents/Media/Image/config/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Media/Image/config/index.tsx -------------------------------------------------------------------------------- /src/components/ChartComponents/Media/Image/defaultConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Media/Image/defaultConfig.ts -------------------------------------------------------------------------------- /src/components/ChartComponents/Media/Image/id.ts: -------------------------------------------------------------------------------- 1 | export const CHART_ID: ComponentSelfType = 'IMAGE'; 2 | -------------------------------------------------------------------------------- /src/components/ChartComponents/Media/Image/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Media/Image/index.ts -------------------------------------------------------------------------------- /src/components/ChartComponents/Media/Image/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Media/Image/type.ts -------------------------------------------------------------------------------- /src/components/ChartComponents/Media/Model/config/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Media/Model/config/index.tsx -------------------------------------------------------------------------------- /src/components/ChartComponents/Media/Model/defaultConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Media/Model/defaultConfig.ts -------------------------------------------------------------------------------- /src/components/ChartComponents/Media/Model/id.ts: -------------------------------------------------------------------------------- 1 | export const CHART_ID: ComponentSelfType = 'MODEL'; 2 | -------------------------------------------------------------------------------- /src/components/ChartComponents/Media/Model/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Media/Model/index.ts -------------------------------------------------------------------------------- /src/components/ChartComponents/Media/Model/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Media/Model/type.ts -------------------------------------------------------------------------------- /src/components/ChartComponents/Media/PictureWall/component/index.less: -------------------------------------------------------------------------------- 1 | .component-media-picture-wall { 2 | } 3 | -------------------------------------------------------------------------------- /src/components/ChartComponents/Media/PictureWall/id.ts: -------------------------------------------------------------------------------- 1 | export const CHART_ID: ComponentSelfType = 'PICTURE_WALL'; 2 | -------------------------------------------------------------------------------- /src/components/ChartComponents/Media/PictureWall/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Media/PictureWall/index.ts -------------------------------------------------------------------------------- /src/components/ChartComponents/Media/PictureWall/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Media/PictureWall/type.ts -------------------------------------------------------------------------------- /src/components/ChartComponents/Media/Video/config/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Media/Video/config/index.tsx -------------------------------------------------------------------------------- /src/components/ChartComponents/Media/Video/defaultConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Media/Video/defaultConfig.ts -------------------------------------------------------------------------------- /src/components/ChartComponents/Media/Video/id.ts: -------------------------------------------------------------------------------- 1 | export const CHART_ID: ComponentSelfType = 'VIDEO'; 2 | -------------------------------------------------------------------------------- /src/components/ChartComponents/Media/Video/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Media/Video/index.ts -------------------------------------------------------------------------------- /src/components/ChartComponents/Media/Video/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Media/Video/type.ts -------------------------------------------------------------------------------- /src/components/ChartComponents/Other/Iframe/component/MessageTooltip/index.less: -------------------------------------------------------------------------------- 1 | .component-iframe-message-tooltip { 2 | text-align: left; 3 | } 4 | -------------------------------------------------------------------------------- /src/components/ChartComponents/Other/Iframe/config/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Other/Iframe/config/index.tsx -------------------------------------------------------------------------------- /src/components/ChartComponents/Other/Iframe/defaultConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Other/Iframe/defaultConfig.ts -------------------------------------------------------------------------------- /src/components/ChartComponents/Other/Iframe/id.ts: -------------------------------------------------------------------------------- 1 | export const CHART_ID: ComponentSelfType = 'IFRAME'; 2 | -------------------------------------------------------------------------------- /src/components/ChartComponents/Other/Iframe/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Other/Iframe/index.ts -------------------------------------------------------------------------------- /src/components/ChartComponents/Other/Iframe/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Other/Iframe/type.ts -------------------------------------------------------------------------------- /src/components/ChartComponents/Other/List/config/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Other/List/config/index.tsx -------------------------------------------------------------------------------- /src/components/ChartComponents/Other/List/defaultConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Other/List/defaultConfig.ts -------------------------------------------------------------------------------- /src/components/ChartComponents/Other/List/id.ts: -------------------------------------------------------------------------------- 1 | export const CHART_ID: ComponentSelfType = 'LIST'; 2 | -------------------------------------------------------------------------------- /src/components/ChartComponents/Other/List/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Other/List/index.ts -------------------------------------------------------------------------------- /src/components/ChartComponents/Other/List/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Other/List/type.ts -------------------------------------------------------------------------------- /src/components/ChartComponents/Other/LuckyDraw/id.ts: -------------------------------------------------------------------------------- 1 | export const CHART_ID: ComponentSelfType = 'LUCKY_DRAW'; 2 | -------------------------------------------------------------------------------- /src/components/ChartComponents/Other/LuckyDraw/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Other/LuckyDraw/index.ts -------------------------------------------------------------------------------- /src/components/ChartComponents/Other/LuckyDraw/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Other/LuckyDraw/type.ts -------------------------------------------------------------------------------- /src/components/ChartComponents/Other/PathBasic/id.ts: -------------------------------------------------------------------------------- 1 | export const CHART_ID: ComponentSelfType = 'PATH_BASIC'; 2 | -------------------------------------------------------------------------------- /src/components/ChartComponents/Other/PathBasic/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Other/PathBasic/index.ts -------------------------------------------------------------------------------- /src/components/ChartComponents/Other/PathBasic/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Other/PathBasic/type.ts -------------------------------------------------------------------------------- /src/components/ChartComponents/Other/QrCode/config/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Other/QrCode/config/index.tsx -------------------------------------------------------------------------------- /src/components/ChartComponents/Other/QrCode/id.ts: -------------------------------------------------------------------------------- 1 | export const CHART_ID: ComponentSelfType = 'QR_CODE'; 2 | -------------------------------------------------------------------------------- /src/components/ChartComponents/Other/QrCode/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Other/QrCode/index.ts -------------------------------------------------------------------------------- /src/components/ChartComponents/Other/QrCode/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Other/QrCode/type.ts -------------------------------------------------------------------------------- /src/components/ChartComponents/Other/StateCard/id.ts: -------------------------------------------------------------------------------- 1 | export const CHART_ID: ComponentSelfType = 'STATE_CARD'; 2 | -------------------------------------------------------------------------------- /src/components/ChartComponents/Other/StateCard/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Other/StateCard/index.ts -------------------------------------------------------------------------------- /src/components/ChartComponents/Other/StateCard/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Other/StateCard/type.ts -------------------------------------------------------------------------------- /src/components/ChartComponents/Other/StateList/id.ts: -------------------------------------------------------------------------------- 1 | export const CHART_ID: ComponentSelfType = 'STATE_LIST'; 2 | -------------------------------------------------------------------------------- /src/components/ChartComponents/Other/StateList/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Other/StateList/index.ts -------------------------------------------------------------------------------- /src/components/ChartComponents/Other/StateList/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Other/StateList/type.ts -------------------------------------------------------------------------------- /src/components/ChartComponents/Other/WaterBall/id.ts: -------------------------------------------------------------------------------- 1 | export const CHART_ID: ComponentSelfType = 'WATER_BALL'; 2 | -------------------------------------------------------------------------------- /src/components/ChartComponents/Other/WaterBall/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Other/WaterBall/index.ts -------------------------------------------------------------------------------- /src/components/ChartComponents/Other/WaterBall/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Other/WaterBall/type.ts -------------------------------------------------------------------------------- /src/components/ChartComponents/Other/Weather/id.ts: -------------------------------------------------------------------------------- 1 | export const CHART_ID: ComponentSelfType = 'WEATHER'; 2 | -------------------------------------------------------------------------------- /src/components/ChartComponents/Other/Weather/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Other/Weather/index.ts -------------------------------------------------------------------------------- /src/components/ChartComponents/Other/Weather/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Other/Weather/type.ts -------------------------------------------------------------------------------- /src/components/ChartComponents/Other/WordCloud/id.ts: -------------------------------------------------------------------------------- 1 | export const CHART_ID: ComponentSelfType = 'WORD_CLOUD_BASIC'; 2 | -------------------------------------------------------------------------------- /src/components/ChartComponents/Other/WordCloud/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Other/WordCloud/index.ts -------------------------------------------------------------------------------- /src/components/ChartComponents/Other/WordCloud/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Other/WordCloud/type.ts -------------------------------------------------------------------------------- /src/components/ChartComponents/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/README.md -------------------------------------------------------------------------------- /src/components/ChartComponents/Source/Decoration1/component/index.less: -------------------------------------------------------------------------------- 1 | .component-source-decoration-1 { 2 | overflow: hidden; 3 | } 4 | -------------------------------------------------------------------------------- /src/components/ChartComponents/Source/Decoration1/id.ts: -------------------------------------------------------------------------------- 1 | export const CHART_ID: ComponentSelfType = 'DECORATION_1'; 2 | -------------------------------------------------------------------------------- /src/components/ChartComponents/Source/Decoration1/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Source/Decoration1/type.ts -------------------------------------------------------------------------------- /src/components/ChartComponents/Source/Decoration2/component/index.less: -------------------------------------------------------------------------------- 1 | .component-source-decoration-2 { 2 | overflow: hidden; 3 | } 4 | -------------------------------------------------------------------------------- /src/components/ChartComponents/Source/Decoration2/id.ts: -------------------------------------------------------------------------------- 1 | export const CHART_ID: ComponentSelfType = 'DECORATION_2'; 2 | -------------------------------------------------------------------------------- /src/components/ChartComponents/Source/Decoration2/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Source/Decoration2/type.ts -------------------------------------------------------------------------------- /src/components/ChartComponents/Source/Decoration3/component/index.less: -------------------------------------------------------------------------------- 1 | .component-source-decoration-3 { 2 | overflow: hidden; 3 | } 4 | -------------------------------------------------------------------------------- /src/components/ChartComponents/Source/Decoration3/id.ts: -------------------------------------------------------------------------------- 1 | export const CHART_ID: ComponentSelfType = 'DECORATION_3'; 2 | -------------------------------------------------------------------------------- /src/components/ChartComponents/Source/Decoration3/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Source/Decoration3/type.ts -------------------------------------------------------------------------------- /src/components/ChartComponents/Source/Decoration4/component/index.less: -------------------------------------------------------------------------------- 1 | .component-source-decoration-4 { 2 | overflow: hidden; 3 | } 4 | -------------------------------------------------------------------------------- /src/components/ChartComponents/Source/Decoration4/id.ts: -------------------------------------------------------------------------------- 1 | export const CHART_ID: ComponentSelfType = 'DECORATION_4'; 2 | -------------------------------------------------------------------------------- /src/components/ChartComponents/Source/Decoration4/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Source/Decoration4/type.ts -------------------------------------------------------------------------------- /src/components/ChartComponents/Source/Decoration5/component/index.less: -------------------------------------------------------------------------------- 1 | .component-source-decoration-5 { 2 | overflow: hidden; 3 | } 4 | -------------------------------------------------------------------------------- /src/components/ChartComponents/Source/Decoration5/id.ts: -------------------------------------------------------------------------------- 1 | export const CHART_ID: ComponentSelfType = 'DECORATION_5'; 2 | -------------------------------------------------------------------------------- /src/components/ChartComponents/Source/Decoration5/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Source/Decoration5/type.ts -------------------------------------------------------------------------------- /src/components/ChartComponents/Source/Decoration6/component/index.less: -------------------------------------------------------------------------------- 1 | .component-source-decoration-6 { 2 | overflow: hidden; 3 | } 4 | -------------------------------------------------------------------------------- /src/components/ChartComponents/Source/Decoration6/id.ts: -------------------------------------------------------------------------------- 1 | export const CHART_ID: ComponentSelfType = 'DECORATION_6'; 2 | -------------------------------------------------------------------------------- /src/components/ChartComponents/Source/Decoration6/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Source/Decoration6/type.ts -------------------------------------------------------------------------------- /src/components/ChartComponents/Source/Decoration7/component/index.less: -------------------------------------------------------------------------------- 1 | .component-source-decoration-7 { 2 | overflow: hidden; 3 | } 4 | -------------------------------------------------------------------------------- /src/components/ChartComponents/Source/Decoration7/id.ts: -------------------------------------------------------------------------------- 1 | export const CHART_ID: ComponentSelfType = 'DECORATION_7'; 2 | -------------------------------------------------------------------------------- /src/components/ChartComponents/Source/Decoration7/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Source/Decoration7/type.ts -------------------------------------------------------------------------------- /src/components/ChartComponents/Source/Decoration8/component/index.less: -------------------------------------------------------------------------------- 1 | .component-source-decoration-8 { 2 | overflow: hidden; 3 | } 4 | -------------------------------------------------------------------------------- /src/components/ChartComponents/Source/Decoration8/id.ts: -------------------------------------------------------------------------------- 1 | export const CHART_ID: ComponentSelfType = 'DECORATION_8'; 2 | -------------------------------------------------------------------------------- /src/components/ChartComponents/Source/Decoration8/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Source/Decoration8/type.ts -------------------------------------------------------------------------------- /src/components/ChartComponents/Source/Ticket/id.ts: -------------------------------------------------------------------------------- 1 | export const CHART_ID: ComponentSelfType = 'TICKET'; 2 | -------------------------------------------------------------------------------- /src/components/ChartComponents/Source/Ticket/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Source/Ticket/index.ts -------------------------------------------------------------------------------- /src/components/ChartComponents/Source/Ticket/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Source/Ticket/type.ts -------------------------------------------------------------------------------- /src/components/ChartComponents/Source/Typed/component/index.less: -------------------------------------------------------------------------------- 1 | .component-source-typed { 2 | overflow: hidden; 3 | } 4 | -------------------------------------------------------------------------------- /src/components/ChartComponents/Source/Typed/id.ts: -------------------------------------------------------------------------------- 1 | export const CHART_ID: ComponentSelfType = 'TYPED'; 2 | -------------------------------------------------------------------------------- /src/components/ChartComponents/Source/Typed/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Source/Typed/index.ts -------------------------------------------------------------------------------- /src/components/ChartComponents/Source/Typed/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/Source/Typed/type.ts -------------------------------------------------------------------------------- /src/components/ChartComponents/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ChartComponents/index.ts -------------------------------------------------------------------------------- /src/components/CodeEditor/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/CodeEditor/index.tsx -------------------------------------------------------------------------------- /src/components/CodeView/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/CodeView/index.tsx -------------------------------------------------------------------------------- /src/components/ColorGradientSelect/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ColorGradientSelect/index.less -------------------------------------------------------------------------------- /src/components/ColorGradientSelect/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ColorGradientSelect/index.tsx -------------------------------------------------------------------------------- /src/components/ColorImageBackground/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ColorImageBackground/index.less -------------------------------------------------------------------------------- /src/components/ColorImageBackground/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ColorImageBackground/index.tsx -------------------------------------------------------------------------------- /src/components/ColorMatcher/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ColorMatcher/index.tsx -------------------------------------------------------------------------------- /src/components/ColorSelect/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ColorSelect/index.less -------------------------------------------------------------------------------- /src/components/ColorSelect/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ColorSelect/index.tsx -------------------------------------------------------------------------------- /src/components/ComponentError/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ComponentError/index.less -------------------------------------------------------------------------------- /src/components/ComponentError/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ComponentError/index.tsx -------------------------------------------------------------------------------- /src/components/ComponentSelect/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ComponentSelect/index.less -------------------------------------------------------------------------------- /src/components/ComponentSelect/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ComponentSelect/index.tsx -------------------------------------------------------------------------------- /src/components/ConfirmModal/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ConfirmModal/index.tsx -------------------------------------------------------------------------------- /src/components/ContextMenu/Actions/Bottom.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ContextMenu/Actions/Bottom.tsx -------------------------------------------------------------------------------- /src/components/ContextMenu/Actions/Clone.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ContextMenu/Actions/Clone.tsx -------------------------------------------------------------------------------- /src/components/ContextMenu/Actions/Copy.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ContextMenu/Actions/Copy.tsx -------------------------------------------------------------------------------- /src/components/ContextMenu/Actions/Delete.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ContextMenu/Actions/Delete.tsx -------------------------------------------------------------------------------- /src/components/ContextMenu/Actions/EditName.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ContextMenu/Actions/EditName.tsx -------------------------------------------------------------------------------- /src/components/ContextMenu/Actions/Group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ContextMenu/Actions/Group.tsx -------------------------------------------------------------------------------- /src/components/ContextMenu/Actions/Lock.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ContextMenu/Actions/Lock.tsx -------------------------------------------------------------------------------- /src/components/ContextMenu/Actions/NextOrder.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ContextMenu/Actions/NextOrder.tsx -------------------------------------------------------------------------------- /src/components/ContextMenu/Actions/Paste.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ContextMenu/Actions/Paste.tsx -------------------------------------------------------------------------------- /src/components/ContextMenu/Actions/PrevOrder.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ContextMenu/Actions/PrevOrder.tsx -------------------------------------------------------------------------------- /src/components/ContextMenu/Actions/RecoverDefault.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ContextMenu/Actions/RecoverDefault.tsx -------------------------------------------------------------------------------- /src/components/ContextMenu/Actions/Redo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ContextMenu/Actions/Redo.tsx -------------------------------------------------------------------------------- /src/components/ContextMenu/Actions/Show.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ContextMenu/Actions/Show.tsx -------------------------------------------------------------------------------- /src/components/ContextMenu/Actions/Top.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ContextMenu/Actions/Top.tsx -------------------------------------------------------------------------------- /src/components/ContextMenu/Actions/UnGroup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ContextMenu/Actions/UnGroup.tsx -------------------------------------------------------------------------------- /src/components/ContextMenu/Actions/Undo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ContextMenu/Actions/Undo.tsx -------------------------------------------------------------------------------- /src/components/ContextMenu/Actions/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ContextMenu/Actions/index.tsx -------------------------------------------------------------------------------- /src/components/ContextMenu/Actions/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ContextMenu/Actions/type.ts -------------------------------------------------------------------------------- /src/components/ContextMenu/Actions/useChildren.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ContextMenu/Actions/useChildren.tsx -------------------------------------------------------------------------------- /src/components/ContextMenu/action.map.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ContextMenu/action.map.ts -------------------------------------------------------------------------------- /src/components/ContextMenu/connect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ContextMenu/connect.ts -------------------------------------------------------------------------------- /src/components/ContextMenu/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ContextMenu/index.tsx -------------------------------------------------------------------------------- /src/components/CoverSelect/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/CoverSelect/index.tsx -------------------------------------------------------------------------------- /src/components/DebounceButton/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/DebounceButton/index.tsx -------------------------------------------------------------------------------- /src/components/Decoration/Decoration1/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/Decoration/Decoration1/index.less -------------------------------------------------------------------------------- /src/components/Decoration/Decoration1/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/Decoration/Decoration1/index.tsx -------------------------------------------------------------------------------- /src/components/Decoration/Decoration11/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/Decoration/Decoration11/index.less -------------------------------------------------------------------------------- /src/components/Decoration/Decoration11/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/Decoration/Decoration11/index.tsx -------------------------------------------------------------------------------- /src/components/Decoration/Decoration2/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/Decoration/Decoration2/index.less -------------------------------------------------------------------------------- /src/components/Decoration/Decoration2/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/Decoration/Decoration2/index.tsx -------------------------------------------------------------------------------- /src/components/Decoration/Decoration3/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/Decoration/Decoration3/index.less -------------------------------------------------------------------------------- /src/components/Decoration/Decoration3/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/Decoration/Decoration3/index.tsx -------------------------------------------------------------------------------- /src/components/Decoration/Decoration4/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/Decoration/Decoration4/index.less -------------------------------------------------------------------------------- /src/components/Decoration/Decoration4/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/Decoration/Decoration4/index.tsx -------------------------------------------------------------------------------- /src/components/Decoration/Decoration5/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/Decoration/Decoration5/index.less -------------------------------------------------------------------------------- /src/components/Decoration/Decoration5/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/Decoration/Decoration5/index.tsx -------------------------------------------------------------------------------- /src/components/Decoration/Decoration6/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/Decoration/Decoration6/index.less -------------------------------------------------------------------------------- /src/components/Decoration/Decoration6/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/Decoration/Decoration6/index.tsx -------------------------------------------------------------------------------- /src/components/Decoration/Decoration8/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/Decoration/Decoration8/index.less -------------------------------------------------------------------------------- /src/components/Decoration/Decoration8/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/Decoration/Decoration8/index.tsx -------------------------------------------------------------------------------- /src/components/DeepStructureComponent/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/DeepStructureComponent/index.tsx -------------------------------------------------------------------------------- /src/components/DesignerBackground/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/DesignerBackground/index.less -------------------------------------------------------------------------------- /src/components/DesignerBackground/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/DesignerBackground/index.tsx -------------------------------------------------------------------------------- /src/components/Empty/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/Empty/index.tsx -------------------------------------------------------------------------------- /src/components/EnterSubmitWrapper/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/EnterSubmitWrapper/index.tsx -------------------------------------------------------------------------------- /src/components/FocusWrapper/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/FocusWrapper/index.tsx -------------------------------------------------------------------------------- /src/components/GhostButton/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/GhostButton/index.less -------------------------------------------------------------------------------- /src/components/GhostButton/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/GhostButton/index.tsx -------------------------------------------------------------------------------- /src/components/GlobalLoadingActionButton/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/GlobalLoadingActionButton/index.tsx -------------------------------------------------------------------------------- /src/components/GuideLine/connect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/GuideLine/connect.ts -------------------------------------------------------------------------------- /src/components/GuideLine/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/GuideLine/index.less -------------------------------------------------------------------------------- /src/components/GuideLine/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/GuideLine/index.tsx -------------------------------------------------------------------------------- /src/components/GuideLine/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/GuideLine/utils.ts -------------------------------------------------------------------------------- /src/components/IconTooltip/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/IconTooltip/index.less -------------------------------------------------------------------------------- /src/components/IconTooltip/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/IconTooltip/index.tsx -------------------------------------------------------------------------------- /src/components/ImageUpload/Input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ImageUpload/Input.tsx -------------------------------------------------------------------------------- /src/components/ImageUpload/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ImageUpload/index.less -------------------------------------------------------------------------------- /src/components/ImageUpload/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ImageUpload/index.tsx -------------------------------------------------------------------------------- /src/components/InternalBackground/components/Background/index.less: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/InternalBackground/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/InternalBackground/index.tsx -------------------------------------------------------------------------------- /src/components/InternalBorder/components/Border/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/InternalBorder/components/Border/hooks.ts -------------------------------------------------------------------------------- /src/components/InternalBorder/components/Border/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/InternalBorder/components/Border/index.tsx -------------------------------------------------------------------------------- /src/components/InternalBorder/components/Border/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/InternalBorder/components/Border/type.ts -------------------------------------------------------------------------------- /src/components/InternalBorder/connect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/InternalBorder/connect.ts -------------------------------------------------------------------------------- /src/components/InternalBorder/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/InternalBorder/index.tsx -------------------------------------------------------------------------------- /src/components/IntroductionButton/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/IntroductionButton/index.less -------------------------------------------------------------------------------- /src/components/IntroductionButton/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/IntroductionButton/index.tsx -------------------------------------------------------------------------------- /src/components/LazyLoad/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/LazyLoad/index.tsx -------------------------------------------------------------------------------- /src/components/LoadingButton/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/LoadingButton/index.tsx -------------------------------------------------------------------------------- /src/components/PageLoading/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/PageLoading/index.less -------------------------------------------------------------------------------- /src/components/PageLoading/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/PageLoading/index.tsx -------------------------------------------------------------------------------- /src/components/ParamsSelect/connect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ParamsSelect/connect.ts -------------------------------------------------------------------------------- /src/components/ParamsSelect/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ParamsSelect/index.less -------------------------------------------------------------------------------- /src/components/ParamsSelect/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ParamsSelect/index.tsx -------------------------------------------------------------------------------- /src/components/PromptChrome/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/PromptChrome/index.less -------------------------------------------------------------------------------- /src/components/PromptChrome/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/PromptChrome/index.tsx -------------------------------------------------------------------------------- /src/components/RelationBorder/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/RelationBorder/index.less -------------------------------------------------------------------------------- /src/components/RelationBorder/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/RelationBorder/index.tsx -------------------------------------------------------------------------------- /src/components/RequestMessage/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/RequestMessage/index.tsx -------------------------------------------------------------------------------- /src/components/Ruler/connect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/Ruler/connect.ts -------------------------------------------------------------------------------- /src/components/Ruler/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/Ruler/index.tsx -------------------------------------------------------------------------------- /src/components/ScreenComponentConfigChangeTooltip/index.less: -------------------------------------------------------------------------------- 1 | .screen-component-config-change-tooltip { 2 | } 3 | -------------------------------------------------------------------------------- /src/components/ScrollText/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ScrollText/index.less -------------------------------------------------------------------------------- /src/components/ScrollText/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/ScrollText/index.tsx -------------------------------------------------------------------------------- /src/components/SyncCodeEditor/Clipboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/SyncCodeEditor/Clipboard.tsx -------------------------------------------------------------------------------- /src/components/SyncCodeEditor/Editor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/SyncCodeEditor/Editor.tsx -------------------------------------------------------------------------------- /src/components/SyncCodeEditor/EditorNext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/SyncCodeEditor/EditorNext.tsx -------------------------------------------------------------------------------- /src/components/SyncCodeEditor/FullScreenEditor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/SyncCodeEditor/FullScreenEditor.tsx -------------------------------------------------------------------------------- /src/components/SyncCodeEditor/FunctionHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/SyncCodeEditor/FunctionHeader.tsx -------------------------------------------------------------------------------- /src/components/SyncCodeEditor/Typesetting.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/SyncCodeEditor/Typesetting.tsx -------------------------------------------------------------------------------- /src/components/SyncCodeEditor/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/SyncCodeEditor/index.less -------------------------------------------------------------------------------- /src/components/SyncCodeEditor/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/SyncCodeEditor/index.tsx -------------------------------------------------------------------------------- /src/components/Tooltip/index.less: -------------------------------------------------------------------------------- 1 | .tooltip-background-cls { 2 | color: red; 3 | } 4 | -------------------------------------------------------------------------------- /src/components/Tooltip/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/Tooltip/index.tsx -------------------------------------------------------------------------------- /src/components/Winbox/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/components/Winbox/index.tsx -------------------------------------------------------------------------------- /src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/favicon.ico -------------------------------------------------------------------------------- /src/global.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/global.less -------------------------------------------------------------------------------- /src/global.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/global.ts -------------------------------------------------------------------------------- /src/hooks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/hooks/index.ts -------------------------------------------------------------------------------- /src/hooks/useAnyDva.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/hooks/useAnyDva.ts -------------------------------------------------------------------------------- /src/hooks/useBackground.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/hooks/useBackground.ts -------------------------------------------------------------------------------- /src/hooks/useClipPath.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/hooks/useClipPath.ts -------------------------------------------------------------------------------- /src/hooks/useComponentHover.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/hooks/useComponentHover.ts -------------------------------------------------------------------------------- /src/hooks/useComponentStyle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/hooks/useComponentStyle.ts -------------------------------------------------------------------------------- /src/hooks/useComponentsPath.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/hooks/useComponentsPath.ts -------------------------------------------------------------------------------- /src/hooks/useControlModalDisabledKeyPressVisible.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/hooks/useControlModalDisabledKeyPressVisible.ts -------------------------------------------------------------------------------- /src/hooks/useDeepUpdateEffect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/hooks/useDeepUpdateEffect.ts -------------------------------------------------------------------------------- /src/hooks/useFirstChange.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/hooks/useFirstChange.ts -------------------------------------------------------------------------------- /src/hooks/useGetUserInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/hooks/useGetUserInfo.ts -------------------------------------------------------------------------------- /src/hooks/useGlobalLoading.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/hooks/useGlobalLoading.ts -------------------------------------------------------------------------------- /src/hooks/useHash.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/hooks/useHash.ts -------------------------------------------------------------------------------- /src/hooks/useIsScrolling.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/hooks/useIsScrolling.ts -------------------------------------------------------------------------------- /src/hooks/useLayerHover.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/hooks/useLayerHover.ts -------------------------------------------------------------------------------- /src/hooks/useLocalStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/hooks/useLocalStorage.ts -------------------------------------------------------------------------------- /src/hooks/usePanelFocus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/hooks/usePanelFocus.ts -------------------------------------------------------------------------------- /src/hooks/usePrimaryColor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/hooks/usePrimaryColor.ts -------------------------------------------------------------------------------- /src/hooks/useResponseData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/hooks/useResponseData.ts -------------------------------------------------------------------------------- /src/hooks/useScrollBar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/hooks/useScrollBar.ts -------------------------------------------------------------------------------- /src/hooks/useValidatorChange.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/hooks/useValidatorChange.ts -------------------------------------------------------------------------------- /src/layouts/AuthLayout/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/layouts/AuthLayout/index.tsx -------------------------------------------------------------------------------- /src/layouts/CommonLayout/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/layouts/CommonLayout/index.tsx -------------------------------------------------------------------------------- /src/layouts/StaticLayout/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/layouts/StaticLayout/index.tsx -------------------------------------------------------------------------------- /src/layouts/components/Avatar/connect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/layouts/components/Avatar/connect.ts -------------------------------------------------------------------------------- /src/layouts/components/Avatar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/layouts/components/Avatar/index.tsx -------------------------------------------------------------------------------- /src/layouts/components/CommonLayout/ListLayout/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/layouts/components/CommonLayout/ListLayout/index.less -------------------------------------------------------------------------------- /src/layouts/components/CommonLayout/ListLayout/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/layouts/components/CommonLayout/ListLayout/index.tsx -------------------------------------------------------------------------------- /src/layouts/components/CommonLayout/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/layouts/components/CommonLayout/index.tsx -------------------------------------------------------------------------------- /src/lib/color-thief.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/lib/color-thief.js -------------------------------------------------------------------------------- /src/lib/shine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/lib/shine.js -------------------------------------------------------------------------------- /src/loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/loading.tsx -------------------------------------------------------------------------------- /src/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/manifest.json -------------------------------------------------------------------------------- /src/models/connect.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/models/connect.d.ts -------------------------------------------------------------------------------- /src/models/data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/models/data.ts -------------------------------------------------------------------------------- /src/models/global.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/models/global.ts -------------------------------------------------------------------------------- /src/models/local.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/models/local.ts -------------------------------------------------------------------------------- /src/models/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/models/settings.ts -------------------------------------------------------------------------------- /src/models/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/models/user.ts -------------------------------------------------------------------------------- /src/pages/Designer/components/Header/ActionList/index.less: -------------------------------------------------------------------------------- 1 | .design-header-action { 2 | height: 30px; 3 | } 4 | -------------------------------------------------------------------------------- /src/pages/Designer/components/Header/ActionList/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/pages/Designer/components/Header/ActionList/index.tsx -------------------------------------------------------------------------------- /src/pages/Designer/components/Header/connect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/pages/Designer/components/Header/connect.ts -------------------------------------------------------------------------------- /src/pages/Designer/components/Header/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/pages/Designer/components/Header/index.less -------------------------------------------------------------------------------- /src/pages/Designer/components/Header/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/pages/Designer/components/Header/index.tsx -------------------------------------------------------------------------------- /src/pages/Designer/components/LeftContent/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/pages/Designer/components/LeftContent/index.less -------------------------------------------------------------------------------- /src/pages/Designer/components/LeftContent/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/pages/Designer/components/LeftContent/index.tsx -------------------------------------------------------------------------------- /src/pages/Designer/components/PageLoading/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/pages/Designer/components/PageLoading/index.less -------------------------------------------------------------------------------- /src/pages/Designer/components/PageLoading/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/pages/Designer/components/PageLoading/index.tsx -------------------------------------------------------------------------------- /src/pages/Designer/components/Panel/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/pages/Designer/components/Panel/index.less -------------------------------------------------------------------------------- /src/pages/Designer/components/Panel/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/pages/Designer/components/Panel/index.tsx -------------------------------------------------------------------------------- /src/pages/Designer/components/RenderComponent/connect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/pages/Designer/components/RenderComponent/connect.ts -------------------------------------------------------------------------------- /src/pages/Designer/components/RenderComponent/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/pages/Designer/components/RenderComponent/index.less -------------------------------------------------------------------------------- /src/pages/Designer/components/RenderComponent/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/pages/Designer/components/RenderComponent/index.tsx -------------------------------------------------------------------------------- /src/pages/Designer/components/RightContent/connect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/pages/Designer/components/RightContent/connect.ts -------------------------------------------------------------------------------- /src/pages/Designer/components/RightContent/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/pages/Designer/components/RightContent/index.less -------------------------------------------------------------------------------- /src/pages/Designer/components/RightContent/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/pages/Designer/components/RightContent/index.tsx -------------------------------------------------------------------------------- /src/pages/Designer/components/ShepherdWrapper/connect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/pages/Designer/components/ShepherdWrapper/connect.ts -------------------------------------------------------------------------------- /src/pages/Designer/components/ShepherdWrapper/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/pages/Designer/components/ShepherdWrapper/index.less -------------------------------------------------------------------------------- /src/pages/Designer/components/ShepherdWrapper/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/pages/Designer/components/ShepherdWrapper/index.tsx -------------------------------------------------------------------------------- /src/pages/Designer/connect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/pages/Designer/connect.ts -------------------------------------------------------------------------------- /src/pages/Designer/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/pages/Designer/index.less -------------------------------------------------------------------------------- /src/pages/Designer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/pages/Designer/index.tsx -------------------------------------------------------------------------------- /src/pages/Designer/utils/component/GenerateList/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/pages/Designer/utils/component/GenerateList/index.tsx -------------------------------------------------------------------------------- /src/pages/Designer/utils/component/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/pages/Designer/utils/component/index.tsx -------------------------------------------------------------------------------- /src/pages/Forget/connect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/pages/Forget/connect.ts -------------------------------------------------------------------------------- /src/pages/Forget/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/pages/Forget/index.tsx -------------------------------------------------------------------------------- /src/pages/Home/components/ActionSection/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/pages/Home/components/ActionSection/index.less -------------------------------------------------------------------------------- /src/pages/Home/components/ActionSection/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/pages/Home/components/ActionSection/index.tsx -------------------------------------------------------------------------------- /src/pages/Home/components/AnimationSection/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/pages/Home/components/AnimationSection/index.less -------------------------------------------------------------------------------- /src/pages/Home/components/AnimationSection/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/pages/Home/components/AnimationSection/index.tsx -------------------------------------------------------------------------------- /src/pages/Home/components/AnimationSvg/Animation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/pages/Home/components/AnimationSvg/Animation.tsx -------------------------------------------------------------------------------- /src/pages/Home/components/AnimationSvg/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/pages/Home/components/AnimationSvg/index.tsx -------------------------------------------------------------------------------- /src/pages/Home/components/AnimationTitle/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/pages/Home/components/AnimationTitle/index.less -------------------------------------------------------------------------------- /src/pages/Home/components/AnimationTitle/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/pages/Home/components/AnimationTitle/index.tsx -------------------------------------------------------------------------------- /src/pages/Home/components/Background/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/pages/Home/components/Background/index.less -------------------------------------------------------------------------------- /src/pages/Home/components/Background/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/pages/Home/components/Background/index.tsx -------------------------------------------------------------------------------- /src/pages/Home/components/LinearBackground/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/pages/Home/components/LinearBackground/index.less -------------------------------------------------------------------------------- /src/pages/Home/components/LinearBackground/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/pages/Home/components/LinearBackground/index.tsx -------------------------------------------------------------------------------- /src/pages/Home/components/MatterBoxes/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/pages/Home/components/MatterBoxes/index.less -------------------------------------------------------------------------------- /src/pages/Home/components/MatterBoxes/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/pages/Home/components/MatterBoxes/index.tsx -------------------------------------------------------------------------------- /src/pages/Home/components/SubMainSection/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/pages/Home/components/SubMainSection/index.less -------------------------------------------------------------------------------- /src/pages/Home/components/SubMainSection/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/pages/Home/components/SubMainSection/index.tsx -------------------------------------------------------------------------------- /src/pages/Home/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/pages/Home/index.less -------------------------------------------------------------------------------- /src/pages/Home/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/pages/Home/index.tsx -------------------------------------------------------------------------------- /src/pages/Login/components/Background/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/pages/Login/components/Background/index.tsx -------------------------------------------------------------------------------- /src/pages/Login/connect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/pages/Login/connect.ts -------------------------------------------------------------------------------- /src/pages/Login/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/pages/Login/index.less -------------------------------------------------------------------------------- /src/pages/Login/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/pages/Login/index.tsx -------------------------------------------------------------------------------- /src/pages/ModelList/components/List/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/pages/ModelList/components/List/index.less -------------------------------------------------------------------------------- /src/pages/ModelList/components/List/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/pages/ModelList/components/List/index.tsx -------------------------------------------------------------------------------- /src/pages/ModelList/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/pages/ModelList/index.less -------------------------------------------------------------------------------- /src/pages/ModelList/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/pages/ModelList/index.tsx -------------------------------------------------------------------------------- /src/pages/Previewer/connect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/pages/Previewer/connect.ts -------------------------------------------------------------------------------- /src/pages/Previewer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/pages/Previewer/index.tsx -------------------------------------------------------------------------------- /src/pages/Register/connect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/pages/Register/connect.ts -------------------------------------------------------------------------------- /src/pages/Register/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/pages/Register/index.tsx -------------------------------------------------------------------------------- /src/pages/ScreenList/components/AddDesigner/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/pages/ScreenList/components/AddDesigner/index.tsx -------------------------------------------------------------------------------- /src/pages/ScreenList/components/ScreenList/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/pages/ScreenList/components/ScreenList/index.less -------------------------------------------------------------------------------- /src/pages/ScreenList/components/ScreenList/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/pages/ScreenList/components/ScreenList/index.tsx -------------------------------------------------------------------------------- /src/pages/ScreenList/components/SvgAnimation/SvgMap.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/pages/ScreenList/components/SvgAnimation/SvgMap.tsx -------------------------------------------------------------------------------- /src/pages/ScreenList/components/SvgAnimation/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/pages/ScreenList/components/SvgAnimation/index.less -------------------------------------------------------------------------------- /src/pages/ScreenList/components/SvgAnimation/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/pages/ScreenList/components/SvgAnimation/index.tsx -------------------------------------------------------------------------------- /src/pages/ScreenList/connect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/pages/ScreenList/connect.ts -------------------------------------------------------------------------------- /src/pages/ScreenList/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/pages/ScreenList/index.less -------------------------------------------------------------------------------- /src/pages/ScreenList/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/pages/ScreenList/index.tsx -------------------------------------------------------------------------------- /src/pages/Share/components/PainterWrapper/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/pages/Share/components/PainterWrapper/index.tsx -------------------------------------------------------------------------------- /src/pages/Share/components/PasswordConfirm/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/pages/Share/components/PasswordConfirm/index.tsx -------------------------------------------------------------------------------- /src/pages/Share/components/WaterMark/connect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/pages/Share/components/WaterMark/connect.ts -------------------------------------------------------------------------------- /src/pages/Share/components/WaterMark/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/pages/Share/components/WaterMark/index.less -------------------------------------------------------------------------------- /src/pages/Share/components/WaterMark/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/pages/Share/components/WaterMark/index.tsx -------------------------------------------------------------------------------- /src/pages/Share/connect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/pages/Share/connect.ts -------------------------------------------------------------------------------- /src/pages/Share/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/pages/Share/index.less -------------------------------------------------------------------------------- /src/pages/Share/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/pages/Share/index.tsx -------------------------------------------------------------------------------- /src/pages/Share/useResize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/pages/Share/useResize.ts -------------------------------------------------------------------------------- /src/pages/Share/useWrapperProps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/pages/Share/useWrapperProps.ts -------------------------------------------------------------------------------- /src/pages/Test/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/pages/Test/index.tsx -------------------------------------------------------------------------------- /src/pages/Viewer/connect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/pages/Viewer/connect.ts -------------------------------------------------------------------------------- /src/pages/Viewer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/pages/Viewer/index.tsx -------------------------------------------------------------------------------- /src/services/api.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/services/api.d.ts -------------------------------------------------------------------------------- /src/services/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/services/index.ts -------------------------------------------------------------------------------- /src/services/mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/services/mock.ts -------------------------------------------------------------------------------- /src/services/model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/services/model.ts -------------------------------------------------------------------------------- /src/services/screen.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/services/screen.ts -------------------------------------------------------------------------------- /src/services/third.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/services/third.ts -------------------------------------------------------------------------------- /src/services/upload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/services/upload.ts -------------------------------------------------------------------------------- /src/services/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/services/user.ts -------------------------------------------------------------------------------- /src/theme/essos.project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/theme/essos.project.json -------------------------------------------------------------------------------- /src/theme/macarons.project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/theme/macarons.project.json -------------------------------------------------------------------------------- /src/theme/roma.project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/theme/roma.project.json -------------------------------------------------------------------------------- /src/theme/shine.project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/theme/shine.project.json -------------------------------------------------------------------------------- /src/theme/westeros.project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/theme/westeros.project.json -------------------------------------------------------------------------------- /src/theme/wonderland.project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/theme/wonderland.project.json -------------------------------------------------------------------------------- /src/typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/typings.d.ts -------------------------------------------------------------------------------- /src/utils/Assist/About/README.md: -------------------------------------------------------------------------------- 1 | 2 | 各种外部链接跳转 -------------------------------------------------------------------------------- /src/utils/Assist/About/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/utils/Assist/About/index.tsx -------------------------------------------------------------------------------- /src/utils/Assist/BreakingChange/ConditionChange/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/utils/Assist/BreakingChange/ConditionChange/README.md -------------------------------------------------------------------------------- /src/utils/Assist/BreakingChange/ConditionChange/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/utils/Assist/BreakingChange/ConditionChange/index.ts -------------------------------------------------------------------------------- /src/utils/Assist/BreakingChange/README.md: -------------------------------------------------------------------------------- 1 | 2 | # Breaking Change 3 | 4 | 这里存放的是一些重大变动,会影响到版本前的大屏的一些`HACK`操作。 -------------------------------------------------------------------------------- /src/utils/Assist/BreakingChange/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/utils/Assist/BreakingChange/index.ts -------------------------------------------------------------------------------- /src/utils/Assist/ClipboardComponent/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/utils/Assist/ClipboardComponent/index.ts -------------------------------------------------------------------------------- /src/utils/Assist/Component/ComponentActionValidator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/utils/Assist/Component/ComponentActionValidator.ts -------------------------------------------------------------------------------- /src/utils/Assist/Component/ComponentThemeChange.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/utils/Assist/Component/ComponentThemeChange.ts -------------------------------------------------------------------------------- /src/utils/Assist/Component/ComponentUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/utils/Assist/Component/ComponentUtil.ts -------------------------------------------------------------------------------- /src/utils/Assist/Component/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/utils/Assist/Component/index.tsx -------------------------------------------------------------------------------- /src/utils/Assist/ComponentSelect/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/utils/Assist/ComponentSelect/index.ts -------------------------------------------------------------------------------- /src/utils/Assist/CopyAndPaste/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/utils/Assist/CopyAndPaste/index.ts -------------------------------------------------------------------------------- /src/utils/Assist/DataChangePool/SaveScreenData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/utils/Assist/DataChangePool/SaveScreenData.ts -------------------------------------------------------------------------------- /src/utils/Assist/DataChangePool/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/utils/Assist/DataChangePool/index.ts -------------------------------------------------------------------------------- /src/utils/Assist/EchartsLoader/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/utils/Assist/EchartsLoader/index.ts -------------------------------------------------------------------------------- /src/utils/Assist/ErrorBoundary/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/utils/Assist/ErrorBoundary/index.ts -------------------------------------------------------------------------------- /src/utils/Assist/EventEmitter/ComponentAbout.event.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/utils/Assist/EventEmitter/ComponentAbout.event.ts -------------------------------------------------------------------------------- /src/utils/Assist/EventEmitter/PresetEmit/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/utils/Assist/EventEmitter/PresetEmit/index.ts -------------------------------------------------------------------------------- /src/utils/Assist/EventEmitter/README.md: -------------------------------------------------------------------------------- 1 | 2 | # 一些事件订阅的事件 -------------------------------------------------------------------------------- /src/utils/Assist/EventEmitter/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/utils/Assist/EventEmitter/index.ts -------------------------------------------------------------------------------- /src/utils/Assist/FilterData/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/utils/Assist/FilterData/index.tsx -------------------------------------------------------------------------------- /src/utils/Assist/GlobalComponent/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/utils/Assist/GlobalComponent/index.ts -------------------------------------------------------------------------------- /src/utils/Assist/GlobalConfig/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/utils/Assist/GlobalConfig/index.ts -------------------------------------------------------------------------------- /src/utils/Assist/GlobalDva/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/utils/Assist/GlobalDva/index.ts -------------------------------------------------------------------------------- /src/utils/Assist/Group/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/utils/Assist/Group/index.ts -------------------------------------------------------------------------------- /src/utils/Assist/History/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/utils/Assist/History/index.ts -------------------------------------------------------------------------------- /src/utils/Assist/Interactive/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/utils/Assist/Interactive/index.ts -------------------------------------------------------------------------------- /src/utils/Assist/LeadInAndOutput/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/utils/Assist/LeadInAndOutput/index.ts -------------------------------------------------------------------------------- /src/utils/Assist/LocalConfig/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/utils/Assist/LocalConfig/index.ts -------------------------------------------------------------------------------- /src/utils/Assist/Logger/RequestLogger/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/utils/Assist/Logger/RequestLogger/index.less -------------------------------------------------------------------------------- /src/utils/Assist/Logger/RequestLogger/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/utils/Assist/Logger/RequestLogger/index.tsx -------------------------------------------------------------------------------- /src/utils/Assist/Logger/Window/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/utils/Assist/Logger/Window/index.less -------------------------------------------------------------------------------- /src/utils/Assist/Logger/Window/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/utils/Assist/Logger/Window/index.tsx -------------------------------------------------------------------------------- /src/utils/Assist/Logger/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/utils/Assist/Logger/index.ts -------------------------------------------------------------------------------- /src/utils/Assist/MultiComponentAction/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/utils/Assist/MultiComponentAction/index.ts -------------------------------------------------------------------------------- /src/utils/Assist/Progress/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/utils/Assist/Progress/index.ts -------------------------------------------------------------------------------- /src/utils/Assist/RequestPool/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/utils/Assist/RequestPool/index.ts -------------------------------------------------------------------------------- /src/utils/Assist/Theme/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/utils/Assist/Theme/index.ts -------------------------------------------------------------------------------- /src/utils/Assist/Upload/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/utils/Assist/Upload/index.ts -------------------------------------------------------------------------------- /src/utils/Assist/VariableString/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/utils/Assist/VariableString/index.ts -------------------------------------------------------------------------------- /src/utils/captureCover.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/utils/captureCover.ts -------------------------------------------------------------------------------- /src/utils/constants/another.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/utils/constants/another.ts -------------------------------------------------------------------------------- /src/utils/constants/color.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/utils/constants/color.ts -------------------------------------------------------------------------------- /src/utils/constants/data.ts: -------------------------------------------------------------------------------- 1 | export const DEFAULT_FILTER_CODE = `return data`; 2 | -------------------------------------------------------------------------------- /src/utils/constants/defaultValue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/utils/constants/defaultValue.ts -------------------------------------------------------------------------------- /src/utils/constants/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/utils/constants/index.ts -------------------------------------------------------------------------------- /src/utils/constants/mobile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/utils/constants/mobile.ts -------------------------------------------------------------------------------- /src/utils/constants/screenData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/utils/constants/screenData.ts -------------------------------------------------------------------------------- /src/utils/constants/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/utils/constants/theme.ts -------------------------------------------------------------------------------- /src/utils/getImageColor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/utils/getImageColor.ts -------------------------------------------------------------------------------- /src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/utils/index.ts -------------------------------------------------------------------------------- /src/utils/request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/utils/request.ts -------------------------------------------------------------------------------- /src/utils/string2arraybuffer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/utils/string2arraybuffer.ts -------------------------------------------------------------------------------- /src/utils/tool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/src/utils/tool.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/tsconfig.json -------------------------------------------------------------------------------- /typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/typings.d.ts -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/food-billboard/create-chart/HEAD/yarn.lock --------------------------------------------------------------------------------