@@ -403,7 +404,8 @@ class EditComponent extends Component {
placeholder={this.props.intl.formatMessage(messages.title)}
blockStyleFn={() => 'title-editor'}
onUpArrow={() => {
- const selectionState = this.state.titleEditorState.getSelection();
+ const selectionState =
+ this.state.titleEditorState.getSelection();
const { titleEditorState } = this.state;
if (
titleEditorState
@@ -419,7 +421,8 @@ class EditComponent extends Component {
}
}}
onDownArrow={() => {
- const selectionState = this.state.titleEditorState.getSelection();
+ const selectionState =
+ this.state.titleEditorState.getSelection();
const { titleEditorState } = this.state;
if (
titleEditorState
@@ -448,7 +451,8 @@ class EditComponent extends Component {
)}
blockStyleFn={() => 'description-editor'}
onUpArrow={() => {
- const selectionState = this.state.descriptionEditorState.getSelection();
+ const selectionState =
+ this.state.descriptionEditorState.getSelection();
const currentCursorPosition = selectionState.getStartOffset();
if (currentCursorPosition === 0) {
@@ -457,7 +461,8 @@ class EditComponent extends Component {
}
}}
onDownArrow={() => {
- const selectionState = this.state.descriptionEditorState.getSelection();
+ const selectionState =
+ this.state.descriptionEditorState.getSelection();
const { descriptionEditorState } = this.state;
const currentCursorPosition = selectionState.getStartOffset();
const blockLength = descriptionEditorState
diff --git a/src/customizations/volto/components/manage/Blocks/Listing/withQuerystringResults.jsx b/src/customizations/volto/components/manage/Blocks/Listing/withQuerystringResults.jsx
index d23b1c8ac..819d187c5 100644
--- a/src/customizations/volto/components/manage/Blocks/Listing/withQuerystringResults.jsx
+++ b/src/customizations/volto/components/manage/Blocks/Listing/withQuerystringResults.jsx
@@ -117,19 +117,19 @@ export default function withQuerystringResults(WrappedComponent) {
const totalPages = showAsFolderListing
? Math.ceil(content.items_total / b_size)
: showAsQueryListing
- ? Math.ceil(querystringResults[subrequestID].total / b_size)
- : 0;
+ ? Math.ceil(querystringResults[subrequestID].total / b_size)
+ : 0;
const prevBatch = showAsFolderListing
? content.batching?.prev
: showAsQueryListing
- ? querystringResults[subrequestID].batching?.prev
- : null;
+ ? querystringResults[subrequestID].batching?.prev
+ : null;
const nextBatch = showAsFolderListing
? content.batching?.next
: showAsQueryListing
- ? querystringResults[subrequestID].batching?.next
- : null;
+ ? querystringResults[subrequestID].batching?.next
+ : null;
function handleContentPaginationChange(e, { activePage }) {
!isEditMode && listingRef.current.scrollIntoView({ behavior: 'smooth' });
diff --git a/src/customizations/volto/components/manage/Blocks/Search/components/CheckboxFacet.jsx b/src/customizations/volto/components/manage/Blocks/Search/components/CheckboxFacet.jsx
index 54d25bc61..82e3cbb95 100644
--- a/src/customizations/volto/components/manage/Blocks/Search/components/CheckboxFacet.jsx
+++ b/src/customizations/volto/components/manage/Blocks/Search/components/CheckboxFacet.jsx
@@ -45,8 +45,8 @@ const CheckboxFacet = (props) => {
...(target.checked ? [value] : []),
]
: target.checked
- ? value
- : null,
+ ? value
+ : null,
);
}}
/>
diff --git a/src/customizations/volto/components/manage/Blocks/Search/components/FilterList.jsx b/src/customizations/volto/components/manage/Blocks/Search/components/FilterList.jsx
index b3bb796ef..44e1fd74d 100644
--- a/src/customizations/volto/components/manage/Blocks/Search/components/FilterList.jsx
+++ b/src/customizations/volto/components/manage/Blocks/Search/components/FilterList.jsx
@@ -30,23 +30,20 @@ const messages = defineMessages({
*/
const FilterList = (props) => {
const { data = {}, facets = {}, setFacets, isEditMode, intl } = props;
- const definedFacets = data.facets || [];
const [isOpened, setIsOpened] = React.useState(false);
- const totalFilters = useMemo(
- () =>
- definedFacets.filter(
- ({ field, type }) =>
- field &&
- Object.keys(facets).includes(field.value) &&
- (type !== 'toggleFacet'
- ? !isEmpty(facets[field.value])
- : facets[field.value]),
- ).length,
- [definedFacets, facets],
- );
- const {
- types: facetWidgetTypes,
- } = config.blocks.blocksConfig.search.extensions.facetWidgets;
+ const totalFilters = useMemo(() => {
+ const definedFacets = data.facets || [];
+ return definedFacets.filter(
+ ({ field, type }) =>
+ field &&
+ Object.keys(facets).includes(field.value) &&
+ (type !== 'toggleFacet'
+ ? !isEmpty(facets[field.value])
+ : facets[field.value]),
+ ).length;
+ }, [data.facets, facets]);
+ const { types: facetWidgetTypes } =
+ config.blocks.blocksConfig.search.extensions.facetWidgets;
const closeFilters = () => setIsOpened(false);
const ref = useRef();
useClickOutside(ref, closeFilters);
@@ -85,16 +82,14 @@ const FilterList = (props) => {
'bg-white': isOpened,
'bg-transparent': !isOpened,
})}
- role="region"
aria-labelledby="headingAccordion"
aria-expanded={isOpened}
aria-hidden={!isOpened}
>
{data.facets?.map((facetSettings, i) => {
- const {
- filterListComponent: FilterListComponent,
- } = resolveExtension('type', facetWidgetTypes, facetSettings);
+ const { filterListComponent: FilterListComponent } =
+ resolveExtension('type', facetWidgetTypes, facetSettings);
const facet = facetSettings?.field?.value;
if (!facet) return null;
diff --git a/src/customizations/volto/components/manage/Blocks/Search/components/ToggleFacetFilterListEntry.jsx b/src/customizations/volto/components/manage/Blocks/Search/components/ToggleFacetFilterListEntry.jsx
index a4a8e133f..e691ca702 100644
--- a/src/customizations/volto/components/manage/Blocks/Search/components/ToggleFacetFilterListEntry.jsx
+++ b/src/customizations/volto/components/manage/Blocks/Search/components/ToggleFacetFilterListEntry.jsx
@@ -18,15 +18,8 @@ const messages = defineMessages({
});
function ToggleFacetFilterListEntry(props) {
- const {
- facet,
- isEditMode,
- setFacets,
- facets,
- intl,
- data,
- facetSettings,
- } = props;
+ const { facet, isEditMode, setFacets, facets, intl, data, facetSettings } =
+ props;
const entrySettings = useMemo(() => {
return data.facets?.find((f) => f?.field?.value === facet)?.field;
}, [data, facet]);
diff --git a/src/customizations/volto/components/manage/Diff/DiffField.jsx b/src/customizations/volto/components/manage/Diff/DiffField.jsx
index 8f1cecfd6..9d06231b4 100644
--- a/src/customizations/volto/components/manage/Diff/DiffField.jsx
+++ b/src/customizations/volto/components/manage/Diff/DiffField.jsx
@@ -19,13 +19,6 @@ import {
blockIsNotEmptyPlaceholder,
SSRRenderHtml,
} from 'design-comuni-plone-theme/helpers';
-import {
- getBaseUrl,
- getBlocksFieldname,
- getBlocksLayoutFieldname,
- hasBlocksData,
-} from '@plone/volto/helpers';
-import content from '../../../../../../omelette/src/reducers/content/content';
/**
* Enhanced diff words utility
@@ -157,8 +150,8 @@ const DiffField = ({
schema?.type === 'boolean'
? booleanMapping[!!one]
: schema?.widget === 'json'
- ? contentOne
- : one,
+ ? contentOne
+ : one,
schema?.widget ??
(schema?.type === 'object' && field.includes('image')
? field
diff --git a/src/customizations/volto/components/manage/Sidebar/ObjectBrowserBody.jsx b/src/customizations/volto/components/manage/Sidebar/ObjectBrowserBody.jsx
index 2730b2cd7..47cbb343b 100644
--- a/src/customizations/volto/components/manage/Sidebar/ObjectBrowserBody.jsx
+++ b/src/customizations/volto/components/manage/Sidebar/ObjectBrowserBody.jsx
@@ -114,27 +114,27 @@ class ObjectBrowserBody extends Component {
this.props.mode === 'multiple'
? '/'
: this.props.mode === 'image' && this.props.data?.url
- ? getParentURL(this.props.data.url)
- : '/',
+ ? getParentURL(this.props.data.url)
+ : '/',
currentLinkFolder:
this.props.mode === 'multiple'
? '/'
: this.props.mode === 'link' && this.props.data?.href
- ? getParentURL(this.props.data.href)
- : '/',
+ ? getParentURL(this.props.data.href)
+ : '/',
parentFolder: '',
selectedImage:
this.props.mode === 'multiple'
? ''
: this.props.mode === 'image' && this.props.data?.url
- ? flattenToAppURL(this.props.data.url)
- : '',
+ ? flattenToAppURL(this.props.data.url)
+ : '',
selectedHref:
this.props.mode === 'multiple'
? ''
: this.props.mode === 'link' && this.props.data?.href
- ? flattenToAppURL(this.props.data.href)
- : '',
+ ? flattenToAppURL(this.props.data.href)
+ : '',
showSearchInput: false,
// In image mode, the searchable types default to the image types which
// can be overridden with the property if specified.
@@ -161,8 +161,8 @@ class ObjectBrowserBody extends Component {
mode === 'multiple'
? ''
: mode === 'image'
- ? this.state.selectedImage
- : this.state.selectedHref;
+ ? this.state.selectedImage
+ : this.state.selectedHref;
if (currentSelected && isInternalURL(currentSelected)) {
this.props.searchContent(
getParentURL(currentSelected),
diff --git a/src/customizations/volto/components/manage/Widgets/DatetimeWidget.jsx b/src/customizations/volto/components/manage/Widgets/DatetimeWidget.jsx
index 029845a14..fbb15bdbf 100644
--- a/src/customizations/volto/components/manage/Widgets/DatetimeWidget.jsx
+++ b/src/customizations/volto/components/manage/Widgets/DatetimeWidget.jsx
@@ -4,7 +4,7 @@
*
* https://github.com/plone/volto/blob/16.x.x/src/components/manage/Widgets/DatetimeWidget.jsx
* https://github.com/plone/volto/blob/7ec45f7b4d46233236c651f39a951bad8e389184/src/components/manage/Widgets/DatetimeWidget.jsx
- *
+ *
* CUSTOMIZATIONS:
* - accept calendar `openDirection` prop and use it in SingleDatePicker,
* default to down if no openDirection is given
@@ -190,14 +190,8 @@ export class DatetimeWidgetComponent extends Component {
onFocusChange = ({ focused }) => this.setState({ focused });
render() {
- const {
- id,
- resettable,
- intl,
- reactDates,
- widgetOptions,
- lang,
- } = this.props;
+ const { id, resettable, intl, reactDates, widgetOptions, lang } =
+ this.props;
const noPastDates =
this.props.noPastDates || widgetOptions?.pattern_options?.noPastDates;
const moment = this.props.moment.default;
@@ -313,4 +307,4 @@ export default compose(
lang: state.intl.locale,
})),
injectIntl,
-)(DatetimeWidgetComponent);
\ No newline at end of file
+)(DatetimeWidgetComponent);
diff --git a/src/customizations/volto/components/manage/Widgets/ObjectBrowserWidget.jsx b/src/customizations/volto/components/manage/Widgets/ObjectBrowserWidget.jsx
index 65dfc725f..f66382de7 100644
--- a/src/customizations/volto/components/manage/Widgets/ObjectBrowserWidget.jsx
+++ b/src/customizations/volto/components/manage/Widgets/ObjectBrowserWidget.jsx
@@ -321,15 +321,8 @@ export class ObjectBrowserWidgetComponent extends Component {
* @returns {string} Markup for the component.
*/
render() {
- const {
- id,
- description,
- fieldSet,
- value,
- mode,
- onChange,
- isDisabled,
- } = this.props;
+ const { id, description, fieldSet, value, mode, onChange, isDisabled } =
+ this.props;
let items = compact(!isArray(value) && value ? [value] : value || []);
diff --git a/src/customizations/volto/components/manage/Widgets/RecurrenceWidget/RecurrenceWidget.jsx b/src/customizations/volto/components/manage/Widgets/RecurrenceWidget/RecurrenceWidget.jsx
index 3cd4765aa..2fc15287c 100644
--- a/src/customizations/volto/components/manage/Widgets/RecurrenceWidget/RecurrenceWidget.jsx
+++ b/src/customizations/volto/components/manage/Widgets/RecurrenceWidget/RecurrenceWidget.jsx
@@ -443,8 +443,8 @@ class RecurrenceWidget extends Component {
field === 'dtstart'
? value
: rruleSet.dtstart()
- ? rruleSet.dtstart()
- : moment().utc().toDate();
+ ? rruleSet.dtstart()
+ : moment().utc().toDate();
var exdates =
field === 'exdates' ? value : Object.assign([], rruleSet.exdates());
diff --git a/src/customizations/volto/helpers/FormValidation/FormValidation.js b/src/customizations/volto/helpers/FormValidation/FormValidation.js
index 8e0e6862c..803a06ffb 100644
--- a/src/customizations/volto/helpers/FormValidation/FormValidation.js
+++ b/src/customizations/volto/helpers/FormValidation/FormValidation.js
@@ -77,7 +77,8 @@ const widgetValidation = {
isValidEmail: (emailValue, emailObj, intlFunc) => {
// Email Regex taken from from WHATWG living standard:
// https://html.spec.whatwg.org/multipage/input.html#e-mail-state-(type=email)
- const emailRegex = /^[a-zA-Z0-9.!#$%&'*+/=?^_`{|}~-]+@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*$/;
+ const emailRegex =
+ /^[a-zA-Z0-9.!#$%&'*+/=?^_`{|}~-]+@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*$/;
const isValid = emailRegex.test(emailValue);
return !isValid ? intlFunc(messages.isValidEmail) : null;
},
@@ -100,11 +101,11 @@ const widgetValidation = {
isValidURL: (urlValue, urlObj, intlFunc) => {
var urlRegex = new RegExp(
'^(https?:\\/\\/)?' + // validate protocol
- '((([a-z\\d]([a-z\\d-]*[a-z\\d])*)\\.)+[a-z]{2,}|' + // validate domain name
- '((\\d{1,3}\\.){3}\\d{1,3}))|' + // validate OR ip (v4) address
- '(localhost)' + // validate OR localhost address
- '(\\:\\d+)?(\\/[-a-z\\d%_.~+]*)*' + // validate port and path
- '(\\?[;&a-z\\d%_.~+=-]*)?' + // validate query string
+ '((([a-z\\d]([a-z\\d-]*[a-z\\d])*)\\.)+[a-z]{2,}|' + // validate domain name
+ '((\\d{1,3}\\.){3}\\d{1,3}))|' + // validate OR ip (v4) address
+ '(localhost)' + // validate OR localhost address
+ '(\\:\\d+)?(\\/[-a-z\\d%_.~+]*)*' + // validate port and path
+ '(\\?[;&a-z\\d%_.~+=-]*)?' + // validate query string
'(\\#[-a-z\\d_]*)?$', // validate fragment locator
'i',
);
diff --git a/src/customizations/volto/helpers/Html/Html.jsx b/src/customizations/volto/helpers/Html/Html.jsx
index 37bea209d..aad254fb7 100644
--- a/src/customizations/volto/helpers/Html/Html.jsx
+++ b/src/customizations/volto/helpers/Html/Html.jsx
@@ -143,8 +143,8 @@ class Html extends Component {
rel: !criticalCss
? elem.props.rel
: elem.props.as === 'style'
- ? 'prefetch'
- : elem.props.rel,
+ ? 'prefetch'
+ : elem.props.rel,
}),
)}
{/* Styles in development are loaded with Webpack's style-loader, in production,
diff --git a/src/customizations/volto/middleware/api.js b/src/customizations/volto/middleware/api.js
index 1e7b8286b..0e3118f2f 100644
--- a/src/customizations/volto/middleware/api.js
+++ b/src/customizations/volto/middleware/api.js
@@ -128,58 +128,76 @@ function sendOnSocket(request) {
* @param {Object} api Api object.
* @returns {Promise} Action promise.
*/
-const apiMiddlewareFactory = (api) => ({ dispatch, getState }) => (next) => (
- action,
-) => {
- const { settings } = config;
+const apiMiddlewareFactory =
+ (api) =>
+ ({ dispatch, getState }) =>
+ (next) =>
+ (action) => {
+ const { settings } = config;
- const token = getState().userSession.token;
- let isAnonymous = true;
- if (token) {
- const tokenExpiration = jwtDecode(token).exp;
- const currentTime = new Date().getTime() / 1000;
- isAnonymous = !token || currentTime > tokenExpiration;
- }
+ const token = getState().userSession.token;
+ let isAnonymous = true;
+ if (token) {
+ const tokenExpiration = jwtDecode(token).exp;
+ const currentTime = new Date().getTime() / 1000;
+ isAnonymous = !token || currentTime > tokenExpiration;
+ }
- if (typeof action === 'function') {
- return action(dispatch, getState);
- }
+ if (typeof action === 'function') {
+ return action(dispatch, getState);
+ }
- const { request, type, mode = 'parallel', ...rest } = action;
- const { subrequest } = action; // We want subrequest remains in `...rest` above
+ const { request, type, mode = 'parallel', ...rest } = action;
+ const { subrequest } = action; // We want subrequest remains in `...rest` above
- let actionPromise;
+ let actionPromise;
- if (!request) {
- return next(action);
- }
+ if (!request) {
+ return next(action);
+ }
- next({ ...rest, type: `${type}_PENDING` });
+ next({ ...rest, type: `${type}_PENDING` });
- if (socket) {
- actionPromise = Array.isArray(request)
- ? Promise.all(
- request.map((item) =>
- sendOnSocket({
- ...item,
- path: addExpandersToPath(item.path, type, isAnonymous),
- id: type,
- }),
- ),
- )
- : sendOnSocket({
- ...request,
- path: addExpandersToPath(request.path, type, isAnonymous),
- id: type,
- });
- } else {
- actionPromise = Array.isArray(request)
- ? mode === 'serial'
- ? request.reduce((prevPromise, item) => {
- return prevPromise.then((acc) => {
- return api[item.op](
- addExpandersToPath(item.path, type, isAnonymous),
- {
+ if (socket) {
+ actionPromise = Array.isArray(request)
+ ? Promise.all(
+ request.map((item) =>
+ sendOnSocket({
+ ...item,
+ path: addExpandersToPath(item.path, type, isAnonymous),
+ id: type,
+ }),
+ ),
+ )
+ : sendOnSocket({
+ ...request,
+ path: addExpandersToPath(request.path, type, isAnonymous),
+ id: type,
+ });
+ } else {
+ actionPromise = Array.isArray(request)
+ ? mode === 'serial'
+ ? request.reduce((prevPromise, item) => {
+ return prevPromise.then((acc) => {
+ return api[item.op](
+ addExpandersToPath(item.path, type, isAnonymous),
+ {
+ data: item.data,
+ type: item.type,
+ headers: item.headers,
+ params: request.params,
+ checkUrl: settings.actions_raising_api_errors.includes(
+ action.type,
+ ),
+ },
+ ).then((reqres) => {
+ return [...acc, reqres];
+ });
+ });
+ }, Promise.resolve([]))
+ : Promise.all(
+ request.map((item) =>
+ api[item.op](addExpandersToPath(item.path, type, isAnonymous), {
data: item.data,
type: item.type,
headers: item.headers,
@@ -187,176 +205,162 @@ const apiMiddlewareFactory = (api) => ({ dispatch, getState }) => (next) => (
checkUrl: settings.actions_raising_api_errors.includes(
action.type,
),
- },
- ).then((reqres) => {
- return [...acc, reqres];
- });
- });
- }, Promise.resolve([]))
- : Promise.all(
- request.map((item) =>
- api[item.op](addExpandersToPath(item.path, type, isAnonymous), {
- data: item.data,
- type: item.type,
- headers: item.headers,
- params: request.params,
- checkUrl: settings.actions_raising_api_errors.includes(
- action.type,
- ),
- }),
- ),
- )
- : api[request.op](addExpandersToPath(request.path, type, isAnonymous), {
- data: request.data,
- type: request.type,
- headers: request.headers,
- params: request.params,
- checkUrl: settings.actions_raising_api_errors.includes(action.type),
- });
- actionPromise.then(
- (result) => {
- const { settings } = config;
- if (getState().apierror.connectionRefused) {
- next({
- ...rest,
- type: RESET_APIERROR,
+ }),
+ ),
+ )
+ : api[request.op](addExpandersToPath(request.path, type, isAnonymous), {
+ data: request.data,
+ type: request.type,
+ headers: request.headers,
+ params: request.params,
+ checkUrl: settings.actions_raising_api_errors.includes(action.type),
});
- }
- if (type === GET_CONTENT) {
- const lang = result?.language?.token;
- if (
- lang &&
- getState().intl.locale !== toReactIntlLang(lang) &&
- !subrequest &&
- config.settings.supportedLanguages.includes(lang)
- ) {
- const langFileName = toGettextLang(lang);
- import('~/../locales/' + langFileName + '.json').then((locale) => {
- dispatch(changeLanguage(lang, locale.default));
+ actionPromise.then(
+ (result) => {
+ const { settings } = config;
+ if (getState().apierror.connectionRefused) {
+ next({
+ ...rest,
+ type: RESET_APIERROR,
});
}
- }
- if (type === LOGIN && settings.websockets) {
- const cookies = new Cookies();
- cookies.set(
- 'auth_token',
- result.token,
- getCookieOptions({
- expires: new Date(jwtDecode(result.token).exp * 1000),
- }),
- );
- api.get('/@wstoken').then((res) => {
- socket = new WebSocket(
- `${settings.apiPath.replace('http', 'ws')}/@ws?ws_token=${
- res.token
- }`,
+ if (type === GET_CONTENT) {
+ const lang = result?.language?.token;
+ if (
+ lang &&
+ getState().intl.locale !== toReactIntlLang(lang) &&
+ !subrequest &&
+ config.settings.supportedLanguages.includes(lang)
+ ) {
+ const langFileName = toGettextLang(lang);
+ import('~/../locales/' + langFileName + '.json').then(
+ (locale) => {
+ dispatch(changeLanguage(lang, locale.default));
+ },
+ );
+ }
+ }
+ if (type === LOGIN && settings.websockets) {
+ const cookies = new Cookies();
+ cookies.set(
+ 'auth_token',
+ result.token,
+ getCookieOptions({
+ expires: new Date(jwtDecode(result.token).exp * 1000),
+ }),
);
- socket.onmessage = (message) => {
- const packet = JSON.parse(message.data);
- if (packet.error) {
- dispatch({
- type: `${packet.id}_FAIL`,
- error: packet.error,
- });
- } else {
- dispatch({
- type: `${packet.id}_SUCCESS`,
- result: JSON.parse(packet.data),
- });
- }
- };
- });
- }
- try {
- return next({ ...rest, result, type: `${type}_SUCCESS` });
- } catch (error) {
- // There was an exception while processing reducers or downstream middleware.
- next({
- ...rest,
- error: { status: 500, error },
- type: `${type}_FAIL`,
- });
- // Rethrow the original exception on the client side only,
- // so it doesn't fall through to express on the server.
- if (__CLIENT__) throw error;
- }
- },
- (error) => {
- // Only SSR can set ECONNREFUSED
- if (error.code === 'ECONNREFUSED') {
- next({
- ...rest,
- error,
- statusCode: error.code,
- connectionRefused: true,
- type: SET_APIERROR,
- });
- }
-
- // Response error is marked crossDomain if CORS error happen
- else if (error.crossDomain) {
- next({
- ...rest,
- error,
- statusCode: 'CORSERROR',
- connectionRefused: false,
- type: SET_APIERROR,
- });
- }
-
- // Check for actions who can raise api errors
- if (settings.actions_raising_api_errors.includes(action.type)) {
- // Gateway timeout
- if (error?.response?.statusCode === 504) {
- next({
- ...rest,
- error,
- statusCode: error.code,
- connectionRefused: true,
- type: SET_APIERROR,
+ api.get('/@wstoken').then((res) => {
+ socket = new WebSocket(
+ `${settings.apiPath.replace('http', 'ws')}/@ws?ws_token=${
+ res.token
+ }`,
+ );
+ socket.onmessage = (message) => {
+ const packet = JSON.parse(message.data);
+ if (packet.error) {
+ dispatch({
+ type: `${packet.id}_FAIL`,
+ error: packet.error,
+ });
+ } else {
+ dispatch({
+ type: `${packet.id}_SUCCESS`,
+ result: JSON.parse(packet.data),
+ });
+ }
+ };
});
}
-
- // Redirect
- else if (error?.code === 301) {
+ try {
+ return next({ ...rest, result, type: `${type}_SUCCESS` });
+ } catch (error) {
+ // There was an exception while processing reducers or downstream middleware.
next({
...rest,
- error,
- statusCode: error.code,
- connectionRefused: false,
- type: SET_APIERROR,
+ error: { status: 500, error },
+ type: `${type}_FAIL`,
});
+ // Rethrow the original exception on the client side only,
+ // so it doesn't fall through to express on the server.
+ if (__CLIENT__) throw error;
}
-
- // Redirect
- else if (error?.code === 408) {
+ },
+ (error) => {
+ // Only SSR can set ECONNREFUSED
+ if (error.code === 'ECONNREFUSED') {
next({
...rest,
error,
statusCode: error.code,
- connectionRefused: false,
+ connectionRefused: true,
type: SET_APIERROR,
});
}
- // Unauthorized
- else if (error?.response?.statusCode === 401) {
+ // Response error is marked crossDomain if CORS error happen
+ else if (error.crossDomain) {
next({
...rest,
error,
- statusCode: error.response,
- message: error.response.body.message,
+ statusCode: 'CORSERROR',
connectionRefused: false,
type: SET_APIERROR,
});
}
- }
- return next({ ...rest, error, type: `${type}_FAIL` });
- },
- );
- }
- return actionPromise;
-};
+ // Check for actions who can raise api errors
+ if (settings.actions_raising_api_errors.includes(action.type)) {
+ // Gateway timeout
+ if (error?.response?.statusCode === 504) {
+ next({
+ ...rest,
+ error,
+ statusCode: error.code,
+ connectionRefused: true,
+ type: SET_APIERROR,
+ });
+ }
+
+ // Redirect
+ else if (error?.code === 301) {
+ next({
+ ...rest,
+ error,
+ statusCode: error.code,
+ connectionRefused: false,
+ type: SET_APIERROR,
+ });
+ }
+
+ // Redirect
+ else if (error?.code === 408) {
+ next({
+ ...rest,
+ error,
+ statusCode: error.code,
+ connectionRefused: false,
+ type: SET_APIERROR,
+ });
+ }
+
+ // Unauthorized
+ else if (error?.response?.statusCode === 401) {
+ next({
+ ...rest,
+ error,
+ statusCode: error.response,
+ message: error.response.body.message,
+ connectionRefused: false,
+ type: SET_APIERROR,
+ });
+ }
+ }
+ return next({ ...rest, error, type: `${type}_FAIL` });
+ },
+ );
+ }
+
+ return actionPromise;
+ };
export default apiMiddlewareFactory;
diff --git a/src/customizations/volto/middleware/blacklistRoutes.js b/src/customizations/volto/middleware/blacklistRoutes.js
index 13e0ab3e9..fb0dd4353 100644
--- a/src/customizations/volto/middleware/blacklistRoutes.js
+++ b/src/customizations/volto/middleware/blacklistRoutes.js
@@ -5,43 +5,45 @@
import config from '@plone/volto/registry';
import { matchPath } from 'react-router';
-const blacklistRoutes = ({ dispatch, getState }) => (next) => (action) => {
- if (typeof action === 'function') {
- return next(action);
- }
-
- switch (action.type) {
- case '@@router/LOCATION_CHANGE':
- let { pathname } = action.payload.location;
- const { externalRoutes = [] } = config.settings;
+const blacklistRoutes =
+ ({ dispatch, getState }) =>
+ (next) =>
+ (action) => {
+ if (typeof action === 'function') {
+ return next(action);
+ }
- const route = externalRoutes.find((route) =>
- matchPath(pathname, route.match),
- );
+ switch (action.type) {
+ case '@@router/LOCATION_CHANGE':
+ let { pathname } = action.payload.location;
+ const { externalRoutes = [] } = config.settings;
- let actionToSend = action;
- if (pathname.startsWith('/++api++')) {
- actionToSend.payload.location.pathname = actionToSend.payload.location.pathname.substring(
- 8,
+ const route = externalRoutes.find((route) =>
+ matchPath(pathname, route.match),
);
- // To handle the `window.location.replace`
- pathname = actionToSend.payload.location.pathname;
- if (window.history) {
- window.history.replaceState(window.history.state, '', pathname);
+
+ let actionToSend = action;
+ if (pathname.startsWith('/++api++')) {
+ actionToSend.payload.location.pathname =
+ actionToSend.payload.location.pathname.substring(8);
+ // To handle the `window.location.replace`
+ pathname = actionToSend.payload.location.pathname;
+ if (window.history) {
+ window.history.replaceState(window.history.state, '', pathname);
+ }
}
- }
- if (!route) {
- return next(actionToSend);
- } else {
- window.location.replace(
- route.url ? route.url(actionToSend.payload) : pathname,
- );
- }
- break;
- default:
- return next(action);
- }
-};
+ if (!route) {
+ return next(actionToSend);
+ } else {
+ window.location.replace(
+ route.url ? route.url(actionToSend.payload) : pathname,
+ );
+ }
+ break;
+ default:
+ return next(action);
+ }
+ };
-export default blacklistRoutes;
\ No newline at end of file
+export default blacklistRoutes;
diff --git a/src/helpers/dates.js b/src/helpers/dates.js
index 24e4300c5..4e67e212d 100644
--- a/src/helpers/dates.js
+++ b/src/helpers/dates.js
@@ -11,8 +11,8 @@ export const viewDate = (locale, value, format) => {
? // Since we assume UTC everywhere, then transform to local (momentjs default)
moment(value)
: value.match(/T(.)/g)
- ? moment(`${value}Z`) // This might happen in old Plone versions dates
- : moment(value); //This when date is like '2021-05-05'
+ ? moment(`${value}Z`) // This might happen in old Plone versions dates
+ : moment(value); //This when date is like '2021-05-05'
} else {
datetime = moment(value);
}
diff --git a/src/theme/ItaliaTheme/Addons/volto-gdpr-privacy.scss b/src/theme/ItaliaTheme/Addons/volto-gdpr-privacy.scss
index 81cb11e86..1ef7503b9 100644
--- a/src/theme/ItaliaTheme/Addons/volto-gdpr-privacy.scss
+++ b/src/theme/ItaliaTheme/Addons/volto-gdpr-privacy.scss
@@ -48,6 +48,7 @@
line-height: 17px;
outline: none;
vertical-align: baseline;
+
input:focus ~ label::before {
box-shadow: $gdpr-focus-shadow !important;
outline: none !important;
@@ -63,8 +64,11 @@
left: 0;
border: 1px solid $gdpr-toggle-border;
background-color: $gdpr-toggle;
- transition: border 0.1s ease, opacity 0.1s ease,
- transform 0.1s ease, box-shadow 0.1s ease;
+ transition:
+ border 0.1s ease,
+ opacity 0.1s ease,
+ transform 0.1s ease,
+ box-shadow 0.1s ease;
}
&:after {
@@ -151,12 +155,14 @@
width: 1.5rem;
height: 1.5rem;
border: 1.5px solid $gdpr-toggle-border;
+ border-radius: 500rem;
background: #ffffff
linear-gradient(transparent, rgba(0, 0, 0, 0.05));
- border-radius: 500rem;
content: '' !important;
opacity: 1;
- transition: background 0.3s ease, left 0.3s ease;
+ transition:
+ background 0.3s ease,
+ left 0.3s ease;
}
}
}
@@ -197,8 +203,8 @@
}
button.gdpr-privacy-show-banner {
- margin: 0;
border-radius: 0;
+ margin: 0;
border-bottom-left-radius: 5px;
border-top-left-radius: 5px;
}
@@ -233,6 +239,7 @@ body.has-toolbar-collapsed {
}
}
}
+
.gdpr-privacy-banner
.gdpr-privacy-content-wrapper
.gdpr-privacy-content
diff --git a/src/theme/ItaliaTheme/Blocks/_accordion.scss b/src/theme/ItaliaTheme/Blocks/_accordion.scss
index 529cce716..f517e30cd 100644
--- a/src/theme/ItaliaTheme/Blocks/_accordion.scss
+++ b/src/theme/ItaliaTheme/Blocks/_accordion.scss
@@ -38,6 +38,7 @@ $accordion-icon-color: #7fb2e5;
top: -7px;
right: 0;
left: unset;
+
&:focus {
outline: 1px solid $focus-outline-color;
}
@@ -63,6 +64,7 @@ $accordion-icon-color: #7fb2e5;
padding: 0 0.4em;
border: none;
background: none;
+
&:focus {
outline: 1px solid $focus-outline-color;
}
diff --git a/src/theme/ItaliaTheme/Blocks/_alert.scss b/src/theme/ItaliaTheme/Blocks/_alert.scss
index 065e30ff2..a56de95a5 100644
--- a/src/theme/ItaliaTheme/Blocks/_alert.scss
+++ b/src/theme/ItaliaTheme/Blocks/_alert.scss
@@ -55,8 +55,8 @@
}
img.left-image {
- object-fit: unset;
max-width: 80%;
+ object-fit: unset;
&.size {
&-m {
diff --git a/src/theme/ItaliaTheme/Blocks/_bandiInEvidenceTemplate.scss b/src/theme/ItaliaTheme/Blocks/_bandiInEvidenceTemplate.scss
index 446b53500..534bf00b5 100644
--- a/src/theme/ItaliaTheme/Blocks/_bandiInEvidenceTemplate.scss
+++ b/src/theme/ItaliaTheme/Blocks/_bandiInEvidenceTemplate.scss
@@ -18,9 +18,9 @@
.card-body {
display: flex;
flex-direction: column;
+ justify-content: space-between;
padding: 2.5rem;
padding-bottom: 0rem;
- justify-content: space-between;
}
}
diff --git a/src/theme/ItaliaTheme/Blocks/_calendar.scss b/src/theme/ItaliaTheme/Blocks/_calendar.scss
index cc02b50f0..ed2f7999c 100644
--- a/src/theme/ItaliaTheme/Blocks/_calendar.scss
+++ b/src/theme/ItaliaTheme/Blocks/_calendar.scss
@@ -88,10 +88,12 @@
content: none;
}
}
+
.flex-container {
display: flex;
align-items: center;
column-gap: 0.56em;
+
.day {
font-size: 2.6rem;
font-weight: 400;
@@ -103,10 +105,10 @@
justify-content: center;
.day-week {
+ color: $caption-text;
font-family: $font-family-sans-serif;
font-weight: 400;
text-transform: uppercase;
- color: $caption-text;
}
.month {
@@ -133,21 +135,21 @@
align-items: center;
.item-img {
- flex: 0 0 3.11rem;
- margin-right: 0.83em;
position: relative;
overflow: hidden;
height: 3.11rem;
+ flex: 0 0 3.11rem;
+ margin-right: 0.83em;
img {
position: absolute;
top: 50%;
left: 50%;
- transform: translate(-50%, -50%);
min-width: 100%;
min-height: 100%;
- object-fit: cover;
border-radius: 4px;
+ object-fit: cover;
+ transform: translate(-50%, -50%);
}
}
}
@@ -157,9 +159,9 @@
margin-top: 6rem;
.link-more-button-align-right {
+ display: flex;
align-items: center;
justify-content: right;
- display: flex;
}
}
diff --git a/src/theme/ItaliaTheme/Blocks/_cardWithImageAndInEvidence.scss b/src/theme/ItaliaTheme/Blocks/_cardWithImageAndInEvidence.scss
index db078426f..2777c15e0 100644
--- a/src/theme/ItaliaTheme/Blocks/_cardWithImageAndInEvidence.scss
+++ b/src/theme/ItaliaTheme/Blocks/_cardWithImageAndInEvidence.scss
@@ -98,9 +98,9 @@
.listing-item.card {
.card-body {
.category-top {
+ color: $caption-text;
font-size: 0.875rem;
line-height: 1.313rem;
- color: $caption-text;
.text {
font-weight: 600;
@@ -115,18 +115,18 @@
.card-title {
a {
+ color: $link-color;
font-size: 1.3rem;
- line-height: 1.75rem;
font-weight: 700;
- color: $link-color;
+ line-height: 1.75rem;
}
}
.card-text {
- font-size: 1rem;
- line-height: 1.5rem;
color: $gray-secondary;
font-family: $font-family-sans-serif;
+ font-size: 1rem;
+ line-height: 1.5rem;
}
}
}
@@ -138,8 +138,8 @@
}
.data.data {
- margin-top: 3px;
flex-basis: 100%;
+ margin-top: 3px;
&:before {
display: none;
@@ -156,8 +156,8 @@
}
.data.data {
- margin-top: 3px;
flex-basis: 100%;
+ margin-top: 3px;
&:before {
display: none;
diff --git a/src/theme/ItaliaTheme/Blocks/_cardWithSlideUpTextTemplate.scss b/src/theme/ItaliaTheme/Blocks/_cardWithSlideUpTextTemplate.scss
index 3a25c0e17..35ac87f97 100644
--- a/src/theme/ItaliaTheme/Blocks/_cardWithSlideUpTextTemplate.scss
+++ b/src/theme/ItaliaTheme/Blocks/_cardWithSlideUpTextTemplate.scss
@@ -27,11 +27,11 @@
.title {
z-index: 2;
+ overflow: hidden;
+ max-height: calc(5em * 1.25); // 5 lines
margin-bottom: 0.8rem;
color: #fff;
font-size: 1.7rem;
- overflow: hidden;
- max-height: calc(5em * 1.25); // 5 lines
&.ellipsis::after {
content: '…';
diff --git a/src/theme/ItaliaTheme/Blocks/_completeBlockLinkstemplate.scss b/src/theme/ItaliaTheme/Blocks/_completeBlockLinkstemplate.scss
index 0b1cb2adb..6cc796cce 100644
--- a/src/theme/ItaliaTheme/Blocks/_completeBlockLinkstemplate.scss
+++ b/src/theme/ItaliaTheme/Blocks/_completeBlockLinkstemplate.scss
@@ -11,14 +11,14 @@
.image-container {
display: flex;
+ overflow: hidden;
width: 40px;
height: 40px;
flex-shrink: 0;
+ border-radius: 50%;
margin: 18px 0px 0px 18px;
background-color: $white;
- border-radius: 50%;
- overflow: hidden;
.volto-image {
img {
@@ -45,6 +45,7 @@
font-size: 1rem !important;
font-weight: 700 !important;
line-height: 1.44444rem;
+
.external-link {
fill: $external-link-fill-buttons !important;
}
@@ -53,6 +54,7 @@
.card:after {
content: none;
}
+
.no-external-if-link > .external-link {
display: none;
}
diff --git a/src/theme/ItaliaTheme/Blocks/_countdown.scss b/src/theme/ItaliaTheme/Blocks/_countdown.scss
index eb72b6bb6..492c62fc7 100644
--- a/src/theme/ItaliaTheme/Blocks/_countdown.scss
+++ b/src/theme/ItaliaTheme/Blocks/_countdown.scss
@@ -91,8 +91,8 @@
.number {
padding: 1.3rem;
border: 1px solid $white;
- background-color: rgba(255, 255, 255, 0.06);
border-radius: 0.5rem;
+ background-color: rgba(255, 255, 255, 0.06);
font-family: $font-family-monospace !important;
font-size: 3.8rem;
font-weight: bold;
@@ -109,8 +109,8 @@
.expired {
padding: 1.5rem;
border: 1px solid $white;
- background-color: rgba(255, 255, 255, 0.06);
border-radius: 0.5rem;
+ background-color: rgba(255, 255, 255, 0.06);
font-size: 3rem;
font-weight: bold;
text-align: center;
diff --git a/src/theme/ItaliaTheme/Blocks/_ctaBlock.scss b/src/theme/ItaliaTheme/Blocks/_ctaBlock.scss
index 7902dd71d..8177735a5 100644
--- a/src/theme/ItaliaTheme/Blocks/_ctaBlock.scss
+++ b/src/theme/ItaliaTheme/Blocks/_ctaBlock.scss
@@ -31,26 +31,28 @@
}
a.btn-outline-info {
+ position: relative;
max-width: 300px;
box-shadow: inset 0 0 0 1px $secondary-text;
color: $secondary-text;
font-size: 0.9rem;
text-transform: uppercase;
- position: relative;
&:hover,
&:focus {
background: $secondary-text;
color: $secondary;
+
.external-link {
fill: #004080 !important;
}
}
+
.external-link {
- fill: $external-link-fill-buttons !important;
position: absolute;
top: 3px;
right: 3px;
+ fill: $external-link-fill-buttons !important;
}
}
@@ -120,12 +122,12 @@
}
a.btn-outline-info {
+ position: relative;
+ padding: 18px 60px;
box-shadow: inset 0 0 0 1px #fff;
color: #fff;
- padding: 18px 60px;
- font-weight: bold;
font-size: 1rem;
- position: relative;
+ font-weight: bold;
.external-link {
position: absolute;
diff --git a/src/theme/ItaliaTheme/Blocks/_gridBlock.scss b/src/theme/ItaliaTheme/Blocks/_gridBlock.scss
index e69a06a5d..cd7790970 100644
--- a/src/theme/ItaliaTheme/Blocks/_gridBlock.scss
+++ b/src/theme/ItaliaTheme/Blocks/_gridBlock.scss
@@ -1,25 +1,30 @@
.block.gridBlock {
margin-top: 2rem;
+
.full-width {
height: unset !important;
}
+
.gridBlock-container {
+ position: relative;
max-width: 1320px;
padding: 0 4px;
margin: auto;
- position: relative;
+
.toolbar {
left: 16px !important;
}
+
.block {
.image {
.ui.message {
- padding-left: 8px;
padding-right: 8px;
+ padding-left: 8px;
}
+
.ui.input {
- font-size: 14px;
margin-left: 16px;
+ font-size: 14px;
}
}
}
diff --git a/src/theme/ItaliaTheme/Blocks/_gridGalleryTemplate.scss b/src/theme/ItaliaTheme/Blocks/_gridGalleryTemplate.scss
index 1e5c8511e..fd37cc730 100644
--- a/src/theme/ItaliaTheme/Blocks/_gridGalleryTemplate.scss
+++ b/src/theme/ItaliaTheme/Blocks/_gridGalleryTemplate.scss
@@ -70,6 +70,7 @@
@media (max-width: 767px) {
height: fit-content;
+
&.item-5,
&.item-6 {
grid-column: auto;
diff --git a/src/theme/ItaliaTheme/Blocks/_hero.scss b/src/theme/ItaliaTheme/Blocks/_hero.scss
index 1607d6608..adec72999 100644
--- a/src/theme/ItaliaTheme/Blocks/_hero.scss
+++ b/src/theme/ItaliaTheme/Blocks/_hero.scss
@@ -134,6 +134,7 @@
.btn {
min-width: 9.5rem;
+
&:last-of-type {
margin-left: 0em;
}
diff --git a/src/theme/ItaliaTheme/Blocks/_iconBlocks.scss b/src/theme/ItaliaTheme/Blocks/_iconBlocks.scss
index 8d59db74a..a1547706a 100644
--- a/src/theme/ItaliaTheme/Blocks/_iconBlocks.scss
+++ b/src/theme/ItaliaTheme/Blocks/_iconBlocks.scss
@@ -108,8 +108,8 @@
.ui.basic.button.delete-button {
z-index: 3;
padding: 0.3rem;
- background-color: #8bb3b5 !important;
border-radius: 100%;
+ background-color: #8bb3b5 !important;
line-height: 1rem;
svg:not(:hover) {
@@ -160,8 +160,8 @@
width: 6rem;
height: 6rem;
padding: 0.5rem 1rem;
- background-color: #ededed;
border-radius: 100%;
+ background-color: #ededed;
font-size: 0.8rem;
vertical-align: middle;
}
diff --git a/src/theme/ItaliaTheme/Blocks/_imageBlock.scss b/src/theme/ItaliaTheme/Blocks/_imageBlock.scss
index e2c027528..f4c6b3ad8 100644
--- a/src/theme/ItaliaTheme/Blocks/_imageBlock.scss
+++ b/src/theme/ItaliaTheme/Blocks/_imageBlock.scss
@@ -12,6 +12,7 @@
}
}
}
+
&.left,
&.right {
margin-bottom: 0;
diff --git a/src/theme/ItaliaTheme/Blocks/_listing.scss b/src/theme/ItaliaTheme/Blocks/_listing.scss
index b3af66a9d..76bf74e83 100644
--- a/src/theme/ItaliaTheme/Blocks/_listing.scss
+++ b/src/theme/ItaliaTheme/Blocks/_listing.scss
@@ -35,7 +35,7 @@
//* customizzazione: checkbox linea sotto al titolo
.title-bottom-line {
- border-bottom: 1px solid #455b71;
padding-bottom: 15px;
+ border-bottom: 1px solid #455b71;
}
}
diff --git a/src/theme/ItaliaTheme/Blocks/_photogallerytemplate.scss b/src/theme/ItaliaTheme/Blocks/_photogallerytemplate.scss
index ec5f75ae0..1d9b793e4 100644
--- a/src/theme/ItaliaTheme/Blocks/_photogallerytemplate.scss
+++ b/src/theme/ItaliaTheme/Blocks/_photogallerytemplate.scss
@@ -65,6 +65,7 @@
color: lighten($primary, 40%);
fill: lighten($primary, 40%);
}
+
&:hover .icon {
color: $primary;
fill: $primary;
diff --git a/src/theme/ItaliaTheme/Blocks/_ribbonCardTemplate.scss b/src/theme/ItaliaTheme/Blocks/_ribbonCardTemplate.scss
index 94a7c059a..9c87266e6 100644
--- a/src/theme/ItaliaTheme/Blocks/_ribbonCardTemplate.scss
+++ b/src/theme/ItaliaTheme/Blocks/_ribbonCardTemplate.scss
@@ -56,8 +56,8 @@
margin-left: 1.3em;
&::after {
- border-left: 10px solid transparent;
border-right: 10px solid transparent;
+ border-left: 10px solid transparent;
}
}
@@ -65,11 +65,12 @@
padding: 1.3em;
}
}
+
.etichetta.etichetta {
- width: 50%;
+ top: 0.6em !important;
right: 0em !important;
left: auto;
- top: 0.6em !important;
+ width: 50%;
padding: 0em 0.5em;
font-size: 0.6rem;
}
@@ -77,9 +78,9 @@
@include media-breakpoint-between(md, xxl) {
.etichetta.etichetta {
- width: 50%;
right: 0.5em !important;
left: auto;
+ width: 50%;
padding: 0em 0.5em;
}
}
diff --git a/src/theme/ItaliaTheme/Blocks/_rssBlock.scss b/src/theme/ItaliaTheme/Blocks/_rssBlock.scss
index 4e2fe4ab5..9c875753d 100644
--- a/src/theme/ItaliaTheme/Blocks/_rssBlock.scss
+++ b/src/theme/ItaliaTheme/Blocks/_rssBlock.scss
@@ -2,10 +2,11 @@
.card {
.card-body {
.source-title {
+ margin-bottom: $card-category-m-bottom;
+ color: $card-p-color;
font-size: $card-category-size;
text-transform: uppercase;
- color: $card-p-color;
- margin-bottom: $card-category-m-bottom;
+
.source {
font-weight: bold;
letter-spacing: $card-category-l-spacing;
diff --git a/src/theme/ItaliaTheme/Blocks/_search.scss b/src/theme/ItaliaTheme/Blocks/_search.scss
index 8314ecd89..004af7636 100644
--- a/src/theme/ItaliaTheme/Blocks/_search.scss
+++ b/src/theme/ItaliaTheme/Blocks/_search.scss
@@ -2,10 +2,12 @@
.full-width {
height: 100% !important;
}
+
.search-wrapper {
position: relative;
margin-top: 1.75rem;
background-color: #fff;
+
.form-group {
flex: 1;
margin: 0;
@@ -14,62 +16,74 @@
display: none;
}
}
+
.input-group-append,
.clear-icon,
input {
height: 45px;
}
+
label {
color: var(--bs-gray-secondary);
}
+
label.inactive,
input {
padding-left: 2.5rem !important;
}
+
label.inactive {
color: transparent;
}
+
label.active {
- font-size: 1rem;
top: -8px;
+ font-size: 1rem;
}
+
.autocomplete-icon {
position: absolute;
- left: 0;
- right: auto;
- top: 7px;
z-index: 5;
+ top: 7px;
+ right: auto;
+ left: 0;
+
.icon {
fill: $link-color;
}
}
+
.clear-icon {
- z-index: 5;
- border: none;
- outline: none;
position: absolute;
+ z-index: 5;
right: 80px;
- font-size: 1rem;
+ border: none;
border-bottom: 1px solid hsl(210deg, 17.6470588235%, 43.35%);
+ font-size: 1rem;
+ outline: none;
}
}
+
.search-details {
color: var(--bs-gray-900);
}
+
.search-results .public-ui .template-wrapper {
.container {
- padding: 0 !important;
max-width: 100%;
+ padding: 0 !important;
}
}
+
.sideColumn {
@media (max-width: #{map-get($grid-breakpoints, md)}) {
padding-right: calc(var(--bs-gutter-x) * 0.5) !important;
padding-left: calc(var(--bs-gutter-x) * 0.5) !important;
}
+
.columnTextTitle {
- text-transform: uppercase;
color: var(--bs-gray-900);
+ text-transform: uppercase;
}
.facets {
@@ -80,108 +94,123 @@
.daterange-facet {
.DateRangePickerInput {
border-bottom: 1px solid hsl(210deg, 17.6470588235%, 43.35%);
+
input[type='text'] {
border-bottom: none;
}
}
}
+
.select-facet {
// Same div, but for some reason when built, valuecontainer
// class is not present in html, design-react-kit fault
div[class*='-ValueContainer'],
div[class*='-control'] > div:first-child {
- flex-wrap: nowrap;
+ position: relative;
display: flex;
- -webkit-align-items: center;
- -webkit-box-align: center;
- -ms-flex-align: center;
- align-items: center;
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
+ overflow: hidden;
+ height: 2.5rem;
+ box-sizing: border-box;
-webkit-flex: 1 1 0%;
-ms-flex: 1 1 0%;
flex: 1 1 0%;
+ flex-wrap: nowrap;
+ -webkit-align-items: center;
+ align-items: center;
padding: 2px 8px;
+ -webkit-box-align: center;
+ -ms-flex-align: center;
-webkit-overflow-scrolling: touch;
- position: relative;
- overflow: hidden;
- box-sizing: border-box;
- height: 2.5rem;
}
+
div[class*='-placeholder'] {
color: #484848;
}
}
}
}
+
.search-results-count-sort {
.accordion-wrapper {
- min-width: 350px;
position: relative;
+ min-width: 350px;
@media (max-width: #{map-get($grid-breakpoints, md)}) {
min-width: 100%;
}
+
.accordion-header {
- padding: 0.5rem;
- font-size: 1rem;
display: flex;
width: 100%;
align-items: center;
justify-content: space-between;
- transition: border-color 0.3s ease-in,
- background-color 0.2s cubic-bezier(0, 1, 0, 1) 0.2s;
+ padding: 0.5rem;
border: none;
- border-bottom: 1px solid;
border-color: hsl(210deg, 17.6470588235%, 43.35%) !important;
+ border-bottom: 1px solid;
+ font-size: 1rem;
+ transition:
+ border-color 0.3s ease-in,
+ background-color 0.2s cubic-bezier(0, 1, 0, 1) 0.2s;
+
&[aria-expanded='true'] {
border-color: transparent !important;
- transition: background-color 0.2s cubic-bezier(0, 1, 0, 1),
- border-color 0.05s cubic-bezier(1, 0, 1, 0);
box-shadow: 0 1rem 2rem -0.25rem rgba(0, 0, 0, 0.15) !important;
+ transition:
+ background-color 0.2s cubic-bezier(0, 1, 0, 1),
+ border-color 0.05s cubic-bezier(1, 0, 1, 0);
}
+
.filter-list-title {
display: flex;
+
.accordion-control {
position: relative;
margin-right: 28px;
+
.indicator {
position: absolute;
+ z-index: 10;
right: -22px;
bottom: -5px;
- z-index: 10;
}
}
}
}
.accordion-content {
+ position: absolute;
+ z-index: 10;
+ right: 0;
+ left: 0;
overflow: hidden;
max-height: 0;
padding: 0;
transition: max-height 0.2s cubic-bezier(0, 1, 0, 1);
- position: absolute;
- left: 0;
- right: 0;
- z-index: 10;
+
&[aria-expanded='true'] {
- max-height: 1000vh;
overflow: auto;
- transition: max-height 0.25s cubic-bezier(1, 0, 1, 0);
+ max-height: 1000vh;
box-shadow: 0 0.8rem 1rem -0.25rem rgba(0, 0, 0, 0.15) !important;
+ transition: max-height 0.25s cubic-bezier(1, 0, 1, 0);
}
.accordion-inner {
padding: 0.75rem 1rem;
+
.filter-list-group {
display: flex;
flex-direction: column;
+
.label-title {
color: var(--bs-gray-secondary);
- text-transform: uppercase;
- font-weight: 700;
font-size: 0.875rem;
+ font-weight: 700;
+ text-transform: uppercase;
}
+
.form-label {
align-items: center;
justify-content: space-between;
@@ -201,12 +230,14 @@
}
}
}
+
.clear-filters {
- margin-top: 1rem;
width: 100%;
align-items: center;
justify-content: center;
+ margin-top: 1rem;
font-size: 17px;
+
svg {
margin-right: 0.5rem !important;
fill: var(--bs-danger);
diff --git a/src/theme/ItaliaTheme/Blocks/_searchSections.scss b/src/theme/ItaliaTheme/Blocks/_searchSections.scss
index b16dcf2a6..21b1a4239 100644
--- a/src/theme/ItaliaTheme/Blocks/_searchSections.scss
+++ b/src/theme/ItaliaTheme/Blocks/_searchSections.scss
@@ -42,23 +42,24 @@
}
.searchbar {
- background-color: $white;
height: 45px;
+ background-color: $white;
button {
- height: 100%;
display: flex;
width: 50px;
height: 100%;
+ height: 100%;
align-items: center;
justify-content: center;
border-width: 0px;
- background: transparent;
margin-right: 10px;
+ background: transparent;
svg {
fill: $primary;
}
+
&:hover,
&:active {
background-color: darken($white, 5.5);
diff --git a/src/theme/ItaliaTheme/Blocks/_simpleCardTemplate.scss b/src/theme/ItaliaTheme/Blocks/_simpleCardTemplate.scss
index 3d34970d9..0e865348c 100644
--- a/src/theme/ItaliaTheme/Blocks/_simpleCardTemplate.scss
+++ b/src/theme/ItaliaTheme/Blocks/_simpleCardTemplate.scss
@@ -56,6 +56,7 @@
@include rem-size(font-size, 24);
@include rem-size(line-height, 26);
font-weight: 700;
+
&:hover,
&:active {
text-decoration: underline;
@@ -66,11 +67,11 @@
.category-top {
span.text {
span.text.fw-bold {
+ color: $link-color;
font-size: 0.875rem;
- line-height: 1.313rem;
- letter-spacing: 1px;
font-weight: 600 !important;
- color: $link-color;
+ letter-spacing: 1px;
+ line-height: 1.313rem;
}
}
}
@@ -78,6 +79,7 @@
p.card-text {
font-size: 1rem;
line-height: 1.5rem;
+
div.document-date {
@include rem-size(font-size, 14);
}
@@ -128,6 +130,7 @@
@include rem-size(line-height, 32);
font-weight: 700;
text-decoration: none;
+
&:hover,
&:active {
text-decoration: underline;
diff --git a/src/theme/ItaliaTheme/Blocks/_sliderTemplate.scss b/src/theme/ItaliaTheme/Blocks/_sliderTemplate.scss
index e38773049..f1919538b 100644
--- a/src/theme/ItaliaTheme/Blocks/_sliderTemplate.scss
+++ b/src/theme/ItaliaTheme/Blocks/_sliderTemplate.scss
@@ -19,8 +19,8 @@
justify-content: center;
padding: 0.5rem;
border: none;
- background-color: #3f4142e0;
border-radius: 16px;
+ background-color: #3f4142e0;
color: $white;
font-size: 0.7rem;
font-weight: bold;
diff --git a/src/theme/ItaliaTheme/Blocks/_smallblockLinkstemplate.scss b/src/theme/ItaliaTheme/Blocks/_smallblockLinkstemplate.scss
index a51597ded..d66134d78 100644
--- a/src/theme/ItaliaTheme/Blocks/_smallblockLinkstemplate.scss
+++ b/src/theme/ItaliaTheme/Blocks/_smallblockLinkstemplate.scss
@@ -6,22 +6,22 @@
}
.center-image-card {
+ position: relative;
display: flex;
overflow: hidden;
height: 100px;
align-items: center;
justify-content: center;
- border-right: none;
border: 8px solid $white;
+ border-right: none;
background: $white;
box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.1);
- position: relative;
.img-link svg {
position: absolute;
+ z-index: 2;
top: 4px;
right: 4px;
- z-index: 2;
}
.volto-image.responsive img,
diff --git a/src/theme/ItaliaTheme/Blocks/_subblocks-edit.scss b/src/theme/ItaliaTheme/Blocks/_subblocks-edit.scss
index dfc3fb954..dfbb46454 100644
--- a/src/theme/ItaliaTheme/Blocks/_subblocks-edit.scss
+++ b/src/theme/ItaliaTheme/Blocks/_subblocks-edit.scss
@@ -5,8 +5,8 @@
width: 1.8rem !important;
height: 1.8rem !important;
padding: 0.3rem;
- background-color: #8bb3b5 !important;
border-radius: 100%;
+ background-color: #8bb3b5 !important;
line-height: 1rem;
text-align: center;
diff --git a/src/theme/ItaliaTheme/Blocks/_tableOfContents.scss b/src/theme/ItaliaTheme/Blocks/_tableOfContents.scss
index f50c266c4..0c19910e8 100644
--- a/src/theme/ItaliaTheme/Blocks/_tableOfContents.scss
+++ b/src/theme/ItaliaTheme/Blocks/_tableOfContents.scss
@@ -4,39 +4,46 @@ $space-left: 1rem;
// template for "Indice dei contenuti"
.ui.bulleted.list {
padding-left: 0;
+
& .ui.bulleted.list {
- padding-left: 0;
display: flex;
flex-direction: column;
padding-top: 0.5rem;
+ padding-left: 0;
+
[class^='item headline-'] {
margin-left: $space-left;
}
+
.item:last-child {
padding-bottom: 0;
}
}
+
.item {
+ position: relative;
display: flex;
flex-direction: column;
justify-content: center;
padding-bottom: 0.6rem;
font-size: 0.9rem;
list-style: none;
- position: relative;
a {
display: inline-block;
margin-left: 1rem;
text-decoration: none;
}
+
&.headline-2 {
+ width: 100%;
margin-top: 0.5rem;
font-size: 1rem;
font-weight: 600;
- width: 100%;
&::before {
+ position: absolute;
+ top: 0.4rem;
width: 0;
height: 0;
border-top: 0.4rem solid transparent;
@@ -44,13 +51,13 @@ $space-left: 1rem;
border-left: 0.5rem solid $link-color;
content: '' !important;
list-style: none;
- position: absolute;
- top: 0.4rem;
}
}
&:not(.headline-2)::before {
position: relative;
+ position: absolute;
+ top: 0.4rem;
display: inline-block;
width: 0.55rem;
min-width: 0.55rem;
@@ -61,23 +68,26 @@ $space-left: 1rem;
content: '' !important;
list-style: none;
transform: rotate(45deg);
- position: absolute;
- top: 0.4rem;
}
}
}
+
ol {
counter-reset: item;
list-style-type: none;
}
+
ol > li {
counter-increment: item;
}
+
ol > li::before {
content: counters(item, '.') '. ';
}
+
& > ol.ordered.list {
padding-left: 0;
+
li {
padding: 0.25rem 0;
}
diff --git a/src/theme/ItaliaTheme/Blocks/_video.scss b/src/theme/ItaliaTheme/Blocks/_video.scss
index 5037d9cd4..04db635ed 100644
--- a/src/theme/ItaliaTheme/Blocks/_video.scss
+++ b/src/theme/ItaliaTheme/Blocks/_video.scss
@@ -17,8 +17,8 @@
left: 50%;
width: 4rem;
height: 2.6rem;
- background-color: rgba(0, 0, 0, 0.7);
border-radius: 15px;
+ background-color: rgba(0, 0, 0, 0.7);
color: $white;
cursor: pointer;
line-height: 2.6rem;
diff --git a/src/theme/ItaliaTheme/Blocks/_videoGallery.scss b/src/theme/ItaliaTheme/Blocks/_videoGallery.scss
index a95b3b2f9..af8a8efc8 100644
--- a/src/theme/ItaliaTheme/Blocks/_videoGallery.scss
+++ b/src/theme/ItaliaTheme/Blocks/_videoGallery.scss
@@ -9,6 +9,7 @@
.full-width {
height: 400px;
}
+
.slick-list {
margin: 0;
}
@@ -19,8 +20,8 @@
}
.add-block-wrapper {
- text-align: center;
margin-top: 1rem;
+ text-align: center;
}
.channel {
@@ -52,8 +53,8 @@
img.placeholder {
width: 100%;
height: 190px;
- object-fit: cover;
cursor: auto;
+ object-fit: cover;
}
.icon-play {
@@ -64,8 +65,8 @@
left: 50%;
width: 3.6rem;
height: 2.5rem;
- background-color: rgba(0, 0, 0, 0.7);
border-radius: 15px;
+ background-color: rgba(0, 0, 0, 0.7);
color: $white;
cursor: pointer;
@@ -114,13 +115,13 @@
padding: 0 0.5rem;
.ui.embed {
- pointer-events: none;
position: relative;
- min-height: 190px;
display: flex;
- justify-content: center;
+ min-height: 190px;
align-items: center;
+ justify-content: center;
margin-bottom: 0;
+ pointer-events: none;
}
}
diff --git a/src/theme/ItaliaTheme/Components/_card.scss b/src/theme/ItaliaTheme/Components/_card.scss
index 1ccc7431c..9656bb18a 100644
--- a/src/theme/ItaliaTheme/Components/_card.scss
+++ b/src/theme/ItaliaTheme/Components/_card.scss
@@ -9,10 +9,10 @@
}
.card.border-left-card {
- border-left: 8px solid $primary-a0;
- box-shadow: 0px 4px 4px 0px #00000026;
display: flex;
flex-wrap: nowrap;
+ border-left: 8px solid $primary-a0;
+ box-shadow: 0px 4px 4px 0px #00000026;
&.card-small {
@include rem-size(line-height, 24);
@@ -40,6 +40,7 @@
.text.fw-bold {
color: $link-color;
font-weight: 600;
+
a {
@include rem-size(font-size, 24);
@include rem-size(line-height, 32);
@@ -67,8 +68,10 @@
&.card.card-teaser {
display: flex;
}
+
.card-body {
padding: 0em !important;
+
.category-top {
.category {
text-decoration: none;
@@ -83,8 +86,8 @@
&.venue-card-title.venue-card-title {
@include rem-size(font-size, 24);
@include rem-size(line-height, 32);
- text-decoration: none;
font-weight: 600;
+ text-decoration: none;
}
a:hover {
@@ -118,8 +121,8 @@
.card.preview-image-card {
.image-container {
- margin: auto;
flex-basis: 20%;
+ margin: auto;
img {
max-width: 64px;
@@ -143,6 +146,7 @@
a:hover {
text-decoration: underline;
}
+
svg {
fill: $link-color;
}
@@ -168,8 +172,8 @@
}
.card-body {
- margin-left: 0em;
flex-basis: 100%;
+ margin-left: 0em;
}
}
}
@@ -183,21 +187,24 @@
.custom-calendar-card {
.card-calendar.extended {
width: 100px;
+
.card-date .date-label {
@include rem-size(font-size, 16);
font-weight: 600;
+
+ .date {
@include rem-size(font-size, 20);
}
}
}
+
.card-calendar {
.card-date {
.date {
font-family: $font-family-sans-serif;
font-size: 1.3rem;
- line-height: 1.4rem;
font-weight: 700;
+ line-height: 1.4rem;
&.day {
@include rem-size(font-size, 28);
@@ -205,10 +212,10 @@
}
&.month {
+ font-weight: 600;
text-transform: capitalize;
@include rem-size(font-size, 16);
@include rem-size(line-height, 21.1);
- font-weight: 600;
}
}
}
diff --git a/src/theme/ItaliaTheme/Components/_cardPersona.scss b/src/theme/ItaliaTheme/Components/_cardPersona.scss
index d87153fe5..ce217efce 100644
--- a/src/theme/ItaliaTheme/Components/_cardPersona.scss
+++ b/src/theme/ItaliaTheme/Components/_cardPersona.scss
@@ -1,7 +1,7 @@
.card-persona.card-flex {
.card-image-wrapper {
- flex: 1;
display: flex;
+ flex: 1;
align-items: flex-start;
}
@@ -35,8 +35,8 @@
width: 50%;
svg {
- height: 1.78rem;
width: auto;
+ height: 1.78rem;
}
span.text {
diff --git a/src/theme/ItaliaTheme/Components/_cmp-timeline.scss b/src/theme/ItaliaTheme/Components/_cmp-timeline.scss
index 0311c425a..4506e2ab8 100644
--- a/src/theme/ItaliaTheme/Components/_cmp-timeline.scss
+++ b/src/theme/ItaliaTheme/Components/_cmp-timeline.scss
@@ -25,14 +25,15 @@
}
.calendar-vertical {
- color: $link-color;
clear: both;
+ color: $link-color;
&::after {
display: block;
clear: both;
content: '';
}
+
.title-xxlarge-regular {
font-size: 2.222222rem;
@include media-breakpoint-down(md) {
@@ -41,6 +42,7 @@
font-weight: 400;
line-height: 1;
}
+
.title-medium-2 {
font-size: 1.5rem;
@include media-breakpoint-down(md) {
@@ -55,19 +57,19 @@
display: flex;
& .calendar-date-description {
- box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.17);
+ overflow: hidden;
width: 100%;
margin: 0 0 1.5rem 0.813rem;
- overflow: hidden;
+ box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.17);
@include media-breakpoint-up(sm) {
margin: 0 0 1.33rem 0.72rem;
}
& .calendar-date-description-content {
- padding: 1.25rem 1rem 1.25rem 1.5rem;
position: relative;
z-index: 0;
+ padding: 1.25rem 1rem 1.25rem 1.5rem;
border-left: 8px solid $primary-a0;
@include media-breakpoint-up(sm) {
@@ -96,19 +98,19 @@
}
& .calendar-date-day {
- width: 4.06rem;
- flex-shrink: 0;
position: relative;
z-index: 0;
+ width: 4.06rem;
+ flex-shrink: 0;
padding: 0.5rem 0;
padding-right: 1rem;
& p {
+ display: block;
+ margin: 0 0 5px 0;
font-family: 'Roboto Mono', monospace !important;
font-size: 2.5rem;
line-height: 1;
- margin: 0 0 5px 0;
- display: block;
}
& small {
@@ -128,27 +130,27 @@
}
&:after {
- content: '';
- width: 0.625rem;
- height: 0.625rem;
position: absolute;
z-index: 1;
top: 1.875rem;
right: 0.2px;
- background-color: $link-color;
+ width: 0.625rem;
+ height: 0.625rem;
border-radius: 5px;
+ background-color: $link-color;
+ content: '';
@include media-breakpoint-down(md) {
+ top: 1.56rem;
width: 0.56rem;
height: 0.56rem;
- top: 1.56rem;
}
}
&__month {
- font-weight: 600;
display: flex;
justify-content: center;
+ font-weight: 600;
}
&__year {
diff --git a/src/theme/ItaliaTheme/Components/_contactsCard.scss b/src/theme/ItaliaTheme/Components/_contactsCard.scss
index cedbaea16..4e31eb3da 100644
--- a/src/theme/ItaliaTheme/Components/_contactsCard.scss
+++ b/src/theme/ItaliaTheme/Components/_contactsCard.scss
@@ -1,17 +1,17 @@
.card.contacts-card {
.card-text {
- font-size: 1rem;
- @include rem-size(line-height, 28);
display: flex;
flex-wrap: wrap;
+ font-size: 1rem;
+ @include rem-size(line-height, 28);
span {
flex: 1 1 100%;
}
strong {
- text-transform: capitalize;
font-weight: 600;
+ text-transform: capitalize;
}
}
}
diff --git a/src/theme/ItaliaTheme/Components/_customerSatisfaction.scss b/src/theme/ItaliaTheme/Components/_customerSatisfaction.scss
index 3a5495900..9ecdfb403 100644
--- a/src/theme/ItaliaTheme/Components/_customerSatisfaction.scss
+++ b/src/theme/ItaliaTheme/Components/_customerSatisfaction.scss
@@ -4,13 +4,16 @@
overflow: hidden;
max-height: 0;
}
+
.feedback-form #vf-more-positive[aria-expanded='true'],
.feedback-form #vf-more-negative[aria-expanded='true'] {
max-height: 800px;
}
+
.feedback-form {
- margin: 0;
padding: 2rem 0;
+ margin: 0;
+
.title-medium-2-semi-bold {
font-size: 1.25rem;
font-weight: 600;
@@ -22,15 +25,19 @@
line-height: 1.2;
}
}
+
.rating-container {
padding-bottom: 0;
}
+
.form-check label {
font-weight: 600;
}
+
.answers-form .form-check:last-of-type {
margin-bottom: 0;
}
+
.card-wrapper[data-element='feedback'] {
padding: 1.8rem !important;
}
@@ -40,28 +47,32 @@
padding: 0.78rem;
margin-bottom: 2.111rem;
font-size: 1rem;
+
& > div {
font-size: 0.7777777778rem;
}
}
}
+
.answers-header,
.comments-header {
- font-size: 1.125rem;
- font-weight: 600;
- line-height: 2;
- padding: 0.875rem;
- margin-bottom: 2.375rem;
display: flex;
align-items: center;
justify-content: space-between;
+ padding: 0.875rem;
+ margin-bottom: 2.375rem;
box-shadow: 0 0.9375rem 1.325rem -0.9rem rgba(0, 0, 0, 0.1);
+ font-size: 1.125rem;
+ font-weight: 600;
+ line-height: 2;
+
> div {
+ margin-left: 0.5rem;
font-size: 0.875rem;
font-weight: 600;
line-height: 1.5;
- margin-left: 0.5rem;
}
+
h6 {
margin-bottom: 0;
}
@@ -71,47 +82,56 @@
.form-group {
margin-bottom: 0;
}
+
.invalid-feedback.form-text.text-muted {
display: block;
color: var(--bs-danger) !important;
}
+
small {
- margin: 0;
padding: 0.25rem 0.5rem;
+ margin: 0;
font-size: 0.777rem;
+
&.invalid-feedback {
display: block;
}
}
+
label.active {
color: #596d88;
}
+
textarea {
border: none;
- border-bottom: 1px solid #5b6f82;
border-radius: 0;
+ border-bottom: 1px solid #5b6f82;
}
}
+
.card:after {
content: none;
}
.form-step-actions[aria-hidden='true'] {
padding: 0rem;
+
.next-action,
.prev-action {
height: 0;
}
}
+
.form-step-actions[aria-hidden='false'] {
.next-action,
.prev-action {
- visibility: visible;
padding: 12px 24px;
+ visibility: visible;
}
+
&.button-shadow {
- box-shadow: 0 -0.6375rem 1.125rem -0.9rem rgba(0, 0, 0, 0.1);
margin-top: 1.25rem;
+ box-shadow: 0 -0.6375rem 1.125rem -0.9rem rgba(0, 0, 0, 0.1);
@media (min-width: #{map-get($grid-breakpoints, sm)}) {
margin-top: 1.11rem;
}
diff --git a/src/theme/ItaliaTheme/Components/_diffField.scss b/src/theme/ItaliaTheme/Components/_diffField.scss
index 7d80dadad..6b214d10a 100644
--- a/src/theme/ItaliaTheme/Components/_diffField.scss
+++ b/src/theme/ItaliaTheme/Components/_diffField.scss
@@ -2,18 +2,19 @@ table.diffField {
.previous-state,
.current-state {
display: flex;
- white-space: break-spaces;
width: 100% !important;
+ white-space: break-spaces;
// padding: 2rem 1rem;
.block.image img {
max-width: calc(100% - $grid-gutter-width) !important;
object-fit: contain;
}
+
.block.full-width,
.full-width {
- width: calc(100% - $grid-gutter-width) !important;
- left: unset !important;
right: unset !important;
+ left: unset !important;
+ width: calc(100% - $grid-gutter-width) !important;
margin: 0 !important;
}
// calendar block
@@ -26,33 +27,37 @@ table.diffField {
&.full-width {
width: calc(100% - $grid-gutter-width) !important;
}
- margin: auto !important;
left: 0 !important;
+ margin: auto !important;
+
.icon-play {
display: flex;
align-items: center;
justify-content: center;
+
.icon.fa-icon.placeholder {
position: relative;
display: inline-flex;
width: 2rem;
height: 2rem;
+
&:after,
&:before {
- content: '';
position: absolute;
+ top: 7%;
+ right: 0;
width: 0;
height: 0;
border-style: solid;
+ border-color: #333 transparent transparent transparent;
border-top-width: 16px;
+ border-right-width: 10px;
border-bottom-width: 16px;
border-left-width: 10px;
- border-right-width: 10px;
- border-color: #333 transparent transparent transparent;
- top: 7%;
+ content: '';
rotate: -90deg;
- right: 0;
}
+
&:after {
border-color: white transparent transparent transparent;
}
@@ -66,42 +71,48 @@ table.diffField {
&:last-child {
padding-top: 1rem !important;
}
+
&:first-child {
padding-bottom: 1rem !important;
border-bottom: 1px solid #ccc !important;
}
}
}
+
.current-state {
ins {
+ display: inline-flex;
background-color: lightgreen;
text-decoration: none;
- display: inline-flex;
}
+
.block.video .video-inner {
ins {
+ position: relative;
width: calc(100% + 12px);
height: 300px;
- position: relative;
img {
- width: calc(100% - 2 * $grid-gutter-width) !important;
left: calc($grid-gutter-width/2);
+ width: calc(100% - 2 * $grid-gutter-width) !important;
}
}
}
}
+
.current-state {
picture ins {
width: 100%;
+
img {
max-width: 100% !important;
- object-fit: contain;
- min-height: 200px;
height: 200px;
+ min-height: 200px;
+ object-fit: contain;
}
}
}
+
.current-state {
del {
background: pink;
diff --git a/src/theme/ItaliaTheme/Components/_galleryPreview.scss b/src/theme/ItaliaTheme/Components/_galleryPreview.scss
index be40db714..d3a1d6954 100644
--- a/src/theme/ItaliaTheme/Components/_galleryPreview.scss
+++ b/src/theme/ItaliaTheme/Components/_galleryPreview.scss
@@ -6,15 +6,15 @@
padding-bottom: 10px;
.modal-title {
- text-transform: uppercase;
- letter-spacing: 1.125px;
font-weight: 600;
+ letter-spacing: 1.125px;
+ text-transform: uppercase;
}
.modal-close-button {
button.close-button {
- background-color: transparent;
border: none;
+ background-color: transparent;
svg {
fill: $gray-400;
@@ -29,10 +29,10 @@
.item-preview {
position: relative;
- margin-bottom: 1.25rem;
- min-height: 72vh;
display: flex;
+ min-height: 72vh;
align-items: center;
+ margin-bottom: 1.25rem;
text-align: center;
img {
@@ -46,14 +46,14 @@
position: absolute;
z-index: 1;
top: 50%;
- border-radius: 100%;
- transform: translateY(-50%);
- height: 3.05rem;
- width: 1.94rem;
display: flex;
+ width: 1.94rem;
+ height: 3.05rem;
+ box-sizing: unset;
align-items: center;
justify-content: center;
- box-sizing: unset;
+ border-radius: 100%;
+ transform: translateY(-50%);
&.prev {
left: -2.75rem;
diff --git a/src/theme/ItaliaTheme/Components/_mobileMenu.scss b/src/theme/ItaliaTheme/Components/_mobileMenu.scss
index f38a90cbf..3bb9e7e12 100644
--- a/src/theme/ItaliaTheme/Components/_mobileMenu.scss
+++ b/src/theme/ItaliaTheme/Components/_mobileMenu.scss
@@ -120,8 +120,8 @@
text-align: center;
button.close-menu {
- float: none;
border-radius: 0;
+ float: none;
&:focus {
border-color: $focus-outline-color;
diff --git a/src/theme/ItaliaTheme/Components/_navscroll.scss b/src/theme/ItaliaTheme/Components/_navscroll.scss
index 11f6c2bb5..a35b3f0ed 100644
--- a/src/theme/ItaliaTheme/Components/_navscroll.scss
+++ b/src/theme/ItaliaTheme/Components/_navscroll.scss
@@ -11,6 +11,7 @@
li {
@include rem-size(font-size, 18);
@include rem-size(line-height, 28);
+
a {
span {
// @include rem-size(font-size, 18);
@@ -18,6 +19,7 @@
text-decoration: none;
}
}
+
a.nav-link.active {
span {
font-weight: 700;
diff --git a/src/theme/ItaliaTheme/Components/_pageHeader.scss b/src/theme/ItaliaTheme/Components/_pageHeader.scss
index e2494d09c..06e72e585 100644
--- a/src/theme/ItaliaTheme/Components/_pageHeader.scss
+++ b/src/theme/ItaliaTheme/Components/_pageHeader.scss
@@ -19,20 +19,21 @@
margin-bottom: 0;
}
}
+
.readingtime-dates {
small {
+ color: $caption-text;
font-size: 0.7rem;
font-weight: 400;
line-height: 0.8rem;
- color: $caption-text;
}
p.font-monospace {
+ margin-top: 0.2em;
+ color: $body-color;
font-size: 1rem;
- line-height: 1.16rem;
letter-spacing: 0.96px;
- color: $body-color;
- margin-top: 0.2em;
+ line-height: 1.16rem;
}
}
}
diff --git a/src/theme/ItaliaTheme/Components/_scrollToTop.scss b/src/theme/ItaliaTheme/Components/_scrollToTop.scss
index e84238527..1df6ecb26 100644
--- a/src/theme/ItaliaTheme/Components/_scrollToTop.scss
+++ b/src/theme/ItaliaTheme/Components/_scrollToTop.scss
@@ -23,6 +23,7 @@ body.cms-ui {
}
}
}
+
&.has-sidebar-collapsed {
.scroll-to-top {
.btn {
diff --git a/src/theme/ItaliaTheme/Components/_sharing.scss b/src/theme/ItaliaTheme/Components/_sharing.scss
index 9c346e900..cfd855fda 100644
--- a/src/theme/ItaliaTheme/Components/_sharing.scss
+++ b/src/theme/ItaliaTheme/Components/_sharing.scss
@@ -13,8 +13,8 @@
align-items: center;
.icon {
- height: 28px;
width: 28px;
+ height: 28px;
margin-right: 0.5em;
}
}
diff --git a/src/theme/ItaliaTheme/Components/_sideMenu.scss b/src/theme/ItaliaTheme/Components/_sideMenu.scss
index fd3ce06fb..da04211e9 100644
--- a/src/theme/ItaliaTheme/Components/_sideMenu.scss
+++ b/src/theme/ItaliaTheme/Components/_sideMenu.scss
@@ -1,19 +1,22 @@
.page-side-menu {
.menu-wrapper {
width: 100%;
+
.accordion-wrapper {
.accordion {
border-bottom: none;
+
.accordion-header {
- width: 100%;
display: block;
+ width: 100%;
+
button.accordion-button {
- border: none;
- background: transparent;
- width: 100%;
display: flex;
+ width: 100%;
align-items: center;
justify-content: space-between;
+ border: none;
+ background: transparent;
h3 {
padding: 0px;
@@ -33,14 +36,15 @@
.accordion-header {
button.accordion-button {
.accordion-title {
- padding-bottom: 1.3em;
padding-top: 1.3em;
+ padding-bottom: 1.3em;
}
}
}
}
}
}
+
.navbar.it-navscroll-wrapper {
.menu-wrapper {
padding: 0;
diff --git a/src/theme/ItaliaTheme/Components/_subsiteFooter.scss b/src/theme/ItaliaTheme/Components/_subsiteFooter.scss
index 05244d445..579525de6 100644
--- a/src/theme/ItaliaTheme/Components/_subsiteFooter.scss
+++ b/src/theme/ItaliaTheme/Components/_subsiteFooter.scss
@@ -2,8 +2,8 @@
background-color: $primary;
.text {
- color: $primary-text;
padding: 3.5em 0;
+ color: $primary-text;
h1,
h2,
diff --git a/src/theme/ItaliaTheme/Print/_all_pages.scss b/src/theme/ItaliaTheme/Print/_all_pages.scss
index e6fd53721..1cdcfd817 100644
--- a/src/theme/ItaliaTheme/Print/_all_pages.scss
+++ b/src/theme/ItaliaTheme/Print/_all_pages.scss
@@ -12,8 +12,8 @@
.content-area,
.public-ui {
- page-break-before: avoid;
page-break-after: avoid;
+ page-break-before: avoid;
page-break-inside: avoid;
}
@@ -25,6 +25,7 @@
.it-header-navbar-wrapper {
display: none;
}
+
.it-header-center-wrapper {
background: none;
@@ -56,9 +57,10 @@
/* Removed link list in PageHeader*/
.PageHeaderWrapper {
- page-break-before: avoid;
page-break-after: avoid;
+ page-break-before: avoid;
page-break-inside: avoid;
+
.link-list-wrapper {
display: none;
}
@@ -66,6 +68,7 @@
/* Removed max-height from accordion block*/
.block.accordion {
display: flex !important;
+
.accordion-item,
.accordion-content,
.accordion-inner {
diff --git a/src/theme/ItaliaTheme/Print/_bandi.scss b/src/theme/ItaliaTheme/Print/_bandi.scss
index 22ab4e2d5..deffd9b76 100644
--- a/src/theme/ItaliaTheme/Print/_bandi.scss
+++ b/src/theme/ItaliaTheme/Print/_bandi.scss
@@ -1,9 +1,9 @@
.contenttype-bando {
- @media print {
- .it-page-sections-container {
- #allegati {
- display: none;
- }
- }
- }
-}
\ No newline at end of file
+ @media print {
+ .it-page-sections-container {
+ #allegati {
+ display: none;
+ }
+ }
+ }
+}
diff --git a/src/theme/ItaliaTheme/Print/_event.scss b/src/theme/ItaliaTheme/Print/_event.scss
index 05812cb9c..825d8638a 100644
--- a/src/theme/ItaliaTheme/Print/_event.scss
+++ b/src/theme/ItaliaTheme/Print/_event.scss
@@ -1,12 +1,13 @@
.contenttype-event {
- @media print {
- .it-page-sections-container {
- #documenti {
- display: none;
- }
- #appuntamenti {
- display: none;
- }
- }
- }
+ @media print {
+ .it-page-sections-container {
+ #documenti {
+ display: none;
+ }
+
+ #appuntamenti {
+ display: none;
+ }
+ }
+ }
}
diff --git a/src/theme/ItaliaTheme/Print/_news_items.scss b/src/theme/ItaliaTheme/Print/_news_items.scss
index c116f36f8..f9924deb9 100644
--- a/src/theme/ItaliaTheme/Print/_news_items.scss
+++ b/src/theme/ItaliaTheme/Print/_news_items.scss
@@ -1,19 +1,19 @@
.contenttype-news-item {
- @media print {
- .it-page-sections-container {
- #documenti-allegati {
- display: none;
- }
+ @media print {
+ .it-page-sections-container {
+ #documenti-allegati {
+ display: none;
+ }
- #luoghi {
- .card-teaser {
- .card-body {
- .card-text {
- display: none;
- }
- }
- }
- }
- }
- }
-}
\ No newline at end of file
+ #luoghi {
+ .card-teaser {
+ .card-body {
+ .card-text {
+ display: none;
+ }
+ }
+ }
+ }
+ }
+ }
+}
diff --git a/src/theme/ItaliaTheme/Print/_persona.scss b/src/theme/ItaliaTheme/Print/_persona.scss
index 3a459e496..83786a609 100644
--- a/src/theme/ItaliaTheme/Print/_persona.scss
+++ b/src/theme/ItaliaTheme/Print/_persona.scss
@@ -1,9 +1,9 @@
.contenttype-persona {
- @media print {
- .it-page-sections-container {
- #documenti {
- display: none;
- }
- }
- }
-}
\ No newline at end of file
+ @media print {
+ .it-page-sections-container {
+ #documenti {
+ display: none;
+ }
+ }
+ }
+}
diff --git a/src/theme/ItaliaTheme/Print/_servizio.scss b/src/theme/ItaliaTheme/Print/_servizio.scss
index d7bc70f48..ee234882d 100644
--- a/src/theme/ItaliaTheme/Print/_servizio.scss
+++ b/src/theme/ItaliaTheme/Print/_servizio.scss
@@ -1,9 +1,9 @@
.contenttype-servizio {
- @media print {
- .it-page-sections-container {
- #correlati {
- display: none;
- }
- }
- }
-}
\ No newline at end of file
+ @media print {
+ .it-page-sections-container {
+ #correlati {
+ display: none;
+ }
+ }
+ }
+}
diff --git a/src/theme/ItaliaTheme/Views/_bando.scss b/src/theme/ItaliaTheme/Views/_bando.scss
index 756cd224f..8e3d832c9 100644
--- a/src/theme/ItaliaTheme/Views/_bando.scss
+++ b/src/theme/ItaliaTheme/Views/_bando.scss
@@ -7,6 +7,7 @@
font-weight: 700;
}
}
+
&.card {
padding: 0.8em;
}
diff --git a/src/theme/ItaliaTheme/Views/_cartellaModulistica.scss b/src/theme/ItaliaTheme/Views/_cartellaModulistica.scss
index 2856195b3..d5d810d9a 100644
--- a/src/theme/ItaliaTheme/Views/_cartellaModulistica.scss
+++ b/src/theme/ItaliaTheme/Views/_cartellaModulistica.scss
@@ -37,6 +37,7 @@ $docs-section-margin: 3em;
&.has-children {
padding-bottom: 1em;
}
+
.description {
font-size: 0.9rem;
}
@@ -47,6 +48,7 @@ $docs-section-margin: 3em;
justify-content: space-between;
padding: 0.4em 0;
gap: 4rem;
+
.title-wrap {
flex: 1;
@@ -54,6 +56,7 @@ $docs-section-margin: 3em;
font-size: 1.2em;
font-weight: 500;
}
+
p.description {
margin: 0;
}
@@ -84,26 +87,27 @@ $docs-section-margin: 3em;
}
a.modulistica-link {
- display: flex;
position: relative;
- align-items: center;
- justify-content: space-between;
+ display: flex;
height: fit-content;
flex-shrink: 0;
+ align-items: center;
+ justify-content: space-between;
svg.icon.fa-icon {
width: 1.6rem;
height: 1.6rem;
- font-size: 1.3rem;
order: 2;
margin-right: 1.15rem;
margin-left: 0.25rem;
+ font-size: 1.3rem;
}
+
svg.external-link {
- order: 1;
- right: 0;
- top: -2px;
position: absolute;
+ top: -2px;
+ right: 0;
+ order: 1;
}
}
}
@@ -118,6 +122,7 @@ $docs-section-margin: 3em;
color: $primary;
font-size: 1rem;
}
+
button {
padding: 0 0.4em;
border: none;
@@ -129,6 +134,7 @@ $docs-section-margin: 3em;
}
}
}
+
.accordion-content {
overflow: hidden;
height: auto;
@@ -181,18 +187,22 @@ $docs-section-margin: 3em;
align-items: center;
justify-content: unset;
gap: 2rem;
+
&.link-to-doc {
align-items: unset;
gap: 0.5rem;
+
.title-wrap,
a.modulistica-link {
flex-basis: 100%;
+
svg.icon.fa-icon {
- margin-left: 0;
margin-right: 1.25rem;
+ margin-left: 0;
}
}
}
+
.title-wrap {
&.single-row {
max-width: none;
@@ -201,11 +211,13 @@ $docs-section-margin: 3em;
&.modulo {
justify-content: space-between;
+
.title,
.downloads {
flex-basis: unset;
}
}
+
.title,
.downloads {
flex: 1 1 unset;
diff --git a/src/theme/ItaliaTheme/Views/_common.scss b/src/theme/ItaliaTheme/Views/_common.scss
index 031730129..2074766d5 100644
--- a/src/theme/ItaliaTheme/Views/_common.scss
+++ b/src/theme/ItaliaTheme/Views/_common.scss
@@ -228,11 +228,12 @@ div.sticky-wrapper {
.card-title {
a {
font-size: 1rem;
+ font-weight: 600;
text-decoration: none;
@include rem-size(line-height, 24);
- font-weight: 600;
}
}
+
svg {
fill: $link-color;
}
@@ -305,8 +306,8 @@ div.sticky-wrapper {
}
#view .it-carousel-wrapper .it-header-block .it-header-block-title h2.h4 {
- border-bottom: none;
padding-bottom: 0;
+ border-bottom: none;
}
form.ui.form.vertical-form fieldset.invisible {
@@ -332,8 +333,8 @@ dl.trasparenza-fields {
}
#metadata {
- font-family: $font-family-serif;
color: $gray-secondary;
+ font-family: $font-family-serif;
@include rem-size(font-size, 16px);
@include rem-size(line-height, 24px);
}
diff --git a/src/theme/ItaliaTheme/Views/_embeddedVideo.scss b/src/theme/ItaliaTheme/Views/_embeddedVideo.scss
index ccf660b07..992164641 100644
--- a/src/theme/ItaliaTheme/Views/_embeddedVideo.scss
+++ b/src/theme/ItaliaTheme/Views/_embeddedVideo.scss
@@ -40,8 +40,8 @@
left: 50%;
width: 3.6rem;
height: 2.5rem;
- background-color: rgba(0, 0, 0, 0.7);
border-radius: 15px;
+ background-color: rgba(0, 0, 0, 0.7);
color: $white;
cursor: pointer;
diff --git a/src/theme/ItaliaTheme/Views/_evento.scss b/src/theme/ItaliaTheme/Views/_evento.scss
index 388310632..3abc3da85 100644
--- a/src/theme/ItaliaTheme/Views/_evento.scss
+++ b/src/theme/ItaliaTheme/Views/_evento.scss
@@ -11,6 +11,7 @@ body.contenttype-event {
.point-list-aside.point-list-warning {
width: 7.5rem;
}
+
.point-list-content {
.card {
.card-body {
diff --git a/src/theme/ItaliaTheme/Views/_faqFolder.scss b/src/theme/ItaliaTheme/Views/_faqFolder.scss
index cbcb6d24c..a52cb54e1 100644
--- a/src/theme/ItaliaTheme/Views/_faqFolder.scss
+++ b/src/theme/ItaliaTheme/Views/_faqFolder.scss
@@ -60,6 +60,7 @@ body.contenttype-faqfolder {
.accordion-button[data-bs-toggle='collapse'][aria-expanded='false'] {
color: $primary;
}
+
.accordion-button[data-bs-toggle='collapse']:before {
width: 2.5rem;
}
diff --git a/src/theme/ItaliaTheme/Views/_paginaArgomento.scss b/src/theme/ItaliaTheme/Views/_paginaArgomento.scss
index f2d372a6f..3fee4362b 100644
--- a/src/theme/ItaliaTheme/Views/_paginaArgomento.scss
+++ b/src/theme/ItaliaTheme/Views/_paginaArgomento.scss
@@ -48,6 +48,7 @@ $header-image-argomento-height-mobile: 300px;
.card {
border-radius: 4px 0px 0px 4px;
+
&::after {
content: none;
}
diff --git a/src/theme/ItaliaTheme/Views/_puntoDiContatto.scss b/src/theme/ItaliaTheme/Views/_puntoDiContatto.scss
index 9eb4a2ddd..86a00c2af 100644
--- a/src/theme/ItaliaTheme/Views/_puntoDiContatto.scss
+++ b/src/theme/ItaliaTheme/Views/_puntoDiContatto.scss
@@ -2,6 +2,7 @@ body.contenttype-puntodicontatto {
.mr-1 {
margin-right: 0.5rem;
}
+
.ml-1 {
margin-left: 0.5rem;
}
diff --git a/src/theme/ItaliaTheme/Views/_servizio.scss b/src/theme/ItaliaTheme/Views/_servizio.scss
index d6fb4ddb6..99165168e 100644
--- a/src/theme/ItaliaTheme/Views/_servizio.scss
+++ b/src/theme/ItaliaTheme/Views/_servizio.scss
@@ -4,11 +4,13 @@
.calendar-date-day {
span.title-xxlarge-regular {
font-family: 'Roboto Mono', monospace;
+
.calendar-date-description {
.calendar-date-description-content {
color: $body-color;
}
}
+
.calendar-date-description:before {
width: 0px;
height: 0%;
@@ -32,10 +34,11 @@
fill: $link-color;
@include margin-size(margin-right, 20);
}
+
a {
- text-decoration: none;
font-size: 1rem;
font-weight: 600;
+ text-decoration: none;
}
}
}
diff --git a/src/theme/ItaliaTheme/Views/_slider.scss b/src/theme/ItaliaTheme/Views/_slider.scss
index 56312375a..b189b8837 100644
--- a/src/theme/ItaliaTheme/Views/_slider.scss
+++ b/src/theme/ItaliaTheme/Views/_slider.scss
@@ -29,10 +29,10 @@
li {
button:before {
- background-size: 20px;
- background-image: none;
border-radius: 50%;
background-color: $gray-700;
+ background-image: none;
+ background-size: 20px;
opacity: 1;
}
@@ -54,8 +54,8 @@
.icon {
width: 25px;
height: 40px;
- fill: $primary;
color: $primary;
+ fill: $primary;
}
&:hover .icon {
diff --git a/src/theme/ItaliaTheme/Views/_trasparenzaView.scss b/src/theme/ItaliaTheme/Views/_trasparenzaView.scss
index a0200fc1a..cb17077b8 100644
--- a/src/theme/ItaliaTheme/Views/_trasparenzaView.scss
+++ b/src/theme/ItaliaTheme/Views/_trasparenzaView.scss
@@ -1,12 +1,14 @@
#trasparenza-page-content {
margin-top: 4rem;
margin-bottom: 4rem;
+
.trasparenza-item-header {
font-size: 1.6rem;
}
.trasparenza-second-level-wrapper {
margin-left: 0.5rem;
+
.trasparenza-item {
font-size: 1.2rem;
}
diff --git a/src/theme/ItaliaTheme/Views/_uo.scss b/src/theme/ItaliaTheme/Views/_uo.scss
index d3a07188d..22cb20887 100644
--- a/src/theme/ItaliaTheme/Views/_uo.scss
+++ b/src/theme/ItaliaTheme/Views/_uo.scss
@@ -44,12 +44,14 @@ body.contenttype-unitaorganizzativa {
}
}
}
+
.card-wrapper.card-teaser-wrapper.row {
// Enable vertical gap in rows
--bs-gutter-y: 1.5rem;
+
&.documenti-pubblici {
- margin-left: 0;
margin-right: 0;
+ margin-left: 0;
}
}
}
diff --git a/src/theme/ItaliaTheme/Views/_venue.scss b/src/theme/ItaliaTheme/Views/_venue.scss
index d025fde77..35359b4e7 100644
--- a/src/theme/ItaliaTheme/Views/_venue.scss
+++ b/src/theme/ItaliaTheme/Views/_venue.scss
@@ -3,11 +3,12 @@
p.h2 {
@include rem-size(font-size, 28);
@include rem-size(line-height, 32);
- font-weight: 600;
color: $text-color;
+ font-weight: 600;
@include margin-size(margin-bottom, 16);
@include margin-size(margin-top, 16);
}
+
p {
color: $text-color;
}
@@ -15,8 +16,8 @@
section#metadata {
h5 {
- font-family: $font-family-base;
color: $gray-secondary;
+ font-family: $font-family-base;
}
}
}
diff --git a/src/theme/ItaliaTheme/Widgets/_canaleDigitaleWidget.scss b/src/theme/ItaliaTheme/Widgets/_canaleDigitaleWidget.scss
index c2a2a7703..5fde1e514 100644
--- a/src/theme/ItaliaTheme/Widgets/_canaleDigitaleWidget.scss
+++ b/src/theme/ItaliaTheme/Widgets/_canaleDigitaleWidget.scss
@@ -2,13 +2,14 @@
.introduction-helper-wrapper {
padding: 1rem 1rem 0 1rem;
}
+
.field-title::after {
display: inline-block;
width: 10px;
height: 10px;
+ border-radius: 50%;
margin-left: 5px;
background-color: #e40166;
- border-radius: 50%;
content: '';
}
}
diff --git a/src/theme/ItaliaTheme/Widgets/_dataGridWidget.scss b/src/theme/ItaliaTheme/Widgets/_dataGridWidget.scss
index 21ef1f2b4..59388159b 100644
--- a/src/theme/ItaliaTheme/Widgets/_dataGridWidget.scss
+++ b/src/theme/ItaliaTheme/Widgets/_dataGridWidget.scss
@@ -1,41 +1,49 @@
.data-grid-widget {
.ui.grid > .row .column {
label.required::after {
+ display: inline-block;
width: 10px;
height: 10px;
+ border-radius: 50%;
margin-left: 5px;
background-color: #e40166;
- border-radius: 50%;
content: '';
- display: inline-block;
}
}
+
.ui.grid {
margin: 0;
+
.row > .column.term-actions {
- padding-left: 0;
- padding-right: 0.5rem;
display: flex;
align-items: center;
justify-content: center;
+ padding-right: 0.5rem;
+ padding-left: 0;
+
.delete-term {
margin-right: 0 !important;
}
}
+
.row > .field-column {
- padding-left: 0.5rem;
padding-right: 0.5rem;
+ padding-left: 0.5rem;
}
+
.row {
+ position: relative;
flex-direction: row;
flex-wrap: wrap;
- position: relative;
+
.column.field-column {
- flex-basis: 45%;
width: unset !important ;
+ flex-basis: 45%;
+
&:not(:nth-last-child(2)) {
flex-grow: 0;
}
+
&:nth-child(2n) {
flex-grow: 0;
}
@@ -43,25 +51,30 @@
.ui.input {
width: 100% !important;
}
+
.date-time-widget-wrapper {
position: relative;
+
.item.ui.noborder.button {
position: absolute;
top: 26px;
right: 12px;
}
+
.DateInput {
width: 100% !important;
+
input {
width: 100% !important;
}
}
}
@media (max-width: 1365px) {
- flex-basis: 90%;
max-width: 90%;
+ flex-basis: 90%;
}
}
+
.one.wide.column.term-actions {
position: absolute;
right: 0;
@@ -81,16 +94,19 @@
&:not(:nth-last-child(2)) {
flex-grow: 0;
}
+
&:nth-last-child(2) {
max-width: 90%;
flex-basis: 90%;
}
+
.ui.input {
width: 100% !important;
}
@media (max-width: 1365px) {
flex-basis: 90%;
+
&:not(:nth-last-child(2)) {
flex-grow: unset;
}
diff --git a/src/theme/ItaliaTheme/Widgets/_iconWidget.scss b/src/theme/ItaliaTheme/Widgets/_iconWidget.scss
index 94c3c516f..76d62fccc 100644
--- a/src/theme/ItaliaTheme/Widgets/_iconWidget.scss
+++ b/src/theme/ItaliaTheme/Widgets/_iconWidget.scss
@@ -8,9 +8,9 @@
}
.label-container {
+ width: 100%;
margin-left: 15px;
text-align: left;
- width: 100%;
}
.ms-4 {
diff --git a/src/theme/ItaliaTheme/_common.scss b/src/theme/ItaliaTheme/_common.scss
index 5be0e208d..da45026c7 100644
--- a/src/theme/ItaliaTheme/_common.scss
+++ b/src/theme/ItaliaTheme/_common.scss
@@ -8,8 +8,10 @@
button.rounded-right {
&:focus {
border-color: $focus-outline-color !important;
- box-shadow: inset 0 1px 0 $focus-outline-color,
- 0 1px 1px $focus-outline-color, 0 0 0 0.2rem $focus-outline-color !important;
+ box-shadow:
+ inset 0 1px 0 $focus-outline-color,
+ 0 1px 1px $focus-outline-color,
+ 0 0 0 0.2rem $focus-outline-color !important;
outline: none;
}
}
@@ -34,8 +36,10 @@
&:focus {
border-color: $focus-outline-color;
- box-shadow: inset 0 1px 0 $focus-outline-color,
- 0 1px 1px $focus-outline-color, 0 0 0 0.2rem $focus-outline-color;
+ box-shadow:
+ inset 0 1px 0 $focus-outline-color,
+ 0 1px 1px $focus-outline-color,
+ 0 0 0 0.2rem $focus-outline-color;
outline: none;
}
}
@@ -72,6 +76,7 @@
.external-link {
fill: $link-color !important;
+
&.align-sub {
vertical-align: sub;
}
diff --git a/src/theme/ItaliaTheme/_main.scss b/src/theme/ItaliaTheme/_main.scss
index 8a9c5e181..501a7b85d 100644
--- a/src/theme/ItaliaTheme/_main.scss
+++ b/src/theme/ItaliaTheme/_main.scss
@@ -31,8 +31,8 @@
.documentDescription {
@include rem-size(font-size, 24);
margin-top: 1.5rem;
- line-height: 2rem;
color: $body-color;
+ line-height: 2rem;
white-space: pre-wrap;
}
@@ -104,9 +104,9 @@ iframe {
.callout {
padding: 1.25rem;
border: 1px solid $neutral-1-a2;
+ border-radius: 0.25rem;
border-left-width: 0.4rem;
margin: 1.25rem 0;
- border-radius: 0.25rem;
p,
.public-DraftStyleDefault-block {
@@ -144,9 +144,9 @@ iframe {
a {
display: inline-block;
padding: 1em 2em;
+ border-radius: $btn-border-radius;
margin: 0.5em 1em 0.5em 0;
background-color: $primary;
- border-radius: $btn-border-radius;
color: $primary-text;
font-weight: 700;
text-align: center;
@@ -287,6 +287,7 @@ iframe {
.public-ui table.ui.table {
display: block;
overflow: auto;
+
th {
white-space: nowrap;
}
@@ -308,23 +309,25 @@ iframe {
border-bottom: 1px solid hsla(0, 0%, 100%, 0.5);
@media (max-width: #{map-get($grid-breakpoints, md)}) {
&:empty {
- margin-bottom: 0 !important;
padding-bottom: 0 !important;
+ margin-bottom: 0 !important;
}
}
}
}
+
.row > div ~ div h4:empty {
position: relative;
border-bottom: none;
+
&::after {
- content: '';
position: absolute;
- width: calc(100% + $grid-gutter-width);
- background: hsla(0, 0%, 100%, 0.5);
- height: 1px;
bottom: -1px;
left: -$grid-gutter-width;
+ width: calc(100% + $grid-gutter-width);
+ height: 1px;
+ background: hsla(0, 0%, 100%, 0.5);
+ content: '';
@media (max-width: #{map-get($grid-breakpoints, md)}) {
content: none;
}
diff --git a/src/theme/_cms-ui.scss b/src/theme/_cms-ui.scss
index 0e91abaab..065b20d9a 100644
--- a/src/theme/_cms-ui.scss
+++ b/src/theme/_cms-ui.scss
@@ -1,4 +1,5 @@
@import 'cms-ui_container';
+
body.cms-ui {
.block {
font-family: $font-family-serif;
@@ -56,9 +57,9 @@ body.cms-ui {
&.title {
.public-DraftEditorPlaceholder-inner {
+ font-size: 2.66rem;
font-weight: bold;
line-height: 1.25;
- font-size: 2.66rem;
}
}
@@ -134,8 +135,8 @@ body.cms-ui {
.input-anchorlink-theme input:focus,
.ui.icon.button:focus,
.ui.basic.button:focus {
- outline: solid 2px $focus-outline-color;
border-radius: 0;
+ outline: solid 2px $focus-outline-color;
}
.cancel .icon {
@@ -144,24 +145,24 @@ body.cms-ui {
}
input#field-link {
+ height: auto;
color: #444;
font-weight: normal;
- height: auto;
}
#field-data-element-select {
- min-width: 220px;
+ position: relative;
width: 100%;
+ min-width: 220px;
height: 34px;
- font-family: 'Poppins', 'Helvetica Neue', Arial, Helvetica, sans-serif;
- font-size: 0.8rem;
- position: relative;
- font-weight: normal;
- font-style: normal;
padding: 0 7px 0 12px;
margin-top: 0.2rem;
background-color: transparent;
color: #444;
+ font-family: 'Poppins', 'Helvetica Neue', Arial, Helvetica, sans-serif;
+ font-size: 0.8rem;
+ font-style: normal;
+ font-weight: normal;
.react-select__control {
min-height: 0;
@@ -184,8 +185,8 @@ body.cms-ui {
padding-left: 0.8rem;
.ui.basic.button:focus {
- outline: solid 2px $focus-outline-color;
border-radius: 0;
+ outline: solid 2px $focus-outline-color;
}
}
}
@@ -223,6 +224,7 @@ body.cms-ui {
/* FIX CT SELECT REACTVIRTUALIZED */
.ReactVirtualized__Grid.ReactVirtualized__List {
width: 100% !important;
+
.ReactVirtualized__Grid__innerScrollContainer {
max-width: none !important;
}
@@ -267,71 +269,83 @@ body.cms-ui {
fill: #999 !important;
}
}
+
.sidebar-container {
.numbers-block-sidebar-form-container {
padding-bottom: 1rem;
}
+
.breadcrumbs {
.breadcrumb {
flex-wrap: wrap;
row-gap: 0.5em;
+
a.section {
position: relative;
+
&:not(:last-of-type) {
max-width: 33.33%;
}
+
&:last-of-type {
max-width: 100%;
+
.tooltip {
- white-space: normal;
text-overflow: unset;
+ white-space: normal;
}
}
}
+
.tooltip {
overflow: hidden;
- white-space: nowrap;
text-overflow: ellipsis;
+ white-space: nowrap;
+
&:hover + .tooltip-text {
- visibility: visible;
opacity: 1;
+ visibility: visible;
}
+
&:last-child {
max-width: none;
- white-space: normal;
text-overflow: unset;
+ white-space: normal;
}
}
+
.tooltip-text {
position: absolute;
- visibility: hidden;
z-index: 1;
bottom: 125%;
left: 50%;
- margin-left: -60px;
width: 8rem;
+ padding: 5px;
+ border-radius: 0.2em;
+ margin-left: -60px;
background-color: $gray-200;
color: $black;
font-size: 0.8em;
- text-align: center;
- border-radius: 0.2em;
- padding: 5px;
opacity: 0;
+ text-align: center;
transition: opacity 0.3s;
+ visibility: hidden;
+
&::after {
- content: '';
position: absolute;
top: 100%;
left: 50%;
- margin-left: -5px;
border-width: 5px;
border-style: solid;
border-color: $gray-200 transparent transparent transparent;
+ margin-left: -5px;
+ content: '';
}
}
}
}
}
+
.icon-align-name {
svg.icon {
margin-right: 0.75rem !important;
@@ -373,10 +387,12 @@ body.cms-ui {
.button.info.active {
background-color: $alert-info;
}
+
.button.warning,
.button.warning.active {
background-color: $alert-warning;
}
+
.button.danger,
.button.danger.active {
background-color: $alert-danger;
@@ -436,6 +452,7 @@ body.cms-ui {
z-index: 0;
}
}
+
&.image {
.block.align {
&.left,
@@ -455,6 +472,7 @@ body.cms-ui {
text-decoration: $link-decoration;
}
}
+
.footer-configuration-widget {
.DraftEditor-editorContainer {
a.link-anchorlink-theme {
@@ -563,7 +581,9 @@ body.cms-ui {
background-color: #fff;
border-bottom-left-radius: 3px;
border-bottom-right-radius: 3px;
- box-shadow: 0 0 8px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.05);
+ box-shadow:
+ 0 0 8px rgba(0, 0, 0, 0.1),
+ 0 2px 4px rgba(0, 0, 0, 0.05);
list-style-type: none;
transform: translateX(-50%);
@@ -710,14 +730,16 @@ body.cms-ui {
word-break: break-word;
}
}
+
&.view-diffview,
&.section-historyview {
.ui.table,
#toolbar .ui.table {
- table-layout: fixed;
width: 100%;
+ table-layout: fixed;
}
}
+
&.view-diffview {
@import 'bootstrap/scss/card';
@import 'bootstrap-italia/src/scss/custom/card';
@@ -729,6 +751,7 @@ body.has-toolbar {
#toolbar .toolbar-content.show {
z-index: 9;
}
+
&.public-ui #toolbar {
.toolbar {
&:before {
diff --git a/src/theme/_cms-ui_container.scss b/src/theme/_cms-ui_container.scss
index 2eed80ace..b8aaa83df 100644
--- a/src/theme/_cms-ui_container.scss
+++ b/src/theme/_cms-ui_container.scss
@@ -36,9 +36,10 @@ $largeMonitorGutter: auto;
margin-right: $gutter !important;
margin-left: $gutter !important;
}
+
.public-ui .full-width > .px-4.container {
- padding-left: 0 !important;
padding-right: 0 !important;
+ padding-left: 0 !important;
}
}
@@ -58,7 +59,9 @@ $largeMonitorGutter: auto;
}
}
-body.cms-ui:not(.has-toolbar):not(.has-sidebar):not(.has-toolbar-collapsed):not(.has-sidebar-collapsed) {
+body.cms-ui:not(.has-toolbar):not(.has-sidebar):not(.has-toolbar-collapsed):not(
+ .has-sidebar-collapsed
+ ) {
@include contentWidth(0);
}
@@ -74,7 +77,9 @@ body.cms-ui.has-toolbar.has-sidebar-collapsed {
@include contentWidth($toolbarWidth + $collapsedWidth);
}
-body.cms-ui.has-toolbar-collapsed:not(.has-sidebar):not(.has-sidebar-collapsed) {
+body.cms-ui.has-toolbar-collapsed:not(.has-sidebar):not(
+ .has-sidebar-collapsed
+ ) {
@include contentWidth($collapsedWidth);
}
diff --git a/src/theme/_site-variables.scss b/src/theme/_site-variables.scss
index 88dd8f354..dd82b17ce 100644
--- a/src/theme/_site-variables.scss
+++ b/src/theme/_site-variables.scss
@@ -32,8 +32,10 @@ $gdpr-toggle: #b22515 !default;
$gdpr-toggle-border: #000 !default;
$gdpr-focus-color: #ff9800 !default;
$gdpr-link-color: #004285 !default;
-$gdpr-focus-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15),
- 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 0 0.2rem $gdpr-focus-color !default;
+$gdpr-focus-shadow:
+ inset 0 1px 0 rgba(255, 255, 255, 0.15),
+ 0 1px 1px rgba(0, 0, 0, 0.075),
+ 0 0 0 0.2rem $gdpr-focus-color !default;
$caption-text: #455b71 !default;
diff --git a/src/theme/bootstrap-override/bootstrap-italia/_breadcrumb.scss b/src/theme/bootstrap-override/bootstrap-italia/_breadcrumb.scss
index 67094dd43..7cb9235ba 100644
--- a/src/theme/bootstrap-override/bootstrap-italia/_breadcrumb.scss
+++ b/src/theme/bootstrap-override/bootstrap-italia/_breadcrumb.scss
@@ -5,9 +5,9 @@
align-items: center;
span.separator {
+ top: 0;
display: inline;
border: none;
- top: 0;
margin-top: 0;
margin-bottom: 0;
}
diff --git a/src/theme/bootstrap-override/bootstrap-italia/_footer.scss b/src/theme/bootstrap-override/bootstrap-italia/_footer.scss
index a6a5a4d1f..863a9781f 100644
--- a/src/theme/bootstrap-override/bootstrap-italia/_footer.scss
+++ b/src/theme/bootstrap-override/bootstrap-italia/_footer.scss
@@ -8,18 +8,22 @@
flex-direction: column;
align-items: flex-start;
}
+
.nextGenerationEULogo {
- height: 75px;
width: auto;
+ height: 75px;
aspect-ratio: 167 / 41;
}
+
a {
h2 {
font-size: 1.777778rem;
}
+
h3 {
font-weight: 600;
}
+
.icon {
width: 75px;
height: 75px;
@@ -29,12 +33,12 @@
}
h4 {
- color: $white;
- font-size: 16px;
- text-transform: uppercase;
display: flex;
align-items: center;
margin-bottom: 0.889rem;
+ color: $white;
+ font-size: 16px;
+ text-transform: uppercase;
a {
font-weight: 700;
@@ -96,6 +100,7 @@
a {
word-break: normal;
}
+
a,
button,
a:hover:not(.disabled),
diff --git a/src/theme/bootstrap-override/bootstrap-italia/_linklist.scss b/src/theme/bootstrap-override/bootstrap-italia/_linklist.scss
index 6a1e151cf..1da423dbc 100644
--- a/src/theme/bootstrap-override/bootstrap-italia/_linklist.scss
+++ b/src/theme/bootstrap-override/bootstrap-italia/_linklist.scss
@@ -2,10 +2,12 @@
span {
color: $link-color;
}
+
&:hover:not(.disabled) {
span {
color: $link-color;
}
+
.icon {
fill: $link-color;
}
diff --git a/src/theme/bootstrap-override/bootstrap-italia/_megamenu.scss b/src/theme/bootstrap-override/bootstrap-italia/_megamenu.scss
index c6a8923fd..bd1c70548 100644
--- a/src/theme/bootstrap-override/bootstrap-italia/_megamenu.scss
+++ b/src/theme/bootstrap-override/bootstrap-italia/_megamenu.scss
@@ -8,6 +8,7 @@
padding-bottom: $dvt-navigation-v-padding;
}
}
+
&:not(.navbar-secondary) {
li {
a.nav-link {
diff --git a/src/theme/bootstrap-override/bootstrap-italia/_point-list.scss b/src/theme/bootstrap-override/bootstrap-italia/_point-list.scss
index 710d070ea..2dad29604 100644
--- a/src/theme/bootstrap-override/bootstrap-italia/_point-list.scss
+++ b/src/theme/bootstrap-override/bootstrap-italia/_point-list.scss
@@ -3,9 +3,9 @@
.point-list-aside {
&.point-list-warning {
width: 6.8rem;
- color: $link-color;
border-color: currentColor;
border-right-width: 2px;
+ color: $link-color;
.point-date {
display: flex;
@@ -19,11 +19,12 @@
}
.point-list-aside.point-list-warning:after {
- background-color: $primary;
+ right: -7px;
width: 0.67em;
height: 0.67em;
- right: -7px;
+ background-color: $primary;
}
+
.point-list-content {
.card-teaser {
&.card {
diff --git a/src/theme/extras/_checkbox.scss b/src/theme/extras/_checkbox.scss
index cae372cce..52ffb8bc6 100644
--- a/src/theme/extras/_checkbox.scss
+++ b/src/theme/extras/_checkbox.scss
@@ -5,8 +5,8 @@
top: 4px;
left: 3px;
width: 6px;
- margin: 0;
border-bottom: 0;
+ margin: 0;
transform: rotate(90deg);
}
diff --git a/src/theme/extras/_modals.scss b/src/theme/extras/_modals.scss
index 0def87a27..99ee05d38 100644
--- a/src/theme/extras/_modals.scss
+++ b/src/theme/extras/_modals.scss
@@ -5,8 +5,8 @@
margin: 0;
#search-button {
- line-height: 2rem;
border-bottom: 1px solid $neutral-1-a7;
+ line-height: 2rem;
}
.modal-content {
@@ -39,11 +39,13 @@
.modal-dialog {
.modal-header {
align-items: flex-start;
+
button.btn-close {
- background: none;
display: flex;
- align-items: center;
width: fit-content;
+ align-items: center;
+ background: none;
+
span {
font-size: 50px;
}
diff --git a/src/theme/extras/_search.scss b/src/theme/extras/_search.scss
index 721b2aad6..74e887ea4 100644
--- a/src/theme/extras/_search.scss
+++ b/src/theme/extras/_search.scss
@@ -11,7 +11,9 @@ body.search-modal-opened {
#search-modal {
.btn-link {
&:focus {
- box-shadow: $btn-box-shadow, 0 0 0 $btn-focus-width rgba($link-color, 0.5);
+ box-shadow:
+ $btn-box-shadow,
+ 0 0 0 $btn-focus-width rgba($link-color, 0.5);
}
}
@@ -42,31 +44,37 @@ body.search-modal-opened {
border-right: 2px solid hsl(36deg, 100%, 50%) !important;
border-left: 2px solid hsl(36deg, 100%, 50%) !important;
}
+
a.nav-link.active:focus {
border-right: 2px solid hsl(36deg, 100%, 50%) !important;
border-left: 2px solid hsl(36deg, 100%, 50%) !important;
}
}
+
&:last-of-type {
a.nav-link:focus {
border-right: 2px solid hsl(36deg, 100%, 50%) !important;
border-right: 2px solid hsl(36deg, 100%, 50%) !important;
}
}
+
a.nav-link {
width: 100%;
border-top: 2px solid transparent;
+
&.active {
- border-left: none;
border-right: none;
+ border-left: none;
}
+
&:focus {
border-color: hsl(36deg, 100%, 50%) !important;
- box-shadow: 0 0 0 2px hsl(36deg, 100%, 50%) !important;
- outline: none;
border-right: none;
border-left: none;
+ box-shadow: 0 0 0 2px hsl(36deg, 100%, 50%) !important;
+ outline: none;
}
+
&:not(.active):focus {
border-right: 2px solid hsl(36deg, 100%, 50%) !important;
}
@@ -88,6 +96,7 @@ body.search-modal-opened {
&::after {
content: none;
}
+
.card-body {
.category-top {
.data:before {
@@ -106,6 +115,7 @@ body.search-modal-opened {
}
}
}
+
.searchSpinnerWrapper {
display: flex;
align-items: center;
diff --git a/src/theme/extras/_sidebar.scss b/src/theme/extras/_sidebar.scss
index 12619d2ec..5d9147211 100644
--- a/src/theme/extras/_sidebar.scss
+++ b/src/theme/extras/_sidebar.scss
@@ -4,13 +4,16 @@ body.cms-ui {
.toolbar {
height: auto;
}
+
img {
max-width: 100%;
}
+
.dropzone {
.toolbar-inner {
width: 100%;
min-width: unset;
+
input {
height: auto;
font-size: 0.8em;
diff --git a/yarn.lock b/yarn.lock
index 17cdc9998..266bbaf2e 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -5,6 +5,13 @@ __metadata:
version: 6
cacheKey: 8
+"@aashutoshrathi/word-wrap@npm:^1.2.3":
+ version: 1.2.6
+ resolution: "@aashutoshrathi/word-wrap@npm:1.2.6"
+ checksum: ada901b9e7c680d190f1d012c84217ce0063d8f5c5a7725bb91ec3c5ed99bb7572680eb2d2938a531ccbaec39a95422fcd8a6b4a13110c7d98dd75402f66a0cd
+ languageName: node
+ linkType: hard
+
"@ampproject/remapping@npm:^2.1.0":
version: 2.2.0
resolution: "@ampproject/remapping@npm:2.2.0"
@@ -15,6 +22,16 @@ __metadata:
languageName: node
linkType: hard
+"@ampproject/remapping@npm:^2.2.0":
+ version: 2.2.1
+ resolution: "@ampproject/remapping@npm:2.2.1"
+ dependencies:
+ "@jridgewell/gen-mapping": ^0.3.0
+ "@jridgewell/trace-mapping": ^0.3.9
+ checksum: 03c04fd526acc64a1f4df22651186f3e5ef0a9d6d6530ce4482ec9841269cf7a11dbb8af79237c282d721c5312024ff17529cd72cc4768c11e999b58e2302079
+ languageName: node
+ linkType: hard
+
"@babel/code-frame@npm:^7.0.0, @babel/code-frame@npm:^7.18.6":
version: 7.18.6
resolution: "@babel/code-frame@npm:7.18.6"
@@ -24,6 +41,16 @@ __metadata:
languageName: node
linkType: hard
+"@babel/code-frame@npm:^7.22.13, @babel/code-frame@npm:^7.23.4":
+ version: 7.23.4
+ resolution: "@babel/code-frame@npm:7.23.4"
+ dependencies:
+ "@babel/highlight": ^7.23.4
+ chalk: ^2.4.2
+ checksum: 29999d08c3dbd803f3c296dae7f4f40af1f9e381d6bbc76e5a75327c4b8b023bcb2e209843d292f5d71c3b5c845df1da959d415ed862d6a68e0ad6c5c9622d37
+ languageName: node
+ linkType: hard
+
"@babel/code-frame@npm:^7.22.5":
version: 7.22.5
resolution: "@babel/code-frame@npm:7.22.5"
@@ -40,6 +67,13 @@ __metadata:
languageName: node
linkType: hard
+"@babel/compat-data@npm:^7.22.6, @babel/compat-data@npm:^7.22.9, @babel/compat-data@npm:^7.23.3":
+ version: 7.23.3
+ resolution: "@babel/compat-data@npm:7.23.3"
+ checksum: 52fff649d4e25b10e29e8a9b1c9ef117f44d354273c17b5ef056555f8e5db2429b35df4c38bdfb6865d23133e0fba92e558d31be87bb8457db4ac688646fdbf1
+ languageName: node
+ linkType: hard
+
"@babel/core@npm:7.19.6":
version: 7.19.6
resolution: "@babel/core@npm:7.19.6"
@@ -86,6 +120,43 @@ __metadata:
languageName: node
linkType: hard
+"@babel/core@npm:^7.16.0":
+ version: 7.23.3
+ resolution: "@babel/core@npm:7.23.3"
+ dependencies:
+ "@ampproject/remapping": ^2.2.0
+ "@babel/code-frame": ^7.22.13
+ "@babel/generator": ^7.23.3
+ "@babel/helper-compilation-targets": ^7.22.15
+ "@babel/helper-module-transforms": ^7.23.3
+ "@babel/helpers": ^7.23.2
+ "@babel/parser": ^7.23.3
+ "@babel/template": ^7.22.15
+ "@babel/traverse": ^7.23.3
+ "@babel/types": ^7.23.3
+ convert-source-map: ^2.0.0
+ debug: ^4.1.0
+ gensync: ^1.0.0-beta.2
+ json5: ^2.2.3
+ semver: ^6.3.1
+ checksum: d306c1fa68972f4e085e9e7ad165aee80eb801ef331f6f07808c86309f03534d638b82ad00a3bc08f4d3de4860ccd38512b2790a39e6acc2caf9ea21e526afe7
+ languageName: node
+ linkType: hard
+
+"@babel/eslint-parser@npm:7.23.3, @babel/eslint-parser@npm:^7.16.3":
+ version: 7.23.3
+ resolution: "@babel/eslint-parser@npm:7.23.3"
+ dependencies:
+ "@nicolo-ribaudo/eslint-scope-5-internals": 5.1.1-v1
+ eslint-visitor-keys: ^2.1.0
+ semver: ^6.3.1
+ peerDependencies:
+ "@babel/core": ^7.11.0
+ eslint: ^7.5.0 || ^8.0.0
+ checksum: 9573daebe21af5123c302c307be80cacf1c2bf236a9497068a14726d3944ef55e1282519d0ccf51882dfc369359a3442299c98cb22a419e209924db39d4030fd
+ languageName: node
+ linkType: hard
+
"@babel/generator@npm:^7.19.3":
version: 7.19.3
resolution: "@babel/generator@npm:7.19.3"
@@ -108,15 +179,15 @@ __metadata:
languageName: node
linkType: hard
-"@babel/generator@npm:^7.22.7":
- version: 7.22.9
- resolution: "@babel/generator@npm:7.22.9"
+"@babel/generator@npm:^7.23.3, @babel/generator@npm:^7.23.4":
+ version: 7.23.4
+ resolution: "@babel/generator@npm:7.23.4"
dependencies:
- "@babel/types": ^7.22.5
+ "@babel/types": ^7.23.4
"@jridgewell/gen-mapping": ^0.3.2
"@jridgewell/trace-mapping": ^0.3.17
jsesc: ^2.5.1
- checksum: 7c9d2c58b8d5ac5e047421a6ab03ec2ff5d9a5ff2c2212130a0055e063ac349e0b19d435537d6886c999771aef394832e4f54cd9fc810100a7f23d982f6af06b
+ checksum: 7403717002584eaeb58559f4d0de19b79e924ef2735711278f7cb5206d081428bf3960578566d6fa4102b7b30800d44f70acffea5ecef83f0cb62361c2a23062
languageName: node
linkType: hard
@@ -129,6 +200,15 @@ __metadata:
languageName: node
linkType: hard
+"@babel/helper-annotate-as-pure@npm:^7.22.5":
+ version: 7.22.5
+ resolution: "@babel/helper-annotate-as-pure@npm:7.22.5"
+ dependencies:
+ "@babel/types": ^7.22.5
+ checksum: 53da330f1835c46f26b7bf4da31f7a496dee9fd8696cca12366b94ba19d97421ce519a74a837f687749318f94d1a37f8d1abcbf35e8ed22c32d16373b2f6198d
+ languageName: node
+ linkType: hard
+
"@babel/helper-builder-binary-assignment-operator-visitor@npm:^7.18.6":
version: 7.18.9
resolution: "@babel/helper-builder-binary-assignment-operator-visitor@npm:7.18.9"
@@ -139,6 +219,15 @@ __metadata:
languageName: node
linkType: hard
+"@babel/helper-builder-binary-assignment-operator-visitor@npm:^7.22.15":
+ version: 7.22.15
+ resolution: "@babel/helper-builder-binary-assignment-operator-visitor@npm:7.22.15"
+ dependencies:
+ "@babel/types": ^7.22.15
+ checksum: 639c697a1c729f9fafa2dd4c9af2e18568190299b5907bd4c2d0bc818fcbd1e83ffeecc2af24327a7faa7ac4c34edd9d7940510a5e66296c19bad17001cf5c7a
+ languageName: node
+ linkType: hard
+
"@babel/helper-compilation-targets@npm:^7.17.7, @babel/helper-compilation-targets@npm:^7.18.9, @babel/helper-compilation-targets@npm:^7.19.0, @babel/helper-compilation-targets@npm:^7.19.3":
version: 7.19.3
resolution: "@babel/helper-compilation-targets@npm:7.19.3"
@@ -153,6 +242,19 @@ __metadata:
languageName: node
linkType: hard
+"@babel/helper-compilation-targets@npm:^7.22.15, @babel/helper-compilation-targets@npm:^7.22.6":
+ version: 7.22.15
+ resolution: "@babel/helper-compilation-targets@npm:7.22.15"
+ dependencies:
+ "@babel/compat-data": ^7.22.9
+ "@babel/helper-validator-option": ^7.22.15
+ browserslist: ^4.21.9
+ lru-cache: ^5.1.1
+ semver: ^6.3.1
+ checksum: ce85196769e091ae54dd39e4a80c2a9df1793da8588e335c383d536d54f06baf648d0a08fc873044f226398c4ded15c4ae9120ee18e7dfd7c639a68e3cdc9980
+ languageName: node
+ linkType: hard
+
"@babel/helper-create-class-features-plugin@npm:^7.18.6, @babel/helper-create-class-features-plugin@npm:^7.19.0":
version: 7.19.0
resolution: "@babel/helper-create-class-features-plugin@npm:7.19.0"
@@ -170,6 +272,25 @@ __metadata:
languageName: node
linkType: hard
+"@babel/helper-create-class-features-plugin@npm:^7.21.0, @babel/helper-create-class-features-plugin@npm:^7.22.15":
+ version: 7.22.15
+ resolution: "@babel/helper-create-class-features-plugin@npm:7.22.15"
+ dependencies:
+ "@babel/helper-annotate-as-pure": ^7.22.5
+ "@babel/helper-environment-visitor": ^7.22.5
+ "@babel/helper-function-name": ^7.22.5
+ "@babel/helper-member-expression-to-functions": ^7.22.15
+ "@babel/helper-optimise-call-expression": ^7.22.5
+ "@babel/helper-replace-supers": ^7.22.9
+ "@babel/helper-skip-transparent-expression-wrappers": ^7.22.5
+ "@babel/helper-split-export-declaration": ^7.22.6
+ semver: ^6.3.1
+ peerDependencies:
+ "@babel/core": ^7.0.0
+ checksum: 52c500d8d164abb3a360b1b7c4b8fff77bc4a5920d3a2b41ae6e1d30617b0dc0b972c1f5db35b1752007e04a748908b4a99bc872b73549ae837e87dcdde005a3
+ languageName: node
+ linkType: hard
+
"@babel/helper-create-regexp-features-plugin@npm:^7.18.6, @babel/helper-create-regexp-features-plugin@npm:^7.19.0":
version: 7.19.0
resolution: "@babel/helper-create-regexp-features-plugin@npm:7.19.0"
@@ -182,6 +303,19 @@ __metadata:
languageName: node
linkType: hard
+"@babel/helper-create-regexp-features-plugin@npm:^7.22.15, @babel/helper-create-regexp-features-plugin@npm:^7.22.5":
+ version: 7.22.15
+ resolution: "@babel/helper-create-regexp-features-plugin@npm:7.22.15"
+ dependencies:
+ "@babel/helper-annotate-as-pure": ^7.22.5
+ regexpu-core: ^5.3.1
+ semver: ^6.3.1
+ peerDependencies:
+ "@babel/core": ^7.0.0
+ checksum: 0243b8d4854f1dc8861b1029a46d3f6393ad72f366a5a08e36a4648aa682044f06da4c6e87a456260e1e1b33c999f898ba591a0760842c1387bcc93fbf2151a6
+ languageName: node
+ linkType: hard
+
"@babel/helper-define-polyfill-provider@npm:^0.3.3":
version: 0.3.3
resolution: "@babel/helper-define-polyfill-provider@npm:0.3.3"
@@ -198,6 +332,21 @@ __metadata:
languageName: node
linkType: hard
+"@babel/helper-define-polyfill-provider@npm:^0.4.3":
+ version: 0.4.3
+ resolution: "@babel/helper-define-polyfill-provider@npm:0.4.3"
+ dependencies:
+ "@babel/helper-compilation-targets": ^7.22.6
+ "@babel/helper-plugin-utils": ^7.22.5
+ debug: ^4.1.1
+ lodash.debounce: ^4.0.8
+ resolve: ^1.14.2
+ peerDependencies:
+ "@babel/core": ^7.4.0 || ^8.0.0-0 <8.0.0
+ checksum: 5d21e3f47b320e4b5b644195ec405e7ebc3739e48e65899efc808c5fa9c3bf5b06ce0d8ff5246ca99d1411e368f4557bc66730196c5781a5c4e986ee703bee79
+ languageName: node
+ linkType: hard
+
"@babel/helper-environment-visitor@npm:^7.18.9":
version: 7.18.9
resolution: "@babel/helper-environment-visitor@npm:7.18.9"
@@ -205,6 +354,13 @@ __metadata:
languageName: node
linkType: hard
+"@babel/helper-environment-visitor@npm:^7.22.20":
+ version: 7.22.20
+ resolution: "@babel/helper-environment-visitor@npm:7.22.20"
+ checksum: d80ee98ff66f41e233f36ca1921774c37e88a803b2f7dca3db7c057a5fea0473804db9fb6729e5dbfd07f4bed722d60f7852035c2c739382e84c335661590b69
+ languageName: node
+ linkType: hard
+
"@babel/helper-environment-visitor@npm:^7.22.5":
version: 7.22.5
resolution: "@babel/helper-environment-visitor@npm:7.22.5"
@@ -241,6 +397,16 @@ __metadata:
languageName: node
linkType: hard
+"@babel/helper-function-name@npm:^7.23.0":
+ version: 7.23.0
+ resolution: "@babel/helper-function-name@npm:7.23.0"
+ dependencies:
+ "@babel/template": ^7.22.15
+ "@babel/types": ^7.23.0
+ checksum: e44542257b2d4634a1f979244eb2a4ad8e6d75eb6761b4cfceb56b562f7db150d134bc538c8e6adca3783e3bc31be949071527aa8e3aab7867d1ad2d84a26e10
+ languageName: node
+ linkType: hard
+
"@babel/helper-hoist-variables@npm:^7.18.6":
version: 7.18.6
resolution: "@babel/helper-hoist-variables@npm:7.18.6"
@@ -268,6 +434,15 @@ __metadata:
languageName: node
linkType: hard
+"@babel/helper-member-expression-to-functions@npm:^7.22.15":
+ version: 7.23.0
+ resolution: "@babel/helper-member-expression-to-functions@npm:7.23.0"
+ dependencies:
+ "@babel/types": ^7.23.0
+ checksum: 494659361370c979ada711ca685e2efe9460683c36db1b283b446122596602c901e291e09f2f980ecedfe6e0f2bd5386cb59768285446530df10c14df1024e75
+ languageName: node
+ linkType: hard
+
"@babel/helper-module-imports@npm:^7.16.7, @babel/helper-module-imports@npm:^7.18.6":
version: 7.18.6
resolution: "@babel/helper-module-imports@npm:7.18.6"
@@ -277,6 +452,15 @@ __metadata:
languageName: node
linkType: hard
+"@babel/helper-module-imports@npm:^7.22.15":
+ version: 7.22.15
+ resolution: "@babel/helper-module-imports@npm:7.22.15"
+ dependencies:
+ "@babel/types": ^7.22.15
+ checksum: ecd7e457df0a46f889228f943ef9b4a47d485d82e030676767e6a2fdcbdaa63594d8124d4b55fd160b41c201025aec01fc27580352b1c87a37c9c6f33d116702
+ languageName: node
+ linkType: hard
+
"@babel/helper-module-transforms@npm:^7.18.6, @babel/helper-module-transforms@npm:^7.19.0":
version: 7.19.0
resolution: "@babel/helper-module-transforms@npm:7.19.0"
@@ -309,6 +493,21 @@ __metadata:
languageName: node
linkType: hard
+"@babel/helper-module-transforms@npm:^7.23.3":
+ version: 7.23.3
+ resolution: "@babel/helper-module-transforms@npm:7.23.3"
+ dependencies:
+ "@babel/helper-environment-visitor": ^7.22.20
+ "@babel/helper-module-imports": ^7.22.15
+ "@babel/helper-simple-access": ^7.22.5
+ "@babel/helper-split-export-declaration": ^7.22.6
+ "@babel/helper-validator-identifier": ^7.22.20
+ peerDependencies:
+ "@babel/core": ^7.0.0
+ checksum: 5d0895cfba0e16ae16f3aa92fee108517023ad89a855289c4eb1d46f7aef4519adf8e6f971e1d55ac20c5461610e17213f1144097a8f932e768a9132e2278d71
+ languageName: node
+ linkType: hard
+
"@babel/helper-optimise-call-expression@npm:^7.18.6":
version: 7.18.6
resolution: "@babel/helper-optimise-call-expression@npm:7.18.6"
@@ -318,6 +517,15 @@ __metadata:
languageName: node
linkType: hard
+"@babel/helper-optimise-call-expression@npm:^7.22.5":
+ version: 7.22.5
+ resolution: "@babel/helper-optimise-call-expression@npm:7.22.5"
+ dependencies:
+ "@babel/types": ^7.22.5
+ checksum: c70ef6cc6b6ed32eeeec4482127e8be5451d0e5282d5495d5d569d39eb04d7f1d66ec99b327f45d1d5842a9ad8c22d48567e93fc502003a47de78d122e355f7c
+ languageName: node
+ linkType: hard
+
"@babel/helper-plugin-utils@npm:^7.0.0, @babel/helper-plugin-utils@npm:^7.10.4, @babel/helper-plugin-utils@npm:^7.12.13, @babel/helper-plugin-utils@npm:^7.14.5, @babel/helper-plugin-utils@npm:^7.16.7, @babel/helper-plugin-utils@npm:^7.18.6, @babel/helper-plugin-utils@npm:^7.18.9, @babel/helper-plugin-utils@npm:^7.19.0, @babel/helper-plugin-utils@npm:^7.8.0, @babel/helper-plugin-utils@npm:^7.8.3":
version: 7.19.0
resolution: "@babel/helper-plugin-utils@npm:7.19.0"
@@ -325,6 +533,13 @@ __metadata:
languageName: node
linkType: hard
+"@babel/helper-plugin-utils@npm:^7.20.2, @babel/helper-plugin-utils@npm:^7.22.5":
+ version: 7.22.5
+ resolution: "@babel/helper-plugin-utils@npm:7.22.5"
+ checksum: c0fc7227076b6041acd2f0e818145d2e8c41968cc52fb5ca70eed48e21b8fe6dd88a0a91cbddf4951e33647336eb5ae184747ca706817ca3bef5e9e905151ff5
+ languageName: node
+ linkType: hard
+
"@babel/helper-remap-async-to-generator@npm:^7.18.6, @babel/helper-remap-async-to-generator@npm:^7.18.9":
version: 7.18.9
resolution: "@babel/helper-remap-async-to-generator@npm:7.18.9"
@@ -339,6 +554,19 @@ __metadata:
languageName: node
linkType: hard
+"@babel/helper-remap-async-to-generator@npm:^7.22.20":
+ version: 7.22.20
+ resolution: "@babel/helper-remap-async-to-generator@npm:7.22.20"
+ dependencies:
+ "@babel/helper-annotate-as-pure": ^7.22.5
+ "@babel/helper-environment-visitor": ^7.22.20
+ "@babel/helper-wrap-function": ^7.22.20
+ peerDependencies:
+ "@babel/core": ^7.0.0
+ checksum: 2fe6300a6f1b58211dffa0aed1b45d4958506d096543663dba83bd9251fe8d670fa909143a65b45e72acb49e7e20fbdb73eae315d9ddaced467948c3329986e7
+ languageName: node
+ linkType: hard
+
"@babel/helper-replace-supers@npm:^7.18.6, @babel/helper-replace-supers@npm:^7.18.9":
version: 7.19.1
resolution: "@babel/helper-replace-supers@npm:7.19.1"
@@ -352,6 +580,19 @@ __metadata:
languageName: node
linkType: hard
+"@babel/helper-replace-supers@npm:^7.22.20, @babel/helper-replace-supers@npm:^7.22.9":
+ version: 7.22.20
+ resolution: "@babel/helper-replace-supers@npm:7.22.20"
+ dependencies:
+ "@babel/helper-environment-visitor": ^7.22.20
+ "@babel/helper-member-expression-to-functions": ^7.22.15
+ "@babel/helper-optimise-call-expression": ^7.22.5
+ peerDependencies:
+ "@babel/core": ^7.0.0
+ checksum: a0008332e24daedea2e9498733e3c39b389d6d4512637e000f96f62b797e702ee24a407ccbcd7a236a551590a38f31282829a8ef35c50a3c0457d88218cae639
+ languageName: node
+ linkType: hard
+
"@babel/helper-simple-access@npm:^7.18.6":
version: 7.18.6
resolution: "@babel/helper-simple-access@npm:7.18.6"
@@ -370,6 +611,15 @@ __metadata:
languageName: node
linkType: hard
+"@babel/helper-simple-access@npm:^7.22.5":
+ version: 7.22.5
+ resolution: "@babel/helper-simple-access@npm:7.22.5"
+ dependencies:
+ "@babel/types": ^7.22.5
+ checksum: fe9686714caf7d70aedb46c3cce090f8b915b206e09225f1e4dbc416786c2fdbbee40b38b23c268b7ccef749dd2db35f255338fb4f2444429874d900dede5ad2
+ languageName: node
+ linkType: hard
+
"@babel/helper-skip-transparent-expression-wrappers@npm:^7.18.9":
version: 7.18.9
resolution: "@babel/helper-skip-transparent-expression-wrappers@npm:7.18.9"
@@ -379,6 +629,15 @@ __metadata:
languageName: node
linkType: hard
+"@babel/helper-skip-transparent-expression-wrappers@npm:^7.20.0, @babel/helper-skip-transparent-expression-wrappers@npm:^7.22.5":
+ version: 7.22.5
+ resolution: "@babel/helper-skip-transparent-expression-wrappers@npm:7.22.5"
+ dependencies:
+ "@babel/types": ^7.22.5
+ checksum: 1012ef2295eb12dc073f2b9edf3425661e9b8432a3387e62a8bc27c42963f1f216ab3124228015c748770b2257b4f1fda882ca8fa34c0bf485e929ae5bc45244
+ languageName: node
+ linkType: hard
+
"@babel/helper-split-export-declaration@npm:^7.18.6":
version: 7.18.6
resolution: "@babel/helper-split-export-declaration@npm:7.18.6"
@@ -418,6 +677,13 @@ __metadata:
languageName: node
linkType: hard
+"@babel/helper-string-parser@npm:^7.23.4":
+ version: 7.23.4
+ resolution: "@babel/helper-string-parser@npm:7.23.4"
+ checksum: c0641144cf1a7e7dc93f3d5f16d5327465b6cf5d036b48be61ecba41e1eece161b48f46b7f960951b67f8c3533ce506b16dece576baef4d8b3b49f8c65410f90
+ languageName: node
+ linkType: hard
+
"@babel/helper-validator-identifier@npm:^7.18.6, @babel/helper-validator-identifier@npm:^7.19.1":
version: 7.19.1
resolution: "@babel/helper-validator-identifier@npm:7.19.1"
@@ -425,6 +691,13 @@ __metadata:
languageName: node
linkType: hard
+"@babel/helper-validator-identifier@npm:^7.22.20":
+ version: 7.22.20
+ resolution: "@babel/helper-validator-identifier@npm:7.22.20"
+ checksum: 136412784d9428266bcdd4d91c32bcf9ff0e8d25534a9d94b044f77fe76bc50f941a90319b05aafd1ec04f7d127cd57a179a3716009ff7f3412ef835ada95bdc
+ languageName: node
+ linkType: hard
+
"@babel/helper-validator-identifier@npm:^7.22.5":
version: 7.22.5
resolution: "@babel/helper-validator-identifier@npm:7.22.5"
@@ -439,6 +712,13 @@ __metadata:
languageName: node
linkType: hard
+"@babel/helper-validator-option@npm:^7.22.15":
+ version: 7.22.15
+ resolution: "@babel/helper-validator-option@npm:7.22.15"
+ checksum: 68da52b1e10002a543161494c4bc0f4d0398c8fdf361d5f7f4272e95c45d5b32d974896d44f6a0ea7378c9204988879d73613ca683e13bd1304e46d25ff67a8d
+ languageName: node
+ linkType: hard
+
"@babel/helper-wrap-function@npm:^7.18.9":
version: 7.19.0
resolution: "@babel/helper-wrap-function@npm:7.19.0"
@@ -451,6 +731,17 @@ __metadata:
languageName: node
linkType: hard
+"@babel/helper-wrap-function@npm:^7.22.20":
+ version: 7.22.20
+ resolution: "@babel/helper-wrap-function@npm:7.22.20"
+ dependencies:
+ "@babel/helper-function-name": ^7.22.5
+ "@babel/template": ^7.22.15
+ "@babel/types": ^7.22.19
+ checksum: 221ed9b5572612aeb571e4ce6a256f2dee85b3c9536f1dd5e611b0255e5f59a3d0ec392d8d46d4152149156a8109f92f20379b1d6d36abb613176e0e33f05fca
+ languageName: node
+ linkType: hard
+
"@babel/helpers@npm:^7.19.0":
version: 7.19.0
resolution: "@babel/helpers@npm:7.19.0"
@@ -473,6 +764,17 @@ __metadata:
languageName: node
linkType: hard
+"@babel/helpers@npm:^7.23.2":
+ version: 7.23.4
+ resolution: "@babel/helpers@npm:7.23.4"
+ dependencies:
+ "@babel/template": ^7.22.15
+ "@babel/traverse": ^7.23.4
+ "@babel/types": ^7.23.4
+ checksum: 85677834f2698d0a468db59c062b011ebdd65fc12bab96eeaae64084d3ce3268427ce2dbc23c2db2ddb8a305c79ea223c2c9f7bbd1fb3f6d2fa5e978c0eb1cea
+ languageName: node
+ linkType: hard
+
"@babel/highlight@npm:^7.18.6":
version: 7.18.6
resolution: "@babel/highlight@npm:7.18.6"
@@ -495,6 +797,17 @@ __metadata:
languageName: node
linkType: hard
+"@babel/highlight@npm:^7.23.4":
+ version: 7.23.4
+ resolution: "@babel/highlight@npm:7.23.4"
+ dependencies:
+ "@babel/helper-validator-identifier": ^7.22.20
+ chalk: ^2.4.2
+ js-tokens: ^4.0.0
+ checksum: 643acecdc235f87d925979a979b539a5d7d1f31ae7db8d89047269082694122d11aa85351304c9c978ceeb6d250591ccadb06c366f358ccee08bb9c122476b89
+ languageName: node
+ linkType: hard
+
"@babel/parser@npm:^7.1.0, @babel/parser@npm:^7.18.10, @babel/parser@npm:^7.19.3":
version: 7.19.3
resolution: "@babel/parser@npm:7.19.3"
@@ -513,7 +826,16 @@ __metadata:
languageName: node
linkType: hard
-"@babel/parser@npm:^7.22.5, @babel/parser@npm:^7.22.7, @babel/parser@npm:^7.7.0":
+"@babel/parser@npm:^7.22.15, @babel/parser@npm:^7.23.3, @babel/parser@npm:^7.23.4":
+ version: 7.23.4
+ resolution: "@babel/parser@npm:7.23.4"
+ bin:
+ parser: ./bin/babel-parser.js
+ checksum: 1d90e17d966085b8ea12f357ffcc76568969364481254f0ae3e7ed579e9421d31c7fd3876ccb3b215a5b2ada48251b0c2d0f21ba225ee194f0e18295b49085f2
+ languageName: node
+ linkType: hard
+
+"@babel/parser@npm:^7.22.5":
version: 7.22.7
resolution: "@babel/parser@npm:7.22.7"
bin:
@@ -533,6 +855,17 @@ __metadata:
languageName: node
linkType: hard
+"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@npm:^7.23.3":
+ version: 7.23.3
+ resolution: "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@npm:7.23.3"
+ dependencies:
+ "@babel/helper-plugin-utils": ^7.22.5
+ peerDependencies:
+ "@babel/core": ^7.0.0
+ checksum: ddbaf2c396b7780f15e80ee01d6dd790db076985f3dfeb6527d1a8d4cacf370e49250396a3aa005b2c40233cac214a106232f83703d5e8491848bde273938232
+ languageName: node
+ linkType: hard
+
"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@npm:^7.18.9":
version: 7.18.9
resolution: "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@npm:7.18.9"
@@ -546,6 +879,31 @@ __metadata:
languageName: node
linkType: hard
+"@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@npm:^7.23.3":
+ version: 7.23.3
+ resolution: "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@npm:7.23.3"
+ dependencies:
+ "@babel/helper-plugin-utils": ^7.22.5
+ "@babel/helper-skip-transparent-expression-wrappers": ^7.22.5
+ "@babel/plugin-transform-optional-chaining": ^7.23.3
+ peerDependencies:
+ "@babel/core": ^7.13.0
+ checksum: 434b9d710ae856fa1a456678cc304fbc93915af86d581ee316e077af746a709a741ea39d7e1d4f5b98861b629cc7e87f002d3138f5e836775632466d4c74aef2
+ languageName: node
+ linkType: hard
+
+"@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@npm:^7.23.3":
+ version: 7.23.3
+ resolution: "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@npm:7.23.3"
+ dependencies:
+ "@babel/helper-environment-visitor": ^7.22.20
+ "@babel/helper-plugin-utils": ^7.22.5
+ peerDependencies:
+ "@babel/core": ^7.0.0
+ checksum: 4690123f0ef7c11d6bf1a9579e4f463ce363563b75ec3f6ca66cf68687e39d8d747a82c833847653962f79da367eca895d9095c60d8ebb224a1d4277003acc11
+ languageName: node
+ linkType: hard
+
"@babel/plugin-proposal-async-generator-functions@npm:^7.19.1":
version: 7.19.1
resolution: "@babel/plugin-proposal-async-generator-functions@npm:7.19.1"
@@ -560,7 +918,7 @@ __metadata:
languageName: node
linkType: hard
-"@babel/plugin-proposal-class-properties@npm:^7.18.6, @babel/plugin-proposal-class-properties@npm:^7.8.3":
+"@babel/plugin-proposal-class-properties@npm:^7.16.0, @babel/plugin-proposal-class-properties@npm:^7.18.6, @babel/plugin-proposal-class-properties@npm:^7.8.3":
version: 7.18.6
resolution: "@babel/plugin-proposal-class-properties@npm:7.18.6"
dependencies:
@@ -585,6 +943,21 @@ __metadata:
languageName: node
linkType: hard
+"@babel/plugin-proposal-decorators@npm:^7.16.4":
+ version: 7.23.3
+ resolution: "@babel/plugin-proposal-decorators@npm:7.23.3"
+ dependencies:
+ "@babel/helper-create-class-features-plugin": ^7.22.15
+ "@babel/helper-plugin-utils": ^7.22.5
+ "@babel/helper-replace-supers": ^7.22.20
+ "@babel/helper-split-export-declaration": ^7.22.6
+ "@babel/plugin-syntax-decorators": ^7.23.3
+ peerDependencies:
+ "@babel/core": ^7.0.0-0
+ checksum: 5c11da45eafe11105e87f83f48d9eb1c95a5f78c01041729e4a8d1726ee0068ee8d98743aaaa24e30bf8eac446aa3db4a44943cc53e5707b5fdfb50a2189d899
+ languageName: node
+ linkType: hard
+
"@babel/plugin-proposal-dynamic-import@npm:^7.18.6":
version: 7.18.6
resolution: "@babel/plugin-proposal-dynamic-import@npm:7.18.6"
@@ -645,7 +1018,7 @@ __metadata:
languageName: node
linkType: hard
-"@babel/plugin-proposal-nullish-coalescing-operator@npm:^7.10.4, @babel/plugin-proposal-nullish-coalescing-operator@npm:^7.18.6":
+"@babel/plugin-proposal-nullish-coalescing-operator@npm:^7.10.4, @babel/plugin-proposal-nullish-coalescing-operator@npm:^7.16.0, @babel/plugin-proposal-nullish-coalescing-operator@npm:^7.18.6":
version: 7.18.6
resolution: "@babel/plugin-proposal-nullish-coalescing-operator@npm:7.18.6"
dependencies:
@@ -657,7 +1030,7 @@ __metadata:
languageName: node
linkType: hard
-"@babel/plugin-proposal-numeric-separator@npm:^7.10.4, @babel/plugin-proposal-numeric-separator@npm:^7.18.6":
+"@babel/plugin-proposal-numeric-separator@npm:^7.10.4, @babel/plugin-proposal-numeric-separator@npm:^7.16.0, @babel/plugin-proposal-numeric-separator@npm:^7.18.6":
version: 7.18.6
resolution: "@babel/plugin-proposal-numeric-separator@npm:7.18.6"
dependencies:
@@ -709,7 +1082,20 @@ __metadata:
languageName: node
linkType: hard
-"@babel/plugin-proposal-private-methods@npm:^7.18.6":
+"@babel/plugin-proposal-optional-chaining@npm:^7.16.0":
+ version: 7.21.0
+ resolution: "@babel/plugin-proposal-optional-chaining@npm:7.21.0"
+ dependencies:
+ "@babel/helper-plugin-utils": ^7.20.2
+ "@babel/helper-skip-transparent-expression-wrappers": ^7.20.0
+ "@babel/plugin-syntax-optional-chaining": ^7.8.3
+ peerDependencies:
+ "@babel/core": ^7.0.0-0
+ checksum: 11c5449e01b18bb8881e8e005a577fa7be2fe5688e2382c8822d51f8f7005342a301a46af7b273b1f5645f9a7b894c428eee8526342038a275ef6ba4c8d8d746
+ languageName: node
+ linkType: hard
+
+"@babel/plugin-proposal-private-methods@npm:^7.16.0, @babel/plugin-proposal-private-methods@npm:^7.18.6":
version: 7.18.6
resolution: "@babel/plugin-proposal-private-methods@npm:7.18.6"
dependencies:
@@ -721,6 +1107,29 @@ __metadata:
languageName: node
linkType: hard
+"@babel/plugin-proposal-private-property-in-object@npm:7.21.0-placeholder-for-preset-env.2":
+ version: 7.21.0-placeholder-for-preset-env.2
+ resolution: "@babel/plugin-proposal-private-property-in-object@npm:7.21.0-placeholder-for-preset-env.2"
+ peerDependencies:
+ "@babel/core": ^7.0.0-0
+ checksum: d97745d098b835d55033ff3a7fb2b895b9c5295b08a5759e4f20df325aa385a3e0bc9bd5ad8f2ec554a44d4e6525acfc257b8c5848a1345cb40f26a30e277e91
+ languageName: node
+ linkType: hard
+
+"@babel/plugin-proposal-private-property-in-object@npm:^7.16.0":
+ version: 7.21.11
+ resolution: "@babel/plugin-proposal-private-property-in-object@npm:7.21.11"
+ dependencies:
+ "@babel/helper-annotate-as-pure": ^7.18.6
+ "@babel/helper-create-class-features-plugin": ^7.21.0
+ "@babel/helper-plugin-utils": ^7.20.2
+ "@babel/plugin-syntax-private-property-in-object": ^7.14.5
+ peerDependencies:
+ "@babel/core": ^7.0.0-0
+ checksum: 1b880543bc5f525b360b53d97dd30807302bb82615cd42bf931968f59003cac75629563d6b104868db50abd22235b3271fdf679fea5db59a267181a99cc0c265
+ languageName: node
+ linkType: hard
+
"@babel/plugin-proposal-private-property-in-object@npm:^7.18.6":
version: 7.18.6
resolution: "@babel/plugin-proposal-private-property-in-object@npm:7.18.6"
@@ -803,6 +1212,17 @@ __metadata:
languageName: node
linkType: hard
+"@babel/plugin-syntax-decorators@npm:^7.23.3":
+ version: 7.23.3
+ resolution: "@babel/plugin-syntax-decorators@npm:7.23.3"
+ dependencies:
+ "@babel/helper-plugin-utils": ^7.22.5
+ peerDependencies:
+ "@babel/core": ^7.0.0-0
+ checksum: 07f6e488df0a061428e02629af9a1908b2e8abdcac2e5cfaa267be66dc30897be6e29df7c7f952d33f3679f9585ac9fcf6318f9c827790ab0b0928d5514305cd
+ languageName: node
+ linkType: hard
+
"@babel/plugin-syntax-dynamic-import@npm:^7.7.4, @babel/plugin-syntax-dynamic-import@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-syntax-dynamic-import@npm:7.8.3"
@@ -836,6 +1256,17 @@ __metadata:
languageName: node
linkType: hard
+"@babel/plugin-syntax-flow@npm:^7.23.3":
+ version: 7.23.3
+ resolution: "@babel/plugin-syntax-flow@npm:7.23.3"
+ dependencies:
+ "@babel/helper-plugin-utils": ^7.22.5
+ peerDependencies:
+ "@babel/core": ^7.0.0-0
+ checksum: c6e6f355d6ace5f4a9e7bb19f1fed2398aeb9b62c4c671a189d81b124f9f5bb77c4225b6e85e19339268c60a021c1e49104e450375de5e6bb70612190d9678af
+ languageName: node
+ linkType: hard
+
"@babel/plugin-syntax-import-assertions@npm:^7.18.6":
version: 7.18.6
resolution: "@babel/plugin-syntax-import-assertions@npm:7.18.6"
@@ -847,6 +1278,39 @@ __metadata:
languageName: node
linkType: hard
+"@babel/plugin-syntax-import-assertions@npm:^7.23.3":
+ version: 7.23.3
+ resolution: "@babel/plugin-syntax-import-assertions@npm:7.23.3"
+ dependencies:
+ "@babel/helper-plugin-utils": ^7.22.5
+ peerDependencies:
+ "@babel/core": ^7.0.0-0
+ checksum: 883e6b35b2da205138caab832d54505271a3fee3fc1e8dc0894502434fc2b5d517cbe93bbfbfef8068a0fb6ec48ebc9eef3f605200a489065ba43d8cddc1c9a7
+ languageName: node
+ linkType: hard
+
+"@babel/plugin-syntax-import-attributes@npm:^7.23.3":
+ version: 7.23.3
+ resolution: "@babel/plugin-syntax-import-attributes@npm:7.23.3"
+ dependencies:
+ "@babel/helper-plugin-utils": ^7.22.5
+ peerDependencies:
+ "@babel/core": ^7.0.0-0
+ checksum: 9aed7661ffb920ca75df9f494757466ca92744e43072e0848d87fa4aa61a3f2ee5a22198ac1959856c036434b5614a8f46f1fb70298835dbe28220cdd1d4c11e
+ languageName: node
+ linkType: hard
+
+"@babel/plugin-syntax-import-meta@npm:^7.10.4":
+ version: 7.10.4
+ resolution: "@babel/plugin-syntax-import-meta@npm:7.10.4"
+ dependencies:
+ "@babel/helper-plugin-utils": ^7.10.4
+ peerDependencies:
+ "@babel/core": ^7.0.0-0
+ checksum: 166ac1125d10b9c0c430e4156249a13858c0366d38844883d75d27389621ebe651115cb2ceb6dc011534d5055719fa1727b59f39e1ab3ca97820eef3dcab5b9b
+ languageName: node
+ linkType: hard
+
"@babel/plugin-syntax-json-strings@npm:^7.8.3":
version: 7.8.3
resolution: "@babel/plugin-syntax-json-strings@npm:7.8.3"
@@ -869,6 +1333,17 @@ __metadata:
languageName: node
linkType: hard
+"@babel/plugin-syntax-jsx@npm:^7.23.3":
+ version: 7.23.3
+ resolution: "@babel/plugin-syntax-jsx@npm:7.23.3"
+ dependencies:
+ "@babel/helper-plugin-utils": ^7.22.5
+ peerDependencies:
+ "@babel/core": ^7.0.0-0
+ checksum: 89037694314a74e7f0e7a9c8d3793af5bf6b23d80950c29b360db1c66859d67f60711ea437e70ad6b5b4b29affe17eababda841b6c01107c2b638e0493bafb4e
+ languageName: node
+ linkType: hard
+
"@babel/plugin-syntax-logical-assignment-operators@npm:^7.10.4":
version: 7.10.4
resolution: "@babel/plugin-syntax-logical-assignment-operators@npm:7.10.4"
@@ -979,43 +1454,115 @@ __metadata:
languageName: node
linkType: hard
-"@babel/plugin-transform-arrow-functions@npm:^7.18.6":
- version: 7.18.6
- resolution: "@babel/plugin-transform-arrow-functions@npm:7.18.6"
+"@babel/plugin-syntax-typescript@npm:^7.23.3":
+ version: 7.23.3
+ resolution: "@babel/plugin-syntax-typescript@npm:7.23.3"
dependencies:
- "@babel/helper-plugin-utils": ^7.18.6
+ "@babel/helper-plugin-utils": ^7.22.5
peerDependencies:
"@babel/core": ^7.0.0-0
- checksum: 900f5c695755062b91eec74da6f9092f40b8fada099058b92576f1e23c55e9813ec437051893a9b3c05cefe39e8ac06303d4a91b384e1c03dd8dc1581ea11602
+ checksum: abfad3a19290d258b028e285a1f34c9b8a0cbe46ef79eafed4ed7ffce11b5d0720b5e536c82f91cbd8442cde35a3dd8e861fa70366d87ff06fdc0d4756e30876
languageName: node
linkType: hard
-"@babel/plugin-transform-async-to-generator@npm:^7.18.6":
+"@babel/plugin-syntax-unicode-sets-regex@npm:^7.18.6":
version: 7.18.6
- resolution: "@babel/plugin-transform-async-to-generator@npm:7.18.6"
+ resolution: "@babel/plugin-syntax-unicode-sets-regex@npm:7.18.6"
dependencies:
- "@babel/helper-module-imports": ^7.18.6
+ "@babel/helper-create-regexp-features-plugin": ^7.18.6
"@babel/helper-plugin-utils": ^7.18.6
- "@babel/helper-remap-async-to-generator": ^7.18.6
peerDependencies:
- "@babel/core": ^7.0.0-0
- checksum: c2cca47468cf1aeefdc7ec35d670e195c86cee4de28a1970648c46a88ce6bd1806ef0bab27251b9e7fb791bb28a64dcd543770efd899f28ee5f7854e64e873d3
+ "@babel/core": ^7.0.0
+ checksum: a651d700fe63ff0ddfd7186f4ebc24447ca734f114433139e3c027bc94a900d013cf1ef2e2db8430425ba542e39ae160c3b05f06b59fd4656273a3df97679e9c
languageName: node
linkType: hard
-"@babel/plugin-transform-block-scoped-functions@npm:^7.18.6":
+"@babel/plugin-transform-arrow-functions@npm:^7.18.6":
version: 7.18.6
- resolution: "@babel/plugin-transform-block-scoped-functions@npm:7.18.6"
+ resolution: "@babel/plugin-transform-arrow-functions@npm:7.18.6"
dependencies:
"@babel/helper-plugin-utils": ^7.18.6
peerDependencies:
"@babel/core": ^7.0.0-0
- checksum: 0a0df61f94601e3666bf39f2cc26f5f7b22a94450fb93081edbed967bd752ce3f81d1227fefd3799f5ee2722171b5e28db61379234d1bb85b6ec689589f99d7e
+ checksum: 900f5c695755062b91eec74da6f9092f40b8fada099058b92576f1e23c55e9813ec437051893a9b3c05cefe39e8ac06303d4a91b384e1c03dd8dc1581ea11602
languageName: node
linkType: hard
-"@babel/plugin-transform-block-scoping@npm:^7.18.9":
- version: 7.18.9
+"@babel/plugin-transform-arrow-functions@npm:^7.23.3":
+ version: 7.23.3
+ resolution: "@babel/plugin-transform-arrow-functions@npm:7.23.3"
+ dependencies:
+ "@babel/helper-plugin-utils": ^7.22.5
+ peerDependencies:
+ "@babel/core": ^7.0.0-0
+ checksum: 1e99118176e5366c2636064d09477016ab5272b2a92e78b8edb571d20bc3eaa881789a905b20042942c3c2d04efc530726cf703f937226db5ebc495f5d067e66
+ languageName: node
+ linkType: hard
+
+"@babel/plugin-transform-async-generator-functions@npm:^7.23.3":
+ version: 7.23.4
+ resolution: "@babel/plugin-transform-async-generator-functions@npm:7.23.4"
+ dependencies:
+ "@babel/helper-environment-visitor": ^7.22.20
+ "@babel/helper-plugin-utils": ^7.22.5
+ "@babel/helper-remap-async-to-generator": ^7.22.20
+ "@babel/plugin-syntax-async-generators": ^7.8.4
+ peerDependencies:
+ "@babel/core": ^7.0.0-0
+ checksum: e2fc132c9033711d55209f4781e1fc73f0f4da5e0ca80a2da73dec805166b73c92a6e83571a8994cd2c893a28302e24107e90856202b24781bab734f800102bb
+ languageName: node
+ linkType: hard
+
+"@babel/plugin-transform-async-to-generator@npm:^7.18.6":
+ version: 7.18.6
+ resolution: "@babel/plugin-transform-async-to-generator@npm:7.18.6"
+ dependencies:
+ "@babel/helper-module-imports": ^7.18.6
+ "@babel/helper-plugin-utils": ^7.18.6
+ "@babel/helper-remap-async-to-generator": ^7.18.6
+ peerDependencies:
+ "@babel/core": ^7.0.0-0
+ checksum: c2cca47468cf1aeefdc7ec35d670e195c86cee4de28a1970648c46a88ce6bd1806ef0bab27251b9e7fb791bb28a64dcd543770efd899f28ee5f7854e64e873d3
+ languageName: node
+ linkType: hard
+
+"@babel/plugin-transform-async-to-generator@npm:^7.23.3":
+ version: 7.23.3
+ resolution: "@babel/plugin-transform-async-to-generator@npm:7.23.3"
+ dependencies:
+ "@babel/helper-module-imports": ^7.22.15
+ "@babel/helper-plugin-utils": ^7.22.5
+ "@babel/helper-remap-async-to-generator": ^7.22.20
+ peerDependencies:
+ "@babel/core": ^7.0.0-0
+ checksum: 2e9d9795d4b3b3d8090332104e37061c677f29a1ce65bcbda4099a32d243e5d9520270a44bbabf0fb1fb40d463bd937685b1a1042e646979086c546d55319c3c
+ languageName: node
+ linkType: hard
+
+"@babel/plugin-transform-block-scoped-functions@npm:^7.18.6":
+ version: 7.18.6
+ resolution: "@babel/plugin-transform-block-scoped-functions@npm:7.18.6"
+ dependencies:
+ "@babel/helper-plugin-utils": ^7.18.6
+ peerDependencies:
+ "@babel/core": ^7.0.0-0
+ checksum: 0a0df61f94601e3666bf39f2cc26f5f7b22a94450fb93081edbed967bd752ce3f81d1227fefd3799f5ee2722171b5e28db61379234d1bb85b6ec689589f99d7e
+ languageName: node
+ linkType: hard
+
+"@babel/plugin-transform-block-scoped-functions@npm:^7.23.3":
+ version: 7.23.3
+ resolution: "@babel/plugin-transform-block-scoped-functions@npm:7.23.3"
+ dependencies:
+ "@babel/helper-plugin-utils": ^7.22.5
+ peerDependencies:
+ "@babel/core": ^7.0.0-0
+ checksum: e63b16d94ee5f4d917e669da3db5ea53d1e7e79141a2ec873c1e644678cdafe98daa556d0d359963c827863d6b3665d23d4938a94a4c5053a1619c4ebd01d020
+ languageName: node
+ linkType: hard
+
+"@babel/plugin-transform-block-scoping@npm:^7.18.9":
+ version: 7.18.9
resolution: "@babel/plugin-transform-block-scoping@npm:7.18.9"
dependencies:
"@babel/helper-plugin-utils": ^7.18.9
@@ -1025,6 +1572,42 @@ __metadata:
languageName: node
linkType: hard
+"@babel/plugin-transform-block-scoping@npm:^7.23.3":
+ version: 7.23.4
+ resolution: "@babel/plugin-transform-block-scoping@npm:7.23.4"
+ dependencies:
+ "@babel/helper-plugin-utils": ^7.22.5
+ peerDependencies:
+ "@babel/core": ^7.0.0-0
+ checksum: fc4b2100dd9f2c47d694b4b35ae8153214ccb4e24ef545c259a9db17211b18b6a430f22799b56db8f6844deaeaa201af45a03331d0c80cc28b0c4e3c814570e4
+ languageName: node
+ linkType: hard
+
+"@babel/plugin-transform-class-properties@npm:^7.23.3":
+ version: 7.23.3
+ resolution: "@babel/plugin-transform-class-properties@npm:7.23.3"
+ dependencies:
+ "@babel/helper-create-class-features-plugin": ^7.22.15
+ "@babel/helper-plugin-utils": ^7.22.5
+ peerDependencies:
+ "@babel/core": ^7.0.0-0
+ checksum: 9c6f8366f667897541d360246de176dd29efc7a13d80a5b48361882f7173d9173be4646c3b7d9b003ccc0e01e25df122330308f33db921fa553aa17ad544b3fc
+ languageName: node
+ linkType: hard
+
+"@babel/plugin-transform-class-static-block@npm:^7.23.3":
+ version: 7.23.4
+ resolution: "@babel/plugin-transform-class-static-block@npm:7.23.4"
+ dependencies:
+ "@babel/helper-create-class-features-plugin": ^7.22.15
+ "@babel/helper-plugin-utils": ^7.22.5
+ "@babel/plugin-syntax-class-static-block": ^7.14.5
+ peerDependencies:
+ "@babel/core": ^7.12.0
+ checksum: c8bfaba19a674fc2eb54edad71e958647360474e3163e8226f1acd63e4e2dbec32a171a0af596c1dc5359aee402cc120fea7abd1fb0e0354b6527f0fc9e8aa1e
+ languageName: node
+ linkType: hard
+
"@babel/plugin-transform-classes@npm:^7.19.0":
version: 7.19.0
resolution: "@babel/plugin-transform-classes@npm:7.19.0"
@@ -1044,6 +1627,25 @@ __metadata:
languageName: node
linkType: hard
+"@babel/plugin-transform-classes@npm:^7.23.3":
+ version: 7.23.3
+ resolution: "@babel/plugin-transform-classes@npm:7.23.3"
+ dependencies:
+ "@babel/helper-annotate-as-pure": ^7.22.5
+ "@babel/helper-compilation-targets": ^7.22.15
+ "@babel/helper-environment-visitor": ^7.22.20
+ "@babel/helper-function-name": ^7.23.0
+ "@babel/helper-optimise-call-expression": ^7.22.5
+ "@babel/helper-plugin-utils": ^7.22.5
+ "@babel/helper-replace-supers": ^7.22.20
+ "@babel/helper-split-export-declaration": ^7.22.6
+ globals: ^11.1.0
+ peerDependencies:
+ "@babel/core": ^7.0.0-0
+ checksum: 1b90b40d729d14466415a1de2d427ede6ec0e401e8dc00e84d309f2e6a1f09ef16d43983f378b51d34251f6c36f7275959477cb2e89b04afc7f248356642fc6d
+ languageName: node
+ linkType: hard
+
"@babel/plugin-transform-computed-properties@npm:^7.18.9":
version: 7.18.9
resolution: "@babel/plugin-transform-computed-properties@npm:7.18.9"
@@ -1055,6 +1657,18 @@ __metadata:
languageName: node
linkType: hard
+"@babel/plugin-transform-computed-properties@npm:^7.23.3":
+ version: 7.23.3
+ resolution: "@babel/plugin-transform-computed-properties@npm:7.23.3"
+ dependencies:
+ "@babel/helper-plugin-utils": ^7.22.5
+ "@babel/template": ^7.22.15
+ peerDependencies:
+ "@babel/core": ^7.0.0-0
+ checksum: 80452661dc25a0956f89fe98cb562e8637a9556fb6c00d312c57653ce7df8798f58d138603c7e1aad96614ee9ccd10c47e50ab9ded6b6eded5adeb230d2a982e
+ languageName: node
+ linkType: hard
+
"@babel/plugin-transform-destructuring@npm:^7.18.13":
version: 7.18.13
resolution: "@babel/plugin-transform-destructuring@npm:7.18.13"
@@ -1066,6 +1680,17 @@ __metadata:
languageName: node
linkType: hard
+"@babel/plugin-transform-destructuring@npm:^7.23.3":
+ version: 7.23.3
+ resolution: "@babel/plugin-transform-destructuring@npm:7.23.3"
+ dependencies:
+ "@babel/helper-plugin-utils": ^7.22.5
+ peerDependencies:
+ "@babel/core": ^7.0.0-0
+ checksum: 9e015099877272501162419bfe781689aec5c462cd2aec752ee22288f209eec65969ff11b8fdadca2eaddea71d705d3bba5b9c60752fcc1be67874fcec687105
+ languageName: node
+ linkType: hard
+
"@babel/plugin-transform-dotall-regex@npm:^7.18.6, @babel/plugin-transform-dotall-regex@npm:^7.4.4":
version: 7.18.6
resolution: "@babel/plugin-transform-dotall-regex@npm:7.18.6"
@@ -1078,6 +1703,18 @@ __metadata:
languageName: node
linkType: hard
+"@babel/plugin-transform-dotall-regex@npm:^7.23.3":
+ version: 7.23.3
+ resolution: "@babel/plugin-transform-dotall-regex@npm:7.23.3"
+ dependencies:
+ "@babel/helper-create-regexp-features-plugin": ^7.22.15
+ "@babel/helper-plugin-utils": ^7.22.5
+ peerDependencies:
+ "@babel/core": ^7.0.0-0
+ checksum: a2dbbf7f1ea16a97948c37df925cb364337668c41a3948b8d91453f140507bd8a3429030c7ce66d09c299987b27746c19a2dd18b6f17dcb474854b14fd9159a3
+ languageName: node
+ linkType: hard
+
"@babel/plugin-transform-duplicate-keys@npm:^7.18.9":
version: 7.18.9
resolution: "@babel/plugin-transform-duplicate-keys@npm:7.18.9"
@@ -1089,6 +1726,29 @@ __metadata:
languageName: node
linkType: hard
+"@babel/plugin-transform-duplicate-keys@npm:^7.23.3":
+ version: 7.23.3
+ resolution: "@babel/plugin-transform-duplicate-keys@npm:7.23.3"
+ dependencies:
+ "@babel/helper-plugin-utils": ^7.22.5
+ peerDependencies:
+ "@babel/core": ^7.0.0-0
+ checksum: c2a21c34dc0839590cd945192cbc46fde541a27e140c48fe1808315934664cdbf18db64889e23c4eeb6bad9d3e049482efdca91d29de5734ffc887c4fbabaa16
+ languageName: node
+ linkType: hard
+
+"@babel/plugin-transform-dynamic-import@npm:^7.23.3":
+ version: 7.23.4
+ resolution: "@babel/plugin-transform-dynamic-import@npm:7.23.4"
+ dependencies:
+ "@babel/helper-plugin-utils": ^7.22.5
+ "@babel/plugin-syntax-dynamic-import": ^7.8.3
+ peerDependencies:
+ "@babel/core": ^7.0.0-0
+ checksum: 57a722604c430d9f3dacff22001a5f31250e34785d4969527a2ae9160fa86858d0892c5b9ff7a06a04076f8c76c9e6862e0541aadca9c057849961343aab0845
+ languageName: node
+ linkType: hard
+
"@babel/plugin-transform-exponentiation-operator@npm:^7.18.6":
version: 7.18.6
resolution: "@babel/plugin-transform-exponentiation-operator@npm:7.18.6"
@@ -1101,6 +1761,42 @@ __metadata:
languageName: node
linkType: hard
+"@babel/plugin-transform-exponentiation-operator@npm:^7.23.3":
+ version: 7.23.3
+ resolution: "@babel/plugin-transform-exponentiation-operator@npm:7.23.3"
+ dependencies:
+ "@babel/helper-builder-binary-assignment-operator-visitor": ^7.22.15
+ "@babel/helper-plugin-utils": ^7.22.5
+ peerDependencies:
+ "@babel/core": ^7.0.0-0
+ checksum: 00d05ab14ad0f299160fcf9d8f55a1cc1b740e012ab0b5ce30207d2365f091665115557af7d989cd6260d075a252d9e4283de5f2b247dfbbe0e42ae586e6bf66
+ languageName: node
+ linkType: hard
+
+"@babel/plugin-transform-export-namespace-from@npm:^7.23.3":
+ version: 7.23.4
+ resolution: "@babel/plugin-transform-export-namespace-from@npm:7.23.4"
+ dependencies:
+ "@babel/helper-plugin-utils": ^7.22.5
+ "@babel/plugin-syntax-export-namespace-from": ^7.8.3
+ peerDependencies:
+ "@babel/core": ^7.0.0-0
+ checksum: 9f770a81bfd03b48d6ba155d452946fd56d6ffe5b7d871e9ec2a0b15e0f424273b632f3ed61838b90015b25bbda988896b7a46c7d964fbf8f6feb5820b309f93
+ languageName: node
+ linkType: hard
+
+"@babel/plugin-transform-flow-strip-types@npm:^7.16.0":
+ version: 7.23.3
+ resolution: "@babel/plugin-transform-flow-strip-types@npm:7.23.3"
+ dependencies:
+ "@babel/helper-plugin-utils": ^7.22.5
+ "@babel/plugin-syntax-flow": ^7.23.3
+ peerDependencies:
+ "@babel/core": ^7.0.0-0
+ checksum: de38cc5cf948bc19405ea041292181527a36f59f08d787a590415fac36e9b0c7992f0d3e2fd3b9402089bafdaa1a893291a0edf15beebfd29bdedbbe582fee9b
+ languageName: node
+ linkType: hard
+
"@babel/plugin-transform-for-of@npm:^7.18.8":
version: 7.18.8
resolution: "@babel/plugin-transform-for-of@npm:7.18.8"
@@ -1112,6 +1808,17 @@ __metadata:
languageName: node
linkType: hard
+"@babel/plugin-transform-for-of@npm:^7.23.3":
+ version: 7.23.3
+ resolution: "@babel/plugin-transform-for-of@npm:7.23.3"
+ dependencies:
+ "@babel/helper-plugin-utils": ^7.22.5
+ peerDependencies:
+ "@babel/core": ^7.0.0-0
+ checksum: a6288122a5091d96c744b9eb23dc1b2d4cce25f109ac1e26a0ea03c4ea60330e6f3cc58530b33ba7369fa07163b71001399a145238b7e92bff6270ef3b9c32a0
+ languageName: node
+ linkType: hard
+
"@babel/plugin-transform-function-name@npm:^7.18.9":
version: 7.18.9
resolution: "@babel/plugin-transform-function-name@npm:7.18.9"
@@ -1125,6 +1832,31 @@ __metadata:
languageName: node
linkType: hard
+"@babel/plugin-transform-function-name@npm:^7.23.3":
+ version: 7.23.3
+ resolution: "@babel/plugin-transform-function-name@npm:7.23.3"
+ dependencies:
+ "@babel/helper-compilation-targets": ^7.22.15
+ "@babel/helper-function-name": ^7.23.0
+ "@babel/helper-plugin-utils": ^7.22.5
+ peerDependencies:
+ "@babel/core": ^7.0.0-0
+ checksum: 355c6dbe07c919575ad42b2f7e020f320866d72f8b79181a16f8e0cd424a2c761d979f03f47d583d9471b55dcd68a8a9d829b58e1eebcd572145b934b48975a6
+ languageName: node
+ linkType: hard
+
+"@babel/plugin-transform-json-strings@npm:^7.23.3":
+ version: 7.23.4
+ resolution: "@babel/plugin-transform-json-strings@npm:7.23.4"
+ dependencies:
+ "@babel/helper-plugin-utils": ^7.22.5
+ "@babel/plugin-syntax-json-strings": ^7.8.3
+ peerDependencies:
+ "@babel/core": ^7.0.0-0
+ checksum: f9019820233cf8955d8ba346df709a0683c120fe86a24ed1c9f003f2db51197b979efc88f010d558a12e1491210fc195a43cd1c7fee5e23b92da38f793a875de
+ languageName: node
+ linkType: hard
+
"@babel/plugin-transform-literals@npm:^7.18.9":
version: 7.18.9
resolution: "@babel/plugin-transform-literals@npm:7.18.9"
@@ -1136,6 +1868,29 @@ __metadata:
languageName: node
linkType: hard
+"@babel/plugin-transform-literals@npm:^7.23.3":
+ version: 7.23.3
+ resolution: "@babel/plugin-transform-literals@npm:7.23.3"
+ dependencies:
+ "@babel/helper-plugin-utils": ^7.22.5
+ peerDependencies:
+ "@babel/core": ^7.0.0-0
+ checksum: 519a544cd58586b9001c4c9b18da25a62f17d23c48600ff7a685d75ca9eb18d2c5e8f5476f067f0a8f1fea2a31107eff950b9864833061e6076dcc4bdc3e71ed
+ languageName: node
+ linkType: hard
+
+"@babel/plugin-transform-logical-assignment-operators@npm:^7.23.3":
+ version: 7.23.4
+ resolution: "@babel/plugin-transform-logical-assignment-operators@npm:7.23.4"
+ dependencies:
+ "@babel/helper-plugin-utils": ^7.22.5
+ "@babel/plugin-syntax-logical-assignment-operators": ^7.10.4
+ peerDependencies:
+ "@babel/core": ^7.0.0-0
+ checksum: 2ae1dc9b4ff3bf61a990ff3accdecb2afe3a0ca649b3e74c010078d1cdf29ea490f50ac0a905306a2bcf9ac177889a39ac79bdcc3a0fdf220b3b75fac18d39b5
+ languageName: node
+ linkType: hard
+
"@babel/plugin-transform-member-expression-literals@npm:^7.18.6":
version: 7.18.6
resolution: "@babel/plugin-transform-member-expression-literals@npm:7.18.6"
@@ -1147,6 +1902,17 @@ __metadata:
languageName: node
linkType: hard
+"@babel/plugin-transform-member-expression-literals@npm:^7.23.3":
+ version: 7.23.3
+ resolution: "@babel/plugin-transform-member-expression-literals@npm:7.23.3"
+ dependencies:
+ "@babel/helper-plugin-utils": ^7.22.5
+ peerDependencies:
+ "@babel/core": ^7.0.0-0
+ checksum: 95cec13c36d447c5aa6b8e4c778b897eeba66dcb675edef01e0d2afcec9e8cb9726baf4f81b4bbae7a782595aed72e6a0d44ffb773272c3ca180fada99bf92db
+ languageName: node
+ linkType: hard
+
"@babel/plugin-transform-modules-amd@npm:^7.18.6":
version: 7.18.6
resolution: "@babel/plugin-transform-modules-amd@npm:7.18.6"
@@ -1160,6 +1926,18 @@ __metadata:
languageName: node
linkType: hard
+"@babel/plugin-transform-modules-amd@npm:^7.23.3":
+ version: 7.23.3
+ resolution: "@babel/plugin-transform-modules-amd@npm:7.23.3"
+ dependencies:
+ "@babel/helper-module-transforms": ^7.23.3
+ "@babel/helper-plugin-utils": ^7.22.5
+ peerDependencies:
+ "@babel/core": ^7.0.0-0
+ checksum: d163737b6a3d67ea579c9aa3b83d4df4b5c34d9dcdf25f415f027c0aa8cded7bac2750d2de5464081f67a042ad9e1c03930c2fab42acd79f9e57c00cf969ddff
+ languageName: node
+ linkType: hard
+
"@babel/plugin-transform-modules-commonjs@npm:^7.10.4, @babel/plugin-transform-modules-commonjs@npm:^7.18.6":
version: 7.18.6
resolution: "@babel/plugin-transform-modules-commonjs@npm:7.18.6"
@@ -1174,6 +1952,19 @@ __metadata:
languageName: node
linkType: hard
+"@babel/plugin-transform-modules-commonjs@npm:^7.23.3":
+ version: 7.23.3
+ resolution: "@babel/plugin-transform-modules-commonjs@npm:7.23.3"
+ dependencies:
+ "@babel/helper-module-transforms": ^7.23.3
+ "@babel/helper-plugin-utils": ^7.22.5
+ "@babel/helper-simple-access": ^7.22.5
+ peerDependencies:
+ "@babel/core": ^7.0.0-0
+ checksum: 720a231ceade4ae4d2632478db4e7fecf21987d444942b72d523487ac8d715ca97de6c8f415c71e939595e1a4776403e7dc24ed68fe9125ad4acf57753c9bff7
+ languageName: node
+ linkType: hard
+
"@babel/plugin-transform-modules-systemjs@npm:^7.19.0":
version: 7.19.0
resolution: "@babel/plugin-transform-modules-systemjs@npm:7.19.0"
@@ -1189,6 +1980,20 @@ __metadata:
languageName: node
linkType: hard
+"@babel/plugin-transform-modules-systemjs@npm:^7.23.3":
+ version: 7.23.3
+ resolution: "@babel/plugin-transform-modules-systemjs@npm:7.23.3"
+ dependencies:
+ "@babel/helper-hoist-variables": ^7.22.5
+ "@babel/helper-module-transforms": ^7.23.3
+ "@babel/helper-plugin-utils": ^7.22.5
+ "@babel/helper-validator-identifier": ^7.22.20
+ peerDependencies:
+ "@babel/core": ^7.0.0-0
+ checksum: 0d2fdd993c785aecac9e0850cd5ed7f7d448f0fbb42992a950cc0590167144df25d82af5aac9a5c99ef913d2286782afa44e577af30c10901c5ee8984910fa1f
+ languageName: node
+ linkType: hard
+
"@babel/plugin-transform-modules-umd@npm:^7.18.6":
version: 7.18.6
resolution: "@babel/plugin-transform-modules-umd@npm:7.18.6"
@@ -1201,6 +2006,18 @@ __metadata:
languageName: node
linkType: hard
+"@babel/plugin-transform-modules-umd@npm:^7.23.3":
+ version: 7.23.3
+ resolution: "@babel/plugin-transform-modules-umd@npm:7.23.3"
+ dependencies:
+ "@babel/helper-module-transforms": ^7.23.3
+ "@babel/helper-plugin-utils": ^7.22.5
+ peerDependencies:
+ "@babel/core": ^7.0.0-0
+ checksum: 586a7a2241e8b4e753a37af9466a9ffa8a67b4ba9aa756ad7500712c05d8fa9a8c1ed4f7bd25fae2a8265e6cf8fe781ec85a8ee885dd34cf50d8955ee65f12dc
+ languageName: node
+ linkType: hard
+
"@babel/plugin-transform-named-capturing-groups-regex@npm:^7.19.1":
version: 7.19.1
resolution: "@babel/plugin-transform-named-capturing-groups-regex@npm:7.19.1"
@@ -1213,6 +2030,18 @@ __metadata:
languageName: node
linkType: hard
+"@babel/plugin-transform-named-capturing-groups-regex@npm:^7.22.5":
+ version: 7.22.5
+ resolution: "@babel/plugin-transform-named-capturing-groups-regex@npm:7.22.5"
+ dependencies:
+ "@babel/helper-create-regexp-features-plugin": ^7.22.5
+ "@babel/helper-plugin-utils": ^7.22.5
+ peerDependencies:
+ "@babel/core": ^7.0.0
+ checksum: 3ee564ddee620c035b928fdc942c5d17e9c4b98329b76f9cefac65c111135d925eb94ed324064cd7556d4f5123beec79abea1d4b97d1c8a2a5c748887a2eb623
+ languageName: node
+ linkType: hard
+
"@babel/plugin-transform-new-target@npm:^7.18.6":
version: 7.18.6
resolution: "@babel/plugin-transform-new-target@npm:7.18.6"
@@ -1224,6 +2053,56 @@ __metadata:
languageName: node
linkType: hard
+"@babel/plugin-transform-new-target@npm:^7.23.3":
+ version: 7.23.3
+ resolution: "@babel/plugin-transform-new-target@npm:7.23.3"
+ dependencies:
+ "@babel/helper-plugin-utils": ^7.22.5
+ peerDependencies:
+ "@babel/core": ^7.0.0-0
+ checksum: e5053389316fce73ad5201b7777437164f333e24787fbcda4ae489cd2580dbbbdfb5694a7237bad91fabb46b591d771975d69beb1c740b82cb4761625379f00b
+ languageName: node
+ linkType: hard
+
+"@babel/plugin-transform-nullish-coalescing-operator@npm:^7.23.3":
+ version: 7.23.4
+ resolution: "@babel/plugin-transform-nullish-coalescing-operator@npm:7.23.4"
+ dependencies:
+ "@babel/helper-plugin-utils": ^7.22.5
+ "@babel/plugin-syntax-nullish-coalescing-operator": ^7.8.3
+ peerDependencies:
+ "@babel/core": ^7.0.0-0
+ checksum: a27d73ea134d3d9560a6b2e26ab60012fba15f1db95865aa0153c18f5ec82cfef6a7b3d8df74e3c2fca81534fa5efeb6cacaf7b08bdb7d123e3dafdd079886a3
+ languageName: node
+ linkType: hard
+
+"@babel/plugin-transform-numeric-separator@npm:^7.23.3":
+ version: 7.23.4
+ resolution: "@babel/plugin-transform-numeric-separator@npm:7.23.4"
+ dependencies:
+ "@babel/helper-plugin-utils": ^7.22.5
+ "@babel/plugin-syntax-numeric-separator": ^7.10.4
+ peerDependencies:
+ "@babel/core": ^7.0.0-0
+ checksum: 6ba0e5db3c620a3ec81f9e94507c821f483c15f196868df13fa454cbac719a5449baf73840f5b6eb7d77311b24a2cf8e45db53700d41727f693d46f7caf3eec3
+ languageName: node
+ linkType: hard
+
+"@babel/plugin-transform-object-rest-spread@npm:^7.23.3":
+ version: 7.23.4
+ resolution: "@babel/plugin-transform-object-rest-spread@npm:7.23.4"
+ dependencies:
+ "@babel/compat-data": ^7.23.3
+ "@babel/helper-compilation-targets": ^7.22.15
+ "@babel/helper-plugin-utils": ^7.22.5
+ "@babel/plugin-syntax-object-rest-spread": ^7.8.3
+ "@babel/plugin-transform-parameters": ^7.23.3
+ peerDependencies:
+ "@babel/core": ^7.0.0-0
+ checksum: 73fec495e327ca3959c1c03d07a621be09df00036c69fff0455af9a008291677ee9d368eec48adacdc6feac703269a649747568b4af4c4e9f134aa71cc5b378d
+ languageName: node
+ linkType: hard
+
"@babel/plugin-transform-object-super@npm:^7.18.6":
version: 7.18.6
resolution: "@babel/plugin-transform-object-super@npm:7.18.6"
@@ -1236,6 +2115,43 @@ __metadata:
languageName: node
linkType: hard
+"@babel/plugin-transform-object-super@npm:^7.23.3":
+ version: 7.23.3
+ resolution: "@babel/plugin-transform-object-super@npm:7.23.3"
+ dependencies:
+ "@babel/helper-plugin-utils": ^7.22.5
+ "@babel/helper-replace-supers": ^7.22.20
+ peerDependencies:
+ "@babel/core": ^7.0.0-0
+ checksum: e495497186f621fa79026e183b4f1fbb172fd9df812cbd2d7f02c05b08adbe58012b1a6eb6dd58d11a30343f6ec80d0f4074f9b501d70aa1c94df76d59164c53
+ languageName: node
+ linkType: hard
+
+"@babel/plugin-transform-optional-catch-binding@npm:^7.23.3":
+ version: 7.23.4
+ resolution: "@babel/plugin-transform-optional-catch-binding@npm:7.23.4"
+ dependencies:
+ "@babel/helper-plugin-utils": ^7.22.5
+ "@babel/plugin-syntax-optional-catch-binding": ^7.8.3
+ peerDependencies:
+ "@babel/core": ^7.0.0-0
+ checksum: d50b5ee142cdb088d8b5de1ccf7cea85b18b85d85b52f86618f6e45226372f01ad4cdb29abd4fd35ea99a71fefb37009e0107db7a787dcc21d4d402f97470faf
+ languageName: node
+ linkType: hard
+
+"@babel/plugin-transform-optional-chaining@npm:^7.23.3":
+ version: 7.23.4
+ resolution: "@babel/plugin-transform-optional-chaining@npm:7.23.4"
+ dependencies:
+ "@babel/helper-plugin-utils": ^7.22.5
+ "@babel/helper-skip-transparent-expression-wrappers": ^7.22.5
+ "@babel/plugin-syntax-optional-chaining": ^7.8.3
+ peerDependencies:
+ "@babel/core": ^7.0.0-0
+ checksum: e7a4c08038288057b7a08d68c4d55396ada9278095509ca51ed8dfb72a7f13f26bdd7c5185de21079fe0a9d60d22c227cb32e300d266c1bda40f70eee9f4bc1e
+ languageName: node
+ linkType: hard
+
"@babel/plugin-transform-parameters@npm:^7.18.8":
version: 7.18.8
resolution: "@babel/plugin-transform-parameters@npm:7.18.8"
@@ -1247,6 +2163,43 @@ __metadata:
languageName: node
linkType: hard
+"@babel/plugin-transform-parameters@npm:^7.23.3":
+ version: 7.23.3
+ resolution: "@babel/plugin-transform-parameters@npm:7.23.3"
+ dependencies:
+ "@babel/helper-plugin-utils": ^7.22.5
+ peerDependencies:
+ "@babel/core": ^7.0.0-0
+ checksum: a735b3e85316d17ec102e3d3d1b6993b429bdb3b494651c9d754e3b7d270462ee1f1a126ccd5e3d871af5e683727e9ef98c9d34d4a42204fffaabff91052ed16
+ languageName: node
+ linkType: hard
+
+"@babel/plugin-transform-private-methods@npm:^7.23.3":
+ version: 7.23.3
+ resolution: "@babel/plugin-transform-private-methods@npm:7.23.3"
+ dependencies:
+ "@babel/helper-create-class-features-plugin": ^7.22.15
+ "@babel/helper-plugin-utils": ^7.22.5
+ peerDependencies:
+ "@babel/core": ^7.0.0-0
+ checksum: cedc1285c49b5a6d9a3d0e5e413b756ac40b3ac2f8f68bdfc3ae268bc8d27b00abd8bb0861c72756ff5dd8bf1eb77211b7feb5baf4fdae2ebbaabe49b9adc1d0
+ languageName: node
+ linkType: hard
+
+"@babel/plugin-transform-private-property-in-object@npm:^7.23.3":
+ version: 7.23.4
+ resolution: "@babel/plugin-transform-private-property-in-object@npm:7.23.4"
+ dependencies:
+ "@babel/helper-annotate-as-pure": ^7.22.5
+ "@babel/helper-create-class-features-plugin": ^7.22.15
+ "@babel/helper-plugin-utils": ^7.22.5
+ "@babel/plugin-syntax-private-property-in-object": ^7.14.5
+ peerDependencies:
+ "@babel/core": ^7.0.0-0
+ checksum: fb7adfe94ea97542f250a70de32bddbc3e0b802381c92be947fec83ebffda57e68533c4d0697152719a3496fdd3ebf3798d451c024cd4ac848fc15ac26b70aa7
+ languageName: node
+ linkType: hard
+
"@babel/plugin-transform-property-literals@npm:^7.18.6":
version: 7.18.6
resolution: "@babel/plugin-transform-property-literals@npm:7.18.6"
@@ -1258,6 +2211,28 @@ __metadata:
languageName: node
linkType: hard
+"@babel/plugin-transform-property-literals@npm:^7.23.3":
+ version: 7.23.3
+ resolution: "@babel/plugin-transform-property-literals@npm:7.23.3"
+ dependencies:
+ "@babel/helper-plugin-utils": ^7.22.5
+ peerDependencies:
+ "@babel/core": ^7.0.0-0
+ checksum: 16b048c8e87f25095f6d53634ab7912992f78e6997a6ff549edc3cf519db4fca01c7b4e0798530d7f6a05228ceee479251245cdd850a5531c6e6f404104d6cc9
+ languageName: node
+ linkType: hard
+
+"@babel/plugin-transform-react-display-name@npm:^7.16.0, @babel/plugin-transform-react-display-name@npm:^7.23.3":
+ version: 7.23.3
+ resolution: "@babel/plugin-transform-react-display-name@npm:7.23.3"
+ dependencies:
+ "@babel/helper-plugin-utils": ^7.22.5
+ peerDependencies:
+ "@babel/core": ^7.0.0-0
+ checksum: 7f86964e8434d3ddbd3c81d2690c9b66dbf1cd8bd9512e2e24500e9fa8cf378bc52c0853270b3b82143aba5965aec04721df7abdb768f952b44f5c6e0b198779
+ languageName: node
+ linkType: hard
+
"@babel/plugin-transform-react-display-name@npm:^7.18.6":
version: 7.18.6
resolution: "@babel/plugin-transform-react-display-name@npm:7.18.6"
@@ -1280,6 +2255,17 @@ __metadata:
languageName: node
linkType: hard
+"@babel/plugin-transform-react-jsx-development@npm:^7.22.5":
+ version: 7.22.5
+ resolution: "@babel/plugin-transform-react-jsx-development@npm:7.22.5"
+ dependencies:
+ "@babel/plugin-transform-react-jsx": ^7.22.5
+ peerDependencies:
+ "@babel/core": ^7.0.0-0
+ checksum: 36bc3ff0b96bb0ef4723070a50cfdf2e72cfd903a59eba448f9fe92fea47574d6f22efd99364413719e1f3fb3c51b6c9b2990b87af088f8486a84b2a5f9e4560
+ languageName: node
+ linkType: hard
+
"@babel/plugin-transform-react-jsx@npm:^7.18.6":
version: 7.19.0
resolution: "@babel/plugin-transform-react-jsx@npm:7.19.0"
@@ -1295,6 +2281,21 @@ __metadata:
languageName: node
linkType: hard
+"@babel/plugin-transform-react-jsx@npm:^7.22.15, @babel/plugin-transform-react-jsx@npm:^7.22.5":
+ version: 7.23.4
+ resolution: "@babel/plugin-transform-react-jsx@npm:7.23.4"
+ dependencies:
+ "@babel/helper-annotate-as-pure": ^7.22.5
+ "@babel/helper-module-imports": ^7.22.15
+ "@babel/helper-plugin-utils": ^7.22.5
+ "@babel/plugin-syntax-jsx": ^7.23.3
+ "@babel/types": ^7.23.4
+ peerDependencies:
+ "@babel/core": ^7.0.0-0
+ checksum: d8b8c52e8e22e833bf77c8d1a53b0a57d1fd52ba9596a319d572de79446a8ed9d95521035bc1175c1589d1a6a34600d2e678fa81d81bac8fac121137097f1f0a
+ languageName: node
+ linkType: hard
+
"@babel/plugin-transform-react-pure-annotations@npm:^7.18.6":
version: 7.18.6
resolution: "@babel/plugin-transform-react-pure-annotations@npm:7.18.6"
@@ -1307,6 +2308,18 @@ __metadata:
languageName: node
linkType: hard
+"@babel/plugin-transform-react-pure-annotations@npm:^7.23.3":
+ version: 7.23.3
+ resolution: "@babel/plugin-transform-react-pure-annotations@npm:7.23.3"
+ dependencies:
+ "@babel/helper-annotate-as-pure": ^7.22.5
+ "@babel/helper-plugin-utils": ^7.22.5
+ peerDependencies:
+ "@babel/core": ^7.0.0-0
+ checksum: 9ea3698b1d422561d93c0187ac1ed8f2367e4250b10e259785ead5aa643c265830fd0f4cf5087a5bedbc4007444c06da2f2006686613220acf0949895f453666
+ languageName: node
+ linkType: hard
+
"@babel/plugin-transform-regenerator@npm:^7.18.6":
version: 7.18.6
resolution: "@babel/plugin-transform-regenerator@npm:7.18.6"
@@ -1319,6 +2332,18 @@ __metadata:
languageName: node
linkType: hard
+"@babel/plugin-transform-regenerator@npm:^7.23.3":
+ version: 7.23.3
+ resolution: "@babel/plugin-transform-regenerator@npm:7.23.3"
+ dependencies:
+ "@babel/helper-plugin-utils": ^7.22.5
+ regenerator-transform: ^0.15.2
+ peerDependencies:
+ "@babel/core": ^7.0.0-0
+ checksum: 7fdacc7b40008883871b519c9e5cdea493f75495118ccc56ac104b874983569a24edd024f0f5894ba1875c54ee2b442f295d6241c3280e61c725d0dd3317c8e6
+ languageName: node
+ linkType: hard
+
"@babel/plugin-transform-reserved-words@npm:^7.18.6":
version: 7.18.6
resolution: "@babel/plugin-transform-reserved-words@npm:7.18.6"
@@ -1330,6 +2355,33 @@ __metadata:
languageName: node
linkType: hard
+"@babel/plugin-transform-reserved-words@npm:^7.23.3":
+ version: 7.23.3
+ resolution: "@babel/plugin-transform-reserved-words@npm:7.23.3"
+ dependencies:
+ "@babel/helper-plugin-utils": ^7.22.5
+ peerDependencies:
+ "@babel/core": ^7.0.0-0
+ checksum: 298c4440ddc136784ff920127cea137168e068404e635dc946ddb5d7b2a27b66f1dd4c4acb01f7184478ff7d5c3e7177a127279479926519042948fb7fa0fa48
+ languageName: node
+ linkType: hard
+
+"@babel/plugin-transform-runtime@npm:^7.16.4":
+ version: 7.23.4
+ resolution: "@babel/plugin-transform-runtime@npm:7.23.4"
+ dependencies:
+ "@babel/helper-module-imports": ^7.22.15
+ "@babel/helper-plugin-utils": ^7.22.5
+ babel-plugin-polyfill-corejs2: ^0.4.6
+ babel-plugin-polyfill-corejs3: ^0.8.5
+ babel-plugin-polyfill-regenerator: ^0.5.3
+ semver: ^6.3.1
+ peerDependencies:
+ "@babel/core": ^7.0.0-0
+ checksum: a1693d27cd5ce17d0917280942a62bbf4ee27f6f0fe7beb33789bdc699cda21e5253997663248b32e8e36c01ccd202f96246413b9328b70a05d4cf64faa3191e
+ languageName: node
+ linkType: hard
+
"@babel/plugin-transform-runtime@npm:^7.9.0":
version: 7.19.1
resolution: "@babel/plugin-transform-runtime@npm:7.19.1"
@@ -1357,6 +2409,17 @@ __metadata:
languageName: node
linkType: hard
+"@babel/plugin-transform-shorthand-properties@npm:^7.23.3":
+ version: 7.23.3
+ resolution: "@babel/plugin-transform-shorthand-properties@npm:7.23.3"
+ dependencies:
+ "@babel/helper-plugin-utils": ^7.22.5
+ peerDependencies:
+ "@babel/core": ^7.0.0-0
+ checksum: 5d677a03676f9fff969b0246c423d64d77502e90a832665dc872a5a5e05e5708161ce1effd56bb3c0f2c20a1112fca874be57c8a759d8b08152755519281f326
+ languageName: node
+ linkType: hard
+
"@babel/plugin-transform-spread@npm:^7.19.0":
version: 7.19.0
resolution: "@babel/plugin-transform-spread@npm:7.19.0"
@@ -1369,6 +2432,18 @@ __metadata:
languageName: node
linkType: hard
+"@babel/plugin-transform-spread@npm:^7.23.3":
+ version: 7.23.3
+ resolution: "@babel/plugin-transform-spread@npm:7.23.3"
+ dependencies:
+ "@babel/helper-plugin-utils": ^7.22.5
+ "@babel/helper-skip-transparent-expression-wrappers": ^7.22.5
+ peerDependencies:
+ "@babel/core": ^7.0.0-0
+ checksum: 8fd5cac201e77a0b4825745f4e07a25f923842f282f006b3a79223c00f61075c8868d12eafec86b2642cd0b32077cdd32314e27bcb75ee5e6a68c0144140dcf2
+ languageName: node
+ linkType: hard
+
"@babel/plugin-transform-sticky-regex@npm:^7.18.6":
version: 7.18.6
resolution: "@babel/plugin-transform-sticky-regex@npm:7.18.6"
@@ -1380,6 +2455,17 @@ __metadata:
languageName: node
linkType: hard
+"@babel/plugin-transform-sticky-regex@npm:^7.23.3":
+ version: 7.23.3
+ resolution: "@babel/plugin-transform-sticky-regex@npm:7.23.3"
+ dependencies:
+ "@babel/helper-plugin-utils": ^7.22.5
+ peerDependencies:
+ "@babel/core": ^7.0.0-0
+ checksum: 53e55eb2575b7abfdb4af7e503a2bf7ef5faf8bf6b92d2cd2de0700bdd19e934e5517b23e6dfed94ba50ae516b62f3f916773ef7d9bc81f01503f585051e2949
+ languageName: node
+ linkType: hard
+
"@babel/plugin-transform-template-literals@npm:^7.18.9":
version: 7.18.9
resolution: "@babel/plugin-transform-template-literals@npm:7.18.9"
@@ -1391,6 +2477,17 @@ __metadata:
languageName: node
linkType: hard
+"@babel/plugin-transform-template-literals@npm:^7.23.3":
+ version: 7.23.3
+ resolution: "@babel/plugin-transform-template-literals@npm:7.23.3"
+ dependencies:
+ "@babel/helper-plugin-utils": ^7.22.5
+ peerDependencies:
+ "@babel/core": ^7.0.0-0
+ checksum: b16c5cb0b8796be0118e9c144d15bdc0d20a7f3f59009c6303a6e9a8b74c146eceb3f05186f5b97afcba7cfa87e34c1585a22186e3d5b22f2fd3d27d959d92b2
+ languageName: node
+ linkType: hard
+
"@babel/plugin-transform-typeof-symbol@npm:^7.18.9":
version: 7.18.9
resolution: "@babel/plugin-transform-typeof-symbol@npm:7.18.9"
@@ -1402,6 +2499,17 @@ __metadata:
languageName: node
linkType: hard
+"@babel/plugin-transform-typeof-symbol@npm:^7.23.3":
+ version: 7.23.3
+ resolution: "@babel/plugin-transform-typeof-symbol@npm:7.23.3"
+ dependencies:
+ "@babel/helper-plugin-utils": ^7.22.5
+ peerDependencies:
+ "@babel/core": ^7.0.0-0
+ checksum: 0af7184379d43afac7614fc89b1bdecce4e174d52f4efaeee8ec1a4f2c764356c6dba3525c0685231f1cbf435b6dd4ee9e738d7417f3b10ce8bbe869c32f4384
+ languageName: node
+ linkType: hard
+
"@babel/plugin-transform-typescript@npm:^7.18.6":
version: 7.19.3
resolution: "@babel/plugin-transform-typescript@npm:7.19.3"
@@ -1415,6 +2523,20 @@ __metadata:
languageName: node
linkType: hard
+"@babel/plugin-transform-typescript@npm:^7.23.3":
+ version: 7.23.4
+ resolution: "@babel/plugin-transform-typescript@npm:7.23.4"
+ dependencies:
+ "@babel/helper-annotate-as-pure": ^7.22.5
+ "@babel/helper-create-class-features-plugin": ^7.22.15
+ "@babel/helper-plugin-utils": ^7.22.5
+ "@babel/plugin-syntax-typescript": ^7.23.3
+ peerDependencies:
+ "@babel/core": ^7.0.0-0
+ checksum: 1cd8426763296d27547924022d6aa35ae9c6b93e4f3110af6123d03eec7b7fa319a6965165e13215ba30ac37ef2cca67dadbe15d1f1508b3d1a06423a0592d3a
+ languageName: node
+ linkType: hard
+
"@babel/plugin-transform-unicode-escapes@npm:^7.18.10":
version: 7.18.10
resolution: "@babel/plugin-transform-unicode-escapes@npm:7.18.10"
@@ -1426,6 +2548,29 @@ __metadata:
languageName: node
linkType: hard
+"@babel/plugin-transform-unicode-escapes@npm:^7.23.3":
+ version: 7.23.3
+ resolution: "@babel/plugin-transform-unicode-escapes@npm:7.23.3"
+ dependencies:
+ "@babel/helper-plugin-utils": ^7.22.5
+ peerDependencies:
+ "@babel/core": ^7.0.0-0
+ checksum: 561c429183a54b9e4751519a3dfba6014431e9cdc1484fad03bdaf96582dfc72c76a4f8661df2aeeae7c34efd0fa4d02d3b83a2f63763ecf71ecc925f9cc1f60
+ languageName: node
+ linkType: hard
+
+"@babel/plugin-transform-unicode-property-regex@npm:^7.23.3":
+ version: 7.23.3
+ resolution: "@babel/plugin-transform-unicode-property-regex@npm:7.23.3"
+ dependencies:
+ "@babel/helper-create-regexp-features-plugin": ^7.22.15
+ "@babel/helper-plugin-utils": ^7.22.5
+ peerDependencies:
+ "@babel/core": ^7.0.0-0
+ checksum: 2298461a194758086d17c23c26c7de37aa533af910f9ebf31ebd0893d4aa317468043d23f73edc782ec21151d3c46cf0ff8098a83b725c49a59de28a1d4d6225
+ languageName: node
+ linkType: hard
+
"@babel/plugin-transform-unicode-regex@npm:^7.18.6":
version: 7.18.6
resolution: "@babel/plugin-transform-unicode-regex@npm:7.18.6"
@@ -1438,6 +2583,120 @@ __metadata:
languageName: node
linkType: hard
+"@babel/plugin-transform-unicode-regex@npm:^7.23.3":
+ version: 7.23.3
+ resolution: "@babel/plugin-transform-unicode-regex@npm:7.23.3"
+ dependencies:
+ "@babel/helper-create-regexp-features-plugin": ^7.22.15
+ "@babel/helper-plugin-utils": ^7.22.5
+ peerDependencies:
+ "@babel/core": ^7.0.0-0
+ checksum: c5f835d17483ba899787f92e313dfa5b0055e3deab332f1d254078a2bba27ede47574b6599fcf34d3763f0c048ae0779dc21d2d8db09295edb4057478dc80a9a
+ languageName: node
+ linkType: hard
+
+"@babel/plugin-transform-unicode-sets-regex@npm:^7.23.3":
+ version: 7.23.3
+ resolution: "@babel/plugin-transform-unicode-sets-regex@npm:7.23.3"
+ dependencies:
+ "@babel/helper-create-regexp-features-plugin": ^7.22.15
+ "@babel/helper-plugin-utils": ^7.22.5
+ peerDependencies:
+ "@babel/core": ^7.0.0
+ checksum: 79d0b4c951955ca68235c87b91ab2b393c96285f8aeaa34d6db416d2ddac90000c9bd6e8c4d82b60a2b484da69930507245035f28ba63c6cae341cf3ba68fdef
+ languageName: node
+ linkType: hard
+
+"@babel/preset-env@npm:^7.16.4":
+ version: 7.23.3
+ resolution: "@babel/preset-env@npm:7.23.3"
+ dependencies:
+ "@babel/compat-data": ^7.23.3
+ "@babel/helper-compilation-targets": ^7.22.15
+ "@babel/helper-plugin-utils": ^7.22.5
+ "@babel/helper-validator-option": ^7.22.15
+ "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": ^7.23.3
+ "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": ^7.23.3
+ "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": ^7.23.3
+ "@babel/plugin-proposal-private-property-in-object": 7.21.0-placeholder-for-preset-env.2
+ "@babel/plugin-syntax-async-generators": ^7.8.4
+ "@babel/plugin-syntax-class-properties": ^7.12.13
+ "@babel/plugin-syntax-class-static-block": ^7.14.5
+ "@babel/plugin-syntax-dynamic-import": ^7.8.3
+ "@babel/plugin-syntax-export-namespace-from": ^7.8.3
+ "@babel/plugin-syntax-import-assertions": ^7.23.3
+ "@babel/plugin-syntax-import-attributes": ^7.23.3
+ "@babel/plugin-syntax-import-meta": ^7.10.4
+ "@babel/plugin-syntax-json-strings": ^7.8.3
+ "@babel/plugin-syntax-logical-assignment-operators": ^7.10.4
+ "@babel/plugin-syntax-nullish-coalescing-operator": ^7.8.3
+ "@babel/plugin-syntax-numeric-separator": ^7.10.4
+ "@babel/plugin-syntax-object-rest-spread": ^7.8.3
+ "@babel/plugin-syntax-optional-catch-binding": ^7.8.3
+ "@babel/plugin-syntax-optional-chaining": ^7.8.3
+ "@babel/plugin-syntax-private-property-in-object": ^7.14.5
+ "@babel/plugin-syntax-top-level-await": ^7.14.5
+ "@babel/plugin-syntax-unicode-sets-regex": ^7.18.6
+ "@babel/plugin-transform-arrow-functions": ^7.23.3
+ "@babel/plugin-transform-async-generator-functions": ^7.23.3
+ "@babel/plugin-transform-async-to-generator": ^7.23.3
+ "@babel/plugin-transform-block-scoped-functions": ^7.23.3
+ "@babel/plugin-transform-block-scoping": ^7.23.3
+ "@babel/plugin-transform-class-properties": ^7.23.3
+ "@babel/plugin-transform-class-static-block": ^7.23.3
+ "@babel/plugin-transform-classes": ^7.23.3
+ "@babel/plugin-transform-computed-properties": ^7.23.3
+ "@babel/plugin-transform-destructuring": ^7.23.3
+ "@babel/plugin-transform-dotall-regex": ^7.23.3
+ "@babel/plugin-transform-duplicate-keys": ^7.23.3
+ "@babel/plugin-transform-dynamic-import": ^7.23.3
+ "@babel/plugin-transform-exponentiation-operator": ^7.23.3
+ "@babel/plugin-transform-export-namespace-from": ^7.23.3
+ "@babel/plugin-transform-for-of": ^7.23.3
+ "@babel/plugin-transform-function-name": ^7.23.3
+ "@babel/plugin-transform-json-strings": ^7.23.3
+ "@babel/plugin-transform-literals": ^7.23.3
+ "@babel/plugin-transform-logical-assignment-operators": ^7.23.3
+ "@babel/plugin-transform-member-expression-literals": ^7.23.3
+ "@babel/plugin-transform-modules-amd": ^7.23.3
+ "@babel/plugin-transform-modules-commonjs": ^7.23.3
+ "@babel/plugin-transform-modules-systemjs": ^7.23.3
+ "@babel/plugin-transform-modules-umd": ^7.23.3
+ "@babel/plugin-transform-named-capturing-groups-regex": ^7.22.5
+ "@babel/plugin-transform-new-target": ^7.23.3
+ "@babel/plugin-transform-nullish-coalescing-operator": ^7.23.3
+ "@babel/plugin-transform-numeric-separator": ^7.23.3
+ "@babel/plugin-transform-object-rest-spread": ^7.23.3
+ "@babel/plugin-transform-object-super": ^7.23.3
+ "@babel/plugin-transform-optional-catch-binding": ^7.23.3
+ "@babel/plugin-transform-optional-chaining": ^7.23.3
+ "@babel/plugin-transform-parameters": ^7.23.3
+ "@babel/plugin-transform-private-methods": ^7.23.3
+ "@babel/plugin-transform-private-property-in-object": ^7.23.3
+ "@babel/plugin-transform-property-literals": ^7.23.3
+ "@babel/plugin-transform-regenerator": ^7.23.3
+ "@babel/plugin-transform-reserved-words": ^7.23.3
+ "@babel/plugin-transform-shorthand-properties": ^7.23.3
+ "@babel/plugin-transform-spread": ^7.23.3
+ "@babel/plugin-transform-sticky-regex": ^7.23.3
+ "@babel/plugin-transform-template-literals": ^7.23.3
+ "@babel/plugin-transform-typeof-symbol": ^7.23.3
+ "@babel/plugin-transform-unicode-escapes": ^7.23.3
+ "@babel/plugin-transform-unicode-property-regex": ^7.23.3
+ "@babel/plugin-transform-unicode-regex": ^7.23.3
+ "@babel/plugin-transform-unicode-sets-regex": ^7.23.3
+ "@babel/preset-modules": 0.1.6-no-external-plugins
+ babel-plugin-polyfill-corejs2: ^0.4.6
+ babel-plugin-polyfill-corejs3: ^0.8.5
+ babel-plugin-polyfill-regenerator: ^0.5.3
+ core-js-compat: ^3.31.0
+ semver: ^6.3.1
+ peerDependencies:
+ "@babel/core": ^7.0.0-0
+ checksum: a16780b7d7deeccf70796cd8467e4aa6ad86b33fc86f67e23a606ae6bd6f2f26a952ccd17cf3f6ffb72584ac70d6cd6a936910ee31dbe4ac9622583ad5c2ae30
+ languageName: node
+ linkType: hard
+
"@babel/preset-env@npm:^7.9.5":
version: 7.19.3
resolution: "@babel/preset-env@npm:7.19.3"
@@ -1523,6 +2782,19 @@ __metadata:
languageName: node
linkType: hard
+"@babel/preset-modules@npm:0.1.6-no-external-plugins":
+ version: 0.1.6-no-external-plugins
+ resolution: "@babel/preset-modules@npm:0.1.6-no-external-plugins"
+ dependencies:
+ "@babel/helper-plugin-utils": ^7.0.0
+ "@babel/types": ^7.4.4
+ esutils: ^2.0.2
+ peerDependencies:
+ "@babel/core": ^7.0.0-0 || ^8.0.0-0 <8.0.0
+ checksum: 4855e799bc50f2449fb5210f78ea9e8fd46cf4f242243f1e2ed838e2bd702e25e73e822e7f8447722a5f4baa5e67a8f7a0e403f3e7ce04540ff743a9c411c375
+ languageName: node
+ linkType: hard
+
"@babel/preset-modules@npm:^0.1.5":
version: 0.1.5
resolution: "@babel/preset-modules@npm:0.1.5"
@@ -1538,6 +2810,22 @@ __metadata:
languageName: node
linkType: hard
+"@babel/preset-react@npm:^7.16.0":
+ version: 7.23.3
+ resolution: "@babel/preset-react@npm:7.23.3"
+ dependencies:
+ "@babel/helper-plugin-utils": ^7.22.5
+ "@babel/helper-validator-option": ^7.22.15
+ "@babel/plugin-transform-react-display-name": ^7.23.3
+ "@babel/plugin-transform-react-jsx": ^7.22.15
+ "@babel/plugin-transform-react-jsx-development": ^7.22.5
+ "@babel/plugin-transform-react-pure-annotations": ^7.23.3
+ peerDependencies:
+ "@babel/core": ^7.0.0-0
+ checksum: 2d90961e7e627a74b44551e88ad36a440579e283e8dc27972bf2f50682152bbc77228673a3ea22c0e0d005b70cbc487eccd64897c5e5e0384e5ce18f300b21eb
+ languageName: node
+ linkType: hard
+
"@babel/preset-react@npm:^7.9.4":
version: 7.18.6
resolution: "@babel/preset-react@npm:7.18.6"
@@ -1554,6 +2842,21 @@ __metadata:
languageName: node
linkType: hard
+"@babel/preset-typescript@npm:^7.16.0":
+ version: 7.23.3
+ resolution: "@babel/preset-typescript@npm:7.23.3"
+ dependencies:
+ "@babel/helper-plugin-utils": ^7.22.5
+ "@babel/helper-validator-option": ^7.22.15
+ "@babel/plugin-syntax-jsx": ^7.23.3
+ "@babel/plugin-transform-modules-commonjs": ^7.23.3
+ "@babel/plugin-transform-typescript": ^7.23.3
+ peerDependencies:
+ "@babel/core": ^7.0.0-0
+ checksum: 105a2d39bbc464da0f7e1ad7f535c77c5f62d6b410219355b20e552e7d29933567a5c55339b5d0aec1a5c7a0a7dfdf1b54aae601a4fe15a157d54dcbfcb3e854
+ languageName: node
+ linkType: hard
+
"@babel/preset-typescript@npm:^7.9.0":
version: 7.18.6
resolution: "@babel/preset-typescript@npm:7.18.6"
@@ -1567,13 +2870,10 @@ __metadata:
languageName: node
linkType: hard
-"@babel/runtime-corejs3@npm:^7.12.1":
- version: 7.22.6
- resolution: "@babel/runtime-corejs3@npm:7.22.6"
- dependencies:
- core-js-pure: ^3.30.2
- regenerator-runtime: ^0.13.11
- checksum: 4e1ab78cdb797fe82668df0fcb8c2dccb6c4b12787b07536c4457952c49ff06465a9304b2cff7a31d7e21af6e57008a84ccb0c9886b6aa9cbf4b446c3a8c05e5
+"@babel/regjsgen@npm:^0.8.0":
+ version: 0.8.0
+ resolution: "@babel/regjsgen@npm:0.8.0"
+ checksum: 89c338fee774770e5a487382170711014d49a68eb281e74f2b5eac88f38300a4ad545516a7786a8dd5702e9cf009c94c2f582d200f077ac5decd74c56b973730
languageName: node
linkType: hard
@@ -1595,12 +2895,12 @@ __metadata:
languageName: node
linkType: hard
-"@babel/runtime@npm:^7.4.5":
- version: 7.22.6
- resolution: "@babel/runtime@npm:7.22.6"
+"@babel/runtime@npm:^7.16.3, @babel/runtime@npm:^7.23.2":
+ version: 7.23.4
+ resolution: "@babel/runtime@npm:7.23.4"
dependencies:
- regenerator-runtime: ^0.13.11
- checksum: e585338287c4514a713babf4fdb8fc2a67adcebab3e7723a739fc62c79cfda875b314c90fd25f827afb150d781af97bc16c85bfdbfa2889f06053879a1ddb597
+ regenerator-runtime: ^0.14.0
+ checksum: 8eb6a6b2367f7d60e7f7dd83f477cc2e2fdb169e5460694d7614ce5c730e83324bcf29251b70940068e757ad1ee56ff8073a372260d90cad55f18a825caf97cd
languageName: node
linkType: hard
@@ -1615,6 +2915,17 @@ __metadata:
languageName: node
linkType: hard
+"@babel/template@npm:^7.22.15":
+ version: 7.22.15
+ resolution: "@babel/template@npm:7.22.15"
+ dependencies:
+ "@babel/code-frame": ^7.22.13
+ "@babel/parser": ^7.22.15
+ "@babel/types": ^7.22.15
+ checksum: 1f3e7dcd6c44f5904c184b3f7fe280394b191f2fed819919ffa1e529c259d5b197da8981b6ca491c235aee8dbad4a50b7e31304aa531271cb823a4a24a0dd8fd
+ languageName: node
+ linkType: hard
+
"@babel/template@npm:^7.22.5":
version: 7.22.5
resolution: "@babel/template@npm:7.22.5"
@@ -1662,21 +2973,21 @@ __metadata:
languageName: node
linkType: hard
-"@babel/traverse@npm:^7.7.0":
- version: 7.22.8
- resolution: "@babel/traverse@npm:7.22.8"
- dependencies:
- "@babel/code-frame": ^7.22.5
- "@babel/generator": ^7.22.7
- "@babel/helper-environment-visitor": ^7.22.5
- "@babel/helper-function-name": ^7.22.5
+"@babel/traverse@npm:^7.23.3, @babel/traverse@npm:^7.23.4":
+ version: 7.23.4
+ resolution: "@babel/traverse@npm:7.23.4"
+ dependencies:
+ "@babel/code-frame": ^7.23.4
+ "@babel/generator": ^7.23.4
+ "@babel/helper-environment-visitor": ^7.22.20
+ "@babel/helper-function-name": ^7.23.0
"@babel/helper-hoist-variables": ^7.22.5
"@babel/helper-split-export-declaration": ^7.22.6
- "@babel/parser": ^7.22.7
- "@babel/types": ^7.22.5
+ "@babel/parser": ^7.23.4
+ "@babel/types": ^7.23.4
debug: ^4.1.0
globals: ^11.1.0
- checksum: a381369bc3eedfd13ed5fef7b884657f1c29024ea7388198149f0edc34bd69ce3966e9f40188d15f56490a5e12ba250ccc485f2882b53d41b054fccefb233e33
+ checksum: e8c9cd92cfd6fec9cf3969604edea5a58c2d55275b88b9de06f0d94de43b64b04d57168554b617159d62c840a8700e6d4c7954d2e6ed69cfb918202ac01561e9
languageName: node
linkType: hard
@@ -1702,7 +3013,18 @@ __metadata:
languageName: node
linkType: hard
-"@babel/types@npm:^7.22.5, @babel/types@npm:^7.7.0":
+"@babel/types@npm:^7.22.15, @babel/types@npm:^7.22.19, @babel/types@npm:^7.23.0, @babel/types@npm:^7.23.3, @babel/types@npm:^7.23.4":
+ version: 7.23.4
+ resolution: "@babel/types@npm:7.23.4"
+ dependencies:
+ "@babel/helper-string-parser": ^7.23.4
+ "@babel/helper-validator-identifier": ^7.22.20
+ to-fast-properties: ^2.0.0
+ checksum: 8a1ab20da663d202b1c090fdef4b157d3c7d8cb1cf60ea548f887d7b674935371409804d6cba52f870c22ced7685fcb41b0578d3edde720990de00cbb328da54
+ languageName: node
+ linkType: hard
+
+"@babel/types@npm:^7.22.5":
version: 7.22.5
resolution: "@babel/types@npm:7.22.5"
dependencies:
@@ -1931,29 +3253,29 @@ __metadata:
languageName: node
linkType: hard
-"@csstools/css-parser-algorithms@npm:^2.3.0":
- version: 2.3.0
- resolution: "@csstools/css-parser-algorithms@npm:2.3.0"
+"@csstools/css-parser-algorithms@npm:^2.3.1":
+ version: 2.3.2
+ resolution: "@csstools/css-parser-algorithms@npm:2.3.2"
peerDependencies:
- "@csstools/css-tokenizer": ^2.1.1
- checksum: 3be22a0cfcfe0dc4bb140e2f266590addf21c5052d9e69334da860b3839fbd4369c3d158cbc396032d5ed96d01d2b5d8ebdb5497f75c9830ed9ce99853e3f915
+ "@csstools/css-tokenizer": ^2.2.1
+ checksum: 71663a00369014727ac89ae738f0acd1341b2dc1474ff16799a6f4d24674c55c3ddb89d70c8f1ffc4e03508b18a621830f8f8a51707fda6cc5ea48f1a53cc559
languageName: node
linkType: hard
-"@csstools/css-tokenizer@npm:^2.1.1":
- version: 2.1.1
- resolution: "@csstools/css-tokenizer@npm:2.1.1"
- checksum: d6ac4b08d7fdfc146755542f00b208af7248efd6cf2eb0f0f7d2ba3583a81f08ed9be6047d78b046925708b5bd0886f487edeeee2f90f0f34030dcbef4122d0e
+"@csstools/css-tokenizer@npm:^2.2.0":
+ version: 2.2.1
+ resolution: "@csstools/css-tokenizer@npm:2.2.1"
+ checksum: ebd9f65b253037d3a575ded45dbe41c12e71d83d6aa8a6a3a9fc2427862a805678df2a825cd19cf36b587be93f5cb1bd0932bb5c362d227ed9533db35b1fc6fa
languageName: node
linkType: hard
-"@csstools/media-query-list-parser@npm:^2.1.2":
- version: 2.1.2
- resolution: "@csstools/media-query-list-parser@npm:2.1.2"
+"@csstools/media-query-list-parser@npm:^2.1.4":
+ version: 2.1.5
+ resolution: "@csstools/media-query-list-parser@npm:2.1.5"
peerDependencies:
- "@csstools/css-parser-algorithms": ^2.3.0
- "@csstools/css-tokenizer": ^2.1.1
- checksum: 04936573ba837f14d7d637e172342c473665679c6497bbc0d548d93d08cb22e22151bb19e0e20422954c0b2aa50c3f38c9fc5f45c136e31bc863c656cb79df1b
+ "@csstools/css-parser-algorithms": ^2.3.2
+ "@csstools/css-tokenizer": ^2.2.1
+ checksum: 119c27951377781c06c0b68ee6f7815c71d7623e439da0d5009f2101a6cd996f60b3fd60466d7059b8f7a936fbc9fbd2306ba953fa2daf9728a710881971ab08
languageName: node
linkType: hard
@@ -2096,6 +3418,48 @@ __metadata:
languageName: node
linkType: hard
+"@eslint-community/eslint-utils@npm:^4.2.0":
+ version: 4.4.0
+ resolution: "@eslint-community/eslint-utils@npm:4.4.0"
+ dependencies:
+ eslint-visitor-keys: ^3.3.0
+ peerDependencies:
+ eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
+ checksum: cdfe3ae42b4f572cbfb46d20edafe6f36fc5fb52bf2d90875c58aefe226892b9677fef60820e2832caf864a326fe4fc225714c46e8389ccca04d5f9288aabd22
+ languageName: node
+ linkType: hard
+
+"@eslint-community/regexpp@npm:^4.4.0, @eslint-community/regexpp@npm:^4.6.1":
+ version: 4.10.0
+ resolution: "@eslint-community/regexpp@npm:4.10.0"
+ checksum: 2a6e345429ea8382aaaf3a61f865cae16ed44d31ca917910033c02dc00d505d939f10b81e079fa14d43b51499c640138e153b7e40743c4c094d9df97d4e56f7b
+ languageName: node
+ linkType: hard
+
+"@eslint/eslintrc@npm:^2.1.3":
+ version: 2.1.3
+ resolution: "@eslint/eslintrc@npm:2.1.3"
+ dependencies:
+ ajv: ^6.12.4
+ debug: ^4.3.2
+ espree: ^9.6.0
+ globals: ^13.19.0
+ ignore: ^5.2.0
+ import-fresh: ^3.2.1
+ js-yaml: ^4.1.0
+ minimatch: ^3.1.2
+ strip-json-comments: ^3.1.1
+ checksum: 5c6c3878192fe0ddffa9aff08b4e2f3bcc8f1c10d6449b7295a5f58b662019896deabfc19890455ffd7e60a5bd28d25d0eaefb2f78b2d230aae3879af92b89e5
+ languageName: node
+ linkType: hard
+
+"@eslint/js@npm:8.54.0":
+ version: 8.54.0
+ resolution: "@eslint/js@npm:8.54.0"
+ checksum: 6d88a6f711ef0133566b5340e3178a178fbb297585766460f195d0a9db85688f1e5cf8559fd5748aeb3131e2096c66595b323d8edab22df015acda68f1ebde92
+ languageName: node
+ linkType: hard
+
"@formatjs/intl-unified-numberformat@npm:^3.2.0":
version: 3.3.7
resolution: "@formatjs/intl-unified-numberformat@npm:3.3.7"
@@ -2129,6 +3493,31 @@ __metadata:
languageName: node
linkType: hard
+"@humanwhocodes/config-array@npm:^0.11.13":
+ version: 0.11.13
+ resolution: "@humanwhocodes/config-array@npm:0.11.13"
+ dependencies:
+ "@humanwhocodes/object-schema": ^2.0.1
+ debug: ^4.1.1
+ minimatch: ^3.0.5
+ checksum: f8ea57b0d7ed7f2d64cd3944654976829d9da91c04d9c860e18804729a33f7681f78166ef4c761850b8c324d362f7d53f14c5c44907a6b38b32c703ff85e4805
+ languageName: node
+ linkType: hard
+
+"@humanwhocodes/module-importer@npm:^1.0.1":
+ version: 1.0.1
+ resolution: "@humanwhocodes/module-importer@npm:1.0.1"
+ checksum: 0fd22007db8034a2cdf2c764b140d37d9020bbfce8a49d3ec5c05290e77d4b0263b1b972b752df8c89e5eaa94073408f2b7d977aed131faf6cf396ebb5d7fb61
+ languageName: node
+ linkType: hard
+
+"@humanwhocodes/object-schema@npm:^2.0.1":
+ version: 2.0.1
+ resolution: "@humanwhocodes/object-schema@npm:2.0.1"
+ checksum: 24929487b1ed48795d2f08346a0116cc5ee4634848bce64161fb947109352c562310fd159fc64dda0e8b853307f5794605191a9547f7341158559ca3c8262a45
+ languageName: node
+ linkType: hard
+
"@hutson/parse-repository-url@npm:^3.0.0":
version: 3.0.2
resolution: "@hutson/parse-repository-url@npm:3.0.2"
@@ -2153,6 +3542,17 @@ __metadata:
languageName: node
linkType: hard
+"@jridgewell/gen-mapping@npm:^0.3.0":
+ version: 0.3.3
+ resolution: "@jridgewell/gen-mapping@npm:0.3.3"
+ dependencies:
+ "@jridgewell/set-array": ^1.0.1
+ "@jridgewell/sourcemap-codec": ^1.4.10
+ "@jridgewell/trace-mapping": ^0.3.9
+ checksum: 4a74944bd31f22354fc01c3da32e83c19e519e3bbadafa114f6da4522ea77dd0c2842607e923a591d60a76699d819a2fbb6f3552e277efdb9b58b081390b60ab
+ languageName: node
+ linkType: hard
+
"@jridgewell/gen-mapping@npm:^0.3.2":
version: 0.3.2
resolution: "@jridgewell/gen-mapping@npm:0.3.2"
@@ -2242,6 +3642,15 @@ __metadata:
languageName: node
linkType: hard
+"@nicolo-ribaudo/eslint-scope-5-internals@npm:5.1.1-v1":
+ version: 5.1.1-v1
+ resolution: "@nicolo-ribaudo/eslint-scope-5-internals@npm:5.1.1-v1"
+ dependencies:
+ eslint-scope: 5.1.1
+ checksum: f2e3b2d6a6e2d9f163ca22105910c9f850dc4897af0aea3ef0a5886b63d8e1ba6505b71c99cb78a3bba24a09557d601eb21c8dede3f3213753fcfef364eb0e57
+ languageName: node
+ linkType: hard
+
"@nodelib/fs.scandir@npm:2.1.5":
version: 2.1.5
resolution: "@nodelib/fs.scandir@npm:2.1.5"
@@ -2259,7 +3668,7 @@ __metadata:
languageName: node
linkType: hard
-"@nodelib/fs.walk@npm:^1.2.3":
+"@nodelib/fs.walk@npm:^1.2.3, @nodelib/fs.walk@npm:^1.2.8":
version: 1.2.8
resolution: "@nodelib/fs.walk@npm:1.2.8"
dependencies:
@@ -2434,6 +3843,20 @@ __metadata:
languageName: node
linkType: hard
+"@pkgr/utils@npm:^2.3.1":
+ version: 2.4.2
+ resolution: "@pkgr/utils@npm:2.4.2"
+ dependencies:
+ cross-spawn: ^7.0.3
+ fast-glob: ^3.3.0
+ is-glob: ^4.0.3
+ open: ^9.1.0
+ picocolors: ^1.0.0
+ tslib: ^2.6.0
+ checksum: 24e04c121269317d259614cd32beea3af38277151c4002df5883c4be920b8e3490bb897748e844f9d46bf68230f86dabd4e8f093773130e7e60529a769a132fc
+ languageName: node
+ linkType: hard
+
"@plone-collective/volto-sentry@npm:0.3.0":
version: 0.3.0
resolution: "@plone-collective/volto-sentry@npm:0.3.0"
@@ -2514,6 +3937,13 @@ __metadata:
languageName: node
linkType: hard
+"@rushstack/eslint-patch@npm:^1.1.0":
+ version: 1.6.0
+ resolution: "@rushstack/eslint-patch@npm:1.6.0"
+ checksum: 9fbc39e6070508139ac9ded5cc223780315a1e65ccb7612dd3dff07a0957fa9985a2b049bb5cae21d7eeed44ed315e2868b8755941500dc64ed9932c5760c80d
+ languageName: node
+ linkType: hard
+
"@sentry/browser@npm:7.15.0":
version: 7.15.0
resolution: "@sentry/browser@npm:7.15.0"
@@ -2728,6 +4158,20 @@ __metadata:
languageName: node
linkType: hard
+"@types/json-schema@npm:^7.0.9":
+ version: 7.0.15
+ resolution: "@types/json-schema@npm:7.0.15"
+ checksum: 97ed0cb44d4070aecea772b7b2e2ed971e10c81ec87dd4ecc160322ffa55ff330dace1793489540e3e318d90942064bb697cc0f8989391797792d919737b3b98
+ languageName: node
+ linkType: hard
+
+"@types/json5@npm:^0.0.29":
+ version: 0.0.29
+ resolution: "@types/json5@npm:0.0.29"
+ checksum: e60b153664572116dfea673c5bda7778dbff150498f44f998e34b5886d8afc47f16799280e4b6e241c0472aef1bc36add771c569c68fc5125fc2ae519a3eb9ac
+ languageName: node
+ linkType: hard
+
"@types/loader-utils@npm:^2.0.1":
version: 2.0.3
resolution: "@types/loader-utils@npm:2.0.3"
@@ -2773,6 +4217,13 @@ __metadata:
languageName: node
linkType: hard
+"@types/semver@npm:^7.3.12":
+ version: 7.5.6
+ resolution: "@types/semver@npm:7.5.6"
+ checksum: 563a0120ec0efcc326567db2ed920d5d98346f3638b6324ea6b50222b96f02a8add3c51a916b6897b51523aad8ac227d21d3dcf8913559f1bfc6c15b14d23037
+ languageName: node
+ linkType: hard
+
"@types/source-list-map@npm:*":
version: 0.1.2
resolution: "@types/source-list-map@npm:0.1.2"
@@ -2821,6 +4272,145 @@ __metadata:
languageName: node
linkType: hard
+"@typescript-eslint/eslint-plugin@npm:^5.5.0":
+ version: 5.62.0
+ resolution: "@typescript-eslint/eslint-plugin@npm:5.62.0"
+ dependencies:
+ "@eslint-community/regexpp": ^4.4.0
+ "@typescript-eslint/scope-manager": 5.62.0
+ "@typescript-eslint/type-utils": 5.62.0
+ "@typescript-eslint/utils": 5.62.0
+ debug: ^4.3.4
+ graphemer: ^1.4.0
+ ignore: ^5.2.0
+ natural-compare-lite: ^1.4.0
+ semver: ^7.3.7
+ tsutils: ^3.21.0
+ peerDependencies:
+ "@typescript-eslint/parser": ^5.0.0
+ eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+ checksum: fc104b389c768f9fa7d45a48c86d5c1ad522c1d0512943e782a56b1e3096b2cbcc1eea3fcc590647bf0658eef61aac35120a9c6daf979bf629ad2956deb516a1
+ languageName: node
+ linkType: hard
+
+"@typescript-eslint/experimental-utils@npm:^5.0.0":
+ version: 5.62.0
+ resolution: "@typescript-eslint/experimental-utils@npm:5.62.0"
+ dependencies:
+ "@typescript-eslint/utils": 5.62.0
+ peerDependencies:
+ eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
+ checksum: ce55d9f74eac5cb94d66d5db9ead9a5d734f4301519fb5956a57f4b405a5318a115b0316195a3c039e0111489138680411709cb769085d71e1e1db1376ea0949
+ languageName: node
+ linkType: hard
+
+"@typescript-eslint/parser@npm:^5.5.0":
+ version: 5.62.0
+ resolution: "@typescript-eslint/parser@npm:5.62.0"
+ dependencies:
+ "@typescript-eslint/scope-manager": 5.62.0
+ "@typescript-eslint/types": 5.62.0
+ "@typescript-eslint/typescript-estree": 5.62.0
+ debug: ^4.3.4
+ peerDependencies:
+ eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+ checksum: d168f4c7f21a7a63f47002e2d319bcbb6173597af5c60c1cf2de046b46c76b4930a093619e69faf2d30214c29ab27b54dcf1efc7046a6a6bd6f37f59a990e752
+ languageName: node
+ linkType: hard
+
+"@typescript-eslint/scope-manager@npm:5.62.0":
+ version: 5.62.0
+ resolution: "@typescript-eslint/scope-manager@npm:5.62.0"
+ dependencies:
+ "@typescript-eslint/types": 5.62.0
+ "@typescript-eslint/visitor-keys": 5.62.0
+ checksum: 6062d6b797fe1ce4d275bb0d17204c827494af59b5eaf09d8a78cdd39dadddb31074dded4297aaf5d0f839016d601032857698b0e4516c86a41207de606e9573
+ languageName: node
+ linkType: hard
+
+"@typescript-eslint/type-utils@npm:5.62.0":
+ version: 5.62.0
+ resolution: "@typescript-eslint/type-utils@npm:5.62.0"
+ dependencies:
+ "@typescript-eslint/typescript-estree": 5.62.0
+ "@typescript-eslint/utils": 5.62.0
+ debug: ^4.3.4
+ tsutils: ^3.21.0
+ peerDependencies:
+ eslint: "*"
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+ checksum: fc41eece5f315dfda14320be0da78d3a971d650ea41300be7196934b9715f3fe1120a80207551eb71d39568275dbbcf359bde540d1ca1439d8be15e9885d2739
+ languageName: node
+ linkType: hard
+
+"@typescript-eslint/types@npm:5.62.0":
+ version: 5.62.0
+ resolution: "@typescript-eslint/types@npm:5.62.0"
+ checksum: 48c87117383d1864766486f24de34086155532b070f6264e09d0e6139449270f8a9559cfef3c56d16e3bcfb52d83d42105d61b36743626399c7c2b5e0ac3b670
+ languageName: node
+ linkType: hard
+
+"@typescript-eslint/typescript-estree@npm:5.62.0":
+ version: 5.62.0
+ resolution: "@typescript-eslint/typescript-estree@npm:5.62.0"
+ dependencies:
+ "@typescript-eslint/types": 5.62.0
+ "@typescript-eslint/visitor-keys": 5.62.0
+ debug: ^4.3.4
+ globby: ^11.1.0
+ is-glob: ^4.0.3
+ semver: ^7.3.7
+ tsutils: ^3.21.0
+ peerDependenciesMeta:
+ typescript:
+ optional: true
+ checksum: 3624520abb5807ed8f57b1197e61c7b1ed770c56dfcaca66372d584ff50175225798bccb701f7ef129d62c5989070e1ee3a0aa2d84e56d9524dcf011a2bb1a52
+ languageName: node
+ linkType: hard
+
+"@typescript-eslint/utils@npm:5.62.0, @typescript-eslint/utils@npm:^5.58.0":
+ version: 5.62.0
+ resolution: "@typescript-eslint/utils@npm:5.62.0"
+ dependencies:
+ "@eslint-community/eslint-utils": ^4.2.0
+ "@types/json-schema": ^7.0.9
+ "@types/semver": ^7.3.12
+ "@typescript-eslint/scope-manager": 5.62.0
+ "@typescript-eslint/types": 5.62.0
+ "@typescript-eslint/typescript-estree": 5.62.0
+ eslint-scope: ^5.1.1
+ semver: ^7.3.7
+ peerDependencies:
+ eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
+ checksum: ee9398c8c5db6d1da09463ca7bf36ed134361e20131ea354b2da16a5fdb6df9ba70c62a388d19f6eebb421af1786dbbd79ba95ddd6ab287324fc171c3e28d931
+ languageName: node
+ linkType: hard
+
+"@typescript-eslint/visitor-keys@npm:5.62.0":
+ version: 5.62.0
+ resolution: "@typescript-eslint/visitor-keys@npm:5.62.0"
+ dependencies:
+ "@typescript-eslint/types": 5.62.0
+ eslint-visitor-keys: ^3.3.0
+ checksum: 976b05d103fe8335bef5c93ad3f76d781e3ce50329c0243ee0f00c0fcfb186c81df50e64bfdd34970148113f8ade90887f53e3c4938183afba830b4ba8e30a35
+ languageName: node
+ linkType: hard
+
+"@ungap/structured-clone@npm:^1.2.0":
+ version: 1.2.0
+ resolution: "@ungap/structured-clone@npm:1.2.0"
+ checksum: 4f656b7b4672f2ce6e272f2427d8b0824ed11546a601d8d5412b9d7704e83db38a8d9f402ecdf2b9063fc164af842ad0ec4a55819f621ed7e7ea4d1efcc74524
+ languageName: node
+ linkType: hard
+
"JSONStream@npm:^1.0.4":
version: 1.3.5
resolution: "JSONStream@npm:1.3.5"
@@ -2849,7 +4439,7 @@ __metadata:
languageName: node
linkType: hard
-"acorn-jsx@npm:^5.2.0":
+"acorn-jsx@npm:^5.3.2":
version: 5.3.2
resolution: "acorn-jsx@npm:5.3.2"
peerDependencies:
@@ -2865,21 +4455,21 @@ __metadata:
languageName: node
linkType: hard
-"acorn@npm:^7.1.1":
- version: 7.4.1
- resolution: "acorn@npm:7.4.1"
+"acorn@npm:^8.4.1":
+ version: 8.9.0
+ resolution: "acorn@npm:8.9.0"
bin:
acorn: bin/acorn
- checksum: 1860f23c2107c910c6177b7b7be71be350db9e1080d814493fae143ae37605189504152d1ba8743ba3178d0b37269ce1ffc42b101547fdc1827078f82671e407
+ checksum: 25dfb94952386ecfb847e61934de04a4e7c2dc21c2e700fc4e2ef27ce78cb717700c4c4f279cd630bb4774948633c3859fc16063ec8573bda4568e0a312e6744
languageName: node
linkType: hard
-"acorn@npm:^8.4.1":
- version: 8.9.0
- resolution: "acorn@npm:8.9.0"
+"acorn@npm:^8.9.0":
+ version: 8.11.2
+ resolution: "acorn@npm:8.11.2"
bin:
acorn: bin/acorn
- checksum: 25dfb94952386ecfb847e61934de04a4e7c2dc21c2e700fc4e2ef27ce78cb717700c4c4f279cd630bb4774948633c3859fc16063ec8573bda4568e0a312e6744
+ checksum: 818450408684da89423e3daae24e4dc9b68692db8ab49ea4569c7c5abb7a3f23669438bf129cc81dfdada95e1c9b944ee1bfca2c57a05a4dc73834a612fbf6a7
languageName: node
linkType: hard
@@ -2957,7 +4547,7 @@ __metadata:
languageName: node
linkType: hard
-"ajv@npm:^6.10.0, ajv@npm:^6.10.2, ajv@npm:^6.12.4, ajv@npm:^6.12.5":
+"ajv@npm:^6.12.4, ajv@npm:^6.12.5":
version: 6.12.6
resolution: "ajv@npm:6.12.6"
dependencies:
@@ -2997,7 +4587,7 @@ __metadata:
languageName: node
linkType: hard
-"ansi-escapes@npm:^4.2.1, ansi-escapes@npm:^4.3.0, ansi-escapes@npm:^4.3.2":
+"ansi-escapes@npm:^4.3.0, ansi-escapes@npm:^4.3.2":
version: 4.3.2
resolution: "ansi-escapes@npm:4.3.2"
dependencies:
@@ -3013,13 +4603,6 @@ __metadata:
languageName: node
linkType: hard
-"ansi-regex@npm:^4.1.0":
- version: 4.1.1
- resolution: "ansi-regex@npm:4.1.1"
- checksum: b1a6ee44cb6ecdabaa770b2ed500542714d4395d71c7e5c25baa631f680fb2ad322eb9ba697548d498a6fd366949fc8b5bfcf48d49a32803611f648005b01888
- languageName: node
- linkType: hard
-
"ansi-regex@npm:^5.0.1":
version: 5.0.1
resolution: "ansi-regex@npm:5.0.1"
@@ -3034,7 +4617,7 @@ __metadata:
languageName: node
linkType: hard
-"ansi-styles@npm:^3.2.0, ansi-styles@npm:^3.2.1":
+"ansi-styles@npm:^3.2.1":
version: 3.2.1
resolution: "ansi-styles@npm:3.2.1"
dependencies:
@@ -3110,15 +4693,6 @@ __metadata:
languageName: node
linkType: hard
-"argparse@npm:^1.0.7":
- version: 1.0.10
- resolution: "argparse@npm:1.0.10"
- dependencies:
- sprintf-js: ~1.0.2
- checksum: 7ca6e45583a28de7258e39e13d81e925cfa25d7d4aacbf806a382d3c02fcb13403a07fb8aeef949f10a7cfe4a62da0e2e807b348a5980554cc28ee573ef95945
- languageName: node
- linkType: hard
-
"argparse@npm:^2.0.1":
version: 2.0.1
resolution: "argparse@npm:2.0.1"
@@ -3126,13 +4700,12 @@ __metadata:
languageName: node
linkType: hard
-"aria-query@npm:^3.0.0":
- version: 3.0.0
- resolution: "aria-query@npm:3.0.0"
+"aria-query@npm:^5.3.0":
+ version: 5.3.0
+ resolution: "aria-query@npm:5.3.0"
dependencies:
- ast-types-flow: 0.0.7
- commander: ^2.11.0
- checksum: 52861d7d31321a23f27e5f95a437ddafd20e5eee03ff6e4319eeb1e98dce103f03ccaea34acb5bf2810580f71a9ac1658200fa3d49435279e99df2908f213f1b
+ dequal: ^2.0.3
+ checksum: 305bd73c76756117b59aba121d08f413c7ff5e80fa1b98e217a3443fcddb9a232ee790e24e432b59ae7625aebcf4c47cb01c2cac872994f0b426f5bdfcd96ba9
languageName: node
linkType: hard
@@ -3153,16 +4726,16 @@ __metadata:
languageName: node
linkType: hard
-"array-includes@npm:^3.0.3, array-includes@npm:^3.1.1":
- version: 3.1.6
- resolution: "array-includes@npm:3.1.6"
+"array-includes@npm:^3.1.6, array-includes@npm:^3.1.7":
+ version: 3.1.7
+ resolution: "array-includes@npm:3.1.7"
dependencies:
call-bind: ^1.0.2
- define-properties: ^1.1.4
- es-abstract: ^1.20.4
- get-intrinsic: ^1.1.3
+ define-properties: ^1.2.0
+ es-abstract: ^1.22.1
+ get-intrinsic: ^1.2.1
is-string: ^1.0.7
- checksum: f22f8cd8ba8a6448d91eebdc69f04e4e55085d09232b5216ee2d476dab3ef59984e8d1889e662c6a0ed939dcb1b57fd05b2c0209c3370942fc41b752c82a2ca5
+ checksum: 06f9e4598fac12a919f7c59a3f04f010ea07f0b7f0585465ed12ef528a60e45f374e79d1bddbb34cdd4338357d00023ddbd0ac18b0be36964f5e726e8965d7fc
languageName: node
linkType: hard
@@ -3185,15 +4758,40 @@ __metadata:
languageName: node
linkType: hard
-"array.prototype.flat@npm:^1.2.1":
- version: 1.3.1
- resolution: "array.prototype.flat@npm:1.3.1"
+"array.prototype.findlastindex@npm:^1.2.3":
+ version: 1.2.3
+ resolution: "array.prototype.findlastindex@npm:1.2.3"
dependencies:
call-bind: ^1.0.2
- define-properties: ^1.1.4
- es-abstract: ^1.20.4
+ define-properties: ^1.2.0
+ es-abstract: ^1.22.1
+ es-shim-unscopables: ^1.0.0
+ get-intrinsic: ^1.2.1
+ checksum: 31f35d7b370c84db56484618132041a9af401b338f51899c2e78ef7690fbba5909ee7ca3c59a7192085b328cc0c68c6fd1f6d1553db01a689a589ae510f3966e
+ languageName: node
+ linkType: hard
+
+"array.prototype.flat@npm:^1.3.1, array.prototype.flat@npm:^1.3.2":
+ version: 1.3.2
+ resolution: "array.prototype.flat@npm:1.3.2"
+ dependencies:
+ call-bind: ^1.0.2
+ define-properties: ^1.2.0
+ es-abstract: ^1.22.1
+ es-shim-unscopables: ^1.0.0
+ checksum: 5d6b4bf102065fb3f43764bfff6feb3295d372ce89591e6005df3d0ce388527a9f03c909af6f2a973969a4d178ab232ffc9236654149173e0e187ec3a1a6b87b
+ languageName: node
+ linkType: hard
+
+"array.prototype.flatmap@npm:^1.3.1, array.prototype.flatmap@npm:^1.3.2":
+ version: 1.3.2
+ resolution: "array.prototype.flatmap@npm:1.3.2"
+ dependencies:
+ call-bind: ^1.0.2
+ define-properties: ^1.2.0
+ es-abstract: ^1.22.1
es-shim-unscopables: ^1.0.0
- checksum: 5a8415949df79bf6e01afd7e8839bbde5a3581300e8ad5d8449dea52639e9e59b26a467665622783697917b43bf39940a6e621877c7dd9b3d1c1f97484b9b88b
+ checksum: ce09fe21dc0bcd4f30271f8144083aa8c13d4639074d6c8dc82054b847c7fc9a0c97f857491f4da19d4003e507172a78f4bcd12903098adac8b9cd374f734be3
languageName: node
linkType: hard
@@ -3210,6 +4808,34 @@ __metadata:
languageName: node
linkType: hard
+"array.prototype.tosorted@npm:^1.1.1":
+ version: 1.1.2
+ resolution: "array.prototype.tosorted@npm:1.1.2"
+ dependencies:
+ call-bind: ^1.0.2
+ define-properties: ^1.2.0
+ es-abstract: ^1.22.1
+ es-shim-unscopables: ^1.0.0
+ get-intrinsic: ^1.2.1
+ checksum: 3607a7d6b117f0ffa6f4012457b7af0d47d38cf05e01d50e09682fd2fb782a66093a5e5fbbdbad77c8c824794a9d892a51844041641f719ad41e3a974f0764de
+ languageName: node
+ linkType: hard
+
+"arraybuffer.prototype.slice@npm:^1.0.2":
+ version: 1.0.2
+ resolution: "arraybuffer.prototype.slice@npm:1.0.2"
+ dependencies:
+ array-buffer-byte-length: ^1.0.0
+ call-bind: ^1.0.2
+ define-properties: ^1.2.0
+ es-abstract: ^1.22.1
+ get-intrinsic: ^1.2.1
+ is-array-buffer: ^3.0.2
+ is-shared-array-buffer: ^1.0.2
+ checksum: c200faf437786f5b2c80d4564ff5481c886a16dee642ef02abdc7306c7edd523d1f01d1dd12b769c7eb42ac9bc53874510db19a92a2c035c0f6696172aafa5d3
+ languageName: node
+ linkType: hard
+
"arrify@npm:^1.0.1":
version: 1.0.1
resolution: "arrify@npm:1.0.1"
@@ -3224,10 +4850,10 @@ __metadata:
languageName: node
linkType: hard
-"ast-types-flow@npm:0.0.7, ast-types-flow@npm:^0.0.7":
- version: 0.0.7
- resolution: "ast-types-flow@npm:0.0.7"
- checksum: a26dcc2182ffee111cad7c471759b0bda22d3b7ebacf27c348b22c55f16896b18ab0a4d03b85b4020dce7f3e634b8f00b593888f622915096ea1927fa51866c4
+"ast-types-flow@npm:^0.0.8":
+ version: 0.0.8
+ resolution: "ast-types-flow@npm:0.0.8"
+ checksum: 0a64706609a179233aac23817837abab614f3548c252a2d3d79ea1e10c74aa28a0846e11f466cf72771b6ed8713abc094dcf8c40c3ec4207da163efa525a94a8
languageName: node
linkType: hard
@@ -3240,13 +4866,6 @@ __metadata:
languageName: node
linkType: hard
-"astral-regex@npm:^1.0.0":
- version: 1.0.0
- resolution: "astral-regex@npm:1.0.0"
- checksum: 93417fc0879531cd95ace2560a54df865c9461a3ac0714c60cbbaa5f1f85d2bee85489e78d82f70b911b71ac25c5f05fc5a36017f44c9bb33c701bee229ff848
- languageName: node
- linkType: hard
-
"astral-regex@npm:^2.0.0":
version: 2.0.0
resolution: "astral-regex@npm:2.0.0"
@@ -3263,6 +4882,15 @@ __metadata:
languageName: node
linkType: hard
+"asynciterator.prototype@npm:^1.0.0":
+ version: 1.0.0
+ resolution: "asynciterator.prototype@npm:1.0.0"
+ dependencies:
+ has-symbols: ^1.0.3
+ checksum: e8ebfd9493ac651cf9b4165e9d64030b3da1d17181bb1963627b59e240cdaf021d9b59d44b827dc1dde4e22387ec04c2d0f8720cf58a1c282e34e40cc12721b3
+ languageName: node
+ linkType: hard
+
"attr-accept@npm:^2.0.0":
version: 2.2.2
resolution: "attr-accept@npm:2.2.2"
@@ -3284,26 +4912,19 @@ __metadata:
languageName: node
linkType: hard
-"axobject-query@npm:^2.0.2":
- version: 2.2.0
- resolution: "axobject-query@npm:2.2.0"
- checksum: 96b8c7d807ca525f41ad9b286186e2089b561ba63a6d36c3e7d73dc08150714660995c7ad19cda05784458446a0793b45246db45894631e13853f48c1aa3117f
+"axe-core@npm:=4.7.0":
+ version: 4.7.0
+ resolution: "axe-core@npm:4.7.0"
+ checksum: f086bcab42be1761ba2b0b127dec350087f4c3a853bba8dd58f69d898cefaac31a1561da23146f6f3c07954c76171d1f2ce460e555e052d2b02cd79af628fa4a
languageName: node
linkType: hard
-"babel-eslint@npm:10.1.0":
- version: 10.1.0
- resolution: "babel-eslint@npm:10.1.0"
+"axobject-query@npm:^3.2.1":
+ version: 3.2.1
+ resolution: "axobject-query@npm:3.2.1"
dependencies:
- "@babel/code-frame": ^7.0.0
- "@babel/parser": ^7.7.0
- "@babel/traverse": ^7.7.0
- "@babel/types": ^7.7.0
- eslint-visitor-keys: ^1.0.0
- resolve: ^1.12.0
- peerDependencies:
- eslint: ">= 4.12.1"
- checksum: bdc1f62b6b0f9c4d5108c96d835dad0c0066bc45b7c020fcb2d6a08107cf69c9217a99d3438dbd701b2816896190c4283ba04270ed9a8349ee07bd8dafcdc050
+ dequal: ^2.0.3
+ checksum: a94047e702b57c91680e6a952ec4a1aaa2cfd0d80ead76bc8c954202980d8c51968a6ea18b4d8010e8e2cf95676533d8022a8ebba9abc1dfe25686721df26fd2
languageName: node
linkType: hard
@@ -3340,6 +4961,19 @@ __metadata:
languageName: node
linkType: hard
+"babel-plugin-polyfill-corejs2@npm:^0.4.6":
+ version: 0.4.6
+ resolution: "babel-plugin-polyfill-corejs2@npm:0.4.6"
+ dependencies:
+ "@babel/compat-data": ^7.22.6
+ "@babel/helper-define-polyfill-provider": ^0.4.3
+ semver: ^6.3.1
+ peerDependencies:
+ "@babel/core": ^7.4.0 || ^8.0.0-0 <8.0.0
+ checksum: 08896811df31530be6a9bcdd630cb9fd4b5ae5181039d18db3796efbc54e38d57a42af460845c10a04434e1bc45c0d47743c7e6c860383cc6b141083cde22030
+ languageName: node
+ linkType: hard
+
"babel-plugin-polyfill-corejs3@npm:^0.6.0":
version: 0.6.0
resolution: "babel-plugin-polyfill-corejs3@npm:0.6.0"
@@ -3352,6 +4986,18 @@ __metadata:
languageName: node
linkType: hard
+"babel-plugin-polyfill-corejs3@npm:^0.8.5":
+ version: 0.8.6
+ resolution: "babel-plugin-polyfill-corejs3@npm:0.8.6"
+ dependencies:
+ "@babel/helper-define-polyfill-provider": ^0.4.3
+ core-js-compat: ^3.33.1
+ peerDependencies:
+ "@babel/core": ^7.4.0 || ^8.0.0-0 <8.0.0
+ checksum: 36951c2edac42ac0f05b200502e90d77bf66ccee5b52e2937d23496c6ef2372cce31b8c64144da374b77bd3eb65e2721703a52eac56cad16a152326c092cbf77
+ languageName: node
+ linkType: hard
+
"babel-plugin-polyfill-regenerator@npm:^0.4.1":
version: 0.4.1
resolution: "babel-plugin-polyfill-regenerator@npm:0.4.1"
@@ -3363,6 +5009,17 @@ __metadata:
languageName: node
linkType: hard
+"babel-plugin-polyfill-regenerator@npm:^0.5.3":
+ version: 0.5.3
+ resolution: "babel-plugin-polyfill-regenerator@npm:0.5.3"
+ dependencies:
+ "@babel/helper-define-polyfill-provider": ^0.4.3
+ peerDependencies:
+ "@babel/core": ^7.4.0 || ^8.0.0-0 <8.0.0
+ checksum: 2bb546582cda1870d19e646a7183baeb2cccd56e0ef3e4eaeabd28e120daf17cb87399194a9ccdcf32506bcaa68d23e73440fc8ab990a7a0f8c5a77c12d5d4bc
+ languageName: node
+ linkType: hard
+
"babel-plugin-react-intl@npm:5.1.17":
version: 5.1.17
resolution: "babel-plugin-react-intl@npm:5.1.17"
@@ -3417,6 +5074,30 @@ __metadata:
languageName: node
linkType: hard
+"babel-preset-react-app@npm:^10.0.1":
+ version: 10.0.1
+ resolution: "babel-preset-react-app@npm:10.0.1"
+ dependencies:
+ "@babel/core": ^7.16.0
+ "@babel/plugin-proposal-class-properties": ^7.16.0
+ "@babel/plugin-proposal-decorators": ^7.16.4
+ "@babel/plugin-proposal-nullish-coalescing-operator": ^7.16.0
+ "@babel/plugin-proposal-numeric-separator": ^7.16.0
+ "@babel/plugin-proposal-optional-chaining": ^7.16.0
+ "@babel/plugin-proposal-private-methods": ^7.16.0
+ "@babel/plugin-transform-flow-strip-types": ^7.16.0
+ "@babel/plugin-transform-react-display-name": ^7.16.0
+ "@babel/plugin-transform-runtime": ^7.16.4
+ "@babel/preset-env": ^7.16.4
+ "@babel/preset-react": ^7.16.0
+ "@babel/preset-typescript": ^7.16.0
+ "@babel/runtime": ^7.16.3
+ babel-plugin-macros: ^3.1.0
+ babel-plugin-transform-react-remove-prop-types: ^0.4.24
+ checksum: ee66043484e67b8aef2541976388299691478ea00834f3bb14b6b3d5edcd316a5ac95351f6ec084b41ee555cad820d4194280ad38ce51884fedc7e8946a57b74
+ languageName: node
+ linkType: hard
+
"babel-runtime@npm:^6.26.0":
version: 6.26.0
resolution: "babel-runtime@npm:6.26.0"
@@ -3591,6 +5272,20 @@ __metadata:
languageName: node
linkType: hard
+"browserslist@npm:^4.21.9, browserslist@npm:^4.22.1":
+ version: 4.22.1
+ resolution: "browserslist@npm:4.22.1"
+ dependencies:
+ caniuse-lite: ^1.0.30001541
+ electron-to-chromium: ^1.4.535
+ node-releases: ^2.0.13
+ update-browserslist-db: ^1.0.13
+ bin:
+ browserslist: cli.js
+ checksum: 7e6b10c53f7dd5d83fd2b95b00518889096382539fed6403829d447e05df4744088de46a571071afb447046abc3c66ad06fbc790e70234ec2517452e32ffd862
+ languageName: node
+ linkType: hard
+
"buffer-from@npm:^1.0.0":
version: 1.1.2
resolution: "buffer-from@npm:1.1.2"
@@ -3685,6 +5380,17 @@ __metadata:
languageName: node
linkType: hard
+"call-bind@npm:^1.0.4, call-bind@npm:^1.0.5":
+ version: 1.0.5
+ resolution: "call-bind@npm:1.0.5"
+ dependencies:
+ function-bind: ^1.1.2
+ get-intrinsic: ^1.2.1
+ set-function-length: ^1.1.1
+ checksum: 449e83ecbd4ba48e7eaac5af26fea3b50f8f6072202c2dd7c5a6e7a6308f2421abe5e13a3bbd55221087f76320c5e09f25a8fdad1bab2b77c68ae74d92234ea5
+ languageName: node
+ linkType: hard
+
"callsites@npm:^3.0.0":
version: 3.1.0
resolution: "callsites@npm:3.1.0"
@@ -3743,7 +5449,14 @@ __metadata:
languageName: node
linkType: hard
-"chalk@npm:4, chalk@npm:^4.1.0":
+"caniuse-lite@npm:^1.0.30001541":
+ version: 1.0.30001564
+ resolution: "caniuse-lite@npm:1.0.30001564"
+ checksum: 5b53749a2e9057e74c5a129fc214fa4434d3f0c3faadbec176efa03b44e40f9c1ef8ceec979f0dd186f7a142476713129df9263e012a178351ba7807217f157a
+ languageName: node
+ linkType: hard
+
+"chalk@npm:4, chalk@npm:^4.0.0, chalk@npm:^4.1.0":
version: 4.1.2
resolution: "chalk@npm:4.1.2"
dependencies:
@@ -3760,7 +5473,7 @@ __metadata:
languageName: node
linkType: hard
-"chalk@npm:^2.0.0, chalk@npm:^2.1.0, chalk@npm:^2.4.2":
+"chalk@npm:^2.0.0, chalk@npm:^2.4.2":
version: 2.4.2
resolution: "chalk@npm:2.4.2"
dependencies:
@@ -3881,15 +5594,8 @@ __metadata:
resolution: "cli-truncate@npm:3.1.0"
dependencies:
slice-ansi: ^5.0.0
- string-width: ^5.0.0
- checksum: c3243e41974445691c63f8b405df1d5a24049dc33d324fe448dc572e561a7b772ae982692900b1a5960901cc4fc7def25a629b9c69a4208ee89d12ab3332617a
- languageName: node
- linkType: hard
-
-"cli-width@npm:^3.0.0":
- version: 3.0.0
- resolution: "cli-width@npm:3.0.0"
- checksum: 4c94af3769367a70e11ed69aa6095f1c600c0ff510f3921ab4045af961820d57c0233acfa8b6396037391f31b4c397e1f614d234294f979ff61430a6c166c3f6
+ string-width: ^5.0.0
+ checksum: c3243e41974445691c63f8b405df1d5a24049dc33d324fe448dc572e561a7b772ae982692900b1a5960901cc4fc7def25a629b9c69a4208ee89d12ab3332617a
languageName: node
linkType: hard
@@ -4025,13 +5731,6 @@ __metadata:
languageName: node
linkType: hard
-"commander@npm:^2.11.0":
- version: 2.20.3
- resolution: "commander@npm:2.20.3"
- checksum: ab8c07884e42c3a8dbc5dd9592c606176c7eb5c1ca5ff274bcf907039b2c41de3626f684ea75ccf4d361ba004bbaff1f577d5384c155f3871e456bdf27becf9e
- languageName: node
- linkType: hard
-
"commander@npm:^9.3.0":
version: 9.4.1
resolution: "commander@npm:9.4.1"
@@ -4091,7 +5790,7 @@ __metadata:
languageName: node
linkType: hard
-"confusing-browser-globals@npm:^1.0.9":
+"confusing-browser-globals@npm:^1.0.11":
version: 1.0.11
resolution: "confusing-browser-globals@npm:1.0.11"
checksum: 3afc635abd37e566477f610e7978b15753f0e84025c25d49236f1f14d480117185516bdd40d2a2167e6bed8048641a9854964b9c067e3dcdfa6b5d0ad3c3a5ef
@@ -4112,13 +5811,6 @@ __metadata:
languageName: node
linkType: hard
-"contains-path@npm:^0.1.0":
- version: 0.1.0
- resolution: "contains-path@npm:0.1.0"
- checksum: 94ecfd944e0bc51be8d3fc596dcd17d705bd4c8a1a627952a3a8c5924bac01c7ea19034cf40b4b4f89e576cdead130a7e5fd38f5f7f07ef67b4b261d875871e3
- languageName: node
- linkType: hard
-
"conventional-changelog-angular@npm:^5.0.11, conventional-changelog-angular@npm:^5.0.12":
version: 5.0.13
resolution: "conventional-changelog-angular@npm:5.0.13"
@@ -4335,6 +6027,13 @@ __metadata:
languageName: node
linkType: hard
+"convert-source-map@npm:^2.0.0":
+ version: 2.0.0
+ resolution: "convert-source-map@npm:2.0.0"
+ checksum: 63ae9933be5a2b8d4509daca5124e20c14d023c820258e484e32dc324d34c2754e71297c94a05784064ad27615037ef677e3f0c00469fb55f409d2bb21261035
+ languageName: node
+ linkType: hard
+
"cookie@npm:^0.4.1":
version: 0.4.2
resolution: "cookie@npm:0.4.2"
@@ -4351,10 +6050,12 @@ __metadata:
languageName: node
linkType: hard
-"core-js-pure@npm:^3.30.2":
- version: 3.31.1
- resolution: "core-js-pure@npm:3.31.1"
- checksum: 93c3dd28471755cb81ec4828f5617bd32a7c682295d88671534a6733a0d41dae9e28f8f8000ddd1f1e597a3bec4602db5f906a03c9ba1a360534f7ae2519db7c
+"core-js-compat@npm:^3.31.0, core-js-compat@npm:^3.33.1":
+ version: 3.33.3
+ resolution: "core-js-compat@npm:3.33.3"
+ dependencies:
+ browserslist: ^4.22.1
+ checksum: cb121e83f0f5f18b2b75428cdfb19524936a18459f1e0358f9124c8ff8b75d6a5901495cb996560cfde3a416103973f78eb5947777bb8b2fd877cdf84471465d
languageName: node
linkType: hard
@@ -4423,20 +6124,7 @@ __metadata:
languageName: node
linkType: hard
-"cross-spawn@npm:^6.0.5":
- version: 6.0.5
- resolution: "cross-spawn@npm:6.0.5"
- dependencies:
- nice-try: ^1.0.4
- path-key: ^2.0.1
- semver: ^5.5.0
- shebang-command: ^1.2.0
- which: ^1.2.9
- checksum: f893bb0d96cd3d5751d04e67145bdddf25f99449531a72e82dcbbd42796bbc8268c1076c6b3ea51d4d455839902804b94bc45dfb37ecbb32ea8e54a6741c3ab9
- languageName: node
- linkType: hard
-
-"cross-spawn@npm:^7.0.3":
+"cross-spawn@npm:^7.0.2, cross-spawn@npm:^7.0.3":
version: 7.0.3
resolution: "cross-spawn@npm:7.0.3"
dependencies:
@@ -4456,10 +6144,10 @@ __metadata:
languageName: node
linkType: hard
-"css-functions-list@npm:^3.2.0":
- version: 3.2.0
- resolution: "css-functions-list@npm:3.2.0"
- checksum: fe912ea852fad500aef9a4f04db9a0371c7b0eb1ac1a45fbd8df0156ae0538cee7492ebd620b9bb502fe5bf2b5ed3bf3c16b6659cf67c7144eff0b597bcc3891
+"css-functions-list@npm:^3.2.1":
+ version: 3.2.1
+ resolution: "css-functions-list@npm:3.2.1"
+ checksum: 57d7deb3b05e84d95b88ba9b3244cf60d33b40652b3357f084c805b24a9febda5987ade44ef25a56be41e73249a7dcc157abd704d8a0e998b2c1c2e2d5de6461
languageName: node
linkType: hard
@@ -4489,7 +6177,7 @@ __metadata:
languageName: node
linkType: hard
-"damerau-levenshtein@npm:^1.0.4":
+"damerau-levenshtein@npm:^1.0.8":
version: 1.0.8
resolution: "damerau-levenshtein@npm:1.0.8"
checksum: d240b7757544460ae0586a341a53110ab0a61126570ef2d8c731e3eab3f0cb6e488e2609e6a69b46727635de49be20b071688698744417ff1b6c1d7ccd03e0de
@@ -4524,7 +6212,7 @@ __metadata:
languageName: node
linkType: hard
-"debug@npm:4, debug@npm:^4.0.1, debug@npm:^4.1.0, debug@npm:^4.1.1, debug@npm:^4.3.3, debug@npm:^4.3.4":
+"debug@npm:4, debug@npm:^4.1.0, debug@npm:^4.1.1, debug@npm:^4.3.2, debug@npm:^4.3.3, debug@npm:^4.3.4":
version: 4.3.4
resolution: "debug@npm:4.3.4"
dependencies:
@@ -4536,15 +6224,6 @@ __metadata:
languageName: node
linkType: hard
-"debug@npm:^2.6.9":
- version: 2.6.9
- resolution: "debug@npm:2.6.9"
- dependencies:
- ms: 2.0.0
- checksum: d2f51589ca66df60bf36e1fa6e4386b318c3f1e06772280eea5b1ae9fd3d05e9c2b7fd8a7d862457d00853c75b00451aa2d7459b924629ee385287a650f58fe6
- languageName: node
- linkType: hard
-
"debug@npm:^3.2.7":
version: 3.2.7
resolution: "debug@npm:3.2.7"
@@ -4610,7 +6289,7 @@ __metadata:
languageName: node
linkType: hard
-"deep-is@npm:~0.1.3":
+"deep-is@npm:^0.1.3":
version: 0.1.4
resolution: "deep-is@npm:0.1.4"
checksum: edb65dd0d7d1b9c40b2f50219aef30e116cedd6fc79290e740972c132c09106d2e80aa0bc8826673dd5a00222d4179c84b36a790eef63a4c4bca75a37ef90804
@@ -4655,6 +6334,17 @@ __metadata:
languageName: node
linkType: hard
+"define-data-property@npm:^1.0.1, define-data-property@npm:^1.1.1":
+ version: 1.1.1
+ resolution: "define-data-property@npm:1.1.1"
+ dependencies:
+ get-intrinsic: ^1.2.1
+ gopd: ^1.0.1
+ has-property-descriptors: ^1.0.0
+ checksum: a29855ad3f0630ea82e3c5012c812efa6ca3078d5c2aa8df06b5f597c1cde6f7254692df41945851d903e05a1668607b6d34e778f402b9ff9ffb38111f1a3f0d
+ languageName: node
+ linkType: hard
+
"define-lazy-prop@npm:^3.0.0":
version: 3.0.0
resolution: "define-lazy-prop@npm:3.0.0"
@@ -4672,6 +6362,17 @@ __metadata:
languageName: node
linkType: hard
+"define-properties@npm:^1.2.0, define-properties@npm:^1.2.1":
+ version: 1.2.1
+ resolution: "define-properties@npm:1.2.1"
+ dependencies:
+ define-data-property: ^1.0.1
+ has-property-descriptors: ^1.0.0
+ object-keys: ^1.1.1
+ checksum: b4ccd00597dd46cb2d4a379398f5b19fca84a16f3374e2249201992f36b30f6835949a9429669ee6b41b6e837205a163eadd745e472069e70dfc10f03e5fcc12
+ languageName: node
+ linkType: hard
+
"degenerator@npm:^5.0.0":
version: 5.0.1
resolution: "degenerator@npm:5.0.1"
@@ -4704,6 +6405,13 @@ __metadata:
languageName: node
linkType: hard
+"dequal@npm:^2.0.3":
+ version: 2.0.3
+ resolution: "dequal@npm:2.0.3"
+ checksum: 8679b850e1a3d0ebbc46ee780d5df7b478c23f335887464023a631d1b9af051ad4a6595a44220f9ff8ff95a8ddccf019b5ad778a976fd7bbf77383d36f412f90
+ languageName: node
+ linkType: hard
+
"desandro-matches-selector@npm:^2.0.0":
version: 2.0.2
resolution: "desandro-matches-selector@npm:2.0.2"
@@ -4716,6 +6424,7 @@ __metadata:
resolution: "design-comuni-plone-theme@workspace:."
dependencies:
"@babel/core": 7.19.6
+ "@babel/eslint-parser": 7.23.3
"@babel/plugin-proposal-export-default-from": 7.18.9
"@babel/plugin-proposal-throw-expressions": 7.18.6
"@commitlint/cli": 17.6.6
@@ -4725,24 +6434,30 @@ __metadata:
"@plone-collective/volto-sentry": 0.3.0
"@plone/scripts": "*"
"@release-it/conventional-changelog": 5.1.1
- babel-eslint: 10.1.0
bootstrap-italia: 2.2.0
classnames: ^2.3.2
design-react-kit: "italia/design-react-kit#fc9b40257ba3cb613141faf217f1f5b806489740"
- eslint: 6.8.0
- eslint-config-prettier: 6.11.0
- eslint-config-react-app: 5.2.1
+ eslint: 8.54.0
+ eslint-config-prettier: 9.0.0
+ eslint-config-react-app: 7.0.1
eslint-plugin-flowtype: 4.7.0
- eslint-plugin-import: 2.20.2
- eslint-plugin-jsx-a11y: 6.2.3
- eslint-plugin-prettier: 3.1.3
- eslint-plugin-react: 7.20.0
- eslint-plugin-react-hooks: 4.0.2
+ eslint-plugin-import: 2.29.0
+ eslint-plugin-jsx-a11y: 6.8.0
+ eslint-plugin-prettier: 5.0.1
+ eslint-plugin-react: 7.33.2
+ eslint-plugin-react-hooks: 4.6.0
htmldiff-js: 1.0.5
husky: 8.0.2
lint-staged: 13.0.3
marked: 9.0.0
- prettier: 2.0.5
+ postcss: 8.4.31
+ postcss-flexbugs-fixes: 5.0.2
+ postcss-less: 6.0.0
+ postcss-load-config: 4.0.2
+ postcss-loader: 7.3.3
+ postcss-overrides: 3.1.4
+ postcss-scss: 4.0.9
+ prettier: 3.1.0
react-dropzone: 11.0.1
react-google-recaptcha-v3: 1.7.0
react-highlight-words: 0.18.0
@@ -4750,10 +6465,9 @@ __metadata:
react-slick: ^0.29.0
release-it: 16.1.3
slick-carousel: 1.8.1
- stylelint: 15.10.2
+ stylelint: 15.11.0
stylelint-config-idiomatic-order: 9.0.0
- stylelint-config-prettier: 9.0.5
- stylelint-prettier: 4.0.0
+ stylelint-prettier: 4.0.2
svg-inline-loader: ^0.8.2
svg-inline-react: ^3.2.1
typeface-lora: 0.0.72
@@ -4846,16 +6560,6 @@ __metadata:
languageName: node
linkType: hard
-"doctrine@npm:1.5.0":
- version: 1.5.0
- resolution: "doctrine@npm:1.5.0"
- dependencies:
- esutils: ^2.0.2
- isarray: ^1.0.0
- checksum: 7ce8102a05cbb9d942d49db5461d2f3dd1208ebfed929bf1c04770a1ef6ef540b792e63c45eae4c51f8b16075e0af4a73581a06bad31c37ceb0988f2e398509b
- languageName: node
- linkType: hard
-
"doctrine@npm:^2.1.0":
version: 2.1.0
resolution: "doctrine@npm:2.1.0"
@@ -4925,10 +6629,10 @@ __metadata:
languageName: node
linkType: hard
-"emoji-regex@npm:^7.0.1, emoji-regex@npm:^7.0.2":
- version: 7.0.3
- resolution: "emoji-regex@npm:7.0.3"
- checksum: 9159b2228b1511f2870ac5920f394c7e041715429a68459ebe531601555f11ea782a8e1718f969df2711d38c66268174407cbca57ce36485544f695c2dfdc96e
+"electron-to-chromium@npm:^1.4.535":
+ version: 1.4.590
+ resolution: "electron-to-chromium@npm:1.4.590"
+ checksum: 3165a64819ad385e4c732004ceebd9ed2115cbc0e1e311dbfb36cb2809541ab7ea12e58cd1a55a290896a634c58c1a71eeaac203c228aa31e2ec385cdc6b82ee
languageName: node
linkType: hard
@@ -4999,7 +6703,7 @@ __metadata:
languageName: node
linkType: hard
-"error-ex@npm:^1.2.0, error-ex@npm:^1.3.1":
+"error-ex@npm:^1.3.1":
version: 1.3.2
resolution: "error-ex@npm:1.3.2"
dependencies:
@@ -5082,6 +6786,53 @@ __metadata:
languageName: node
linkType: hard
+"es-abstract@npm:^1.22.1":
+ version: 1.22.3
+ resolution: "es-abstract@npm:1.22.3"
+ dependencies:
+ array-buffer-byte-length: ^1.0.0
+ arraybuffer.prototype.slice: ^1.0.2
+ available-typed-arrays: ^1.0.5
+ call-bind: ^1.0.5
+ es-set-tostringtag: ^2.0.1
+ es-to-primitive: ^1.2.1
+ function.prototype.name: ^1.1.6
+ get-intrinsic: ^1.2.2
+ get-symbol-description: ^1.0.0
+ globalthis: ^1.0.3
+ gopd: ^1.0.1
+ has-property-descriptors: ^1.0.0
+ has-proto: ^1.0.1
+ has-symbols: ^1.0.3
+ hasown: ^2.0.0
+ internal-slot: ^1.0.5
+ is-array-buffer: ^3.0.2
+ is-callable: ^1.2.7
+ is-negative-zero: ^2.0.2
+ is-regex: ^1.1.4
+ is-shared-array-buffer: ^1.0.2
+ is-string: ^1.0.7
+ is-typed-array: ^1.1.12
+ is-weakref: ^1.0.2
+ object-inspect: ^1.13.1
+ object-keys: ^1.1.1
+ object.assign: ^4.1.4
+ regexp.prototype.flags: ^1.5.1
+ safe-array-concat: ^1.0.1
+ safe-regex-test: ^1.0.0
+ string.prototype.trim: ^1.2.8
+ string.prototype.trimend: ^1.0.7
+ string.prototype.trimstart: ^1.0.7
+ typed-array-buffer: ^1.0.0
+ typed-array-byte-length: ^1.0.0
+ typed-array-byte-offset: ^1.0.0
+ typed-array-length: ^1.0.4
+ unbox-primitive: ^1.0.2
+ which-typed-array: ^1.1.13
+ checksum: b1bdc962856836f6e72be10b58dc128282bdf33771c7a38ae90419d920fc3b36cc5d2b70a222ad8016e3fc322c367bf4e9e89fc2bc79b7e933c05b218e83d79a
+ languageName: node
+ linkType: hard
+
"es-array-method-boxes-properly@npm:^1.0.0":
version: 1.0.0
resolution: "es-array-method-boxes-properly@npm:1.0.0"
@@ -5105,6 +6856,28 @@ __metadata:
languageName: node
linkType: hard
+"es-iterator-helpers@npm:^1.0.12, es-iterator-helpers@npm:^1.0.15":
+ version: 1.0.15
+ resolution: "es-iterator-helpers@npm:1.0.15"
+ dependencies:
+ asynciterator.prototype: ^1.0.0
+ call-bind: ^1.0.2
+ define-properties: ^1.2.1
+ es-abstract: ^1.22.1
+ es-set-tostringtag: ^2.0.1
+ function-bind: ^1.1.1
+ get-intrinsic: ^1.2.1
+ globalthis: ^1.0.3
+ has-property-descriptors: ^1.0.0
+ has-proto: ^1.0.1
+ has-symbols: ^1.0.3
+ internal-slot: ^1.0.5
+ iterator.prototype: ^1.1.2
+ safe-array-concat: ^1.0.1
+ checksum: 50081ae5c549efe62e5c1d244df0194b40b075f7897fc2116b7e1aa437eb3c41f946d2afda18c33f9b31266ec544765932542765af839f76fa6d7b7855d1e0e1
+ languageName: node
+ linkType: hard
+
"es-set-tostringtag@npm:^2.0.1":
version: 2.0.1
resolution: "es-set-tostringtag@npm:2.0.1"
@@ -5189,50 +6962,53 @@ __metadata:
languageName: node
linkType: hard
-"eslint-config-prettier@npm:6.11.0":
- version: 6.11.0
- resolution: "eslint-config-prettier@npm:6.11.0"
- dependencies:
- get-stdin: ^6.0.0
+"eslint-config-prettier@npm:9.0.0":
+ version: 9.0.0
+ resolution: "eslint-config-prettier@npm:9.0.0"
peerDependencies:
- eslint: ">=3.14.1"
+ eslint: ">=7.0.0"
bin:
- eslint-config-prettier-check: bin/cli.js
- checksum: d01be735dfcfe4ce5629bc5778be07d73519b3460698ae15623026c542896529cbbb494ec9c0116d71810a3968403fffb473fb6f6dc2b76c2066676afdda3421
+ eslint-config-prettier: bin/cli.js
+ checksum: 362e991b6cb343f79362bada2d97c202e5303e6865888918a7445c555fb75e4c078b01278e90be98aa98ae22f8597d8e93d48314bec6824f540f7efcab3ce451
languageName: node
linkType: hard
-"eslint-config-react-app@npm:5.2.1":
- version: 5.2.1
- resolution: "eslint-config-react-app@npm:5.2.1"
+"eslint-config-react-app@npm:7.0.1":
+ version: 7.0.1
+ resolution: "eslint-config-react-app@npm:7.0.1"
dependencies:
- confusing-browser-globals: ^1.0.9
+ "@babel/core": ^7.16.0
+ "@babel/eslint-parser": ^7.16.3
+ "@rushstack/eslint-patch": ^1.1.0
+ "@typescript-eslint/eslint-plugin": ^5.5.0
+ "@typescript-eslint/parser": ^5.5.0
+ babel-preset-react-app: ^10.0.1
+ confusing-browser-globals: ^1.0.11
+ eslint-plugin-flowtype: ^8.0.3
+ eslint-plugin-import: ^2.25.3
+ eslint-plugin-jest: ^25.3.0
+ eslint-plugin-jsx-a11y: ^6.5.1
+ eslint-plugin-react: ^7.27.1
+ eslint-plugin-react-hooks: ^4.3.0
+ eslint-plugin-testing-library: ^5.0.1
peerDependencies:
- "@typescript-eslint/eslint-plugin": 2.x
- "@typescript-eslint/parser": 2.x
- babel-eslint: 10.x
- eslint: 6.x
- eslint-plugin-flowtype: 3.x || 4.x
- eslint-plugin-import: 2.x
- eslint-plugin-jsx-a11y: 6.x
- eslint-plugin-react: 7.x
- eslint-plugin-react-hooks: 1.x || 2.x
- checksum: 8af6801f29d7314611e111a1593e91d412d41cde6719303ee6db7de65d78ed4b53e9197497765bb2deed65e6bfd73bf7e74da58cab3f66838c2927880b21eeba
+ eslint: ^8.0.0
+ checksum: a67e0821809e62308d6e419753fa2acfc7cd353659fab08cf34735f59c6c66910c0b6fda0471c4ec0d712ce762d65efc6431b39569f8d575e2d9bdfc384e0824
languageName: node
linkType: hard
-"eslint-import-resolver-node@npm:^0.3.2":
- version: 0.3.7
- resolution: "eslint-import-resolver-node@npm:0.3.7"
+"eslint-import-resolver-node@npm:^0.3.9":
+ version: 0.3.9
+ resolution: "eslint-import-resolver-node@npm:0.3.9"
dependencies:
debug: ^3.2.7
- is-core-module: ^2.11.0
- resolve: ^1.22.1
- checksum: 3379aacf1d2c6952c1b9666c6fa5982c3023df695430b0d391c0029f6403a7775414873d90f397e98ba6245372b6c8960e16e74d9e4a3b0c0a4582f3bdbe3d6e
+ is-core-module: ^2.13.0
+ resolve: ^1.22.4
+ checksum: 439b91271236b452d478d0522a44482e8c8540bf9df9bd744062ebb89ab45727a3acd03366a6ba2bdbcde8f9f718bab7fe8db64688aca75acf37e04eafd25e22
languageName: node
linkType: hard
-"eslint-module-utils@npm:^2.4.1":
+"eslint-module-utils@npm:^2.8.0":
version: 2.8.0
resolution: "eslint-module-utils@npm:2.8.0"
dependencies:
@@ -5255,90 +7031,156 @@ __metadata:
languageName: node
linkType: hard
-"eslint-plugin-import@npm:2.20.2":
- version: 2.20.2
- resolution: "eslint-plugin-import@npm:2.20.2"
+"eslint-plugin-flowtype@npm:^8.0.3":
+ version: 8.0.3
+ resolution: "eslint-plugin-flowtype@npm:8.0.3"
dependencies:
- array-includes: ^3.0.3
- array.prototype.flat: ^1.2.1
- contains-path: ^0.1.0
- debug: ^2.6.9
- doctrine: 1.5.0
- eslint-import-resolver-node: ^0.3.2
- eslint-module-utils: ^2.4.1
- has: ^1.0.3
- minimatch: ^3.0.4
- object.values: ^1.1.0
- read-pkg-up: ^2.0.0
- resolve: ^1.12.0
+ lodash: ^4.17.21
+ string-natural-compare: ^3.0.1
peerDependencies:
- eslint: 2.x - 6.x
- checksum: 3155a193dfb3d763e8015cf2d8db554d55bab840138692113ca46db9614eac2bf140cbf926826e1905200ab0853bdec4103442c64be31f8fb5b21ea30cf3eaee
+ "@babel/plugin-syntax-flow": ^7.14.5
+ "@babel/plugin-transform-react-jsx": ^7.14.9
+ eslint: ^8.1.0
+ checksum: 30e63c5357b0b5571f39afed51e59c140084f4aa53c106b1fd04f26da42b268908466daa6020b92943e71409bdaee1c67202515ed9012404d027cc92cb03cefa
languageName: node
linkType: hard
-"eslint-plugin-jsx-a11y@npm:6.2.3":
- version: 6.2.3
- resolution: "eslint-plugin-jsx-a11y@npm:6.2.3"
+"eslint-plugin-import@npm:2.29.0, eslint-plugin-import@npm:^2.25.3":
+ version: 2.29.0
+ resolution: "eslint-plugin-import@npm:2.29.0"
dependencies:
- "@babel/runtime": ^7.4.5
- aria-query: ^3.0.0
- array-includes: ^3.0.3
- ast-types-flow: ^0.0.7
- axobject-query: ^2.0.2
- damerau-levenshtein: ^1.0.4
- emoji-regex: ^7.0.2
- has: ^1.0.3
- jsx-ast-utils: ^2.2.1
+ array-includes: ^3.1.7
+ array.prototype.findlastindex: ^1.2.3
+ array.prototype.flat: ^1.3.2
+ array.prototype.flatmap: ^1.3.2
+ debug: ^3.2.7
+ doctrine: ^2.1.0
+ eslint-import-resolver-node: ^0.3.9
+ eslint-module-utils: ^2.8.0
+ hasown: ^2.0.0
+ is-core-module: ^2.13.1
+ is-glob: ^4.0.3
+ minimatch: ^3.1.2
+ object.fromentries: ^2.0.7
+ object.groupby: ^1.0.1
+ object.values: ^1.1.7
+ semver: ^6.3.1
+ tsconfig-paths: ^3.14.2
peerDependencies:
- eslint: ^3 || ^4 || ^5 || ^6
- checksum: 2e9f0ff28567e141479968a860f5670009a403250054970c714bf723e1f8c9ae7cddeb2bf13ee9f6882af333588645a06c10a417aa2733084813d162dec6c235
+ eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8
+ checksum: 19ee541fb95eb7a796f3daebe42387b8d8262bbbcc4fd8a6e92f63a12035f3d2c6cb8bc0b6a70864fa14b1b50ed6b8e6eed5833e625e16cb6bb98b665beff269
languageName: node
linkType: hard
-"eslint-plugin-prettier@npm:3.1.3":
- version: 3.1.3
- resolution: "eslint-plugin-prettier@npm:3.1.3"
+"eslint-plugin-jest@npm:^25.3.0":
+ version: 25.7.0
+ resolution: "eslint-plugin-jest@npm:25.7.0"
+ dependencies:
+ "@typescript-eslint/experimental-utils": ^5.0.0
+ peerDependencies:
+ "@typescript-eslint/eslint-plugin": ^4.0.0 || ^5.0.0
+ eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
+ peerDependenciesMeta:
+ "@typescript-eslint/eslint-plugin":
+ optional: true
+ jest:
+ optional: true
+ checksum: fc6da96131f4cbf33d15ef911ec8e600ccd71deb97d73c0ca340427cef7b01ff41a797e2e7d1e351abf97321a46ed0c0acff5ee8eeedac94961dd6dad1f718a9
+ languageName: node
+ linkType: hard
+
+"eslint-plugin-jsx-a11y@npm:6.8.0, eslint-plugin-jsx-a11y@npm:^6.5.1":
+ version: 6.8.0
+ resolution: "eslint-plugin-jsx-a11y@npm:6.8.0"
+ dependencies:
+ "@babel/runtime": ^7.23.2
+ aria-query: ^5.3.0
+ array-includes: ^3.1.7
+ array.prototype.flatmap: ^1.3.2
+ ast-types-flow: ^0.0.8
+ axe-core: =4.7.0
+ axobject-query: ^3.2.1
+ damerau-levenshtein: ^1.0.8
+ emoji-regex: ^9.2.2
+ es-iterator-helpers: ^1.0.15
+ hasown: ^2.0.0
+ jsx-ast-utils: ^3.3.5
+ language-tags: ^1.0.9
+ minimatch: ^3.1.2
+ object.entries: ^1.1.7
+ object.fromentries: ^2.0.7
+ peerDependencies:
+ eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8
+ checksum: 3dec00e2a3089c4c61ac062e4196a70985fb7eda1fd67fe035363d92578debde92fdb8ed2e472321fc0d71e75f4a1e8888c6a3218c14dd93c8e8d19eb6f51554
+ languageName: node
+ linkType: hard
+
+"eslint-plugin-prettier@npm:5.0.1":
+ version: 5.0.1
+ resolution: "eslint-plugin-prettier@npm:5.0.1"
dependencies:
prettier-linter-helpers: ^1.0.0
+ synckit: ^0.8.5
peerDependencies:
- eslint: ">= 5.0.0"
- prettier: ">= 1.13.0"
- checksum: ffa7807150fef7e66f489f824a3b9d2b73714ce2660d72c5234b9ecd30a7a142f8f2e4e5d1285a736c8f28912d7ac016101df418cd411c8f989ebdbdbd807e7a
+ "@types/eslint": ">=8.0.0"
+ eslint: ">=8.0.0"
+ prettier: ">=3.0.0"
+ peerDependenciesMeta:
+ "@types/eslint":
+ optional: true
+ eslint-config-prettier:
+ optional: true
+ checksum: c2261033b97bafe99ccb7cc47c2fac6fa85b8bbc8b128042e52631f906b69e12afed2cdd9d7e3021cc892ee8dd4204a3574e1f32a0b718b4bb3b440944b6983b
languageName: node
linkType: hard
-"eslint-plugin-react-hooks@npm:4.0.2":
- version: 4.0.2
- resolution: "eslint-plugin-react-hooks@npm:4.0.2"
+"eslint-plugin-react-hooks@npm:4.6.0, eslint-plugin-react-hooks@npm:^4.3.0":
+ version: 4.6.0
+ resolution: "eslint-plugin-react-hooks@npm:4.6.0"
peerDependencies:
- eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0
- checksum: 4d36cf26590896d3ddf5f66252b270be071e0069a0db1a100ba7de7542488a8d22ae4dcb2d75eb15aabba4338fc55ff7e99bec5c257bf1e5c112ecba33005008
+ eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0
+ checksum: 23001801f14c1d16bf0a837ca7970d9dd94e7b560384b41db378b49b6e32dc43d6e2790de1bd737a652a86f81a08d6a91f402525061b47719328f586a57e86c3
languageName: node
linkType: hard
-"eslint-plugin-react@npm:7.20.0":
- version: 7.20.0
- resolution: "eslint-plugin-react@npm:7.20.0"
+"eslint-plugin-react@npm:7.33.2, eslint-plugin-react@npm:^7.27.1":
+ version: 7.33.2
+ resolution: "eslint-plugin-react@npm:7.33.2"
dependencies:
- array-includes: ^3.1.1
+ array-includes: ^3.1.6
+ array.prototype.flatmap: ^1.3.1
+ array.prototype.tosorted: ^1.1.1
doctrine: ^2.1.0
- has: ^1.0.3
- jsx-ast-utils: ^2.2.3
- object.entries: ^1.1.1
- object.fromentries: ^2.0.2
- object.values: ^1.1.1
- prop-types: ^15.7.2
- resolve: ^1.15.1
- string.prototype.matchall: ^4.0.2
- xregexp: ^4.3.0
+ es-iterator-helpers: ^1.0.12
+ estraverse: ^5.3.0
+ jsx-ast-utils: ^2.4.1 || ^3.0.0
+ minimatch: ^3.1.2
+ object.entries: ^1.1.6
+ object.fromentries: ^2.0.6
+ object.hasown: ^1.1.2
+ object.values: ^1.1.6
+ prop-types: ^15.8.1
+ resolve: ^2.0.0-next.4
+ semver: ^6.3.1
+ string.prototype.matchall: ^4.0.8
+ peerDependencies:
+ eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8
+ checksum: b4c3d76390b0ae6b6f9fed78170604cc2c04b48e6778a637db339e8e3911ec9ef22510b0ae77c429698151d0f1b245f282177f384105b6830e7b29b9c9b26610
+ languageName: node
+ linkType: hard
+
+"eslint-plugin-testing-library@npm:^5.0.1":
+ version: 5.11.1
+ resolution: "eslint-plugin-testing-library@npm:5.11.1"
+ dependencies:
+ "@typescript-eslint/utils": ^5.58.0
peerDependencies:
- eslint: ^3 || ^4 || ^5 || ^6 || ^7
- checksum: 68674840f35e43300bbc829261f32c20826d2d942a61acfcfbb80df0a100526d74d0b0bb4fc13f44ede6577e2ecb928a5587011148cae01c240ac9b5a16d36f3
+ eslint: ^7.5.0 || ^8.0.0
+ checksum: 9f3fc68ef9f13016a4381b33ab5dbffcc189e5de3eaeba184bcf7d2771faa7f54e59c04b652162fb1c0f83fb52428dd909db5450a25508b94be59eba69fcc990
languageName: node
linkType: hard
-"eslint-scope@npm:^5.0.0":
+"eslint-scope@npm:5.1.1, eslint-scope@npm:^5.1.1":
version: 5.1.1
resolution: "eslint-scope@npm:5.1.1"
dependencies:
@@ -5348,81 +7190,90 @@ __metadata:
languageName: node
linkType: hard
-"eslint-utils@npm:^1.4.3":
- version: 1.4.3
- resolution: "eslint-utils@npm:1.4.3"
+"eslint-scope@npm:^7.2.2":
+ version: 7.2.2
+ resolution: "eslint-scope@npm:7.2.2"
dependencies:
- eslint-visitor-keys: ^1.1.0
- checksum: a20630e686034107138272f245c460f6d77705d1f4bb0628c1a1faf59fc800f441188916b3ec3b957394dc405aa200a3017dfa2b0fff0976e307a4e645a18d1e
+ esrecurse: ^4.3.0
+ estraverse: ^5.2.0
+ checksum: ec97dbf5fb04b94e8f4c5a91a7f0a6dd3c55e46bfc7bbcd0e3138c3a76977570e02ed89a1810c778dcd72072ff0e9621ba1379b4babe53921d71e2e4486fda3e
languageName: node
linkType: hard
-"eslint-visitor-keys@npm:^1.0.0, eslint-visitor-keys@npm:^1.1.0":
- version: 1.3.0
- resolution: "eslint-visitor-keys@npm:1.3.0"
- checksum: 37a19b712f42f4c9027e8ba98c2b06031c17e0c0a4c696cd429bd9ee04eb43889c446f2cd545e1ff51bef9593fcec94ecd2c2ef89129fcbbf3adadbef520376a
+"eslint-visitor-keys@npm:^2.1.0":
+ version: 2.1.0
+ resolution: "eslint-visitor-keys@npm:2.1.0"
+ checksum: e3081d7dd2611a35f0388bbdc2f5da60b3a3c5b8b6e928daffff7391146b434d691577aa95064c8b7faad0b8a680266bcda0a42439c18c717b80e6718d7e267d
languageName: node
linkType: hard
-"eslint@npm:6.8.0":
- version: 6.8.0
- resolution: "eslint@npm:6.8.0"
+"eslint-visitor-keys@npm:^3.3.0, eslint-visitor-keys@npm:^3.4.1, eslint-visitor-keys@npm:^3.4.3":
+ version: 3.4.3
+ resolution: "eslint-visitor-keys@npm:3.4.3"
+ checksum: 36e9ef87fca698b6fd7ca5ca35d7b2b6eeaaf106572e2f7fd31c12d3bfdaccdb587bba6d3621067e5aece31c8c3a348b93922ab8f7b2cbc6aaab5e1d89040c60
+ languageName: node
+ linkType: hard
+
+"eslint@npm:8.54.0":
+ version: 8.54.0
+ resolution: "eslint@npm:8.54.0"
dependencies:
- "@babel/code-frame": ^7.0.0
- ajv: ^6.10.0
- chalk: ^2.1.0
- cross-spawn: ^6.0.5
- debug: ^4.0.1
+ "@eslint-community/eslint-utils": ^4.2.0
+ "@eslint-community/regexpp": ^4.6.1
+ "@eslint/eslintrc": ^2.1.3
+ "@eslint/js": 8.54.0
+ "@humanwhocodes/config-array": ^0.11.13
+ "@humanwhocodes/module-importer": ^1.0.1
+ "@nodelib/fs.walk": ^1.2.8
+ "@ungap/structured-clone": ^1.2.0
+ ajv: ^6.12.4
+ chalk: ^4.0.0
+ cross-spawn: ^7.0.2
+ debug: ^4.3.2
doctrine: ^3.0.0
- eslint-scope: ^5.0.0
- eslint-utils: ^1.4.3
- eslint-visitor-keys: ^1.1.0
- espree: ^6.1.2
- esquery: ^1.0.1
+ escape-string-regexp: ^4.0.0
+ eslint-scope: ^7.2.2
+ eslint-visitor-keys: ^3.4.3
+ espree: ^9.6.1
+ esquery: ^1.4.2
esutils: ^2.0.2
- file-entry-cache: ^5.0.1
- functional-red-black-tree: ^1.0.1
- glob-parent: ^5.0.0
- globals: ^12.1.0
- ignore: ^4.0.6
- import-fresh: ^3.0.0
+ fast-deep-equal: ^3.1.3
+ file-entry-cache: ^6.0.1
+ find-up: ^5.0.0
+ glob-parent: ^6.0.2
+ globals: ^13.19.0
+ graphemer: ^1.4.0
+ ignore: ^5.2.0
imurmurhash: ^0.1.4
- inquirer: ^7.0.0
is-glob: ^4.0.0
- js-yaml: ^3.13.1
+ is-path-inside: ^3.0.3
+ js-yaml: ^4.1.0
json-stable-stringify-without-jsonify: ^1.0.1
- levn: ^0.3.0
- lodash: ^4.17.14
- minimatch: ^3.0.4
- mkdirp: ^0.5.1
+ levn: ^0.4.1
+ lodash.merge: ^4.6.2
+ minimatch: ^3.1.2
natural-compare: ^1.4.0
- optionator: ^0.8.3
- progress: ^2.0.0
- regexpp: ^2.0.1
- semver: ^6.1.2
- strip-ansi: ^5.2.0
- strip-json-comments: ^3.0.1
- table: ^5.2.3
+ optionator: ^0.9.3
+ strip-ansi: ^6.0.1
text-table: ^0.2.0
- v8-compile-cache: ^2.0.3
bin:
- eslint: ./bin/eslint.js
- checksum: d4edbe69589ef194e7d3470a18632560c5399a5f685295bd59a11cddba4c6f7e03a137a15a21389f8f85712ebd82d0a628ee4e9cd4391113556029c486616e25
+ eslint: bin/eslint.js
+ checksum: 7e876e9da2a18a017271cf3733d05a3dfbbe469272d75753408c6ea5b1646c71c6bb18cb91e10ca930144c32c1ce3701e222f1ae6784a3975a69f8f8aa68e49f
languageName: node
linkType: hard
-"espree@npm:^6.1.2":
- version: 6.2.1
- resolution: "espree@npm:6.2.1"
+"espree@npm:^9.6.0, espree@npm:^9.6.1":
+ version: 9.6.1
+ resolution: "espree@npm:9.6.1"
dependencies:
- acorn: ^7.1.1
- acorn-jsx: ^5.2.0
- eslint-visitor-keys: ^1.1.0
- checksum: 99c508950b5b9f53d008d781d2abb7a4ef3496ea699306fb6eb737c7e513aa594644314364c50ec27abb220124c6851fff64a6b62c358479534369904849360b
+ acorn: ^8.9.0
+ acorn-jsx: ^5.3.2
+ eslint-visitor-keys: ^3.4.1
+ checksum: eb8c149c7a2a77b3f33a5af80c10875c3abd65450f60b8af6db1bfcfa8f101e21c1e56a561c6dc13b848e18148d43469e7cd208506238554fb5395a9ea5a1ab9
languageName: node
linkType: hard
-"esprima@npm:^4.0.0, esprima@npm:^4.0.1":
+"esprima@npm:^4.0.1":
version: 4.0.1
resolution: "esprima@npm:4.0.1"
bin:
@@ -5432,7 +7283,7 @@ __metadata:
languageName: node
linkType: hard
-"esquery@npm:^1.0.1":
+"esquery@npm:^1.4.2":
version: 1.5.0
resolution: "esquery@npm:1.5.0"
dependencies:
@@ -5457,7 +7308,7 @@ __metadata:
languageName: node
linkType: hard
-"estraverse@npm:^5.1.0, estraverse@npm:^5.2.0":
+"estraverse@npm:^5.1.0, estraverse@npm:^5.2.0, estraverse@npm:^5.3.0":
version: 5.3.0
resolution: "estraverse@npm:5.3.0"
checksum: 072780882dc8416ad144f8fe199628d2b3e7bbc9989d9ed43795d2c90309a2047e6bc5979d7e2322a341163d22cfad9e21f4110597fe487519697389497e4e2b
@@ -5547,7 +7398,7 @@ __metadata:
languageName: node
linkType: hard
-"fast-deep-equal@npm:^3.1.1":
+"fast-deep-equal@npm:^3.1.1, fast-deep-equal@npm:^3.1.3":
version: 3.1.3
resolution: "fast-deep-equal@npm:3.1.3"
checksum: e21a9d8d84f53493b6aa15efc9cfd53dd5b714a1f23f67fb5dc8f574af80df889b3bce25dc081887c6d25457cce704e636395333abad896ccdec03abaf1f3f9d
@@ -5587,6 +7438,19 @@ __metadata:
languageName: node
linkType: hard
+"fast-glob@npm:^3.3.1":
+ version: 3.3.2
+ resolution: "fast-glob@npm:3.3.2"
+ dependencies:
+ "@nodelib/fs.stat": ^2.0.2
+ "@nodelib/fs.walk": ^1.2.3
+ glob-parent: ^5.1.2
+ merge2: ^1.3.0
+ micromatch: ^4.0.4
+ checksum: 900e4979f4dbc3313840078419245621259f349950411ca2fa445a2f9a1a6d98c3b5e7e0660c5ccd563aa61abe133a21765c6c0dec8e57da1ba71d8000b05ec1
+ languageName: node
+ linkType: hard
+
"fast-json-stable-stringify@npm:^2.0.0":
version: 2.1.0
resolution: "fast-json-stable-stringify@npm:2.1.0"
@@ -5594,7 +7458,7 @@ __metadata:
languageName: node
linkType: hard
-"fast-levenshtein@npm:~2.0.6":
+"fast-levenshtein@npm:^2.0.6":
version: 2.0.6
resolution: "fast-levenshtein@npm:2.0.6"
checksum: 92cfec0a8dfafd9c7a15fba8f2cc29cd0b62b85f056d99ce448bbcd9f708e18ab2764bda4dd5158364f4145a7c72788538994f0d1787b956ef0d1062b0f7c24c
@@ -5642,15 +7506,6 @@ __metadata:
languageName: node
linkType: hard
-"figures@npm:^3.0.0":
- version: 3.2.0
- resolution: "figures@npm:3.2.0"
- dependencies:
- escape-string-regexp: ^1.0.5
- checksum: 85a6ad29e9aca80b49b817e7c89ecc4716ff14e3779d9835af554db91bac41c0f289c418923519392a1e582b4d10482ad282021330cd045bb7b80c84152f2a2b
- languageName: node
- linkType: hard
-
"figures@npm:^5.0.0":
version: 5.0.0
resolution: "figures@npm:5.0.0"
@@ -5661,15 +7516,6 @@ __metadata:
languageName: node
linkType: hard
-"file-entry-cache@npm:^5.0.1":
- version: 5.0.1
- resolution: "file-entry-cache@npm:5.0.1"
- dependencies:
- flat-cache: ^2.0.1
- checksum: 9014b17766815d59b8b789633aed005242ef857348c09be558bd85b4a24e16b0ad1e0e5229ccea7a2109f74ef1b3db1a559b58afe12b884f09019308711376fd
- languageName: node
- linkType: hard
-
"file-entry-cache@npm:^6.0.1":
version: 6.0.1
resolution: "file-entry-cache@npm:6.0.1"
@@ -5679,6 +7525,15 @@ __metadata:
languageName: node
linkType: hard
+"file-entry-cache@npm:^7.0.0":
+ version: 7.0.2
+ resolution: "file-entry-cache@npm:7.0.2"
+ dependencies:
+ flat-cache: ^3.2.0
+ checksum: 283c674fc26bed1c44e74cf25c2640c813e222ea30a2536404b53511ca311d4a2502ee8145a01aecd12b9a910eb4162364776be27a9683e8447332054e9d712f
+ languageName: node
+ linkType: hard
+
"file-saver@npm:^2.0.5":
version: 2.0.5
resolution: "file-saver@npm:2.0.5"
@@ -5756,17 +7611,6 @@ __metadata:
languageName: node
linkType: hard
-"flat-cache@npm:^2.0.1":
- version: 2.0.1
- resolution: "flat-cache@npm:2.0.1"
- dependencies:
- flatted: ^2.0.0
- rimraf: 2.6.3
- write: 1.0.3
- checksum: 0f5e66467658039e6fcaaccb363b28f43906ba72fab7ff2a4f6fcd5b4899679e13ca46d9fc6cc48b68ac925ae93137106d4aaeb79874c13f21f87a361705f1b1
- languageName: node
- linkType: hard
-
"flat-cache@npm:^3.0.4":
version: 3.0.4
resolution: "flat-cache@npm:3.0.4"
@@ -5777,10 +7621,14 @@ __metadata:
languageName: node
linkType: hard
-"flatted@npm:^2.0.0":
- version: 2.0.2
- resolution: "flatted@npm:2.0.2"
- checksum: 473c754db7a529e125a22057098f1a4c905ba17b8cc269c3acf77352f0ffa6304c851eb75f6a1845f74461f560e635129ca6b0b8a78fb253c65cea4de3d776f2
+"flat-cache@npm:^3.2.0":
+ version: 3.2.0
+ resolution: "flat-cache@npm:3.2.0"
+ dependencies:
+ flatted: ^3.2.9
+ keyv: ^4.5.3
+ rimraf: ^3.0.2
+ checksum: e7e0f59801e288b54bee5cb9681e9ee21ee28ef309f886b312c9d08415b79fc0f24ac842f84356ce80f47d6a53de62197ce0e6e148dc42d5db005992e2a756ec
languageName: node
linkType: hard
@@ -5791,6 +7639,13 @@ __metadata:
languageName: node
linkType: hard
+"flatted@npm:^3.2.9":
+ version: 3.2.9
+ resolution: "flatted@npm:3.2.9"
+ checksum: f14167fbe26a9d20f6fca8d998e8f1f41df72c8e81f9f2c9d61ed2bea058248f5e1cbd05e7f88c0e5087a6a0b822a1e5e2b446e879f3cfbe0b07ba2d7f80b026
+ languageName: node
+ linkType: hard
+
"focus-lock@npm:^0.11.6":
version: 0.11.6
resolution: "focus-lock@npm:0.11.6"
@@ -5907,6 +7762,13 @@ __metadata:
languageName: node
linkType: hard
+"function-bind@npm:^1.1.2":
+ version: 1.1.2
+ resolution: "function-bind@npm:1.1.2"
+ checksum: 2b0ff4ce708d99715ad14a6d1f894e2a83242e4a52ccfcefaee5e40050562e5f6dafc1adbb4ce2d4ab47279a45dc736ab91ea5042d843c3c092820dfe032efb1
+ languageName: node
+ linkType: hard
+
"function.prototype.name@npm:^1.1.2, function.prototype.name@npm:^1.1.5":
version: 1.1.5
resolution: "function.prototype.name@npm:1.1.5"
@@ -5919,14 +7781,19 @@ __metadata:
languageName: node
linkType: hard
-"functional-red-black-tree@npm:^1.0.1":
- version: 1.0.1
- resolution: "functional-red-black-tree@npm:1.0.1"
- checksum: ca6c170f37640e2d94297da8bb4bf27a1d12bea3e00e6a3e007fd7aa32e37e000f5772acf941b4e4f3cf1c95c3752033d0c509af157ad8f526e7f00723b9eb9f
+"function.prototype.name@npm:^1.1.6":
+ version: 1.1.6
+ resolution: "function.prototype.name@npm:1.1.6"
+ dependencies:
+ call-bind: ^1.0.2
+ define-properties: ^1.2.0
+ es-abstract: ^1.22.1
+ functions-have-names: ^1.2.3
+ checksum: 7a3f9bd98adab09a07f6e1f03da03d3f7c26abbdeaeee15223f6c04a9fb5674792bdf5e689dac19b97ac71de6aad2027ba3048a9b883aa1b3173eed6ab07f479
languageName: node
linkType: hard
-"functions-have-names@npm:^1.2.2":
+"functions-have-names@npm:^1.2.2, functions-have-names@npm:^1.2.3":
version: 1.2.3
resolution: "functions-have-names@npm:1.2.3"
checksum: c3f1f5ba20f4e962efb71344ce0a40722163e85bee2101ce25f88214e78182d2d2476aa85ef37950c579eb6cf6ee811c17b3101bb84004bb75655f3e33f3fdb5
@@ -6002,6 +7869,18 @@ __metadata:
languageName: node
linkType: hard
+"get-intrinsic@npm:^1.2.1, get-intrinsic@npm:^1.2.2":
+ version: 1.2.2
+ resolution: "get-intrinsic@npm:1.2.2"
+ dependencies:
+ function-bind: ^1.1.2
+ has-proto: ^1.0.1
+ has-symbols: ^1.0.3
+ hasown: ^2.0.0
+ checksum: 447ff0724df26829908dc033b62732359596fcf66027bc131ab37984afb33842d9cd458fd6cecadfe7eac22fd8a54b349799ed334cf2726025c921c7250e7417
+ languageName: node
+ linkType: hard
+
"get-pkg-repo@npm:^4.0.0":
version: 4.2.1
resolution: "get-pkg-repo@npm:4.2.1"
@@ -6023,13 +7902,6 @@ __metadata:
languageName: node
linkType: hard
-"get-stdin@npm:^6.0.0":
- version: 6.0.0
- resolution: "get-stdin@npm:6.0.0"
- checksum: 593f6fb4fff4c8d49ec93a07c430c1edc6bd4fe7e429d222b5da2f367276a98809af9e90467ad88a2d83722ff95b9b35bbaba02b56801421c5e3668173fe12b4
- languageName: node
- linkType: hard
-
"get-stream@npm:^6.0.0, get-stream@npm:^6.0.1":
version: 6.0.1
resolution: "get-stream@npm:6.0.1"
@@ -6150,7 +8022,7 @@ __metadata:
languageName: node
linkType: hard
-"glob-parent@npm:^5.0.0, glob-parent@npm:^5.1.2":
+"glob-parent@npm:^5.1.2":
version: 5.1.2
resolution: "glob-parent@npm:5.1.2"
dependencies:
@@ -6159,6 +8031,15 @@ __metadata:
languageName: node
linkType: hard
+"glob-parent@npm:^6.0.2":
+ version: 6.0.2
+ resolution: "glob-parent@npm:6.0.2"
+ dependencies:
+ is-glob: ^4.0.3
+ checksum: c13ee97978bef4f55106b71e66428eb1512e71a7466ba49025fc2aec59a5bfb0954d5abd58fc5ee6c9b076eef4e1f6d3375c2e964b88466ca390da4419a786a8
+ languageName: node
+ linkType: hard
+
"glob@npm:^7.0.0, glob@npm:^7.1.3, glob@npm:^7.1.4":
version: 7.2.3
resolution: "glob@npm:7.2.3"
@@ -6231,12 +8112,12 @@ __metadata:
languageName: node
linkType: hard
-"globals@npm:^12.1.0":
- version: 12.4.0
- resolution: "globals@npm:12.4.0"
+"globals@npm:^13.19.0":
+ version: 13.23.0
+ resolution: "globals@npm:13.23.0"
dependencies:
- type-fest: ^0.8.1
- checksum: 7ae5ee16a96f1e8d71065405f57da0e33267f6b070cd36a5444c7780dd28639b48b92413698ac64f04bf31594f9108878bd8cb158ecdf759c39e05634fefcca6
+ type-fest: ^0.20.2
+ checksum: 194c97cf8d1ef6ba59417234c2386549c4103b6e5f24b1ff1952de61a4753e5d2069435ba629de711a6480b1b1d114a98e2ab27f85e966d5a10c319c3bbd3dc3
languageName: node
linkType: hard
@@ -6337,6 +8218,13 @@ __metadata:
languageName: node
linkType: hard
+"graphemer@npm:^1.4.0":
+ version: 1.4.0
+ resolution: "graphemer@npm:1.4.0"
+ checksum: bab8f0be9b568857c7bec9fda95a89f87b783546d02951c40c33f84d05bb7da3fd10f863a9beb901463669b6583173a8c8cc6d6b306ea2b9b9d5d3d943c3a673
+ languageName: node
+ linkType: hard
+
"handlebars@npm:^4.7.7":
version: 4.7.7
resolution: "handlebars@npm:4.7.7"
@@ -6438,6 +8326,15 @@ __metadata:
languageName: node
linkType: hard
+"hasown@npm:^2.0.0":
+ version: 2.0.0
+ resolution: "hasown@npm:2.0.0"
+ dependencies:
+ function-bind: ^1.1.2
+ checksum: 6151c75ca12554565098641c98a40f4cc86b85b0fd5b6fe92360967e4605a4f9610f7757260b4e8098dd1c2ce7f4b095f2006fe72a570e3b6d2d28de0298c176
+ languageName: node
+ linkType: hard
+
"highlight-words-core@npm:^1.2.0":
version: 1.2.2
resolution: "highlight-words-core@npm:1.2.2"
@@ -6620,13 +8517,6 @@ __metadata:
languageName: node
linkType: hard
-"ignore@npm:^4.0.6":
- version: 4.0.6
- resolution: "ignore@npm:4.0.6"
- checksum: 248f82e50a430906f9ee7f35e1158e3ec4c3971451dd9f99c9bc1548261b4db2b99709f60ac6c6cac9333494384176cc4cc9b07acbe42d52ac6a09cad734d800
- languageName: node
- linkType: hard
-
"ignore@npm:^5.2.0, ignore@npm:^5.2.4":
version: 5.2.4
resolution: "ignore@npm:5.2.4"
@@ -6740,27 +8630,6 @@ __metadata:
languageName: node
linkType: hard
-"inquirer@npm:^7.0.0":
- version: 7.3.3
- resolution: "inquirer@npm:7.3.3"
- 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
- checksum: 4d387fc1eb6126acbd58cbdb9ad99d2887d181df86ab0c2b9abdf734e751093e2d5882c2b6dc7144d9ab16b7ab30a78a1d7f01fb6a2850a44aeb175d1e3f8778
- languageName: node
- linkType: hard
-
"internal-slot@npm:^1.0.3":
version: 1.0.3
resolution: "internal-slot@npm:1.0.3"
@@ -6857,6 +8726,15 @@ __metadata:
languageName: node
linkType: hard
+"is-async-function@npm:^2.0.0":
+ version: 2.0.0
+ resolution: "is-async-function@npm:2.0.0"
+ dependencies:
+ has-tostringtag: ^1.0.0
+ checksum: e3471d95e6c014bf37cad8a93f2f4b6aac962178e0a5041e8903147166964fdc1c5c1d2ef87e86d77322c370ca18f2ea004fa7420581fa747bcaf7c223069dbd
+ languageName: node
+ linkType: hard
+
"is-bigint@npm:^1.0.1":
version: 1.0.4
resolution: "is-bigint@npm:1.0.4"
@@ -6894,12 +8772,12 @@ __metadata:
languageName: node
linkType: hard
-"is-core-module@npm:^2.11.0, is-core-module@npm:^2.12.0":
- version: 2.12.1
- resolution: "is-core-module@npm:2.12.1"
+"is-core-module@npm:^2.13.0, is-core-module@npm:^2.13.1":
+ version: 2.13.1
+ resolution: "is-core-module@npm:2.13.1"
dependencies:
- has: ^1.0.3
- checksum: f04ea30533b5e62764e7b2e049d3157dc0abd95ef44275b32489ea2081176ac9746ffb1cdb107445cf1ff0e0dfcad522726ca27c27ece64dadf3795428b8e468
+ hasown: ^2.0.0
+ checksum: 256559ee8a9488af90e4bad16f5583c6d59e92f0742e9e8bb4331e758521ee86b810b93bae44f390766ffbc518a0488b18d9dab7da9a5ff997d499efc9403f7c
languageName: node
linkType: hard
@@ -6912,7 +8790,7 @@ __metadata:
languageName: node
linkType: hard
-"is-date-object@npm:^1.0.1":
+"is-date-object@npm:^1.0.1, is-date-object@npm:^1.0.5":
version: 1.0.5
resolution: "is-date-object@npm:1.0.5"
dependencies:
@@ -6946,6 +8824,15 @@ __metadata:
languageName: node
linkType: hard
+"is-finalizationregistry@npm:^1.0.2":
+ version: 1.0.2
+ resolution: "is-finalizationregistry@npm:1.0.2"
+ dependencies:
+ call-bind: ^1.0.2
+ checksum: 4f243a8e06228cd45bdab8608d2cb7abfc20f6f0189c8ac21ea8d603f1f196eabd531ce0bb8e08cbab047e9845ef2c191a3761c9a17ad5cabf8b35499c4ad35d
+ languageName: node
+ linkType: hard
+
"is-fullwidth-code-point@npm:^1.0.0":
version: 1.0.0
resolution: "is-fullwidth-code-point@npm:1.0.0"
@@ -6955,13 +8842,6 @@ __metadata:
languageName: node
linkType: hard
-"is-fullwidth-code-point@npm:^2.0.0":
- version: 2.0.0
- resolution: "is-fullwidth-code-point@npm:2.0.0"
- checksum: eef9c6e15f68085fec19ff6a978a6f1b8f48018fd1265035552078ee945573594933b09bbd6f562553e2a241561439f1ef5339276eba68d272001343084cfab8
- languageName: node
- linkType: hard
-
"is-fullwidth-code-point@npm:^3.0.0":
version: 3.0.0
resolution: "is-fullwidth-code-point@npm:3.0.0"
@@ -6976,7 +8856,16 @@ __metadata:
languageName: node
linkType: hard
-"is-glob@npm:^4.0.0, is-glob@npm:^4.0.1":
+"is-generator-function@npm:^1.0.10":
+ version: 1.0.10
+ resolution: "is-generator-function@npm:1.0.10"
+ dependencies:
+ has-tostringtag: ^1.0.0
+ checksum: d54644e7dbaccef15ceb1e5d91d680eb5068c9ee9f9eb0a9e04173eb5542c9b51b5ab52c5537f5703e48d5fddfd376817c1ca07a84a407b7115b769d4bdde72b
+ languageName: node
+ linkType: hard
+
+"is-glob@npm:^4.0.0, is-glob@npm:^4.0.1, is-glob@npm:^4.0.3":
version: 4.0.3
resolution: "is-glob@npm:4.0.3"
dependencies:
@@ -7027,7 +8916,7 @@ __metadata:
languageName: node
linkType: hard
-"is-map@npm:^2.0.2":
+"is-map@npm:^2.0.1, is-map@npm:^2.0.2":
version: 2.0.2
resolution: "is-map@npm:2.0.2"
checksum: ace3d0ecd667bbdefdb1852de601268f67f2db725624b1958f279316e13fecb8fa7df91fd60f690d7417b4ec180712f5a7ee967008e27c65cfd475cc84337728
@@ -7071,7 +8960,7 @@ __metadata:
languageName: node
linkType: hard
-"is-path-inside@npm:^3.0.2":
+"is-path-inside@npm:^3.0.2, is-path-inside@npm:^3.0.3":
version: 3.0.3
resolution: "is-path-inside@npm:3.0.3"
checksum: abd50f06186a052b349c15e55b182326f1936c89a78bf6c8f2b707412517c097ce04bc49a0ca221787bc44e1049f51f09a2ffb63d22899051988d3a618ba13e9
@@ -7102,7 +8991,7 @@ __metadata:
languageName: node
linkType: hard
-"is-set@npm:^2.0.2":
+"is-set@npm:^2.0.1, is-set@npm:^2.0.2":
version: 2.0.2
resolution: "is-set@npm:2.0.2"
checksum: b64343faf45e9387b97a6fd32be632ee7b269bd8183701f3b3f5b71a7cf00d04450ed8669d0bd08753e08b968beda96fca73a10fd0ff56a32603f64deba55a57
@@ -7188,6 +9077,15 @@ __metadata:
languageName: node
linkType: hard
+"is-typed-array@npm:^1.1.12":
+ version: 1.1.12
+ resolution: "is-typed-array@npm:1.1.12"
+ dependencies:
+ which-typed-array: ^1.1.11
+ checksum: 4c89c4a3be07186caddadf92197b17fda663a9d259ea0d44a85f171558270d36059d1c386d34a12cba22dfade5aba497ce22778e866adc9406098c8fc4771796
+ languageName: node
+ linkType: hard
+
"is-typedarray@npm:^1.0.0":
version: 1.0.0
resolution: "is-typedarray@npm:1.0.0"
@@ -7209,6 +9107,13 @@ __metadata:
languageName: node
linkType: hard
+"is-weakmap@npm:^2.0.1":
+ version: 2.0.1
+ resolution: "is-weakmap@npm:2.0.1"
+ checksum: 1222bb7e90c32bdb949226e66d26cb7bce12e1e28e3e1b40bfa6b390ba3e08192a8664a703dff2a00a84825f4e022f9cd58c4599ff9981ab72b1d69479f4f7f6
+ languageName: node
+ linkType: hard
+
"is-weakref@npm:^1.0.2":
version: 1.0.2
resolution: "is-weakref@npm:1.0.2"
@@ -7218,6 +9123,16 @@ __metadata:
languageName: node
linkType: hard
+"is-weakset@npm:^2.0.1":
+ version: 2.0.2
+ resolution: "is-weakset@npm:2.0.2"
+ dependencies:
+ call-bind: ^1.0.2
+ get-intrinsic: ^1.1.1
+ checksum: 5d8698d1fa599a0635d7ca85be9c26d547b317ed8fd83fc75f03efbe75d50001b5eececb1e9971de85fcde84f69ae6f8346bc92d20d55d46201d328e4c74a367
+ languageName: node
+ linkType: hard
+
"is-wsl@npm:^2.2.0":
version: 2.2.0
resolution: "is-wsl@npm:2.2.0"
@@ -7234,13 +9149,6 @@ __metadata:
languageName: node
linkType: hard
-"isarray@npm:^1.0.0, isarray@npm:~1.0.0":
- version: 1.0.0
- resolution: "isarray@npm:1.0.0"
- checksum: f032df8e02dce8ec565cf2eb605ea939bdccea528dbcf565cdf92bfa2da9110461159d86a537388ef1acef8815a330642d7885b29010e8f7eac967c9993b65ab
- languageName: node
- linkType: hard
-
"isarray@npm:^2.0.5":
version: 2.0.5
resolution: "isarray@npm:2.0.5"
@@ -7248,6 +9156,13 @@ __metadata:
languageName: node
linkType: hard
+"isarray@npm:~1.0.0":
+ version: 1.0.0
+ resolution: "isarray@npm:1.0.0"
+ checksum: f032df8e02dce8ec565cf2eb605ea939bdccea528dbcf565cdf92bfa2da9110461159d86a537388ef1acef8815a330642d7885b29010e8f7eac967c9993b65ab
+ languageName: node
+ linkType: hard
+
"isexe@npm:^2.0.0":
version: 2.0.0
resolution: "isexe@npm:2.0.0"
@@ -7295,6 +9210,28 @@ __metadata:
languageName: node
linkType: hard
+"iterator.prototype@npm:^1.1.2":
+ version: 1.1.2
+ resolution: "iterator.prototype@npm:1.1.2"
+ dependencies:
+ define-properties: ^1.2.1
+ get-intrinsic: ^1.2.1
+ has-symbols: ^1.0.3
+ reflect.getprototypeof: ^1.0.4
+ set-function-name: ^2.0.1
+ checksum: d8a507e2ccdc2ce762e8a1d3f4438c5669160ac72b88b648e59a688eec6bc4e64b22338e74000518418d9e693faf2a092d2af21b9ec7dbf7763b037a54701168
+ languageName: node
+ linkType: hard
+
+"jiti@npm:^1.18.2":
+ version: 1.21.0
+ resolution: "jiti@npm:1.21.0"
+ bin:
+ jiti: bin/jiti.js
+ checksum: a7bd5d63921c170eaec91eecd686388181c7828e1fa0657ab374b9372bfc1f383cf4b039e6b272383d5cb25607509880af814a39abdff967322459cca41f2961
+ languageName: node
+ linkType: hard
+
"jquery@npm:x.*":
version: 3.6.1
resolution: "jquery@npm:3.6.1"
@@ -7309,18 +9246,6 @@ __metadata:
languageName: node
linkType: hard
-"js-yaml@npm:^3.13.1":
- version: 3.14.1
- resolution: "js-yaml@npm:3.14.1"
- dependencies:
- argparse: ^1.0.7
- esprima: ^4.0.0
- bin:
- js-yaml: bin/js-yaml.js
- checksum: bef146085f472d44dee30ec34e5cf36bf89164f5d585435a3d3da89e52622dff0b188a580e4ad091c3341889e14cb88cac6e4deb16dc5b1e9623bb0601fc255c
- languageName: node
- linkType: hard
-
"js-yaml@npm:^4.1.0":
version: 4.1.0
resolution: "js-yaml@npm:4.1.0"
@@ -7419,6 +9344,17 @@ __metadata:
languageName: node
linkType: hard
+"json5@npm:^1.0.2":
+ version: 1.0.2
+ resolution: "json5@npm:1.0.2"
+ dependencies:
+ minimist: ^1.2.0
+ bin:
+ json5: lib/cli.js
+ checksum: 866458a8c58a95a49bef3adba929c625e82532bcff1fe93f01d29cb02cac7c3fe1f4b79951b7792c2da9de0b32871a8401a6e3c5b36778ad852bf5b8a61165d7
+ languageName: node
+ linkType: hard
+
"json5@npm:^2.1.2, json5@npm:^2.2.1":
version: 2.2.1
resolution: "json5@npm:2.2.1"
@@ -7428,6 +9364,15 @@ __metadata:
languageName: node
linkType: hard
+"json5@npm:^2.2.3":
+ version: 2.2.3
+ resolution: "json5@npm:2.2.3"
+ bin:
+ json5: lib/cli.js
+ checksum: 2a7436a93393830bce797d4626275152e37e877b265e94ca69c99e3d20c2b9dab021279146a39cdb700e71b2dd32a4cebd1514cd57cee102b1af906ce5040349
+ languageName: node
+ linkType: hard
+
"jsonfile@npm:^4.0.0":
version: 4.0.0
resolution: "jsonfile@npm:4.0.0"
@@ -7460,13 +9405,15 @@ __metadata:
languageName: node
linkType: hard
-"jsx-ast-utils@npm:^2.2.1, jsx-ast-utils@npm:^2.2.3":
- version: 2.4.1
- resolution: "jsx-ast-utils@npm:2.4.1"
+"jsx-ast-utils@npm:^2.4.1 || ^3.0.0, jsx-ast-utils@npm:^3.3.5":
+ version: 3.3.5
+ resolution: "jsx-ast-utils@npm:3.3.5"
dependencies:
- array-includes: ^3.1.1
- object.assign: ^4.1.0
- checksum: 833477231266631e0def7ab5fa5da386790130ce5f9ab5db22fb3a8e67ee0adba9082ff27687e5c64c893af00beeb2285a7309cbc40c5edbcafdaf4e9de069a1
+ array-includes: ^3.1.6
+ array.prototype.flat: ^1.3.1
+ object.assign: ^4.1.4
+ object.values: ^1.1.6
+ checksum: f4b05fa4d7b5234230c905cfa88d36dc8a58a6666975a3891429b1a8cdc8a140bca76c297225cb7a499fad25a2c052ac93934449a2c31a44fc9edd06c773780a
languageName: node
linkType: hard
@@ -7486,6 +9433,15 @@ __metadata:
languageName: node
linkType: hard
+"keyv@npm:^4.5.3":
+ version: 4.5.4
+ resolution: "keyv@npm:4.5.4"
+ dependencies:
+ json-buffer: 3.0.1
+ checksum: 74a24395b1c34bd44ad5cb2b49140d087553e170625240b86755a6604cd65aa16efdbdeae5cdb17ba1284a0fbb25ad06263755dbc71b8d8b06f74232ce3cdd72
+ languageName: node
+ linkType: hard
+
"kind-of@npm:^6.0.2, kind-of@npm:^6.0.3":
version: 6.0.3
resolution: "kind-of@npm:6.0.3"
@@ -7493,10 +9449,26 @@ __metadata:
languageName: node
linkType: hard
-"known-css-properties@npm:^0.27.0":
- version: 0.27.0
- resolution: "known-css-properties@npm:0.27.0"
- checksum: 8584fcf0526f984fe5a358af20200dec3b944373dd005dc23a3ce988895e1acd03e7d69c49533dda07d6d9b6d53990ed1119bd9d3e927f17545f8764c434a5cd
+"known-css-properties@npm:^0.29.0":
+ version: 0.29.0
+ resolution: "known-css-properties@npm:0.29.0"
+ checksum: daa6562e907f856cbfd58a00c42f532c9bba283388984da6a3bffb494e56612e5f23c52f30b0d9885f0ea07ad5d88bfa0470ee65017a6ce6c565289a1afd78af
+ languageName: node
+ linkType: hard
+
+"language-subtag-registry@npm:^0.3.20":
+ version: 0.3.22
+ resolution: "language-subtag-registry@npm:0.3.22"
+ checksum: 8ab70a7e0e055fe977ac16ea4c261faec7205ac43db5e806f72e5b59606939a3b972c4bd1e10e323b35d6ffa97c3e1c4c99f6553069dad2dfdd22020fa3eb56a
+ languageName: node
+ linkType: hard
+
+"language-tags@npm:^1.0.9":
+ version: 1.0.9
+ resolution: "language-tags@npm:1.0.9"
+ dependencies:
+ language-subtag-registry: ^0.3.20
+ checksum: 57c530796dc7179914dee71bc94f3747fd694612480241d0453a063777265dfe3a951037f7acb48f456bf167d6eb419d4c00263745326b3ba1cdcf4657070e78
languageName: node
linkType: hard
@@ -7525,13 +9497,13 @@ __metadata:
languageName: node
linkType: hard
-"levn@npm:^0.3.0, levn@npm:~0.3.0":
- version: 0.3.0
- resolution: "levn@npm:0.3.0"
+"levn@npm:^0.4.1":
+ version: 0.4.1
+ resolution: "levn@npm:0.4.1"
dependencies:
- prelude-ls: ~1.1.2
- type-check: ~0.3.2
- checksum: 0d084a524231a8246bb10fec48cdbb35282099f6954838604f3c7fc66f2e16fa66fd9cc2f3f20a541a113c4dafdf181e822c887c8a319c9195444e6c64ac395e
+ prelude-ls: ^1.2.1
+ type-check: ~0.4.0
+ checksum: 12c5021c859bd0f5248561bf139121f0358285ec545ebf48bb3d346820d5c61a4309535c7f387ed7d84361cf821e124ce346c6b7cef8ee09a67c1473b46d0fc4
languageName: node
linkType: hard
@@ -7551,6 +9523,13 @@ __metadata:
languageName: node
linkType: hard
+"lilconfig@npm:^3.0.0":
+ version: 3.0.0
+ resolution: "lilconfig@npm:3.0.0"
+ checksum: a155f1cd24d324ab20dd6974db9ebcf3fb6f2b60175f7c052d917ff8a746b590bc1ee550f6fc3cb1e8716c8b58304e22fe2193febebc0cf16fa86d85e6f896c5
+ languageName: node
+ linkType: hard
+
"lines-and-columns@npm:^1.1.6":
version: 1.2.4
resolution: "lines-and-columns@npm:1.2.4"
@@ -7602,18 +9581,6 @@ __metadata:
languageName: node
linkType: hard
-"load-json-file@npm:^2.0.0":
- version: 2.0.0
- resolution: "load-json-file@npm:2.0.0"
- dependencies:
- graceful-fs: ^4.1.2
- parse-json: ^2.2.0
- pify: ^2.0.0
- strip-bom: ^3.0.0
- checksum: 7f212bbf08a8c9aab087ead07aa220d1f43d83ec1c4e475a00a8d9bf3014eb29ebe901db8554627dcfb70184c274d05b7379f1e9678fe8297ae74dc495212049
- languageName: node
- linkType: hard
-
"load-json-file@npm:^4.0.0":
version: 4.0.0
resolution: "load-json-file@npm:4.0.0"
@@ -7804,7 +9771,7 @@ __metadata:
languageName: node
linkType: hard
-"lodash@npm:4.17.21, lodash@npm:^4.17.10, lodash@npm:^4.17.14, lodash@npm:^4.17.15, lodash@npm:^4.17.19, lodash@npm:^4.17.21":
+"lodash@npm:4.17.21, lodash@npm:^4.17.10, lodash@npm:^4.17.15, lodash@npm:^4.17.21":
version: 4.17.21
resolution: "lodash@npm:4.17.21"
checksum: eb835a2e51d381e561e508ce932ea50a8e5a68f4ebdd771ea240d3048244a8d13658acbd502cd4829768c56f2e16bdd4340b9ea141297d472517b83868e677f7
@@ -7861,6 +9828,15 @@ __metadata:
languageName: node
linkType: hard
+"lru-cache@npm:^5.1.1":
+ version: 5.1.1
+ resolution: "lru-cache@npm:5.1.1"
+ dependencies:
+ yallist: ^3.0.2
+ checksum: c154ae1cbb0c2206d1501a0e94df349653c92c8cbb25236d7e85190bcaf4567a03ac6eb43166fabfa36fd35623694da7233e88d9601fbf411a9a481d85dbd2cb
+ languageName: node
+ linkType: hard
+
"lru-cache@npm:^6.0.0":
version: 6.0.0
resolution: "lru-cache@npm:6.0.0"
@@ -8120,7 +10096,7 @@ __metadata:
languageName: node
linkType: hard
-"minimatch@npm:^3.0.4, minimatch@npm:^3.1.1":
+"minimatch@npm:^3.0.5, minimatch@npm:^3.1.1, minimatch@npm:^3.1.2":
version: 3.1.2
resolution: "minimatch@npm:3.1.2"
dependencies:
@@ -8240,7 +10216,7 @@ __metadata:
languageName: node
linkType: hard
-"mkdirp@npm:^0.5.1, mkdirp@npm:^0.5.5":
+"mkdirp@npm:^0.5.5":
version: 0.5.6
resolution: "mkdirp@npm:0.5.6"
dependencies:
@@ -8279,13 +10255,6 @@ __metadata:
languageName: node
linkType: hard
-"ms@npm:2.0.0":
- version: 2.0.0
- resolution: "ms@npm:2.0.0"
- checksum: 0e6a22b8b746d2e0b65a430519934fefd41b6db0682e3477c10f60c76e947c4c0ad06f63ffdf1d78d335f83edee8c0aa928aa66a36c7cd95b69b26f468d527f4
- languageName: node
- linkType: hard
-
"ms@npm:2.1.2":
version: 2.1.2
resolution: "ms@npm:2.1.2"
@@ -8300,13 +10269,6 @@ __metadata:
languageName: node
linkType: hard
-"mute-stream@npm:0.0.8":
- version: 0.0.8
- resolution: "mute-stream@npm:0.0.8"
- checksum: ff48d251fc3f827e5b1206cda0ffdaec885e56057ee86a3155e1951bc940fd5f33531774b1cc8414d7668c10a8907f863f6561875ee6e8768931a62121a531a1
- languageName: node
- linkType: hard
-
"mute-stream@npm:1.0.0":
version: 1.0.0
resolution: "mute-stream@npm:1.0.0"
@@ -8339,6 +10301,13 @@ __metadata:
languageName: node
linkType: hard
+"natural-compare-lite@npm:^1.4.0":
+ version: 1.4.0
+ resolution: "natural-compare-lite@npm:1.4.0"
+ checksum: 5222ac3986a2b78dd6069ac62cbb52a7bf8ffc90d972ab76dfe7b01892485d229530ed20d0c62e79a6b363a663b273db3bde195a1358ce9e5f779d4453887225
+ languageName: node
+ linkType: hard
+
"natural-compare@npm:^1.4.0":
version: 1.4.0
resolution: "natural-compare@npm:1.4.0"
@@ -8376,13 +10345,6 @@ __metadata:
languageName: node
linkType: hard
-"nice-try@npm:^1.0.4":
- version: 1.0.5
- resolution: "nice-try@npm:1.0.5"
- checksum: 0b4af3b5bb5d86c289f7a026303d192a7eb4417231fe47245c460baeabae7277bcd8fd9c728fb6bd62c30b3e15cd6620373e2cf33353b095d8b403d3e8a15aff
- languageName: node
- linkType: hard
-
"node-abi@npm:^2.21.0":
version: 2.30.1
resolution: "node-abi@npm:2.30.1"
@@ -8463,6 +10425,13 @@ __metadata:
languageName: node
linkType: hard
+"node-releases@npm:^2.0.13":
+ version: 2.0.13
+ resolution: "node-releases@npm:2.0.13"
+ checksum: 17ec8f315dba62710cae71a8dad3cd0288ba943d2ece43504b3b1aa8625bf138637798ab470b1d9035b0545996f63000a8a926e0f6d35d0996424f8b6d36dda3
+ languageName: node
+ linkType: hard
+
"node-releases@npm:^2.0.6":
version: 2.0.6
resolution: "node-releases@npm:2.0.6"
@@ -8596,6 +10565,13 @@ __metadata:
languageName: node
linkType: hard
+"object-inspect@npm:^1.13.1":
+ version: 1.13.1
+ resolution: "object-inspect@npm:1.13.1"
+ checksum: 7d9fa9221de3311dcb5c7c307ee5dc011cdd31dc43624b7c184b3840514e118e05ef0002be5388304c416c0eb592feb46e983db12577fc47e47d5752fbbfb61f
+ languageName: node
+ linkType: hard
+
"object-is@npm:^1.1.2":
version: 1.1.5
resolution: "object-is@npm:1.1.5"
@@ -8625,17 +10601,6 @@ __metadata:
languageName: node
linkType: hard
-"object.entries@npm:^1.1.1":
- version: 1.1.6
- resolution: "object.entries@npm:1.1.6"
- dependencies:
- call-bind: ^1.0.2
- define-properties: ^1.1.4
- es-abstract: ^1.20.4
- checksum: 0f8c47517e6a9a980241eafe3b73de11e59511883173c2b93d67424a008e47e11b77c80e431ad1d8a806f6108b225a1cab9223e53e555776c612a24297117d28
- languageName: node
- linkType: hard
-
"object.entries@npm:^1.1.2":
version: 1.1.5
resolution: "object.entries@npm:1.1.5"
@@ -8647,14 +10612,47 @@ __metadata:
languageName: node
linkType: hard
-"object.fromentries@npm:^2.0.2":
- version: 2.0.6
- resolution: "object.fromentries@npm:2.0.6"
+"object.entries@npm:^1.1.6, object.entries@npm:^1.1.7":
+ version: 1.1.7
+ resolution: "object.entries@npm:1.1.7"
dependencies:
call-bind: ^1.0.2
- define-properties: ^1.1.4
- es-abstract: ^1.20.4
- checksum: 453c6d694180c0c30df451b60eaf27a5b9bca3fb43c37908fd2b78af895803dc631242bcf05582173afa40d8d0e9c96e16e8874b39471aa53f3ac1f98a085d85
+ define-properties: ^1.2.0
+ es-abstract: ^1.22.1
+ checksum: da287d434e7e32989586cd734382364ba826a2527f2bc82e6acbf9f9bfafa35d51018b66ec02543ffdfa2a5ba4af2b6f1ca6e588c65030cb4fd9c67d6ced594c
+ languageName: node
+ linkType: hard
+
+"object.fromentries@npm:^2.0.6, object.fromentries@npm:^2.0.7":
+ version: 2.0.7
+ resolution: "object.fromentries@npm:2.0.7"
+ dependencies:
+ call-bind: ^1.0.2
+ define-properties: ^1.2.0
+ es-abstract: ^1.22.1
+ checksum: 7341ce246e248b39a431b87a9ddd331ff52a454deb79afebc95609f94b1f8238966cf21f52188f2a353f0fdf83294f32f1ebf1f7826aae915ebad21fd0678065
+ languageName: node
+ linkType: hard
+
+"object.groupby@npm:^1.0.1":
+ version: 1.0.1
+ resolution: "object.groupby@npm:1.0.1"
+ dependencies:
+ call-bind: ^1.0.2
+ define-properties: ^1.2.0
+ es-abstract: ^1.22.1
+ get-intrinsic: ^1.2.1
+ checksum: d7959d6eaaba358b1608066fc67ac97f23ce6f573dc8fc661f68c52be165266fcb02937076aedb0e42722fdda0bdc0bbf74778196ac04868178888e9fd3b78b5
+ languageName: node
+ linkType: hard
+
+"object.hasown@npm:^1.1.2":
+ version: 1.1.3
+ resolution: "object.hasown@npm:1.1.3"
+ dependencies:
+ define-properties: ^1.2.0
+ es-abstract: ^1.22.1
+ checksum: 76bc17356f6124542fb47e5d0e78d531eafa4bba3fc2d6fc4b1a8ce8b6878912366c0d99f37ce5c84ada8fd79df7aa6ea1214fddf721f43e093ad2df51f27da1
languageName: node
linkType: hard
@@ -8669,14 +10667,14 @@ __metadata:
languageName: node
linkType: hard
-"object.values@npm:^1.1.1":
- version: 1.1.6
- resolution: "object.values@npm:1.1.6"
+"object.values@npm:^1.1.6, object.values@npm:^1.1.7":
+ version: 1.1.7
+ resolution: "object.values@npm:1.1.7"
dependencies:
call-bind: ^1.0.2
- define-properties: ^1.1.4
- es-abstract: ^1.20.4
- checksum: f6fff9fd817c24cfd8107f50fb33061d81cd11bacc4e3dbb3852e9ff7692fde4dbce823d4333ea27cd9637ef1b6690df5fbb61f1ed314fa2959598dc3ae23d8e
+ define-properties: ^1.2.0
+ es-abstract: ^1.22.1
+ checksum: f3e4ae4f21eb1cc7cebb6ce036d4c67b36e1c750428d7b7623c56a0db90edced63d08af8a316d81dfb7c41a3a5fa81b05b7cc9426e98d7da986b1682460f0777
languageName: node
linkType: hard
@@ -8707,7 +10705,7 @@ __metadata:
languageName: node
linkType: hard
-"open@npm:9.1.0":
+"open@npm:9.1.0, open@npm:^9.1.0":
version: 9.1.0
resolution: "open@npm:9.1.0"
dependencies:
@@ -8719,17 +10717,17 @@ __metadata:
languageName: node
linkType: hard
-"optionator@npm:^0.8.3":
- version: 0.8.3
- resolution: "optionator@npm:0.8.3"
+"optionator@npm:^0.9.3":
+ version: 0.9.3
+ resolution: "optionator@npm:0.9.3"
dependencies:
- deep-is: ~0.1.3
- fast-levenshtein: ~2.0.6
- levn: ~0.3.0
- prelude-ls: ~1.1.2
- type-check: ~0.3.2
- word-wrap: ~1.2.3
- checksum: b8695ddf3d593203e25ab0900e265d860038486c943ff8b774f596a310f8ceebdb30c6832407a8198ba3ec9debe1abe1f51d4aad94843612db3b76d690c61d34
+ "@aashutoshrathi/word-wrap": ^1.2.3
+ deep-is: ^0.1.3
+ fast-levenshtein: ^2.0.6
+ levn: ^0.4.1
+ prelude-ls: ^1.2.1
+ type-check: ^0.4.0
+ checksum: 09281999441f2fe9c33a5eeab76700795365a061563d66b098923eb719251a42bdbe432790d35064d0816ead9296dbeb1ad51a733edf4167c96bd5d0882e428a
languageName: node
linkType: hard
@@ -8927,15 +10925,6 @@ __metadata:
languageName: node
linkType: hard
-"parse-json@npm:^2.2.0":
- version: 2.2.0
- resolution: "parse-json@npm:2.2.0"
- dependencies:
- error-ex: ^1.2.0
- checksum: dda78a63e57a47b713a038630868538f718a7ca0cd172a36887b0392ccf544ed0374902eb28f8bf3409e8b71d62b79d17062f8543afccf2745f9b0b2d2bb80ca
- languageName: node
- linkType: hard
-
"parse-json@npm:^4.0.0":
version: 4.0.0
resolution: "parse-json@npm:4.0.0"
@@ -9021,13 +11010,6 @@ __metadata:
languageName: node
linkType: hard
-"path-key@npm:^2.0.1":
- version: 2.0.1
- resolution: "path-key@npm:2.0.1"
- checksum: f7ab0ad42fe3fb8c7f11d0c4f849871e28fbd8e1add65c370e422512fc5887097b9cf34d09c1747d45c942a8c1e26468d6356e2df3f740bf177ab8ca7301ebfd
- languageName: node
- linkType: hard
-
"path-key@npm:^3.0.0, path-key@npm:^3.1.0":
version: 3.1.1
resolution: "path-key@npm:3.1.1"
@@ -9049,15 +11031,6 @@ __metadata:
languageName: node
linkType: hard
-"path-type@npm:^2.0.0":
- version: 2.0.0
- resolution: "path-type@npm:2.0.0"
- dependencies:
- pify: ^2.0.0
- checksum: 749dc0c32d4ebe409da155a0022f9be3d08e6fd276adb3dfa27cb2486519ab2aa277d1453b3fde050831e0787e07b0885a75653fefcc82d883753c5b91121b1c
- languageName: node
- linkType: hard
-
"path-type@npm:^3.0.0":
version: 3.0.0
resolution: "path-type@npm:3.0.0"
@@ -9074,6 +11047,13 @@ __metadata:
languageName: node
linkType: hard
+"picocolors@npm:^0.2.1":
+ version: 0.2.1
+ resolution: "picocolors@npm:0.2.1"
+ checksum: 3b0f441f0062def0c0f39e87b898ae7461c3a16ffc9f974f320b44c799418cabff17780ee647fda42b856a1dc45897e2c62047e1b546d94d6d5c6962f45427b2
+ languageName: node
+ linkType: hard
+
"picocolors@npm:^1.0.0":
version: 1.0.0
resolution: "picocolors@npm:1.0.0"
@@ -9097,7 +11077,7 @@ __metadata:
languageName: node
linkType: hard
-"pify@npm:^2.0.0, pify@npm:^2.3.0":
+"pify@npm:^2.3.0":
version: 2.3.0
resolution: "pify@npm:2.3.0"
checksum: 9503aaeaf4577acc58642ad1d25c45c6d90288596238fb68f82811c08104c800e5a7870398e9f015d82b44ecbcbef3dc3d4251a1cbb582f6e5959fe09884b2ba
@@ -9118,6 +11098,65 @@ __metadata:
languageName: node
linkType: hard
+"postcss-flexbugs-fixes@npm:5.0.2":
+ version: 5.0.2
+ resolution: "postcss-flexbugs-fixes@npm:5.0.2"
+ peerDependencies:
+ postcss: ^8.1.4
+ checksum: 022ddbcca8987303b9be75ff259e9de81b98643adac87a5fc6b52a0fcbbf95e1ac9fd508c4ed67cad76ac5d039b7123de8a0832329481b3c626f5d63f7a28f47
+ languageName: node
+ linkType: hard
+
+"postcss-less@npm:6.0.0":
+ version: 6.0.0
+ resolution: "postcss-less@npm:6.0.0"
+ peerDependencies:
+ postcss: ^8.3.5
+ checksum: 04ec95fc8637380e4633f0329ba3a65436360b57b289bb867ee25aada51e2e45a110cdb1eaa8e8c09c61009aff4207ef6bf21efd4e2ff12f6a7ffc6861a8647e
+ languageName: node
+ linkType: hard
+
+"postcss-load-config@npm:4.0.2":
+ version: 4.0.2
+ resolution: "postcss-load-config@npm:4.0.2"
+ dependencies:
+ lilconfig: ^3.0.0
+ yaml: ^2.3.4
+ peerDependencies:
+ postcss: ">=8.0.9"
+ ts-node: ">=9.0.0"
+ peerDependenciesMeta:
+ postcss:
+ optional: true
+ ts-node:
+ optional: true
+ checksum: 7c27dd3801db4eae207a5116fed2db6b1ebb780b40c3dd62a3e57e087093a8e6a14ee17ada729fee903152d6ef4826c6339eb135bee6208e0f3140d7e8090185
+ languageName: node
+ linkType: hard
+
+"postcss-loader@npm:7.3.3":
+ version: 7.3.3
+ resolution: "postcss-loader@npm:7.3.3"
+ dependencies:
+ cosmiconfig: ^8.2.0
+ jiti: ^1.18.2
+ semver: ^7.3.8
+ peerDependencies:
+ postcss: ^7.0.0 || ^8.0.1
+ webpack: ^5.0.0
+ checksum: c724044d6ae56334535c26bb4efc9c151431d44d60bc8300157c760747281a242757d8dab32db72738434531175b38a408cb0b270bb96207c07584dcfcd899ff
+ languageName: node
+ linkType: hard
+
+"postcss-overrides@npm:3.1.4":
+ version: 3.1.4
+ resolution: "postcss-overrides@npm:3.1.4"
+ dependencies:
+ postcss: ^7.0.14
+ checksum: 178c0a2a1c2b226249a820e1df14aa7be856870d7147b90ffd57df7c4c7a9796e2e42841b3ba06b44caf3b736eae2968423b015c47a66e175b3f74bedc50db94
+ languageName: node
+ linkType: hard
+
"postcss-resolve-nested-selector@npm:^0.1.1":
version: 0.1.1
resolution: "postcss-resolve-nested-selector@npm:0.1.1"
@@ -9134,6 +11173,15 @@ __metadata:
languageName: node
linkType: hard
+"postcss-scss@npm:4.0.9":
+ version: 4.0.9
+ resolution: "postcss-scss@npm:4.0.9"
+ peerDependencies:
+ postcss: ^8.4.29
+ checksum: dc358bafc23d52ed3a9a29333808825deba213042be74ece6eae7a61c692f67d0e6691fa7005367b013c01c79562fbb9ef2fe4c0485075233931bd90715f5132
+ languageName: node
+ linkType: hard
+
"postcss-selector-parser@npm:^6.0.13":
version: 6.0.13
resolution: "postcss-selector-parser@npm:6.0.13"
@@ -9160,25 +11208,35 @@ __metadata:
languageName: node
linkType: hard
-"postcss@npm:^8.3.11":
- version: 8.4.16
- resolution: "postcss@npm:8.4.16"
+"postcss@npm:8.4.31, postcss@npm:^8.4.28":
+ version: 8.4.31
+ resolution: "postcss@npm:8.4.31"
dependencies:
- nanoid: ^3.3.4
+ nanoid: ^3.3.6
picocolors: ^1.0.0
source-map-js: ^1.0.2
- checksum: 10eee25efd77868036403858577da0cefaf2e0905feeaba5770d5438ccdddba3d01cba8063e96b8aac4c6daa0ed413dd5ae0554a433a3c4db38df1d134cffc1f
+ checksum: 1d8611341b073143ad90486fcdfeab49edd243377b1f51834dc4f6d028e82ce5190e4f11bb2633276864503654fb7cab28e67abdc0fbf9d1f88cad4a0ff0beea
languageName: node
linkType: hard
-"postcss@npm:^8.4.25":
- version: 8.4.26
- resolution: "postcss@npm:8.4.26"
+"postcss@npm:^7.0.14":
+ version: 7.0.39
+ resolution: "postcss@npm:7.0.39"
dependencies:
- nanoid: ^3.3.6
+ picocolors: ^0.2.1
+ source-map: ^0.6.1
+ checksum: 4ac793f506c23259189064bdc921260d869a115a82b5e713973c5af8e94fbb5721a5cc3e1e26840500d7e1f1fa42a209747c5b1a151918a9bc11f0d7ed9048e3
+ languageName: node
+ linkType: hard
+
+"postcss@npm:^8.3.11":
+ version: 8.4.16
+ resolution: "postcss@npm:8.4.16"
+ dependencies:
+ nanoid: ^3.3.4
picocolors: ^1.0.0
source-map-js: ^1.0.2
- checksum: 1cf08ee10d58cbe98f94bf12ac49a5e5ed1588507d333d2642aacc24369ca987274e1f60ff4cbf0081f70d2ab18a5cd3a4a273f188d835b8e7f3ba381b184e57
+ checksum: 10eee25efd77868036403858577da0cefaf2e0905feeaba5770d5438ccdddba3d01cba8063e96b8aac4c6daa0ed413dd5ae0554a433a3c4db38df1d134cffc1f
languageName: node
linkType: hard
@@ -9212,10 +11270,10 @@ __metadata:
languageName: node
linkType: hard
-"prelude-ls@npm:~1.1.2":
- version: 1.1.2
- resolution: "prelude-ls@npm:1.1.2"
- checksum: c4867c87488e4a0c233e158e4d0d5565b609b105d75e4c05dc760840475f06b731332eb93cc8c9cecb840aa8ec323ca3c9a56ad7820ad2e63f0261dadcb154e4
+"prelude-ls@npm:^1.2.1":
+ version: 1.2.1
+ resolution: "prelude-ls@npm:1.2.1"
+ checksum: cd192ec0d0a8e4c6da3bb80e4f62afe336df3f76271ac6deb0e6a36187133b6073a19e9727a1ff108cd8b9982e4768850d413baa71214dd80c7979617dca827a
languageName: node
linkType: hard
@@ -9228,12 +11286,12 @@ __metadata:
languageName: node
linkType: hard
-"prettier@npm:2.0.5":
- version: 2.0.5
- resolution: "prettier@npm:2.0.5"
+"prettier@npm:3.1.0":
+ version: 3.1.0
+ resolution: "prettier@npm:3.1.0"
bin:
- prettier: bin-prettier.js
- checksum: 7f89d2f5d1a1a15a7bf200556b8c5395913d0119fe52a3fba51ab116695d584652d37fdb7d86e0919bfe36b22649afcf222eaca00a1065eb486b7b4cf3062eff
+ prettier: bin/prettier.cjs
+ checksum: 44b556bd56f74d7410974fbb2418bb4e53a894d3e7b42f6f87779f69f27a6c272fa7fc27cec0118cd11730ef3246478052e002cbd87e9a253f9cd04a56aa7d9b
languageName: node
linkType: hard
@@ -9244,7 +11302,7 @@ __metadata:
languageName: node
linkType: hard
-"progress@npm:^2.0.0, progress@npm:^2.0.3":
+"progress@npm:^2.0.3":
version: 2.0.3
resolution: "progress@npm:2.0.3"
checksum: f67403fe7b34912148d9252cb7481266a354bd99ce82c835f79070643bb3c6583d10dbcfda4d41e04bbc1d8437e9af0fb1e1f2135727878f5308682a579429b7
@@ -9311,7 +11369,7 @@ __metadata:
languageName: node
linkType: hard
-"prop-types@npm:^15.5.0, prop-types@npm:^15.5.8, prop-types@npm:^15.6.0, prop-types@npm:^15.6.2, prop-types@npm:^15.7.2":
+"prop-types@npm:^15.5.0, prop-types@npm:^15.5.8, prop-types@npm:^15.6.0, prop-types@npm:^15.6.2, prop-types@npm:^15.7.2, prop-types@npm:^15.8.1":
version: 15.8.1
resolution: "prop-types@npm:15.8.1"
dependencies:
@@ -9780,16 +11838,6 @@ __metadata:
languageName: node
linkType: hard
-"read-pkg-up@npm:^2.0.0":
- version: 2.0.0
- resolution: "read-pkg-up@npm:2.0.0"
- dependencies:
- find-up: ^2.0.0
- read-pkg: ^2.0.0
- checksum: 22f9026fb72219ecd165f94f589461c70a88461dc7ea0d439a310ef2a5271ff176a4df4e5edfad087d8ac89b8553945eb209476b671e8ed081c990f30fc40b27
- languageName: node
- linkType: hard
-
"read-pkg-up@npm:^3.0.0":
version: 3.0.0
resolution: "read-pkg-up@npm:3.0.0"
@@ -9822,17 +11870,6 @@ __metadata:
languageName: node
linkType: hard
-"read-pkg@npm:^2.0.0":
- version: 2.0.0
- resolution: "read-pkg@npm:2.0.0"
- dependencies:
- load-json-file: ^2.0.0
- normalize-package-data: ^2.3.2
- path-type: ^2.0.0
- checksum: 85c5bf35f2d96acdd756151ba83251831bb2b1040b7d96adce70b2cb119b5320417f34876de0929f2d06c67f3df33ef4636427df3533913876f9ef2487a6f48f
- languageName: node
- linkType: hard
-
"read-pkg@npm:^3.0.0":
version: 3.0.0
resolution: "read-pkg@npm:3.0.0"
@@ -9948,6 +11985,20 @@ __metadata:
languageName: node
linkType: hard
+"reflect.getprototypeof@npm:^1.0.4":
+ version: 1.0.4
+ resolution: "reflect.getprototypeof@npm:1.0.4"
+ dependencies:
+ call-bind: ^1.0.2
+ define-properties: ^1.2.0
+ es-abstract: ^1.22.1
+ get-intrinsic: ^1.2.1
+ globalthis: ^1.0.3
+ which-builtin-type: ^1.1.3
+ checksum: 16e2361988dbdd23274b53fb2b1b9cefeab876c3941a2543b4cadac6f989e3db3957b07a44aac46cfceb3e06e2871785ec2aac992d824f76292f3b5ee87f66f2
+ languageName: node
+ linkType: hard
+
"reflect.ownkeys@npm:^0.2.0":
version: 0.2.0
resolution: "reflect.ownkeys@npm:0.2.0"
@@ -9992,12 +12043,28 @@ __metadata:
languageName: node
linkType: hard
+"regenerator-runtime@npm:^0.14.0":
+ version: 0.14.0
+ resolution: "regenerator-runtime@npm:0.14.0"
+ checksum: 1c977ad82a82a4412e4f639d65d22be376d3ebdd30da2c003eeafdaaacd03fc00c2320f18120007ee700900979284fc78a9f00da7fb593f6e6eeebc673fba9a3
+ languageName: node
+ linkType: hard
+
"regenerator-transform@npm:^0.15.0":
version: 0.15.0
resolution: "regenerator-transform@npm:0.15.0"
dependencies:
"@babel/runtime": ^7.8.4
- checksum: 86e54849ab1167618d28bb56d214c52a983daf29b0d115c976d79840511420049b6b42c9ebdf187defa8e7129bdd74b6dd266420d0d3868c9fa7f793b5d15d49
+ checksum: 86e54849ab1167618d28bb56d214c52a983daf29b0d115c976d79840511420049b6b42c9ebdf187defa8e7129bdd74b6dd266420d0d3868c9fa7f793b5d15d49
+ languageName: node
+ linkType: hard
+
+"regenerator-transform@npm:^0.15.2":
+ version: 0.15.2
+ resolution: "regenerator-transform@npm:0.15.2"
+ dependencies:
+ "@babel/runtime": ^7.8.4
+ checksum: 20b6f9377d65954980fe044cfdd160de98df415b4bff38fbade67b3337efaf078308c4fed943067cd759827cc8cfeca9cb28ccda1f08333b85d6a2acbd022c27
languageName: node
linkType: hard
@@ -10012,10 +12079,14 @@ __metadata:
languageName: node
linkType: hard
-"regexpp@npm:^2.0.1":
- version: 2.0.1
- resolution: "regexpp@npm:2.0.1"
- checksum: 1f41cf80ac08514c6665812e3dcc0673569431d3285db27053f8b237a758992fb55d6ddfbc264db399ff4f7a7db432900ca3a029daa28a75e0436231872091b1
+"regexp.prototype.flags@npm:^1.5.0, regexp.prototype.flags@npm:^1.5.1":
+ version: 1.5.1
+ resolution: "regexp.prototype.flags@npm:1.5.1"
+ dependencies:
+ call-bind: ^1.0.2
+ define-properties: ^1.2.0
+ set-function-name: ^2.0.0
+ checksum: 869edff00288442f8d7fa4c9327f91d85f3b3acf8cbbef9ea7a220345cf23e9241b6def9263d2c1ebcf3a316b0aa52ad26a43a84aa02baca3381717b3e307f47
languageName: node
linkType: hard
@@ -10033,6 +12104,20 @@ __metadata:
languageName: node
linkType: hard
+"regexpu-core@npm:^5.3.1":
+ version: 5.3.2
+ resolution: "regexpu-core@npm:5.3.2"
+ dependencies:
+ "@babel/regjsgen": ^0.8.0
+ regenerate: ^1.4.2
+ regenerate-unicode-properties: ^10.1.0
+ regjsparser: ^0.9.1
+ unicode-match-property-ecmascript: ^2.0.0
+ unicode-match-property-value-ecmascript: ^2.1.0
+ checksum: 95bb97088419f5396e07769b7de96f995f58137ad75fac5811fb5fe53737766dfff35d66a0ee66babb1eb55386ef981feaef392f9df6d671f3c124812ba24da2
+ languageName: node
+ linkType: hard
+
"registry-auth-token@npm:^5.0.1":
version: 5.0.2
resolution: "registry-auth-token@npm:5.0.2"
@@ -10177,16 +12262,29 @@ __metadata:
languageName: node
linkType: hard
-"resolve@npm:^1.12.0, resolve@npm:^1.15.1, resolve@npm:^1.22.1":
- version: 1.22.3
- resolution: "resolve@npm:1.22.3"
+"resolve@npm:^1.22.4":
+ version: 1.22.8
+ resolution: "resolve@npm:1.22.8"
+ dependencies:
+ is-core-module: ^2.13.0
+ path-parse: ^1.0.7
+ supports-preserve-symlinks-flag: ^1.0.0
+ bin:
+ resolve: bin/resolve
+ checksum: f8a26958aa572c9b064562750b52131a37c29d072478ea32e129063e2da7f83e31f7f11e7087a18225a8561cfe8d2f0df9dbea7c9d331a897571c0a2527dbb4c
+ languageName: node
+ linkType: hard
+
+"resolve@npm:^2.0.0-next.4":
+ version: 2.0.0-next.5
+ resolution: "resolve@npm:2.0.0-next.5"
dependencies:
- is-core-module: ^2.12.0
+ is-core-module: ^2.13.0
path-parse: ^1.0.7
supports-preserve-symlinks-flag: ^1.0.0
bin:
resolve: bin/resolve
- checksum: fb834b81348428cb545ff1b828a72ea28feb5a97c026a1cf40aa1008352c72811ff4d4e71f2035273dc536dcfcae20c13604ba6283c612d70fa0b6e44519c374
+ checksum: a73ac69a1c4bd34c56b213d91f5b17ce390688fdb4a1a96ed3025cc7e08e7bfb90b3a06fcce461780cb0b589c958afcb0080ab802c71c01a7ecc8c64feafc89f
languageName: node
linkType: hard
@@ -10203,16 +12301,29 @@ __metadata:
languageName: node
linkType: hard
-"resolve@patch:resolve@^1.12.0#~builtin
, resolve@patch:resolve@^1.15.1#~builtin, resolve@patch:resolve@^1.22.1#~builtin":
- version: 1.22.3
- resolution: "resolve@patch:resolve@npm%3A1.22.3#~builtin::version=1.22.3&hash=07638b"
+"resolve@patch:resolve@^1.22.4#~builtin":
+ version: 1.22.8
+ resolution: "resolve@patch:resolve@npm%3A1.22.8#~builtin::version=1.22.8&hash=07638b"
+ dependencies:
+ is-core-module: ^2.13.0
+ path-parse: ^1.0.7
+ supports-preserve-symlinks-flag: ^1.0.0
+ bin:
+ resolve: bin/resolve
+ checksum: 5479b7d431cacd5185f8db64bfcb7286ae5e31eb299f4c4f404ad8aa6098b77599563ac4257cb2c37a42f59dfc06a1bec2bcf283bb448f319e37f0feb9a09847
+ languageName: node
+ linkType: hard
+
+"resolve@patch:resolve@^2.0.0-next.4#~builtin":
+ version: 2.0.0-next.5
+ resolution: "resolve@patch:resolve@npm%3A2.0.0-next.5#~builtin::version=2.0.0-next.5&hash=07638b"
dependencies:
- is-core-module: ^2.12.0
+ is-core-module: ^2.13.0
path-parse: ^1.0.7
supports-preserve-symlinks-flag: ^1.0.0
bin:
resolve: bin/resolve
- checksum: ad59734723b596d0891321c951592ed9015a77ce84907f89c9d9307dd0c06e11a67906a3e628c4cae143d3e44898603478af0ddeb2bba3f229a9373efe342665
+ checksum: 064d09c1808d0c51b3d90b5d27e198e6d0c5dad0eb57065fd40803d6a20553e5398b07f76739d69cbabc12547058bec6b32106ea66622375fb0d7e8fca6a846c
languageName: node
linkType: hard
@@ -10273,17 +12384,6 @@ __metadata:
languageName: node
linkType: hard
-"rimraf@npm:2.6.3":
- version: 2.6.3
- resolution: "rimraf@npm:2.6.3"
- dependencies:
- glob: ^7.1.3
- bin:
- rimraf: ./bin.js
- checksum: 3ea587b981a19016297edb96d1ffe48af7e6af69660e3b371dbfc73722a73a0b0e9be5c88089fbeeb866c389c1098e07f64929c7414290504b855f54f901ab10
- languageName: node
- linkType: hard
-
"rimraf@npm:^3.0.2":
version: 3.0.2
resolution: "rimraf@npm:3.0.2"
@@ -10314,13 +12414,6 @@ __metadata:
languageName: node
linkType: hard
-"run-async@npm:^2.4.0":
- version: 2.4.1
- resolution: "run-async@npm:2.4.1"
- checksum: a2c88aa15df176f091a2878eb840e68d0bdee319d8d97bbb89112223259cebecb94bc0defd735662b83c2f7a30bed8cddb7d1674eb48ae7322dc602b22d03797
- languageName: node
- linkType: hard
-
"run-async@npm:^3.0.0":
version: 3.0.0
resolution: "run-async@npm:3.0.0"
@@ -10337,15 +12430,6 @@ __metadata:
languageName: node
linkType: hard
-"rxjs@npm:^6.6.0":
- version: 6.6.7
- resolution: "rxjs@npm:6.6.7"
- dependencies:
- tslib: ^1.9.0
- checksum: bc334edef1bb8bbf56590b0b25734ba0deaf8825b703256a93714308ea36dff8a11d25533671adf8e104e5e8f256aa6fdfe39b2e248cdbd7a5f90c260acbbd1b
- languageName: node
- linkType: hard
-
"rxjs@npm:^7.5.5":
version: 7.5.7
resolution: "rxjs@npm:7.5.7"
@@ -10364,6 +12448,18 @@ __metadata:
languageName: node
linkType: hard
+"safe-array-concat@npm:^1.0.1":
+ version: 1.0.1
+ resolution: "safe-array-concat@npm:1.0.1"
+ dependencies:
+ call-bind: ^1.0.2
+ get-intrinsic: ^1.2.1
+ has-symbols: ^1.0.3
+ isarray: ^2.0.5
+ checksum: 001ecf1d8af398251cbfabaf30ed66e3855127fbceee178179524b24160b49d15442f94ed6c0db0b2e796da76bb05b73bf3cc241490ec9c2b741b41d33058581
+ languageName: node
+ linkType: hard
+
"safe-buffer@npm:^5.0.1, safe-buffer@npm:~5.2.0":
version: 5.2.1
resolution: "safe-buffer@npm:5.2.1"
@@ -10474,7 +12570,7 @@ __metadata:
languageName: node
linkType: hard
-"semver@npm:7.5.4":
+"semver@npm:7.5.4, semver@npm:^7.3.8":
version: 7.5.4
resolution: "semver@npm:7.5.4"
dependencies:
@@ -10485,15 +12581,6 @@ __metadata:
languageName: node
linkType: hard
-"semver@npm:^5.5.0":
- version: 5.7.2
- resolution: "semver@npm:5.7.2"
- bin:
- semver: bin/semver
- checksum: fb4ab5e0dd1c22ce0c937ea390b4a822147a9c53dbd2a9a0132f12fe382902beef4fbf12cf51bb955248d8d15874ce8cd89532569756384f994309825f10b686
- languageName: node
- linkType: hard
-
"semver@npm:^6.0.0, semver@npm:^6.1.1, semver@npm:^6.1.2, semver@npm:^6.3.0":
version: 6.3.0
resolution: "semver@npm:6.3.0"
@@ -10503,6 +12590,15 @@ __metadata:
languageName: node
linkType: hard
+"semver@npm:^6.3.1":
+ version: 6.3.1
+ resolution: "semver@npm:6.3.1"
+ bin:
+ semver: bin/semver.js
+ checksum: ae47d06de28836adb9d3e25f22a92943477371292d9b665fb023fae278d345d508ca1958232af086d85e0155aee22e313e100971898bbb8d5d89b8b1d4054ca2
+ languageName: node
+ linkType: hard
+
"semver@npm:^7.3.4, semver@npm:^7.3.5":
version: 7.3.7
resolution: "semver@npm:7.3.7"
@@ -10521,6 +12617,29 @@ __metadata:
languageName: node
linkType: hard
+"set-function-length@npm:^1.1.1":
+ version: 1.1.1
+ resolution: "set-function-length@npm:1.1.1"
+ dependencies:
+ define-data-property: ^1.1.1
+ get-intrinsic: ^1.2.1
+ gopd: ^1.0.1
+ has-property-descriptors: ^1.0.0
+ checksum: c131d7569cd7e110cafdfbfbb0557249b538477624dfac4fc18c376d879672fa52563b74029ca01f8f4583a8acb35bb1e873d573a24edb80d978a7ee607c6e06
+ languageName: node
+ linkType: hard
+
+"set-function-name@npm:^2.0.0, set-function-name@npm:^2.0.1":
+ version: 2.0.1
+ resolution: "set-function-name@npm:2.0.1"
+ dependencies:
+ define-data-property: ^1.0.1
+ functions-have-names: ^1.2.3
+ has-property-descriptors: ^1.0.0
+ checksum: 4975d17d90c40168eee2c7c9c59d023429f0a1690a89d75656306481ece0c3c1fb1ebcc0150ea546d1913e35fbd037bace91372c69e543e51fc5d1f31a9fa126
+ languageName: node
+ linkType: hard
+
"setimmediate@npm:^1.0.5":
version: 1.0.5
resolution: "setimmediate@npm:1.0.5"
@@ -10552,15 +12671,6 @@ __metadata:
languageName: node
linkType: hard
-"shebang-command@npm:^1.2.0":
- version: 1.2.0
- resolution: "shebang-command@npm:1.2.0"
- dependencies:
- shebang-regex: ^1.0.0
- checksum: 9eed1750301e622961ba5d588af2212505e96770ec376a37ab678f965795e995ade7ed44910f5d3d3cb5e10165a1847f52d3348c64e146b8be922f7707958908
- languageName: node
- linkType: hard
-
"shebang-command@npm:^2.0.0":
version: 2.0.0
resolution: "shebang-command@npm:2.0.0"
@@ -10570,13 +12680,6 @@ __metadata:
languageName: node
linkType: hard
-"shebang-regex@npm:^1.0.0":
- version: 1.0.0
- resolution: "shebang-regex@npm:1.0.0"
- checksum: 404c5a752cd40f94591dfd9346da40a735a05139dac890ffc229afba610854d8799aaa52f87f7e0c94c5007f2c6af55bdcaeb584b56691926c5eaf41dc8f1372
- languageName: node
- linkType: hard
-
"shebang-regex@npm:^3.0.0":
version: 3.0.0
resolution: "shebang-regex@npm:3.0.0"
@@ -10693,17 +12796,6 @@ __metadata:
languageName: node
linkType: hard
-"slice-ansi@npm:^2.1.0":
- version: 2.1.0
- resolution: "slice-ansi@npm:2.1.0"
- dependencies:
- ansi-styles: ^3.2.0
- astral-regex: ^1.0.0
- is-fullwidth-code-point: ^2.0.0
- checksum: 4e82995aa59cef7eb03ef232d73c2239a15efa0ace87a01f3012ebb942e963fbb05d448ce7391efcd52ab9c32724164aba2086f5143e0445c969221dde3b6b1e
- languageName: node
- linkType: hard
-
"slice-ansi@npm:^3.0.0":
version: 3.0.0
resolution: "slice-ansi@npm:3.0.0"
@@ -10881,13 +12973,6 @@ __metadata:
languageName: node
linkType: hard
-"sprintf-js@npm:~1.0.2":
- version: 1.0.3
- resolution: "sprintf-js@npm:1.0.3"
- checksum: 19d79aec211f09b99ec3099b5b2ae2f6e9cdefe50bc91ac4c69144b6d3928a640bb6ae5b3def70c2e85a2c3d9f5ec2719921e3a59d3ca3ef4b2fd1a4656a0df3
- languageName: node
- linkType: hard
-
"ssri@npm:^9.0.0":
version: 9.0.1
resolution: "ssri@npm:9.0.1"
@@ -10927,6 +13012,13 @@ __metadata:
languageName: node
linkType: hard
+"string-natural-compare@npm:^3.0.1":
+ version: 3.0.1
+ resolution: "string-natural-compare@npm:3.0.1"
+ checksum: 65910d9995074086e769a68728395effbba9b7186be5b4c16a7fad4f4ef50cae95ca16e3e9086e019cbb636ae8daac9c7b8fe91b5f21865c5c0f26e3c0725406
+ languageName: node
+ linkType: hard
+
"string-width@npm:^1.0.1":
version: 1.0.2
resolution: "string-width@npm:1.0.2"
@@ -10949,17 +13041,6 @@ __metadata:
languageName: node
linkType: hard
-"string-width@npm:^3.0.0":
- version: 3.1.0
- resolution: "string-width@npm:3.1.0"
- dependencies:
- emoji-regex: ^7.0.1
- is-fullwidth-code-point: ^2.0.0
- strip-ansi: ^5.1.0
- checksum: 57f7ca73d201682816d573dc68bd4bb8e1dff8dc9fcf10470fdfc3474135c97175fec12ea6a159e67339b41e86963112355b64529489af6e7e70f94a7caf08b2
- languageName: node
- linkType: hard
-
"string-width@npm:^5.0.0, string-width@npm:^5.0.1, string-width@npm:^5.1.2":
version: 5.1.2
resolution: "string-width@npm:5.1.2"
@@ -10971,19 +13052,20 @@ __metadata:
languageName: node
linkType: hard
-"string.prototype.matchall@npm:^4.0.2":
- version: 4.0.8
- resolution: "string.prototype.matchall@npm:4.0.8"
+"string.prototype.matchall@npm:^4.0.8":
+ version: 4.0.10
+ resolution: "string.prototype.matchall@npm:4.0.10"
dependencies:
call-bind: ^1.0.2
- define-properties: ^1.1.4
- es-abstract: ^1.20.4
- get-intrinsic: ^1.1.3
+ define-properties: ^1.2.0
+ es-abstract: ^1.22.1
+ get-intrinsic: ^1.2.1
has-symbols: ^1.0.3
- internal-slot: ^1.0.3
- regexp.prototype.flags: ^1.4.3
+ internal-slot: ^1.0.5
+ regexp.prototype.flags: ^1.5.0
+ set-function-name: ^2.0.0
side-channel: ^1.0.4
- checksum: 952da3a818de42ad1c10b576140a5e05b4de7b34b8d9dbf00c3ac8c1293e9c0f533613a39c5cda53e0a8221f2e710bc2150e730b1c2278d60004a8a35726efb6
+ checksum: 3c78bdeff39360c8e435d7c4c6ea19f454aa7a63eda95fa6fadc3a5b984446a2f9f2c02d5c94171ce22268a573524263fbd0c8edbe3ce2e9890d7cc036cdc3ed
languageName: node
linkType: hard
@@ -10998,6 +13080,17 @@ __metadata:
languageName: node
linkType: hard
+"string.prototype.trim@npm:^1.2.8":
+ version: 1.2.8
+ resolution: "string.prototype.trim@npm:1.2.8"
+ dependencies:
+ call-bind: ^1.0.2
+ define-properties: ^1.2.0
+ es-abstract: ^1.22.1
+ checksum: 49eb1a862a53aba73c3fb6c2a53f5463173cb1f4512374b623bcd6b43ad49dd559a06fb5789bdec771a40fc4d2a564411c0a75d35fb27e76bbe738c211ecff07
+ languageName: node
+ linkType: hard
+
"string.prototype.trimend@npm:^1.0.5":
version: 1.0.5
resolution: "string.prototype.trimend@npm:1.0.5"
@@ -11020,6 +13113,17 @@ __metadata:
languageName: node
linkType: hard
+"string.prototype.trimend@npm:^1.0.7":
+ version: 1.0.7
+ resolution: "string.prototype.trimend@npm:1.0.7"
+ dependencies:
+ call-bind: ^1.0.2
+ define-properties: ^1.2.0
+ es-abstract: ^1.22.1
+ checksum: 2375516272fd1ba75992f4c4aa88a7b5f3c7a9ca308d963bcd5645adf689eba6f8a04ebab80c33e30ec0aefc6554181a3a8416015c38da0aa118e60ec896310c
+ languageName: node
+ linkType: hard
+
"string.prototype.trimstart@npm:^1.0.5":
version: 1.0.5
resolution: "string.prototype.trimstart@npm:1.0.5"
@@ -11042,6 +13146,17 @@ __metadata:
languageName: node
linkType: hard
+"string.prototype.trimstart@npm:^1.0.7":
+ version: 1.0.7
+ resolution: "string.prototype.trimstart@npm:1.0.7"
+ dependencies:
+ call-bind: ^1.0.2
+ define-properties: ^1.2.0
+ es-abstract: ^1.22.1
+ checksum: 13d0c2cb0d5ff9e926fa0bec559158b062eed2b68cd5be777ffba782c96b2b492944e47057274e064549b94dd27cf81f48b27a31fee8af5b574cff253e7eb613
+ languageName: node
+ linkType: hard
+
"string_decoder@npm:^1.1.1":
version: 1.3.0
resolution: "string_decoder@npm:1.3.0"
@@ -11069,15 +13184,6 @@ __metadata:
languageName: node
linkType: hard
-"strip-ansi@npm:^5.1.0, strip-ansi@npm:^5.2.0":
- version: 5.2.0
- resolution: "strip-ansi@npm:5.2.0"
- dependencies:
- ansi-regex: ^4.1.0
- checksum: bdb5f76ade97062bd88e7723aa019adbfacdcba42223b19ccb528ffb9fb0b89a5be442c663c4a3fb25268eaa3f6ea19c7c3fbae830bd1562d55adccae1fcec46
- languageName: node
- linkType: hard
-
"strip-ansi@npm:^6.0.0, strip-ansi@npm:^6.0.1":
version: 6.0.1
resolution: "strip-ansi@npm:6.0.1"
@@ -11135,7 +13241,7 @@ __metadata:
languageName: node
linkType: hard
-"strip-json-comments@npm:^3.0.1":
+"strip-json-comments@npm:^3.1.1":
version: 3.1.1
resolution: "strip-json-comments@npm:3.1.1"
checksum: 492f73e27268f9b1c122733f28ecb0e7e8d8a531a6662efbd08e22cccb3f9475e90a1b82cab06a392f6afae6d2de636f977e231296400d0ec5304ba70f166443
@@ -11167,18 +13273,6 @@ __metadata:
languageName: node
linkType: hard
-"stylelint-config-prettier@npm:9.0.5":
- version: 9.0.5
- resolution: "stylelint-config-prettier@npm:9.0.5"
- peerDependencies:
- stylelint: ">= 11.x < 15"
- bin:
- stylelint-config-prettier: bin/check.js
- stylelint-config-prettier-check: bin/check.js
- checksum: 3d04e463e0bb7e42a5ddec49eea6ef4ea07705d887e8a3ff1fcb82278a5e2bec1a36b8498ea7ed2d24878de29d7c94ac75b1d3ac4f8b19c3a84970595b29261f
- languageName: node
- linkType: hard
-
"stylelint-order@npm:^5.0.0":
version: 5.0.0
resolution: "stylelint-order@npm:5.0.0"
@@ -11191,35 +13285,35 @@ __metadata:
languageName: node
linkType: hard
-"stylelint-prettier@npm:4.0.0":
- version: 4.0.0
- resolution: "stylelint-prettier@npm:4.0.0"
+"stylelint-prettier@npm:4.0.2":
+ version: 4.0.2
+ resolution: "stylelint-prettier@npm:4.0.2"
dependencies:
prettier-linter-helpers: ^1.0.0
peerDependencies:
prettier: ">=3.0.0"
stylelint: ">=15.8.0"
- checksum: 3e7cff833e30b1eab9ae6e82f1b0a3596fd3dd214489d71d37b0899e677ae9d50cc74c4c1bbb3b1275903f03c1401b2ca6f8c1cf2631108363d3e7845d7b6300
+ checksum: b60112c10b8f31456211d65b4c17238fdaf46ee9f80ab035621f2eb86b47505a4b9582d99f4334dfe370cc8104de870f7fcc256737d0f2e68f4357239f739054
languageName: node
linkType: hard
-"stylelint@npm:15.10.2":
- version: 15.10.2
- resolution: "stylelint@npm:15.10.2"
+"stylelint@npm:15.11.0":
+ version: 15.11.0
+ resolution: "stylelint@npm:15.11.0"
dependencies:
- "@csstools/css-parser-algorithms": ^2.3.0
- "@csstools/css-tokenizer": ^2.1.1
- "@csstools/media-query-list-parser": ^2.1.2
+ "@csstools/css-parser-algorithms": ^2.3.1
+ "@csstools/css-tokenizer": ^2.2.0
+ "@csstools/media-query-list-parser": ^2.1.4
"@csstools/selector-specificity": ^3.0.0
balanced-match: ^2.0.0
colord: ^2.9.3
cosmiconfig: ^8.2.0
- css-functions-list: ^3.2.0
+ css-functions-list: ^3.2.1
css-tree: ^2.3.1
debug: ^4.3.4
- fast-glob: ^3.3.0
+ fast-glob: ^3.3.1
fastest-levenshtein: ^1.0.16
- file-entry-cache: ^6.0.1
+ file-entry-cache: ^7.0.0
global-modules: ^2.0.0
globby: ^11.1.0
globjoin: ^0.1.4
@@ -11228,13 +13322,13 @@ __metadata:
import-lazy: ^4.0.0
imurmurhash: ^0.1.4
is-plain-object: ^5.0.0
- known-css-properties: ^0.27.0
+ known-css-properties: ^0.29.0
mathml-tag-names: ^2.1.3
meow: ^10.1.5
micromatch: ^4.0.5
normalize-path: ^3.0.0
picocolors: ^1.0.0
- postcss: ^8.4.25
+ postcss: ^8.4.28
postcss-resolve-nested-selector: ^0.1.1
postcss-safe-parser: ^6.0.0
postcss-selector-parser: ^6.0.13
@@ -11249,7 +13343,7 @@ __metadata:
write-file-atomic: ^5.0.1
bin:
stylelint: bin/stylelint.mjs
- checksum: 1a7dc0385bddc604f6633340dd3eb58dfc8860e677576d7ad688a94064140d73fd70ea21038994a9f8884457098ee297ce625bbddd9477cde35faa4bf7aff848
+ checksum: 9835f8a3e3976a3b81a35569d08f5f4a9c3b5cff415f1345a505870afc0c3231acff27f119d937c5bb11fdbc98d554af564c2a648a52604280a59a11974fcbfc
languageName: node
linkType: hard
@@ -11331,15 +13425,13 @@ __metadata:
languageName: node
linkType: hard
-"table@npm:^5.2.3":
- version: 5.4.6
- resolution: "table@npm:5.4.6"
+"synckit@npm:^0.8.5":
+ version: 0.8.5
+ resolution: "synckit@npm:0.8.5"
dependencies:
- ajv: ^6.10.2
- lodash: ^4.17.14
- slice-ansi: ^2.1.0
- string-width: ^3.0.0
- checksum: 9e35d3efa788edc17237eef8852f8e4b9178efd65a7d115141777b2ee77df4b7796c05f4ed3712d858f98894ac5935a481ceeb6dcb9895e2f67a61cce0e63b6c
+ "@pkgr/utils": ^2.3.1
+ tslib: ^2.5.0
+ checksum: 8a9560e5d8f3d94dc3cf5f7b9c83490ffa30d320093560a37b88f59483040771fd1750e76b9939abfbb1b5a23fd6dfbae77f6b338abffe7cae7329cd9b9bb86b
languageName: node
linkType: hard
@@ -11526,7 +13618,19 @@ __metadata:
languageName: node
linkType: hard
-"tslib@npm:^1.9.0, tslib@npm:^1.9.3":
+"tsconfig-paths@npm:^3.14.2":
+ version: 3.14.2
+ resolution: "tsconfig-paths@npm:3.14.2"
+ dependencies:
+ "@types/json5": ^0.0.29
+ json5: ^1.0.2
+ minimist: ^1.2.6
+ strip-bom: ^3.0.0
+ checksum: a6162eaa1aed680537f93621b82399c7856afd10ec299867b13a0675e981acac4e0ec00896860480efc59fc10fd0b16fdc928c0b885865b52be62cadac692447
+ languageName: node
+ linkType: hard
+
+"tslib@npm:^1.8.1, tslib@npm:^1.9.3":
version: 1.14.1
resolution: "tslib@npm:1.14.1"
checksum: dbe628ef87f66691d5d2959b3e41b9ca0045c3ee3c7c7b906cc1e328b39f199bb1ad9e671c39025bd56122ac57dfbf7385a94843b1cc07c60a4db74795829acd
@@ -11547,6 +13651,24 @@ __metadata:
languageName: node
linkType: hard
+"tslib@npm:^2.5.0, tslib@npm:^2.6.0":
+ version: 2.6.2
+ resolution: "tslib@npm:2.6.2"
+ checksum: 329ea56123005922f39642318e3d1f0f8265d1e7fcb92c633e0809521da75eeaca28d2cf96d7248229deb40e5c19adf408259f4b9640afd20d13aecc1430f3ad
+ languageName: node
+ linkType: hard
+
+"tsutils@npm:^3.21.0":
+ version: 3.21.0
+ resolution: "tsutils@npm:3.21.0"
+ dependencies:
+ tslib: ^1.8.1
+ peerDependencies:
+ typescript: ">=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta"
+ checksum: 1843f4c1b2e0f975e08c4c21caa4af4f7f65a12ac1b81b3b8489366826259323feb3fc7a243123453d2d1a02314205a7634e048d4a8009921da19f99755cdc48
+ languageName: node
+ linkType: hard
+
"tunnel-agent@npm:^0.6.0":
version: 0.6.0
resolution: "tunnel-agent@npm:0.6.0"
@@ -11556,12 +13678,12 @@ __metadata:
languageName: node
linkType: hard
-"type-check@npm:~0.3.2":
- version: 0.3.2
- resolution: "type-check@npm:0.3.2"
+"type-check@npm:^0.4.0, type-check@npm:~0.4.0":
+ version: 0.4.0
+ resolution: "type-check@npm:0.4.0"
dependencies:
- prelude-ls: ~1.1.2
- checksum: dd3b1495642731bc0e1fc40abe5e977e0263005551ac83342ecb6f4f89551d106b368ec32ad3fb2da19b3bd7b2d1f64330da2ea9176d8ddbfe389fb286eb5124
+ prelude-ls: ^1.2.1
+ checksum: ec688ebfc9c45d0c30412e41ca9c0cdbd704580eb3a9ccf07b9b576094d7b86a012baebc95681999dd38f4f444afd28504cb3a89f2ef16b31d4ab61a0739025a
languageName: node
linkType: hard
@@ -11572,6 +13694,13 @@ __metadata:
languageName: node
linkType: hard
+"type-fest@npm:^0.20.2":
+ version: 0.20.2
+ resolution: "type-fest@npm:0.20.2"
+ checksum: 4fb3272df21ad1c552486f8a2f8e115c09a521ad7a8db3d56d53718d0c907b62c6e9141ba5f584af3f6830d0872c521357e512381f24f7c44acae583ad517d73
+ languageName: node
+ linkType: hard
+
"type-fest@npm:^0.21.3":
version: 0.21.3
resolution: "type-fest@npm:0.21.3"
@@ -11607,6 +13736,42 @@ __metadata:
languageName: node
linkType: hard
+"typed-array-buffer@npm:^1.0.0":
+ version: 1.0.0
+ resolution: "typed-array-buffer@npm:1.0.0"
+ dependencies:
+ call-bind: ^1.0.2
+ get-intrinsic: ^1.2.1
+ is-typed-array: ^1.1.10
+ checksum: 3e0281c79b2a40cd97fe715db803884301993f4e8c18e8d79d75fd18f796e8cd203310fec8c7fdb5e6c09bedf0af4f6ab8b75eb3d3a85da69328f28a80456bd3
+ languageName: node
+ linkType: hard
+
+"typed-array-byte-length@npm:^1.0.0":
+ version: 1.0.0
+ resolution: "typed-array-byte-length@npm:1.0.0"
+ dependencies:
+ call-bind: ^1.0.2
+ for-each: ^0.3.3
+ has-proto: ^1.0.1
+ is-typed-array: ^1.1.10
+ checksum: b03db16458322b263d87a702ff25388293f1356326c8a678d7515767ef563ef80e1e67ce648b821ec13178dd628eb2afdc19f97001ceae7a31acf674c849af94
+ languageName: node
+ linkType: hard
+
+"typed-array-byte-offset@npm:^1.0.0":
+ version: 1.0.0
+ resolution: "typed-array-byte-offset@npm:1.0.0"
+ dependencies:
+ available-typed-arrays: ^1.0.5
+ call-bind: ^1.0.2
+ for-each: ^0.3.3
+ has-proto: ^1.0.1
+ is-typed-array: ^1.1.10
+ checksum: 04f6f02d0e9a948a95fbfe0d5a70b002191fae0b8fe0fe3130a9b2336f043daf7a3dda56a31333c35a067a97e13f539949ab261ca0f3692c41603a46a94e960b
+ languageName: node
+ linkType: hard
+
"typed-array-length@npm:^1.0.4":
version: 1.0.4
resolution: "typed-array-length@npm:1.0.4"
@@ -11727,6 +13892,13 @@ __metadata:
languageName: node
linkType: hard
+"unicode-match-property-value-ecmascript@npm:^2.1.0":
+ version: 2.1.0
+ resolution: "unicode-match-property-value-ecmascript@npm:2.1.0"
+ checksum: 8d6f5f586b9ce1ed0e84a37df6b42fdba1317a05b5df0c249962bd5da89528771e2d149837cad11aa26bcb84c35355cb9f58a10c3d41fa3b899181ece6c85220
+ languageName: node
+ linkType: hard
+
"unicode-property-aliases-ecmascript@npm:^2.0.0":
version: 2.1.0
resolution: "unicode-property-aliases-ecmascript@npm:2.1.0"
@@ -11789,6 +13961,20 @@ __metadata:
languageName: node
linkType: hard
+"update-browserslist-db@npm:^1.0.13":
+ version: 1.0.13
+ resolution: "update-browserslist-db@npm:1.0.13"
+ dependencies:
+ escalade: ^3.1.1
+ picocolors: ^1.0.0
+ peerDependencies:
+ browserslist: ">= 4.21.0"
+ bin:
+ update-browserslist-db: cli.js
+ checksum: 1e47d80182ab6e4ad35396ad8b61008ae2a1330221175d0abd37689658bdb61af9b705bfc41057fd16682474d79944fb2d86767c5ed5ae34b6276b9bed353322
+ languageName: node
+ linkType: hard
+
"update-browserslist-db@npm:^1.0.9":
version: 1.0.9
resolution: "update-browserslist-db@npm:1.0.9"
@@ -11895,13 +14081,6 @@ __metadata:
languageName: node
linkType: hard
-"v8-compile-cache@npm:^2.0.3":
- version: 2.3.0
- resolution: "v8-compile-cache@npm:2.3.0"
- checksum: adb0a271eaa2297f2f4c536acbfee872d0dd26ec2d76f66921aa7fc437319132773483344207bdbeee169225f4739016d8d2dbf0553913a52bb34da6d0334f8e
- languageName: node
- linkType: hard
-
"validate-npm-package-license@npm:^3.0.1":
version: 3.0.4
resolution: "validate-npm-package-license@npm:3.0.4"
@@ -12174,6 +14353,51 @@ __metadata:
languageName: node
linkType: hard
+"which-builtin-type@npm:^1.1.3":
+ version: 1.1.3
+ resolution: "which-builtin-type@npm:1.1.3"
+ dependencies:
+ function.prototype.name: ^1.1.5
+ has-tostringtag: ^1.0.0
+ is-async-function: ^2.0.0
+ is-date-object: ^1.0.5
+ is-finalizationregistry: ^1.0.2
+ is-generator-function: ^1.0.10
+ is-regex: ^1.1.4
+ is-weakref: ^1.0.2
+ isarray: ^2.0.5
+ which-boxed-primitive: ^1.0.2
+ which-collection: ^1.0.1
+ which-typed-array: ^1.1.9
+ checksum: 43730f7d8660ff9e33d1d3f9f9451c4784265ee7bf222babc35e61674a11a08e1c2925019d6c03154fcaaca4541df43abe35d2720843b9b4cbcebdcc31408f36
+ languageName: node
+ linkType: hard
+
+"which-collection@npm:^1.0.1":
+ version: 1.0.1
+ resolution: "which-collection@npm:1.0.1"
+ dependencies:
+ is-map: ^2.0.1
+ is-set: ^2.0.1
+ is-weakmap: ^2.0.1
+ is-weakset: ^2.0.1
+ checksum: c815bbd163107ef9cb84f135e6f34453eaf4cca994e7ba85ddb0d27cea724c623fae2a473ceccfd5549c53cc65a5d82692de418166df3f858e1e5dc60818581c
+ languageName: node
+ linkType: hard
+
+"which-typed-array@npm:^1.1.11, which-typed-array@npm:^1.1.13":
+ version: 1.1.13
+ resolution: "which-typed-array@npm:1.1.13"
+ dependencies:
+ available-typed-arrays: ^1.0.5
+ call-bind: ^1.0.4
+ for-each: ^0.3.3
+ gopd: ^1.0.1
+ has-tostringtag: ^1.0.0
+ checksum: 3828a0d5d72c800e369d447e54c7620742a4cc0c9baf1b5e8c17e9b6ff90d8d861a3a6dd4800f1953dbf80e5e5cec954a289e5b4a223e3bee4aeb1f8c5f33309
+ languageName: node
+ linkType: hard
+
"which-typed-array@npm:^1.1.9":
version: 1.1.9
resolution: "which-typed-array@npm:1.1.9"
@@ -12188,7 +14412,7 @@ __metadata:
languageName: node
linkType: hard
-"which@npm:^1.2.9, which@npm:^1.3.1":
+"which@npm:^1.3.1":
version: 1.3.1
resolution: "which@npm:1.3.1"
dependencies:
@@ -12244,13 +14468,6 @@ __metadata:
languageName: node
linkType: hard
-"word-wrap@npm:~1.2.3":
- version: 1.2.4
- resolution: "word-wrap@npm:1.2.4"
- checksum: 8f1f2e0a397c0e074ca225ba9f67baa23f99293bc064e31355d426ae91b8b3f6b5f6c1fc9ae5e9141178bb362d563f55e62fd8d5c31f2a77e3ade56cb3e35bd1
- languageName: node
- linkType: hard
-
"wordwrap@npm:^1.0.0":
version: 1.0.0
resolution: "wordwrap@npm:1.0.0"
@@ -12320,15 +14537,6 @@ __metadata:
languageName: node
linkType: hard
-"write@npm:1.0.3":
- version: 1.0.3
- resolution: "write@npm:1.0.3"
- dependencies:
- mkdirp: ^0.5.1
- checksum: 6496197ceb2d6faeeb8b5fe2659ca804e801e4989dff9fb8a66fe76179ce4ccc378c982ef906733caea1220c8dbe05a666d82127959ac4456e70111af8b8df73
- languageName: node
- linkType: hard
-
"xdg-basedir@npm:^5.0.1, xdg-basedir@npm:^5.1.0":
version: 5.1.0
resolution: "xdg-basedir@npm:5.1.0"
@@ -12353,15 +14561,6 @@ __metadata:
languageName: node
linkType: hard
-"xregexp@npm:^4.3.0":
- version: 4.4.1
- resolution: "xregexp@npm:4.4.1"
- dependencies:
- "@babel/runtime-corejs3": ^7.12.1
- checksum: 134d70116655f0de90725a0d2aaf73b2a69f8b4cd7f1908e394c7ff4de53819a0a2d9595e1722d71334a33d9392071b1f983f5954c57d83ab3e451116d9f8499
- languageName: node
- linkType: hard
-
"xtend@npm:~4.0.1":
version: 4.0.2
resolution: "xtend@npm:4.0.2"
@@ -12376,6 +14575,13 @@ __metadata:
languageName: node
linkType: hard
+"yallist@npm:^3.0.2":
+ version: 3.1.1
+ resolution: "yallist@npm:3.1.1"
+ checksum: 48f7bb00dc19fc635a13a39fe547f527b10c9290e7b3e836b9a8f1ca04d4d342e85714416b3c2ab74949c9c66f9cebb0473e6bc353b79035356103b47641285d
+ languageName: node
+ linkType: hard
+
"yallist@npm:^4.0.0":
version: 4.0.0
resolution: "yallist@npm:4.0.0"
@@ -12397,6 +14603,13 @@ __metadata:
languageName: node
linkType: hard
+"yaml@npm:^2.3.4":
+ version: 2.3.4
+ resolution: "yaml@npm:2.3.4"
+ checksum: e6d1dae1c6383bcc8ba11796eef3b8c02d5082911c6723efeeb5ba50fc8e881df18d645e64de68e421b577296000bea9c75d6d9097c2f6699da3ae0406c030d8
+ languageName: node
+ linkType: hard
+
"yargs-parser@npm:21.1.1, yargs-parser@npm:^21.1.1":
version: 21.1.1
resolution: "yargs-parser@npm:21.1.1"
From a7aa9a6dff9f420bceef34809c2f7e23da883bcd Mon Sep 17 00:00:00 2001
From: Piero Nicolli
Date: Wed, 22 Nov 2023 12:59:50 +0100
Subject: [PATCH 08/19] chore: fix babel-eslint
---
.eslintrc.js | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/.eslintrc.js b/.eslintrc.js
index 5a129e9ee..884b00042 100644
--- a/.eslintrc.js
+++ b/.eslintrc.js
@@ -8,7 +8,7 @@ module.exports = {
mocha: true,
jasmine: true,
},
- parser: 'babel-eslint',
+ parser: '@babel/eslint-parser',
parserOptions: {
ecmaVersion: 6,
sourceType: 'module',
From 69f1a4243d13c077a0b0b469ce1de50a17527b95 Mon Sep 17 00:00:00 2001
From: sabrina-bongiovanni
<116291154+sabrina-bongiovanni@users.noreply.github.com>
Date: Thu, 23 Nov 2023 11:02:57 +0100
Subject: [PATCH 09/19] fix: error in search blocks with service-link
lighthouse id (#417)
* fix: added optional chaining to service-link parameter conditions
* chore: added release.md info
---
RELEASE.md | 6 ++++++
.../volto/components/manage/Blocks/Listing/ListingBody.jsx | 4 ++--
2 files changed, 8 insertions(+), 2 deletions(-)
diff --git a/RELEASE.md b/RELEASE.md
index 2e44c3a10..d8cb9af38 100644
--- a/RELEASE.md
+++ b/RELEASE.md
@@ -41,6 +41,12 @@
- ...
-->
+## Versione X.X.X (dd/mm/yyyy)
+
+### Fix
+
+- Sistemato errore quando viene impostato "service-link" come ID lighthouse.
+
## Versione 10.4.1 (21/11/2023)
### Migliorie
diff --git a/src/customizations/volto/components/manage/Blocks/Listing/ListingBody.jsx b/src/customizations/volto/components/manage/Blocks/Listing/ListingBody.jsx
index f63b9bafc..c9c980914 100644
--- a/src/customizations/volto/components/manage/Blocks/Listing/ListingBody.jsx
+++ b/src/customizations/volto/components/manage/Blocks/Listing/ListingBody.jsx
@@ -97,8 +97,8 @@ const ListingBody = React.memo(
// Need to know if data-element is "service-link"
// to add data-element="pager-link" to pagination links
const isServiceLink =
- data.id_lighthouse === 'service-link' ||
- variation.id_lighthouse === 'service-link';
+ data?.id_lighthouse === 'service-link' ||
+ variation?.id_lighthouse === 'service-link';
return (
From 6260983016622af038d84d0f2efd3c9e13d2fbcf Mon Sep 17 00:00:00 2001
From: Sara Bianchi <43245702+SaraBianchi@users.noreply.github.com>
Date: Thu, 23 Nov 2023 11:38:45 +0100
Subject: [PATCH 10/19] fix: a11y of listing block read-more with
card-slide-text template (#415)
Co-authored-by: Piero Nicolli
---
RELEASE.md | 1 +
.../Listing/CardWithSlideUpTextTemplate.jsx | 18 ++++++++----------
.../Blocks/_cardWithSlideUpTextTemplate.scss | 5 +++--
3 files changed, 12 insertions(+), 12 deletions(-)
diff --git a/RELEASE.md b/RELEASE.md
index d8cb9af38..f009a8acf 100644
--- a/RELEASE.md
+++ b/RELEASE.md
@@ -45,6 +45,7 @@
### Fix
+- Sistemata accessibilità del read-more nel blocco elenco con variazione "Card con testo animato" quando si è in un sottosito con uno stile applicato.
- Sistemato errore quando viene impostato "service-link" come ID lighthouse.
## Versione 10.4.1 (21/11/2023)
diff --git a/src/components/ItaliaTheme/Blocks/Listing/CardWithSlideUpTextTemplate.jsx b/src/components/ItaliaTheme/Blocks/Listing/CardWithSlideUpTextTemplate.jsx
index f933d2203..4563dc1ac 100644
--- a/src/components/ItaliaTheme/Blocks/Listing/CardWithSlideUpTextTemplate.jsx
+++ b/src/components/ItaliaTheme/Blocks/Listing/CardWithSlideUpTextTemplate.jsx
@@ -93,16 +93,14 @@ const CardWithSlideUpTextTemplate = (props) => {
{show_description && item.description && (
{item.description}
)}
-
-
-
+
);
diff --git a/src/theme/ItaliaTheme/Blocks/_cardWithSlideUpTextTemplate.scss b/src/theme/ItaliaTheme/Blocks/_cardWithSlideUpTextTemplate.scss
index 35ac87f97..cb9919fd0 100644
--- a/src/theme/ItaliaTheme/Blocks/_cardWithSlideUpTextTemplate.scss
+++ b/src/theme/ItaliaTheme/Blocks/_cardWithSlideUpTextTemplate.scss
@@ -77,8 +77,9 @@
}
}
- .read-more a,
- .read-more a .icon {
+ a.read-more,
+ a.read-more .text + .icon,
+ a.read-more .text {
color: #fff;
fill: #fff;
text-decoration: none;
From a36a8b8b1be250a27fa48316bf514d43f2aac9b7 Mon Sep 17 00:00:00 2001
From: sabrina-bongiovanni
<116291154+sabrina-bongiovanni@users.noreply.github.com>
Date: Thu, 23 Nov 2023 11:44:37 +0100
Subject: [PATCH 11/19] fix: changed layout of readMore component to avoid
overlapping (#411)
* fix: changed layout of readMore component to avoid overlapping
* fix: removed unnecessary styles
* chore: added RELEASE.md info
---------
Co-authored-by: Piero Nicolli
---
RELEASE.md | 1 +
src/theme/ItaliaTheme/Blocks/_bandiInEvidenceTemplate.scss | 6 +++++-
2 files changed, 6 insertions(+), 1 deletion(-)
diff --git a/RELEASE.md b/RELEASE.md
index f009a8acf..6540197c0 100644
--- a/RELEASE.md
+++ b/RELEASE.md
@@ -45,6 +45,7 @@
### Fix
+- Sistemato il layout della card nella variazione Bandi del Blocco Elenco per la modalità tablet
- Sistemata accessibilità del read-more nel blocco elenco con variazione "Card con testo animato" quando si è in un sottosito con uno stile applicato.
- Sistemato errore quando viene impostato "service-link" come ID lighthouse.
diff --git a/src/theme/ItaliaTheme/Blocks/_bandiInEvidenceTemplate.scss b/src/theme/ItaliaTheme/Blocks/_bandiInEvidenceTemplate.scss
index 534bf00b5..d030eef3a 100644
--- a/src/theme/ItaliaTheme/Blocks/_bandiInEvidenceTemplate.scss
+++ b/src/theme/ItaliaTheme/Blocks/_bandiInEvidenceTemplate.scss
@@ -51,9 +51,13 @@
}
// tablet
- @media (max-width: 1367px) and (min-width: 586px) {
+ @media (min-width: 586px) and (max-width: 1367px) {
.bandi-in-evidence-cards-wrapper {
grid-template-columns: auto auto;
+
+ div.read-more a.read-more {
+ flex-direction: row;
+ }
}
}
From 603c65d1de43952d7a1936127ea043d8a631a8b3 Mon Sep 17 00:00:00 2001
From: Piero Nicolli
Date: Thu, 23 Nov 2023 11:48:42 +0100
Subject: [PATCH 12/19] docs: updated publiccode and release log
---
RELEASE.md | 2 +-
publiccode.yml | 4 ++--
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/RELEASE.md b/RELEASE.md
index 6540197c0..ecc8294da 100644
--- a/RELEASE.md
+++ b/RELEASE.md
@@ -41,7 +41,7 @@
- ...
-->
-## Versione X.X.X (dd/mm/yyyy)
+## Versione 10.4.2 (23/11/2023)
### Fix
diff --git a/publiccode.yml b/publiccode.yml
index 38084d85c..2e020ba6f 100644
--- a/publiccode.yml
+++ b/publiccode.yml
@@ -227,9 +227,9 @@ maintenance:
name: io-Comune - Il sito AgID per Comuni ed Enti Pubblici
platforms:
- web
-releaseDate: '2023-11-21'
+releaseDate: '2023-11-23'
softwareType: standalone/web
-softwareVersion: 10.4.1
+softwareVersion: 10.4.2
url: 'https://github.com/italia/design-comuni-plone-theme'
usedBy:
- ASP Comuni Modenesi Area Nord
From b7f87139d12ddeffcdcfcaaad730f46b64271cc2 Mon Sep 17 00:00:00 2001
From: Piero Nicolli
Date: Thu, 23 Nov 2023 11:51:17 +0100
Subject: [PATCH 13/19] chore: release v10.4.2
---
CHANGELOG.md | 20 ++++++++++++++++++++
package.json | 2 +-
2 files changed, 21 insertions(+), 1 deletion(-)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 9ca29090c..f66a22dcb 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,25 @@
+## [10.4.2](https://github.com/RedTurtle/design-comuni-plone-theme/compare/v10.4.1...v10.4.2) (2023-11-23)
+
+
+### Bug Fixes
+
+* a11y of listing block read-more with card-slide-text template ([#415](https://github.com/RedTurtle/design-comuni-plone-theme/issues/415)) ([6260983](https://github.com/RedTurtle/design-comuni-plone-theme/commit/6260983016622af038d84d0f2efd3c9e13d2fbcf))
+* changed layout of readMore component to avoid overlapping ([#411](https://github.com/RedTurtle/design-comuni-plone-theme/issues/411)) ([a36a8b8](https://github.com/RedTurtle/design-comuni-plone-theme/commit/a36a8b8b1be250a27fa48316bf514d43f2aac9b7))
+* error in search blocks with service-link lighthouse id ([#417](https://github.com/RedTurtle/design-comuni-plone-theme/issues/417)) ([69f1a42](https://github.com/RedTurtle/design-comuni-plone-theme/commit/69f1a4243d13c077a0b0b469ce1de50a17527b95))
+
+
+### Maintenance
+
+* fix babel-eslint ([a7aa9a6](https://github.com/RedTurtle/design-comuni-plone-theme/commit/a7aa9a6dff9f420bceef34809c2f7e23da883bcd))
+* upgrade linters ([9d8f13a](https://github.com/RedTurtle/design-comuni-plone-theme/commit/9d8f13a34d82fb6cc9ce68f0881a46ffd8803eca))
+
+
+### Documentation
+
+* updated publiccode and release log ([603c65d](https://github.com/RedTurtle/design-comuni-plone-theme/commit/603c65d1de43952d7a1936127ea043d8a631a8b3))
+
## [10.4.1](https://github.com/RedTurtle/design-comuni-plone-theme/compare/v10.4.0...v10.4.1) (2023-11-21)
diff --git a/package.json b/package.json
index 1ea0d730f..cb675ec4d 100644
--- a/package.json
+++ b/package.json
@@ -2,7 +2,7 @@
"name": "design-comuni-plone-theme",
"description": "Volto Theme for Italia design guidelines",
"license": "GPL-v3",
- "version": "10.4.1",
+ "version": "10.4.2",
"main": "src/index.js",
"keywords": [
"volto-addon",
From 52da0c73f67c8bb09b225e19a6535cd6a9613602 Mon Sep 17 00:00:00 2001
From: Sara Bianchi <43245702+SaraBianchi@users.noreply.github.com>
Date: Fri, 24 Nov 2023 17:10:59 +0100
Subject: [PATCH 14/19] fix: a11y of feedback form (#418)
* fix: fixed a11y of customer satisfaction form
* fix: fixed form role
---
RELEASE.md | 7 +++++++
.../CustomerSatisfaction/FeedbackForm.jsx | 2 +-
.../CustomerSatisfaction/Steps/AnswersStep.jsx | 16 ++++++++--------
.../Components/_customerSatisfaction.scss | 13 +++++++++++++
4 files changed, 29 insertions(+), 9 deletions(-)
diff --git a/RELEASE.md b/RELEASE.md
index ecc8294da..e4e53f6be 100644
--- a/RELEASE.md
+++ b/RELEASE.md
@@ -41,6 +41,13 @@
- ...
-->
+## Versione X.X.X (dd/mm/yyyy)
+
+### Fix
+
+- Migliorata l'accessibilità della form di valutazione del sito Customer Satisfaction
+
+
## Versione 10.4.2 (23/11/2023)
### Fix
diff --git a/src/components/ItaliaTheme/CustomerSatisfaction/FeedbackForm.jsx b/src/components/ItaliaTheme/CustomerSatisfaction/FeedbackForm.jsx
index 21a2e925c..2dbed26bf 100644
--- a/src/components/ItaliaTheme/CustomerSatisfaction/FeedbackForm.jsx
+++ b/src/components/ItaliaTheme/CustomerSatisfaction/FeedbackForm.jsx
@@ -214,7 +214,7 @@ const FeedbackForm = ({ contentType, pathname }) => {
-
+
(