diff --git a/blocks/spinner/Spinner.tsx b/blocks/spinner/Spinner.tsx index 31eb925..1c80388 100644 --- a/blocks/spinner/Spinner.tsx +++ b/blocks/spinner/Spinner.tsx @@ -1,5 +1,8 @@ import React from 'react'; -import styled, { FlattenSimpleInterpolation, keyframes } from 'styled-components'; +import styled, { + FlattenSimpleInterpolation, + keyframes, +} from 'styled-components'; import { SpinnerSize, SpinnerVariant } from './Spinner.types'; import { getSpinnerSize, getSpinnerColor } from './Spinner.utils'; import { Ellipse } from '../icons'; @@ -19,7 +22,11 @@ const spin = keyframes` transform:rotate(360deg); } `; -const Container = styled.div<{ css?: FlattenSimpleInterpolation; size: SpinnerSize; variant?: SpinnerVariant }>` +const Container = styled.div<{ + css?: FlattenSimpleInterpolation; + size: SpinnerSize; + variant?: SpinnerVariant; +}>` display: flex; align-items: center; justify-content: center; @@ -45,14 +52,13 @@ const Container = styled.div<{ css?: FlattenSimpleInterpolation; size: SpinnerSi /* Custom CSS applied via styled component css prop */ ${(props) => props.css || ''}; `; -const Spinner: React.FC = ({ size = 'small', css, variant }) => { +const Spinner: React.FC = ({ + size = 'small', + css, + variant = 'primary', +}) => { return ( - + ); diff --git a/blocks/table/Table.tsx b/blocks/table/Table.tsx index 2f58001..5789f4a 100644 --- a/blocks/table/Table.tsx +++ b/blocks/table/Table.tsx @@ -30,7 +30,9 @@ export type TableProps = { retrying?: boolean; }; -const StyledHeaderCell = styled(HeaderCell)<{ headerAlignment?: Column['headerAlignment'] }>` +const StyledHeaderCell = styled(HeaderCell)<{ + headerAlignment?: Column['headerAlignment']; +}>` ${({ headerAlignment }) => headerAlignment ? ` @@ -113,7 +115,9 @@ const Table: FC = ({ retrying = false, }) => { const columnData = useMemo(() => { - const columnWidths = columns.map((col) => col.width || `${100 / columns.length}%`); + const columnWidths = columns.map( + (col) => col.width || `${100 / columns.length}%` + ); const leftRightPositionCSS = columns .map((col, index) => { @@ -127,7 +131,9 @@ const Table: FC = ({ if (col?.fixed == 'right') { return ` &:nth-of-type(${index + 1}) { - right: ${index + 1 === columns.length ? '0px' : columnWidths[index]}; + right: ${ + index + 1 === columns.length ? '0px' : columnWidths[index] + }; }; `; } @@ -191,19 +197,22 @@ const Table: FC = ({ {loading && !error && ( - + Loading )} {!loading && !dataSource.length && ( - {error ? : } + {error ? ( + + ) : ( + + )} - {error ? 'Trouble Fetching Data' : 'No Results Found'} + + {error ? 'Trouble Fetching Data' : 'No Results Found'} + {error ? 'Please try again in a few minutes or reload the page.' @@ -263,7 +272,9 @@ const Table: FC = ({ pinLeft={column?.fixed === 'left'} pinRight={column?.fixed === 'right'} > - {column.render ? column.render(cellValue, record) : cellValue} + {column.render + ? column.render(cellValue, record) + : cellValue} ); })} diff --git a/theme/globalStyles.ts b/theme/globalStyles.ts index 6b998eb..060b576 100644 --- a/theme/globalStyles.ts +++ b/theme/globalStyles.ts @@ -11,6 +11,7 @@ export const GlobalStyles = createGlobalStyle` url('${basePath}/static/fonts/FKGroteskNeue-Regular.woff') format('woff'); font-weight: 100 400; font-style: normal; + font-display: swap; } @font-face { @@ -20,6 +21,7 @@ export const GlobalStyles = createGlobalStyle` font-weight: 500 600; font-style: normal; + font-display: swap; } @font-face { @@ -28,6 +30,7 @@ export const GlobalStyles = createGlobalStyle` url('${basePath}/static/fonts/FKGroteskNeue-Bold.woff') format('woff'); font-weight: 700 800; font-style: normal; + font-display: swap; } body { @@ -43,7 +46,7 @@ export const GlobalStyles = createGlobalStyle` :root { /* Font Family */ - --font-family: 'FK Grotesk Neu'; + --font-family: 'FK Grotesk Neu', Arial, sans-serif; ${(props) => getBlocksCSSVariables(props.theme.blocksTheme)} }