-
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.
Merge branch 'master' into change-image-ref
- Loading branch information
Showing
42 changed files
with
1,592 additions
and
713 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,5 @@ | ||
--- | ||
'@keystone-next/admin-ui': minor | ||
--- | ||
|
||
Added symlink logic for file storage. |
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,5 @@ | ||
--- | ||
'@keystone-next/fields': minor | ||
--- | ||
|
||
Added file field type. |
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,5 @@ | ||
--- | ||
'@keystone-next/utils-legacy': minor | ||
--- | ||
|
||
Added `getFileRef` and `parseFileRef` to exported utilities. |
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,5 @@ | ||
--- | ||
'@keystone-next/api-tests-legacy': minor | ||
--- | ||
|
||
Added beforeEach and afterEach hooks to test suite, added file config defaults. |
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
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,14 +1,15 @@ | ||
export { autoIncrement } from './types/autoIncrement'; | ||
export { checkbox } from './types/checkbox'; | ||
export { decimal } from './types/decimal'; | ||
export { file } from './types/file'; | ||
export { float } from './types/float'; | ||
export { integer } from './types/integer'; | ||
export { image } from './types/image'; | ||
export { password } from './types/password'; | ||
export { relationship } from './types/relationship'; | ||
export { select } from './types/select'; | ||
export { text } from './types/text'; | ||
export { password } from './types/password'; | ||
export { timestamp } from './types/timestamp'; | ||
export { integer } from './types/integer'; | ||
export { float } from './types/float'; | ||
export { decimal } from './types/decimal'; | ||
export { autoIncrement } from './types/autoIncrement'; | ||
export { select } from './types/select'; | ||
export { virtual } from './types/virtual'; | ||
export { Implementation } from './Implementation'; | ||
export type { FieldConfigArgs, FieldExtraArgs } from './Implementation'; | ||
export { image } from './types/image'; |
Oops, something went wrong.