-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Move Admin UI style guide * Add npm script * Add changesets * Fix bolt things
- Loading branch information
Showing
40 changed files
with
3,654 additions
and
342 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 @@ | ||
{ "releases": [{ "name": "@keystone-alpha/app-admin-ui", "type": "patch" }], "dependents": [] } |
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 @@ | ||
Replace custom copy to clipboard utility with the clipboard-copy package |
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 @@ | ||
{ "releases": [{ "name": "@keystone-alpha/app-admin-ui", "type": "patch" }], "dependents": [] } |
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 @@ | ||
Remove Admin UI style guide. The style guide is now in the keystone-5 repo at packages/arch/docs |
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,11 @@ | ||
{ | ||
"releases": [{ "name": "@arch-ui/navbar", "type": "minor" }], | ||
"dependents": [ | ||
{ | ||
"name": "@keystone-alpha/app-admin-ui", | ||
"type": "patch", | ||
"dependencies": ["@arch-ui/navbar"] | ||
}, | ||
{ "name": "@arch-ui/docs", "type": "patch", "dependencies": ["@arch-ui/navbar"] } | ||
] | ||
} |
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 @@ | ||
Allow changing the underlying element type of the ItemElement component with the `as` |
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
30 changes: 0 additions & 30 deletions
30
packages/app-admin-ui/client/components/CopyToClipboard.js
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
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
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,3 @@ | ||
// gatsby doesn't seem to look at eslintrcs in | ||
// higher directories than the site's directory | ||
module.exports = require('../../../.eslintrc'); |
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,2 @@ | ||
public/ | ||
.cache/ |
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,26 @@ | ||
module.exports = { | ||
presets: [ | ||
[ | ||
'@babel/preset-env', | ||
{ | ||
targets: { | ||
node: 10, | ||
browsers: [ | ||
'last 2 chrome versions', | ||
'last 2 firefox versions', | ||
'last 2 safari versions', | ||
'last 2 edge versions', | ||
], | ||
}, | ||
}, | ||
], | ||
'@babel/preset-react', | ||
'@babel/preset-flow', | ||
], | ||
plugins: [ | ||
'@babel/plugin-transform-runtime', | ||
'@babel/plugin-proposal-class-properties', | ||
'@babel/proposal-object-rest-spread', | ||
'@babel/plugin-syntax-dynamic-import', | ||
], | ||
}; |
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,37 @@ | ||
{ | ||
"name": "@arch-ui/docs", | ||
"version": "1.0.0", | ||
"private": true, | ||
"license": "MIT", | ||
"dependencies": { | ||
"@arch-ui/alert": "^0.0.6", | ||
"@arch-ui/badge": "^0.0.6", | ||
"@arch-ui/button": "^0.0.8", | ||
"@arch-ui/controls": "^0.0.8", | ||
"@arch-ui/dialog": "^0.0.8", | ||
"@arch-ui/dropdown": "^0.0.7", | ||
"@arch-ui/fields": "^2.0.0", | ||
"@arch-ui/icons": "^0.0.5", | ||
"@arch-ui/input": "^0.0.8", | ||
"@arch-ui/layout": "^0.2.3", | ||
"@arch-ui/loading": "^0.0.7", | ||
"@arch-ui/lozenge": "^0.0.6", | ||
"@arch-ui/navbar": "^0.0.9", | ||
"@arch-ui/pagination": "^0.0.8", | ||
"@arch-ui/pill": "^0.1.5", | ||
"@arch-ui/popout": "^0.0.7", | ||
"@arch-ui/select": "^0.0.7", | ||
"@arch-ui/theme": "^0.0.5", | ||
"@arch-ui/tooltip": "^0.0.7", | ||
"@arch-ui/typography": "^0.0.7", | ||
"@emotion/core": "^10.0.10", | ||
"@emotion/styled": "^10.0.10", | ||
"@reach/router": "^1.2.1", | ||
"clipboard-copy": "^3.0.0", | ||
"gatsby": "^2.3.24", | ||
"react": "^16.8.6" | ||
}, | ||
"scripts": { | ||
"start": "gatsby develop" | ||
} | ||
} |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
File renamed without changes.
Oops, something went wrong.