From 8d68491ad7be3c861d45ad725be8cfb14c340742 Mon Sep 17 00:00:00 2001 From: Miu Razvan Date: Mon, 5 Oct 2020 00:39:52 +0300 Subject: [PATCH] Update --- package.json | 8 +- .../manage/Blocks/ArticlesSparql/View.jsx | 21 +- .../DiscodataComponents/Custom/View.jsx | 11 +- .../Blocks/DiscodataComponents/schema.jsx | 2 + .../Blocks/DiscodataComponentsBlock/View.jsx | 20 + .../Blocks/DiscodataComponentsBlock/style.css | 1 - .../DiscodataOpenlayersMapBlock/View.jsx | 9 +- .../Blocks/DiscodataTableBlock/View.jsx | 48 +- .../manage/Blocks/FiltersBlock/View.jsx | 301 ++++++---- src/components/manage/Blocks/Iframe/View.jsx | 2 +- src/components/theme/View/DefaultView.jsx | 2 +- .../volto/components/theme/Footer/Footer.jsx | 72 ++- .../volto/components/theme/Header/Header.jsx | 16 +- theme/site/elements/header.overrides | 27 +- theme/site/globals/site.overrides | 21 + yarn.lock | 533 ++++++++++-------- 16 files changed, 694 insertions(+), 400 deletions(-) diff --git a/package.json b/package.json index 9444fe5d..40052b18 100644 --- a/package.json +++ b/package.json @@ -18,6 +18,7 @@ "@eeacms/volto-metadata-block", "@eeacms/volto-tabs-block", "@eeacms/volto-widget-toggle", + "@eeacms/volto-blocks-form", "@eeacms/volto-object-widget", "@eeacms/volto-grid-block", "volto-addons", @@ -109,12 +110,13 @@ "node": "^10 || ^12" }, "dependencies": { + "@eeacms/volto-blocks-form": "github:eea/volto-blocks-form#0.4.1", "@eeacms/volto-metadata-block": "github:eea/volto-metadata-block#1.0.1", + "@eeacms/volto-object-widget": "github:eea/volto-object-widget#0.2.1", "@eeacms/volto-widget-toggle": "github:eea/volto-widget-toggle#0.1.0", "@eeacms/volto-widgets-view": "github:eea/volto-widgets-view#1.0.1", - "@eeacms/volto-object-widget": "github:eea/volto-object-widget#0.1.2", - "@plone/volto": "github:eea/volto#8.0.0-beta.10", - "@tinymce/tinymce-react": "^3.6.0", + "@material/react-linear-progress": "^0.15.0", + "@plone/volto": "github:eea/volto#8.0.0-beta.11", "axios": "^0.20.0", "jsonp": "^0.2.1", "ol": "^6.4.3", diff --git a/src/components/manage/Blocks/ArticlesSparql/View.jsx b/src/components/manage/Blocks/ArticlesSparql/View.jsx index 1e07c403..49024005 100644 --- a/src/components/manage/Blocks/ArticlesSparql/View.jsx +++ b/src/components/manage/Blocks/ArticlesSparql/View.jsx @@ -12,6 +12,15 @@ import upSVG from '@plone/volto/icons/up.svg'; import placeholderImage from './placeholder.png'; import './style.css'; +const secureRequest = (url) => { + try { + new URL(url); + return url.replace('http', 'https'); + } catch { + return url; + } +}; + const View = (props) => { const [activeItem, setActiveItem] = useState(1); const { page = '/', redirectPage = null, preview = false } = props.data || {}; @@ -58,13 +67,13 @@ const View = (props) => { >
diff --git a/src/components/manage/Blocks/DiscodataComponents/Custom/View.jsx b/src/components/manage/Blocks/DiscodataComponents/Custom/View.jsx index 581f2f1f..429adf8a 100644 --- a/src/components/manage/Blocks/DiscodataComponents/Custom/View.jsx +++ b/src/components/manage/Blocks/DiscodataComponents/Custom/View.jsx @@ -42,12 +42,17 @@ const components = { >
- +

Last report was submitted on:

{getDate(packages[0])}

-
+ {/*

Reporting year

-
+
*/}

Publish date

{getDate(packages[1])}

diff --git a/src/components/manage/Blocks/DiscodataComponents/schema.jsx b/src/components/manage/Blocks/DiscodataComponents/schema.jsx index 69163725..a1f201d2 100644 --- a/src/components/manage/Blocks/DiscodataComponents/schema.jsx +++ b/src/components/manage/Blocks/DiscodataComponents/schema.jsx @@ -453,6 +453,8 @@ export const makeListSchema = (props) => { title: 'Limit', type: 'number', minimum: '0', + onBlur: () => null, + onClick: () => null, }, className: { title: 'Class name', diff --git a/src/components/manage/Blocks/DiscodataComponentsBlock/View.jsx b/src/components/manage/Blocks/DiscodataComponentsBlock/View.jsx index b145b704..f18839f6 100644 --- a/src/components/manage/Blocks/DiscodataComponentsBlock/View.jsx +++ b/src/components/manage/Blocks/DiscodataComponentsBlock/View.jsx @@ -375,6 +375,7 @@ const renderComponents = { ); }, eprtrCountryGroupSelector: (props) => { + const initialQueryParameters = {}; const items = props.item?.[props.component.value] ?.filter((item) => item.countryGroupId) @@ -390,13 +391,29 @@ const renderComponents = { key: 'airPollutionPerCapita', value: 'airPollutionPerCapita', text: 'Air', + labelText: 'air pollution per capita', }, { key: 'waterPollutionPerCapita', value: 'waterPollutionPerCapita', text: 'Water', + labelText: 'water pollution per capita', }, ]; + if (!props.globalQuery.countryGroupId && items?.[0]?.key) { + initialQueryParameters.countryGroupId = items[0].key; + } + if (!props.globalQuery.listFilter && items?.[0]?.key) { + initialQueryParameters.listFilter = 'airPollutionPerCapita'; + initialQueryParameters.listFilterLabel = 'air pollution per capita'; + } + if (Object.keys(initialQueryParameters).length > 0) { + props.setQueryParam({ + queryParam: { + ...initialQueryParameters, + }, + }); + } return (
Industrial pollution in
@@ -427,6 +444,9 @@ const renderComponents = { listFilter: data.options.filter((opt) => { return opt.value === data.value; })[0]?.key, + listFilterLabel: data.options.filter((opt) => { + return opt.value === data.value; + })[0]?.labelText, }, }); }} diff --git a/src/components/manage/Blocks/DiscodataComponentsBlock/style.css b/src/components/manage/Blocks/DiscodataComponentsBlock/style.css index ce473004..749cc1cf 100644 --- a/src/components/manage/Blocks/DiscodataComponentsBlock/style.css +++ b/src/components/manage/Blocks/DiscodataComponentsBlock/style.css @@ -422,7 +422,6 @@ a.small h1 { .link-list li:before { content: counter(link-list-counter)"."; color: #EC776A; - font-size: 1.5rem; } .link-list li button { diff --git a/src/components/manage/Blocks/DiscodataOpenlayersMapBlock/View.jsx b/src/components/manage/Blocks/DiscodataOpenlayersMapBlock/View.jsx index d096a165..ce18a00a 100644 --- a/src/components/manage/Blocks/DiscodataOpenlayersMapBlock/View.jsx +++ b/src/components/manage/Blocks/DiscodataOpenlayersMapBlock/View.jsx @@ -94,6 +94,7 @@ const OpenlayersMapView = (props) => { const [loader, setLoader] = useState(false); const [mapRendered, setMapRendered] = useState(false); const [firstFilteringUpdate, setFirstFilteringUpdate] = useState(false); + const selectedSiteRef = useRef(null); const selectedSiteCoordinates = useRef(null); const regionsSourceWhere = useRef(''); const firstFilteringDone = useRef(false); @@ -214,6 +215,8 @@ const OpenlayersMapView = (props) => { useEffect(() => { if (selectedSite && mapRendered) { + selectedSiteRef.current = selectedSite; + console.log('SET STYLE FOR SELECTED SITE'); selectedSite.setStyle( new Style({ image: new CircleStyle({ @@ -559,6 +562,7 @@ const OpenlayersMapView = (props) => { const item = data.results?.[0]; selectedSiteCoordinates.current = [item.x, item.y]; if (item && item.x && item.y) { + console.log('REFRESH SOURCE'); stateRef.current.map.sitesSourceLayer.getSource().refresh(); stateRef.current.map.element.getView().animate({ center: selectedSiteCoordinates.current, @@ -983,12 +987,15 @@ const OpenlayersMapView = (props) => { const closestFeature = sitesSource.getClosestFeatureToCoordinate( selectedSiteCoordinates.current, ); - closestFeature.setStyle(); + console.log('SET SELECTED SITE'); setSelectedSite(closestFeature); selectedSiteCoordinates.current = null; } } }); + sitesSource.on('changefeature', function (e) { + console.log('CHANGE'); + }); if (hasPopups) { if (document && document.documentElement?.clientWidth > 500) { map.on('pointermove', function (evt) { diff --git a/src/components/manage/Blocks/DiscodataTableBlock/View.jsx b/src/components/manage/Blocks/DiscodataTableBlock/View.jsx index 6196c51a..16849b9f 100644 --- a/src/components/manage/Blocks/DiscodataTableBlock/View.jsx +++ b/src/components/manage/Blocks/DiscodataTableBlock/View.jsx @@ -11,6 +11,9 @@ import { Icon } from '@plone/volto/components'; import DiscodataSqlBuilderView from 'volto-datablocks/DiscodataSqlBuilder/View'; import { setQueryParam } from 'volto-datablocks/actions'; import { Dimmer, Loader } from 'semantic-ui-react'; +import LinearProgress from '@material/react-linear-progress'; + +import '@material/react-linear-progress/dist/linear-progress.css'; const components = { object_link_length: (schemaMetadata, itemMetadata, item) => { @@ -187,7 +190,7 @@ const View = (props) => { {/* ==== TABLE HEADER ==== */} - + {state.metadata?.fieldsets?.[0]?.fields?.map( (meta) => @@ -200,6 +203,13 @@ const View = (props) => { )} + {loader && ( + + + + + + )} {/* ==== TABLE BODY ==== */} @@ -414,7 +424,18 @@ const View = (props) => { > { + onPageChange={function (event, pagination) { + if (document.querySelector('.filters-container')) { + document + .querySelector('.filters-container') + .scrollIntoView(); + } else if ( + document.getElementById('discodata-table-header') + ) { + document + .getElementById('discodata-table-header') + .scrollIntoView(); + } setState({ ...state, pagination: { @@ -433,13 +454,30 @@ const View = (props) => {
+ ) : !loader ? ( +
+

+ No data +

+
) : (
)} - - European Environment Agency - + {!items?.length ? ( + + European Environment Agency + + ) : ( + '' + )}
); }; diff --git a/src/components/manage/Blocks/FiltersBlock/View.jsx b/src/components/manage/Blocks/FiltersBlock/View.jsx index c17cf683..6660a7c0 100644 --- a/src/components/manage/Blocks/FiltersBlock/View.jsx +++ b/src/components/manage/Blocks/FiltersBlock/View.jsx @@ -38,6 +38,7 @@ const keyCodes = { }; const View = ({ content, ...props }) => { + const history = useHistory(); const providerUrl = settings.providerUrl; const [state, setState] = useState({ id: _uniqueId('block_'), @@ -74,6 +75,7 @@ const View = ({ content, ...props }) => { const [quickFactsListener, setQuickFactsListener] = useState(false); const [sidebar, setSidebar] = useState(false); const [mountState, setMountState] = useState(false); + const [clock, setClock] = useState(0); const alphaFeatureRef = useRef({}); const searchContainerModal = useRef(null); const searchContainer = useRef(null); @@ -95,6 +97,11 @@ const View = ({ content, ...props }) => { const updateFactsData = (initialization = false) => { const promises = []; let reqs; + const reportingYears = + props.discodata_query.search.reportingYear?.filter( + (reportingYear) => reportingYear, + ) || []; + if (initialization) { reqs = [ { @@ -103,7 +110,7 @@ const View = ({ content, ...props }) => { FROM [IED].[latest].[ProductionSite_NoGeo]`, descriptionDiscodataKey: ['AllSites'], title: 'EU Quick facts', - description: [':descriptionDiscodataKey reporting sites'], + description: [':descriptionDiscodataKey reporting sites (all years)'], type: 'firstElement', }, ]; @@ -112,7 +119,8 @@ const View = ({ content, ...props }) => { alphaFeature?.getProperties?.()?.countryCode ? { factId: 'Country_quick_facts', - sql: `SELECT DISTINCT + sql: + `SELECT DISTINCT PS.countryCode, LC.CountryName as countryName, count(*) as sites @@ -121,15 +129,43 @@ const View = ({ content, ...props }) => { ON PS.countryCode = LC.CountryCode WHERE PS.countryCode = '${ alphaFeature.getProperties().countryCode - }' - GROUP BY PS.countryCode, LC.CountryName`, + }'` + + (reportingYears?.length > 0 + ? ` AND reportingYear IN (${reportingYears.join(',')}) ` + : ' ') + + `GROUP BY PS.countryCode, LC.CountryName`, titleDiscodataKey: 'countryName', descriptionDiscodataKey: ['sites'], title: ':titleDiscodataKey quick facts', - description: [':descriptionDiscodataKey reporting sites'], + description: [ + `:descriptionDiscodataKey reporting sites (${ + reportingYears?.length > 0 + ? reportingYears.join(', ') + : 'all years' + })`, + ], type: 'firstElement', } : null, + { + factId: 'EU_quick_facts', + sql: + `SELECT count(id) AS AllSites + FROM [IED].[latest].[ProductionSite_NoGeo]` + + (reportingYears?.length > 0 + ? `WHERE reportingYear IN (${reportingYears.join(',')})` + : ''), + descriptionDiscodataKey: ['AllSites'], + title: 'EU Quick facts', + description: [ + `:descriptionDiscodataKey reporting sites (${ + reportingYears?.length > 0 + ? reportingYears.join(', ') + : 'all years' + })`, + ], + type: 'firstElement', + }, ].filter((req) => req); } reqs.forEach((req) => { @@ -148,15 +184,21 @@ const View = ({ content, ...props }) => { results[0]?.[reqs[index].titleDiscodataKey], ) : reqs[index].title; - const description = reqs[index].description.map((descr, index) => { - return descr.includes(':descriptionDiscodataKey') && - results[0]?.[reqs[index].descriptionDiscodataKey?.[index]] - ? descr.replace( - ':descriptionDiscodataKey', - results[0]?.[reqs[index].descriptionDiscodataKey?.[index]], - ) - : descr; - }); + const description = reqs[index].description.map( + (descr, descrIndex) => { + return descr.includes(':descriptionDiscodataKey') && + results[0]?.[ + reqs[index].descriptionDiscodataKey?.[descrIndex] + ] + ? descr.replace( + ':descriptionDiscodataKey', + results[0]?.[ + reqs[index].descriptionDiscodataKey?.[descrIndex] + ], + ) + : descr; + }, + ); newFactsData[reqs[index].factId] = { title, description, @@ -191,6 +233,9 @@ const View = ({ content, ...props }) => { mounted.current = true; setMountState(true); updateFactsData(true); + history.listen((location, action) => { + setQuickFactsListener(false); + }); return () => { if (quickFactsListener && document.getElementById(`dynamic-filter`)) { document @@ -209,7 +254,7 @@ const View = ({ content, ...props }) => { updateFactsData(false); } /* eslint-disable-next-line */ - }, [alphaFeature]) + }, [alphaFeature, JSON.stringify(props.discodata_query.search.reportingYear)]) useEffect(() => { if (triggerSearch) { @@ -1004,7 +1049,7 @@ const View = ({ content, ...props }) => { { autoComplete(data); @@ -1257,104 +1302,132 @@ const View = ({ content, ...props }) => {
- {mapSidebarExists ? ( - -
-
-
Dynamic filter
-
-
-
Reporting year
-
- { - changeFilter( - data, - state.filtersMeta['industries'], - 0, - true, - ); - props.setQueryParam({ - queryParam: { - advancedFiltering: true, - filtersCounter: props.discodata_query.search[ - 'filtersCounter' - ] - ? props.discodata_query.search['filtersCounter'] + 1 - : 1, - }, - }); - }} - placeholder={state.filtersMeta['industries']?.placeholder} - options={state.filtersMeta['industries']?.options || []} - value={state.filters['EEAActivity']?.[0]} - /> -
-
-
- -
Quick facts
- {state.factsDataOrder && - state.factsDataOrder.map((key) => { - return factsData[key] ? ( - - {factsData[key]?.title && ( -
{factsData[key].title}
- )} - {factsData[key]?.description && - factsData[key].description.map((description, index) => { - return

{description}

; - })} -
- ) : ( - '' - ); - })} -
-
-
- ) : ( - '' - )} + {mapSidebarExists + ? (function () { + // Trick to rerender the component after dynamic-filter applies + if (!clock) { + setClock(1); + setTimeout(() => { + if (clock < 2) { + setClock(2); + } + }, 1000); + } + return ( + +
+
+
Dynamic filter
+
+
+
Reporting year
+
+ { + changeFilter( + data, + state.filtersMeta['industries'], + 0, + true, + ); + props.setQueryParam({ + queryParam: { + advancedFiltering: true, + filtersCounter: props.discodata_query.search[ + 'filtersCounter' + ] + ? props.discodata_query.search[ + 'filtersCounter' + ] + 1 + : 1, + }, + }); + }} + placeholder={ + state.filtersMeta['industries']?.placeholder + } + options={state.filtersMeta['industries']?.options || []} + value={state.filters['EEAActivity']?.[0]} + /> +
+
+
+ +
Quick facts
+ {state.factsDataOrder && + state.factsDataOrder.map((key) => { + return factsData[key] ? ( + + {factsData[key]?.title && ( +
{factsData[key].title}
+ )} + {factsData[key]?.description && + factsData[key].description.map( + (description, index) => { + return ( +

{description}

+ ); + }, + )} +
+ ) : ( + '' + ); + })} +
+
+
+ ); + })() + : (function () { + if (clock) { + setClock(0); + } + return ''; + })()}
); }; diff --git a/src/components/manage/Blocks/Iframe/View.jsx b/src/components/manage/Blocks/Iframe/View.jsx index 7c948cc5..20f2598a 100644 --- a/src/components/manage/Blocks/Iframe/View.jsx +++ b/src/components/manage/Blocks/Iframe/View.jsx @@ -11,7 +11,7 @@ const View = ({ content, ...props }) => { const { data } = props; const { url = '', title = '', width = '100%', height = 'auto' } = data; const { hideToolbar = false, overflow = false, preset = null } = data; - console.log(discodataQuery); + useEffect(() => { if (props.data.queryParameters?.value) { try { diff --git a/src/components/theme/View/DefaultView.jsx b/src/components/theme/View/DefaultView.jsx index 213ec5f6..94c58b83 100644 --- a/src/components/theme/View/DefaultView.jsx +++ b/src/components/theme/View/DefaultView.jsx @@ -36,7 +36,7 @@ const DefaultView = ({ content, intl, location }) => { const blocksFieldname = getBlocksFieldname(content); const blocksLayoutFieldname = getBlocksLayoutFieldname(content); const contentTypeBlocks = content['@components']?.layout?.[blocksFieldname]; - console.log(contentTypeBlocks); + return hasBlocksData(content) ? (
{map(content[blocksLayoutFieldname].items, (block) => { diff --git a/src/customizations/volto/components/theme/Footer/Footer.jsx b/src/customizations/volto/components/theme/Footer/Footer.jsx index 4f44a29e..91e26237 100644 --- a/src/customizations/volto/components/theme/Footer/Footer.jsx +++ b/src/customizations/volto/components/theme/Footer/Footer.jsx @@ -8,6 +8,7 @@ import { Container, Segment } from 'semantic-ui-react'; import { Link } from 'react-router-dom'; import { FormattedMessage, injectIntl } from 'react-intl'; import eeaLogo from '../Header/eea.png'; +import eclogo from '../Header/ec.png'; /** * Component to display the footer. @@ -35,17 +36,17 @@ const Footer = ({ intl }) => (
  • - +
  • - - + +
  • @@ -62,9 +63,12 @@ const Footer = ({ intl }) => (
  • -
    -
    -
    +
    +
    + -
    -

    - European Environment Agency (EEA) -
    - Kongens Nytrov 6 -
    - 1050 Copenhagen K -
    - Denmark -
    - Phone: +4533367100 -

    -
    +

    + European Environment Agency (EEA) +
    + Kongens Nytrov 6 +
    + 1050 Copenhagen K +
    + Denmark +
    + Phone: +4533367100 +

    @@ -97,12 +106,23 @@ const Footer = ({ intl }) => ( The European Environment Agency (EEA) is an agency of the European Union.

    - - - +
    + + + + + + + + EEA systems status + +
    diff --git a/src/customizations/volto/components/theme/Header/Header.jsx b/src/customizations/volto/components/theme/Header/Header.jsx index ab6588ba..65dcf9b6 100644 --- a/src/customizations/volto/components/theme/Header/Header.jsx +++ b/src/customizations/volto/components/theme/Header/Header.jsx @@ -54,15 +54,13 @@ class Header extends Component {
    -
    -
    - - -
    +
    + +
    diff --git a/theme/site/elements/header.overrides b/theme/site/elements/header.overrides index 4ec2182c..d04f71be 100644 --- a/theme/site/elements/header.overrides +++ b/theme/site/elements/header.overrides @@ -6,14 +6,25 @@ background-color: @primaryColor; } -.ui.basic.segment .header { +.ui.basic.segment.header-wrapper .header { display: flex; - flex-wrap: wrap; + // flex-wrap: wrap; justify-content: space-between; + flex-flow: row; + padding-left: 1rem; + padding-right: 1rem; + + .header-partner-section { + display: flex; + @media only screen and (min-width: @largestTabletScreen) { + align-items: center; + } + } .logo-nav-wrapper { display: flex; flex-grow: 2; + align-items: center; @media only screen and (max-width: @largestTabletScreen) { align-items: initial; justify-content: start; @@ -57,6 +68,18 @@ @media only screen and (max-width: @largestTabletScreen) { //flex-direction: initial; align-items: initial; + flex-flow: row-reverse; + } + + @media only screen and (max-width: 550px) { + flex-flow: column !important; + .logo-nav-wrapper { + flex-direction: row; + margin-bottom: 1rem; + .logo { + margin-left: 0 !important; + } + } } .tools-search-wrapper { diff --git a/theme/site/globals/site.overrides b/theme/site/globals/site.overrides index e738e4e3..dd67a80e 100644 --- a/theme/site/globals/site.overrides +++ b/theme/site/globals/site.overrides @@ -57,6 +57,13 @@ font-weight: bold; } + .logo { + a { + display: block; + padding-right: 1rem; + } + } + a { color: @white; text-decoration: underline; @@ -85,6 +92,12 @@ } } +@media only screen and (min-width: 992px) { + .hamburger-wrapper.mobile.tablet.only { + display: none; + } +} + .withSidebar { display: flex; @@ -1620,4 +1633,12 @@ b { a { text-decoration: underline !important; } +} + +.firefox-icon { + height: 20px; +} + +.mdc-linear-progress__bar-inner { + background-color: #4296B2 !important; } \ No newline at end of file diff --git a/yarn.lock b/yarn.lock index 5d7739e1..2716d62b 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1327,13 +1327,17 @@ debug "^3.1.0" lodash.once "^4.1.1" +"@eeacms/volto-blocks-form@github:eea/volto-blocks-form#0.4.1": + version "0.4.0" + resolved "https://codeload.github.com/eea/volto-blocks-form/tar.gz/4aa988c0d65f2fa7a939e632fb02b95ed6b73e37" + "@eeacms/volto-metadata-block@github:eea/volto-metadata-block#1.0.1": version "1.0.1" resolved "https://codeload.github.com/eea/volto-metadata-block/tar.gz/3623f2947ed2dc0287525c8c31af9e06a6b2fc1a" -"@eeacms/volto-object-widget@github:eea/volto-object-widget#0.1.2": +"@eeacms/volto-object-widget@github:eea/volto-object-widget#0.2.1": version "0.1.0" - resolved "https://codeload.github.com/eea/volto-object-widget/tar.gz/7ca09944fce30cce8ee141e7bd5ef3ec7be708bb" + resolved "https://codeload.github.com/eea/volto-object-widget/tar.gz/08644af193e963de1b449db7500d8ee17bb4c853" "@eeacms/volto-widget-toggle@github:eea/volto-widget-toggle#0.1.0": version "0.1.0" @@ -1753,6 +1757,50 @@ resolved "https://registry.yarnpkg.com/@mapbox/unitbezier/-/unitbezier-0.0.0.tgz#15651bd553a67b8581fb398810c98ad86a34524e" integrity sha1-FWUb1VOme4WB+zmIEMmK2Go0Uk4= +"@material/animation@^1.0.0": + version "1.0.0" + resolved "https://registry.yarnpkg.com/@material/animation/-/animation-1.0.0.tgz#dfd8575c8b031203917dc838ac0e3c0fe0f6709b" + integrity sha512-Ed5/vggn6ZhSJ87yn3ZS1d826VJNFz73jHF2bSsgRtHDoB8KCuOwQMfdgAgDa4lKDF6CDIPCKBZPKrs2ubehdw== + dependencies: + tslib "^1.9.3" + +"@material/base@^1.0.0": + version "1.0.0" + resolved "https://registry.yarnpkg.com/@material/base/-/base-1.0.0.tgz#e4ef0b22c54aa887af94f5988fb1c0cb3245beba" + integrity sha512-5dxFp46x5FA+Epg6YHLzN+5zRt9S2wR84UdvVAEJ1egea94m9UHUg7y9tAnNSN16aexRSywmzyLwPr+i8PGEYA== + dependencies: + tslib "^1.9.3" + +"@material/feature-targeting@^0.44.1": + version "0.44.1" + resolved "https://registry.yarnpkg.com/@material/feature-targeting/-/feature-targeting-0.44.1.tgz#afafc80294e5efab94bee31a187273d43d34979a" + integrity sha512-90cc7njn4aHbH9UxY8qgZth1W5JgOgcEdWdubH1t7sFkwqFxS5g3zgxSBt46TygFBVIXNZNq35Xmg80wgqO7Pg== + +"@material/linear-progress@^1.1.0": + version "1.1.0" + resolved "https://registry.yarnpkg.com/@material/linear-progress/-/linear-progress-1.1.0.tgz#559921d4274fce0131fdf146698582d292855d6a" + integrity sha512-MIK0cD/o1rTLREtAfTK3v60h7A0/wAu8/3v9dPTMlAPe+Y5gOarAizYWM3r/bp88sGO4gU8nPK0X9/daD28pNw== + dependencies: + "@material/animation" "^1.0.0" + "@material/base" "^1.0.0" + "@material/theme" "^1.1.0" + tslib "^1.9.3" + +"@material/react-linear-progress@^0.15.0": + version "0.15.0" + resolved "https://registry.yarnpkg.com/@material/react-linear-progress/-/react-linear-progress-0.15.0.tgz#2c758bbdcb2757428699a94bd15dfb2261c6a21f" + integrity sha512-RrNp+87P4nv17VHx9E0Te4DakY7O+oXE4P+dupJlb5/yxXadIVZoXVt4r4laUfUcEmanf0sHr2gPIvSeu9fjog== + dependencies: + "@material/linear-progress" "^1.1.0" + classnames "^2.2.6" + +"@material/theme@^1.1.0": + version "1.1.0" + resolved "https://registry.yarnpkg.com/@material/theme/-/theme-1.1.0.tgz#9c95dd804168c23c30589fcf09ecc5af5b3d1adc" + integrity sha512-YYUV9Rhbx4r/EMb/zoOYJUWjhXChNaLlH1rqt3vpNVyxRcxGqoVMGp5u1XALBCFiD9dACPKLIkKyRYa928nmPQ== + dependencies: + "@material/feature-targeting" "^0.44.1" + "@mrmlnc/readdir-enhanced@^2.2.1": version "2.2.1" resolved "https://registry.yarnpkg.com/@mrmlnc/readdir-enhanced/-/readdir-enhanced-2.2.1.tgz#524af240d1a360527b730475ecfa1344aa540dde" @@ -1794,17 +1842,17 @@ dependencies: "@octokit/types" "^5.0.0" -"@octokit/core@^2.4.3": - version "2.5.4" - resolved "https://registry.yarnpkg.com/@octokit/core/-/core-2.5.4.tgz#f7fbf8e4f86c5cc2497a8887ba2561ec8d358054" - integrity sha512-HCp8yKQfTITYK+Nd09MHzAlP1v3Ii/oCohv0/TW9rhSLvzb98BOVs2QmVYuloE6a3l6LsfyGIwb6Pc4ycgWlIQ== +"@octokit/core@^3.0.0": + version "3.1.2" + resolved "https://registry.yarnpkg.com/@octokit/core/-/core-3.1.2.tgz#c937d5f9621b764573068fcd2e5defcc872fd9cc" + integrity sha512-AInOFULmwOa7+NFi9F8DlDkm5qtZVmDQayi7TUgChE3yeIGPq0Y+6cAEXPexQ3Ea+uZy66hKEazR7DJyU+4wfw== dependencies: "@octokit/auth-token" "^2.4.0" "@octokit/graphql" "^4.3.1" "@octokit/request" "^5.4.0" "@octokit/types" "^5.0.0" before-after-hook "^2.1.0" - universal-user-agent "^5.0.0" + universal-user-agent "^6.0.0" "@octokit/endpoint@^6.0.1": version "6.0.5" @@ -1851,12 +1899,12 @@ "@octokit/types" "^2.0.1" deprecation "^2.3.1" -"@octokit/plugin-rest-endpoint-methods@3.8.0": - version "3.8.0" - resolved "https://registry.yarnpkg.com/@octokit/plugin-rest-endpoint-methods/-/plugin-rest-endpoint-methods-3.8.0.tgz#649fa2f2e5104b015e1f60076958d69eba281a19" - integrity sha512-LUkTgZ53adPFC/Hw6mxvAtShUtGy3zbpcfCAJMWAN7SvsStV4p6TK7TocSv0Aak4TNmDLhbShTagGhpgz9mhYw== +"@octokit/plugin-rest-endpoint-methods@4.2.0": + version "4.2.0" + resolved "https://registry.yarnpkg.com/@octokit/plugin-rest-endpoint-methods/-/plugin-rest-endpoint-methods-4.2.0.tgz#c5a0691b3aba5d8b4ef5dffd6af3649608f167ba" + integrity sha512-1/qn1q1C1hGz6W/iEDm9DoyNoG/xdFDt78E3eZ5hHeUfJTLJgyAMdj9chL/cNBHjcjd+FH5aO1x0VCqR2RE0mw== dependencies: - "@octokit/types" "^2.12.1" + "@octokit/types" "^5.5.0" deprecation "^2.3.1" "@octokit/request-error@^1.0.2": @@ -1913,17 +1961,17 @@ once "^1.4.0" universal-user-agent "^4.0.0" -"@octokit/rest@17.6.0": - version "17.6.0" - resolved "https://registry.yarnpkg.com/@octokit/rest/-/rest-17.6.0.tgz#91ba53bd3ab8f989030c8b018a8ccbcf87be0f0a" - integrity sha512-knh+4hPBA26AMXflFRupTPT3u9NcQmQzeBJl4Gcuf14Gn7dUh6Loc1ICWF0Pz18A6ElFZQt+wB9tFINSruIa+g== +"@octokit/rest@18.0.6": + version "18.0.6" + resolved "https://registry.yarnpkg.com/@octokit/rest/-/rest-18.0.6.tgz#76c274f1a68f40741a131768ef483f041e7b98b6" + integrity sha512-ES4lZBKPJMX/yUoQjAZiyFjei9pJ4lTTfb9k7OtYoUzKPDLl/M8jiHqt6qeSauyU4eZGLw0sgP1WiQl9FYeM5w== dependencies: - "@octokit/core" "^2.4.3" + "@octokit/core" "^3.0.0" "@octokit/plugin-paginate-rest" "^2.2.0" "@octokit/plugin-request-log" "^1.0.0" - "@octokit/plugin-rest-endpoint-methods" "3.8.0" + "@octokit/plugin-rest-endpoint-methods" "4.2.0" -"@octokit/types@^2.0.0", "@octokit/types@^2.0.1", "@octokit/types@^2.12.1": +"@octokit/types@^2.0.0", "@octokit/types@^2.0.1": version "2.16.2" resolved "https://registry.yarnpkg.com/@octokit/types/-/types-2.16.2.tgz#4c5f8da3c6fecf3da1811aef678fda03edac35d2" integrity sha512-O75k56TYvJ8WpAakWwYRN8Bgu60KrmX0z1KqFp1kNiFNkgW+JW+9EBKZ+S33PU6SLvbihqd+3drvPxKK68Ee8Q== @@ -1937,9 +1985,16 @@ dependencies: "@types/node" ">= 8" -"@plone/volto@github:eea/volto#8.0.0-beta.10": - version "8.0.0" - resolved "https://codeload.github.com/eea/volto/tar.gz/44821b2a613be7c23ed6d7b1cccb3c9877745d81" +"@octokit/types@^5.5.0": + version "5.5.0" + resolved "https://registry.yarnpkg.com/@octokit/types/-/types-5.5.0.tgz#e5f06e8db21246ca102aa28444cdb13ae17a139b" + integrity sha512-UZ1pErDue6bZNjYOotCNveTXArOMZQFG6hKJfOnGnulVCMcVVi7YIIuuR4WfBhjo7zgpmzn/BkPDnUXtNx+PcQ== + dependencies: + "@types/node" ">= 8" + +"@plone/volto@github:eea/volto#8.0.0-beta.11": + version "8.2.0" + resolved "https://codeload.github.com/eea/volto/tar.gz/bc0064a58536d28f3dd6fb8db17a3d5a6e515568" dependencies: "@babel/core" "7.9.6" "@babel/plugin-proposal-decorators" "7.8.3" @@ -2078,7 +2133,7 @@ redux-devtools-extension "2.13.8" redux-mock-store "1.5.4" redux-thunk "2.3.0" - release-it "13.5.8" + release-it "14.0.3" rrule "2.6.4" semantic-ui-less "2.4.1" semantic-ui-react "0.88.1" @@ -2124,10 +2179,10 @@ resolved "https://registry.yarnpkg.com/@sindresorhus/is/-/is-0.14.0.tgz#9fb3a3cf3132328151f353de4632e01e52102bea" integrity sha512-9NET910DNaIPngYnLLPeg+Ogzqsi9uM4mSboU5y6p8S5DzMTVEsJZrawi+BoDNUVBa2DhJqQYUFvMDfgU062LQ== -"@sindresorhus/is@^2.1.0": - version "2.1.1" - resolved "https://registry.yarnpkg.com/@sindresorhus/is/-/is-2.1.1.tgz#ceff6a28a5b4867c2dd4a1ba513de278ccbe8bb1" - integrity sha512-/aPsuoj/1Dw/kzhkgz+ES6TxG0zfTMGLwuK2ZG00k/iJzYHTLCE8mVU8EPqEOp/lmxPoq1C1C9RYToRKb2KEfg== +"@sindresorhus/is@^3.1.1": + version "3.1.2" + resolved "https://registry.yarnpkg.com/@sindresorhus/is/-/is-3.1.2.tgz#548650de521b344e3781fbdb0ece4aa6f729afb8" + integrity sha512-JiX9vxoKMmu8Y3Zr2RVathBL1Cdu4Nt4MuNWemt1Nc06A0RAin9c5FArkhGsyMBWfCu4zj+9b+GxtjAnE4qqLQ== "@stardust-ui/react-component-event-listener@~0.38.0": version "0.38.0" @@ -2168,7 +2223,7 @@ dependencies: defer-to-connect "^1.0.1" -"@szmarczak/http-timer@^4.0.0": +"@szmarczak/http-timer@^4.0.5": version "4.0.5" resolved "https://registry.yarnpkg.com/@szmarczak/http-timer/-/http-timer-4.0.5.tgz#bfbd50211e9dfa51ba07da58a14cdfd333205152" integrity sha512-PyRA9sm1Yayuj5OIoJ1hGt2YISX45w9WcFbh6ddT0Z/0yaFxOtGLInr4jUfU1EAFVs0Yfyfev4RNwBlUaHdlDQ== @@ -2223,13 +2278,6 @@ "@testing-library/dom" "^6.3.0" "@types/testing-library__react" "^9.1.0" -"@tinymce/tinymce-react@^3.6.0": - version "3.6.0" - resolved "https://registry.yarnpkg.com/@tinymce/tinymce-react/-/tinymce-react-3.6.0.tgz#6e33e89b7bb0240c4ffa892a8e1924688f479b4b" - integrity sha512-XSyAx9Md9+Ghl3UK0YtBQxaS2dCepqtOKTjYmBS4xTAzSu1UABd44WT84B8CUCd/bdT0fv1Pd51dSbpgJ8713w== - dependencies: - prop-types "^15.6.2" - "@types/anymatch@*": version "1.3.1" resolved "https://registry.yarnpkg.com/@types/anymatch/-/anymatch-1.3.1.tgz#336badc1beecb9dacc38bea2cf32adf627a8421a" @@ -4175,10 +4223,10 @@ cache-base@^1.0.1: union-value "^1.0.0" unset-value "^1.0.0" -cacheable-lookup@^4.1.1: - version "4.3.0" - resolved "https://registry.yarnpkg.com/cacheable-lookup/-/cacheable-lookup-4.3.0.tgz#86ff1cb38f648cc6aba28feffe008f808b403550" - integrity sha512-PTUoCeIjj2awloqyVRUL33SjquU1Qv5xuDalYY8WAzd9NnUMUivZnGsOzVsMfg2YuMsWXaXkd/hjnsVoWc/3YA== +cacheable-lookup@^5.0.3: + version "5.0.3" + resolved "https://registry.yarnpkg.com/cacheable-lookup/-/cacheable-lookup-5.0.3.tgz#049fdc59dffdd4fc285e8f4f82936591bd59fec3" + integrity sha512-W+JBqF9SWe18A72XFzN/V/CULFzPm7sBXzzR6ekkE+3tLG72wFZrBiBZhrZuDoYexop4PHJVdFAKb/Nj9+tm9w== cacheable-request@^6.0.0: version "6.1.0" @@ -4362,10 +4410,10 @@ chalk@3.0.0, chalk@^3.0.0: ansi-styles "^4.1.0" supports-color "^7.1.0" -chalk@4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.0.0.tgz#6e98081ed2d17faab615eb52ac66ec1fe6209e72" - integrity sha512-N9oWFcegS0sFr9oh1oz2d7Npos6vNoWW9HvtCg5N1KRFpUhaAhvTv5Y58g880fZaEYSNm3qDz8SU1UrGvp+n7A== +chalk@4.1.0, chalk@^4.0.0, chalk@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.0.tgz#4e14870a618d9e2edd97dd8345fd9d9dc315646a" + integrity sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A== dependencies: ansi-styles "^4.1.0" supports-color "^7.1.0" @@ -4381,14 +4429,6 @@ chalk@^1.0.0, chalk@^1.1.3: strip-ansi "^3.0.0" supports-color "^2.0.0" -chalk@^4.0.0, chalk@^4.1.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.0.tgz#4e14870a618d9e2edd97dd8345fd9d9dc315646a" - integrity sha512-qwx12AxXe2Q5xQ43Ac//I6v5aXTipYrSESdOgzrN+9XjgEpyjpKuvSGaN4qE93f7TQTlerQQ8S+EQ0EyDoVL1A== - dependencies: - ansi-styles "^4.1.0" - supports-color "^7.1.0" - change-emitter@^0.1.2: version "0.1.6" resolved "https://registry.yarnpkg.com/change-emitter/-/change-emitter-0.1.6.tgz#e8b2fe3d7f1ab7d69a32199aff91ea6931409515" @@ -4576,7 +4616,7 @@ cli-cursor@^3.1.0: dependencies: restore-cursor "^3.1.0" -cli-spinners@^2.2.0: +cli-spinners@^2.2.0, cli-spinners@^2.4.0: version "2.4.0" resolved "https://registry.yarnpkg.com/cli-spinners/-/cli-spinners-2.4.0.tgz#c6256db216b878cfba4720e719cec7cf72685d7f" integrity sha512-sJAofoarcm76ZGpuooaO0eDy8saEy+YoZBLjC4h8srt4jeBnkYeOgqxgsJQTpyt2LjI5PTfLJHSL+41Yu4fEJA== @@ -5049,16 +5089,16 @@ cosmiconfig@5.2.1, cosmiconfig@^5.0.0, cosmiconfig@^5.2.1: js-yaml "^3.13.1" parse-json "^4.0.0" -cosmiconfig@6.0.0, cosmiconfig@^6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-6.0.0.tgz#da4fee853c52f6b1e6935f41c1a2fc50bd4a9982" - integrity sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg== +cosmiconfig@7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-7.0.0.tgz#ef9b44d773959cae63ddecd122de23853b60f8d3" + integrity sha512-pondGvTuVYDk++upghXJabWzL6Kxu6f26ljFw64Swq9v6sQPUL3EUlVDV56diOjpCayKihL6hVe8exIACU4XcA== dependencies: "@types/parse-json" "^4.0.0" - import-fresh "^3.1.0" + import-fresh "^3.2.1" parse-json "^5.0.0" path-type "^4.0.0" - yaml "^1.7.2" + yaml "^1.10.0" cosmiconfig@^3.0.1, cosmiconfig@^3.1.0: version "3.1.0" @@ -5070,6 +5110,17 @@ cosmiconfig@^3.0.1, cosmiconfig@^3.1.0: parse-json "^3.0.0" require-from-string "^2.0.1" +cosmiconfig@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-6.0.0.tgz#da4fee853c52f6b1e6935f41c1a2fc50bd4a9982" + integrity sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg== + dependencies: + "@types/parse-json" "^4.0.0" + import-fresh "^3.1.0" + parse-json "^5.0.0" + path-type "^4.0.0" + yaml "^1.7.2" + coveralls@3.0.2: version "3.0.2" resolved "https://registry.yarnpkg.com/coveralls/-/coveralls-3.0.2.tgz#f5a0bcd90ca4e64e088b710fa8dda640aea4884f" @@ -5641,12 +5692,12 @@ decompress-response@^4.2.0: dependencies: mimic-response "^2.0.0" -decompress-response@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/decompress-response/-/decompress-response-5.0.0.tgz#7849396e80e3d1eba8cb2f75ef4930f76461cb0f" - integrity sha512-TLZWWybuxWgoW7Lykv+gq9xvzOsUjQ9tF09Tj6NSTYGMTCHNXzrPnD6Hi+TgZq19PyTAGH4Ll/NIM/eTGglnMw== +decompress-response@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/decompress-response/-/decompress-response-6.0.0.tgz#ca387612ddb7e104bd16d85aab00d5ecf09c66fc" + integrity sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ== dependencies: - mimic-response "^2.0.0" + mimic-response "^3.1.0" decorate-component-with-props@^1.0.2: version "1.1.0" @@ -5800,6 +5851,14 @@ deprecated-obj@1.0.1: flat "^4.1.0" lodash "^4.17.11" +deprecated-obj@2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/deprecated-obj/-/deprecated-obj-2.0.0.tgz#e6ba93a3989f6ed18d685e7d99fb8d469b4beffc" + integrity sha512-CkdywZC2rJ8RGh+y3MM1fw1EJ4oO/oNExGbRFv0AQoMS+faTd3nO7slYjkj/6t8OnIMUE+wxh6G97YHhK1ytrw== + dependencies: + flat "^5.0.2" + lodash "^4.17.20" + deprecation@^2.0.0, deprecation@^2.3.1: version "2.3.1" resolved "https://registry.yarnpkg.com/deprecation/-/deprecation-2.3.1.tgz#6368cbdb40abf3373b525ac87e4a260c3a700919" @@ -6961,10 +7020,10 @@ execa@2.1.0: signal-exit "^3.0.2" strip-final-newline "^2.0.0" -execa@4.0.0: - version "4.0.0" - resolved "https://registry.yarnpkg.com/execa/-/execa-4.0.0.tgz#7f37d6ec17f09e6b8fc53288611695b6d12b9daf" - integrity sha512-JbDUxwV3BoT5ZVXQrSVbAiaXhXUkIwvbhPIwZ0N13kX+5yCzOhUNdocxB/UQRuYOHRYYwAxKYwJYc0T4D12pDA== +execa@4.0.3, execa@^4.0.0, execa@^4.0.2: + version "4.0.3" + resolved "https://registry.yarnpkg.com/execa/-/execa-4.0.3.tgz#0a34dabbad6d66100bd6f2c576c8669403f317f2" + integrity sha512-WFDXGHckXPWZX19t1kCsXzOpqX9LWYNqn4C+HqZlk/V0imTkzJZqf87ZBhvpHaftERYknpk0fjSylnXVlVgI0A== dependencies: cross-spawn "^7.0.0" get-stream "^5.0.0" @@ -7002,21 +7061,6 @@ execa@^0.8.0: signal-exit "^3.0.0" strip-eof "^1.0.0" -execa@^4.0.0: - version "4.0.3" - resolved "https://registry.yarnpkg.com/execa/-/execa-4.0.3.tgz#0a34dabbad6d66100bd6f2c576c8669403f317f2" - integrity sha512-WFDXGHckXPWZX19t1kCsXzOpqX9LWYNqn4C+HqZlk/V0imTkzJZqf87ZBhvpHaftERYknpk0fjSylnXVlVgI0A== - dependencies: - cross-spawn "^7.0.0" - get-stream "^5.0.0" - human-signals "^1.1.1" - is-stream "^2.0.0" - merge-stream "^2.0.0" - npm-run-path "^4.0.0" - onetime "^5.1.0" - signal-exit "^3.0.2" - strip-final-newline "^2.0.0" - execall@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/execall/-/execall-1.0.0.tgz#73d0904e395b3cab0658b08d09ec25307f29bb73" @@ -7463,6 +7507,14 @@ find-up@4.1.0, find-up@^4.0.0, find-up@^4.1.0: locate-path "^5.0.0" path-exists "^4.0.0" +find-up@5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/find-up/-/find-up-5.0.0.tgz#4c92819ecb7083561e4f4a240a86be5198f536fc" + integrity sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng== + dependencies: + locate-path "^6.0.0" + path-exists "^4.0.0" + find-up@^1.0.0, find-up@^1.1.2: version "1.1.2" resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f" @@ -7533,6 +7585,11 @@ flat@^4.1.0: dependencies: is-buffer "~2.0.3" +flat@^5.0.2: + version "5.0.2" + resolved "https://registry.yarnpkg.com/flat/-/flat-5.0.2.tgz#8ca6fe332069ffa9d324c327198c598259ceb241" + integrity sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ== + flatted@^2.0.0: version "2.0.2" resolved "https://registry.yarnpkg.com/flatted/-/flatted-2.0.2.tgz#4575b21e2bcee7434aa9be662f4b7b5f9c2b5138" @@ -7870,6 +7927,13 @@ git-url-parse@11.1.2: dependencies: git-up "^4.0.0" +git-url-parse@11.2.0: + version "11.2.0" + resolved "https://registry.yarnpkg.com/git-url-parse/-/git-url-parse-11.2.0.tgz#2955fd51befd6d96ea1389bbe2ef57e8e6042b04" + integrity sha512-KPoHZg8v+plarZvto4ruIzzJLFQoRx+sUs5DQSr07By9IBKguVd+e6jwrFR6/TP6xrCJlNV1tPqLO1aREc7O2g== + dependencies: + git-up "^4.0.0" + github-build@^1.2.0: version "1.2.1" resolved "https://registry.yarnpkg.com/github-build/-/github-build-1.2.1.tgz#a00f03fb76e5fa01971ddff0e69b88978c6f2f3f" @@ -8018,10 +8082,10 @@ globby@10.0.2: merge2 "^1.2.3" slash "^3.0.0" -globby@11.0.0: - version "11.0.0" - resolved "https://registry.yarnpkg.com/globby/-/globby-11.0.0.tgz#56fd0e9f0d4f8fb0c456f1ab0dee96e1380bc154" - integrity sha512-iuehFnR3xu5wBBtm4xi0dMe92Ob87ufyu/dHwpDYfbcpYpIbrO5OnS8M1vWvrBhSGEJ3/Ecj7gnX76P8YxpPEg== +globby@11.0.1, globby@^11.0.0: + version "11.0.1" + resolved "https://registry.yarnpkg.com/globby/-/globby-11.0.1.tgz#9a2bf107a068f3ffeabc49ad702c79ede8cfd357" + integrity sha512-iH9RmgwCmUJHi2z5o2l3eTtGBtXek1OYlHrbcxOYugyHLmAsZrPj43OtHThd62Buh/Vv6VyCBD2bdyWcGNQqoQ== dependencies: array-union "^2.1.0" dir-glob "^3.0.1" @@ -8043,18 +8107,6 @@ globby@8.0.2: pify "^3.0.0" slash "^1.0.0" -globby@^11.0.0: - version "11.0.1" - resolved "https://registry.yarnpkg.com/globby/-/globby-11.0.1.tgz#9a2bf107a068f3ffeabc49ad702c79ede8cfd357" - integrity sha512-iH9RmgwCmUJHi2z5o2l3eTtGBtXek1OYlHrbcxOYugyHLmAsZrPj43OtHThd62Buh/Vv6VyCBD2bdyWcGNQqoQ== - dependencies: - array-union "^2.1.0" - dir-glob "^3.0.1" - fast-glob "^3.1.1" - ignore "^5.1.4" - merge2 "^1.3.0" - slash "^3.0.0" - globby@^6.1.0: version "6.1.0" resolved "https://registry.yarnpkg.com/globby/-/globby-6.1.0.tgz#f5a6d70e8395e21c858fb0489d64df02424d506c" @@ -8097,20 +8149,19 @@ good-listener@^1.2.2: dependencies: delegate "^3.1.2" -got@11.1.0: - version "11.1.0" - resolved "https://registry.yarnpkg.com/got/-/got-11.1.0.tgz#99c0c3404ee17592e553f9ed1c895f920f554ed8" - integrity sha512-9lZDzFe43s6HH60tSurUk04kEtssfLiIfMiY5lSE0+vVaDCmT7+0xYzzlHY5VArSiz41mQQC38LefW2KoE9erw== +got@11.6.2: + version "11.6.2" + resolved "https://registry.yarnpkg.com/got/-/got-11.6.2.tgz#79d7bb8c11df212b97f25565407a1f4ae73210ec" + integrity sha512-/21qgUePCeus29Jk7MEti8cgQUNXFSWfIevNIk4H7u1wmXNDrGPKPY6YsPY+o9CIT/a2DjCjRz0x1nM9FtS2/A== dependencies: - "@sindresorhus/is" "^2.1.0" - "@szmarczak/http-timer" "^4.0.0" + "@sindresorhus/is" "^3.1.1" + "@szmarczak/http-timer" "^4.0.5" "@types/cacheable-request" "^6.0.1" "@types/responselike" "^1.0.0" - cacheable-lookup "^4.1.1" + cacheable-lookup "^5.0.3" cacheable-request "^7.0.1" - decompress-response "^5.0.0" - get-stream "^5.0.0" - http2-wrapper "^1.0.0-beta.4.4" + decompress-response "^6.0.0" + http2-wrapper "^1.0.0-beta.5.2" lowercase-keys "^2.0.0" p-cancelable "^2.0.0" responselike "^2.0.0" @@ -8579,7 +8630,7 @@ http-signature@~1.2.0: jsprim "^1.2.2" sshpk "^1.7.0" -http2-wrapper@^1.0.0-beta.4.4: +http2-wrapper@^1.0.0-beta.5.2: version "1.0.0-beta.5.2" resolved "https://registry.yarnpkg.com/http2-wrapper/-/http2-wrapper-1.0.0-beta.5.2.tgz#8b923deb90144aea65cf834b016a340fc98556f3" integrity sha512-xYz9goEyBnC8XwXDTuC/MZ6t+MrKVQZOk4s7+PaDkwIsQd8IwqvM+0M6bA/2lvG8GHXcPdf+MejTUeO2LCPCeQ== @@ -8727,7 +8778,7 @@ import-fresh@^2.0.0: caller-path "^2.0.0" resolve-from "^3.0.0" -import-fresh@^3.0.0, import-fresh@^3.1.0: +import-fresh@^3.0.0, import-fresh@^3.1.0, import-fresh@^3.2.1: version "3.2.1" resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.2.1.tgz#633ff618506e793af5ac91bf48b72677e15cbe66" integrity sha512-6e1q1cnWP2RXD9/keSkxHScg508CdXqXWgWBaETNhyuBFz+kUZlKboh+ISK+bU++DmbHimVBrOz/zzPe0sZ3sQ== @@ -8854,21 +8905,21 @@ inquirer@7.0.4: strip-ansi "^5.1.0" through "^2.3.6" -inquirer@7.1.0: - version "7.1.0" - resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-7.1.0.tgz#1298a01859883e17c7264b82870ae1034f92dd29" - integrity sha512-5fJMWEmikSYu0nv/flMc475MhGbB7TSPd/2IpFV4I4rMklboCH2rQjYY5kKiYGHqUF9gvaambupcJFFG9dvReg== +inquirer@7.3.3, inquirer@^7.0.0: + version "7.3.3" + resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-7.3.3.tgz#04d176b2af04afc157a83fd7c100e98ee0aad003" + integrity sha512-JG3eIAj5V9CwcGvuOmoo6LB9kbAYT8HXffUl6memuszlwDC/qvFAJw49XJ5NROSFNPxp3iQg1GqkFhaY/CR0IA== dependencies: ansi-escapes "^4.2.1" - chalk "^3.0.0" + chalk "^4.1.0" cli-cursor "^3.1.0" - cli-width "^2.0.0" + cli-width "^3.0.0" external-editor "^3.0.3" figures "^3.0.0" - lodash "^4.17.15" + lodash "^4.17.19" mute-stream "0.0.8" run-async "^2.4.0" - rxjs "^6.5.3" + rxjs "^6.6.0" string-width "^4.1.0" strip-ansi "^6.0.0" through "^2.3.6" @@ -8892,25 +8943,6 @@ inquirer@^6.2.2: strip-ansi "^5.1.0" through "^2.3.6" -inquirer@^7.0.0: - version "7.3.3" - resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-7.3.3.tgz#04d176b2af04afc157a83fd7c100e98ee0aad003" - integrity sha512-JG3eIAj5V9CwcGvuOmoo6LB9kbAYT8HXffUl6memuszlwDC/qvFAJw49XJ5NROSFNPxp3iQg1GqkFhaY/CR0IA== - dependencies: - ansi-escapes "^4.2.1" - chalk "^4.1.0" - cli-cursor "^3.1.0" - cli-width "^3.0.0" - external-editor "^3.0.3" - figures "^3.0.0" - lodash "^4.17.19" - mute-stream "0.0.8" - run-async "^2.4.0" - rxjs "^6.6.0" - string-width "^4.1.0" - strip-ansi "^6.0.0" - through "^2.3.6" - internal-ip@^4.3.0: version "4.3.0" resolved "https://registry.yarnpkg.com/internal-ip/-/internal-ip-4.3.0.tgz#845452baad9d2ca3b69c635a137acb9a0dad0907" @@ -10743,6 +10775,13 @@ locate-path@^5.0.0: dependencies: p-locate "^4.1.0" +locate-path@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-6.0.0.tgz#55321eb309febbc59c4801d931a72452a681d286" + integrity sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw== + dependencies: + p-locate "^5.0.0" + lodash-move@1.1.1: version "1.1.1" resolved "https://registry.yarnpkg.com/lodash-move/-/lodash-move-1.1.1.tgz#59f76e0f1ac57e6d8683f531bec07c5b6ea4e348" @@ -10877,7 +10916,7 @@ lodash@4.17.19: resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.19.tgz#e48ddedbe30b3321783c5b4301fbd353bc1e4a4b" integrity sha512-JNvd8XER9GQX0v2qJgsaN/mzFCNA5BRe/j8JN9d+tWyGLSodKQHKFicdwNYzWwI3wjRnaKPsGj1XkBjx/F96DQ== -"lodash@>=3.5 <5", lodash@^4.0.1, lodash@^4.1.1, lodash@^4.17.10, lodash@^4.17.11, lodash@^4.17.12, lodash@^4.17.13, lodash@^4.17.14, lodash@^4.17.15, lodash@^4.17.19, lodash@^4.17.4, lodash@^4.17.5, lodash@^4.6.1: +lodash@4.17.20, "lodash@>=3.5 <5", lodash@^4.0.1, lodash@^4.1.1, lodash@^4.17.10, lodash@^4.17.11, lodash@^4.17.12, lodash@^4.17.13, lodash@^4.17.14, lodash@^4.17.15, lodash@^4.17.19, lodash@^4.17.20, lodash@^4.17.4, lodash@^4.17.5, lodash@^4.6.1: version "4.17.20" resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.20.tgz#b44a9b6297bcb698f1c51a3545a2b3b368d59c52" integrity sha512-PlhdFcillOINfeV7Ni6oF1TAEayyZBoZ8bcshTHqOYJYlrqzRK5hagpagky5o4HfCzzd1TRkXPMFq6cKk9rGmA== @@ -10908,6 +10947,13 @@ log-symbols@^2.0.0, log-symbols@^2.2.0: dependencies: chalk "^2.0.1" +log-symbols@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-4.0.0.tgz#69b3cc46d20f448eccdb75ea1fa733d9e821c920" + integrity sha512-FN8JBzLx6CzeMrB0tg6pqlGU1wCrXW+ZXGH481kfsBqer0hToTIiHdjH4Mq8xJUbvATujKCvaREGWpGUionraA== + dependencies: + chalk "^4.0.0" + log-update@^2.3.0: version "2.3.0" resolved "https://registry.yarnpkg.com/log-update/-/log-update-2.3.0.tgz#88328fd7d1ce7938b29283746f0b1bc126b24708" @@ -11371,6 +11417,11 @@ mimic-response@^2.0.0: resolved "https://registry.yarnpkg.com/mimic-response/-/mimic-response-2.1.0.tgz#d13763d35f613d09ec37ebb30bac0469c0ee8f43" integrity sha512-wXqjST+SLt7R009ySCglWBCFpjUygmCIfD790/kVbiGmUgfYGuB14PiTd5DwVxSV4NcYHjzMkoj5LjQZwTQLEA== +mimic-response@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/mimic-response/-/mimic-response-3.1.0.tgz#2d1d59af9c1b129815accc2c46a022a5ce1fa3c9" + integrity sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ== + min-indent@^1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/min-indent/-/min-indent-1.0.1.tgz#a63f681673b30571fbe8bc25686ae746eefa9869" @@ -12143,16 +12194,16 @@ ora@4.0.3: strip-ansi "^6.0.0" wcwidth "^1.0.1" -ora@4.0.4: - version "4.0.4" - resolved "https://registry.yarnpkg.com/ora/-/ora-4.0.4.tgz#e8da697cc5b6a47266655bf68e0fb588d29a545d" - integrity sha512-77iGeVU1cIdRhgFzCK8aw1fbtT1B/iZAvWjS+l/o1x0RShMgxHUZaD2yDpWsNCPwXg9z1ZA78Kbdvr8kBmG/Ww== +ora@5.1.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/ora/-/ora-5.1.0.tgz#b188cf8cd2d4d9b13fd25383bc3e5cba352c94f8" + integrity sha512-9tXIMPvjZ7hPTbk8DFq1f7Kow/HU/pQYB60JbNq+QnGwcyhWVZaQ4hM9zQDEsPxw/muLpgiHSaumUZxCAmod/w== dependencies: - chalk "^3.0.0" + chalk "^4.1.0" cli-cursor "^3.1.0" - cli-spinners "^2.2.0" + cli-spinners "^2.4.0" is-interactive "^1.0.0" - log-symbols "^3.0.0" + log-symbols "^4.0.0" mute-stream "0.0.8" strip-ansi "^6.0.0" wcwidth "^1.0.1" @@ -12191,6 +12242,14 @@ os-name@3.1.0, os-name@^3.1.0: macos-release "^2.2.0" windows-release "^3.1.0" +os-name@4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/os-name/-/os-name-4.0.0.tgz#6c05c09c41c15848ea74658d12c9606f0f286599" + integrity sha512-caABzDdJMbtykt7GmSogEat3faTKQhmZf0BS5l/pZGmP0vPWQjXWqOhbLyK+b6j2/DQPmEvYdzLXJXXLJNVDNg== + dependencies: + macos-release "^2.2.0" + windows-release "^4.0.0" + os-tmpdir@^1.0.1, os-tmpdir@~1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274" @@ -12257,6 +12316,13 @@ p-limit@^2.0.0, p-limit@^2.2.0, p-limit@^2.3.0: dependencies: p-try "^2.0.0" +p-limit@^3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-3.0.2.tgz#1664e010af3cadc681baafd3e2a437be7b0fb5fe" + integrity sha512-iwqZSOoWIW+Ew4kAGUlN16J4M7OB3ysMLSZtnhmqx7njIHFPlxWBX8xo3lVTyFVq6mI/lL9qt2IsN1sHwaxJkg== + dependencies: + p-try "^2.0.0" + p-locate@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" @@ -12278,6 +12344,13 @@ p-locate@^4.1.0: dependencies: p-limit "^2.2.0" +p-locate@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-5.0.0.tgz#83c8315c6785005e3bd021839411c9e110e6d834" + integrity sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw== + dependencies: + p-limit "^3.0.2" + p-map@^2.0.0: version "2.1.0" resolved "https://registry.yarnpkg.com/p-map/-/p-map-2.1.0.tgz#310928feef9c9ecc65b68b17693018a665cea175" @@ -12420,14 +12493,14 @@ parse-glob@^3.0.4: is-extglob "^1.0.0" is-glob "^2.0.0" -parse-json@5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-5.0.0.tgz#73e5114c986d143efa3712d4ea24db9a4266f60f" - integrity sha512-OOY5b7PAEFV0E2Fir1KOkxchnZNCdowAJgQ5NuxjpBKTRP3pQhwkrkxqQjeoKJ+fO7bCpmIZaogI4eZGDMEGOw== +parse-json@5.1.0, parse-json@^5.0.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-5.1.0.tgz#f96088cdf24a8faa9aea9a009f2d9d942c999646" + integrity sha512-+mi/lmVVNKFNVyLXV31ERiy2CY5E1/F6QtJFEzoChPRwwngMNXRDQ9GJ5WdE2Z2P4AujsOi0/+2qHID68KwfIQ== dependencies: "@babel/code-frame" "^7.0.0" error-ex "^1.3.1" - json-parse-better-errors "^1.0.1" + json-parse-even-better-errors "^2.3.0" lines-and-columns "^1.1.6" parse-json@^2.2.0: @@ -12452,16 +12525,6 @@ parse-json@^4.0.0: error-ex "^1.3.1" json-parse-better-errors "^1.0.1" -parse-json@^5.0.0: - version "5.1.0" - resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-5.1.0.tgz#f96088cdf24a8faa9aea9a009f2d9d942c999646" - integrity sha512-+mi/lmVVNKFNVyLXV31ERiy2CY5E1/F6QtJFEzoChPRwwngMNXRDQ9GJ5WdE2Z2P4AujsOi0/+2qHID68KwfIQ== - dependencies: - "@babel/code-frame" "^7.0.0" - error-ex "^1.3.1" - json-parse-even-better-errors "^2.3.0" - lines-and-columns "^1.1.6" - parse-passwd@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/parse-passwd/-/parse-passwd-1.0.0.tgz#6d5b934a456993b23d37f40a382d6f1666a8e5c6" @@ -15064,42 +15127,39 @@ relateurl@^0.2.7: resolved "https://registry.yarnpkg.com/relateurl/-/relateurl-0.2.7.tgz#54dbf377e51440aca90a4cd274600d3ff2d888a9" integrity sha1-VNvzd+UUQKypCkzSdGANP/LYiKk= -release-it@13.5.8: - version "13.5.8" - resolved "https://registry.yarnpkg.com/release-it/-/release-it-13.5.8.tgz#f7a30cc7863c9a24100d7c8c9d0f762dd0ec4551" - integrity sha512-5CNuQgkXWcskAediHpnVaU2sOT+27tOeLz8+SXsPHFrdkaCfRKVL1Isekp4AylWmN3sbx2K+cI7Dg6RwtLSYYg== +release-it@14.0.3: + version "14.0.3" + resolved "https://registry.yarnpkg.com/release-it/-/release-it-14.0.3.tgz#3c96b9d8a53464e3067a76cff6389dd21675eb05" + integrity sha512-C/gJJqr4csU6OkhMJZlXnbPR+xgPlp2aO2BWJl5MIj8UPTavSYImwUkAXF2qZUknBE7ArfKVXkY8qUNZ31IyCA== dependencies: "@iarna/toml" "2.2.5" - "@octokit/rest" "17.6.0" + "@octokit/rest" "18.0.6" async-retry "1.3.1" - chalk "4.0.0" - cosmiconfig "6.0.0" + chalk "4.1.0" + cosmiconfig "7.0.0" debug "4.1.1" - deprecated-obj "1.0.1" - detect-repo-changelog "1.0.1" - execa "4.0.0" - find-up "4.1.0" + deprecated-obj "2.0.0" + execa "4.0.3" + find-up "5.0.0" form-data "3.0.0" - git-url-parse "11.1.2" - globby "11.0.0" - got "11.1.0" + git-url-parse "11.2.0" + globby "11.0.1" + got "11.6.2" import-cwd "3.0.0" - inquirer "7.1.0" + inquirer "7.3.3" is-ci "2.0.0" - lodash "4.17.15" + lodash "4.17.20" mime-types "2.1.27" - ora "4.0.4" - os-name "3.1.0" - parse-json "5.0.0" + ora "5.1.0" + os-name "4.0.0" + parse-json "5.1.0" semver "7.3.2" shelljs "0.8.4" - supports-color "7.1.0" - update-notifier "4.1.0" + update-notifier "4.1.1" url-join "4.0.1" - uuid "8.0.0" - window-size "1.1.1" - yaml "1.9.2" - yargs-parser "18.1.3" + uuid "8.3.0" + yaml "1.10.0" + yargs-parser "20.0.0" release-it@^12.4.3: version "12.6.3" @@ -15980,18 +16040,18 @@ slash@^3.0.0: resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634" integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q== -slate-history@^0.58.4: - version "0.58.4" - resolved "https://registry.yarnpkg.com/slate-history/-/slate-history-0.58.4.tgz#f24f4745f192e8eb16975037536bdc22f6d1c03b" - integrity sha512-QWmVvB02R+Z+I8sC7Hb+27Zqtm1vDt9kulHjmqRk8ixPp7052S04q4WEjNsk0StrgmEOEd+POvzNGfOYELXitw== +slate-history@^0.59: + version "0.59.0" + resolved "https://registry.yarnpkg.com/slate-history/-/slate-history-0.59.0.tgz#3c5ecbe8893ce2ae9523068ccc17c62d52b24a1a" + integrity sha512-LBaVmxA7QKr5faDUt0rjgFH4TwAslyl4rrltpM6PVZYeJ301KkpUTqZf83asDjwgt5pl9nEx4huKL7IlX+rZfA== dependencies: immer "^5.0.0" is-plain-object "^3.0.0" -slate-hyperscript@^0.58.4: - version "0.58.4" - resolved "https://registry.yarnpkg.com/slate-hyperscript/-/slate-hyperscript-0.58.4.tgz#430b2fc93e6a04808b9ed18414f0a9fdbc8fec79" - integrity sha512-Ix+oSvqiJ6rBsO5Bh+0n3d4+bGl8+/Bj7okwKnQA9A4hj9x1K/5+wrEm8ivO9mQP5j3ZHO4bGxt2RWxROSp93Q== +slate-hyperscript@^0.59: + version "0.59.0" + resolved "https://registry.yarnpkg.com/slate-hyperscript/-/slate-hyperscript-0.59.0.tgz#3bab0c418854b3e26530064c142b8a64b87dc7a8" + integrity sha512-HvZLA5RSAs27ZznD2r5sy2RP114K7+I/jOt3glFtQLFKEptxsIFTgTsEyxMhD6864tOPqs56m6IyA0tX/jhzjA== dependencies: is-plain-object "^3.0.0" @@ -16000,10 +16060,10 @@ slate-plain-serializer@0.7.13: resolved "https://registry.yarnpkg.com/slate-plain-serializer/-/slate-plain-serializer-0.7.13.tgz#6de8f5c645dd749f1b2e4426c20de74bfd213adf" integrity sha512-TtrlaslxQBEMV0LYdf3s7VAbTxRPe1xaW10WNNGAzGA855/0RhkaHjKkQiRjHv5rvbRleVf7Nxr9fH+4uErfxQ== -slate-react@^0.58.4: - version "0.58.4" - resolved "https://registry.yarnpkg.com/slate-react/-/slate-react-0.58.4.tgz#ecde34dd322af8413c2f23f0f0a577fed2422f46" - integrity sha512-3JXWHVPmYrR/EMcH1qtmwXZtYxxCtuokQg+r/4wD1Ab9J3zRmW4UGLoaRP9/uQrZOAOvr8mMh4IgmrxV2dQskw== +slate-react@^0.59: + version "0.59.0" + resolved "https://registry.yarnpkg.com/slate-react/-/slate-react-0.59.0.tgz#c8043dce7ea71279f314d9951c32e4f548b1ea0b" + integrity sha512-Fx5vfTi0s1fY5PaXzPH8uA9mW8aevVVYrGGvqX/k363tlPDnQSs/QTibIyFl1Y3MPJ+GdocoyOGjAaZMUIXfIg== dependencies: "@types/is-hotkey" "^0.1.1" "@types/lodash" "^4.14.149" @@ -16013,10 +16073,10 @@ slate-react@^0.58.4: lodash "^4.17.4" scroll-into-view-if-needed "^2.2.20" -slate@^0.58.4: - version "0.58.4" - resolved "https://registry.yarnpkg.com/slate/-/slate-0.58.4.tgz#4259387e632b45b00cf88bcecf5570d7d16ddd8b" - integrity sha512-XxKwNJgCMf7S2sDT8CVJy0zYm95MiYorJo9Hah05zKjItrw0VVeCc2BGKDZSlNGcaIfM3xcfFUN7XE+c8ehAbA== +slate@^0.59: + version "0.59.0" + resolved "https://registry.yarnpkg.com/slate/-/slate-0.59.0.tgz#3169daf2f036e84aa149f60e0d12ef2fc4c0839e" + integrity sha512-M4UTMkXExxuq8tCD+knn7BtV2pmY8pepay++EF59rmg/v4RB6X1gNzA0xP3aw2rqYl8TmWdOBdy9InFrm3WyXw== dependencies: "@types/esrever" "^0.2.0" esrever "^0.2.0" @@ -17332,7 +17392,7 @@ tryer@^1.0.1: resolved "https://registry.yarnpkg.com/tryer/-/tryer-1.0.1.tgz#f2c85406800b9b0f74c9f7465b81eaad241252f8" integrity sha512-c3zayb8/kWWpycWYg87P71E1S1ZL6b6IJxfb5fvsUgsf0S2MVGaDhDXXjDMpdCpfWXqptc+4mXwmiy1ypXqRAA== -tslib@^1.10.0, tslib@^1.9.0: +tslib@^1.10.0, tslib@^1.9.0, tslib@^1.9.3: version "1.13.0" resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.13.0.tgz#c881e13cc7015894ed914862d276436fa9a47043" integrity sha512-i/6DQjL8Xf3be4K/E6Wgpekn5Qasl1usyw++dAA35Ue5orEn65VIxOA+YvNNl9HV3qv70T7CNwjODHZrLwvd1Q== @@ -17641,13 +17701,6 @@ universal-user-agent@^4.0.0: dependencies: os-name "^3.1.0" -universal-user-agent@^5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/universal-user-agent/-/universal-user-agent-5.0.0.tgz#a3182aa758069bf0e79952570ca757de3579c1d9" - integrity sha512-B5TPtzZleXyPrUMKCpEHFmVhMN6EhmJYjG5PQna9s7mXeSqGTLap4OpqLl5FCEFUI3UBmllkETwKf/db66Y54Q== - dependencies: - os-name "^3.1.0" - universal-user-agent@^6.0.0: version "6.0.0" resolved "https://registry.yarnpkg.com/universal-user-agent/-/universal-user-agent-6.0.0.tgz#3381f8503b251c0d9cd21bc1de939ec9df5480ee" @@ -17710,6 +17763,25 @@ update-notifier@4.1.0: semver-diff "^3.1.1" xdg-basedir "^4.0.0" +update-notifier@4.1.1: + version "4.1.1" + resolved "https://registry.yarnpkg.com/update-notifier/-/update-notifier-4.1.1.tgz#895fc8562bbe666179500f9f2cebac4f26323746" + integrity sha512-9y+Kds0+LoLG6yN802wVXoIfxYEwh3FlZwzMwpCZp62S2i1/Jzeqb9Eeeju3NSHccGGasfGlK5/vEHbAifYRDg== + dependencies: + boxen "^4.2.0" + chalk "^3.0.0" + configstore "^5.0.1" + has-yarn "^2.1.0" + import-lazy "^2.1.0" + is-ci "^2.0.0" + is-installed-globally "^0.3.1" + is-npm "^4.0.0" + is-yarn-global "^0.3.0" + latest-version "^5.0.0" + pupa "^2.0.1" + semver-diff "^3.1.1" + xdg-basedir "^4.0.0" + update-notifier@^2.2.0: version "2.5.0" resolved "https://registry.yarnpkg.com/update-notifier/-/update-notifier-2.5.0.tgz#d0744593e13f161e406acb1d9408b72cad08aff6" @@ -17866,10 +17938,10 @@ uuid@7.0.1: resolved "https://registry.yarnpkg.com/uuid/-/uuid-7.0.1.tgz#95ed6ff3d8c881cbf85f0f05cc3915ef994818ef" integrity sha512-yqjRXZzSJm9Dbl84H2VDHpM3zMjzSJQ+hn6C4zqd5ilW+7P4ZmLEEqwho9LjP+tGuZlF4xrHQXT0h9QZUS/pWA== -uuid@8.0.0: - version "8.0.0" - resolved "https://registry.yarnpkg.com/uuid/-/uuid-8.0.0.tgz#bc6ccf91b5ff0ac07bbcdbf1c7c4e150db4dbb6c" - integrity sha512-jOXGuXZAWdsTH7eZLtyXMqUb9EcWMGZNbL9YcGBJl4MH4nrxHmZJhEHvyLFrkxo+28uLb/NYRcStH48fnD0Vzw== +uuid@8.3.0: + version "8.3.0" + resolved "https://registry.yarnpkg.com/uuid/-/uuid-8.3.0.tgz#ab738085ca22dc9a8c92725e459b1d507df5d6ea" + integrity sha512-fX6Z5o4m6XsXBdli9g7DtWgAx+osMsRRZFKma1mIUsLCz6vRvv+pz5VNbyu9UEDzpMWulZfvpgb/cmDXVulYFQ== uuid@^3.0.1, uuid@^3.3.2: version "3.4.0" @@ -18408,6 +18480,13 @@ windows-release@^3.1.0: dependencies: execa "^1.0.0" +windows-release@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/windows-release/-/windows-release-4.0.0.tgz#4725ec70217d1bf6e02c7772413b29cdde9ec377" + integrity sha512-OxmV4wzDKB1x7AZaZgXMVsdJ1qER1ed83ZrTYd5Bwq2HfJVg3DJS8nqlAG4sMoJ7mu8cuRmLEYyU13BKwctRAg== + dependencies: + execa "^4.0.2" + winston@0.8.x: version "0.8.3" resolved "https://registry.yarnpkg.com/winston/-/winston-0.8.3.tgz#64b6abf4cd01adcaefd5009393b1d8e8bec19db0" @@ -18615,14 +18694,7 @@ yallist@^4.0.0: resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== -yaml@1.9.2: - version "1.9.2" - resolved "https://registry.yarnpkg.com/yaml/-/yaml-1.9.2.tgz#f0cfa865f003ab707663e4f04b3956957ea564ed" - integrity sha512-HPT7cGGI0DuRcsO51qC1j9O16Dh1mZ2bnXwsi0jrSpsLz0WxOLSLXfkABVl6bZO629py3CU+OMJtpNHDLB97kg== - dependencies: - "@babel/runtime" "^7.9.2" - -yaml@^1.7.2: +yaml@1.10.0, yaml@^1.10.0, yaml@^1.7.2: version "1.10.0" resolved "https://registry.yarnpkg.com/yaml/-/yaml-1.10.0.tgz#3b593add944876077d4d683fee01081bd9fff31e" integrity sha512-yr2icI4glYaNG+KWONODapy2/jDdMSDnrONSjblABjD9B4Z5LgiircSt8m8sRZFNi08kG9Sm0uSHtEmP3zaEGg== @@ -18635,13 +18707,10 @@ yargs-parser@17.0.0: camelcase "^5.0.0" decamelize "^1.2.0" -yargs-parser@18.1.3, yargs-parser@^18.1.3: - version "18.1.3" - resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-18.1.3.tgz#be68c4975c6b2abf469236b0c870362fab09a7b0" - integrity sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ== - dependencies: - camelcase "^5.0.0" - decamelize "^1.2.0" +yargs-parser@20.0.0: + version "20.0.0" + resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-20.0.0.tgz#c65a1daaa977ad63cebdd52159147b789a4e19a9" + integrity sha512-8eblPHTL7ZWRkyjIZJjnGf+TijiKJSwA24svzLRVvtgoi/RZiKa9fFQTrlx0OKLnyHSdt/enrdadji6WFfESVA== yargs-parser@^11.1.1: version "11.1.1" @@ -18659,6 +18728,14 @@ yargs-parser@^13.1.2: camelcase "^5.0.0" decamelize "^1.2.0" +yargs-parser@^18.1.3: + version "18.1.3" + resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-18.1.3.tgz#be68c4975c6b2abf469236b0c870362fab09a7b0" + integrity sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ== + dependencies: + camelcase "^5.0.0" + decamelize "^1.2.0" + yargs@12.0.5: version "12.0.5" resolved "https://registry.yarnpkg.com/yargs/-/yargs-12.0.5.tgz#05f5997b609647b64f66b81e3b4b10a368e7ad13"