@aloudata/aloudata-design 0.4.0-beta.6 → 0.4.0-beta.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (91) hide show
  1. package/es/Avatar/component/Avatar/index.d.ts +84 -0
  2. package/es/Avatar/component/Avatar/index.js +42 -0
  3. package/es/Avatar/index.d.ts +1 -13
  4. package/es/Avatar/index.js +1 -30
  5. package/es/Avatar/style/index.less +1 -1
  6. package/es/Button/index.d.ts +1 -1
  7. package/es/Button/index.js +3 -8
  8. package/es/Button/style/index.less +7 -1
  9. package/es/Button/style/variables.less +26 -26
  10. package/es/Checkbox/component/CheckboxGroup/index.d.ts +4 -0
  11. package/es/Checkbox/component/CheckboxGroup/index.js +27 -0
  12. package/es/Checkbox/index.d.ts +4 -5
  13. package/es/Checkbox/index.js +3 -12
  14. package/es/Checkbox/style/index.less +36 -12
  15. package/es/Checkbox/type.d.ts +94 -0
  16. package/es/Checkbox/type.js +6 -0
  17. package/es/Divider/index.d.ts +40 -2
  18. package/es/Divider/index.js +10 -1
  19. package/es/Divider/style/index.less +4 -0
  20. package/es/Divider/style/index.less.d.ts +183 -0
  21. package/es/Icon/icons.js +135 -58
  22. package/es/Input/components/Input/index.d.ts +13 -1
  23. package/es/Input/components/Input/index.js +1 -3
  24. package/es/Input/components/Password/index.d.ts +6 -1
  25. package/es/Input/components/Password/index.js +11 -3
  26. package/es/Input/components/TextArea/index.d.ts +1 -1
  27. package/es/Input/style/index.less +139 -59
  28. package/es/InputNumber/index.d.ts +3 -3
  29. package/es/InputNumber/style/index.less +66 -26
  30. package/es/InputNumber/type.d.ts +161 -0
  31. package/es/InputNumber/type.js +1 -0
  32. package/es/Steps/style/index.less +10 -4
  33. package/es/Table/Table.js +31 -23
  34. package/es/Table/components/TableHead/index.d.ts +0 -1
  35. package/es/Table/components/TableHead/index.js +1 -2
  36. package/es/Table/interface.d.ts +1 -0
  37. package/es/Table/style/index.less +2 -1
  38. package/es/Table/utils.js +16 -9
  39. package/es/Tabs/style/index.less +1 -1
  40. package/es/Tooltip/style/index.less +1 -1
  41. package/es/index.d.ts +3 -3
  42. package/es/style/themes/default/scrollBar.less +10 -7
  43. package/es/style/themes/default/themeColor.module.less +164 -166
  44. package/lib/Avatar/component/Avatar/index.d.ts +84 -0
  45. package/lib/Avatar/component/Avatar/index.js +61 -0
  46. package/lib/Avatar/index.d.ts +1 -13
  47. package/lib/Avatar/index.js +3 -44
  48. package/lib/Avatar/style/index.less +1 -1
  49. package/lib/Button/index.d.ts +1 -1
  50. package/lib/Button/index.js +3 -8
  51. package/lib/Button/style/index.less +7 -1
  52. package/lib/Button/style/variables.less +26 -26
  53. package/lib/Checkbox/component/CheckboxGroup/index.d.ts +4 -0
  54. package/lib/Checkbox/component/CheckboxGroup/index.js +42 -0
  55. package/lib/Checkbox/index.d.ts +4 -5
  56. package/lib/Checkbox/index.js +4 -13
  57. package/lib/Checkbox/style/index.less +36 -12
  58. package/lib/Checkbox/type.d.ts +94 -0
  59. package/lib/Checkbox/type.js +13 -0
  60. package/lib/Divider/index.d.ts +40 -2
  61. package/lib/Divider/index.js +11 -1
  62. package/lib/Divider/style/index.less +4 -0
  63. package/lib/Divider/style/index.less.d.ts +183 -0
  64. package/lib/Icon/icons.js +135 -58
  65. package/lib/Input/components/Input/index.d.ts +13 -1
  66. package/lib/Input/components/Input/index.js +1 -3
  67. package/lib/Input/components/Password/index.d.ts +6 -1
  68. package/lib/Input/components/Password/index.js +14 -4
  69. package/lib/Input/components/TextArea/index.d.ts +1 -1
  70. package/lib/Input/style/index.less +139 -59
  71. package/lib/InputNumber/index.d.ts +3 -3
  72. package/lib/InputNumber/style/index.less +66 -26
  73. package/lib/InputNumber/type.d.ts +161 -0
  74. package/lib/InputNumber/type.js +5 -0
  75. package/lib/Steps/style/index.less +10 -4
  76. package/lib/Table/Table.js +31 -23
  77. package/lib/Table/components/TableHead/index.d.ts +0 -1
  78. package/lib/Table/components/TableHead/index.js +1 -2
  79. package/lib/Table/interface.d.ts +1 -0
  80. package/lib/Table/style/index.less +2 -1
  81. package/lib/Table/utils.js +16 -9
  82. package/lib/Tabs/style/index.less +1 -1
  83. package/lib/Tooltip/style/index.less +1 -1
  84. package/lib/index.d.ts +3 -3
  85. package/lib/style/themes/default/scrollBar.less +10 -7
  86. package/lib/style/themes/default/themeColor.module.less +164 -166
  87. package/package.json +2 -2
  88. package/es/Table/hooks/useTableColumn.d.ts +0 -28
  89. package/es/Table/hooks/useTableColumn.js +0 -53
  90. package/lib/Table/hooks/useTableColumn.d.ts +0 -28
  91. package/lib/Table/hooks/useTableColumn.js +0 -66
