Deploy Data API
cd ~/Documents/GitHub/premise/data-api # path for data-api repo
git checkout master
git pull
GH_TOKEN=<personal_access_token> yarn version --minor
git push
cd ~/Documents/GitHub/premise/data-api # path for data-api repo
git checkout master
git pull
GH_TOKEN=<personal_access_token> yarn version --minor
git push
values
array is empty then we don't plot the small multiple chartselected = true
approach for each state and that approach will be used in place of MAP_PERCENT_POSITIVE
for the Map.selected=true
approach will also be highlighted with a gold rectangle in the new UI percent positivity view.import * as React from 'react'; | |
import { | |
StatelessAccordion, | |
} from 'baseui/accordion'; | |
import type { | |
StatelessAccordionProps, | |
} from 'baseui/accordion'; | |
export function Accordion(props: StatelessAccordionProps): JSX.Element { | |
const { |
There is a rendering bug when trying to take a screenshot of an SVG element
when using Safari and html2canvas
.
See below for example screenshots using html2canvas. As you can see below
when fill
is an attribute of the svg:path
element it is rendered correctly,
but when fill
is defined as a style it does not render correctly.
interface StyledProps { | |
readonly active: boolean; | |
} | |
const DateInput = styled<StyledProps, 'div'>('div', ({ | |
$theme, | |
active, | |
}) => ({ | |
borderRadius: '2px', | |
background: '#EDEDED', | |
width: '75px', |
const tx = ` | |
./commonstrings/src/main/res/values-fil/strings.xml: <string name="onboard_location_greeting_noname">Maligayang pagdating!</string> | |
./commonstrings/src/main/res/values-es-rES/strings.xml: <string name="onboard_location_greeting_noname">¡Te damos la bienvenida!</string> | |
./commonstrings/src/main/res/values-ro/strings.xml: <string name="onboard_location_greeting_noname">Bine ai venit!</string> | |
./commonstrings/src/main/res/values-ru/strings.xml: <string name="onboard_location_greeting_noname">Добро пожаловать!</string> | |
./commonstrings/src/main/res/values-hy-rAM/strings.xml: <string name="onboard_location_greeting_noname">Բարի գալուստ:</string> | |
./commonstrings/src/main/res/values-zh-rTW/strings.xml: <string name="onboard_location_greeting_noname">歡迎!</string> | |
./commonstrings/src/main/res/values-it/strings.xml: <string name="onboard_location_greeting_noname">Ti diamo il benvenuto!</string> | |
./commonstrings/src/main/res/values-zh-rCN/strings.xml: <string name="onboard_location_gre |
COPY | |
( | |
SELECT row_to_json(fc) AS json_out | |
FROM ( | |
SELECT 'FeatureCollection' AS type, | |
array_to_json(array_agg(f)) AS features | |
FROM ( | |
SELECT 'Feature' AS type, | |
st_asgeojson(ST_Intersection(st_transform(a.geom, 4326), st_transform(b.geom, 4326)))::json AS geometry, | |
ROW_TO_JSON( |