@equinor/echo-components 0.7.0 → 0.7.2
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/components/charts/lineChart/LineChart.d.ts +7 -6
- package/dist/components/charts/lineChart/dummy/lineChartConfig.d.ts +2 -13
- package/dist/components/charts/lineChart/utils.d.ts +8 -1
- package/dist/icons/echoAssets/external.d.ts +2 -0
- package/dist/index.js +63 -17
- package/dist/index.js.map +1 -1
- package/dist/types/charts.d.ts +21 -1
- package/package.json +1 -1
|
@@ -1,19 +1,20 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
2
|
/// <reference types="chart.js" />
|
|
3
3
|
import { ChartData, Defaults } from 'chart.js/auto';
|
|
4
|
-
import { ChartCallbacks } from '../../../types/charts';
|
|
4
|
+
import { ChartCallbacks, LineChartConfig } from '../../../types/charts';
|
|
5
5
|
interface Props {
|
|
6
|
-
chartDataSet: ChartData;
|
|
7
|
-
chartTitle: string;
|
|
8
|
-
xAxisTitle: string;
|
|
9
|
-
yAxisTitle: string;
|
|
10
6
|
initialSize: Chart.ChartSize;
|
|
7
|
+
chartDataSet?: ChartData;
|
|
8
|
+
chartTitle?: string;
|
|
9
|
+
xAxisTitle?: string;
|
|
10
|
+
yAxisTitle?: string;
|
|
11
11
|
id?: string;
|
|
12
12
|
testId?: string;
|
|
13
13
|
chartConfigs?: {
|
|
14
14
|
defaults?: Defaults;
|
|
15
15
|
callbacks?: ChartCallbacks;
|
|
16
16
|
};
|
|
17
|
+
lineChartConfig?: LineChartConfig;
|
|
17
18
|
}
|
|
18
|
-
declare function LineChart({ chartDataSet, chartTitle, xAxisTitle, yAxisTitle, id, testId,
|
|
19
|
+
declare function LineChart({ initialSize, chartDataSet, chartTitle, xAxisTitle, yAxisTitle, id, testId, chartConfigs, lineChartConfig }: Props): JSX.Element;
|
|
19
20
|
export { LineChart };
|
|
@@ -1,24 +1,13 @@
|
|
|
1
1
|
export declare const chartDataSet: {
|
|
2
2
|
labels: string[];
|
|
3
|
-
datasets:
|
|
3
|
+
datasets: {
|
|
4
4
|
label: string;
|
|
5
5
|
data: number[];
|
|
6
6
|
borderColor: string;
|
|
7
7
|
pointBackgroundColor: string;
|
|
8
8
|
backgroundColor: string;
|
|
9
|
-
borderWidth: number;
|
|
10
|
-
pointStyle: string;
|
|
11
9
|
fill: boolean;
|
|
12
|
-
}
|
|
13
|
-
label: string;
|
|
14
|
-
data: number[];
|
|
15
|
-
borderColor: string;
|
|
16
|
-
pointBackgroundColor: string;
|
|
17
|
-
backgroundColor: string;
|
|
18
|
-
borderWidth: number;
|
|
19
|
-
fill: boolean;
|
|
20
|
-
pointStyle?: undefined;
|
|
21
|
-
})[];
|
|
10
|
+
}[];
|
|
22
11
|
};
|
|
23
12
|
export declare const tooltip: {
|
|
24
13
|
callbacks: {
|
|
@@ -1,3 +1,10 @@
|
|
|
1
1
|
import { ChartData } from 'chart.js/auto';
|
|
2
2
|
import { ChartCallbacks, LineChartConfig } from '../../../types/charts';
|
|
3
|
-
export
|
|
3
|
+
export type ChartConfigOptions = {
|
|
4
|
+
dataConfig: ChartData;
|
|
5
|
+
chartTitle: string;
|
|
6
|
+
xAxisTitle: string;
|
|
7
|
+
yAxisTitle: string;
|
|
8
|
+
chartCallbacks?: ChartCallbacks;
|
|
9
|
+
};
|
|
10
|
+
export declare const generateChartConfig: ({ dataConfig, chartTitle, xAxisTitle, yAxisTitle, chartCallbacks }: ChartConfigOptions) => LineChartConfig;
|
|
@@ -3,3 +3,5 @@ export declare const robim_external_ald: IconData;
|
|
|
3
3
|
export declare const robim_external_timp: IconData;
|
|
4
4
|
export declare const robim_external_timp_text: IconData;
|
|
5
5
|
export declare const robim_external_iwit: IconData;
|
|
6
|
+
export declare const robim_external_methane_sensor: IconData;
|
|
7
|
+
export declare const robim_external_satellite: IconData;
|
package/dist/index.js
CHANGED
|
@@ -15259,20 +15259,36 @@ const registerables = [
|
|
|
15259
15259
|
|
|
15260
15260
|
Chart.register(...registerables);
|
|
15261
15261
|
|
|
15262
|
-
var generateChartConfig = function generateChartConfig(
|
|
15263
|
-
var
|
|
15262
|
+
var generateChartConfig = function generateChartConfig(_ref) {
|
|
15263
|
+
var dataConfig = _ref.dataConfig,
|
|
15264
|
+
chartTitle = _ref.chartTitle,
|
|
15265
|
+
xAxisTitle = _ref.xAxisTitle,
|
|
15266
|
+
yAxisTitle = _ref.yAxisTitle,
|
|
15267
|
+
_ref$chartCallbacks = _ref.chartCallbacks,
|
|
15268
|
+
chartCallbacks = _ref$chartCallbacks === void 0 ? {} : _ref$chartCallbacks;
|
|
15264
15269
|
var _a;
|
|
15265
15270
|
var config = {
|
|
15266
15271
|
type: 'line',
|
|
15267
15272
|
data: dataConfig,
|
|
15268
15273
|
options: {
|
|
15269
15274
|
responsive: true,
|
|
15275
|
+
stacked: false,
|
|
15270
15276
|
interaction: {
|
|
15271
15277
|
mode: 'nearest',
|
|
15272
15278
|
intersect: false
|
|
15273
15279
|
},
|
|
15274
|
-
|
|
15280
|
+
elements: {
|
|
15281
|
+
line: {
|
|
15282
|
+
borderWidth: 3
|
|
15283
|
+
}
|
|
15284
|
+
},
|
|
15275
15285
|
plugins: {
|
|
15286
|
+
legend: {
|
|
15287
|
+
labels: {
|
|
15288
|
+
boxWidth: 28,
|
|
15289
|
+
boxHeight: 12
|
|
15290
|
+
}
|
|
15291
|
+
},
|
|
15276
15292
|
title: {
|
|
15277
15293
|
display: true,
|
|
15278
15294
|
text: "".concat(chartTitle)
|
|
@@ -15288,6 +15304,10 @@ var generateChartConfig = function generateChartConfig(dataConfig, chartTitle, x
|
|
|
15288
15304
|
title: {
|
|
15289
15305
|
display: true,
|
|
15290
15306
|
text: "".concat(xAxisTitle)
|
|
15307
|
+
},
|
|
15308
|
+
ticks: {
|
|
15309
|
+
minRotation: 0,
|
|
15310
|
+
maxRotation: 0
|
|
15291
15311
|
}
|
|
15292
15312
|
},
|
|
15293
15313
|
y: {
|
|
@@ -15307,27 +15327,31 @@ var generateChartConfig = function generateChartConfig(dataConfig, chartTitle, x
|
|
|
15307
15327
|
};
|
|
15308
15328
|
|
|
15309
15329
|
function LineChart(_ref) {
|
|
15310
|
-
var
|
|
15311
|
-
|
|
15312
|
-
|
|
15313
|
-
|
|
15330
|
+
var initialSize = _ref.initialSize,
|
|
15331
|
+
chartDataSet = _ref.chartDataSet,
|
|
15332
|
+
_ref$chartTitle = _ref.chartTitle,
|
|
15333
|
+
chartTitle = _ref$chartTitle === void 0 ? '' : _ref$chartTitle,
|
|
15334
|
+
_ref$xAxisTitle = _ref.xAxisTitle,
|
|
15335
|
+
xAxisTitle = _ref$xAxisTitle === void 0 ? '' : _ref$xAxisTitle,
|
|
15336
|
+
_ref$yAxisTitle = _ref.yAxisTitle,
|
|
15337
|
+
yAxisTitle = _ref$yAxisTitle === void 0 ? '' : _ref$yAxisTitle,
|
|
15314
15338
|
_ref$id = _ref.id,
|
|
15315
15339
|
id = _ref$id === void 0 ? 'line-chart' : _ref$id,
|
|
15316
15340
|
_ref$testId = _ref.testId,
|
|
15317
15341
|
testId = _ref$testId === void 0 ? 'em-line-chart' : _ref$testId,
|
|
15318
|
-
initialSize = _ref.initialSize,
|
|
15319
15342
|
_ref$chartConfigs = _ref.chartConfigs,
|
|
15320
|
-
chartConfigs = _ref$chartConfigs === void 0 ? {} : _ref$chartConfigs
|
|
15343
|
+
chartConfigs = _ref$chartConfigs === void 0 ? {} : _ref$chartConfigs,
|
|
15344
|
+
lineChartConfig = _ref.lineChartConfig;
|
|
15321
15345
|
var height = initialSize.height,
|
|
15322
15346
|
width = initialSize.width;
|
|
15323
15347
|
var defaults = chartConfigs.defaults,
|
|
15324
15348
|
callbacks = chartConfigs.callbacks;
|
|
15325
15349
|
var initChartDefaults = function initChartDefaults() {
|
|
15326
15350
|
var _a, _b, _c, _d, _e;
|
|
15327
|
-
Chart.defaults.font.size = ((_a = defaults === null || defaults === void 0 ? void 0 : defaults.font) === null || _a === void 0 ? void 0 : _a.size) ||
|
|
15351
|
+
Chart.defaults.font.size = ((_a = defaults === null || defaults === void 0 ? void 0 : defaults.font) === null || _a === void 0 ? void 0 : _a.size) || 12;
|
|
15328
15352
|
Chart.defaults.font.family = ((_b = defaults === null || defaults === void 0 ? void 0 : defaults.font) === null || _b === void 0 ? void 0 : _b.family) || 'Equinor';
|
|
15329
15353
|
Chart.defaults.interaction.mode = ((_c = defaults === null || defaults === void 0 ? void 0 : defaults.interaction) === null || _c === void 0 ? void 0 : _c.mode) || 'nearest'; // popup
|
|
15330
|
-
Chart.defaults.elements.point.pointStyle = ((_e = (_d = defaults === null || defaults === void 0 ? void 0 : defaults.elements) === null || _d === void 0 ? void 0 : _d.point) === null || _e === void 0 ? void 0 : _e.pointStyle) ||
|
|
15354
|
+
Chart.defaults.elements.point.pointStyle = ((_e = (_d = defaults === null || defaults === void 0 ? void 0 : defaults.elements) === null || _d === void 0 ? void 0 : _d.point) === null || _e === void 0 ? void 0 : _e.pointStyle) || false;
|
|
15331
15355
|
};
|
|
15332
15356
|
var canvasRef = useRef(null);
|
|
15333
15357
|
var _useState = useState(undefined),
|
|
@@ -15338,10 +15362,22 @@ function LineChart(_ref) {
|
|
|
15338
15362
|
var canvas = canvasRef.current;
|
|
15339
15363
|
if (chartInstance || !canvas) return;
|
|
15340
15364
|
initChartDefaults();
|
|
15341
|
-
var
|
|
15342
|
-
|
|
15365
|
+
var chartConfig;
|
|
15366
|
+
if (lineChartConfig) chartConfig = lineChartConfig;else if (chartDataSet) {
|
|
15367
|
+
var options = {
|
|
15368
|
+
dataConfig: chartDataSet,
|
|
15369
|
+
chartTitle: chartTitle,
|
|
15370
|
+
xAxisTitle: xAxisTitle,
|
|
15371
|
+
yAxisTitle: yAxisTitle,
|
|
15372
|
+
chartCallbacs: callbacks
|
|
15373
|
+
};
|
|
15374
|
+
chartConfig = generateChartConfig(options);
|
|
15375
|
+
} else {
|
|
15376
|
+
throw new Error('Neither chartDataSet nor lineChartConfig were provided!');
|
|
15377
|
+
}
|
|
15378
|
+
var lineChart = new Chart(canvas, chartConfig);
|
|
15343
15379
|
setChartInstance(lineChart);
|
|
15344
|
-
}, [chartInstance]);
|
|
15380
|
+
}, [callbacks, chartDataSet, chartInstance, chartTitle, initChartDefaults, lineChartConfig, xAxisTitle, yAxisTitle]);
|
|
15345
15381
|
return /*#__PURE__*/React__default.createElement("canvas", {
|
|
15346
15382
|
id: id,
|
|
15347
15383
|
ref: canvasRef,
|
|
@@ -39706,7 +39742,7 @@ var staticData$4 = {
|
|
|
39706
39742
|
*/
|
|
39707
39743
|
var robim_external_ald = Object.assign(Object.assign({}, staticData$4), {
|
|
39708
39744
|
name: 'robim_external_ald',
|
|
39709
|
-
svgPathData: 'M14.
|
|
39745
|
+
svgPathData: 'M14.168 0H12.168V2.06609C10.9636 2.22655 9.84967 2.6728 8.89647 3.33442C9.40835 3.77027 9.8408 4.29664 10.1691 4.88876C10.7654 4.50016 11.4417 4.22409 12.168 4.09069V14H10.668C10.1157 14 9.66797 14.4477 9.66797 15V16H7.66797V13.1859H5.66797V21C5.66797 21.5523 6.11568 22 6.66797 22H19.668C20.2203 22 20.668 21.5523 20.668 21V9.5C20.668 5.69692 17.8373 2.55498 14.168 2.06609V0ZM14.168 14V4.09069C16.7281 4.56094 18.668 6.80393 18.668 9.5V16H16.668V15C16.668 14.4477 16.2203 14 15.668 14H14.168ZM12.168 18H7.66797V20H12.168V18ZM14.168 20V18H18.668V20H14.168Z M3.76797 3.4501C3.76797 3.11873 4.0366 2.8501 4.36797 2.8501C4.69934 2.8501 4.96797 3.11873 4.96797 3.4501V12.2501C4.96797 12.5815 4.69934 12.8501 4.36797 12.8501C4.0366 12.8501 3.76797 12.5815 3.76797 12.2501V3.4501Z M2.56797 4.8501C2.2366 4.8501 1.96797 5.11873 1.96797 5.4501V10.2501C1.96797 10.5815 2.2366 10.8501 2.56797 10.8501C2.89934 10.8501 3.16797 10.5815 3.16797 10.2501V5.4501C3.16797 5.11873 2.89934 4.8501 2.56797 4.8501Z M0.767969 9.3501C0.436598 9.3501 0.167969 9.08147 0.167969 8.7501V6.9501C0.167969 6.61873 0.436598 6.3501 0.767969 6.3501C1.09934 6.3501 1.36797 6.61873 1.36797 6.9501V8.7501C1.36797 9.08147 1.09934 9.3501 0.767969 9.3501Z M6.16797 5.8501C5.8366 5.8501 5.56797 6.11873 5.56797 6.4501V9.2501C5.56797 9.58147 5.8366 9.8501 6.16797 9.8501C6.49934 9.8501 6.76797 9.58147 6.76797 9.2501V6.4501C6.76797 6.11873 6.49934 5.8501 6.16797 5.8501Z M7.36797 4.9501C7.36797 4.61873 7.6366 4.3501 7.96797 4.3501C8.29934 4.3501 8.56797 4.61873 8.56797 4.9501V10.7501C8.56797 11.0815 8.29934 11.3501 7.96797 11.3501C7.6366 11.3501 7.36797 11.0815 7.36797 10.7501V4.9501Z M9.76797 6.3501C9.4366 6.3501 9.16797 6.61873 9.16797 6.9501V8.7501C9.16797 9.08147 9.4366 9.3501 9.76797 9.3501C10.0993 9.3501 10.368 9.08147 10.368 8.7501V6.9501C10.368 6.61873 10.0993 6.3501 9.76797 6.3501Z'
|
|
39710
39746
|
});
|
|
39711
39747
|
var robim_external_timp = Object.assign(Object.assign({}, staticData$4), {
|
|
39712
39748
|
name: 'robim_external_timp',
|
|
@@ -39718,7 +39754,15 @@ var robim_external_timp_text = Object.assign(Object.assign({}, staticData$4), {
|
|
|
39718
39754
|
});
|
|
39719
39755
|
var robim_external_iwit = Object.assign(Object.assign({}, staticData$4), {
|
|
39720
39756
|
name: 'robim_external_iwit',
|
|
39721
|
-
svgPathData: '
|
|
39757
|
+
svgPathData: 'M7.66787 1.5C7.66787 0.947715 8.11558 0.5 8.66787 0.5H12.6679C13.2202 0.5 13.6679 0.947715 13.6679 1.5C13.6679 2.05228 13.2202 2.5 12.6679 2.5H11.6679V5.60526L16.6339 2.46884C17.2997 2.04829 18.1679 2.52677 18.1679 3.31433V6.5H20.2836C20.4788 6.5 20.622 6.68342 20.5747 6.87276L20.2247 8.27276C20.1913 8.40631 20.0713 8.5 19.9336 8.5H18.1679V11.6857C18.1679 12.4732 17.2997 12.9517 16.6339 12.5312L10.6679 8.76316L4.70186 12.5312C4.03599 12.9517 3.16787 12.4732 3.16787 11.6857V8.5H1.0521C0.85693 8.5 0.713722 8.31658 0.761058 8.12724L1.11106 6.72724C1.14445 6.59369 1.26444 6.5 1.4021 6.5H3.16787V3.31433C3.16787 2.52677 4.03599 2.04829 4.70186 2.46884L9.66787 5.60526V2.5H8.66787C8.11558 2.5 7.66787 2.05228 7.66787 1.5ZM16.1679 9.87135L12.4132 7.5L16.1679 5.12865V9.87135ZM8.9225 7.5L5.16787 9.87135V5.12865L8.9225 7.5Z M1.83408 21.4C1.91218 21.4 1.98479 21.3759 2.03698 21.3197C2.08807 21.2648 2.10696 21.1927 2.10696 21.1215V14.4563C2.10696 14.3752 2.08275 14.2896 2.01095 14.2384C1.93801 14.1865 1.84836 14.1929 1.76921 14.2241L0.879316 14.5601C0.736429 14.6058 0.667969 14.7288 0.667969 14.8629V21.1215C0.667969 21.1967 0.691571 21.269 0.745531 21.3226C0.799471 21.3762 0.872645 21.4 0.950456 21.4H1.83408Z M6.41127 21.3484C6.46659 21.3096 6.50344 21.2526 6.52744 21.1844L7.96025 16.6062L9.39189 21.1811L9.39306 21.1844C9.41706 21.2526 9.45391 21.3096 9.50924 21.3484C9.56454 21.3872 9.6274 21.4 9.68908 21.4H10.419C10.4802 21.4 10.5441 21.3874 10.5991 21.3474C10.6545 21.3072 10.6888 21.248 10.7075 21.1781L12.6277 14.5946C12.6527 14.5158 12.6512 14.4301 12.604 14.3605C12.5555 14.2889 12.4743 14.2571 12.388 14.2571H11.4179C11.3497 14.2571 11.282 14.2732 11.2249 14.3145C11.1672 14.3561 11.1292 14.4177 11.1099 14.4902L9.99207 18.4572L8.76677 14.487C8.74809 14.4232 8.71502 14.3652 8.66454 14.3227C8.61288 14.2792 8.54884 14.2571 8.4789 14.2571H7.4416C7.37167 14.2571 7.30762 14.2792 7.25596 14.3227C7.20548 14.3652 7.17241 14.4232 7.15373 14.487L5.92843 18.4572L4.81035 14.4894C4.79103 14.4169 4.75328 14.3561 4.69564 14.3145C4.63853 14.2732 4.57084 14.2571 4.50259 14.2571H3.53252C3.44625 14.2571 3.36498 14.2889 3.31648 14.3605C3.2693 14.4301 3.26775 14.5159 3.29282 14.5946L5.21304 21.1781C5.23172 21.2479 5.26601 21.3071 5.32142 21.3474C5.37641 21.3874 5.44029 21.4 5.50147 21.4H6.23142C6.2931 21.4 6.35597 21.3872 6.41127 21.3484Z M14.9785 21.4C15.0566 21.4 15.1292 21.3759 15.1814 21.3197C15.2325 21.2648 15.2514 21.1927 15.2514 21.1215V14.4563C15.2514 14.3752 15.2272 14.2896 15.1554 14.2384C15.0824 14.1865 14.992 14.1932 14.9128 14.2245L14.0238 14.5601C13.8809 14.6058 13.8124 14.7288 13.8124 14.8629V21.1215C13.8124 21.1967 13.836 21.269 13.89 21.3226C13.9439 21.3762 14.0171 21.4 14.0949 21.4H14.9785Z M19.3567 21.4C19.4348 21.4 19.5074 21.3759 19.5596 21.3197C19.6106 21.2648 19.6295 21.1927 19.6295 21.1215V15.6275H21.0855C21.1633 15.6275 21.2365 15.6036 21.2904 15.5501C21.3444 15.4965 21.368 15.4242 21.368 15.3489V14.5356C21.368 14.4604 21.3444 14.388 21.2904 14.3345C21.2365 14.2809 21.1633 14.2571 21.0855 14.2571H16.7442C16.6664 14.2571 16.5932 14.2809 16.5393 14.3345C16.4853 14.388 16.4617 14.4604 16.4617 14.5356V15.3489C16.4617 15.4242 16.4853 15.4965 16.5393 15.5501C16.5932 15.6036 16.6664 15.6275 16.7442 15.6275H18.2001V21.1215C18.2001 21.1927 18.219 21.2648 18.2701 21.3197C18.3223 21.3759 18.3949 21.4 18.473 21.4H19.3567Z'
|
|
39758
|
+
});
|
|
39759
|
+
var robim_external_methane_sensor = Object.assign(Object.assign({}, staticData$4), {
|
|
39760
|
+
name: 'robim_external_methane_sensor',
|
|
39761
|
+
svgPathData: 'M4.7473 9.5C6.21032 9.5 7.1613 8.90185 7.82858 7.97704L7.83102 7.97354C7.87693 7.90491 7.89471 7.82275 7.87379 7.73899C7.85412 7.66022 7.80397 7.5947 7.74156 7.54259L6.99664 6.89194C6.92723 6.82595 6.84577 6.78264 6.75389 6.79418C6.66507 6.80533 6.59602 6.86438 6.54345 6.92752L6.53888 6.9338C6.34852 7.19508 6.12588 7.41167 5.8411 7.56368C5.55628 7.71571 5.20306 7.80645 4.7473 7.80645C3.34911 7.80645 2.37902 6.60441 2.37902 5C2.37902 3.39559 3.34911 2.19355 4.7473 2.19355C5.5144 2.19355 6.12022 2.53742 6.62406 3.10991C6.68269 3.17983 6.75769 3.22954 6.84596 3.23231C6.9347 3.23509 7.01132 3.18963 7.07106 3.12586L7.81911 2.32766L7.82409 2.32159C7.877 2.25703 7.91445 2.17538 7.91445 2.08317C7.91445 1.98952 7.87583 1.90292 7.80828 1.83051C7.07447 1.02252 6.16189 0.5 4.7473 0.5C3.57518 0.5 2.55369 0.946502 1.82517 1.73672C1.09663 2.52696 0.667969 3.65338 0.667969 5C0.667969 6.34662 1.09663 7.47304 1.82517 8.26328C2.55369 9.0535 3.57518 9.5 4.7473 9.5Z M10.5831 9.01613V5.65323H13.6653V9.01613C13.6653 9.10885 13.6935 9.19722 13.7567 9.2621C13.8194 9.3265 13.904 9.35484 13.9939 9.35484H15.0364C15.1265 9.35484 15.2103 9.32621 15.2711 9.25867C15.3311 9.19199 15.3536 9.1038 15.3536 9.01613V0.887096C15.3536 0.786962 15.3247 0.682818 15.2451 0.618344C15.1628 0.55167 15.0578 0.553541 14.9617 0.59274L13.9096 1.00327L13.9065 1.00462C13.8347 1.03525 13.7726 1.08102 13.7289 1.14642C13.6847 1.21247 13.6653 1.2895 13.6653 1.37097V3.98387H10.5831V0.887096C10.5831 0.786006 10.5535 0.68391 10.4725 0.621277C10.3919 0.55899 10.2912 0.559419 10.1985 0.58987L9.13907 1.00327L9.13591 1.00462C9.06418 1.03525 9.00207 1.08102 8.95831 1.14642C8.91411 1.21247 8.89471 1.2895 8.89471 1.37097V9.01613C8.89471 9.10885 8.92293 9.19722 8.98614 9.2621C9.04888 9.3265 9.13347 9.35484 9.22332 9.35484H10.2658C10.3559 9.35484 10.4398 9.32621 10.5005 9.25867C10.5605 9.19199 10.5831 9.1038 10.5831 9.01613Z M16.5404 7.54032H19.8039V9.01613C19.8039 9.10885 19.8321 9.19722 19.8953 9.2621C19.9581 9.3265 20.0427 9.35484 20.1325 9.35484H21.175C21.2651 9.35484 21.349 9.32621 21.4097 9.25867C21.4697 9.19199 21.4923 9.1038 21.4923 9.01613V7.54032H21.9569C22.0277 7.54032 22.1025 7.52532 22.1677 7.47971C22.2337 7.43353 22.2791 7.36347 22.3028 7.27503L22.6409 6.28839C22.6761 6.19015 22.6829 6.08057 22.6252 5.9913C22.5676 5.90207 22.4699 5.87097 22.3762 5.87097H21.4923V0.983871C21.4923 0.896198 21.4697 0.808012 21.4097 0.741327C21.349 0.673786 21.2651 0.645161 21.175 0.645161H20.2345C20.1707 0.645161 20.1077 0.656582 20.0478 0.687433C19.9877 0.718405 19.9375 0.765527 19.8946 0.826613L19.8936 0.82803L16.3236 6.06679C16.2515 6.17448 16.2232 6.28449 16.2232 6.41532V7.20161C16.2232 7.28929 16.2458 7.37747 16.3057 7.44416C16.3665 7.5117 16.4503 7.54032 16.5404 7.54032ZM18.1793 5.87097L19.8039 3.48506V5.87097H18.1793Z'
|
|
39762
|
+
});
|
|
39763
|
+
var robim_external_satellite = Object.assign(Object.assign({}, staticData$4), {
|
|
39764
|
+
name: 'robim_external_satellite',
|
|
39765
|
+
svgPathData: 'M12.3346 19.1667V17.5C13.9596 17.5 15.338 16.9342 16.4696 15.8025C17.6019 14.6703 18.168 13.2917 18.168 11.6667H19.8346C19.8346 12.7083 19.6369 13.6839 19.2413 14.5933C18.8452 15.5033 18.3105 16.295 17.6371 16.9683C16.9632 17.6422 16.1716 18.1769 15.2621 18.5725C14.3521 18.9686 13.3763 19.1667 12.3346 19.1667ZM12.3346 15.8333V14.1667C13.0291 14.1667 13.6194 13.9236 14.1055 13.4375C14.5916 12.9514 14.8346 12.3611 14.8346 11.6667H16.5013C16.5013 12.8194 16.0952 13.8019 15.283 14.6142C14.4702 15.4269 13.4874 15.8333 12.3346 15.8333ZM5.29297 18.6458C5.08464 18.6458 4.8763 18.6042 4.66797 18.5208C4.45964 18.4375 4.27214 18.3194 4.10547 18.1667L1.14714 15.2083C0.994358 15.0417 0.876302 14.8542 0.792969 14.6458C0.709635 14.4375 0.667969 14.2292 0.667969 14.0208C0.667969 13.7986 0.709635 13.5867 0.792969 13.385C0.876302 13.1839 0.994358 13.0069 1.14714 12.8542L3.79297 10.2083C4.11241 9.88889 4.50825 9.72583 4.98047 9.71917C5.45269 9.71194 5.84852 9.86806 6.16797 10.1875L7.20964 11.2292L7.79297 10.6458L6.7513 9.60417C6.43186 9.28472 6.27214 8.89583 6.27214 8.4375C6.27214 7.97917 6.43186 7.59028 6.7513 7.27083L7.9388 6.08333C8.25825 5.76389 8.65075 5.60417 9.1163 5.60417C9.5813 5.60417 9.97352 5.76389 10.293 6.08333L11.3346 7.125L11.918 6.54167L10.8763 5.5C10.5569 5.18056 10.3971 4.78806 10.3971 4.3225C10.3971 3.8575 10.5569 3.46528 10.8763 3.14583L13.5221 0.5C13.6888 0.333333 13.8763 0.208333 14.0846 0.125C14.293 0.0416667 14.5013 0 14.7096 0C14.918 0 15.1227 0.0416667 15.3238 0.125C15.5255 0.208333 15.7096 0.333333 15.8763 0.5L18.8346 3.45833C19.0013 3.61111 19.123 3.78806 19.1996 3.98917C19.2757 4.19083 19.3138 4.40278 19.3138 4.625C19.3138 4.83333 19.2757 5.04167 19.1996 5.25C19.123 5.45833 19.0013 5.64583 18.8346 5.8125L16.1888 8.45833C15.8694 8.77778 15.4769 8.9375 15.0113 8.9375C14.5463 8.9375 14.1541 8.77778 13.8346 8.45833L12.793 7.41667L12.2096 8L13.2513 9.04167C13.5707 9.36111 13.7271 9.75333 13.7205 10.2183C13.7132 10.6839 13.5499 11.0764 13.2305 11.3958L12.0638 12.5625C11.7444 12.8819 11.3521 13.0417 10.8871 13.0417C10.4216 13.0417 10.0291 12.8819 9.70964 12.5625L8.66797 11.5208L8.08463 12.1042L9.1263 13.1458C9.44575 13.4653 9.60214 13.8611 9.59547 14.3333C9.58825 14.8056 9.42491 15.2014 9.10547 15.5208L6.45964 18.1667C6.30686 18.3194 6.12964 18.4375 5.92797 18.5208C5.72686 18.6042 5.51519 18.6458 5.29297 18.6458ZM5.29297 17L6.16797 16.125L3.20964 13.1667L2.33464 14.0417L5.29297 17ZM7.0638 15.2292L7.9388 14.3542L4.98047 11.3958L4.10547 12.2708L7.0638 15.2292ZM10.8971 11.3958L12.0638 10.2292L9.10547 7.27083L7.9388 8.4375L10.8971 11.3958ZM15.0221 7.27083L15.8971 6.39583L12.9388 3.4375L12.0638 4.3125L15.0221 7.27083ZM16.793 5.5L17.668 4.625L14.7096 1.66667L13.8346 2.54167L16.793 5.5Z'
|
|
39722
39766
|
});
|
|
39723
39767
|
|
|
39724
39768
|
var staticData$3 = {
|
|
@@ -39853,6 +39897,8 @@ var echoIcons = /*#__PURE__*/Object.freeze({
|
|
|
39853
39897
|
punches_pb: punches_pb,
|
|
39854
39898
|
robim_external_ald: robim_external_ald,
|
|
39855
39899
|
robim_external_iwit: robim_external_iwit,
|
|
39900
|
+
robim_external_methane_sensor: robim_external_methane_sensor,
|
|
39901
|
+
robim_external_satellite: robim_external_satellite,
|
|
39856
39902
|
robim_external_timp: robim_external_timp,
|
|
39857
39903
|
robim_external_timp_text: robim_external_timp_text,
|
|
39858
39904
|
workorders_main_group: workorders_main_group,
|
|
@@ -40156,5 +40202,5 @@ var OptionsList = function OptionsList(_ref) {
|
|
|
40156
40202
|
}));
|
|
40157
40203
|
};
|
|
40158
40204
|
|
|
40159
|
-
export { BlackLink, ButtonWithPopover, ContextMenu, CopyToClipboard, DataInfoButton, DialogGenerator, DraggableItemsWrapper, Dropdown, EchoBottomBar, EchoCard, EchoHeader, EchoTooltip, FloatingActionButton, FloatingSearchBar, Icon, IconList, InlineTagIconLink, LayerLegend, LineChart, LinkCard, ListItem, ListRow, MainLegend, MenuButton, OptionsList, Panel, PanelContent, PanelContentWrapper, PanelWrapper, RadioButtonGroup, ReactDatePicker, RoundIconButton, RoundIconButtonVariants, SideSheet, SideSheetOrientation, SidebarButton, SliderField, SplitView, TagCategoryIcon, TagCategoryType, TagContextMenu, TagIcon, TagIconShadowWrapper, TextIconButton, TimePicker, WorkOrderListItem, classnames$3 as classnames, echoIcons, getIcon, map_legend_info, notifications_m1, notifications_m2, notifications_m3, notifications_m4, notifications_m5, notifications_m6, notifications_m9, notifications_main_group, punches_main_group, punches_pa, punches_pb, robim_external_ald, robim_external_iwit, robim_external_timp, robim_external_timp_text, themeConst, useIsMobile, useKeyboardNavigation, useListNavigator, usePanelStore, useSectionNavigator, workorders_main_group, workorders_pm01, workorders_pm02, workorders_pm03, workorders_pm04, workorders_pm05, workorders_pm06, workorders_pm10, workorders_pm15, workorders_pm20 };
|
|
40205
|
+
export { BlackLink, ButtonWithPopover, ContextMenu, CopyToClipboard, DataInfoButton, DialogGenerator, DraggableItemsWrapper, Dropdown, EchoBottomBar, EchoCard, EchoHeader, EchoTooltip, FloatingActionButton, FloatingSearchBar, Icon, IconList, InlineTagIconLink, LayerLegend, LineChart, LinkCard, ListItem, ListRow, MainLegend, MenuButton, OptionsList, Panel, PanelContent, PanelContentWrapper, PanelWrapper, RadioButtonGroup, ReactDatePicker, RoundIconButton, RoundIconButtonVariants, SideSheet, SideSheetOrientation, SidebarButton, SliderField, SplitView, TagCategoryIcon, TagCategoryType, TagContextMenu, TagIcon, TagIconShadowWrapper, TextIconButton, TimePicker, WorkOrderListItem, classnames$3 as classnames, echoIcons, getIcon, map_legend_info, notifications_m1, notifications_m2, notifications_m3, notifications_m4, notifications_m5, notifications_m6, notifications_m9, notifications_main_group, punches_main_group, punches_pa, punches_pb, robim_external_ald, robim_external_iwit, robim_external_methane_sensor, robim_external_satellite, robim_external_timp, robim_external_timp_text, themeConst, useIsMobile, useKeyboardNavigation, useListNavigator, usePanelStore, useSectionNavigator, workorders_main_group, workorders_pm01, workorders_pm02, workorders_pm03, workorders_pm04, workorders_pm05, workorders_pm06, workorders_pm10, workorders_pm15, workorders_pm20 };
|
|
40160
40206
|
//# sourceMappingURL=index.js.map
|