@@ -0,0 +1,183 @@
1
+ // This file is automatically generated.
2
+ // Please do not change this file!
3
+ interface CssExports {
4
+ 'B10': string;
5
+ 'B20': string;
6
+ 'B30': string;
7
+ 'B40': string;
8
+ 'B50': string;
9
+ 'B60': string;
10
+ 'B70': string;
11
+ 'B80': string;
12
+ 'B90': string;
13
+ 'B95': string;
14
+ 'B98': string;
15
+ 'BG0': string;
16
+ 'BG10': string;
17
+ 'BG100': string;
18
+ 'BG20': string;
19
+ 'BG30': string;
20
+ 'BG40': string;
21
+ 'BG50': string;
22
+ 'BG60': string;
23
+ 'BG70': string;
24
+ 'BG80': string;
25
+ 'BG90': string;
26
+ 'BG95': string;
27
+ 'BG97': string;
28
+ 'ND0': string;
29
+ 'ND10': string;
30
+ 'ND20': string;
31
+ 'ND30': string;
32
+ 'ND40': string;
33
+ 'ND50': string;
34
+ 'ND60': string;
35
+ 'ND70': string;
36
+ 'ND80': string;
37
+ 'ND90': string;
38
+ 'ND95': string;
39
+ 'ND97': string;
40
+ 'NL0': string;
41
+ 'NL10': string;
42
+ 'NL20': string;
43
+ 'NL30': string;
44
+ 'NL40': string;
45
+ 'NL50': string;
46
+ 'NL60': string;
47
+ 'NL70': string;
48
+ 'NL80': string;
49
+ 'NL90': string;
50
+ 'NL95': string;
51
+ 'NL97': string;
52
+ 'SA10': string;
53
+ 'SA20': string;
54
+ 'SA30': string;
55
+ 'SA40': string;
56
+ 'SA50': string;
57
+ 'SA60': string;
58
+ 'SA70': string;
59
+ 'SA80': string;
60
+ 'SA90': string;
61
+ 'SA95': string;
62
+ 'SA98': string;
63
+ 'SB10': string;
64
+ 'SB20': string;
65
+ 'SB30': string;
66
+ 'SB40': string;
67
+ 'SB50': string;
68
+ 'SB60': string;
69
+ 'SB70': string;
70
+ 'SB80': string;
71
+ 'SB90': string;
72
+ 'SB95': string;
73
+ 'SB98': string;
74
+ 'SC10': string;
75
+ 'SC20': string;
76
+ 'SC30': string;
77
+ 'SC40': string;
78
+ 'SC50': string;
79
+ 'SC60': string;
80
+ 'SC70': string;
81
+ 'SC80': string;
82
+ 'SC90': string;
83
+ 'SC95': string;
84
+ 'SC98': string;
85
+ 'SHADOW_BODY_TOP_LEFT': string;
86
+ 'SHADOW_L': string;
87
+ 'SHADOW_LG': string;
88
+ 'SHADOW_MD': string;
89
+ 'SHADOW_SM': string;
90
+ 'SHADOW_XL': string;
91
+ 'SHADOW_XS': string;
92
+ 'TA10': string;
93
+ 'TA20': string;
94
+ 'TA30': string;
95
+ 'TA40': string;
96
+ 'TA50': string;
97
+ 'TA60': string;
98
+ 'TA70': string;
99
+ 'TA80': string;
100
+ 'TA90': string;
101
+ 'TA95': string;
102
+ 'TA98': string;
103
+ 'TB10': string;
104
+ 'TB20': string;
105
+ 'TB30': string;
106
+ 'TB40': string;
107
+ 'TB50': string;
108
+ 'TB60': string;
109
+ 'TB70': string;
110
+ 'TB80': string;
111
+ 'TB90': string;
112
+ 'TB95': string;
113
+ 'TB98': string;
114
+ 'TC10': string;
115
+ 'TC20': string;
116
+ 'TC30': string;
117
+ 'TC40': string;
118
+ 'TC50': string;
119
+ 'TC60': string;
120
+ 'TC70': string;
121
+ 'TC80': string;
122
+ 'TC90': string;
123
+ 'TC95': string;
124
+ 'TC98': string;
125
+ 'TD10': string;
126
+ 'TD20': string;
127
+ 'TD30': string;
128
+ 'TD40': string;
129
+ 'TD50': string;
130
+ 'TD60': string;
131
+ 'TD70': string;
132
+ 'TD80': string;
133
+ 'TD90': string;
134
+ 'TD95': string;
135
+ 'TD98': string;
136
+ 'TE10': string;
137
+ 'TE20': string;
138
+ 'TE30': string;
139
+ 'TE40': string;
140
+ 'TE50': string;
141
+ 'TE60': string;
142
+ 'TE70': string;
143
+ 'TE80': string;
144
+ 'TE90': string;
145
+ 'TE95': string;
146
+ 'TE98': string;
147
+ 'TF10': string;
148
+ 'TF20': string;
149
+ 'TF30': string;
150
+ 'TF40': string;
151
+ 'TF50': string;
152
+ 'TF60': string;
153
+ 'TF70': string;
154
+ 'TF80': string;
155
+ 'TF90': string;
156
+ 'TF95': string;
157
+ 'TF98': string;
158
+ 'TG10': string;
159
+ 'TG20': string;
160
+ 'TG30': string;
161
+ 'TG40': string;
162
+ 'TG50': string;
163
+ 'TG60': string;
164
+ 'TG70': string;
165
+ 'TG80': string;
166
+ 'TG90': string;
167
+ 'TG95': string;
168
+ 'TG98': string;
169
+ 'TH10': string;
170
+ 'TH20': string;
171
+ 'TH30': string;
172
+ 'TH40': string;
173
+ 'TH50': string;
174
+ 'TH60': string;
175
+ 'TH70': string;
176
+ 'TH80': string;
177
+ 'TH90': string;
178
+ 'TH95': string;
179
+ 'TH98': string;
180
+ 'ald-divider': string;
181
+ }
182
+ export const cssExports: CssExports;
183
+ export default cssExports;
package/lib/Icon/icons.js CHANGED
@@ -1147,374 +1147,451 @@ var _default = [{
1147
1147
  author: '阿广'
1148
1148
  }, {
1149
1149
  id: 163,
1150
- title: '函数-双色',
1151
- name: 'fx-duotone',
1152
- category: 'Duotone',
1153
- categoryCN: '双色',
1154
- author: '阿广'
1155
- }, {
1156
- id: 164,
1157
1150
  title: '增加小数',
1158
1151
  name: 'increase-the-scale-duotone',
1159
1152
  category: 'Duotone',
1160
1153
  categoryCN: '双色',
1161
1154
  author: '阿广'
1162
1155
  }, {
1163
- id: 165,
1156
+ id: 164,
1164
1157
  title: '减少小数位-双色',
1165
1158
  name: 'reduce-decimal-places-duotone',
1166
1159
  category: 'Duotone',
1167
1160
  categoryCN: '双色',
1168
1161
  author: '阿广'
1169
1162
  }, {
1170
- id: 166,
1163
+ id: 165,
1171
1164
  title: '日期-转换-双色',
1172
1165
  name: 'date-convert-duotone',
1173
1166
  category: 'Duotone',
1174
1167
  categoryCN: '双色',
1175
1168
  author: '阿广'
1176
1169
  }, {
1177
- id: 167,
1170
+ id: 166,
1178
1171
  title: '日期-裁剪-双色',
1179
1172
  name: 'data-crop-duotone',
1180
1173
  category: 'Duotone',
1181
1174
  categoryCN: '双色',
1182
1175
  author: '阿广'
1183
1176
  }, {
1184
- id: 168,
1177
+ id: 167,
1185
1178
  title: '警告-圆形-双色',
1186
1179
  name: 'alert-circle-duotone',
1187
1180
  category: 'Duotone',
1188
1181
  categoryCN: '双色',
1189
1182
  author: '阿广'
1190
1183
  }, {
1191
- id: 169,
1184
+ id: 168,
1192
1185
  title: '排序-升序',
1193
1186
  name: 'sort-amount-up-duotone',
1194
1187
  category: 'Duotone',
1195
1188
  categoryCN: '双色',
1196
1189
  author: '阿广'
1197
1190
  }, {
1198
- id: 170,
1191
+ id: 169,
1199
1192
  title: '排序-降序',
1200
1193
  name: 'sort-amount-down-duotone',
1201
1194
  category: 'Duotone',
1202
1195
  categoryCN: '双色',
1203
1196
  author: '阿广'
1204
1197
  }, {
1205
- id: 171,
1198
+ id: 170,
1206
1199
  title: '已过滤',
1207
1200
  name: 'filtered-duotone',
1208
1201
  category: 'Duotone',
1209
1202
  categoryCN: '双色',
1210
1203
  author: '阿广'
1211
1204
  }, {
1212
- id: 172,
1205
+ id: 171,
1213
1206
  title: '分组-展开',
1214
1207
  name: 'group-expand-duotone',
1215
1208
  category: 'Duotone',
1216
1209
  categoryCN: '双色',
1217
1210
  author: '阿广'
1218
1211
  }, {
1219
- id: 173,
1212
+ id: 172,
1220
1213
  title: '分组-折叠',
1221
1214
  name: 'group-fold-duotone',
1222
1215
  category: 'Duotone',
1223
1216
  categoryCN: '双色',
1224
1217
  author: '阿广'
1225
1218
  }, {
1226
- id: 174,
1219
+ id: 173,
1227
1220
  title: '添加-圆形',
1228
1221
  name: 'add-circle-duotone',
1229
1222
  category: 'Duotone',
1230
1223
  categoryCN: '双色',
1231
1224
  author: '阿广'
1232
1225
  }, {
1233
- id: 175,
1226
+ id: 174,
1234
1227
  title: '取消-圆形',
1235
1228
  name: 'cancel-circle-duotone',
1236
1229
  category: 'Duotone',
1237
1230
  categoryCN: '双色',
1238
1231
  author: '阿广'
1239
1232
  }, {
1240
- id: 176,
1233
+ id: 175,
1241
1234
  title: 'hive',
1242
1235
  name: 'hive-source',
1243
1236
  category: 'DataSource',
1244
1237
  categoryCN: '数据源平台',
1245
1238
  author: '阿广'
1246
1239
  }, {
1247
- id: 177,
1240
+ id: 176,
1248
1241
  title: 'mysql',
1249
1242
  name: 'mysql-source',
1250
1243
  category: 'DataSource',
1251
1244
  categoryCN: '数据源平台',
1252
1245
  author: '阿广'
1253
1246
  }, {
1254
- id: 178,
1247
+ id: 177,
1255
1248
  title: 'PostgreSQL',
1256
1249
  name: 'postgresql-source',
1257
1250
  category: 'DataSource',
1258
1251
  categoryCN: '数据源平台',
1259
1252
  author: '阿广'
1260
1253
  }, {
1261
- id: 179,
1254
+ id: 178,
1262
1255
  title: '分组条形图',
1263
1256
  name: 'grouped-bar-horizontal-chart',
1264
1257
  category: 'Chart',
1265
1258
  categoryCN: '图表',
1266
1259
  author: '阿广'
1267
1260
  }, {
1268
- id: 180,
1261
+ id: 179,
1269
1262
  title: '百分比柱状体',
1270
1263
  name: 'percentage-bar-vertical-chart',
1271
1264
  category: 'Chart',
1272
1265
  categoryCN: '图表',
1273
1266
  author: '阿广'
1274
1267
  }, {
1275
- id: 181,
1268
+ id: 180,
1276
1269
  title: '堆叠条形图',
1277
1270
  name: 'stacked-bar-horizontal-chart',
1278
1271
  category: 'Chart',
1279
1272
  categoryCN: '图表',
1280
1273
  author: '阿广'
1281
1274
  }, {
1282
- id: 182,
1275
+ id: 181,
1283
1276
  title: '折线图',
1284
1277
  name: 'line-chart',
1285
1278
  category: 'Chart',
1286
1279
  categoryCN: '图表',
1287
1280
  author: '阿广'
1288
1281
  }, {
1289
- id: 183,
1282
+ id: 182,
1290
1283
  title: '环形图',
1291
1284
  name: 'donut-chart',
1292
1285
  category: 'Chart',
1293
1286
  categoryCN: '图表',
1294
1287
  author: '阿广'
1295
1288
  }, {
1296
- id: 184,
1289
+ id: 183,
1297
1290
  title: '饼图',
1298
1291
  name: 'pie-chart',
1299
1292
  category: 'Chart',
1300
1293
  categoryCN: '图表',
1301
1294
  author: '阿广'
1302
1295
  }, {
1303
- id: 185,
1296
+ id: 184,
1304
1297
  title: '透视图',
1305
1298
  name: 'pivot-table-chart',
1306
1299
  category: 'Chart',
1307
1300
  categoryCN: '图表',
1308
1301
  author: '阿广'
1309
1302
  }, {
1310
- id: 186,
1303
+ id: 185,
1311
1304
  title: '堆叠柱形图',
1312
1305
  name: 'stacked-bar-vertical-chart',
1313
1306
  category: 'Chart',
1314
1307
  categoryCN: '图表',
1315
1308
  author: '阿广'
1316
1309
  }, {
1317
- id: 187,
1310
+ id: 186,
1318
1311
  title: '组合图',
1319
1312
  name: 'combo-chart',
1320
1313
  category: 'Chart',
1321
1314
  categoryCN: '图表',
1322
1315
  author: '阿广'
1323
1316
  }, {
1324
- id: 188,
1317
+ id: 187,
1325
1318
  title: '表格',
1326
1319
  name: 'table-chart',
1327
1320
  category: 'Chart',
1328
1321
  categoryCN: '图表',
1329
1322
  author: '阿广'
1330
1323
  }, {
1331
- id: 189,
1324
+ id: 188,
1332
1325
  title: '指标卡',
1333
1326
  name: 'statistic-card-chart',
1334
1327
  category: 'Chart',
1335
1328
  categoryCN: '图表',
1336
1329
  author: '阿广'
1337
1330
  }, {
1338
- id: 190,
1331
+ id: 189,
1339
1332
  title: '百分比条形图',
1340
1333
  name: 'percentage-bar-horizontal-chart',
1341
1334
  category: 'Chart',
1342
1335
  categoryCN: '图表',
1343
1336
  author: '阿广'
1344
1337
  }, {
1345
- id: 191,
1338
+ id: 190,
1346
1339
  title: '分组柱状图',
1347
1340
  name: 'grouped-bar-vertical-chart',
1348
1341
  category: 'Chart',
1349
1342
  categoryCN: '图表',
1350
1343
  author: '阿广'
1351
1344
  }, {
1352
- id: 192,
1345
+ id: 191,
1353
1346
  title: '添加-图标',
1354
1347
  name: 'add-chart',
1355
1348
  category: 'Chart',
1356
1349
  categoryCN: '填充',
1357
1350
  author: '阿广'
1358
1351
  }, {
1359
- id: 193,
1352
+ id: 192,
1360
1353
  title: '空态',
1361
1354
  name: 'empty-empty',
1362
1355
  category: 'Empty',
1363
1356
  categoryCN: '空态',
1364
1357
  author: '阿广'
1365
1358
  }, {
1366
- id: 194,
1359
+ id: 193,
1367
1360
  title: '环形图为空',
1368
1361
  name: 'donut-chart-empty',
1369
1362
  category: 'Empty',
1370
1363
  categoryCN: '空态',
1371
1364
  author: '阿广'
1372
1365
  }, {
1373
- id: 195,
1366
+ id: 194,
1374
1367
  title: '组合为空',
1375
1368
  name: 'combo-chart-empty',
1376
1369
  category: 'Empty',
1377
1370
  categoryCN: '空态',
1378
1371
  author: '阿广'
1379
1372
  }, {
1380
- id: 196,
1373
+ id: 195,
1381
1374
  title: '百分比柱状图为空',
1382
1375
  name: 'percentage-bar-vertical-chart-empty',
1383
1376
  category: 'Empty',
1384
1377
  categoryCN: '空态',
1385
1378
  author: '阿广'
1386
1379
  }, {
1387
- id: 197,
1380
+ id: 196,
1388
1381
  title: '堆叠柱状图为空',
1389
1382
  name: 'stacked-bar-vertical-chart-empty',
1390
1383
  category: 'Empty',
1391
1384
  categoryCN: '空态',
1392
1385
  author: '阿广'
1393
1386
  }, {
1394
- id: 198,
1387
+ id: 197,
1395
1388
  title: '饼状图为空',
1396
1389
  name: 'pie-chart-empty',
1397
1390
  category: 'Empty',
1398
1391
  categoryCN: '空态',
1399
1392
  author: '阿广'
1400
1393
  }, {
1401
- id: 199,
1394
+ id: 198,
1402
1395
  title: '百分比条形图为空',
1403
1396
  name: 'percentage-bar-horizontal-chart-empty',
1404
1397
  category: 'Empty',
1405
1398
  categoryCN: '空态',
1406
1399
  author: '阿广'
1407
1400
  }, {
1408
- id: 200,
1401
+ id: 199,
1409
1402
  title: '表格为空',
1410
1403
  name: 'table-empty',
1411
1404
  category: 'Empty',
1412
1405
  categoryCN: '空态',
1413
1406
  author: '阿广'
1414
1407
  }, {
1415
- id: 201,
1408
+ id: 200,
1416
1409
  title: '分组柱状图为空',
1417
1410
  name: 'grouped-bar-vertical-chart-empty',
1418
1411
  category: 'Empty',
1419
1412
  categoryCN: '空态',
1420
1413
  author: '阿广'
1421
1414
  }, {
1422
- id: 202,
1415
+ id: 201,
1423
1416
  title: '堆叠条形图为空',
1424
1417
  name: 'stacked-bar-horizontal-chart-empty',
1425
1418
  category: 'Empty',
1426
1419
  categoryCN: '空态',
1427
1420
  author: '阿广'
1428
1421
  }, {
1429
- id: 203,
1422
+ id: 202,
1430
1423
  title: '分组条形图为空',
1431
1424
  name: 'grouped-bar-horizontal-chart-empty',
1432
1425
  category: 'Empty',
1433
1426
  categoryCN: '空态',
1434
1427
  author: '阿广'
1435
1428
  }, {
1436
- id: 204,
1429
+ id: 203,
1437
1430
  title: '折线图为空',
1438
1431
  name: 'line-chart-empty',
1439
1432
  category: 'Empty',
1440
1433
  categoryCN: '空态',
1441
1434
  author: '阿广'
1442
1435
  }, {
1443
- id: 205,
1436
+ id: 204,
1444
1437
  title: '指标卡为空',
1445
1438
  name: 'statistic-card-empty',
1446
1439
  category: 'Empty',
1447
1440
  categoryCN: '空态',
1448
1441
  author: '阿广'
1449
1442
  }, {
1450
- id: 206,
1443
+ id: 205,
1451
1444
  title: '透视图为空',
1452
1445
  name: 'pivot-table-empty',
1453
1446
  category: 'Empty',
1454
1447
  categoryCN: '空态',
1455
1448
  author: '阿广'
1456
1449
  }, {
1457
- id: 207,
1450
+ id: 206,
1458
1451
  title: '来源数据为空',
1459
1452
  name: 'source-data-empty',
1460
1453
  category: 'Empty',
1461
1454
  categoryCN: '空态',
1462
1455
  author: '阿广'
1463
1456
  }, {
1464
- id: 208,
1457
+ id: 207,
1465
1458
  title: '来源数据为空',
1466
1459
  name: 'source-data-empty-line',
1467
1460
  category: 'Line',
1468
1461
  categoryCN: '线',
1469
1462
  author: '阿广'
1470
1463
  }, {
1471
- id: 209,
1464
+ id: 208,
1472
1465
  title: '添加汇总-线性',
1473
1466
  name: 'add-formula-line',
1474
1467
  category: 'Line',
1475
1468
  categoryCN: '线',
1476
1469
  author: '阿广'
1477
1470
  }, {
1478
- id: 210,
1471
+ id: 209,
1479
1472
  title: '空-线性',
1480
1473
  name: 'empty-line',
1481
1474
  category: 'Line',
1482
1475
  categoryCN: '线',
1483
1476
  author: '阿广'
1484
1477
  }, {
1485
- id: 211,
1478
+ id: 210,
1486
1479
  title: '抽取-线性',
1487
1480
  name: 'extraction-line',
1488
1481
  category: 'Line',
1489
1482
  categoryCN: '线',
1490
1483
  author: '阿广'
1491
1484
  }, {
1492
- id: 212,
1485
+ id: 211,
1493
1486
  title: '更多-竖线',
1494
1487
  name: 'more-vertical-line',
1495
1488
  category: 'Line',
1496
1489
  categoryCN: '线',
1497
1490
  author: '阿广'
1498
1491
  }, {
1499
- id: 213,
1492
+ id: 212,
1500
1493
  title: '退出',
1501
1494
  name: 'log-out-line',
1502
1495
  category: 'Line',
1503
1496
  categoryCN: '线',
1504
1497
  author: '阿广'
1505
1498
  }, {
1506
- id: 214,
1499
+ id: 213,
1507
1500
  title: '移除-圆形',
1508
1501
  name: 'remove-circle-line',
1509
1502
  category: 'Line',
1510
1503
  categoryCN: '线',
1511
1504
  author: '阿广'
1512
1505
  }, {
1513
- id: 215,
1506
+ id: 214,
1514
1507
  title: '数据源',
1515
1508
  name: 'datasource-line',
1516
1509
  category: 'Line',
1517
1510
  categoryCN: '线',
1518
1511
  author: '阿广'
1512
+ }, {
1513
+ id: 215,
1514
+ title: '函数-多色',
1515
+ name: 'fx-duotone-line',
1516
+ category: 'Line',
1517
+ categoryCN: '线',
1518
+ author: '阿广'
1519
+ }, {
1520
+ id: 216,
1521
+ title: 'SQL-线',
1522
+ name: 'sql-line',
1523
+ category: 'line',
1524
+ categoryCN: '线',
1525
+ author: '阿广'
1526
+ }, {
1527
+ id: 217,
1528
+ title: '数值范围',
1529
+ name: 'numerical-range-chart',
1530
+ category: 'Chart',
1531
+ categoryCN: '图标',
1532
+ author: '阿广'
1533
+ }, {
1534
+ id: 218,
1535
+ title: '日期范围',
1536
+ name: 'date-range-chart',
1537
+ category: 'Chart',
1538
+ categoryCN: '图标',
1539
+ author: '阿广'
1540
+ }, {
1541
+ id: 219,
1542
+ title: '输入框',
1543
+ name: 'input-chart',
1544
+ category: 'Chart',
1545
+ categoryCN: '图标',
1546
+ author: '阿广'
1547
+ }, {
1548
+ id: 220,
1549
+ title: '日期',
1550
+ name: 'date-chart',
1551
+ category: 'Chart',
1552
+ categoryCN: '图标',
1553
+ author: '阿广'
1554
+ }, {
1555
+ id: 221,
1556
+ title: '下拉菜单',
1557
+ name: 'dropdown-chart',
1558
+ category: 'Chart',
1559
+ categoryCN: '图标',
1560
+ author: '阿广'
1561
+ }, {
1562
+ id: 222,
1563
+ title: 'Y-左侧',
1564
+ name: 'y-left-duotone',
1565
+ category: 'Duotone',
1566
+ categoryCN: '双色',
1567
+ author: '阿广'
1568
+ }, {
1569
+ id: 223,
1570
+ title: 'Y-右侧',
1571
+ name: 'y-right-duotone',
1572
+ category: 'Duotone',
1573
+ categoryCN: '双色',
1574
+ author: '阿广'
1575
+ }, {
1576
+ id: 224,
1577
+ title: '左箭头-双线',
1578
+ name: 'arrows-left-double-line',
1579
+ category: 'Line',
1580
+ categoryCN: '线',
1581
+ author: '阿广'
1582
+ }, {
1583
+ id: 225,
1584
+ title: '右箭头-双线',
1585
+ name: 'arrows-right-double-line',
1586
+ category: 'Line',
1587
+ categoryCN: '线',
1588
+ author: '阿广'
1589
+ }, {
1590
+ id: 226,
1591
+ title: '布尔-线性',
1592
+ name: 'boolean-line',
1593
+ category: 'Line',
1594
+ categoryCN: '线',
1595
+ author: '阿广'
1519
1596
  }];
1520
1597
  exports.default = _default;