@civicactions/cmsds-open-data-components 3.4.3-alpha.1 → 3.4.3
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.js +186 -62
- package/dist/main.js.map +1 -1
- package/dist/types.d.ts +153 -33
- package/dist/types.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -8,7 +8,12 @@ interface NavbarProps {
|
|
|
8
8
|
wrapLabel: boolean;
|
|
9
9
|
clickHandler?: Function;
|
|
10
10
|
}
|
|
11
|
-
export const NavBar:
|
|
11
|
+
export const NavBar: {
|
|
12
|
+
({ links, menuName, menuId, menuClasses, linkClasses, wrapLabel, clickHandler }: NavbarProps): import("react/jsx-runtime").JSX.Element;
|
|
13
|
+
defaultProps: {
|
|
14
|
+
wrapLabel: boolean;
|
|
15
|
+
};
|
|
16
|
+
};
|
|
12
17
|
type ErrorBoundaryProps = {
|
|
13
18
|
children: any[] | any;
|
|
14
19
|
component?: boolean;
|
|
@@ -27,18 +32,28 @@ export class ErrorBoundary extends React.Component<ErrorBoundaryProps, ErrorBoun
|
|
|
27
32
|
componentDidCatch(error: any, info: any): void;
|
|
28
33
|
render(): any;
|
|
29
34
|
}
|
|
35
|
+
declare namespace APIPage {
|
|
36
|
+
namespace defaultProps {
|
|
37
|
+
const hideAuth: boolean;
|
|
38
|
+
}
|
|
39
|
+
}
|
|
30
40
|
export { default } from "./APIPage";
|
|
31
41
|
export { default } from "./PageNotFound";
|
|
32
42
|
export function withQueryProvider(WrappedComponent: any): (props: any) => import("react/jsx-runtime").JSX.Element;
|
|
33
43
|
export function TransformedDate({ date, options }: {
|
|
34
44
|
date: any;
|
|
35
|
-
options
|
|
36
|
-
year: string;
|
|
37
|
-
month: string;
|
|
38
|
-
day: string;
|
|
39
|
-
timeZone: string;
|
|
40
|
-
} | undefined;
|
|
45
|
+
options: any;
|
|
41
46
|
}): import("react/jsx-runtime").JSX.Element;
|
|
47
|
+
declare namespace TransformedDate {
|
|
48
|
+
namespace defaultProps {
|
|
49
|
+
namespace options {
|
|
50
|
+
const year: string;
|
|
51
|
+
const month: string;
|
|
52
|
+
const day: string;
|
|
53
|
+
const timeZone: string;
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
}
|
|
42
57
|
export function truncateText(textString: string, textLength?: number): string;
|
|
43
58
|
type SearchItemProps = {
|
|
44
59
|
title: string;
|
|
@@ -139,37 +154,97 @@ export const DatasetTable: ({ isModal, closeFullScreenModal }: {
|
|
|
139
154
|
closeFullScreenModal?: Function | undefined;
|
|
140
155
|
}) => import("react/jsx-runtime").JSX.Element;
|
|
141
156
|
export const Dataset: (props: any) => import("react/jsx-runtime").JSX.Element;
|
|
157
|
+
declare namespace SearchModal {
|
|
158
|
+
namespace defaultProps {
|
|
159
|
+
const appNodeId: string;
|
|
160
|
+
const buttonSize: null;
|
|
161
|
+
const inversedModalButton: boolean;
|
|
162
|
+
const inversedSearchButton: boolean;
|
|
163
|
+
const headingText: string;
|
|
164
|
+
}
|
|
165
|
+
}
|
|
142
166
|
declare namespace DesktopHeader {
|
|
167
|
+
namespace defaultProps {
|
|
168
|
+
namespace org {
|
|
169
|
+
export const tagline: string;
|
|
170
|
+
export const url: string;
|
|
171
|
+
export const urlTitle: string;
|
|
172
|
+
export { cmsLogo as logo };
|
|
173
|
+
export const logoAltText: string;
|
|
174
|
+
}
|
|
175
|
+
const includeTopNav: boolean;
|
|
176
|
+
const customSearch: boolean;
|
|
177
|
+
const linkClasses: string;
|
|
178
|
+
const includeSearch: boolean;
|
|
179
|
+
}
|
|
143
180
|
namespace propTypes {
|
|
144
|
-
const siteName: PropTypes.Validator<NonNullable<PropTypes.ReactNodeLike>>;
|
|
145
|
-
const
|
|
146
|
-
|
|
147
|
-
const
|
|
181
|
+
export const siteName: PropTypes.Validator<NonNullable<PropTypes.ReactNodeLike>>;
|
|
182
|
+
const includeTopNav_1: PropTypes.Requireable<boolean>;
|
|
183
|
+
export { includeTopNav_1 as includeTopNav };
|
|
184
|
+
const linkClasses_1: PropTypes.Requireable<string>;
|
|
185
|
+
export { linkClasses_1 as linkClasses };
|
|
186
|
+
const includeSearch_1: PropTypes.Requireable<boolean>;
|
|
187
|
+
export { includeSearch_1 as includeSearch };
|
|
148
188
|
}
|
|
149
189
|
}
|
|
150
190
|
export { default } from "./DesktopHeader";
|
|
191
|
+
declare namespace MobileHeader {
|
|
192
|
+
namespace defaultProps {
|
|
193
|
+
namespace org {
|
|
194
|
+
export const tagline: string;
|
|
195
|
+
export const url: string;
|
|
196
|
+
export const urlTitle: string;
|
|
197
|
+
export { cmsLogo as logo };
|
|
198
|
+
export const logoAltText: string;
|
|
199
|
+
export { cmsLogoWhite as inverseLogo };
|
|
200
|
+
}
|
|
201
|
+
const includeTopNav: boolean;
|
|
202
|
+
const includeSearch: boolean;
|
|
203
|
+
}
|
|
204
|
+
}
|
|
151
205
|
export { default } from "./MobileHeader";
|
|
206
|
+
declare namespace Header {
|
|
207
|
+
namespace defaultProps {
|
|
208
|
+
const mobileMaxWidth: number;
|
|
209
|
+
const desktopMinWidth: number;
|
|
210
|
+
const includeTopNav: boolean;
|
|
211
|
+
}
|
|
212
|
+
}
|
|
152
213
|
export { default } from "./Header";
|
|
153
214
|
export function Footer({ links, showEmail, emailTitle, emailBody, emailLink, emailButton, socialMediaLinks, hhsLogo, cmsLogo, trademarkContent, }: {
|
|
154
215
|
links: any;
|
|
155
|
-
showEmail
|
|
156
|
-
emailTitle
|
|
157
|
-
emailBody
|
|
158
|
-
emailLink
|
|
159
|
-
emailButton
|
|
160
|
-
socialMediaLinks
|
|
216
|
+
showEmail: any;
|
|
217
|
+
emailTitle: any;
|
|
218
|
+
emailBody: any;
|
|
219
|
+
emailLink: any;
|
|
220
|
+
emailButton: any;
|
|
221
|
+
socialMediaLinks: any;
|
|
161
222
|
hhsLogo: any;
|
|
162
223
|
cmsLogo: any;
|
|
163
|
-
trademarkContent
|
|
224
|
+
trademarkContent: any;
|
|
164
225
|
}): import("react/jsx-runtime").JSX.Element;
|
|
165
226
|
declare namespace Footer {
|
|
227
|
+
namespace defaultProps {
|
|
228
|
+
const showEmail: boolean;
|
|
229
|
+
const emailTitle: string;
|
|
230
|
+
const emailBody: string;
|
|
231
|
+
const emailLink: string;
|
|
232
|
+
const emailButton: string;
|
|
233
|
+
const socialMediaLinks: null;
|
|
234
|
+
const trademarkContent: import("react/jsx-runtime").JSX.Element;
|
|
235
|
+
}
|
|
166
236
|
namespace propTypes {
|
|
167
|
-
const
|
|
168
|
-
|
|
169
|
-
const
|
|
170
|
-
|
|
171
|
-
const
|
|
172
|
-
|
|
237
|
+
const showEmail_1: PropTypes.Requireable<boolean>;
|
|
238
|
+
export { showEmail_1 as showEmail };
|
|
239
|
+
const emailTitle_1: PropTypes.Requireable<string>;
|
|
240
|
+
export { emailTitle_1 as emailTitle };
|
|
241
|
+
const emailBody_1: PropTypes.Requireable<string>;
|
|
242
|
+
export { emailBody_1 as emailBody };
|
|
243
|
+
const emailLink_1: PropTypes.Requireable<string>;
|
|
244
|
+
export { emailLink_1 as emailLink };
|
|
245
|
+
const emailButton_1: PropTypes.Requireable<string>;
|
|
246
|
+
export { emailButton_1 as emailButton };
|
|
247
|
+
export const links: PropTypes.Validator<NonNullable<PropTypes.InferProps<{
|
|
173
248
|
footerOpenDataToolLinks: PropTypes.Requireable<(PropTypes.InferProps<{
|
|
174
249
|
id: PropTypes.Requireable<string>;
|
|
175
250
|
label: PropTypes.Requireable<string>;
|
|
@@ -189,7 +264,7 @@ declare namespace Footer {
|
|
|
189
264
|
target: PropTypes.Requireable<string>;
|
|
190
265
|
}> | null | undefined)[]>;
|
|
191
266
|
}>>>;
|
|
192
|
-
const
|
|
267
|
+
const socialMediaLinks_1: PropTypes.Requireable<PropTypes.InferProps<{
|
|
193
268
|
facebook: PropTypes.Requireable<PropTypes.InferProps<{
|
|
194
269
|
title: PropTypes.Requireable<string>;
|
|
195
270
|
url: PropTypes.Requireable<string>;
|
|
@@ -203,8 +278,9 @@ declare namespace Footer {
|
|
|
203
278
|
url: PropTypes.Requireable<string>;
|
|
204
279
|
}>>;
|
|
205
280
|
}>>;
|
|
206
|
-
|
|
207
|
-
const
|
|
281
|
+
export { socialMediaLinks_1 as socialMediaLinks };
|
|
282
|
+
export const hhsLogo: PropTypes.Validator<string>;
|
|
283
|
+
export const cmsLogo: PropTypes.Validator<string>;
|
|
208
284
|
}
|
|
209
285
|
}
|
|
210
286
|
type DocumentationType = {
|
|
@@ -218,16 +294,37 @@ type DocumentationType = {
|
|
|
218
294
|
type SpecsAndLimitsProps = {
|
|
219
295
|
documentationList: Array<DocumentationType>;
|
|
220
296
|
};
|
|
221
|
-
export const SpecsAndLimits:
|
|
297
|
+
export const SpecsAndLimits: {
|
|
298
|
+
(props: PropsWithChildren<SpecsAndLimitsProps>): import("react/jsx-runtime").JSX.Element;
|
|
299
|
+
defaultProps: {
|
|
300
|
+
documentationList: {
|
|
301
|
+
id: string;
|
|
302
|
+
application: string;
|
|
303
|
+
notes: string;
|
|
304
|
+
link: string;
|
|
305
|
+
linkText: string;
|
|
306
|
+
screenReaderOnlyText: string;
|
|
307
|
+
}[];
|
|
308
|
+
content: import("react/jsx-runtime").JSX.Element;
|
|
309
|
+
};
|
|
310
|
+
};
|
|
222
311
|
export { default } from "./useSearchAPI";
|
|
223
312
|
export function Hero({ title, description, searchUrl, searchKey, textfieldLabel, searchButtonText }: {
|
|
224
313
|
title: any;
|
|
225
314
|
description: any;
|
|
226
|
-
searchUrl
|
|
227
|
-
searchKey
|
|
228
|
-
textfieldLabel
|
|
229
|
-
searchButtonText
|
|
315
|
+
searchUrl: any;
|
|
316
|
+
searchKey: any;
|
|
317
|
+
textfieldLabel: any;
|
|
318
|
+
searchButtonText: any;
|
|
230
319
|
}): import("react/jsx-runtime").JSX.Element;
|
|
320
|
+
declare namespace Hero {
|
|
321
|
+
namespace defaultProps {
|
|
322
|
+
const searchKey: string;
|
|
323
|
+
const searchUrl: string;
|
|
324
|
+
const textfieldLabel: string;
|
|
325
|
+
const searchButtonText: string;
|
|
326
|
+
}
|
|
327
|
+
}
|
|
231
328
|
declare namespace DataTableDensity {
|
|
232
329
|
namespace propTypes {
|
|
233
330
|
const setTablePadding: PropTypes.Validator<(...args: any[]) => any>;
|
|
@@ -248,8 +345,21 @@ export { default } from "./Datatable";
|
|
|
248
345
|
export function ResourcePreview({ tablePadding, id, canResize, }: {
|
|
249
346
|
tablePadding: any;
|
|
250
347
|
id: any;
|
|
251
|
-
canResize
|
|
348
|
+
canResize: any;
|
|
252
349
|
}): import("react/jsx-runtime").JSX.Element;
|
|
350
|
+
declare namespace ResourcePreview {
|
|
351
|
+
namespace defaultProps {
|
|
352
|
+
namespace options {
|
|
353
|
+
const layout: string;
|
|
354
|
+
const columnFilter: boolean;
|
|
355
|
+
const columnSort: boolean;
|
|
356
|
+
const columnResize: boolean;
|
|
357
|
+
}
|
|
358
|
+
const truncateCellHeader: boolean;
|
|
359
|
+
const defaultSort: never[];
|
|
360
|
+
const canResize: boolean;
|
|
361
|
+
}
|
|
362
|
+
}
|
|
253
363
|
export function ResourceFooter({ resource }: {
|
|
254
364
|
resource: any;
|
|
255
365
|
}): import("react/jsx-runtime").JSX.Element;
|
|
@@ -263,6 +373,16 @@ declare namespace Breadcrumb {
|
|
|
263
373
|
}
|
|
264
374
|
}
|
|
265
375
|
export { default } from "./Breadcrumb";
|
|
376
|
+
declare namespace QueryBuilder {
|
|
377
|
+
namespace defaultProps {
|
|
378
|
+
const includeSearchParams: boolean;
|
|
379
|
+
}
|
|
380
|
+
}
|
|
381
|
+
declare namespace FilteredResourceBody {
|
|
382
|
+
namespace defaultProps {
|
|
383
|
+
const apiDocPage: string;
|
|
384
|
+
}
|
|
385
|
+
}
|
|
266
386
|
export const FilteredResource: (props: any) => import("react/jsx-runtime").JSX.Element;
|
|
267
387
|
export function useAddLoginLink(hosts: any, menuItems: any, targetKey: any, loginLinkObj: any): any;
|
|
268
388
|
export function useScrollToTop(): void;
|
package/dist/types.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"mappings":";AAAA;IACE,KAAK,EAAE,KAAK,CAAC,GAAG,CAAC,CAAC;IAClB,QAAQ,EAAE,MAAM,CAAC;IACjB,MAAM,EAAE,MAAM,CAAC;IACf,WAAW,EAAE,MAAM,CAAC;IACpB,WAAW,EAAE,MAAM,CAAC;IACpB,SAAS,EAAE,OAAO,CAAC;IACnB,YAAY,CAAC,EAAE,QAAQ,CAAC;CACzB;AGHD,OAAA,MAAM,
|
|
1
|
+
{"mappings":";AAAA;IACE,KAAK,EAAE,KAAK,CAAC,GAAG,CAAC,CAAC;IAClB,QAAQ,EAAE,MAAM,CAAC;IACjB,MAAM,EAAE,MAAM,CAAC;IACf,WAAW,EAAE,MAAM,CAAC;IACpB,WAAW,EAAE,MAAM,CAAC;IACpB,SAAS,EAAE,OAAO,CAAC;IACnB,YAAY,CAAC,EAAE,QAAQ,CAAC;CACzB;AGHD,OAAA,MAAM;qFAA0F,WAAW;;;;CAuB1G,CAAC;AE1BF,0BAA0B;IACxB,QAAQ,EAAE,GAAG,EAAE,GAAG,GAAG,CAAC;IACtB,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,MAAM,CAAC,EAAE,GAAG,CAAC;CACd,CAAA;AAED,0BAA0B;IACxB,QAAQ,EAAE,OAAO,CAAC;IAClB,KAAK,CAAC,EAAE,GAAG,CAAC;CACb,CAAC;AAEF,0BAAoB,SAAQ,KAAK,CAAC,SAAS,CAAC,kBAAkB,EAAE,kBAAkB,CAAC;gBACrE,KAAK,EAAE,kBAAkB;IAKrC,MAAM,CAAC,wBAAwB,CAAC,KAAK,EAAE,GAAG;;;;IAK1C,iBAAiB,CAAC,KAAK,EAAE,GAAG,EAAE,IAAI,EAAE,GAAG;IAKvC,MAAM;CAqBP;;;;;;;;AKvCD,kHAMC;AGfD;;;4CAOC;;;;;;;;;;;ACND,6BAA6B,UAAU,EAAE,MAAM,EAAE,UAAU,GAAE,MAAY,GAAG,MAAM,CAoBjF;ACdD,uBAAuB;IACrB,KAAK,EAAE,MAAM,CAAC;IACd,QAAQ,EAAE,MAAM,CAAC;IACjB,WAAW,EAAE,MAAM,CAAC;IACpB,KAAK,EAAE,MAAM,EAAE,CAAC;IAChB,UAAU,EAAE,MAAM,CAAC;IACnB,WAAW,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC5B,SAAS,EAAE,OAAO,CAAC;IACnB,iBAAiB,EAAE,OAAO,CAAC;CAC5B,CAAA;AAED,OAAA,MAAM,+BAAgC,eAAe,4CAyEpD,CAAC;;;;;IevFU;;;QAET;IACO;;;QAEP;IACmB;;;QAOnB;IACU;;;QAMV;IACW;;;QAEX;IACa;;;QAcb;IACW;;;oBAIX;IACY;;;oBAIZ;IACM;;;QAaN;IACQ;;;QAaR;IACQ;;;QAER;IACY;;;QAEZ;IAES;;;QAIT;IACQ;;;QAER;IACW;;;QAeX;;AC7GH,yEAUC;AKTD;;4CAMC;AeXD,qEAMC;ACAD,0FAuBC;AAED,sDAOC;AAED,0DAOC;AAcD;;;IAyBC;;AIlFD;;;;4CA+CC;AGrBD,OAAA,MAAM;;;6CA0EL,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AUnGF;;;;;;;;;;;4CAqUC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AGrUD,yBAAyB;IACvB,EAAE,EAAE,MAAM,CAAC;IACX,WAAW,EAAE,MAAM,CAAC;IACpB,KAAK,EAAE,MAAM,CAAC;IACd,IAAI,EAAE,MAAM,CAAC;IACb,QAAQ,EAAE,MAAM,CAAC;IACjB,oBAAoB,EAAE,MAAM,CAAA;CAC7B,CAAC;AAEF,2BAA2B;IACzB,iBAAiB,EAAE,KAAK,CAAC,iBAAiB,CAAC,CAAA;CAC5C,CAAA;AAED,OAAA,MAAM;YAAyB,kBAAkB,mBAAmB,CAAC;;;;;;;;;;;;CAoCnE,CAAC;;AGlDH;;;;;;;4CA4CC;;;;;;;;;;;;;;AM5BD;;;;;;;;;;4CAyGC;;AEhGD;;;;4CAwBC;;;;;;;;;;;;;;AClDD;;4CAqBC;;;;;;;;;;;;;;;;;;;;;;AQtBD,oGAYC;ACXD,uCAKC","sources":["src/src/components/NavBar/Navbar.types.ts","src/src/components/NavLink/index.tsx","src/src/components/SubMenu/index.jsx","src/src/components/NavBar/Navbar.tsx","src/src/components/NavBar/index.ts","src/src/components/ErrorBoundary/index.tsx","src/src/templates/APIPage/APIPage.jsx","src/src/templates/APIPage/index.jsx","src/src/templates/PageNotFound/PageNotFound.jsx","src/src/templates/PageNotFound/index.jsx","src/src/utilities/QueryProvider/QueryProvider.jsx","src/src/components/LargeFileDialog/index.tsx","src/src/assets/icons/searchItem.tsx","src/src/components/TransformedDate/index.jsx","src/src/components/DatasetSearchListItem/truncateText.ts","src/src/components/DatasetSearchListItem/index.tsx","src/src/types/search.ts","src/src/components/DatasetSearchFacets/index.tsx","src/src/components/LargeFileInfo/index.tsx","src/src/components/SearchButton/index.tsx","src/src/components/PageHeader/index.tsx","src/src/services/useSearchAPI/helpers.ts","src/src/templates/DatasetSearch/DatasetSearch.tsx","src/src/templates/DatasetSearch/index.jsx","src/src/types/dataset.ts","src/src/services/useMetastoreDataset/useMetastoreDataset.tsx","src/src/services/useMetastoreDataset/index.jsx","src/src/services/useDatastore/useDatastore.jsx","src/src/services/useDatastore/index.js","src/src/assets/frequencyMap.js","src/src/assets/metadataMapping.jsx","src/src/components/DatasetAdditionalInformation/index.jsx","src/src/components/ResourceInformation/index.tsx","src/src/utilities/format.ts","src/src/components/Resource/index.tsx","src/src/components/DatasetOverviewTab/index.tsx","src/src/components/ApiDocumentation/index.jsx","src/src/components/DatasetAPITab/index.tsx","src/src/components/Datatable/HeaderResizeElement.tsx","src/src/components/DataDictionaryTable/index.tsx","src/src/components/SitewideDataDictionaryTable/index.tsx","src/src/components/QueryBuilder/ClearFiltersButton.tsx","src/src/components/DatasetDictionaryTable/index.tsx","src/src/components/DatasetDataDictionaryTab/index.tsx","src/src/components/Datatable/TruncatedResizeableTHead.jsx","src/src/components/Datatable/FixedSizeTHead.jsx","src/src/components/ManageColumns/Card.tsx","src/src/components/ManageColumns/ManageColumns.jsx","src/src/components/FullScreenDataTable/index.tsx","src/src/components/DataTableControls/index.tsx","src/src/components/Datatable/Datatable.jsx","src/src/services/useDatastore/transformSorts.js","src/src/templates/FilteredResource/functions.js","src/src/components/DataTablePageResults/DataTablePageResults.tsx","src/src/components/DataTablePageResults/index.js","src/src/components/DatatableHeader/index.tsx","src/src/templates/FilteredResource/QueryTitle.jsx","src/src/components/QueryRow/index.tsx","src/src/components/QueryBuilder/index.tsx","src/src/components/DatasetTableTab/index.tsx","src/src/components/DatasetTableTab/DataTableStateWrapper.tsx","src/src/templates/Dataset/index.tsx","src/src/components/SearchModal/index.jsx","src/src/components/DesktopHeader/DesktopHeader.jsx","src/src/components/DesktopHeader/index.jsx","src/src/components/MobileHeader/MobileHeader.jsx","src/src/components/MobileHeader/index.jsx","src/src/templates/Header/Header.jsx","src/src/templates/Header/index.js","src/src/templates/Footer/index.jsx","src/src/templates/SpecsAndLimits/DocumentationTable.jsx","src/src/templates/SpecsAndLimits/documentationData.js","src/src/templates/SpecsAndLimits/index.tsx","src/src/services/useSearchAPI/useSearchAPI.jsx","src/src/services/useSearchAPI/index.jsx","src/src/components/Hero/index.jsx","src/src/components/DataTableDensity/index.jsx","src/src/components/DataTableRowChanger/index.tsx","src/src/assets/icons/download.jsx","src/src/assets/icons/copy.jsx","src/src/assets/icons/settings.jsx","src/src/components/ResourceHeader/index.jsx","src/src/components/Datatable/index.js","src/src/components/ResourcePreview/index.jsx","src/src/components/ResourceFooter/index.jsx","src/src/components/Breadcrumb/Breadcrumb.jsx","src/src/components/Breadcrumb/index.jsx","src/src/templates/FilteredResource/QueryRow.jsx","src/src/templates/FilteredResource/QueryBuilder.jsx","src/src/templates/FilteredResource/FilteredResourceDescription.jsx","src/src/templates/FilteredResource/FilteredResourceBody.jsx","src/src/templates/FilteredResource/index.jsx","src/src/components/useAddLoginLink/index.jsx","src/src/components/useScrollToTop/index.jsx","src/src/index.ts","src/index.ts"],"sourcesContent":[null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,null,"// Components\nexport { default as NavBar } from './components/NavBar';\nexport { default as ErrorBoundary } from './components/ErrorBoundary/';\n\n\n// Templates\nexport { default as APIPage } from './templates/APIPage';\nexport { default as PageNotFound } from './templates/PageNotFound';\nexport { default as DatasetSearch } from './templates/DatasetSearch';\nexport { default as Dataset } from './templates/Dataset';\nexport { default as DatasetTable } from './components/DatasetTableTab';\nexport { default as Header } from './templates/Header';\nexport { default as Footer } from './templates/Footer';\nexport { default as SpecsAndLimits } from './templates/SpecsAndLimits';\n\n// Services\nexport { default as useSearchAPI } from './services/useSearchAPI';\nexport { default as useDatastore } from './services/useDatastore';\nexport { transformTableSortToQuerySort } from './services/useDatastore/transformSorts';\n\n\nexport { default as Hero } from './components/Hero';\nexport { default as DatasetSearchListItem } from './components/DatasetSearchListItem';\nexport { default as ApiDocumentation } from './components/ApiDocumentation';\nexport { default as ResourceHeader } from './components/ResourceHeader';\nexport { default as ResourcePreview } from './components/ResourcePreview';\nexport { default as ResourceFooter } from './components/ResourceFooter';\nexport { default as Breadcrumb } from './components/Breadcrumb';\nexport { default as TransformedDate } from './components/TransformedDate';\nexport { default as DataTable } from './components/Datatable';\nexport { buildRows } from './components/DatasetAdditionalInformation';\n\nexport { default as FilteredResource } from './templates/FilteredResource';\nexport { default as QueryTitle } from './templates/FilteredResource/QueryTitle';\nexport { buildOperatorOptions, convertUTCToLocalDate, cleanText, buildCustomColHeaders } from './templates/FilteredResource/functions';\n\n// Hooks\nexport { default as useAddLoginLink } from './components/useAddLoginLink';\nexport { default as useScrollToTop } from './components/useScrollToTop';\nexport { default as useMetastoreDataset } from './services/useMetastoreDataset';\nexport { default as withQueryProvider } from './utilities/QueryProvider/QueryProvider'\n\n// Assets\n// export { default as frequencyMap } from './assets/frequencyMap';\nexport { defaultMetadataMapping } from './assets/metadataMapping';\n\nexport { default as DataTablePageResults } from './components/DataTablePageResults';\nexport { truncateText } from './components/DatasetSearchListItem/truncateText';"],"names":[],"version":3,"file":"types.d.ts.map"}
|
package/package.json
CHANGED