-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #374 from act-org/jc-data-viz-components
[DLS v8]: Addition of New Data-Viz Components (promoted from the Encoura Ecosystem Lib)
- Loading branch information
Showing
184 changed files
with
179,025 additions
and
7,918 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
STORYBOOK_MAPBOX_ACCESS_TOKEN="<INSERT_MAPBOX_TOKEN_HERE>" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
storybook-static | ||
dist | ||
node_modules | ||
.DS_Store | ||
.env | ||
coverage | ||
dist | ||
node_modules | ||
storybook-static |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
18 | ||
v20 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
<style> | ||
#root { | ||
display: flex; | ||
justify-content: center; | ||
width: 100%; | ||
} | ||
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,5 @@ | ||
<link href="https://fonts.googleapis.com/css?family=Montserrat:300,400,500,600,700&display=swap" rel="stylesheet"> | ||
|
||
<style type="text/css"> | ||
@font-face { | ||
font-family: 'Museo'; | ||
src: url('fonts/Museo/Museo300.otf'); | ||
font-style: normal; | ||
font-weight: 300; | ||
} | ||
@font-face { | ||
font-family: 'Museo'; | ||
src: url('fonts/Museo/Museo500.otf'); | ||
font-style: normal; | ||
font-weight: 500; | ||
} | ||
@font-face { | ||
font-family: 'Museo'; | ||
src: url('fonts/Museo/Museo700.otf'); | ||
font-style: normal; | ||
font-weight: 700; | ||
} | ||
</style> | ||
|
||
<link | ||
href="https://fonts.googleapis.com/css2?display=swap&family=Work+Sans:[email protected]" | ||
rel="stylesheet" | ||
|
@@ -33,3 +12,9 @@ | |
href="https://fonts.googleapis.com/css2?display=swap&family=Roboto+Mono:[email protected]" | ||
rel="stylesheet" | ||
/> | ||
|
||
<style> | ||
@import url("https://use.typekit.net/zno7zee.css"); | ||
</style> | ||
|
||
<link href='https://api.tiles.mapbox.com/mapbox-gl-js/v2.7.0/mapbox-gl.css' rel='stylesheet' /> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
/** | ||
* Copyright (c) ACT, Inc. and its affiliates. | ||
* | ||
* This source code is licensed under the MIT license found in the | ||
* LICENSE file in the root directory of this source tree. | ||
* | ||
* @prettier | ||
*/ | ||
|
||
/* eslint-disable import/no-extraneous-dependencies */ | ||
|
||
import { configure } from '@testing-library/dom'; | ||
import '@testing-library/jest-dom'; | ||
import fetch from 'isomorphic-fetch'; | ||
import { TextDecoder } from 'text-encoding'; | ||
|
||
global.fetch = fetch; | ||
global.TextDecoder = TextDecoder; | ||
|
||
configure({ | ||
computedStyleSupportsPseudoElements: true, | ||
}); |
Oops, something went wrong.