@tipp/ui 1.0.9 → 1.0.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/atoms/field-error-wrapper.js +2 -2
- package/dist/atoms/index.js +45 -45
- package/dist/atoms/pagination.js +2 -2
- package/dist/charts/chart.cjs +1 -0
- package/dist/charts/chart.cjs.map +1 -1
- package/dist/charts/chart.js +1 -1
- package/dist/charts/index.cjs +1 -0
- package/dist/charts/index.cjs.map +1 -1
- package/dist/charts/index.js +1 -1
- package/dist/chunk-527BQG3X.js +181 -0
- package/dist/chunk-527BQG3X.js.map +1 -0
- package/dist/chunk-6ZO2L5PO.js +119 -0
- package/dist/chunk-6ZO2L5PO.js.map +1 -0
- package/dist/chunk-AVOCFCEQ.js +181 -0
- package/dist/chunk-AVOCFCEQ.js.map +1 -0
- package/dist/chunk-VJCKB4FI.js +182 -0
- package/dist/chunk-VJCKB4FI.js.map +1 -0
- package/dist/index.js +56 -56
- package/dist/molecules/expand-table/index.js +21 -21
- package/dist/molecules/expand-table/row.js +19 -19
- package/dist/molecules/index.js +24 -24
- package/dist/molecules/navigation.js +20 -20
- package/package.json +3 -3
- package/src/charts/chart.tsx +1 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/molecules/expand-table/index.tsx"],"sourcesContent":["import type { ColumnDef, SortingState, RowData } from '@tanstack/react-table';\nimport type { CSSProperties } from 'react';\nimport {\n flexRender,\n getCoreRowModel,\n useReactTable,\n getSortedRowModel,\n createColumnHelper,\n} from '@tanstack/react-table';\nimport React, { useMemo, useState } from 'react';\nimport { Flex, Typo } from '../../atoms';\nimport { TriangleArrowDownIcon } from '../../icons/down';\nimport { TriangleArrowUpIcon } from '../../icons/up';\nimport { Row, type ExpandComp, type OnRowClick } from './row';\n\nexport type { ExpandComp, OnRowClick, ColumnDef };\nexport { createColumnHelper };\n\nexport interface ExpandTableProps<Datum extends RowData> {\n /** 렌더할 데이터 배열 */\n data?: Datum[];\n /** 테이블 컬럼의 메타 데이터 */\n columns: ColumnDef<Datum>[];\n /** Row의 open이 true인 경우 하단의 collapse에 렌더할 컴포넌트 */\n ExpandComp?: ExpandComp<Datum>;\n /** 데이테가 없을 시 화면에 표시할 컴포넌트 */\n placeholder?: React.ReactNode;\n /** 행 클릭 시 실행할 콜백 */\n onRowClick?: OnRowClick<Datum>;\n rowStyle?: CSSProperties;\n}\n\nexport function ExpandTable<Datum extends RowData>(\n props: ExpandTableProps<Datum>\n): React.ReactNode {\n const { data, columns, ExpandComp, placeholder, onRowClick } = props;\n\n const [sorting, setSorting] = useState<SortingState>([]);\n const { getRowModel, getHeaderGroups } = useReactTable({\n data: data || [],\n columns,\n getCoreRowModel: getCoreRowModel(),\n getSortedRowModel: getSortedRowModel(),\n state: {\n sorting,\n },\n onSortingChange: setSorting,\n });\n\n const gridColTemp = useMemo<string>(() => {\n return columns\n .map((col) => {\n if (col.meta?.autoSize) return '1fr';\n return `${col.size || 150}px`;\n })\n .join(' ');\n }, [columns]);\n\n const rowModels = getRowModel();\n\n return (\n <div className=\"expand-table\">\n <div className=\"thead\">\n {getHeaderGroups().map((headerGroup) => (\n <div\n className=\"tr\"\n key={headerGroup.id}\n style={{ gridTemplateColumns: gridColTemp }}\n >\n {headerGroup.headers.map((header) => {\n const sortable = header.column.getCanSort();\n const sortedState = header.column.getIsSorted();\n\n return (\n <div className=\"th\" key={header.id}>\n <button\n onClick={header.column.getToggleSortingHandler()}\n style={sortable ? { cursor: 'pointer' } : undefined}\n type=\"button\"\n >\n <Typo variant=\"body\">\n {flexRender(\n header.column.columnDef.header,\n header.getContext()\n )}\n </Typo>\n {sortable ? (\n <Flex\n direction=\"column\"\n style={{ marginLeft: 'var(--space-2)' }}\n >\n <TriangleArrowUpIcon\n color={\n sortedState === 'asc'\n ? 'var(--iris-10)'\n : 'var(--iris-6)'\n }\n />\n <TriangleArrowDownIcon\n color={\n sortedState === 'desc'\n ? 'var(--iris-10)'\n : 'var(--iris-6)'\n }\n />\n </Flex>\n ) : null}\n </button>\n </div>\n );\n })}\n </div>\n ))}\n </div>\n <div className=\"tbody\">\n {/* 데이터가 없을 시 표시되는 노드 */}\n {rowModels.rows.length === 0 && (\n <div className=\"tr\" key=\"expand_placeholder\">\n <Flex align=\"center\" justify=\"center\">\n {placeholder || (\n <Typo color=\"gray\" mb=\"6\" mt=\"6\" variant=\"body\">\n 데이터가 없습니다\n </Typo>\n )}\n </Flex>\n </div>\n )}\n\n {/* 행을 렌더하는 로직 */}\n {rowModels.rows.map((row) => {\n return (\n <Row\n ExpandComp={ExpandComp}\n gridColTemp={gridColTemp}\n key={`row_${row.id}`}\n onRowClick={onRowClick}\n row={row}\n />\n );\n })}\n </div>\n </div>\n );\n}\n"],"mappings":";;;;;;;;;;;;;;;;;AAEA;AAAA,EACE;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,EACA;AAAA,OACK;AACP,SAAgB,SAAS,gBAAgB;AAuErB,cAOE,YAPF;AAhDb,SAAS,YACd,OACiB;AACjB,QAAM,EAAE,MAAM,SAAS,YAAY,aAAa,WAAW,IAAI;AAE/D,QAAM,CAAC,SAAS,UAAU,IAAI,SAAuB,CAAC,CAAC;AACvD,QAAM,EAAE,aAAa,gBAAgB,IAAI,cAAc;AAAA,IACrD,MAAM,QAAQ,CAAC;AAAA,IACf;AAAA,IACA,iBAAiB,gBAAgB;AAAA,IACjC,mBAAmB,kBAAkB;AAAA,IACrC,OAAO;AAAA,MACL;AAAA,IACF;AAAA,IACA,iBAAiB;AAAA,EACnB,CAAC;AAED,QAAM,cAAc,QAAgB,MAAM;AACxC,WAAO,QACJ,IAAI,CAAC,QAAQ;AAnDpB;AAoDQ,WAAI,SAAI,SAAJ,mBAAU;AAAU,eAAO;AAC/B,aAAO,GAAG,IAAI,QAAQ,GAAG;AAAA,IAC3B,CAAC,EACA,KAAK,GAAG;AAAA,EACb,GAAG,CAAC,OAAO,CAAC;AAEZ,QAAM,YAAY,YAAY;AAE9B,SACE,qBAAC,SAAI,WAAU,gBACb;AAAA,wBAAC,SAAI,WAAU,SACZ,0BAAgB,EAAE,IAAI,CAAC,gBACtB;AAAA,MAAC;AAAA;AAAA,QACC,WAAU;AAAA,QAEV,OAAO,EAAE,qBAAqB,YAAY;AAAA,QAEzC,sBAAY,QAAQ,IAAI,CAAC,WAAW;AACnC,gBAAM,WAAW,OAAO,OAAO,WAAW;AAC1C,gBAAM,cAAc,OAAO,OAAO,YAAY;AAE9C,iBACE,oBAAC,SAAI,WAAU,MACb;AAAA,YAAC;AAAA;AAAA,cACC,SAAS,OAAO,OAAO,wBAAwB;AAAA,cAC/C,OAAO,WAAW,EAAE,QAAQ,UAAU,IAAI;AAAA,cAC1C,MAAK;AAAA,cAEL;AAAA,oCAAC,QAAK,SAAQ,QACX;AAAA,kBACC,OAAO,OAAO,UAAU;AAAA,kBACxB,OAAO,WAAW;AAAA,gBACpB,GACF;AAAA,gBACC,WACC;AAAA,kBAAC;AAAA;AAAA,oBACC,WAAU;AAAA,oBACV,OAAO,EAAE,YAAY,iBAAiB;AAAA,oBAEtC;AAAA;AAAA,wBAAC;AAAA;AAAA,0BACC,OACE,gBAAgB,QACZ,mBACA;AAAA;AAAA,sBAER;AAAA,sBACA;AAAA,wBAAC;AAAA;AAAA,0BACC,OACE,gBAAgB,SACZ,mBACA;AAAA;AAAA,sBAER;AAAA;AAAA;AAAA,gBACF,IACE;AAAA;AAAA;AAAA,UACN,KAjCuB,OAAO,EAkChC;AAAA,QAEJ,CAAC;AAAA;AAAA,MA5CI,YAAY;AAAA,IA6CnB,CACD,GACH;AAAA,IACA,qBAAC,SAAI,WAAU,SAEZ;AAAA,gBAAU,KAAK,WAAW,KACzB,oBAAC,SAAI,WAAU,MACb,8BAAC,QAAK,OAAM,UAAS,SAAQ,UAC1B,yBACC,oBAAC,QAAK,OAAM,QAAO,IAAG,KAAI,IAAG,KAAI,SAAQ,QAAO,+DAEhD,GAEJ,KAPsB,oBAQxB;AAAA,MAID,UAAU,KAAK,IAAI,CAAC,QAAQ;AAC3B,eACE;AAAA,UAAC;AAAA;AAAA,YACC;AAAA,YACA;AAAA,YAEA;AAAA,YACA;AAAA;AAAA,UAFK,OAAO,IAAI,EAAE;AAAA,QAGpB;AAAA,MAEJ,CAAC;AAAA,OACH;AAAA,KACF;AAEJ;","names":[]}
|
|
@@ -0,0 +1,181 @@
|
|
|
1
|
+
import {
|
|
2
|
+
__spreadProps,
|
|
3
|
+
__spreadValues
|
|
4
|
+
} from "./chunk-N552FDTV.js";
|
|
5
|
+
|
|
6
|
+
// src/charts/chart.tsx
|
|
7
|
+
import { useMemo } from "react";
|
|
8
|
+
import { useResizeDetector } from "react-resize-detector";
|
|
9
|
+
import ReactECharts from "echarts-for-react";
|
|
10
|
+
import { merge } from "lodash-es";
|
|
11
|
+
|
|
12
|
+
// src/charts/chart-theme.json
|
|
13
|
+
var chart_theme_default = {
|
|
14
|
+
version: 1,
|
|
15
|
+
themeName: "customed",
|
|
16
|
+
theme: {
|
|
17
|
+
seriesCnt: "5",
|
|
18
|
+
backgroundColor: "rgba(0,0,0,0)",
|
|
19
|
+
titleColor: "#1c2024",
|
|
20
|
+
subtitleColor: "#8d8d8d",
|
|
21
|
+
textColorShow: false,
|
|
22
|
+
textColor: "#333",
|
|
23
|
+
markTextColor: "#ffffff",
|
|
24
|
+
color: [
|
|
25
|
+
"#ffe629",
|
|
26
|
+
"#3e63dd",
|
|
27
|
+
"#ec9455",
|
|
28
|
+
"#5bb98b",
|
|
29
|
+
"#cb1d63",
|
|
30
|
+
"#3ba272",
|
|
31
|
+
"#fc8452",
|
|
32
|
+
"#9a60b4",
|
|
33
|
+
"#ea7ccc"
|
|
34
|
+
],
|
|
35
|
+
borderColor: "#8d8d8d",
|
|
36
|
+
borderWidth: 0,
|
|
37
|
+
visualMapColor: ["#bf444c", "#d88273", "#f6efa6"],
|
|
38
|
+
legendTextColor: "#1c2024",
|
|
39
|
+
kColor: "#eb5454",
|
|
40
|
+
kColor0: "#47b262",
|
|
41
|
+
kBorderColor: "#eb5454",
|
|
42
|
+
kBorderColor0: "#47b262",
|
|
43
|
+
kBorderWidth: 1,
|
|
44
|
+
lineWidth: 2,
|
|
45
|
+
symbolSize: 4,
|
|
46
|
+
symbol: "emptyCircle",
|
|
47
|
+
symbolBorderWidth: 1,
|
|
48
|
+
lineSmooth: false,
|
|
49
|
+
graphLineWidth: 1,
|
|
50
|
+
graphLineColor: "#aaa",
|
|
51
|
+
mapLabelColor: "#000",
|
|
52
|
+
mapLabelColorE: "rgb(100,0,0)",
|
|
53
|
+
mapBorderColor: "#444",
|
|
54
|
+
mapBorderColorE: "#444",
|
|
55
|
+
mapBorderWidth: 0.5,
|
|
56
|
+
mapBorderWidthE: 1,
|
|
57
|
+
mapAreaColor: "#eee",
|
|
58
|
+
mapAreaColorE: "rgba(255,215,0,0.8)",
|
|
59
|
+
axes: [
|
|
60
|
+
{
|
|
61
|
+
type: "all",
|
|
62
|
+
name: "\u901A\u7528\u5750\u6807\u8F74",
|
|
63
|
+
axisLineShow: true,
|
|
64
|
+
axisLineColor: "#6E7079",
|
|
65
|
+
axisTickShow: true,
|
|
66
|
+
axisTickColor: "#6E7079",
|
|
67
|
+
axisLabelShow: true,
|
|
68
|
+
axisLabelColor: "#6E7079",
|
|
69
|
+
splitLineShow: true,
|
|
70
|
+
splitLineColor: ["#E0E6F1"],
|
|
71
|
+
splitAreaShow: false,
|
|
72
|
+
splitAreaColor: ["rgba(250,250,250,0.2)", "rgba(210,219,238,0.2)"]
|
|
73
|
+
},
|
|
74
|
+
{
|
|
75
|
+
type: "category",
|
|
76
|
+
name: "\u7C7B\u76EE\u5750\u6807\u8F74",
|
|
77
|
+
axisLineShow: true,
|
|
78
|
+
axisLineColor: "#6E7079",
|
|
79
|
+
axisTickShow: true,
|
|
80
|
+
axisTickColor: "#6E7079",
|
|
81
|
+
axisLabelShow: true,
|
|
82
|
+
axisLabelColor: "#6E7079",
|
|
83
|
+
splitLineShow: false,
|
|
84
|
+
splitLineColor: ["#E0E6F1"],
|
|
85
|
+
splitAreaShow: false,
|
|
86
|
+
splitAreaColor: ["rgba(250,250,250,0.2)", "rgba(210,219,238,0.2)"]
|
|
87
|
+
},
|
|
88
|
+
{
|
|
89
|
+
type: "value",
|
|
90
|
+
name: "\u6570\u503C\u5750\u6807\u8F74",
|
|
91
|
+
axisLineShow: false,
|
|
92
|
+
axisLineColor: "#6E7079",
|
|
93
|
+
axisTickShow: false,
|
|
94
|
+
axisTickColor: "#6E7079",
|
|
95
|
+
axisLabelShow: true,
|
|
96
|
+
axisLabelColor: "#6E7079",
|
|
97
|
+
splitLineShow: true,
|
|
98
|
+
splitLineColor: ["#E0E6F1"],
|
|
99
|
+
splitAreaShow: false,
|
|
100
|
+
splitAreaColor: ["rgba(250,250,250,0.2)", "rgba(210,219,238,0.2)"]
|
|
101
|
+
},
|
|
102
|
+
{
|
|
103
|
+
type: "log",
|
|
104
|
+
name: "\u5BF9\u6570\u5750\u6807\u8F74",
|
|
105
|
+
axisLineShow: false,
|
|
106
|
+
axisLineColor: "#6E7079",
|
|
107
|
+
axisTickShow: false,
|
|
108
|
+
axisTickColor: "#6E7079",
|
|
109
|
+
axisLabelShow: true,
|
|
110
|
+
axisLabelColor: "#6E7079",
|
|
111
|
+
splitLineShow: true,
|
|
112
|
+
splitLineColor: ["#E0E6F1"],
|
|
113
|
+
splitAreaShow: false,
|
|
114
|
+
splitAreaColor: ["rgba(250,250,250,0.2)", "rgba(210,219,238,0.2)"]
|
|
115
|
+
},
|
|
116
|
+
{
|
|
117
|
+
type: "time",
|
|
118
|
+
name: "\u65F6\u95F4\u5750\u6807\u8F74",
|
|
119
|
+
axisLineShow: true,
|
|
120
|
+
axisLineColor: "#6E7079",
|
|
121
|
+
axisTickShow: true,
|
|
122
|
+
axisTickColor: "#6E7079",
|
|
123
|
+
axisLabelShow: true,
|
|
124
|
+
axisLabelColor: "#6E7079",
|
|
125
|
+
splitLineShow: false,
|
|
126
|
+
splitLineColor: ["#E0E6F1"],
|
|
127
|
+
splitAreaShow: false,
|
|
128
|
+
splitAreaColor: ["rgba(250,250,250,0.2)", "rgba(210,219,238,0.2)"]
|
|
129
|
+
}
|
|
130
|
+
],
|
|
131
|
+
axisSeperateSetting: true,
|
|
132
|
+
toolboxColor: "#8d8d8d",
|
|
133
|
+
toolboxEmphasisColor: "#1c2024",
|
|
134
|
+
tooltipAxisColor: "#cccccc",
|
|
135
|
+
tooltipAxisWidth: 1,
|
|
136
|
+
timelineLineColor: "#dae1f5",
|
|
137
|
+
timelineLineWidth: 2,
|
|
138
|
+
timelineItemColor: "#a4b1d7",
|
|
139
|
+
timelineItemColorE: "#ffffff",
|
|
140
|
+
timelineCheckColor: "#316bf3",
|
|
141
|
+
timelineCheckBorderColor: "#ffffff",
|
|
142
|
+
timelineItemBorderWidth: 1,
|
|
143
|
+
timelineControlColor: "#a4b1d7",
|
|
144
|
+
timelineControlBorderColor: "#a4b1d7",
|
|
145
|
+
timelineControlBorderWidth: 1,
|
|
146
|
+
timelineLabelColor: "#a4b1d7"
|
|
147
|
+
}
|
|
148
|
+
};
|
|
149
|
+
|
|
150
|
+
// src/charts/chart.tsx
|
|
151
|
+
import { jsx } from "react/jsx-runtime";
|
|
152
|
+
function Chart(props) {
|
|
153
|
+
const { width, height, ref } = useResizeDetector({
|
|
154
|
+
handleHeight: false,
|
|
155
|
+
refreshMode: "debounce",
|
|
156
|
+
refreshRate: 100
|
|
157
|
+
});
|
|
158
|
+
const option = useMemo(() => {
|
|
159
|
+
const baseOption = {
|
|
160
|
+
textStyle: { fontFamily: "Noto Sans KR" },
|
|
161
|
+
tooltip: { textStyle: { fontSize: 16 } }
|
|
162
|
+
};
|
|
163
|
+
return merge(baseOption, props.option);
|
|
164
|
+
}, [props.option]);
|
|
165
|
+
return /* @__PURE__ */ jsx("div", { ref, style: { width: "100%", height: "100%" }, children: /* @__PURE__ */ jsx(
|
|
166
|
+
ReactECharts,
|
|
167
|
+
__spreadProps(__spreadValues({
|
|
168
|
+
renderer: "svg",
|
|
169
|
+
style: { width, height },
|
|
170
|
+
theme: chart_theme_default
|
|
171
|
+
}, props), {
|
|
172
|
+
option
|
|
173
|
+
})
|
|
174
|
+
) });
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
export {
|
|
178
|
+
chart_theme_default,
|
|
179
|
+
Chart
|
|
180
|
+
};
|
|
181
|
+
//# sourceMappingURL=chunk-AVOCFCEQ.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/charts/chart.tsx","../src/charts/chart-theme.json"],"sourcesContent":["import React, { useMemo } from 'react';\nimport { useResizeDetector } from 'react-resize-detector';\nimport ReactECharts from 'echarts-for-react';\nimport type { EChartOption } from 'echarts';\nimport { merge } from 'lodash-es';\nimport chartTheme from './chart-theme.json';\n\nexport { chartTheme };\n\nexport type ChartProps = Omit<\n React.ComponentProps<typeof ReactECharts>,\n 'option'\n> & {\n option: EChartOption;\n};\n\nexport function Chart(props: ChartProps): JSX.Element {\n const { width, height, ref } = useResizeDetector({\n handleHeight: false,\n refreshMode: 'debounce',\n refreshRate: 100,\n });\n\n const option = useMemo(() => {\n const baseOption: EChartOption = {\n textStyle: { fontFamily: 'Noto Sans KR' },\n tooltip: { textStyle: { fontSize: 16 } },\n };\n return merge(baseOption, props.option);\n }, [props.option]);\n\n return (\n <div ref={ref} style={{ width: '100%', height: '100%' }}>\n <ReactECharts\n renderer=\"svg\"\n style={{ width, height }}\n theme={chartTheme}\n {...props}\n option={option}\n />\n </div>\n );\n}\n","{\n \"version\": 1,\n \"themeName\": \"customed\",\n \"theme\": {\n \"seriesCnt\": \"5\",\n \"backgroundColor\": \"rgba(0,0,0,0)\",\n \"titleColor\": \"#1c2024\",\n \"subtitleColor\": \"#8d8d8d\",\n \"textColorShow\": false,\n \"textColor\": \"#333\",\n \"markTextColor\": \"#ffffff\",\n \"color\": [\n \"#ffe629\",\n \"#3e63dd\",\n \"#ec9455\",\n \"#5bb98b\",\n \"#cb1d63\",\n \"#3ba272\",\n \"#fc8452\",\n \"#9a60b4\",\n \"#ea7ccc\"\n ],\n \"borderColor\": \"#8d8d8d\",\n \"borderWidth\": 0,\n \"visualMapColor\": [\"#bf444c\", \"#d88273\", \"#f6efa6\"],\n \"legendTextColor\": \"#1c2024\",\n \"kColor\": \"#eb5454\",\n \"kColor0\": \"#47b262\",\n \"kBorderColor\": \"#eb5454\",\n \"kBorderColor0\": \"#47b262\",\n \"kBorderWidth\": 1,\n \"lineWidth\": 2,\n \"symbolSize\": 4,\n \"symbol\": \"emptyCircle\",\n \"symbolBorderWidth\": 1,\n \"lineSmooth\": false,\n \"graphLineWidth\": 1,\n \"graphLineColor\": \"#aaa\",\n \"mapLabelColor\": \"#000\",\n \"mapLabelColorE\": \"rgb(100,0,0)\",\n \"mapBorderColor\": \"#444\",\n \"mapBorderColorE\": \"#444\",\n \"mapBorderWidth\": 0.5,\n \"mapBorderWidthE\": 1,\n \"mapAreaColor\": \"#eee\",\n \"mapAreaColorE\": \"rgba(255,215,0,0.8)\",\n \"axes\": [\n {\n \"type\": \"all\",\n \"name\": \"通用坐标轴\",\n \"axisLineShow\": true,\n \"axisLineColor\": \"#6E7079\",\n \"axisTickShow\": true,\n \"axisTickColor\": \"#6E7079\",\n \"axisLabelShow\": true,\n \"axisLabelColor\": \"#6E7079\",\n \"splitLineShow\": true,\n \"splitLineColor\": [\"#E0E6F1\"],\n \"splitAreaShow\": false,\n \"splitAreaColor\": [\"rgba(250,250,250,0.2)\", \"rgba(210,219,238,0.2)\"]\n },\n {\n \"type\": \"category\",\n \"name\": \"类目坐标轴\",\n \"axisLineShow\": true,\n \"axisLineColor\": \"#6E7079\",\n \"axisTickShow\": true,\n \"axisTickColor\": \"#6E7079\",\n \"axisLabelShow\": true,\n \"axisLabelColor\": \"#6E7079\",\n \"splitLineShow\": false,\n \"splitLineColor\": [\"#E0E6F1\"],\n \"splitAreaShow\": false,\n \"splitAreaColor\": [\"rgba(250,250,250,0.2)\", \"rgba(210,219,238,0.2)\"]\n },\n {\n \"type\": \"value\",\n \"name\": \"数值坐标轴\",\n \"axisLineShow\": false,\n \"axisLineColor\": \"#6E7079\",\n \"axisTickShow\": false,\n \"axisTickColor\": \"#6E7079\",\n \"axisLabelShow\": true,\n \"axisLabelColor\": \"#6E7079\",\n \"splitLineShow\": true,\n \"splitLineColor\": [\"#E0E6F1\"],\n \"splitAreaShow\": false,\n \"splitAreaColor\": [\"rgba(250,250,250,0.2)\", \"rgba(210,219,238,0.2)\"]\n },\n {\n \"type\": \"log\",\n \"name\": \"对数坐标轴\",\n \"axisLineShow\": false,\n \"axisLineColor\": \"#6E7079\",\n \"axisTickShow\": false,\n \"axisTickColor\": \"#6E7079\",\n \"axisLabelShow\": true,\n \"axisLabelColor\": \"#6E7079\",\n \"splitLineShow\": true,\n \"splitLineColor\": [\"#E0E6F1\"],\n \"splitAreaShow\": false,\n \"splitAreaColor\": [\"rgba(250,250,250,0.2)\", \"rgba(210,219,238,0.2)\"]\n },\n {\n \"type\": \"time\",\n \"name\": \"时间坐标轴\",\n \"axisLineShow\": true,\n \"axisLineColor\": \"#6E7079\",\n \"axisTickShow\": true,\n \"axisTickColor\": \"#6E7079\",\n \"axisLabelShow\": true,\n \"axisLabelColor\": \"#6E7079\",\n \"splitLineShow\": false,\n \"splitLineColor\": [\"#E0E6F1\"],\n \"splitAreaShow\": false,\n \"splitAreaColor\": [\"rgba(250,250,250,0.2)\", \"rgba(210,219,238,0.2)\"]\n }\n ],\n \"axisSeperateSetting\": true,\n \"toolboxColor\": \"#8d8d8d\",\n \"toolboxEmphasisColor\": \"#1c2024\",\n \"tooltipAxisColor\": \"#cccccc\",\n \"tooltipAxisWidth\": 1,\n \"timelineLineColor\": \"#dae1f5\",\n \"timelineLineWidth\": 2,\n \"timelineItemColor\": \"#a4b1d7\",\n \"timelineItemColorE\": \"#ffffff\",\n \"timelineCheckColor\": \"#316bf3\",\n \"timelineCheckBorderColor\": \"#ffffff\",\n \"timelineItemBorderWidth\": 1,\n \"timelineControlColor\": \"#a4b1d7\",\n \"timelineControlBorderColor\": \"#a4b1d7\",\n \"timelineControlBorderWidth\": 1,\n \"timelineLabelColor\": \"#a4b1d7\"\n }\n}\n"],"mappings":";;;;;;AAAA,SAAgB,eAAe;AAC/B,SAAS,yBAAyB;AAClC,OAAO,kBAAkB;AAEzB,SAAS,aAAa;;;ACJtB;AAAA,EACE,SAAW;AAAA,EACX,WAAa;AAAA,EACb,OAAS;AAAA,IACP,WAAa;AAAA,IACb,iBAAmB;AAAA,IACnB,YAAc;AAAA,IACd,eAAiB;AAAA,IACjB,eAAiB;AAAA,IACjB,WAAa;AAAA,IACb,eAAiB;AAAA,IACjB,OAAS;AAAA,MACP;AAAA,MACA;AAAA,MACA;AAAA,MACA;AAAA,MACA;AAAA,MACA;AAAA,MACA;AAAA,MACA;AAAA,MACA;AAAA,IACF;AAAA,IACA,aAAe;AAAA,IACf,aAAe;AAAA,IACf,gBAAkB,CAAC,WAAW,WAAW,SAAS;AAAA,IAClD,iBAAmB;AAAA,IACnB,QAAU;AAAA,IACV,SAAW;AAAA,IACX,cAAgB;AAAA,IAChB,eAAiB;AAAA,IACjB,cAAgB;AAAA,IAChB,WAAa;AAAA,IACb,YAAc;AAAA,IACd,QAAU;AAAA,IACV,mBAAqB;AAAA,IACrB,YAAc;AAAA,IACd,gBAAkB;AAAA,IAClB,gBAAkB;AAAA,IAClB,eAAiB;AAAA,IACjB,gBAAkB;AAAA,IAClB,gBAAkB;AAAA,IAClB,iBAAmB;AAAA,IACnB,gBAAkB;AAAA,IAClB,iBAAmB;AAAA,IACnB,cAAgB;AAAA,IAChB,eAAiB;AAAA,IACjB,MAAQ;AAAA,MACN;AAAA,QACE,MAAQ;AAAA,QACR,MAAQ;AAAA,QACR,cAAgB;AAAA,QAChB,eAAiB;AAAA,QACjB,cAAgB;AAAA,QAChB,eAAiB;AAAA,QACjB,eAAiB;AAAA,QACjB,gBAAkB;AAAA,QAClB,eAAiB;AAAA,QACjB,gBAAkB,CAAC,SAAS;AAAA,QAC5B,eAAiB;AAAA,QACjB,gBAAkB,CAAC,yBAAyB,uBAAuB;AAAA,MACrE;AAAA,MACA;AAAA,QACE,MAAQ;AAAA,QACR,MAAQ;AAAA,QACR,cAAgB;AAAA,QAChB,eAAiB;AAAA,QACjB,cAAgB;AAAA,QAChB,eAAiB;AAAA,QACjB,eAAiB;AAAA,QACjB,gBAAkB;AAAA,QAClB,eAAiB;AAAA,QACjB,gBAAkB,CAAC,SAAS;AAAA,QAC5B,eAAiB;AAAA,QACjB,gBAAkB,CAAC,yBAAyB,uBAAuB;AAAA,MACrE;AAAA,MACA;AAAA,QACE,MAAQ;AAAA,QACR,MAAQ;AAAA,QACR,cAAgB;AAAA,QAChB,eAAiB;AAAA,QACjB,cAAgB;AAAA,QAChB,eAAiB;AAAA,QACjB,eAAiB;AAAA,QACjB,gBAAkB;AAAA,QAClB,eAAiB;AAAA,QACjB,gBAAkB,CAAC,SAAS;AAAA,QAC5B,eAAiB;AAAA,QACjB,gBAAkB,CAAC,yBAAyB,uBAAuB;AAAA,MACrE;AAAA,MACA;AAAA,QACE,MAAQ;AAAA,QACR,MAAQ;AAAA,QACR,cAAgB;AAAA,QAChB,eAAiB;AAAA,QACjB,cAAgB;AAAA,QAChB,eAAiB;AAAA,QACjB,eAAiB;AAAA,QACjB,gBAAkB;AAAA,QAClB,eAAiB;AAAA,QACjB,gBAAkB,CAAC,SAAS;AAAA,QAC5B,eAAiB;AAAA,QACjB,gBAAkB,CAAC,yBAAyB,uBAAuB;AAAA,MACrE;AAAA,MACA;AAAA,QACE,MAAQ;AAAA,QACR,MAAQ;AAAA,QACR,cAAgB;AAAA,QAChB,eAAiB;AAAA,QACjB,cAAgB;AAAA,QAChB,eAAiB;AAAA,QACjB,eAAiB;AAAA,QACjB,gBAAkB;AAAA,QAClB,eAAiB;AAAA,QACjB,gBAAkB,CAAC,SAAS;AAAA,QAC5B,eAAiB;AAAA,QACjB,gBAAkB,CAAC,yBAAyB,uBAAuB;AAAA,MACrE;AAAA,IACF;AAAA,IACA,qBAAuB;AAAA,IACvB,cAAgB;AAAA,IAChB,sBAAwB;AAAA,IACxB,kBAAoB;AAAA,IACpB,kBAAoB;AAAA,IACpB,mBAAqB;AAAA,IACrB,mBAAqB;AAAA,IACrB,mBAAqB;AAAA,IACrB,oBAAsB;AAAA,IACtB,oBAAsB;AAAA,IACtB,0BAA4B;AAAA,IAC5B,yBAA2B;AAAA,IAC3B,sBAAwB;AAAA,IACxB,4BAA8B;AAAA,IAC9B,4BAA8B;AAAA,IAC9B,oBAAsB;AAAA,EACxB;AACF;;;ADtGM;AAjBC,SAAS,MAAM,OAAgC;AACpD,QAAM,EAAE,OAAO,QAAQ,IAAI,IAAI,kBAAkB;AAAA,IAC/C,cAAc;AAAA,IACd,aAAa;AAAA,IACb,aAAa;AAAA,EACf,CAAC;AAED,QAAM,SAAS,QAAQ,MAAM;AAC3B,UAAM,aAA2B;AAAA,MAC/B,WAAW,EAAE,YAAY,eAAe;AAAA,MACxC,SAAS,EAAE,WAAW,EAAE,UAAU,GAAG,EAAE;AAAA,IACzC;AACA,WAAO,MAAM,YAAY,MAAM,MAAM;AAAA,EACvC,GAAG,CAAC,MAAM,MAAM,CAAC;AAEjB,SACE,oBAAC,SAAI,KAAU,OAAO,EAAE,OAAO,QAAQ,QAAQ,OAAO,GACpD;AAAA,IAAC;AAAA;AAAA,MACC,UAAS;AAAA,MACT,OAAO,EAAE,OAAO,OAAO;AAAA,MACvB,OAAO;AAAA,OACH,QAJL;AAAA,MAKC;AAAA;AAAA,EACF,GACF;AAEJ;","names":[]}
|
|
@@ -0,0 +1,182 @@
|
|
|
1
|
+
import {
|
|
2
|
+
__spreadProps,
|
|
3
|
+
__spreadValues
|
|
4
|
+
} from "./chunk-N552FDTV.js";
|
|
5
|
+
|
|
6
|
+
// src/charts/chart.tsx
|
|
7
|
+
import { useMemo } from "react";
|
|
8
|
+
import { useResizeDetector } from "react-resize-detector";
|
|
9
|
+
import ReactECharts from "echarts-for-react";
|
|
10
|
+
import { merge } from "lodash-es";
|
|
11
|
+
|
|
12
|
+
// src/charts/chart-theme.json
|
|
13
|
+
var chart_theme_default = {
|
|
14
|
+
version: 1,
|
|
15
|
+
themeName: "customed",
|
|
16
|
+
theme: {
|
|
17
|
+
seriesCnt: "5",
|
|
18
|
+
backgroundColor: "rgba(0,0,0,0)",
|
|
19
|
+
titleColor: "#1c2024",
|
|
20
|
+
subtitleColor: "#8d8d8d",
|
|
21
|
+
textColorShow: false,
|
|
22
|
+
textColor: "#333",
|
|
23
|
+
markTextColor: "#ffffff",
|
|
24
|
+
color: [
|
|
25
|
+
"#ffe629",
|
|
26
|
+
"#3e63dd",
|
|
27
|
+
"#ec9455",
|
|
28
|
+
"#5bb98b",
|
|
29
|
+
"#cb1d63",
|
|
30
|
+
"#3ba272",
|
|
31
|
+
"#fc8452",
|
|
32
|
+
"#9a60b4",
|
|
33
|
+
"#ea7ccc"
|
|
34
|
+
],
|
|
35
|
+
borderColor: "#8d8d8d",
|
|
36
|
+
borderWidth: 0,
|
|
37
|
+
visualMapColor: ["#bf444c", "#d88273", "#f6efa6"],
|
|
38
|
+
legendTextColor: "#1c2024",
|
|
39
|
+
kColor: "#eb5454",
|
|
40
|
+
kColor0: "#47b262",
|
|
41
|
+
kBorderColor: "#eb5454",
|
|
42
|
+
kBorderColor0: "#47b262",
|
|
43
|
+
kBorderWidth: 1,
|
|
44
|
+
lineWidth: 2,
|
|
45
|
+
symbolSize: 4,
|
|
46
|
+
symbol: "emptyCircle",
|
|
47
|
+
symbolBorderWidth: 1,
|
|
48
|
+
lineSmooth: false,
|
|
49
|
+
graphLineWidth: 1,
|
|
50
|
+
graphLineColor: "#aaa",
|
|
51
|
+
mapLabelColor: "#000",
|
|
52
|
+
mapLabelColorE: "rgb(100,0,0)",
|
|
53
|
+
mapBorderColor: "#444",
|
|
54
|
+
mapBorderColorE: "#444",
|
|
55
|
+
mapBorderWidth: 0.5,
|
|
56
|
+
mapBorderWidthE: 1,
|
|
57
|
+
mapAreaColor: "#eee",
|
|
58
|
+
mapAreaColorE: "rgba(255,215,0,0.8)",
|
|
59
|
+
axes: [
|
|
60
|
+
{
|
|
61
|
+
type: "all",
|
|
62
|
+
name: "\u901A\u7528\u5750\u6807\u8F74",
|
|
63
|
+
axisLineShow: true,
|
|
64
|
+
axisLineColor: "#6E7079",
|
|
65
|
+
axisTickShow: true,
|
|
66
|
+
axisTickColor: "#6E7079",
|
|
67
|
+
axisLabelShow: true,
|
|
68
|
+
axisLabelColor: "#6E7079",
|
|
69
|
+
splitLineShow: true,
|
|
70
|
+
splitLineColor: ["#E0E6F1"],
|
|
71
|
+
splitAreaShow: false,
|
|
72
|
+
splitAreaColor: ["rgba(250,250,250,0.2)", "rgba(210,219,238,0.2)"]
|
|
73
|
+
},
|
|
74
|
+
{
|
|
75
|
+
type: "category",
|
|
76
|
+
name: "\u7C7B\u76EE\u5750\u6807\u8F74",
|
|
77
|
+
axisLineShow: true,
|
|
78
|
+
axisLineColor: "#6E7079",
|
|
79
|
+
axisTickShow: true,
|
|
80
|
+
axisTickColor: "#6E7079",
|
|
81
|
+
axisLabelShow: true,
|
|
82
|
+
axisLabelColor: "#6E7079",
|
|
83
|
+
splitLineShow: false,
|
|
84
|
+
splitLineColor: ["#E0E6F1"],
|
|
85
|
+
splitAreaShow: false,
|
|
86
|
+
splitAreaColor: ["rgba(250,250,250,0.2)", "rgba(210,219,238,0.2)"]
|
|
87
|
+
},
|
|
88
|
+
{
|
|
89
|
+
type: "value",
|
|
90
|
+
name: "\u6570\u503C\u5750\u6807\u8F74",
|
|
91
|
+
axisLineShow: false,
|
|
92
|
+
axisLineColor: "#6E7079",
|
|
93
|
+
axisTickShow: false,
|
|
94
|
+
axisTickColor: "#6E7079",
|
|
95
|
+
axisLabelShow: true,
|
|
96
|
+
axisLabelColor: "#6E7079",
|
|
97
|
+
splitLineShow: true,
|
|
98
|
+
splitLineColor: ["#E0E6F1"],
|
|
99
|
+
splitAreaShow: false,
|
|
100
|
+
splitAreaColor: ["rgba(250,250,250,0.2)", "rgba(210,219,238,0.2)"]
|
|
101
|
+
},
|
|
102
|
+
{
|
|
103
|
+
type: "log",
|
|
104
|
+
name: "\u5BF9\u6570\u5750\u6807\u8F74",
|
|
105
|
+
axisLineShow: false,
|
|
106
|
+
axisLineColor: "#6E7079",
|
|
107
|
+
axisTickShow: false,
|
|
108
|
+
axisTickColor: "#6E7079",
|
|
109
|
+
axisLabelShow: true,
|
|
110
|
+
axisLabelColor: "#6E7079",
|
|
111
|
+
splitLineShow: true,
|
|
112
|
+
splitLineColor: ["#E0E6F1"],
|
|
113
|
+
splitAreaShow: false,
|
|
114
|
+
splitAreaColor: ["rgba(250,250,250,0.2)", "rgba(210,219,238,0.2)"]
|
|
115
|
+
},
|
|
116
|
+
{
|
|
117
|
+
type: "time",
|
|
118
|
+
name: "\u65F6\u95F4\u5750\u6807\u8F74",
|
|
119
|
+
axisLineShow: true,
|
|
120
|
+
axisLineColor: "#6E7079",
|
|
121
|
+
axisTickShow: true,
|
|
122
|
+
axisTickColor: "#6E7079",
|
|
123
|
+
axisLabelShow: true,
|
|
124
|
+
axisLabelColor: "#6E7079",
|
|
125
|
+
splitLineShow: false,
|
|
126
|
+
splitLineColor: ["#E0E6F1"],
|
|
127
|
+
splitAreaShow: false,
|
|
128
|
+
splitAreaColor: ["rgba(250,250,250,0.2)", "rgba(210,219,238,0.2)"]
|
|
129
|
+
}
|
|
130
|
+
],
|
|
131
|
+
axisSeperateSetting: true,
|
|
132
|
+
toolboxColor: "#8d8d8d",
|
|
133
|
+
toolboxEmphasisColor: "#1c2024",
|
|
134
|
+
tooltipAxisColor: "#cccccc",
|
|
135
|
+
tooltipAxisWidth: 1,
|
|
136
|
+
timelineLineColor: "#dae1f5",
|
|
137
|
+
timelineLineWidth: 2,
|
|
138
|
+
timelineItemColor: "#a4b1d7",
|
|
139
|
+
timelineItemColorE: "#ffffff",
|
|
140
|
+
timelineCheckColor: "#316bf3",
|
|
141
|
+
timelineCheckBorderColor: "#ffffff",
|
|
142
|
+
timelineItemBorderWidth: 1,
|
|
143
|
+
timelineControlColor: "#a4b1d7",
|
|
144
|
+
timelineControlBorderColor: "#a4b1d7",
|
|
145
|
+
timelineControlBorderWidth: 1,
|
|
146
|
+
timelineLabelColor: "#a4b1d7"
|
|
147
|
+
}
|
|
148
|
+
};
|
|
149
|
+
|
|
150
|
+
// src/charts/chart.tsx
|
|
151
|
+
import { jsx } from "react/jsx-runtime";
|
|
152
|
+
function Chart(props) {
|
|
153
|
+
const { width, height, ref } = useResizeDetector({
|
|
154
|
+
handleHeight: false,
|
|
155
|
+
refreshMode: "debounce",
|
|
156
|
+
refreshRate: 100
|
|
157
|
+
});
|
|
158
|
+
const option = useMemo(() => {
|
|
159
|
+
const baseOption = {
|
|
160
|
+
textStyle: { fontFamily: "Noto Sans KR" },
|
|
161
|
+
tooltip: { textStyle: { fontSize: 16 } },
|
|
162
|
+
renderer: "svg"
|
|
163
|
+
};
|
|
164
|
+
return merge(baseOption, props.option);
|
|
165
|
+
}, [props.option]);
|
|
166
|
+
return /* @__PURE__ */ jsx("div", { ref, style: { width: "100%", height: "100%" }, children: /* @__PURE__ */ jsx(
|
|
167
|
+
ReactECharts,
|
|
168
|
+
__spreadProps(__spreadValues({
|
|
169
|
+
renderer: "svg",
|
|
170
|
+
style: { width, height },
|
|
171
|
+
theme: chart_theme_default
|
|
172
|
+
}, props), {
|
|
173
|
+
option
|
|
174
|
+
})
|
|
175
|
+
) });
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
export {
|
|
179
|
+
chart_theme_default,
|
|
180
|
+
Chart
|
|
181
|
+
};
|
|
182
|
+
//# sourceMappingURL=chunk-VJCKB4FI.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../src/charts/chart.tsx","../src/charts/chart-theme.json"],"sourcesContent":["import React, { useMemo } from 'react';\nimport { useResizeDetector } from 'react-resize-detector';\nimport ReactECharts from 'echarts-for-react';\nimport type { EChartOption } from 'echarts';\nimport { merge } from 'lodash-es';\nimport chartTheme from './chart-theme.json';\n\nexport { chartTheme };\n\nexport type ChartProps = Omit<\n React.ComponentProps<typeof ReactECharts>,\n 'option'\n> & {\n option: EChartOption;\n};\n\nexport function Chart(props: ChartProps): JSX.Element {\n const { width, height, ref } = useResizeDetector({\n handleHeight: false,\n refreshMode: 'debounce',\n refreshRate: 100,\n });\n\n const option = useMemo(() => {\n const baseOption: EChartOption = {\n textStyle: { fontFamily: 'Noto Sans KR' },\n tooltip: { textStyle: { fontSize: 16 } },\n renderer: 'svg',\n };\n return merge(baseOption, props.option);\n }, [props.option]);\n\n return (\n <div ref={ref} style={{ width: '100%', height: '100%' }}>\n <ReactECharts\n renderer=\"svg\"\n style={{ width, height }}\n theme={chartTheme}\n {...props}\n option={option}\n />\n </div>\n );\n}\n","{\n \"version\": 1,\n \"themeName\": \"customed\",\n \"theme\": {\n \"seriesCnt\": \"5\",\n \"backgroundColor\": \"rgba(0,0,0,0)\",\n \"titleColor\": \"#1c2024\",\n \"subtitleColor\": \"#8d8d8d\",\n \"textColorShow\": false,\n \"textColor\": \"#333\",\n \"markTextColor\": \"#ffffff\",\n \"color\": [\n \"#ffe629\",\n \"#3e63dd\",\n \"#ec9455\",\n \"#5bb98b\",\n \"#cb1d63\",\n \"#3ba272\",\n \"#fc8452\",\n \"#9a60b4\",\n \"#ea7ccc\"\n ],\n \"borderColor\": \"#8d8d8d\",\n \"borderWidth\": 0,\n \"visualMapColor\": [\"#bf444c\", \"#d88273\", \"#f6efa6\"],\n \"legendTextColor\": \"#1c2024\",\n \"kColor\": \"#eb5454\",\n \"kColor0\": \"#47b262\",\n \"kBorderColor\": \"#eb5454\",\n \"kBorderColor0\": \"#47b262\",\n \"kBorderWidth\": 1,\n \"lineWidth\": 2,\n \"symbolSize\": 4,\n \"symbol\": \"emptyCircle\",\n \"symbolBorderWidth\": 1,\n \"lineSmooth\": false,\n \"graphLineWidth\": 1,\n \"graphLineColor\": \"#aaa\",\n \"mapLabelColor\": \"#000\",\n \"mapLabelColorE\": \"rgb(100,0,0)\",\n \"mapBorderColor\": \"#444\",\n \"mapBorderColorE\": \"#444\",\n \"mapBorderWidth\": 0.5,\n \"mapBorderWidthE\": 1,\n \"mapAreaColor\": \"#eee\",\n \"mapAreaColorE\": \"rgba(255,215,0,0.8)\",\n \"axes\": [\n {\n \"type\": \"all\",\n \"name\": \"通用坐标轴\",\n \"axisLineShow\": true,\n \"axisLineColor\": \"#6E7079\",\n \"axisTickShow\": true,\n \"axisTickColor\": \"#6E7079\",\n \"axisLabelShow\": true,\n \"axisLabelColor\": \"#6E7079\",\n \"splitLineShow\": true,\n \"splitLineColor\": [\"#E0E6F1\"],\n \"splitAreaShow\": false,\n \"splitAreaColor\": [\"rgba(250,250,250,0.2)\", \"rgba(210,219,238,0.2)\"]\n },\n {\n \"type\": \"category\",\n \"name\": \"类目坐标轴\",\n \"axisLineShow\": true,\n \"axisLineColor\": \"#6E7079\",\n \"axisTickShow\": true,\n \"axisTickColor\": \"#6E7079\",\n \"axisLabelShow\": true,\n \"axisLabelColor\": \"#6E7079\",\n \"splitLineShow\": false,\n \"splitLineColor\": [\"#E0E6F1\"],\n \"splitAreaShow\": false,\n \"splitAreaColor\": [\"rgba(250,250,250,0.2)\", \"rgba(210,219,238,0.2)\"]\n },\n {\n \"type\": \"value\",\n \"name\": \"数值坐标轴\",\n \"axisLineShow\": false,\n \"axisLineColor\": \"#6E7079\",\n \"axisTickShow\": false,\n \"axisTickColor\": \"#6E7079\",\n \"axisLabelShow\": true,\n \"axisLabelColor\": \"#6E7079\",\n \"splitLineShow\": true,\n \"splitLineColor\": [\"#E0E6F1\"],\n \"splitAreaShow\": false,\n \"splitAreaColor\": [\"rgba(250,250,250,0.2)\", \"rgba(210,219,238,0.2)\"]\n },\n {\n \"type\": \"log\",\n \"name\": \"对数坐标轴\",\n \"axisLineShow\": false,\n \"axisLineColor\": \"#6E7079\",\n \"axisTickShow\": false,\n \"axisTickColor\": \"#6E7079\",\n \"axisLabelShow\": true,\n \"axisLabelColor\": \"#6E7079\",\n \"splitLineShow\": true,\n \"splitLineColor\": [\"#E0E6F1\"],\n \"splitAreaShow\": false,\n \"splitAreaColor\": [\"rgba(250,250,250,0.2)\", \"rgba(210,219,238,0.2)\"]\n },\n {\n \"type\": \"time\",\n \"name\": \"时间坐标轴\",\n \"axisLineShow\": true,\n \"axisLineColor\": \"#6E7079\",\n \"axisTickShow\": true,\n \"axisTickColor\": \"#6E7079\",\n \"axisLabelShow\": true,\n \"axisLabelColor\": \"#6E7079\",\n \"splitLineShow\": false,\n \"splitLineColor\": [\"#E0E6F1\"],\n \"splitAreaShow\": false,\n \"splitAreaColor\": [\"rgba(250,250,250,0.2)\", \"rgba(210,219,238,0.2)\"]\n }\n ],\n \"axisSeperateSetting\": true,\n \"toolboxColor\": \"#8d8d8d\",\n \"toolboxEmphasisColor\": \"#1c2024\",\n \"tooltipAxisColor\": \"#cccccc\",\n \"tooltipAxisWidth\": 1,\n \"timelineLineColor\": \"#dae1f5\",\n \"timelineLineWidth\": 2,\n \"timelineItemColor\": \"#a4b1d7\",\n \"timelineItemColorE\": \"#ffffff\",\n \"timelineCheckColor\": \"#316bf3\",\n \"timelineCheckBorderColor\": \"#ffffff\",\n \"timelineItemBorderWidth\": 1,\n \"timelineControlColor\": \"#a4b1d7\",\n \"timelineControlBorderColor\": \"#a4b1d7\",\n \"timelineControlBorderWidth\": 1,\n \"timelineLabelColor\": \"#a4b1d7\"\n }\n}\n"],"mappings":"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","names":[]}
|
package/dist/index.js
CHANGED
|
@@ -1,36 +1,27 @@
|
|
|
1
1
|
import {
|
|
2
2
|
uiProps
|
|
3
3
|
} from "./chunk-NVKNDAIN.js";
|
|
4
|
-
import "./chunk-DF7LG3AO.js";
|
|
5
|
-
import {
|
|
6
|
-
ExpandTable,
|
|
7
|
-
createColumnHelper
|
|
8
|
-
} from "./chunk-7FQZ3OZO.js";
|
|
9
|
-
import "./chunk-PBPRWY2V.js";
|
|
10
|
-
import "./chunk-BSTJBBEX.js";
|
|
11
|
-
import "./chunk-NDUKDKGB.js";
|
|
12
|
-
import {
|
|
13
|
-
Navigation
|
|
14
|
-
} from "./chunk-QOY42XM2.js";
|
|
15
4
|
import {
|
|
16
5
|
ThemeProvider
|
|
17
6
|
} from "./chunk-PL3Q4UVY.js";
|
|
18
7
|
import {
|
|
19
8
|
useThemeContext
|
|
20
9
|
} from "./chunk-MMGP4GEQ.js";
|
|
10
|
+
import "./chunk-DF7LG3AO.js";
|
|
11
|
+
import {
|
|
12
|
+
Navigation
|
|
13
|
+
} from "./chunk-IBR5PQVX.js";
|
|
14
|
+
import {
|
|
15
|
+
ExpandTable,
|
|
16
|
+
createColumnHelper
|
|
17
|
+
} from "./chunk-K66WIGIV.js";
|
|
18
|
+
import "./chunk-PBPRWY2V.js";
|
|
19
|
+
import "./chunk-NDUKDKGB.js";
|
|
20
|
+
import "./chunk-BSTJBBEX.js";
|
|
21
21
|
import "./chunk-MASTHXWN.js";
|
|
22
22
|
import {
|
|
23
23
|
DatePicker
|
|
24
24
|
} from "./chunk-IIBITN2G.js";
|
|
25
|
-
import {
|
|
26
|
-
Spinner
|
|
27
|
-
} from "./chunk-FR2GDOU2.js";
|
|
28
|
-
import {
|
|
29
|
-
Strong
|
|
30
|
-
} from "./chunk-74DX4CU7.js";
|
|
31
|
-
import {
|
|
32
|
-
Switch
|
|
33
|
-
} from "./chunk-OYM4XCHQ.js";
|
|
34
25
|
import {
|
|
35
26
|
TabNav
|
|
36
27
|
} from "./chunk-YJ7ZFOYL.js";
|
|
@@ -43,15 +34,6 @@ import {
|
|
|
43
34
|
import {
|
|
44
35
|
TextField
|
|
45
36
|
} from "./chunk-JPIZP2PZ.js";
|
|
46
|
-
import {
|
|
47
|
-
RadioGroup
|
|
48
|
-
} from "./chunk-6DJOIRMF.js";
|
|
49
|
-
import {
|
|
50
|
-
Radio
|
|
51
|
-
} from "./chunk-FPD73OHW.js";
|
|
52
|
-
import {
|
|
53
|
-
ScrollArea
|
|
54
|
-
} from "./chunk-ZKZDVS7G.js";
|
|
55
37
|
import {
|
|
56
38
|
Section
|
|
57
39
|
} from "./chunk-MUNMDHRF.js";
|
|
@@ -68,17 +50,17 @@ import {
|
|
|
68
50
|
Skeleton
|
|
69
51
|
} from "./chunk-5H3YPCZK.js";
|
|
70
52
|
import {
|
|
71
|
-
|
|
72
|
-
} from "./chunk-
|
|
53
|
+
Spinner
|
|
54
|
+
} from "./chunk-FR2GDOU2.js";
|
|
73
55
|
import {
|
|
74
|
-
|
|
75
|
-
} from "./chunk-
|
|
56
|
+
Strong
|
|
57
|
+
} from "./chunk-74DX4CU7.js";
|
|
76
58
|
import {
|
|
77
|
-
|
|
78
|
-
} from "./chunk-
|
|
59
|
+
Switch
|
|
60
|
+
} from "./chunk-OYM4XCHQ.js";
|
|
79
61
|
import {
|
|
80
62
|
Pagination
|
|
81
|
-
} from "./chunk-
|
|
63
|
+
} from "./chunk-LPUSIN3M.js";
|
|
82
64
|
import {
|
|
83
65
|
Popover
|
|
84
66
|
} from "./chunk-5AVBYDPB.js";
|
|
@@ -92,14 +74,14 @@ import {
|
|
|
92
74
|
RadioCards
|
|
93
75
|
} from "./chunk-6IVCARWS.js";
|
|
94
76
|
import {
|
|
95
|
-
|
|
96
|
-
} from "./chunk-
|
|
77
|
+
RadioGroup
|
|
78
|
+
} from "./chunk-6DJOIRMF.js";
|
|
97
79
|
import {
|
|
98
|
-
|
|
99
|
-
} from "./chunk-
|
|
80
|
+
Radio
|
|
81
|
+
} from "./chunk-FPD73OHW.js";
|
|
100
82
|
import {
|
|
101
|
-
|
|
102
|
-
} from "./chunk-
|
|
83
|
+
ScrollArea
|
|
84
|
+
} from "./chunk-ZKZDVS7G.js";
|
|
103
85
|
import {
|
|
104
86
|
Grid
|
|
105
87
|
} from "./chunk-EGEQY3KT.js";
|
|
@@ -113,14 +95,14 @@ import {
|
|
|
113
95
|
IconButton
|
|
114
96
|
} from "./chunk-O3DNDMV3.js";
|
|
115
97
|
import {
|
|
116
|
-
|
|
117
|
-
} from "./chunk-
|
|
98
|
+
Inset
|
|
99
|
+
} from "./chunk-XQOL7UBI.js";
|
|
118
100
|
import {
|
|
119
|
-
|
|
120
|
-
} from "./chunk-
|
|
101
|
+
Kbd
|
|
102
|
+
} from "./chunk-TULWX7D6.js";
|
|
121
103
|
import {
|
|
122
|
-
|
|
123
|
-
} from "./chunk-
|
|
104
|
+
Link
|
|
105
|
+
} from "./chunk-XQOZWYUA.js";
|
|
124
106
|
import {
|
|
125
107
|
Container
|
|
126
108
|
} from "./chunk-Q37G2GS6.js";
|
|
@@ -140,17 +122,17 @@ import {
|
|
|
140
122
|
Tooltip
|
|
141
123
|
} from "./chunk-ACVANQJ4.js";
|
|
142
124
|
import {
|
|
143
|
-
|
|
144
|
-
} from "./chunk-
|
|
125
|
+
Em
|
|
126
|
+
} from "./chunk-2DZ2Y3JI.js";
|
|
145
127
|
import {
|
|
146
|
-
|
|
147
|
-
} from "./chunk-
|
|
128
|
+
FieldErrorWrapper
|
|
129
|
+
} from "./chunk-CNQ7RNNY.js";
|
|
148
130
|
import {
|
|
149
|
-
|
|
150
|
-
} from "./chunk-
|
|
131
|
+
Typo
|
|
132
|
+
} from "./chunk-O3XTRD7R.js";
|
|
151
133
|
import {
|
|
152
|
-
|
|
153
|
-
} from "./chunk-
|
|
134
|
+
Flex
|
|
135
|
+
} from "./chunk-25HMMI7R.js";
|
|
154
136
|
import {
|
|
155
137
|
Button
|
|
156
138
|
} from "./chunk-AQX7DQLI.js";
|
|
@@ -166,6 +148,15 @@ import {
|
|
|
166
148
|
import {
|
|
167
149
|
CheckboxGroup
|
|
168
150
|
} from "./chunk-IQEEPHOY.js";
|
|
151
|
+
import {
|
|
152
|
+
Checkbox
|
|
153
|
+
} from "./chunk-JEHDCZQU.js";
|
|
154
|
+
import {
|
|
155
|
+
Code
|
|
156
|
+
} from "./chunk-OHMOP5PV.js";
|
|
157
|
+
import {
|
|
158
|
+
Collapse
|
|
159
|
+
} from "./chunk-OCJNQGHN.js";
|
|
169
160
|
import {
|
|
170
161
|
BarChartIcon,
|
|
171
162
|
BookmarkFilledIcon,
|
|
@@ -193,6 +184,15 @@ import {
|
|
|
193
184
|
import {
|
|
194
185
|
Avatar
|
|
195
186
|
} from "./chunk-CZEGRZBK.js";
|
|
187
|
+
import {
|
|
188
|
+
Badge
|
|
189
|
+
} from "./chunk-ALOPZ54P.js";
|
|
190
|
+
import {
|
|
191
|
+
Blockquote
|
|
192
|
+
} from "./chunk-YGL6SWKN.js";
|
|
193
|
+
import {
|
|
194
|
+
Box
|
|
195
|
+
} from "./chunk-4Y5BEXVN.js";
|
|
196
196
|
import "./chunk-N552FDTV.js";
|
|
197
197
|
export {
|
|
198
198
|
AlertDialog,
|