@mwater/visualization 5.4.5 → 5.5.0
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/.storybook/head.html +0 -1
- package/lib/MWaterContextComponent.js +1 -1
- package/lib/MWaterLoaderComponent.d.ts +2 -2
- package/lib/dashboards/DashboardComponent.js +2 -1
- package/lib/dashboards/LayoutOptionsComponent.js +18 -11
- package/lib/dashboards/ServerDashboardDataSource.d.ts +10 -1
- package/lib/dashboards/ServerDashboardDataSource.js +29 -0
- package/lib/dashboards/layoutOptions.d.ts +5 -1
- package/lib/datagrids/DatagridComponent.js +1 -1
- package/lib/datagrids/ExprCellComponent.d.ts +1 -0
- package/lib/datagrids/ExprCellComponent.js +22 -20
- package/lib/maps/BufferLayer.d.ts +18 -0
- package/lib/maps/BufferLayer.js +24 -14
- package/lib/maps/ChoroplethLayer.d.ts +18 -0
- package/lib/maps/ChoroplethLayer.js +34 -25
- package/lib/maps/ChoroplethLayerDesign.d.ts +3 -2
- package/lib/maps/ChoroplethLayerDesigner.d.ts +11 -1
- package/lib/maps/DirectMapDataSource.js +17 -0
- package/lib/maps/EditHoverOver.d.ts +1 -1
- package/lib/maps/EditHoverOver.js +62 -33
- package/lib/maps/HoverContent.d.ts +10 -5
- package/lib/maps/HoverContent.js +6 -35
- package/lib/maps/Layer.d.ts +37 -0
- package/lib/maps/Layer.js +30 -4
- package/lib/maps/MWaterServerLayer.d.ts +2 -2
- package/lib/maps/MWaterServerLayer.js +6 -6
- package/lib/maps/MapLayerDataSource.d.ts +9 -0
- package/lib/maps/MapUtils.d.ts +19 -1
- package/lib/maps/MapUtils.js +71 -1
- package/lib/maps/MarkersLayer.d.ts +18 -0
- package/lib/maps/MarkersLayer.js +24 -24
- package/lib/maps/MarkersLayerDesignerComponent.d.ts +14 -1
- package/lib/maps/RasterMapViewComponent.js +1 -1
- package/lib/maps/ServerMapDataSource.d.ts +9 -0
- package/lib/maps/ServerMapDataSource.js +29 -0
- package/lib/maps/VectorMapViewComponent.js +6 -6
- package/lib/maps/maps.d.ts +4 -2
- package/lib/mwater_table_selection/FormsListComponent.d.ts +33 -0
- package/lib/mwater_table_selection/FormsListComponent.js +141 -0
- package/lib/mwater_table_selection/IndicatorsListComponent.d.ts +47 -0
- package/lib/mwater_table_selection/IndicatorsListComponent.js +182 -0
- package/lib/mwater_table_selection/IssuesListComponent.d.ts +29 -0
- package/lib/mwater_table_selection/IssuesListComponent.js +123 -0
- package/lib/mwater_table_selection/MWaterAccountingSystemListComponent.d.ts +20 -0
- package/lib/mwater_table_selection/MWaterAccountingSystemListComponent.js +157 -0
- package/lib/mwater_table_selection/MWaterAssetSystemsListComponent.d.ts +17 -0
- package/lib/mwater_table_selection/MWaterAssetSystemsListComponent.js +79 -0
- package/lib/mwater_table_selection/MWaterCompleteTableSelectComponent.d.ts +37 -0
- package/lib/mwater_table_selection/MWaterCompleteTableSelectComponent.js +275 -0
- package/lib/mwater_table_selection/MWaterCustomTablesetListComponent.d.ts +17 -0
- package/lib/mwater_table_selection/MWaterCustomTablesetListComponent.js +94 -0
- package/lib/mwater_table_selection/MWaterMetricsTableListComponent.d.ts +17 -0
- package/lib/mwater_table_selection/MWaterMetricsTableListComponent.js +80 -0
- package/lib/mwater_table_selection/MWaterTableSelectComponent.d.ts +32 -0
- package/lib/mwater_table_selection/MWaterTableSelectComponent.js +158 -0
- package/lib/widgets/charts/Chart.d.ts +11 -0
- package/lib/widgets/charts/Chart.js +15 -0
- package/lib/widgets/charts/ChartWidgetComponent.d.ts +1 -0
- package/lib/widgets/charts/ChartWidgetComponent.js +27 -1
- package/lib/widgets/charts/layered/LayeredChartDesign.d.ts +1 -1
- package/lib/widgets/charts/layered/LayeredChartDesignerComponent.d.ts +1 -1
- package/lib/widgets/charts/layered/LayeredChartDesignerComponent.js +5 -12
- package/lib/widgets/charts/layered/LayeredChartLayerDesignerComponent.d.ts +43 -57
- package/lib/widgets/charts/layered/LayeredChartLayerDesignerComponent.js +113 -110
- package/lib/widgets/charts/layered/LayeredChartUtils.d.ts +2 -1
- package/lib/widgets/charts/layered/LayeredChartUtils.js +0 -2
- package/lib/widgets/charts/pivot/PivotChart.d.ts +2 -0
- package/lib/widgets/charts/pivot/PivotChart.js +156 -0
- package/lib/widgets/charts/pivot/PivotChartDesignerComponent.d.ts +5 -20
- package/lib/widgets/charts/pivot/PivotChartDesignerComponent.js +31 -61
- package/lib/widgets/charts/pivot/PivotChartLayoutBuilder.d.ts +4 -0
- package/lib/widgets/charts/pivot/PivotChartLayoutBuilder.js +4 -2
- package/lib/widgets/charts/pivot/PivotChartLayoutComponent.d.ts +5 -44
- package/lib/widgets/charts/pivot/PivotChartLayoutComponent.js +38 -63
- package/lib/widgets/charts/pivot/SegmentDesignerComponent.d.ts +7 -68
- package/lib/widgets/charts/pivot/SegmentDesignerComponent.js +58 -106
- package/lib/widgets/charts/table/TableChart.d.ts +2 -0
- package/lib/widgets/charts/table/TableChart.js +172 -1
- package/lib/widgets/charts/table/TableChartDesignerComponent.d.ts +7 -17
- package/lib/widgets/charts/table/TableChartDesignerComponent.js +79 -95
- package/lib/widgets/charts/table/TableChartViewComponent.d.ts +1 -7
- package/lib/widgets/charts/table/TableChartViewComponent.js +19 -27
- package/package.json +3 -8
- package/src/MWaterContextComponent.tsx +1 -1
- package/src/MWaterLoaderComponent.ts +1 -1
- package/src/dashboards/DashboardComponent.tsx +2 -1
- package/src/dashboards/LayoutOptionsComponent.tsx +22 -10
- package/src/dashboards/ServerDashboardDataSource.ts +36 -1
- package/src/dashboards/layoutOptions.tsx +5 -1
- package/src/datagrids/DatagridComponent.tsx +1 -1
- package/src/datagrids/ExprCellComponent.tsx +23 -20
- package/src/maps/BufferLayer.ts +35 -20
- package/src/maps/ChoroplethLayer.ts +51 -33
- package/src/maps/ChoroplethLayerDesign.ts +3 -2
- package/src/maps/ChoroplethLayerDesigner.tsx +2 -2
- package/src/maps/DirectMapDataSource.ts +21 -1
- package/src/maps/EditHoverOver.tsx +91 -51
- package/src/maps/HoverContent.tsx +16 -47
- package/src/maps/Layer.ts +42 -4
- package/src/maps/MWaterServerLayer.ts +6 -6
- package/src/maps/MapLayerDataSource.ts +8 -0
- package/src/maps/MapUtils.ts +70 -3
- package/src/maps/MarkersLayer.ts +34 -24
- package/src/maps/RasterMapViewComponent.ts +1 -1
- package/src/maps/ServerMapDataSource.ts +35 -0
- package/src/maps/VectorMapViewComponent.tsx +6 -6
- package/src/maps/maps.ts +4 -2
- package/src/mwater_table_selection/FormsListComponent.tsx +188 -0
- package/src/mwater_table_selection/IndicatorsListComponent.tsx +283 -0
- package/src/mwater_table_selection/IssuesListComponent.tsx +167 -0
- package/src/mwater_table_selection/MWaterAccountingSystemListComponent.tsx +225 -0
- package/src/{MWaterAssetSystemsListComponent.tsx → mwater_table_selection/MWaterAssetSystemsListComponent.tsx} +2 -2
- package/src/mwater_table_selection/MWaterCompleteTableSelectComponent.tsx +377 -0
- package/src/{MWaterCustomTablesetListComponent.tsx → mwater_table_selection/MWaterCustomTablesetListComponent.tsx} +1 -1
- package/src/{MWaterMetricsTableListComponent.tsx → mwater_table_selection/MWaterMetricsTableListComponent.tsx} +1 -1
- package/src/{MWaterTableSelectComponent.tsx → mwater_table_selection/MWaterTableSelectComponent.tsx} +83 -86
- package/src/widgets/charts/Chart.ts +17 -0
- package/src/widgets/charts/ChartWidgetComponent.tsx +36 -1
- package/src/widgets/charts/layered/LayeredChartDesign.ts +1 -1
- package/src/widgets/charts/layered/LayeredChartDesignerComponent.tsx +23 -24
- package/src/widgets/charts/layered/LayeredChartLayerDesignerComponent.tsx +260 -211
- package/src/widgets/charts/layered/LayeredChartUtils.ts +7 -7
- package/src/widgets/charts/pivot/PivotChart.ts +191 -0
- package/src/widgets/charts/pivot/PivotChartDesignerComponent.tsx +124 -129
- package/src/widgets/charts/pivot/PivotChartLayoutBuilder.ts +4 -2
- package/src/widgets/charts/pivot/PivotChartLayoutComponent.tsx +120 -149
- package/src/widgets/charts/pivot/SegmentDesignerComponent.tsx +178 -198
- package/src/widgets/charts/table/TableChart.ts +177 -1
- package/src/widgets/charts/table/TableChartDesignerComponent.tsx +422 -0
- package/src/widgets/charts/table/{TableChartViewComponent.ts → TableChartViewComponent.tsx} +65 -60
- package/src/MWaterCompleteTableSelectComponent.tsx +0 -975
- package/src/widgets/charts/table/TableChartDesignerComponent.ts +0 -441
|
@@ -1,7 +1,5 @@
|
|
|
1
1
|
import _ from "lodash"
|
|
2
2
|
import React from "react"
|
|
3
|
-
const R = React.createElement
|
|
4
|
-
|
|
5
3
|
import Color from "color"
|
|
6
4
|
import * as ui from "@mwater/react-library/lib/bootstrap"
|
|
7
5
|
import classNames from "classnames"
|
|
@@ -61,77 +59,71 @@ export default class PivotChartLayoutComponent extends React.Component<PivotChar
|
|
|
61
59
|
}
|
|
62
60
|
|
|
63
61
|
renderRow(row: PivotChartLayoutRow, rowIndex: number) {
|
|
64
|
-
return
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
onEditSection: this.props.onEditSection ? this.props.onEditSection.bind(null, cell.section) : undefined,
|
|
77
|
-
onSummarizeSegment: this.props.onSummarizeSegment
|
|
62
|
+
return <tr key={rowIndex}>
|
|
63
|
+
{_.map(row.cells, (cell, columnIndex) => {
|
|
64
|
+
return <LayoutCellComponent
|
|
65
|
+
ref={this.recordCellComp.bind(null, rowIndex, columnIndex)}
|
|
66
|
+
key={columnIndex}
|
|
67
|
+
layout={this.props.layout}
|
|
68
|
+
rowIndex={rowIndex}
|
|
69
|
+
columnIndex={columnIndex}
|
|
70
|
+
onHover={this.props.editable ? () => this.setState({ hoverSection: cell.section ?? null }) : undefined}
|
|
71
|
+
hoverSection={this.props.editable ? this.state.hoverSection : undefined}
|
|
72
|
+
onEditSection={this.props.onEditSection ? this.props.onEditSection.bind(null, cell.section) : undefined}
|
|
73
|
+
onSummarizeSegment={this.props.onSummarizeSegment
|
|
78
74
|
? this.props.onSummarizeSegment.bind(null, cell.section)
|
|
79
|
-
: undefined
|
|
80
|
-
|
|
81
|
-
})
|
|
82
|
-
|
|
75
|
+
: undefined}
|
|
76
|
+
/>
|
|
77
|
+
})}
|
|
78
|
+
</tr>
|
|
83
79
|
}
|
|
84
80
|
|
|
85
81
|
renderHoverPlusIcon = (key: any, x: any, y: any, onClick: any) => {
|
|
86
82
|
// Render a plus box
|
|
87
|
-
return
|
|
88
|
-
|
|
89
|
-
{
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
R(ui.Icon, { id: "fa-plus" })
|
|
108
|
-
)
|
|
83
|
+
return <div
|
|
84
|
+
key={key}
|
|
85
|
+
onClick={onClick}
|
|
86
|
+
style={{
|
|
87
|
+
position: "absolute",
|
|
88
|
+
left: x - 7,
|
|
89
|
+
top: y - 6,
|
|
90
|
+
border: "solid 1px #337ab7",
|
|
91
|
+
backgroundColor: "white",
|
|
92
|
+
paddingLeft: 2,
|
|
93
|
+
paddingRight: 2,
|
|
94
|
+
paddingTop: 0,
|
|
95
|
+
color: "#337ab7",
|
|
96
|
+
fontSize: 9,
|
|
97
|
+
cursor: "pointer",
|
|
98
|
+
opacity: 0.8
|
|
99
|
+
}}
|
|
100
|
+
>
|
|
101
|
+
<ui.Icon id="fa-plus" />
|
|
102
|
+
</div>
|
|
109
103
|
}
|
|
110
104
|
|
|
111
105
|
renderHoverRemoveIcon = (key: any, x: any, y: any, onClick: any) => {
|
|
112
106
|
// Render a plus box
|
|
113
|
-
return
|
|
114
|
-
|
|
115
|
-
{
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
R(ui.Icon, { id: "fa-remove" })
|
|
134
|
-
)
|
|
107
|
+
return <div
|
|
108
|
+
key={key}
|
|
109
|
+
onClick={onClick}
|
|
110
|
+
style={{
|
|
111
|
+
position: "absolute",
|
|
112
|
+
left: x - 7,
|
|
113
|
+
top: y - 6,
|
|
114
|
+
border: "solid 1px #337ab7",
|
|
115
|
+
backgroundColor: "white",
|
|
116
|
+
paddingLeft: 3,
|
|
117
|
+
paddingRight: 3,
|
|
118
|
+
paddingTop: 0,
|
|
119
|
+
color: "#337ab7",
|
|
120
|
+
fontSize: 9,
|
|
121
|
+
cursor: "pointer",
|
|
122
|
+
opacity: 0.8
|
|
123
|
+
}}
|
|
124
|
+
>
|
|
125
|
+
<ui.Icon id="fa-remove" />
|
|
126
|
+
</div>
|
|
135
127
|
}
|
|
136
128
|
|
|
137
129
|
// Render floating hover controls
|
|
@@ -259,24 +251,20 @@ export default class PivotChartLayoutComponent extends React.Component<PivotChar
|
|
|
259
251
|
)
|
|
260
252
|
}
|
|
261
253
|
|
|
262
|
-
return
|
|
254
|
+
return <div key="hover-controls">{controls}</div>
|
|
263
255
|
}
|
|
264
256
|
|
|
265
257
|
render() {
|
|
266
|
-
return
|
|
267
|
-
"
|
|
268
|
-
{
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
R(
|
|
277
|
-
"style",
|
|
278
|
-
null,
|
|
279
|
-
`\
|
|
258
|
+
return <div
|
|
259
|
+
style={{ position: "relative" }}
|
|
260
|
+
onMouseLeave={() => this.setState({ hoverSection: null })}
|
|
261
|
+
>
|
|
262
|
+
{/* Define CSS classes to keep HTML as small as possible
|
|
263
|
+
https://stackoverflow.com/a/19047221/876117
|
|
264
|
+
https://github.com/mWater/mwater-portal/issues/1183
|
|
265
|
+
cell borders not visible in firefox when you have a cell with position relative inside a table with collapsed borders */}
|
|
266
|
+
<style>
|
|
267
|
+
{`\
|
|
280
268
|
.pivot-chart-table {
|
|
281
269
|
width: 100%;
|
|
282
270
|
border-spacing: 0;
|
|
@@ -304,42 +292,32 @@ vertical-align: top;
|
|
|
304
292
|
.pivot-chart-table .br1 { border-right: solid 1px #f4f4f4 }
|
|
305
293
|
.pivot-chart-table .br2 { border-right: solid 1px #ccc }
|
|
306
294
|
.pivot-chart-table .br3 { border-right: solid 1px #888 }\
|
|
307
|
-
`
|
|
308
|
-
|
|
309
|
-
this.props.layout.tooManyRows
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
R(
|
|
327
|
-
"div",
|
|
328
|
-
{ style: { position: "relative" } },
|
|
329
|
-
R(
|
|
330
|
-
"table",
|
|
331
|
-
{ className: "pivot-chart-table" },
|
|
332
|
-
R(
|
|
333
|
-
"tbody",
|
|
334
|
-
null,
|
|
335
|
-
_.map(this.props.layout.rows, (row, rowIndex) => {
|
|
295
|
+
`}
|
|
296
|
+
</style>
|
|
297
|
+
{this.props.layout.tooManyRows ? (
|
|
298
|
+
<div className="text-warning" style={{ fontSize: 12 }}>
|
|
299
|
+
<i className="fa fa-exclamation-circle" />
|
|
300
|
+
{T`Warning: Too many rows in table to display`}
|
|
301
|
+
</div>
|
|
302
|
+
) : undefined}
|
|
303
|
+
|
|
304
|
+
{this.props.layout.tooManyColumns ? (
|
|
305
|
+
<div className="text-warning" style={{ fontSize: 12 }}>
|
|
306
|
+
<i className="fa fa-exclamation-circle" />
|
|
307
|
+
{T`Warning: Too many columns in table to display`}
|
|
308
|
+
</div>
|
|
309
|
+
) : undefined}
|
|
310
|
+
<div style={{ position: "relative" }}>
|
|
311
|
+
<table className="pivot-chart-table">
|
|
312
|
+
<tbody>
|
|
313
|
+
{_.map(this.props.layout.rows, (row, rowIndex) => {
|
|
336
314
|
return this.renderRow(row, rowIndex)
|
|
337
|
-
})
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
this.renderHoverControls()
|
|
341
|
-
|
|
342
|
-
|
|
315
|
+
})}
|
|
316
|
+
</tbody>
|
|
317
|
+
</table>
|
|
318
|
+
{this.renderHoverControls()}
|
|
319
|
+
</div>
|
|
320
|
+
</div>
|
|
343
321
|
}
|
|
344
322
|
}
|
|
345
323
|
|
|
@@ -387,17 +365,13 @@ class LayoutCellComponent extends React.Component<LayoutCellComponentProps> {
|
|
|
387
365
|
return null
|
|
388
366
|
}
|
|
389
367
|
|
|
390
|
-
return
|
|
391
|
-
"
|
|
392
|
-
{
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
R("a", { className: "link-plain", onClick: this.props.onSummarizeSegment }, T`Summarize`)
|
|
398
|
-
]
|
|
399
|
-
: undefined
|
|
400
|
-
)
|
|
368
|
+
return <span style={{ fontSize: "90%" }}>
|
|
369
|
+
<a className="link-plain" onClick={this.props.onEditSection}>{T`Edit`}</a>
|
|
370
|
+
{cell.summarize ? [
|
|
371
|
+
<span className="text-muted"> / </span>,
|
|
372
|
+
<a className="link-plain" onClick={this.props.onSummarizeSegment}>{T`Summarize`}</a>
|
|
373
|
+
] : undefined}
|
|
374
|
+
</span>
|
|
401
375
|
}
|
|
402
376
|
|
|
403
377
|
render() {
|
|
@@ -452,12 +426,13 @@ class LayoutCellComponent extends React.Component<LayoutCellComponentProps> {
|
|
|
452
426
|
textColor = lightness < 0.5 ? "rgb(204,204,204)" : undefined
|
|
453
427
|
}
|
|
454
428
|
|
|
455
|
-
const style = {
|
|
456
|
-
backgroundColor,
|
|
429
|
+
const style: React.CSSProperties = {
|
|
430
|
+
backgroundColor: backgroundColor || undefined,
|
|
457
431
|
textAlign: cell.align,
|
|
458
432
|
cursor: isHover && !cell.unconfigured ? "pointer" : undefined,
|
|
459
|
-
color: textColor
|
|
433
|
+
color: textColor || undefined
|
|
460
434
|
}
|
|
435
|
+
|
|
461
436
|
const classes = classNames({
|
|
462
437
|
cell: true,
|
|
463
438
|
// List out borders in compact way to keep HTML smaller
|
|
@@ -476,32 +451,28 @@ class LayoutCellComponent extends React.Component<LayoutCellComponentProps> {
|
|
|
476
451
|
})
|
|
477
452
|
|
|
478
453
|
// Style that should not affect popup menu
|
|
479
|
-
const innerStyle = {
|
|
454
|
+
const innerStyle: React.CSSProperties = {
|
|
480
455
|
fontWeight: cell.bold ? "bold" : undefined,
|
|
481
456
|
fontStyle: cell.italic ? "italic" : undefined,
|
|
482
457
|
marginLeft: cell.indent ? cell.indent * 5 : undefined
|
|
483
458
|
}
|
|
484
459
|
|
|
485
|
-
return
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
R(
|
|
499
|
-
"span",
|
|
500
|
-
{ style: innerStyle },
|
|
501
|
-
cell.unconfigured && this.props.onEditSection
|
|
460
|
+
return <td
|
|
461
|
+
ref={(c) => {
|
|
462
|
+
this.tdComponent = c
|
|
463
|
+
}}
|
|
464
|
+
onMouseEnter={this.props.onHover}
|
|
465
|
+
onClick={this.handleClick}
|
|
466
|
+
className={classes}
|
|
467
|
+
style={style}
|
|
468
|
+
colSpan={cell.columnSpan || undefined}
|
|
469
|
+
rowSpan={cell.rowSpan || undefined}
|
|
470
|
+
>
|
|
471
|
+
<span style={innerStyle}>
|
|
472
|
+
{cell.unconfigured && this.props.onEditSection
|
|
502
473
|
? this.renderUnconfigured(cell)
|
|
503
|
-
: cell.text || "\u00A0\u00A0\u00A0"
|
|
504
|
-
|
|
505
|
-
|
|
474
|
+
: cell.text || "\u00A0\u00A0\u00A0"}
|
|
475
|
+
</span>
|
|
476
|
+
</td>
|
|
506
477
|
}
|
|
507
478
|
}
|