-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Move TypeKit CSS to prototype kit config * GOV.UK prototype kit fixes * Remove transitions * Fixed width icons * Spelling mistake * More colour examples * Add styling for tables * Fix card supertitle * Allow column alignment * Change header layout to flexbox * Adjust hero caption width * Add color to tint and light accent backgrounds * Add plain supertitle heading story * Updates to card component * Change grid alignment classes * Lint * Remove margin and padding from all elements * Updates and fixes to cookie banner * Spelling mistake * Update CHANGELOG.md * Fix linting and test errors * Use TNAFrontend from window if available * Update README.md * Omit some stories from Chromatic snapshots * Omit more stories from Chromatic snapshots * Fix spelling mistake in published assets * Update README.md * Rework Cookie class * More immutability in Cookies class, lint * Change focus outline colour on dark theme * Pagination option with no numbers, nested lists * Update list of cards markup * Add table wrapper * Change table to use space-above * Make smaller tables full width * Update Cookies library * Add more linting and unit tests
- Loading branch information
Showing
58 changed files
with
1,630 additions
and
807 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
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,21 +1,23 @@ | ||
module.exports = { | ||
"env": { | ||
"browser": true, | ||
"es2021": true | ||
env: { | ||
browser: true, | ||
es2021: true, | ||
}, | ||
"extends": ["eslint:recommended", "plugin:storybook/recommended"], | ||
"overrides": [{ | ||
"env": { | ||
"node": true | ||
extends: ["eslint:recommended", "plugin:storybook/recommended"], | ||
overrides: [ | ||
{ | ||
env: { | ||
node: true, | ||
}, | ||
files: [".eslintrc.{js,cjs}"], | ||
parserOptions: { | ||
sourceType: "script", | ||
}, | ||
}, | ||
"files": [".eslintrc.{js,cjs}"], | ||
"parserOptions": { | ||
"sourceType": "script" | ||
} | ||
}], | ||
"parserOptions": { | ||
"ecmaVersion": "latest", | ||
"sourceType": "module" | ||
], | ||
parserOptions: { | ||
ecmaVersion: "latest", | ||
sourceType: "module", | ||
}, | ||
"rules": {} | ||
}; | ||
rules: {}, | ||
}; |
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 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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
module.exports = { | ||
testEnvironment: "jsdom", | ||
transform: { | ||
"\\.m?js$": "babel-jest", | ||
}, | ||
}; |
Oops, something went wrong.