8226eb47
#1819 Thanks @w01fgang! - Upgraded@emotion/core
and@emotion/styled
.- Updated dependencies [
8735393e
,8226eb47
,8226eb47
]:- @keystonejs/build-field-types@5.0.1
-
7b4ed362
#1821 Thanks @jesstelford! - Release @keystonejs/* packages (つ^ ◡ ^)つ- This is the first release of
@keystonejs/*
packages (previously@keystone-alpha/*
). - All packages in the
@keystone-alpha
namespace are now available in the@keystonejs
namespace, starting at version5.0.0
. - To upgrade your project you must update any
@keystone-alpha/*
dependencies inpackage.json
to point to"@keystonejs/*": "^5.0.0"
and update anyrequire
/import
statements in your code.
- This is the first release of
- Updated dependencies [
7b4ed362
]:- @keystonejs/build-field-types@5.0.0
- 42c3fbc9: Upgrade emotion to 10.0.14
-
Build package with @keystone-alpha/build-field-types so it works when published
-
Add oEmbed Content Block with adapter-specific renderers.
-
-
Add IFramely OEmbed adapter:
const { Keystone } = require('@keystone-alpha/keystone'); const { OEmbed } = require('@keystone-alpha/fields'); const { IframelyOEmbedAdapter } = require('@keystone-alpha/oembed-adapters'); const keystone = new Keystone(/* ... */); const iframelyAdapter = new IframelyOEmbedAdapter({ apiKey: '...', // Get one from https://iframely.com }); keystone.createList('User', { fields: { portfolio: { type: OEmbed, adapter: iframelyAdapter, }, }, });
-