1
1
mirror of https://github.com/primer/css.git synced 2024-11-29 14:14:26 +03:00
It might broke when fixing a merge conflict.
This commit is contained in:
simurai 2021-02-03 21:37:30 +09:00
parent 6d5ef606d6
commit d48ebbb635
3 changed files with 6062 additions and 13912 deletions

19948
docs/package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -13,8 +13,8 @@
"@loadable/component": "^5.10.2",
"@primer/components": "^17.1.0",
"@primer/gatsby-theme-doctocat": "^1.3.0",
"@primer/octicons": "^9.1.1",
"@primer/octicons-react": "^9.1.1",
"@primer/octicons": "^11.0.0",
"@primer/octicons-react": "^11.0.0",
"@svgr/webpack": "^4.3.2",
"autoprefixer": "^9.6.1",
"babel-preset-gatsby": "^0.5.10",

View File

@ -26,16 +26,18 @@ export {colors, gradientHues, palettes, getPaletteByName}
export const allColors = palettes.reduce((all, {values}) => all.concat(values), [])
export const borders = Object.keys(variables)
// Re: border-gray-darker, see https://github.com/primer/css/pull/1192
.filter(key => key.startsWith('border-') && !variables[key].includes('$') && key !== 'border-gray-darker')
.sort()
.map(key => ({
variable: key,
value: variables[key],
slug: key,
aliases: {border: key}
}))
// TODO: fix the borders code
//
// export const borders = Object.keys(variables)
// // Re: border-gray-darker, see https://github.com/primer/css/pull/1192
// .filter(key => key.startsWith('border-') && !variables[key].includes('$') && key !== 'border-gray-darker')
// .sort()
// .map(key => ({
// variable: key,
// value: variables[key],
// slug: key,
// aliases: {border: key}
// }))
function getPaletteByName(name) {
return palettes.find(palette => palette.name === name)