@civicactions/cmsds-open-data-components 3.8.4-alpha.0 → 3.8.4-alpha.1
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/main.css +40 -86
- package/dist/main.css.map +1 -1
- package/dist/main.js +112 -110
- package/dist/main.js.map +1 -1
- package/dist/types.d.ts +13 -32
- package/dist/types.d.ts.map +1 -1
- package/package.json +1 -2
package/dist/main.js
CHANGED
|
@@ -9,7 +9,6 @@ import {useQuery as $hgUW1$useQuery, QueryClient as $hgUW1$QueryClient, QueryCli
|
|
|
9
9
|
import {useMediaQuery as $hgUW1$useMediaQuery} from "react-responsive";
|
|
10
10
|
import $hgUW1$dompurify from "dompurify";
|
|
11
11
|
import $hgUW1$lodashtruncate from "lodash.truncate";
|
|
12
|
-
import $hgUW1$moment from "moment";
|
|
13
12
|
import $hgUW1$swaggeruireact from "swagger-ui-react";
|
|
14
13
|
import {SpanOpenAPIVersion as $hgUW1$SpanOpenAPIVersion, SpanVersionStamp as $hgUW1$SpanVersionStamp} from "@civicactions/swagger-ui-layout";
|
|
15
14
|
import "swagger-ui-react/swagger-ui.css";
|
|
@@ -1102,6 +1101,99 @@ var $59a079354baa335c$export$2e2bcd8739ae039 = $59a079354baa335c$var$Hero;
|
|
|
1102
1101
|
|
|
1103
1102
|
|
|
1104
1103
|
|
|
1104
|
+
const $bd76a91923d7e8a7$var$TransformedDate = ({ date: date, options: options = {
|
|
1105
|
+
year: "numeric",
|
|
1106
|
+
month: "long",
|
|
1107
|
+
day: "numeric",
|
|
1108
|
+
timeZone: "UTC"
|
|
1109
|
+
} })=>{
|
|
1110
|
+
const rawDate = new Date(date);
|
|
1111
|
+
let modifiedDate = "";
|
|
1112
|
+
if (rawDate) modifiedDate = rawDate.toLocaleDateString("en-US", options);
|
|
1113
|
+
return /*#__PURE__*/ (0, $hgUW1$jsx)((0, $hgUW1$Fragment), {
|
|
1114
|
+
children: modifiedDate
|
|
1115
|
+
});
|
|
1116
|
+
};
|
|
1117
|
+
var $bd76a91923d7e8a7$export$2e2bcd8739ae039 = $bd76a91923d7e8a7$var$TransformedDate;
|
|
1118
|
+
|
|
1119
|
+
|
|
1120
|
+
|
|
1121
|
+
const $c068004d499082cc$var$DatasetListItem = (props)=>{
|
|
1122
|
+
const desktop = (0, $hgUW1$useMediaQuery)({
|
|
1123
|
+
minWidth: 1024
|
|
1124
|
+
});
|
|
1125
|
+
const { title: title, modified: modified, identifier: identifier, paginationEnabled: paginationEnabled, dataDictionaryLinks: dataDictionaryLinks } = props;
|
|
1126
|
+
let linkContainerClasses = "ds-u-margin-bottom--2";
|
|
1127
|
+
if (dataDictionaryLinks) linkContainerClasses += " ds-l-col--6 ds-u-padding-right--0";
|
|
1128
|
+
else linkContainerClasses += " ds-l-col--auto ds-u-padding-left--0";
|
|
1129
|
+
let linkClasses = "ds-u-display--block ds-u-text-align--left";
|
|
1130
|
+
if (desktop) {
|
|
1131
|
+
linkContainerClasses = "ds-u-padding-x--0";
|
|
1132
|
+
linkClasses += " ds-l-col--4 ds-l-md-col--auto";
|
|
1133
|
+
}
|
|
1134
|
+
return /*#__PURE__*/ (0, $hgUW1$jsx)("li", {
|
|
1135
|
+
className: "dc-c-list-item ds-u-padding-top--4",
|
|
1136
|
+
children: /*#__PURE__*/ (0, $hgUW1$jsxs)("div", {
|
|
1137
|
+
className: `dc-c-searchlist-item ${paginationEnabled ? "ds-u-border-top--1" : "ds-u-border-bottom--1 ds-u-padding-bottom--3"}`,
|
|
1138
|
+
children: [
|
|
1139
|
+
/*#__PURE__*/ (0, $hgUW1$jsxs)("div", {
|
|
1140
|
+
className: "ds-l-row ds-u-align-items--start",
|
|
1141
|
+
children: [
|
|
1142
|
+
/*#__PURE__*/ (0, $hgUW1$jsxs)("span", {
|
|
1143
|
+
id: `dataset-${identifier}-updated-date`,
|
|
1144
|
+
className: `ds-l-col--12 ds-u-text-align--left ds-text-heading--sm ${paginationEnabled ? "ds-u-padding-top--3" : "ds-u-padding-top--0"}`,
|
|
1145
|
+
children: [
|
|
1146
|
+
"Updated ",
|
|
1147
|
+
/*#__PURE__*/ (0, $hgUW1$jsx)((0, $bd76a91923d7e8a7$export$2e2bcd8739ae039), {
|
|
1148
|
+
date: modified
|
|
1149
|
+
})
|
|
1150
|
+
]
|
|
1151
|
+
}),
|
|
1152
|
+
/*#__PURE__*/ (0, $hgUW1$jsx)("h2", {
|
|
1153
|
+
className: "ds-l-col--12 ds-text-heading--2xl",
|
|
1154
|
+
children: title
|
|
1155
|
+
})
|
|
1156
|
+
]
|
|
1157
|
+
}),
|
|
1158
|
+
/*#__PURE__*/ (0, $hgUW1$jsx)("div", {
|
|
1159
|
+
className: "ds-l-row",
|
|
1160
|
+
children: /*#__PURE__*/ (0, $hgUW1$jsxs)("div", {
|
|
1161
|
+
className: "ds-l-col--12 ds-l-md-col--12 ds-u-margin-top--2",
|
|
1162
|
+
children: [
|
|
1163
|
+
"The ",
|
|
1164
|
+
title,
|
|
1165
|
+
" dataset was updated."
|
|
1166
|
+
]
|
|
1167
|
+
})
|
|
1168
|
+
}),
|
|
1169
|
+
/*#__PURE__*/ (0, $hgUW1$jsx)("div", {
|
|
1170
|
+
className: "ds-l-row",
|
|
1171
|
+
children: /*#__PURE__*/ (0, $hgUW1$jsx)("div", {
|
|
1172
|
+
className: "ds-l-col--12",
|
|
1173
|
+
children: /*#__PURE__*/ (0, $hgUW1$jsxs)((0, $hgUW1$Link), {
|
|
1174
|
+
"aria-describedby": `dataset-${identifier}-updated-date`,
|
|
1175
|
+
to: `/dataset/${identifier}`,
|
|
1176
|
+
children: [
|
|
1177
|
+
"View the Dataset for ",
|
|
1178
|
+
title,
|
|
1179
|
+
" "
|
|
1180
|
+
]
|
|
1181
|
+
})
|
|
1182
|
+
})
|
|
1183
|
+
})
|
|
1184
|
+
]
|
|
1185
|
+
})
|
|
1186
|
+
});
|
|
1187
|
+
};
|
|
1188
|
+
var $c068004d499082cc$export$2e2bcd8739ae039 = $c068004d499082cc$var$DatasetListItem;
|
|
1189
|
+
|
|
1190
|
+
|
|
1191
|
+
|
|
1192
|
+
|
|
1193
|
+
|
|
1194
|
+
|
|
1195
|
+
|
|
1196
|
+
|
|
1105
1197
|
|
|
1106
1198
|
|
|
1107
1199
|
|
|
@@ -1340,23 +1432,6 @@ var $b61856b23f5f58a2$export$2e2bcd8739ae039 = $b61856b23f5f58a2$var$LargeFileDi
|
|
|
1340
1432
|
|
|
1341
1433
|
|
|
1342
1434
|
|
|
1343
|
-
const $bd76a91923d7e8a7$var$TransformedDate = ({ date: date, options: options = {
|
|
1344
|
-
year: "numeric",
|
|
1345
|
-
month: "long",
|
|
1346
|
-
day: "numeric",
|
|
1347
|
-
timeZone: "UTC"
|
|
1348
|
-
} })=>{
|
|
1349
|
-
const rawDate = new Date(date);
|
|
1350
|
-
let modifiedDate = "";
|
|
1351
|
-
if (rawDate) modifiedDate = rawDate.toLocaleDateString("en-US", options);
|
|
1352
|
-
return /*#__PURE__*/ (0, $hgUW1$jsx)((0, $hgUW1$Fragment), {
|
|
1353
|
-
children: modifiedDate
|
|
1354
|
-
});
|
|
1355
|
-
};
|
|
1356
|
-
var $bd76a91923d7e8a7$export$2e2bcd8739ae039 = $bd76a91923d7e8a7$var$TransformedDate;
|
|
1357
|
-
|
|
1358
|
-
|
|
1359
|
-
|
|
1360
1435
|
|
|
1361
1436
|
|
|
1362
1437
|
function $1a2bf34e2a8f6b80$export$59a943b34a82e690(textString, textLength = 240) {
|
|
@@ -1432,7 +1507,9 @@ const $17711e94d2ce0ee4$var$DatasetDateItem = (props)=>{
|
|
|
1432
1507
|
children: dateText[type]
|
|
1433
1508
|
}),
|
|
1434
1509
|
": ",
|
|
1435
|
-
(0, $hgUW1$
|
|
1510
|
+
/*#__PURE__*/ (0, $hgUW1$jsx)((0, $bd76a91923d7e8a7$export$2e2bcd8739ae039), {
|
|
1511
|
+
date: date
|
|
1512
|
+
})
|
|
1436
1513
|
]
|
|
1437
1514
|
}),
|
|
1438
1515
|
displayTooltips === true && /*#__PURE__*/ (0, $hgUW1$jsx)((0, $hgUW1$Tooltip), {
|
|
@@ -1491,7 +1568,8 @@ const $52c6454cae137465$var$DatasetSearchListItem = (props)=>{
|
|
|
1491
1568
|
const desktop = (0, $hgUW1$useMediaQuery)({
|
|
1492
1569
|
minWidth: 1024
|
|
1493
1570
|
});
|
|
1494
|
-
const { title: title, modified: modified, description: description,
|
|
1571
|
+
const { title: title, modified: modified, description: description, downloadUrl: downloadUrl, largeFile: largeFile = false, paginationEnabled: paginationEnabled, dataDictionaryLinks: dataDictionaryLinks, identifier: identifier, refresh: refresh, released: released, showDateDetails: showDateDetails = false, showTopics: showTopics = false, theme: theme, topicSlugs: topicSlugs } = props;
|
|
1572
|
+
const location = (0, $hgUW1$useLocation)();
|
|
1495
1573
|
let linkContainerClasses = "ds-u-margin-bottom--2";
|
|
1496
1574
|
if (dataDictionaryLinks) linkContainerClasses += " ds-l-col--6 ds-u-padding-right--0";
|
|
1497
1575
|
else linkContainerClasses += " ds-l-col--auto ds-u-padding-left--0";
|
|
@@ -1528,6 +1606,7 @@ const $52c6454cae137465$var$DatasetSearchListItem = (props)=>{
|
|
|
1528
1606
|
released: released,
|
|
1529
1607
|
refresh: refresh
|
|
1530
1608
|
};
|
|
1609
|
+
const url = `/dataset/${identifier}`;
|
|
1531
1610
|
return /*#__PURE__*/ (0, $hgUW1$jsx)("li", {
|
|
1532
1611
|
className: "dc-c-search-list-item ds-u-padding-top--3",
|
|
1533
1612
|
children: /*#__PURE__*/ (0, $hgUW1$jsxs)("div", {
|
|
@@ -1538,7 +1617,7 @@ const $52c6454cae137465$var$DatasetSearchListItem = (props)=>{
|
|
|
1538
1617
|
className: "ds-l-row ds-u-align-items--start",
|
|
1539
1618
|
children: [
|
|
1540
1619
|
!showDateDetails && /*#__PURE__*/ (0, $hgUW1$jsxs)("span", {
|
|
1541
|
-
id: `dataset-${
|
|
1620
|
+
id: `dataset-${identifier}-updated-date`,
|
|
1542
1621
|
className: `ds-l-col--12 ds-u-text-align--right ${paginationEnabled ? "ds-u-padding-top--2" : "ds-u-padding-top--0"}`,
|
|
1543
1622
|
children: [
|
|
1544
1623
|
/*#__PURE__*/ (0, $hgUW1$jsx)("span", {
|
|
@@ -1554,7 +1633,7 @@ const $52c6454cae137465$var$DatasetSearchListItem = (props)=>{
|
|
|
1554
1633
|
/*#__PURE__*/ (0, $hgUW1$jsx)("h2", {
|
|
1555
1634
|
className: "ds-l-col--12 ds-text-heading--2xl",
|
|
1556
1635
|
children: /*#__PURE__*/ (0, $hgUW1$jsx)((0, $hgUW1$Link), {
|
|
1557
|
-
"aria-describedby": `dataset-${
|
|
1636
|
+
"aria-describedby": `dataset-${identifier}-updated-date`,
|
|
1558
1637
|
to: `${url}`,
|
|
1559
1638
|
children: title
|
|
1560
1639
|
})
|
|
@@ -1568,6 +1647,13 @@ const $52c6454cae137465$var$DatasetSearchListItem = (props)=>{
|
|
|
1568
1647
|
children: (0, $1a2bf34e2a8f6b80$export$59a943b34a82e690)(description)
|
|
1569
1648
|
})
|
|
1570
1649
|
}),
|
|
1650
|
+
showDateDetails && /*#__PURE__*/ (0, $hgUW1$jsx)("div", {
|
|
1651
|
+
className: "dataset-dates",
|
|
1652
|
+
children: /*#__PURE__*/ (0, $hgUW1$jsx)((0, $20de4fedf33d4f9a$export$2e2bcd8739ae039), {
|
|
1653
|
+
date: date,
|
|
1654
|
+
displayTooltips: false
|
|
1655
|
+
})
|
|
1656
|
+
}),
|
|
1571
1657
|
downloadUrl ? /*#__PURE__*/ (0, $hgUW1$jsx)("div", {
|
|
1572
1658
|
className: `ds-u-margin-top--3 ds-u-padding-left--0 download-button`,
|
|
1573
1659
|
children: largeFile ? /*#__PURE__*/ (0, $hgUW1$jsx)("span", {
|
|
@@ -1586,13 +1672,6 @@ const $52c6454cae137465$var$DatasetSearchListItem = (props)=>{
|
|
|
1586
1672
|
]
|
|
1587
1673
|
})
|
|
1588
1674
|
}) : "",
|
|
1589
|
-
showDateDetails && /*#__PURE__*/ (0, $hgUW1$jsx)("div", {
|
|
1590
|
-
className: "dataset-dates",
|
|
1591
|
-
children: /*#__PURE__*/ (0, $hgUW1$jsx)((0, $20de4fedf33d4f9a$export$2e2bcd8739ae039), {
|
|
1592
|
-
date: date,
|
|
1593
|
-
displayTooltips: false
|
|
1594
|
-
})
|
|
1595
|
-
}),
|
|
1596
1675
|
/*#__PURE__*/ (0, $hgUW1$jsxs)("ul", {
|
|
1597
1676
|
className: `ds-l-row ds-u-padding--0 ds-u-flex-direction--row ds-u-justify-content--between ds-u-md-justify-content--start ds-u-margin-top--3 ds-u-margin-x--0 ${!dataDictionaryLinks ? "ds-u-justify-content--center ds-u-md-justify-content--start" : ""}`,
|
|
1598
1677
|
children: [
|
|
@@ -4308,17 +4387,15 @@ const $e873081a6e8f024e$var$DatasetSearch = (props)=>{
|
|
|
4308
4387
|
if (item.theme.includes(theme)) showLargeFile = true;
|
|
4309
4388
|
});
|
|
4310
4389
|
return /*#__PURE__*/ (0, $hgUW1$jsx)((0, $52c6454cae137465$export$2e2bcd8739ae039), {
|
|
4390
|
+
location: location,
|
|
4311
4391
|
title: item.title,
|
|
4312
4392
|
modified: item.modified,
|
|
4313
4393
|
description: item.description,
|
|
4314
|
-
|
|
4394
|
+
identifier: item.identifier,
|
|
4315
4395
|
downloadUrl: showDownloadIcon ? getDownloadUrl(item) : null,
|
|
4316
4396
|
largeFile: showLargeFile,
|
|
4317
4397
|
paginationEnabled: enablePagination,
|
|
4318
|
-
dataDictionaryLinks: dataDictionaryLinks
|
|
4319
|
-
location: {
|
|
4320
|
-
pathname: window.location.pathname
|
|
4321
|
-
}
|
|
4398
|
+
dataDictionaryLinks: dataDictionaryLinks
|
|
4322
4399
|
}, item.identifier);
|
|
4323
4400
|
}) : /*#__PURE__*/ (0, $hgUW1$jsx)((0, $hgUW1$Alert), {
|
|
4324
4401
|
variation: "error",
|
|
@@ -4368,81 +4445,6 @@ var $e873081a6e8f024e$export$2e2bcd8739ae039 = (0, $61ff88fb3f6ee2c8$export$2e2b
|
|
|
4368
4445
|
|
|
4369
4446
|
|
|
4370
4447
|
|
|
4371
|
-
const $c068004d499082cc$var$DatasetListItem = (props)=>{
|
|
4372
|
-
const desktop = (0, $hgUW1$useMediaQuery)({
|
|
4373
|
-
minWidth: 1024
|
|
4374
|
-
});
|
|
4375
|
-
const { title: title, modified: modified, identifier: identifier, paginationEnabled: paginationEnabled, dataDictionaryLinks: dataDictionaryLinks } = props;
|
|
4376
|
-
let linkContainerClasses = "ds-u-margin-bottom--2";
|
|
4377
|
-
if (dataDictionaryLinks) linkContainerClasses += " ds-l-col--6 ds-u-padding-right--0";
|
|
4378
|
-
else linkContainerClasses += " ds-l-col--auto ds-u-padding-left--0";
|
|
4379
|
-
let linkClasses = "ds-u-display--block ds-u-text-align--left";
|
|
4380
|
-
if (desktop) {
|
|
4381
|
-
linkContainerClasses = "ds-u-padding-x--0";
|
|
4382
|
-
linkClasses += " ds-l-col--4 ds-l-md-col--auto";
|
|
4383
|
-
}
|
|
4384
|
-
return /*#__PURE__*/ (0, $hgUW1$jsx)("li", {
|
|
4385
|
-
className: "dc-c-list-item ds-u-padding-top--4",
|
|
4386
|
-
children: /*#__PURE__*/ (0, $hgUW1$jsxs)("div", {
|
|
4387
|
-
className: `dc-c-searchlist-item ${paginationEnabled ? "ds-u-border-top--1" : "ds-u-border-bottom--1 ds-u-padding-bottom--3"}`,
|
|
4388
|
-
children: [
|
|
4389
|
-
/*#__PURE__*/ (0, $hgUW1$jsxs)("div", {
|
|
4390
|
-
className: "ds-l-row ds-u-align-items--start",
|
|
4391
|
-
children: [
|
|
4392
|
-
/*#__PURE__*/ (0, $hgUW1$jsxs)("span", {
|
|
4393
|
-
id: `dataset-${identifier}-updated-date`,
|
|
4394
|
-
className: `ds-l-col--12 ds-u-text-align--left ds-text-heading--sm ${paginationEnabled ? "ds-u-padding-top--3" : "ds-u-padding-top--0"}`,
|
|
4395
|
-
children: [
|
|
4396
|
-
"Updated ",
|
|
4397
|
-
/*#__PURE__*/ (0, $hgUW1$jsx)((0, $bd76a91923d7e8a7$export$2e2bcd8739ae039), {
|
|
4398
|
-
date: modified
|
|
4399
|
-
})
|
|
4400
|
-
]
|
|
4401
|
-
}),
|
|
4402
|
-
/*#__PURE__*/ (0, $hgUW1$jsx)("h2", {
|
|
4403
|
-
className: "ds-l-col--12 ds-text-heading--2xl",
|
|
4404
|
-
children: title
|
|
4405
|
-
})
|
|
4406
|
-
]
|
|
4407
|
-
}),
|
|
4408
|
-
/*#__PURE__*/ (0, $hgUW1$jsx)("div", {
|
|
4409
|
-
className: "ds-l-row",
|
|
4410
|
-
children: /*#__PURE__*/ (0, $hgUW1$jsxs)("div", {
|
|
4411
|
-
className: "ds-l-col--12 ds-l-md-col--12 ds-u-margin-top--2",
|
|
4412
|
-
children: [
|
|
4413
|
-
"The ",
|
|
4414
|
-
title,
|
|
4415
|
-
" dataset was updated."
|
|
4416
|
-
]
|
|
4417
|
-
})
|
|
4418
|
-
}),
|
|
4419
|
-
/*#__PURE__*/ (0, $hgUW1$jsx)("div", {
|
|
4420
|
-
className: "ds-l-row",
|
|
4421
|
-
children: /*#__PURE__*/ (0, $hgUW1$jsx)("div", {
|
|
4422
|
-
className: "ds-l-col--12",
|
|
4423
|
-
children: /*#__PURE__*/ (0, $hgUW1$jsxs)((0, $hgUW1$Link), {
|
|
4424
|
-
"aria-describedby": `dataset-${identifier}-updated-date`,
|
|
4425
|
-
to: `/dataset/${identifier}`,
|
|
4426
|
-
children: [
|
|
4427
|
-
"View the Dataset for ",
|
|
4428
|
-
title,
|
|
4429
|
-
" "
|
|
4430
|
-
]
|
|
4431
|
-
})
|
|
4432
|
-
})
|
|
4433
|
-
})
|
|
4434
|
-
]
|
|
4435
|
-
})
|
|
4436
|
-
});
|
|
4437
|
-
};
|
|
4438
|
-
var $c068004d499082cc$export$2e2bcd8739ae039 = $c068004d499082cc$var$DatasetListItem;
|
|
4439
|
-
|
|
4440
|
-
|
|
4441
|
-
|
|
4442
|
-
|
|
4443
|
-
|
|
4444
|
-
|
|
4445
|
-
|
|
4446
4448
|
|
|
4447
4449
|
const $550bcc185f420ff5$var$DatasetList = (props)=>{
|
|
4448
4450
|
const { rootUrl: rootUrl, enableSort: enableSort = true, enablePagination: enablePagination = true, defaultPageSize: defaultPageSize = 10, defaultSort: defaultSort = {
|
|
@@ -7658,5 +7660,5 @@ var $90fb213ab8eeb2e7$export$2e2bcd8739ae039 = $90fb213ab8eeb2e7$var$useScrollTo
|
|
|
7658
7660
|
|
|
7659
7661
|
|
|
7660
7662
|
|
|
7661
|
-
export {$e49d4387bed21287$export$2e2bcd8739ae039 as ApiRowLimitNotice, $a8accc31bf9e0bda$export$2e2bcd8739ae039 as CMSTopNav, $c49454ea7d1c4579$export$2e2bcd8739ae039 as ErrorBoundary, $046ded0064bd0a3d$export$2e2bcd8739ae039 as FAQAccordion, $b939b31651e82908$export$2e2bcd8739ae039 as HeaderNav, $1555e1cb3eb7b3e3$export$2e2bcd8739ae039 as HeaderNavIconLink, $fea9297ba4dd394c$export$2e2bcd8739ae039 as HeaderSearch, $9a8892c5ac150556$export$2e2bcd8739ae039 as HeaderSiteTitle, $3c72c298c3a7f21f$export$2e2bcd8739ae039 as HeaderTagline, $403833a4b442d5df$export$2e2bcd8739ae039 as MobileMenuButton, $f57121650539d8c5$export$2e2bcd8739ae039 as NavBar, $953b286f7778640e$export$2e2bcd8739ae039 as SidebarNavigation, $b0968edc60d7d3a4$export$2e2bcd8739ae039 as SidebarPage, $4f153ca537d853e5$export$2e2bcd8739ae039 as SubMenu, $59a079354baa335c$export$2e2bcd8739ae039 as Hero, $52c6454cae137465$export$2e2bcd8739ae039 as DatasetSearchListItem, $17711e94d2ce0ee4$export$2e2bcd8739ae039 as DatasetDateItem, $20de4fedf33d4f9a$export$2e2bcd8739ae039 as DatasetDate, $789279954d8eff7f$export$2e2bcd8739ae039 as ApiDocumentation, $af099c546cb226c7$export$2e2bcd8739ae039 as ResourceHeader, $626282d9a03c51d5$export$2e2bcd8739ae039 as ResourcePreview, $072291d44ce1834a$export$2e2bcd8739ae039 as ResourceFooter, $ec3e23baa005dc03$export$2e2bcd8739ae039 as Breadcrumb, $bd76a91923d7e8a7$export$2e2bcd8739ae039 as TransformedDate, $d98f94c79ddf4e0e$export$2e2bcd8739ae039 as DataTable, $bdb071ea3a6d3466$export$2e2bcd8739ae039 as SearchInput, $5644ebd2c3dbfd7b$export$eea3a12df15499ca as buildRows, $2ed0091f7e32d1e6$export$2e2bcd8739ae039 as DataTablePageResults, $1a2bf34e2a8f6b80$export$59a943b34a82e690 as truncateText, $c96c4b9ef7203c1f$export$2e2bcd8739ae039 as APIPage, $026cb986f9fea2b1$export$2e2bcd8739ae039 as PageNotFound, $e873081a6e8f024e$export$2e2bcd8739ae039 as DatasetSearch, $550bcc185f420ff5$export$2e2bcd8739ae039 as DatasetList, $9384a736d4d6f425$export$2e2bcd8739ae039 as DatasetListSubmenu, $a0f13962e513caa1$export$2e2bcd8739ae039 as Dataset, $a35cf16d1488f54e$export$2e2bcd8739ae039 as DatasetTable, $b9af6ce5e2c06331$export$2e2bcd8739ae039 as Header, $a6df0aa147323304$export$2e2bcd8739ae039 as Footer, $669d2782ec2e2250$export$2e2bcd8739ae039 as SpecsAndLimits, $8b67b7ee3fcfb629$export$2e2bcd8739ae039 as StoredQueryPage, $f61ecf9f84951a61$export$2e2bcd8739ae039 as FilteredResource, $bef7bff2823feea2$export$2e2bcd8739ae039 as QueryTitle, $7264a673914aa746$export$2b9377795161999 as buildOperatorOptions, $7264a673914aa746$export$e284ae5d89467c8f as convertUTCToLocalDate, $7264a673914aa746$export$6b5e57d20078142b as cleanText, $7264a673914aa746$export$8049e8f40a9bdfb8 as buildCustomColHeaders, $11500a65bd7d9cf1$export$2e2bcd8739ae039 as HeaderContext, $43a30d745a7bbc86$export$2e2bcd8739ae039 as DataTableContext, $ebda441784d176a5$export$2e2bcd8739ae039 as ManageColumnsContext, $844981eac9b63865$export$eccc29c8d0ff408 as ACAContext, $efc410f5f7ac5ef3$export$2e2bcd8739ae039 as useSearchAPI, $1d3d480a9cfaabe0$export$2e2bcd8739ae039 as useDatastore, $aa4450dcbeef3ac0$export$385a5aba38cc3325 as transformTableSortToQuerySort, $eb7821d186b1a389$export$2e2bcd8739ae039 as useAddLoginLink, $90fb213ab8eeb2e7$export$2e2bcd8739ae039 as useScrollToTop, $b4aa9c66f2e86959$export$2e2bcd8739ae039 as useMetastoreDataset, $61ff88fb3f6ee2c8$export$2e2bcd8739ae039 as withQueryProvider, $6d5c0212e738499b$export$34e95918366a058e as acaToParams, $6da0396069e23175$export$bc27cf7ecf44639d as defaultMetadataMapping};
|
|
7663
|
+
export {$e49d4387bed21287$export$2e2bcd8739ae039 as ApiRowLimitNotice, $a8accc31bf9e0bda$export$2e2bcd8739ae039 as CMSTopNav, $c49454ea7d1c4579$export$2e2bcd8739ae039 as ErrorBoundary, $046ded0064bd0a3d$export$2e2bcd8739ae039 as FAQAccordion, $b939b31651e82908$export$2e2bcd8739ae039 as HeaderNav, $1555e1cb3eb7b3e3$export$2e2bcd8739ae039 as HeaderNavIconLink, $fea9297ba4dd394c$export$2e2bcd8739ae039 as HeaderSearch, $9a8892c5ac150556$export$2e2bcd8739ae039 as HeaderSiteTitle, $3c72c298c3a7f21f$export$2e2bcd8739ae039 as HeaderTagline, $403833a4b442d5df$export$2e2bcd8739ae039 as MobileMenuButton, $f57121650539d8c5$export$2e2bcd8739ae039 as NavBar, $953b286f7778640e$export$2e2bcd8739ae039 as SidebarNavigation, $b0968edc60d7d3a4$export$2e2bcd8739ae039 as SidebarPage, $4f153ca537d853e5$export$2e2bcd8739ae039 as SubMenu, $59a079354baa335c$export$2e2bcd8739ae039 as Hero, $c068004d499082cc$export$2e2bcd8739ae039 as DatasetListItem, $52c6454cae137465$export$2e2bcd8739ae039 as DatasetSearchListItem, $17711e94d2ce0ee4$export$2e2bcd8739ae039 as DatasetDateItem, $20de4fedf33d4f9a$export$2e2bcd8739ae039 as DatasetDate, $789279954d8eff7f$export$2e2bcd8739ae039 as ApiDocumentation, $af099c546cb226c7$export$2e2bcd8739ae039 as ResourceHeader, $626282d9a03c51d5$export$2e2bcd8739ae039 as ResourcePreview, $072291d44ce1834a$export$2e2bcd8739ae039 as ResourceFooter, $ec3e23baa005dc03$export$2e2bcd8739ae039 as Breadcrumb, $bd76a91923d7e8a7$export$2e2bcd8739ae039 as TransformedDate, $d98f94c79ddf4e0e$export$2e2bcd8739ae039 as DataTable, $bdb071ea3a6d3466$export$2e2bcd8739ae039 as SearchInput, $5644ebd2c3dbfd7b$export$eea3a12df15499ca as buildRows, $2ed0091f7e32d1e6$export$2e2bcd8739ae039 as DataTablePageResults, $1a2bf34e2a8f6b80$export$59a943b34a82e690 as truncateText, $c96c4b9ef7203c1f$export$2e2bcd8739ae039 as APIPage, $026cb986f9fea2b1$export$2e2bcd8739ae039 as PageNotFound, $e873081a6e8f024e$export$2e2bcd8739ae039 as DatasetSearch, $550bcc185f420ff5$export$2e2bcd8739ae039 as DatasetList, $9384a736d4d6f425$export$2e2bcd8739ae039 as DatasetListSubmenu, $a0f13962e513caa1$export$2e2bcd8739ae039 as Dataset, $a35cf16d1488f54e$export$2e2bcd8739ae039 as DatasetTable, $b9af6ce5e2c06331$export$2e2bcd8739ae039 as Header, $a6df0aa147323304$export$2e2bcd8739ae039 as Footer, $669d2782ec2e2250$export$2e2bcd8739ae039 as SpecsAndLimits, $8b67b7ee3fcfb629$export$2e2bcd8739ae039 as StoredQueryPage, $f61ecf9f84951a61$export$2e2bcd8739ae039 as FilteredResource, $bef7bff2823feea2$export$2e2bcd8739ae039 as QueryTitle, $7264a673914aa746$export$2b9377795161999 as buildOperatorOptions, $7264a673914aa746$export$e284ae5d89467c8f as convertUTCToLocalDate, $7264a673914aa746$export$6b5e57d20078142b as cleanText, $7264a673914aa746$export$8049e8f40a9bdfb8 as buildCustomColHeaders, $11500a65bd7d9cf1$export$2e2bcd8739ae039 as HeaderContext, $43a30d745a7bbc86$export$2e2bcd8739ae039 as DataTableContext, $ebda441784d176a5$export$2e2bcd8739ae039 as ManageColumnsContext, $844981eac9b63865$export$eccc29c8d0ff408 as ACAContext, $efc410f5f7ac5ef3$export$2e2bcd8739ae039 as useSearchAPI, $1d3d480a9cfaabe0$export$2e2bcd8739ae039 as useDatastore, $aa4450dcbeef3ac0$export$385a5aba38cc3325 as transformTableSortToQuerySort, $eb7821d186b1a389$export$2e2bcd8739ae039 as useAddLoginLink, $90fb213ab8eeb2e7$export$2e2bcd8739ae039 as useScrollToTop, $b4aa9c66f2e86959$export$2e2bcd8739ae039 as useMetastoreDataset, $61ff88fb3f6ee2c8$export$2e2bcd8739ae039 as withQueryProvider, $6d5c0212e738499b$export$34e95918366a058e as acaToParams, $6da0396069e23175$export$bc27cf7ecf44639d as defaultMetadataMapping};
|
|
7662
7664
|
//# sourceMappingURL=main.js.map
|