diff --git a/frontend/packages/kitconcept-core/news/+dragDropFolderContent.feature b/frontend/packages/kitconcept-core/news/+dragDropFolderContent.feature
new file mode 100644
index 00000000..ca107bb3
--- /dev/null
+++ b/frontend/packages/kitconcept-core/news/+dragDropFolderContent.feature
@@ -0,0 +1 @@
+Add feature of drag and drop files in folder contents @Tishasoumya-02
\ No newline at end of file
diff --git a/frontend/packages/kitconcept-core/src/components/Contents/Contents.jsx b/frontend/packages/kitconcept-core/src/components/Contents/Contents.jsx
new file mode 100644
index 00000000..c14c670c
--- /dev/null
+++ b/frontend/packages/kitconcept-core/src/components/Contents/Contents.jsx
@@ -0,0 +1,2006 @@
+import React, { Component } from 'react';
+import PropTypes from 'prop-types';
+import { connect } from 'react-redux';
+import { compose } from 'redux';
+import { createPortal } from 'react-dom';
+import { Link } from 'react-router-dom';
+import {
+ Button,
+ Container as SemanticContainer,
+ Divider,
+ Dropdown,
+ Menu,
+ Input,
+ Segment,
+ Table,
+ Loader,
+ Dimmer,
+} from 'semantic-ui-react';
+import concat from 'lodash/concat';
+import filter from 'lodash/filter';
+import find from 'lodash/find';
+import indexOf from 'lodash/indexOf';
+import keys from 'lodash/keys';
+import map from 'lodash/map';
+import mapValues from 'lodash/mapValues';
+import pull from 'lodash/pull';
+import move from 'lodash-move';
+import { FormattedMessage, defineMessages, injectIntl } from 'react-intl';
+import { asyncConnect } from '@plone/volto/helpers/AsyncConnect';
+import { getBaseUrl } from '@plone/volto/helpers/Url/Url';
+
+import { searchContent } from '@plone/volto/actions/search/search';
+import {
+ deleteContent,
+ orderContent,
+ sortContent,
+ updateColumnsContent,
+ getContent,
+} from '@plone/volto/actions/content/content';
+import {
+ copyContent,
+ moveContent,
+ cut,
+ copy,
+} from '@plone/volto/actions/clipboard/clipboard';
+import { listActions } from '@plone/volto/actions/actions/actions';
+import Indexes, { defaultIndexes } from '@plone/volto/constants/Indexes';
+import Pagination from '@plone/volto/components/theme/Pagination/Pagination';
+import Popup from '@plone/volto/components/theme/Popup/Popup';
+import Toolbar from '@plone/volto/components/manage/Toolbar/Toolbar';
+import Toast from '@plone/volto/components/manage/Toast/Toast';
+import Icon from '@plone/volto/components/theme/Icon/Icon';
+import Unauthorized from '@plone/volto/components/theme/Unauthorized/Unauthorized';
+import ContentsBreadcrumbs from '@plone/volto/components/manage/Contents/ContentsBreadcrumbs';
+import ContentsIndexHeader from '@plone/volto/components/manage/Contents/ContentsIndexHeader';
+import ContentsItem from '@plone/volto/components/manage/Contents/ContentsItem';
+import { ContentsRenameModal } from '@plone/volto/components/manage/Contents';
+import ContentsUploadModal from '@plone/volto/components/manage/Contents/ContentsUploadModal';
+import ContentsDeleteModal from '@plone/volto/components/manage/Contents/ContentsDeleteModal';
+import ContentsWorkflowModal from '@plone/volto/components/manage/Contents/ContentsWorkflowModal';
+import ContentsTagsModal from '@plone/volto/components/manage/Contents/ContentsTagsModal';
+import ContentsPropertiesModal from '@plone/volto/components/manage/Contents/ContentsPropertiesModal';
+
+import Helmet from '@plone/volto/helpers/Helmet/Helmet';
+import { injectLazyLibs } from '@plone/volto/helpers/Loadable/Loadable';
+import config from '@plone/volto/registry';
+
+import backSVG from '@plone/volto/icons/back.svg';
+import cutSVG from '@plone/volto/icons/cut.svg';
+import deleteSVG from '@plone/volto/icons/delete.svg';
+import copySVG from '@plone/volto/icons/copy.svg';
+import tagSVG from '@plone/volto/icons/tag.svg';
+import renameSVG from '@plone/volto/icons/rename.svg';
+import semaphoreSVG from '@plone/volto/icons/semaphore.svg';
+import uploadSVG from '@plone/volto/icons/upload.svg';
+import propertiesSVG from '@plone/volto/icons/properties.svg';
+import pasteSVG from '@plone/volto/icons/paste.svg';
+import zoomSVG from '@plone/volto/icons/zoom.svg';
+import checkboxUncheckedSVG from '@plone/volto/icons/checkbox-unchecked.svg';
+import checkboxCheckedSVG from '@plone/volto/icons/checkbox-checked.svg';
+import checkboxIndeterminateSVG from '@plone/volto/icons/checkbox-indeterminate.svg';
+import configurationSVG from '@plone/volto/icons/configuration-app.svg';
+import sortDownSVG from '@plone/volto/icons/sort-down.svg';
+import sortUpSVG from '@plone/volto/icons/sort-up.svg';
+import downKeySVG from '@plone/volto/icons/down-key.svg';
+import moreSVG from '@plone/volto/icons/more.svg';
+import clearSVG from '@plone/volto/icons/clear.svg';
+import DropzoneContent from './DropZoneContent';
+
+const messages = defineMessages({
+ back: {
+ id: 'Back',
+ defaultMessage: 'Back',
+ },
+ contents: {
+ id: 'Contents',
+ defaultMessage: 'Contents',
+ },
+ copy: {
+ id: 'Copy',
+ defaultMessage: 'Copy',
+ },
+ cut: {
+ id: 'Cut',
+ defaultMessage: 'Cut',
+ },
+ error: {
+ id: "You can't paste this content here",
+ defaultMessage: "You can't paste this content here",
+ },
+ delete: {
+ id: 'Delete',
+ defaultMessage: 'Delete',
+ },
+ deleteError: {
+ id: 'The item could not be deleted.',
+ defaultMessage: 'The item could not be deleted.',
+ },
+ loading: {
+ id: 'loading',
+ defaultMessage: 'Loading',
+ },
+ home: {
+ id: 'Home',
+ defaultMessage: 'Home',
+ },
+ filter: {
+ id: 'Filter…',
+ defaultMessage: 'Filter…',
+ },
+ messageCopied: {
+ id: 'Item(s) copied.',
+ defaultMessage: 'Item(s) copied.',
+ },
+ messageCut: {
+ id: 'Item(s) cut.',
+ defaultMessage: 'Item(s) cut.',
+ },
+ messageUpdate: {
+ id: 'Item(s) has been updated.',
+ defaultMessage: 'Item(s) has been updated.',
+ },
+ messageReorder: {
+ id: 'Item successfully moved.',
+ defaultMessage: 'Item successfully moved.',
+ },
+ messagePasted: {
+ id: 'Item(s) pasted.',
+ defaultMessage: 'Item(s) pasted.',
+ },
+ messageWorkflowUpdate: {
+ id: 'Item(s) state has been updated.',
+ defaultMessage: 'Item(s) state has been updated.',
+ },
+ paste: {
+ id: 'Paste',
+ defaultMessage: 'Paste',
+ },
+ properties: {
+ id: 'Properties',
+ defaultMessage: 'Properties',
+ },
+ rearrangeBy: {
+ id: 'Rearrange items by…',
+ defaultMessage: 'Rearrange items by…',
+ },
+ rename: {
+ id: 'Rename',
+ defaultMessage: 'Rename',
+ },
+ select: {
+ id: 'Select…',
+ defaultMessage: 'Select…',
+ },
+ selected: {
+ id: '{count} selected',
+ defaultMessage: '{count} selected',
+ },
+ selectColumns: {
+ id: 'Select columns to show',
+ defaultMessage: 'Select columns to show',
+ },
+ sort: {
+ id: 'sort',
+ defaultMessage: 'sort',
+ },
+ state: {
+ id: 'State',
+ defaultMessage: 'State',
+ },
+ tags: {
+ id: 'Tags',
+ defaultMessage: 'Tags',
+ },
+ upload: {
+ id: 'Upload',
+ defaultMessage: 'Upload',
+ },
+ success: {
+ id: 'Success',
+ defaultMessage: 'Success',
+ },
+ publicationDate: {
+ id: 'Publication date',
+ defaultMessage: 'Publication date',
+ },
+ createdOn: {
+ id: 'Created on',
+ defaultMessage: 'Created on',
+ },
+ expirationDate: {
+ id: 'Expiration date',
+ defaultMessage: 'Expiration date',
+ },
+ id: {
+ id: 'ID',
+ defaultMessage: 'ID',
+ },
+ uid: {
+ id: 'UID',
+ defaultMessage: 'UID',
+ },
+ reviewState: {
+ id: 'Review state',
+ defaultMessage: 'Review state',
+ },
+ folder: {
+ id: 'Folder',
+ defaultMessage: 'Folder',
+ },
+ excludedFromNavigation: {
+ id: 'Excluded from navigation',
+ defaultMessage: 'Excluded from navigation',
+ },
+ objectSize: {
+ id: 'Object Size',
+ defaultMessage: 'Object Size',
+ },
+ lastCommentedDate: {
+ id: 'Last comment date',
+ defaultMessage: 'Last comment date',
+ },
+ totalComments: {
+ id: 'Total comments',
+ defaultMessage: 'Total comments',
+ },
+ creator: {
+ id: 'Creator',
+ defaultMessage: 'Creator',
+ },
+ endDate: {
+ id: 'End Date',
+ defaultMessage: 'End Date',
+ },
+ startDate: {
+ id: 'Start Date',
+ defaultMessage: 'Start Date',
+ },
+ all: {
+ id: 'All',
+ defaultMessage: 'All',
+ },
+ resultCount: {
+ id: 'resultCount',
+ defaultMessage: 'Result count',
+ },
+});
+
+/**
+ * Contents class.
+ * @class Contents
+ * @extends Component
+ */
+class Contents extends Component {
+ /**
+ * Property types.
+ * @property {Object} propTypes Property types.
+ * @static
+ */
+ static propTypes = {
+ action: PropTypes.string,
+ source: PropTypes.arrayOf(PropTypes.string),
+ searchContent: PropTypes.func.isRequired,
+ cut: PropTypes.func.isRequired,
+ copy: PropTypes.func.isRequired,
+ copyContent: PropTypes.func.isRequired,
+ deleteContent: PropTypes.func.isRequired,
+ moveContent: PropTypes.func.isRequired,
+ orderContent: PropTypes.func.isRequired,
+ sortContent: PropTypes.func.isRequired,
+ updateColumnsContent: PropTypes.func.isRequired,
+ clipboardRequest: PropTypes.shape({
+ loading: PropTypes.bool,
+ loaded: PropTypes.bool,
+ }).isRequired,
+ deleteRequest: PropTypes.shape({
+ loading: PropTypes.bool,
+ loaded: PropTypes.bool,
+ }).isRequired,
+ updateRequest: PropTypes.shape({
+ loading: PropTypes.bool,
+ loaded: PropTypes.bool,
+ }).isRequired,
+ searchRequest: PropTypes.shape({
+ loading: PropTypes.bool,
+ loaded: PropTypes.bool,
+ }).isRequired,
+ items: PropTypes.arrayOf(
+ PropTypes.shape({
+ '@id': PropTypes.string,
+ '@type': PropTypes.string,
+ title: PropTypes.string,
+ description: PropTypes.string,
+ }),
+ ),
+ breadcrumbs: PropTypes.arrayOf(
+ PropTypes.shape({
+ title: PropTypes.string,
+ url: PropTypes.string,
+ }),
+ ).isRequired,
+ total: PropTypes.number.isRequired,
+ pathname: PropTypes.string.isRequired,
+ };
+
+ /**
+ * Default properties.
+ * @property {Object} defaultProps Default properties.
+ * @static
+ */
+ static defaultProps = {
+ items: [],
+ action: null,
+ source: null,
+ index: {
+ order: keys(Indexes),
+ values: mapValues(Indexes, (value, key) => ({
+ ...value,
+ selected: indexOf(defaultIndexes, key) !== -1,
+ })),
+ selectedCount: defaultIndexes.length + 1,
+ },
+ };
+
+ /**
+ * Constructor
+ * @method constructor
+ * @param {Object} props Component properties
+ * @constructs ContentsComponent
+ */
+ constructor(props) {
+ super(props);
+ this.onDeselect = this.onDeselect.bind(this);
+ this.onSelect = this.onSelect.bind(this);
+ this.onSelectAll = this.onSelectAll.bind(this);
+ this.onSelectIndex = this.onSelectIndex.bind(this);
+ this.onSelectNone = this.onSelectNone.bind(this);
+ this.onDeleteOk = this.onDeleteOk.bind(this);
+ this.onDeleteCancel = this.onDeleteCancel.bind(this);
+ this.onUploadOk = this.onUploadOk.bind(this);
+ this.onUploadCancel = this.onUploadCancel.bind(this);
+ this.onRenameOk = this.onRenameOk.bind(this);
+ this.onRenameCancel = this.onRenameCancel.bind(this);
+ this.onTagsOk = this.onTagsOk.bind(this);
+ this.onTagsCancel = this.onTagsCancel.bind(this);
+ this.onPropertiesOk = this.onPropertiesOk.bind(this);
+ this.onPropertiesCancel = this.onPropertiesCancel.bind(this);
+ this.onWorkflowOk = this.onWorkflowOk.bind(this);
+ this.onWorkflowCancel = this.onWorkflowCancel.bind(this);
+ this.onChangeFilter = this.onChangeFilter.bind(this);
+ this.onChangePage = this.onChangePage.bind(this);
+ this.onChangePageSize = this.onChangePageSize.bind(this);
+ this.onOrderIndex = this.onOrderIndex.bind(this);
+ this.onOrderItem = this.onOrderItem.bind(this);
+ this.onSortItems = this.onSortItems.bind(this);
+ this.onMoveToTop = this.onMoveToTop.bind(this);
+ this.onChangeSelected = this.onChangeSelected.bind(this);
+ this.onMoveToBottom = this.onMoveToBottom.bind(this);
+ this.cut = this.cut.bind(this);
+ this.copy = this.copy.bind(this);
+ this.delete = this.delete.bind(this);
+ this.upload = this.upload.bind(this);
+ this.rename = this.rename.bind(this);
+ this.tags = this.tags.bind(this);
+ this.properties = this.properties.bind(this);
+ this.workflow = this.workflow.bind(this);
+ this.paste = this.paste.bind(this);
+ this.fetchContents = this.fetchContents.bind(this);
+ this.orderTimeout = null;
+
+ this.state = {
+ selected: [],
+ showDelete: false,
+ showUpload: false,
+ showRename: false,
+ showTags: false,
+ showProperties: false,
+ showWorkflow: false,
+ itemsToDelete: [],
+ items: this.props.items,
+ filter: '',
+ currentPage: 0,
+ pageSize: 50,
+ index: this.props.index || {
+ order: keys(Indexes),
+ values: mapValues(Indexes, (value, key) => ({
+ ...value,
+ selected: indexOf(defaultIndexes, key) !== -1,
+ })),
+ selectedCount: defaultIndexes.length + 1,
+ },
+ sort_on: this.props.sort?.on || 'getObjPositionInParent',
+ sort_order: this.props.sort?.order || 'ascending',
+ isClient: false,
+ };
+ this.filterTimeout = null;
+ }
+
+ /**
+ * Component did mount
+ * @method componentDidMount
+ * @returns {undefined}
+ */
+ componentDidMount() {
+ this.fetchContents();
+ this.setState({ isClient: true });
+ }
+
+ /**
+ * Component will receive props
+ * @method componentWillReceiveProps
+ * @param {Object} nextProps Next properties
+ * @returns {undefined}
+ */
+ UNSAFE_componentWillReceiveProps(nextProps) {
+ if (
+ (this.props.clipboardRequest.loading &&
+ nextProps.clipboardRequest.loaded) ||
+ (this.props.deleteRequest.loading && nextProps.deleteRequest.loaded) ||
+ (this.props.updateRequest.loading && nextProps.updateRequest.loaded)
+ ) {
+ this.fetchContents(nextProps.pathname);
+ }
+ if (this.props.updateRequest.loading && nextProps.updateRequest.loaded) {
+ this.props.toastify.toast.success(
+ ,
+ );
+ }
+ if (this.props.pathname !== nextProps.pathname) {
+ // Refetching content to sync the current object in the toolbar
+ this.props.getContent(getBaseUrl(nextProps.pathname));
+ this.setState(
+ {
+ currentPage: 0,
+ selected: [],
+ },
+ () =>
+ this.setState({ filter: '' }, () =>
+ this.fetchContents(nextProps.pathname),
+ ),
+ );
+ }
+ if (this.props.searchRequest.loading && nextProps.searchRequest.loaded) {
+ this.setState({
+ items: nextProps.items,
+ });
+ }
+ if (
+ this.props.clipboardRequest.loading &&
+ nextProps.clipboardRequest.error
+ ) {
+ const msgBody =
+ nextProps.clipboardRequest.error?.response?.body?.message ||
+ this.props.intl.formatMessage(messages.error);
+ this.props.toastify.toast.error(
+ ,
+ );
+ }
+
+ if (
+ this.props.clipboardRequest.loading &&
+ nextProps.clipboardRequest.loaded
+ ) {
+ this.props.toastify.toast.success(
+ ,
+ );
+ }
+
+ if (this.props.deleteRequest.loading && nextProps.deleteRequest.error) {
+ this.props.toastify.toast.error(
+ ,
+ );
+ }
+
+ if (this.props.orderRequest.loading && nextProps.orderRequest.loaded) {
+ this.props.toastify.toast.success(
+ ,
+ );
+ }
+ }
+
+ /**
+ * On deselect handler
+ * @method onDeselect
+ * @param {object} event Event object
+ * @param {string} value Value
+ * @returns {undefined}
+ */
+ onDeselect(event, { value }) {
+ this.setState({
+ selected: pull(this.state.selected, value),
+ });
+ }
+
+ /**
+ * On select handler
+ * @method onSelect
+ * @param {object} event Event object
+ * @returns {undefined}
+ */
+ onSelect(event, id) {
+ if (indexOf(this.state.selected, id) === -1) {
+ this.setState({
+ selected: concat(this.state.selected, id),
+ });
+ } else {
+ this.setState({
+ selected: pull(this.state.selected, id),
+ });
+ }
+ }
+
+ /**
+ * On select all handler
+ * @method onSelectAll
+ * @returns {undefined}
+ */
+ onSelectAll() {
+ this.setState({
+ selected: map(this.state.items, (item) => item['@id']),
+ });
+ }
+
+ /**
+ * On select none handler
+ * @method onSelectNone
+ * @returns {undefined}
+ */
+ onSelectNone() {
+ this.setState({
+ selected: [],
+ });
+ }
+
+ /**
+ * On select index
+ * @method onSelectIndex
+ * @param {object} event Event object.
+ * @param {string} value Index value.
+ * @returns {undefined}
+ */
+ onSelectIndex(event, { value }) {
+ let newIndex = {
+ ...this.state.index,
+ selectedCount:
+ this.state.index.selectedCount +
+ (this.state.index.values[value].selected ? -1 : 1),
+ values: mapValues(this.state.index.values, (indexValue, indexKey) => ({
+ ...indexValue,
+ selected:
+ indexKey === value ? !indexValue.selected : indexValue.selected,
+ })),
+ };
+ this.setState({
+ index: newIndex,
+ });
+ this.props.updateColumnsContent(getBaseUrl(this.props.pathname), newIndex);
+ }
+
+ /**
+ * On change filter
+ * @method onChangeFilter
+ * @param {object} event Event object.
+ * @param {string} value Filter value.
+ * @returns {undefined}
+ */
+ onChangeFilter(event, { value }) {
+ const self = this;
+ clearTimeout(self.filterTimeout);
+ this.setState(
+ {
+ filter: value,
+ },
+ () => {
+ self.filterTimeout = setTimeout(() => {
+ self.fetchContents();
+ }, 200);
+ },
+ );
+ }
+
+ /**
+ * On change selected values (Filter)
+ * @method onChangeSelected
+ * @param {object} event Event object.
+ * @param {string} value Filter value.
+ * @returns {undefined}
+ */
+ onChangeSelected(event, { value }) {
+ event.stopPropagation();
+ const { items, selected } = this.state;
+
+ const filteredItems = filter(selected, (selectedItem) =>
+ find(items, (item) => item['@id'] === selectedItem)
+ .title.toLowerCase()
+ .includes(value.toLowerCase()),
+ );
+
+ this.setState({
+ filteredItems,
+ selectedMenuFilter: value,
+ });
+ }
+
+ /**
+ * On change page
+ * @method onChangePage
+ * @param {object} event Event object.
+ * @param {string} value Page value.
+ * @returns {undefined}
+ */
+ onChangePage(event, { value }) {
+ this.setState(
+ {
+ currentPage: value,
+ selected: [],
+ },
+ () => this.fetchContents(),
+ );
+ }
+
+ /**
+ * On change page size
+ * @method onChangePageSize
+ * @param {object} event Event object.
+ * @param {string} value Page size value.
+ * @returns {undefined}
+ */
+ onChangePageSize(event, { value }) {
+ this.setState(
+ {
+ pageSize: value,
+ currentPage: 0,
+ selected: [],
+ },
+ () => this.fetchContents(),
+ );
+ }
+
+ /**
+ * On order index
+ * @method onOrderIndex
+ * @param {number} index Index
+ * @param {number} delta Delta
+ * @returns {undefined}
+ */
+ onOrderIndex(index, delta) {
+ this.setState({
+ index: {
+ ...this.state.index,
+ order: move(this.state.index.order, index, index + delta),
+ },
+ });
+ this.props.updateColumnsContent(
+ getBaseUrl(this.props.pathname),
+ this.state.index,
+ );
+ }
+
+ /**
+ * On order item
+ * @method onOrderItem
+ * @param {string} id Item id
+ * @param {number} itemIndex Item index
+ * @param {number} delta Delta
+ * @returns {undefined}
+ */
+ onOrderItem(id, itemIndex, delta, backend) {
+ if (backend) {
+ this.props.orderContent(
+ getBaseUrl(this.props.pathname),
+ id.replace(/^.*\//, ''),
+ delta,
+ );
+ } else {
+ this.setState({
+ items: move(this.state.items, itemIndex, itemIndex + delta),
+ });
+ }
+ }
+
+ /**
+ * On sort items
+ * @method onSortItems
+ * @param {object} event Event object
+ * @param {string} value Item index
+ * @returns {undefined}
+ */
+ onSortItems(event, { value }) {
+ const values = value.split('|');
+ this.setState({
+ sort_on: values[0],
+ sort_order: values[1],
+ selected: [],
+ });
+ this.props.sortContent(
+ getBaseUrl(this.props.pathname),
+ values[0],
+ values[1],
+ );
+ }
+
+ /**
+ * On move to top
+ * @method onMoveToTop
+ * @param {object} event Event object
+ * @param {string} value Item index
+ * @returns {undefined}
+ */
+ onMoveToTop(event, { value }) {
+ const id = this.state.items[value]['@id'];
+ this.props
+ .orderContent(
+ getBaseUrl(this.props.pathname),
+ id.replace(/^.*\//, ''),
+ 'top',
+ )
+ .then(() => {
+ this.setState(
+ {
+ currentPage: 0,
+ selected: [],
+ },
+ () => this.fetchContents(),
+ );
+ });
+ }
+
+ /**
+ * On move to bottom
+ * @method onMoveToBottom
+ * @param {object} event Event object
+ * @param {string} value Item index
+ * @returns {undefined}
+ */
+ onMoveToBottom(event, { value }) {
+ const id = this.state.items[value]['@id'];
+ this.props
+ .orderContent(
+ getBaseUrl(this.props.pathname),
+ id.replace(/^.*\//, ''),
+ 'bottom',
+ )
+ .then(() => {
+ this.setState(
+ {
+ currentPage: 0,
+ selected: [],
+ },
+ () => this.fetchContents(),
+ );
+ });
+ }
+
+ /**
+ * On delete ok
+ * @method onDeleteOk
+ * @returns {undefined}
+ */
+ onDeleteOk() {
+ this.props.deleteContent(this.state.itemsToDelete);
+ this.setState({
+ showDelete: false,
+ itemsToDelete: [],
+ selected: [],
+ });
+ }
+
+ /**
+ * On delete cancel
+ * @method onDeleteCancel
+ * @returns {undefined}
+ */
+ onDeleteCancel() {
+ this.setState({
+ showDelete: false,
+ itemsToDelete: [],
+ });
+ }
+
+ /**
+ * On upload ok
+ * @method onUploadOk
+ * @returns {undefined}
+ */
+ onUploadOk() {
+ this.fetchContents();
+ this.setState({
+ showUpload: false,
+ });
+ }
+
+ /**
+ * On upload cancel
+ * @method onUploadCancel
+ * @returns {undefined}
+ */
+ onUploadCancel() {
+ this.setState({
+ showUpload: false,
+ });
+ }
+
+ /**
+ * On rename ok
+ * @method onRenameOk
+ * @returns {undefined}
+ */
+ onRenameOk() {
+ this.setState({
+ showRename: false,
+ selected: [],
+ });
+ }
+
+ /**
+ * On rename cancel
+ * @method onRenameCancel
+ * @returns {undefined}
+ */
+ onRenameCancel() {
+ this.setState({
+ showRename: false,
+ });
+ }
+
+ /**
+ * On tags ok
+ * @method onTagsOk
+ * @returns {undefined}
+ */
+ onTagsOk() {
+ this.setState({
+ showTags: false,
+ selected: [],
+ });
+ }
+
+ /**
+ * On tags cancel
+ * @method onTagsCancel
+ * @returns {undefined}
+ */
+ onTagsCancel() {
+ this.setState({
+ showTags: false,
+ });
+ }
+
+ /**
+ * On properties ok
+ * @method onPropertiesOk
+ * @returns {undefined}
+ */
+ onPropertiesOk() {
+ this.setState({
+ showProperties: false,
+ selected: [],
+ });
+ }
+
+ /**
+ * On properties cancel
+ * @method onPropertiesCancel
+ * @returns {undefined}
+ */
+ onPropertiesCancel() {
+ this.setState({
+ showProperties: false,
+ });
+ }
+
+ /**
+ * On workflow ok
+ * @method onWorkflowOk
+ * @returns {undefined}
+ */
+ onWorkflowOk() {
+ this.fetchContents();
+ this.setState({
+ showWorkflow: false,
+ selected: [],
+ });
+ this.props.toastify.toast.success(
+ ,
+ );
+ }
+
+ /**
+ * On workflow cancel
+ * @method onWorkflowCancel
+ * @returns {undefined}
+ */
+ onWorkflowCancel() {
+ this.setState({
+ showWorkflow: false,
+ });
+ }
+
+ /**
+ * Get field by id
+ * @method getFieldById
+ * @param {string} id Id of object
+ * @param {string} field Field of object
+ * @returns {string} Field of object
+ */
+ getFieldById(id, field) {
+ const item = find(this.state.items, { '@id': id });
+ return item ? item[field] : '';
+ }
+
+ /**
+ * Fetch contents handler
+ * @method fetchContents
+ * @param {string} pathname Pathname to fetch contents.
+ * @returns {undefined}
+ */
+ fetchContents(pathname) {
+ if (this.state.pageSize === this.props.intl.formatMessage(messages.all)) {
+ //'All'
+ this.props.searchContent(getBaseUrl(pathname || this.props.pathname), {
+ 'path.depth': 1,
+ sort_on: this.state.sort_on,
+ sort_order: this.state.sort_order,
+ metadata_fields: '_all',
+ b_size: 100000000,
+ show_inactive: true,
+ ...(this.state.filter && { SearchableText: `${this.state.filter}*` }),
+ });
+ } else {
+ this.props.searchContent(getBaseUrl(pathname || this.props.pathname), {
+ 'path.depth': 1,
+ sort_on: this.state.sort_on,
+ sort_order: this.state.sort_order,
+ metadata_fields: '_all',
+ ...(this.state.filter && { SearchableText: `${this.state.filter}*` }),
+ b_size: this.state.pageSize,
+ b_start: this.state.currentPage * this.state.pageSize,
+ show_inactive: true,
+ });
+ }
+ }
+
+ /**
+ * Cut handler
+ * @method cut
+ * @param {Object} event Event object.
+ * @param {string} value Value of the event.
+ * @returns {undefined}
+ */
+ cut(event, { value }) {
+ this.props.cut(value ? [value] : this.state.selected);
+ this.onSelectNone();
+ this.props.toastify.toast.success(
+ ,
+ );
+ }
+
+ /**
+ * Copy handler
+ * @method copy
+ * @param {Object} event Event object.
+ * @param {string} value Value of the event.
+ * @returns {undefined}
+ */
+ copy(event, { value }) {
+ this.props.copy(value ? [value] : this.state.selected);
+ this.onSelectNone();
+ this.props.toastify.toast.success(
+ ,
+ );
+ }
+
+ /**
+ * Delete handler
+ * @method delete
+ * @param {Object} event Event object.
+ * @param {string} value Value of the event.
+ * @returns {undefined}
+ */
+ delete(event, { value }) {
+ this.setState({
+ showDelete: true,
+ itemsToDelete: value ? [value] : this.state.selected,
+ });
+ }
+
+ /**
+ * Upload handler
+ * @method upload
+ * @returns {undefined}
+ */
+ upload() {
+ this.setState({
+ showUpload: true,
+ });
+ }
+
+ /**
+ * Rename handler
+ * @method rename
+ * @returns {undefined}
+ */
+ rename() {
+ this.setState({
+ showRename: true,
+ });
+ }
+
+ /**
+ * Tags handler
+ * @method tags
+ * @returns {undefined}
+ */
+ tags() {
+ this.setState({
+ showTags: true,
+ });
+ }
+
+ /**
+ * Properties handler
+ * @method properties
+ * @returns {undefined}
+ */
+ properties() {
+ this.setState({
+ showProperties: true,
+ });
+ }
+
+ /**
+ * Workflow handler
+ * @method workflow
+ * @returns {undefined}
+ */
+ workflow() {
+ this.setState({
+ showWorkflow: true,
+ });
+ }
+
+ /**
+ * Paste handler
+ * @method paste
+ * @returns {undefined}
+ */
+ paste() {
+ if (this.props.action === 'copy') {
+ this.props.copyContent(
+ this.props.source,
+ getBaseUrl(this.props.pathname),
+ );
+ }
+ if (this.props.action === 'cut') {
+ this.props.moveContent(
+ this.props.source,
+ getBaseUrl(this.props.pathname),
+ );
+ }
+ }
+
+ /**
+ * Render method.
+ * @method render
+ * @returns {string} Markup for the component.
+ */
+ render() {
+ const selected = this.state.selected.length > 0;
+ const filteredItems = this.state.filteredItems || this.state.selected;
+ const path = getBaseUrl(this.props.pathname);
+ const folderContentsAction = find(this.props.objectActions, {
+ id: 'folderContents',
+ });
+ const loading =
+ (this.props.clipboardRequest?.loading &&
+ !this.props.clipboardRequest?.error) ||
+ (this.props.deleteRequest?.loading && !this.props.deleteRequest?.error) ||
+ (this.props.updateRequest?.loading && !this.props.updateRequest?.error) ||
+ (this.props.orderRequest?.loading && !this.props.orderRequest?.error) ||
+ (this.props.searchRequest?.loading && !this.props.searchRequest?.error);
+
+ const Container =
+ config.getComponent({ name: 'Container' }).component || SemanticContainer;
+
+ return this.props.token && this.props.objectActions?.length > 0 ? (
+ <>
+ {folderContentsAction ? (
+
+
+
+
+ {this.props.intl.formatMessage(messages.loading)}
+
+
+
+ {/* Start Customization */}
+
+ {/* End Customization */}
+
+
+ 1
+ }
+ />
+
+ ({
+ url: item,
+ title: this.getFieldById(item, 'title'),
+ id: this.getFieldById(item, 'id'),
+ }))}
+ />
+ ({
+ url: item,
+ subjects: this.getFieldById(item, 'Subject'),
+ }))}
+ />
+
+ find(this.state.items, { '@id': id }),
+ ).filter((item) => item)}
+ />
+ {this.state.showWorkflow && (
+
+ )}
+
+
+
+
+
+
+ }
+ className="right floating selectIndex"
+ >
+
+
+
+ {map(
+ filter(
+ this.state.index.order,
+ (index) => index !== 'sortable_title',
+ ),
+ (index) => (
+
+ {this.state.index.values[index]
+ .selected ? (
+
+ ) : (
+
+ )}
+
+ {' '}
+ {this.props.intl.formatMessage({
+ id: this.state.index.values[index]
+ .label,
+ defaultMessage:
+ this.state.index.values[index]
+ .label,
+ })}
+
+
+ ),
+ )}
+
+
+
+
+
+
+ {`${this.props.intl.formatMessage(
+ messages.resultCount,
+ )}: ${this.props.total || 0}`}
+
+
+
+
+
+
+ }
+ >
+
+
+
+
+ 0
+ ? '#007eb1'
+ : '#826a6a'
+ }
+ className="dropdown-popup-trigger"
+ size="24px"
+ />
+ }
+ >
+
+
+
+
+
+
+ {map(
+ this.state.index.order,
+ (index, order) =>
+ this.state.index.values[index].selected && (
+
+ ),
+ )}
+
+
+
+
+
+
+ {this.state.items.map((item, order) => (
+ ({
+ id: index,
+ type: this.state.index.values[index].type,
+ })),
+ (index) =>
+ this.state.index.values[index.id]
+ .selected,
+ )}
+ onCut={this.cut}
+ onCopy={this.copy}
+ onDelete={this.delete}
+ onOrderItem={this.onOrderItem}
+ onMoveToTop={this.onMoveToTop}
+ onMoveToBottom={this.onMoveToBottom}
+ />
+ ))}
+
+
+
+
+
+
+
+
+
+
+ {this.state.isClient &&
+ createPortal(
+
+
+
+ }
+ />,
+ document.getElementById('toolbar'),
+ )}
+
+
+ ) : (
+
+ )}
+ >
+ ) : (
+
+ );
+ }
+}
+
+let dndContext;
+
+const DragDropConnector = (props) => {
+ const { DragDropContext } = props.reactDnd;
+ const HTML5Backend = props.reactDndHtml5Backend.default;
+
+ const DndConnectedContents = React.useMemo(() => {
+ if (!dndContext) {
+ dndContext = DragDropContext(HTML5Backend);
+ }
+ return dndContext(Contents);
+ }, [DragDropContext, HTML5Backend]);
+
+ return ;
+};
+
+export const __test__ = compose(
+ injectIntl,
+ injectLazyLibs(['toastify', 'reactDnd']),
+ connect(
+ (store, props) => {
+ return {
+ token: store.userSession.token,
+ items: store.search.items,
+ sort: store.content.update.sort,
+ index: store.content.updatecolumns.idx,
+ breadcrumbs: store.breadcrumbs.items,
+ total: store.search.total,
+ searchRequest: {
+ loading: store.search.loading,
+ loaded: store.search.loaded,
+ },
+ pathname: props.location.pathname,
+ action: store.clipboard.action,
+ source: store.clipboard.source,
+ clipboardRequest: store.clipboard.request,
+ deleteRequest: store.content.delete,
+ updateRequest: store.content.update,
+ objectActions: store.actions.actions.object,
+ orderRequest: store.content.order,
+ };
+ },
+ {
+ searchContent,
+ cut,
+ copy,
+ copyContent,
+ deleteContent,
+ listActions,
+ moveContent,
+ orderContent,
+ sortContent,
+ updateColumnsContent,
+ getContent,
+ },
+ ),
+)(Contents);
+
+export default compose(
+ injectIntl,
+ connect(
+ (store, props) => {
+ return {
+ token: store.userSession.token,
+ items: store.search.items,
+ sort: store.content.update.sort,
+ index: store.content.updatecolumns.idx,
+ breadcrumbs: store.breadcrumbs.items,
+ total: store.search.total,
+ searchRequest: {
+ loading: store.search.loading,
+ loaded: store.search.loaded,
+ },
+ pathname: props.location.pathname,
+ action: store.clipboard.action,
+ source: store.clipboard.source,
+ clipboardRequest: store.clipboard.request,
+ deleteRequest: store.content.delete,
+ updateRequest: store.content.update,
+ objectActions: store.actions.actions.object,
+ orderRequest: store.content.order,
+ };
+ },
+ {
+ searchContent,
+ cut,
+ copy,
+ copyContent,
+ deleteContent,
+ listActions,
+ moveContent,
+ orderContent,
+ sortContent,
+ updateColumnsContent,
+ getContent,
+ },
+ ),
+ asyncConnect([
+ {
+ key: 'actions',
+ // Dispatch async/await to make the operation synchronous, otherwise it returns
+ // before the promise is resolved
+ promise: async ({ location, store: { dispatch } }) =>
+ await dispatch(listActions(getBaseUrl(location.pathname))),
+ },
+ ]),
+ injectLazyLibs(['toastify', 'reactDnd', 'reactDndHtml5Backend']),
+)(DragDropConnector);
diff --git a/frontend/packages/kitconcept-core/src/components/Contents/DropZoneContent.jsx b/frontend/packages/kitconcept-core/src/components/Contents/DropZoneContent.jsx
new file mode 100644
index 00000000..149ef4d8
--- /dev/null
+++ b/frontend/packages/kitconcept-core/src/components/Contents/DropZoneContent.jsx
@@ -0,0 +1,307 @@
+import { useState, useEffect } from 'react';
+import { useDispatch, useSelector, shallowEqual } from 'react-redux';
+import { defineMessages, useIntl, FormattedMessage } from 'react-intl';
+import {
+ Button,
+ Modal,
+ Table,
+ Input,
+ Dimmer,
+ Progress,
+} from 'semantic-ui-react';
+import cx from 'classnames';
+import filesize from 'filesize';
+import { readAsDataURL } from 'promise-file-reader';
+
+import { createContent } from '@plone/volto/actions/content/content';
+import { usePrevious } from '@plone/volto/helpers/Utils/usePrevious';
+import { validateFileUploadSize } from '@plone/volto/helpers/FormValidation/FormValidation';
+import Icon from '@plone/volto/components/theme/Icon/Icon';
+import uploadSVG from '@plone/volto/icons/upload.svg';
+import clearSVG from '@plone/volto/icons/clear.svg';
+import FormattedRelativeDate from '@plone/volto/components/theme/FormattedDate/FormattedRelativeDate';
+import Image from '@plone/volto/components/theme/Image/Image';
+
+const SUBREQUEST = 'batch-upload';
+
+const messages = defineMessages({
+ cancel: {
+ id: 'Cancel',
+ defaultMessage: 'Cancel',
+ },
+ upload: {
+ id: '{count, plural, one {Upload {count} file} other {Upload {count} files}}',
+ defaultMessage:
+ '{count, plural, one {Upload {count} file} other {Upload {count} files}}',
+ },
+ filesUploaded: {
+ id: 'Files uploaded: {uploadedFiles}',
+ defaultMessage: 'Files uploaded: {uploadedFiles}',
+ },
+ totalFilesToUpload: {
+ id: 'Total files to upload: {totalFiles}',
+ defaultMessage: 'Total files to upload: {totalFiles}',
+ },
+});
+
+const DropZoneContent = (props) => {
+ const { onOk, onCancel, pathname, children } = props;
+ const [isDragOver, setIsDragOver] = useState(false);
+ const [showModal, setShowModal] = useState(false);
+ const [droppedFiles, setDroppedFiles] = useState([]);
+ const [totalFiles, setTotalFiles] = useState(0);
+
+ const intl = useIntl();
+ const dispatch = useDispatch();
+
+ const request = useSelector(
+ (state) => state.content.subrequests?.[SUBREQUEST] || {},
+ shallowEqual,
+ );
+
+ const uploadedFiles = useSelector((state) => state.content.uploadedFiles);
+ const prevrequestloading = usePrevious(request.loading);
+
+ useEffect(() => {
+ if (prevrequestloading && request.loaded) {
+ onOk();
+ setDroppedFiles([]);
+ }
+ }, [prevrequestloading, request.loaded, onOk]);
+
+ const handleDragEnter = (e) => {
+ e.preventDefault();
+ e.stopPropagation();
+ setIsDragOver(true);
+ };
+
+ const handleDragLeave = (e) => {
+ e.preventDefault();
+ e.stopPropagation();
+ if (!e.currentTarget.contains(e.relatedTarget)) {
+ setIsDragOver(false);
+ }
+ };
+
+ const handleDragOver = (e) => {
+ e.preventDefault();
+ e.stopPropagation();
+ };
+
+ const onDrop = async (e) => {
+ setIsDragOver(false);
+ const newFiles = Array.from(e.dataTransfer.files);
+ const validFiles = [];
+ for (let i = 0; i < newFiles.length; i++) {
+ if (validateFileUploadSize(newFiles[i], intl.formatMessage)) {
+ await readAsDataURL(newFiles[i]).then((data) => {
+ const fields = data.match(/^data:(.*);(.*),(.*)$/);
+ newFiles[i].preview = fields[0];
+ });
+ validFiles.push(newFiles[i]);
+ }
+ }
+ setDroppedFiles(droppedFiles.concat(validFiles));
+ setTotalFiles(validFiles.length);
+ setShowModal(true);
+ };
+
+ const handleCloseModal = () => {
+ setShowModal(false);
+ onCancel();
+ setDroppedFiles([]);
+ setTotalFiles(0);
+ };
+
+ const onSubmit = () => {
+ Promise.all(droppedFiles.map((file) => readAsDataURL(file))).then(
+ (dataUrls) => {
+ dispatch(
+ createContent(
+ pathname,
+ droppedFiles.map((file, index) => {
+ const fields = dataUrls[index].match(/^data:(.*);(.*),(.*)$/);
+ const image = fields[1].split('/')[0] === 'image';
+ return {
+ '@type': image ? 'Image' : 'File',
+ title: file.name,
+ [image ? 'image' : 'file']: {
+ data: fields[3],
+ encoding: fields[2],
+ 'content-type': fields[1],
+ filename: file.name,
+ },
+ };
+ }),
+ SUBREQUEST,
+ ),
+ );
+ },
+ );
+ handleCloseModal();
+ };
+ const onRemoveFile = (index) => {
+ const updatedFiles = droppedFiles.filter((file, i) => i !== index);
+ setDroppedFiles(updatedFiles);
+ setTotalFiles(updatedFiles.length);
+ };
+
+ const onChangeFileName = (e, index) => {
+ let copyOfFiles = [...droppedFiles];
+ let originalFile = droppedFiles[index];
+ let newFile = new File([originalFile], e.target.value, {
+ type: originalFile.type,
+ });
+
+ newFile.preview = originalFile.preview;
+ newFile.path = e.target.value;
+ copyOfFiles[index] = newFile;
+ setDroppedFiles(copyOfFiles);
+ };
+
+ return (
+ <>
+
+ {children}
+ {isDragOver && (
+
+
+
+
Drop files here to upload
+
Release to add file(s) to this folder
+
+
+ )}
+
+
+ Upload Files ({droppedFiles.length})
+
+
+
+
+
+
+ {droppedFiles.length > 0 && (
+
+ )}
+
+
+ {droppedFiles.length > 0 && (
+
+ )}
+
+
+
+ >
+ );
+};
+
+export default DropZoneContent;
diff --git a/frontend/packages/kitconcept-core/src/customizations/volto/components/manage/Contents/Contents.jsx b/frontend/packages/kitconcept-core/src/customizations/volto/components/manage/Contents/Contents.jsx
new file mode 100644
index 00000000..2239b9aa
--- /dev/null
+++ b/frontend/packages/kitconcept-core/src/customizations/volto/components/manage/Contents/Contents.jsx
@@ -0,0 +1,20 @@
+/**
+ * OVERRIDE Contents.jsx
+ * REASON: Add component DropzoneContent to enable drag and drop upload.
+ * FILE: https://github.com/plone/volto/blob/829f0a61b80adb0d2a637f0160c1e9b00931114f/packages/volto/src/components/manage/Contents/Contents.jsx
+ * FILE VERSION: Volto 18.29.1
+ * PULL REQUEST: https://github.com/kitconcept/kitconcept-core/pull/71
+ * TICKET: https://gitlab.kitconcept.io/kitconcept/distribution-kitconcept-intranet/-/issues/6
+ * DEVELOPER: @Tishasoumya-02
+ * CHANGELOG:
+ * - Add component DropzoneContent to enable drag and drop upload (#6) @Tishasoumya-02
+ */
+
+/**
+ * Contents component.
+ * @module components/manage/Contents/Contents
+ */
+
+import Contents from '../../../../../components/Contents/Contents';
+
+export default Contents;
diff --git a/frontend/packages/kitconcept-core/src/theme/_main.scss b/frontend/packages/kitconcept-core/src/theme/_main.scss
index 1be357ab..2e144d3f 100644
--- a/frontend/packages/kitconcept-core/src/theme/_main.scss
+++ b/frontend/packages/kitconcept-core/src/theme/_main.scss
@@ -1,2 +1,3 @@
// This theme extends the volto-light-theme
@import 'components/version_overview';
+@import 'components/dragDropFolderContent.scss';
diff --git a/frontend/packages/kitconcept-core/src/theme/components/dragDropFolderContent.scss b/frontend/packages/kitconcept-core/src/theme/components/dragDropFolderContent.scss
new file mode 100644
index 00000000..52e33dba
--- /dev/null
+++ b/frontend/packages/kitconcept-core/src/theme/components/dragDropFolderContent.scss
@@ -0,0 +1,62 @@
+.contents-dropzone {
+ position: relative;
+
+ &.drag-over {
+ overflow: hidden;
+ }
+}
+
+.dropzone-overlay {
+ position: absolute;
+ z-index: 10;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ border: 3px dashed black;
+ animation: fadeIn 0.3s ease-in;
+ backdrop-filter: blur(2px);
+ inset: 0;
+}
+
+.dropzone-content {
+ animation: scaleIn 0.3s ease-out;
+ color: black;
+ text-align: center;
+
+ h3 {
+ margin-top: 16px;
+ font-size: 24px;
+ font-weight: 600;
+ }
+
+ p {
+ font-size: 18px;
+ }
+
+ h3,
+ p {
+ color: black;
+ }
+}
+
+@keyframes fadeIn {
+ from {
+ opacity: 0;
+ }
+
+ to {
+ opacity: 1;
+ }
+}
+
+@keyframes scaleIn {
+ from {
+ opacity: 0;
+ transform: scale(0.9);
+ }
+
+ to {
+ opacity: 1;
+ transform: scale(1);
+ }
+}
diff --git a/frontend/pnpm-lock.yaml b/frontend/pnpm-lock.yaml
index c48c37e7..8fd21d8a 100644
--- a/frontend/pnpm-lock.yaml
+++ b/frontend/pnpm-lock.yaml
@@ -24,7 +24,7 @@ importers:
devDependencies:
mrs-developer:
specifier: ^2.2.0
- version: 2.3.0
+ version: 2.3.2
core/packages/blocks:
dependencies:
@@ -52,49 +52,49 @@ importers:
version: link:../types
'@testing-library/jest-dom':
specifier: 6.4.2
- version: 6.4.2(@jest/globals@29.7.0)(@types/jest@29.5.14)(vitest@2.1.9)
+ version: 6.4.2(@types/jest@30.0.0)(vitest@2.1.9)
'@testing-library/react':
specifier: 14.3.1
- version: 14.3.1(@types/react@18.3.24)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ version: 14.3.1(@types/react@18.3.27)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
'@types/jest-axe':
specifier: ^3.5.7
version: 3.5.9
'@types/node':
specifier: ^24
- version: 24.10.0
+ version: 24.10.1
'@types/react':
specifier: ^18
- version: 18.3.24
+ version: 18.3.27
'@types/react-dom':
specifier: ^18
- version: 18.3.7(@types/react@18.3.24)
+ version: 18.3.7(@types/react@18.3.27)
jest-axe:
specifier: ^8.0.0
version: 8.0.0
release-it:
specifier: 17.1.1
- version: 17.1.1(typescript@5.9.2)
+ version: 17.1.1(typescript@5.9.3)
tsconfig:
specifier: workspace:*
version: link:../tsconfig
typescript:
specifier: ^5.7.3
- version: 5.9.2
+ version: 5.9.3
vitest:
specifier: ^2.1.3
- version: 2.1.9(@types/node@24.10.0)(@vitest/ui@2.1.9)(jsdom@22.1.0)(less@3.11.1)(lightningcss@1.30.2)(sass@1.92.0)(terser@5.44.0)
+ version: 2.1.9(@types/node@24.10.1)(@vitest/ui@2.1.9)(jsdom@22.1.0)(less@3.11.1)(lightningcss@1.30.2)(sass@1.58.0)(terser@5.44.1)
core/packages/client:
dependencies:
axios:
specifier: ^1.8.2
- version: 1.11.0(debug@4.3.4)
+ version: 1.13.2(debug@4.3.4)
debug:
specifier: 4.3.4
version: 4.3.4(supports-color@8.1.1)
query-string:
specifier: ^9.0.0
- version: 9.2.2
+ version: 9.3.1
react:
specifier: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
version: 18.2.0
@@ -116,22 +116,22 @@ importers:
version: 5.16.5
'@testing-library/react':
specifier: 14.3.1
- version: 14.3.1(@types/react@18.3.24)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ version: 14.3.1(@types/react@18.3.27)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
'@types/debug':
specifier: ^4.1.12
version: 4.1.12
'@types/react':
specifier: ^18
- version: 18.3.24
+ version: 18.3.27
'@types/react-dom':
specifier: ^18
- version: 18.3.7(@types/react@18.3.24)
+ version: 18.3.7(@types/react@18.3.27)
'@types/uuid':
specifier: ^9.0.2
version: 9.0.8
'@vitejs/plugin-react':
specifier: ^4.1.0
- version: 4.7.0(vite@6.4.1(@types/node@24.10.0)(jiti@2.6.1)(less@3.11.1)(lightningcss@1.30.2)(sass@1.92.0)(terser@5.44.0)(yaml@2.8.1))
+ version: 4.7.0(vite@6.4.1(@types/node@24.10.1)(jiti@2.6.1)(less@3.11.1)(lightningcss@1.30.2)(sass@1.58.0)(terser@5.44.1)(yaml@2.8.2))
'@vitest/coverage-v8':
specifier: ^1.3.1
version: 1.6.1(vitest@2.1.9)
@@ -140,19 +140,19 @@ importers:
version: 21.1.2
release-it:
specifier: 17.1.1
- version: 17.1.1(typescript@5.9.2)
+ version: 17.1.1(typescript@5.9.3)
tsup:
specifier: ^8.3.5
- version: 8.5.0(@microsoft/api-extractor@7.43.0(@types/node@24.10.0))(jiti@2.6.1)(postcss@8.5.6)(typescript@5.9.2)(yaml@2.8.1)
+ version: 8.5.1(jiti@2.6.1)(postcss@8.5.6)(typescript@5.9.3)(yaml@2.8.2)
typescript:
specifier: ^5.7.3
- version: 5.9.2
+ version: 5.9.3
uuid:
specifier: ^9.0.1
version: 9.0.1
vitest:
specifier: ^2.1.3
- version: 2.1.9(@types/node@24.10.0)(@vitest/ui@2.1.9)(jsdom@21.1.2)(less@3.11.1)(lightningcss@1.30.2)(sass@1.92.0)(terser@5.44.0)
+ version: 2.1.9(@types/node@24.10.1)(@vitest/ui@2.1.9)(jsdom@21.1.2)(less@3.11.1)(lightningcss@1.30.2)(sass@1.58.0)(terser@5.44.1)
wait-on:
specifier: ^7.2.0
version: 7.2.0(debug@4.3.4)
@@ -188,16 +188,16 @@ importers:
version: 3.42.0(react@18.2.0)
tailwind-merge:
specifier: ^3.0.1
- version: 3.3.1
+ version: 3.4.0
tailwind-variants:
specifier: ^1.0.0
- version: 1.0.0(tailwindcss@4.1.16)
+ version: 1.0.0(tailwindcss@4.1.17)
tailwindcss:
specifier: ^4.1.12
- version: 4.1.16
+ version: 4.1.17
tailwindcss-animate:
specifier: ^1.0.7
- version: 1.0.7(tailwindcss@4.1.16)
+ version: 1.0.7(tailwindcss@4.1.17)
devDependencies:
'@arethetypeswrong/cli':
specifier: ^0.16.4
@@ -210,34 +210,34 @@ importers:
version: 3.32.1(react@18.2.0)
'@svgr/plugin-svgo':
specifier: ^8.1.0
- version: 8.1.0(@svgr/core@8.1.0(typescript@5.9.2))(typescript@5.9.2)
+ version: 8.1.0(@svgr/core@8.1.0(typescript@5.9.3))(typescript@5.9.3)
'@tailwindcss/vite':
specifier: ^4.1.4
- version: 4.1.16(vite@6.4.1(@types/node@24.10.0)(jiti@2.6.1)(less@3.11.1)(lightningcss@1.30.1)(sass@1.92.0)(terser@5.44.0)(yaml@2.8.1))
+ version: 4.1.17(vite@6.4.1(@types/node@24.10.1)(jiti@2.6.1)(less@3.11.1)(lightningcss@1.30.2)(sass@1.58.0)(terser@5.44.1)(yaml@2.8.2))
'@testing-library/jest-dom':
specifier: 6.4.2
- version: 6.4.2(@jest/globals@29.7.0)(@types/jest@29.5.14)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@24.10.0)(jsdom@22.1.0)(less@3.11.1)(lightningcss@1.30.1)(sass@1.92.0)(terser@5.44.0))
+ version: 6.4.2(@types/jest@30.0.0)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@24.10.1)(jiti@2.6.1)(jsdom@22.1.0)(less@3.11.1)(lightningcss@1.30.2)(sass@1.58.0)(terser@5.44.1)(yaml@2.8.2))
'@testing-library/react':
specifier: ^16.3.0
- version: 16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ version: 16.3.0(@testing-library/dom@10.4.1)(@types/react-dom@18.3.7(@types/react@18.3.27))(@types/react@18.3.27)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
'@types/jest-axe':
specifier: ^3.5.7
version: 3.5.9
'@types/react':
specifier: ^18.3.1
- version: 18.3.24
+ version: 18.3.27
'@types/react-dom':
specifier: ^18.3.1
- version: 18.3.7(@types/react@18.3.24)
+ version: 18.3.7(@types/react@18.3.27)
'@vitejs/plugin-react':
specifier: ^5.0.2
- version: 5.1.0(vite@6.4.1(@types/node@24.10.0)(jiti@2.6.1)(less@3.11.1)(lightningcss@1.30.1)(sass@1.92.0)(terser@5.44.0)(yaml@2.8.1))
+ version: 5.1.1(vite@6.4.1(@types/node@24.10.1)(jiti@2.6.1)(less@3.11.1)(lightningcss@1.30.2)(sass@1.58.0)(terser@5.44.1)(yaml@2.8.2))
'@vitest/coverage-v8':
specifier: ^3.2.4
- version: 3.2.4(vitest@3.2.4(@types/debug@4.1.12)(@types/node@24.10.0)(jsdom@22.1.0)(less@3.11.1)(lightningcss@1.30.1)(sass@1.92.0)(terser@5.44.0))
+ version: 3.2.4(vitest@3.2.4(@types/debug@4.1.12)(@types/node@24.10.1)(jiti@2.6.1)(jsdom@22.1.0)(less@3.11.1)(lightningcss@1.30.2)(sass@1.58.0)(terser@5.44.1)(yaml@2.8.2))
browserslist:
specifier: ^4.23.0
- version: 4.25.4
+ version: 4.28.0
jest-axe:
specifier: ^8.0.0
version: 8.0.0
@@ -246,37 +246,37 @@ importers:
version: 22.1.0
lightningcss:
specifier: ^1.29.0
- version: 1.30.1
+ version: 1.30.2
lightningcss-cli:
specifier: ^1.29.1
- version: 1.30.1
+ version: 1.30.2
release-it:
specifier: ^19.0.5
- version: 19.0.5(@types/node@24.10.0)(magicast@0.3.5)
+ version: 19.0.6(@types/node@24.10.1)(magicast@0.3.5)
tailwindcss-react-aria-components:
specifier: ^2.0.0
- version: 2.0.1(tailwindcss@4.1.16)
+ version: 2.0.1(tailwindcss@4.1.17)
tsup:
specifier: ^8.5.0
- version: 8.5.0(@microsoft/api-extractor@7.43.0(@types/node@24.10.0))(jiti@2.6.1)(postcss@8.5.6)(typescript@5.9.2)(yaml@2.8.1)
+ version: 8.5.1(jiti@2.6.1)(postcss@8.5.6)(typescript@5.9.3)(yaml@2.8.2)
typescript:
specifier: ^5.9.2
- version: 5.9.2
+ version: 5.9.3
vite:
specifier: ^6.3.3
- version: 6.4.1(@types/node@24.10.0)(jiti@2.6.1)(less@3.11.1)(lightningcss@1.30.1)(sass@1.92.0)(terser@5.44.0)(yaml@2.8.1)
+ version: 6.4.1(@types/node@24.10.1)(jiti@2.6.1)(less@3.11.1)(lightningcss@1.30.2)(sass@1.58.0)(terser@5.44.1)(yaml@2.8.2)
vite-plugin-svgr:
specifier: ^4.3.0
- version: 4.5.0(rollup@4.50.0)(typescript@5.9.2)(vite@6.4.1(@types/node@24.10.0)(jiti@2.6.1)(less@3.11.1)(lightningcss@1.30.1)(sass@1.92.0)(terser@5.44.0)(yaml@2.8.1))
+ version: 4.5.0(rollup@4.53.3)(typescript@5.9.3)(vite@6.4.1(@types/node@24.10.1)(jiti@2.6.1)(less@3.11.1)(lightningcss@1.30.2)(sass@1.58.0)(terser@5.44.1)(yaml@2.8.2))
vite-tsconfig-paths:
specifier: ^5.1.4
- version: 5.1.4(typescript@5.9.2)(vite@6.4.1(@types/node@24.10.0)(jiti@2.6.1)(less@3.11.1)(lightningcss@1.30.1)(sass@1.92.0)(terser@5.44.0)(yaml@2.8.1))
+ version: 5.1.4(typescript@5.9.3)(vite@6.4.1(@types/node@24.10.1)(jiti@2.6.1)(less@3.11.1)(lightningcss@1.30.2)(sass@1.58.0)(terser@5.44.1)(yaml@2.8.2))
vitest:
specifier: ^3.2.4
- version: 3.2.4(@types/debug@4.1.12)(@types/node@24.10.0)(jsdom@22.1.0)(less@3.11.1)(lightningcss@1.30.1)(sass@1.92.0)(terser@5.44.0)
+ version: 3.2.4(@types/debug@4.1.12)(@types/node@24.10.1)(jiti@2.6.1)(jsdom@22.1.0)(less@3.11.1)(lightningcss@1.30.2)(sass@1.58.0)(terser@5.44.1)(yaml@2.8.2)
vitest-axe:
specifier: ^0.1.0
- version: 0.1.0(vitest@3.2.4(@types/debug@4.1.12)(@types/node@24.10.0)(jsdom@22.1.0)(less@3.11.1)(lightningcss@1.30.1)(sass@1.92.0)(terser@5.44.0))
+ version: 0.1.0(vitest@3.2.4(@types/debug@4.1.12)(@types/node@24.10.1)(jiti@2.6.1)(jsdom@22.1.0)(less@3.11.1)(lightningcss@1.30.2)(sass@1.58.0)(terser@5.44.1)(yaml@2.8.2))
core/packages/coresandbox:
dependencies:
@@ -288,10 +288,10 @@ importers:
version: 18.2.0(react@18.2.0)
react-intl:
specifier: 3.12.1
- version: 3.12.1(@types/react@18.3.24)(react@18.2.0)
+ version: 3.12.1(@types/react@18.3.27)(react@18.2.0)
react-redux:
specifier: 8.1.2
- version: 8.1.2(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(redux@4.2.1)
+ version: 8.1.2(@types/react-dom@18.3.7(@types/react@18.3.27))(@types/react@18.3.27)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(redux@4.2.1)
semantic-ui-react:
specifier: 2.1.5
version: 2.1.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
@@ -304,10 +304,10 @@ importers:
version: link:../types
'@types/react':
specifier: ^18
- version: 18.3.24
+ version: 18.3.27
'@types/react-dom':
specifier: ^18
- version: 18.3.7(@types/react@18.3.24)
+ version: 18.3.7(@types/react@18.3.27)
'@types/react-redux':
specifier: ^7.1.33
version: 7.1.34
@@ -328,25 +328,25 @@ importers:
version: link:../types
'@types/react':
specifier: ^18
- version: 18.3.24
+ version: 18.3.27
'@types/react-dom':
specifier: ^18
- version: 18.3.7(@types/react@18.3.24)
+ version: 18.3.7(@types/react@18.3.27)
release-it:
specifier: ^17.1.1
- version: 17.1.1(typescript@5.9.2)
+ version: 17.1.1(typescript@5.9.3)
tsconfig:
specifier: workspace:*
version: link:../tsconfig
tsup:
specifier: ^8.3.5
- version: 8.5.0(@microsoft/api-extractor@7.43.0(@types/node@24.10.0))(jiti@2.6.1)(postcss@8.5.6)(typescript@5.9.2)(yaml@2.8.1)
+ version: 8.5.1(jiti@2.6.1)(postcss@8.5.6)(typescript@5.9.3)(yaml@2.8.2)
typescript:
specifier: ^5.7.3
- version: 5.9.2
+ version: 5.9.3
vitest:
specifier: ^2.1.3
- version: 2.1.9(@types/node@24.10.0)(@vitest/ui@2.1.9)(jsdom@22.1.0)(less@3.11.1)(lightningcss@1.30.2)(sass@1.92.0)(terser@5.44.0)
+ version: 2.1.9(@types/node@24.10.1)(@vitest/ui@2.1.9)(jsdom@22.1.0)(less@3.11.1)(lightningcss@1.30.2)(sass@1.58.0)(terser@5.44.1)
core/packages/layout:
dependencies:
@@ -367,7 +367,7 @@ importers:
version: 18.2.0
react-aria-components:
specifier: ^1.5.0
- version: 1.12.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ version: 1.13.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
react-dom:
specifier: ^18.2.0 || ^19.0.0
version: 18.2.0(react@18.2.0)
@@ -377,7 +377,7 @@ importers:
version: link:../types
'@storybook/addon-essentials':
specifier: ^8.5.3
- version: 8.6.14(@types/react@18.3.24)(storybook@8.6.14(prettier@3.2.5))
+ version: 8.6.14(@types/react@18.3.27)(storybook@8.6.14(prettier@3.2.5))
'@storybook/addon-interactions':
specifier: ^8.5.3
version: 8.6.14(storybook@8.6.14(prettier@3.2.5))
@@ -395,40 +395,40 @@ importers:
version: 8.6.14(storybook@8.6.14(prettier@3.2.5))
'@storybook/react':
specifier: ^8.5.3
- version: 8.6.14(@storybook/test@8.6.14(storybook@8.6.14(prettier@3.2.5)))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(storybook@8.6.14(prettier@3.2.5))(typescript@5.9.2)
+ version: 8.6.14(@storybook/test@8.6.14(storybook@8.6.14(prettier@3.2.5)))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(storybook@8.6.14(prettier@3.2.5))(typescript@5.9.3)
'@storybook/react-vite':
specifier: ^8.5.3
- version: 8.6.14(@storybook/test@8.6.14(storybook@8.6.14(prettier@3.2.5)))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(rollup@4.50.0)(storybook@8.6.14(prettier@3.2.5))(typescript@5.9.2)(vite@5.4.19(@types/node@24.10.0)(less@3.11.1)(lightningcss@1.30.2)(sass@1.92.0)(terser@5.44.0))
+ version: 8.6.14(@storybook/test@8.6.14(storybook@8.6.14(prettier@3.2.5)))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(rollup@4.53.3)(storybook@8.6.14(prettier@3.2.5))(typescript@5.9.3)(vite@5.4.21(@types/node@24.10.1)(less@3.11.1)(lightningcss@1.30.2)(sass@1.58.0)(terser@5.44.1))
'@storybook/theming':
specifier: ^8.5.3
version: 8.6.14(storybook@8.6.14(prettier@3.2.5))
'@testing-library/jest-dom':
specifier: 6.4.2
- version: 6.4.2(@jest/globals@29.7.0)(@types/jest@29.5.14)(vitest@2.1.9)
+ version: 6.4.2(@types/jest@30.0.0)(vitest@2.1.9)
'@testing-library/react':
specifier: 14.3.1
- version: 14.3.1(@types/react@18.3.24)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ version: 14.3.1(@types/react@18.3.27)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
'@types/jest-axe':
specifier: ^3.5.7
version: 3.5.9
'@types/node':
specifier: ^24
- version: 24.10.0
+ version: 24.10.1
'@types/react':
specifier: ^18
- version: 18.3.24
+ version: 18.3.27
'@types/react-dom':
specifier: ^18
- version: 18.3.7(@types/react@18.3.24)
+ version: 18.3.7(@types/react@18.3.27)
eslint-plugin-storybook:
specifier: ^0.11.2
- version: 0.11.6(eslint@8.57.1)(typescript@5.9.2)
+ version: 0.11.6(eslint@8.57.1)(typescript@5.9.3)
jest-axe:
specifier: ^8.0.0
version: 8.0.0
release-it:
specifier: 17.1.1
- version: 17.1.1(typescript@5.9.2)
+ version: 17.1.1(typescript@5.9.3)
storybook:
specifier: ^8.5.3
version: 8.6.14(prettier@3.2.5)
@@ -437,13 +437,13 @@ importers:
version: link:../tsconfig
typescript:
specifier: ^5.7.3
- version: 5.9.2
+ version: 5.9.3
vite:
specifier: ^5.4.16
- version: 5.4.19(@types/node@24.10.0)(less@3.11.1)(lightningcss@1.30.2)(sass@1.92.0)(terser@5.44.0)
+ version: 5.4.21(@types/node@24.10.1)(less@3.11.1)(lightningcss@1.30.2)(sass@1.58.0)(terser@5.44.1)
vitest:
specifier: ^2.1.3
- version: 2.1.9(@types/node@24.10.0)(@vitest/ui@2.1.9)(jsdom@22.1.0)(less@3.11.1)(lightningcss@1.30.2)(sass@1.92.0)(terser@5.44.0)
+ version: 2.1.9(@types/node@24.10.1)(@vitest/ui@2.1.9)(jsdom@22.1.0)(less@3.11.1)(lightningcss@1.30.2)(sass@1.58.0)(terser@5.44.1)
vitest-axe:
specifier: ^0.1.0
version: 0.1.0(vitest@2.1.9)
@@ -458,13 +458,13 @@ importers:
version: link:../registry
'@tanstack/react-query':
specifier: ^5.59.0
- version: 5.85.9(react@18.2.0)
+ version: 5.90.11(react@18.2.0)
react:
specifier: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
version: 18.2.0
react-aria-components:
specifier: ^1.6.0
- version: 1.12.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ version: 1.13.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
react-dom:
specifier: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
version: 18.2.0(react@18.2.0)
@@ -477,25 +477,25 @@ importers:
version: link:../types
'@types/react':
specifier: ^18
- version: 18.3.24
+ version: 18.3.27
'@types/react-dom':
specifier: ^18
- version: 18.3.7(@types/react@18.3.24)
+ version: 18.3.7(@types/react@18.3.27)
release-it:
specifier: 17.1.1
- version: 17.1.1(typescript@5.9.2)
+ version: 17.1.1(typescript@5.9.3)
tsconfig:
specifier: workspace:*
version: link:../tsconfig
tsup:
specifier: ^8.3.5
- version: 8.5.0(@microsoft/api-extractor@7.43.0(@types/node@24.10.0))(jiti@2.6.1)(postcss@8.5.6)(typescript@5.9.2)(yaml@2.8.1)
+ version: 8.5.1(jiti@2.6.1)(postcss@8.5.6)(typescript@5.9.3)(yaml@2.8.2)
typescript:
specifier: ^5.7.3
- version: 5.9.2
+ version: 5.9.3
vitest:
specifier: ^2.1.3
- version: 2.1.9(@types/node@24.10.0)(@vitest/ui@2.1.9)(jsdom@22.1.0)(less@3.11.1)(lightningcss@1.30.2)(sass@1.92.0)(terser@5.44.0)
+ version: 2.1.9(@types/node@24.10.1)(@vitest/ui@2.1.9)(jsdom@22.1.0)(less@3.11.1)(lightningcss@1.30.2)(sass@1.58.0)(terser@5.44.1)
core/packages/registry:
dependencies:
@@ -516,7 +516,7 @@ importers:
version: 0.10.0
glob:
specifier: ^10.4.5
- version: 10.4.5
+ version: 10.5.0
react:
specifier: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
version: 18.2.0
@@ -541,40 +541,40 @@ importers:
version: 8.1.0
'@types/node':
specifier: ^24
- version: 24.10.0
+ version: 24.10.1
'@types/react':
specifier: ^18
- version: 18.3.24
+ version: 18.3.27
'@types/react-dom':
specifier: ^18
- version: 18.3.7(@types/react@18.3.24)
+ version: 18.3.7(@types/react@18.3.27)
'@types/tmp':
specifier: ^0.2.6
version: 0.2.6
release-it:
specifier: ^19.0.5
- version: 19.0.5(@types/node@24.10.0)(magicast@0.3.5)
+ version: 19.0.6(@types/node@24.10.1)(magicast@0.3.5)
tsconfig:
specifier: workspace:*
version: link:../tsconfig
tsup:
specifier: ^8.3.5
- version: 8.5.0(@microsoft/api-extractor@7.43.0(@types/node@24.10.0))(jiti@2.6.1)(postcss@8.5.6)(typescript@5.9.2)(yaml@2.8.1)
+ version: 8.5.1(jiti@2.6.1)(postcss@8.5.6)(typescript@5.9.3)(yaml@2.8.2)
typescript:
specifier: ^5.7.3
- version: 5.9.2
+ version: 5.9.3
vite:
specifier: ^5.4.16
- version: 5.4.19(@types/node@24.10.0)(less@3.11.1)(lightningcss@1.30.2)(sass@1.92.0)(terser@5.44.0)
+ version: 5.4.21(@types/node@24.10.1)(less@3.11.1)(lightningcss@1.30.2)(sass@1.58.0)(terser@5.44.1)
vitest:
specifier: ^2.1.3
- version: 2.1.9(@types/node@24.10.0)(@vitest/ui@2.1.9)(jsdom@22.1.0)(less@3.11.1)(lightningcss@1.30.2)(sass@1.92.0)(terser@5.44.0)
+ version: 2.1.9(@types/node@24.10.1)(@vitest/ui@2.1.9)(jsdom@22.1.0)(less@3.11.1)(lightningcss@1.30.2)(sass@1.58.0)(terser@5.44.1)
core/packages/scripts:
dependencies:
'@babel/core':
specifier: ^7.0.0
- version: 7.28.3
+ version: 7.28.5
'@plone/babel-preset-razzle':
specifier: workspace:^
version: link:../volto-babel-preset-razzle
@@ -589,7 +589,7 @@ importers:
version: 8.2.0
comment-json:
specifier: ^4.2.3
- version: 4.2.5
+ version: 4.4.1
execa:
specifier: 9.6.0
version: 9.6.0
@@ -604,13 +604,13 @@ importers:
version: 13.1.1
glob:
specifier: ^10.4.5
- version: 10.4.5
+ version: 10.5.0
lodash:
specifier: 4.17.21
version: 4.17.21
mrs-developer:
specifier: ^2.1.1
- version: 2.3.0
+ version: 2.3.2
pofile:
specifier: 1.0.10
version: 1.0.10
@@ -620,7 +620,7 @@ importers:
devDependencies:
release-it:
specifier: ^16.1.3
- version: 16.2.1(encoding@0.1.13)(typescript@5.9.2)
+ version: 16.3.0(encoding@0.1.13)(typescript@5.9.3)
core/packages/theming:
dependencies:
@@ -648,28 +648,28 @@ importers:
version: link:../types
'@types/react':
specifier: ^18
- version: 18.3.24
+ version: 18.3.27
'@types/react-dom':
specifier: ^18
- version: 18.3.7(@types/react@18.3.24)
+ version: 18.3.7(@types/react@18.3.27)
jest-axe:
specifier: ^8.0.0
version: 8.0.0
release-it:
specifier: 17.1.1
- version: 17.1.1(typescript@5.9.2)
+ version: 17.1.1(typescript@5.9.3)
tsconfig:
specifier: workspace:*
version: link:../tsconfig
typescript:
specifier: ^5.7.3
- version: 5.9.2
+ version: 5.9.3
vite:
specifier: ^5.4.16
- version: 5.4.19(@types/node@24.10.0)(less@3.11.1)(lightningcss@1.28.1)(sass@1.92.0)(terser@5.44.0)
+ version: 5.4.21(@types/node@24.10.1)(less@3.11.1)(lightningcss@1.28.1)(sass@1.58.0)(terser@5.44.1)
vitest:
specifier: ^2.1.3
- version: 2.1.9(@types/node@24.10.0)(@vitest/ui@2.1.9)(jsdom@22.1.0)(less@3.11.1)(lightningcss@1.28.1)(sass@1.92.0)(terser@5.44.0)
+ version: 2.1.9(@types/node@24.10.1)(@vitest/ui@2.1.9)(jsdom@22.1.0)(less@3.11.1)(lightningcss@1.28.1)(sass@1.58.0)(terser@5.44.1)
vitest-axe:
specifier: ^0.1.0
version: 0.1.0(vitest@2.1.9)
@@ -687,19 +687,19 @@ importers:
devDependencies:
'@types/react':
specifier: ^18
- version: 18.3.24
+ version: 18.3.27
'@types/react-dom':
specifier: ^18
- version: 18.3.7(@types/react@18.3.24)
+ version: 18.3.7(@types/react@18.3.27)
release-it:
specifier: ^19.0.5
- version: 19.0.5(@types/node@24.10.0)(magicast@0.3.5)
+ version: 19.0.6(@types/node@24.10.1)(magicast@0.3.5)
tsconfig:
specifier: workspace:*
version: link:../tsconfig
typescript:
specifier: ^5.7.3
- version: 5.9.2
+ version: 5.9.3
core/packages/volto:
dependencies:
@@ -738,7 +738,7 @@ importers:
version: 2.5.1
connected-react-router:
specifier: 6.8.0
- version: 6.8.0(history@4.10.1)(immutable@3.8.2)(react-redux@8.1.2(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(redux@4.2.1))(react-router@5.2.0(react@18.2.0))(react@18.2.0)(redux@4.2.1)(seamless-immutable@7.1.4)
+ version: 6.8.0(history@4.10.1)(immutable@3.8.2)(react-redux@8.1.2(@types/react-dom@18.3.7(@types/react@18.3.27))(@types/react@18.3.27)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(redux@4.2.1))(react-router@5.2.0(react@18.2.0))(react@18.2.0)(redux@4.2.1)(seamless-immutable@7.1.4)
debug:
specifier: 4.3.4
version: 4.3.4(supports-color@8.1.1)
@@ -792,7 +792,7 @@ importers:
version: 1.2.4
jotai:
specifier: 2.11.3
- version: 2.11.3(@types/react@18.3.24)(react@18.2.0)
+ version: 2.11.3(@types/react@18.3.27)(react@18.2.0)
jwt-decode:
specifier: 2.2.0
version: 2.2.0
@@ -837,7 +837,7 @@ importers:
version: 15.7.2
query-string:
specifier: ^9.0.0
- version: 9.2.2
+ version: 9.3.1
rc-time-picker:
specifier: 3.7.3
version: 3.7.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
@@ -855,7 +855,7 @@ importers:
version: 13.0.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
react-cookie:
specifier: 4.1.1
- version: 4.1.1(@types/react@18.3.24)(react@18.2.0)
+ version: 4.1.1(@types/react@18.3.27)(react@18.2.0)
react-dates:
specifier: 21.5.1
version: 21.5.1(@babel/runtime@7.28.4)(moment@2.29.4)(react-dom@18.2.0(react@18.2.0))(react-with-direction@1.4.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react@18.2.0)
@@ -885,10 +885,10 @@ importers:
version: 9.1.0(react@18.2.0)
react-intl:
specifier: 3.12.1
- version: 3.12.1(@types/react@18.3.24)(react@18.2.0)
+ version: 3.12.1(@types/react@18.3.27)(react@18.2.0)
react-intl-redux:
specifier: 2.3.0
- version: 2.3.0(@babel/runtime@7.28.4)(prop-types@15.7.2)(react-intl@3.12.1(@types/react@18.3.24)(react@18.2.0))(react-redux@8.1.2(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(redux@4.2.1))(react@18.2.0)
+ version: 2.3.0(@babel/runtime@7.28.4)(prop-types@15.7.2)(react-intl@3.12.1(@types/react@18.3.27)(react@18.2.0))(react-redux@8.1.2(@types/react-dom@18.3.7(@types/react@18.3.27))(@types/react@18.3.27)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(redux@4.2.1))(react@18.2.0)
react-medium-image-zoom:
specifier: 3.0.15
version: 3.0.15(prop-types@15.7.2)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
@@ -897,7 +897,7 @@ importers:
version: 2.3.0(@popperjs/core@2.11.8)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
react-redux:
specifier: 8.1.2
- version: 8.1.2(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(redux@4.2.1)
+ version: 8.1.2(@types/react-dom@18.3.7(@types/react@18.3.27))(@types/react@18.3.27)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(redux@4.2.1)
react-router:
specifier: 5.2.0
version: 5.2.0(react@18.2.0)
@@ -912,10 +912,10 @@ importers:
version: 2.4.3(react-router-dom@5.2.0(react@18.2.0))(react@18.2.0)
react-select:
specifier: 4.3.1
- version: 4.3.1(@types/react@18.3.24)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ version: 4.3.1(@types/react@18.3.27)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
react-select-async-paginate:
specifier: 0.5.3
- version: 0.5.3(react-dom@18.2.0(react@18.2.0))(react-select@4.3.1(@types/react@18.3.24)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react@18.2.0)
+ version: 0.5.3(react-dom@18.2.0(react@18.2.0))(react-select@4.3.1(@types/react@18.3.27)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react@18.2.0)
react-side-effect:
specifier: 2.1.2
version: 2.1.2(react@18.2.0)
@@ -945,7 +945,7 @@ importers:
version: 3.0.0
redux-connect:
specifier: 10.0.0
- version: 10.0.0(prop-types@15.7.2)(react-redux@8.1.2(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(redux@4.2.1))(react-router-config@5.1.1(react-router@5.2.0(react@18.2.0))(react@18.2.0))(react-router-dom@5.2.0(react@18.2.0))(react-router@5.2.0(react@18.2.0))(react@18.2.0)(redux-actions@3.0.0)
+ version: 10.0.0(prop-types@15.7.2)(react-redux@8.1.2(@types/react-dom@18.3.7(@types/react@18.3.27))(@types/react@18.3.27)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(redux@4.2.1))(react-router-config@5.1.1(react-router@5.2.0(react@18.2.0))(react@18.2.0))(react-router-dom@5.2.0(react@18.2.0))(react-router@5.2.0(react@18.2.0))(react@18.2.0)(redux-actions@3.0.0)
redux-localstorage-simple:
specifier: 2.5.1
version: 2.5.1
@@ -1051,10 +1051,10 @@ importers:
version: 8.6.14(storybook@8.6.14(prettier@3.2.5))
'@storybook/addon-docs':
specifier: ^8.0.4
- version: 8.6.14(@types/react@18.3.24)(storybook@8.6.14(prettier@3.2.5))
+ version: 8.6.14(@types/react@18.3.27)(storybook@8.6.14(prettier@3.2.5))
'@storybook/addon-essentials':
specifier: ^8.0.4
- version: 8.6.14(@types/react@18.3.24)(storybook@8.6.14(prettier@3.2.5))
+ version: 8.6.14(@types/react@18.3.27)(storybook@8.6.14(prettier@3.2.5))
'@storybook/addon-links':
specifier: ^8.0.4
version: 8.6.14(react@18.2.0)(storybook@8.6.14(prettier@3.2.5))
@@ -1063,10 +1063,10 @@ importers:
version: 3.0.3(webpack@5.90.1)
'@storybook/react':
specifier: ^8.0.4
- version: 8.6.14(@storybook/test@8.6.14(storybook@8.6.14(prettier@3.2.5)))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(storybook@8.6.14(prettier@3.2.5))(typescript@5.9.2)
+ version: 8.6.14(@storybook/test@8.6.14(storybook@8.6.14(prettier@3.2.5)))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(storybook@8.6.14(prettier@3.2.5))(typescript@5.9.3)
'@storybook/react-webpack5':
specifier: ^8.0.4
- version: 8.6.14(@storybook/test@8.6.14(storybook@8.6.14(prettier@3.2.5)))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(storybook@8.6.14(prettier@3.2.5))(typescript@5.9.2)
+ version: 8.6.14(@storybook/test@8.6.14(storybook@8.6.14(prettier@3.2.5)))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(storybook@8.6.14(prettier@3.2.5))(typescript@5.9.3)
'@storybook/theming':
specifier: ^8.0.4
version: 8.6.14(storybook@8.6.14(prettier@3.2.5))
@@ -1075,13 +1075,13 @@ importers:
version: 10.1.0(cypress@15.5.0)
'@testing-library/jest-dom':
specifier: 6.4.2
- version: 6.4.2(@jest/globals@29.7.0)(@types/jest@29.5.14)(vitest@3.2.4)
+ version: 6.4.2(@types/jest@30.0.0)(vitest@3.2.4)
'@testing-library/react':
specifier: 14.3.1
- version: 14.3.1(@types/react@18.3.24)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ version: 14.3.1(@types/react@18.3.27)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
'@testing-library/react-hooks':
specifier: 8.0.1
- version: 8.0.1(@types/react@18.3.24)(react-dom@18.2.0(react@18.2.0))(react-test-renderer@18.2.0(react@18.2.0))(react@18.2.0)
+ version: 8.0.1(@types/react@18.3.27)(react-dom@18.2.0(react@18.2.0))(react-test-renderer@18.2.0(react@18.2.0))(react@18.2.0)
'@types/history':
specifier: ^4.7.11
version: 4.7.11
@@ -1090,19 +1090,19 @@ importers:
version: 5.13.10
'@types/lodash':
specifier: ^4.14.201
- version: 4.17.20
+ version: 4.17.21
'@types/node':
specifier: ^24
- version: 24.10.0
+ version: 24.10.1
'@types/react':
specifier: ^18
- version: 18.3.24
+ version: 18.3.27
'@types/react-dom':
specifier: ^18
- version: 18.3.7(@types/react@18.3.24)
+ version: 18.3.7(@types/react@18.3.27)
'@types/react-intl-redux':
specifier: ^0.1.19
- version: 0.1.19(@types/react@18.3.24)(react@18.2.0)
+ version: 0.1.19(@types/react@18.3.27)(react@18.2.0)
'@types/react-router-dom':
specifier: ^5.3.3
version: 5.3.3
@@ -1117,13 +1117,13 @@ importers:
version: 9.0.8
'@typescript-eslint/eslint-plugin':
specifier: ^7.7.0
- version: 7.18.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.9.2))(eslint@8.57.1)(typescript@5.9.2)
+ version: 7.18.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.9.3))(eslint@8.57.1)(typescript@5.9.3)
'@typescript-eslint/parser':
specifier: ^7.7.0
- version: 7.18.0(eslint@8.57.1)(typescript@5.9.2)
+ version: 7.18.0(eslint@8.57.1)(typescript@5.9.3)
'@vitejs/plugin-react':
specifier: ^4.3.4
- version: 4.7.0(vite@6.4.1(@types/node@24.10.0)(jiti@2.5.1)(less@3.11.1)(lightningcss@1.30.2)(sass@1.58.0)(terser@5.44.0)(yaml@2.8.1))
+ version: 4.7.0(vite@6.4.1(@types/node@24.10.1)(jiti@2.6.1)(less@3.11.1)(lightningcss@1.30.2)(sass@1.58.0)(terser@5.44.1)(yaml@2.8.2))
'@vitest/ui':
specifier: ^2.1.8
version: 2.1.9(vitest@3.2.4)
@@ -1177,7 +1177,7 @@ importers:
version: 9.1.2(eslint@8.57.1)
eslint-config-react-app:
specifier: ^7.0.1
- version: 7.0.1(@babel/plugin-syntax-flow@7.27.1(@babel/core@7.28.5))(@babel/plugin-transform-react-jsx@7.27.1(@babel/core@7.28.5))(eslint-import-resolver-typescript@3.10.1)(eslint@8.57.1)(typescript@5.9.2)
+ version: 7.0.1(@babel/plugin-syntax-flow@7.27.1(@babel/core@7.28.5))(@babel/plugin-transform-react-jsx@7.27.1(@babel/core@7.28.5))(eslint-import-resolver-typescript@3.10.1)(eslint@8.57.1)(typescript@5.9.3)
eslint-import-resolver-alias:
specifier: ^1.1.2
version: 1.1.2(eslint-plugin-import@2.32.0)
@@ -1189,7 +1189,7 @@ importers:
version: 3.10.1(eslint-plugin-import@2.32.0)(eslint@8.57.1)
eslint-plugin-import:
specifier: ^2.29.1
- version: 2.32.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.9.2))(eslint-import-resolver-typescript@3.10.1)(eslint@8.57.1)
+ version: 2.32.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.9.3))(eslint-import-resolver-typescript@3.10.1)(eslint@8.57.1)
eslint-plugin-jsx-a11y:
specifier: ^6.7.1
version: 6.10.2(eslint@8.57.1)
@@ -1213,7 +1213,7 @@ importers:
version: 3.0.0
jiti:
specifier: ^2.4.2
- version: 2.5.1
+ version: 2.6.1
jsdom:
specifier: ^16.7.0
version: 16.7.0
@@ -1258,10 +1258,10 @@ importers:
version: 4.0.6(postcss@8.4.31)
razzle-dev-utils:
specifier: 4.2.18
- version: 4.2.18(eslint@8.57.1)(typescript@5.9.2)(webpack-dev-server@4.11.1(debug@4.3.4)(webpack@5.90.1))(webpack@5.90.1)
+ version: 4.2.18(eslint@8.57.1)(typescript@5.9.3)(webpack-dev-server@4.11.1(debug@4.3.4)(webpack@5.90.1))(webpack@5.90.1)
react-docgen-typescript-plugin:
specifier: ^1.0.5
- version: 1.0.8(typescript@5.9.2)(webpack@5.90.1)
+ version: 1.0.8(typescript@5.9.3)(webpack@5.90.1)
react-error-overlay:
specifier: 6.0.9
version: 6.0.9
@@ -1270,7 +1270,7 @@ importers:
version: 18.3.1
release-it:
specifier: ^19.0.4
- version: 19.0.5(@types/node@24.10.0)(magicast@0.3.5)
+ version: 19.0.6(@types/node@24.10.1)(magicast@0.3.5)
resolve-url-loader:
specifier: ^3.1.2
version: 3.1.5
@@ -1282,7 +1282,7 @@ importers:
version: 10.5.2(sass@1.58.0)(webpack@5.90.1)
semver:
specifier: ^7.5.4
- version: 7.7.2
+ version: 7.7.3
start-server-and-test:
specifier: 1.14.0
version: 1.14.0
@@ -1294,13 +1294,13 @@ importers:
version: 3.3.1(webpack@5.90.1)
stylelint:
specifier: ^16.3.1
- version: 16.23.1(typescript@5.9.2)
+ version: 16.26.1(typescript@5.9.3)
stylelint-config-idiomatic-order:
specifier: 10.0.0
- version: 10.0.0(stylelint@16.23.1(typescript@5.9.2))
+ version: 10.0.0(stylelint@16.26.1(typescript@5.9.3))
stylelint-prettier:
specifier: 5.0.0
- version: 5.0.0(prettier@3.2.5)(stylelint@16.23.1(typescript@5.9.2))
+ version: 5.0.0(prettier@3.2.5)(stylelint@16.26.1(typescript@5.9.3))
svg-loader:
specifier: 0.0.2
version: 0.0.2
@@ -1318,16 +1318,16 @@ importers:
version: 0.2.1
ts-loader:
specifier: 9.4.4
- version: 9.4.4(typescript@5.9.2)(webpack@5.90.1)
+ version: 9.4.4(typescript@5.9.3)(webpack@5.90.1)
typescript:
specifier: ^5.7.3
- version: 5.9.2
+ version: 5.9.3
use-trace-update:
specifier: 1.3.2
version: 1.3.2
vitest:
specifier: ^3.0.4
- version: 3.2.4(@types/debug@4.1.12)(@types/node@24.10.0)(@vitest/ui@2.1.9)(jsdom@16.7.0)(less@3.11.1)(lightningcss@1.30.2)(sass@1.58.0)(terser@5.44.0)
+ version: 3.2.4(@types/debug@4.1.12)(@types/node@24.10.1)(@vitest/ui@2.1.9)(jiti@2.6.1)(jsdom@16.7.0)(less@3.11.1)(lightningcss@1.30.2)(sass@1.58.0)(terser@5.44.1)(yaml@2.8.2)
wait-on:
specifier: 6.0.0
version: 6.0.0(debug@4.3.4)
@@ -1357,7 +1357,7 @@ importers:
version: 7.27.1(@babel/core@7.28.5)
'@babel/plugin-transform-runtime':
specifier: ^7.9.0
- version: 7.28.3(@babel/core@7.28.5)
+ version: 7.28.5(@babel/core@7.28.5)
'@babel/preset-env':
specifier: ^7.28.5
version: 7.28.5(@babel/core@7.28.5)
@@ -1382,7 +1382,7 @@ importers:
devDependencies:
release-it:
specifier: ^19.0.5
- version: 19.0.5(@types/node@24.10.0)(magicast@0.3.5)
+ version: 19.0.6(@types/node@24.10.1)(magicast@0.3.5)
core/packages/volto-razzle:
dependencies:
@@ -1394,7 +1394,7 @@ importers:
version: link:../volto-babel-preset-razzle
'@pmmmwh/react-refresh-webpack-plugin':
specifier: ^0.5.15
- version: 0.5.17(react-refresh@0.14.2)(sockjs-client@1.4.0)(type-fest@4.41.0)(webpack-dev-server@4.11.1(webpack@5.90.1))(webpack-hot-middleware@2.26.1)(webpack@5.90.1)
+ version: 0.5.17(react-refresh@0.14.2)(sockjs-client@1.4.0)(type-fest@2.19.0)(webpack-dev-server@4.11.1(webpack@5.90.1))(webpack-hot-middleware@2.26.1)(webpack@5.90.1)
autoprefixer:
specifier: ^10.2.3
version: 10.4.8(postcss@8.4.31)
@@ -1454,7 +1454,7 @@ importers:
version: 4.0.1(webpack@5.90.1)
pnp-webpack-plugin:
specifier: ^1.6.4
- version: 1.7.0(typescript@5.9.2)
+ version: 1.7.0(typescript@5.9.3)
postcss:
specifier: ^8.2.4
version: 8.4.31
@@ -1469,22 +1469,22 @@ importers:
version: 0.11.10
razzle-dev-utils:
specifier: 4.2.18
- version: 4.2.18(eslint@8.57.1)(typescript@5.9.2)(vue-template-compiler@2.7.16)(webpack-dev-server@4.11.1(webpack@5.90.1))(webpack@5.90.1)
+ version: 4.2.18(eslint@8.57.1)(typescript@5.9.3)(webpack-dev-server@4.11.1(webpack@5.90.1))(webpack@5.90.1)
razzle-start-server-webpack-plugin:
specifier: 4.2.18
version: 4.2.18(webpack@5.90.1)
react-dev-utils:
specifier: ^11.0.4
- version: 11.0.4(eslint@8.57.1)(typescript@5.9.2)(vue-template-compiler@2.7.16)(webpack@5.90.1)
+ version: 11.0.4(eslint@8.57.1)(typescript@5.9.3)(webpack@5.90.1)
react-refresh:
specifier: ^0.14.2
version: 0.14.2
release-it:
specifier: ^19.0.4
- version: 19.0.5(@types/node@24.10.0)(magicast@0.3.5)
+ version: 19.0.6(@types/node@24.10.1)(magicast@0.3.5)
resolve:
specifier: ^1.17.0
- version: 1.22.10
+ version: 1.22.11
sade:
specifier: ^1.4.2
version: 1.8.1
@@ -1556,10 +1556,10 @@ importers:
version: 9.1.0(react@18.2.0)
react-intl:
specifier: 3.12.1
- version: 3.12.1(@types/react@18.3.24)(react@18.2.0)
+ version: 3.12.1(@types/react@18.3.27)(react@18.2.0)
react-redux:
specifier: 8.1.2
- version: 8.1.2(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(redux@4.2.1)
+ version: 8.1.2(@types/react-dom@18.3.7(@types/react@18.3.27))(@types/react@18.3.27)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(redux@4.2.1)
react-router-dom:
specifier: 5.2.0
version: 5.2.0(react@18.2.0)
@@ -1596,25 +1596,25 @@ importers:
devDependencies:
'@testing-library/react':
specifier: 14.3.1
- version: 14.3.1(@types/react@18.3.24)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ version: 14.3.1(@types/react@18.3.27)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
babel-plugin-transform-class-properties:
specifier: ^6.24.1
version: 6.24.1
release-it:
specifier: ^19.0.5
- version: 19.0.5(@types/node@24.10.0)(magicast@0.3.5)
+ version: 19.0.6(@types/node@24.10.1)(magicast@0.3.5)
packages/kitconcept-core:
dependencies:
'@kitconcept/volto-light-theme':
specifier: ^8.0.0-alpha.8
- version: 8.0.0-alpha.8(classnames@2.5.1)(embla-carousel@8.6.0)(lodash@4.17.21)(react-dom@18.2.0(react@18.2.0))(react-intl@3.12.1(@types/react@18.3.24)(react@18.2.0))(react-redux@8.1.2(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(redux@4.2.1))(react-router-dom@5.2.0(react@18.2.0))(react@18.2.0)
+ version: 8.0.0-alpha.8(classnames@2.5.1)(embla-carousel@8.6.0)(lodash@4.17.21)(react-dom@18.2.0(react@18.2.0))(react-intl@3.12.1(@types/react@18.3.27)(react@18.2.0))(react-redux@8.1.2(@types/react-dom@18.3.7(@types/react@18.3.27))(@types/react@18.3.27)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(redux@4.2.1))(react-router-dom@5.2.0(react@18.2.0))(react@18.2.0)
'@mbarde/volto-image-crop-widget':
specifier: ^0.5.1
version: 0.5.1(react@18.2.0)
'@plone-collective/volto-authomatic':
specifier: 3.0.0-alpha.6
- version: 3.0.0-alpha.6(@plone/components@4.0.0-alpha.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@plone/registry@core+packages+registry)(react-dom@18.2.0(react@18.2.0))(react-intl@3.12.1(@types/react@18.3.24)(react@18.2.0))(react@18.2.0)(semantic-ui-react@2.1.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0))
+ version: 3.0.0-alpha.6(@plone/components@4.0.0-alpha.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@plone/registry@core+packages+registry)(react-dom@18.2.0(react@18.2.0))(react-intl@3.12.1(@types/react@18.3.27)(react@18.2.0))(react@18.2.0)(semantic-ui-react@2.1.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0))
react:
specifier: ^18.2.0
version: 18.2.0
@@ -1623,38 +1623,38 @@ importers:
version: 18.2.0(react@18.2.0)
react-intl:
specifier: ^3.12.1
- version: 3.12.1(@types/react@18.3.24)(react@18.2.0)
+ version: 3.12.1(@types/react@18.3.27)(react@18.2.0)
react-redux:
specifier: ^8.1.2
- version: 8.1.2(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(redux@4.2.1)
+ version: 8.1.2(@types/react-dom@18.3.7(@types/react@18.3.27))(@types/react@18.3.27)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(redux@4.2.1)
devDependencies:
'@plone/scripts':
specifier: ^3.6.1
- version: 3.10.1
+ version: 3.10.3
'@plone/types':
specifier: workspace:*
version: link:../../core/packages/types
'@types/lodash':
specifier: ^4.14.201
- version: 4.17.20
+ version: 4.17.21
'@types/react':
specifier: ^18.3.1
- version: 18.3.24
+ version: 18.3.27
'@types/react-dom':
specifier: ^18.3.1
- version: 18.3.7(@types/react@18.3.24)
+ version: 18.3.7(@types/react@18.3.27)
lodash:
specifier: 4.17.21
version: 4.17.21
release-it:
specifier: ^19.0.5
- version: 19.0.5(@types/node@24.10.0)(magicast@0.3.5)
+ version: 19.0.6(@types/node@24.10.1)(magicast@0.3.5)
typescript:
specifier: ^5.7.3
- version: 5.9.2
+ version: 5.9.3
vitest:
specifier: ^3.1.2
- version: 3.2.4(@types/debug@4.1.12)(@types/node@24.10.0)(jsdom@22.1.0)(less@3.11.1)(lightningcss@1.30.2)(sass@1.92.0)(terser@5.44.0)
+ version: 3.2.4(@types/debug@4.1.12)(@types/node@24.10.1)(jiti@2.6.1)(jsdom@22.1.0)(less@3.11.1)(lightningcss@1.30.2)(sass@1.58.0)(terser@5.44.1)(yaml@2.8.2)
packages:
@@ -1684,18 +1684,10 @@ packages:
resolution: {integrity: sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==}
engines: {node: '>=6.9.0'}
- '@babel/compat-data@7.28.0':
- resolution: {integrity: sha512-60X7qkglvrap8mn1lh2ebxXdZYtUcpd7gsmy9kLaBJ4i/WdY8PqTSdxyA8qraikqKQK5C1KRBKXqznrVapyNaw==}
- engines: {node: '>=6.9.0'}
-
'@babel/compat-data@7.28.5':
resolution: {integrity: sha512-6uFXyCayocRbqhZOB+6XcuZbkMNimwfVGFji8CTZnCzOHVGvDqzvitu1re2AU5LROliz7eQPhB8CpAMvnx9EjA==}
engines: {node: '>=6.9.0'}
- '@babel/core@7.28.3':
- resolution: {integrity: sha512-yDBHV9kQNcr2/sUr9jghVyz9C3Y5G2zUM2H2lo+9mKv4sFgbA8s8Z9t8D1jiTkGoO/NoIfKMyKWr4s6CN23ZwQ==}
- engines: {node: '>=6.9.0'}
-
'@babel/core@7.28.5':
resolution: {integrity: sha512-e7jT4DxYvIDLk1ZHmU/m/mB19rex9sv0c2ftBtjSBv+kVM/902eh0fINUzD7UwLLNR+jU585GxUJ8/EBfAM5fw==}
engines: {node: '>=6.9.0'}
@@ -1707,10 +1699,6 @@ packages:
'@babel/core': ^7.11.0
eslint: ^7.5.0 || ^8.0.0 || ^9.0.0
- '@babel/generator@7.28.3':
- resolution: {integrity: sha512-3lSpxGgvnmZznmBkCRnVREPUFJv2wrv9iAoFDvADJc0ypmdOxdUtcLeBgBJ6zE0PMeTKnxeQzyk0xTBq4Ep7zw==}
- engines: {node: '>=6.9.0'}
-
'@babel/generator@7.28.5':
resolution: {integrity: sha512-3EwLFhZ38J4VyIP6WNtt2kUdW9dokXA9Cr4IVIFHuCpZ3H8/YFOl5JjZHisrn1fATPBmKKqXzDFvh9fUwHz6CQ==}
engines: {node: '>=6.9.0'}
@@ -1723,20 +1711,14 @@ packages:
resolution: {integrity: sha512-2+1thGUUWWjLTYTHZWK1n8Yga0ijBz1XAhUXcKy81rd5g6yh7hGqMp45v7cadSbEHc9G3OTv45SyneRN3ps4DQ==}
engines: {node: '>=6.9.0'}
- '@babel/helper-create-class-features-plugin@7.28.3':
- resolution: {integrity: sha512-V9f6ZFIYSLNEbuGA/92uOvYsGCJNsuA8ESZ4ldc09bWk/j8H8TKiPw8Mk1eG6olpnO0ALHJmYfZvF4MEE4gajg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
-
'@babel/helper-create-class-features-plugin@7.28.5':
resolution: {integrity: sha512-q3WC4JfdODypvxArsJQROfupPBq9+lMwjKq7C33GhbFYJsufD0yd/ziwD+hJucLeWsnFPWZjsU2DNFqBPE7jwQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/helper-create-regexp-features-plugin@7.27.1':
- resolution: {integrity: sha512-uVDC72XVf8UbrH5qQTc18Agb8emwjTiZrQE11Nv3CuBEZmVvTwwE9CBUEvHku06gQCAyYf8Nv6ja1IN+6LMbxQ==}
+ '@babel/helper-create-regexp-features-plugin@7.28.5':
+ resolution: {integrity: sha512-N1EhvLtHzOvj7QQOUCCS3NrPJP8c5W6ZXCHDn7Yialuy1iu4r5EmIYkXlKNqT99Ciw+W0mDqWoR6HWMZlFP3hw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
@@ -1750,10 +1732,6 @@ packages:
resolution: {integrity: sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==}
engines: {node: '>=6.9.0'}
- '@babel/helper-member-expression-to-functions@7.27.1':
- resolution: {integrity: sha512-E5chM8eWjTp/aNoVpcbfM7mLxu9XGLWYise2eBKGQomAk/Mb4XoxyqXTZbuTohbsl8EKqdlMhnDI2CCLfcs9wA==}
- engines: {node: '>=6.9.0'}
-
'@babel/helper-member-expression-to-functions@7.28.5':
resolution: {integrity: sha512-cwM7SBRZcPCLgl8a7cY0soT1SptSzAlMH39vwiRpOQkJlh53r5hdHwLSCZpQdVLT39sZt+CRpNwYG4Y2v77atg==}
engines: {node: '>=6.9.0'}
@@ -1796,10 +1774,6 @@ packages:
resolution: {integrity: sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==}
engines: {node: '>=6.9.0'}
- '@babel/helper-validator-identifier@7.27.1':
- resolution: {integrity: sha512-D2hP9eA+Sqx1kBZgzxZh0y1trbuU+JoDkiEwqhQ36nodYqJwyEIhPSdMNd7lOm/4io72luTPWH20Yda0xOuUow==}
- engines: {node: '>=6.9.0'}
-
'@babel/helper-validator-identifier@7.28.5':
resolution: {integrity: sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==}
engines: {node: '>=6.9.0'}
@@ -1812,10 +1786,6 @@ packages:
resolution: {integrity: sha512-zdf983tNfLZFletc0RRXYrHrucBEg95NIFMkn6K9dbeMYnsgHaSBGcQqdsCSStG2PYwRre0Qc2NNSCXbG+xc6g==}
engines: {node: '>=6.9.0'}
- '@babel/helpers@7.28.3':
- resolution: {integrity: sha512-PTNtvUQihsAsDHMOP5pfobP8C6CM4JWXmP8DrEIt46c3r2bf87Ua1zoqevsMo9g+tWDwgWrFP5EIxuBx5RudAw==}
- engines: {node: '>=6.9.0'}
-
'@babel/helpers@7.28.4':
resolution: {integrity: sha512-HFN59MmQXGHVyYadKLVumYsA9dBFun/ldYxipEjzA4196jpLZd8UjEEBLkbEkvfYreDqJhZxYAWFPtrfhNpj4w==}
engines: {node: '>=6.9.0'}
@@ -1824,11 +1794,6 @@ packages:
resolution: {integrity: sha512-llL88JShoCsth8fF8R4SJnIn+WLvR6ccFxu1H3FlMhDontdcmZWf2HgIZ7AIqV3Xcck1idlohrN4EUBQz6klbw==}
engines: {node: '>=6.9.0'}
- '@babel/parser@7.28.3':
- resolution: {integrity: sha512-7+Ey1mAgYqFAx2h0RuoxcQT5+MlG3GTV0TQrgr7/ZliKsm/MNDxVVutlWaziMq7wJNAz8MTqz55XLpWvva6StA==}
- engines: {node: '>=6.0.0'}
- hasBin: true
-
'@babel/parser@7.28.5':
resolution: {integrity: sha512-KKBU1VGYR7ORr3At5HAtUQ+TV3SzRCXmA/8OdDZiLDBIZxVyzXuztPjfLd3BV1PRAQGCMWWSHYhL0F8d5uHBDQ==}
engines: {node: '>=6.0.0'}
@@ -1937,27 +1902,11 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-syntax-async-generators@7.8.4':
- resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-syntax-bigint@7.8.3':
resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-syntax-class-properties@7.12.13':
- resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@babel/plugin-syntax-class-static-block@7.14.5':
- resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-syntax-decorators@7.27.1':
resolution: {integrity: sha512-YMq8Z87Lhl8EGkmb0MwYkt36QnxC+fzCgrl66ereamPlYToRpIk5nUjKUY3QKLWq8mwUB1BgbeXcTJhZOCDg5A==}
engines: {node: '>=6.9.0'}
@@ -1987,27 +1936,12 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-syntax-import-meta@7.10.4':
- resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@babel/plugin-syntax-json-strings@7.8.3':
- resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-syntax-jsx@7.27.1':
resolution: {integrity: sha512-y8YTNIeKoyhGd9O0Jiyzyyqk8gdjnumGTQPsz0xOZOQ2RmkVJeZ1vmmfIvFEKqucBG6axJGBZDE/7iI5suUI/w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-syntax-logical-assignment-operators@7.10.4':
- resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-syntax-nullish-coalescing-operator@7.8.3':
resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==}
peerDependencies:
@@ -2023,11 +1957,6 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-syntax-optional-catch-binding@7.8.3':
- resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-syntax-optional-chaining@7.8.3':
resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==}
peerDependencies:
@@ -2039,12 +1968,6 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-syntax-top-level-await@7.14.5':
- resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-syntax-typescript@7.27.1':
resolution: {integrity: sha512-xfYCBMxveHrRMnAWl1ZlPXOZjzkN82THFvLhQhFXFt81Z5HnN+EtUkZhv/zcKpmT3fzmWZB0ywiBrbC3vogbwQ==}
engines: {node: '>=6.9.0'}
@@ -2351,8 +2274,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-runtime@7.28.3':
- resolution: {integrity: sha512-Y6ab1kGqZ0u42Zv/4a7l0l72n9DKP/MKoKWaUSBylrhNZO2prYuqFOLbn5aW5SIFXwSH93yfjbgllL8lxuGKLg==}
+ '@babel/plugin-transform-runtime@7.28.5':
+ resolution: {integrity: sha512-20NUVgOrinudkIBzQ2bNxP08YpKprUkRTiRSd2/Z5GOdPImJGkoN4Z7IQe1T5AdyKI1i5L6RBmluqdSzvaq9/w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -2440,10 +2363,6 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/runtime@7.20.6':
- resolution: {integrity: sha512-Q+8MqP7TiHMWzSfwiJwXCjyf4GYA4Dgw3emg/7xmwsdLJOZUp+nMqcOwOzzYheuM1rhDu8FSj2l0aoMygEuXuA==}
- engines: {node: '>=6.9.0'}
-
'@babel/runtime@7.28.4':
resolution: {integrity: sha512-Q/N6JNWvIvPnLDvjlE1OUBLPQHH6l3CltCEsHIujp45zQUSSh8K+gHnaEX45yAT1nyngnINhvWtzN+Nb9D8RAQ==}
engines: {node: '>=6.9.0'}
@@ -2452,10 +2371,6 @@ packages:
resolution: {integrity: sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==}
engines: {node: '>=6.9.0'}
- '@babel/traverse@7.28.3':
- resolution: {integrity: sha512-7w4kZYHneL3A6NP2nxzHvT3HCZ7puDZZjFMqDpBPECub79sTtSO5CGXDkKrTQq8ksAwfD/XI2MRFX23njdDaIQ==}
- engines: {node: '>=6.9.0'}
-
'@babel/traverse@7.28.5':
resolution: {integrity: sha512-TCCj4t55U90khlYkVV/0TfkJkAkUg3jZFA3Neb7unZT8CPok7iiRfaX0F+WnqWqt7OxhOn0uBKXCw4lbL8W0aQ==}
engines: {node: '>=6.9.0'}
@@ -2464,10 +2379,6 @@ packages:
resolution: {integrity: sha512-c9fst/h2/dcF7H+MJKZ2T0KjEQ8hY/BNnDk/H3XY8C4Aw/eWQXWn/lWntHF9ooUBnGmEvbfGrTgLWc+um0YDUg==}
engines: {node: '>=6.9.0'}
- '@babel/types@7.28.2':
- resolution: {integrity: sha512-ruv7Ae4J5dUYULmeXw1gmb7rYRz57OWCPM57pHojnLq/3Z1CK2lNSLTCVjxVk1F/TZHwOZZrOWi0ur95BbLxNQ==}
- engines: {node: '>=6.9.0'}
-
'@babel/types@7.28.5':
resolution: {integrity: sha512-qQ5m48eI/MFLQ5PxQj4PFaprjyCTLI37ElWMmNs0K8Lk3dVeOdNpB3ks8jc7yM5CDmVC73eMVk/trk3fgmrUpA==}
engines: {node: '>=6.9.0'}
@@ -2479,6 +2390,12 @@ packages:
resolution: {integrity: sha512-6zABk/ECA/QYSCQ1NGiVwwbQerUCZ+TQbp64Q3AgmfNvurHH0j8TtXa1qbShXA6qqkpAj4V5W8pP6mLe1mcMqA==}
engines: {node: '>=18'}
+ '@cacheable/memory@2.0.6':
+ resolution: {integrity: sha512-7e8SScMocHxcAb8YhtkbMhGG+EKLRIficb1F5sjvhSYsWTZGxvg4KIDp8kgxnV2PUJ3ddPe6J9QESjKvBWRDkg==}
+
+ '@cacheable/utils@2.3.2':
+ resolution: {integrity: sha512-8kGE2P+HjfY8FglaOiW+y8qxcaQAfAhVML+i66XJR3YX5FtyDqn6Txctr3K2FrbxLKixRRYYBWMbuGciOhYNDg==}
+
'@colors/colors@1.5.0':
resolution: {integrity: sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==}
engines: {node: '>=0.1.90'}
@@ -2489,6 +2406,10 @@ packages:
peerDependencies:
'@csstools/css-tokenizer': ^3.0.4
+ '@csstools/css-syntax-patches-for-csstree@1.0.20':
+ resolution: {integrity: sha512-8BHsjXfSciZxjmHQOuVdW2b8WLUPts9a+mfL13/PzEviufUEW2xnvQuOlKs9dRBHgRqJ53SF/DUoK9+MZk72oQ==}
+ engines: {node: '>=18'}
+
'@csstools/css-tokenizer@3.0.4':
resolution: {integrity: sha512-Vd/9EVDiu6PPJt9yAh6roZP6El1xHrdvIVGjyBsHR0RYwNHgL7FJPyIIW4fANJNG6FtyZfvlRPpFI4ZM/lubvw==}
engines: {node: '>=18'}
@@ -2542,11 +2463,11 @@ packages:
'@dual-bundle/import-meta-resolve@4.2.1':
resolution: {integrity: sha512-id+7YRUgoUX6CgV0DtuhirQWodeeA7Lf4i2x71JS/vtA5pRb/hIGWlw+G6MeXvsM+MXrz0VAydTGElX1rAfgPg==}
- '@emnapi/core@1.5.0':
- resolution: {integrity: sha512-sbP8GzB1WDzacS8fgNPpHlp6C9VZe+SJP3F90W9rLemaQj2PzIuTEl1qDOYQf58YIpyjViI24y9aPWCjEzY2cg==}
+ '@emnapi/core@1.7.1':
+ resolution: {integrity: sha512-o1uhUASyo921r2XtHYOHy7gdkGLge8ghBEQHMWmyJFoXlpU58kIrhhN3w26lpQb6dspetweapMn2CSNwQ8I4wg==}
- '@emnapi/runtime@1.5.0':
- resolution: {integrity: sha512-97/BJ3iXHww3djw6hYIfErCZFee7qCtrneuLa20UXFCOTCfBM2cvQHjWJ2EG0s0MtdNwInarqCTz35i4wWXHsQ==}
+ '@emnapi/runtime@1.7.1':
+ resolution: {integrity: sha512-PVtJr5CmLwYAU9PZDMITZoR5iAOShYREoR45EyyLrbntV50mdePTgUn4AmOw90Ifcj+x2kRjdzr1HP3RrNiHGA==}
'@emnapi/wasi-threads@1.1.0':
resolution: {integrity: sha512-WI0DdZ8xFSbgMjR1sFsKABJ/C5OnRrjT06JXbZKexJGrDuPTzZdDYfFlsgcCXCyf+suG5QU2e/y1Wo2V/OapLQ==}
@@ -2598,8 +2519,14 @@ packages:
cpu: [ppc64]
os: [aix]
- '@esbuild/aix-ppc64@0.25.9':
- resolution: {integrity: sha512-OaGtL73Jck6pBKjNIe24BnFE6agGl+6KxDtTfHhy1HmhthfKouEcOhqpSL64K4/0WCtbKFLOdzD/44cJ4k9opA==}
+ '@esbuild/aix-ppc64@0.25.12':
+ resolution: {integrity: sha512-Hhmwd6CInZ3dwpuGTF8fJG6yoWmsToE+vYgD4nytZVxcu1ulHpUQRAB1UJ8+N1Am3Mz4+xOByoQoSZf4D+CpkA==}
+ engines: {node: '>=18'}
+ cpu: [ppc64]
+ os: [aix]
+
+ '@esbuild/aix-ppc64@0.27.0':
+ resolution: {integrity: sha512-KuZrd2hRjz01y5JK9mEBSD3Vj3mbCvemhT466rSuJYeE/hjuBrHfjjcjMdTm/sz7au+++sdbJZJmuBwQLuw68A==}
engines: {node: '>=18'}
cpu: [ppc64]
os: [aix]
@@ -2610,8 +2537,14 @@ packages:
cpu: [arm64]
os: [android]
- '@esbuild/android-arm64@0.25.9':
- resolution: {integrity: sha512-IDrddSmpSv51ftWslJMvl3Q2ZT98fUSL2/rlUXuVqRXHCs5EUF1/f+jbjF5+NG9UffUDMCiTyh8iec7u8RlTLg==}
+ '@esbuild/android-arm64@0.25.12':
+ resolution: {integrity: sha512-6AAmLG7zwD1Z159jCKPvAxZd4y/VTO0VkprYy+3N2FtJ8+BQWFXU+OxARIwA46c5tdD9SsKGZ/1ocqBS/gAKHg==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [android]
+
+ '@esbuild/android-arm64@0.27.0':
+ resolution: {integrity: sha512-CC3vt4+1xZrs97/PKDkl0yN7w8edvU2vZvAFGD16n9F0Cvniy5qvzRXjfO1l94efczkkQE6g1x0i73Qf5uthOQ==}
engines: {node: '>=18'}
cpu: [arm64]
os: [android]
@@ -2622,8 +2555,14 @@ packages:
cpu: [arm]
os: [android]
- '@esbuild/android-arm@0.25.9':
- resolution: {integrity: sha512-5WNI1DaMtxQ7t7B6xa572XMXpHAaI/9Hnhk8lcxF4zVN4xstUgTlvuGDorBguKEnZO70qwEcLpfifMLoxiPqHQ==}
+ '@esbuild/android-arm@0.25.12':
+ resolution: {integrity: sha512-VJ+sKvNA/GE7Ccacc9Cha7bpS8nyzVv0jdVgwNDaR4gDMC/2TTRc33Ip8qrNYUcpkOHUT5OZ0bUcNNVZQ9RLlg==}
+ engines: {node: '>=18'}
+ cpu: [arm]
+ os: [android]
+
+ '@esbuild/android-arm@0.27.0':
+ resolution: {integrity: sha512-j67aezrPNYWJEOHUNLPj9maeJte7uSMM6gMoxfPC9hOg8N02JuQi/T7ewumf4tNvJadFkvLZMlAq73b9uwdMyQ==}
engines: {node: '>=18'}
cpu: [arm]
os: [android]
@@ -2634,8 +2573,14 @@ packages:
cpu: [x64]
os: [android]
- '@esbuild/android-x64@0.25.9':
- resolution: {integrity: sha512-I853iMZ1hWZdNllhVZKm34f4wErd4lMyeV7BLzEExGEIZYsOzqDWDf+y082izYUE8gtJnYHdeDpN/6tUdwvfiw==}
+ '@esbuild/android-x64@0.25.12':
+ resolution: {integrity: sha512-5jbb+2hhDHx5phYR2By8GTWEzn6I9UqR11Kwf22iKbNpYrsmRB18aX/9ivc5cabcUiAT/wM+YIZ6SG9QO6a8kg==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [android]
+
+ '@esbuild/android-x64@0.27.0':
+ resolution: {integrity: sha512-wurMkF1nmQajBO1+0CJmcN17U4BP6GqNSROP8t0X/Jiw2ltYGLHpEksp9MpoBqkrFR3kv2/te6Sha26k3+yZ9Q==}
engines: {node: '>=18'}
cpu: [x64]
os: [android]
@@ -2646,8 +2591,14 @@ packages:
cpu: [arm64]
os: [darwin]
- '@esbuild/darwin-arm64@0.25.9':
- resolution: {integrity: sha512-XIpIDMAjOELi/9PB30vEbVMs3GV1v2zkkPnuyRRURbhqjyzIINwj+nbQATh4H9GxUgH1kFsEyQMxwiLFKUS6Rg==}
+ '@esbuild/darwin-arm64@0.25.12':
+ resolution: {integrity: sha512-N3zl+lxHCifgIlcMUP5016ESkeQjLj/959RxxNYIthIg+CQHInujFuXeWbWMgnTo4cp5XVHqFPmpyu9J65C1Yg==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [darwin]
+
+ '@esbuild/darwin-arm64@0.27.0':
+ resolution: {integrity: sha512-uJOQKYCcHhg07DL7i8MzjvS2LaP7W7Pn/7uA0B5S1EnqAirJtbyw4yC5jQ5qcFjHK9l6o/MX9QisBg12kNkdHg==}
engines: {node: '>=18'}
cpu: [arm64]
os: [darwin]
@@ -2658,8 +2609,14 @@ packages:
cpu: [x64]
os: [darwin]
- '@esbuild/darwin-x64@0.25.9':
- resolution: {integrity: sha512-jhHfBzjYTA1IQu8VyrjCX4ApJDnH+ez+IYVEoJHeqJm9VhG9Dh2BYaJritkYK3vMaXrf7Ogr/0MQ8/MeIefsPQ==}
+ '@esbuild/darwin-x64@0.25.12':
+ resolution: {integrity: sha512-HQ9ka4Kx21qHXwtlTUVbKJOAnmG1ipXhdWTmNXiPzPfWKpXqASVcWdnf2bnL73wgjNrFXAa3yYvBSd9pzfEIpA==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [darwin]
+
+ '@esbuild/darwin-x64@0.27.0':
+ resolution: {integrity: sha512-8mG6arH3yB/4ZXiEnXof5MK72dE6zM9cDvUcPtxhUZsDjESl9JipZYW60C3JGreKCEP+p8P/72r69m4AZGJd5g==}
engines: {node: '>=18'}
cpu: [x64]
os: [darwin]
@@ -2670,8 +2627,14 @@ packages:
cpu: [arm64]
os: [freebsd]
- '@esbuild/freebsd-arm64@0.25.9':
- resolution: {integrity: sha512-z93DmbnY6fX9+KdD4Ue/H6sYs+bhFQJNCPZsi4XWJoYblUqT06MQUdBCpcSfuiN72AbqeBFu5LVQTjfXDE2A6Q==}
+ '@esbuild/freebsd-arm64@0.25.12':
+ resolution: {integrity: sha512-gA0Bx759+7Jve03K1S0vkOu5Lg/85dou3EseOGUes8flVOGxbhDDh/iZaoek11Y8mtyKPGF3vP8XhnkDEAmzeg==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [freebsd]
+
+ '@esbuild/freebsd-arm64@0.27.0':
+ resolution: {integrity: sha512-9FHtyO988CwNMMOE3YIeci+UV+x5Zy8fI2qHNpsEtSF83YPBmE8UWmfYAQg6Ux7Gsmd4FejZqnEUZCMGaNQHQw==}
engines: {node: '>=18'}
cpu: [arm64]
os: [freebsd]
@@ -2682,8 +2645,14 @@ packages:
cpu: [x64]
os: [freebsd]
- '@esbuild/freebsd-x64@0.25.9':
- resolution: {integrity: sha512-mrKX6H/vOyo5v71YfXWJxLVxgy1kyt1MQaD8wZJgJfG4gq4DpQGpgTB74e5yBeQdyMTbgxp0YtNj7NuHN0PoZg==}
+ '@esbuild/freebsd-x64@0.25.12':
+ resolution: {integrity: sha512-TGbO26Yw2xsHzxtbVFGEXBFH0FRAP7gtcPE7P5yP7wGy7cXK2oO7RyOhL5NLiqTlBh47XhmIUXuGciXEqYFfBQ==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [freebsd]
+
+ '@esbuild/freebsd-x64@0.27.0':
+ resolution: {integrity: sha512-zCMeMXI4HS/tXvJz8vWGexpZj2YVtRAihHLk1imZj4efx1BQzN76YFeKqlDr3bUWI26wHwLWPd3rwh6pe4EV7g==}
engines: {node: '>=18'}
cpu: [x64]
os: [freebsd]
@@ -2694,8 +2663,14 @@ packages:
cpu: [arm64]
os: [linux]
- '@esbuild/linux-arm64@0.25.9':
- resolution: {integrity: sha512-BlB7bIcLT3G26urh5Dmse7fiLmLXnRlopw4s8DalgZ8ef79Jj4aUcYbk90g8iCa2467HX8SAIidbL7gsqXHdRw==}
+ '@esbuild/linux-arm64@0.25.12':
+ resolution: {integrity: sha512-8bwX7a8FghIgrupcxb4aUmYDLp8pX06rGh5HqDT7bB+8Rdells6mHvrFHHW2JAOPZUbnjUpKTLg6ECyzvas2AQ==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [linux]
+
+ '@esbuild/linux-arm64@0.27.0':
+ resolution: {integrity: sha512-AS18v0V+vZiLJyi/4LphvBE+OIX682Pu7ZYNsdUHyUKSoRwdnOsMf6FDekwoAFKej14WAkOef3zAORJgAtXnlQ==}
engines: {node: '>=18'}
cpu: [arm64]
os: [linux]
@@ -2706,8 +2681,14 @@ packages:
cpu: [arm]
os: [linux]
- '@esbuild/linux-arm@0.25.9':
- resolution: {integrity: sha512-HBU2Xv78SMgaydBmdor38lg8YDnFKSARg1Q6AT0/y2ezUAKiZvc211RDFHlEZRFNRVhcMamiToo7bDx3VEOYQw==}
+ '@esbuild/linux-arm@0.25.12':
+ resolution: {integrity: sha512-lPDGyC1JPDou8kGcywY0YILzWlhhnRjdof3UlcoqYmS9El818LLfJJc3PXXgZHrHCAKs/Z2SeZtDJr5MrkxtOw==}
+ engines: {node: '>=18'}
+ cpu: [arm]
+ os: [linux]
+
+ '@esbuild/linux-arm@0.27.0':
+ resolution: {integrity: sha512-t76XLQDpxgmq2cNXKTVEB7O7YMb42atj2Re2Haf45HkaUpjM2J0UuJZDuaGbPbamzZ7bawyGFUkodL+zcE+jvQ==}
engines: {node: '>=18'}
cpu: [arm]
os: [linux]
@@ -2718,8 +2699,14 @@ packages:
cpu: [ia32]
os: [linux]
- '@esbuild/linux-ia32@0.25.9':
- resolution: {integrity: sha512-e7S3MOJPZGp2QW6AK6+Ly81rC7oOSerQ+P8L0ta4FhVi+/j/v2yZzx5CqqDaWjtPFfYz21Vi1S0auHrap3Ma3A==}
+ '@esbuild/linux-ia32@0.25.12':
+ resolution: {integrity: sha512-0y9KrdVnbMM2/vG8KfU0byhUN+EFCny9+8g202gYqSSVMonbsCfLjUO+rCci7pM0WBEtz+oK/PIwHkzxkyharA==}
+ engines: {node: '>=18'}
+ cpu: [ia32]
+ os: [linux]
+
+ '@esbuild/linux-ia32@0.27.0':
+ resolution: {integrity: sha512-Mz1jxqm/kfgKkc/KLHC5qIujMvnnarD9ra1cEcrs7qshTUSksPihGrWHVG5+osAIQ68577Zpww7SGapmzSt4Nw==}
engines: {node: '>=18'}
cpu: [ia32]
os: [linux]
@@ -2730,8 +2717,14 @@ packages:
cpu: [loong64]
os: [linux]
- '@esbuild/linux-loong64@0.25.9':
- resolution: {integrity: sha512-Sbe10Bnn0oUAB2AalYztvGcK+o6YFFA/9829PhOCUS9vkJElXGdphz0A3DbMdP8gmKkqPmPcMJmJOrI3VYB1JQ==}
+ '@esbuild/linux-loong64@0.25.12':
+ resolution: {integrity: sha512-h///Lr5a9rib/v1GGqXVGzjL4TMvVTv+s1DPoxQdz7l/AYv6LDSxdIwzxkrPW438oUXiDtwM10o9PmwS/6Z0Ng==}
+ engines: {node: '>=18'}
+ cpu: [loong64]
+ os: [linux]
+
+ '@esbuild/linux-loong64@0.27.0':
+ resolution: {integrity: sha512-QbEREjdJeIreIAbdG2hLU1yXm1uu+LTdzoq1KCo4G4pFOLlvIspBm36QrQOar9LFduavoWX2msNFAAAY9j4BDg==}
engines: {node: '>=18'}
cpu: [loong64]
os: [linux]
@@ -2742,8 +2735,14 @@ packages:
cpu: [mips64el]
os: [linux]
- '@esbuild/linux-mips64el@0.25.9':
- resolution: {integrity: sha512-YcM5br0mVyZw2jcQeLIkhWtKPeVfAerES5PvOzaDxVtIyZ2NUBZKNLjC5z3/fUlDgT6w89VsxP2qzNipOaaDyA==}
+ '@esbuild/linux-mips64el@0.25.12':
+ resolution: {integrity: sha512-iyRrM1Pzy9GFMDLsXn1iHUm18nhKnNMWscjmp4+hpafcZjrr2WbT//d20xaGljXDBYHqRcl8HnxbX6uaA/eGVw==}
+ engines: {node: '>=18'}
+ cpu: [mips64el]
+ os: [linux]
+
+ '@esbuild/linux-mips64el@0.27.0':
+ resolution: {integrity: sha512-sJz3zRNe4tO2wxvDpH/HYJilb6+2YJxo/ZNbVdtFiKDufzWq4JmKAiHy9iGoLjAV7r/W32VgaHGkk35cUXlNOg==}
engines: {node: '>=18'}
cpu: [mips64el]
os: [linux]
@@ -2754,8 +2753,14 @@ packages:
cpu: [ppc64]
os: [linux]
- '@esbuild/linux-ppc64@0.25.9':
- resolution: {integrity: sha512-++0HQvasdo20JytyDpFvQtNrEsAgNG2CY1CLMwGXfFTKGBGQT3bOeLSYE2l1fYdvML5KUuwn9Z8L1EWe2tzs1w==}
+ '@esbuild/linux-ppc64@0.25.12':
+ resolution: {integrity: sha512-9meM/lRXxMi5PSUqEXRCtVjEZBGwB7P/D4yT8UG/mwIdze2aV4Vo6U5gD3+RsoHXKkHCfSxZKzmDssVlRj1QQA==}
+ engines: {node: '>=18'}
+ cpu: [ppc64]
+ os: [linux]
+
+ '@esbuild/linux-ppc64@0.27.0':
+ resolution: {integrity: sha512-z9N10FBD0DCS2dmSABDBb5TLAyF1/ydVb+N4pi88T45efQ/w4ohr/F/QYCkxDPnkhkp6AIpIcQKQ8F0ANoA2JA==}
engines: {node: '>=18'}
cpu: [ppc64]
os: [linux]
@@ -2766,8 +2771,14 @@ packages:
cpu: [riscv64]
os: [linux]
- '@esbuild/linux-riscv64@0.25.9':
- resolution: {integrity: sha512-uNIBa279Y3fkjV+2cUjx36xkx7eSjb8IvnL01eXUKXez/CBHNRw5ekCGMPM0BcmqBxBcdgUWuUXmVWwm4CH9kg==}
+ '@esbuild/linux-riscv64@0.25.12':
+ resolution: {integrity: sha512-Zr7KR4hgKUpWAwb1f3o5ygT04MzqVrGEGXGLnj15YQDJErYu/BGg+wmFlIDOdJp0PmB0lLvxFIOXZgFRrdjR0w==}
+ engines: {node: '>=18'}
+ cpu: [riscv64]
+ os: [linux]
+
+ '@esbuild/linux-riscv64@0.27.0':
+ resolution: {integrity: sha512-pQdyAIZ0BWIC5GyvVFn5awDiO14TkT/19FTmFcPdDec94KJ1uZcmFs21Fo8auMXzD4Tt+diXu1LW1gHus9fhFQ==}
engines: {node: '>=18'}
cpu: [riscv64]
os: [linux]
@@ -2778,8 +2789,14 @@ packages:
cpu: [s390x]
os: [linux]
- '@esbuild/linux-s390x@0.25.9':
- resolution: {integrity: sha512-Mfiphvp3MjC/lctb+7D287Xw1DGzqJPb/J2aHHcHxflUo+8tmN/6d4k6I2yFR7BVo5/g7x2Monq4+Yew0EHRIA==}
+ '@esbuild/linux-s390x@0.25.12':
+ resolution: {integrity: sha512-MsKncOcgTNvdtiISc/jZs/Zf8d0cl/t3gYWX8J9ubBnVOwlk65UIEEvgBORTiljloIWnBzLs4qhzPkJcitIzIg==}
+ engines: {node: '>=18'}
+ cpu: [s390x]
+ os: [linux]
+
+ '@esbuild/linux-s390x@0.27.0':
+ resolution: {integrity: sha512-hPlRWR4eIDDEci953RI1BLZitgi5uqcsjKMxwYfmi4LcwyWo2IcRP+lThVnKjNtk90pLS8nKdroXYOqW+QQH+w==}
engines: {node: '>=18'}
cpu: [s390x]
os: [linux]
@@ -2790,14 +2807,26 @@ packages:
cpu: [x64]
os: [linux]
- '@esbuild/linux-x64@0.25.9':
- resolution: {integrity: sha512-iSwByxzRe48YVkmpbgoxVzn76BXjlYFXC7NvLYq+b+kDjyyk30J0JY47DIn8z1MO3K0oSl9fZoRmZPQI4Hklzg==}
+ '@esbuild/linux-x64@0.25.12':
+ resolution: {integrity: sha512-uqZMTLr/zR/ed4jIGnwSLkaHmPjOjJvnm6TVVitAa08SLS9Z0VM8wIRx7gWbJB5/J54YuIMInDquWyYvQLZkgw==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [linux]
+
+ '@esbuild/linux-x64@0.27.0':
+ resolution: {integrity: sha512-1hBWx4OUJE2cab++aVZ7pObD6s+DK4mPGpemtnAORBvb5l/g5xFGk0vc0PjSkrDs0XaXj9yyob3d14XqvnQ4gw==}
engines: {node: '>=18'}
cpu: [x64]
os: [linux]
- '@esbuild/netbsd-arm64@0.25.9':
- resolution: {integrity: sha512-9jNJl6FqaUG+COdQMjSCGW4QiMHH88xWbvZ+kRVblZsWrkXlABuGdFJ1E9L7HK+T0Yqd4akKNa/lO0+jDxQD4Q==}
+ '@esbuild/netbsd-arm64@0.25.12':
+ resolution: {integrity: sha512-xXwcTq4GhRM7J9A8Gv5boanHhRa/Q9KLVmcyXHCTaM4wKfIpWkdXiMog/KsnxzJ0A1+nD+zoecuzqPmCRyBGjg==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [netbsd]
+
+ '@esbuild/netbsd-arm64@0.27.0':
+ resolution: {integrity: sha512-6m0sfQfxfQfy1qRuecMkJlf1cIzTOgyaeXaiVaaki8/v+WB+U4hc6ik15ZW6TAllRlg/WuQXxWj1jx6C+dfy3w==}
engines: {node: '>=18'}
cpu: [arm64]
os: [netbsd]
@@ -2808,14 +2837,26 @@ packages:
cpu: [x64]
os: [netbsd]
- '@esbuild/netbsd-x64@0.25.9':
- resolution: {integrity: sha512-RLLdkflmqRG8KanPGOU7Rpg829ZHu8nFy5Pqdi9U01VYtG9Y0zOG6Vr2z4/S+/3zIyOxiK6cCeYNWOFR9QP87g==}
+ '@esbuild/netbsd-x64@0.25.12':
+ resolution: {integrity: sha512-Ld5pTlzPy3YwGec4OuHh1aCVCRvOXdH8DgRjfDy/oumVovmuSzWfnSJg+VtakB9Cm0gxNO9BzWkj6mtO1FMXkQ==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [netbsd]
+
+ '@esbuild/netbsd-x64@0.27.0':
+ resolution: {integrity: sha512-xbbOdfn06FtcJ9d0ShxxvSn2iUsGd/lgPIO2V3VZIPDbEaIj1/3nBBe1AwuEZKXVXkMmpr6LUAgMkLD/4D2PPA==}
engines: {node: '>=18'}
cpu: [x64]
os: [netbsd]
- '@esbuild/openbsd-arm64@0.25.9':
- resolution: {integrity: sha512-YaFBlPGeDasft5IIM+CQAhJAqS3St3nJzDEgsgFixcfZeyGPCd6eJBWzke5piZuZ7CtL656eOSYKk4Ls2C0FRQ==}
+ '@esbuild/openbsd-arm64@0.25.12':
+ resolution: {integrity: sha512-fF96T6KsBo/pkQI950FARU9apGNTSlZGsv1jZBAlcLL1MLjLNIWPBkj5NlSz8aAzYKg+eNqknrUJ24QBybeR5A==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [openbsd]
+
+ '@esbuild/openbsd-arm64@0.27.0':
+ resolution: {integrity: sha512-fWgqR8uNbCQ/GGv0yhzttj6sU/9Z5/Sv/VGU3F5OuXK6J6SlriONKrQ7tNlwBrJZXRYk5jUhuWvF7GYzGguBZQ==}
engines: {node: '>=18'}
cpu: [arm64]
os: [openbsd]
@@ -2826,14 +2867,26 @@ packages:
cpu: [x64]
os: [openbsd]
- '@esbuild/openbsd-x64@0.25.9':
- resolution: {integrity: sha512-1MkgTCuvMGWuqVtAvkpkXFmtL8XhWy+j4jaSO2wxfJtilVCi0ZE37b8uOdMItIHz4I6z1bWWtEX4CJwcKYLcuA==}
+ '@esbuild/openbsd-x64@0.25.12':
+ resolution: {integrity: sha512-MZyXUkZHjQxUvzK7rN8DJ3SRmrVrke8ZyRusHlP+kuwqTcfWLyqMOE3sScPPyeIXN/mDJIfGXvcMqCgYKekoQw==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [openbsd]
+
+ '@esbuild/openbsd-x64@0.27.0':
+ resolution: {integrity: sha512-aCwlRdSNMNxkGGqQajMUza6uXzR/U0dIl1QmLjPtRbLOx3Gy3otfFu/VjATy4yQzo9yFDGTxYDo1FfAD9oRD2A==}
engines: {node: '>=18'}
cpu: [x64]
os: [openbsd]
- '@esbuild/openharmony-arm64@0.25.9':
- resolution: {integrity: sha512-4Xd0xNiMVXKh6Fa7HEJQbrpP3m3DDn43jKxMjxLLRjWnRsfxjORYJlXPO4JNcXtOyfajXorRKY9NkOpTHptErg==}
+ '@esbuild/openharmony-arm64@0.25.12':
+ resolution: {integrity: sha512-rm0YWsqUSRrjncSXGA7Zv78Nbnw4XL6/dzr20cyrQf7ZmRcsovpcRBdhD43Nuk3y7XIoW2OxMVvwuRvk9XdASg==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [openharmony]
+
+ '@esbuild/openharmony-arm64@0.27.0':
+ resolution: {integrity: sha512-nyvsBccxNAsNYz2jVFYwEGuRRomqZ149A39SHWk4hV0jWxKM0hjBPm3AmdxcbHiFLbBSwG6SbpIcUbXjgyECfA==}
engines: {node: '>=18'}
cpu: [arm64]
os: [openharmony]
@@ -2844,8 +2897,14 @@ packages:
cpu: [x64]
os: [sunos]
- '@esbuild/sunos-x64@0.25.9':
- resolution: {integrity: sha512-WjH4s6hzo00nNezhp3wFIAfmGZ8U7KtrJNlFMRKxiI9mxEK1scOMAaa9i4crUtu+tBr+0IN6JCuAcSBJZfnphw==}
+ '@esbuild/sunos-x64@0.25.12':
+ resolution: {integrity: sha512-3wGSCDyuTHQUzt0nV7bocDy72r2lI33QL3gkDNGkod22EsYl04sMf0qLb8luNKTOmgF/eDEDP5BFNwoBKH441w==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [sunos]
+
+ '@esbuild/sunos-x64@0.27.0':
+ resolution: {integrity: sha512-Q1KY1iJafM+UX6CFEL+F4HRTgygmEW568YMqDA5UV97AuZSm21b7SXIrRJDwXWPzr8MGr75fUZPV67FdtMHlHA==}
engines: {node: '>=18'}
cpu: [x64]
os: [sunos]
@@ -2856,8 +2915,14 @@ packages:
cpu: [arm64]
os: [win32]
- '@esbuild/win32-arm64@0.25.9':
- resolution: {integrity: sha512-mGFrVJHmZiRqmP8xFOc6b84/7xa5y5YvR1x8djzXpJBSv/UsNK6aqec+6JDjConTgvvQefdGhFDAs2DLAds6gQ==}
+ '@esbuild/win32-arm64@0.25.12':
+ resolution: {integrity: sha512-rMmLrur64A7+DKlnSuwqUdRKyd3UE7oPJZmnljqEptesKM8wx9J8gx5u0+9Pq0fQQW8vqeKebwNXdfOyP+8Bsg==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [win32]
+
+ '@esbuild/win32-arm64@0.27.0':
+ resolution: {integrity: sha512-W1eyGNi6d+8kOmZIwi/EDjrL9nxQIQ0MiGqe/AWc6+IaHloxHSGoeRgDRKHFISThLmsewZ5nHFvGFWdBYlgKPg==}
engines: {node: '>=18'}
cpu: [arm64]
os: [win32]
@@ -2868,8 +2933,14 @@ packages:
cpu: [ia32]
os: [win32]
- '@esbuild/win32-ia32@0.25.9':
- resolution: {integrity: sha512-b33gLVU2k11nVx1OhX3C8QQP6UHQK4ZtN56oFWvVXvz2VkDoe6fbG8TOgHFxEvqeqohmRnIHe5A1+HADk4OQww==}
+ '@esbuild/win32-ia32@0.25.12':
+ resolution: {integrity: sha512-HkqnmmBoCbCwxUKKNPBixiWDGCpQGVsrQfJoVGYLPT41XWF8lHuE5N6WhVia2n4o5QK5M4tYr21827fNhi4byQ==}
+ engines: {node: '>=18'}
+ cpu: [ia32]
+ os: [win32]
+
+ '@esbuild/win32-ia32@0.27.0':
+ resolution: {integrity: sha512-30z1aKL9h22kQhilnYkORFYt+3wp7yZsHWus+wSKAJR8JtdfI76LJ4SBdMsCopTR3z/ORqVu5L1vtnHZWVj4cQ==}
engines: {node: '>=18'}
cpu: [ia32]
os: [win32]
@@ -2880,20 +2951,26 @@ packages:
cpu: [x64]
os: [win32]
- '@esbuild/win32-x64@0.25.9':
- resolution: {integrity: sha512-PPOl1mi6lpLNQxnGoyAfschAodRFYXJ+9fs6WHXz7CSWKbOqiMZsubC+BQsVKuul+3vKLuwTHsS2c2y9EoKwxQ==}
+ '@esbuild/win32-x64@0.25.12':
+ resolution: {integrity: sha512-alJC0uCZpTFrSL0CCDjcgleBXPnCrEAhTBILpeAp7M/OFgoqtAetfBzX0xM00MUsVVPpVjlPuMbREqnZCXaTnA==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [win32]
+
+ '@esbuild/win32-x64@0.27.0':
+ resolution: {integrity: sha512-aIitBcjQeyOhMTImhLZmtxfdOcuNRpwlPNmlFKPcHQYPhEssw75Cl1TSXJXpMkzaua9FUetx/4OQKq7eJul5Cg==}
engines: {node: '>=18'}
cpu: [x64]
os: [win32]
- '@eslint-community/eslint-utils@4.8.0':
- resolution: {integrity: sha512-MJQFqrZgcW0UNYLGOuQpey/oTN59vyWwplvCGZztn1cKz9agZPPYpJB7h2OMmuu7VLqkvEjN8feFZJmxNF9D+Q==}
+ '@eslint-community/eslint-utils@4.9.0':
+ resolution: {integrity: sha512-ayVFHdtZ+hsq1t2Dy24wCmGXGe4q9Gu3smhLYALJrr473ZH27MsnSL+LKUlimp4BWJqMDMLmPpx/Q9R3OAlL4g==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
- '@eslint-community/regexpp@4.12.1':
- resolution: {integrity: sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==}
+ '@eslint-community/regexpp@4.12.2':
+ resolution: {integrity: sha512-EriSTlt5OC9/7SXkRSCAhfSxxoSUgBm33OH+IkwbdpgoqsSsUg7y3uh+IICI/Qg4BBWr3U2i39RpmycbxMq4ew==}
engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
'@eslint/eslintrc@2.1.4':
@@ -2920,17 +2997,17 @@ packages:
react: ^16.8.0 || ^17 || ^18
react-dom: ^16.8.0 || ^17 || ^18
- '@formatjs/ecma402-abstract@2.3.4':
- resolution: {integrity: sha512-qrycXDeaORzIqNhBOx0btnhpD1c+/qFIHAN9znofuMJX6QBwtbrmlpWfD4oiUUD2vJUOIYFA/gYtg2KAMGG7sA==}
+ '@formatjs/ecma402-abstract@2.3.6':
+ resolution: {integrity: sha512-HJnTFeRM2kVFVr5gr5kH1XP6K0JcJtE7Lzvtr3FS/so5f1kpsqqqxy5JF+FRaO6H2qmcMfAUIox7AJteieRtVw==}
'@formatjs/fast-memoize@2.2.7':
resolution: {integrity: sha512-Yabmi9nSvyOMrlSeGGWDiH7rf3a7sIwplbvo/dlz9WCIjzIQAfy1RMf4S0X3yG724n5Ghu2GmEl5NJIV6O9sZQ==}
- '@formatjs/icu-messageformat-parser@2.11.2':
- resolution: {integrity: sha512-AfiMi5NOSo2TQImsYAg8UYddsNJ/vUEv/HaNqiFjnI3ZFfWihUtD5QtuX6kHl8+H+d3qvnE/3HZrfzgdWpsLNA==}
+ '@formatjs/icu-messageformat-parser@2.11.4':
+ resolution: {integrity: sha512-7kR78cRrPNB4fjGFZg3Rmj5aah8rQj9KPzuLsmcSn4ipLXQvC04keycTI1F7kJYDwIXtT2+7IDEto842CfZBtw==}
- '@formatjs/icu-skeleton-parser@1.8.14':
- resolution: {integrity: sha512-i4q4V4qslThK4Ig8SxyD76cp3+QJ3sAqr7f6q9VVfeGtxG9OhiAk3y9XF6Q41OymsKzsGQ6OQQoJNY4/lI8TcQ==}
+ '@formatjs/icu-skeleton-parser@1.8.16':
+ resolution: {integrity: sha512-H13E9Xl+PxBd8D5/6TVUluSpxGNvFSlN/b3coUp0e0JpuWXXnQDiavIpY3NnvSp4xhEMoXyyBvVfdFX8jglOHQ==}
'@formatjs/intl-displaynames@1.2.10':
resolution: {integrity: sha512-GROA2RP6+7Ouu0WnHFF78O5XIU7pBfI19WM1qm93l6MFWibUk67nCfVCK3VAYJkLy8L8ZxjkYT11VIAfvSz8wg==}
@@ -2938,8 +3015,8 @@ packages:
'@formatjs/intl-listformat@1.4.8':
resolution: {integrity: sha512-WNMQlEg0e50VZrGIkgD5n7+DAMGt3boKi1GJALfhFMymslJb5i+5WzWxyj/3a929Z6MAFsmzRIJjKuv+BxKAOQ==}
- '@formatjs/intl-localematcher@0.6.1':
- resolution: {integrity: sha512-ePEgLgVCqi2BBFnTMWPfIghu6FkbZnnBVhO2sSxvLfrdFw7wCHAHiDoM2h4NRgjbaY7+B7HgOLZGkK187pZTZg==}
+ '@formatjs/intl-localematcher@0.6.2':
+ resolution: {integrity: sha512-XOMO2Hupl0wdd172Y06h6kLpBz6Dv+J4okPLl4LPtzbr8f66WbIoy4ev98EBuZ6ZK4h5ydTN6XneT4QVpD7cdA==}
'@formatjs/intl-relativetimeformat@4.5.16':
resolution: {integrity: sha512-IQ0haY97oHAH5OYUdykNiepdyEWj3SAT+Fp9ZpR85ov2JNiFx+12WWlxlVS8ehdyncC2ZMt/SwFIy2huK2+6/A==}
@@ -2977,12 +3054,12 @@ packages:
'@iarna/toml@2.2.5':
resolution: {integrity: sha512-trnsAYxU3xnS1gPHPyU961coFyLkh4gAD/0zQ5mymY4yOZ+CYvsPqUbOFSw0aDM4y0tV7tiFxL/1XfXPNC6IPg==}
- '@inquirer/ansi@1.0.0':
- resolution: {integrity: sha512-JWaTfCxI1eTmJ1BIv86vUfjVatOdxwD0DAVKYevY8SazeUUZtW+tNbsdejVO1GYE0GXJW1N1ahmiC3TFd+7wZA==}
+ '@inquirer/ansi@1.0.2':
+ resolution: {integrity: sha512-S8qNSZiYzFd0wAcyG5AXCvUHC5Sr7xpZ9wZ2py9XR88jUz8wooStVx5M6dRzczbBWjic9NP7+rY0Xi7qqK/aMQ==}
engines: {node: '>=18'}
- '@inquirer/checkbox@4.2.4':
- resolution: {integrity: sha512-2n9Vgf4HSciFq8ttKXk+qy+GsyTXPV1An6QAwe/8bkbbqvG4VW1I/ZY1pNu2rf+h9bdzMLPbRSfcNxkHBy/Ydw==}
+ '@inquirer/checkbox@4.3.2':
+ resolution: {integrity: sha512-VXukHf0RR1doGe6Sm4F0Em7SWYLTHSsbGfJdS9Ja2bX5/D5uwVOEjr07cncLROdBvmnvCATYEWlHqYmXv2IlQA==}
engines: {node: '>=18'}
peerDependencies:
'@types/node': '>=18'
@@ -2990,8 +3067,8 @@ packages:
'@types/node':
optional: true
- '@inquirer/confirm@5.1.18':
- resolution: {integrity: sha512-MilmWOzHa3Ks11tzvuAmFoAd/wRuaP3SwlT1IZhyMke31FKLxPiuDWcGXhU+PKveNOpAc4axzAgrgxuIJJRmLw==}
+ '@inquirer/confirm@5.1.21':
+ resolution: {integrity: sha512-KR8edRkIsUayMXV+o3Gv+q4jlhENF9nMYUZs9PA2HzrXeHI8M5uDag70U7RJn9yyiMZSbtF5/UexBtAVtZGSbQ==}
engines: {node: '>=18'}
peerDependencies:
'@types/node': '>=18'
@@ -2999,8 +3076,8 @@ packages:
'@types/node':
optional: true
- '@inquirer/core@10.2.2':
- resolution: {integrity: sha512-yXq/4QUnk4sHMtmbd7irwiepjB8jXU0kkFRL4nr/aDBA2mDz13cMakEWdDwX3eSCTkk03kwcndD1zfRAIlELxA==}
+ '@inquirer/core@10.3.2':
+ resolution: {integrity: sha512-43RTuEbfP8MbKzedNqBrlhhNKVwoK//vUFNW3Q3vZ88BLcrs4kYpGg+B2mm5p2K/HfygoCxuKwJJiv8PbGmE0A==}
engines: {node: '>=18'}
peerDependencies:
'@types/node': '>=18'
@@ -3008,8 +3085,8 @@ packages:
'@types/node':
optional: true
- '@inquirer/editor@4.2.20':
- resolution: {integrity: sha512-7omh5y5bK672Q+Brk4HBbnHNowOZwrb/78IFXdrEB9PfdxL3GudQyDk8O9vQ188wj3xrEebS2M9n18BjJoI83g==}
+ '@inquirer/editor@4.2.23':
+ resolution: {integrity: sha512-aLSROkEwirotxZ1pBaP8tugXRFCxW94gwrQLxXfrZsKkfjOYC1aRvAZuhpJOb5cu4IBTJdsCigUlf2iCOu4ZDQ==}
engines: {node: '>=18'}
peerDependencies:
'@types/node': '>=18'
@@ -3017,8 +3094,8 @@ packages:
'@types/node':
optional: true
- '@inquirer/expand@4.0.20':
- resolution: {integrity: sha512-Dt9S+6qUg94fEvgn54F2Syf0Z3U8xmnBI9ATq2f5h9xt09fs2IJXSCIXyyVHwvggKWFXEY/7jATRo2K6Dkn6Ow==}
+ '@inquirer/expand@4.0.23':
+ resolution: {integrity: sha512-nRzdOyFYnpeYTTR2qFwEVmIWypzdAx/sIkCMeTNTcflFOovfqUk+HcFhQQVBftAh9gmGrpFj6QcGEqrDMDOiew==}
engines: {node: '>=18'}
peerDependencies:
'@types/node': '>=18'
@@ -3026,8 +3103,8 @@ packages:
'@types/node':
optional: true
- '@inquirer/external-editor@1.0.2':
- resolution: {integrity: sha512-yy9cOoBnx58TlsPrIxauKIFQTiyH+0MK4e97y4sV9ERbI+zDxw7i2hxHLCIEGIE/8PPvDxGhgzIOTSOWcs6/MQ==}
+ '@inquirer/external-editor@1.0.3':
+ resolution: {integrity: sha512-RWbSrDiYmO4LbejWY7ttpxczuwQyZLBUyygsA9Nsv95hpzUWwnNTVQmAq3xuh7vNwCp07UTmE5i11XAEExx4RA==}
engines: {node: '>=18'}
peerDependencies:
'@types/node': '>=18'
@@ -3035,12 +3112,12 @@ packages:
'@types/node':
optional: true
- '@inquirer/figures@1.0.13':
- resolution: {integrity: sha512-lGPVU3yO9ZNqA7vTYz26jny41lE7yoQansmqdMLBEfqaGsmdg7V3W9mK9Pvb5IL4EVZ9GnSDGMO/cJXud5dMaw==}
+ '@inquirer/figures@1.0.15':
+ resolution: {integrity: sha512-t2IEY+unGHOzAaVM5Xx6DEWKeXlDDcNPeDyUpsRc6CUhBfU3VQOEl+Vssh7VNp1dR8MdUJBWhuObjXCsVpjN5g==}
engines: {node: '>=18'}
- '@inquirer/input@4.2.4':
- resolution: {integrity: sha512-cwSGpLBMwpwcZZsc6s1gThm0J+it/KIJ+1qFL2euLmSKUMGumJ5TcbMgxEjMjNHRGadouIYbiIgruKoDZk7klw==}
+ '@inquirer/input@4.3.1':
+ resolution: {integrity: sha512-kN0pAM4yPrLjJ1XJBjDxyfDduXOuQHrBB8aLDMueuwUGn+vNpF7Gq7TvyVxx8u4SHlFFj4trmj+a2cbpG4Jn1g==}
engines: {node: '>=18'}
peerDependencies:
'@types/node': '>=18'
@@ -3048,8 +3125,8 @@ packages:
'@types/node':
optional: true
- '@inquirer/number@3.0.20':
- resolution: {integrity: sha512-bbooay64VD1Z6uMfNehED2A2YOPHSJnQLs9/4WNiV/EK+vXczf/R988itL2XLDGTgmhMF2KkiWZo+iEZmc4jqg==}
+ '@inquirer/number@3.0.23':
+ resolution: {integrity: sha512-5Smv0OK7K0KUzUfYUXDXQc9jrf8OHo4ktlEayFlelCjwMXz0299Y8OrI+lj7i4gCBY15UObk76q0QtxjzFcFcg==}
engines: {node: '>=18'}
peerDependencies:
'@types/node': '>=18'
@@ -3057,8 +3134,8 @@ packages:
'@types/node':
optional: true
- '@inquirer/password@4.0.20':
- resolution: {integrity: sha512-nxSaPV2cPvvoOmRygQR+h0B+Av73B01cqYLcr7NXcGXhbmsYfUb8fDdw2Us1bI2YsX+VvY7I7upgFYsyf8+Nug==}
+ '@inquirer/password@4.0.23':
+ resolution: {integrity: sha512-zREJHjhT5vJBMZX/IUbyI9zVtVfOLiTO66MrF/3GFZYZ7T4YILW5MSkEYHceSii/KtRk+4i3RE7E1CUXA2jHcA==}
engines: {node: '>=18'}
peerDependencies:
'@types/node': '>=18'
@@ -3066,8 +3143,8 @@ packages:
'@types/node':
optional: true
- '@inquirer/prompts@7.8.6':
- resolution: {integrity: sha512-68JhkiojicX9SBUD8FE/pSKbOKtwoyaVj1kwqLfvjlVXZvOy3iaSWX4dCLsZyYx/5Ur07Fq+yuDNOen+5ce6ig==}
+ '@inquirer/prompts@7.10.1':
+ resolution: {integrity: sha512-Dx/y9bCQcXLI5ooQ5KyvA4FTgeo2jYj/7plWfV5Ak5wDPKQZgudKez2ixyfz7tKXzcJciTxqLeK7R9HItwiByg==}
engines: {node: '>=18'}
peerDependencies:
'@types/node': '>=18'
@@ -3075,8 +3152,8 @@ packages:
'@types/node':
optional: true
- '@inquirer/rawlist@4.1.8':
- resolution: {integrity: sha512-CQ2VkIASbgI2PxdzlkeeieLRmniaUU1Aoi5ggEdm6BIyqopE9GuDXdDOj9XiwOqK5qm72oI2i6J+Gnjaa26ejg==}
+ '@inquirer/rawlist@4.1.11':
+ resolution: {integrity: sha512-+LLQB8XGr3I5LZN/GuAHo+GpDJegQwuPARLChlMICNdwW7OwV2izlCSCxN6cqpL0sMXmbKbFcItJgdQq5EBXTw==}
engines: {node: '>=18'}
peerDependencies:
'@types/node': '>=18'
@@ -3084,8 +3161,8 @@ packages:
'@types/node':
optional: true
- '@inquirer/search@3.1.3':
- resolution: {integrity: sha512-D5T6ioybJJH0IiSUK/JXcoRrrm8sXwzrVMjibuPs+AgxmogKslaafy1oxFiorNI4s3ElSkeQZbhYQgLqiL8h6Q==}
+ '@inquirer/search@3.2.2':
+ resolution: {integrity: sha512-p2bvRfENXCZdWF/U2BXvnSI9h+tuA8iNqtUKb9UWbmLYCRQxd8WkvwWvYn+3NgYaNwdUkHytJMGG4MMLucI1kA==}
engines: {node: '>=18'}
peerDependencies:
'@types/node': '>=18'
@@ -3093,8 +3170,8 @@ packages:
'@types/node':
optional: true
- '@inquirer/select@4.3.4':
- resolution: {integrity: sha512-Qp20nySRmfbuJBBsgPU7E/cL62Hf250vMZRzYDcBHty2zdD1kKCnoDFWRr0WO2ZzaXp3R7a4esaVGJUx0E6zvA==}
+ '@inquirer/select@4.4.2':
+ resolution: {integrity: sha512-l4xMuJo55MAe+N7Qr4rX90vypFwCajSakx59qe/tMaC1aEHWLyw68wF4o0A4SLAY4E0nd+Vt+EyskeDIqu1M6w==}
engines: {node: '>=18'}
peerDependencies:
'@types/node': '>=18'
@@ -3102,8 +3179,8 @@ packages:
'@types/node':
optional: true
- '@inquirer/type@3.0.8':
- resolution: {integrity: sha512-lg9Whz8onIHRthWaN1Q9EGLa/0LFJjyM8mEUbL1eTi6yMGvBf8gvyDLtxSXztQsxMvhxxNpJYrwa1YHdq+w4Jw==}
+ '@inquirer/type@3.0.10':
+ resolution: {integrity: sha512-BvziSRxfz5Ov8ch0z/n3oijRSEcEsHnhggm4xFZe93DHcUCTlutlq9Ox4SVENAfcRD22UQq7T/atg9Wr3k09eA==}
engines: {node: '>=18'}
peerDependencies:
'@types/node': '>=18'
@@ -3127,49 +3204,41 @@ packages:
resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==}
engines: {node: '>=12'}
- '@istanbuljs/load-nyc-config@1.1.0':
- resolution: {integrity: sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==}
- engines: {node: '>=8'}
-
'@istanbuljs/schema@0.1.3':
resolution: {integrity: sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==}
engines: {node: '>=8'}
- '@jest/environment@29.7.0':
- resolution: {integrity: sha512-aQIfHDq33ExsN4jP1NWGXhxgQ/wixs60gDiKO+XVMd8Mn0NWPWgc34ZQDTb2jKaUWQ7MuwoitXAsN2XVXNMpAw==}
- engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
-
- '@jest/expect-utils@29.7.0':
- resolution: {integrity: sha512-GlsNBWiFQFCVi9QVSx7f5AgMeLxe9YCCs5PuP2O2LdjDAA8Jh9eX7lA1Jq/xdXw3Wb3hyvlFNfZIfcRetSzYcA==}
- engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+ '@jest/diff-sequences@30.0.1':
+ resolution: {integrity: sha512-n5H8QLDJ47QqbCNn5SuFjCRDrOLEZ0h8vAHCK5RL9Ls7Xa8AQLa/YxAc9UjFqoEDM48muwtBGjtMY5cr0PLDCw==}
+ engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
- '@jest/expect@29.7.0':
- resolution: {integrity: sha512-8uMeAMycttpva3P1lBHB8VciS9V0XAr3GymPpipdyQXbBcuhkLQOSe8E/p92RyAdToS6ZD1tFkX+CkhoECE0dQ==}
- engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+ '@jest/expect-utils@30.2.0':
+ resolution: {integrity: sha512-1JnRfhqpD8HGpOmQp180Fo9Zt69zNtC+9lR+kT7NVL05tNXIi+QC8Csz7lfidMoVLPD3FnOtcmp0CEFnxExGEA==}
+ engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
- '@jest/fake-timers@29.7.0':
- resolution: {integrity: sha512-q4DH1Ha4TTFPdxLsqDXK1d3+ioSL7yL5oCMJZgDYm6i+6CygW5E5xVr/D1HdsGxjt1ZWSfUAs9OxSB/BNelWrQ==}
- engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+ '@jest/get-type@30.1.0':
+ resolution: {integrity: sha512-eMbZE2hUnx1WV0pmURZY9XoXPkUYjpc55mb0CrhtdWLtzMQPFvu/rZkTLZFTsdaVQa+Tr4eWAteqcUzoawq/uA==}
+ engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
- '@jest/globals@29.7.0':
- resolution: {integrity: sha512-mpiz3dutLbkW2MNFubUGUEVLkTGiqW6yLVTA+JbP6fI6J5iL9Y0Nlg8k95pcF8ctKwCS7WVxteBs29hhfAotzQ==}
- engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+ '@jest/pattern@30.0.1':
+ resolution: {integrity: sha512-gWp7NfQW27LaBQz3TITS8L7ZCQ0TLvtmI//4OwlQRx4rnWxcPNIYjxZpDcN4+UlGxgm3jS5QPz8IPTCkb59wZA==}
+ engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
'@jest/schemas@29.6.3':
resolution: {integrity: sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
- '@jest/transform@29.7.0':
- resolution: {integrity: sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw==}
- engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+ '@jest/schemas@30.0.5':
+ resolution: {integrity: sha512-DmdYgtezMkh3cpU8/1uyXakv3tJRcmcXxBOcO0tbaozPwpmh4YMsnWrQm9ZmZMfa5ocbxzbFk6O4bDPEc/iAnA==}
+ engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
'@jest/types@26.6.2':
resolution: {integrity: sha512-fC6QCp7Sc5sX6g8Tvbmj4XUTbyrik0akgRy03yjXbQaBWWNWGE7SGtJk98m0N8nzegD/7SggrUlivxo5ax4KWQ==}
engines: {node: '>= 10.14.2'}
- '@jest/types@29.6.3':
- resolution: {integrity: sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==}
- engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+ '@jest/types@30.2.0':
+ resolution: {integrity: sha512-H9xg1/sfVvyfU7o3zMfBEjQ1gcsdeTMgqHoYdN79tuLqfTtuu7WckRA1R5whDwOzxaZAeMKTYWqP+WCAi0CHsg==}
+ engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
'@joshwooding/vite-plugin-react-docgen-typescript@0.5.0':
resolution: {integrity: sha512-qYDdL7fPwLRI+bJNurVcis+tNgJmvWjH4YTBGXTA8xMuxFrnAz6E5o35iyzyKbq5J5Lr8mJGfrR5GXl+WGwhgQ==}
@@ -3196,17 +3265,20 @@ packages:
'@jridgewell/sourcemap-codec@1.5.5':
resolution: {integrity: sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==}
- '@jridgewell/trace-mapping@0.3.30':
- resolution: {integrity: sha512-GQ7Nw5G2lTu/BtHTKfXhKHok2WGetd4XYcVKGx00SjAk8GMwgJM3zr6zORiPGuOE+/vkc90KtTosSSvaCjKb2Q==}
-
'@jridgewell/trace-mapping@0.3.31':
resolution: {integrity: sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==}
'@juggle/resize-observer@3.4.0':
resolution: {integrity: sha512-dfLbk+PwWvFzSxwk3n5ySL0hfBog779o8h68wK/7/APo/7cgyWp5jcXockbxdk5kFRkbeXWm4Fbi9FrdN381sA==}
- '@keyv/serialize@1.1.0':
- resolution: {integrity: sha512-RlDgexML7Z63Q8BSaqhXdCYNBy/JQnqYIwxofUrNLGCblOMHp+xux2Q8nLMLlPpgHQPoU0Do8Z6btCpRBEqZ8g==}
+ '@keyv/bigmap@1.3.0':
+ resolution: {integrity: sha512-KT01GjzV6AQD5+IYrcpoYLkCu1Jod3nau1Z7EsEuViO3TZGRacSbO9MfHmbJ1WaOXFtWLxPVj169cn2WNKPkIg==}
+ engines: {node: '>= 18'}
+ peerDependencies:
+ keyv: ^5.5.4
+
+ '@keyv/serialize@1.1.1':
+ resolution: {integrity: sha512-dXn3FZhPv0US+7dtJsIi2R+c7qWYiReoEh5zUntWCf4oSpMNib8FDhSoed6m3QyZdx5hK7iLFkYk3rNxwt8vTA==}
'@kitconcept/volto-bm3-compat@1.0.0-alpha.1':
resolution: {integrity: sha512-eKEtR1WBvLh9gf9JzCB7THgcYxyJPiw7QVXZ2Bdo6NOYSh05PPMvpN+lUBYj3ottk7oAt9Mvln4FCyfza4abUw==}
@@ -3273,19 +3345,6 @@ packages:
'@types/react': '>=16'
react: '>=16'
- '@microsoft/api-extractor-model@7.28.13':
- resolution: {integrity: sha512-39v/JyldX4MS9uzHcdfmjjfS6cYGAoXV+io8B5a338pkHiSt+gy2eXQ0Q7cGFJ7quSa1VqqlMdlPrB6sLR/cAw==}
-
- '@microsoft/api-extractor@7.43.0':
- resolution: {integrity: sha512-GFhTcJpB+MI6FhvXEI9b2K0snulNLWHqC/BbcJtyNYcKUiw7l3Lgis5ApsYncJ0leALX7/of4XfmXk+maT111w==}
- hasBin: true
-
- '@microsoft/tsdoc-config@0.16.2':
- resolution: {integrity: sha512-OGiIzzoBLgWWR0UdRJX98oYO+XKGf7tiK4Zk6tQ/E4IJqGCe7dvkTvgDZV5cFJUzLGDOjeAXrnZoA6QkVySuxw==}
-
- '@microsoft/tsdoc@0.14.2':
- resolution: {integrity: sha512-9b8mPpKrfeGRuhFH5iO1iwCLeIIsV6+H1sRfxbkoGXIyQE2BTsPd9zqSqQJ+pv5sJ/hT5M1zvOFL02MnEezFug==}
-
'@napi-rs/wasm-runtime@0.2.12':
resolution: {integrity: sha512-ZVWUcfwY4E/yPitQJl481FjFo3K22D6qF0DuFH6Y/nbnE11GY5uguDxZMGXPQ8WQ0128MXQD7TnfHyK4oWoIJQ==}
@@ -3339,12 +3398,12 @@ packages:
resolution: {integrity: sha512-/g2d4sW9nUDJOMz3mabVQvOGhVa4e/BN/Um7yca9Bb2XTzPPnfTWHWQg+IsEYO7M3Vx+EXvaM/I2pJWIMun1bg==}
engines: {node: '>= 18'}
- '@octokit/core@7.0.4':
- resolution: {integrity: sha512-jOT8V1Ba5BdC79sKrRWDdMT5l1R+XNHTPR6CPWzUP2EcfAcvIHZWF0eAbmRcpOOP5gVIwnqNg0C4nvh6Abc3OA==}
+ '@octokit/core@7.0.6':
+ resolution: {integrity: sha512-DhGl4xMVFGVIyMwswXeyzdL4uXD5OGILGX5N8Y+f6W7LhC1Ze2poSNrkF/fedpVDHEEZ+PHFW0vL14I+mm8K3Q==}
engines: {node: '>= 20'}
- '@octokit/endpoint@11.0.0':
- resolution: {integrity: sha512-hoYicJZaqISMAI3JfaDr1qMNi48OctWuOih1m80bkYow/ayPw6Jj52tqWJ6GEoFTk1gBqfanSoI1iY99Z5+ekQ==}
+ '@octokit/endpoint@11.0.2':
+ resolution: {integrity: sha512-4zCpzP1fWc7QlqunZ5bSEjxc6yLAlRTnDwKtgXfcI/FxxGoqedDG8V2+xJ60bV2kODqcGB+nATdtap/XYq2NZQ==}
engines: {node: '>= 20'}
'@octokit/endpoint@7.0.6':
@@ -3363,8 +3422,8 @@ packages:
resolution: {integrity: sha512-3mkDltSfcDUoa176nlGoA32RGjeWjl3K7F/BwHwRMJUW/IteSa4bnSV8p2ThNkcIcZU2umkZWxwETSSCJf2Q7g==}
engines: {node: '>= 18'}
- '@octokit/graphql@9.0.1':
- resolution: {integrity: sha512-j1nQNU1ZxNFx2ZtKmL4sMrs4egy5h65OMDmSbVyuCzjOcwsHq6EaYjOTGXPQxgfiN8dJ4CriYHk6zF050WEULg==}
+ '@octokit/graphql@9.0.3':
+ resolution: {integrity: sha512-grAEuupr/C1rALFnXTv6ZQhFuL1D8G5y8CN04RgrO4FIPMrtm+mcZzFG7dcBm+nq+1ppNixu+Jd78aeJOYxlGA==}
engines: {node: '>= 20'}
'@octokit/openapi-types@18.1.1':
@@ -3376,14 +3435,14 @@ packages:
'@octokit/openapi-types@24.2.0':
resolution: {integrity: sha512-9sIH3nSUttelJSXUrmGzl7QUBFul0/mB8HRYl3fOlgHbIWG+WnYDXU3v/2zMtAvuzZ/ed00Ei6on975FhBfzrg==}
- '@octokit/openapi-types@25.1.0':
- resolution: {integrity: sha512-idsIggNXUKkk0+BExUn1dQ92sfysJrje03Q0bv0e+KPLrvyqZF8MnBpFz8UNfYDwB3Ie7Z0TByjWfzxt7vseaA==}
-
'@octokit/openapi-types@26.0.0':
resolution: {integrity: sha512-7AtcfKtpo77j7Ts73b4OWhOZHTKo/gGY8bB3bNBQz4H+GRSWqx2yvj8TXRsbdTE0eRmYmXOEY66jM7mJ7LzfsA==}
- '@octokit/plugin-paginate-rest@13.1.1':
- resolution: {integrity: sha512-q9iQGlZlxAVNRN2jDNskJW/Cafy7/XE52wjZ5TTvyhyOD904Cvx//DNyoO3J/MXJ0ve3rPoNWKEg5iZrisQSuw==}
+ '@octokit/openapi-types@27.0.0':
+ resolution: {integrity: sha512-whrdktVs1h6gtR+09+QsNk2+FO+49j6ga1c55YZudfEG+oKJVvJLQi3zkOm5JjiUXAagWK2tI2kTGKJ2Ys7MGA==}
+
+ '@octokit/plugin-paginate-rest@13.2.1':
+ resolution: {integrity: sha512-Tj4PkZyIL6eBMYcG/76QGsedF0+dWVeLhYprTmuFVVxzDW7PQh23tM0TP0z+1MvSkxB29YFZwnUX+cXfTiSdyw==}
engines: {node: '>= 20'}
peerDependencies:
'@octokit/core': '>=6'
@@ -3423,8 +3482,8 @@ packages:
peerDependencies:
'@octokit/core': '5'
- '@octokit/plugin-rest-endpoint-methods@16.1.0':
- resolution: {integrity: sha512-nCsyiKoGRnhH5LkH8hJEZb9swpqOcsW+VXv1QoyUNQXJeVODG4+xM6UICEqyqe9XFr6LkL8BIiFCPev8zMDXPw==}
+ '@octokit/plugin-rest-endpoint-methods@16.1.1':
+ resolution: {integrity: sha512-VztDkhM0ketQYSh5Im3IcKWFZl7VIrrsCaHbDINkdYeiiAsJzjhS2xRFCSJgfN6VOcsoW4laMtsmf3HcNqIimg==}
engines: {node: '>= 20'}
peerDependencies:
'@octokit/core': '>=6'
@@ -3443,12 +3502,12 @@ packages:
resolution: {integrity: sha512-v9iyEQJH6ZntoENr9/yXxjuezh4My67CBSu9r6Ve/05Iu5gNgnisNWOsoJHTP6k0Rr0+HQIpnH+kyammu90q/g==}
engines: {node: '>= 18'}
- '@octokit/request-error@7.0.0':
- resolution: {integrity: sha512-KRA7VTGdVyJlh0cP5Tf94hTiYVVqmt2f3I6mnimmaVz4UG3gQV/k4mDJlJv3X67iX6rmN7gSHCF8ssqeMnmhZg==}
+ '@octokit/request-error@7.1.0':
+ resolution: {integrity: sha512-KMQIfq5sOPpkQYajXHwnhjCC0slzCNScLHs9JafXc4RAJI+9f+jNDlBNaIMTvazOPLgb4BnlhGJOTbnN0wIjPw==}
engines: {node: '>= 20'}
- '@octokit/request@10.0.3':
- resolution: {integrity: sha512-V6jhKokg35vk098iBqp2FBKunk3kMTXlmq+PtbV9Gl3TfskWlebSofU9uunVKhUN7xl+0+i5vt0TGTG8/p/7HA==}
+ '@octokit/request@10.0.7':
+ resolution: {integrity: sha512-v93h0i1yu4idj8qFPZwjehoJx4j3Ntn+JhXsdJrG9pYaX6j/XRz2RmasMUHtNgQD39nrv/VwTWSqK0RNXR8upA==}
engines: {node: '>= 20'}
'@octokit/request@6.2.8':
@@ -3483,97 +3542,15 @@ packages:
'@octokit/types@13.10.0':
resolution: {integrity: sha512-ifLaO34EbbPj0Xgro4G5lP5asESjwHracYJvVaPIyXMuiuXLlhic3S47cBdTb+jfODkTE5YtGCLt3Ay3+J97sA==}
- '@octokit/types@14.1.0':
- resolution: {integrity: sha512-1y6DgTy8Jomcpu33N+p5w58l6xyt55Ar2I91RPiIA0xCJBXyUAhXCcmZaDWSANiha7R9a6qJJ2CRomGPZ6f46g==}
+ '@octokit/types@15.0.2':
+ resolution: {integrity: sha512-rR+5VRjhYSer7sC51krfCctQhVTmjyUMAaShfPB8mscVa8tSoLyon3coxQmXu0ahJoLVWl8dSGD/3OGZlFV44Q==}
- '@octokit/types@15.0.0':
- resolution: {integrity: sha512-8o6yDfmoGJUIeR9OfYU0/TUJTnMPG2r68+1yEdUeG2Fdqpj8Qetg0ziKIgcBm0RW/j29H41WP37CYCEhp6GoHQ==}
+ '@octokit/types@16.0.0':
+ resolution: {integrity: sha512-sKq+9r1Mm4efXW1FCk7hFSeJo4QKreL/tTbR0rz/qx/r1Oa2VV83LTA/H/MuCOX7uCIJmQVRKBcbmWoySjAnSg==}
'@octokit/types@9.3.2':
resolution: {integrity: sha512-D4iHGTdAnEEVsB8fl95m1hiz7D5YiRdQ9b/OEb3BYRVwbLsGHcRVPz+u+BgRLNk0Q0/4iZCBqDN96j2XNxfXrA==}
- '@parcel/watcher-android-arm64@2.5.1':
- resolution: {integrity: sha512-KF8+j9nNbUN8vzOFDpRMsaKBHZ/mcjEjMToVMJOhTozkDonQFFrRcfdLWn6yWKCmJKmdVxSgHiYvTCef4/qcBA==}
- engines: {node: '>= 10.0.0'}
- cpu: [arm64]
- os: [android]
-
- '@parcel/watcher-darwin-arm64@2.5.1':
- resolution: {integrity: sha512-eAzPv5osDmZyBhou8PoF4i6RQXAfeKL9tjb3QzYuccXFMQU0ruIc/POh30ePnaOyD1UXdlKguHBmsTs53tVoPw==}
- engines: {node: '>= 10.0.0'}
- cpu: [arm64]
- os: [darwin]
-
- '@parcel/watcher-darwin-x64@2.5.1':
- resolution: {integrity: sha512-1ZXDthrnNmwv10A0/3AJNZ9JGlzrF82i3gNQcWOzd7nJ8aj+ILyW1MTxVk35Db0u91oD5Nlk9MBiujMlwmeXZg==}
- engines: {node: '>= 10.0.0'}
- cpu: [x64]
- os: [darwin]
-
- '@parcel/watcher-freebsd-x64@2.5.1':
- resolution: {integrity: sha512-SI4eljM7Flp9yPuKi8W0ird8TI/JK6CSxju3NojVI6BjHsTyK7zxA9urjVjEKJ5MBYC+bLmMcbAWlZ+rFkLpJQ==}
- engines: {node: '>= 10.0.0'}
- cpu: [x64]
- os: [freebsd]
-
- '@parcel/watcher-linux-arm-glibc@2.5.1':
- resolution: {integrity: sha512-RCdZlEyTs8geyBkkcnPWvtXLY44BCeZKmGYRtSgtwwnHR4dxfHRG3gR99XdMEdQ7KeiDdasJwwvNSF5jKtDwdA==}
- engines: {node: '>= 10.0.0'}
- cpu: [arm]
- os: [linux]
-
- '@parcel/watcher-linux-arm-musl@2.5.1':
- resolution: {integrity: sha512-6E+m/Mm1t1yhB8X412stiKFG3XykmgdIOqhjWj+VL8oHkKABfu/gjFj8DvLrYVHSBNC+/u5PeNrujiSQ1zwd1Q==}
- engines: {node: '>= 10.0.0'}
- cpu: [arm]
- os: [linux]
-
- '@parcel/watcher-linux-arm64-glibc@2.5.1':
- resolution: {integrity: sha512-LrGp+f02yU3BN9A+DGuY3v3bmnFUggAITBGriZHUREfNEzZh/GO06FF5u2kx8x+GBEUYfyTGamol4j3m9ANe8w==}
- engines: {node: '>= 10.0.0'}
- cpu: [arm64]
- os: [linux]
-
- '@parcel/watcher-linux-arm64-musl@2.5.1':
- resolution: {integrity: sha512-cFOjABi92pMYRXS7AcQv9/M1YuKRw8SZniCDw0ssQb/noPkRzA+HBDkwmyOJYp5wXcsTrhxO0zq1U11cK9jsFg==}
- engines: {node: '>= 10.0.0'}
- cpu: [arm64]
- os: [linux]
-
- '@parcel/watcher-linux-x64-glibc@2.5.1':
- resolution: {integrity: sha512-GcESn8NZySmfwlTsIur+49yDqSny2IhPeZfXunQi48DMugKeZ7uy1FX83pO0X22sHntJ4Ub+9k34XQCX+oHt2A==}
- engines: {node: '>= 10.0.0'}
- cpu: [x64]
- os: [linux]
-
- '@parcel/watcher-linux-x64-musl@2.5.1':
- resolution: {integrity: sha512-n0E2EQbatQ3bXhcH2D1XIAANAcTZkQICBPVaxMeaCVBtOpBZpWJuf7LwyWPSBDITb7In8mqQgJ7gH8CILCURXg==}
- engines: {node: '>= 10.0.0'}
- cpu: [x64]
- os: [linux]
-
- '@parcel/watcher-win32-arm64@2.5.1':
- resolution: {integrity: sha512-RFzklRvmc3PkjKjry3hLF9wD7ppR4AKcWNzH7kXR7GUe0Igb3Nz8fyPwtZCSquGrhU5HhUNDr/mKBqj7tqA2Vw==}
- engines: {node: '>= 10.0.0'}
- cpu: [arm64]
- os: [win32]
-
- '@parcel/watcher-win32-ia32@2.5.1':
- resolution: {integrity: sha512-c2KkcVN+NJmuA7CGlaGD1qJh1cLfDnQsHjE89E60vUEMlqduHGCdCLJCID5geFVM0dOtA3ZiIO8BoEQmzQVfpQ==}
- engines: {node: '>= 10.0.0'}
- cpu: [ia32]
- os: [win32]
-
- '@parcel/watcher-win32-x64@2.5.1':
- resolution: {integrity: sha512-9lHBdJITeNR++EvSQVUcaZoWupyHfXe1jZvGZ06O/5MflPcuPLtEphScIBL+AiCWBO46tDSHzWyD0uDmmZqsgA==}
- engines: {node: '>= 10.0.0'}
- cpu: [x64]
- os: [win32]
-
- '@parcel/watcher@2.5.1':
- resolution: {integrity: sha512-dfUnCxiN9H4ap84DvD2ubjw+3vUNpstxa0TneY/Paat8a3R4uQZDLSvWjmznAY/DoahqTHl9V46HF/Zs3F29pg==}
- engines: {node: '>= 10.0.0'}
-
'@phun-ky/typeof@2.0.3':
resolution: {integrity: sha512-oeQJs1aa8Ghke8JIK9yuq/+KjMiaYeDZ38jx7MhkXncXlUKjqQ3wEm2X3qCKyjo+ZZofZj+WsEEiqkTtRuE2xQ==}
engines: {node: ^20.9.0 || >=22.0.0, npm: '>=10.8.2'}
@@ -3605,8 +3582,8 @@ packages:
react-dom:
optional: true
- '@plone/scripts@3.10.1':
- resolution: {integrity: sha512-U4RUHX+9YmVAMJX6uY/7KMSzcHimovK2paGVlz4WBicyp9hwCdOQ/9oCvq2wBLWHWAFUXlVjsWyHz03fotrgAA==}
+ '@plone/scripts@3.10.3':
+ resolution: {integrity: sha512-ehklcOoczX1Ji06qA5Y6MZgz87YgR2GeW5zSaY4CzSG3YG7fF6pTnFa7MVVHAOcY8isSN2s97T6jB6PD75pQng==}
hasBin: true
'@pmmmwh/react-refresh-webpack-plugin@0.5.17':
@@ -3653,12 +3630,6 @@ packages:
'@popperjs/core@2.11.8':
resolution: {integrity: sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A==}
- '@react-aria/autocomplete@3.0.0-rc.1':
- resolution: {integrity: sha512-4/+XHkCq9nkC0TNfgPsbuMTu3iwM6Gz4j67rTQRMXrWwCTAqAHJJEmDz/YDt/04Rg+dkGPsauHHMqDxwxZV24Q==}
- peerDependencies:
- react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
- react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
-
'@react-aria/autocomplete@3.0.0-rc.3':
resolution: {integrity: sha512-vemf7h3hvIDk3MxiiPryysfYgJDg8R72X46dRIeg0+cXKYxjPYou64/DTucSV2z5J6RC5JalINu0jIDaLhEILw==}
peerDependencies:
@@ -3695,24 +3666,12 @@ packages:
react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
- '@react-aria/collections@3.0.0-rc.6':
- resolution: {integrity: sha512-N4AzRqzFJ4BztM1x56ot33smDUUsYQ6pzlbz6m4f8ARSqQYl0a2FsM13PYDtuNI5Dt9KtkL6rK/tLaZlTghLyg==}
- peerDependencies:
- react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
- react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
-
'@react-aria/color@3.1.2':
resolution: {integrity: sha512-jCC+Q7rAQGLQBkHjkPAeDuGYuMbc4neifjlNRiyZ9as1z4gg63H8MteoWYYk6K4vCKKxSixgt8MfI29XWMOWPQ==}
peerDependencies:
react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
- '@react-aria/combobox@3.13.2':
- resolution: {integrity: sha512-PNyqlaM19A+lKX9hwqkKTXvWDilCKaRH2RdrB/C5AfmGi3bh/IKsu66c8ohgadXB2AIdJB36EOOm3hNh8G9DqQ==}
- peerDependencies:
- react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
- react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
-
'@react-aria/combobox@3.14.0':
resolution: {integrity: sha512-z4ro0Hma//p4nL2IJx5iUa7NwxeXbzSoZ0se5uTYjG1rUUMszg+wqQh/AQoL+eiULn7rs18JY9wwNbVIkRNKWA==}
peerDependencies:
@@ -3737,20 +3696,8 @@ packages:
react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
- '@react-aria/dnd@3.11.2':
- resolution: {integrity: sha512-xaIUV0zPtUTLIBoE7qlGFPfRTfyDJT78fDzawYq6FwZcjgrl8X408UDCUaKk6xSJRh9UjNn78hil1WDYTLFNWA==}
- peerDependencies:
- react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
- react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
-
- '@react-aria/dnd@3.11.3':
- resolution: {integrity: sha512-MyTziciik1Owz3rqDghu0K3ZtTFvmj/R2ZsLDwbU9N4hKqGX/BKnrI8SytTn8RDqVv5LmA/GhApLngiupTAsXw==}
- peerDependencies:
- react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
- react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
-
- '@react-aria/focus@3.21.1':
- resolution: {integrity: sha512-hmH1IhHlcQ2lSIxmki1biWzMbGgnhdxJUM0MFfzc71Rv6YAzhlx4kX3GYn4VNcjCeb6cdPv4RZ5vunV4kgMZYQ==}
+ '@react-aria/dnd@3.11.3':
+ resolution: {integrity: sha512-MyTziciik1Owz3rqDghu0K3ZtTFvmj/R2ZsLDwbU9N4hKqGX/BKnrI8SytTn8RDqVv5LmA/GhApLngiupTAsXw==}
peerDependencies:
react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
@@ -3761,12 +3708,6 @@ packages:
react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
- '@react-aria/form@3.1.1':
- resolution: {integrity: sha512-PjZC25UgH5orit9p56Ymbbo288F3eaDd3JUvD8SG+xgx302HhlFAOYsQLLAb4k4H03bp0gWtlUEkfX6KYcE1Tw==}
- peerDependencies:
- react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
- react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
-
'@react-aria/form@3.1.2':
resolution: {integrity: sha512-R3i7L7Ci61PqZQvOrnL9xJeWEbh28UkTVgkj72EvBBn39y4h7ReH++0stv7rRs8p5ozETSKezBbGfu4UsBewWw==}
peerDependencies:
@@ -3785,36 +3726,18 @@ packages:
react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
- '@react-aria/i18n@3.12.12':
- resolution: {integrity: sha512-JN6p+Xc6Pu/qddGRoeYY6ARsrk2Oz7UiQc9nLEPOt3Ch+blJZKWwDjcpo/p6/wVZdD/2BgXS7El6q6+eMg7ibw==}
- peerDependencies:
- react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
- react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
-
'@react-aria/i18n@3.12.13':
resolution: {integrity: sha512-YTM2BPg0v1RvmP8keHenJBmlx8FXUKsdYIEX7x6QWRd1hKlcDwphfjzvt0InX9wiLiPHsT5EoBTpuUk8SXc0Mg==}
peerDependencies:
react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
- '@react-aria/interactions@3.25.5':
- resolution: {integrity: sha512-EweYHOEvMwef/wsiEqV73KurX/OqnmbzKQa2fLxdULbec5+yDj6wVGaRHIzM4NiijIDe+bldEl5DG05CAKOAHA==}
- peerDependencies:
- react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
- react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
-
'@react-aria/interactions@3.25.6':
resolution: {integrity: sha512-5UgwZmohpixwNMVkMvn9K1ceJe6TzlRlAfuYoQDUuOkk62/JVJNDLAPKIf5YMRc7d2B0rmfgaZLMtbREb0Zvkw==}
peerDependencies:
react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
- '@react-aria/label@3.7.21':
- resolution: {integrity: sha512-8G+059/GZahgQbrhMcCcVcrjm7W+pfzrypH/Qkjo7C1yqPGt6geeFwWeOIbiUZoI0HD9t9QvQPryd6m46UC7Tg==}
- peerDependencies:
- react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
- react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
-
'@react-aria/label@3.7.22':
resolution: {integrity: sha512-jLquJeA5ZNqDT64UpTc9XJ7kQYltUlNcgxZ37/v4mHe0UZ7QohCKdKQhXHONb0h2jjNUpp2HOZI8J9++jOpzxA==}
peerDependencies:
@@ -3833,12 +3756,6 @@ packages:
react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
- '@react-aria/listbox@3.14.8':
- resolution: {integrity: sha512-uRgbuD9afFv0PDhQ/VXCmAwlYctIyKRzxztkqp1p/1yz/tn/hs+bG9kew9AI02PtlRO1mSc+32O+mMDXDer8hA==}
- peerDependencies:
- react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
- react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
-
'@react-aria/listbox@3.15.0':
resolution: {integrity: sha512-Ub1Wu79R9sgxM7h4HeEdjOgOKDHwduvYcnDqsSddGXgpkL8ADjsy2YUQ0hHY5VnzA4BxK36bLp4mzSna8Qvj1w==}
peerDependencies:
@@ -3848,12 +3765,6 @@ packages:
'@react-aria/live-announcer@3.4.4':
resolution: {integrity: sha512-PTTBIjNRnrdJOIRTDGNifY2d//kA7GUAwRFJNOEwSNG4FW+Bq9awqLiflw0JkpyB0VNIwou6lqKPHZVLsGWOXA==}
- '@react-aria/menu@3.19.2':
- resolution: {integrity: sha512-WzDLW2MotL0L5/LEwc5oGgISf2ODuw4FnRpF0Zk+J4tKFfC88odvKz848ubBvThRXuXEvL0BHY+WqtM+j9fn3g==}
- peerDependencies:
- react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
- react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
-
'@react-aria/menu@3.19.3':
resolution: {integrity: sha512-52fh8y8b2776R2VrfZPpUBJYC9oTP7XDy+zZuZTxPEd7Ywk0JNUl5F92y6ru22yPkS13sdhrNM/Op+V/KulmAg==}
peerDependencies:
@@ -3872,12 +3783,6 @@ packages:
react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
- '@react-aria/overlays@3.29.1':
- resolution: {integrity: sha512-Yz92XNPnbrTnxrvNrY/fXJ3iWaYNrj0q24ddvZNNKDcWak0S1/mQeUwNb+PwS2AryhFU5VQqKz5rNsM96TKmPQ==}
- peerDependencies:
- react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
- react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
-
'@react-aria/overlays@3.30.0':
resolution: {integrity: sha512-UpjqSjYZx5FAhceWCRVsW6fX1sEwya1fQ/TKkL53FAlLFR8QKuoKqFlmiL43YUFTcGK3UdEOy3cWTleLQwdSmQ==}
peerDependencies:
@@ -3896,12 +3801,6 @@ packages:
react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
- '@react-aria/searchfield@3.8.8':
- resolution: {integrity: sha512-Yn6esCYEym3Cwrh/OZt6o/RFzsG2zyCAEZf7BhWk6NWUvP6aPwHgoSDVSjDN6YnnPn4yMqkqPnZulHV4+MvE/w==}
- peerDependencies:
- react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
- react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
-
'@react-aria/searchfield@3.8.9':
resolution: {integrity: sha512-Yt2pj8Wb5/XsUr2T0DQqFv+DlFpzzWIWnNr9cJATUcWV/xw6ok7YFEg9+7EHtBmsCQxFFJtock1QfZzBw6qLtQ==}
peerDependencies:
@@ -3914,12 +3813,6 @@ packages:
react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
- '@react-aria/selection@3.25.1':
- resolution: {integrity: sha512-HG+k3rDjuhnXPdVyv9CKiebee2XNkFYeYZBxEGlK3/pFVBzndnc8BXNVrXSgtCHLs2d090JBVKl1k912BPbj0Q==}
- peerDependencies:
- react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
- react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
-
'@react-aria/selection@3.26.0':
resolution: {integrity: sha512-ZBH3EfWZ+RfhTj01dH8L17uT7iNbXWS8u77/fUpHgtrm0pwNVhx0TYVnLU1YpazQ/3WVpvWhmBB8sWwD1FlD/g==}
peerDependencies:
@@ -3974,12 +3867,6 @@ packages:
react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
- '@react-aria/textfield@3.18.1':
- resolution: {integrity: sha512-8yCoirnQzbbQgdk5J5bqimEu3GhHZ9FXeMHez1OF+H+lpTwyTYQ9XgioEN3HKnVUBNEufG4lYkQMxTKJdq1v9g==}
- peerDependencies:
- react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
- react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
-
'@react-aria/textfield@3.18.2':
resolution: {integrity: sha512-G+lM8VYSor6g9Yptc6hLZ6BF+0cq0pYol1z6wdQUQgJN8tg4HPtzq75lsZtlCSIznL3amgRAxJtd0dUrsAnvaQ==}
peerDependencies:
@@ -3998,12 +3885,6 @@ packages:
react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
- '@react-aria/toolbar@3.0.0-beta.20':
- resolution: {integrity: sha512-Kxvqw+TpVOE/eSi8RAQ9xjBQ2uXe8KkRvlRNQWQsrzkZDkXhzqGfQuJnBmozFxqpzSLwaVqQajHFUSvPAScT8Q==}
- peerDependencies:
- react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
- react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
-
'@react-aria/toolbar@3.0.0-beta.21':
resolution: {integrity: sha512-yRCk/GD8g+BhdDgxd3I0a0c8Ni4Wyo6ERzfSoBkPkwQ4X2E2nkopmraM9D0fXw4UcIr4bnmvADzkHXtBN0XrBg==}
peerDependencies:
@@ -4034,18 +3915,6 @@ packages:
react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
- '@react-aria/virtualizer@4.1.9':
- resolution: {integrity: sha512-LN5MfnM/fpZegzkqciipyAvPzbi4DNOGGCh98hVlpIT8IdTm0gNW1Ho2vza15EFcYgt9iinCZ9lhLT5HmE2ZtQ==}
- peerDependencies:
- react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
- react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
-
- '@react-aria/visually-hidden@3.8.27':
- resolution: {integrity: sha512-hD1DbL3WnjPnCdlQjwe19bQVRAGJyN0Aaup+s7NNtvZUn7AjoEH78jo8TE+L8yM7z/OZUQF26laCfYqeIwWn4g==}
- peerDependencies:
- react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
- react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
-
'@react-aria/visually-hidden@3.8.28':
resolution: {integrity: sha512-KRRjbVVob2CeBidF24dzufMxBveEUtUu7IM+hpdZKB+gxVROoh4XRLPv9SFmaH89Z7D9To3QoykVZoWD0lan6Q==}
peerDependencies:
@@ -4073,11 +3942,6 @@ packages:
peerDependencies:
react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
- '@react-stately/collections@3.12.7':
- resolution: {integrity: sha512-0kQc0mI986GOCQHvRy4L0JQiotIK/KmEhR9Mu/6V0GoSdqg5QeUe4kyoNWj3bl03uQXme80v0L2jLHt+fOHHjA==}
- peerDependencies:
- react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
-
'@react-stately/collections@3.12.8':
resolution: {integrity: sha512-AceJYLLXt1Y2XIcOPi6LEJSs4G/ubeYW3LqOCQbhfIgMaNqKfQMIfagDnPeJX9FVmPFSlgoCBxb1pTJW2vjCAQ==}
peerDependencies:
@@ -4088,11 +3952,6 @@ packages:
peerDependencies:
react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
- '@react-stately/combobox@3.11.1':
- resolution: {integrity: sha512-ZZh+SaAmddoY+MeJr470oDYA0nGaJm4xoHCBapaBA0JNakGC/wTzF/IRz3tKQT2VYK4rumr1BJLZQydGp7zzeg==}
- peerDependencies:
- react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
-
'@react-stately/combobox@3.12.0':
resolution: {integrity: sha512-A6q9R/7cEa/qoQsBkdslXWvD7ztNLLQ9AhBhVN9QvzrmrH5B4ymUwcTU8lWl22ykH7RRwfonLeLXJL4C+/L2oQ==}
peerDependencies:
@@ -4113,11 +3972,6 @@ packages:
peerDependencies:
react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
- '@react-stately/dnd@3.7.0':
- resolution: {integrity: sha512-DddpCVkqt6vUPHLqe/2FHxW/gkR4tEt7W0MbFcCeCLbc9lmvzOClPwNpjmU/3UnU+vPQnwGGUeF3HvaxduUq2Q==}
- peerDependencies:
- react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
-
'@react-stately/dnd@3.7.1':
resolution: {integrity: sha512-O1JBJ4HI1rVNKuoa5NXiC5FCrCEkr9KVBoKNlTZU8/cnQselhbEsUfMglAakO2EuwIaM1tIXoNF5J/N5P+6lTA==}
peerDependencies:
@@ -4126,53 +3980,27 @@ packages:
'@react-stately/flags@3.1.2':
resolution: {integrity: sha512-2HjFcZx1MyQXoPqcBGALwWWmgFVUk2TuKVIQxCbRq7fPyWXIl6VHcakCLurdtYC2Iks7zizvz0Idv48MQ38DWg==}
- '@react-stately/form@3.2.1':
- resolution: {integrity: sha512-btgOPXkwvd6fdWKoepy5Ue43o2932OSkQxozsR7US1ffFLcQc3SNlADHaRChIXSG8ffPo9t0/Sl4eRzaKu3RgQ==}
- peerDependencies:
- react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
-
'@react-stately/form@3.2.2':
resolution: {integrity: sha512-soAheOd7oaTO6eNs6LXnfn0tTqvOoe3zN9FvtIhhrErKz9XPc5sUmh3QWwR45+zKbitOi1HOjfA/gifKhZcfWw==}
peerDependencies:
react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
- '@react-stately/grid@3.11.5':
- resolution: {integrity: sha512-4cNjGYaNkcVS2wZoNHUrMRICBpkHStYw57EVemP7MjiWEVu53kzPgR1Iwmti2WFCpi1Lwu0qWNeCfzKpXW4BTg==}
- peerDependencies:
- react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
-
'@react-stately/grid@3.11.6':
resolution: {integrity: sha512-vWPAkzpeTIsrurHfMubzMuqEw7vKzFhIJeEK5sEcLunyr1rlADwTzeWrHNbPMl66NAIAi70Dr1yNq+kahQyvMA==}
peerDependencies:
react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
- '@react-stately/layout@4.5.0':
- resolution: {integrity: sha512-giN20XXxSjOG/pRSdzKkHhIFochl0Wer2aWCYceXRNSoP0dTPNU7bjn2p3n3atVRdC9iZpmwIiASO5qDf89sLQ==}
- peerDependencies:
- react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
- react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
-
'@react-stately/layout@4.5.1':
resolution: {integrity: sha512-Zk92HM6a8KFdyPzslhLCOmrrsvJ28+vFBisgiKMwVhe96cWlax1m9i4ktmO43xaUpSZkn06DRD/2k0d1x+Uwjw==}
peerDependencies:
react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
- '@react-stately/list@3.13.0':
- resolution: {integrity: sha512-Panv8TmaY8lAl3R7CRhyUadhf2yid6VKsRDBCBB1FHQOOeL7lqIraz/oskvpabZincuaIUWqQhqYslC4a6dvuA==}
- peerDependencies:
- react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
-
'@react-stately/list@3.13.1':
resolution: {integrity: sha512-eHaoauh21twbcl0kkwULhVJ+CzYcy1jUjMikNVMHOQdhr4WIBdExf7PmSgKHKqsSPhpGg6IpTCY2dUX3RycjDg==}
peerDependencies:
react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
- '@react-stately/menu@3.9.7':
- resolution: {integrity: sha512-mfz1YoCgtje61AGxVdQaAFLlOXt9vV5dd1lQljYUPRafA/qu5Ursz4fNVlcavWW9GscebzFQErx+y0oSP7EUtQ==}
- peerDependencies:
- react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
-
'@react-stately/menu@3.9.8':
resolution: {integrity: sha512-bo0NOhofnTHLESiYfsSSw6gyXiPVJJ0UlN2igUXtJk5PmyhWjFzUzTzcnd7B028OB0si9w3LIWM3stqz5271Eg==}
peerDependencies:
@@ -4183,11 +4011,6 @@ packages:
peerDependencies:
react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
- '@react-stately/overlays@3.6.19':
- resolution: {integrity: sha512-swZXfDvxTYd7tKEpijEHBFFaEmbbnCvEhGlmrAz4K72cuRR9O5u+lcla8y1veGBbBSzrIdKNdBoIIJ+qQH+1TQ==}
- peerDependencies:
- react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
-
'@react-stately/overlays@3.6.20':
resolution: {integrity: sha512-YAIe+uI8GUXX8F/0Pzr53YeC5c/bjqbzDFlV8NKfdlCPa6+Jp4B/IlYVjIooBj9+94QvbQdjylegvYWK/iPwlg==}
peerDependencies:
@@ -4198,31 +4021,16 @@ packages:
peerDependencies:
react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
- '@react-stately/searchfield@3.5.15':
- resolution: {integrity: sha512-6LVVvm6Z60fetYLLa4B2Q/BIY+fSSknLTw8sjlV+iDEPAknj7MqWtoLz2gSQRTFKvyO7ZCjJoar8ZU/JEqcm+w==}
- peerDependencies:
- react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
-
'@react-stately/searchfield@3.5.16':
resolution: {integrity: sha512-MRfqT1lZ24r94GuFNcGJXsfijZoWjSMySCT60T6NXtbOzVPuAF3K+pL70Rayq/EWLJjS2NPHND11VTs0VdcE0Q==}
peerDependencies:
react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
- '@react-stately/select@3.7.1':
- resolution: {integrity: sha512-vZt4j9yVyOTWWJoP9plXmYaPZH2uMxbjcGMDbiShwsFiK8C2m9b3Cvy44TZehfzCWzpMVR/DYxEYuonEIGA82Q==}
- peerDependencies:
- react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
-
'@react-stately/select@3.8.0':
resolution: {integrity: sha512-A721nlt0DSCDit0wKvhcrXFTG5Vv1qkEVkeKvobmETZy6piKvwh0aaN8iQno5AFuZaj1iOZeNjZ/20TsDJR/4A==}
peerDependencies:
react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
- '@react-stately/selection@3.20.5':
- resolution: {integrity: sha512-YezWUNEn2pz5mQlbhmngiX9HqQsruLSXlkrAzB1DD6aliGrUvPKufTTGCixOaB8KVeCamdiFAgx1WomNplzdQA==}
- peerDependencies:
- react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
-
'@react-stately/selection@3.20.6':
resolution: {integrity: sha512-a0bjuP2pJYPKEiedz2Us1W1aSz0iHRuyeQEdBOyL6Z6VUa6hIMq9H60kvseir2T85cOa4QggizuRV7mcO6bU5w==}
peerDependencies:
@@ -4233,11 +4041,6 @@ packages:
peerDependencies:
react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
- '@react-stately/table@3.15.0':
- resolution: {integrity: sha512-KbvkrVF3sb25IPwyte9JcG5/4J7TgjHSsw7D61d/T/oUFMYPYVeolW9/2y+6u48WPkDJE8HJsurme+HbTN0FQA==}
- peerDependencies:
- react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
-
'@react-stately/table@3.15.1':
resolution: {integrity: sha512-MhMAgE/LgAzHcAn1P3p/nQErzJ6DiixSJ1AOt2JlnAKEb5YJg4ATKWCb2IjBLwywt9ZCzfm3KMUzkctZqAoxwA==}
peerDependencies:
@@ -4263,11 +4066,6 @@ packages:
peerDependencies:
react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
- '@react-stately/tree@3.9.2':
- resolution: {integrity: sha512-jsT1WZZhb7GRmg1iqoib9bULsilIK5KhbE8WrcfIml8NYr4usP4DJMcIYfRuiRtPLhKtUvHSoZ5CMbinPp8PUQ==}
- peerDependencies:
- react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
-
'@react-stately/tree@3.9.3':
resolution: {integrity: sha512-ZngG79nLFxE/GYmpwX6E/Rma2MMkzdoJPRI3iWk3dgqnGMMzpPnUp/cvjDsU3UHF7xDVusC5BT6pjWN0uxCIFQ==}
peerDependencies:
@@ -4278,23 +4076,12 @@ packages:
peerDependencies:
react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
- '@react-stately/virtualizer@4.4.3':
- resolution: {integrity: sha512-kk6ZyMtOT51kZYGUjUhbgEdRBp/OR3WD+Vj9kFoCa1vbY+fGzbpcnjsvR2LDZuEq8W45ruOvdr1c7HRJG4gWxA==}
- peerDependencies:
- react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
- react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
-
'@react-stately/virtualizer@4.4.4':
resolution: {integrity: sha512-ri8giqXSZOrznZDCCOE4U36wSkOhy+hrFK7yo/YVcpxTqqp3d3eisfKMqbDsgqBW+XTHycTU/xeAf0u9NqrfpQ==}
peerDependencies:
react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
- '@react-types/autocomplete@3.0.0-alpha.34':
- resolution: {integrity: sha512-wswz7r0823EWfBZVMVicoDmFw0T6k7LqGlsLivq/2mq1dL62ywPFPtRUNU5nYqgslZYPUZMPyZgKdehKyuwE7Q==}
- peerDependencies:
- react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
-
'@react-types/autocomplete@3.0.0-alpha.35':
resolution: {integrity: sha512-Wv5eU4WixfJ4M+fqvJUQqliWPbw7/VldRlgoJhqAlPwlNyLlHYwv5tlA64AySDXHGcSMIbzcS38LaHm44wt0AQ==}
peerDependencies:
@@ -4305,11 +4092,6 @@ packages:
peerDependencies:
react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
- '@react-types/button@3.14.0':
- resolution: {integrity: sha512-pXt1a+ElxiZyWpX0uznyjy5Z6EHhYxPcaXpccZXyn6coUo9jmCbgg14xR7Odo+JcbfaaISzZTDO7oGLVTcHnpA==}
- peerDependencies:
- react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
-
'@react-types/button@3.14.1':
resolution: {integrity: sha512-D8C4IEwKB7zEtiWYVJ3WE/5HDcWlze9mLWQ5hfsBfpePyWCgO3bT/+wjb/7pJvcAocrkXo90QrMm85LcpBtrpg==}
peerDependencies:
@@ -4330,11 +4112,6 @@ packages:
peerDependencies:
react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
- '@react-types/combobox@3.13.8':
- resolution: {integrity: sha512-HGC3X9hmDRsjSZcFiflvJ7vbIgQ2gX/ZDxo1HVtvQqUDbgQCVakCcCdrB44aYgHFnyDiO6hyp7Y7jXtDBaEIIA==}
- peerDependencies:
- react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
-
'@react-types/combobox@3.13.9':
resolution: {integrity: sha512-G6GmLbzVkLW6VScxPAr/RtliEyPhBClfYaIllK1IZv+Z42SVnOpKzhnoe79BpmiFqy1AaC3+LjZX783mrsHCwA==}
peerDependencies:
@@ -4350,21 +4127,11 @@ packages:
peerDependencies:
react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
- '@react-types/form@3.7.15':
- resolution: {integrity: sha512-a7C1RXgMpHX9b1x/+h5YCOJL/2/Ojw9ErOJhLwUWzKUu5JWpQYf8JsXNsuMSndo4YBaiH/7bXFmg09cllHUmow==}
- peerDependencies:
- react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
-
'@react-types/form@3.7.16':
resolution: {integrity: sha512-Sb7KJoWEaQ/e4XIY+xRbjKvbP1luome98ZXevpD+zVSyGjEcfIroebizP6K1yMHCWP/043xH6GUkgEqWPoVGjg==}
peerDependencies:
react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
- '@react-types/grid@3.3.5':
- resolution: {integrity: sha512-hG6J2KDfmOHitkWoCa/9DvY1nTO2wgMIApcFoqLv7AWJr9CzvVqo5tIhZZCXiT1AvU2kafJxu9e7sr5GxAT2YA==}
- peerDependencies:
- react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
-
'@react-types/grid@3.3.6':
resolution: {integrity: sha512-vIZJlYTii2n1We9nAugXwM2wpcpsC6JigJFBd6vGhStRdRWRoU4yv1Gc98Usbx0FQ/J7GLVIgeG8+1VMTKBdxw==}
peerDependencies:
@@ -4375,21 +4142,11 @@ packages:
peerDependencies:
react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
- '@react-types/listbox@3.7.3':
- resolution: {integrity: sha512-ONgror9uyGmIer5XxpRRNcc8QFVWiOzINrMKyaS8G4l3aP52ZwYpRfwMAVtra8lkVNvXDmO7hthPZkB6RYdNOA==}
- peerDependencies:
- react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
-
'@react-types/listbox@3.7.4':
resolution: {integrity: sha512-p4YEpTl/VQGrqVE8GIfqTS5LkT5jtjDTbVeZgrkPnX/fiPhsfbTPiZ6g0FNap4+aOGJFGEEZUv2q4vx+rCORww==}
peerDependencies:
react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
- '@react-types/menu@3.10.4':
- resolution: {integrity: sha512-jCFVShLq3eASiuznenjoKBv3j0Jy2KQilAjBxdEp56WkZ5D338y/oY5zR6d25u9M0QslpI0DgwC8BwU7MCsPnw==}
- peerDependencies:
- react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
-
'@react-types/menu@3.10.5':
resolution: {integrity: sha512-HBTrKll2hm0VKJNM4ubIv1L9MNo8JuOnm2G3M+wXvb6EYIyDNxxJkhjsqsGpUXJdAOSkacHBDcNh2HsZABNX4A==}
peerDependencies:
@@ -4405,11 +4162,6 @@ packages:
peerDependencies:
react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
- '@react-types/overlays@3.9.1':
- resolution: {integrity: sha512-UCG3TOu8FLk4j0Pr1nlhv0opcwMoqbGEOUvsSr6ITN6Qs2y0j+KYSYQ7a4+04m3dN//8+9Wjkkid8k+V1dV2CA==}
- peerDependencies:
- react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
-
'@react-types/overlays@3.9.2':
resolution: {integrity: sha512-Q0cRPcBGzNGmC8dBuHyoPR7N3057KTS5g+vZfQ53k8WwmilXBtemFJPLsogJbspuewQ/QJ3o2HYsp2pne7/iNw==}
peerDependencies:
@@ -4425,21 +4177,11 @@ packages:
peerDependencies:
react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
- '@react-types/searchfield@3.6.5':
- resolution: {integrity: sha512-5hI+Hb1U0bSxrJLvEwFEQfk7n3S+GO4c5W/0WZBG00YlYDY9asr1V0oU1WRmKPJJlRpyfG6PkMHDC3jhdj89ew==}
- peerDependencies:
- react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
-
'@react-types/searchfield@3.6.6':
resolution: {integrity: sha512-cl3itr/fk7wbIQc2Gz5Ie8aVeUmPjVX/mRGS5/EXlmzycAKNYTvqf2mlxwObLndtLISmt7IgNjRRhbUUDI8Ang==}
peerDependencies:
react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
- '@react-types/select@3.10.1':
- resolution: {integrity: sha512-teANUr1byOzGsS/r2j7PatV470JrOhKP8En9lscfnqW5CeUghr+0NxkALnPkiEhCObi/Vu8GIcPareD0HNhtFA==}
- peerDependencies:
- react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
-
'@react-types/select@3.11.0':
resolution: {integrity: sha512-SzIsMFVPCbXE1Z1TLfpdfiwJ1xnIkcL1/CjGilmUKkNk5uT7rYX1xCJqWCjXI0vAU1xM4Qn+T3n8de4fw6HRBg==}
peerDependencies:
@@ -4460,11 +4202,6 @@ packages:
peerDependencies:
react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
- '@react-types/table@3.13.3':
- resolution: {integrity: sha512-/kY/VlXN+8l9saySd6igcsDQ3x8pOVFJAWyMh6gOaOVN7HOJkTMIchmqS+ATa4nege8jZqcdzyGeAmv7mN655A==}
- peerDependencies:
- react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
-
'@react-types/table@3.13.4':
resolution: {integrity: sha512-I/DYiZQl6aNbMmjk90J9SOhkzVDZvyA3Vn3wMWCiajkMNjvubFhTfda5DDf2SgFP5l0Yh6TGGH5XumRv9LqL5Q==}
peerDependencies:
@@ -4475,11 +4212,6 @@ packages:
peerDependencies:
react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
- '@react-types/textfield@3.12.5':
- resolution: {integrity: sha512-VXez8KIcop87EgIy00r+tb30xokA309TfJ32Qv5qOYB5SMqoHnb6SYvWL8Ih2PDqCo5eBiiGesSaWYrHnRIL8Q==}
- peerDependencies:
- react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
-
'@react-types/textfield@3.12.6':
resolution: {integrity: sha512-hpEVKE+M3uUkTjw2WrX1NrH/B3rqDJFUa+ViNK2eVranLY4ZwFqbqaYXSzHupOF3ecSjJJv2C103JrwFvx6TPQ==}
peerDependencies:
@@ -4498,11 +4230,11 @@ packages:
'@rolldown/pluginutils@1.0.0-beta.27':
resolution: {integrity: sha512-+d0F4MKMCbeVUJwG96uQ4SgAznZNSq93I3V+9NHA4OpvqG8mRCpGdKmK8l/dl02h2CCDHwW2FqilnTyDcAnqjA==}
- '@rolldown/pluginutils@1.0.0-beta.43':
- resolution: {integrity: sha512-5Uxg7fQUCmfhax7FJke2+8B6cqgeUJUD9o2uXIKXhD+mG0mL6NObmVoi9wXEU1tY89mZKgAYA6fTbftx3q2ZPQ==}
+ '@rolldown/pluginutils@1.0.0-beta.47':
+ resolution: {integrity: sha512-8QagwMH3kNCuzD8EWL8R2YPW5e4OrHNSAHRFDdmFqEwEaD/KcNKjVoumo+gP2vW5eKB2UPbM6vTYiGZX0ixLnw==}
- '@rollup/pluginutils@5.2.0':
- resolution: {integrity: sha512-qWJ2ZTbmumwiLFomfzTyt5Kng4hwPi9rwCYN4SHb6eaRU1KNO4ccxINHr/VhH4GgPlt1XfSTLX2LBTme8ne4Zw==}
+ '@rollup/pluginutils@5.3.0':
+ resolution: {integrity: sha512-5EdhGZtnu3V88ces7s53hhfK5KSASnJZv8Lulpc04cWO3REESroJXg73DFsOmgbU2BhwV0E20bu2IDZb3VKW4Q==}
engines: {node: '>=14.0.0'}
peerDependencies:
rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0
@@ -4510,138 +4242,121 @@ packages:
rollup:
optional: true
- '@rollup/rollup-android-arm-eabi@4.50.0':
- resolution: {integrity: sha512-lVgpeQyy4fWN5QYebtW4buT/4kn4p4IJ+kDNB4uYNT5b8c8DLJDg6titg20NIg7E8RWwdWZORW6vUFfrLyG3KQ==}
+ '@rollup/rollup-android-arm-eabi@4.53.3':
+ resolution: {integrity: sha512-mRSi+4cBjrRLoaal2PnqH82Wqyb+d3HsPUN/W+WslCXsZsyHa9ZeQQX/pQsZaVIWDkPcpV6jJ+3KLbTbgnwv8w==}
cpu: [arm]
os: [android]
- '@rollup/rollup-android-arm64@4.50.0':
- resolution: {integrity: sha512-2O73dR4Dc9bp+wSYhviP6sDziurB5/HCym7xILKifWdE9UsOe2FtNcM+I4xZjKrfLJnq5UR8k9riB87gauiQtw==}
+ '@rollup/rollup-android-arm64@4.53.3':
+ resolution: {integrity: sha512-CbDGaMpdE9sh7sCmTrTUyllhrg65t6SwhjlMJsLr+J8YjFuPmCEjbBSx4Z/e4SmDyH3aB5hGaJUP2ltV/vcs4w==}
cpu: [arm64]
os: [android]
- '@rollup/rollup-darwin-arm64@4.50.0':
- resolution: {integrity: sha512-vwSXQN8T4sKf1RHr1F0s98Pf8UPz7pS6P3LG9NSmuw0TVh7EmaE+5Ny7hJOZ0M2yuTctEsHHRTMi2wuHkdS6Hg==}
+ '@rollup/rollup-darwin-arm64@4.53.3':
+ resolution: {integrity: sha512-Nr7SlQeqIBpOV6BHHGZgYBuSdanCXuw09hon14MGOLGmXAFYjx1wNvquVPmpZnl0tLjg25dEdr4IQ6GgyToCUA==}
cpu: [arm64]
os: [darwin]
- '@rollup/rollup-darwin-x64@4.50.0':
- resolution: {integrity: sha512-cQp/WG8HE7BCGyFVuzUg0FNmupxC+EPZEwWu2FCGGw5WDT1o2/YlENbm5e9SMvfDFR6FRhVCBePLqj0o8MN7Vw==}
+ '@rollup/rollup-darwin-x64@4.53.3':
+ resolution: {integrity: sha512-DZ8N4CSNfl965CmPktJ8oBnfYr3F8dTTNBQkRlffnUarJ2ohudQD17sZBa097J8xhQ26AwhHJ5mvUyQW8ddTsQ==}
cpu: [x64]
os: [darwin]
- '@rollup/rollup-freebsd-arm64@4.50.0':
- resolution: {integrity: sha512-UR1uTJFU/p801DvvBbtDD7z9mQL8J80xB0bR7DqW7UGQHRm/OaKzp4is7sQSdbt2pjjSS72eAtRh43hNduTnnQ==}
+ '@rollup/rollup-freebsd-arm64@4.53.3':
+ resolution: {integrity: sha512-yMTrCrK92aGyi7GuDNtGn2sNW+Gdb4vErx4t3Gv/Tr+1zRb8ax4z8GWVRfr3Jw8zJWvpGHNpss3vVlbF58DZ4w==}
cpu: [arm64]
os: [freebsd]
- '@rollup/rollup-freebsd-x64@4.50.0':
- resolution: {integrity: sha512-G/DKyS6PK0dD0+VEzH/6n/hWDNPDZSMBmqsElWnCRGrYOb2jC0VSupp7UAHHQ4+QILwkxSMaYIbQ72dktp8pKA==}
+ '@rollup/rollup-freebsd-x64@4.53.3':
+ resolution: {integrity: sha512-lMfF8X7QhdQzseM6XaX0vbno2m3hlyZFhwcndRMw8fbAGUGL3WFMBdK0hbUBIUYcEcMhVLr1SIamDeuLBnXS+Q==}
cpu: [x64]
os: [freebsd]
- '@rollup/rollup-linux-arm-gnueabihf@4.50.0':
- resolution: {integrity: sha512-u72Mzc6jyJwKjJbZZcIYmd9bumJu7KNmHYdue43vT1rXPm2rITwmPWF0mmPzLm9/vJWxIRbao/jrQmxTO0Sm9w==}
+ '@rollup/rollup-linux-arm-gnueabihf@4.53.3':
+ resolution: {integrity: sha512-k9oD15soC/Ln6d2Wv/JOFPzZXIAIFLp6B+i14KhxAfnq76ajt0EhYc5YPeX6W1xJkAdItcVT+JhKl1QZh44/qw==}
cpu: [arm]
os: [linux]
- '@rollup/rollup-linux-arm-musleabihf@4.50.0':
- resolution: {integrity: sha512-S4UefYdV0tnynDJV1mdkNawp0E5Qm2MtSs330IyHgaccOFrwqsvgigUD29uT+B/70PDY1eQ3t40+xf6wIvXJyg==}
+ '@rollup/rollup-linux-arm-musleabihf@4.53.3':
+ resolution: {integrity: sha512-vTNlKq+N6CK/8UktsrFuc+/7NlEYVxgaEgRXVUVK258Z5ymho29skzW1sutgYjqNnquGwVUObAaxae8rZ6YMhg==}
cpu: [arm]
os: [linux]
- '@rollup/rollup-linux-arm64-gnu@4.50.0':
- resolution: {integrity: sha512-1EhkSvUQXJsIhk4msxP5nNAUWoB4MFDHhtc4gAYvnqoHlaL9V3F37pNHabndawsfy/Tp7BPiy/aSa6XBYbaD1g==}
+ '@rollup/rollup-linux-arm64-gnu@4.53.3':
+ resolution: {integrity: sha512-RGrFLWgMhSxRs/EWJMIFM1O5Mzuz3Xy3/mnxJp/5cVhZ2XoCAxJnmNsEyeMJtpK+wu0FJFWz+QF4mjCA7AUQ3w==}
cpu: [arm64]
os: [linux]
- '@rollup/rollup-linux-arm64-musl@4.50.0':
- resolution: {integrity: sha512-EtBDIZuDtVg75xIPIK1l5vCXNNCIRM0OBPUG+tbApDuJAy9mKago6QxX+tfMzbCI6tXEhMuZuN1+CU8iDW+0UQ==}
+ '@rollup/rollup-linux-arm64-musl@4.53.3':
+ resolution: {integrity: sha512-kASyvfBEWYPEwe0Qv4nfu6pNkITLTb32p4yTgzFCocHnJLAHs+9LjUu9ONIhvfT/5lv4YS5muBHyuV84epBo/A==}
cpu: [arm64]
os: [linux]
- '@rollup/rollup-linux-loongarch64-gnu@4.50.0':
- resolution: {integrity: sha512-BGYSwJdMP0hT5CCmljuSNx7+k+0upweM2M4YGfFBjnFSZMHOLYR0gEEj/dxyYJ6Zc6AiSeaBY8dWOa11GF/ppQ==}
+ '@rollup/rollup-linux-loong64-gnu@4.53.3':
+ resolution: {integrity: sha512-JiuKcp2teLJwQ7vkJ95EwESWkNRFJD7TQgYmCnrPtlu50b4XvT5MOmurWNrCj3IFdyjBQ5p9vnrX4JM6I8OE7g==}
cpu: [loong64]
os: [linux]
- '@rollup/rollup-linux-ppc64-gnu@4.50.0':
- resolution: {integrity: sha512-I1gSMzkVe1KzAxKAroCJL30hA4DqSi+wGc5gviD0y3IL/VkvcnAqwBf4RHXHyvH66YVHxpKO8ojrgc4SrWAnLg==}
+ '@rollup/rollup-linux-ppc64-gnu@4.53.3':
+ resolution: {integrity: sha512-EoGSa8nd6d3T7zLuqdojxC20oBfNT8nexBbB/rkxgKj5T5vhpAQKKnD+h3UkoMuTyXkP5jTjK/ccNRmQrPNDuw==}
cpu: [ppc64]
os: [linux]
- '@rollup/rollup-linux-riscv64-gnu@4.50.0':
- resolution: {integrity: sha512-bSbWlY3jZo7molh4tc5dKfeSxkqnf48UsLqYbUhnkdnfgZjgufLS/NTA8PcP/dnvct5CCdNkABJ56CbclMRYCA==}
+ '@rollup/rollup-linux-riscv64-gnu@4.53.3':
+ resolution: {integrity: sha512-4s+Wped2IHXHPnAEbIB0YWBv7SDohqxobiiPA1FIWZpX+w9o2i4LezzH/NkFUl8LRci/8udci6cLq+jJQlh+0g==}
cpu: [riscv64]
os: [linux]
- '@rollup/rollup-linux-riscv64-musl@4.50.0':
- resolution: {integrity: sha512-LSXSGumSURzEQLT2e4sFqFOv3LWZsEF8FK7AAv9zHZNDdMnUPYH3t8ZlaeYYZyTXnsob3htwTKeWtBIkPV27iQ==}
+ '@rollup/rollup-linux-riscv64-musl@4.53.3':
+ resolution: {integrity: sha512-68k2g7+0vs2u9CxDt5ktXTngsxOQkSEV/xBbwlqYcUrAVh6P9EgMZvFsnHy4SEiUl46Xf0IObWVbMvPrr2gw8A==}
cpu: [riscv64]
os: [linux]
- '@rollup/rollup-linux-s390x-gnu@4.50.0':
- resolution: {integrity: sha512-CxRKyakfDrsLXiCyucVfVWVoaPA4oFSpPpDwlMcDFQvrv3XY6KEzMtMZrA+e/goC8xxp2WSOxHQubP8fPmmjOQ==}
+ '@rollup/rollup-linux-s390x-gnu@4.53.3':
+ resolution: {integrity: sha512-VYsFMpULAz87ZW6BVYw3I6sWesGpsP9OPcyKe8ofdg9LHxSbRMd7zrVrr5xi/3kMZtpWL/wC+UIJWJYVX5uTKg==}
cpu: [s390x]
os: [linux]
- '@rollup/rollup-linux-x64-gnu@4.50.0':
- resolution: {integrity: sha512-8PrJJA7/VU8ToHVEPu14FzuSAqVKyo5gg/J8xUerMbyNkWkO9j2ExBho/68RnJsMGNJq4zH114iAttgm7BZVkA==}
+ '@rollup/rollup-linux-x64-gnu@4.53.3':
+ resolution: {integrity: sha512-3EhFi1FU6YL8HTUJZ51imGJWEX//ajQPfqWLI3BQq4TlvHy4X0MOr5q3D2Zof/ka0d5FNdPwZXm3Yyib/UEd+w==}
cpu: [x64]
os: [linux]
- '@rollup/rollup-linux-x64-musl@4.50.0':
- resolution: {integrity: sha512-SkE6YQp+CzpyOrbw7Oc4MgXFvTw2UIBElvAvLCo230pyxOLmYwRPwZ/L5lBe/VW/qT1ZgND9wJfOsdy0XptRvw==}
+ '@rollup/rollup-linux-x64-musl@4.53.3':
+ resolution: {integrity: sha512-eoROhjcc6HbZCJr+tvVT8X4fW3/5g/WkGvvmwz/88sDtSJzO7r/blvoBDgISDiCjDRZmHpwud7h+6Q9JxFwq1Q==}
cpu: [x64]
os: [linux]
- '@rollup/rollup-openharmony-arm64@4.50.0':
- resolution: {integrity: sha512-PZkNLPfvXeIOgJWA804zjSFH7fARBBCpCXxgkGDRjjAhRLOR8o0IGS01ykh5GYfod4c2yiiREuDM8iZ+pVsT+Q==}
+ '@rollup/rollup-openharmony-arm64@4.53.3':
+ resolution: {integrity: sha512-OueLAWgrNSPGAdUdIjSWXw+u/02BRTcnfw9PN41D2vq/JSEPnJnVuBgw18VkN8wcd4fjUs+jFHVM4t9+kBSNLw==}
cpu: [arm64]
os: [openharmony]
- '@rollup/rollup-win32-arm64-msvc@4.50.0':
- resolution: {integrity: sha512-q7cIIdFvWQoaCbLDUyUc8YfR3Jh2xx3unO8Dn6/TTogKjfwrax9SyfmGGK6cQhKtjePI7jRfd7iRYcxYs93esg==}
+ '@rollup/rollup-win32-arm64-msvc@4.53.3':
+ resolution: {integrity: sha512-GOFuKpsxR/whszbF/bzydebLiXIHSgsEUp6M0JI8dWvi+fFa1TD6YQa4aSZHtpmh2/uAlj/Dy+nmby3TJ3pkTw==}
cpu: [arm64]
os: [win32]
- '@rollup/rollup-win32-ia32-msvc@4.50.0':
- resolution: {integrity: sha512-XzNOVg/YnDOmFdDKcxxK410PrcbcqZkBmz+0FicpW5jtjKQxcW1BZJEQOF0NJa6JO7CZhett8GEtRN/wYLYJuw==}
+ '@rollup/rollup-win32-ia32-msvc@4.53.3':
+ resolution: {integrity: sha512-iah+THLcBJdpfZ1TstDFbKNznlzoxa8fmnFYK4V67HvmuNYkVdAywJSoteUszvBQ9/HqN2+9AZghbajMsFT+oA==}
cpu: [ia32]
os: [win32]
- '@rollup/rollup-win32-x64-msvc@4.50.0':
- resolution: {integrity: sha512-xMmiWRR8sp72Zqwjgtf3QbZfF1wdh8X2ABu3EaozvZcyHJeU0r+XAnXdKgs4cCAp6ORoYoCygipYP1mjmbjrsg==}
+ '@rollup/rollup-win32-x64-gnu@4.53.3':
+ resolution: {integrity: sha512-J9QDiOIZlZLdcot5NXEepDkstocktoVjkaKUtqzgzpt2yWjGlbYiKyp05rWwk4nypbYUNoFAztEgixoLaSETkg==}
+ cpu: [x64]
+ os: [win32]
+
+ '@rollup/rollup-win32-x64-msvc@4.53.3':
+ resolution: {integrity: sha512-UhTd8u31dXadv0MopwGgNOBpUVROFKWVQgAg5N1ESyCz8AuBcMqm4AuTjrwgQKGDfoFuz02EuMRHQIw/frmYKQ==}
cpu: [x64]
os: [win32]
'@rtsao/scc@1.1.0':
resolution: {integrity: sha512-zt6OdqaDoOnJ1ZYsCYGt9YmWzDXl4vQdKTyJev62gFhRGKdx7mcT54V9KIjg+d2wi9EXsPvAPKe7i7WjfVWB8g==}
- '@rushstack/eslint-patch@1.12.0':
- resolution: {integrity: sha512-5EwMtOqvJMMa3HbmxLlF74e+3/HhwBTMcvt3nqVJgGCozO6hzIPOBlwm8mGVNR9SN2IJpxSnlxczyDjcn7qIyw==}
-
- '@rushstack/node-core-library@4.0.2':
- resolution: {integrity: sha512-hyES82QVpkfQMeBMteQUnrhASL/KHPhd7iJ8euduwNJG4mu2GSOKybf0rOEjOm1Wz7CwJEUm9y0yD7jg2C1bfg==}
- peerDependencies:
- '@types/node': '*'
- peerDependenciesMeta:
- '@types/node':
- optional: true
-
- '@rushstack/rig-package@0.5.2':
- resolution: {integrity: sha512-mUDecIJeH3yYGZs2a48k+pbhM6JYwWlgjs2Ca5f2n1G2/kgdgP9D/07oglEGf6mRyXEnazhEENeYTSNDRCwdqA==}
-
- '@rushstack/terminal@0.10.0':
- resolution: {integrity: sha512-UbELbXnUdc7EKwfH2sb8ChqNgapUOdqcCIdQP4NGxBpTZV2sQyeekuK3zmfQSa/MN+/7b4kBogl2wq0vpkpYGw==}
- peerDependencies:
- '@types/node': '*'
- peerDependenciesMeta:
- '@types/node':
- optional: true
-
- '@rushstack/ts-command-line@4.19.1':
- resolution: {integrity: sha512-J7H768dgcpG60d7skZ5uSSwyCZs/S2HrWP1Ds8d1qYAyaaeJmpmmLr9BVw97RjFzmQPOYnoXcKA4GkqDCkduQg==}
+ '@rushstack/eslint-patch@1.15.0':
+ resolution: {integrity: sha512-ojSshQPKwVvSMR8yT2L/QtUkV5SXi/IfDiJ4/8d6UbTPjiHVmxZzUAzGD8Tzks1b9+qQkZa0isUOvYObedITaw==}
'@sec-ant/readable-stream@0.4.1':
resolution: {integrity: sha512-831qok9r2t8AlxLko40y2ebgSDhenenCatLVeW/uBtnHPyhHOvG0C7TvfgecV+wHzIm5KUICgzmVpWS+IMEAeg==}
@@ -4667,6 +4382,9 @@ packages:
'@sinclair/typebox@0.27.8':
resolution: {integrity: sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==}
+ '@sinclair/typebox@0.34.41':
+ resolution: {integrity: sha512-6gS8pZzSXdyRHTIqoqSVknxolr1kzfy4/CeDnrzsVz8TTIWUbOBr6gnzOmTYJ3eXQNh4IYHIGi5aIL7sOZ2G/g==}
+
'@sindresorhus/is@4.6.0':
resolution: {integrity: sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw==}
engines: {node: '>=10'}
@@ -4686,12 +4404,6 @@ packages:
'@sinonjs/commons@1.8.6':
resolution: {integrity: sha512-Ky+XkAkqPZSm3NLBeUng77EBQl3cmeJhITaGHdYH8kjVB+aun3S4XBRti2zt17mtt0mIUDiNxYeoJm6drVvBJQ==}
- '@sinonjs/commons@3.0.1':
- resolution: {integrity: sha512-K3mCHKQ9sVh8o1C9cxkwxaOmXoAMlDxC1mYyHrjqOWEcBjYr76t96zL2zlj5dUGZ3HSw240X1qgH3Mjf1yJWpQ==}
-
- '@sinonjs/fake-timers@10.3.0':
- resolution: {integrity: sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA==}
-
'@sinonjs/fake-timers@6.0.1':
resolution: {integrity: sha512-MZPUxrmFubI36XS1DI3qmI0YdN1gks62JtFZvxR67ljjSNCeK6U08Zx4msEWOXuofgqUt6zPHSi1H9fbjR/NRA==}
@@ -4824,8 +4536,8 @@ packages:
'@storybook/global@5.0.0':
resolution: {integrity: sha512-FcOqPAXACP0I3oJ/ws6/rrPT9WGhu915Cg8D02a9YxLo0DE9zI+a9A5gRGvmQ09fiWPukqI8ZAEoQEdWUKMQdQ==}
- '@storybook/icons@1.4.0':
- resolution: {integrity: sha512-Td73IeJxOyalzvjQL+JXx72jlIYHgs+REaHiREOqfpo3A2AYYG71AUbcv+lg7mEDIweKVCxsMQ0UKo634c8XeA==}
+ '@storybook/icons@1.6.0':
+ resolution: {integrity: sha512-hcFZIjW8yQz8O8//2WTIXylm5Xsgc+lW9ISLgUk1xGmptIJQRdlhVIXCpSyLrQaaRiyhQRaVg7l3BD9S216BHw==}
engines: {node: '>=14.0.0'}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0-beta
@@ -5002,65 +4714,65 @@ packages:
resolution: {integrity: sha512-+PmQX0PiAYPMeVYe237LJAYvOMYW1j2rH5YROyS3b4CTVJum34HfRvKvAzozHAQG0TnHNdUfY9nCeUyRAs//cw==}
engines: {node: '>=14.16'}
- '@tailwindcss/node@4.1.16':
- resolution: {integrity: sha512-BX5iaSsloNuvKNHRN3k2RcCuTEgASTo77mofW0vmeHkfrDWaoFAFvNHpEgtu0eqyypcyiBkDWzSMxJhp3AUVcw==}
+ '@tailwindcss/node@4.1.17':
+ resolution: {integrity: sha512-csIkHIgLb3JisEFQ0vxr2Y57GUNYh447C8xzwj89U/8fdW8LhProdxvnVH6U8M2Y73QKiTIH+LWbK3V2BBZsAg==}
- '@tailwindcss/oxide-android-arm64@4.1.16':
- resolution: {integrity: sha512-8+ctzkjHgwDJ5caq9IqRSgsP70xhdhJvm+oueS/yhD5ixLhqTw9fSL1OurzMUhBwE5zK26FXLCz2f/RtkISqHA==}
+ '@tailwindcss/oxide-android-arm64@4.1.17':
+ resolution: {integrity: sha512-BMqpkJHgOZ5z78qqiGE6ZIRExyaHyuxjgrJ6eBO5+hfrfGkuya0lYfw8fRHG77gdTjWkNWEEm+qeG2cDMxArLQ==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [android]
- '@tailwindcss/oxide-darwin-arm64@4.1.16':
- resolution: {integrity: sha512-C3oZy5042v2FOALBZtY0JTDnGNdS6w7DxL/odvSny17ORUnaRKhyTse8xYi3yKGyfnTUOdavRCdmc8QqJYwFKA==}
+ '@tailwindcss/oxide-darwin-arm64@4.1.17':
+ resolution: {integrity: sha512-EquyumkQweUBNk1zGEU/wfZo2qkp/nQKRZM8bUYO0J+Lums5+wl2CcG1f9BgAjn/u9pJzdYddHWBiFXJTcxmOg==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [darwin]
- '@tailwindcss/oxide-darwin-x64@4.1.16':
- resolution: {integrity: sha512-vjrl/1Ub9+JwU6BP0emgipGjowzYZMjbWCDqwA2Z4vCa+HBSpP4v6U2ddejcHsolsYxwL5r4bPNoamlV0xDdLg==}
+ '@tailwindcss/oxide-darwin-x64@4.1.17':
+ resolution: {integrity: sha512-gdhEPLzke2Pog8s12oADwYu0IAw04Y2tlmgVzIN0+046ytcgx8uZmCzEg4VcQh+AHKiS7xaL8kGo/QTiNEGRog==}
engines: {node: '>= 10'}
cpu: [x64]
os: [darwin]
- '@tailwindcss/oxide-freebsd-x64@4.1.16':
- resolution: {integrity: sha512-TSMpPYpQLm+aR1wW5rKuUuEruc/oOX3C7H0BTnPDn7W/eMw8W+MRMpiypKMkXZfwH8wqPIRKppuZoedTtNj2tg==}
+ '@tailwindcss/oxide-freebsd-x64@4.1.17':
+ resolution: {integrity: sha512-hxGS81KskMxML9DXsaXT1H0DyA+ZBIbyG/sSAjWNe2EDl7TkPOBI42GBV3u38itzGUOmFfCzk1iAjDXds8Oh0g==}
engines: {node: '>= 10'}
cpu: [x64]
os: [freebsd]
- '@tailwindcss/oxide-linux-arm-gnueabihf@4.1.16':
- resolution: {integrity: sha512-p0GGfRg/w0sdsFKBjMYvvKIiKy/LNWLWgV/plR4lUgrsxFAoQBFrXkZ4C0w8IOXfslB9vHK/JGASWD2IefIpvw==}
+ '@tailwindcss/oxide-linux-arm-gnueabihf@4.1.17':
+ resolution: {integrity: sha512-k7jWk5E3ldAdw0cNglhjSgv501u7yrMf8oeZ0cElhxU6Y2o7f8yqelOp3fhf7evjIS6ujTI3U8pKUXV2I4iXHQ==}
engines: {node: '>= 10'}
cpu: [arm]
os: [linux]
- '@tailwindcss/oxide-linux-arm64-gnu@4.1.16':
- resolution: {integrity: sha512-DoixyMmTNO19rwRPdqviTrG1rYzpxgyYJl8RgQvdAQUzxC1ToLRqtNJpU/ATURSKgIg6uerPw2feW0aS8SNr/w==}
+ '@tailwindcss/oxide-linux-arm64-gnu@4.1.17':
+ resolution: {integrity: sha512-HVDOm/mxK6+TbARwdW17WrgDYEGzmoYayrCgmLEw7FxTPLcp/glBisuyWkFz/jb7ZfiAXAXUACfyItn+nTgsdQ==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
- '@tailwindcss/oxide-linux-arm64-musl@4.1.16':
- resolution: {integrity: sha512-H81UXMa9hJhWhaAUca6bU2wm5RRFpuHImrwXBUvPbYb+3jo32I9VIwpOX6hms0fPmA6f2pGVlybO6qU8pF4fzQ==}
+ '@tailwindcss/oxide-linux-arm64-musl@4.1.17':
+ resolution: {integrity: sha512-HvZLfGr42i5anKtIeQzxdkw/wPqIbpeZqe7vd3V9vI3RQxe3xU1fLjss0TjyhxWcBaipk7NYwSrwTwK1hJARMg==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [linux]
- '@tailwindcss/oxide-linux-x64-gnu@4.1.16':
- resolution: {integrity: sha512-ZGHQxDtFC2/ruo7t99Qo2TTIvOERULPl5l0K1g0oK6b5PGqjYMga+FcY1wIUnrUxY56h28FxybtDEla+ICOyew==}
+ '@tailwindcss/oxide-linux-x64-gnu@4.1.17':
+ resolution: {integrity: sha512-M3XZuORCGB7VPOEDH+nzpJ21XPvK5PyjlkSFkFziNHGLc5d6g3di2McAAblmaSUNl8IOmzYwLx9NsE7bplNkwQ==}
engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
- '@tailwindcss/oxide-linux-x64-musl@4.1.16':
- resolution: {integrity: sha512-Oi1tAaa0rcKf1Og9MzKeINZzMLPbhxvm7rno5/zuP1WYmpiG0bEHq4AcRUiG2165/WUzvxkW4XDYCscZWbTLZw==}
+ '@tailwindcss/oxide-linux-x64-musl@4.1.17':
+ resolution: {integrity: sha512-k7f+pf9eXLEey4pBlw+8dgfJHY4PZ5qOUFDyNf7SI6lHjQ9Zt7+NcscjpwdCEbYi6FI5c2KDTDWyf2iHcCSyyQ==}
engines: {node: '>= 10'}
cpu: [x64]
os: [linux]
- '@tailwindcss/oxide-wasm32-wasi@4.1.16':
- resolution: {integrity: sha512-B01u/b8LteGRwucIBmCQ07FVXLzImWESAIMcUU6nvFt/tYsQ6IHz8DmZ5KtvmwxD+iTYBtM1xwoGXswnlu9v0Q==}
+ '@tailwindcss/oxide-wasm32-wasi@4.1.17':
+ resolution: {integrity: sha512-cEytGqSSoy7zK4JRWiTCx43FsKP/zGr0CsuMawhH67ONlH+T79VteQeJQRO/X7L0juEUA8ZyuYikcRBf0vsxhg==}
engines: {node: '>=14.0.0'}
cpu: [wasm32]
bundledDependencies:
@@ -5071,32 +4783,32 @@ packages:
- '@emnapi/wasi-threads'
- tslib
- '@tailwindcss/oxide-win32-arm64-msvc@4.1.16':
- resolution: {integrity: sha512-zX+Q8sSkGj6HKRTMJXuPvOcP8XfYON24zJBRPlszcH1Np7xuHXhWn8qfFjIujVzvH3BHU+16jBXwgpl20i+v9A==}
+ '@tailwindcss/oxide-win32-arm64-msvc@4.1.17':
+ resolution: {integrity: sha512-JU5AHr7gKbZlOGvMdb4722/0aYbU+tN6lv1kONx0JK2cGsh7g148zVWLM0IKR3NeKLv+L90chBVYcJ8uJWbC9A==}
engines: {node: '>= 10'}
cpu: [arm64]
os: [win32]
- '@tailwindcss/oxide-win32-x64-msvc@4.1.16':
- resolution: {integrity: sha512-m5dDFJUEejbFqP+UXVstd4W/wnxA4F61q8SoL+mqTypId2T2ZpuxosNSgowiCnLp2+Z+rivdU0AqpfgiD7yCBg==}
+ '@tailwindcss/oxide-win32-x64-msvc@4.1.17':
+ resolution: {integrity: sha512-SKWM4waLuqx0IH+FMDUw6R66Hu4OuTALFgnleKbqhgGU30DY20NORZMZUKgLRjQXNN2TLzKvh48QXTig4h4bGw==}
engines: {node: '>= 10'}
cpu: [x64]
os: [win32]
- '@tailwindcss/oxide@4.1.16':
- resolution: {integrity: sha512-2OSv52FRuhdlgyOQqgtQHuCgXnS8nFSYRp2tJ+4WZXKgTxqPy7SMSls8c3mPT5pkZ17SBToGM5LHEJBO7miEdg==}
+ '@tailwindcss/oxide@4.1.17':
+ resolution: {integrity: sha512-F0F7d01fmkQhsTjXezGBLdrl1KresJTcI3DB8EkScCldyKp3Msz4hub4uyYaVnk88BAS1g5DQjjF6F5qczheLA==}
engines: {node: '>= 10'}
- '@tailwindcss/vite@4.1.16':
- resolution: {integrity: sha512-bbguNBcDxsRmi9nnlWJxhfDWamY3lmcyACHcdO1crxfzuLpOhHLLtEIN/nCbbAtj5rchUgQD17QVAKi1f7IsKg==}
+ '@tailwindcss/vite@4.1.17':
+ resolution: {integrity: sha512-4+9w8ZHOiGnpcGI6z1TVVfWaX/koK7fKeSYF3qlYg2xpBtbteP2ddBxiarL+HVgfSJGeK5RIxRQmKm4rTJJAwA==}
peerDependencies:
vite: ^5.2.0 || ^6 || ^7
- '@tanstack/query-core@5.85.9':
- resolution: {integrity: sha512-5fxb9vwyftYE6KFLhhhDyLr8NO75+Wpu7pmTo+TkwKmMX2oxZDoLwcqGP8ItKSpUMwk3urWgQDZfyWr5Jm9LsQ==}
+ '@tanstack/query-core@5.90.11':
+ resolution: {integrity: sha512-f9z/nXhCgWDF4lHqgIE30jxLe4sYv15QodfdPDKYAk7nAEjNcndy4dHz3ezhdUaR23BpWa4I2EH4/DZ0//Uf8A==}
- '@tanstack/react-query@5.85.9':
- resolution: {integrity: sha512-2T5zgSpcOZXGkH/UObIbIkGmUPQqZqn7esVQFXLOze622h4spgWf5jmvrqAo9dnI13/hyMcNsF1jsoDcb59nJQ==}
+ '@tanstack/react-query@5.90.11':
+ resolution: {integrity: sha512-3uyzz01D1fkTLXuxF3JfoJoHQMU2fxsfJwE+6N5hHy0dVNoZOvwKP8Z2k7k1KDeD54N20apcJnG75TBAStIrBA==}
peerDependencies:
react: ^18 || ^19
@@ -5110,6 +4822,10 @@ packages:
resolution: {integrity: sha512-pemlzrSESWbdAloYml3bAJMEfNh1Z7EduzqPKprCH5S341frlpYnUEW0H72dLxa6IsYr+mPno20GiSm+h9dEdQ==}
engines: {node: '>=18'}
+ '@testing-library/dom@10.4.1':
+ resolution: {integrity: sha512-o4PXJQidqJl82ckFaXUeoAW+XysPLauYI43Abki5hABd853iMhitooc6znOnczgbTYmEP6U6/y1ZyKAIsvMKGg==}
+ engines: {node: '>=18'}
+
'@testing-library/dom@9.3.4':
resolution: {integrity: sha512-FlS4ZWlp97iiNWig0Muq8p+3rVDjRiYE+YKGbAqXOu9nwJFFOdL00kFpz42M+4huzYi86vAK1sOOfyOG45muIQ==}
engines: {node: '>=14'}
@@ -5202,11 +4918,8 @@ packages:
resolution: {integrity: sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==}
engines: {node: '>=10.13.0'}
- '@tybys/wasm-util@0.10.0':
- resolution: {integrity: sha512-VyyPYFlOMNylG45GoAe0xDoLwWuowvf92F9kySqzYh8vmYm7D2u4iUJKa1tOUpS70Ku13ASrOkS4ScXFsTaCNQ==}
-
- '@types/argparse@1.0.38':
- resolution: {integrity: sha512-ebDJ9b0e702Yr7pWgB0jzm+CX4Srzz8RcXtLJDJB+BSccqMa36uyH/zUsSYao5+BD1ytv3k3rPYCq4mAE1hsXA==}
+ '@tybys/wasm-util@0.10.1':
+ resolution: {integrity: sha512-9tTaPJLSiejZKx+Bmog4uSubteqTvFrVrURwkmHixBo0G4seD0zUxp98E1DzUBJxLQ3NPwXrGKDiVjwx/DpPsg==}
'@types/aria-query@5.0.4':
resolution: {integrity: sha512-rfT93uj5s0PRL7EzccGMs3brplhcrghnDoV26NqKhCAS1hVo+WdNsPvE/yb6ilfr5hi2MEk6d5EWJTKdxg8jVw==}
@@ -5229,8 +4942,8 @@ packages:
'@types/bonjour@3.5.13':
resolution: {integrity: sha512-z9fJ5Im06zvUL548KvYNecEVlA7cVDkGUi6kZusb04mpyEFKCIZJvloCcmpmLaIahDpOQGHaHmG6imtPMmPXGQ==}
- '@types/chai@5.2.2':
- resolution: {integrity: sha512-8kB30R7Hwqf40JPiKhVzodJs2Qc1ZJ5zuT3uzw5Hq/dhNCl3G3l83jfpdI1e20BP348+fV7VIL/+FxaXkqBmWg==}
+ '@types/chai@5.2.3':
+ resolution: {integrity: sha512-Mw558oeA9fFbv65/y4mHtXDs9bPnFMZAL/jxdPFUpOHHIXX91mcgEHbS5Lahr+pwZFR8A7GQleRWeI6cGFC2UA==}
'@types/connect-history-api-fallback@1.5.4':
resolution: {integrity: sha512-n6Cr2xS1h4uAulPRdlw6Jl6s1oG8KrVilPN2yUITEs+K48EzMJJ3W1xy8K5eWuFvjp3R74AOIGSmp2UfBJ8HFw==}
@@ -5259,21 +4972,18 @@ packages:
'@types/estree@1.0.8':
resolution: {integrity: sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==}
- '@types/express-serve-static-core@4.19.6':
- resolution: {integrity: sha512-N4LZ2xG7DatVqhCZzOGb1Yi5lMbXSZcmdLDe9EzSndPV2HpWYWzRbaerl2n27irrm94EPpprqa8KpskPT085+A==}
+ '@types/express-serve-static-core@4.19.7':
+ resolution: {integrity: sha512-FvPtiIf1LfhzsaIXhv/PHan/2FeQBbtBDtfX2QfvPxdUelMDEckK08SM6nqo1MIZY3RUlfA+HV8+hFUSio78qg==}
- '@types/express-serve-static-core@5.0.7':
- resolution: {integrity: sha512-R+33OsgWw7rOhD1emjU7dzCDHucJrgJXMA5PYCzJxVil0dsyx5iBEPHqpPfiKNJQb7lZ1vxwoLR4Z87bBUpeGQ==}
+ '@types/express-serve-static-core@5.1.0':
+ resolution: {integrity: sha512-jnHMsrd0Mwa9Cf4IdOzbz543y4XJepXrbia2T4b6+spXC2We3t1y6K44D3mR8XMFSXMCf3/l7rCgddfx7UNVBA==}
- '@types/express@4.17.23':
- resolution: {integrity: sha512-Crp6WY9aTYP3qPi2wGDo9iUe/rceX01UMhnF1jmwDcKCFM6cx7YhGP/Mpr3y9AASpfHixIG0E6azCcL5OcDHsQ==}
+ '@types/express@4.17.25':
+ resolution: {integrity: sha512-dVd04UKsfpINUnK0yBoYHDF3xu7xVH4BuDotC/xGuycx4CgbP48X/KF/586bcObxT0HENHXEU8Nqtu6NR+eKhw==}
'@types/glob@8.1.0':
resolution: {integrity: sha512-IO+MJPVhoqz+28h1qLAcBEH2+xHMK6MTyHJc7MTnnYb6wsoLR29POVGJ7LycmVXIqyy/4/2ShP5sUwTXuOwb/w==}
- '@types/graceful-fs@4.1.9':
- resolution: {integrity: sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ==}
-
'@types/history@4.7.11':
resolution: {integrity: sha512-qjDJRrmvBMiTx+jyLxvLfJU7UznFuokDv4f3WRuriHKERccVpFU+8XMQUAbDzoiJCsmexxRExQeMwwCdamSKDA==}
@@ -5291,8 +5001,8 @@ packages:
'@types/http-errors@2.0.5':
resolution: {integrity: sha512-r8Tayk8HJnX0FztbZN7oVqGccWgw98T/0neJphO91KkmOzug1KkofZURD4UaD5uH8AqcFLfdPErnBod0u71/qg==}
- '@types/http-proxy@1.17.16':
- resolution: {integrity: sha512-sdWoUajOB1cd0A8cRRQ1cfyWNbmFKLAqBB89Y8x5iYyG/mkJHc0YUH8pdWBy2omi9qtCpiIgGjuwO0dQST2l5w==}
+ '@types/http-proxy@1.17.17':
+ resolution: {integrity: sha512-ED6LB+Z1AVylNTu7hdzuBqOgMnvG/ld6wGCG8wFnAzKX5uyW2K3WD52v0gnLCTK/VLpXtKckgWuyScYK6cSPaw==}
'@types/invariant@2.2.37':
resolution: {integrity: sha512-IwpIMieE55oGWiXkQPSBY1nw1nFs6bsKXTFskNY8sdS17K24vyEBRQZEwlRS7ZmXCWnJcQtbxWzly+cODWGs2A==}
@@ -5309,8 +5019,8 @@ packages:
'@types/jest-axe@3.5.9':
resolution: {integrity: sha512-z98CzR0yVDalCEuhGXXO4/zN4HHuSebAukXDjTLJyjEAgoUf1H1i+sr7SUB/mz8CRS/03/XChsx0dcLjHkndoQ==}
- '@types/jest@29.5.14':
- resolution: {integrity: sha512-ZN+4sdnLUbo8EVvVc2ao0GFW6oVrQRPn4K2lglySj7APvSrgzxHiNNK99us4WDMi57xxA2yggblIAMNhXOotLQ==}
+ '@types/jest@30.0.0':
+ resolution: {integrity: sha512-XTYugzhuwqWjws0CVz8QpM36+T+Dz5mTEBKhNs/esGLnCIlGdRy+Dq78NRjd7ls7r8BC8ZRMOrKlkO1hU0JOwA==}
'@types/json-schema@7.0.15':
resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==}
@@ -5321,8 +5031,8 @@ packages:
'@types/loadable__component@5.13.10':
resolution: {integrity: sha512-2/LjmgG1JcGPj7T3NViq7BB5cvOA0s63gL3Gv+FPULj2L+3ExWfsNQcsFPUIOoGsVUJeZxgNPf320JZDyxjtCQ==}
- '@types/lodash@4.17.20':
- resolution: {integrity: sha512-H3MHACvFUEiujabxhaI/ImO6gUrd8oOurg7LQtS7mbwIXA/cUqWrvBsaeJ23aZEPk1TAYkurjfMbSELfoCXlGA==}
+ '@types/lodash@4.17.21':
+ resolution: {integrity: sha512-FOvQ0YPD5NOfPgMzJihoT+Za5pdkDJWcbpuj1DjaKZIr/gxodQjY/uWEFlTNqW2ugXHUiL8lRQgw63dzKHZdeQ==}
'@types/mdast@4.0.4':
resolution: {integrity: sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==}
@@ -5342,8 +5052,8 @@ packages:
'@types/node-forge@1.3.14':
resolution: {integrity: sha512-mhVF2BnD4BO+jtOp7z1CdzaK4mbuK0LLQYAvdOLqHTavxFNq4zA1EmYkpnFjP8HOUzedfQkRnp0E2ulSAYSzAw==}
- '@types/node@24.10.0':
- resolution: {integrity: sha512-qzQZRBqkFsYyaSWXuEHc2WR9c0a0CXwiE5FWUvn7ZM+vdy1uZLfCunD38UzhuB7YN/J11ndbDBcTmOdxJo9Q7A==}
+ '@types/node@24.10.1':
+ resolution: {integrity: sha512-GNWcUTRBgIRJD5zj+Tq0fKOJ5XZajIiBroOF0yvj2bSU1WvNdYS/dn9UxwsujGW4JX06dnHyjV2y9rRaybH0iQ==}
'@types/normalize-package-data@2.4.4':
resolution: {integrity: sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==}
@@ -5387,8 +5097,8 @@ packages:
'@types/react-test-renderer@18.0.7':
resolution: {integrity: sha512-1+ANPOWc6rB3IkSnElhjv6VLlKg2dSv/OWClUyZimbLsQyBn8Js9Vtdsi3UICJ2rIQ3k2la06dkB+C92QfhKmg==}
- '@types/react@18.3.24':
- resolution: {integrity: sha512-0dLEBsA1kI3OezMBF8nSsb7Nk19ZnsyE1LLhB8r27KbgU5H4pvuqZLdtE+aUkJVoXgTVuA+iLIwmZ0TuK4tx6A==}
+ '@types/react@18.3.27':
+ resolution: {integrity: sha512-cisd7gxkzjBKU2GgdYrTdtQx1SORymWyaAFhaxQPK9bYO9ot3Y5OikQRvY0VYQtvwjeQnizCINJAenh/V7MK2w==}
'@types/redux-mock-store@1.5.0':
resolution: {integrity: sha512-jcscBazm6j05Hs6xYCca6psTUBbFT2wqMxT7wZEHAYFxHB/I8jYk7d5msrHUlDiSL02HdTqTmkK2oIV8i3C8DA==}
@@ -5402,17 +5112,20 @@ packages:
'@types/schema-utils@1.0.0':
resolution: {integrity: sha512-YesPanU1+WCigC/Aj1Mga8UCOjHIfMNHZ3zzDsUY7lI8GlKnh/Kv2QwJOQ+jNQ36Ru7IfzSedlG14hppYaN13A==}
- '@types/semver@7.7.0':
- resolution: {integrity: sha512-k107IF4+Xr7UHjwDc7Cfd6PRQfbdkiRabXGRjo07b4WyPahFBZCZ1sE+BNxYIJPPg73UkfOsVOLwqVc/6ETrIA==}
+ '@types/semver@7.7.1':
+ resolution: {integrity: sha512-FmgJfu+MOcQ370SD0ev7EI8TlCAfKYU+B4m5T3yXc1CiRN94g/SZPtsCkk506aUDtlMnFZvasDwHHUcZUEaYuA==}
- '@types/send@0.17.5':
- resolution: {integrity: sha512-z6F2D3cOStZvuk2SaP6YrwkNO65iTZcwA2ZkSABegdkAh/lf+Aa/YQndZVfmEXT5vgAp6zv06VQ3ejSVjAny4w==}
+ '@types/send@0.17.6':
+ resolution: {integrity: sha512-Uqt8rPBE8SY0RK8JB1EzVOIZ32uqy8HwdxCnoCOsYrvnswqmFZ/k+9Ikidlk/ImhsdvBsloHbAlewb2IEBV/Og==}
+
+ '@types/send@1.2.1':
+ resolution: {integrity: sha512-arsCikDvlU99zl1g69TcAB3mzZPpxgw0UQnaHeC1Nwb015xp8bknZv5rIfri9xTOcMuaVgvabfIRA7PSZVuZIQ==}
'@types/serve-index@1.9.4':
resolution: {integrity: sha512-qLpGZ/c2fhSs5gnYsQxtDEq3Oy8SXPClIXkW5ghvAvsNuVSA8k+gCONcUCS/UjLEYvYps+e8uBtfgXgvhwfNug==}
- '@types/serve-static@1.15.8':
- resolution: {integrity: sha512-roei0UY3LhpOJvjbIP6ZZFngyLKl5dskOtDhxY5THRSpO+ZI+nzJ+m5yUMzGrp89YRa7lvknKkMYjqQFGwA7Sg==}
+ '@types/serve-static@1.15.10':
+ resolution: {integrity: sha512-tRs1dB+g8Itk72rlSI2ZrW6vZg0YrLI81iQSTkMmOqnqCaNr/8Ek4VwWcN5vZgCYWbg/JJSGBlUaYGAOP73qBw==}
'@types/sinonjs__fake-timers@8.1.1':
resolution: {integrity: sha512-0kSuKjAS0TrGLJ0M/+8MaFkGsQhZpB6pxOmvS3K8FYI72K//YmdfoW9X2qPsAKh1mkwxGD5zib9s1FIFed6E8g==}
@@ -5447,11 +5160,11 @@ packages:
'@types/yargs-parser@21.0.3':
resolution: {integrity: sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==}
- '@types/yargs@15.0.19':
- resolution: {integrity: sha512-2XUaGVmyQjgyAZldf0D0c14vvo/yv0MhQBSTJcejMMaitsn3nxCB6TmH4G0ZQf+uxROOa9mpanoSm8h6SG/1ZA==}
+ '@types/yargs@15.0.20':
+ resolution: {integrity: sha512-KIkX+/GgfFitlASYCGoSF+T4XRXhOubJLhkLVtSfsRTe9jWMmuM2g28zQ41BtPTG7TRBb2xHW+LCNVE9QR/vsg==}
- '@types/yargs@17.0.33':
- resolution: {integrity: sha512-WpxBCKWPLr4xSsHgz511rFJAM+wS28w2zEO1QDNY5zM/S8ok70NNfztH0xwhqKyaK0OHCbN98LDAZuy1ctxDkA==}
+ '@types/yargs@17.0.35':
+ resolution: {integrity: sha512-qUHkeCyQFxMXg79wQfTtfndEC+N9ZZg76HJftDJp+qH2tV7Gj4OJi7l+PiWwJ+pWtW8GwSmqsDj/oymhrTWXjg==}
'@types/yauzl@2.10.3':
resolution: {integrity: sha512-oJoftv0LSuaDZE3Le4DbKX+KS9G36NzOeSap90UIK0yMA/NhKJhqlSGtNDORNRaIbQfzjXDrQa0ytJ6mNRGz/Q==}
@@ -5504,8 +5217,8 @@ packages:
typescript:
optional: true
- '@typescript-eslint/project-service@8.42.0':
- resolution: {integrity: sha512-vfVpLHAhbPjilrabtOSNcUDmBboQNrJUiNAGoImkZKnMjs2TIcWG33s4Ds0wY3/50aZmTMqJa6PiwkwezaAklg==}
+ '@typescript-eslint/project-service@8.48.1':
+ resolution: {integrity: sha512-HQWSicah4s9z2/HifRPQ6b6R7G+SBx64JlFQpgSSHWPKdvCZX57XCbszg/bapbRsOEv42q5tayTYcEFpACcX1w==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
typescript: '>=4.8.4 <6.0.0'
@@ -5518,12 +5231,12 @@ packages:
resolution: {integrity: sha512-jjhdIE/FPF2B7Z1uzc6i3oWKbGcHb87Qw7AWj6jmEqNOfDFbJWtjt/XfwCpvNkpGWlcJaog5vTR+VV8+w9JflA==}
engines: {node: ^18.18.0 || >=20.0.0}
- '@typescript-eslint/scope-manager@8.42.0':
- resolution: {integrity: sha512-51+x9o78NBAVgQzOPd17DkNTnIzJ8T/O2dmMBLoK9qbY0Gm52XJcdJcCl18ExBMiHo6jPMErUQWUv5RLE51zJw==}
+ '@typescript-eslint/scope-manager@8.48.1':
+ resolution: {integrity: sha512-rj4vWQsytQbLxC5Bf4XwZ0/CKd362DkWMUkviT7DCS057SK64D5lH74sSGzhI6PDD2HCEq02xAP9cX68dYyg1w==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@typescript-eslint/tsconfig-utils@8.42.0':
- resolution: {integrity: sha512-kHeFUOdwAJfUmYKjR3CLgZSglGHjbNTi1H8sTYRYV2xX6eNz4RyJ2LIgsDLKf8Yi0/GL1WZAC/DgZBeBft8QAQ==}
+ '@typescript-eslint/tsconfig-utils@8.48.1':
+ resolution: {integrity: sha512-k0Jhs4CpEffIBm6wPaCXBAD7jxBtrHjrSgtfCjUvPp9AZ78lXKdTR8fxyZO5y4vWNlOvYXRtngSZNSn+H53Jkw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
typescript: '>=4.8.4 <6.0.0'
@@ -5556,8 +5269,8 @@ packages:
resolution: {integrity: sha512-iZqi+Ds1y4EDYUtlOOC+aUmxnE9xS/yCigkjA7XpTKV6nCBd3Hp/PRGGmdwnfkV2ThMyYldP1wRpm/id99spTQ==}
engines: {node: ^18.18.0 || >=20.0.0}
- '@typescript-eslint/types@8.42.0':
- resolution: {integrity: sha512-LdtAWMiFmbRLNP7JNeY0SqEtJvGMYSzfiWBSmx+VSZ1CH+1zyl8Mmw1TT39OrtsRvIYShjJWzTDMPWZJCpwBlw==}
+ '@typescript-eslint/types@8.48.1':
+ resolution: {integrity: sha512-+fZ3LZNeiELGmimrujsDCT4CRIbq5oXdHe7chLiW8qzqyPMnn1puNstCrMNVAqwcl2FdIxkuJ4tOs/RFDBVc/Q==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@typescript-eslint/typescript-estree@5.62.0':
@@ -5578,8 +5291,8 @@ packages:
typescript:
optional: true
- '@typescript-eslint/typescript-estree@8.42.0':
- resolution: {integrity: sha512-ku/uYtT4QXY8sl9EDJETD27o3Ewdi72hcXg1ah/kkUgBvAYHLwj2ofswFFNXS+FL5G+AGkxBtvGt8pFBHKlHsQ==}
+ '@typescript-eslint/typescript-estree@8.48.1':
+ resolution: {integrity: sha512-/9wQ4PqaefTK6POVTjJaYS0bynCgzh6ClJHGSBj06XEHjkfylzB+A3qvyaXnErEZSaxhIo4YdyBgq6j4RysxDg==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
typescript: '>=4.8.4 <6.0.0'
@@ -5596,8 +5309,8 @@ packages:
peerDependencies:
eslint: ^8.56.0
- '@typescript-eslint/utils@8.42.0':
- resolution: {integrity: sha512-JnIzu7H3RH5BrKC4NoZqRfmjqCIS1u3hGZltDYJgkVdqAezl4L9d1ZLw+36huCujtSBSAirGINF/S4UxOcR+/g==}
+ '@typescript-eslint/utils@8.48.1':
+ resolution: {integrity: sha512-fAnhLrDjiVfey5wwFRwrweyRlCmdz5ZxXz2G/4cLn0YDLjTapmN4gcCsTBR1N2rWnZSDeWpYtgLDsJt+FpmcwA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
@@ -5611,8 +5324,8 @@ packages:
resolution: {integrity: sha512-cDF0/Gf81QpY3xYyJKDV14Zwdmid5+uuENhjH2EqFaF0ni+yAyq/LzMaIJdhNJXZI7uLzwIlA+V7oWoyn6Curg==}
engines: {node: ^18.18.0 || >=20.0.0}
- '@typescript-eslint/visitor-keys@8.42.0':
- resolution: {integrity: sha512-3WbiuzoEowaEn8RSnhJBrxSwX8ULYE9CXaPepS2C2W3NSA5NNIvBaslpBSBElPq0UGr0xVJlXFWOAKIkyylydQ==}
+ '@typescript-eslint/visitor-keys@8.48.1':
+ resolution: {integrity: sha512-BmxxndzEWhE4TIEEMBs8lP3MBWN3jFPs/p6gPm/wkv02o41hI6cq9AuSmGAaTTHPtA1FTi2jBre4A9rm5ZmX+Q==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
'@ungap/structured-clone@1.3.0':
@@ -5719,8 +5432,8 @@ packages:
peerDependencies:
vite: ^4.2.0 || ^5.0.0 || ^6.0.0 || ^7.0.0
- '@vitejs/plugin-react@5.1.0':
- resolution: {integrity: sha512-4LuWrg7EKWgQaMJfnN+wcmbAW+VSsCmqGohftWjuct47bv8uE4n/nPpq4XjJPsxgq00GGG5J8dvBczp8uxScew==}
+ '@vitejs/plugin-react@5.1.1':
+ resolution: {integrity: sha512-WQfkSw0QbQ5aJ2CHYw23ZGkqnRwqKHD/KYsMeTkZzPT4Jcf0DcBxBtwMJxnu6E7oxw5+JC6ZAiePgh28uJ1HBA==}
engines: {node: ^20.19.0 || >=22.12.0}
peerDependencies:
vite: ^4.2.0 || ^5.0.0 || ^6.0.0 || ^7.0.0
@@ -5975,8 +5688,8 @@ packages:
resolution: {integrity: sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==}
engines: {node: '>=8'}
- ansi-escapes@7.0.0:
- resolution: {integrity: sha512-GdYO7a61mR0fOlAsvC9/rIHf7L96sBc6dEWzeOu+KAea5bZyQRPIpojrVoI4AXGJS/ycu/fBTdLrUkA4ODrvjw==}
+ ansi-escapes@7.2.0:
+ resolution: {integrity: sha512-g6LhBsl+GBPRWGWsBtutpzBYuIIdBkLEvad5C/va/74Db018+5TZiyA26cZJAr3Rft5lprVqOIPxf5Vid6tqAw==}
engines: {node: '>=18'}
ansi-html-community@0.0.8:
@@ -5997,8 +5710,8 @@ packages:
resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
engines: {node: '>=8'}
- ansi-regex@6.2.0:
- resolution: {integrity: sha512-TKY5pyBkHyADOPYlRT9Lx6F544mPl0vS5Ew7BJ45hA08Q+t3GjbueLliBWN3sMICk6+y7HdyxSzC4bWS8baBdg==}
+ ansi-regex@6.2.2:
+ resolution: {integrity: sha512-Bq3SmSpyFHaWjPk8If9yc6svM8c56dB5BAtW4Qbw5jHTwwXXcTLoRMkpDJp6VL0XzlWaCHTXrkFURMYmD0sLqg==}
engines: {node: '>=12'}
ansi-styles@2.2.1:
@@ -6017,8 +5730,8 @@ packages:
resolution: {integrity: sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==}
engines: {node: '>=10'}
- ansi-styles@6.2.1:
- resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==}
+ ansi-styles@6.2.3:
+ resolution: {integrity: sha512-4Dj6M28JB+oAH8kFkTLUo+a2jwOFkuqb3yucU0CANcRRUbxS0cP0nZYCGjcc3BNXwRIsUVmDGgzawme7zvJHvg==}
engines: {node: '>=12'}
any-promise@1.3.0:
@@ -6211,8 +5924,8 @@ packages:
resolution: {integrity: sha512-LEUDjgmdJoA3LqklSTwKYqkjcZ4HKc4ddIYGSAiSkr46NTjzg2L9RNB+lekO9P7Dlpa87+hBtzc2Fzn/+GUWMQ==}
engines: {node: '>=4'}
- axe-core@4.10.3:
- resolution: {integrity: sha512-Xm7bpRXnDSX2YE2YFfBk2FnF0ep6tmG7xPh8iHee8MIcrgq762Nkce856dYtJYLkuIoYZvGfTs/PbZhideTcEg==}
+ axe-core@4.11.0:
+ resolution: {integrity: sha512-ilYanEU8vxxBexpJd8cWM4ElSQq4QctCLKih0TSfjIfCQTeyH/6zVrmIJfLPrKTKJRbiG+cfnZbQIjAlJmF1jQ==}
engines: {node: '>=4'}
axe-core@4.4.2:
@@ -6229,8 +5942,8 @@ packages:
axios@0.24.0:
resolution: {integrity: sha512-Q6cWsys88HoPgAaFAVUb0WpPk0O8iTeisR9IMqy9G8AbO4NlpVknrnQS03zzF9PGAWgO3cgletO3VjV/P7VztA==}
- axios@1.11.0:
- resolution: {integrity: sha512-1Lx3WLFQWm3ooKDYZD1eXmoGO9fxYQjrycfHFC8P0sCfQVXyROp0p9PFWBehewBOdCwHc+f/b8I0fMto5eSfwA==}
+ axios@1.13.2:
+ resolution: {integrity: sha512-VPk9ebNqPcy5lRGuSlKx752IlDatOjT9paPlm8A7yOuW2Fbvp4X3JznJtT4f0GzGLLiWE9W8onz51SqLYwzGaA==}
axobject-query@4.1.0:
resolution: {integrity: sha512-qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ==}
@@ -6272,10 +5985,6 @@ packages:
babel-plugin-add-module-exports@0.2.1:
resolution: {integrity: sha512-3AN/9V/rKuv90NG65m4tTHsI04XrCKsWbztIcW7a8H5iIN7WlvWucRtVV0V/rT4QvtA11n5Vmp20fLwfMWqp6g==}
- babel-plugin-istanbul@6.1.1:
- resolution: {integrity: sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==}
- engines: {node: '>=8'}
-
babel-plugin-lodash@3.3.4:
resolution: {integrity: sha512-yDZLjK7TCkWl1gpBeBGmuaDIFhZKmkoL+Cu2MUUjv5VxUZx/z7tBGBCBcQs5RI1Bkz5LLmNdjx7paOyQtMovyg==}
@@ -6321,11 +6030,6 @@ packages:
babel-plugin-transform-react-remove-prop-types@0.4.24:
resolution: {integrity: sha512-eqj0hVcJUR57/Ug2zE1Yswsw4LhuqqHhD+8v120T1cl3kjg76QwtyBrdIk4WVwK+lAhBJVYCd/v+4nc4y+8JsA==}
- babel-preset-current-node-syntax@1.2.0:
- resolution: {integrity: sha512-E/VlAEzRrsLEb2+dv8yp3bo4scof3l9nR4lrld+Iy5NyVqgVYUJnDAmunkhPMisRI32Qc4iRiz425d8vM++2fg==}
- peerDependencies:
- '@babel/core': ^7.0.0 || ^8.0.0-0
-
babel-preset-razzle@4.2.17:
resolution: {integrity: sha512-Pg0yFCn2uTRBKjdj2pu61JWMcokVdxWNmpeBC2W+fNJ3JFyYP379TMIMmRi84g61snAzmwzwIlKMlVsVZT1IiA==}
@@ -6364,6 +6068,10 @@ packages:
resolution: {integrity: sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==}
engines: {node: '>=0.10.0'}
+ baseline-browser-mapping@2.8.32:
+ resolution: {integrity: sha512-OPz5aBThlyLFgxyhdwf/s2+8ab3OvT7AdTNvKHBwpXomIYeXqpUUuT8LrdtxZSsWJ4R4CU1un4XGh5Ez3nlTpw==}
+ hasBin: true
+
basic-ftp@5.0.5:
resolution: {integrity: sha512-4Bcg1P8xhUuqcii/S0Z9wiHIrQVPMermM1any+MX5GeGD7faD3/msQUDGLol9wOcz4/jbg/WJnGqoJF6LiBdtg==}
engines: {node: '>=10.0.0'}
@@ -6453,14 +6161,11 @@ packages:
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
hasBin: true
- browserslist@4.25.4:
- resolution: {integrity: sha512-4jYpcjabC606xJ3kw2QwGEZKX0Aw7sgQdZCvIK9dhVSPh76BKo+C+btT1RRofH7B+8iNpEbgGNVWiLki5q93yg==}
+ browserslist@4.28.0:
+ resolution: {integrity: sha512-tbydkR/CxfMwelN0vwdP/pLkDwyAASZ+VfWm4EOwlB6SWhx1sYnWLqo8N5j0rAzPfzfRaxt0mM/4wPU/Su84RQ==}
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
hasBin: true
- bser@2.1.1:
- resolution: {integrity: sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==}
-
buffer-crc32@0.2.13:
resolution: {integrity: sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==}
@@ -6499,8 +6204,8 @@ packages:
resolution: {integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==}
engines: {node: '>= 0.8'}
- c12@3.3.0:
- resolution: {integrity: sha512-K9ZkuyeJQeqLEyqldbYLG3wjqwpw4BVaAqvmxq3GYKK0b1A/yYQdIcJxkzAOWcNVWhJpRXAPfZFueekiY/L8Dw==}
+ c12@3.3.1:
+ resolution: {integrity: sha512-LcWQ01LT9tkoUINHgpIOv3mMs+Abv7oVCrtpMRi1PaapVEpWoMga5WuT7/DqFTu7URP9ftbOmimNw1KNIGh9DQ==}
peerDependencies:
magicast: ^0.3.5
peerDependenciesMeta:
@@ -6527,8 +6232,8 @@ packages:
resolution: {integrity: sha512-zkDT5WAF4hSSoUgyfg5tFIxz8XQK+25W/TLVojJTMKBaxevLBBtLxgqguAuVQB8PVW79FVjHcU+GJ9tVbDZ9mQ==}
engines: {node: '>=14.16'}
- cacheable@1.10.4:
- resolution: {integrity: sha512-Gd7ccIUkZ9TE2odLQVS+PDjIvQCdJKUlLdJRVvZu0aipj07Qfx+XIej7hhDrKGGoIxV5m5fT/kOJNJPQhQneRg==}
+ cacheable@2.3.0:
+ resolution: {integrity: sha512-HHiAvOBmlcR2f3SQ7kdlYD8+AUJG+wlFZ/Ze8tl1Vzvz0MdOh8IYA/EFU4ve8t1/sZ0j4MGi7ST5MoTwHessQA==}
cachedir@2.4.0:
resolution: {integrity: sha512-9EtFOZR8g22CL7BWjJ9BUx1+A/djkofnyW3aOXZORNW2kxoUpx2h+uN2cOqwPmFhnpVmxg+KW2OjOSgChTEvsQ==}
@@ -6580,8 +6285,8 @@ packages:
caniuse-api@3.0.0:
resolution: {integrity: sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==}
- caniuse-lite@1.0.30001739:
- resolution: {integrity: sha512-y+j60d6ulelrNSwpPyrHdl+9mJnQzHBr08xm48Qno0nSk4h3Qojh+ziv2qE6rXf4k3tadF4o1J/1tAbVm1NtnA==}
+ caniuse-lite@1.0.30001757:
+ resolution: {integrity: sha512-r0nnL/I28Zi/yjk1el6ilj27tKcdjLsNqAOZr0yVjWPrSQyHgKI2INaEWw21bAQSv2LXRt1XuCS/GomNpWOxsQ==}
case-sensitive-paths-webpack-plugin@2.4.0:
resolution: {integrity: sha512-roIFONhcxog0JSSWbvVAh3OocukmSgpqOH6YpMkCvav/ySIV3JKg4Dc8vYtQjYi/UxpNE36r/9v+VqTQqgkYmw==}
@@ -6634,8 +6339,8 @@ packages:
chardet@0.7.0:
resolution: {integrity: sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==}
- chardet@2.1.0:
- resolution: {integrity: sha512-bNFETTG/pM5ryzQ9Ad0lJOTa6HWD/YsScAR3EnCPZRPlQh77JocYktSHOUHelyhm8IARL+o4c4F1bP5KVOjiRA==}
+ chardet@2.1.1:
+ resolution: {integrity: sha512-PsezH1rqdV9VvyNhxxOW32/d75r01NY7TQCmOqomRo15ZSOKbpTFVsfjghxo6JloQUCGnH4k1LGu0R4yCLlWQQ==}
check-error@2.1.1:
resolution: {integrity: sha512-OAlb+T7V4Op9OwdkjmguYRqncdlx5JiofwOAUkmTF+jNdHwzTaTs4sRAGpzLF3oOz5xAyDGrPgeIDFQmDOTiJw==}
@@ -6668,8 +6373,8 @@ packages:
resolution: {integrity: sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==}
engines: {node: '>=8'}
- ci-info@4.3.0:
- resolution: {integrity: sha512-l+2bNRMiQgcfILUi33labAZYIWlH1kWDp+ecNo5iisRKrbm0xcRyCww71/YU0Fkw0mAFpz9bJayXPjey6vkmaQ==}
+ ci-info@4.3.1:
+ resolution: {integrity: sha512-Wdy2Igu8OcBpI2pZePZ5oWjPC38tmDVx5WKUXKwlLYkA0ozo85sLsLvkBbBn/sZaSCMFOGZJ14fvW9t5/d7kdA==}
engines: {node: '>=8'}
circular-dependency-plugin@5.2.2:
@@ -6842,12 +6547,8 @@ packages:
resolution: {integrity: sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==}
engines: {node: '>= 12'}
- commander@9.5.0:
- resolution: {integrity: sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ==}
- engines: {node: ^12.20.0 || >=14}
-
- comment-json@4.2.5:
- resolution: {integrity: sha512-bKw/r35jR3HGt5PEPm1ljsQQGyCrR8sFGNiN5L+ykDHdpO8Smxkrkla9Yi6NkQyUrb8V54PGhfMs6NrIwtxtdw==}
+ comment-json@4.4.1:
+ resolution: {integrity: sha512-r1To31BQD5060QdkC+Iheai7gHwoSZobzunqkf2/kQ6xIAfJyrKNAFUwdKvkK7Qgu7pVTKQEa7ok7Ed3ycAJgg==}
engines: {node: '>= 6'}
common-path-prefix@3.0.0:
@@ -6974,11 +6675,11 @@ packages:
peerDependencies:
webpack: ^4.37.0 || ^5.0.0
- core-js-compat@3.45.1:
- resolution: {integrity: sha512-tqTt5T4PzsMIZ430XGviK4vzYSoeNJ6CXODi6c/voxOT6IZqBht5/EKaSNnYiEjjRYxjVz7DQIsOsY0XNi8PIA==}
+ core-js-compat@3.47.0:
+ resolution: {integrity: sha512-IGfuznZ/n7Kp9+nypamBhvwdwLsW6KC8IOaURw2doAK5e98AG3acVLdh0woOnEqCfUtS+Vu882JE4k/DAm3ItQ==}
- core-js-pure@3.45.1:
- resolution: {integrity: sha512-OHnWFKgTUshEU8MK+lOs1H8kC8GkTi9Z1tvNkxrCcw9wl3MJIO7q2ld77wjWn4/xuGrVu2X+nME1iIIPBSdyEQ==}
+ core-js-pure@3.47.0:
+ resolution: {integrity: sha512-BcxeDbzUrRnXGYIVAGFtcGQVNpFcUhVjr6W7F8XktvQW2iJP9e66GP6xdKotCRFlrxBvNIBrhwKteRXqMV86Nw==}
core-js@1.2.7:
resolution: {integrity: sha512-ZiPp9pZlgxpWRu0M+YWbm6+aQ84XEfH1JRXvfOc/fILWI0VKhLC2LX13X1NYq4fULzLMq7Hfh43CSo2/aIaUPA==}
@@ -7020,9 +6721,6 @@ packages:
typescript:
optional: true
- cross-spawn@5.1.0:
- resolution: {integrity: sha512-pTgQJ5KC0d2hcY8eyL1IzlBPYjTkyH72XRZPnLyKus2mBfNjQs3klqbJU2VILqZryAZUt9JOb3h/mWMy23/f5A==}
-
cross-spawn@7.0.3:
resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==}
engines: {node: '>= 8'}
@@ -7177,8 +6875,8 @@ packages:
resolution: {integrity: sha512-N4u2ABATi3Qplzf0hWbVCdjenim8F3ojEXpBDF5hBpjzW182MjNGLqfmQ0SkSPeQ+V86ZXgeH8aXj6kayd4jgg==}
engines: {node: '>=14'}
- csstype@3.1.3:
- resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==}
+ csstype@3.2.3:
+ resolution: {integrity: sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==}
cypress-axe@1.7.0:
resolution: {integrity: sha512-zzJpvAAjauEB3GZl0KYXb8i3w6MztWAt2WM3czYTFyNVC30alDmqCm9E7GwZ4bgkldZJlmHakaVEyu73R5St4w==}
@@ -7237,11 +6935,8 @@ packages:
resolution: {integrity: sha512-BS8PfmtDGnrgYdOonGZQdLZslWIeCGFP9tpan0hi1Co2Zr2NKADsvGYA8XxuG/4UWgJ6Cjtv+YJnB6MM69QGlQ==}
engines: {node: '>= 0.4'}
- dayjs@1.11.18:
- resolution: {integrity: sha512-zFBQ7WFRvVRhKcWoUh+ZA1g2HVgUbsZm9sbddh8EC5iv93sui8DVVz1Npvz+r6meo9VKfa8NyLWBsQK1VvIKPA==}
-
- de-indent@1.0.2:
- resolution: {integrity: sha512-e/1zu3xH5MQryN2zdVaF0OrdNLUbvWxzMbi+iNA6Bky7l1RoP8a2fIbRocyHclXt/arDrrR6lL3TqFD9pMQTsg==}
+ dayjs@1.11.19:
+ resolution: {integrity: sha512-t5EcLVS6QPBNqM2z8fakk/NKel+Xzshgt8FFKAn+qwlD1pzZWxh0nVCrvFK7ZDb6XucZeF9z8C7CBWTRIVApAw==}
debounce@1.2.1:
resolution: {integrity: sha512-XRRe6Glud4rd/ZGQfiV1ruXSfbvfJedlV9Y6zOlP+2K04vBYiJEte6stfFkCP03aMnY5tsipamumUjL14fofug==}
@@ -7280,8 +6975,8 @@ packages:
supports-color:
optional: true
- debug@4.4.1:
- resolution: {integrity: sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ==}
+ debug@4.4.3:
+ resolution: {integrity: sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==}
engines: {node: '>=6.0'}
peerDependencies:
supports-color: '*'
@@ -7349,16 +7044,16 @@ packages:
resolution: {integrity: sha512-OZ1y3y0SqSICtE8DE4S8YOE9UZOJ8wO16fKWVP5J1Qz42kV9jcnMVFrEE/noXb/ss3Q4pZIH79kxofzyNNtUNA==}
engines: {node: '>=12'}
- default-browser-id@5.0.0:
- resolution: {integrity: sha512-A6p/pu/6fyBcA1TRz/GqWYPViplrftcW2gZC9q79ngNCKAeR/X3gcEdXQHl4KNXV+3wgIJ1CPkJQ3IHM6lcsyA==}
+ default-browser-id@5.0.1:
+ resolution: {integrity: sha512-x1VCxdX4t+8wVfd1so/9w+vQ4vx7lKd2Qp5tDRutErwmR85OgmfX7RlLRMWafRMY7hbEiXIbudNrjOAPa/hL8Q==}
engines: {node: '>=18'}
default-browser@4.0.0:
resolution: {integrity: sha512-wX5pXO1+BrhMkSbROFsyxUm0i/cJEScyNhA4PPxc41ICuv05ZZB/MX28s8aZx6xjmatvebIapF6hLEKEcpneUA==}
engines: {node: '>=14.16'}
- default-browser@5.2.1:
- resolution: {integrity: sha512-WY/3TUME0x3KPYdRRxEJJvXRHV4PyPoUsxtZa78lwItwRQRHhd2U9xOscaT/YTf8uCXIAjeJOFBVEh/7FtD8Xg==}
+ default-browser@5.4.0:
+ resolution: {integrity: sha512-XDuvSq38Hr1MdN47EDvYtx3U0MTqpCEn+F6ft8z2vYDzMrvQhVp0ui9oQdqW3MvK3vqUETglt1tVGgjLuJ5izg==}
engines: {node: '>=18'}
default-gateway@6.0.3:
@@ -7448,8 +7143,8 @@ packages:
engines: {node: '>=0.10'}
hasBin: true
- detect-libc@2.0.4:
- resolution: {integrity: sha512-3UDv+G9CsCKO1WKMGw9fwq/SWJYbI0c5Y7LU1AXYoDdbhE2AHQ6N6Nb34sG8Fj7T5APy8qXDCKuuIHd1BR0tVA==}
+ detect-libc@2.1.2:
+ resolution: {integrity: sha512-Btj2BOOO83o3WyH59e8MgXsxEQVcarkUOpEYrubB0urwnN10yQ364rsiByU11nZlqWYZm05i/of7io4mzihBtQ==}
engines: {node: '>=8'}
detect-node@2.1.0:
@@ -7568,8 +7263,8 @@ packages:
dotenv-expand@5.1.0:
resolution: {integrity: sha512-YXQl1DSa4/PQyRfgrv6aoNjhasp/p4qs9FjJ4q4cQk+8m4r6k4ZSiEyytKG8f8W9gi8WsQtIObNmKd+tMzNTmA==}
- dotenv@17.2.2:
- resolution: {integrity: sha512-Sf2LSQP+bOlhKWWyhFsn0UsfdK/kCWRv1iuA2gXAwt3dyNabr6QSj00I2V10pidqz69soatm9ZwZvpQMTIOd5Q==}
+ dotenv@17.2.3:
+ resolution: {integrity: sha512-JVUnt+DUIzu87TABbhPmNfVdBDt18BLOWjMUFJMSi/Qqg7NTYtabbvSNJGOJ7afbRuv9D/lngizHtP7QyLQ+9w==}
engines: {node: '>=12'}
dotenv@8.6.0:
@@ -7595,8 +7290,8 @@ packages:
ee-first@1.1.1:
resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==}
- electron-to-chromium@1.5.213:
- resolution: {integrity: sha512-xr9eRzSLNa4neDO0xVFrkXu3vyIzG4Ay08dApecw42Z1NbmCt+keEpXdvlYGVe0wtvY5dhW0Ay0lY0IOfsCg0Q==}
+ electron-to-chromium@1.5.263:
+ resolution: {integrity: sha512-DrqJ11Knd+lo+dv+lltvfMDLU27g14LMdH2b0O3Pio4uk0x+z7OR+JrmyacTPN2M8w3BrZ7/RTwG3R9B7irPlg==}
embla-carousel-autoplay@8.6.0:
resolution: {integrity: sha512-OBu5G3nwaSXkZCo1A6LTaFMZ8EpkYbwIaH+bPqdBnDGQ2fh4+NbzjXjs2SktoPNKCtflfVMc75njaDHOYXcrsA==}
@@ -7616,8 +7311,8 @@ packages:
embla-carousel@8.6.0:
resolution: {integrity: sha512-SjWyZBHJPbqxHOzckOfo8lHisEaJWmwd23XppYFYVh10bU66/Pn5tkVkbkCMZVdbUE5eTCI2nD8OyIP4Z+uwkA==}
- emoji-regex@10.5.0:
- resolution: {integrity: sha512-lb49vf1Xzfx080OKA0o6l8DQQpV+6Vg95zyCJX9VB/BqKYlhG7N4wgROUUHRA+ZPUefLnteQOad7z1kT2bV7bg==}
+ emoji-regex@10.6.0:
+ resolution: {integrity: sha512-toUI84YS5YmxW219erniWD0CIVOo46xGKColeNQRgOzDorgBi1v4D71/OFzgD9GO2UGKIv1C3Sp8DAn0+j5w7A==}
emoji-regex@8.0.0:
resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==}
@@ -7679,8 +7374,8 @@ packages:
resolution: {integrity: sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==}
hasBin: true
- error-ex@1.3.2:
- resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==}
+ error-ex@1.3.4:
+ resolution: {integrity: sha512-sqQamAnR14VgCr1A618A3sGrygcpK+HEbenA/HiEAkkUwcZIIB/tgWqHFxWgOyDh4nB4JCRimh79dR5Ywc9MDQ==}
error-stack-parser@2.1.4:
resolution: {integrity: sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ==}
@@ -7747,8 +7442,13 @@ packages:
engines: {node: '>=12'}
hasBin: true
- esbuild@0.25.9:
- resolution: {integrity: sha512-CRbODhYyQx3qp7ZEwzxOk4JBqmD/seJrzPa/cGjY1VtIn5E09Oi9/dB4JwctnfZ8Q8iT7rioVv5k/FNT/uf54g==}
+ esbuild@0.25.12:
+ resolution: {integrity: sha512-bbPBYYrtZbkt6Os6FiTLCTFxvq4tt3JKall1vRwshA3fdVztsLAatFaZobhkBC8/BrPetoa0oksYoKXoG4ryJg==}
+ engines: {node: '>=18'}
+ hasBin: true
+
+ esbuild@0.27.0:
+ resolution: {integrity: sha512-jd0f4NHbD6cALCyGElNpGAOtWxSq46l9X/sWB0Nzd5er4Kz2YTm+Vl0qKFT9KUJvD8+fiO8AvoHhFvEatfVixA==}
engines: {node: '>=18'}
hasBin: true
@@ -8024,10 +7724,6 @@ packages:
resolution: {integrity: sha512-xAH3zWhgO2/3KIniEKYPr8plNSzlGINOUqYj0m0u7AB81iRw8b/3E73W6AuU+6klLbaSFmZnaETQ2lXPfAydrA==}
engines: {node: '>=0.12.0'}
- execa@0.6.3:
- resolution: {integrity: sha512-/teX3MDLFBdYUhRk8WCBYboIMUmqeizu0m9Z3YF3JWrbEh/SlZg00vLJSaAGWw3wrZ9tE0buNw79eaAPYhUuvg==}
- engines: {node: '>=4'}
-
execa@4.1.0:
resolution: {integrity: sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==}
engines: {node: '>=10'}
@@ -8063,16 +7759,16 @@ packages:
resolution: {integrity: sha512-JhFGDVJ7tmDJItKhYgJCGLOWjuK9vPxiXoUFLwLDc99NlmklilbiQJwoctZtt13+xMw91MCk/REan6MWHqDjyA==}
engines: {node: '>=12.0.0'}
- expect@29.7.0:
- resolution: {integrity: sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw==}
- engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+ expect@30.2.0:
+ resolution: {integrity: sha512-u/feCi0GPsI+988gU2FLcsHyAHTU0MX1Wg68NhAnN7z/+C5wqG+CY8J53N9ioe8RXgaoz0nBR/TYMf3AycUuPw==}
+ engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
express@4.19.2:
resolution: {integrity: sha512-5T6nhjsT+EOMzuck8JjBHARTHfMht0POzlA60WV2pMD3gyXw2LZnZ+ueGdNxG+0calOJcWKbpFcuzLZ91YWq9Q==}
engines: {node: '>= 0.10.0'}
- exsolve@1.0.7:
- resolution: {integrity: sha512-VO5fQUzZtI6C+vx4w/4BWJpg3s/5l+6pRQEHzFRM8WFi4XffSP1Z+4qi7GbjWbvRQEbdIco5mIMq+zX4rPuLrw==}
+ exsolve@1.0.8:
+ resolution: {integrity: sha512-LmDxfWXwcTArk8fUEnOfSZpHOJ6zOMUJKOtFLFqJLoKJetuQG874Uc7/Kki7zFLzYybmZhp1M7+98pfMqeX8yA==}
ext@1.7.0:
resolution: {integrity: sha512-6hxeJYaL110a9b5TEJSj0gojyHQAmA2ch5Os+ySCiA1QGdS697XWY1pzsrSjqA9LDEEgdB/KypIlR59RcLuHYw==}
@@ -8144,9 +7840,6 @@ packages:
resolution: {integrity: sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==}
engines: {node: '>=0.8.0'}
- fb-watchman@2.0.2:
- resolution: {integrity: sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==}
-
fbjs@0.8.18:
resolution: {integrity: sha512-EQaWFK+fEPSoibjNy8IxUtaFOMXcWsY0JaVrQoZR9zC8N2Ygf9iDITPWjUTVIax95b6I742JFLqASHfsag/vKA==}
@@ -8181,8 +7874,8 @@ packages:
resolution: {integrity: sha512-d+l3qxjSesT4V7v2fh+QnmFnUWv9lSpjarhShNTgBOfA0ttejbQUAlHLitbjkoRiDulW0OPoQPYIGhIC8ohejg==}
engines: {node: '>=18'}
- file-entry-cache@10.1.4:
- resolution: {integrity: sha512-5XRUFc0WTtUbjfGzEwXc42tiGxQHBmtbUG1h9L2apu4SulCGN3Hqm//9D6FAolf8MYNL7f/YlJl9vy08pj5JuA==}
+ file-entry-cache@11.1.1:
+ resolution: {integrity: sha512-TPVFSDE7q91Dlk1xpFLvFllf8r0HyOMOlnWy7Z2HBku5H3KhIeOGInexrIeg2D64DosVB/JXkrrk6N/7Wriq4A==}
file-entry-cache@6.0.1:
resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==}
@@ -8259,8 +7952,8 @@ packages:
resolution: {integrity: sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==}
engines: {node: ^10.12.0 || >=12.0.0}
- flat-cache@6.1.13:
- resolution: {integrity: sha512-gmtS2PaUjSPa4zjObEIn4WWliKyZzYljgxODBfxugpK6q6HU9ClXzgCJ+nlcPKY9Bt090ypTOLIFWkV0jbKFjw==}
+ flat-cache@6.1.19:
+ resolution: {integrity: sha512-l/K33newPTZMTGAnnzaiqSl6NnH7Namh8jBNjrgjprWxGmZUuxx/sJNIRaijOh3n7q7ESbhNZC+pvVZMFdeU4A==}
flatted@3.3.3:
resolution: {integrity: sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==}
@@ -8326,8 +8019,8 @@ packages:
resolution: {integrity: sha512-f0cRzm6dkyVYV3nPoooP8XlccPQukegwhAnpoLcXy+X+A8KfpGOoXwDr9FLZd3wzgLaBGQBE3lY93Zm/i1JvIQ==}
engines: {node: '>= 6'}
- form-data@4.0.4:
- resolution: {integrity: sha512-KrGhL9Q4zjj0kiUt5OO4Mr/A/jlI2jDYs5eHBpYHPcBEVSiipAvn2Ko2HnPe20rmcuuvMHNdZFp+4IlGTMF0Ow==}
+ form-data@4.0.5:
+ resolution: {integrity: sha512-8RipRLol37bNs2bhoV67fiTEvdTrbMUYcFTiy3+wuuOnUog2QBHCZWXDRijWQfAkhBj2Uf5UnVaiWwA5vdd82w==}
engines: {node: '>= 6'}
formdata-polyfill@4.0.10:
@@ -8360,10 +8053,6 @@ packages:
resolution: {integrity: sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==}
engines: {node: '>=12'}
- fs-extra@7.0.1:
- resolution: {integrity: sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==}
- engines: {node: '>=6 <7 || >=8'}
-
fs-extra@8.1.0:
resolution: {integrity: sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==}
engines: {node: '>=6 <7 || >=8'}
@@ -8401,6 +8090,10 @@ packages:
functions-have-names@1.2.3:
resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==}
+ generator-function@2.0.1:
+ resolution: {integrity: sha512-SFdFmIJi+ybC0vjlHN0ZGVGHc3lgE0DxPAT0djjVg+kjOnSqclqmj0KQ7ykTOLP6YxoqOvuAODGdcHJn+43q3g==}
+ engines: {node: '>= 0.4'}
+
gensync@1.0.0-beta.2:
resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==}
engines: {node: '>=6.9.0'}
@@ -8409,26 +8102,18 @@ packages:
resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==}
engines: {node: 6.* || 8.* || >= 10.*}
- get-east-asian-width@1.3.1:
- resolution: {integrity: sha512-R1QfovbPsKmosqTnPoRFiJ7CF9MLRgb53ChvMZm+r4p76/+8yKDy17qLL2PKInORy2RkZZekuK0efYgmzTkXyQ==}
+ get-east-asian-width@1.4.0:
+ resolution: {integrity: sha512-QZjmEOC+IT1uk6Rx0sX22V6uHWVwbdbxf1faPqJ1QhLdGgsRGCZoyaQBm/piRdJy/D2um6hM1UP7ZEeQ4EkP+Q==}
engines: {node: '>=18'}
get-intrinsic@1.3.0:
resolution: {integrity: sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==}
engines: {node: '>= 0.4'}
- get-package-type@0.1.0:
- resolution: {integrity: sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==}
- engines: {node: '>=8.0.0'}
-
get-proto@1.0.1:
resolution: {integrity: sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==}
engines: {node: '>= 0.4'}
- get-stream@3.0.0:
- resolution: {integrity: sha512-GlhdIUuVakc8SJ6kK0zAFbiGzRFzNnY4jUuEbV9UROo4Y+0Ny4fjvcZFVTeDA4odpFyOQzaw6hXukJSq/f28sQ==}
- engines: {node: '>=4'}
-
get-stream@5.2.0:
resolution: {integrity: sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==}
engines: {node: '>=8'}
@@ -8449,8 +8134,8 @@ packages:
resolution: {integrity: sha512-w9UMqWwJxHNOvoNzSJ2oPF5wvYcvP7jUvYzhp67yEhTi17ZDBBC1z9pTdGuzjD+EFIqLSYRweZjqfiPzQ06Ebg==}
engines: {node: '>= 0.4'}
- get-tsconfig@4.10.1:
- resolution: {integrity: sha512-auHyJ4AgMz7vgS8Hp3N6HXSmlMdUyhSUrfBF16w153rxtLIEOE+HGqaBppczZvnHLqQJfiHotCYpNhl0lUROFQ==}
+ get-tsconfig@4.13.0:
+ resolution: {integrity: sha512-1VKTZJCwBrvbd+Wn3AOgQP/2Av+TfTCOlE4AcRJE72W1ksZXbAx8PPBR9RzgTeSPzlPMHrbANMH3LbltH73wxQ==}
get-uri@6.0.5:
resolution: {integrity: sha512-b1O07XYq8eRuVzBNgJLstU6FYc1tS6wnMtF1I1D9lE8LxZSOGZ7LhxN54yPP6mGw5f2CkXY2BQUL9Fx41qvcIg==}
@@ -8499,12 +8184,12 @@ packages:
glob-to-regexp@0.4.1:
resolution: {integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==}
- glob@10.4.5:
- resolution: {integrity: sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==}
+ glob@10.5.0:
+ resolution: {integrity: sha512-DfXN8DfhJ7NH3Oe7cFmu3NCu1wKbkReJ8TorzSAFbSKrlNaQSKfIzqYqVY8zlbs2NLBbWpRiU52GX2PbaBVNkg==}
hasBin: true
- glob@7.1.6:
- resolution: {integrity: sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==}
+ glob@7.2.3:
+ resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==}
deprecated: Glob versions prior to v9 are no longer supported
global-cache@1.2.1:
@@ -8617,10 +8302,6 @@ packages:
resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==}
engines: {node: '>=8'}
- has-own-prop@2.0.0:
- resolution: {integrity: sha512-Pq0h+hvsVm6dDEa8x82GnLSYHOzNDt7f0ddFa3FqcQlgzEiptPqL+XrOJNavjOzSYiYWIrgeVYYgGlLmnxwilQ==}
- engines: {node: '>=8'}
-
has-property-descriptors@1.0.2:
resolution: {integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==}
@@ -8664,6 +8345,10 @@ packages:
resolution: {integrity: sha512-Hrp5vIK/xr5SkeN2onO32H0MgNZ0f17HRNH39WfL0SYUNOTZ5Lz1TJ8Pajo/87dYGEFlLMm7mIc/k/s6Bvz9HQ==}
engines: {node: '>=8'}
+ hashery@1.3.0:
+ resolution: {integrity: sha512-fWltioiy5zsSAs9ouEnvhsVJeAXRybGCNNv0lvzpzNOSDbULXRy7ivFWwCCv4I5Am6kSo75hmbsCduOoc2/K4w==}
+ engines: {node: '>=20'}
+
hasown@2.0.2:
resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==}
engines: {node: '>= 0.4'}
@@ -8687,8 +8372,8 @@ packages:
hoist-non-react-statics@3.3.2:
resolution: {integrity: sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==}
- hookified@1.12.0:
- resolution: {integrity: sha512-hMr1Y9TCLshScrBbV2QxJ9BROddxZ12MX9KsCtuGGy/3SmmN5H1PllKerrVlSotur9dlE8hmUKAOSa3WDzsZmQ==}
+ hookified@1.13.0:
+ resolution: {integrity: sha512-6sPYUY8olshgM/1LDNW4QZQN0IqgKhtl/1C8koNZBJrKLBk3AZl6chQtNwpNztvfiApHMEwMHek5rv993PRbWw==}
hosted-git-info@2.8.9:
resolution: {integrity: sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==}
@@ -8862,8 +8547,8 @@ packages:
engines: {node: '>=0.10.0'}
hasBin: true
- immer@10.1.3:
- resolution: {integrity: sha512-tmjF/k8QDKydUlm3mZU+tjM6zeq9/fFpPqH9SzWmBnVVKsPBg/V66qsMwb3/Bo90cgUN+ghdVBess+hPsxUyRw==}
+ immer@10.2.0:
+ resolution: {integrity: sha512-d/+XTN3zfODyjr89gM3mPq1WNX2B8pYsu7eORitdwyA2sBubnTl3laYlBk4sXY5FUa5qTZGBDPJICVbvqzjlbw==}
immer@8.0.1:
resolution: {integrity: sha512-aqXhGP7//Gui2+UrEtvxZxSquQVXTpZ7KDxfCcKAF3Vysvw0CViVaW9RZ1j1xlIYqaaaipBoqdqeibkc18PNvA==}
@@ -8875,9 +8560,6 @@ packages:
immutable@4.3.7:
resolution: {integrity: sha512-1hqclzwYwjRDFLjcFxOM5AYkkG0rpFPpr1RLPMEuGczoS7YA8gLhy8SWXYRAA/XwfEHpfo3cw5JGioS32fnMRw==}
- immutable@5.1.3:
- resolution: {integrity: sha512-+chQdDfvscSF1SJqv2gn4SRO2ZyS3xL3r7IW/wWEEzrzLisnOlKiQu5ytC/BVNcS15C39WT2Hg/bjKjDMcu+zg==}
-
import-fresh@2.0.0:
resolution: {integrity: sha512-eZ5H8rcgYazHbKC3PG4ClHNykCSxtAhxSSEM+2mb+7evD2CKF5V7c0dNum7AdpDh0ZdICwZY9sRSn8f+KH96sg==}
engines: {node: '>=4'}
@@ -8961,8 +8643,8 @@ packages:
resolution: {integrity: sha512-RgPGwue0mJtoX2Ax8EmMzJzttxjnva7gx0Q7mKJ4oALrTZvtmCeAw5Msz2PcjW4dtCh/h7vN/8GJCxZO1uv+OA==}
deprecated: We've written a new parser that's 6x faster and is backwards compatible. Please use @formatjs/icu-messageformat-parser
- intl-messageformat@10.7.16:
- resolution: {integrity: sha512-UmdmHUmp5CIKKjSoE10la5yfU+AYJAaiYLsodbjL4lji83JNvgOQUjGaGhGrpFCb0Uh7sl7qfP1IyILa8Z40ug==}
+ intl-messageformat@10.7.18:
+ resolution: {integrity: sha512-m3Ofv/X/tV8Y3tHXLohcuVuhWKo7BBq62cqY15etqmLxg2DZ34AGGgQDeR+SCta2+zICb1NX83af0GJmbQ1++g==}
intl-messageformat@7.8.4:
resolution: {integrity: sha512-yS0cLESCKCYjseCOGXuV4pxJm/buTfyCJ1nzQjryHmSehlptbZbn9fnlk1I9peLopZGGbjj46yHHiTAEZ1qOTA==}
@@ -8970,16 +8652,16 @@ packages:
invariant@2.2.4:
resolution: {integrity: sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==}
- ip-address@10.0.1:
- resolution: {integrity: sha512-NWv9YLW4PoW2B7xtzaS3NCot75m6nK7Icdv0o3lfMceJVRfSoQwqD4wEH5rLwoKJwUiZ/rfpiVBhnaF0FK4HoA==}
+ ip-address@10.1.0:
+ resolution: {integrity: sha512-XXADHxXmvT9+CRxhXg56LJovE+bmWnEWB78LB83VZTprKTmaC5QfruXocxzTZ2Kl0DNwKuBdlIhjL8LeY8Sf8Q==}
engines: {node: '>= 12'}
ipaddr.js@1.9.1:
resolution: {integrity: sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==}
engines: {node: '>= 0.10'}
- ipaddr.js@2.2.0:
- resolution: {integrity: sha512-Ag3wB2o37wslZS19hZqorUnrnzSkpOVy+IiiDEiTqNubEYpYuHWIf6K4psgN2ZWKExS4xhVCrRVfb/wfW8fWJA==}
+ ipaddr.js@2.3.0:
+ resolution: {integrity: sha512-Zv/pA+ciVFbCSBBjGfaKUya/CcGmUHzTydLMaTwrUUEM2DIEO3iZvueGxmacvmN50fGpGVKeTXpb2LcYQxeVdg==}
engines: {node: '>= 10'}
is-absolute-url@2.1.0:
@@ -9001,8 +8683,8 @@ packages:
is-arrayish@0.2.1:
resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==}
- is-arrayish@0.3.2:
- resolution: {integrity: sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==}
+ is-arrayish@0.3.4:
+ resolution: {integrity: sha512-m6UrgzFVUYawGBh1dUsWR5M2Clqic9RVXC/9f8ceNlv2IcO9j9J/z8UoCLPqtsPBFNzEpfR3xftohbfqDx8EQA==}
is-async-function@2.1.1:
resolution: {integrity: sha512-9dgM/cZBnNvjzaMYHVoxxfPj2QXt22Ev7SuuPrs+xav0ukGB0S6d4ydZdEiM48kLx5kDV+QBPrpVnFyefL8kkQ==}
@@ -9095,8 +8777,8 @@ packages:
resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==}
engines: {node: '>=8'}
- is-generator-function@1.1.0:
- resolution: {integrity: sha512-nPUB5km40q9e8UfN/Zc24eLlzdSf9OfKByBw9CIdw4H1giPMeA0OIJvbchsCu4npfI2QcMVBsGEBHKZ7wLTWmQ==}
+ is-generator-function@1.1.2:
+ resolution: {integrity: sha512-upqt1SkGkODW9tsGNG5mtXTXtECizwtS2kA161M+gJPc1xdb/Ax629af6YrTwcOeQHbewrPNlE5Dx7kzvXTizA==}
engines: {node: '>= 0.4'}
is-glob@4.0.3:
@@ -9136,8 +8818,8 @@ packages:
resolution: {integrity: sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==}
engines: {node: '>= 0.4'}
- is-npm@6.0.0:
- resolution: {integrity: sha512-JEjxbSmtPSt1c8XTkVrlujcXdKV1/tvuQ7GwKcAlyiVLeYFQ2VHat8xfrDJsIkhCdF/tZ7CiIR3sy141c6+gPQ==}
+ is-npm@6.1.0:
+ resolution: {integrity: sha512-O2z4/kNgyjhQwVR1Wpkbfc19JIhggF97NZNCpWTnjH7kVcZMUrnut9XSN7txI7VdyIYk5ZatOq3zvSuWpU8hoA==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
is-number-object@1.1.1:
@@ -9316,10 +8998,6 @@ packages:
resolution: {integrity: sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==}
engines: {node: '>=8'}
- istanbul-lib-instrument@5.2.1:
- resolution: {integrity: sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==}
- engines: {node: '>=8'}
-
istanbul-lib-report@3.0.1:
resolution: {integrity: sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==}
engines: {node: '>=10'}
@@ -9353,45 +9031,41 @@ packages:
resolution: {integrity: sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+ jest-diff@30.2.0:
+ resolution: {integrity: sha512-dQHFo3Pt4/NLlG5z4PxZ/3yZTZ1C7s9hveiOj+GCN+uT109NC2QgsoVZsVOAvbJ3RgKkvyLGXZV9+piDpWbm6A==}
+ engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
+
jest-get-type@29.6.3:
resolution: {integrity: sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
- jest-haste-map@29.7.0:
- resolution: {integrity: sha512-fP8u2pyfqx0K1rGn1R9pyE0/KTn+G7PxktWidOBTqFPLYX0b9ksaMFkhK5vrS3DVun09pckLdlx90QthlW7AmA==}
- engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
-
jest-matcher-utils@29.2.2:
resolution: {integrity: sha512-4DkJ1sDPT+UX2MR7Y3od6KtvRi9Im1ZGLGgdLFLm4lPexbTaCgJW5NN3IOXlQHF7NSHY/VHhflQ+WoKtD/vyCw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
- jest-matcher-utils@29.7.0:
- resolution: {integrity: sha512-sBkD+Xi9DtcChsI3L3u0+N0opgPYnCRPtGcQYrgXmR+hmt/fYfWAL0xRXYU8eWOdfuLgBe0YCW3AFtnRLagq/g==}
- engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+ jest-matcher-utils@30.2.0:
+ resolution: {integrity: sha512-dQ94Nq4dbzmUWkQ0ANAWS9tBRfqCrn0bV9AMYdOi/MHW726xn7eQmMeRTpX2ViC00bpNaWXq+7o4lIQ3AX13Hg==}
+ engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
jest-message-util@26.6.2:
resolution: {integrity: sha512-rGiLePzQ3AzwUshu2+Rn+UMFk0pHN58sOG+IaJbk5Jxuqo3NYO1U2/MIR4S1sKgsoYSXSzdtSa0TgrmtUwEbmA==}
engines: {node: '>= 10.14.2'}
- jest-message-util@29.7.0:
- resolution: {integrity: sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w==}
- engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
-
- jest-mock@29.7.0:
- resolution: {integrity: sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw==}
- engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+ jest-message-util@30.2.0:
+ resolution: {integrity: sha512-y4DKFLZ2y6DxTWD4cDe07RglV88ZiNEdlRfGtqahfbIjfsw1nMCPx49Uev4IA/hWn3sDKyAnSPwoYSsAEdcimw==}
+ engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
- jest-regex-util@29.6.3:
- resolution: {integrity: sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg==}
- engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+ jest-mock@30.2.0:
+ resolution: {integrity: sha512-JNNNl2rj4b5ICpmAcq+WbLH83XswjPbjH4T7yvGzfAGCPh1rw+xVNbtk+FnRslvt9lkCcdn9i1oAoKUuFsOxRw==}
+ engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
- jest-snapshot@29.7.0:
- resolution: {integrity: sha512-Rm0BMWtxBcioHr1/OX5YCP8Uov4riHvKPknOGs804Zg9JGZgmIBkbtlxJC/7Z4msKYVbIJtfU+tKb8xlYNfdkw==}
- engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+ jest-regex-util@30.0.1:
+ resolution: {integrity: sha512-jHEQgBXAgc+Gh4g0p3bCevgRCVRkB4VB70zhoAE48gxeSr1hfUOsM/C2WoJgVL7Eyg//hudYENbm3Ne+/dRVVA==}
+ engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
- jest-util@29.7.0:
- resolution: {integrity: sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==}
- engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+ jest-util@30.2.0:
+ resolution: {integrity: sha512-QKNsM0o3Xe6ISQU869e+DhG+4CK/48aHYdJZGlFQVTjnbvgpcKyxpzk29fGiO7i/J8VENZ+d2iGnSsvmuHywlA==}
+ engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
jest-worker@26.6.2:
resolution: {integrity: sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==}
@@ -9401,25 +9075,14 @@ packages:
resolution: {integrity: sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==}
engines: {node: '>= 10.13.0'}
- jest-worker@29.7.0:
- resolution: {integrity: sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==}
- engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
-
jiti@1.21.7:
resolution: {integrity: sha512-/imKNG4EbWNrVjoNC/1H5/9GFy+tqjGBHCaSsN+P2RnPqjsLmv6UD3Ej+Kj8nBWaRAwyk7kK5ZUc+OEatnTR3A==}
hasBin: true
- jiti@2.5.1:
- resolution: {integrity: sha512-twQoecYPiVA5K/h6SxtORw/Bs3ar+mLUtoPSc7iMXzQzK8d7eJ/R09wmTwAjiamETn1cXYPGfNnu7DMoHgu12w==}
- hasBin: true
-
jiti@2.6.1:
resolution: {integrity: sha512-ekilCSN1jwRvIbgeg/57YFh8qQDNbwDb9xT/qu2DAHbFFZUicIl4ygVaAvzveMhMVr3LnpSKTNnwt8PoOfmKhQ==}
hasBin: true
- jju@1.4.0:
- resolution: {integrity: sha512-8wb9Yw966OSxApiCt0K3yNJL8pnNeIv+OEq2YMidz4FKP6nonSRoOXc80iXY4JaN2FC11B9qsNmDsm+ZOfMROA==}
-
joi@17.13.3:
resolution: {integrity: sha512-otDA4ldcIx+ZXsKHWmp0YizCweVRZG96J10b0FevjfuncLO1oX59THoAmHkNubYJ+9gWsYsp5k8v4ib6oDv1fA==}
@@ -9451,12 +9114,12 @@ packages:
js-tokens@9.0.1:
resolution: {integrity: sha512-mxa9E9ITFOt0ban3j6L5MpjwegGz6lBQmM1IJkWeBZGcMxto50+eWdjC/52xDbS2vy0k7vIMK0Fe2wfL9OQSpQ==}
- js-yaml@3.14.1:
- resolution: {integrity: sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==}
+ js-yaml@3.14.2:
+ resolution: {integrity: sha512-PMSmkqxr106Xa156c2M265Z+FTrPl+oxd/rgOQy2tijQeK5TxQ43psO1ZCwhVOSdnn+RzkzlRz/eY4BgJBYVpg==}
hasBin: true
- js-yaml@4.1.0:
- resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==}
+ js-yaml@4.1.1:
+ resolution: {integrity: sha512-qQKT4zQxXl8lLwBtHMWwaTcGfFOZviOJet3Oy/xmGk2gZH677CJM9EvtfdSkgWcATZhj/55JZ0rmy3myCT5lsA==}
hasBin: true
jsbn@0.1.1:
@@ -9493,11 +9156,6 @@ packages:
canvas:
optional: true
- jsesc@3.0.2:
- resolution: {integrity: sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==}
- engines: {node: '>=6'}
- hasBin: true
-
jsesc@3.1.0:
resolution: {integrity: sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==}
engines: {node: '>=6'}
@@ -9543,8 +9201,8 @@ packages:
engines: {node: '>=6'}
hasBin: true
- jsonc-eslint-parser@2.4.0:
- resolution: {integrity: sha512-WYDyuc/uFcGp6YtM2H0uKmUwieOuzeE/5YocFJLnLfclZ4inf3mRn8ZVy1s7Hxji7Jxm6Ss8gqpexD/GlKoGgg==}
+ jsonc-eslint-parser@2.4.1:
+ resolution: {integrity: sha512-uuPNLJkKN8NXAlZlQ6kmUF9qO+T6Kyd7oV4+/7yy8Jz6+MZNyhPq8EdLpdfnPVzUC8qSf1b4j1azKaGnFsjmsw==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
jsonfile@4.0.0:
@@ -9590,8 +9248,8 @@ packages:
keyv@4.5.4:
resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==}
- keyv@5.5.0:
- resolution: {integrity: sha512-QG7qR2tijh1ftOvClut4YKKg1iW6cx3GZsKoGyJPxHkGWK9oJhG9P3j5deP0QQOGDowBMVQFaP+Vm4NpGYvmIQ==}
+ keyv@5.5.4:
+ resolution: {integrity: sha512-eohl3hKTiVyD1ilYdw9T0OiB4hnjef89e3dMYKz+mVKDzj+5IteTseASUsOB+EU9Tf6VNTCjDePcP6wkDGmLKQ==}
kind-of@3.2.2:
resolution: {integrity: sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==}
@@ -9653,14 +9311,20 @@ packages:
cpu: [arm64]
os: [android]
+ lightningcss-cli-android-arm64@1.30.2:
+ resolution: {integrity: sha512-CcntRK9yNjFRiZKwW9m4sf5WYYNOGxlD4ROymyIb+KPbsrEBAZSaknoUM1aIhuhvB/TUTtVmPKvt/Zu0LeSR7g==}
+ engines: {node: '>= 12.0.0'}
+ cpu: [arm64]
+ os: [android]
+
lightningcss-cli-darwin-arm64@1.28.1:
resolution: {integrity: sha512-qPA7fgtt6spmhqqZY9Gji6TCfV51sUu2n52KLTVydaAf0QVD/iFMF92iwLMhF37Rzn8dB6BHYFew9Jq/kkM9sQ==}
engines: {node: '>= 12.0.0'}
cpu: [arm64]
os: [darwin]
- lightningcss-cli-darwin-arm64@1.30.1:
- resolution: {integrity: sha512-h00/Iq4Hjw+1Bm3Uoc2i1cryDdH1YhTK8e7d/Y/Wn2sUrdK9nVRxzuTk7qUur6KqVgXFthItAUhuGjFyDBJpmg==}
+ lightningcss-cli-darwin-arm64@1.30.2:
+ resolution: {integrity: sha512-Z2STTSes07R2R5tOPY85HipU+z1SwUBV2Yp5emAcqL+o5RsOAE1JWbkloQWa++8R6b/gxzD11VPM3WtCCqL8Gg==}
engines: {node: '>= 12.0.0'}
cpu: [arm64]
os: [darwin]
@@ -9671,8 +9335,8 @@ packages:
cpu: [x64]
os: [darwin]
- lightningcss-cli-darwin-x64@1.30.1:
- resolution: {integrity: sha512-Q7hzbzkGe5EUMgojjYgnhT9wkSLZp0I9Q25IP7IDnMv2KMTdqUSLAn7YMu9Xqt22MspAuIWV7DkyTiN4xM7fIA==}
+ lightningcss-cli-darwin-x64@1.30.2:
+ resolution: {integrity: sha512-N0IGWWsLnv81sDw9i/vvaisp55uDnhoapGBEJ8lMED064CsUHpLCK7L/5B8kFj8UI97zL+xb7KTTGOHkcC8skg==}
engines: {node: '>= 12.0.0'}
cpu: [x64]
os: [darwin]
@@ -9683,8 +9347,8 @@ packages:
cpu: [x64]
os: [freebsd]
- lightningcss-cli-freebsd-x64@1.30.1:
- resolution: {integrity: sha512-0VbQDecfjJn7GtvtVbsdEnvR8OY8PyWiVnchbozjODqE4ASpDBjQDtSMbIDRvBtkk5Me6PFhVmCKfuyctCuDqQ==}
+ lightningcss-cli-freebsd-x64@1.30.2:
+ resolution: {integrity: sha512-17pN+hnxU2fPOGhGzMhPf2KZrIFFwEtrIZYshGDM/jhskJmDq57DAt5esh7PVDUjNkD7JDt3a7E9xJEVltc2Kg==}
engines: {node: '>= 12.0.0'}
cpu: [x64]
os: [freebsd]
@@ -9695,8 +9359,8 @@ packages:
cpu: [arm]
os: [linux]
- lightningcss-cli-linux-arm-gnueabihf@1.30.1:
- resolution: {integrity: sha512-ngJVmTygPRafw2sF7NFWwez54NKDO2AEY5IEm241qytAw+YsY/oAx/0gG2Fyq4HTGcKud9dc7kHQpWfDTXuGHg==}
+ lightningcss-cli-linux-arm-gnueabihf@1.30.2:
+ resolution: {integrity: sha512-aaeEtZXqvNWDyHYCThugev1YPGlouvY9lE+o9QJg/Z5GTNb/1EM2TaTBGEwdG5m1ChYukc2lD5CPIEHjQ7qzSA==}
engines: {node: '>= 12.0.0'}
cpu: [arm]
os: [linux]
@@ -9707,8 +9371,8 @@ packages:
cpu: [arm64]
os: [linux]
- lightningcss-cli-linux-arm64-gnu@1.30.1:
- resolution: {integrity: sha512-2uh0vwHn0UyrZnVX2XCw8qbwLKuAwM1nLo43ddcviQum9rF08nHdPEqLXZfDzR/VA0pbyFjSw7EbbEBjXGsFxw==}
+ lightningcss-cli-linux-arm64-gnu@1.30.2:
+ resolution: {integrity: sha512-XhgByx2H85MeEWGtI0XR+ugtQRBc/bvRN8gSGdXa3YqVONmACsLj7shatVHmqVOaPgtnevKVKl7wtqfN9pW96A==}
engines: {node: '>= 12.0.0'}
cpu: [arm64]
os: [linux]
@@ -9719,8 +9383,8 @@ packages:
cpu: [arm64]
os: [linux]
- lightningcss-cli-linux-arm64-musl@1.30.1:
- resolution: {integrity: sha512-IUrg/O4r7OPuGo+G9BGaDDodvAoLSq3f0pMmdiODCl8so/LkYvue7ySL8JQO8TebTKoUXE7VcZgdfoSVxkCbuQ==}
+ lightningcss-cli-linux-arm64-musl@1.30.2:
+ resolution: {integrity: sha512-UR7/N/33b8sG9e07TccxJvWxvNdlMFglesdgv1fi+wMa8sbN3tBPXOGj67B5nlVWHskYD9bHLPahemRWxnNuHQ==}
engines: {node: '>= 12.0.0'}
cpu: [arm64]
os: [linux]
@@ -9731,8 +9395,8 @@ packages:
cpu: [x64]
os: [linux]
- lightningcss-cli-linux-x64-gnu@1.30.1:
- resolution: {integrity: sha512-AoxyUYuwl/IGTFl178Kxm/MMIgao3s9bmp/RrTbh51+8LsUh9YWolvyhmVxfiCauJ70dfoknQ/tsa+NKs2XDfQ==}
+ lightningcss-cli-linux-x64-gnu@1.30.2:
+ resolution: {integrity: sha512-W6U9LNo+4mCsEB22AIvtRVGp8NETN4by9U2AIRDzZbYZYb7W9+1H56xKzb/2ABQEAoDrh/7027I/XDheuGrlZg==}
engines: {node: '>= 12.0.0'}
cpu: [x64]
os: [linux]
@@ -9743,8 +9407,8 @@ packages:
cpu: [x64]
os: [linux]
- lightningcss-cli-linux-x64-musl@1.30.1:
- resolution: {integrity: sha512-NSkm/6sKsMTvO/pf8hU1Nwalrz9VsmSC9AKTYmxNsLDrLtzc8PYobcauyv0b1MnXxO1KuqLmFiCnVzGU7WbRPQ==}
+ lightningcss-cli-linux-x64-musl@1.30.2:
+ resolution: {integrity: sha512-Qe6hwTXmc37LnKPIyoY20EQgHsVoAeTUF389Bt7sJfK5JZPLm7EyVvqkO4DukCx4Dv4DSskU03o+qT1+s6UeVw==}
engines: {node: '>= 12.0.0'}
cpu: [x64]
os: [linux]
@@ -9755,8 +9419,8 @@ packages:
cpu: [arm64]
os: [win32]
- lightningcss-cli-win32-arm64-msvc@1.30.1:
- resolution: {integrity: sha512-qDlhf9FAy+26MDMP14VWy+W5ho7KruR1ne2fYWKxgCGw7WZ5gnaaZpRBewp4KRd7lqo/opaIsK8kQy/WJTJD9A==}
+ lightningcss-cli-win32-arm64-msvc@1.30.2:
+ resolution: {integrity: sha512-PZrkKHhYncBRh/Xe2Voa7t7ors+zUMU8hm5qOLgR0W5NfhbwwjLBXa3+fFF+BVdpTeyjLGF1ovzKIWSF1rMN/g==}
engines: {node: '>= 12.0.0'}
cpu: [arm64]
os: [win32]
@@ -9767,8 +9431,8 @@ packages:
cpu: [x64]
os: [win32]
- lightningcss-cli-win32-x64-msvc@1.30.1:
- resolution: {integrity: sha512-AwkpPbM9NABz1bRLr6GPrUa1wyOOUAZpOoR/HmDMOYPUAiQOlzxsNUR0/YreWbwD3X+dqkwXywSbwHddvTNZ1A==}
+ lightningcss-cli-win32-x64-msvc@1.30.2:
+ resolution: {integrity: sha512-5VUIS1Dcbkcy2SDr7vBlKfwpSx2BUlZwmvoRVWA+OkkLsQhVUtLUKheJJXsOFruBn9uV8FH8KPLkvTJzuGFLyQ==}
engines: {node: '>= 12.0.0'}
cpu: [x64]
os: [win32]
@@ -9778,8 +9442,8 @@ packages:
engines: {node: '>= 12.0.0'}
hasBin: true
- lightningcss-cli@1.30.1:
- resolution: {integrity: sha512-m3VtCMfPrEucBbdbJ4om7biAknXJUnMukGzE64Anww6iYgsEaBJJhXQZMLwwEEWtpZrQf78f1xejCDIBhumjUw==}
+ lightningcss-cli@1.30.2:
+ resolution: {integrity: sha512-vTm/775SqvQ74T0y4twiqjopXV6SnAFguuRpnbKUE9aXxqJGxWJoHS77ZRkJj3dKmnD61ejOawg3FBiTT8/3Tw==}
engines: {node: '>= 12.0.0'}
hasBin: true
@@ -9789,12 +9453,6 @@ packages:
cpu: [arm64]
os: [darwin]
- lightningcss-darwin-arm64@1.30.1:
- resolution: {integrity: sha512-c8JK7hyE65X1MHMN+Viq9n11RRC7hgin3HhYKhrMyaXflk5GVplZ60IxyoVtzILeKr+xAJwg6zK6sjTBJ0FKYQ==}
- engines: {node: '>= 12.0.0'}
- cpu: [arm64]
- os: [darwin]
-
lightningcss-darwin-arm64@1.30.2:
resolution: {integrity: sha512-ylTcDJBN3Hp21TdhRT5zBOIi73P6/W0qwvlFEk22fkdXchtNTOU4Qc37SkzV+EKYxLouZ6M4LG9NfZ1qkhhBWA==}
engines: {node: '>= 12.0.0'}
@@ -9807,12 +9465,6 @@ packages:
cpu: [x64]
os: [darwin]
- lightningcss-darwin-x64@1.30.1:
- resolution: {integrity: sha512-k1EvjakfumAQoTfcXUcHQZhSpLlkAuEkdMBsI/ivWw9hL+7FtilQc0Cy3hrx0AAQrVtQAbMI7YjCgYgvn37PzA==}
- engines: {node: '>= 12.0.0'}
- cpu: [x64]
- os: [darwin]
-
lightningcss-darwin-x64@1.30.2:
resolution: {integrity: sha512-oBZgKchomuDYxr7ilwLcyms6BCyLn0z8J0+ZZmfpjwg9fRVZIR5/GMXd7r9RH94iDhld3UmSjBM6nXWM2TfZTQ==}
engines: {node: '>= 12.0.0'}
@@ -9825,12 +9477,6 @@ packages:
cpu: [x64]
os: [freebsd]
- lightningcss-freebsd-x64@1.30.1:
- resolution: {integrity: sha512-kmW6UGCGg2PcyUE59K5r0kWfKPAVy4SltVeut+umLCFoJ53RdCUWxcRDzO1eTaxf/7Q2H7LTquFHPL5R+Gjyig==}
- engines: {node: '>= 12.0.0'}
- cpu: [x64]
- os: [freebsd]
-
lightningcss-freebsd-x64@1.30.2:
resolution: {integrity: sha512-c2bH6xTrf4BDpK8MoGG4Bd6zAMZDAXS569UxCAGcA7IKbHNMlhGQ89eRmvpIUGfKWNVdbhSbkQaWhEoMGmGslA==}
engines: {node: '>= 12.0.0'}
@@ -9843,12 +9489,6 @@ packages:
cpu: [arm]
os: [linux]
- lightningcss-linux-arm-gnueabihf@1.30.1:
- resolution: {integrity: sha512-MjxUShl1v8pit+6D/zSPq9S9dQ2NPFSQwGvxBCYaBYLPlCWuPh9/t1MRS8iUaR8i+a6w7aps+B4N0S1TYP/R+Q==}
- engines: {node: '>= 12.0.0'}
- cpu: [arm]
- os: [linux]
-
lightningcss-linux-arm-gnueabihf@1.30.2:
resolution: {integrity: sha512-eVdpxh4wYcm0PofJIZVuYuLiqBIakQ9uFZmipf6LF/HRj5Bgm0eb3qL/mr1smyXIS1twwOxNWndd8z0E374hiA==}
engines: {node: '>= 12.0.0'}
@@ -9861,12 +9501,6 @@ packages:
cpu: [arm64]
os: [linux]
- lightningcss-linux-arm64-gnu@1.30.1:
- resolution: {integrity: sha512-gB72maP8rmrKsnKYy8XUuXi/4OctJiuQjcuqWNlJQ6jZiWqtPvqFziskH3hnajfvKB27ynbVCucKSm2rkQp4Bw==}
- engines: {node: '>= 12.0.0'}
- cpu: [arm64]
- os: [linux]
-
lightningcss-linux-arm64-gnu@1.30.2:
resolution: {integrity: sha512-UK65WJAbwIJbiBFXpxrbTNArtfuznvxAJw4Q2ZGlU8kPeDIWEX1dg3rn2veBVUylA2Ezg89ktszWbaQnxD/e3A==}
engines: {node: '>= 12.0.0'}
@@ -9879,12 +9513,6 @@ packages:
cpu: [arm64]
os: [linux]
- lightningcss-linux-arm64-musl@1.30.1:
- resolution: {integrity: sha512-jmUQVx4331m6LIX+0wUhBbmMX7TCfjF5FoOH6SD1CttzuYlGNVpA7QnrmLxrsub43ClTINfGSYyHe2HWeLl5CQ==}
- engines: {node: '>= 12.0.0'}
- cpu: [arm64]
- os: [linux]
-
lightningcss-linux-arm64-musl@1.30.2:
resolution: {integrity: sha512-5Vh9dGeblpTxWHpOx8iauV02popZDsCYMPIgiuw97OJ5uaDsL86cnqSFs5LZkG3ghHoX5isLgWzMs+eD1YzrnA==}
engines: {node: '>= 12.0.0'}
@@ -9897,12 +9525,6 @@ packages:
cpu: [x64]
os: [linux]
- lightningcss-linux-x64-gnu@1.30.1:
- resolution: {integrity: sha512-piWx3z4wN8J8z3+O5kO74+yr6ze/dKmPnI7vLqfSqI8bccaTGY5xiSGVIJBDd5K5BHlvVLpUB3S2YCfelyJ1bw==}
- engines: {node: '>= 12.0.0'}
- cpu: [x64]
- os: [linux]
-
lightningcss-linux-x64-gnu@1.30.2:
resolution: {integrity: sha512-Cfd46gdmj1vQ+lR6VRTTadNHu6ALuw2pKR9lYq4FnhvgBc4zWY1EtZcAc6EffShbb1MFrIPfLDXD6Xprbnni4w==}
engines: {node: '>= 12.0.0'}
@@ -9915,12 +9537,6 @@ packages:
cpu: [x64]
os: [linux]
- lightningcss-linux-x64-musl@1.30.1:
- resolution: {integrity: sha512-rRomAK7eIkL+tHY0YPxbc5Dra2gXlI63HL+v1Pdi1a3sC+tJTcFrHX+E86sulgAXeI7rSzDYhPSeHHjqFhqfeQ==}
- engines: {node: '>= 12.0.0'}
- cpu: [x64]
- os: [linux]
-
lightningcss-linux-x64-musl@1.30.2:
resolution: {integrity: sha512-XJaLUUFXb6/QG2lGIW6aIk6jKdtjtcffUT0NKvIqhSBY3hh9Ch+1LCeH80dR9q9LBjG3ewbDjnumefsLsP6aiA==}
engines: {node: '>= 12.0.0'}
@@ -9933,14 +9549,8 @@ packages:
cpu: [arm64]
os: [win32]
- lightningcss-win32-arm64-msvc@1.30.1:
- resolution: {integrity: sha512-mSL4rqPi4iXq5YVqzSsJgMVFENoa4nGTT/GjO2c0Yl9OuQfPsIfncvLrEW6RbbB24WtZ3xP/2CCmI3tNkNV4oA==}
- engines: {node: '>= 12.0.0'}
- cpu: [arm64]
- os: [win32]
-
- lightningcss-win32-arm64-msvc@1.30.2:
- resolution: {integrity: sha512-FZn+vaj7zLv//D/192WFFVA0RgHawIcHqLX9xuWiQt7P0PtdFEVaxgF9rjM/IRYHQXNnk61/H/gb2Ei+kUQ4xQ==}
+ lightningcss-win32-arm64-msvc@1.30.2:
+ resolution: {integrity: sha512-FZn+vaj7zLv//D/192WFFVA0RgHawIcHqLX9xuWiQt7P0PtdFEVaxgF9rjM/IRYHQXNnk61/H/gb2Ei+kUQ4xQ==}
engines: {node: '>= 12.0.0'}
cpu: [arm64]
os: [win32]
@@ -9951,12 +9561,6 @@ packages:
cpu: [x64]
os: [win32]
- lightningcss-win32-x64-msvc@1.30.1:
- resolution: {integrity: sha512-PVqXh48wh4T53F/1CCu8PIPCxLzWyCnn/9T5W1Jpmdy5h9Cwd+0YQS6/LwhHXSafuc61/xg9Lv5OrCby6a++jg==}
- engines: {node: '>= 12.0.0'}
- cpu: [x64]
- os: [win32]
-
lightningcss-win32-x64-msvc@1.30.2:
resolution: {integrity: sha512-5g1yc73p+iAkid5phb4oVFMB45417DkRevRbt/El/gKXJk4jid+vPFF/AXbxn05Aky8PapwzZrdJShv5C0avjw==}
engines: {node: '>= 12.0.0'}
@@ -9967,10 +9571,6 @@ packages:
resolution: {integrity: sha512-KRDkHlLlNj3DWh79CDt93fPlRJh2W1AuHV0ZSZAMMuN7lqlsZTV5842idfS1urWG8q9tc17velp1gCXhY7sLnQ==}
engines: {node: '>= 12.0.0'}
- lightningcss@1.30.1:
- resolution: {integrity: sha512-xi6IyHML+c9+Q3W0S4fCQJOym42pyurFiJUHEcEyHS0CeKzia4yZDEsLlqOFykxOdHpNy0NmvVO31vcSqAxJCg==}
- engines: {node: '>= 12.0.0'}
-
lightningcss@1.30.2:
resolution: {integrity: sha512-utfs7Pr5uJyyvDETitgsaqSyjCb2qNRAtuqUeWIAKztsOYdcACf2KtARYXg2pSvhkt+9NfoaNY7fxjl6nuMjIQ==}
engines: {node: '>= 12.0.0'}
@@ -10002,8 +9602,8 @@ packages:
resolution: {integrity: sha512-IXO6OCs9yg8tMKzfPZ1YmheJbZCiEsnBdcB03l0OcfK9prKnJb96siuHCr5Fl37/yo9DnKU+TLpxzTUspw9shg==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
- loader-runner@4.3.0:
- resolution: {integrity: sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==}
+ loader-runner@4.3.1:
+ resolution: {integrity: sha512-IWqP2SCPhyVFTBtRcgMHdzlf9ul25NwaFx4wCEH/KjAXuuHY4yNjvPXsBokp8jCB936PyWRaPKUNh8NvylLp2Q==}
engines: {node: '>=6.11.5'}
loader-utils@1.4.2:
@@ -10061,14 +9661,6 @@ packages:
lodash.escaperegexp@4.1.2:
resolution: {integrity: sha512-TM9YBvyC84ZxE3rgfefxUWiQKLilstD6k7PTGt6wfbtXF8ixIJLOL3VYyV/z+ZiPLsVxAsKAFVwWlWeb2Y8Yyw==}
- lodash.get@4.4.2:
- resolution: {integrity: sha512-z+Uw/vLuy6gQe8cfaFWD7p0wVv8fJl3mbzXh33RS+0oW2wvUqiRXiQ69gLWSLpgB5/6sU+r6BlQR0MBILadqTQ==}
- deprecated: This package is deprecated. Use the optional chaining (?.) operator instead.
-
- lodash.isequal@4.5.0:
- resolution: {integrity: sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ==}
- deprecated: This package is deprecated. Use require('node:util').isDeepStrictEqual instead.
-
lodash.isplainobject@4.0.6:
resolution: {integrity: sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==}
@@ -10084,9 +9676,6 @@ packages:
lodash.once@4.1.1:
resolution: {integrity: sha512-Sb487aTOCr9drQVL8pIxOzVhafOjZN9UU54hiN8PU3uAiSV7lx1yYNpbNmex2PK6dSJoNTSJUUswT651yww3Mg==}
- lodash.sortby@4.7.0:
- resolution: {integrity: sha512-HDWXG8isMntAyRF5vZ7xKuEvOhT4AhlRt/3czTSjvGUxjYCBVRQY48ViDHyfYz9VIoBkW4TMGQNapx+l3RUwdA==}
-
lodash.truncate@4.4.2:
resolution: {integrity: sha512-jttmRe7bRse52OsWIMDLaXxWqRAmtIUccAQ3garviCqJjafXOfNMO0yMfNpdD6zbGaTU0P5Nz7e7gAT6cKmJRw==}
@@ -10139,9 +9728,6 @@ packages:
lru-cache@10.4.3:
resolution: {integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==}
- lru-cache@4.1.5:
- resolution: {integrity: sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==}
-
lru-cache@5.1.1:
resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==}
@@ -10165,9 +9751,6 @@ packages:
resolution: {integrity: sha512-8UnnX2PeRAPZuN12svgR9j7M1uWMovg/CEnIwIG0LFkXSJJe4PdfUGiTGl8V9bsBHFUtfVINcSyYxd7q+kx9fA==}
engines: {node: '>=12'}
- magic-string@0.30.18:
- resolution: {integrity: sha512-yi8swmWbO17qHhwIBNeeZxTceJMeBvWJaId6dyvTSOwTipqeHhMhOrz6513r1sOKnpvQ7zkhlG8tPrpilwTxHQ==}
-
magic-string@0.30.21:
resolution: {integrity: sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==}
@@ -10182,9 +9765,6 @@ packages:
resolution: {integrity: sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==}
engines: {node: '>=10'}
- makeerror@1.0.12:
- resolution: {integrity: sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==}
-
map-cache@0.2.2:
resolution: {integrity: sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg==}
engines: {node: '>=0.10.0'}
@@ -10467,9 +10047,6 @@ packages:
minimatch@3.0.4:
resolution: {integrity: sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==}
- minimatch@3.0.8:
- resolution: {integrity: sha512-6FsRAQsxQ61mw+qP1ZzbL9Bc78x2p5OqNgNpnoAFLTrX8n5Kxph0CsnhmKKNXTWjXqU5L0pGPR7hYk+XWZr60Q==}
-
minimatch@3.1.2:
resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==}
@@ -10541,8 +10118,8 @@ packages:
resolution: {integrity: sha512-Y3wQdFg2Va6etvQ5I82yUhGdsKrcYox6p7FfL1LbK2J4V01F9TGlepTIhnK24t7koZibmg82KGglhA1XK5IsLQ==}
engines: {node: '>=10'}
- mrs-developer@2.3.0:
- resolution: {integrity: sha512-eb7NXy0nBbc74y8gX6ftQO9rWInafjMLtv39z0ON5alnX80hObj4je3RzNlFWFftXNe//7d6+bXvqur/LF4E8Q==}
+ mrs-developer@2.3.2:
+ resolution: {integrity: sha512-JU8JjCyFQs5bz/VsfzSafzj8xmDDQmXoqSgF95JOGU3gEE6rfIHcqjd4/kdVCzyn0FbU1kTMXQlFygZ+CNs8AA==}
hasBin: true
ms@2.0.0:
@@ -10569,9 +10146,6 @@ packages:
resolution: {integrity: sha512-WWdIxpyjEn+FhQJQQv9aQAYlHoNVdzIzUySNV1gHUPDSdZJ3yZn7pAAbQcV7B56Mvu881q9FZV+0Vx2xC44VWA==}
engines: {node: ^18.17.0 || >=20.5.0}
- mz@2.6.0:
- resolution: {integrity: sha512-8js8Gn0gxv5D/dqve1Idd6LfvgxRB8eGFNWUq4skKiQKTzqVxdUQFAYPmot4jfbcyD5vMWsqGPqv24ZTN61vPA==}
-
mz@2.7.0:
resolution: {integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==}
@@ -10584,8 +10158,8 @@ packages:
resolution: {integrity: sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==}
engines: {node: '>=0.10.0'}
- napi-postinstall@0.3.3:
- resolution: {integrity: sha512-uTp172LLXSxuSYHv/kou+f6KW3SMppU9ivthaVTXian9sOt3XM/zHYHpRZiLgQoxeWfYUnslNWQHF1+G71xcow==}
+ napi-postinstall@0.3.4:
+ resolution: {integrity: sha512-PHI5f1O0EP5xJ9gQmFGMS6IZcrVvTjpXjz7Na41gTE7eE2hK11lg04CECCYEEjdc17EV4DO+fkGEtt7TpTaTiQ==}
engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0}
hasBin: true
@@ -10623,9 +10197,6 @@ packages:
node-abort-controller@3.1.1:
resolution: {integrity: sha512-AGK2yQKIjRuqnc6VkX2Xj5d+QW8xZ87pa1UK6yA6ouUyuxfHuMP6umE5QK7UmTeOAymo+Zx1Fxiuw9rVx8taHQ==}
- node-addon-api@7.1.1:
- resolution: {integrity: sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==}
-
node-domexception@1.0.0:
resolution: {integrity: sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==}
engines: {node: '>=10.5.0'}
@@ -10654,18 +10225,15 @@ packages:
resolution: {integrity: sha512-dRB78srN/l6gqWulah9SrxeYnxeddIG30+GOqK/9OlLVyLg3HPnr6SqOWTWOXKRwC2eGYCkZ59NNuSgvSrpgOA==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
- node-forge@1.3.1:
- resolution: {integrity: sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==}
+ node-forge@1.3.2:
+ resolution: {integrity: sha512-6xKiQ+cph9KImrRh0VsjH2d8/GXA4FIMlgU4B757iI1ApvcyA9VlouP0yZJha01V+huImO+kKMU7ih+2+E14fw==}
engines: {node: '>= 6.13.0'}
- node-int64@0.4.0:
- resolution: {integrity: sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==}
-
node-releases@1.1.77:
resolution: {integrity: sha512-rB1DUFUNAN4Gn9keO2K1efO35IDK7yKHCdCaIMvFO7yUYmmZYeDjnGKle26G4rwj+LKRQpjyUUvMkPglwGCYNQ==}
- node-releases@2.0.19:
- resolution: {integrity: sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==}
+ node-releases@2.0.27:
+ resolution: {integrity: sha512-nmh3lCkYZ3grZvqcCH+fjmQ7X+H0OeZgP40OierEaAptX4XofMh5kwNbWh7lBduUzCcV/8kZ+NDLCwm2iorIlA==}
normalize-package-data@2.5.0:
resolution: {integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==}
@@ -10682,14 +10250,10 @@ packages:
resolution: {integrity: sha512-U+JJi7duF1o+u2pynbp2zXDW2/PADgC30f0GsHZtRh+HOcXHnw137TrNlyxxRvWW5fjKd3bcLHPxofWuCjaeZg==}
engines: {node: '>=6'}
- normalize-url@8.0.2:
- resolution: {integrity: sha512-Ee/R3SyN4BuynXcnTaekmaVdbDAEiNrHqjQIA37mHU8G9pf7aaAD4ZX3XjBLo6rsdcxA/gtkcNYZLt30ACgynw==}
+ normalize-url@8.1.0:
+ resolution: {integrity: sha512-X06Mfd/5aKsRHc0O0J5CUedwnPmnDtLF2+nq+KN9KSDlJHkPuh0JUviWjEWMe0SW/9TDdSLVPuk7L5gGTIA1/w==}
engines: {node: '>=14.16'}
- npm-run-path@2.0.2:
- resolution: {integrity: sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==}
- engines: {node: '>=4'}
-
npm-run-path@4.0.1:
resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==}
engines: {node: '>=8'}
@@ -10714,11 +10278,11 @@ packages:
peerDependencies:
webpack: ^4.0.0 || ^5.0.0
- nwsapi@2.2.21:
- resolution: {integrity: sha512-o6nIY3qwiSXl7/LuOU0Dmuctd34Yay0yeuZRLFmDPrrdHpXKFndPj3hM+YEPVHYC5fx2otBx4Ilc/gyYSAUaIA==}
+ nwsapi@2.2.22:
+ resolution: {integrity: sha512-ujSMe1OWVn55euT1ihwCI1ZcAaAU3nxUiDwfDQldc51ZXaB9m2AyOn6/jh1BLe2t/G8xd6uKG1UBF2aZJeg2SQ==}
- nypm@0.6.1:
- resolution: {integrity: sha512-hlacBiRiv1k9hZFiphPUkfSQ/ZfQzZDzC+8z0wL3lvDAOUu/2NnChkKuMoMjNur/9OpKuz2QsIeiPVN0xM5Q0w==}
+ nypm@0.6.2:
+ resolution: {integrity: sha512-7eM+hpOtrKrBDCh7Ypu2lJ9Z7PNZBdi/8AT3AX8xoCj43BBVHD0hPSTEvMtkMpfs8FCqBGhxB+uToIQimA111g==}
engines: {node: ^14.16.0 || >=16.10.0}
hasBin: true
@@ -10876,10 +10440,6 @@ packages:
resolution: {integrity: sha512-mlVgR3PGuzlo0MmTdk4cXqXWlwQDLnONTAg6sm62XkMJEiRxN3GL3SffkYvqwonbkJBcrI7Uvv5Zh9yjvn2iUw==}
engines: {node: '>=12.20'}
- p-finally@1.0.0:
- resolution: {integrity: sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==}
- engines: {node: '>=4'}
-
p-limit@2.3.0:
resolution: {integrity: sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==}
engines: {node: '>=6'}
@@ -11006,10 +10566,6 @@ packages:
resolution: {integrity: sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==}
engines: {node: '>=0.10.0'}
- path-key@2.0.1:
- resolution: {integrity: sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==}
- engines: {node: '>=4'}
-
path-key@3.1.1:
resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==}
engines: {node: '>=8'}
@@ -11322,8 +10878,8 @@ packages:
resolution: {integrity: sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==}
engines: {node: '>=4'}
- postcss-selector-parser@7.1.0:
- resolution: {integrity: sha512-8sLjZwK0R+JlxlYcTuVnyT2v+htpdrjDOKuMcOVdYjt52Lh8hWRYpxBPoKx/Zg+bcjc3wx6fmQevMmUztS/ccA==}
+ postcss-selector-parser@7.1.1:
+ resolution: {integrity: sha512-orRsuYpJVw8LdAwqqLykBj9ecS5/cRHlI5+nvTo8LcCKmzDmqVORXtOIYEEQuL9D4BxtA1lm5isAqzQZCoQ6Eg==}
engines: {node: '>=4'}
postcss-sorting@8.0.2:
@@ -11401,6 +10957,10 @@ packages:
resolution: {integrity: sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+ pretty-format@30.2.0:
+ resolution: {integrity: sha512-9uBdv/B4EefsuAL+pWqueZyZS2Ba+LxfFeQ9DN14HU4bN8bhaxKdkpjpB6fs9+pSjIBu+FXQHImEg8j/Lw0+vA==}
+ engines: {node: ^18.14.0 || ^20.0.0 || ^22.0.0 || >=24.0.0}
+
pretty-ms@9.3.0:
resolution: {integrity: sha512-gjVS5hOP+M3wMm5nmNOucbIrqudzs9v/57bWRHQWLYklXqoXKrVfYW2W9+glfGsqtPgpiz5WwyEEB+ksXIx3gQ==}
engines: {node: '>=18'}
@@ -11435,8 +10995,8 @@ packages:
resolution: {integrity: sha512-hezvKvQQmsFkOdrZfYxUxkyxl8mgFQeT259Ajj9PXdbg9VzBCWrItOev72JyWxkCD5VSSqAeHmlN3tWx4DlmsA==}
engines: {node: '>= 0.4'}
- promise@7.1.1:
- resolution: {integrity: sha512-mxw1Fcl1jxLdpzS7MTIxrdiWk3CeMvZvVSGWE4P9eml3diZPBZTNV4oQsdYY3fY6j9udbmC1mSP6lqlzg6voBA==}
+ promise@7.3.1:
+ resolution: {integrity: sha512-nolQXZ/4L+bP/UGlkfaIujX9BKxGwmQ9OT4mOt5yvy8iK1h3wqTEJCijzGANTCCl9nWjY41juyAn2K3Q1hLLTg==}
prompts@2.4.0:
resolution: {integrity: sha512-awZAKrk3vN6CroQukBL+R9051a4R3zCZBlJm/HBfrSZ8iTpYix3VX1vU4mveiLpiwmOJT4wokTF9m6HUk4KqWQ==}
@@ -11488,9 +11048,6 @@ packages:
engines: {node: '>= 0.10'}
hasBin: true
- pseudomap@1.0.2:
- resolution: {integrity: sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==}
-
psl@1.15.0:
resolution: {integrity: sha512-JZd3gMVBAVQkSs6HdNZo9Sdo0LNcQeMNP3CozBJb3JYC/QUYZTnKxP+f8oWRX4rHP5EurWxqAHTSwUCjlNKa1w==}
@@ -11504,8 +11061,8 @@ packages:
resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==}
engines: {node: '>=6'}
- pupa@3.1.0:
- resolution: {integrity: sha512-FLpr4flz5xZTSJxSeaheeMKN/EDzMdK7b8PTOC6a5PYFKTucWbdqjgqaEyH0shFiSJrVB1+Qqi4Tk19ccU6Aug==}
+ pupa@3.3.0:
+ resolution: {integrity: sha512-LjgDO2zPtoXP2wJpDjZrGdojii1uqO0cnwKoIoUzkfS98HDmbeiGmYiXo3lXeFlq2xvne1QFQhwYXSUCLKtEuA==}
engines: {node: '>=12.20'}
q@1.5.1:
@@ -11516,6 +11073,10 @@ packages:
(For a CapTP with native promises, see @endo/eventual-send and @endo/captp)
+ qified@0.5.2:
+ resolution: {integrity: sha512-7gJ6mxcQb9vUBOtbKm5mDevbe2uRcOEVp1g4gb/Q+oLntB3HY8eBhOYRxFI2mlDFlY1e4DOSCptzxarXRvzxCA==}
+ engines: {node: '>=20'}
+
qs@6.11.0:
resolution: {integrity: sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==}
engines: {node: '>=0.6'}
@@ -11528,8 +11089,8 @@ packages:
resolution: {integrity: sha512-qxXIEh4pCGfHICj1mAJQ2/2XVZkjCDTcEgfoSQxc/fYivUZxTkk7L3bDBJSoNrEzXI17oUO5Dp07ktqE5KzczA==}
engines: {node: '>=0.6'}
- query-string@9.2.2:
- resolution: {integrity: sha512-pDSIZJ9sFuOp6VnD+5IkakSVf+rICAuuU88Hcsr6AKL0QtxSIfVuKiVP2oahFI7tk3CRSexwV+Ya6MOoTxzg9g==}
+ query-string@9.3.1:
+ resolution: {integrity: sha512-5fBfMOcDi5SA9qj5jZhWAcTtDfKF5WFdd2uD9nVNlbxVv1baq65aALy6qofpNEGELHvisjjasxQp7BlM9gvMzw==}
engines: {node: '>=18'}
querystringify@2.2.0:
@@ -11611,12 +11172,6 @@ packages:
react: '>=16.8.0'
react-dom: '>=16.8.0'
- react-aria-components@1.12.1:
- resolution: {integrity: sha512-UTn2y2Pr1QuapXLRoGE/GWHrjcZZSuMf+zhbJjInOHgS+MC4hqXiINufvjQrdjQDzS1llc2aepP9op6+z6QSxA==}
- peerDependencies:
- react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
- react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1
-
react-aria-components@1.13.0:
resolution: {integrity: sha512-t1mm3AVy/MjUJBZ7zrb+sFC5iya8Vvw3go3mGKtTm269bXGZho7BLA4IgT+0nOS3j+ku6ChVi8NEoQVFoYzJJA==}
peerDependencies:
@@ -11631,6 +11186,7 @@ packages:
react-beautiful-dnd@13.0.0:
resolution: {integrity: sha512-87It8sN0ineoC3nBW0SbQuTFXM6bUqM62uJGY4BtTf0yzPl8/3+bHMWkgIe0Z6m8e+gJgjWxefGRVfpE3VcdEg==}
+ deprecated: 'react-beautiful-dnd is now deprecated. Context and options: https://github.com/atlassian/react-beautiful-dnd/issues/2672'
peerDependencies:
react: ^16.8.5
react-dom: ^16.8.5
@@ -12031,8 +11587,8 @@ packages:
resolution: {integrity: sha512-00o4I+DVrefhv+nX0ulyi3biSHCPDe+yLv5o/p6d/UVlirijB8E16FtfwSAi4g3tcqrQ4lRAqQSoFEZJehYEcw==}
engines: {node: '>= 0.4'}
- regenerate-unicode-properties@10.2.0:
- resolution: {integrity: sha512-DqHn3DwbmmPVzeKj9woBadqmXxLvQoQIwu7nopMc72ztvxVmVk2SBhSnx67zuye5TP+lJsb/TBQsjLKhnDf3MA==}
+ regenerate-unicode-properties@10.2.2:
+ resolution: {integrity: sha512-m03P+zhBeQd1RGnYxrGyDAPpWX/epKirLrp8e3qevZdVkKtnCrjjWczIbYc8+xd6vcTStVlqfycTx1KR4LOr0g==}
engines: {node: '>=4'}
regenerate@1.4.2:
@@ -12041,9 +11597,6 @@ packages:
regenerator-runtime@0.11.1:
resolution: {integrity: sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg==}
- regenerator-runtime@0.13.11:
- resolution: {integrity: sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==}
-
regex-not@1.0.2:
resolution: {integrity: sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==}
engines: {node: '>=0.10.0'}
@@ -12055,8 +11608,8 @@ packages:
resolution: {integrity: sha512-dYqgNSZbDwkaJ2ceRd9ojCGjBq+mOm9LmtXnAnEGyHhN/5R7iDW2TRw3h+o/jCFxus3P2LfWIIiwowAjANm7IA==}
engines: {node: '>= 0.4'}
- regexpu-core@6.2.0:
- resolution: {integrity: sha512-H66BPQMrv+V16t8xtmq+UC0CBpiTBA60V8ibS1QVReIp8T1z8hwFxqcGzm9K6lgsN7sB5edVH8a+ze6Fqm4weA==}
+ regexpu-core@6.4.0:
+ resolution: {integrity: sha512-0ghuzq67LI9bLXpOX/ISfve/Mq33a4aFRzoQYhnnok1JOFpmE/A2TBGkNVenOGEeSBCjIiWcc6MVOG5HEQv0sA==}
engines: {node: '>=4'}
registry-auth-token@5.1.0:
@@ -12070,16 +11623,16 @@ packages:
regjsgen@0.8.0:
resolution: {integrity: sha512-RvwtGe3d7LvWiDQXeQw8p5asZUmfU1G/l6WbUXeHta7Y2PEIvBTwH6E2EfmYUK8pxcxEdEmaomqyp0vZZ7C+3Q==}
- regjsparser@0.12.0:
- resolution: {integrity: sha512-cnE+y8bz4NhMjISKbgeVJtqNbtf5QpjZP+Bslo+UqkIt9QPnX9q095eiRRASJG1/tz6dlNr6Z5NsBiWYokp6EQ==}
+ regjsparser@0.13.0:
+ resolution: {integrity: sha512-NZQZdC5wOE/H3UT28fVGL+ikOZcEzfMGk/c3iN9UGxzWHMa1op7274oyiUVrAG4B2EuFhus8SvkaYnhvW92p9Q==}
hasBin: true
relateurl@0.2.7:
resolution: {integrity: sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog==}
engines: {node: '>= 0.10'}
- release-it@16.2.1:
- resolution: {integrity: sha512-+bHiKPqkpld+NaiW+K/2WsjaHgfPB00J6uk8a+g8QyuBtzfFoMVe+GKsfaDO5ztEHRrSg+7luoXzd8IfvPNPig==}
+ release-it@16.3.0:
+ resolution: {integrity: sha512-CP+WwKbgEvXreq6Iz9po3BtcyELtTxrt5RXRGnazQ0eCphPxFZR29+8sEZRCsJq2IKvlwb5mFUbf92u426oQog==}
engines: {node: '>=16'}
hasBin: true
@@ -12088,8 +11641,8 @@ packages:
engines: {node: '>=18'}
hasBin: true
- release-it@19.0.5:
- resolution: {integrity: sha512-bYlUKC0TQroBKi8jQUeoxLHql4d9Fx/2EQLHPKUobXTNSiTS2WY8vlgdHZRhRjVEMyAWwyadJVKfFZnRJuRn4Q==}
+ release-it@19.0.6:
+ resolution: {integrity: sha512-XTCNZ2mV9wjASQmc2bcQjA+ImJiFMijbFSyQE6lDmP1Plq17acjYaoY5FmJb5Lh/Nv4UDwfRlKQMv1DvHFKf1g==}
engines: {node: ^20.12.0 || >=22.0.0}
hasBin: true
@@ -12164,11 +11717,8 @@ packages:
resolution: {integrity: sha512-ZuF55hVUQaaczgOIwqWzkEcEidmlD/xl44x1UZnhOXcYuFN2S6+rcxpG+C1N3So0wvNI3DmJICUFfu2SxhBmvg==}
deprecated: https://github.com/lydell/resolve-url#deprecated
- resolve@1.19.0:
- resolution: {integrity: sha512-rArEXAgsBG4UgRGcynxWIWKFvh/XZCcS8UJdHhwy91zwAvCZIbcs+vAbflgBnNjYMs/i/i+/Ux6IZhML1yPvxg==}
-
- resolve@1.22.10:
- resolution: {integrity: sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w==}
+ resolve@1.22.11:
+ resolution: {integrity: sha512-RfqAvLnMl313r7c9oclB1HhUEAezcpLjz95wFH4LVuhk9JF/r22qmVP9AMmOU4vMX7Q8pN8jwNg/CSpdFnMjTQ==}
engines: {node: '>= 0.4'}
hasBin: true
@@ -12224,8 +11774,8 @@ packages:
deprecated: Rimraf versions prior to v4 are no longer supported
hasBin: true
- rollup@4.50.0:
- resolution: {integrity: sha512-/Zl4D8zPifNmyGzJS+3kVoyXeDeT/GrsJM94sACNg9RtUE0hrHa1bNPtRSrfHTMH5HjRzce6K7rlTh3Khiw+pw==}
+ rollup@4.53.3:
+ resolution: {integrity: sha512-w8GmOxZfBmKknvdXU1sdM9NHcoQejwF/4mNgj2JuEEdRaHwwF12K7e9eXn1nLZ07ad+du76mkVsyeb2rKGllsA==}
engines: {node: '>=18.0.0', npm: '>=8.0.0'}
hasBin: true
@@ -12239,8 +11789,8 @@ packages:
resolution: {integrity: sha512-XcT5rBksx1QdIhlFOCtgZkB99ZEouFZ1E2Kc2LHqNW13U3/74YGdkQRmThTwxy4QIyookibDKYZOPqX//6BlAg==}
engines: {node: '>=12'}
- run-applescript@7.0.0:
- resolution: {integrity: sha512-9by4Ij99JUr/MCFBUkDKLWK3G9HVXmabKz9U5MlIAIuvuzkiOicRYs8XJLxX+xahD+mLiiCYDqF9dKAgtzKP1A==}
+ run-applescript@7.1.0:
+ resolution: {integrity: sha512-DPe5pVFaAsinSaV6QjQ6gdiedWDcRCbUuiQfQa2wmWV7+xC9bGulGI8+TdRmoFkAPaBXk8CrAbnlY2ISniJ47Q==}
engines: {node: '>=18'}
run-async@2.4.1:
@@ -12314,11 +11864,6 @@ packages:
engines: {node: '>=12.0.0'}
hasBin: true
- sass@1.92.0:
- resolution: {integrity: sha512-KDNI0BxgIRDAfJgzNm5wuy+4yOCIZyrUbjSpiU/JItfih+KGXAVefKL53MTml054MmBA3DDKIBMSI/7XLxZJ3A==}
- engines: {node: '>=14.0.0'}
- hasBin: true
-
sax@1.2.4:
resolution: {integrity: sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==}
@@ -12341,8 +11886,8 @@ packages:
resolution: {integrity: sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==}
engines: {node: '>= 10.13.0'}
- schema-utils@4.3.2:
- resolution: {integrity: sha512-Gn/JaSk/Mt9gYubxTtSn/QCV4em9mpAPiR1rqy/Ocu19u/G9J5WWdNoUT4SiV6mFC3y6cxyFcFwdzPM3FgxGAQ==}
+ schema-utils@4.3.3:
+ resolution: {integrity: sha512-eflK8wEtyOE6+hsaRVPxvUKYCpRgzLqDTb8krvAsRIwOGlHoSgYLgBXoubGgLd2fT41/OUYdb48v4k4WWHQurA==}
engines: {node: '>= 10.13.0'}
scroll-into-view-if-needed@3.1.0:
@@ -12394,6 +11939,11 @@ packages:
engines: {node: '>=10'}
hasBin: true
+ semver@7.7.3:
+ resolution: {integrity: sha512-SdsKMrI9TdgjdweUSR9MweHA4EJ8YxHn8DFaDisvhVlUOe4BF1tLD7GAj0lIqWVl+dPb/rExr0Btby5loQm20Q==}
+ engines: {node: '>=10'}
+ hasBin: true
+
send@0.18.0:
resolution: {integrity: sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==}
engines: {node: '>= 0.8.0'}
@@ -12446,18 +11996,10 @@ packages:
shallowequal@1.1.0:
resolution: {integrity: sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL/dSP7AFkRnniLCrK/8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ==}
- shebang-command@1.2.0:
- resolution: {integrity: sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==}
- engines: {node: '>=0.10.0'}
-
shebang-command@2.0.0:
resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
engines: {node: '>=8'}
- shebang-regex@1.0.0:
- resolution: {integrity: sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==}
- engines: {node: '>=0.10.0'}
-
shebang-regex@3.0.0:
resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
engines: {node: '>=8'}
@@ -12496,18 +12038,18 @@ packages:
resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==}
engines: {node: '>=14'}
- simple-git@3.28.0:
- resolution: {integrity: sha512-Rs/vQRwsn1ILH1oBUy8NucJlXmnnLeLCfcvbSehkPzbv3wwoFWIdtfd6Ndo6ZPhlPsCZ60CPI4rxurnwAa+a2w==}
+ simple-git@3.30.0:
+ resolution: {integrity: sha512-q6lxyDsCmEal/MEGhP1aVyQ3oxnagGlBDOVSIB4XUVLl1iZh0Pah6ebC9V4xBap/RfgP2WlI8EKs0WS0rMEJHg==}
- simple-swizzle@0.2.2:
- resolution: {integrity: sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==}
+ simple-swizzle@0.2.4:
+ resolution: {integrity: sha512-nAu1WFPQSMNr2Zn9PGSZK9AGn4t/y97lEm+MXTtUDwfP0ksAIX4nO+6ruD9Jwut4C49SB1Ws+fbXsm/yScWOHw==}
sirv@2.0.4:
resolution: {integrity: sha512-94Bdh3cC2PKrbgSOUqTiGPWVZeSiXfKOVZNJniWoqrWrRkB1CJzBU3NEbiTsPcYy1lDsANA/THzS+9WBiy5nfQ==}
engines: {node: '>= 10'}
- sirv@3.0.1:
- resolution: {integrity: sha512-FoqMu0NCGBLCcAkS1qA+XJIQTR6/JHfQXl+uGteNCQ76T91DMUjPa9xfmeqMY3z80nLSg9yQmNjK0Px6RWsH/A==}
+ sirv@3.0.2:
+ resolution: {integrity: sha512-2wcC/oGxHis/BoHkkPwldgiPSYcpZK3JU28WoMVv55yHJgcZ8rlXvuG9iZggz+sU1d4bRgIGASwyWqjxu3FM0g==}
engines: {node: '>=18'}
sisteransi@1.0.5:
@@ -12633,11 +12175,6 @@ packages:
resolution: {integrity: sha512-i5uvt8C3ikiWeNZSVZNWcfZPItFQOsYTUAOkcUPGd8DqDy1uOUikjt5dG+uRlwyvR108Fb9DOd4GvXfT0N2/uQ==}
engines: {node: '>= 12'}
- source-map@0.8.0-beta.0:
- resolution: {integrity: sha512-2ymg6oRBpebeZi9UUNsgQ89bhx01TcTkmNTGnNO88imTmbSgy4nfujrgVEFKWpMTEGA11EDkTt7mqObTPdigIA==}
- engines: {node: '>= 8'}
- deprecated: The work that was done in this beta branch won't be included in future versions
-
spdx-correct@3.2.0:
resolution: {integrity: sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==}
@@ -12714,8 +12251,8 @@ packages:
resolution: {integrity: sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==}
engines: {node: '>= 0.8'}
- std-env@3.9.0:
- resolution: {integrity: sha512-UGvjygr6F6tpH7o2qyqR6QYpwraIjKSdtzyBdyytFOHmPZY917kwdwLG0RbOjWOnKmnm3PeHjaoLLMie7kPLQw==}
+ std-env@3.10.0:
+ resolution: {integrity: sha512-5GS12FdOZNliM5mAOxFRg7Ir0pWz8MdpYm6AY6VPkGpbA7ZzmbzNcBJQ0GPvvyWgcY7QAhCgf9Uy89I03faLkg==}
stdin-discarder@0.1.0:
resolution: {integrity: sha512-xhV7w8S+bUwlPTb4bAOUQhv8/cSS5offJuX8GQGq32ONF0ZtDWKfkdomM3HMRA+LhX6um/FZ0COqlwsjD53LeQ==}
@@ -12741,10 +12278,6 @@ packages:
stream-combiner@0.0.4:
resolution: {integrity: sha512-rT00SPnTVyRsaSz5zgSPma/aHSOic5U1prhYdRy5HS2kTZviFpmDgzilbtsJsxiroqACmayynDN/9VzIbX5DOw==}
- string-argv@0.3.2:
- resolution: {integrity: sha512-aqD2Q0144Z+/RqG52NeHEkZauTAUWJO8c6yTftGJKO3Tja5tUgIfmIl6kExvhtxSDP7fXB6DvzkfMpCd/F3G+Q==}
- engines: {node: '>=0.6.19'}
-
string-hash@1.1.3:
resolution: {integrity: sha512-kJUvRUFK49aub+a7T1nNE66EJbZBMnBgoC1UbCZ5n6bsZKBRga4KgBRTMn/pFkeCZSYtNeSyMxPDM0AXWELk2A==}
@@ -12812,10 +12345,6 @@ packages:
resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==}
engines: {node: '>=8'}
- strip-ansi@7.1.0:
- resolution: {integrity: sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==}
- engines: {node: '>=12'}
-
strip-ansi@7.1.2:
resolution: {integrity: sha512-gmBGslpoQJtgnMAvOVqGZpEz9dyoKTCzy2nfz/n8aIFhN/jCE/rCmcxabB6jOOHV+0WNnylOxaxBQPSvcWklhA==}
engines: {node: '>=12'}
@@ -12824,10 +12353,6 @@ packages:
resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==}
engines: {node: '>=4'}
- strip-eof@1.0.0:
- resolution: {integrity: sha512-7FCwGGmx8mD5xQd3RPUvnSpUXHM3BWuzjtpD4TXsfcZ9EL4azvVVUscFYwD9nx8Kh+uCBC00XBtAykoMHwTh8Q==}
- engines: {node: '>=0.10.0'}
-
strip-final-newline@2.0.0:
resolution: {integrity: sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==}
engines: {node: '>=6'}
@@ -12844,8 +12369,8 @@ packages:
resolution: {integrity: sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==}
engines: {node: '>=8'}
- strip-indent@4.0.0:
- resolution: {integrity: sha512-mnVSV2l+Zv6BLpSD/8V87CW/y9EmmbYzGCIavsnsI6/nwn26DwffM/yztm30Z/I2DY9wdS3vXVCMnHDgZaVNoA==}
+ strip-indent@4.1.1:
+ resolution: {integrity: sha512-SlyRoSkdh1dYP0PzclLE7r0M9sgbFKKMFXpFRUMNuKhQSbC6VQIGzq3E0qsfvGJaUFJPGv6Ws1NZ/haTAjfbMA==}
engines: {node: '>=12'}
strip-json-comments@2.0.1:
@@ -12859,8 +12384,8 @@ packages:
strip-literal@2.1.1:
resolution: {integrity: sha512-631UJ6O00eNGfMiWG78ck80dfBab8X6IVFB51jZK5Icd7XAs60Z5y7QdSd/wGIklnWvRbUNloVzhOKKmutxQ6Q==}
- strip-literal@3.0.0:
- resolution: {integrity: sha512-TcccoMhJOM3OebGhSBEmp3UZ2SfDMZUEBdRA/9ynfLi8yYajyWX3JiXArcJt4Umh4vISpspkQIY8ZZoCqjbviA==}
+ strip-literal@3.1.0:
+ resolution: {integrity: sha512-8r3mkIM/2+PpjHoOtiAW8Rg3jJLHaV7xPwG+YRGrv6FP0wwk/toTpATxWYOW0BKdWwl82VT2tFYi5DlROa0Mxg==}
style-loader@3.3.1:
resolution: {integrity: sha512-GPcQ+LDJbrcxHORTRes6Jy2sfvK2kS6hpSfI/fXhPt+spVzxF6LJ1dHLN9zIGmVaaP044YKaIatFaufENRiDoQ==}
@@ -12890,23 +12415,23 @@ packages:
prettier: '>=3.0.0'
stylelint: '>=16.0.0'
- stylelint@16.23.1:
- resolution: {integrity: sha512-dNvDTsKV1U2YtiUDfe9d2gp902veFeo3ecCWdGlmLm2WFrAV0+L5LoOj/qHSBABQwMsZPJwfC4bf39mQm1S5zw==}
+ stylelint@16.26.1:
+ resolution: {integrity: sha512-v20V59/crfc8sVTAtge0mdafI3AdnzQ2KsWe6v523L4OA1bJO02S7MO2oyXDCS6iWb9ckIPnqAFVItqSBQr7jw==}
engines: {node: '>=18.12.0'}
hasBin: true
stylis@4.2.0:
resolution: {integrity: sha512-Orov6g6BB1sDfYgzWfTHDOxamtX1bE/zo104Dh9e6fqJ3PooipYyfJ0pUmrZO2wAvO8YbEyeFrkV91XTsGMSrw==}
- sucrase@3.35.0:
- resolution: {integrity: sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==}
+ sucrase@3.35.1:
+ resolution: {integrity: sha512-DhuTmvZWux4H1UOnWMB3sk0sbaCVOoQZjv8u1rDoTV0HTdGem9hkAZtl4JZy8P2z4Bg0nT+YMeOFyVr4zcG5Tw==}
engines: {node: '>=16 || 14 >=14.17'}
hasBin: true
superagent@3.8.2:
resolution: {integrity: sha512-gVH4QfYHcY3P0f/BZzavLreHW3T1v7hG9B+hpMQotGQqurOvhv87GcMCd6LWySmBuf+BDR44TQd0aISjVHLeNQ==}
engines: {node: '>= 4.0'}
- deprecated: Please upgrade to v9.0.0+ as we have fixed a public vulnerability with formidable dependency. Note that v9.0.0+ requires Node.js v14.18.0+. See https://github.com/ladjs/superagent/pull/1800 for insight. This project is supported and maintained by the team at Forward Email @ https://forwardemail.net
+ deprecated: Please upgrade to superagent v10.2.2+, see release notes at https://github.com/forwardemail/superagent/releases/tag/v10.2.2 - maintenance is supported by Forward Email @ https://forwardemail.net
supports-color@2.0.0:
resolution: {integrity: sha512-KKNVtd6pCYgPIKU4cp2733HWYCpplQhddZLBUryaAHou723x+FRzQ5Df824Fj+IyyuiQTRoub4SnIFfIcrp70g==}
@@ -12988,8 +12513,8 @@ packages:
tailwind-merge@3.0.2:
resolution: {integrity: sha512-l7z+OYZ7mu3DTqrL88RiKrKIqO3NcpEO8V/Od04bNpvk0kiIFndGEoqfuzvj4yuhRkHKjRkII2z+KS2HfPcSxw==}
- tailwind-merge@3.3.1:
- resolution: {integrity: sha512-gBXpgUm/3rp1lMZZrM/w7D8GKqshif0zAymAhbCyIt8KMe+0v9DQ7cdYLR4FHH/cKpdTXb+A/tKKU3eolfsI+g==}
+ tailwind-merge@3.4.0:
+ resolution: {integrity: sha512-uSaO4gnW+b3Y2aWoWfFpX62vn2sR3skfhbjsEnaBI81WD1wBLlHZe5sWf0AqjksNdYTbGBEd0UasQMT3SNV15g==}
tailwind-variants@1.0.0:
resolution: {integrity: sha512-2WSbv4ulEEyuBKomOunut65D8UZwxrHoRfYnxGcQNnHqlSCp2+B7Yz2W+yrNDrxRodOXtGD/1oCcKGNBnUqMqA==}
@@ -13007,15 +12532,15 @@ packages:
peerDependencies:
tailwindcss: ^4.0.0
- tailwindcss@4.1.16:
- resolution: {integrity: sha512-pONL5awpaQX4LN5eiv7moSiSPd/DLDzKVRJz8Q9PgzmAdd1R4307GQS2ZpfiN7ZmekdQrfhZZiSE5jkLR4WNaA==}
+ tailwindcss@4.1.17:
+ resolution: {integrity: sha512-j9Ee2YjuQqYT9bbRTfTZht9W/ytp5H+jJpZKiYdP/bpnXARAuELt9ofP0lPnmHjbga7SNQIxdTAXCmtKVYjN+Q==}
tapable@1.1.3:
resolution: {integrity: sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==}
engines: {node: '>=6'}
- tapable@2.2.3:
- resolution: {integrity: sha512-ZL6DDuAlRlLGghwcfmSn9sK3Hr6ArtyudlSAiCqQ6IfE+b+HHbydbYDIG15IfS5do+7XQQBdBiubF/cV2dnDzg==}
+ tapable@2.3.0:
+ resolution: {integrity: sha512-g9ljZiwki/LfxmQADO3dEY1CbpmXT5Hm2fJ+QaGKwSXUylMybePR7/67YW7jOrrvjEgL1Fmz5kzyAjWVWLlucg==}
engines: {node: '>=6'}
tar@6.2.1:
@@ -13058,8 +12583,8 @@ packages:
uglify-js:
optional: true
- terser@5.44.0:
- resolution: {integrity: sha512-nIVck8DK+GM/0Frwd+nIhZ84pR/BX7rmXMfYwyg+Sri5oGVE99/E3KvXqpC2xHFxyqXyGHTKBSioxxplrO4I4w==}
+ terser@5.44.1:
+ resolution: {integrity: sha512-t/R3R/n0MSwnnazuPpPNVO60LX0SKL45pyl9YlvxIdkH0Of7D5qM2EVe+yASRIlY5pZ73nclYJfNANGWPwFDZw==}
engines: {node: '>=10'}
hasBin: true
@@ -13111,12 +12636,9 @@ packages:
tinyexec@0.3.2:
resolution: {integrity: sha512-KQQR9yN7R5+OSwaK0XQoj22pwHoTlgYqmUscPYoknOoWCWfj/5/ABTMRi69FrKU5ffPVh5QcFikpWJI/P1ocHA==}
- tinyexec@1.0.1:
- resolution: {integrity: sha512-5uC6DDlmeqiOwCPmK9jMSdOuZTh8bU39Ys6yidB+UTt5hfZUPGAypSgFRiEp+jbi9qH40BLDvy85jIU88wKSqw==}
-
- tinyglobby@0.2.14:
- resolution: {integrity: sha512-tX5e7OM1HnYr2+a2C/4V0htOcSQcoSTH9KgJnVvNm5zm/cyEWKJ7j7YutsH9CxMdtOkkLFy2AHrMci9IM8IPZQ==}
- engines: {node: '>=12.0.0'}
+ tinyexec@1.0.2:
+ resolution: {integrity: sha512-W/KYk+NFhkmsYpuHq5JykngiOCnxeVL8v8dFnqxSD8qEEdRfXk1SDM6JzNqcERbcGYj9tMrDQBYV9cjgnunFIg==}
+ engines: {node: '>=18'}
tinyglobby@0.2.15:
resolution: {integrity: sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==}
@@ -13138,8 +12660,8 @@ packages:
resolution: {integrity: sha512-n1cw8k1k0x4pgA2+9XrOkFydTerNcJ1zWCO5Nn9scWHTD+5tp8dghT2x1uduQePZTZgd3Tupf+x9BxJjeJi77Q==}
engines: {node: '>=14.0.0'}
- tinyspy@4.0.3:
- resolution: {integrity: sha512-t2T/WLB2WRgZ9EpE4jgPJ9w+i66UZfDc8wHh0xrwiRNN+UwH98GIJkTeZqX9rg0i0ptwzqW+uYeIF0T4F8LR7A==}
+ tinyspy@4.0.4:
+ resolution: {integrity: sha512-azl+t0z7pw/z958Gy9svOTuzqIk6xq+NSheJzn5MMWtWTFywIacg2wUlzKFGtt3cthx0r2SxMK0yzJOR0IES7Q==}
engines: {node: '>=14.0.0'}
titleize@3.0.0:
@@ -13169,9 +12691,6 @@ packages:
resolution: {integrity: sha512-voyz6MApa1rQGUxT3E+BK7/ROe8itEx7vD8/HEvt4xwXucvQ5G5oeEiHkmHZJuBO21RpOf+YYm9MOivj709jow==}
engines: {node: '>=14.14'}
- tmpl@1.0.5:
- resolution: {integrity: sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==}
-
to-fast-properties@1.0.3:
resolution: {integrity: sha512-lxrWP8ejsq+7E3nNjwYmUBMAgjMTZoTI+sdBOpvNyijeDLa29LUn9QaoXAHv4+Z578hbmHHJKZknzxVtvo77og==}
engines: {node: '>=0.10.0'}
@@ -13223,9 +12742,6 @@ packages:
tr46@0.0.3:
resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==}
- tr46@1.0.1:
- resolution: {integrity: sha512-dTpowEjclQ7Kgx5SdBkqRzVhERQXov8/l9Ft9dVM9fmg0W0KQSVaXX9T4i6twCPNtYiZM53lpSSUAwJbFPOHxA==}
-
tr46@2.1.0:
resolution: {integrity: sha512-15Ih7phfcdP5YxqiB+iDtLoaTz4Nd35+IiAv0kQ5FNKHzXgdWqPoTIqEDDJmXceQt4JZk6lVPT8lnDlPpGDppw==}
engines: {node: '>=8'}
@@ -13302,8 +12818,8 @@ packages:
tslib@2.8.1:
resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==}
- tsup@8.5.0:
- resolution: {integrity: sha512-VmBp77lWNQq6PfuMqCHD3xWl22vEoWsKajkF8t+yMBawlUS8JzEI+vOVMeuNZIuMML8qXRizFKi9oD5glKQVcQ==}
+ tsup@8.5.1:
+ resolution: {integrity: sha512-xtgkqwdhpKWr3tKPmCkvYmS9xnQK3m3XgxZHwSUjvfTjp7YfXe5tT3GgWi0F2N+ZSMsOeWeZFh7ZZFg5iPhing==}
engines: {node: '>=18'}
hasBin: true
peerDependencies:
@@ -13365,10 +12881,6 @@ packages:
resolution: {integrity: sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==}
engines: {node: '>=12.20'}
- type-fest@4.41.0:
- resolution: {integrity: sha512-TeTSQ6H5YHvpqVwBRcnLDCBnDOHWYu7IvGbHT6N8AOymcr9PJGjc1GTtiWZTYg0NCgYwvnYWEkVChQAr9bjfwA==}
- engines: {node: '>=16'}
-
type-is@1.6.18:
resolution: {integrity: sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==}
engines: {node: '>= 0.6'}
@@ -13395,18 +12907,13 @@ packages:
typedarray-to-buffer@3.1.5:
resolution: {integrity: sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==}
- typescript@5.4.2:
- resolution: {integrity: sha512-+2/g0Fds1ERlP6JsakQQDXjZdZMM+rqpamFZJEKh4kwTIn3iDkgKtby0CeNd5ATNZ4Ry1ax15TMx0W2V+miizQ==}
- engines: {node: '>=14.17'}
- hasBin: true
-
typescript@5.6.1-rc:
resolution: {integrity: sha512-E3b2+1zEFu84jB0YQi9BORDjz9+jGbwwy1Zi3G0LUNw7a7cePUrHMRNy8aPh53nXpkFGVHSxIZo5vKTfYaFiBQ==}
engines: {node: '>=14.17'}
hasBin: true
- typescript@5.9.2:
- resolution: {integrity: sha512-CWBzXQrc/qOkhidw1OzBTQuYRbfyxDXJMVJ1XNwUHGROVmuaeiEm3OslpZ1RV96d7SKKjZKrSJu3+t/xlw3R9A==}
+ typescript@5.9.3:
+ resolution: {integrity: sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==}
engines: {node: '>=14.17'}
hasBin: true
@@ -13446,12 +12953,12 @@ packages:
resolution: {integrity: sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==}
engines: {node: '>=4'}
- unicode-match-property-value-ecmascript@2.2.0:
- resolution: {integrity: sha512-4IehN3V/+kkr5YeSSDDQG8QLqO26XpL2XP3GQtqwlT/QYSECAwFztxVHjlbh0+gjJ3XmNLS0zDsbgs9jWKExLg==}
+ unicode-match-property-value-ecmascript@2.2.1:
+ resolution: {integrity: sha512-JQ84qTuMg4nVkx8ga4A16a1epI9H6uTXAknqxkGF/aFfRLw1xC/Bp24HNLaZhHSkWd3+84t8iXnp1J0kYcZHhg==}
engines: {node: '>=4'}
- unicode-property-aliases-ecmascript@2.1.0:
- resolution: {integrity: sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==}
+ unicode-property-aliases-ecmascript@2.2.0:
+ resolution: {integrity: sha512-hpbDzxUY9BFwX+UeBnxv3Sh1q7HFxj48DTmXchNgRa46lO8uj3/1iEn3MiNUYTg1g9ctIqXCCERn8gYZhHC5lQ==}
engines: {node: '>=4'}
unicorn-magic@0.1.0:
@@ -13485,14 +12992,14 @@ packages:
resolution: {integrity: sha512-VGXBUVwxKMBUznyffQweQABPRRW1vHZAbadFZud4pLFAqRGvv/96vafgjWFqzourzr8YonlQiPgH0YCJfawoGQ==}
engines: {node: '>=12'}
- unist-util-is@6.0.0:
- resolution: {integrity: sha512-2qCTHimwdxLfz+YzdGfkqNlH0tLi9xjTnHddPmJwtIG9MGsdbutfTc4P+haPD7l7Cjxf/WZj+we5qfVPvvxfYw==}
+ unist-util-is@6.0.1:
+ resolution: {integrity: sha512-LsiILbtBETkDz8I9p1dQ0uyRUWuaQzd/cuEeS1hoRSyW5E5XGmTzlwY1OrNzzakGowI9Dr/I8HVaw4hTtnxy8g==}
unist-util-stringify-position@4.0.0:
resolution: {integrity: sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==}
- unist-util-visit-parents@6.0.1:
- resolution: {integrity: sha512-L/PqWzfTP9lzzEa6CKs0k2nARxTdZduw3zyh8d2NVBnsyvHjSX4TWse388YrrQKbvI8w20fGjGlhgT96WwKykw==}
+ unist-util-visit-parents@6.0.2:
+ resolution: {integrity: sha512-goh1s1TBrqSqukSc8wrjwWhL0hiJxgA8m4kFxGlQ+8FYQ3C/m11FcTs4YYem7V664AhHVvgoQLk890Ssdsr2IQ==}
unist-util-visit@5.0.0:
resolution: {integrity: sha512-MR04uvD+07cwl/yhVuVWAtw+3GOR/knlL55Nd/wAdblk27GCVt3lqpTivy/tkJcZoNPzTwS1Y+KMojlLDhoTzg==}
@@ -13543,8 +13050,8 @@ packages:
resolution: {integrity: sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==}
engines: {node: '>=8'}
- update-browserslist-db@1.1.3:
- resolution: {integrity: sha512-UxhIZQ+QInVdunkDAaiazvvT/+fXL5Osr0JZlJulepYu6Jd7qJtDZjlur0emRlT71EN3ScPoE7gvsuIKKNavKw==}
+ update-browserslist-db@1.1.4:
+ resolution: {integrity: sha512-q0SPT4xyU84saUX+tomz1WLkxUbuaJnR1xWt17M7fJtEJigJeWUNGUqrauFXsHnqev9y9JTRGwk13tFBuKby4A==}
hasBin: true
peerDependencies:
browserslist: '>= 4.21.0'
@@ -13596,8 +13103,8 @@ packages:
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0
- use-sync-external-store@1.5.0:
- resolution: {integrity: sha512-Rb46I4cGGVBmjamjphe8L/UnvJD+uPPtTkNvX5mZgqdbavhI4EbgIWJiIHXJ8bc/i9EQGPRh4DwEURJ552Do0A==}
+ use-sync-external-store@1.6.0:
+ resolution: {integrity: sha512-Pp6GSwGP/NrPIrxVFAIkOQeyw8lFenOHijQWkUTrDvrF4ALqylP2C/KCkeS9dpUM3KvYRQhna5vt7IL95+ZQ9w==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
@@ -13648,10 +13155,6 @@ packages:
resolution: {integrity: sha512-OljLrQ9SQdOUqTaQxqL5dEfZWrXExyyWsozYlAWFawPVNuD83igl7uJD2RTkNMbniIYgt8l81eCJGIdQF7avLQ==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
- validator@13.15.15:
- resolution: {integrity: sha512-BgWVbCI72aIQy937xbawcs+hrVaN/CZ2UwutgaJ36hGqRrLNM+f5LUT/YPRbo8IV/ASeFzXszezV+y2+rq3l8A==}
- engines: {node: '>= 0.10'}
-
value-equal@1.0.1:
resolution: {integrity: sha512-NOJ6JZCAWr0zlxZt+xqCHNTEKOsrks2HQd4MqhP1qy4z1SkbEP467eNx6TgDKXMvUOb+OENfJCZwM+16n7fRfw==}
@@ -13695,8 +13198,8 @@ packages:
vite:
optional: true
- vite@5.4.19:
- resolution: {integrity: sha512-qO3aKv3HoQC8QKiNSTuUM1l9o/XX3+c+VTgLHbJWHZGeTPVAg2XwazI9UWzoxjIJCGCV2zU60uqMzjeLZuULqA==}
+ vite@5.4.21:
+ resolution: {integrity: sha512-o5a9xKjbtuhY6Bi5S3+HvbRERmouabWbyUcpXXUA1u+GNUKoROi9byOJ8M0nHbHYHkYICiMlqxkg1KkYmm25Sw==}
engines: {node: ^18.0.0 || >=20.0.0}
hasBin: true
peerDependencies:
@@ -13824,9 +13327,6 @@ packages:
jsdom:
optional: true
- vue-template-compiler@2.7.16:
- resolution: {integrity: sha512-AYbUWAJHLGGQM7+cNTELw+KsOG9nl2CnSv467WobS5Cv9uk3wFcnr1Etsz2sEIHEZvw1U+o9mRlEO6QbZvUPGQ==}
-
w3c-hr-time@1.0.2:
resolution: {integrity: sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ==}
deprecated: Use your platform's native performance.now() and performance.timeOrigin.
@@ -13849,9 +13349,6 @@ packages:
engines: {node: '>=12.0.0'}
hasBin: true
- walker@1.0.8:
- resolution: {integrity: sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==}
-
warning@4.0.3:
resolution: {integrity: sha512-rpJyN222KWIvHJ/F53XSZv0Zl/accqHR8et1kpaMTD/fLCRxtV8iX8czMzY7sVZupTI3zcUTg8eycS2kNF9l6w==}
@@ -13875,9 +13372,6 @@ packages:
webidl-conversions@3.0.1:
resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==}
- webidl-conversions@4.0.2:
- resolution: {integrity: sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==}
-
webidl-conversions@5.0.0:
resolution: {integrity: sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA==}
engines: {node: '>=8'}
@@ -13996,9 +13490,6 @@ packages:
whatwg-url@5.0.0:
resolution: {integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==}
- whatwg-url@7.1.0:
- resolution: {integrity: sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg==}
-
whatwg-url@8.7.0:
resolution: {integrity: sha512-gAojqb/m9Q8a5IV96E3fHJM70AzCkgt4uXYX2O7EmuyOnLrViCQlsEBmF9UQIu3/aeAIp2U17rtbpZWNntQqdg==}
engines: {node: '>=10'}
@@ -14076,10 +13567,6 @@ packages:
write-file-atomic@3.0.3:
resolution: {integrity: sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==}
- write-file-atomic@4.0.2:
- resolution: {integrity: sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==}
- engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
-
write-file-atomic@5.0.1:
resolution: {integrity: sha512-+QU2zd6OTD8XWIJCbffaiQeH9U73qIqafo1x6V1snCWYGJf6cVE0cDR4D8xRzcEnfI21IFrUPzPGtcPf8AC+Rw==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
@@ -14130,25 +13617,22 @@ packages:
resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==}
engines: {node: '>=10'}
- yallist@2.1.2:
- resolution: {integrity: sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==}
-
yallist@3.1.1:
resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==}
yallist@4.0.0:
resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==}
- yaml-eslint-parser@1.3.0:
- resolution: {integrity: sha512-E/+VitOorXSLiAqtTd7Yqax0/pAS3xaYMP+AUUJGOK1OZG3rhcj9fcJOM5HJ2VrP1FrStVCWr1muTfQCdj4tAA==}
+ yaml-eslint-parser@1.3.1:
+ resolution: {integrity: sha512-MdSgP9YA9QjtAO2+lt4O7V2bnH22LPnfeVLiQqjY3cOyn8dy/Ief8otjIe6SPPTK03nM7O3Yl0LTfWuF7l+9yw==}
engines: {node: ^14.17.0 || >=16.0.0}
yaml@1.10.2:
resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==}
engines: {node: '>= 6'}
- yaml@2.8.1:
- resolution: {integrity: sha512-lcYcMxX2PO9XMGvAJkJ3OsNMw+/7FKes7/hgerGUYWIoWu5j/+YQqcZr5JnPZWzOsEBgMbSbiSTn/dv/69Mkpw==}
+ yaml@2.8.2:
+ resolution: {integrity: sha512-mplynKqc1C2hTVYxd0PU2xQAc22TI1vShAYGksCCfxbn/dFwnHTNi1bvYsBTkhdUNtGIf5xNOg938rrSSYvS9A==}
engines: {node: '>= 14.6'}
hasBin: true
@@ -14171,8 +13655,8 @@ packages:
resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
engines: {node: '>=10'}
- yocto-queue@1.2.1:
- resolution: {integrity: sha512-AyeEbWOu/TAXdxlV9wmGcR0+yh2j3vYPGOECcIj2S7MkrLyC7ne+oye2BKTItt0ii2PHk4cDy+95+LshzbXnGg==}
+ yocto-queue@1.2.2:
+ resolution: {integrity: sha512-4LCcse/U2MHZ63HAJVE+v71o7yOdIe4cZ70Wpf8D/IyjDKYQLV5GD46B+hSTjJsvV5PztjvHoU580EftxjDZFQ==}
engines: {node: '>=12.20'}
yoctocolors-cjs@2.1.3:
@@ -14183,11 +13667,6 @@ packages:
resolution: {integrity: sha512-CzhO+pFNo8ajLM2d2IW/R93ipy99LWjtwblvC1RsoSUMZgyLbYFr221TnSNT7GjGdYui6P459mw9JH/g/zW2ug==}
engines: {node: '>=18'}
- z-schema@5.0.5:
- resolution: {integrity: sha512-D7eujBWkLa3p2sIpJA0d1pr7es+a7m0vFAnZLlCEKq/Ij2k0MLi9Br2UPxoxdYystm5K1yeBGzub0FlYUEWj2Q==}
- engines: {node: '>=8.0.0'}
- hasBin: true
-
zod@3.25.76:
resolution: {integrity: sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==}
@@ -14201,7 +13680,7 @@ snapshots:
'@ampproject/remapping@2.3.0':
dependencies:
'@jridgewell/gen-mapping': 0.3.13
- '@jridgewell/trace-mapping': 0.3.30
+ '@jridgewell/trace-mapping': 0.3.31
'@andrewbranch/untar.js@1.0.3': {}
@@ -14213,7 +13692,7 @@ snapshots:
commander: 10.0.1
marked: 9.1.6
marked-terminal: 7.3.0(marked@9.1.6)
- semver: 7.7.2
+ semver: 7.7.3
'@arethetypeswrong/core@0.16.4':
dependencies:
@@ -14221,7 +13700,7 @@ snapshots:
cjs-module-lexer: 1.4.3
fflate: 0.8.2
lru-cache: 10.4.3
- semver: 7.7.2
+ semver: 7.7.3
typescript: 5.6.1-rc
validate-npm-package-name: 5.0.1
@@ -14235,30 +13714,8 @@ snapshots:
js-tokens: 4.0.0
picocolors: 1.1.1
- '@babel/compat-data@7.28.0': {}
-
'@babel/compat-data@7.28.5': {}
- '@babel/core@7.28.3':
- dependencies:
- '@ampproject/remapping': 2.3.0
- '@babel/code-frame': 7.27.1
- '@babel/generator': 7.28.3
- '@babel/helper-compilation-targets': 7.27.2
- '@babel/helper-module-transforms': 7.28.3(@babel/core@7.28.3)
- '@babel/helpers': 7.28.3
- '@babel/parser': 7.28.3
- '@babel/template': 7.27.2
- '@babel/traverse': 7.28.3
- '@babel/types': 7.28.2
- convert-source-map: 2.0.0
- debug: 4.3.4(supports-color@8.1.1)
- gensync: 1.0.0-beta.2
- json5: 2.2.3
- semver: 6.3.1
- transitivePeerDependencies:
- - supports-color
-
'@babel/core@7.28.5':
dependencies:
'@babel/code-frame': 7.27.1
@@ -14287,14 +13744,6 @@ snapshots:
eslint-visitor-keys: 2.1.0
semver: 6.3.1
- '@babel/generator@7.28.3':
- dependencies:
- '@babel/parser': 7.28.5
- '@babel/types': 7.28.5
- '@jridgewell/gen-mapping': 0.3.13
- '@jridgewell/trace-mapping': 0.3.30
- jsesc: 3.1.0
-
'@babel/generator@7.28.5':
dependencies:
'@babel/parser': 7.28.5
@@ -14309,25 +13758,12 @@ snapshots:
'@babel/helper-compilation-targets@7.27.2':
dependencies:
- '@babel/compat-data': 7.28.0
+ '@babel/compat-data': 7.28.5
'@babel/helper-validator-option': 7.27.1
- browserslist: 4.25.4
+ browserslist: 4.28.0
lru-cache: 5.1.1
semver: 6.3.1
- '@babel/helper-create-class-features-plugin@7.28.3(@babel/core@7.28.5)':
- dependencies:
- '@babel/core': 7.28.5
- '@babel/helper-annotate-as-pure': 7.27.3
- '@babel/helper-member-expression-to-functions': 7.27.1
- '@babel/helper-optimise-call-expression': 7.27.1
- '@babel/helper-replace-supers': 7.27.1(@babel/core@7.28.5)
- '@babel/helper-skip-transparent-expression-wrappers': 7.27.1
- '@babel/traverse': 7.28.5
- semver: 6.3.1
- transitivePeerDependencies:
- - supports-color
-
'@babel/helper-create-class-features-plugin@7.28.5(@babel/core@7.28.5)':
dependencies:
'@babel/core': 7.28.5
@@ -14341,11 +13777,11 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/helper-create-regexp-features-plugin@7.27.1(@babel/core@7.28.5)':
+ '@babel/helper-create-regexp-features-plugin@7.28.5(@babel/core@7.28.5)':
dependencies:
'@babel/core': 7.28.5
'@babel/helper-annotate-as-pure': 7.27.3
- regexpu-core: 6.2.0
+ regexpu-core: 6.4.0
semver: 6.3.1
'@babel/helper-define-polyfill-provider@0.6.5(@babel/core@7.28.5)':
@@ -14353,21 +13789,14 @@ snapshots:
'@babel/core': 7.28.5
'@babel/helper-compilation-targets': 7.27.2
'@babel/helper-plugin-utils': 7.27.1
- debug: 4.4.1
+ debug: 4.4.3
lodash.debounce: 4.0.8
- resolve: 1.22.10
+ resolve: 1.22.11
transitivePeerDependencies:
- supports-color
'@babel/helper-globals@7.28.0': {}
- '@babel/helper-member-expression-to-functions@7.27.1':
- dependencies:
- '@babel/traverse': 7.28.5
- '@babel/types': 7.28.5
- transitivePeerDependencies:
- - supports-color
-
'@babel/helper-member-expression-to-functions@7.28.5':
dependencies:
'@babel/traverse': 7.28.5
@@ -14382,15 +13811,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/helper-module-transforms@7.28.3(@babel/core@7.28.3)':
- dependencies:
- '@babel/core': 7.28.3
- '@babel/helper-module-imports': 7.27.1
- '@babel/helper-validator-identifier': 7.28.5
- '@babel/traverse': 7.28.5
- transitivePeerDependencies:
- - supports-color
-
'@babel/helper-module-transforms@7.28.3(@babel/core@7.28.5)':
dependencies:
'@babel/core': 7.28.5
@@ -14418,7 +13838,7 @@ snapshots:
'@babel/helper-replace-supers@7.27.1(@babel/core@7.28.5)':
dependencies:
'@babel/core': 7.28.5
- '@babel/helper-member-expression-to-functions': 7.27.1
+ '@babel/helper-member-expression-to-functions': 7.28.5
'@babel/helper-optimise-call-expression': 7.27.1
'@babel/traverse': 7.28.5
transitivePeerDependencies:
@@ -14433,8 +13853,6 @@ snapshots:
'@babel/helper-string-parser@7.27.1': {}
- '@babel/helper-validator-identifier@7.27.1': {}
-
'@babel/helper-validator-identifier@7.28.5': {}
'@babel/helper-validator-option@7.27.1': {}
@@ -14447,11 +13865,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/helpers@7.28.3':
- dependencies:
- '@babel/template': 7.27.2
- '@babel/types': 7.28.5
-
'@babel/helpers@7.28.4':
dependencies:
'@babel/template': 7.27.2
@@ -14464,10 +13877,6 @@ snapshots:
js-tokens: 4.0.0
picocolors: 1.1.1
- '@babel/parser@7.28.3':
- dependencies:
- '@babel/types': 7.28.5
-
'@babel/parser@7.28.5':
dependencies:
'@babel/types': 7.28.5
@@ -14510,7 +13919,7 @@ snapshots:
'@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.28.5)':
dependencies:
'@babel/core': 7.28.5
- '@babel/helper-create-class-features-plugin': 7.28.3(@babel/core@7.28.5)
+ '@babel/helper-create-class-features-plugin': 7.28.5(@babel/core@7.28.5)
'@babel/helper-plugin-utils': 7.27.1
transitivePeerDependencies:
- supports-color
@@ -14518,7 +13927,7 @@ snapshots:
'@babel/plugin-proposal-decorators@7.28.0(@babel/core@7.28.5)':
dependencies:
'@babel/core': 7.28.5
- '@babel/helper-create-class-features-plugin': 7.28.3(@babel/core@7.28.5)
+ '@babel/helper-create-class-features-plugin': 7.28.5(@babel/core@7.28.5)
'@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-syntax-decorators': 7.27.1(@babel/core@7.28.5)
transitivePeerDependencies:
@@ -14543,7 +13952,7 @@ snapshots:
'@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.28.5)':
dependencies:
- '@babel/compat-data': 7.28.0
+ '@babel/compat-data': 7.28.5
'@babel/core': 7.28.5
'@babel/helper-compilation-targets': 7.27.2
'@babel/helper-plugin-utils': 7.27.1
@@ -14562,7 +13971,7 @@ snapshots:
'@babel/plugin-proposal-private-methods@7.18.6(@babel/core@7.28.5)':
dependencies:
'@babel/core': 7.28.5
- '@babel/helper-create-class-features-plugin': 7.28.3(@babel/core@7.28.5)
+ '@babel/helper-create-class-features-plugin': 7.28.5(@babel/core@7.28.5)
'@babel/helper-plugin-utils': 7.27.1
transitivePeerDependencies:
- supports-color
@@ -14575,7 +13984,7 @@ snapshots:
dependencies:
'@babel/core': 7.28.5
'@babel/helper-annotate-as-pure': 7.27.3
- '@babel/helper-create-class-features-plugin': 7.28.3(@babel/core@7.28.5)
+ '@babel/helper-create-class-features-plugin': 7.28.5(@babel/core@7.28.5)
'@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.28.5)
transitivePeerDependencies:
@@ -14586,29 +13995,11 @@ snapshots:
'@babel/core': 7.28.5
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.28.5)':
- dependencies:
- '@babel/core': 7.28.5
- '@babel/helper-plugin-utils': 7.27.1
- optional: true
-
'@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.28.5)':
dependencies:
'@babel/core': 7.28.5
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.28.5)':
- dependencies:
- '@babel/core': 7.28.5
- '@babel/helper-plugin-utils': 7.27.1
- optional: true
-
- '@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.28.5)':
- dependencies:
- '@babel/core': 7.28.5
- '@babel/helper-plugin-utils': 7.27.1
- optional: true
-
'@babel/plugin-syntax-decorators@7.27.1(@babel/core@7.28.5)':
dependencies:
'@babel/core': 7.28.5
@@ -14634,29 +14025,11 @@ snapshots:
'@babel/core': 7.28.5
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.28.5)':
- dependencies:
- '@babel/core': 7.28.5
- '@babel/helper-plugin-utils': 7.27.1
- optional: true
-
- '@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.28.5)':
- dependencies:
- '@babel/core': 7.28.5
- '@babel/helper-plugin-utils': 7.27.1
- optional: true
-
'@babel/plugin-syntax-jsx@7.27.1(@babel/core@7.28.5)':
dependencies:
'@babel/core': 7.28.5
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.28.5)':
- dependencies:
- '@babel/core': 7.28.5
- '@babel/helper-plugin-utils': 7.27.1
- optional: true
-
'@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.28.5)':
dependencies:
'@babel/core': 7.28.5
@@ -14672,12 +14045,6 @@ snapshots:
'@babel/core': 7.28.5
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.28.5)':
- dependencies:
- '@babel/core': 7.28.5
- '@babel/helper-plugin-utils': 7.27.1
- optional: true
-
'@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.28.5)':
dependencies:
'@babel/core': 7.28.5
@@ -14688,12 +14055,6 @@ snapshots:
'@babel/core': 7.28.5
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.28.5)':
- dependencies:
- '@babel/core': 7.28.5
- '@babel/helper-plugin-utils': 7.27.1
- optional: true
-
'@babel/plugin-syntax-typescript@7.27.1(@babel/core@7.28.5)':
dependencies:
'@babel/core': 7.28.5
@@ -14702,7 +14063,7 @@ snapshots:
'@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.28.5)':
dependencies:
'@babel/core': 7.28.5
- '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.28.5)
+ '@babel/helper-create-regexp-features-plugin': 7.28.5(@babel/core@7.28.5)
'@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-transform-arrow-functions@7.27.1(@babel/core@7.28.5)':
@@ -14741,7 +14102,7 @@ snapshots:
'@babel/plugin-transform-class-properties@7.27.1(@babel/core@7.28.5)':
dependencies:
'@babel/core': 7.28.5
- '@babel/helper-create-class-features-plugin': 7.28.3(@babel/core@7.28.5)
+ '@babel/helper-create-class-features-plugin': 7.28.5(@babel/core@7.28.5)
'@babel/helper-plugin-utils': 7.27.1
transitivePeerDependencies:
- supports-color
@@ -14749,7 +14110,7 @@ snapshots:
'@babel/plugin-transform-class-static-block@7.28.3(@babel/core@7.28.5)':
dependencies:
'@babel/core': 7.28.5
- '@babel/helper-create-class-features-plugin': 7.28.3(@babel/core@7.28.5)
+ '@babel/helper-create-class-features-plugin': 7.28.5(@babel/core@7.28.5)
'@babel/helper-plugin-utils': 7.27.1
transitivePeerDependencies:
- supports-color
@@ -14783,7 +14144,7 @@ snapshots:
'@babel/plugin-transform-dotall-regex@7.27.1(@babel/core@7.28.5)':
dependencies:
'@babel/core': 7.28.5
- '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.28.5)
+ '@babel/helper-create-regexp-features-plugin': 7.28.5(@babel/core@7.28.5)
'@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-transform-duplicate-keys@7.27.1(@babel/core@7.28.5)':
@@ -14794,7 +14155,7 @@ snapshots:
'@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.27.1(@babel/core@7.28.5)':
dependencies:
'@babel/core': 7.28.5
- '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.28.5)
+ '@babel/helper-create-regexp-features-plugin': 7.28.5(@babel/core@7.28.5)
'@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-transform-dynamic-import@7.27.1(@babel/core@7.28.5)':
@@ -14900,7 +14261,7 @@ snapshots:
'@babel/plugin-transform-named-capturing-groups-regex@7.27.1(@babel/core@7.28.5)':
dependencies:
'@babel/core': 7.28.5
- '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.28.5)
+ '@babel/helper-create-regexp-features-plugin': 7.28.5(@babel/core@7.28.5)
'@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-transform-new-target@7.27.1(@babel/core@7.28.5)':
@@ -14958,7 +14319,7 @@ snapshots:
'@babel/plugin-transform-private-methods@7.27.1(@babel/core@7.28.5)':
dependencies:
'@babel/core': 7.28.5
- '@babel/helper-create-class-features-plugin': 7.28.3(@babel/core@7.28.5)
+ '@babel/helper-create-class-features-plugin': 7.28.5(@babel/core@7.28.5)
'@babel/helper-plugin-utils': 7.27.1
transitivePeerDependencies:
- supports-color
@@ -14967,7 +14328,7 @@ snapshots:
dependencies:
'@babel/core': 7.28.5
'@babel/helper-annotate-as-pure': 7.27.3
- '@babel/helper-create-class-features-plugin': 7.28.3(@babel/core@7.28.5)
+ '@babel/helper-create-class-features-plugin': 7.28.5(@babel/core@7.28.5)
'@babel/helper-plugin-utils': 7.27.1
transitivePeerDependencies:
- supports-color
@@ -14989,21 +14350,11 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-react-jsx-self@7.27.1(@babel/core@7.28.3)':
- dependencies:
- '@babel/core': 7.28.3
- '@babel/helper-plugin-utils': 7.27.1
-
'@babel/plugin-transform-react-jsx-self@7.27.1(@babel/core@7.28.5)':
dependencies:
'@babel/core': 7.28.5
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-react-jsx-source@7.27.1(@babel/core@7.28.3)':
- dependencies:
- '@babel/core': 7.28.3
- '@babel/helper-plugin-utils': 7.27.1
-
'@babel/plugin-transform-react-jsx-source@7.27.1(@babel/core@7.28.5)':
dependencies:
'@babel/core': 7.28.5
@@ -15034,7 +14385,7 @@ snapshots:
'@babel/plugin-transform-regexp-modifiers@7.27.1(@babel/core@7.28.5)':
dependencies:
'@babel/core': 7.28.5
- '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.28.5)
+ '@babel/helper-create-regexp-features-plugin': 7.28.5(@babel/core@7.28.5)
'@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-transform-reserved-words@7.27.1(@babel/core@7.28.5)':
@@ -15042,7 +14393,7 @@ snapshots:
'@babel/core': 7.28.5
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-transform-runtime@7.28.3(@babel/core@7.28.5)':
+ '@babel/plugin-transform-runtime@7.28.5(@babel/core@7.28.5)':
dependencies:
'@babel/core': 7.28.5
'@babel/helper-module-imports': 7.27.1
@@ -15101,19 +14452,19 @@ snapshots:
'@babel/plugin-transform-unicode-property-regex@7.27.1(@babel/core@7.28.5)':
dependencies:
'@babel/core': 7.28.5
- '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.28.5)
+ '@babel/helper-create-regexp-features-plugin': 7.28.5(@babel/core@7.28.5)
'@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-transform-unicode-regex@7.27.1(@babel/core@7.28.5)':
dependencies:
'@babel/core': 7.28.5
- '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.28.5)
+ '@babel/helper-create-regexp-features-plugin': 7.28.5(@babel/core@7.28.5)
'@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-transform-unicode-sets-regex@7.27.1(@babel/core@7.28.5)':
dependencies:
'@babel/core': 7.28.5
- '@babel/helper-create-regexp-features-plugin': 7.27.1(@babel/core@7.28.5)
+ '@babel/helper-create-regexp-features-plugin': 7.28.5(@babel/core@7.28.5)
'@babel/helper-plugin-utils': 7.27.1
'@babel/preset-env@7.28.5(@babel/core@7.28.5)':
@@ -15187,7 +14538,7 @@ snapshots:
babel-plugin-polyfill-corejs2: 0.4.14(@babel/core@7.28.5)
babel-plugin-polyfill-corejs3: 0.13.0(@babel/core@7.28.5)
babel-plugin-polyfill-regenerator: 0.6.5(@babel/core@7.28.5)
- core-js-compat: 3.45.1
+ core-js-compat: 3.47.0
semver: 6.3.1
transitivePeerDependencies:
- supports-color
@@ -15222,10 +14573,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/runtime@7.20.6':
- dependencies:
- regenerator-runtime: 0.13.11
-
'@babel/runtime@7.28.4': {}
'@babel/template@7.27.2':
@@ -15234,18 +14581,6 @@ snapshots:
'@babel/parser': 7.28.5
'@babel/types': 7.28.5
- '@babel/traverse@7.28.3':
- dependencies:
- '@babel/code-frame': 7.27.1
- '@babel/generator': 7.28.5
- '@babel/helper-globals': 7.28.0
- '@babel/parser': 7.28.5
- '@babel/template': 7.27.2
- '@babel/types': 7.28.5
- debug: 4.3.4(supports-color@8.1.1)
- transitivePeerDependencies:
- - supports-color
-
'@babel/traverse@7.28.5':
dependencies:
'@babel/code-frame': 7.27.1
@@ -15261,14 +14596,9 @@ snapshots:
'@babel/types@7.20.5':
dependencies:
'@babel/helper-string-parser': 7.27.1
- '@babel/helper-validator-identifier': 7.27.1
+ '@babel/helper-validator-identifier': 7.28.5
to-fast-properties: 2.0.0
- '@babel/types@7.28.2':
- dependencies:
- '@babel/helper-string-parser': 7.27.1
- '@babel/helper-validator-identifier': 7.27.1
-
'@babel/types@7.28.5':
dependencies:
'@babel/helper-string-parser': 7.27.1
@@ -15278,6 +14608,18 @@ snapshots:
'@bcoe/v8-coverage@1.0.2': {}
+ '@cacheable/memory@2.0.6':
+ dependencies:
+ '@cacheable/utils': 2.3.2
+ '@keyv/bigmap': 1.3.0(keyv@5.5.4)
+ hookified: 1.13.0
+ keyv: 5.5.4
+
+ '@cacheable/utils@2.3.2':
+ dependencies:
+ hashery: 1.3.0
+ keyv: 5.5.4
+
'@colors/colors@1.5.0':
optional: true
@@ -15285,6 +14627,8 @@ snapshots:
dependencies:
'@csstools/css-tokenizer': 3.0.4
+ '@csstools/css-syntax-patches-for-csstree@1.0.20': {}
+
'@csstools/css-tokenizer@3.0.4': {}
'@csstools/media-query-list-parser@4.0.3(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)':
@@ -15292,9 +14636,9 @@ snapshots:
'@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4)
'@csstools/css-tokenizer': 3.0.4
- '@csstools/selector-specificity@5.0.0(postcss-selector-parser@7.1.0)':
+ '@csstools/selector-specificity@5.0.0(postcss-selector-parser@7.1.1)':
dependencies:
- postcss-selector-parser: 7.1.0
+ postcss-selector-parser: 7.1.1
'@cypress/request@3.0.9':
dependencies:
@@ -15304,7 +14648,7 @@ snapshots:
combined-stream: 1.0.8
extend: 3.0.2
forever-agent: 0.6.1
- form-data: 4.0.4
+ form-data: 4.0.5
http-signature: 1.4.0
is-typedarray: 1.0.0
isstream: 0.1.2
@@ -15353,13 +14697,13 @@ snapshots:
'@dual-bundle/import-meta-resolve@4.2.1': {}
- '@emnapi/core@1.5.0':
+ '@emnapi/core@1.7.1':
dependencies:
'@emnapi/wasi-threads': 1.1.0
tslib: 2.8.1
optional: true
- '@emnapi/runtime@1.5.0':
+ '@emnapi/runtime@1.7.1':
dependencies:
tslib: 2.8.1
optional: true
@@ -15397,7 +14741,7 @@ snapshots:
'@emotion/memoize@0.9.0': {}
- '@emotion/react@11.14.0(@types/react@18.3.24)(react@18.2.0)':
+ '@emotion/react@11.14.0(@types/react@18.3.27)(react@18.2.0)':
dependencies:
'@babel/runtime': 7.28.4
'@emotion/babel-plugin': 11.13.5
@@ -15409,7 +14753,7 @@ snapshots:
hoist-non-react-statics: 3.3.2
react: 18.2.0
optionalDependencies:
- '@types/react': 18.3.24
+ '@types/react': 18.3.27
transitivePeerDependencies:
- supports-color
@@ -15419,7 +14763,7 @@ snapshots:
'@emotion/memoize': 0.9.0
'@emotion/unitless': 0.10.0
'@emotion/utils': 1.4.2
- csstype: 3.1.3
+ csstype: 3.2.3
'@emotion/sheet@1.4.0': {}
@@ -15436,156 +14780,234 @@ snapshots:
'@esbuild/aix-ppc64@0.21.5':
optional: true
- '@esbuild/aix-ppc64@0.25.9':
+ '@esbuild/aix-ppc64@0.25.12':
+ optional: true
+
+ '@esbuild/aix-ppc64@0.27.0':
optional: true
'@esbuild/android-arm64@0.21.5':
optional: true
- '@esbuild/android-arm64@0.25.9':
+ '@esbuild/android-arm64@0.25.12':
+ optional: true
+
+ '@esbuild/android-arm64@0.27.0':
optional: true
'@esbuild/android-arm@0.21.5':
optional: true
- '@esbuild/android-arm@0.25.9':
+ '@esbuild/android-arm@0.25.12':
+ optional: true
+
+ '@esbuild/android-arm@0.27.0':
optional: true
'@esbuild/android-x64@0.21.5':
optional: true
- '@esbuild/android-x64@0.25.9':
+ '@esbuild/android-x64@0.25.12':
+ optional: true
+
+ '@esbuild/android-x64@0.27.0':
optional: true
'@esbuild/darwin-arm64@0.21.5':
optional: true
- '@esbuild/darwin-arm64@0.25.9':
+ '@esbuild/darwin-arm64@0.25.12':
+ optional: true
+
+ '@esbuild/darwin-arm64@0.27.0':
optional: true
'@esbuild/darwin-x64@0.21.5':
optional: true
- '@esbuild/darwin-x64@0.25.9':
+ '@esbuild/darwin-x64@0.25.12':
+ optional: true
+
+ '@esbuild/darwin-x64@0.27.0':
optional: true
'@esbuild/freebsd-arm64@0.21.5':
optional: true
- '@esbuild/freebsd-arm64@0.25.9':
+ '@esbuild/freebsd-arm64@0.25.12':
+ optional: true
+
+ '@esbuild/freebsd-arm64@0.27.0':
optional: true
'@esbuild/freebsd-x64@0.21.5':
optional: true
- '@esbuild/freebsd-x64@0.25.9':
+ '@esbuild/freebsd-x64@0.25.12':
+ optional: true
+
+ '@esbuild/freebsd-x64@0.27.0':
optional: true
'@esbuild/linux-arm64@0.21.5':
optional: true
- '@esbuild/linux-arm64@0.25.9':
+ '@esbuild/linux-arm64@0.25.12':
+ optional: true
+
+ '@esbuild/linux-arm64@0.27.0':
optional: true
'@esbuild/linux-arm@0.21.5':
optional: true
- '@esbuild/linux-arm@0.25.9':
+ '@esbuild/linux-arm@0.25.12':
+ optional: true
+
+ '@esbuild/linux-arm@0.27.0':
optional: true
'@esbuild/linux-ia32@0.21.5':
optional: true
- '@esbuild/linux-ia32@0.25.9':
+ '@esbuild/linux-ia32@0.25.12':
+ optional: true
+
+ '@esbuild/linux-ia32@0.27.0':
optional: true
'@esbuild/linux-loong64@0.21.5':
optional: true
- '@esbuild/linux-loong64@0.25.9':
+ '@esbuild/linux-loong64@0.25.12':
+ optional: true
+
+ '@esbuild/linux-loong64@0.27.0':
optional: true
'@esbuild/linux-mips64el@0.21.5':
optional: true
- '@esbuild/linux-mips64el@0.25.9':
+ '@esbuild/linux-mips64el@0.25.12':
+ optional: true
+
+ '@esbuild/linux-mips64el@0.27.0':
optional: true
'@esbuild/linux-ppc64@0.21.5':
optional: true
- '@esbuild/linux-ppc64@0.25.9':
+ '@esbuild/linux-ppc64@0.25.12':
+ optional: true
+
+ '@esbuild/linux-ppc64@0.27.0':
optional: true
'@esbuild/linux-riscv64@0.21.5':
optional: true
- '@esbuild/linux-riscv64@0.25.9':
+ '@esbuild/linux-riscv64@0.25.12':
+ optional: true
+
+ '@esbuild/linux-riscv64@0.27.0':
optional: true
'@esbuild/linux-s390x@0.21.5':
optional: true
- '@esbuild/linux-s390x@0.25.9':
+ '@esbuild/linux-s390x@0.25.12':
+ optional: true
+
+ '@esbuild/linux-s390x@0.27.0':
optional: true
'@esbuild/linux-x64@0.21.5':
optional: true
- '@esbuild/linux-x64@0.25.9':
+ '@esbuild/linux-x64@0.25.12':
+ optional: true
+
+ '@esbuild/linux-x64@0.27.0':
optional: true
- '@esbuild/netbsd-arm64@0.25.9':
+ '@esbuild/netbsd-arm64@0.25.12':
+ optional: true
+
+ '@esbuild/netbsd-arm64@0.27.0':
optional: true
'@esbuild/netbsd-x64@0.21.5':
optional: true
- '@esbuild/netbsd-x64@0.25.9':
+ '@esbuild/netbsd-x64@0.25.12':
+ optional: true
+
+ '@esbuild/netbsd-x64@0.27.0':
optional: true
- '@esbuild/openbsd-arm64@0.25.9':
+ '@esbuild/openbsd-arm64@0.25.12':
+ optional: true
+
+ '@esbuild/openbsd-arm64@0.27.0':
optional: true
'@esbuild/openbsd-x64@0.21.5':
optional: true
- '@esbuild/openbsd-x64@0.25.9':
+ '@esbuild/openbsd-x64@0.25.12':
optional: true
- '@esbuild/openharmony-arm64@0.25.9':
+ '@esbuild/openbsd-x64@0.27.0':
optional: true
- '@esbuild/sunos-x64@0.21.5':
+ '@esbuild/openharmony-arm64@0.25.12':
optional: true
- '@esbuild/sunos-x64@0.25.9':
+ '@esbuild/openharmony-arm64@0.27.0':
optional: true
- '@esbuild/win32-arm64@0.21.5':
+ '@esbuild/sunos-x64@0.21.5':
optional: true
- '@esbuild/win32-arm64@0.25.9':
+ '@esbuild/sunos-x64@0.25.12':
optional: true
- '@esbuild/win32-ia32@0.21.5':
+ '@esbuild/sunos-x64@0.27.0':
optional: true
- '@esbuild/win32-ia32@0.25.9':
+ '@esbuild/win32-arm64@0.21.5':
optional: true
- '@esbuild/win32-x64@0.21.5':
+ '@esbuild/win32-arm64@0.25.12':
optional: true
- '@esbuild/win32-x64@0.25.9':
+ '@esbuild/win32-arm64@0.27.0':
optional: true
- '@eslint-community/eslint-utils@4.8.0(eslint@8.57.1)':
+ '@esbuild/win32-ia32@0.21.5':
+ optional: true
+
+ '@esbuild/win32-ia32@0.25.12':
+ optional: true
+
+ '@esbuild/win32-ia32@0.27.0':
+ optional: true
+
+ '@esbuild/win32-x64@0.21.5':
+ optional: true
+
+ '@esbuild/win32-x64@0.25.12':
+ optional: true
+
+ '@esbuild/win32-x64@0.27.0':
+ optional: true
+
+ '@eslint-community/eslint-utils@4.9.0(eslint@8.57.1)':
dependencies:
eslint: 8.57.1
eslint-visitor-keys: 3.4.3
- '@eslint-community/regexpp@4.12.1': {}
+ '@eslint-community/regexpp@4.12.2': {}
'@eslint/eslintrc@2.1.4':
dependencies:
@@ -15595,7 +15017,7 @@ snapshots:
globals: 13.24.0
ignore: 5.3.2
import-fresh: 3.3.1
- js-yaml: 4.1.0
+ js-yaml: 4.1.1
minimatch: 3.1.2
strip-json-comments: 3.1.1
transitivePeerDependencies:
@@ -15618,10 +15040,10 @@ snapshots:
react-dom: 18.2.0(react@18.2.0)
react-is: 16.13.1
- '@formatjs/ecma402-abstract@2.3.4':
+ '@formatjs/ecma402-abstract@2.3.6':
dependencies:
'@formatjs/fast-memoize': 2.2.7
- '@formatjs/intl-localematcher': 0.6.1
+ '@formatjs/intl-localematcher': 0.6.2
decimal.js: 10.6.0
tslib: 2.8.1
@@ -15629,15 +15051,15 @@ snapshots:
dependencies:
tslib: 2.8.1
- '@formatjs/icu-messageformat-parser@2.11.2':
+ '@formatjs/icu-messageformat-parser@2.11.4':
dependencies:
- '@formatjs/ecma402-abstract': 2.3.4
- '@formatjs/icu-skeleton-parser': 1.8.14
+ '@formatjs/ecma402-abstract': 2.3.6
+ '@formatjs/icu-skeleton-parser': 1.8.16
tslib: 2.8.1
- '@formatjs/icu-skeleton-parser@1.8.14':
+ '@formatjs/icu-skeleton-parser@1.8.16':
dependencies:
- '@formatjs/ecma402-abstract': 2.3.4
+ '@formatjs/ecma402-abstract': 2.3.6
tslib: 2.8.1
'@formatjs/intl-displaynames@1.2.10':
@@ -15648,7 +15070,7 @@ snapshots:
dependencies:
'@formatjs/intl-utils': 2.3.0
- '@formatjs/intl-localematcher@0.6.1':
+ '@formatjs/intl-localematcher@0.6.2':
dependencies:
tslib: 2.8.1
@@ -15684,130 +15106,130 @@ snapshots:
'@iarna/toml@2.2.5': {}
- '@inquirer/ansi@1.0.0': {}
+ '@inquirer/ansi@1.0.2': {}
- '@inquirer/checkbox@4.2.4(@types/node@24.10.0)':
+ '@inquirer/checkbox@4.3.2(@types/node@24.10.1)':
dependencies:
- '@inquirer/ansi': 1.0.0
- '@inquirer/core': 10.2.2(@types/node@24.10.0)
- '@inquirer/figures': 1.0.13
- '@inquirer/type': 3.0.8(@types/node@24.10.0)
+ '@inquirer/ansi': 1.0.2
+ '@inquirer/core': 10.3.2(@types/node@24.10.1)
+ '@inquirer/figures': 1.0.15
+ '@inquirer/type': 3.0.10(@types/node@24.10.1)
yoctocolors-cjs: 2.1.3
optionalDependencies:
- '@types/node': 24.10.0
+ '@types/node': 24.10.1
- '@inquirer/confirm@5.1.18(@types/node@24.10.0)':
+ '@inquirer/confirm@5.1.21(@types/node@24.10.1)':
dependencies:
- '@inquirer/core': 10.2.2(@types/node@24.10.0)
- '@inquirer/type': 3.0.8(@types/node@24.10.0)
+ '@inquirer/core': 10.3.2(@types/node@24.10.1)
+ '@inquirer/type': 3.0.10(@types/node@24.10.1)
optionalDependencies:
- '@types/node': 24.10.0
+ '@types/node': 24.10.1
- '@inquirer/core@10.2.2(@types/node@24.10.0)':
+ '@inquirer/core@10.3.2(@types/node@24.10.1)':
dependencies:
- '@inquirer/ansi': 1.0.0
- '@inquirer/figures': 1.0.13
- '@inquirer/type': 3.0.8(@types/node@24.10.0)
+ '@inquirer/ansi': 1.0.2
+ '@inquirer/figures': 1.0.15
+ '@inquirer/type': 3.0.10(@types/node@24.10.1)
cli-width: 4.1.0
mute-stream: 2.0.0
signal-exit: 4.1.0
wrap-ansi: 6.2.0
yoctocolors-cjs: 2.1.3
optionalDependencies:
- '@types/node': 24.10.0
+ '@types/node': 24.10.1
- '@inquirer/editor@4.2.20(@types/node@24.10.0)':
+ '@inquirer/editor@4.2.23(@types/node@24.10.1)':
dependencies:
- '@inquirer/core': 10.2.2(@types/node@24.10.0)
- '@inquirer/external-editor': 1.0.2(@types/node@24.10.0)
- '@inquirer/type': 3.0.8(@types/node@24.10.0)
+ '@inquirer/core': 10.3.2(@types/node@24.10.1)
+ '@inquirer/external-editor': 1.0.3(@types/node@24.10.1)
+ '@inquirer/type': 3.0.10(@types/node@24.10.1)
optionalDependencies:
- '@types/node': 24.10.0
+ '@types/node': 24.10.1
- '@inquirer/expand@4.0.20(@types/node@24.10.0)':
+ '@inquirer/expand@4.0.23(@types/node@24.10.1)':
dependencies:
- '@inquirer/core': 10.2.2(@types/node@24.10.0)
- '@inquirer/type': 3.0.8(@types/node@24.10.0)
+ '@inquirer/core': 10.3.2(@types/node@24.10.1)
+ '@inquirer/type': 3.0.10(@types/node@24.10.1)
yoctocolors-cjs: 2.1.3
optionalDependencies:
- '@types/node': 24.10.0
+ '@types/node': 24.10.1
- '@inquirer/external-editor@1.0.2(@types/node@24.10.0)':
+ '@inquirer/external-editor@1.0.3(@types/node@24.10.1)':
dependencies:
- chardet: 2.1.0
+ chardet: 2.1.1
iconv-lite: 0.7.0
optionalDependencies:
- '@types/node': 24.10.0
+ '@types/node': 24.10.1
- '@inquirer/figures@1.0.13': {}
+ '@inquirer/figures@1.0.15': {}
- '@inquirer/input@4.2.4(@types/node@24.10.0)':
+ '@inquirer/input@4.3.1(@types/node@24.10.1)':
dependencies:
- '@inquirer/core': 10.2.2(@types/node@24.10.0)
- '@inquirer/type': 3.0.8(@types/node@24.10.0)
+ '@inquirer/core': 10.3.2(@types/node@24.10.1)
+ '@inquirer/type': 3.0.10(@types/node@24.10.1)
optionalDependencies:
- '@types/node': 24.10.0
+ '@types/node': 24.10.1
- '@inquirer/number@3.0.20(@types/node@24.10.0)':
+ '@inquirer/number@3.0.23(@types/node@24.10.1)':
dependencies:
- '@inquirer/core': 10.2.2(@types/node@24.10.0)
- '@inquirer/type': 3.0.8(@types/node@24.10.0)
+ '@inquirer/core': 10.3.2(@types/node@24.10.1)
+ '@inquirer/type': 3.0.10(@types/node@24.10.1)
optionalDependencies:
- '@types/node': 24.10.0
+ '@types/node': 24.10.1
- '@inquirer/password@4.0.20(@types/node@24.10.0)':
+ '@inquirer/password@4.0.23(@types/node@24.10.1)':
dependencies:
- '@inquirer/ansi': 1.0.0
- '@inquirer/core': 10.2.2(@types/node@24.10.0)
- '@inquirer/type': 3.0.8(@types/node@24.10.0)
+ '@inquirer/ansi': 1.0.2
+ '@inquirer/core': 10.3.2(@types/node@24.10.1)
+ '@inquirer/type': 3.0.10(@types/node@24.10.1)
optionalDependencies:
- '@types/node': 24.10.0
-
- '@inquirer/prompts@7.8.6(@types/node@24.10.0)':
- dependencies:
- '@inquirer/checkbox': 4.2.4(@types/node@24.10.0)
- '@inquirer/confirm': 5.1.18(@types/node@24.10.0)
- '@inquirer/editor': 4.2.20(@types/node@24.10.0)
- '@inquirer/expand': 4.0.20(@types/node@24.10.0)
- '@inquirer/input': 4.2.4(@types/node@24.10.0)
- '@inquirer/number': 3.0.20(@types/node@24.10.0)
- '@inquirer/password': 4.0.20(@types/node@24.10.0)
- '@inquirer/rawlist': 4.1.8(@types/node@24.10.0)
- '@inquirer/search': 3.1.3(@types/node@24.10.0)
- '@inquirer/select': 4.3.4(@types/node@24.10.0)
+ '@types/node': 24.10.1
+
+ '@inquirer/prompts@7.10.1(@types/node@24.10.1)':
+ dependencies:
+ '@inquirer/checkbox': 4.3.2(@types/node@24.10.1)
+ '@inquirer/confirm': 5.1.21(@types/node@24.10.1)
+ '@inquirer/editor': 4.2.23(@types/node@24.10.1)
+ '@inquirer/expand': 4.0.23(@types/node@24.10.1)
+ '@inquirer/input': 4.3.1(@types/node@24.10.1)
+ '@inquirer/number': 3.0.23(@types/node@24.10.1)
+ '@inquirer/password': 4.0.23(@types/node@24.10.1)
+ '@inquirer/rawlist': 4.1.11(@types/node@24.10.1)
+ '@inquirer/search': 3.2.2(@types/node@24.10.1)
+ '@inquirer/select': 4.4.2(@types/node@24.10.1)
optionalDependencies:
- '@types/node': 24.10.0
+ '@types/node': 24.10.1
- '@inquirer/rawlist@4.1.8(@types/node@24.10.0)':
+ '@inquirer/rawlist@4.1.11(@types/node@24.10.1)':
dependencies:
- '@inquirer/core': 10.2.2(@types/node@24.10.0)
- '@inquirer/type': 3.0.8(@types/node@24.10.0)
+ '@inquirer/core': 10.3.2(@types/node@24.10.1)
+ '@inquirer/type': 3.0.10(@types/node@24.10.1)
yoctocolors-cjs: 2.1.3
optionalDependencies:
- '@types/node': 24.10.0
+ '@types/node': 24.10.1
- '@inquirer/search@3.1.3(@types/node@24.10.0)':
+ '@inquirer/search@3.2.2(@types/node@24.10.1)':
dependencies:
- '@inquirer/core': 10.2.2(@types/node@24.10.0)
- '@inquirer/figures': 1.0.13
- '@inquirer/type': 3.0.8(@types/node@24.10.0)
+ '@inquirer/core': 10.3.2(@types/node@24.10.1)
+ '@inquirer/figures': 1.0.15
+ '@inquirer/type': 3.0.10(@types/node@24.10.1)
yoctocolors-cjs: 2.1.3
optionalDependencies:
- '@types/node': 24.10.0
+ '@types/node': 24.10.1
- '@inquirer/select@4.3.4(@types/node@24.10.0)':
+ '@inquirer/select@4.4.2(@types/node@24.10.1)':
dependencies:
- '@inquirer/ansi': 1.0.0
- '@inquirer/core': 10.2.2(@types/node@24.10.0)
- '@inquirer/figures': 1.0.13
- '@inquirer/type': 3.0.8(@types/node@24.10.0)
+ '@inquirer/ansi': 1.0.2
+ '@inquirer/core': 10.3.2(@types/node@24.10.1)
+ '@inquirer/figures': 1.0.15
+ '@inquirer/type': 3.0.10(@types/node@24.10.1)
yoctocolors-cjs: 2.1.3
optionalDependencies:
- '@types/node': 24.10.0
+ '@types/node': 24.10.1
- '@inquirer/type@3.0.8(@types/node@24.10.0)':
+ '@inquirer/type@3.0.10(@types/node@24.10.1)':
optionalDependencies:
- '@types/node': 24.10.0
+ '@types/node': 24.10.1
'@internationalized/date@3.10.0':
dependencies:
@@ -15816,7 +15238,7 @@ snapshots:
'@internationalized/message@3.1.8':
dependencies:
'@swc/helpers': 0.5.17
- intl-messageformat: 10.7.16
+ intl-messageformat: 10.7.18
'@internationalized/number@3.6.5':
dependencies:
@@ -15835,112 +15257,60 @@ snapshots:
wrap-ansi: 8.1.0
wrap-ansi-cjs: wrap-ansi@7.0.0
- '@istanbuljs/load-nyc-config@1.1.0':
- dependencies:
- camelcase: 5.3.1
- find-up: 4.1.0
- get-package-type: 0.1.0
- js-yaml: 3.14.1
- resolve-from: 5.0.0
- optional: true
-
'@istanbuljs/schema@0.1.3': {}
- '@jest/environment@29.7.0':
- dependencies:
- '@jest/fake-timers': 29.7.0
- '@jest/types': 29.6.3
- '@types/node': 24.10.0
- jest-mock: 29.7.0
- optional: true
-
- '@jest/expect-utils@29.7.0':
- dependencies:
- jest-get-type: 29.6.3
+ '@jest/diff-sequences@30.0.1': {}
- '@jest/expect@29.7.0':
+ '@jest/expect-utils@30.2.0':
dependencies:
- expect: 29.7.0
- jest-snapshot: 29.7.0
- transitivePeerDependencies:
- - supports-color
- optional: true
+ '@jest/get-type': 30.1.0
- '@jest/fake-timers@29.7.0':
- dependencies:
- '@jest/types': 29.6.3
- '@sinonjs/fake-timers': 10.3.0
- '@types/node': 24.10.0
- jest-message-util: 29.7.0
- jest-mock: 29.7.0
- jest-util: 29.7.0
- optional: true
+ '@jest/get-type@30.1.0': {}
- '@jest/globals@29.7.0':
+ '@jest/pattern@30.0.1':
dependencies:
- '@jest/environment': 29.7.0
- '@jest/expect': 29.7.0
- '@jest/types': 29.6.3
- jest-mock: 29.7.0
- transitivePeerDependencies:
- - supports-color
- optional: true
+ '@types/node': 24.10.1
+ jest-regex-util: 30.0.1
'@jest/schemas@29.6.3':
dependencies:
'@sinclair/typebox': 0.27.8
- '@jest/transform@29.7.0':
+ '@jest/schemas@30.0.5':
dependencies:
- '@babel/core': 7.28.5
- '@jest/types': 29.6.3
- '@jridgewell/trace-mapping': 0.3.31
- babel-plugin-istanbul: 6.1.1
- chalk: 4.1.2
- convert-source-map: 2.0.0
- fast-json-stable-stringify: 2.1.0
- graceful-fs: 4.2.11
- jest-haste-map: 29.7.0
- jest-regex-util: 29.6.3
- jest-util: 29.7.0
- micromatch: 4.0.8
- pirates: 4.0.7
- slash: 3.0.0
- write-file-atomic: 4.0.2
- transitivePeerDependencies:
- - supports-color
- optional: true
+ '@sinclair/typebox': 0.34.41
'@jest/types@26.6.2':
dependencies:
'@types/istanbul-lib-coverage': 2.0.6
'@types/istanbul-reports': 3.0.4
- '@types/node': 24.10.0
- '@types/yargs': 15.0.19
+ '@types/node': 24.10.1
+ '@types/yargs': 15.0.20
chalk: 4.1.2
- '@jest/types@29.6.3':
+ '@jest/types@30.2.0':
dependencies:
- '@jest/schemas': 29.6.3
+ '@jest/pattern': 30.0.1
+ '@jest/schemas': 30.0.5
'@types/istanbul-lib-coverage': 2.0.6
'@types/istanbul-reports': 3.0.4
- '@types/node': 24.10.0
- '@types/yargs': 17.0.33
+ '@types/node': 24.10.1
+ '@types/yargs': 17.0.35
chalk: 4.1.2
- '@joshwooding/vite-plugin-react-docgen-typescript@0.5.0(typescript@5.9.2)(vite@5.4.19(@types/node@24.10.0)(less@3.11.1)(lightningcss@1.30.2)(sass@1.92.0)(terser@5.44.0))':
+ '@joshwooding/vite-plugin-react-docgen-typescript@0.5.0(typescript@5.9.3)(vite@5.4.21(@types/node@24.10.1)(less@3.11.1)(lightningcss@1.30.2)(sass@1.58.0)(terser@5.44.1))':
dependencies:
- glob: 10.4.5
+ glob: 10.5.0
magic-string: 0.27.0
- react-docgen-typescript: 2.4.0(typescript@5.9.2)
- vite: 5.4.19(@types/node@24.10.0)(less@3.11.1)(lightningcss@1.30.2)(sass@1.92.0)(terser@5.44.0)
+ react-docgen-typescript: 2.4.0(typescript@5.9.3)
+ vite: 5.4.21(@types/node@24.10.1)(less@3.11.1)(lightningcss@1.30.2)(sass@1.58.0)(terser@5.44.1)
optionalDependencies:
- typescript: 5.9.2
+ typescript: 5.9.3
'@jridgewell/gen-mapping@0.3.13':
dependencies:
'@jridgewell/sourcemap-codec': 1.5.5
- '@jridgewell/trace-mapping': 0.3.30
+ '@jridgewell/trace-mapping': 0.3.31
'@jridgewell/remapping@2.3.5':
dependencies:
@@ -15956,11 +15326,6 @@ snapshots:
'@jridgewell/sourcemap-codec@1.5.5': {}
- '@jridgewell/trace-mapping@0.3.30':
- dependencies:
- '@jridgewell/resolve-uri': 3.1.2
- '@jridgewell/sourcemap-codec': 1.5.5
-
'@jridgewell/trace-mapping@0.3.31':
dependencies:
'@jridgewell/resolve-uri': 3.1.2
@@ -15968,7 +15333,13 @@ snapshots:
'@juggle/resize-observer@3.4.0': {}
- '@keyv/serialize@1.1.0': {}
+ '@keyv/bigmap@1.3.0(keyv@5.5.4)':
+ dependencies:
+ hashery: 1.3.0
+ hookified: 1.13.0
+ keyv: 5.5.4
+
+ '@keyv/serialize@1.1.1': {}
'@kitconcept/volto-bm3-compat@1.0.0-alpha.1(classnames@2.5.1)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
dependencies:
@@ -15976,7 +15347,7 @@ snapshots:
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- '@kitconcept/volto-light-theme@8.0.0-alpha.8(classnames@2.5.1)(embla-carousel@8.6.0)(lodash@4.17.21)(react-dom@18.2.0(react@18.2.0))(react-intl@3.12.1(@types/react@18.3.24)(react@18.2.0))(react-redux@8.1.2(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(redux@4.2.1))(react-router-dom@5.2.0(react@18.2.0))(react@18.2.0)':
+ '@kitconcept/volto-light-theme@8.0.0-alpha.8(classnames@2.5.1)(embla-carousel@8.6.0)(lodash@4.17.21)(react-dom@18.2.0(react@18.2.0))(react-intl@3.12.1(@types/react@18.3.27)(react@18.2.0))(react-redux@8.1.2(@types/react-dom@18.3.7(@types/react@18.3.27))(@types/react@18.3.27)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(redux@4.2.1))(react-router-dom@5.2.0(react@18.2.0))(react@18.2.0)':
dependencies:
'@dnd-kit/core': 6.0.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
'@dnd-kit/sortable': 7.0.2(@dnd-kit/core@6.0.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react@18.2.0)
@@ -15992,8 +15363,8 @@ snapshots:
react-aria-components: 1.13.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
react-colorful: 5.6.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
react-dom: 18.2.0(react@18.2.0)
- react-intl: 3.12.1(@types/react@18.3.24)(react@18.2.0)
- react-redux: 8.1.2(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(redux@4.2.1)
+ react-intl: 3.12.1(@types/react@18.3.27)(react@18.2.0)
+ react-redux: 8.1.2(@types/react-dom@18.3.7(@types/react@18.3.27))(@types/react@18.3.27)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(redux@4.2.1)
react-router-dom: 5.2.0(react@18.2.0)
uuid: 11.1.0
transitivePeerDependencies:
@@ -16038,63 +15409,24 @@ snapshots:
'@mbarde/volto-image-crop-widget@0.5.1(react@18.2.0)':
dependencies:
- '@plone/scripts': 3.10.1
+ '@plone/scripts': 3.10.3
react-image-crop: 10.0.9(react@18.2.0)
transitivePeerDependencies:
- debug
- react
- supports-color
- '@mdx-js/react@3.1.1(@types/react@18.3.24)(react@18.2.0)':
+ '@mdx-js/react@3.1.1(@types/react@18.3.27)(react@18.2.0)':
dependencies:
'@types/mdx': 2.0.13
- '@types/react': 18.3.24
+ '@types/react': 18.3.27
react: 18.2.0
- '@microsoft/api-extractor-model@7.28.13(@types/node@24.10.0)':
- dependencies:
- '@microsoft/tsdoc': 0.14.2
- '@microsoft/tsdoc-config': 0.16.2
- '@rushstack/node-core-library': 4.0.2(@types/node@24.10.0)
- transitivePeerDependencies:
- - '@types/node'
- optional: true
-
- '@microsoft/api-extractor@7.43.0(@types/node@24.10.0)':
- dependencies:
- '@microsoft/api-extractor-model': 7.28.13(@types/node@24.10.0)
- '@microsoft/tsdoc': 0.14.2
- '@microsoft/tsdoc-config': 0.16.2
- '@rushstack/node-core-library': 4.0.2(@types/node@24.10.0)
- '@rushstack/rig-package': 0.5.2
- '@rushstack/terminal': 0.10.0(@types/node@24.10.0)
- '@rushstack/ts-command-line': 4.19.1(@types/node@24.10.0)
- lodash: 4.17.21
- minimatch: 3.0.8
- resolve: 1.22.10
- semver: 7.5.4
- source-map: 0.6.1
- typescript: 5.4.2
- transitivePeerDependencies:
- - '@types/node'
- optional: true
-
- '@microsoft/tsdoc-config@0.16.2':
- dependencies:
- '@microsoft/tsdoc': 0.14.2
- ajv: 6.12.6
- jju: 1.4.0
- resolve: 1.19.0
- optional: true
-
- '@microsoft/tsdoc@0.14.2':
- optional: true
-
'@napi-rs/wasm-runtime@0.2.12':
dependencies:
- '@emnapi/core': 1.5.0
- '@emnapi/runtime': 1.5.0
- '@tybys/wasm-util': 0.10.0
+ '@emnapi/core': 1.7.1
+ '@emnapi/runtime': 1.7.1
+ '@tybys/wasm-util': 0.10.1
optional: true
'@nicolo-ribaudo/eslint-scope-5-internals@5.1.1-v1':
@@ -16122,7 +15454,7 @@ snapshots:
'@npmcli/fs@1.1.1':
dependencies:
'@gar/promisify': 1.1.3
- semver: 7.7.2
+ semver: 7.7.3
'@npmcli/move-file@1.1.2':
dependencies:
@@ -16157,19 +15489,19 @@ snapshots:
before-after-hook: 2.2.3
universal-user-agent: 6.0.1
- '@octokit/core@7.0.4':
+ '@octokit/core@7.0.6':
dependencies:
'@octokit/auth-token': 6.0.0
- '@octokit/graphql': 9.0.1
- '@octokit/request': 10.0.3
- '@octokit/request-error': 7.0.0
- '@octokit/types': 15.0.0
+ '@octokit/graphql': 9.0.3
+ '@octokit/request': 10.0.7
+ '@octokit/request-error': 7.1.0
+ '@octokit/types': 16.0.0
before-after-hook: 4.0.0
universal-user-agent: 7.0.3
- '@octokit/endpoint@11.0.0':
+ '@octokit/endpoint@11.0.2':
dependencies:
- '@octokit/types': 14.1.0
+ '@octokit/types': 16.0.0
universal-user-agent: 7.0.3
'@octokit/endpoint@7.0.6':
@@ -16197,10 +15529,10 @@ snapshots:
'@octokit/types': 13.10.0
universal-user-agent: 6.0.1
- '@octokit/graphql@9.0.1':
+ '@octokit/graphql@9.0.3':
dependencies:
- '@octokit/request': 10.0.3
- '@octokit/types': 14.1.0
+ '@octokit/request': 10.0.7
+ '@octokit/types': 16.0.0
universal-user-agent: 7.0.3
'@octokit/openapi-types@18.1.1': {}
@@ -16209,14 +15541,14 @@ snapshots:
'@octokit/openapi-types@24.2.0': {}
- '@octokit/openapi-types@25.1.0': {}
-
'@octokit/openapi-types@26.0.0': {}
- '@octokit/plugin-paginate-rest@13.1.1(@octokit/core@7.0.4)':
+ '@octokit/openapi-types@27.0.0': {}
+
+ '@octokit/plugin-paginate-rest@13.2.1(@octokit/core@7.0.6)':
dependencies:
- '@octokit/core': 7.0.4
- '@octokit/types': 14.1.0
+ '@octokit/core': 7.0.6
+ '@octokit/types': 15.0.2
'@octokit/plugin-paginate-rest@6.1.2(@octokit/core@4.2.4(encoding@0.1.13))':
dependencies:
@@ -16237,19 +15569,19 @@ snapshots:
dependencies:
'@octokit/core': 5.2.2
- '@octokit/plugin-request-log@6.0.0(@octokit/core@7.0.4)':
+ '@octokit/plugin-request-log@6.0.0(@octokit/core@7.0.6)':
dependencies:
- '@octokit/core': 7.0.4
+ '@octokit/core': 7.0.6
'@octokit/plugin-rest-endpoint-methods@10.4.1(@octokit/core@5.2.2)':
dependencies:
'@octokit/core': 5.2.2
'@octokit/types': 12.6.0
- '@octokit/plugin-rest-endpoint-methods@16.1.0(@octokit/core@7.0.4)':
+ '@octokit/plugin-rest-endpoint-methods@16.1.1(@octokit/core@7.0.6)':
dependencies:
- '@octokit/core': 7.0.4
- '@octokit/types': 15.0.0
+ '@octokit/core': 7.0.6
+ '@octokit/types': 15.0.2
'@octokit/plugin-rest-endpoint-methods@7.2.3(@octokit/core@4.2.4(encoding@0.1.13))':
dependencies:
@@ -16268,15 +15600,15 @@ snapshots:
deprecation: 2.3.1
once: 1.4.0
- '@octokit/request-error@7.0.0':
+ '@octokit/request-error@7.1.0':
dependencies:
- '@octokit/types': 14.1.0
+ '@octokit/types': 16.0.0
- '@octokit/request@10.0.3':
+ '@octokit/request@10.0.7':
dependencies:
- '@octokit/endpoint': 11.0.0
- '@octokit/request-error': 7.0.0
- '@octokit/types': 14.1.0
+ '@octokit/endpoint': 11.0.2
+ '@octokit/request-error': 7.1.0
+ '@octokit/types': 16.0.0
fast-content-type-parse: 3.0.0
universal-user-agent: 7.0.3
@@ -16316,10 +15648,10 @@ snapshots:
'@octokit/rest@22.0.0':
dependencies:
- '@octokit/core': 7.0.4
- '@octokit/plugin-paginate-rest': 13.1.1(@octokit/core@7.0.4)
- '@octokit/plugin-request-log': 6.0.0(@octokit/core@7.0.4)
- '@octokit/plugin-rest-endpoint-methods': 16.1.0(@octokit/core@7.0.4)
+ '@octokit/core': 7.0.6
+ '@octokit/plugin-paginate-rest': 13.2.1(@octokit/core@7.0.6)
+ '@octokit/plugin-request-log': 6.0.0(@octokit/core@7.0.6)
+ '@octokit/plugin-rest-endpoint-methods': 16.1.1(@octokit/core@7.0.6)
'@octokit/tsconfig@1.0.2': {}
@@ -16335,79 +15667,18 @@ snapshots:
dependencies:
'@octokit/openapi-types': 24.2.0
- '@octokit/types@14.1.0':
+ '@octokit/types@15.0.2':
dependencies:
- '@octokit/openapi-types': 25.1.0
+ '@octokit/openapi-types': 26.0.0
- '@octokit/types@15.0.0':
+ '@octokit/types@16.0.0':
dependencies:
- '@octokit/openapi-types': 26.0.0
+ '@octokit/openapi-types': 27.0.0
'@octokit/types@9.3.2':
dependencies:
'@octokit/openapi-types': 18.1.1
- '@parcel/watcher-android-arm64@2.5.1':
- optional: true
-
- '@parcel/watcher-darwin-arm64@2.5.1':
- optional: true
-
- '@parcel/watcher-darwin-x64@2.5.1':
- optional: true
-
- '@parcel/watcher-freebsd-x64@2.5.1':
- optional: true
-
- '@parcel/watcher-linux-arm-glibc@2.5.1':
- optional: true
-
- '@parcel/watcher-linux-arm-musl@2.5.1':
- optional: true
-
- '@parcel/watcher-linux-arm64-glibc@2.5.1':
- optional: true
-
- '@parcel/watcher-linux-arm64-musl@2.5.1':
- optional: true
-
- '@parcel/watcher-linux-x64-glibc@2.5.1':
- optional: true
-
- '@parcel/watcher-linux-x64-musl@2.5.1':
- optional: true
-
- '@parcel/watcher-win32-arm64@2.5.1':
- optional: true
-
- '@parcel/watcher-win32-ia32@2.5.1':
- optional: true
-
- '@parcel/watcher-win32-x64@2.5.1':
- optional: true
-
- '@parcel/watcher@2.5.1':
- dependencies:
- detect-libc: 1.0.3
- is-glob: 4.0.3
- micromatch: 4.0.8
- node-addon-api: 7.1.1
- optionalDependencies:
- '@parcel/watcher-android-arm64': 2.5.1
- '@parcel/watcher-darwin-arm64': 2.5.1
- '@parcel/watcher-darwin-x64': 2.5.1
- '@parcel/watcher-freebsd-x64': 2.5.1
- '@parcel/watcher-linux-arm-glibc': 2.5.1
- '@parcel/watcher-linux-arm-musl': 2.5.1
- '@parcel/watcher-linux-arm64-glibc': 2.5.1
- '@parcel/watcher-linux-arm64-musl': 2.5.1
- '@parcel/watcher-linux-x64-glibc': 2.5.1
- '@parcel/watcher-linux-x64-musl': 2.5.1
- '@parcel/watcher-win32-arm64': 2.5.1
- '@parcel/watcher-win32-ia32': 2.5.1
- '@parcel/watcher-win32-x64': 2.5.1
- optional: true
-
'@phun-ky/typeof@2.0.3': {}
'@pkgjs/parseargs@0.11.0':
@@ -16415,13 +15686,13 @@ snapshots:
'@pkgr/core@0.2.9': {}
- '@plone-collective/volto-authomatic@3.0.0-alpha.6(@plone/components@4.0.0-alpha.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@plone/registry@core+packages+registry)(react-dom@18.2.0(react@18.2.0))(react-intl@3.12.1(@types/react@18.3.24)(react@18.2.0))(react@18.2.0)(semantic-ui-react@2.1.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0))':
+ '@plone-collective/volto-authomatic@3.0.0-alpha.6(@plone/components@4.0.0-alpha.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(@plone/registry@core+packages+registry)(react-dom@18.2.0(react@18.2.0))(react-intl@3.12.1(@types/react@18.3.27)(react@18.2.0))(react@18.2.0)(semantic-ui-react@2.1.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0))':
dependencies:
'@plone/components': 4.0.0-alpha.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
'@plone/registry': link:core/packages/registry
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- react-intl: 3.12.1(@types/react@18.3.24)(react@18.2.0)
+ react-intl: 3.12.1(@types/react@18.3.27)(react@18.2.0)
semantic-ui-react: 2.1.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
'@plone/components@4.0.0-alpha.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
@@ -16434,48 +15705,48 @@ snapshots:
react-aria: 3.44.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
react-aria-components: 1.13.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
react-stately: 3.42.0(react@18.2.0)
- tailwind-merge: 3.3.1
- tailwind-variants: 1.0.0(tailwindcss@4.1.16)
- tailwindcss: 4.1.16
- tailwindcss-animate: 1.0.7(tailwindcss@4.1.16)
+ tailwind-merge: 3.4.0
+ tailwind-variants: 1.0.0(tailwindcss@4.1.17)
+ tailwindcss: 4.1.17
+ tailwindcss-animate: 1.0.7(tailwindcss@4.1.17)
optionalDependencies:
react-dom: 18.2.0(react@18.2.0)
- '@plone/scripts@3.10.1':
+ '@plone/scripts@3.10.3':
dependencies:
'@babel/core': 7.28.5
babel-plugin-react-intl: 5.1.17
babel-preset-razzle: 4.2.17
chalk: 4.1.2
commander: 8.2.0
- comment-json: 4.2.5
- execa: 0.6.3
+ comment-json: 4.4.1
+ execa: 9.6.0
find-parent-dir: 0.3.1
fs-extra: 10.1.0
git-url-parse: 13.1.1
- glob: 7.1.6
+ glob: 10.5.0
lodash: 4.17.21
- mrs-developer: 2.3.0
+ mrs-developer: 2.3.2
pofile: 1.0.10
wait-on: 7.2.0
transitivePeerDependencies:
- debug
- supports-color
- '@pmmmwh/react-refresh-webpack-plugin@0.5.17(react-refresh@0.14.2)(sockjs-client@1.4.0)(type-fest@4.41.0)(webpack-dev-server@4.11.1(webpack@5.90.1))(webpack-hot-middleware@2.26.1)(webpack@5.90.1)':
+ '@pmmmwh/react-refresh-webpack-plugin@0.5.17(react-refresh@0.14.2)(sockjs-client@1.4.0)(type-fest@2.19.0)(webpack-dev-server@4.11.1(webpack@5.90.1))(webpack-hot-middleware@2.26.1)(webpack@5.90.1)':
dependencies:
ansi-html: 0.0.9
- core-js-pure: 3.45.1
+ core-js-pure: 3.47.0
error-stack-parser: 2.1.4
html-entities: 2.6.0
loader-utils: 2.0.4
react-refresh: 0.14.2
- schema-utils: 4.3.2
+ schema-utils: 4.3.3
source-map: 0.7.6
webpack: 5.90.1
optionalDependencies:
sockjs-client: 1.4.0
- type-fest: 4.41.0
+ type-fest: 2.19.0
webpack-dev-server: 4.11.1(webpack@5.90.1)
webpack-hot-middleware: 2.26.1
@@ -16495,25 +15766,6 @@ snapshots:
'@popperjs/core@2.11.8': {}
- '@react-aria/autocomplete@3.0.0-rc.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
- dependencies:
- '@react-aria/combobox': 3.13.2(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@react-aria/focus': 3.21.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@react-aria/i18n': 3.12.12(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@react-aria/interactions': 3.25.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@react-aria/listbox': 3.14.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@react-aria/searchfield': 3.8.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@react-aria/textfield': 3.18.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@react-aria/utils': 3.31.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@react-stately/autocomplete': 3.0.0-beta.3(react@18.2.0)
- '@react-stately/combobox': 3.11.1(react@18.2.0)
- '@react-types/autocomplete': 3.0.0-alpha.34(react@18.2.0)
- '@react-types/button': 3.14.0(react@18.2.0)
- '@react-types/shared': 3.32.1(react@18.2.0)
- '@swc/helpers': 0.5.17
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
-
'@react-aria/autocomplete@3.0.0-rc.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
dependencies:
'@react-aria/combobox': 3.14.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
@@ -16596,18 +15848,7 @@ snapshots:
'@swc/helpers': 0.5.17
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- use-sync-external-store: 1.5.0(react@18.2.0)
-
- '@react-aria/collections@3.0.0-rc.6(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
- dependencies:
- '@react-aria/interactions': 3.25.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@react-aria/ssr': 3.9.10(react@18.2.0)
- '@react-aria/utils': 3.31.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@react-types/shared': 3.32.1(react@18.2.0)
- '@swc/helpers': 0.5.17
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
- use-sync-external-store: 1.5.0(react@18.2.0)
+ use-sync-external-store: 1.6.0(react@18.2.0)
'@react-aria/color@3.1.2(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
dependencies:
@@ -16627,27 +15868,6 @@ snapshots:
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- '@react-aria/combobox@3.13.2(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
- dependencies:
- '@react-aria/focus': 3.21.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@react-aria/i18n': 3.12.12(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@react-aria/listbox': 3.14.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@react-aria/live-announcer': 3.4.4
- '@react-aria/menu': 3.19.2(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@react-aria/overlays': 3.29.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@react-aria/selection': 3.25.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@react-aria/textfield': 3.18.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@react-aria/utils': 3.31.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@react-stately/collections': 3.12.7(react@18.2.0)
- '@react-stately/combobox': 3.11.1(react@18.2.0)
- '@react-stately/form': 3.2.1(react@18.2.0)
- '@react-types/button': 3.14.0(react@18.2.0)
- '@react-types/combobox': 3.13.8(react@18.2.0)
- '@react-types/shared': 3.32.1(react@18.2.0)
- '@swc/helpers': 0.5.17
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
-
'@react-aria/combobox@3.14.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
dependencies:
'@react-aria/focus': 3.21.2(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
@@ -16713,22 +15933,6 @@ snapshots:
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- '@react-aria/dnd@3.11.2(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
- dependencies:
- '@internationalized/string': 3.2.7
- '@react-aria/i18n': 3.12.12(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@react-aria/interactions': 3.25.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@react-aria/live-announcer': 3.4.4
- '@react-aria/overlays': 3.29.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@react-aria/utils': 3.31.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@react-stately/collections': 3.12.7(react@18.2.0)
- '@react-stately/dnd': 3.7.0(react@18.2.0)
- '@react-types/button': 3.14.0(react@18.2.0)
- '@react-types/shared': 3.32.1(react@18.2.0)
- '@swc/helpers': 0.5.17
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
-
'@react-aria/dnd@3.11.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
dependencies:
'@internationalized/string': 3.2.7
@@ -16745,16 +15949,6 @@ snapshots:
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- '@react-aria/focus@3.21.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
- dependencies:
- '@react-aria/interactions': 3.25.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@react-aria/utils': 3.31.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@react-types/shared': 3.32.1(react@18.2.0)
- '@swc/helpers': 0.5.17
- clsx: 2.1.1
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
-
'@react-aria/focus@3.21.2(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
dependencies:
'@react-aria/interactions': 3.25.6(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
@@ -16765,16 +15959,6 @@ snapshots:
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- '@react-aria/form@3.1.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
- dependencies:
- '@react-aria/interactions': 3.25.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@react-aria/utils': 3.31.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@react-stately/form': 3.2.1(react@18.2.0)
- '@react-types/shared': 3.32.1(react@18.2.0)
- '@swc/helpers': 0.5.17
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
-
'@react-aria/form@3.1.2(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
dependencies:
'@react-aria/interactions': 3.25.6(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
@@ -16818,19 +16002,6 @@ snapshots:
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- '@react-aria/i18n@3.12.12(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
- dependencies:
- '@internationalized/date': 3.10.0
- '@internationalized/message': 3.1.8
- '@internationalized/number': 3.6.5
- '@internationalized/string': 3.2.7
- '@react-aria/ssr': 3.9.10(react@18.2.0)
- '@react-aria/utils': 3.31.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@react-types/shared': 3.32.1(react@18.2.0)
- '@swc/helpers': 0.5.17
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
-
'@react-aria/i18n@3.12.13(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
dependencies:
'@internationalized/date': 3.10.0
@@ -16844,16 +16015,6 @@ snapshots:
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- '@react-aria/interactions@3.25.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
- dependencies:
- '@react-aria/ssr': 3.9.10(react@18.2.0)
- '@react-aria/utils': 3.31.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@react-stately/flags': 3.1.2
- '@react-types/shared': 3.32.1(react@18.2.0)
- '@swc/helpers': 0.5.17
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
-
'@react-aria/interactions@3.25.6(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
dependencies:
'@react-aria/ssr': 3.9.10(react@18.2.0)
@@ -16864,14 +16025,6 @@ snapshots:
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- '@react-aria/label@3.7.21(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
- dependencies:
- '@react-aria/utils': 3.31.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@react-types/shared': 3.32.1(react@18.2.0)
- '@swc/helpers': 0.5.17
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
-
'@react-aria/label@3.7.22(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
dependencies:
'@react-aria/utils': 3.31.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
@@ -16887,7 +16040,7 @@ snapshots:
'@swc/helpers': 0.5.17
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- use-sync-external-store: 1.5.0(react@18.2.0)
+ use-sync-external-store: 1.6.0(react@18.2.0)
'@react-aria/link@3.8.6(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
dependencies:
@@ -16899,20 +16052,6 @@ snapshots:
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- '@react-aria/listbox@3.14.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
- dependencies:
- '@react-aria/interactions': 3.25.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@react-aria/label': 3.7.21(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@react-aria/selection': 3.25.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@react-aria/utils': 3.31.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@react-stately/collections': 3.12.7(react@18.2.0)
- '@react-stately/list': 3.13.0(react@18.2.0)
- '@react-types/listbox': 3.7.3(react@18.2.0)
- '@react-types/shared': 3.32.1(react@18.2.0)
- '@swc/helpers': 0.5.17
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
-
'@react-aria/listbox@3.15.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
dependencies:
'@react-aria/interactions': 3.25.6(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
@@ -16931,25 +16070,6 @@ snapshots:
dependencies:
'@swc/helpers': 0.5.17
- '@react-aria/menu@3.19.2(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
- dependencies:
- '@react-aria/focus': 3.21.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@react-aria/i18n': 3.12.12(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@react-aria/interactions': 3.25.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@react-aria/overlays': 3.29.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@react-aria/selection': 3.25.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@react-aria/utils': 3.31.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@react-stately/collections': 3.12.7(react@18.2.0)
- '@react-stately/menu': 3.9.7(react@18.2.0)
- '@react-stately/selection': 3.20.5(react@18.2.0)
- '@react-stately/tree': 3.9.2(react@18.2.0)
- '@react-types/button': 3.14.0(react@18.2.0)
- '@react-types/menu': 3.10.4(react@18.2.0)
- '@react-types/shared': 3.32.1(react@18.2.0)
- '@swc/helpers': 0.5.17
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
-
'@react-aria/menu@3.19.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
dependencies:
'@react-aria/focus': 3.21.2(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
@@ -16994,22 +16114,6 @@ snapshots:
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- '@react-aria/overlays@3.29.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
- dependencies:
- '@react-aria/focus': 3.21.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@react-aria/i18n': 3.12.12(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@react-aria/interactions': 3.25.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@react-aria/ssr': 3.9.10(react@18.2.0)
- '@react-aria/utils': 3.31.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@react-aria/visually-hidden': 3.8.27(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@react-stately/overlays': 3.6.19(react@18.2.0)
- '@react-types/button': 3.14.0(react@18.2.0)
- '@react-types/overlays': 3.9.1(react@18.2.0)
- '@react-types/shared': 3.32.1(react@18.2.0)
- '@swc/helpers': 0.5.17
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
-
'@react-aria/overlays@3.30.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
dependencies:
'@react-aria/focus': 3.21.2(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
@@ -17052,19 +16156,6 @@ snapshots:
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- '@react-aria/searchfield@3.8.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
- dependencies:
- '@react-aria/i18n': 3.12.12(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@react-aria/textfield': 3.18.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@react-aria/utils': 3.31.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@react-stately/searchfield': 3.5.15(react@18.2.0)
- '@react-types/button': 3.14.0(react@18.2.0)
- '@react-types/searchfield': 3.6.5(react@18.2.0)
- '@react-types/shared': 3.32.1(react@18.2.0)
- '@swc/helpers': 0.5.17
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
-
'@react-aria/searchfield@3.8.9(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
dependencies:
'@react-aria/i18n': 3.12.13(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
@@ -17097,18 +16188,6 @@ snapshots:
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- '@react-aria/selection@3.25.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
- dependencies:
- '@react-aria/focus': 3.21.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@react-aria/i18n': 3.12.12(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@react-aria/interactions': 3.25.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@react-aria/utils': 3.31.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@react-stately/selection': 3.20.5(react@18.2.0)
- '@react-types/shared': 3.32.1(react@18.2.0)
- '@swc/helpers': 0.5.17
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
-
'@react-aria/selection@3.26.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
dependencies:
'@react-aria/focus': 3.21.2(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
@@ -17216,20 +16295,6 @@ snapshots:
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- '@react-aria/textfield@3.18.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
- dependencies:
- '@react-aria/form': 3.1.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@react-aria/interactions': 3.25.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@react-aria/label': 3.7.21(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@react-aria/utils': 3.31.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@react-stately/form': 3.2.1(react@18.2.0)
- '@react-stately/utils': 3.10.8(react@18.2.0)
- '@react-types/shared': 3.32.1(react@18.2.0)
- '@react-types/textfield': 3.12.5(react@18.2.0)
- '@swc/helpers': 0.5.17
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
-
'@react-aria/textfield@3.18.2(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
dependencies:
'@react-aria/form': 3.1.2(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
@@ -17268,16 +16333,6 @@ snapshots:
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- '@react-aria/toolbar@3.0.0-beta.20(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
- dependencies:
- '@react-aria/focus': 3.21.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@react-aria/i18n': 3.12.12(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@react-aria/utils': 3.31.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@react-types/shared': 3.32.1(react@18.2.0)
- '@swc/helpers': 0.5.17
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
-
'@react-aria/toolbar@3.0.0-beta.21(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
dependencies:
'@react-aria/focus': 3.21.2(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
@@ -17334,26 +16389,6 @@ snapshots:
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- '@react-aria/virtualizer@4.1.9(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
- dependencies:
- '@react-aria/i18n': 3.12.12(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@react-aria/interactions': 3.25.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@react-aria/utils': 3.31.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@react-stately/virtualizer': 4.4.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@react-types/shared': 3.32.1(react@18.2.0)
- '@swc/helpers': 0.5.17
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
-
- '@react-aria/visually-hidden@3.8.27(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
- dependencies:
- '@react-aria/interactions': 3.25.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@react-aria/utils': 3.31.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@react-types/shared': 3.32.1(react@18.2.0)
- '@swc/helpers': 0.5.17
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
-
'@react-aria/visually-hidden@3.8.28(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
dependencies:
'@react-aria/interactions': 3.25.6(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
@@ -17398,12 +16433,6 @@ snapshots:
'@swc/helpers': 0.5.17
react: 18.2.0
- '@react-stately/collections@3.12.7(react@18.2.0)':
- dependencies:
- '@react-types/shared': 3.32.1(react@18.2.0)
- '@swc/helpers': 0.5.17
- react: 18.2.0
-
'@react-stately/collections@3.12.8(react@18.2.0)':
dependencies:
'@react-types/shared': 3.32.1(react@18.2.0)
@@ -17423,19 +16452,6 @@ snapshots:
'@swc/helpers': 0.5.17
react: 18.2.0
- '@react-stately/combobox@3.11.1(react@18.2.0)':
- dependencies:
- '@react-stately/collections': 3.12.7(react@18.2.0)
- '@react-stately/form': 3.2.1(react@18.2.0)
- '@react-stately/list': 3.13.0(react@18.2.0)
- '@react-stately/overlays': 3.6.19(react@18.2.0)
- '@react-stately/select': 3.7.1(react@18.2.0)
- '@react-stately/utils': 3.10.8(react@18.2.0)
- '@react-types/combobox': 3.13.8(react@18.2.0)
- '@react-types/shared': 3.32.1(react@18.2.0)
- '@swc/helpers': 0.5.17
- react: 18.2.0
-
'@react-stately/combobox@3.12.0(react@18.2.0)':
dependencies:
'@react-stately/collections': 3.12.8(react@18.2.0)
@@ -17473,13 +16489,6 @@ snapshots:
'@swc/helpers': 0.5.17
react: 18.2.0
- '@react-stately/dnd@3.7.0(react@18.2.0)':
- dependencies:
- '@react-stately/selection': 3.20.5(react@18.2.0)
- '@react-types/shared': 3.32.1(react@18.2.0)
- '@swc/helpers': 0.5.17
- react: 18.2.0
-
'@react-stately/dnd@3.7.1(react@18.2.0)':
dependencies:
'@react-stately/selection': 3.20.6(react@18.2.0)
@@ -17491,27 +16500,12 @@ snapshots:
dependencies:
'@swc/helpers': 0.5.17
- '@react-stately/form@3.2.1(react@18.2.0)':
- dependencies:
- '@react-types/shared': 3.32.1(react@18.2.0)
- '@swc/helpers': 0.5.17
- react: 18.2.0
-
'@react-stately/form@3.2.2(react@18.2.0)':
dependencies:
'@react-types/shared': 3.32.1(react@18.2.0)
'@swc/helpers': 0.5.17
react: 18.2.0
- '@react-stately/grid@3.11.5(react@18.2.0)':
- dependencies:
- '@react-stately/collections': 3.12.7(react@18.2.0)
- '@react-stately/selection': 3.20.5(react@18.2.0)
- '@react-types/grid': 3.3.5(react@18.2.0)
- '@react-types/shared': 3.32.1(react@18.2.0)
- '@swc/helpers': 0.5.17
- react: 18.2.0
-
'@react-stately/grid@3.11.6(react@18.2.0)':
dependencies:
'@react-stately/collections': 3.12.8(react@18.2.0)
@@ -17521,18 +16515,6 @@ snapshots:
'@swc/helpers': 0.5.17
react: 18.2.0
- '@react-stately/layout@4.5.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
- dependencies:
- '@react-stately/collections': 3.12.7(react@18.2.0)
- '@react-stately/table': 3.15.0(react@18.2.0)
- '@react-stately/virtualizer': 4.4.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@react-types/grid': 3.3.5(react@18.2.0)
- '@react-types/shared': 3.32.1(react@18.2.0)
- '@react-types/table': 3.13.3(react@18.2.0)
- '@swc/helpers': 0.5.17
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
-
'@react-stately/layout@4.5.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
dependencies:
'@react-stately/collections': 3.12.8(react@18.2.0)
@@ -17545,15 +16527,6 @@ snapshots:
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- '@react-stately/list@3.13.0(react@18.2.0)':
- dependencies:
- '@react-stately/collections': 3.12.7(react@18.2.0)
- '@react-stately/selection': 3.20.5(react@18.2.0)
- '@react-stately/utils': 3.10.8(react@18.2.0)
- '@react-types/shared': 3.32.1(react@18.2.0)
- '@swc/helpers': 0.5.17
- react: 18.2.0
-
'@react-stately/list@3.13.1(react@18.2.0)':
dependencies:
'@react-stately/collections': 3.12.8(react@18.2.0)
@@ -17563,14 +16536,6 @@ snapshots:
'@swc/helpers': 0.5.17
react: 18.2.0
- '@react-stately/menu@3.9.7(react@18.2.0)':
- dependencies:
- '@react-stately/overlays': 3.6.19(react@18.2.0)
- '@react-types/menu': 3.10.4(react@18.2.0)
- '@react-types/shared': 3.32.1(react@18.2.0)
- '@swc/helpers': 0.5.17
- react: 18.2.0
-
'@react-stately/menu@3.9.8(react@18.2.0)':
dependencies:
'@react-stately/overlays': 3.6.20(react@18.2.0)
@@ -17588,13 +16553,6 @@ snapshots:
'@swc/helpers': 0.5.17
react: 18.2.0
- '@react-stately/overlays@3.6.19(react@18.2.0)':
- dependencies:
- '@react-stately/utils': 3.10.8(react@18.2.0)
- '@react-types/overlays': 3.9.1(react@18.2.0)
- '@swc/helpers': 0.5.17
- react: 18.2.0
-
'@react-stately/overlays@3.6.20(react@18.2.0)':
dependencies:
'@react-stately/utils': 3.10.8(react@18.2.0)
@@ -17611,13 +16569,6 @@ snapshots:
'@swc/helpers': 0.5.17
react: 18.2.0
- '@react-stately/searchfield@3.5.15(react@18.2.0)':
- dependencies:
- '@react-stately/utils': 3.10.8(react@18.2.0)
- '@react-types/searchfield': 3.6.5(react@18.2.0)
- '@swc/helpers': 0.5.17
- react: 18.2.0
-
'@react-stately/searchfield@3.5.16(react@18.2.0)':
dependencies:
'@react-stately/utils': 3.10.8(react@18.2.0)
@@ -17625,16 +16576,6 @@ snapshots:
'@swc/helpers': 0.5.17
react: 18.2.0
- '@react-stately/select@3.7.1(react@18.2.0)':
- dependencies:
- '@react-stately/form': 3.2.1(react@18.2.0)
- '@react-stately/list': 3.13.0(react@18.2.0)
- '@react-stately/overlays': 3.6.19(react@18.2.0)
- '@react-types/select': 3.10.1(react@18.2.0)
- '@react-types/shared': 3.32.1(react@18.2.0)
- '@swc/helpers': 0.5.17
- react: 18.2.0
-
'@react-stately/select@3.8.0(react@18.2.0)':
dependencies:
'@react-stately/form': 3.2.2(react@18.2.0)
@@ -17646,14 +16587,6 @@ snapshots:
'@swc/helpers': 0.5.17
react: 18.2.0
- '@react-stately/selection@3.20.5(react@18.2.0)':
- dependencies:
- '@react-stately/collections': 3.12.7(react@18.2.0)
- '@react-stately/utils': 3.10.8(react@18.2.0)
- '@react-types/shared': 3.32.1(react@18.2.0)
- '@swc/helpers': 0.5.17
- react: 18.2.0
-
'@react-stately/selection@3.20.6(react@18.2.0)':
dependencies:
'@react-stately/collections': 3.12.8(react@18.2.0)
@@ -17670,19 +16603,6 @@ snapshots:
'@swc/helpers': 0.5.17
react: 18.2.0
- '@react-stately/table@3.15.0(react@18.2.0)':
- dependencies:
- '@react-stately/collections': 3.12.7(react@18.2.0)
- '@react-stately/flags': 3.1.2
- '@react-stately/grid': 3.11.5(react@18.2.0)
- '@react-stately/selection': 3.20.5(react@18.2.0)
- '@react-stately/utils': 3.10.8(react@18.2.0)
- '@react-types/grid': 3.3.5(react@18.2.0)
- '@react-types/shared': 3.32.1(react@18.2.0)
- '@react-types/table': 3.13.3(react@18.2.0)
- '@swc/helpers': 0.5.17
- react: 18.2.0
-
'@react-stately/table@3.15.1(react@18.2.0)':
dependencies:
'@react-stately/collections': 3.12.8(react@18.2.0)
@@ -17708,7 +16628,7 @@ snapshots:
dependencies:
'@swc/helpers': 0.5.17
react: 18.2.0
- use-sync-external-store: 1.5.0(react@18.2.0)
+ use-sync-external-store: 1.6.0(react@18.2.0)
'@react-stately/toggle@3.9.2(react@18.2.0)':
dependencies:
@@ -17725,15 +16645,6 @@ snapshots:
'@swc/helpers': 0.5.17
react: 18.2.0
- '@react-stately/tree@3.9.2(react@18.2.0)':
- dependencies:
- '@react-stately/collections': 3.12.7(react@18.2.0)
- '@react-stately/selection': 3.20.5(react@18.2.0)
- '@react-stately/utils': 3.10.8(react@18.2.0)
- '@react-types/shared': 3.32.1(react@18.2.0)
- '@swc/helpers': 0.5.17
- react: 18.2.0
-
'@react-stately/tree@3.9.3(react@18.2.0)':
dependencies:
'@react-stately/collections': 3.12.8(react@18.2.0)
@@ -17748,14 +16659,6 @@ snapshots:
'@swc/helpers': 0.5.17
react: 18.2.0
- '@react-stately/virtualizer@4.4.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
- dependencies:
- '@react-aria/utils': 3.31.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@react-types/shared': 3.32.1(react@18.2.0)
- '@swc/helpers': 0.5.17
- react: 18.2.0
- react-dom: 18.2.0(react@18.2.0)
-
'@react-stately/virtualizer@4.4.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
dependencies:
'@react-types/shared': 3.32.1(react@18.2.0)
@@ -17763,13 +16666,6 @@ snapshots:
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- '@react-types/autocomplete@3.0.0-alpha.34(react@18.2.0)':
- dependencies:
- '@react-types/combobox': 3.13.8(react@18.2.0)
- '@react-types/searchfield': 3.6.5(react@18.2.0)
- '@react-types/shared': 3.32.1(react@18.2.0)
- react: 18.2.0
-
'@react-types/autocomplete@3.0.0-alpha.35(react@18.2.0)':
dependencies:
'@react-types/combobox': 3.13.9(react@18.2.0)
@@ -17783,11 +16679,6 @@ snapshots:
'@react-types/shared': 3.32.1(react@18.2.0)
react: 18.2.0
- '@react-types/button@3.14.0(react@18.2.0)':
- dependencies:
- '@react-types/shared': 3.32.1(react@18.2.0)
- react: 18.2.0
-
'@react-types/button@3.14.1(react@18.2.0)':
dependencies:
'@react-types/shared': 3.32.1(react@18.2.0)
@@ -17810,11 +16701,6 @@ snapshots:
'@react-types/slider': 3.8.2(react@18.2.0)
react: 18.2.0
- '@react-types/combobox@3.13.8(react@18.2.0)':
- dependencies:
- '@react-types/shared': 3.32.1(react@18.2.0)
- react: 18.2.0
-
'@react-types/combobox@3.13.9(react@18.2.0)':
dependencies:
'@react-types/shared': 3.32.1(react@18.2.0)
@@ -17834,21 +16720,11 @@ snapshots:
'@react-types/shared': 3.32.1(react@18.2.0)
react: 18.2.0
- '@react-types/form@3.7.15(react@18.2.0)':
- dependencies:
- '@react-types/shared': 3.32.1(react@18.2.0)
- react: 18.2.0
-
'@react-types/form@3.7.16(react@18.2.0)':
dependencies:
'@react-types/shared': 3.32.1(react@18.2.0)
react: 18.2.0
- '@react-types/grid@3.3.5(react@18.2.0)':
- dependencies:
- '@react-types/shared': 3.32.1(react@18.2.0)
- react: 18.2.0
-
'@react-types/grid@3.3.6(react@18.2.0)':
dependencies:
'@react-types/shared': 3.32.1(react@18.2.0)
@@ -17859,22 +16735,11 @@ snapshots:
'@react-types/shared': 3.32.1(react@18.2.0)
react: 18.2.0
- '@react-types/listbox@3.7.3(react@18.2.0)':
- dependencies:
- '@react-types/shared': 3.32.1(react@18.2.0)
- react: 18.2.0
-
'@react-types/listbox@3.7.4(react@18.2.0)':
dependencies:
'@react-types/shared': 3.32.1(react@18.2.0)
react: 18.2.0
- '@react-types/menu@3.10.4(react@18.2.0)':
- dependencies:
- '@react-types/overlays': 3.9.1(react@18.2.0)
- '@react-types/shared': 3.32.1(react@18.2.0)
- react: 18.2.0
-
'@react-types/menu@3.10.5(react@18.2.0)':
dependencies:
'@react-types/overlays': 3.9.2(react@18.2.0)
@@ -17891,11 +16756,6 @@ snapshots:
'@react-types/shared': 3.32.1(react@18.2.0)
react: 18.2.0
- '@react-types/overlays@3.9.1(react@18.2.0)':
- dependencies:
- '@react-types/shared': 3.32.1(react@18.2.0)
- react: 18.2.0
-
'@react-types/overlays@3.9.2(react@18.2.0)':
dependencies:
'@react-types/shared': 3.32.1(react@18.2.0)
@@ -17911,21 +16771,10 @@ snapshots:
'@react-types/shared': 3.32.1(react@18.2.0)
react: 18.2.0
- '@react-types/searchfield@3.6.5(react@18.2.0)':
- dependencies:
- '@react-types/shared': 3.32.1(react@18.2.0)
- '@react-types/textfield': 3.12.5(react@18.2.0)
- react: 18.2.0
-
'@react-types/searchfield@3.6.6(react@18.2.0)':
dependencies:
'@react-types/shared': 3.32.1(react@18.2.0)
- '@react-types/textfield': 3.12.6(react@18.2.0)
- react: 18.2.0
-
- '@react-types/select@3.10.1(react@18.2.0)':
- dependencies:
- '@react-types/shared': 3.32.1(react@18.2.0)
+ '@react-types/textfield': 3.12.6(react@18.2.0)
react: 18.2.0
'@react-types/select@3.11.0(react@18.2.0)':
@@ -17947,12 +16796,6 @@ snapshots:
'@react-types/shared': 3.32.1(react@18.2.0)
react: 18.2.0
- '@react-types/table@3.13.3(react@18.2.0)':
- dependencies:
- '@react-types/grid': 3.3.5(react@18.2.0)
- '@react-types/shared': 3.32.1(react@18.2.0)
- react: 18.2.0
-
'@react-types/table@3.13.4(react@18.2.0)':
dependencies:
'@react-types/grid': 3.3.6(react@18.2.0)
@@ -17964,11 +16807,6 @@ snapshots:
'@react-types/shared': 3.32.1(react@18.2.0)
react: 18.2.0
- '@react-types/textfield@3.12.5(react@18.2.0)':
- dependencies:
- '@react-types/shared': 3.32.1(react@18.2.0)
- react: 18.2.0
-
'@react-types/textfield@3.12.6(react@18.2.0)':
dependencies:
'@react-types/shared': 3.32.1(react@18.2.0)
@@ -17988,118 +16826,85 @@ snapshots:
'@rolldown/pluginutils@1.0.0-beta.27': {}
- '@rolldown/pluginutils@1.0.0-beta.43': {}
+ '@rolldown/pluginutils@1.0.0-beta.47': {}
- '@rollup/pluginutils@5.2.0(rollup@4.50.0)':
+ '@rollup/pluginutils@5.3.0(rollup@4.53.3)':
dependencies:
'@types/estree': 1.0.8
estree-walker: 2.0.2
picomatch: 4.0.3
optionalDependencies:
- rollup: 4.50.0
-
- '@rollup/rollup-android-arm-eabi@4.50.0':
- optional: true
+ rollup: 4.53.3
- '@rollup/rollup-android-arm64@4.50.0':
+ '@rollup/rollup-android-arm-eabi@4.53.3':
optional: true
- '@rollup/rollup-darwin-arm64@4.50.0':
+ '@rollup/rollup-android-arm64@4.53.3':
optional: true
- '@rollup/rollup-darwin-x64@4.50.0':
+ '@rollup/rollup-darwin-arm64@4.53.3':
optional: true
- '@rollup/rollup-freebsd-arm64@4.50.0':
+ '@rollup/rollup-darwin-x64@4.53.3':
optional: true
- '@rollup/rollup-freebsd-x64@4.50.0':
+ '@rollup/rollup-freebsd-arm64@4.53.3':
optional: true
- '@rollup/rollup-linux-arm-gnueabihf@4.50.0':
+ '@rollup/rollup-freebsd-x64@4.53.3':
optional: true
- '@rollup/rollup-linux-arm-musleabihf@4.50.0':
+ '@rollup/rollup-linux-arm-gnueabihf@4.53.3':
optional: true
- '@rollup/rollup-linux-arm64-gnu@4.50.0':
+ '@rollup/rollup-linux-arm-musleabihf@4.53.3':
optional: true
- '@rollup/rollup-linux-arm64-musl@4.50.0':
+ '@rollup/rollup-linux-arm64-gnu@4.53.3':
optional: true
- '@rollup/rollup-linux-loongarch64-gnu@4.50.0':
+ '@rollup/rollup-linux-arm64-musl@4.53.3':
optional: true
- '@rollup/rollup-linux-ppc64-gnu@4.50.0':
+ '@rollup/rollup-linux-loong64-gnu@4.53.3':
optional: true
- '@rollup/rollup-linux-riscv64-gnu@4.50.0':
+ '@rollup/rollup-linux-ppc64-gnu@4.53.3':
optional: true
- '@rollup/rollup-linux-riscv64-musl@4.50.0':
+ '@rollup/rollup-linux-riscv64-gnu@4.53.3':
optional: true
- '@rollup/rollup-linux-s390x-gnu@4.50.0':
+ '@rollup/rollup-linux-riscv64-musl@4.53.3':
optional: true
- '@rollup/rollup-linux-x64-gnu@4.50.0':
+ '@rollup/rollup-linux-s390x-gnu@4.53.3':
optional: true
- '@rollup/rollup-linux-x64-musl@4.50.0':
+ '@rollup/rollup-linux-x64-gnu@4.53.3':
optional: true
- '@rollup/rollup-openharmony-arm64@4.50.0':
+ '@rollup/rollup-linux-x64-musl@4.53.3':
optional: true
- '@rollup/rollup-win32-arm64-msvc@4.50.0':
+ '@rollup/rollup-openharmony-arm64@4.53.3':
optional: true
- '@rollup/rollup-win32-ia32-msvc@4.50.0':
+ '@rollup/rollup-win32-arm64-msvc@4.53.3':
optional: true
- '@rollup/rollup-win32-x64-msvc@4.50.0':
+ '@rollup/rollup-win32-ia32-msvc@4.53.3':
optional: true
- '@rtsao/scc@1.1.0': {}
-
- '@rushstack/eslint-patch@1.12.0': {}
-
- '@rushstack/node-core-library@4.0.2(@types/node@24.10.0)':
- dependencies:
- fs-extra: 7.0.1
- import-lazy: 4.0.0
- jju: 1.4.0
- resolve: 1.22.10
- semver: 7.5.4
- z-schema: 5.0.5
- optionalDependencies:
- '@types/node': 24.10.0
+ '@rollup/rollup-win32-x64-gnu@4.53.3':
optional: true
- '@rushstack/rig-package@0.5.2':
- dependencies:
- resolve: 1.22.10
- strip-json-comments: 3.1.1
+ '@rollup/rollup-win32-x64-msvc@4.53.3':
optional: true
- '@rushstack/terminal@0.10.0(@types/node@24.10.0)':
- dependencies:
- '@rushstack/node-core-library': 4.0.2(@types/node@24.10.0)
- supports-color: 8.1.1
- optionalDependencies:
- '@types/node': 24.10.0
- optional: true
+ '@rtsao/scc@1.1.0': {}
- '@rushstack/ts-command-line@4.19.1(@types/node@24.10.0)':
- dependencies:
- '@rushstack/terminal': 0.10.0(@types/node@24.10.0)
- '@types/argparse': 1.0.38
- argparse: 1.0.10
- string-argv: 0.3.2
- transitivePeerDependencies:
- - '@types/node'
- optional: true
+ '@rushstack/eslint-patch@1.15.0': {}
'@sec-ant/readable-stream@0.4.1': {}
@@ -18122,6 +16927,8 @@ snapshots:
'@sinclair/typebox@0.27.8': {}
+ '@sinclair/typebox@0.34.41': {}
+
'@sindresorhus/is@4.6.0': {}
'@sindresorhus/is@5.6.0': {}
@@ -18134,16 +16941,6 @@ snapshots:
dependencies:
type-detect: 4.0.8
- '@sinonjs/commons@3.0.1':
- dependencies:
- type-detect: 4.0.8
- optional: true
-
- '@sinonjs/fake-timers@10.3.0':
- dependencies:
- '@sinonjs/commons': 3.0.1
- optional: true
-
'@sinonjs/fake-timers@6.0.1':
dependencies:
'@sinonjs/commons': 1.8.6
@@ -18171,9 +16968,9 @@ snapshots:
storybook: 8.6.14(prettier@3.2.5)
ts-dedent: 2.2.0
- '@storybook/addon-docs@8.6.14(@types/react@18.3.24)(storybook@8.6.14(prettier@3.2.5))':
+ '@storybook/addon-docs@8.6.14(@types/react@18.3.27)(storybook@8.6.14(prettier@3.2.5))':
dependencies:
- '@mdx-js/react': 3.1.1(@types/react@18.3.24)(react@18.2.0)
+ '@mdx-js/react': 3.1.1(@types/react@18.3.27)(react@18.2.0)
'@storybook/blocks': 8.6.14(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(storybook@8.6.14(prettier@3.2.5))
'@storybook/csf-plugin': 8.6.14(storybook@8.6.14(prettier@3.2.5))
'@storybook/react-dom-shim': 8.6.14(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(storybook@8.6.14(prettier@3.2.5))
@@ -18184,12 +16981,12 @@ snapshots:
transitivePeerDependencies:
- '@types/react'
- '@storybook/addon-essentials@8.6.14(@types/react@18.3.24)(storybook@8.6.14(prettier@3.2.5))':
+ '@storybook/addon-essentials@8.6.14(@types/react@18.3.27)(storybook@8.6.14(prettier@3.2.5))':
dependencies:
'@storybook/addon-actions': 8.6.14(storybook@8.6.14(prettier@3.2.5))
'@storybook/addon-backgrounds': 8.6.14(storybook@8.6.14(prettier@3.2.5))
'@storybook/addon-controls': 8.6.14(storybook@8.6.14(prettier@3.2.5))
- '@storybook/addon-docs': 8.6.14(@types/react@18.3.24)(storybook@8.6.14(prettier@3.2.5))
+ '@storybook/addon-docs': 8.6.14(@types/react@18.3.27)(storybook@8.6.14(prettier@3.2.5))
'@storybook/addon-highlight': 8.6.14(storybook@8.6.14(prettier@3.2.5))
'@storybook/addon-measure': 8.6.14(storybook@8.6.14(prettier@3.2.5))
'@storybook/addon-outline': 8.6.14(storybook@8.6.14(prettier@3.2.5))
@@ -18261,37 +17058,37 @@ snapshots:
'@storybook/blocks@8.6.14(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(storybook@8.6.14(prettier@3.2.5))':
dependencies:
- '@storybook/icons': 1.4.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ '@storybook/icons': 1.6.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
storybook: 8.6.14(prettier@3.2.5)
ts-dedent: 2.2.0
optionalDependencies:
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- '@storybook/builder-vite@8.6.14(storybook@8.6.14(prettier@3.2.5))(vite@5.4.19(@types/node@24.10.0)(less@3.11.1)(lightningcss@1.30.2)(sass@1.92.0)(terser@5.44.0))':
+ '@storybook/builder-vite@8.6.14(storybook@8.6.14(prettier@3.2.5))(vite@5.4.21(@types/node@24.10.1)(less@3.11.1)(lightningcss@1.30.2)(sass@1.58.0)(terser@5.44.1))':
dependencies:
'@storybook/csf-plugin': 8.6.14(storybook@8.6.14(prettier@3.2.5))
browser-assert: 1.2.1
storybook: 8.6.14(prettier@3.2.5)
ts-dedent: 2.2.0
- vite: 5.4.19(@types/node@24.10.0)(less@3.11.1)(lightningcss@1.30.2)(sass@1.92.0)(terser@5.44.0)
+ vite: 5.4.21(@types/node@24.10.1)(less@3.11.1)(lightningcss@1.30.2)(sass@1.58.0)(terser@5.44.1)
- '@storybook/builder-webpack5@8.6.14(storybook@8.6.14(prettier@3.2.5))(typescript@5.9.2)':
+ '@storybook/builder-webpack5@8.6.14(storybook@8.6.14(prettier@3.2.5))(typescript@5.9.3)':
dependencies:
'@storybook/core-webpack': 8.6.14(storybook@8.6.14(prettier@3.2.5))
- '@types/semver': 7.7.0
+ '@types/semver': 7.7.1
browser-assert: 1.2.1
case-sensitive-paths-webpack-plugin: 2.4.0
cjs-module-lexer: 1.4.3
constants-browserify: 1.0.0
css-loader: 6.11.0(webpack@5.90.1)
es-module-lexer: 1.7.0
- fork-ts-checker-webpack-plugin: 8.0.0(typescript@5.9.2)(webpack@5.90.1)
+ fork-ts-checker-webpack-plugin: 8.0.0(typescript@5.9.3)(webpack@5.90.1)
html-webpack-plugin: 5.5.0(webpack@5.90.1)
- magic-string: 0.30.18
+ magic-string: 0.30.21
path-browserify: 1.0.1
process: 0.11.10
- semver: 7.7.2
+ semver: 7.7.3
storybook: 8.6.14(prettier@3.2.5)
style-loader: 3.3.1(webpack@5.90.1)
terser-webpack-plugin: 5.3.6(webpack@5.90.1)
@@ -18304,7 +17101,7 @@ snapshots:
webpack-hot-middleware: 2.26.1
webpack-virtual-modules: 0.6.2
optionalDependencies:
- typescript: 5.9.2
+ typescript: 5.9.3
transitivePeerDependencies:
- '@rspack/core'
- '@swc/core'
@@ -18326,12 +17123,12 @@ snapshots:
'@storybook/theming': 8.6.14(storybook@8.6.14(prettier@3.2.5))
better-opn: 3.0.2
browser-assert: 1.2.1
- esbuild: 0.25.9
- esbuild-register: 3.6.0(esbuild@0.25.9)
+ esbuild: 0.25.12
+ esbuild-register: 3.6.0(esbuild@0.25.12)
jsdoc-type-pratt-parser: 4.8.0
process: 0.11.10
recast: 0.23.11
- semver: 7.7.2
+ semver: 7.7.3
util: 0.12.5
ws: 8.18.3
optionalDependencies:
@@ -18353,7 +17150,7 @@ snapshots:
'@storybook/global@5.0.0': {}
- '@storybook/icons@1.4.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ '@storybook/icons@1.6.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
dependencies:
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
@@ -18368,24 +17165,24 @@ snapshots:
dependencies:
storybook: 8.6.14(prettier@3.2.5)
- '@storybook/preset-react-webpack@8.6.14(@storybook/test@8.6.14(storybook@8.6.14(prettier@3.2.5)))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(storybook@8.6.14(prettier@3.2.5))(typescript@5.9.2)':
+ '@storybook/preset-react-webpack@8.6.14(@storybook/test@8.6.14(storybook@8.6.14(prettier@3.2.5)))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(storybook@8.6.14(prettier@3.2.5))(typescript@5.9.3)':
dependencies:
'@storybook/core-webpack': 8.6.14(storybook@8.6.14(prettier@3.2.5))
- '@storybook/react': 8.6.14(@storybook/test@8.6.14(storybook@8.6.14(prettier@3.2.5)))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(storybook@8.6.14(prettier@3.2.5))(typescript@5.9.2)
- '@storybook/react-docgen-typescript-plugin': 1.0.6--canary.9.0c3f3b7.0(typescript@5.9.2)(webpack@5.90.1)
- '@types/semver': 7.7.0
+ '@storybook/react': 8.6.14(@storybook/test@8.6.14(storybook@8.6.14(prettier@3.2.5)))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(storybook@8.6.14(prettier@3.2.5))(typescript@5.9.3)
+ '@storybook/react-docgen-typescript-plugin': 1.0.6--canary.9.0c3f3b7.0(typescript@5.9.3)(webpack@5.90.1)
+ '@types/semver': 7.7.1
find-up: 5.0.0
- magic-string: 0.30.18
+ magic-string: 0.30.21
react: 18.2.0
react-docgen: 7.1.1
react-dom: 18.2.0(react@18.2.0)
- resolve: 1.22.10
- semver: 7.7.2
+ resolve: 1.22.11
+ semver: 7.7.3
storybook: 8.6.14(prettier@3.2.5)
tsconfig-paths: 4.2.0
webpack: 5.90.1
optionalDependencies:
- typescript: 5.9.2
+ typescript: 5.9.3
transitivePeerDependencies:
- '@storybook/test'
- '@swc/core'
@@ -18398,16 +17195,16 @@ snapshots:
dependencies:
storybook: 8.6.14(prettier@3.2.5)
- '@storybook/react-docgen-typescript-plugin@1.0.6--canary.9.0c3f3b7.0(typescript@5.9.2)(webpack@5.90.1)':
+ '@storybook/react-docgen-typescript-plugin@1.0.6--canary.9.0c3f3b7.0(typescript@5.9.3)(webpack@5.90.1)':
dependencies:
debug: 4.3.4(supports-color@8.1.1)
endent: 2.1.0
find-cache-dir: 3.3.2
flat-cache: 3.2.0
micromatch: 4.0.8
- react-docgen-typescript: 2.4.0(typescript@5.9.2)
+ react-docgen-typescript: 2.4.0(typescript@5.9.3)
tslib: 2.8.1
- typescript: 5.9.2
+ typescript: 5.9.3
webpack: 5.90.1
transitivePeerDependencies:
- supports-color
@@ -18418,21 +17215,21 @@ snapshots:
react-dom: 18.2.0(react@18.2.0)
storybook: 8.6.14(prettier@3.2.5)
- '@storybook/react-vite@8.6.14(@storybook/test@8.6.14(storybook@8.6.14(prettier@3.2.5)))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(rollup@4.50.0)(storybook@8.6.14(prettier@3.2.5))(typescript@5.9.2)(vite@5.4.19(@types/node@24.10.0)(less@3.11.1)(lightningcss@1.30.2)(sass@1.92.0)(terser@5.44.0))':
+ '@storybook/react-vite@8.6.14(@storybook/test@8.6.14(storybook@8.6.14(prettier@3.2.5)))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(rollup@4.53.3)(storybook@8.6.14(prettier@3.2.5))(typescript@5.9.3)(vite@5.4.21(@types/node@24.10.1)(less@3.11.1)(lightningcss@1.30.2)(sass@1.58.0)(terser@5.44.1))':
dependencies:
- '@joshwooding/vite-plugin-react-docgen-typescript': 0.5.0(typescript@5.9.2)(vite@5.4.19(@types/node@24.10.0)(less@3.11.1)(lightningcss@1.30.2)(sass@1.92.0)(terser@5.44.0))
- '@rollup/pluginutils': 5.2.0(rollup@4.50.0)
- '@storybook/builder-vite': 8.6.14(storybook@8.6.14(prettier@3.2.5))(vite@5.4.19(@types/node@24.10.0)(less@3.11.1)(lightningcss@1.30.2)(sass@1.92.0)(terser@5.44.0))
- '@storybook/react': 8.6.14(@storybook/test@8.6.14(storybook@8.6.14(prettier@3.2.5)))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(storybook@8.6.14(prettier@3.2.5))(typescript@5.9.2)
+ '@joshwooding/vite-plugin-react-docgen-typescript': 0.5.0(typescript@5.9.3)(vite@5.4.21(@types/node@24.10.1)(less@3.11.1)(lightningcss@1.30.2)(sass@1.58.0)(terser@5.44.1))
+ '@rollup/pluginutils': 5.3.0(rollup@4.53.3)
+ '@storybook/builder-vite': 8.6.14(storybook@8.6.14(prettier@3.2.5))(vite@5.4.21(@types/node@24.10.1)(less@3.11.1)(lightningcss@1.30.2)(sass@1.58.0)(terser@5.44.1))
+ '@storybook/react': 8.6.14(@storybook/test@8.6.14(storybook@8.6.14(prettier@3.2.5)))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(storybook@8.6.14(prettier@3.2.5))(typescript@5.9.3)
find-up: 5.0.0
- magic-string: 0.30.18
+ magic-string: 0.30.21
react: 18.2.0
react-docgen: 7.1.1
react-dom: 18.2.0(react@18.2.0)
- resolve: 1.22.10
+ resolve: 1.22.11
storybook: 8.6.14(prettier@3.2.5)
tsconfig-paths: 4.2.0
- vite: 5.4.19(@types/node@24.10.0)(less@3.11.1)(lightningcss@1.30.2)(sass@1.92.0)(terser@5.44.0)
+ vite: 5.4.21(@types/node@24.10.1)(less@3.11.1)(lightningcss@1.30.2)(sass@1.58.0)(terser@5.44.1)
optionalDependencies:
'@storybook/test': 8.6.14(storybook@8.6.14(prettier@3.2.5))
transitivePeerDependencies:
@@ -18440,16 +17237,16 @@ snapshots:
- supports-color
- typescript
- '@storybook/react-webpack5@8.6.14(@storybook/test@8.6.14(storybook@8.6.14(prettier@3.2.5)))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(storybook@8.6.14(prettier@3.2.5))(typescript@5.9.2)':
+ '@storybook/react-webpack5@8.6.14(@storybook/test@8.6.14(storybook@8.6.14(prettier@3.2.5)))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(storybook@8.6.14(prettier@3.2.5))(typescript@5.9.3)':
dependencies:
- '@storybook/builder-webpack5': 8.6.14(storybook@8.6.14(prettier@3.2.5))(typescript@5.9.2)
- '@storybook/preset-react-webpack': 8.6.14(@storybook/test@8.6.14(storybook@8.6.14(prettier@3.2.5)))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(storybook@8.6.14(prettier@3.2.5))(typescript@5.9.2)
- '@storybook/react': 8.6.14(@storybook/test@8.6.14(storybook@8.6.14(prettier@3.2.5)))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(storybook@8.6.14(prettier@3.2.5))(typescript@5.9.2)
+ '@storybook/builder-webpack5': 8.6.14(storybook@8.6.14(prettier@3.2.5))(typescript@5.9.3)
+ '@storybook/preset-react-webpack': 8.6.14(@storybook/test@8.6.14(storybook@8.6.14(prettier@3.2.5)))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(storybook@8.6.14(prettier@3.2.5))(typescript@5.9.3)
+ '@storybook/react': 8.6.14(@storybook/test@8.6.14(storybook@8.6.14(prettier@3.2.5)))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(storybook@8.6.14(prettier@3.2.5))(typescript@5.9.3)
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
storybook: 8.6.14(prettier@3.2.5)
optionalDependencies:
- typescript: 5.9.2
+ typescript: 5.9.3
transitivePeerDependencies:
- '@rspack/core'
- '@storybook/test'
@@ -18459,7 +17256,7 @@ snapshots:
- uglify-js
- webpack-cli
- '@storybook/react@8.6.14(@storybook/test@8.6.14(storybook@8.6.14(prettier@3.2.5)))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(storybook@8.6.14(prettier@3.2.5))(typescript@5.9.2)':
+ '@storybook/react@8.6.14(@storybook/test@8.6.14(storybook@8.6.14(prettier@3.2.5)))(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(storybook@8.6.14(prettier@3.2.5))(typescript@5.9.3)':
dependencies:
'@storybook/components': 8.6.14(storybook@8.6.14(prettier@3.2.5))
'@storybook/global': 5.0.0
@@ -18472,7 +17269,7 @@ snapshots:
storybook: 8.6.14(prettier@3.2.5)
optionalDependencies:
'@storybook/test': 8.6.14(storybook@8.6.14(prettier@3.2.5))
- typescript: 5.9.2
+ typescript: 5.9.3
'@storybook/test@8.6.14(storybook@8.6.14(prettier@3.2.5))':
dependencies:
@@ -18533,12 +17330,12 @@ snapshots:
'@svgr/babel-plugin-transform-react-native-svg': 8.1.0(@babel/core@7.28.5)
'@svgr/babel-plugin-transform-svg-component': 8.0.0(@babel/core@7.28.5)
- '@svgr/core@8.1.0(typescript@5.9.2)':
+ '@svgr/core@8.1.0(typescript@5.9.3)':
dependencies:
'@babel/core': 7.28.5
'@svgr/babel-preset': 8.1.0(@babel/core@7.28.5)
camelcase: 6.3.0
- cosmiconfig: 8.3.6(typescript@5.9.2)
+ cosmiconfig: 8.3.6(typescript@5.9.3)
snake-case: 3.0.4
transitivePeerDependencies:
- supports-color
@@ -18549,20 +17346,20 @@ snapshots:
'@babel/types': 7.28.5
entities: 4.5.0
- '@svgr/plugin-jsx@8.1.0(@svgr/core@8.1.0(typescript@5.9.2))':
+ '@svgr/plugin-jsx@8.1.0(@svgr/core@8.1.0(typescript@5.9.3))':
dependencies:
'@babel/core': 7.28.5
'@svgr/babel-preset': 8.1.0(@babel/core@7.28.5)
- '@svgr/core': 8.1.0(typescript@5.9.2)
+ '@svgr/core': 8.1.0(typescript@5.9.3)
'@svgr/hast-util-to-babel-ast': 8.0.0
svg-parser: 2.0.4
transitivePeerDependencies:
- supports-color
- '@svgr/plugin-svgo@8.1.0(@svgr/core@8.1.0(typescript@5.9.2))(typescript@5.9.2)':
+ '@svgr/plugin-svgo@8.1.0(@svgr/core@8.1.0(typescript@5.9.3))(typescript@5.9.3)':
dependencies:
- '@svgr/core': 8.1.0(typescript@5.9.2)
- cosmiconfig: 8.3.6(typescript@5.9.2)
+ '@svgr/core': 8.1.0(typescript@5.9.3)
+ cosmiconfig: 8.3.6(typescript@5.9.3)
deepmerge: 4.3.1
svgo: 3.3.2
transitivePeerDependencies:
@@ -18576,7 +17373,7 @@ snapshots:
dependencies:
defer-to-connect: 2.0.1
- '@tailwindcss/node@4.1.16':
+ '@tailwindcss/node@4.1.17':
dependencies:
'@jridgewell/remapping': 2.3.5
enhanced-resolve: 5.18.3
@@ -18584,77 +17381,77 @@ snapshots:
lightningcss: 1.30.2
magic-string: 0.30.21
source-map-js: 1.2.1
- tailwindcss: 4.1.16
+ tailwindcss: 4.1.17
- '@tailwindcss/oxide-android-arm64@4.1.16':
+ '@tailwindcss/oxide-android-arm64@4.1.17':
optional: true
- '@tailwindcss/oxide-darwin-arm64@4.1.16':
+ '@tailwindcss/oxide-darwin-arm64@4.1.17':
optional: true
- '@tailwindcss/oxide-darwin-x64@4.1.16':
+ '@tailwindcss/oxide-darwin-x64@4.1.17':
optional: true
- '@tailwindcss/oxide-freebsd-x64@4.1.16':
+ '@tailwindcss/oxide-freebsd-x64@4.1.17':
optional: true
- '@tailwindcss/oxide-linux-arm-gnueabihf@4.1.16':
+ '@tailwindcss/oxide-linux-arm-gnueabihf@4.1.17':
optional: true
- '@tailwindcss/oxide-linux-arm64-gnu@4.1.16':
+ '@tailwindcss/oxide-linux-arm64-gnu@4.1.17':
optional: true
- '@tailwindcss/oxide-linux-arm64-musl@4.1.16':
+ '@tailwindcss/oxide-linux-arm64-musl@4.1.17':
optional: true
- '@tailwindcss/oxide-linux-x64-gnu@4.1.16':
+ '@tailwindcss/oxide-linux-x64-gnu@4.1.17':
optional: true
- '@tailwindcss/oxide-linux-x64-musl@4.1.16':
+ '@tailwindcss/oxide-linux-x64-musl@4.1.17':
optional: true
- '@tailwindcss/oxide-wasm32-wasi@4.1.16':
+ '@tailwindcss/oxide-wasm32-wasi@4.1.17':
optional: true
- '@tailwindcss/oxide-win32-arm64-msvc@4.1.16':
+ '@tailwindcss/oxide-win32-arm64-msvc@4.1.17':
optional: true
- '@tailwindcss/oxide-win32-x64-msvc@4.1.16':
+ '@tailwindcss/oxide-win32-x64-msvc@4.1.17':
optional: true
- '@tailwindcss/oxide@4.1.16':
+ '@tailwindcss/oxide@4.1.17':
optionalDependencies:
- '@tailwindcss/oxide-android-arm64': 4.1.16
- '@tailwindcss/oxide-darwin-arm64': 4.1.16
- '@tailwindcss/oxide-darwin-x64': 4.1.16
- '@tailwindcss/oxide-freebsd-x64': 4.1.16
- '@tailwindcss/oxide-linux-arm-gnueabihf': 4.1.16
- '@tailwindcss/oxide-linux-arm64-gnu': 4.1.16
- '@tailwindcss/oxide-linux-arm64-musl': 4.1.16
- '@tailwindcss/oxide-linux-x64-gnu': 4.1.16
- '@tailwindcss/oxide-linux-x64-musl': 4.1.16
- '@tailwindcss/oxide-wasm32-wasi': 4.1.16
- '@tailwindcss/oxide-win32-arm64-msvc': 4.1.16
- '@tailwindcss/oxide-win32-x64-msvc': 4.1.16
-
- '@tailwindcss/vite@4.1.16(vite@6.4.1(@types/node@24.10.0)(jiti@2.6.1)(less@3.11.1)(lightningcss@1.30.1)(sass@1.92.0)(terser@5.44.0)(yaml@2.8.1))':
- dependencies:
- '@tailwindcss/node': 4.1.16
- '@tailwindcss/oxide': 4.1.16
- tailwindcss: 4.1.16
- vite: 6.4.1(@types/node@24.10.0)(jiti@2.6.1)(less@3.11.1)(lightningcss@1.30.1)(sass@1.92.0)(terser@5.44.0)(yaml@2.8.1)
-
- '@tanstack/query-core@5.85.9': {}
-
- '@tanstack/react-query@5.85.9(react@18.2.0)':
- dependencies:
- '@tanstack/query-core': 5.85.9
+ '@tailwindcss/oxide-android-arm64': 4.1.17
+ '@tailwindcss/oxide-darwin-arm64': 4.1.17
+ '@tailwindcss/oxide-darwin-x64': 4.1.17
+ '@tailwindcss/oxide-freebsd-x64': 4.1.17
+ '@tailwindcss/oxide-linux-arm-gnueabihf': 4.1.17
+ '@tailwindcss/oxide-linux-arm64-gnu': 4.1.17
+ '@tailwindcss/oxide-linux-arm64-musl': 4.1.17
+ '@tailwindcss/oxide-linux-x64-gnu': 4.1.17
+ '@tailwindcss/oxide-linux-x64-musl': 4.1.17
+ '@tailwindcss/oxide-wasm32-wasi': 4.1.17
+ '@tailwindcss/oxide-win32-arm64-msvc': 4.1.17
+ '@tailwindcss/oxide-win32-x64-msvc': 4.1.17
+
+ '@tailwindcss/vite@4.1.17(vite@6.4.1(@types/node@24.10.1)(jiti@2.6.1)(less@3.11.1)(lightningcss@1.30.2)(sass@1.58.0)(terser@5.44.1)(yaml@2.8.2))':
+ dependencies:
+ '@tailwindcss/node': 4.1.17
+ '@tailwindcss/oxide': 4.1.17
+ tailwindcss: 4.1.17
+ vite: 6.4.1(@types/node@24.10.1)(jiti@2.6.1)(less@3.11.1)(lightningcss@1.30.2)(sass@1.58.0)(terser@5.44.1)(yaml@2.8.2)
+
+ '@tanstack/query-core@5.90.11': {}
+
+ '@tanstack/react-query@5.90.11(react@18.2.0)':
+ dependencies:
+ '@tanstack/query-core': 5.90.11
react: 18.2.0
'@testing-library/cypress@10.1.0(cypress@15.5.0)':
dependencies:
'@babel/runtime': 7.28.4
- '@testing-library/dom': 10.4.0
+ '@testing-library/dom': 10.4.1
cypress: 15.5.0
'@testing-library/dom@10.4.0':
@@ -18668,6 +17465,17 @@ snapshots:
lz-string: 1.5.0
pretty-format: 27.5.1
+ '@testing-library/dom@10.4.1':
+ dependencies:
+ '@babel/code-frame': 7.27.1
+ '@babel/runtime': 7.28.4
+ '@types/aria-query': 5.0.4
+ aria-query: 5.3.0
+ dom-accessibility-api: 0.5.16
+ lz-string: 1.5.0
+ picocolors: 1.1.1
+ pretty-format: 27.5.1
+
'@testing-library/dom@9.3.4':
dependencies:
'@babel/code-frame': 7.27.1
@@ -18682,7 +17490,7 @@ snapshots:
'@testing-library/jest-dom@5.16.5':
dependencies:
'@adobe/css-tools': 4.4.4
- '@babel/runtime': 7.20.6
+ '@babel/runtime': 7.28.4
'@types/testing-library__jest-dom': 5.14.9
aria-query: 5.3.2
chalk: 3.0.0
@@ -18691,10 +17499,10 @@ snapshots:
lodash: 4.17.21
redent: 3.0.0
- '@testing-library/jest-dom@6.4.2(@jest/globals@29.7.0)(@types/jest@29.5.14)(vitest@2.1.9)':
+ '@testing-library/jest-dom@6.4.2(@types/jest@30.0.0)(vitest@2.1.9)':
dependencies:
'@adobe/css-tools': 4.4.4
- '@babel/runtime': 7.20.6
+ '@babel/runtime': 7.28.4
aria-query: 5.3.2
chalk: 3.0.0
css.escape: 1.5.1
@@ -18702,14 +17510,13 @@ snapshots:
lodash: 4.17.21
redent: 3.0.0
optionalDependencies:
- '@jest/globals': 29.7.0
- '@types/jest': 29.5.14
- vitest: 2.1.9(@types/node@24.10.0)(@vitest/ui@2.1.9)(jsdom@22.1.0)(less@3.11.1)(lightningcss@1.30.2)(sass@1.92.0)(terser@5.44.0)
+ '@types/jest': 30.0.0
+ vitest: 2.1.9(@types/node@24.10.1)(@vitest/ui@2.1.9)(jsdom@22.1.0)(less@3.11.1)(lightningcss@1.30.2)(sass@1.58.0)(terser@5.44.1)
- '@testing-library/jest-dom@6.4.2(@jest/globals@29.7.0)(@types/jest@29.5.14)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@24.10.0)(jsdom@22.1.0)(less@3.11.1)(lightningcss@1.30.1)(sass@1.92.0)(terser@5.44.0))':
+ '@testing-library/jest-dom@6.4.2(@types/jest@30.0.0)(vitest@3.2.4(@types/debug@4.1.12)(@types/node@24.10.1)(jiti@2.6.1)(jsdom@22.1.0)(less@3.11.1)(lightningcss@1.30.2)(sass@1.58.0)(terser@5.44.1)(yaml@2.8.2))':
dependencies:
'@adobe/css-tools': 4.4.4
- '@babel/runtime': 7.20.6
+ '@babel/runtime': 7.28.4
aria-query: 5.3.2
chalk: 3.0.0
css.escape: 1.5.1
@@ -18717,14 +17524,13 @@ snapshots:
lodash: 4.17.21
redent: 3.0.0
optionalDependencies:
- '@jest/globals': 29.7.0
- '@types/jest': 29.5.14
- vitest: 3.2.4(@types/debug@4.1.12)(@types/node@24.10.0)(jsdom@22.1.0)(less@3.11.1)(lightningcss@1.30.1)(sass@1.92.0)(terser@5.44.0)
+ '@types/jest': 30.0.0
+ vitest: 3.2.4(@types/debug@4.1.12)(@types/node@24.10.1)(jiti@2.6.1)(jsdom@22.1.0)(less@3.11.1)(lightningcss@1.30.2)(sass@1.58.0)(terser@5.44.1)(yaml@2.8.2)
- '@testing-library/jest-dom@6.4.2(@jest/globals@29.7.0)(@types/jest@29.5.14)(vitest@3.2.4)':
+ '@testing-library/jest-dom@6.4.2(@types/jest@30.0.0)(vitest@3.2.4)':
dependencies:
'@adobe/css-tools': 4.4.4
- '@babel/runtime': 7.20.6
+ '@babel/runtime': 7.28.4
aria-query: 5.3.2
chalk: 3.0.0
css.escape: 1.5.1
@@ -18732,9 +17538,8 @@ snapshots:
lodash: 4.17.21
redent: 3.0.0
optionalDependencies:
- '@jest/globals': 29.7.0
- '@types/jest': 29.5.14
- vitest: 3.2.4(@types/debug@4.1.12)(@types/node@24.10.0)(@vitest/ui@2.1.9)(jsdom@16.7.0)(less@3.11.1)(lightningcss@1.30.2)(sass@1.58.0)(terser@5.44.0)
+ '@types/jest': 30.0.0
+ vitest: 3.2.4(@types/debug@4.1.12)(@types/node@24.10.1)(@vitest/ui@2.1.9)(jiti@2.6.1)(jsdom@16.7.0)(less@3.11.1)(lightningcss@1.30.2)(sass@1.58.0)(terser@5.44.1)(yaml@2.8.2)
'@testing-library/jest-dom@6.5.0':
dependencies:
@@ -18746,35 +17551,35 @@ snapshots:
lodash: 4.17.21
redent: 3.0.0
- '@testing-library/react-hooks@8.0.1(@types/react@18.3.24)(react-dom@18.2.0(react@18.2.0))(react-test-renderer@18.2.0(react@18.2.0))(react@18.2.0)':
+ '@testing-library/react-hooks@8.0.1(@types/react@18.3.27)(react-dom@18.2.0(react@18.2.0))(react-test-renderer@18.2.0(react@18.2.0))(react@18.2.0)':
dependencies:
'@babel/runtime': 7.28.4
react: 18.2.0
react-error-boundary: 3.1.4(react@18.2.0)
optionalDependencies:
- '@types/react': 18.3.24
+ '@types/react': 18.3.27
react-dom: 18.2.0(react@18.2.0)
react-test-renderer: 18.2.0(react@18.2.0)
- '@testing-library/react@14.3.1(@types/react@18.3.24)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ '@testing-library/react@14.3.1(@types/react@18.3.27)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
dependencies:
- '@babel/runtime': 7.20.6
+ '@babel/runtime': 7.28.4
'@testing-library/dom': 9.3.4
- '@types/react-dom': 18.3.7(@types/react@18.3.24)
+ '@types/react-dom': 18.3.7(@types/react@18.3.27)
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
transitivePeerDependencies:
- '@types/react'
- '@testing-library/react@16.3.0(@testing-library/dom@10.4.0)(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ '@testing-library/react@16.3.0(@testing-library/dom@10.4.1)(@types/react-dom@18.3.7(@types/react@18.3.27))(@types/react@18.3.27)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
dependencies:
- '@babel/runtime': 7.20.6
- '@testing-library/dom': 10.4.0
+ '@babel/runtime': 7.28.4
+ '@testing-library/dom': 10.4.1
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
optionalDependencies:
- '@types/react': 18.3.24
- '@types/react-dom': 18.3.7(@types/react@18.3.24)
+ '@types/react': 18.3.27
+ '@types/react-dom': 18.3.7(@types/react@18.3.27)
'@testing-library/user-event@14.5.2(@testing-library/dom@10.4.0)':
dependencies:
@@ -18788,20 +17593,17 @@ snapshots:
'@trysound/sax@0.2.0': {}
- '@tybys/wasm-util@0.10.0':
+ '@tybys/wasm-util@0.10.1':
dependencies:
tslib: 2.8.1
optional: true
- '@types/argparse@1.0.38':
- optional: true
-
'@types/aria-query@5.0.4': {}
'@types/babel__core@7.20.5':
dependencies:
- '@babel/parser': 7.28.3
- '@babel/types': 7.28.2
+ '@babel/parser': 7.28.5
+ '@babel/types': 7.28.5
'@types/babel__generator': 7.27.0
'@types/babel__template': 7.4.4
'@types/babel__traverse': 7.28.0
@@ -18822,24 +17624,25 @@ snapshots:
'@types/body-parser@1.19.6':
dependencies:
'@types/connect': 3.4.38
- '@types/node': 24.10.0
+ '@types/node': 24.10.1
'@types/bonjour@3.5.13':
dependencies:
- '@types/node': 24.10.0
+ '@types/node': 24.10.1
- '@types/chai@5.2.2':
+ '@types/chai@5.2.3':
dependencies:
'@types/deep-eql': 4.0.2
+ assertion-error: 2.0.1
'@types/connect-history-api-fallback@1.5.4':
dependencies:
- '@types/express-serve-static-core': 5.0.7
- '@types/node': 24.10.0
+ '@types/express-serve-static-core': 5.1.0
+ '@types/node': 24.10.1
'@types/connect@3.4.38':
dependencies:
- '@types/node': 24.10.0
+ '@types/node': 24.10.1
'@types/cookie@0.3.3': {}
@@ -18863,42 +17666,37 @@ snapshots:
'@types/estree@1.0.8': {}
- '@types/express-serve-static-core@4.19.6':
+ '@types/express-serve-static-core@4.19.7':
dependencies:
- '@types/node': 24.10.0
+ '@types/node': 24.10.1
'@types/qs': 6.14.0
'@types/range-parser': 1.2.7
- '@types/send': 0.17.5
+ '@types/send': 1.2.1
- '@types/express-serve-static-core@5.0.7':
+ '@types/express-serve-static-core@5.1.0':
dependencies:
- '@types/node': 24.10.0
+ '@types/node': 24.10.1
'@types/qs': 6.14.0
'@types/range-parser': 1.2.7
- '@types/send': 0.17.5
+ '@types/send': 1.2.1
- '@types/express@4.17.23':
+ '@types/express@4.17.25':
dependencies:
'@types/body-parser': 1.19.6
- '@types/express-serve-static-core': 4.19.6
+ '@types/express-serve-static-core': 4.19.7
'@types/qs': 6.14.0
- '@types/serve-static': 1.15.8
+ '@types/serve-static': 1.15.10
'@types/glob@8.1.0':
dependencies:
'@types/minimatch': 5.1.2
- '@types/node': 24.10.0
-
- '@types/graceful-fs@4.1.9':
- dependencies:
- '@types/node': 24.10.0
- optional: true
+ '@types/node': 24.10.1
'@types/history@4.7.11': {}
- '@types/hoist-non-react-statics@3.3.7(@types/react@18.3.24)':
+ '@types/hoist-non-react-statics@3.3.7(@types/react@18.3.27)':
dependencies:
- '@types/react': 18.3.24
+ '@types/react': 18.3.27
hoist-non-react-statics: 3.3.2
'@types/html-minifier-terser@6.1.0': {}
@@ -18907,9 +17705,9 @@ snapshots:
'@types/http-errors@2.0.5': {}
- '@types/http-proxy@1.17.16':
+ '@types/http-proxy@1.17.17':
dependencies:
- '@types/node': 24.10.0
+ '@types/node': 24.10.1
'@types/invariant@2.2.37': {}
@@ -18925,13 +17723,13 @@ snapshots:
'@types/jest-axe@3.5.9':
dependencies:
- '@types/jest': 29.5.14
+ '@types/jest': 30.0.0
axe-core: 3.5.6
- '@types/jest@29.5.14':
+ '@types/jest@30.0.0':
dependencies:
- expect: 29.7.0
- pretty-format: 29.7.0
+ expect: 30.2.0
+ pretty-format: 30.2.0
'@types/json-schema@7.0.15': {}
@@ -18939,9 +17737,9 @@ snapshots:
'@types/loadable__component@5.13.10':
dependencies:
- '@types/react': 18.3.24
+ '@types/react': 18.3.27
- '@types/lodash@4.17.20': {}
+ '@types/lodash@4.17.21': {}
'@types/mdast@4.0.4':
dependencies:
@@ -18957,9 +17755,9 @@ snapshots:
'@types/node-forge@1.3.14':
dependencies:
- '@types/node': 24.10.0
+ '@types/node': 24.10.1
- '@types/node@24.10.0':
+ '@types/node@24.10.1':
dependencies:
undici-types: 7.16.0
@@ -18979,14 +17777,14 @@ snapshots:
'@types/range-parser@1.2.7': {}
- '@types/react-dom@18.3.7(@types/react@18.3.24)':
+ '@types/react-dom@18.3.7(@types/react@18.3.27)':
dependencies:
- '@types/react': 18.3.24
+ '@types/react': 18.3.27
- '@types/react-intl-redux@0.1.19(@types/react@18.3.24)(react@18.2.0)':
+ '@types/react-intl-redux@0.1.19(@types/react@18.3.27)(react@18.2.0)':
dependencies:
'@types/react-redux': 7.1.34
- react-intl: 3.12.1(@types/react@18.3.24)(react@18.2.0)
+ react-intl: 3.12.1(@types/react@18.3.27)(react@18.2.0)
redux: 4.2.1
transitivePeerDependencies:
- '@types/react'
@@ -18994,30 +17792,30 @@ snapshots:
'@types/react-redux@7.1.34':
dependencies:
- '@types/hoist-non-react-statics': 3.3.7(@types/react@18.3.24)
- '@types/react': 18.3.24
+ '@types/hoist-non-react-statics': 3.3.7(@types/react@18.3.27)
+ '@types/react': 18.3.27
hoist-non-react-statics: 3.3.2
redux: 4.2.1
'@types/react-router-dom@5.3.3':
dependencies:
'@types/history': 4.7.11
- '@types/react': 18.3.24
+ '@types/react': 18.3.27
'@types/react-router': 5.1.20
'@types/react-router@5.1.20':
dependencies:
'@types/history': 4.7.11
- '@types/react': 18.3.24
+ '@types/react': 18.3.27
'@types/react-test-renderer@18.0.7':
dependencies:
- '@types/react': 18.3.24
+ '@types/react': 18.3.27
- '@types/react@18.3.24':
+ '@types/react@18.3.27':
dependencies:
'@types/prop-types': 15.7.15
- csstype: 3.1.3
+ csstype: 3.2.3
'@types/redux-mock-store@1.5.0':
dependencies:
@@ -19029,22 +17827,26 @@ snapshots:
'@types/schema-utils@1.0.0': {}
- '@types/semver@7.7.0': {}
+ '@types/semver@7.7.1': {}
- '@types/send@0.17.5':
+ '@types/send@0.17.6':
dependencies:
'@types/mime': 1.3.5
- '@types/node': 24.10.0
+ '@types/node': 24.10.1
+
+ '@types/send@1.2.1':
+ dependencies:
+ '@types/node': 24.10.1
'@types/serve-index@1.9.4':
dependencies:
- '@types/express': 4.17.23
+ '@types/express': 4.17.25
- '@types/serve-static@1.15.8':
+ '@types/serve-static@1.15.10':
dependencies:
'@types/http-errors': 2.0.5
- '@types/node': 24.10.0
- '@types/send': 0.17.5
+ '@types/node': 24.10.1
+ '@types/send': 0.17.6
'@types/sinonjs__fake-timers@8.1.1': {}
@@ -19052,13 +17854,13 @@ snapshots:
'@types/sockjs@0.3.36':
dependencies:
- '@types/node': 24.10.0
+ '@types/node': 24.10.1
'@types/stack-utils@2.0.3': {}
'@types/testing-library__jest-dom@5.14.9':
dependencies:
- '@types/jest': 29.5.14
+ '@types/jest': 30.0.0
'@types/tmp@0.2.6': {}
@@ -19070,99 +17872,99 @@ snapshots:
'@types/ws@8.18.1':
dependencies:
- '@types/node': 24.10.0
+ '@types/node': 24.10.1
'@types/yargs-parser@21.0.3': {}
- '@types/yargs@15.0.19':
+ '@types/yargs@15.0.20':
dependencies:
'@types/yargs-parser': 21.0.3
- '@types/yargs@17.0.33':
+ '@types/yargs@17.0.35':
dependencies:
'@types/yargs-parser': 21.0.3
'@types/yauzl@2.10.3':
dependencies:
- '@types/node': 24.10.0
+ '@types/node': 24.10.1
optional: true
- '@typescript-eslint/eslint-plugin@5.62.0(@typescript-eslint/parser@5.62.0(eslint@8.57.1)(typescript@5.9.2))(eslint@8.57.1)(typescript@5.9.2)':
+ '@typescript-eslint/eslint-plugin@5.62.0(@typescript-eslint/parser@5.62.0(eslint@8.57.1)(typescript@5.9.3))(eslint@8.57.1)(typescript@5.9.3)':
dependencies:
- '@eslint-community/regexpp': 4.12.1
- '@typescript-eslint/parser': 5.62.0(eslint@8.57.1)(typescript@5.9.2)
+ '@eslint-community/regexpp': 4.12.2
+ '@typescript-eslint/parser': 5.62.0(eslint@8.57.1)(typescript@5.9.3)
'@typescript-eslint/scope-manager': 5.62.0
- '@typescript-eslint/type-utils': 5.62.0(eslint@8.57.1)(typescript@5.9.2)
- '@typescript-eslint/utils': 5.62.0(eslint@8.57.1)(typescript@5.9.2)
+ '@typescript-eslint/type-utils': 5.62.0(eslint@8.57.1)(typescript@5.9.3)
+ '@typescript-eslint/utils': 5.62.0(eslint@8.57.1)(typescript@5.9.3)
debug: 4.3.4(supports-color@8.1.1)
eslint: 8.57.1
graphemer: 1.4.0
ignore: 5.3.2
natural-compare-lite: 1.4.0
- semver: 7.7.2
- tsutils: 3.21.0(typescript@5.9.2)
+ semver: 7.7.3
+ tsutils: 3.21.0(typescript@5.9.3)
optionalDependencies:
- typescript: 5.9.2
+ typescript: 5.9.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/eslint-plugin@7.18.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.9.2))(eslint@8.57.1)(typescript@5.9.2)':
+ '@typescript-eslint/eslint-plugin@7.18.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.9.3))(eslint@8.57.1)(typescript@5.9.3)':
dependencies:
- '@eslint-community/regexpp': 4.12.1
- '@typescript-eslint/parser': 7.18.0(eslint@8.57.1)(typescript@5.9.2)
+ '@eslint-community/regexpp': 4.12.2
+ '@typescript-eslint/parser': 7.18.0(eslint@8.57.1)(typescript@5.9.3)
'@typescript-eslint/scope-manager': 7.18.0
- '@typescript-eslint/type-utils': 7.18.0(eslint@8.57.1)(typescript@5.9.2)
- '@typescript-eslint/utils': 7.18.0(eslint@8.57.1)(typescript@5.9.2)
+ '@typescript-eslint/type-utils': 7.18.0(eslint@8.57.1)(typescript@5.9.3)
+ '@typescript-eslint/utils': 7.18.0(eslint@8.57.1)(typescript@5.9.3)
'@typescript-eslint/visitor-keys': 7.18.0
eslint: 8.57.1
graphemer: 1.4.0
ignore: 5.3.2
natural-compare: 1.4.0
- ts-api-utils: 1.4.3(typescript@5.9.2)
+ ts-api-utils: 1.4.3(typescript@5.9.3)
optionalDependencies:
- typescript: 5.9.2
+ typescript: 5.9.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/experimental-utils@5.62.0(eslint@8.57.1)(typescript@5.9.2)':
+ '@typescript-eslint/experimental-utils@5.62.0(eslint@8.57.1)(typescript@5.9.3)':
dependencies:
- '@typescript-eslint/utils': 5.62.0(eslint@8.57.1)(typescript@5.9.2)
+ '@typescript-eslint/utils': 5.62.0(eslint@8.57.1)(typescript@5.9.3)
eslint: 8.57.1
transitivePeerDependencies:
- supports-color
- typescript
- '@typescript-eslint/parser@5.62.0(eslint@8.57.1)(typescript@5.9.2)':
+ '@typescript-eslint/parser@5.62.0(eslint@8.57.1)(typescript@5.9.3)':
dependencies:
'@typescript-eslint/scope-manager': 5.62.0
'@typescript-eslint/types': 5.62.0
- '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.9.2)
+ '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.9.3)
debug: 4.3.4(supports-color@8.1.1)
eslint: 8.57.1
optionalDependencies:
- typescript: 5.9.2
+ typescript: 5.9.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.9.2)':
+ '@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.9.3)':
dependencies:
'@typescript-eslint/scope-manager': 7.18.0
'@typescript-eslint/types': 7.18.0
- '@typescript-eslint/typescript-estree': 7.18.0(typescript@5.9.2)
+ '@typescript-eslint/typescript-estree': 7.18.0(typescript@5.9.3)
'@typescript-eslint/visitor-keys': 7.18.0
debug: 4.3.4(supports-color@8.1.1)
eslint: 8.57.1
optionalDependencies:
- typescript: 5.9.2
+ typescript: 5.9.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/project-service@8.42.0(typescript@5.9.2)':
+ '@typescript-eslint/project-service@8.48.1(typescript@5.9.3)':
dependencies:
- '@typescript-eslint/tsconfig-utils': 8.42.0(typescript@5.9.2)
- '@typescript-eslint/types': 8.42.0
+ '@typescript-eslint/tsconfig-utils': 8.48.1(typescript@5.9.3)
+ '@typescript-eslint/types': 8.48.1
debug: 4.3.4(supports-color@8.1.1)
- typescript: 5.9.2
+ typescript: 5.9.3
transitivePeerDependencies:
- supports-color
@@ -19176,36 +17978,36 @@ snapshots:
'@typescript-eslint/types': 7.18.0
'@typescript-eslint/visitor-keys': 7.18.0
- '@typescript-eslint/scope-manager@8.42.0':
+ '@typescript-eslint/scope-manager@8.48.1':
dependencies:
- '@typescript-eslint/types': 8.42.0
- '@typescript-eslint/visitor-keys': 8.42.0
+ '@typescript-eslint/types': 8.48.1
+ '@typescript-eslint/visitor-keys': 8.48.1
- '@typescript-eslint/tsconfig-utils@8.42.0(typescript@5.9.2)':
+ '@typescript-eslint/tsconfig-utils@8.48.1(typescript@5.9.3)':
dependencies:
- typescript: 5.9.2
+ typescript: 5.9.3
- '@typescript-eslint/type-utils@5.62.0(eslint@8.57.1)(typescript@5.9.2)':
+ '@typescript-eslint/type-utils@5.62.0(eslint@8.57.1)(typescript@5.9.3)':
dependencies:
- '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.9.2)
- '@typescript-eslint/utils': 5.62.0(eslint@8.57.1)(typescript@5.9.2)
+ '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.9.3)
+ '@typescript-eslint/utils': 5.62.0(eslint@8.57.1)(typescript@5.9.3)
debug: 4.3.4(supports-color@8.1.1)
eslint: 8.57.1
- tsutils: 3.21.0(typescript@5.9.2)
+ tsutils: 3.21.0(typescript@5.9.3)
optionalDependencies:
- typescript: 5.9.2
+ typescript: 5.9.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/type-utils@7.18.0(eslint@8.57.1)(typescript@5.9.2)':
+ '@typescript-eslint/type-utils@7.18.0(eslint@8.57.1)(typescript@5.9.3)':
dependencies:
- '@typescript-eslint/typescript-estree': 7.18.0(typescript@5.9.2)
- '@typescript-eslint/utils': 7.18.0(eslint@8.57.1)(typescript@5.9.2)
+ '@typescript-eslint/typescript-estree': 7.18.0(typescript@5.9.3)
+ '@typescript-eslint/utils': 7.18.0(eslint@8.57.1)(typescript@5.9.3)
debug: 4.3.4(supports-color@8.1.1)
eslint: 8.57.1
- ts-api-utils: 1.4.3(typescript@5.9.2)
+ ts-api-utils: 1.4.3(typescript@5.9.3)
optionalDependencies:
- typescript: 5.9.2
+ typescript: 5.9.3
transitivePeerDependencies:
- supports-color
@@ -19213,23 +18015,23 @@ snapshots:
'@typescript-eslint/types@7.18.0': {}
- '@typescript-eslint/types@8.42.0': {}
+ '@typescript-eslint/types@8.48.1': {}
- '@typescript-eslint/typescript-estree@5.62.0(typescript@5.9.2)':
+ '@typescript-eslint/typescript-estree@5.62.0(typescript@5.9.3)':
dependencies:
'@typescript-eslint/types': 5.62.0
'@typescript-eslint/visitor-keys': 5.62.0
debug: 4.3.4(supports-color@8.1.1)
globby: 11.1.0
is-glob: 4.0.3
- semver: 7.7.2
- tsutils: 3.21.0(typescript@5.9.2)
+ semver: 7.7.3
+ tsutils: 3.21.0(typescript@5.9.3)
optionalDependencies:
- typescript: 5.9.2
+ typescript: 5.9.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/typescript-estree@7.18.0(typescript@5.9.2)':
+ '@typescript-eslint/typescript-estree@7.18.0(typescript@5.9.3)':
dependencies:
'@typescript-eslint/types': 7.18.0
'@typescript-eslint/visitor-keys': 7.18.0
@@ -19237,63 +18039,62 @@ snapshots:
globby: 11.1.0
is-glob: 4.0.3
minimatch: 9.0.5
- semver: 7.7.2
- ts-api-utils: 1.4.3(typescript@5.9.2)
+ semver: 7.7.3
+ ts-api-utils: 1.4.3(typescript@5.9.3)
optionalDependencies:
- typescript: 5.9.2
+ typescript: 5.9.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/typescript-estree@8.42.0(typescript@5.9.2)':
+ '@typescript-eslint/typescript-estree@8.48.1(typescript@5.9.3)':
dependencies:
- '@typescript-eslint/project-service': 8.42.0(typescript@5.9.2)
- '@typescript-eslint/tsconfig-utils': 8.42.0(typescript@5.9.2)
- '@typescript-eslint/types': 8.42.0
- '@typescript-eslint/visitor-keys': 8.42.0
+ '@typescript-eslint/project-service': 8.48.1(typescript@5.9.3)
+ '@typescript-eslint/tsconfig-utils': 8.48.1(typescript@5.9.3)
+ '@typescript-eslint/types': 8.48.1
+ '@typescript-eslint/visitor-keys': 8.48.1
debug: 4.3.4(supports-color@8.1.1)
- fast-glob: 3.3.3
- is-glob: 4.0.3
minimatch: 9.0.5
- semver: 7.7.2
- ts-api-utils: 2.1.0(typescript@5.9.2)
- typescript: 5.9.2
+ semver: 7.7.3
+ tinyglobby: 0.2.15
+ ts-api-utils: 2.1.0(typescript@5.9.3)
+ typescript: 5.9.3
transitivePeerDependencies:
- supports-color
- '@typescript-eslint/utils@5.62.0(eslint@8.57.1)(typescript@5.9.2)':
+ '@typescript-eslint/utils@5.62.0(eslint@8.57.1)(typescript@5.9.3)':
dependencies:
- '@eslint-community/eslint-utils': 4.8.0(eslint@8.57.1)
+ '@eslint-community/eslint-utils': 4.9.0(eslint@8.57.1)
'@types/json-schema': 7.0.15
- '@types/semver': 7.7.0
+ '@types/semver': 7.7.1
'@typescript-eslint/scope-manager': 5.62.0
'@typescript-eslint/types': 5.62.0
- '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.9.2)
+ '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.9.3)
eslint: 8.57.1
eslint-scope: 5.1.1
- semver: 7.7.2
+ semver: 7.7.3
transitivePeerDependencies:
- supports-color
- typescript
- '@typescript-eslint/utils@7.18.0(eslint@8.57.1)(typescript@5.9.2)':
+ '@typescript-eslint/utils@7.18.0(eslint@8.57.1)(typescript@5.9.3)':
dependencies:
- '@eslint-community/eslint-utils': 4.8.0(eslint@8.57.1)
+ '@eslint-community/eslint-utils': 4.9.0(eslint@8.57.1)
'@typescript-eslint/scope-manager': 7.18.0
'@typescript-eslint/types': 7.18.0
- '@typescript-eslint/typescript-estree': 7.18.0(typescript@5.9.2)
+ '@typescript-eslint/typescript-estree': 7.18.0(typescript@5.9.3)
eslint: 8.57.1
transitivePeerDependencies:
- supports-color
- typescript
- '@typescript-eslint/utils@8.42.0(eslint@8.57.1)(typescript@5.9.2)':
+ '@typescript-eslint/utils@8.48.1(eslint@8.57.1)(typescript@5.9.3)':
dependencies:
- '@eslint-community/eslint-utils': 4.8.0(eslint@8.57.1)
- '@typescript-eslint/scope-manager': 8.42.0
- '@typescript-eslint/types': 8.42.0
- '@typescript-eslint/typescript-estree': 8.42.0(typescript@5.9.2)
+ '@eslint-community/eslint-utils': 4.9.0(eslint@8.57.1)
+ '@typescript-eslint/scope-manager': 8.48.1
+ '@typescript-eslint/types': 8.48.1
+ '@typescript-eslint/typescript-estree': 8.48.1(typescript@5.9.3)
eslint: 8.57.1
- typescript: 5.9.2
+ typescript: 5.9.3
transitivePeerDependencies:
- supports-color
@@ -19307,9 +18108,9 @@ snapshots:
'@typescript-eslint/types': 7.18.0
eslint-visitor-keys: 3.4.3
- '@typescript-eslint/visitor-keys@8.42.0':
+ '@typescript-eslint/visitor-keys@8.48.1':
dependencies:
- '@typescript-eslint/types': 8.42.0
+ '@typescript-eslint/types': 8.48.1
eslint-visitor-keys: 4.2.1
'@ungap/structured-clone@1.3.0': {}
@@ -19373,39 +18174,27 @@ snapshots:
'@unrs/resolver-binding-win32-x64-msvc@1.11.1':
optional: true
- '@vitejs/plugin-react@4.7.0(vite@6.4.1(@types/node@24.10.0)(jiti@2.5.1)(less@3.11.1)(lightningcss@1.30.2)(sass@1.58.0)(terser@5.44.0)(yaml@2.8.1))':
- dependencies:
- '@babel/core': 7.28.3
- '@babel/plugin-transform-react-jsx-self': 7.27.1(@babel/core@7.28.3)
- '@babel/plugin-transform-react-jsx-source': 7.27.1(@babel/core@7.28.3)
- '@rolldown/pluginutils': 1.0.0-beta.27
- '@types/babel__core': 7.20.5
- react-refresh: 0.14.2
- vite: 6.4.1(@types/node@24.10.0)(jiti@2.5.1)(less@3.11.1)(lightningcss@1.30.2)(sass@1.58.0)(terser@5.44.0)(yaml@2.8.1)
- transitivePeerDependencies:
- - supports-color
-
- '@vitejs/plugin-react@4.7.0(vite@6.4.1(@types/node@24.10.0)(jiti@2.6.1)(less@3.11.1)(lightningcss@1.30.2)(sass@1.92.0)(terser@5.44.0)(yaml@2.8.1))':
+ '@vitejs/plugin-react@4.7.0(vite@6.4.1(@types/node@24.10.1)(jiti@2.6.1)(less@3.11.1)(lightningcss@1.30.2)(sass@1.58.0)(terser@5.44.1)(yaml@2.8.2))':
dependencies:
- '@babel/core': 7.28.3
- '@babel/plugin-transform-react-jsx-self': 7.27.1(@babel/core@7.28.3)
- '@babel/plugin-transform-react-jsx-source': 7.27.1(@babel/core@7.28.3)
+ '@babel/core': 7.28.5
+ '@babel/plugin-transform-react-jsx-self': 7.27.1(@babel/core@7.28.5)
+ '@babel/plugin-transform-react-jsx-source': 7.27.1(@babel/core@7.28.5)
'@rolldown/pluginutils': 1.0.0-beta.27
'@types/babel__core': 7.20.5
react-refresh: 0.14.2
- vite: 6.4.1(@types/node@24.10.0)(jiti@2.6.1)(less@3.11.1)(lightningcss@1.30.2)(sass@1.92.0)(terser@5.44.0)(yaml@2.8.1)
+ vite: 6.4.1(@types/node@24.10.1)(jiti@2.6.1)(less@3.11.1)(lightningcss@1.30.2)(sass@1.58.0)(terser@5.44.1)(yaml@2.8.2)
transitivePeerDependencies:
- supports-color
- '@vitejs/plugin-react@5.1.0(vite@6.4.1(@types/node@24.10.0)(jiti@2.6.1)(less@3.11.1)(lightningcss@1.30.1)(sass@1.92.0)(terser@5.44.0)(yaml@2.8.1))':
+ '@vitejs/plugin-react@5.1.1(vite@6.4.1(@types/node@24.10.1)(jiti@2.6.1)(less@3.11.1)(lightningcss@1.30.2)(sass@1.58.0)(terser@5.44.1)(yaml@2.8.2))':
dependencies:
'@babel/core': 7.28.5
'@babel/plugin-transform-react-jsx-self': 7.27.1(@babel/core@7.28.5)
'@babel/plugin-transform-react-jsx-source': 7.27.1(@babel/core@7.28.5)
- '@rolldown/pluginutils': 1.0.0-beta.43
+ '@rolldown/pluginutils': 1.0.0-beta.47
'@types/babel__core': 7.20.5
react-refresh: 0.14.2
- vite: 6.4.1(@types/node@24.10.0)(jiti@2.6.1)(less@3.11.1)(lightningcss@1.30.1)(sass@1.92.0)(terser@5.44.0)(yaml@2.8.1)
+ vite: 6.4.1(@types/node@24.10.1)(jiti@2.6.1)(less@3.11.1)(lightningcss@1.30.2)(sass@1.58.0)(terser@5.44.1)(yaml@2.8.2)
transitivePeerDependencies:
- supports-color
@@ -19418,32 +18207,32 @@ snapshots:
istanbul-lib-report: 3.0.1
istanbul-lib-source-maps: 5.0.6
istanbul-reports: 3.2.0
- magic-string: 0.30.18
+ magic-string: 0.30.21
magicast: 0.3.5
picocolors: 1.1.1
- std-env: 3.9.0
+ std-env: 3.10.0
strip-literal: 2.1.1
test-exclude: 6.0.0
- vitest: 2.1.9(@types/node@24.10.0)(@vitest/ui@2.1.9)(jsdom@21.1.2)(less@3.11.1)(lightningcss@1.30.2)(sass@1.92.0)(terser@5.44.0)
+ vitest: 2.1.9(@types/node@24.10.1)(@vitest/ui@2.1.9)(jsdom@21.1.2)(less@3.11.1)(lightningcss@1.30.2)(sass@1.58.0)(terser@5.44.1)
transitivePeerDependencies:
- supports-color
- '@vitest/coverage-v8@3.2.4(vitest@3.2.4(@types/debug@4.1.12)(@types/node@24.10.0)(jsdom@22.1.0)(less@3.11.1)(lightningcss@1.30.1)(sass@1.92.0)(terser@5.44.0))':
+ '@vitest/coverage-v8@3.2.4(vitest@3.2.4(@types/debug@4.1.12)(@types/node@24.10.1)(jiti@2.6.1)(jsdom@22.1.0)(less@3.11.1)(lightningcss@1.30.2)(sass@1.58.0)(terser@5.44.1)(yaml@2.8.2))':
dependencies:
'@ampproject/remapping': 2.3.0
'@bcoe/v8-coverage': 1.0.2
ast-v8-to-istanbul: 0.3.8
- debug: 4.4.1
+ debug: 4.4.3
istanbul-lib-coverage: 3.2.2
istanbul-lib-report: 3.0.1
istanbul-lib-source-maps: 5.0.6
istanbul-reports: 3.2.0
- magic-string: 0.30.18
+ magic-string: 0.30.21
magicast: 0.3.5
- std-env: 3.9.0
+ std-env: 3.10.0
test-exclude: 7.0.1
tinyrainbow: 2.0.0
- vitest: 3.2.4(@types/debug@4.1.12)(@types/node@24.10.0)(jsdom@22.1.0)(less@3.11.1)(lightningcss@1.30.1)(sass@1.92.0)(terser@5.44.0)
+ vitest: 3.2.4(@types/debug@4.1.12)(@types/node@24.10.1)(jiti@2.6.1)(jsdom@22.1.0)(less@3.11.1)(lightningcss@1.30.2)(sass@1.58.0)(terser@5.44.1)(yaml@2.8.2)
transitivePeerDependencies:
- supports-color
@@ -19463,51 +18252,35 @@ snapshots:
'@vitest/expect@3.2.4':
dependencies:
- '@types/chai': 5.2.2
+ '@types/chai': 5.2.3
'@vitest/spy': 3.2.4
'@vitest/utils': 3.2.4
chai: 5.3.3
tinyrainbow: 2.0.0
- '@vitest/mocker@2.1.9(vite@5.4.19(@types/node@24.10.0)(less@3.11.1)(lightningcss@1.28.1)(sass@1.92.0)(terser@5.44.0))':
+ '@vitest/mocker@2.1.9(vite@5.4.21(@types/node@24.10.1)(less@3.11.1)(lightningcss@1.28.1)(sass@1.58.0)(terser@5.44.1))':
dependencies:
'@vitest/spy': 2.1.9
estree-walker: 3.0.3
- magic-string: 0.30.18
+ magic-string: 0.30.21
optionalDependencies:
- vite: 5.4.19(@types/node@24.10.0)(less@3.11.1)(lightningcss@1.28.1)(sass@1.92.0)(terser@5.44.0)
+ vite: 5.4.21(@types/node@24.10.1)(less@3.11.1)(lightningcss@1.28.1)(sass@1.58.0)(terser@5.44.1)
- '@vitest/mocker@2.1.9(vite@5.4.19(@types/node@24.10.0)(less@3.11.1)(lightningcss@1.30.2)(sass@1.92.0)(terser@5.44.0))':
+ '@vitest/mocker@2.1.9(vite@5.4.21(@types/node@24.10.1)(less@3.11.1)(lightningcss@1.30.2)(sass@1.58.0)(terser@5.44.1))':
dependencies:
'@vitest/spy': 2.1.9
estree-walker: 3.0.3
- magic-string: 0.30.18
- optionalDependencies:
- vite: 5.4.19(@types/node@24.10.0)(less@3.11.1)(lightningcss@1.30.2)(sass@1.92.0)(terser@5.44.0)
-
- '@vitest/mocker@3.2.4(vite@5.4.19(@types/node@24.10.0)(less@3.11.1)(lightningcss@1.30.1)(sass@1.92.0)(terser@5.44.0))':
- dependencies:
- '@vitest/spy': 3.2.4
- estree-walker: 3.0.3
- magic-string: 0.30.18
- optionalDependencies:
- vite: 5.4.19(@types/node@24.10.0)(less@3.11.1)(lightningcss@1.30.1)(sass@1.92.0)(terser@5.44.0)
-
- '@vitest/mocker@3.2.4(vite@5.4.19(@types/node@24.10.0)(less@3.11.1)(lightningcss@1.30.2)(sass@1.58.0)(terser@5.44.0))':
- dependencies:
- '@vitest/spy': 3.2.4
- estree-walker: 3.0.3
- magic-string: 0.30.18
+ magic-string: 0.30.21
optionalDependencies:
- vite: 5.4.19(@types/node@24.10.0)(less@3.11.1)(lightningcss@1.30.2)(sass@1.58.0)(terser@5.44.0)
+ vite: 5.4.21(@types/node@24.10.1)(less@3.11.1)(lightningcss@1.30.2)(sass@1.58.0)(terser@5.44.1)
- '@vitest/mocker@3.2.4(vite@5.4.19(@types/node@24.10.0)(less@3.11.1)(lightningcss@1.30.2)(sass@1.92.0)(terser@5.44.0))':
+ '@vitest/mocker@3.2.4(vite@6.4.1(@types/node@24.10.1)(jiti@2.6.1)(less@3.11.1)(lightningcss@1.30.2)(sass@1.58.0)(terser@5.44.1)(yaml@2.8.2))':
dependencies:
'@vitest/spy': 3.2.4
estree-walker: 3.0.3
- magic-string: 0.30.18
+ magic-string: 0.30.21
optionalDependencies:
- vite: 5.4.19(@types/node@24.10.0)(less@3.11.1)(lightningcss@1.30.2)(sass@1.92.0)(terser@5.44.0)
+ vite: 6.4.1(@types/node@24.10.1)(jiti@2.6.1)(less@3.11.1)(lightningcss@1.30.2)(sass@1.58.0)(terser@5.44.1)(yaml@2.8.2)
'@vitest/pretty-format@2.0.5':
dependencies:
@@ -19530,18 +18303,18 @@ snapshots:
dependencies:
'@vitest/utils': 3.2.4
pathe: 2.0.3
- strip-literal: 3.0.0
+ strip-literal: 3.1.0
'@vitest/snapshot@2.1.9':
dependencies:
'@vitest/pretty-format': 2.1.9
- magic-string: 0.30.18
+ magic-string: 0.30.21
pathe: 1.1.2
'@vitest/snapshot@3.2.4':
dependencies:
'@vitest/pretty-format': 3.2.4
- magic-string: 0.30.18
+ magic-string: 0.30.21
pathe: 2.0.3
'@vitest/spy@2.0.5':
@@ -19554,7 +18327,7 @@ snapshots:
'@vitest/spy@3.2.4':
dependencies:
- tinyspy: 4.0.3
+ tinyspy: 4.0.4
'@vitest/ui@2.1.9(vitest@2.1.9)':
dependencies:
@@ -19562,10 +18335,10 @@ snapshots:
fflate: 0.8.2
flatted: 3.3.3
pathe: 1.1.2
- sirv: 3.0.1
- tinyglobby: 0.2.14
+ sirv: 3.0.2
+ tinyglobby: 0.2.15
tinyrainbow: 1.2.0
- vitest: 2.1.9(@types/node@24.10.0)(@vitest/ui@2.1.9)(jsdom@22.1.0)(less@3.11.1)(lightningcss@1.30.2)(sass@1.92.0)(terser@5.44.0)
+ vitest: 2.1.9(@types/node@24.10.1)(@vitest/ui@2.1.9)(jsdom@22.1.0)(less@3.11.1)(lightningcss@1.30.2)(sass@1.58.0)(terser@5.44.1)
optional: true
'@vitest/ui@2.1.9(vitest@3.2.4)':
@@ -19574,10 +18347,10 @@ snapshots:
fflate: 0.8.2
flatted: 3.3.3
pathe: 1.1.2
- sirv: 3.0.1
- tinyglobby: 0.2.14
+ sirv: 3.0.2
+ tinyglobby: 0.2.15
tinyrainbow: 1.2.0
- vitest: 3.2.4(@types/debug@4.1.12)(@types/node@24.10.0)(@vitest/ui@2.1.9)(jsdom@16.7.0)(less@3.11.1)(lightningcss@1.30.2)(sass@1.58.0)(terser@5.44.0)
+ vitest: 3.2.4(@types/debug@4.1.12)(@types/node@24.10.1)(@vitest/ui@2.1.9)(jiti@2.6.1)(jsdom@16.7.0)(less@3.11.1)(lightningcss@1.30.2)(sass@1.58.0)(terser@5.44.1)(yaml@2.8.2)
'@vitest/utils@2.0.5':
dependencies:
@@ -19789,7 +18562,7 @@ snapshots:
dependencies:
type-fest: 0.21.3
- ansi-escapes@7.0.0:
+ ansi-escapes@7.2.0:
dependencies:
environment: 1.1.0
@@ -19801,7 +18574,7 @@ snapshots:
ansi-regex@5.0.1: {}
- ansi-regex@6.2.0: {}
+ ansi-regex@6.2.2: {}
ansi-styles@2.2.1: {}
@@ -19815,7 +18588,7 @@ snapshots:
ansi-styles@5.2.0: {}
- ansi-styles@6.2.1: {}
+ ansi-styles@6.2.3: {}
any-promise@1.3.0: {}
@@ -20004,18 +18777,18 @@ snapshots:
dependencies:
ini: 5.0.0
jiti: 1.21.7
- jsonc-eslint-parser: 2.4.0
+ jsonc-eslint-parser: 2.4.1
lodash.merge: 4.6.2
- sucrase: 3.35.0
+ sucrase: 3.35.1
toml-eslint-parser: 0.10.0
- yaml-eslint-parser: 1.3.0
+ yaml-eslint-parser: 1.3.1
autobind-decorator@2.4.0: {}
autoprefixer@10.4.8(postcss@8.4.31):
dependencies:
- browserslist: 4.25.4
- caniuse-lite: 1.0.30001739
+ browserslist: 4.28.0
+ caniuse-lite: 1.0.30001757
fraction.js: 4.3.7
normalize-range: 0.1.2
picocolors: 1.1.1
@@ -20032,7 +18805,7 @@ snapshots:
axe-core@3.5.6: {}
- axe-core@4.10.3: {}
+ axe-core@4.11.0: {}
axe-core@4.4.2: {}
@@ -20056,18 +18829,18 @@ snapshots:
transitivePeerDependencies:
- debug
- axios@1.11.0:
+ axios@1.13.2:
dependencies:
follow-redirects: 1.15.11(debug@4.3.2)
- form-data: 4.0.4
+ form-data: 4.0.5
proxy-from-env: 1.1.0
transitivePeerDependencies:
- debug
- axios@1.11.0(debug@4.3.4):
+ axios@1.13.2(debug@4.3.4):
dependencies:
follow-redirects: 1.15.11(debug@4.3.4)
- form-data: 4.0.4
+ form-data: 4.0.5
proxy-from-env: 1.1.0
transitivePeerDependencies:
- debug
@@ -20108,14 +18881,14 @@ snapshots:
dependencies:
'@babel/core': 7.28.5
find-cache-dir: 3.3.2
- schema-utils: 4.3.2
+ schema-utils: 4.3.3
webpack: 5.90.1
babel-loader@9.2.1(@babel/core@7.28.5)(webpack@5.90.1):
dependencies:
'@babel/core': 7.28.5
find-cache-dir: 4.0.0
- schema-utils: 4.3.2
+ schema-utils: 4.3.3
webpack: 5.90.1
babel-messages@6.23.0:
@@ -20124,22 +18897,11 @@ snapshots:
babel-plugin-add-module-exports@0.2.1: {}
- babel-plugin-istanbul@6.1.1:
- dependencies:
- '@babel/helper-plugin-utils': 7.27.1
- '@istanbuljs/load-nyc-config': 1.1.0
- '@istanbuljs/schema': 0.1.3
- istanbul-lib-instrument: 5.2.1
- test-exclude: 6.0.0
- transitivePeerDependencies:
- - supports-color
- optional: true
-
babel-plugin-lodash@3.3.4:
dependencies:
'@babel/helper-module-imports': 7.27.1
'@babel/types': 7.20.5
- glob: 7.1.6
+ glob: 7.2.3
lodash: 4.17.21
require-package-name: 2.0.1
transitivePeerDependencies:
@@ -20149,11 +18911,11 @@ snapshots:
dependencies:
'@babel/runtime': 7.28.4
cosmiconfig: 7.1.0
- resolve: 1.22.10
+ resolve: 1.22.11
babel-plugin-polyfill-corejs2@0.4.14(@babel/core@7.28.5):
dependencies:
- '@babel/compat-data': 7.28.0
+ '@babel/compat-data': 7.28.5
'@babel/core': 7.28.5
'@babel/helper-define-polyfill-provider': 0.6.5(@babel/core@7.28.5)
semver: 6.3.1
@@ -20164,7 +18926,7 @@ snapshots:
dependencies:
'@babel/core': 7.28.5
'@babel/helper-define-polyfill-provider': 0.6.5(@babel/core@7.28.5)
- core-js-compat: 3.45.1
+ core-js-compat: 3.47.0
transitivePeerDependencies:
- supports-color
@@ -20177,7 +18939,7 @@ snapshots:
babel-plugin-react-intl@5.1.17:
dependencies:
- '@babel/core': 7.28.3
+ '@babel/core': 7.28.5
'@babel/helper-plugin-utils': 7.27.1
'@types/babel__core': 7.20.5
'@types/schema-utils': 1.0.0
@@ -20211,26 +18973,6 @@ snapshots:
babel-plugin-transform-react-remove-prop-types@0.4.24: {}
- babel-preset-current-node-syntax@1.2.0(@babel/core@7.28.5):
- dependencies:
- '@babel/core': 7.28.5
- '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.28.5)
- '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.28.5)
- '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.28.5)
- '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.28.5)
- '@babel/plugin-syntax-import-attributes': 7.27.1(@babel/core@7.28.5)
- '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.28.5)
- '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.28.5)
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.28.5)
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.28.5)
- '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.28.5)
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.28.5)
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.28.5)
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.28.5)
- '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.28.5)
- '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.28.5)
- optional: true
-
babel-preset-razzle@4.2.17:
dependencies:
'@babel/core': 7.28.5
@@ -20242,7 +18984,7 @@ snapshots:
'@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.28.5)
'@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.28.5)
'@babel/plugin-transform-modules-commonjs': 7.27.1(@babel/core@7.28.5)
- '@babel/plugin-transform-runtime': 7.28.3(@babel/core@7.28.5)
+ '@babel/plugin-transform-runtime': 7.28.5(@babel/core@7.28.5)
'@babel/preset-env': 7.28.5(@babel/core@7.28.5)
'@babel/preset-react': 7.28.5(@babel/core@7.28.5)
'@babel/preset-typescript': 7.28.5(@babel/core@7.28.5)
@@ -20265,7 +19007,7 @@ snapshots:
'@babel/plugin-proposal-private-property-in-object': 7.21.11(@babel/core@7.28.5)
'@babel/plugin-transform-flow-strip-types': 7.27.1(@babel/core@7.28.5)
'@babel/plugin-transform-react-display-name': 7.28.0(@babel/core@7.28.5)
- '@babel/plugin-transform-runtime': 7.28.3(@babel/core@7.28.5)
+ '@babel/plugin-transform-runtime': 7.28.5(@babel/core@7.28.5)
'@babel/preset-env': 7.28.5(@babel/core@7.28.5)
'@babel/preset-react': 7.28.5(@babel/core@7.28.5)
'@babel/preset-typescript': 7.28.5(@babel/core@7.28.5)
@@ -20331,6 +19073,8 @@ snapshots:
mixin-deep: 1.3.2
pascalcase: 0.1.1
+ baseline-browser-mapping@2.8.32: {}
+
basic-ftp@5.0.5: {}
batch@0.6.1: {}
@@ -20444,22 +19188,18 @@ snapshots:
browserslist@4.14.2:
dependencies:
- caniuse-lite: 1.0.30001739
- electron-to-chromium: 1.5.213
+ caniuse-lite: 1.0.30001757
+ electron-to-chromium: 1.5.263
escalade: 3.2.0
node-releases: 1.1.77
- browserslist@4.25.4:
+ browserslist@4.28.0:
dependencies:
- caniuse-lite: 1.0.30001739
- electron-to-chromium: 1.5.213
- node-releases: 2.0.19
- update-browserslist-db: 1.1.3(browserslist@4.25.4)
-
- bser@2.1.1:
- dependencies:
- node-int64: 0.4.0
- optional: true
+ baseline-browser-mapping: 2.8.32
+ caniuse-lite: 1.0.30001757
+ electron-to-chromium: 1.5.263
+ node-releases: 2.0.27
+ update-browserslist-db: 1.1.4(browserslist@4.28.0)
buffer-crc32@0.2.13: {}
@@ -20483,11 +19223,11 @@ snapshots:
bundle-name@4.1.0:
dependencies:
- run-applescript: 7.0.0
+ run-applescript: 7.1.0
- bundle-require@5.1.0(esbuild@0.25.9):
+ bundle-require@5.1.0(esbuild@0.27.0):
dependencies:
- esbuild: 0.25.9
+ esbuild: 0.27.0
load-tsconfig: 0.2.5
bundlewatch@0.3.3(debug@4.3.4):
@@ -20497,7 +19237,7 @@ snapshots:
chalk: 4.1.2
ci-env: 1.17.0
commander: 5.1.0
- glob: 7.1.6
+ glob: 7.2.3
gzip-size: 6.0.0
jsonpack: 1.1.5
lodash.merge: 4.6.2
@@ -20507,13 +19247,13 @@ snapshots:
bytes@3.1.2: {}
- c12@3.3.0(magicast@0.3.5):
+ c12@3.3.1(magicast@0.3.5):
dependencies:
chokidar: 4.0.3
confbox: 0.2.2
defu: 6.1.4
- dotenv: 17.2.2
- exsolve: 1.0.7
+ dotenv: 17.2.3
+ exsolve: 1.0.8
giget: 2.0.0
jiti: 2.6.1
ohash: 2.0.11
@@ -20532,7 +19272,7 @@ snapshots:
'@npmcli/move-file': 1.1.2
chownr: 2.0.0
fs-minipass: 2.1.0
- glob: 7.1.6
+ glob: 7.2.3
infer-owner: 1.0.4
lru-cache: 6.0.0
minipass: 3.3.6
@@ -20570,13 +19310,16 @@ snapshots:
http-cache-semantics: 4.2.0
keyv: 4.5.4
mimic-response: 4.0.0
- normalize-url: 8.0.2
+ normalize-url: 8.1.0
responselike: 3.0.0
- cacheable@1.10.4:
+ cacheable@2.3.0:
dependencies:
- hookified: 1.12.0
- keyv: 5.5.0
+ '@cacheable/memory': 2.0.6
+ '@cacheable/utils': 2.3.2
+ hookified: 1.13.0
+ keyv: 5.5.4
+ qified: 0.5.2
cachedir@2.4.0: {}
@@ -20622,12 +19365,12 @@ snapshots:
caniuse-api@3.0.0:
dependencies:
- browserslist: 4.25.4
- caniuse-lite: 1.0.30001739
+ browserslist: 4.28.0
+ caniuse-lite: 1.0.30001757
lodash.memoize: 4.1.2
lodash.uniq: 4.5.0
- caniuse-lite@1.0.30001739: {}
+ caniuse-lite@1.0.30001757: {}
case-sensitive-paths-webpack-plugin@2.4.0: {}
@@ -20679,7 +19422,7 @@ snapshots:
chardet@0.7.0: {}
- chardet@2.1.0: {}
+ chardet@2.1.1: {}
check-error@2.1.1: {}
@@ -20709,7 +19452,7 @@ snapshots:
ci-info@3.9.0: {}
- ci-info@4.3.0: {}
+ ci-info@4.3.1: {}
circular-dependency-plugin@5.2.2(webpack@5.90.1):
dependencies:
@@ -20754,7 +19497,7 @@ snapshots:
dependencies:
chalk: 4.1.2
highlight.js: 10.7.3
- mz: 2.6.0
+ mz: 2.7.0
parse5: 5.1.1
parse5-htmlparser2-tree-adapter: 6.0.1
yargs: 16.2.0
@@ -20826,7 +19569,7 @@ snapshots:
color-string@1.9.1:
dependencies:
color-name: 1.1.4
- simple-swizzle: 0.2.2
+ simple-swizzle: 0.2.4
color@3.2.1:
dependencies:
@@ -20860,16 +19603,11 @@ snapshots:
commander@8.3.0: {}
- commander@9.5.0:
- optional: true
-
- comment-json@4.2.5:
+ comment-json@4.4.1:
dependencies:
array-timsort: 1.0.3
core-util-is: 1.0.3
esprima: 4.0.1
- has-own-prop: 2.0.0
- repeat-string: 1.6.1
common-path-prefix@3.0.0: {}
@@ -20930,13 +19668,13 @@ snapshots:
connect-history-api-fallback@2.0.0: {}
- connected-react-router@6.8.0(history@4.10.1)(immutable@3.8.2)(react-redux@8.1.2(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(redux@4.2.1))(react-router@5.2.0(react@18.2.0))(react@18.2.0)(redux@4.2.1)(seamless-immutable@7.1.4):
+ connected-react-router@6.8.0(history@4.10.1)(immutable@3.8.2)(react-redux@8.1.2(@types/react-dom@18.3.7(@types/react@18.3.27))(@types/react@18.3.27)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(redux@4.2.1))(react-router@5.2.0(react@18.2.0))(react@18.2.0)(redux@4.2.1)(seamless-immutable@7.1.4):
dependencies:
history: 4.10.1
immutable: 3.8.2
prop-types: 15.7.2
react: 18.2.0
- react-redux: 8.1.2(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(redux@4.2.1)
+ react-redux: 8.1.2(@types/react-dom@18.3.7(@types/react@18.3.27))(@types/react@18.3.27)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(redux@4.2.1)
react-router: 5.2.0(react@18.2.0)
redux: 4.2.1
seamless-immutable: 7.1.4
@@ -20992,11 +19730,11 @@ snapshots:
transitivePeerDependencies:
- bluebird
- core-js-compat@3.45.1:
+ core-js-compat@3.47.0:
dependencies:
- browserslist: 4.25.4
+ browserslist: 4.28.0
- core-js-pure@3.45.1: {}
+ core-js-pure@3.47.0: {}
core-js@1.2.7: {}
@@ -21010,7 +19748,7 @@ snapshots:
dependencies:
import-fresh: 2.0.0
is-directory: 0.3.1
- js-yaml: 3.14.1
+ js-yaml: 3.14.2
parse-json: 4.0.0
cosmiconfig@7.1.0:
@@ -21021,29 +19759,23 @@ snapshots:
path-type: 4.0.0
yaml: 1.10.2
- cosmiconfig@8.3.6(typescript@5.9.2):
+ cosmiconfig@8.3.6(typescript@5.9.3):
dependencies:
import-fresh: 3.3.1
- js-yaml: 4.1.0
+ js-yaml: 4.1.1
parse-json: 5.2.0
path-type: 4.0.0
optionalDependencies:
- typescript: 5.9.2
+ typescript: 5.9.3
- cosmiconfig@9.0.0(typescript@5.9.2):
+ cosmiconfig@9.0.0(typescript@5.9.3):
dependencies:
env-paths: 2.2.1
import-fresh: 3.3.1
- js-yaml: 4.1.0
+ js-yaml: 4.1.1
parse-json: 5.2.0
optionalDependencies:
- typescript: 5.9.2
-
- cross-spawn@5.1.0:
- dependencies:
- lru-cache: 4.1.5
- shebang-command: 1.2.0
- which: 1.3.1
+ typescript: 5.9.3
cross-spawn@7.0.3:
dependencies:
@@ -21094,7 +19826,7 @@ snapshots:
postcss-modules-values: 4.0.0(postcss@8.4.31)
postcss-value-parser: 4.2.0
schema-utils: 3.3.0
- semver: 7.7.2
+ semver: 7.7.3
webpack: 5.90.1
css-loader@6.11.0(webpack@5.90.1):
@@ -21106,7 +19838,7 @@ snapshots:
postcss-modules-scope: 3.2.1(postcss@8.5.6)
postcss-modules-values: 4.0.0(postcss@8.5.6)
postcss-value-parser: 4.2.0
- semver: 7.7.2
+ semver: 7.7.3
optionalDependencies:
webpack: 5.90.1
@@ -21260,7 +19992,7 @@ snapshots:
dependencies:
rrweb-cssom: 0.6.0
- csstype@3.1.3: {}
+ csstype@3.2.3: {}
cypress-axe@1.7.0(axe-core@4.4.2)(cypress@15.5.0):
dependencies:
@@ -21284,12 +20016,12 @@ snapshots:
buffer: 5.7.1
cachedir: 2.4.0
chalk: 4.1.2
- ci-info: 4.3.0
+ ci-info: 4.3.1
cli-cursor: 3.1.0
cli-table3: 0.6.1
commander: 6.2.1
common-tags: 1.8.2
- dayjs: 1.11.18
+ dayjs: 1.11.19
debug: 4.3.4(supports-color@8.1.1)
enquirer: 2.4.1
eventemitter2: 6.4.7
@@ -21309,7 +20041,7 @@ snapshots:
process: 0.11.10
proxy-from-env: 1.0.0
request-progress: 3.0.0
- semver: 7.7.2
+ semver: 7.7.3
supports-color: 8.1.1
systeminformation: 5.27.7
tmp: 0.2.5
@@ -21362,10 +20094,7 @@ snapshots:
es-errors: 1.3.0
is-data-view: 1.0.2
- dayjs@1.11.18: {}
-
- de-indent@1.0.2:
- optional: true
+ dayjs@1.11.19: {}
debounce@1.2.1: {}
@@ -21389,7 +20118,7 @@ snapshots:
optionalDependencies:
supports-color: 8.1.1
- debug@4.4.1:
+ debug@4.4.3:
dependencies:
ms: 2.1.3
@@ -21453,7 +20182,7 @@ snapshots:
bplist-parser: 0.2.0
untildify: 4.0.0
- default-browser-id@5.0.0: {}
+ default-browser-id@5.0.1: {}
default-browser@4.0.0:
dependencies:
@@ -21462,10 +20191,10 @@ snapshots:
execa: 7.2.0
titleize: 3.0.0
- default-browser@5.2.1:
+ default-browser@5.4.0:
dependencies:
bundle-name: 4.1.0
- default-browser-id: 5.0.0
+ default-browser-id: 5.0.1
default-gateway@6.0.3:
dependencies:
@@ -21538,7 +20267,7 @@ snapshots:
detect-libc@1.0.3: {}
- detect-libc@2.0.4: {}
+ detect-libc@2.1.2: {}
detect-node@2.1.0: {}
@@ -21599,7 +20328,7 @@ snapshots:
dom-helpers@5.2.1:
dependencies:
'@babel/runtime': 7.28.4
- csstype: 3.1.3
+ csstype: 3.2.3
dom-serializer@0.2.2:
dependencies:
@@ -21670,7 +20399,7 @@ snapshots:
dotenv-expand@5.1.0: {}
- dotenv@17.2.2: {}
+ dotenv@17.2.3: {}
dotenv@8.6.0: {}
@@ -21695,7 +20424,7 @@ snapshots:
ee-first@1.1.1: {}
- electron-to-chromium@1.5.213: {}
+ electron-to-chromium@1.5.263: {}
embla-carousel-autoplay@8.6.0(embla-carousel@8.6.0):
dependencies:
@@ -21713,7 +20442,7 @@ snapshots:
embla-carousel@8.6.0: {}
- emoji-regex@10.5.0: {}
+ emoji-regex@10.6.0: {}
emoji-regex@8.0.0: {}
@@ -21742,7 +20471,7 @@ snapshots:
enhanced-resolve@5.18.3:
dependencies:
graceful-fs: 4.2.11
- tapable: 2.2.3
+ tapable: 2.3.0
enquirer@2.4.1:
dependencies:
@@ -21769,7 +20498,7 @@ snapshots:
prr: 1.0.1
optional: true
- error-ex@1.3.2:
+ error-ex@1.3.4:
dependencies:
is-arrayish: 0.2.1
@@ -21912,10 +20641,10 @@ snapshots:
d: 1.0.2
ext: 1.7.0
- esbuild-register@3.6.0(esbuild@0.25.9):
+ esbuild-register@3.6.0(esbuild@0.25.12):
dependencies:
debug: 4.3.4(supports-color@8.1.1)
- esbuild: 0.25.9
+ esbuild: 0.25.12
transitivePeerDependencies:
- supports-color
@@ -21945,34 +20674,63 @@ snapshots:
'@esbuild/win32-ia32': 0.21.5
'@esbuild/win32-x64': 0.21.5
- esbuild@0.25.9:
+ esbuild@0.25.12:
+ optionalDependencies:
+ '@esbuild/aix-ppc64': 0.25.12
+ '@esbuild/android-arm': 0.25.12
+ '@esbuild/android-arm64': 0.25.12
+ '@esbuild/android-x64': 0.25.12
+ '@esbuild/darwin-arm64': 0.25.12
+ '@esbuild/darwin-x64': 0.25.12
+ '@esbuild/freebsd-arm64': 0.25.12
+ '@esbuild/freebsd-x64': 0.25.12
+ '@esbuild/linux-arm': 0.25.12
+ '@esbuild/linux-arm64': 0.25.12
+ '@esbuild/linux-ia32': 0.25.12
+ '@esbuild/linux-loong64': 0.25.12
+ '@esbuild/linux-mips64el': 0.25.12
+ '@esbuild/linux-ppc64': 0.25.12
+ '@esbuild/linux-riscv64': 0.25.12
+ '@esbuild/linux-s390x': 0.25.12
+ '@esbuild/linux-x64': 0.25.12
+ '@esbuild/netbsd-arm64': 0.25.12
+ '@esbuild/netbsd-x64': 0.25.12
+ '@esbuild/openbsd-arm64': 0.25.12
+ '@esbuild/openbsd-x64': 0.25.12
+ '@esbuild/openharmony-arm64': 0.25.12
+ '@esbuild/sunos-x64': 0.25.12
+ '@esbuild/win32-arm64': 0.25.12
+ '@esbuild/win32-ia32': 0.25.12
+ '@esbuild/win32-x64': 0.25.12
+
+ esbuild@0.27.0:
optionalDependencies:
- '@esbuild/aix-ppc64': 0.25.9
- '@esbuild/android-arm': 0.25.9
- '@esbuild/android-arm64': 0.25.9
- '@esbuild/android-x64': 0.25.9
- '@esbuild/darwin-arm64': 0.25.9
- '@esbuild/darwin-x64': 0.25.9
- '@esbuild/freebsd-arm64': 0.25.9
- '@esbuild/freebsd-x64': 0.25.9
- '@esbuild/linux-arm': 0.25.9
- '@esbuild/linux-arm64': 0.25.9
- '@esbuild/linux-ia32': 0.25.9
- '@esbuild/linux-loong64': 0.25.9
- '@esbuild/linux-mips64el': 0.25.9
- '@esbuild/linux-ppc64': 0.25.9
- '@esbuild/linux-riscv64': 0.25.9
- '@esbuild/linux-s390x': 0.25.9
- '@esbuild/linux-x64': 0.25.9
- '@esbuild/netbsd-arm64': 0.25.9
- '@esbuild/netbsd-x64': 0.25.9
- '@esbuild/openbsd-arm64': 0.25.9
- '@esbuild/openbsd-x64': 0.25.9
- '@esbuild/openharmony-arm64': 0.25.9
- '@esbuild/sunos-x64': 0.25.9
- '@esbuild/win32-arm64': 0.25.9
- '@esbuild/win32-ia32': 0.25.9
- '@esbuild/win32-x64': 0.25.9
+ '@esbuild/aix-ppc64': 0.27.0
+ '@esbuild/android-arm': 0.27.0
+ '@esbuild/android-arm64': 0.27.0
+ '@esbuild/android-x64': 0.27.0
+ '@esbuild/darwin-arm64': 0.27.0
+ '@esbuild/darwin-x64': 0.27.0
+ '@esbuild/freebsd-arm64': 0.27.0
+ '@esbuild/freebsd-x64': 0.27.0
+ '@esbuild/linux-arm': 0.27.0
+ '@esbuild/linux-arm64': 0.27.0
+ '@esbuild/linux-ia32': 0.27.0
+ '@esbuild/linux-loong64': 0.27.0
+ '@esbuild/linux-mips64el': 0.27.0
+ '@esbuild/linux-ppc64': 0.27.0
+ '@esbuild/linux-riscv64': 0.27.0
+ '@esbuild/linux-s390x': 0.27.0
+ '@esbuild/linux-x64': 0.27.0
+ '@esbuild/netbsd-arm64': 0.27.0
+ '@esbuild/netbsd-x64': 0.27.0
+ '@esbuild/openbsd-arm64': 0.27.0
+ '@esbuild/openbsd-x64': 0.27.0
+ '@esbuild/openharmony-arm64': 0.27.0
+ '@esbuild/sunos-x64': 0.27.0
+ '@esbuild/win32-arm64': 0.27.0
+ '@esbuild/win32-ia32': 0.27.0
+ '@esbuild/win32-x64': 0.27.0
escalade@3.2.0: {}
@@ -22000,25 +20758,25 @@ snapshots:
dependencies:
eslint: 8.57.1
- eslint-config-react-app@7.0.1(@babel/plugin-syntax-flow@7.27.1(@babel/core@7.28.5))(@babel/plugin-transform-react-jsx@7.27.1(@babel/core@7.28.5))(eslint-import-resolver-typescript@3.10.1)(eslint@8.57.1)(typescript@5.9.2):
+ eslint-config-react-app@7.0.1(@babel/plugin-syntax-flow@7.27.1(@babel/core@7.28.5))(@babel/plugin-transform-react-jsx@7.27.1(@babel/core@7.28.5))(eslint-import-resolver-typescript@3.10.1)(eslint@8.57.1)(typescript@5.9.3):
dependencies:
'@babel/core': 7.28.5
'@babel/eslint-parser': 7.28.5(@babel/core@7.28.5)(eslint@8.57.1)
- '@rushstack/eslint-patch': 1.12.0
- '@typescript-eslint/eslint-plugin': 5.62.0(@typescript-eslint/parser@5.62.0(eslint@8.57.1)(typescript@5.9.2))(eslint@8.57.1)(typescript@5.9.2)
- '@typescript-eslint/parser': 5.62.0(eslint@8.57.1)(typescript@5.9.2)
+ '@rushstack/eslint-patch': 1.15.0
+ '@typescript-eslint/eslint-plugin': 5.62.0(@typescript-eslint/parser@5.62.0(eslint@8.57.1)(typescript@5.9.3))(eslint@8.57.1)(typescript@5.9.3)
+ '@typescript-eslint/parser': 5.62.0(eslint@8.57.1)(typescript@5.9.3)
babel-preset-react-app: 10.1.0
confusing-browser-globals: 1.0.11
eslint: 8.57.1
eslint-plugin-flowtype: 8.0.3(@babel/plugin-syntax-flow@7.27.1(@babel/core@7.28.5))(@babel/plugin-transform-react-jsx@7.27.1(@babel/core@7.28.5))(eslint@8.57.1)
- eslint-plugin-import: 2.32.0(@typescript-eslint/parser@5.62.0(eslint@8.57.1)(typescript@5.9.2))(eslint-import-resolver-typescript@3.10.1)(eslint@8.57.1)
- eslint-plugin-jest: 25.7.0(@typescript-eslint/eslint-plugin@5.62.0(@typescript-eslint/parser@5.62.0(eslint@8.57.1)(typescript@5.9.2))(eslint@8.57.1)(typescript@5.9.2))(eslint@8.57.1)(typescript@5.9.2)
+ eslint-plugin-import: 2.32.0(@typescript-eslint/parser@5.62.0(eslint@8.57.1)(typescript@5.9.3))(eslint-import-resolver-typescript@3.10.1)(eslint@8.57.1)
+ eslint-plugin-jest: 25.7.0(@typescript-eslint/eslint-plugin@5.62.0(@typescript-eslint/parser@5.62.0(eslint@8.57.1)(typescript@5.9.3))(eslint@8.57.1)(typescript@5.9.3))(eslint@8.57.1)(typescript@5.9.3)
eslint-plugin-jsx-a11y: 6.10.2(eslint@8.57.1)
eslint-plugin-react: 7.37.5(eslint@8.57.1)
eslint-plugin-react-hooks: 4.6.2(eslint@8.57.1)
- eslint-plugin-testing-library: 5.11.1(eslint@8.57.1)(typescript@5.9.2)
+ eslint-plugin-testing-library: 5.11.1(eslint@8.57.1)(typescript@5.9.3)
optionalDependencies:
- typescript: 5.9.2
+ typescript: 5.9.3
transitivePeerDependencies:
- '@babel/plugin-syntax-flow'
- '@babel/plugin-transform-react-jsx'
@@ -22029,13 +20787,13 @@ snapshots:
eslint-import-resolver-alias@1.1.2(eslint-plugin-import@2.32.0):
dependencies:
- eslint-plugin-import: 2.32.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.9.2))(eslint-import-resolver-typescript@3.10.1)(eslint@8.57.1)
+ eslint-plugin-import: 2.32.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.9.3))(eslint-import-resolver-typescript@3.10.1)(eslint@8.57.1)
eslint-import-resolver-babel-plugin-root-import@1.1.1(babel-plugin-root-import@6.1.0)(eslint-plugin-import@2.32.0):
dependencies:
babel-plugin-root-import: 6.1.0
eslint-import-resolver-node: 0.2.3
- eslint-plugin-import: 2.32.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.9.2))(eslint-import-resolver-typescript@3.10.1)(eslint@8.57.1)
+ eslint-plugin-import: 2.32.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.9.3))(eslint-import-resolver-typescript@3.10.1)(eslint@8.57.1)
json5: 0.5.1
transitivePeerDependencies:
- supports-color
@@ -22044,7 +20802,7 @@ snapshots:
dependencies:
debug: 2.6.9
object-assign: 4.1.1
- resolve: 1.22.10
+ resolve: 1.22.11
transitivePeerDependencies:
- supports-color
@@ -22052,41 +20810,41 @@ snapshots:
dependencies:
debug: 3.2.7(supports-color@8.1.1)
is-core-module: 2.16.1
- resolve: 1.22.10
+ resolve: 1.22.11
transitivePeerDependencies:
- supports-color
eslint-import-resolver-typescript@3.10.1(eslint-plugin-import@2.32.0)(eslint@8.57.1):
dependencies:
'@nolyfill/is-core-module': 1.0.39
- debug: 4.4.1
+ debug: 4.4.3
eslint: 8.57.1
- get-tsconfig: 4.10.1
+ get-tsconfig: 4.13.0
is-bun-module: 2.0.0
stable-hash: 0.0.5
- tinyglobby: 0.2.14
+ tinyglobby: 0.2.15
unrs-resolver: 1.11.1
optionalDependencies:
- eslint-plugin-import: 2.32.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.9.2))(eslint-import-resolver-typescript@3.10.1)(eslint@8.57.1)
+ eslint-plugin-import: 2.32.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.9.3))(eslint-import-resolver-typescript@3.10.1)(eslint@8.57.1)
transitivePeerDependencies:
- supports-color
- eslint-module-utils@2.12.1(@typescript-eslint/parser@5.62.0(eslint@8.57.1)(typescript@5.9.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.10.1)(eslint@8.57.1):
+ eslint-module-utils@2.12.1(@typescript-eslint/parser@5.62.0(eslint@8.57.1)(typescript@5.9.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.10.1)(eslint@8.57.1):
dependencies:
debug: 3.2.7(supports-color@8.1.1)
optionalDependencies:
- '@typescript-eslint/parser': 5.62.0(eslint@8.57.1)(typescript@5.9.2)
+ '@typescript-eslint/parser': 5.62.0(eslint@8.57.1)(typescript@5.9.3)
eslint: 8.57.1
eslint-import-resolver-node: 0.3.9
eslint-import-resolver-typescript: 3.10.1(eslint-plugin-import@2.32.0)(eslint@8.57.1)
transitivePeerDependencies:
- supports-color
- eslint-module-utils@2.12.1(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.9.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.10.1)(eslint@8.57.1):
+ eslint-module-utils@2.12.1(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.9.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.10.1)(eslint@8.57.1):
dependencies:
debug: 3.2.7(supports-color@8.1.1)
optionalDependencies:
- '@typescript-eslint/parser': 7.18.0(eslint@8.57.1)(typescript@5.9.2)
+ '@typescript-eslint/parser': 7.18.0(eslint@8.57.1)(typescript@5.9.3)
eslint: 8.57.1
eslint-import-resolver-node: 0.3.9
eslint-import-resolver-typescript: 3.10.1(eslint-plugin-import@2.32.0)(eslint@8.57.1)
@@ -22101,7 +20859,7 @@ snapshots:
lodash: 4.17.21
string-natural-compare: 3.0.1
- eslint-plugin-import@2.32.0(@typescript-eslint/parser@5.62.0(eslint@8.57.1)(typescript@5.9.2))(eslint-import-resolver-typescript@3.10.1)(eslint@8.57.1):
+ eslint-plugin-import@2.32.0(@typescript-eslint/parser@5.62.0(eslint@8.57.1)(typescript@5.9.3))(eslint-import-resolver-typescript@3.10.1)(eslint@8.57.1):
dependencies:
'@rtsao/scc': 1.1.0
array-includes: 3.1.9
@@ -22112,7 +20870,7 @@ snapshots:
doctrine: 2.1.0
eslint: 8.57.1
eslint-import-resolver-node: 0.3.9
- eslint-module-utils: 2.12.1(@typescript-eslint/parser@5.62.0(eslint@8.57.1)(typescript@5.9.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.10.1)(eslint@8.57.1)
+ eslint-module-utils: 2.12.1(@typescript-eslint/parser@5.62.0(eslint@8.57.1)(typescript@5.9.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.10.1)(eslint@8.57.1)
hasown: 2.0.2
is-core-module: 2.16.1
is-glob: 4.0.3
@@ -22124,13 +20882,13 @@ snapshots:
string.prototype.trimend: 1.0.9
tsconfig-paths: 3.15.0
optionalDependencies:
- '@typescript-eslint/parser': 5.62.0(eslint@8.57.1)(typescript@5.9.2)
+ '@typescript-eslint/parser': 5.62.0(eslint@8.57.1)(typescript@5.9.3)
transitivePeerDependencies:
- eslint-import-resolver-typescript
- eslint-import-resolver-webpack
- supports-color
- eslint-plugin-import@2.32.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.9.2))(eslint-import-resolver-typescript@3.10.1)(eslint@8.57.1):
+ eslint-plugin-import@2.32.0(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.9.3))(eslint-import-resolver-typescript@3.10.1)(eslint@8.57.1):
dependencies:
'@rtsao/scc': 1.1.0
array-includes: 3.1.9
@@ -22141,7 +20899,7 @@ snapshots:
doctrine: 2.1.0
eslint: 8.57.1
eslint-import-resolver-node: 0.3.9
- eslint-module-utils: 2.12.1(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.9.2))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.10.1)(eslint@8.57.1)
+ eslint-module-utils: 2.12.1(@typescript-eslint/parser@7.18.0(eslint@8.57.1)(typescript@5.9.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.10.1)(eslint@8.57.1)
hasown: 2.0.2
is-core-module: 2.16.1
is-glob: 4.0.3
@@ -22153,18 +20911,18 @@ snapshots:
string.prototype.trimend: 1.0.9
tsconfig-paths: 3.15.0
optionalDependencies:
- '@typescript-eslint/parser': 7.18.0(eslint@8.57.1)(typescript@5.9.2)
+ '@typescript-eslint/parser': 7.18.0(eslint@8.57.1)(typescript@5.9.3)
transitivePeerDependencies:
- eslint-import-resolver-typescript
- eslint-import-resolver-webpack
- supports-color
- eslint-plugin-jest@25.7.0(@typescript-eslint/eslint-plugin@5.62.0(@typescript-eslint/parser@5.62.0(eslint@8.57.1)(typescript@5.9.2))(eslint@8.57.1)(typescript@5.9.2))(eslint@8.57.1)(typescript@5.9.2):
+ eslint-plugin-jest@25.7.0(@typescript-eslint/eslint-plugin@5.62.0(@typescript-eslint/parser@5.62.0(eslint@8.57.1)(typescript@5.9.3))(eslint@8.57.1)(typescript@5.9.3))(eslint@8.57.1)(typescript@5.9.3):
dependencies:
- '@typescript-eslint/experimental-utils': 5.62.0(eslint@8.57.1)(typescript@5.9.2)
+ '@typescript-eslint/experimental-utils': 5.62.0(eslint@8.57.1)(typescript@5.9.3)
eslint: 8.57.1
optionalDependencies:
- '@typescript-eslint/eslint-plugin': 5.62.0(@typescript-eslint/parser@5.62.0(eslint@8.57.1)(typescript@5.9.2))(eslint@8.57.1)(typescript@5.9.2)
+ '@typescript-eslint/eslint-plugin': 5.62.0(@typescript-eslint/parser@5.62.0(eslint@8.57.1)(typescript@5.9.3))(eslint@8.57.1)(typescript@5.9.3)
transitivePeerDependencies:
- supports-color
- typescript
@@ -22175,7 +20933,7 @@ snapshots:
array-includes: 3.1.9
array.prototype.flatmap: 1.3.3
ast-types-flow: 0.0.8
- axe-core: 4.10.3
+ axe-core: 4.11.0
axobject-query: 4.1.0
damerau-levenshtein: 1.0.8
emoji-regex: 9.2.2
@@ -22226,19 +20984,19 @@ snapshots:
string.prototype.matchall: 4.0.12
string.prototype.repeat: 1.0.0
- eslint-plugin-storybook@0.11.6(eslint@8.57.1)(typescript@5.9.2):
+ eslint-plugin-storybook@0.11.6(eslint@8.57.1)(typescript@5.9.3):
dependencies:
'@storybook/csf': 0.1.13
- '@typescript-eslint/utils': 8.42.0(eslint@8.57.1)(typescript@5.9.2)
+ '@typescript-eslint/utils': 8.48.1(eslint@8.57.1)(typescript@5.9.3)
eslint: 8.57.1
ts-dedent: 2.2.0
transitivePeerDependencies:
- supports-color
- typescript
- eslint-plugin-testing-library@5.11.1(eslint@8.57.1)(typescript@5.9.2):
+ eslint-plugin-testing-library@5.11.1(eslint@8.57.1)(typescript@5.9.3):
dependencies:
- '@typescript-eslint/utils': 5.62.0(eslint@8.57.1)(typescript@5.9.2)
+ '@typescript-eslint/utils': 5.62.0(eslint@8.57.1)(typescript@5.9.3)
eslint: 8.57.1
transitivePeerDependencies:
- supports-color
@@ -22262,8 +21020,8 @@ snapshots:
eslint@8.57.1:
dependencies:
- '@eslint-community/eslint-utils': 4.8.0(eslint@8.57.1)
- '@eslint-community/regexpp': 4.12.1
+ '@eslint-community/eslint-utils': 4.9.0(eslint@8.57.1)
+ '@eslint-community/regexpp': 4.12.2
'@eslint/eslintrc': 2.1.4
'@eslint/js': 8.57.1
'@humanwhocodes/config-array': 0.13.0
@@ -22291,7 +21049,7 @@ snapshots:
imurmurhash: 0.1.4
is-glob: 4.0.3
is-path-inside: 3.0.3
- js-yaml: 4.1.0
+ js-yaml: 4.1.1
json-stable-stringify-without-jsonify: 1.0.1
levn: 0.4.1
lodash.merge: 4.6.2
@@ -22365,16 +21123,6 @@ snapshots:
eventsource@1.1.2: {}
- execa@0.6.3:
- dependencies:
- cross-spawn: 5.1.0
- get-stream: 3.0.0
- is-stream: 1.1.0
- npm-run-path: 2.0.2
- p-finally: 1.0.0
- signal-exit: 3.0.7
- strip-eof: 1.0.0
-
execa@4.1.0:
dependencies:
cross-spawn: 7.0.6
@@ -22458,13 +21206,14 @@ snapshots:
expect-type@1.2.2: {}
- expect@29.7.0:
+ expect@30.2.0:
dependencies:
- '@jest/expect-utils': 29.7.0
- jest-get-type: 29.6.3
- jest-matcher-utils: 29.7.0
- jest-message-util: 29.7.0
- jest-util: 29.7.0
+ '@jest/expect-utils': 30.2.0
+ '@jest/get-type': 30.1.0
+ jest-matcher-utils: 30.2.0
+ jest-message-util: 30.2.0
+ jest-mock: 30.2.0
+ jest-util: 30.2.0
express@4.19.2:
dependencies:
@@ -22502,7 +21251,7 @@ snapshots:
transitivePeerDependencies:
- supports-color
- exsolve@1.0.7: {}
+ exsolve@1.0.8: {}
ext@1.7.0:
dependencies:
@@ -22584,18 +21333,13 @@ snapshots:
dependencies:
websocket-driver: 0.7.4
- fb-watchman@2.0.2:
- dependencies:
- bser: 2.1.1
- optional: true
-
fbjs@0.8.18:
dependencies:
core-js: 1.2.7
isomorphic-fetch: 2.2.1
loose-envify: 1.4.0
object-assign: 4.1.1
- promise: 7.1.1
+ promise: 7.3.1
setimmediate: 1.0.5
ua-parser-js: 0.7.41
@@ -22627,9 +21371,9 @@ snapshots:
dependencies:
is-unicode-supported: 2.1.0
- file-entry-cache@10.1.4:
+ file-entry-cache@11.1.1:
dependencies:
- flat-cache: 6.1.13
+ flat-cache: 6.1.19
file-entry-cache@6.0.1:
dependencies:
@@ -22710,9 +21454,9 @@ snapshots:
fix-dts-default-cjs-exports@1.0.1:
dependencies:
- magic-string: 0.30.18
+ magic-string: 0.30.21
mlly: 1.8.0
- rollup: 4.50.0
+ rollup: 4.53.3
flat-cache@3.2.0:
dependencies:
@@ -22720,11 +21464,11 @@ snapshots:
keyv: 4.5.4
rimraf: 3.0.2
- flat-cache@6.1.13:
+ flat-cache@6.1.19:
dependencies:
- cacheable: 1.10.4
+ cacheable: 2.3.0
flatted: 3.3.3
- hookified: 1.12.0
+ hookified: 1.13.0
flatted@3.3.3: {}
@@ -22749,24 +21493,23 @@ snapshots:
forever-agent@0.6.1: {}
- fork-ts-checker-webpack-plugin@4.1.6(eslint@8.57.1)(typescript@5.9.2)(vue-template-compiler@2.7.16)(webpack@5.90.1):
+ fork-ts-checker-webpack-plugin@4.1.6(eslint@8.57.1)(typescript@5.9.3)(webpack@5.90.1):
dependencies:
- '@babel/code-frame': 7.27.1
+ '@babel/code-frame': 7.10.4
chalk: 2.4.2
micromatch: 3.1.10
minimatch: 3.1.2
semver: 5.7.2
tapable: 1.1.3
- typescript: 5.9.2
+ typescript: 5.9.3
webpack: 5.90.1
worker-rpc: 0.1.1
optionalDependencies:
eslint: 8.57.1
- vue-template-compiler: 2.7.16
transitivePeerDependencies:
- supports-color
- fork-ts-checker-webpack-plugin@8.0.0(typescript@5.9.2)(webpack@5.90.1):
+ fork-ts-checker-webpack-plugin@8.0.0(typescript@5.9.3)(webpack@5.90.1):
dependencies:
'@babel/code-frame': 7.27.1
chalk: 4.1.2
@@ -22778,9 +21521,9 @@ snapshots:
minimatch: 3.1.2
node-abort-controller: 3.1.1
schema-utils: 3.3.0
- semver: 7.7.2
- tapable: 2.2.3
- typescript: 5.9.2
+ semver: 7.7.3
+ tapable: 2.3.0
+ typescript: 5.9.3
webpack: 5.90.1
form-data-encoder@2.1.4: {}
@@ -22809,7 +21552,7 @@ snapshots:
hasown: 2.0.2
mime-types: 2.1.35
- form-data@4.0.4:
+ form-data@4.0.5:
dependencies:
asynckit: 0.4.0
combined-stream: 1.0.8
@@ -22841,13 +21584,6 @@ snapshots:
jsonfile: 6.2.0
universalify: 2.0.1
- fs-extra@7.0.1:
- dependencies:
- graceful-fs: 4.2.11
- jsonfile: 4.0.0
- universalify: 0.1.2
- optional: true
-
fs-extra@8.1.0:
dependencies:
graceful-fs: 4.2.11
@@ -22889,11 +21625,13 @@ snapshots:
functions-have-names@1.2.3: {}
+ generator-function@2.0.1: {}
+
gensync@1.0.0-beta.2: {}
get-caller-file@2.0.5: {}
- get-east-asian-width@1.3.1: {}
+ get-east-asian-width@1.4.0: {}
get-intrinsic@1.3.0:
dependencies:
@@ -22908,16 +21646,11 @@ snapshots:
hasown: 2.0.2
math-intrinsics: 1.1.0
- get-package-type@0.1.0:
- optional: true
-
get-proto@1.0.1:
dependencies:
dunder-proto: 1.0.1
es-object-atoms: 1.1.1
- get-stream@3.0.0: {}
-
get-stream@5.2.0:
dependencies:
pump: 3.0.3
@@ -22937,7 +21670,7 @@ snapshots:
es-errors: 1.3.0
get-intrinsic: 1.3.0
- get-tsconfig@4.10.1:
+ get-tsconfig@4.13.0:
dependencies:
resolve-pkg-maps: 1.0.0
@@ -22961,7 +21694,7 @@ snapshots:
consola: 3.4.2
defu: 6.1.4
node-fetch-native: 1.6.7
- nypm: 0.6.1
+ nypm: 0.6.2
pathe: 2.0.3
git-up@7.0.0:
@@ -23002,7 +21735,7 @@ snapshots:
glob-to-regexp@0.4.1: {}
- glob@10.4.5:
+ glob@10.5.0:
dependencies:
foreground-child: 3.3.1
jackspeak: 3.4.3
@@ -23011,7 +21744,7 @@ snapshots:
package-json-from-dist: 1.0.1
path-scurry: 1.11.1
- glob@7.1.6:
+ glob@7.2.3:
dependencies:
fs.realpath: 1.0.0
inflight: 1.0.6
@@ -23157,8 +21890,6 @@ snapshots:
has-flag@4.0.0: {}
- has-own-prop@2.0.0: {}
-
has-property-descriptors@1.0.2:
dependencies:
es-define-property: 1.0.1
@@ -23201,6 +21932,10 @@ snapshots:
is-stream: 2.0.1
type-fest: 0.8.1
+ hashery@1.3.0:
+ dependencies:
+ hookified: 1.13.0
+
hasown@2.0.2:
dependencies:
function-bind: 1.1.2
@@ -23226,7 +21961,7 @@ snapshots:
dependencies:
react-is: 16.13.1
- hookified@1.12.0: {}
+ hookified@1.13.0: {}
hosted-git-info@2.8.9: {}
@@ -23261,7 +21996,7 @@ snapshots:
he: 1.2.0
param-case: 3.0.4
relateurl: 0.2.7
- terser: 5.44.0
+ terser: 5.44.1
html-tags@3.3.1: {}
@@ -23271,7 +22006,7 @@ snapshots:
html-minifier-terser: 6.1.0
lodash: 4.17.21
pretty-error: 4.0.0
- tapable: 2.2.3
+ tapable: 2.3.0
webpack: 5.90.1
htmlparser2@6.1.0:
@@ -23327,7 +22062,7 @@ snapshots:
http-proxy-middleware@2.0.1(debug@4.3.4):
dependencies:
- '@types/http-proxy': 1.17.16
+ '@types/http-proxy': 1.17.17
http-proxy: 1.18.1(debug@4.3.4)
is-glob: 4.0.3
is-plain-obj: 3.0.0
@@ -23335,27 +22070,27 @@ snapshots:
transitivePeerDependencies:
- debug
- http-proxy-middleware@2.0.9(@types/express@4.17.23):
+ http-proxy-middleware@2.0.9(@types/express@4.17.25):
dependencies:
- '@types/http-proxy': 1.17.16
+ '@types/http-proxy': 1.17.17
http-proxy: 1.18.1
is-glob: 4.0.3
is-plain-obj: 3.0.0
micromatch: 4.0.8
optionalDependencies:
- '@types/express': 4.17.23
+ '@types/express': 4.17.25
transitivePeerDependencies:
- debug
- http-proxy-middleware@2.0.9(@types/express@4.17.23)(debug@4.3.4):
+ http-proxy-middleware@2.0.9(@types/express@4.17.25)(debug@4.3.4):
dependencies:
- '@types/http-proxy': 1.17.16
+ '@types/http-proxy': 1.17.17
http-proxy: 1.18.1(debug@4.3.4)
is-glob: 4.0.3
is-plain-obj: 3.0.0
micromatch: 4.0.8
optionalDependencies:
- '@types/express': 4.17.23
+ '@types/express': 4.17.25
transitivePeerDependencies:
- debug
@@ -23452,7 +22187,7 @@ snapshots:
image-size@0.5.5:
optional: true
- immer@10.1.3: {}
+ immer@10.2.0: {}
immer@8.0.1: {}
@@ -23460,9 +22195,6 @@ snapshots:
immutable@4.3.7: {}
- immutable@5.1.3:
- optional: true
-
import-fresh@2.0.0:
dependencies:
caller-path: 2.0.0
@@ -23498,17 +22230,17 @@ snapshots:
ini@5.0.0: {}
- inquirer@12.9.6(@types/node@24.10.0):
+ inquirer@12.9.6(@types/node@24.10.1):
dependencies:
- '@inquirer/ansi': 1.0.0
- '@inquirer/core': 10.2.2(@types/node@24.10.0)
- '@inquirer/prompts': 7.8.6(@types/node@24.10.0)
- '@inquirer/type': 3.0.8(@types/node@24.10.0)
+ '@inquirer/ansi': 1.0.2
+ '@inquirer/core': 10.3.2(@types/node@24.10.1)
+ '@inquirer/prompts': 7.10.1(@types/node@24.10.1)
+ '@inquirer/type': 3.0.10(@types/node@24.10.1)
mute-stream: 2.0.0
run-async: 4.0.6
rxjs: 7.8.2
optionalDependencies:
- '@types/node': 24.10.0
+ '@types/node': 24.10.1
inquirer@7.3.3:
dependencies:
@@ -23576,11 +22308,11 @@ snapshots:
dependencies:
'@formatjs/intl-unified-numberformat': 3.3.7
- intl-messageformat@10.7.16:
+ intl-messageformat@10.7.18:
dependencies:
- '@formatjs/ecma402-abstract': 2.3.4
+ '@formatjs/ecma402-abstract': 2.3.6
'@formatjs/fast-memoize': 2.2.7
- '@formatjs/icu-messageformat-parser': 2.11.2
+ '@formatjs/icu-messageformat-parser': 2.11.4
tslib: 2.8.1
intl-messageformat@7.8.4:
@@ -23592,11 +22324,11 @@ snapshots:
dependencies:
loose-envify: 1.4.0
- ip-address@10.0.1: {}
+ ip-address@10.1.0: {}
ipaddr.js@1.9.1: {}
- ipaddr.js@2.2.0: {}
+ ipaddr.js@2.3.0: {}
is-absolute-url@2.1.0: {}
@@ -23617,7 +22349,7 @@ snapshots:
is-arrayish@0.2.1: {}
- is-arrayish@0.3.2: {}
+ is-arrayish@0.3.4: {}
is-async-function@2.1.1:
dependencies:
@@ -23644,7 +22376,7 @@ snapshots:
is-bun-module@2.0.0:
dependencies:
- semver: 7.7.2
+ semver: 7.7.3
is-callable@1.2.7: {}
@@ -23710,9 +22442,10 @@ snapshots:
is-fullwidth-code-point@3.0.0: {}
- is-generator-function@1.1.0:
+ is-generator-function@1.1.2:
dependencies:
call-bound: 1.0.4
+ generator-function: 2.0.1
get-proto: 1.0.1
has-tostringtag: 1.0.2
safe-regex-test: 1.1.0
@@ -23742,7 +22475,7 @@ snapshots:
is-negative-zero@2.0.3: {}
- is-npm@6.0.0: {}
+ is-npm@6.1.0: {}
is-number-object@1.1.1:
dependencies:
@@ -23889,17 +22622,6 @@ snapshots:
istanbul-lib-coverage@3.2.2: {}
- istanbul-lib-instrument@5.2.1:
- dependencies:
- '@babel/core': 7.28.5
- '@babel/parser': 7.28.5
- '@istanbuljs/schema': 0.1.3
- istanbul-lib-coverage: 3.2.2
- semver: 6.3.1
- transitivePeerDependencies:
- - supports-color
- optional: true
-
istanbul-lib-report@3.0.1:
dependencies:
istanbul-lib-coverage: 3.2.2
@@ -23908,7 +22630,7 @@ snapshots:
istanbul-lib-source-maps@5.0.6:
dependencies:
- '@jridgewell/trace-mapping': 0.3.30
+ '@jridgewell/trace-mapping': 0.3.31
debug: 4.3.4(supports-color@8.1.1)
istanbul-lib-coverage: 3.2.2
transitivePeerDependencies:
@@ -23955,24 +22677,14 @@ snapshots:
jest-get-type: 29.6.3
pretty-format: 29.7.0
- jest-get-type@29.6.3: {}
-
- jest-haste-map@29.7.0:
+ jest-diff@30.2.0:
dependencies:
- '@jest/types': 29.6.3
- '@types/graceful-fs': 4.1.9
- '@types/node': 24.10.0
- anymatch: 3.1.3
- fb-watchman: 2.0.2
- graceful-fs: 4.2.11
- jest-regex-util: 29.6.3
- jest-util: 29.7.0
- jest-worker: 29.7.0
- micromatch: 4.0.8
- walker: 1.0.8
- optionalDependencies:
- fsevents: 2.3.3
- optional: true
+ '@jest/diff-sequences': 30.0.1
+ '@jest/get-type': 30.1.0
+ chalk: 4.1.2
+ pretty-format: 30.2.0
+
+ jest-get-type@29.6.3: {}
jest-matcher-utils@29.2.2:
dependencies:
@@ -23981,12 +22693,12 @@ snapshots:
jest-get-type: 29.6.3
pretty-format: 29.7.0
- jest-matcher-utils@29.7.0:
+ jest-matcher-utils@30.2.0:
dependencies:
+ '@jest/get-type': 30.1.0
chalk: 4.1.2
- jest-diff: 29.7.0
- jest-get-type: 29.6.3
- pretty-format: 29.7.0
+ jest-diff: 30.2.0
+ pretty-format: 30.2.0
jest-message-util@26.6.2:
dependencies:
@@ -24000,92 +22712,51 @@ snapshots:
slash: 3.0.0
stack-utils: 2.0.6
- jest-message-util@29.7.0:
+ jest-message-util@30.2.0:
dependencies:
'@babel/code-frame': 7.27.1
- '@jest/types': 29.6.3
+ '@jest/types': 30.2.0
'@types/stack-utils': 2.0.3
chalk: 4.1.2
graceful-fs: 4.2.11
micromatch: 4.0.8
- pretty-format: 29.7.0
+ pretty-format: 30.2.0
slash: 3.0.0
stack-utils: 2.0.6
- jest-mock@29.7.0:
+ jest-mock@30.2.0:
dependencies:
- '@jest/types': 29.6.3
- '@types/node': 24.10.0
- jest-util: 29.7.0
- optional: true
+ '@jest/types': 30.2.0
+ '@types/node': 24.10.1
+ jest-util: 30.2.0
- jest-regex-util@29.6.3:
- optional: true
-
- jest-snapshot@29.7.0:
- dependencies:
- '@babel/core': 7.28.5
- '@babel/generator': 7.28.5
- '@babel/plugin-syntax-jsx': 7.27.1(@babel/core@7.28.5)
- '@babel/plugin-syntax-typescript': 7.27.1(@babel/core@7.28.5)
- '@babel/types': 7.20.5
- '@jest/expect-utils': 29.7.0
- '@jest/transform': 29.7.0
- '@jest/types': 29.6.3
- babel-preset-current-node-syntax: 1.2.0(@babel/core@7.28.5)
- chalk: 4.1.2
- expect: 29.7.0
- graceful-fs: 4.2.11
- jest-diff: 29.7.0
- jest-get-type: 29.6.3
- jest-matcher-utils: 29.7.0
- jest-message-util: 29.7.0
- jest-util: 29.7.0
- natural-compare: 1.4.0
- pretty-format: 29.7.0
- semver: 7.7.2
- transitivePeerDependencies:
- - supports-color
- optional: true
+ jest-regex-util@30.0.1: {}
- jest-util@29.7.0:
+ jest-util@30.2.0:
dependencies:
- '@jest/types': 29.6.3
- '@types/node': 24.10.0
+ '@jest/types': 30.2.0
+ '@types/node': 24.10.1
chalk: 4.1.2
- ci-info: 3.9.0
+ ci-info: 4.3.1
graceful-fs: 4.2.11
- picomatch: 2.3.1
+ picomatch: 4.0.3
jest-worker@26.6.2:
dependencies:
- '@types/node': 24.10.0
+ '@types/node': 24.10.1
merge-stream: 2.0.0
supports-color: 7.2.0
jest-worker@27.5.1:
dependencies:
- '@types/node': 24.10.0
- merge-stream: 2.0.0
- supports-color: 8.1.1
-
- jest-worker@29.7.0:
- dependencies:
- '@types/node': 24.10.0
- jest-util: 29.7.0
+ '@types/node': 24.10.1
merge-stream: 2.0.0
supports-color: 8.1.1
- optional: true
jiti@1.21.7: {}
- jiti@2.5.1: {}
-
jiti@2.6.1: {}
- jju@1.4.0:
- optional: true
-
joi@17.13.3:
dependencies:
'@hapi/hoek': 9.3.0
@@ -24094,9 +22765,9 @@ snapshots:
'@sideway/formula': 3.0.1
'@sideway/pinpoint': 2.0.0
- jotai@2.11.3(@types/react@18.3.24)(react@18.2.0):
+ jotai@2.11.3(@types/react@18.3.27)(react@18.2.0):
optionalDependencies:
- '@types/react': 18.3.24
+ '@types/react': 18.3.27
react: 18.2.0
joycon@3.1.1: {}
@@ -24109,12 +22780,12 @@ snapshots:
js-tokens@9.0.1: {}
- js-yaml@3.14.1:
+ js-yaml@3.14.2:
dependencies:
argparse: 1.0.10
esprima: 4.0.1
- js-yaml@4.1.0:
+ js-yaml@4.1.1:
dependencies:
argparse: 2.0.1
@@ -24138,7 +22809,7 @@ snapshots:
http-proxy-agent: 4.0.1
https-proxy-agent: 5.0.1
is-potential-custom-element-name: 1.0.1
- nwsapi: 2.2.21
+ nwsapi: 2.2.22
parse5: 6.0.1
saxes: 5.0.1
symbol-tree: 3.2.4
@@ -24166,12 +22837,12 @@ snapshots:
decimal.js: 10.6.0
domexception: 4.0.0
escodegen: 2.1.0
- form-data: 4.0.4
+ form-data: 4.0.5
html-encoding-sniffer: 3.0.0
http-proxy-agent: 5.0.0
https-proxy-agent: 5.0.1
is-potential-custom-element-name: 1.0.1
- nwsapi: 2.2.21
+ nwsapi: 2.2.22
parse5: 7.3.0
rrweb-cssom: 0.6.0
saxes: 6.0.0
@@ -24196,12 +22867,12 @@ snapshots:
data-urls: 4.0.0
decimal.js: 10.6.0
domexception: 4.0.0
- form-data: 4.0.4
+ form-data: 4.0.5
html-encoding-sniffer: 3.0.0
http-proxy-agent: 5.0.0
https-proxy-agent: 5.0.1
is-potential-custom-element-name: 1.0.1
- nwsapi: 2.2.21
+ nwsapi: 2.2.22
parse5: 7.3.0
rrweb-cssom: 0.6.0
saxes: 6.0.0
@@ -24219,8 +22890,6 @@ snapshots:
- supports-color
- utf-8-validate
- jsesc@3.0.2: {}
-
jsesc@3.1.0: {}
json-buffer@3.0.1: {}
@@ -24249,12 +22918,12 @@ snapshots:
json5@2.2.3: {}
- jsonc-eslint-parser@2.4.0:
+ jsonc-eslint-parser@2.4.1:
dependencies:
acorn: 8.15.0
eslint-visitor-keys: 3.4.3
espree: 9.6.1
- semver: 7.7.2
+ semver: 7.7.3
jsonfile@4.0.0:
optionalDependencies:
@@ -24273,7 +22942,7 @@ snapshots:
jws: 3.2.2
lodash: 4.17.21
ms: 2.1.3
- semver: 7.7.2
+ semver: 7.7.3
jsprim@1.4.2:
dependencies:
@@ -24318,9 +22987,9 @@ snapshots:
dependencies:
json-buffer: 3.0.1
- keyv@5.5.0:
+ keyv@5.5.4:
dependencies:
- '@keyv/serialize': 1.1.0
+ '@keyv/serialize': 1.1.1
kind-of@3.2.2:
dependencies:
@@ -24366,7 +23035,7 @@ snapshots:
image-size: 0.5.5
mime: 1.6.0
mkdirp: 0.5.6
- promise: 7.1.1
+ promise: 7.3.1
request: 2.88.2
source-map: 0.6.1
@@ -24378,64 +23047,67 @@ snapshots:
lightningcss-android-arm64@1.30.2:
optional: true
+ lightningcss-cli-android-arm64@1.30.2:
+ optional: true
+
lightningcss-cli-darwin-arm64@1.28.1:
optional: true
- lightningcss-cli-darwin-arm64@1.30.1:
+ lightningcss-cli-darwin-arm64@1.30.2:
optional: true
lightningcss-cli-darwin-x64@1.28.1:
optional: true
- lightningcss-cli-darwin-x64@1.30.1:
+ lightningcss-cli-darwin-x64@1.30.2:
optional: true
lightningcss-cli-freebsd-x64@1.28.1:
optional: true
- lightningcss-cli-freebsd-x64@1.30.1:
+ lightningcss-cli-freebsd-x64@1.30.2:
optional: true
lightningcss-cli-linux-arm-gnueabihf@1.28.1:
optional: true
- lightningcss-cli-linux-arm-gnueabihf@1.30.1:
+ lightningcss-cli-linux-arm-gnueabihf@1.30.2:
optional: true
lightningcss-cli-linux-arm64-gnu@1.28.1:
optional: true
- lightningcss-cli-linux-arm64-gnu@1.30.1:
+ lightningcss-cli-linux-arm64-gnu@1.30.2:
optional: true
lightningcss-cli-linux-arm64-musl@1.28.1:
optional: true
- lightningcss-cli-linux-arm64-musl@1.30.1:
+ lightningcss-cli-linux-arm64-musl@1.30.2:
optional: true
lightningcss-cli-linux-x64-gnu@1.28.1:
optional: true
- lightningcss-cli-linux-x64-gnu@1.30.1:
+ lightningcss-cli-linux-x64-gnu@1.30.2:
optional: true
lightningcss-cli-linux-x64-musl@1.28.1:
optional: true
- lightningcss-cli-linux-x64-musl@1.30.1:
+ lightningcss-cli-linux-x64-musl@1.30.2:
optional: true
lightningcss-cli-win32-arm64-msvc@1.28.1:
optional: true
- lightningcss-cli-win32-arm64-msvc@1.30.1:
+ lightningcss-cli-win32-arm64-msvc@1.30.2:
optional: true
lightningcss-cli-win32-x64-msvc@1.28.1:
optional: true
- lightningcss-cli-win32-x64-msvc@1.30.1:
+ lightningcss-cli-win32-x64-msvc@1.30.2:
optional: true
lightningcss-cli@1.28.1:
@@ -24453,108 +23125,79 @@ snapshots:
lightningcss-cli-win32-arm64-msvc: 1.28.1
lightningcss-cli-win32-x64-msvc: 1.28.1
- lightningcss-cli@1.30.1:
+ lightningcss-cli@1.30.2:
dependencies:
- detect-libc: 2.0.4
+ detect-libc: 2.1.2
optionalDependencies:
- lightningcss-cli-darwin-arm64: 1.30.1
- lightningcss-cli-darwin-x64: 1.30.1
- lightningcss-cli-freebsd-x64: 1.30.1
- lightningcss-cli-linux-arm-gnueabihf: 1.30.1
- lightningcss-cli-linux-arm64-gnu: 1.30.1
- lightningcss-cli-linux-arm64-musl: 1.30.1
- lightningcss-cli-linux-x64-gnu: 1.30.1
- lightningcss-cli-linux-x64-musl: 1.30.1
- lightningcss-cli-win32-arm64-msvc: 1.30.1
- lightningcss-cli-win32-x64-msvc: 1.30.1
+ lightningcss-cli-android-arm64: 1.30.2
+ lightningcss-cli-darwin-arm64: 1.30.2
+ lightningcss-cli-darwin-x64: 1.30.2
+ lightningcss-cli-freebsd-x64: 1.30.2
+ lightningcss-cli-linux-arm-gnueabihf: 1.30.2
+ lightningcss-cli-linux-arm64-gnu: 1.30.2
+ lightningcss-cli-linux-arm64-musl: 1.30.2
+ lightningcss-cli-linux-x64-gnu: 1.30.2
+ lightningcss-cli-linux-x64-musl: 1.30.2
+ lightningcss-cli-win32-arm64-msvc: 1.30.2
+ lightningcss-cli-win32-x64-msvc: 1.30.2
lightningcss-darwin-arm64@1.28.1:
optional: true
- lightningcss-darwin-arm64@1.30.1:
- optional: true
-
lightningcss-darwin-arm64@1.30.2:
optional: true
lightningcss-darwin-x64@1.28.1:
optional: true
- lightningcss-darwin-x64@1.30.1:
- optional: true
-
lightningcss-darwin-x64@1.30.2:
optional: true
lightningcss-freebsd-x64@1.28.1:
optional: true
- lightningcss-freebsd-x64@1.30.1:
- optional: true
-
lightningcss-freebsd-x64@1.30.2:
optional: true
lightningcss-linux-arm-gnueabihf@1.28.1:
optional: true
- lightningcss-linux-arm-gnueabihf@1.30.1:
- optional: true
-
lightningcss-linux-arm-gnueabihf@1.30.2:
optional: true
lightningcss-linux-arm64-gnu@1.28.1:
optional: true
- lightningcss-linux-arm64-gnu@1.30.1:
- optional: true
-
lightningcss-linux-arm64-gnu@1.30.2:
optional: true
lightningcss-linux-arm64-musl@1.28.1:
optional: true
- lightningcss-linux-arm64-musl@1.30.1:
- optional: true
-
lightningcss-linux-arm64-musl@1.30.2:
optional: true
lightningcss-linux-x64-gnu@1.28.1:
optional: true
- lightningcss-linux-x64-gnu@1.30.1:
- optional: true
-
lightningcss-linux-x64-gnu@1.30.2:
optional: true
lightningcss-linux-x64-musl@1.28.1:
optional: true
- lightningcss-linux-x64-musl@1.30.1:
- optional: true
-
lightningcss-linux-x64-musl@1.30.2:
optional: true
lightningcss-win32-arm64-msvc@1.28.1:
optional: true
- lightningcss-win32-arm64-msvc@1.30.1:
- optional: true
-
lightningcss-win32-arm64-msvc@1.30.2:
optional: true
lightningcss-win32-x64-msvc@1.28.1:
optional: true
- lightningcss-win32-x64-msvc@1.30.1:
- optional: true
-
lightningcss-win32-x64-msvc@1.30.2:
optional: true
@@ -24573,24 +23216,9 @@ snapshots:
lightningcss-win32-arm64-msvc: 1.28.1
lightningcss-win32-x64-msvc: 1.28.1
- lightningcss@1.30.1:
- dependencies:
- detect-libc: 2.0.4
- optionalDependencies:
- lightningcss-darwin-arm64: 1.30.1
- lightningcss-darwin-x64: 1.30.1
- lightningcss-freebsd-x64: 1.30.1
- lightningcss-linux-arm-gnueabihf: 1.30.1
- lightningcss-linux-arm64-gnu: 1.30.1
- lightningcss-linux-arm64-musl: 1.30.1
- lightningcss-linux-x64-gnu: 1.30.1
- lightningcss-linux-x64-musl: 1.30.1
- lightningcss-win32-arm64-msvc: 1.30.1
- lightningcss-win32-x64-msvc: 1.30.1
-
lightningcss@1.30.2:
dependencies:
- detect-libc: 2.0.4
+ detect-libc: 2.1.2
optionalDependencies:
lightningcss-android-arm64: 1.30.2
lightningcss-darwin-arm64: 1.30.2
@@ -24629,7 +23257,7 @@ snapshots:
load-tsconfig@0.2.5: {}
- loader-runner@4.3.0: {}
+ loader-runner@4.3.1: {}
loader-utils@1.4.2:
dependencies:
@@ -24687,12 +23315,6 @@ snapshots:
lodash.escaperegexp@4.1.2: {}
- lodash.get@4.4.2:
- optional: true
-
- lodash.isequal@4.5.0:
- optional: true
-
lodash.isplainobject@4.0.6: {}
lodash.isstring@4.0.1: {}
@@ -24703,8 +23325,6 @@ snapshots:
lodash.once@4.1.1: {}
- lodash.sortby@4.7.0: {}
-
lodash.truncate@4.4.2: {}
lodash.uniq@4.5.0: {}
@@ -24756,11 +23376,6 @@ snapshots:
lru-cache@10.4.3: {}
- lru-cache@4.1.5:
- dependencies:
- pseudomap: 1.0.2
- yallist: 2.1.2
-
lru-cache@5.1.1:
dependencies:
yallist: 3.1.1
@@ -24779,18 +23394,14 @@ snapshots:
dependencies:
'@jridgewell/sourcemap-codec': 1.5.5
- magic-string@0.30.18:
- dependencies:
- '@jridgewell/sourcemap-codec': 1.5.5
-
magic-string@0.30.21:
dependencies:
'@jridgewell/sourcemap-codec': 1.5.5
magicast@0.3.5:
dependencies:
- '@babel/parser': 7.28.3
- '@babel/types': 7.28.2
+ '@babel/parser': 7.28.5
+ '@babel/types': 7.28.5
source-map-js: 1.2.1
make-dir@3.1.0:
@@ -24799,12 +23410,7 @@ snapshots:
make-dir@4.0.0:
dependencies:
- semver: 7.7.2
-
- makeerror@1.0.12:
- dependencies:
- tmpl: 1.0.5
- optional: true
+ semver: 7.7.3
map-cache@0.2.2: {}
@@ -24820,8 +23426,8 @@ snapshots:
marked-terminal@7.3.0(marked@9.1.6):
dependencies:
- ansi-escapes: 7.0.0
- ansi-regex: 6.2.0
+ ansi-escapes: 7.2.0
+ ansi-regex: 6.2.2
chalk: 5.6.2
cli-highlight: 2.1.11
cli-table3: 0.6.5
@@ -24839,8 +23445,8 @@ snapshots:
dependencies:
'@types/mdast': 4.0.4
escape-string-regexp: 5.0.0
- unist-util-is: 6.0.0
- unist-util-visit-parents: 6.0.1
+ unist-util-is: 6.0.1
+ unist-util-visit-parents: 6.0.2
mdast-util-from-markdown@2.0.2:
dependencies:
@@ -24919,7 +23525,7 @@ snapshots:
mdast-util-phrasing@4.1.0:
dependencies:
'@types/mdast': 4.0.4
- unist-util-is: 6.0.0
+ unist-util-is: 6.0.1
mdast-util-to-markdown@2.1.2:
dependencies:
@@ -25224,7 +23830,7 @@ snapshots:
mini-css-extract-plugin@2.7.2(webpack@5.90.1):
dependencies:
- schema-utils: 4.3.2
+ schema-utils: 4.3.3
webpack: 5.90.1
minimalistic-assert@1.0.1: {}
@@ -25233,11 +23839,6 @@ snapshots:
dependencies:
brace-expansion: 1.1.12
- minimatch@3.0.8:
- dependencies:
- brace-expansion: 1.1.12
- optional: true
-
minimatch@3.1.2:
dependencies:
brace-expansion: 1.1.12
@@ -25303,11 +23904,11 @@ snapshots:
mrmime@2.0.1: {}
- mrs-developer@2.3.0:
+ mrs-developer@2.3.2:
dependencies:
async: 3.2.6
chalk: 2.4.2
- simple-git: 3.28.0
+ simple-git: 3.30.0
transitivePeerDependencies:
- supports-color
@@ -25328,12 +23929,6 @@ snapshots:
mute-stream@2.0.0: {}
- mz@2.6.0:
- dependencies:
- any-promise: 1.3.0
- object-assign: 4.1.1
- thenify-all: 1.6.0
-
mz@2.7.0:
dependencies:
any-promise: 1.3.0
@@ -25358,7 +23953,7 @@ snapshots:
transitivePeerDependencies:
- supports-color
- napi-postinstall@0.3.3: {}
+ napi-postinstall@0.3.4: {}
natural-compare-lite@1.4.0: {}
@@ -25385,9 +23980,6 @@ snapshots:
node-abort-controller@3.1.1: {}
- node-addon-api@7.1.1:
- optional: true
-
node-domexception@1.0.0: {}
node-emoji@2.2.0:
@@ -25416,19 +24008,16 @@ snapshots:
fetch-blob: 3.2.0
formdata-polyfill: 4.0.10
- node-forge@1.3.1: {}
-
- node-int64@0.4.0:
- optional: true
+ node-forge@1.3.2: {}
node-releases@1.1.77: {}
- node-releases@2.0.19: {}
+ node-releases@2.0.27: {}
normalize-package-data@2.5.0:
dependencies:
hosted-git-info: 2.8.9
- resolve: 1.22.10
+ resolve: 1.22.11
semver: 5.7.2
validate-npm-package-license: 3.0.4
@@ -25438,11 +24027,7 @@ snapshots:
normalize-url@3.3.0: {}
- normalize-url@8.0.2: {}
-
- npm-run-path@2.0.2:
- dependencies:
- path-key: 2.0.1
+ normalize-url@8.1.0: {}
npm-run-path@4.0.1:
dependencies:
@@ -25471,15 +24056,15 @@ snapshots:
schema-utils: 3.3.0
webpack: 5.90.1
- nwsapi@2.2.21: {}
+ nwsapi@2.2.22: {}
- nypm@0.6.1:
+ nypm@0.6.2:
dependencies:
citty: 0.1.6
consola: 3.4.2
pathe: 2.0.3
pkg-types: 2.3.0
- tinyexec: 1.0.1
+ tinyexec: 1.0.2
oauth-sign@0.9.0:
optional: true
@@ -25585,14 +24170,14 @@ snapshots:
open@10.0.3:
dependencies:
- default-browser: 5.2.1
+ default-browser: 5.4.0
define-lazy-prop: 3.0.0
is-inside-container: 1.0.0
is-wsl: 3.1.0
open@10.2.0:
dependencies:
- default-browser: 5.2.1
+ default-browser: 5.4.0
define-lazy-prop: 3.0.0
is-inside-container: 1.0.0
wsl-utils: 0.1.0
@@ -25648,7 +24233,7 @@ snapshots:
log-symbols: 5.1.0
stdin-discarder: 0.1.0
string-width: 6.1.0
- strip-ansi: 7.1.0
+ strip-ansi: 7.1.2
ora@8.0.1:
dependencies:
@@ -25696,8 +24281,6 @@ snapshots:
p-cancelable@3.0.0: {}
- p-finally@1.0.0: {}
-
p-limit@2.3.0:
dependencies:
p-try: 2.2.0
@@ -25708,7 +24291,7 @@ snapshots:
p-limit@4.0.0:
dependencies:
- yocto-queue: 1.2.1
+ yocto-queue: 1.2.2
p-locate@3.0.0:
dependencies:
@@ -25762,7 +24345,7 @@ snapshots:
got: 12.6.1
registry-auth-token: 5.1.0
registry-url: 6.0.1
- semver: 7.7.2
+ semver: 7.6.0
param-case@3.0.4:
dependencies:
@@ -25775,13 +24358,13 @@ snapshots:
parse-json@4.0.0:
dependencies:
- error-ex: 1.3.2
+ error-ex: 1.3.4
json-parse-better-errors: 1.0.2
parse-json@5.2.0:
dependencies:
'@babel/code-frame': 7.27.1
- error-ex: 1.3.2
+ error-ex: 1.3.4
json-parse-even-better-errors: 2.3.1
lines-and-columns: 1.2.4
@@ -25831,8 +24414,6 @@ snapshots:
path-is-absolute@1.0.1: {}
- path-key@2.0.1: {}
-
path-key@3.1.1: {}
path-key@4.0.0: {}
@@ -25901,16 +24482,16 @@ snapshots:
pkg-types@2.3.0:
dependencies:
confbox: 0.2.2
- exsolve: 1.0.7
+ exsolve: 1.0.8
pathe: 2.0.3
pkg-up@3.1.0:
dependencies:
find-up: 3.0.0
- pnp-webpack-plugin@1.7.0(typescript@5.9.2):
+ pnp-webpack-plugin@1.7.0(typescript@5.9.3):
dependencies:
- ts-pnp: 1.2.0(typescript@5.9.2)
+ ts-pnp: 1.2.0(typescript@5.9.3)
transitivePeerDependencies:
- typescript
@@ -25932,7 +24513,7 @@ snapshots:
postcss-colormin@4.0.3:
dependencies:
- browserslist: 4.25.4
+ browserslist: 4.28.0
color: 3.2.1
has: 1.0.4
postcss: 7.0.39
@@ -25974,20 +24555,20 @@ snapshots:
optionalDependencies:
postcss: 8.4.31
- postcss-load-config@6.0.1(jiti@2.6.1)(postcss@8.5.6)(yaml@2.8.1):
+ postcss-load-config@6.0.1(jiti@2.6.1)(postcss@8.5.6)(yaml@2.8.2):
dependencies:
lilconfig: 3.1.3
optionalDependencies:
jiti: 2.6.1
postcss: 8.5.6
- yaml: 2.8.1
+ yaml: 2.8.2
postcss-loader@7.0.2(postcss@8.4.31)(webpack@5.90.1):
dependencies:
cosmiconfig: 7.1.0
klona: 2.0.6
postcss: 8.4.31
- semver: 7.7.2
+ semver: 7.7.3
webpack: 5.90.1
postcss-merge-longhand@4.0.11:
@@ -25999,7 +24580,7 @@ snapshots:
postcss-merge-rules@4.0.3:
dependencies:
- browserslist: 4.25.4
+ browserslist: 4.28.0
caniuse-api: 3.0.0
cssnano-util-same-parent: 4.0.1
postcss: 7.0.39
@@ -26021,7 +24602,7 @@ snapshots:
postcss-minify-params@4.0.2:
dependencies:
alphanum-sort: 1.0.2
- browserslist: 4.25.4
+ browserslist: 4.28.0
cssnano-util-get-arguments: 4.0.0
postcss: 7.0.39
postcss-value-parser: 3.3.1
@@ -26046,25 +24627,25 @@ snapshots:
dependencies:
icss-utils: 5.1.0(postcss@8.4.31)
postcss: 8.4.31
- postcss-selector-parser: 7.1.0
+ postcss-selector-parser: 7.1.1
postcss-value-parser: 4.2.0
postcss-modules-local-by-default@4.2.0(postcss@8.5.6):
dependencies:
icss-utils: 5.1.0(postcss@8.5.6)
postcss: 8.5.6
- postcss-selector-parser: 7.1.0
+ postcss-selector-parser: 7.1.1
postcss-value-parser: 4.2.0
postcss-modules-scope@3.2.1(postcss@8.4.31):
dependencies:
postcss: 8.4.31
- postcss-selector-parser: 7.1.0
+ postcss-selector-parser: 7.1.1
postcss-modules-scope@3.2.1(postcss@8.5.6):
dependencies:
postcss: 8.5.6
- postcss-selector-parser: 7.1.0
+ postcss-selector-parser: 7.1.1
postcss-modules-values@4.0.0(postcss@8.4.31):
dependencies:
@@ -26114,7 +24695,7 @@ snapshots:
postcss-normalize-unicode@4.0.1:
dependencies:
- browserslist: 4.25.4
+ browserslist: 4.28.0
postcss: 7.0.39
postcss-value-parser: 3.3.1
@@ -26142,7 +24723,7 @@ snapshots:
postcss-reduce-initial@4.0.3:
dependencies:
- browserslist: 4.25.4
+ browserslist: 4.28.0
caniuse-api: 3.0.0
has: 1.0.4
postcss: 7.0.39
@@ -26175,7 +24756,7 @@ snapshots:
cssesc: 3.0.0
util-deprecate: 1.0.2
- postcss-selector-parser@7.1.0:
+ postcss-selector-parser@7.1.1:
dependencies:
cssesc: 3.0.0
util-deprecate: 1.0.2
@@ -26261,6 +24842,12 @@ snapshots:
ansi-styles: 5.2.0
react-is: 18.3.1
+ pretty-format@30.2.0:
+ dependencies:
+ '@jest/schemas': 30.0.5
+ ansi-styles: 5.2.0
+ react-is: 18.3.1
+
pretty-ms@9.3.0:
dependencies:
parse-ms: 4.0.0
@@ -26286,7 +24873,7 @@ snapshots:
get-intrinsic: 1.3.0
iterate-value: 1.0.2
- promise@7.1.1:
+ promise@7.3.1:
dependencies:
asap: 2.0.6
@@ -26375,8 +24962,6 @@ snapshots:
dependencies:
event-stream: 3.3.4
- pseudomap@1.0.2: {}
-
psl@1.15.0:
dependencies:
punycode: 2.3.1
@@ -26390,12 +24975,16 @@ snapshots:
punycode@2.3.1: {}
- pupa@3.1.0:
+ pupa@3.3.0:
dependencies:
escape-goat: 4.0.0
q@1.5.1: {}
+ qified@0.5.2:
+ dependencies:
+ hookified: 1.13.0
+
qs@6.11.0:
dependencies:
side-channel: 1.1.0
@@ -26407,7 +24996,7 @@ snapshots:
qs@6.5.3:
optional: true
- query-string@9.2.2:
+ query-string@9.3.1:
dependencies:
decode-uri-component: 0.4.1
filter-obj: 5.1.0
@@ -26438,42 +25027,42 @@ snapshots:
iconv-lite: 0.4.24
unpipe: 1.0.0
- razzle-dev-utils@4.2.18(eslint@8.57.1)(typescript@5.9.2)(vue-template-compiler@2.7.16)(webpack-dev-server@4.11.1(webpack@5.90.1))(webpack@5.90.1):
+ razzle-dev-utils@4.2.18(eslint@8.57.1)(typescript@5.9.3)(webpack-dev-server@4.11.1(debug@4.3.4)(webpack@5.90.1))(webpack@5.90.1):
dependencies:
'@babel/code-frame': 7.27.1
chalk: 4.1.2
filesize: 6.4.0
gzip-size: 6.0.0
jest-message-util: 26.6.2
- react-dev-utils: 11.0.4(eslint@8.57.1)(typescript@5.9.2)(vue-template-compiler@2.7.16)(webpack@5.90.1)
+ react-dev-utils: 11.0.4(eslint@8.57.1)(typescript@5.9.3)(webpack@5.90.1)
react-error-overlay: 6.0.9
recursive-readdir: 2.2.3
- resolve: 1.22.10
+ resolve: 1.22.11
sockjs-client: 1.4.0
strip-ansi: 6.0.1
webpack: 5.90.1
- webpack-dev-server: 4.11.1(webpack@5.90.1)
+ webpack-dev-server: 4.11.1(debug@4.3.4)(webpack@5.90.1)
transitivePeerDependencies:
- eslint
- supports-color
- typescript
- vue-template-compiler
- razzle-dev-utils@4.2.18(eslint@8.57.1)(typescript@5.9.2)(webpack-dev-server@4.11.1(debug@4.3.4)(webpack@5.90.1))(webpack@5.90.1):
+ razzle-dev-utils@4.2.18(eslint@8.57.1)(typescript@5.9.3)(webpack-dev-server@4.11.1(webpack@5.90.1))(webpack@5.90.1):
dependencies:
'@babel/code-frame': 7.27.1
chalk: 4.1.2
filesize: 6.4.0
gzip-size: 6.0.0
jest-message-util: 26.6.2
- react-dev-utils: 11.0.4(eslint@8.57.1)(typescript@5.9.2)(vue-template-compiler@2.7.16)(webpack@5.90.1)
+ react-dev-utils: 11.0.4(eslint@8.57.1)(typescript@5.9.3)(webpack@5.90.1)
react-error-overlay: 6.0.9
recursive-readdir: 2.2.3
- resolve: 1.22.10
+ resolve: 1.22.11
sockjs-client: 1.4.0
strip-ansi: 6.0.1
webpack: 5.90.1
- webpack-dev-server: 4.11.1(debug@4.3.4)(webpack@5.90.1)
+ webpack-dev-server: 4.11.1(webpack@5.90.1)
transitivePeerDependencies:
- eslint
- supports-color
@@ -26562,40 +25151,6 @@ snapshots:
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- react-aria-components@1.12.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0):
- dependencies:
- '@internationalized/date': 3.10.0
- '@internationalized/string': 3.2.7
- '@react-aria/autocomplete': 3.0.0-rc.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@react-aria/collections': 3.0.0-rc.6(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@react-aria/dnd': 3.11.2(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@react-aria/focus': 3.21.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@react-aria/interactions': 3.25.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@react-aria/live-announcer': 3.4.4
- '@react-aria/overlays': 3.29.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@react-aria/ssr': 3.9.10(react@18.2.0)
- '@react-aria/textfield': 3.18.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@react-aria/toolbar': 3.0.0-beta.20(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@react-aria/utils': 3.31.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@react-aria/virtualizer': 4.1.9(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@react-stately/autocomplete': 3.0.0-beta.3(react@18.2.0)
- '@react-stately/layout': 4.5.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@react-stately/selection': 3.20.5(react@18.2.0)
- '@react-stately/table': 3.15.0(react@18.2.0)
- '@react-stately/utils': 3.10.8(react@18.2.0)
- '@react-stately/virtualizer': 4.4.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- '@react-types/form': 3.7.15(react@18.2.0)
- '@react-types/grid': 3.3.5(react@18.2.0)
- '@react-types/shared': 3.32.1(react@18.2.0)
- '@react-types/table': 3.13.3(react@18.2.0)
- '@swc/helpers': 0.5.17
- client-only: 0.0.1
- react: 18.2.0
- react-aria: 3.44.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- react-dom: 18.2.0(react@18.2.0)
- react-stately: 3.42.0(react@18.2.0)
- use-sync-external-store: 1.5.0(react@18.2.0)
-
react-aria-components@1.13.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0):
dependencies:
'@internationalized/date': 3.10.0
@@ -26628,7 +25183,7 @@ snapshots:
react-aria: 3.44.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
react-dom: 18.2.0(react@18.2.0)
react-stately: 3.42.0(react@18.2.0)
- use-sync-external-store: 1.5.0(react@18.2.0)
+ use-sync-external-store: 1.6.0(react@18.2.0)
react-aria@3.44.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0):
dependencies:
@@ -26696,9 +25251,9 @@ snapshots:
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- react-cookie@4.1.1(@types/react@18.3.24)(react@18.2.0):
+ react-cookie@4.1.1(@types/react@18.3.27)(react@18.2.0):
dependencies:
- '@types/hoist-non-react-statics': 3.3.7(@types/react@18.3.24)
+ '@types/hoist-non-react-statics': 3.3.7(@types/react@18.3.27)
hoist-non-react-statics: 3.3.2
react: 18.2.0
universal-cookie: 4.0.4
@@ -26732,7 +25287,7 @@ snapshots:
react: 18.2.0
react-dom: 18.2.0(react@18.2.0)
- react-dev-utils@11.0.4(eslint@8.57.1)(typescript@5.9.2)(vue-template-compiler@2.7.16)(webpack@5.90.1):
+ react-dev-utils@11.0.4(eslint@8.57.1)(typescript@5.9.3)(webpack@5.90.1):
dependencies:
'@babel/code-frame': 7.10.4
address: 1.1.2
@@ -26743,7 +25298,7 @@ snapshots:
escape-string-regexp: 2.0.0
filesize: 6.1.0
find-up: 4.1.0
- fork-ts-checker-webpack-plugin: 4.1.6(eslint@8.57.1)(typescript@5.9.2)(vue-template-compiler@2.7.16)(webpack@5.90.1)
+ fork-ts-checker-webpack-plugin: 4.1.6(eslint@8.57.1)(typescript@5.9.3)(webpack@5.90.1)
global-modules: 2.0.0
globby: 11.0.1
gzip-size: 5.1.1
@@ -26760,7 +25315,7 @@ snapshots:
text-table: 0.2.0
webpack: 5.90.1
optionalDependencies:
- typescript: 5.9.2
+ typescript: 5.9.3
transitivePeerDependencies:
- eslint
- supports-color
@@ -26783,22 +25338,22 @@ snapshots:
recompose: 0.27.1(react@18.2.0)
shallowequal: 1.1.0
- react-docgen-typescript-plugin@1.0.8(typescript@5.9.2)(webpack@5.90.1):
+ react-docgen-typescript-plugin@1.0.8(typescript@5.9.3)(webpack@5.90.1):
dependencies:
debug: 4.3.4(supports-color@8.1.1)
find-cache-dir: 3.3.2
flat-cache: 3.2.0
micromatch: 4.0.8
- react-docgen-typescript: 2.4.0(typescript@5.9.2)
+ react-docgen-typescript: 2.4.0(typescript@5.9.3)
tslib: 2.8.1
- typescript: 5.9.2
+ typescript: 5.9.3
webpack: 5.90.1
transitivePeerDependencies:
- supports-color
- react-docgen-typescript@2.4.0(typescript@5.9.2):
+ react-docgen-typescript@2.4.0(typescript@5.9.3):
dependencies:
- typescript: 5.9.2
+ typescript: 5.9.3
react-docgen@7.1.1:
dependencies:
@@ -26810,8 +25365,8 @@ snapshots:
'@types/doctrine': 0.0.9
'@types/resolve': 1.20.6
doctrine: 3.0.0
- resolve: 1.22.10
- strip-indent: 4.0.0
+ resolve: 1.22.11
+ strip-indent: 4.1.1
transitivePeerDependencies:
- supports-color
@@ -26857,22 +25412,22 @@ snapshots:
dependencies:
react: 18.2.0
- react-intl-redux@2.3.0(@babel/runtime@7.28.4)(prop-types@15.7.2)(react-intl@3.12.1(@types/react@18.3.24)(react@18.2.0))(react-redux@8.1.2(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(redux@4.2.1))(react@18.2.0):
+ react-intl-redux@2.3.0(@babel/runtime@7.28.4)(prop-types@15.7.2)(react-intl@3.12.1(@types/react@18.3.27)(react@18.2.0))(react-redux@8.1.2(@types/react-dom@18.3.7(@types/react@18.3.27))(@types/react@18.3.27)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(redux@4.2.1))(react@18.2.0):
dependencies:
'@babel/runtime': 7.28.4
prop-types: 15.7.2
react: 18.2.0
- react-intl: 3.12.1(@types/react@18.3.24)(react@18.2.0)
- react-redux: 8.1.2(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(redux@4.2.1)
+ react-intl: 3.12.1(@types/react@18.3.27)(react@18.2.0)
+ react-redux: 8.1.2(@types/react-dom@18.3.7(@types/react@18.3.27))(@types/react@18.3.27)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(redux@4.2.1)
- react-intl@3.12.1(@types/react@18.3.24)(react@18.2.0):
+ react-intl@3.12.1(@types/react@18.3.27)(react@18.2.0):
dependencies:
'@formatjs/intl-displaynames': 1.2.10
'@formatjs/intl-listformat': 1.4.8
'@formatjs/intl-relativetimeformat': 4.5.16
'@formatjs/intl-unified-numberformat': 3.3.7
'@formatjs/intl-utils': 2.3.0
- '@types/hoist-non-react-statics': 3.3.7(@types/react@18.3.24)
+ '@types/hoist-non-react-statics': 3.3.7(@types/react@18.3.27)
'@types/invariant': 2.2.37
hoist-non-react-statics: 3.3.2
intl-format-cache: 4.3.1
@@ -26942,18 +25497,18 @@ snapshots:
optionalDependencies:
react-dom: 18.2.0(react@18.2.0)
- react-redux@8.1.2(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(redux@4.2.1):
+ react-redux@8.1.2(@types/react-dom@18.3.7(@types/react@18.3.27))(@types/react@18.3.27)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(redux@4.2.1):
dependencies:
- '@babel/runtime': 7.20.6
- '@types/hoist-non-react-statics': 3.3.7(@types/react@18.3.24)
+ '@babel/runtime': 7.28.4
+ '@types/hoist-non-react-statics': 3.3.7(@types/react@18.3.27)
'@types/use-sync-external-store': 0.0.3
hoist-non-react-statics: 3.3.2
react: 18.2.0
react-is: 18.3.1
- use-sync-external-store: 1.5.0(react@18.2.0)
+ use-sync-external-store: 1.6.0(react@18.2.0)
optionalDependencies:
- '@types/react': 18.3.24
- '@types/react-dom': 18.3.7(@types/react@18.3.24)
+ '@types/react': 18.3.27
+ '@types/react-dom': 18.3.7(@types/react@18.3.27)
react-dom: 18.2.0(react@18.2.0)
redux: 4.2.1
@@ -26996,22 +25551,22 @@ snapshots:
tiny-invariant: 1.3.3
tiny-warning: 1.0.3
- react-select-async-paginate@0.5.3(react-dom@18.2.0(react@18.2.0))(react-select@4.3.1(@types/react@18.3.24)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react@18.2.0):
+ react-select-async-paginate@0.5.3(react-dom@18.2.0(react@18.2.0))(react-select@4.3.1(@types/react@18.3.27)(react-dom@18.2.0(react@18.2.0))(react@18.2.0))(react@18.2.0):
dependencies:
'@babel/runtime': 7.28.4
'@seznam/compose-react-refs': 1.0.6
react: 18.2.0
react-is-mounted-hook: 1.1.2(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
- react-select: 4.3.1(@types/react@18.3.24)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ react-select: 4.3.1(@types/react@18.3.27)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
sleep-promise: 9.1.0
transitivePeerDependencies:
- react-dom
- react-select@4.3.1(@types/react@18.3.24)(react-dom@18.2.0(react@18.2.0))(react@18.2.0):
+ react-select@4.3.1(@types/react@18.3.27)(react-dom@18.2.0(react@18.2.0))(react@18.2.0):
dependencies:
'@babel/runtime': 7.28.4
'@emotion/cache': 11.14.0
- '@emotion/react': 11.14.0(@types/react@18.3.24)(react@18.2.0)
+ '@emotion/react': 11.14.0(@types/react@18.3.27)(react@18.2.0)
memoize-one: 5.2.1
prop-types: 15.7.2
react: 18.2.0
@@ -27190,7 +25745,7 @@ snapshots:
rechoir@0.6.2:
dependencies:
- resolve: 1.22.10
+ resolve: 1.22.11
recompose@0.27.1(react@18.2.0):
dependencies:
@@ -27222,11 +25777,11 @@ snapshots:
just-curry-it: 5.3.0
reduce-reducers: 1.0.4
- redux-connect@10.0.0(prop-types@15.7.2)(react-redux@8.1.2(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(redux@4.2.1))(react-router-config@5.1.1(react-router@5.2.0(react@18.2.0))(react@18.2.0))(react-router-dom@5.2.0(react@18.2.0))(react-router@5.2.0(react@18.2.0))(react@18.2.0)(redux-actions@3.0.0):
+ redux-connect@10.0.0(prop-types@15.7.2)(react-redux@8.1.2(@types/react-dom@18.3.7(@types/react@18.3.27))(@types/react@18.3.27)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(redux@4.2.1))(react-router-config@5.1.1(react-router@5.2.0(react@18.2.0))(react@18.2.0))(react-router-dom@5.2.0(react@18.2.0))(react-router@5.2.0(react@18.2.0))(react@18.2.0)(redux-actions@3.0.0):
dependencies:
prop-types: 15.7.2
react: 18.2.0
- react-redux: 8.1.2(@types/react-dom@18.3.7(@types/react@18.3.24))(@types/react@18.3.24)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(redux@4.2.1)
+ react-redux: 8.1.2(@types/react-dom@18.3.7(@types/react@18.3.27))(@types/react@18.3.27)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)(redux@4.2.1)
react-router: 5.2.0(react@18.2.0)
react-router-config: 5.1.1(react-router@5.2.0(react@18.2.0))(react@18.2.0)
react-router-dom: 5.2.0(react@18.2.0)
@@ -27259,7 +25814,7 @@ snapshots:
get-proto: 1.0.1
which-builtin-type: 1.2.1
- regenerate-unicode-properties@10.2.0:
+ regenerate-unicode-properties@10.2.2:
dependencies:
regenerate: 1.4.2
@@ -27267,8 +25822,6 @@ snapshots:
regenerator-runtime@0.11.1: {}
- regenerator-runtime@0.13.11: {}
-
regex-not@1.0.2:
dependencies:
extend-shallow: 3.0.2
@@ -27285,14 +25838,14 @@ snapshots:
gopd: 1.2.0
set-function-name: 2.0.2
- regexpu-core@6.2.0:
+ regexpu-core@6.4.0:
dependencies:
regenerate: 1.4.2
- regenerate-unicode-properties: 10.2.0
+ regenerate-unicode-properties: 10.2.2
regjsgen: 0.8.0
- regjsparser: 0.12.0
+ regjsparser: 0.13.0
unicode-match-property-ecmascript: 2.0.0
- unicode-match-property-value-ecmascript: 2.2.0
+ unicode-match-property-value-ecmascript: 2.2.1
registry-auth-token@5.1.0:
dependencies:
@@ -27304,19 +25857,19 @@ snapshots:
regjsgen@0.8.0: {}
- regjsparser@0.12.0:
+ regjsparser@0.13.0:
dependencies:
- jsesc: 3.0.2
+ jsesc: 3.1.0
relateurl@0.2.7: {}
- release-it@16.2.1(encoding@0.1.13)(typescript@5.9.2):
+ release-it@16.3.0(encoding@0.1.13)(typescript@5.9.3):
dependencies:
'@iarna/toml': 2.2.5
'@octokit/rest': 19.0.13(encoding@0.1.13)
async-retry: 1.3.3
chalk: 5.3.0
- cosmiconfig: 8.3.6(typescript@5.9.2)
+ cosmiconfig: 8.3.6(typescript@5.9.3)
execa: 7.2.0
git-url-parse: 13.1.0
globby: 13.2.2
@@ -27344,13 +25897,13 @@ snapshots:
- supports-color
- typescript
- release-it@17.1.1(typescript@5.9.2):
+ release-it@17.1.1(typescript@5.9.3):
dependencies:
'@iarna/toml': 2.2.5
'@octokit/rest': 20.0.2
async-retry: 1.3.3
chalk: 5.3.0
- cosmiconfig: 9.0.0(typescript@5.9.2)
+ cosmiconfig: 9.0.0(typescript@5.9.3)
execa: 8.0.1
git-url-parse: 14.0.0
globby: 14.0.1
@@ -27377,17 +25930,17 @@ snapshots:
- supports-color
- typescript
- release-it@19.0.5(@types/node@24.10.0)(magicast@0.3.5):
+ release-it@19.0.6(@types/node@24.10.1)(magicast@0.3.5):
dependencies:
'@nodeutils/defaults-deep': 1.1.0
'@octokit/rest': 22.0.0
'@phun-ky/typeof': 2.0.3
async-retry: 1.3.3
- c12: 3.3.0(magicast@0.3.5)
- ci-info: 4.3.0
+ c12: 3.3.1(magicast@0.3.5)
+ ci-info: 4.3.1
eta: 4.0.1
git-url-parse: 16.1.0
- inquirer: 12.9.6(@types/node@24.10.0)
+ inquirer: 12.9.6(@types/node@24.10.1)
issue-parser: 7.0.1
lodash.merge: 4.6.2
mime-types: 3.0.1
@@ -27508,13 +26061,7 @@ snapshots:
resolve-url@0.2.1: {}
- resolve@1.19.0:
- dependencies:
- is-core-module: 2.16.1
- path-parse: 1.0.7
- optional: true
-
- resolve@1.22.10:
+ resolve@1.22.11:
dependencies:
is-core-module: 2.16.1
path-parse: 1.0.7
@@ -27566,33 +26113,34 @@ snapshots:
rimraf@3.0.2:
dependencies:
- glob: 7.1.6
+ glob: 7.2.3
- rollup@4.50.0:
+ rollup@4.53.3:
dependencies:
'@types/estree': 1.0.8
optionalDependencies:
- '@rollup/rollup-android-arm-eabi': 4.50.0
- '@rollup/rollup-android-arm64': 4.50.0
- '@rollup/rollup-darwin-arm64': 4.50.0
- '@rollup/rollup-darwin-x64': 4.50.0
- '@rollup/rollup-freebsd-arm64': 4.50.0
- '@rollup/rollup-freebsd-x64': 4.50.0
- '@rollup/rollup-linux-arm-gnueabihf': 4.50.0
- '@rollup/rollup-linux-arm-musleabihf': 4.50.0
- '@rollup/rollup-linux-arm64-gnu': 4.50.0
- '@rollup/rollup-linux-arm64-musl': 4.50.0
- '@rollup/rollup-linux-loongarch64-gnu': 4.50.0
- '@rollup/rollup-linux-ppc64-gnu': 4.50.0
- '@rollup/rollup-linux-riscv64-gnu': 4.50.0
- '@rollup/rollup-linux-riscv64-musl': 4.50.0
- '@rollup/rollup-linux-s390x-gnu': 4.50.0
- '@rollup/rollup-linux-x64-gnu': 4.50.0
- '@rollup/rollup-linux-x64-musl': 4.50.0
- '@rollup/rollup-openharmony-arm64': 4.50.0
- '@rollup/rollup-win32-arm64-msvc': 4.50.0
- '@rollup/rollup-win32-ia32-msvc': 4.50.0
- '@rollup/rollup-win32-x64-msvc': 4.50.0
+ '@rollup/rollup-android-arm-eabi': 4.53.3
+ '@rollup/rollup-android-arm64': 4.53.3
+ '@rollup/rollup-darwin-arm64': 4.53.3
+ '@rollup/rollup-darwin-x64': 4.53.3
+ '@rollup/rollup-freebsd-arm64': 4.53.3
+ '@rollup/rollup-freebsd-x64': 4.53.3
+ '@rollup/rollup-linux-arm-gnueabihf': 4.53.3
+ '@rollup/rollup-linux-arm-musleabihf': 4.53.3
+ '@rollup/rollup-linux-arm64-gnu': 4.53.3
+ '@rollup/rollup-linux-arm64-musl': 4.53.3
+ '@rollup/rollup-linux-loong64-gnu': 4.53.3
+ '@rollup/rollup-linux-ppc64-gnu': 4.53.3
+ '@rollup/rollup-linux-riscv64-gnu': 4.53.3
+ '@rollup/rollup-linux-riscv64-musl': 4.53.3
+ '@rollup/rollup-linux-s390x-gnu': 4.53.3
+ '@rollup/rollup-linux-x64-gnu': 4.53.3
+ '@rollup/rollup-linux-x64-musl': 4.53.3
+ '@rollup/rollup-openharmony-arm64': 4.53.3
+ '@rollup/rollup-win32-arm64-msvc': 4.53.3
+ '@rollup/rollup-win32-ia32-msvc': 4.53.3
+ '@rollup/rollup-win32-x64-gnu': 4.53.3
+ '@rollup/rollup-win32-x64-msvc': 4.53.3
fsevents: 2.3.3
rrule@2.7.1:
@@ -27605,7 +26153,7 @@ snapshots:
dependencies:
execa: 5.1.1
- run-applescript@7.0.0: {}
+ run-applescript@7.1.0: {}
run-async@2.4.1: {}
@@ -27664,7 +26212,7 @@ snapshots:
loader-utils: 2.0.4
neo-async: 2.6.2
schema-utils: 3.3.0
- semver: 7.7.2
+ semver: 7.7.3
webpack: 5.90.1
optionalDependencies:
sass: 1.58.0
@@ -27675,15 +26223,6 @@ snapshots:
immutable: 4.3.7
source-map-js: 1.2.1
- sass@1.92.0:
- dependencies:
- chokidar: 4.0.3
- immutable: 5.1.3
- source-map-js: 1.2.1
- optionalDependencies:
- '@parcel/watcher': 2.5.1
- optional: true
-
sax@1.2.4: {}
saxes@5.0.1:
@@ -27710,7 +26249,7 @@ snapshots:
ajv: 6.12.6
ajv-keywords: 3.5.2(ajv@6.12.6)
- schema-utils@4.3.2:
+ schema-utils@4.3.3:
dependencies:
'@types/json-schema': 7.0.15
ajv: 8.17.1
@@ -27728,7 +26267,7 @@ snapshots:
selfsigned@2.4.1:
dependencies:
'@types/node-forge': 1.3.14
- node-forge: 1.3.1
+ node-forge: 1.3.2
semantic-ui-less@2.4.1:
dependencies:
@@ -27736,7 +26275,7 @@ snapshots:
semantic-ui-react@2.1.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0):
dependencies:
- '@babel/runtime': 7.20.6
+ '@babel/runtime': 7.28.4
'@fluentui/react-component-event-listener': 0.63.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
'@fluentui/react-component-ref': 0.63.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
'@popperjs/core': 2.11.8
@@ -27754,7 +26293,7 @@ snapshots:
semver-diff@4.0.0:
dependencies:
- semver: 7.7.2
+ semver: 7.6.0
semver@5.7.2: {}
@@ -27770,6 +26309,8 @@ snapshots:
semver@7.7.2: {}
+ semver@7.7.3: {}
+
send@0.18.0:
dependencies:
debug: 2.6.9
@@ -27860,23 +26401,17 @@ snapshots:
shallowequal@1.1.0: {}
- shebang-command@1.2.0:
- dependencies:
- shebang-regex: 1.0.0
-
shebang-command@2.0.0:
dependencies:
shebang-regex: 3.0.0
- shebang-regex@1.0.0: {}
-
shebang-regex@3.0.0: {}
shell-quote@1.7.2: {}
shelljs@0.8.5:
dependencies:
- glob: 7.1.6
+ glob: 7.2.3
interpret: 1.4.0
rechoir: 0.6.2
@@ -27914,17 +26449,17 @@ snapshots:
signal-exit@4.1.0: {}
- simple-git@3.28.0:
+ simple-git@3.30.0:
dependencies:
'@kwsites/file-exists': 1.1.1
'@kwsites/promise-deferred': 1.1.1
- debug: 4.4.1
+ debug: 4.4.3
transitivePeerDependencies:
- supports-color
- simple-swizzle@0.2.2:
+ simple-swizzle@0.2.4:
dependencies:
- is-arrayish: 0.3.2
+ is-arrayish: 0.3.4
sirv@2.0.4:
dependencies:
@@ -27932,7 +26467,7 @@ snapshots:
mrmime: 2.0.1
totalist: 3.0.1
- sirv@3.0.1:
+ sirv@3.0.2:
dependencies:
'@polka/url': 1.0.0-next.29
mrmime: 2.0.1
@@ -27987,7 +26522,7 @@ snapshots:
slate@0.118.1:
dependencies:
- immer: 10.1.3
+ immer: 10.2.0
tiny-warning: 1.0.3
sleep-promise@9.1.0: {}
@@ -28061,7 +26596,7 @@ snapshots:
socks@2.8.7:
dependencies:
- ip-address: 10.0.1
+ ip-address: 10.1.0
smart-buffer: 4.2.0
source-list-map@2.0.1: {}
@@ -28089,10 +26624,6 @@ snapshots:
source-map@0.7.6: {}
- source-map@0.8.0-beta.0:
- dependencies:
- whatwg-url: 7.1.0
-
spdx-correct@3.2.0:
dependencies:
spdx-expression-parse: 3.0.1
@@ -28189,7 +26720,7 @@ snapshots:
statuses@2.0.1: {}
- std-env@3.9.0: {}
+ std-env@3.10.0: {}
stdin-discarder@0.1.0:
dependencies:
@@ -28216,9 +26747,6 @@ snapshots:
dependencies:
duplexer: 0.1.2
- string-argv@0.3.2:
- optional: true
-
string-hash@1.1.3: {}
string-natural-compare@3.0.1: {}
@@ -28238,18 +26766,18 @@ snapshots:
string-width@6.1.0:
dependencies:
eastasianwidth: 0.2.0
- emoji-regex: 10.5.0
+ emoji-regex: 10.6.0
strip-ansi: 7.1.2
string-width@7.2.0:
dependencies:
- emoji-regex: 10.5.0
- get-east-asian-width: 1.3.1
+ emoji-regex: 10.6.0
+ get-east-asian-width: 1.4.0
strip-ansi: 7.1.2
string-width@8.1.0:
dependencies:
- get-east-asian-width: 1.3.1
+ get-east-asian-width: 1.4.0
strip-ansi: 7.1.2
string.prototype.includes@2.0.1:
@@ -28322,18 +26850,12 @@ snapshots:
dependencies:
ansi-regex: 5.0.1
- strip-ansi@7.1.0:
- dependencies:
- ansi-regex: 6.2.0
-
strip-ansi@7.1.2:
dependencies:
- ansi-regex: 6.2.0
+ ansi-regex: 6.2.2
strip-bom@3.0.0: {}
- strip-eof@1.0.0: {}
-
strip-final-newline@2.0.0: {}
strip-final-newline@3.0.0: {}
@@ -28344,9 +26866,7 @@ snapshots:
dependencies:
min-indent: 1.0.1
- strip-indent@4.0.0:
- dependencies:
- min-indent: 1.0.1
+ strip-indent@4.1.1: {}
strip-json-comments@2.0.1: {}
@@ -28356,7 +26876,7 @@ snapshots:
dependencies:
js-tokens: 9.0.1
- strip-literal@3.0.0:
+ strip-literal@3.1.0:
dependencies:
js-tokens: 9.0.1
@@ -28366,43 +26886,44 @@ snapshots:
stylehacks@4.0.3:
dependencies:
- browserslist: 4.25.4
+ browserslist: 4.28.0
postcss: 7.0.39
postcss-selector-parser: 3.1.2
- stylelint-config-idiomatic-order@10.0.0(stylelint@16.23.1(typescript@5.9.2)):
+ stylelint-config-idiomatic-order@10.0.0(stylelint@16.26.1(typescript@5.9.3)):
dependencies:
- stylelint: 16.23.1(typescript@5.9.2)
- stylelint-order: 6.0.4(stylelint@16.23.1(typescript@5.9.2))
+ stylelint: 16.26.1(typescript@5.9.3)
+ stylelint-order: 6.0.4(stylelint@16.26.1(typescript@5.9.3))
- stylelint-order@6.0.4(stylelint@16.23.1(typescript@5.9.2)):
+ stylelint-order@6.0.4(stylelint@16.26.1(typescript@5.9.3)):
dependencies:
postcss: 8.5.6
postcss-sorting: 8.0.2(postcss@8.5.6)
- stylelint: 16.23.1(typescript@5.9.2)
+ stylelint: 16.26.1(typescript@5.9.3)
- stylelint-prettier@5.0.0(prettier@3.2.5)(stylelint@16.23.1(typescript@5.9.2)):
+ stylelint-prettier@5.0.0(prettier@3.2.5)(stylelint@16.26.1(typescript@5.9.3)):
dependencies:
prettier: 3.2.5
prettier-linter-helpers: 1.0.0
- stylelint: 16.23.1(typescript@5.9.2)
+ stylelint: 16.26.1(typescript@5.9.3)
- stylelint@16.23.1(typescript@5.9.2):
+ stylelint@16.26.1(typescript@5.9.3):
dependencies:
'@csstools/css-parser-algorithms': 3.0.5(@csstools/css-tokenizer@3.0.4)
+ '@csstools/css-syntax-patches-for-csstree': 1.0.20
'@csstools/css-tokenizer': 3.0.4
'@csstools/media-query-list-parser': 4.0.3(@csstools/css-parser-algorithms@3.0.5(@csstools/css-tokenizer@3.0.4))(@csstools/css-tokenizer@3.0.4)
- '@csstools/selector-specificity': 5.0.0(postcss-selector-parser@7.1.0)
+ '@csstools/selector-specificity': 5.0.0(postcss-selector-parser@7.1.1)
'@dual-bundle/import-meta-resolve': 4.2.1
balanced-match: 2.0.0
colord: 2.9.3
- cosmiconfig: 9.0.0(typescript@5.9.2)
+ cosmiconfig: 9.0.0(typescript@5.9.3)
css-functions-list: 3.2.3
css-tree: 3.1.0
- debug: 4.4.1
+ debug: 4.4.3
fast-glob: 3.3.3
fastest-levenshtein: 1.0.16
- file-entry-cache: 10.1.4
+ file-entry-cache: 11.1.1
global-modules: 2.0.0
globby: 11.1.0
globjoin: 0.1.4
@@ -28419,7 +26940,7 @@ snapshots:
postcss: 8.5.6
postcss-resolve-nested-selector: 0.1.6
postcss-safe-parser: 7.0.1(postcss@8.5.6)
- postcss-selector-parser: 7.1.0
+ postcss-selector-parser: 7.1.1
postcss-value-parser: 4.2.0
resolve-from: 5.0.0
string-width: 4.2.3
@@ -28433,14 +26954,14 @@ snapshots:
stylis@4.2.0: {}
- sucrase@3.35.0:
+ sucrase@3.35.1:
dependencies:
'@jridgewell/gen-mapping': 0.3.13
commander: 4.1.1
- glob: 10.4.5
lines-and-columns: 1.2.4
mz: 2.7.0
pirates: 4.0.7
+ tinyglobby: 0.2.15
ts-interface-checker: 0.1.13
superagent@3.8.2:
@@ -28502,7 +27023,7 @@ snapshots:
css-select-base-adapter: 0.1.1
css-tree: 1.0.0-alpha.37
csso: 4.2.0
- js-yaml: 3.14.1
+ js-yaml: 3.14.2
mkdirp: 0.5.6
object.values: 1.2.1
sax: 1.2.4
@@ -28550,26 +27071,26 @@ snapshots:
tailwind-merge@3.0.2: {}
- tailwind-merge@3.3.1: {}
+ tailwind-merge@3.4.0: {}
- tailwind-variants@1.0.0(tailwindcss@4.1.16):
+ tailwind-variants@1.0.0(tailwindcss@4.1.17):
dependencies:
tailwind-merge: 3.0.2
- tailwindcss: 4.1.16
+ tailwindcss: 4.1.17
- tailwindcss-animate@1.0.7(tailwindcss@4.1.16):
+ tailwindcss-animate@1.0.7(tailwindcss@4.1.17):
dependencies:
- tailwindcss: 4.1.16
+ tailwindcss: 4.1.17
- tailwindcss-react-aria-components@2.0.1(tailwindcss@4.1.16):
+ tailwindcss-react-aria-components@2.0.1(tailwindcss@4.1.17):
dependencies:
- tailwindcss: 4.1.16
+ tailwindcss: 4.1.17
- tailwindcss@4.1.16: {}
+ tailwindcss@4.1.17: {}
tapable@1.1.3: {}
- tapable@2.2.3: {}
+ tapable@2.3.0: {}
tar@6.2.1:
dependencies:
@@ -28588,21 +27109,21 @@ snapshots:
dependencies:
'@jridgewell/trace-mapping': 0.3.31
jest-worker: 27.5.1
- schema-utils: 4.3.2
+ schema-utils: 4.3.3
serialize-javascript: 6.0.2
- terser: 5.44.0
+ terser: 5.44.1
webpack: 5.90.1
terser-webpack-plugin@5.3.6(webpack@5.90.1):
dependencies:
- '@jridgewell/trace-mapping': 0.3.30
+ '@jridgewell/trace-mapping': 0.3.31
jest-worker: 27.5.1
schema-utils: 3.3.0
serialize-javascript: 6.0.2
- terser: 5.44.0
+ terser: 5.44.1
webpack: 5.90.1
- terser@5.44.0:
+ terser@5.44.1:
dependencies:
'@jridgewell/source-map': 0.3.11
acorn: 8.15.0
@@ -28612,13 +27133,13 @@ snapshots:
test-exclude@6.0.0:
dependencies:
'@istanbuljs/schema': 0.1.3
- glob: 7.1.6
+ glob: 7.2.3
minimatch: 3.1.2
test-exclude@7.0.1:
dependencies:
'@istanbuljs/schema': 0.1.3
- glob: 10.4.5
+ glob: 10.5.0
minimatch: 9.0.5
text-table@0.2.0: {}
@@ -28653,12 +27174,7 @@ snapshots:
tinyexec@0.3.2: {}
- tinyexec@1.0.1: {}
-
- tinyglobby@0.2.14:
- dependencies:
- fdir: 6.5.0(picomatch@4.0.3)
- picomatch: 4.0.3
+ tinyexec@1.0.2: {}
tinyglobby@0.2.15:
dependencies:
@@ -28673,7 +27189,7 @@ snapshots:
tinyspy@3.0.2: {}
- tinyspy@4.0.3: {}
+ tinyspy@4.0.4: {}
titleize@3.0.0: {}
@@ -28695,9 +27211,6 @@ snapshots:
tmp@0.2.5: {}
- tmpl@1.0.5:
- optional: true
-
to-fast-properties@1.0.3: {}
to-fast-properties@2.0.0: {}
@@ -28749,10 +27262,6 @@ snapshots:
tr46@0.0.3: {}
- tr46@1.0.1:
- dependencies:
- punycode: 2.3.1
-
tr46@2.1.0:
dependencies:
punycode: 2.3.1
@@ -28767,34 +27276,34 @@ snapshots:
trough@2.2.0: {}
- ts-api-utils@1.4.3(typescript@5.9.2):
+ ts-api-utils@1.4.3(typescript@5.9.3):
dependencies:
- typescript: 5.9.2
+ typescript: 5.9.3
- ts-api-utils@2.1.0(typescript@5.9.2):
+ ts-api-utils@2.1.0(typescript@5.9.3):
dependencies:
- typescript: 5.9.2
+ typescript: 5.9.3
ts-dedent@2.2.0: {}
ts-interface-checker@0.1.13: {}
- ts-loader@9.4.4(typescript@5.9.2)(webpack@5.90.1):
+ ts-loader@9.4.4(typescript@5.9.3)(webpack@5.90.1):
dependencies:
chalk: 4.1.2
enhanced-resolve: 5.18.3
micromatch: 4.0.8
- semver: 7.7.2
- typescript: 5.9.2
+ semver: 7.7.3
+ typescript: 5.9.3
webpack: 5.90.1
- ts-pnp@1.2.0(typescript@5.9.2):
+ ts-pnp@1.2.0(typescript@5.9.3):
optionalDependencies:
- typescript: 5.9.2
+ typescript: 5.9.3
- tsconfck@3.1.6(typescript@5.9.2):
+ tsconfck@3.1.6(typescript@5.9.3):
optionalDependencies:
- typescript: 5.9.2
+ typescript: 5.9.3
tsconfig-paths@3.15.0:
dependencies:
@@ -28813,39 +27322,38 @@ snapshots:
tslib@2.8.1: {}
- tsup@8.5.0(@microsoft/api-extractor@7.43.0(@types/node@24.10.0))(jiti@2.6.1)(postcss@8.5.6)(typescript@5.9.2)(yaml@2.8.1):
+ tsup@8.5.1(jiti@2.6.1)(postcss@8.5.6)(typescript@5.9.3)(yaml@2.8.2):
dependencies:
- bundle-require: 5.1.0(esbuild@0.25.9)
+ bundle-require: 5.1.0(esbuild@0.27.0)
cac: 6.7.14
chokidar: 4.0.3
consola: 3.4.2
- debug: 4.4.1
- esbuild: 0.25.9
+ debug: 4.4.3
+ esbuild: 0.27.0
fix-dts-default-cjs-exports: 1.0.1
joycon: 3.1.1
picocolors: 1.1.1
- postcss-load-config: 6.0.1(jiti@2.6.1)(postcss@8.5.6)(yaml@2.8.1)
+ postcss-load-config: 6.0.1(jiti@2.6.1)(postcss@8.5.6)(yaml@2.8.2)
resolve-from: 5.0.0
- rollup: 4.50.0
- source-map: 0.8.0-beta.0
- sucrase: 3.35.0
+ rollup: 4.53.3
+ source-map: 0.7.6
+ sucrase: 3.35.1
tinyexec: 0.3.2
- tinyglobby: 0.2.14
+ tinyglobby: 0.2.15
tree-kill: 1.2.2
optionalDependencies:
- '@microsoft/api-extractor': 7.43.0(@types/node@24.10.0)
postcss: 8.5.6
- typescript: 5.9.2
+ typescript: 5.9.3
transitivePeerDependencies:
- jiti
- supports-color
- tsx
- yaml
- tsutils@3.21.0(typescript@5.9.2):
+ tsutils@3.21.0(typescript@5.9.3):
dependencies:
tslib: 1.14.1
- typescript: 5.9.2
+ typescript: 5.9.3
tunnel-agent@0.6.0:
dependencies:
@@ -28871,9 +27379,6 @@ snapshots:
type-fest@2.19.0: {}
- type-fest@4.41.0:
- optional: true
-
type-is@1.6.18:
dependencies:
media-typer: 0.3.0
@@ -28918,12 +27423,9 @@ snapshots:
dependencies:
is-typedarray: 1.0.0
- typescript@5.4.2:
- optional: true
-
typescript@5.6.1-rc: {}
- typescript@5.9.2: {}
+ typescript@5.9.3: {}
ua-parser-js@0.7.41: {}
@@ -28954,11 +27456,11 @@ snapshots:
unicode-match-property-ecmascript@2.0.0:
dependencies:
unicode-canonical-property-names-ecmascript: 2.0.1
- unicode-property-aliases-ecmascript: 2.1.0
+ unicode-property-aliases-ecmascript: 2.2.0
- unicode-match-property-value-ecmascript@2.2.0: {}
+ unicode-match-property-value-ecmascript@2.2.1: {}
- unicode-property-aliases-ecmascript@2.1.0: {}
+ unicode-property-aliases-ecmascript@2.2.0: {}
unicorn-magic@0.1.0: {}
@@ -28997,7 +27499,7 @@ snapshots:
dependencies:
crypto-random-string: 4.0.0
- unist-util-is@6.0.0:
+ unist-util-is@6.0.1:
dependencies:
'@types/unist': 3.0.3
@@ -29005,16 +27507,16 @@ snapshots:
dependencies:
'@types/unist': 3.0.3
- unist-util-visit-parents@6.0.1:
+ unist-util-visit-parents@6.0.2:
dependencies:
'@types/unist': 3.0.3
- unist-util-is: 6.0.0
+ unist-util-is: 6.0.1
unist-util-visit@5.0.0:
dependencies:
'@types/unist': 3.0.3
- unist-util-is: 6.0.0
- unist-util-visit-parents: 6.0.1
+ unist-util-is: 6.0.1
+ unist-util-visit-parents: 6.0.2
universal-cookie-express@4.0.3:
dependencies:
@@ -29046,7 +27548,7 @@ snapshots:
unrs-resolver@1.11.1:
dependencies:
- napi-postinstall: 0.3.3
+ napi-postinstall: 0.3.4
optionalDependencies:
'@unrs/resolver-binding-android-arm-eabi': 1.11.1
'@unrs/resolver-binding-android-arm64': 1.11.1
@@ -29075,9 +27577,9 @@ snapshots:
untildify@4.0.0: {}
- update-browserslist-db@1.1.3(browserslist@4.25.4):
+ update-browserslist-db@1.1.4(browserslist@4.28.0):
dependencies:
- browserslist: 4.25.4
+ browserslist: 4.28.0
escalade: 3.2.0
picocolors: 1.1.1
@@ -29090,11 +27592,11 @@ snapshots:
import-lazy: 4.0.0
is-ci: 3.0.1
is-installed-globally: 0.4.0
- is-npm: 6.0.0
+ is-npm: 6.1.0
is-yarn-global: 0.4.1
latest-version: 7.0.0
- pupa: 3.1.0
- semver: 7.7.2
+ pupa: 3.3.0
+ semver: 7.5.4
semver-diff: 4.0.0
xdg-basedir: 5.1.0
@@ -29106,10 +27608,10 @@ snapshots:
import-lazy: 4.0.0
is-in-ci: 0.1.0
is-installed-globally: 0.4.0
- is-npm: 6.0.0
+ is-npm: 6.1.0
latest-version: 7.0.0
- pupa: 3.1.0
- semver: 7.7.2
+ pupa: 3.3.0
+ semver: 7.6.0
semver-diff: 4.0.0
xdg-basedir: 5.1.0
@@ -29150,7 +27652,7 @@ snapshots:
dependencies:
react: 18.2.0
- use-sync-external-store@1.5.0(react@18.2.0):
+ use-sync-external-store@1.6.0(react@18.2.0):
dependencies:
react: 18.2.0
@@ -29171,7 +27673,7 @@ snapshots:
dependencies:
inherits: 2.0.4
is-arguments: 1.2.0
- is-generator-function: 1.1.0
+ is-generator-function: 1.1.2
is-typed-array: 1.1.15
which-typed-array: 1.1.19
@@ -29195,9 +27697,6 @@ snapshots:
validate-npm-package-name@5.0.1: {}
- validator@13.15.15:
- optional: true
-
value-equal@1.0.1: {}
vary@1.1.2: {}
@@ -29220,13 +27719,13 @@ snapshots:
'@types/unist': 3.0.3
vfile-message: 4.0.3
- vite-node@2.1.9(@types/node@24.10.0)(less@3.11.1)(lightningcss@1.28.1)(sass@1.92.0)(terser@5.44.0):
+ vite-node@2.1.9(@types/node@24.10.1)(less@3.11.1)(lightningcss@1.28.1)(sass@1.58.0)(terser@5.44.1):
dependencies:
cac: 6.7.14
- debug: 4.4.1
+ debug: 4.4.3
es-module-lexer: 1.7.0
pathe: 1.1.2
- vite: 5.4.19(@types/node@24.10.0)(less@3.11.1)(lightningcss@1.28.1)(sass@1.92.0)(terser@5.44.0)
+ vite: 5.4.21(@types/node@24.10.1)(less@3.11.1)(lightningcss@1.28.1)(sass@1.58.0)(terser@5.44.1)
transitivePeerDependencies:
- '@types/node'
- less
@@ -29238,49 +27737,13 @@ snapshots:
- supports-color
- terser
- vite-node@2.1.9(@types/node@24.10.0)(less@3.11.1)(lightningcss@1.30.2)(sass@1.92.0)(terser@5.44.0):
+ vite-node@2.1.9(@types/node@24.10.1)(less@3.11.1)(lightningcss@1.30.2)(sass@1.58.0)(terser@5.44.1):
dependencies:
cac: 6.7.14
- debug: 4.4.1
+ debug: 4.4.3
es-module-lexer: 1.7.0
pathe: 1.1.2
- vite: 5.4.19(@types/node@24.10.0)(less@3.11.1)(lightningcss@1.30.2)(sass@1.92.0)(terser@5.44.0)
- transitivePeerDependencies:
- - '@types/node'
- - less
- - lightningcss
- - sass
- - sass-embedded
- - stylus
- - sugarss
- - supports-color
- - terser
-
- vite-node@3.2.4(@types/node@24.10.0)(less@3.11.1)(lightningcss@1.30.1)(sass@1.92.0)(terser@5.44.0):
- dependencies:
- cac: 6.7.14
- debug: 4.4.1
- es-module-lexer: 1.7.0
- pathe: 2.0.3
- vite: 5.4.19(@types/node@24.10.0)(less@3.11.1)(lightningcss@1.30.1)(sass@1.92.0)(terser@5.44.0)
- transitivePeerDependencies:
- - '@types/node'
- - less
- - lightningcss
- - sass
- - sass-embedded
- - stylus
- - sugarss
- - supports-color
- - terser
-
- vite-node@3.2.4(@types/node@24.10.0)(less@3.11.1)(lightningcss@1.30.2)(sass@1.58.0)(terser@5.44.0):
- dependencies:
- cac: 6.7.14
- debug: 4.4.1
- es-module-lexer: 1.7.0
- pathe: 2.0.3
- vite: 5.4.19(@types/node@24.10.0)(less@3.11.1)(lightningcss@1.30.2)(sass@1.58.0)(terser@5.44.0)
+ vite: 5.4.21(@types/node@24.10.1)(less@3.11.1)(lightningcss@1.30.2)(sass@1.58.0)(terser@5.44.1)
transitivePeerDependencies:
- '@types/node'
- less
@@ -29292,15 +27755,16 @@ snapshots:
- supports-color
- terser
- vite-node@3.2.4(@types/node@24.10.0)(less@3.11.1)(lightningcss@1.30.2)(sass@1.92.0)(terser@5.44.0):
+ vite-node@3.2.4(@types/node@24.10.1)(jiti@2.6.1)(less@3.11.1)(lightningcss@1.30.2)(sass@1.58.0)(terser@5.44.1)(yaml@2.8.2):
dependencies:
cac: 6.7.14
- debug: 4.4.1
+ debug: 4.4.3
es-module-lexer: 1.7.0
pathe: 2.0.3
- vite: 5.4.19(@types/node@24.10.0)(less@3.11.1)(lightningcss@1.30.2)(sass@1.92.0)(terser@5.44.0)
+ vite: 6.4.1(@types/node@24.10.1)(jiti@2.6.1)(less@3.11.1)(lightningcss@1.30.2)(sass@1.58.0)(terser@5.44.1)(yaml@2.8.2)
transitivePeerDependencies:
- '@types/node'
+ - jiti
- less
- lightningcss
- sass
@@ -29309,134 +27773,74 @@ snapshots:
- sugarss
- supports-color
- terser
+ - tsx
+ - yaml
- vite-plugin-svgr@4.5.0(rollup@4.50.0)(typescript@5.9.2)(vite@6.4.1(@types/node@24.10.0)(jiti@2.6.1)(less@3.11.1)(lightningcss@1.30.1)(sass@1.92.0)(terser@5.44.0)(yaml@2.8.1)):
+ vite-plugin-svgr@4.5.0(rollup@4.53.3)(typescript@5.9.3)(vite@6.4.1(@types/node@24.10.1)(jiti@2.6.1)(less@3.11.1)(lightningcss@1.30.2)(sass@1.58.0)(terser@5.44.1)(yaml@2.8.2)):
dependencies:
- '@rollup/pluginutils': 5.2.0(rollup@4.50.0)
- '@svgr/core': 8.1.0(typescript@5.9.2)
- '@svgr/plugin-jsx': 8.1.0(@svgr/core@8.1.0(typescript@5.9.2))
- vite: 6.4.1(@types/node@24.10.0)(jiti@2.6.1)(less@3.11.1)(lightningcss@1.30.1)(sass@1.92.0)(terser@5.44.0)(yaml@2.8.1)
+ '@rollup/pluginutils': 5.3.0(rollup@4.53.3)
+ '@svgr/core': 8.1.0(typescript@5.9.3)
+ '@svgr/plugin-jsx': 8.1.0(@svgr/core@8.1.0(typescript@5.9.3))
+ vite: 6.4.1(@types/node@24.10.1)(jiti@2.6.1)(less@3.11.1)(lightningcss@1.30.2)(sass@1.58.0)(terser@5.44.1)(yaml@2.8.2)
transitivePeerDependencies:
- rollup
- supports-color
- typescript
- vite-tsconfig-paths@5.1.4(typescript@5.9.2)(vite@6.4.1(@types/node@24.10.0)(jiti@2.6.1)(less@3.11.1)(lightningcss@1.30.1)(sass@1.92.0)(terser@5.44.0)(yaml@2.8.1)):
+ vite-tsconfig-paths@5.1.4(typescript@5.9.3)(vite@6.4.1(@types/node@24.10.1)(jiti@2.6.1)(less@3.11.1)(lightningcss@1.30.2)(sass@1.58.0)(terser@5.44.1)(yaml@2.8.2)):
dependencies:
debug: 4.3.4(supports-color@8.1.1)
globrex: 0.1.2
- tsconfck: 3.1.6(typescript@5.9.2)
+ tsconfck: 3.1.6(typescript@5.9.3)
optionalDependencies:
- vite: 6.4.1(@types/node@24.10.0)(jiti@2.6.1)(less@3.11.1)(lightningcss@1.30.1)(sass@1.92.0)(terser@5.44.0)(yaml@2.8.1)
+ vite: 6.4.1(@types/node@24.10.1)(jiti@2.6.1)(less@3.11.1)(lightningcss@1.30.2)(sass@1.58.0)(terser@5.44.1)(yaml@2.8.2)
transitivePeerDependencies:
- supports-color
- typescript
- vite@5.4.19(@types/node@24.10.0)(less@3.11.1)(lightningcss@1.28.1)(sass@1.92.0)(terser@5.44.0):
+ vite@5.4.21(@types/node@24.10.1)(less@3.11.1)(lightningcss@1.28.1)(sass@1.58.0)(terser@5.44.1):
dependencies:
esbuild: 0.21.5
postcss: 8.5.6
- rollup: 4.50.0
+ rollup: 4.53.3
optionalDependencies:
- '@types/node': 24.10.0
+ '@types/node': 24.10.1
fsevents: 2.3.3
less: 3.11.1
lightningcss: 1.28.1
- sass: 1.92.0
- terser: 5.44.0
-
- vite@5.4.19(@types/node@24.10.0)(less@3.11.1)(lightningcss@1.30.1)(sass@1.92.0)(terser@5.44.0):
- dependencies:
- esbuild: 0.21.5
- postcss: 8.5.6
- rollup: 4.50.0
- optionalDependencies:
- '@types/node': 24.10.0
- fsevents: 2.3.3
- less: 3.11.1
- lightningcss: 1.30.1
- sass: 1.92.0
- terser: 5.44.0
-
- vite@5.4.19(@types/node@24.10.0)(less@3.11.1)(lightningcss@1.30.2)(sass@1.58.0)(terser@5.44.0):
- dependencies:
- esbuild: 0.21.5
- postcss: 8.5.6
- rollup: 4.50.0
- optionalDependencies:
- '@types/node': 24.10.0
- fsevents: 2.3.3
- less: 3.11.1
- lightningcss: 1.30.2
sass: 1.58.0
- terser: 5.44.0
+ terser: 5.44.1
- vite@5.4.19(@types/node@24.10.0)(less@3.11.1)(lightningcss@1.30.2)(sass@1.92.0)(terser@5.44.0):
+ vite@5.4.21(@types/node@24.10.1)(less@3.11.1)(lightningcss@1.30.2)(sass@1.58.0)(terser@5.44.1):
dependencies:
esbuild: 0.21.5
postcss: 8.5.6
- rollup: 4.50.0
- optionalDependencies:
- '@types/node': 24.10.0
- fsevents: 2.3.3
- less: 3.11.1
- lightningcss: 1.30.2
- sass: 1.92.0
- terser: 5.44.0
-
- vite@6.4.1(@types/node@24.10.0)(jiti@2.5.1)(less@3.11.1)(lightningcss@1.30.2)(sass@1.58.0)(terser@5.44.0)(yaml@2.8.1):
- dependencies:
- esbuild: 0.25.9
- fdir: 6.5.0(picomatch@4.0.3)
- picomatch: 4.0.3
- postcss: 8.5.6
- rollup: 4.50.0
- tinyglobby: 0.2.15
+ rollup: 4.53.3
optionalDependencies:
- '@types/node': 24.10.0
+ '@types/node': 24.10.1
fsevents: 2.3.3
- jiti: 2.5.1
less: 3.11.1
lightningcss: 1.30.2
sass: 1.58.0
- terser: 5.44.0
- yaml: 2.8.1
-
- vite@6.4.1(@types/node@24.10.0)(jiti@2.6.1)(less@3.11.1)(lightningcss@1.30.1)(sass@1.92.0)(terser@5.44.0)(yaml@2.8.1):
- dependencies:
- esbuild: 0.25.9
- fdir: 6.5.0(picomatch@4.0.3)
- picomatch: 4.0.3
- postcss: 8.5.6
- rollup: 4.50.0
- tinyglobby: 0.2.15
- optionalDependencies:
- '@types/node': 24.10.0
- fsevents: 2.3.3
- jiti: 2.6.1
- less: 3.11.1
- lightningcss: 1.30.1
- sass: 1.92.0
- terser: 5.44.0
- yaml: 2.8.1
+ terser: 5.44.1
- vite@6.4.1(@types/node@24.10.0)(jiti@2.6.1)(less@3.11.1)(lightningcss@1.30.2)(sass@1.92.0)(terser@5.44.0)(yaml@2.8.1):
+ vite@6.4.1(@types/node@24.10.1)(jiti@2.6.1)(less@3.11.1)(lightningcss@1.30.2)(sass@1.58.0)(terser@5.44.1)(yaml@2.8.2):
dependencies:
- esbuild: 0.25.9
+ esbuild: 0.25.12
fdir: 6.5.0(picomatch@4.0.3)
picomatch: 4.0.3
postcss: 8.5.6
- rollup: 4.50.0
+ rollup: 4.53.3
tinyglobby: 0.2.15
optionalDependencies:
- '@types/node': 24.10.0
+ '@types/node': 24.10.1
fsevents: 2.3.3
jiti: 2.6.1
less: 3.11.1
lightningcss: 1.30.2
- sass: 1.92.0
- terser: 5.44.0
- yaml: 2.8.1
+ sass: 1.58.0
+ terser: 5.44.1
+ yaml: 2.8.2
vitest-axe@0.1.0(vitest@2.1.9):
dependencies:
@@ -29446,9 +27850,9 @@ snapshots:
dom-accessibility-api: 0.5.16
lodash-es: 4.17.21
redent: 3.0.0
- vitest: 2.1.9(@types/node@24.10.0)(@vitest/ui@2.1.9)(jsdom@22.1.0)(less@3.11.1)(lightningcss@1.30.2)(sass@1.92.0)(terser@5.44.0)
+ vitest: 2.1.9(@types/node@24.10.1)(@vitest/ui@2.1.9)(jsdom@22.1.0)(less@3.11.1)(lightningcss@1.30.2)(sass@1.58.0)(terser@5.44.1)
- vitest-axe@0.1.0(vitest@3.2.4(@types/debug@4.1.12)(@types/node@24.10.0)(jsdom@22.1.0)(less@3.11.1)(lightningcss@1.30.1)(sass@1.92.0)(terser@5.44.0)):
+ vitest-axe@0.1.0(vitest@3.2.4(@types/debug@4.1.12)(@types/node@24.10.1)(jiti@2.6.1)(jsdom@22.1.0)(less@3.11.1)(lightningcss@1.30.2)(sass@1.58.0)(terser@5.44.1)(yaml@2.8.2)):
dependencies:
aria-query: 5.3.2
axe-core: 4.4.2
@@ -29456,32 +27860,32 @@ snapshots:
dom-accessibility-api: 0.5.16
lodash-es: 4.17.21
redent: 3.0.0
- vitest: 3.2.4(@types/debug@4.1.12)(@types/node@24.10.0)(jsdom@22.1.0)(less@3.11.1)(lightningcss@1.30.1)(sass@1.92.0)(terser@5.44.0)
+ vitest: 3.2.4(@types/debug@4.1.12)(@types/node@24.10.1)(jiti@2.6.1)(jsdom@22.1.0)(less@3.11.1)(lightningcss@1.30.2)(sass@1.58.0)(terser@5.44.1)(yaml@2.8.2)
- vitest@2.1.9(@types/node@24.10.0)(@vitest/ui@2.1.9)(jsdom@21.1.2)(less@3.11.1)(lightningcss@1.30.2)(sass@1.92.0)(terser@5.44.0):
+ vitest@2.1.9(@types/node@24.10.1)(@vitest/ui@2.1.9)(jsdom@21.1.2)(less@3.11.1)(lightningcss@1.30.2)(sass@1.58.0)(terser@5.44.1):
dependencies:
'@vitest/expect': 2.1.9
- '@vitest/mocker': 2.1.9(vite@5.4.19(@types/node@24.10.0)(less@3.11.1)(lightningcss@1.30.2)(sass@1.92.0)(terser@5.44.0))
+ '@vitest/mocker': 2.1.9(vite@5.4.21(@types/node@24.10.1)(less@3.11.1)(lightningcss@1.30.2)(sass@1.58.0)(terser@5.44.1))
'@vitest/pretty-format': 2.1.9
'@vitest/runner': 2.1.9
'@vitest/snapshot': 2.1.9
'@vitest/spy': 2.1.9
'@vitest/utils': 2.1.9
chai: 5.3.3
- debug: 4.4.1
+ debug: 4.4.3
expect-type: 1.2.2
- magic-string: 0.30.18
+ magic-string: 0.30.21
pathe: 1.1.2
- std-env: 3.9.0
+ std-env: 3.10.0
tinybench: 2.9.0
tinyexec: 0.3.2
tinypool: 1.1.1
tinyrainbow: 1.2.0
- vite: 5.4.19(@types/node@24.10.0)(less@3.11.1)(lightningcss@1.30.2)(sass@1.92.0)(terser@5.44.0)
- vite-node: 2.1.9(@types/node@24.10.0)(less@3.11.1)(lightningcss@1.30.2)(sass@1.92.0)(terser@5.44.0)
+ vite: 5.4.21(@types/node@24.10.1)(less@3.11.1)(lightningcss@1.30.2)(sass@1.58.0)(terser@5.44.1)
+ vite-node: 2.1.9(@types/node@24.10.1)(less@3.11.1)(lightningcss@1.30.2)(sass@1.58.0)(terser@5.44.1)
why-is-node-running: 2.3.0
optionalDependencies:
- '@types/node': 24.10.0
+ '@types/node': 24.10.1
'@vitest/ui': 2.1.9(vitest@2.1.9)
jsdom: 21.1.2
transitivePeerDependencies:
@@ -29495,30 +27899,30 @@ snapshots:
- supports-color
- terser
- vitest@2.1.9(@types/node@24.10.0)(@vitest/ui@2.1.9)(jsdom@22.1.0)(less@3.11.1)(lightningcss@1.28.1)(sass@1.92.0)(terser@5.44.0):
+ vitest@2.1.9(@types/node@24.10.1)(@vitest/ui@2.1.9)(jsdom@22.1.0)(less@3.11.1)(lightningcss@1.28.1)(sass@1.58.0)(terser@5.44.1):
dependencies:
'@vitest/expect': 2.1.9
- '@vitest/mocker': 2.1.9(vite@5.4.19(@types/node@24.10.0)(less@3.11.1)(lightningcss@1.28.1)(sass@1.92.0)(terser@5.44.0))
+ '@vitest/mocker': 2.1.9(vite@5.4.21(@types/node@24.10.1)(less@3.11.1)(lightningcss@1.28.1)(sass@1.58.0)(terser@5.44.1))
'@vitest/pretty-format': 2.1.9
'@vitest/runner': 2.1.9
'@vitest/snapshot': 2.1.9
'@vitest/spy': 2.1.9
'@vitest/utils': 2.1.9
chai: 5.3.3
- debug: 4.4.1
+ debug: 4.4.3
expect-type: 1.2.2
- magic-string: 0.30.18
+ magic-string: 0.30.21
pathe: 1.1.2
- std-env: 3.9.0
+ std-env: 3.10.0
tinybench: 2.9.0
tinyexec: 0.3.2
tinypool: 1.1.1
tinyrainbow: 1.2.0
- vite: 5.4.19(@types/node@24.10.0)(less@3.11.1)(lightningcss@1.28.1)(sass@1.92.0)(terser@5.44.0)
- vite-node: 2.1.9(@types/node@24.10.0)(less@3.11.1)(lightningcss@1.28.1)(sass@1.92.0)(terser@5.44.0)
+ vite: 5.4.21(@types/node@24.10.1)(less@3.11.1)(lightningcss@1.28.1)(sass@1.58.0)(terser@5.44.1)
+ vite-node: 2.1.9(@types/node@24.10.1)(less@3.11.1)(lightningcss@1.28.1)(sass@1.58.0)(terser@5.44.1)
why-is-node-running: 2.3.0
optionalDependencies:
- '@types/node': 24.10.0
+ '@types/node': 24.10.1
'@vitest/ui': 2.1.9(vitest@2.1.9)
jsdom: 22.1.0
transitivePeerDependencies:
@@ -29532,30 +27936,30 @@ snapshots:
- supports-color
- terser
- vitest@2.1.9(@types/node@24.10.0)(@vitest/ui@2.1.9)(jsdom@22.1.0)(less@3.11.1)(lightningcss@1.30.2)(sass@1.92.0)(terser@5.44.0):
+ vitest@2.1.9(@types/node@24.10.1)(@vitest/ui@2.1.9)(jsdom@22.1.0)(less@3.11.1)(lightningcss@1.30.2)(sass@1.58.0)(terser@5.44.1):
dependencies:
'@vitest/expect': 2.1.9
- '@vitest/mocker': 2.1.9(vite@5.4.19(@types/node@24.10.0)(less@3.11.1)(lightningcss@1.30.2)(sass@1.92.0)(terser@5.44.0))
+ '@vitest/mocker': 2.1.9(vite@5.4.21(@types/node@24.10.1)(less@3.11.1)(lightningcss@1.30.2)(sass@1.58.0)(terser@5.44.1))
'@vitest/pretty-format': 2.1.9
'@vitest/runner': 2.1.9
'@vitest/snapshot': 2.1.9
'@vitest/spy': 2.1.9
'@vitest/utils': 2.1.9
chai: 5.3.3
- debug: 4.4.1
+ debug: 4.4.3
expect-type: 1.2.2
- magic-string: 0.30.18
+ magic-string: 0.30.21
pathe: 1.1.2
- std-env: 3.9.0
+ std-env: 3.10.0
tinybench: 2.9.0
tinyexec: 0.3.2
tinypool: 1.1.1
tinyrainbow: 1.2.0
- vite: 5.4.19(@types/node@24.10.0)(less@3.11.1)(lightningcss@1.30.2)(sass@1.92.0)(terser@5.44.0)
- vite-node: 2.1.9(@types/node@24.10.0)(less@3.11.1)(lightningcss@1.30.2)(sass@1.92.0)(terser@5.44.0)
+ vite: 5.4.21(@types/node@24.10.1)(less@3.11.1)(lightningcss@1.30.2)(sass@1.58.0)(terser@5.44.1)
+ vite-node: 2.1.9(@types/node@24.10.1)(less@3.11.1)(lightningcss@1.30.2)(sass@1.58.0)(terser@5.44.1)
why-is-node-running: 2.3.0
optionalDependencies:
- '@types/node': 24.10.0
+ '@types/node': 24.10.1
'@vitest/ui': 2.1.9(vitest@2.1.9)
jsdom: 22.1.0
transitivePeerDependencies:
@@ -29569,37 +27973,38 @@ snapshots:
- supports-color
- terser
- vitest@3.2.4(@types/debug@4.1.12)(@types/node@24.10.0)(@vitest/ui@2.1.9)(jsdom@16.7.0)(less@3.11.1)(lightningcss@1.30.2)(sass@1.58.0)(terser@5.44.0):
+ vitest@3.2.4(@types/debug@4.1.12)(@types/node@24.10.1)(@vitest/ui@2.1.9)(jiti@2.6.1)(jsdom@16.7.0)(less@3.11.1)(lightningcss@1.30.2)(sass@1.58.0)(terser@5.44.1)(yaml@2.8.2):
dependencies:
- '@types/chai': 5.2.2
+ '@types/chai': 5.2.3
'@vitest/expect': 3.2.4
- '@vitest/mocker': 3.2.4(vite@5.4.19(@types/node@24.10.0)(less@3.11.1)(lightningcss@1.30.2)(sass@1.58.0)(terser@5.44.0))
+ '@vitest/mocker': 3.2.4(vite@6.4.1(@types/node@24.10.1)(jiti@2.6.1)(less@3.11.1)(lightningcss@1.30.2)(sass@1.58.0)(terser@5.44.1)(yaml@2.8.2))
'@vitest/pretty-format': 3.2.4
'@vitest/runner': 3.2.4
'@vitest/snapshot': 3.2.4
'@vitest/spy': 3.2.4
'@vitest/utils': 3.2.4
chai: 5.3.3
- debug: 4.4.1
+ debug: 4.4.3
expect-type: 1.2.2
- magic-string: 0.30.18
+ magic-string: 0.30.21
pathe: 2.0.3
picomatch: 4.0.3
- std-env: 3.9.0
+ std-env: 3.10.0
tinybench: 2.9.0
tinyexec: 0.3.2
- tinyglobby: 0.2.14
+ tinyglobby: 0.2.15
tinypool: 1.1.1
tinyrainbow: 2.0.0
- vite: 5.4.19(@types/node@24.10.0)(less@3.11.1)(lightningcss@1.30.2)(sass@1.58.0)(terser@5.44.0)
- vite-node: 3.2.4(@types/node@24.10.0)(less@3.11.1)(lightningcss@1.30.2)(sass@1.58.0)(terser@5.44.0)
+ vite: 6.4.1(@types/node@24.10.1)(jiti@2.6.1)(less@3.11.1)(lightningcss@1.30.2)(sass@1.58.0)(terser@5.44.1)(yaml@2.8.2)
+ vite-node: 3.2.4(@types/node@24.10.1)(jiti@2.6.1)(less@3.11.1)(lightningcss@1.30.2)(sass@1.58.0)(terser@5.44.1)(yaml@2.8.2)
why-is-node-running: 2.3.0
optionalDependencies:
'@types/debug': 4.1.12
- '@types/node': 24.10.0
+ '@types/node': 24.10.1
'@vitest/ui': 2.1.9(vitest@3.2.4)
jsdom: 16.7.0
transitivePeerDependencies:
+ - jiti
- less
- lightningcss
- msw
@@ -29609,77 +28014,40 @@ snapshots:
- sugarss
- supports-color
- terser
+ - tsx
+ - yaml
- vitest@3.2.4(@types/debug@4.1.12)(@types/node@24.10.0)(jsdom@22.1.0)(less@3.11.1)(lightningcss@1.30.1)(sass@1.92.0)(terser@5.44.0):
- dependencies:
- '@types/chai': 5.2.2
- '@vitest/expect': 3.2.4
- '@vitest/mocker': 3.2.4(vite@5.4.19(@types/node@24.10.0)(less@3.11.1)(lightningcss@1.30.1)(sass@1.92.0)(terser@5.44.0))
- '@vitest/pretty-format': 3.2.4
- '@vitest/runner': 3.2.4
- '@vitest/snapshot': 3.2.4
- '@vitest/spy': 3.2.4
- '@vitest/utils': 3.2.4
- chai: 5.3.3
- debug: 4.4.1
- expect-type: 1.2.2
- magic-string: 0.30.18
- pathe: 2.0.3
- picomatch: 4.0.3
- std-env: 3.9.0
- tinybench: 2.9.0
- tinyexec: 0.3.2
- tinyglobby: 0.2.14
- tinypool: 1.1.1
- tinyrainbow: 2.0.0
- vite: 5.4.19(@types/node@24.10.0)(less@3.11.1)(lightningcss@1.30.1)(sass@1.92.0)(terser@5.44.0)
- vite-node: 3.2.4(@types/node@24.10.0)(less@3.11.1)(lightningcss@1.30.1)(sass@1.92.0)(terser@5.44.0)
- why-is-node-running: 2.3.0
- optionalDependencies:
- '@types/debug': 4.1.12
- '@types/node': 24.10.0
- jsdom: 22.1.0
- transitivePeerDependencies:
- - less
- - lightningcss
- - msw
- - sass
- - sass-embedded
- - stylus
- - sugarss
- - supports-color
- - terser
-
- vitest@3.2.4(@types/debug@4.1.12)(@types/node@24.10.0)(jsdom@22.1.0)(less@3.11.1)(lightningcss@1.30.2)(sass@1.92.0)(terser@5.44.0):
+ vitest@3.2.4(@types/debug@4.1.12)(@types/node@24.10.1)(jiti@2.6.1)(jsdom@22.1.0)(less@3.11.1)(lightningcss@1.30.2)(sass@1.58.0)(terser@5.44.1)(yaml@2.8.2):
dependencies:
- '@types/chai': 5.2.2
+ '@types/chai': 5.2.3
'@vitest/expect': 3.2.4
- '@vitest/mocker': 3.2.4(vite@5.4.19(@types/node@24.10.0)(less@3.11.1)(lightningcss@1.30.2)(sass@1.92.0)(terser@5.44.0))
+ '@vitest/mocker': 3.2.4(vite@6.4.1(@types/node@24.10.1)(jiti@2.6.1)(less@3.11.1)(lightningcss@1.30.2)(sass@1.58.0)(terser@5.44.1)(yaml@2.8.2))
'@vitest/pretty-format': 3.2.4
'@vitest/runner': 3.2.4
'@vitest/snapshot': 3.2.4
'@vitest/spy': 3.2.4
'@vitest/utils': 3.2.4
chai: 5.3.3
- debug: 4.4.1
+ debug: 4.4.3
expect-type: 1.2.2
- magic-string: 0.30.18
+ magic-string: 0.30.21
pathe: 2.0.3
picomatch: 4.0.3
- std-env: 3.9.0
+ std-env: 3.10.0
tinybench: 2.9.0
tinyexec: 0.3.2
- tinyglobby: 0.2.14
+ tinyglobby: 0.2.15
tinypool: 1.1.1
tinyrainbow: 2.0.0
- vite: 5.4.19(@types/node@24.10.0)(less@3.11.1)(lightningcss@1.30.2)(sass@1.92.0)(terser@5.44.0)
- vite-node: 3.2.4(@types/node@24.10.0)(less@3.11.1)(lightningcss@1.30.2)(sass@1.92.0)(terser@5.44.0)
+ vite: 6.4.1(@types/node@24.10.1)(jiti@2.6.1)(less@3.11.1)(lightningcss@1.30.2)(sass@1.58.0)(terser@5.44.1)(yaml@2.8.2)
+ vite-node: 3.2.4(@types/node@24.10.1)(jiti@2.6.1)(less@3.11.1)(lightningcss@1.30.2)(sass@1.58.0)(terser@5.44.1)(yaml@2.8.2)
why-is-node-running: 2.3.0
optionalDependencies:
'@types/debug': 4.1.12
- '@types/node': 24.10.0
+ '@types/node': 24.10.1
jsdom: 22.1.0
transitivePeerDependencies:
+ - jiti
- less
- lightningcss
- msw
@@ -29689,12 +28057,8 @@ snapshots:
- sugarss
- supports-color
- terser
-
- vue-template-compiler@2.7.16:
- dependencies:
- de-indent: 1.0.2
- he: 1.2.0
- optional: true
+ - tsx
+ - yaml
w3c-hr-time@1.0.2:
dependencies:
@@ -29730,7 +28094,7 @@ snapshots:
wait-on@7.2.0:
dependencies:
- axios: 1.11.0
+ axios: 1.13.2
joi: 17.13.3
lodash: 4.17.21
minimist: 1.2.8
@@ -29740,7 +28104,7 @@ snapshots:
wait-on@7.2.0(debug@4.3.4):
dependencies:
- axios: 1.11.0(debug@4.3.4)
+ axios: 1.13.2(debug@4.3.4)
joi: 17.13.3
lodash: 4.17.21
minimist: 1.2.8
@@ -29748,11 +28112,6 @@ snapshots:
transitivePeerDependencies:
- debug
- walker@1.0.8:
- dependencies:
- makeerror: 1.0.12
- optional: true
-
warning@4.0.3:
dependencies:
loose-envify: 1.4.0
@@ -29776,8 +28135,6 @@ snapshots:
webidl-conversions@3.0.1: {}
- webidl-conversions@4.0.2: {}
-
webidl-conversions@5.0.0: {}
webidl-conversions@6.1.0: {}
@@ -29809,7 +28166,7 @@ snapshots:
memfs: 3.5.3
mime-types: 2.1.35
range-parser: 1.2.1
- schema-utils: 4.3.2
+ schema-utils: 4.3.3
webpack: 5.90.1
webpack-dev-middleware@6.1.3(webpack@5.90.1):
@@ -29818,7 +28175,7 @@ snapshots:
memfs: 3.5.3
mime-types: 2.1.35
range-parser: 1.2.1
- schema-utils: 4.3.2
+ schema-utils: 4.3.3
optionalDependencies:
webpack: 5.90.1
@@ -29826,9 +28183,9 @@ snapshots:
dependencies:
'@types/bonjour': 3.5.13
'@types/connect-history-api-fallback': 1.5.4
- '@types/express': 4.17.23
+ '@types/express': 4.17.25
'@types/serve-index': 1.9.4
- '@types/serve-static': 1.15.8
+ '@types/serve-static': 1.15.10
'@types/sockjs': 0.3.36
'@types/ws': 8.18.1
ansi-html-community: 0.0.8
@@ -29841,12 +28198,12 @@ snapshots:
express: 4.19.2
graceful-fs: 4.2.11
html-entities: 2.6.0
- http-proxy-middleware: 2.0.9(@types/express@4.17.23)(debug@4.3.4)
- ipaddr.js: 2.2.0
+ http-proxy-middleware: 2.0.9(@types/express@4.17.25)(debug@4.3.4)
+ ipaddr.js: 2.3.0
open: 8.4.2
p-retry: 4.6.2
rimraf: 3.0.2
- schema-utils: 4.3.2
+ schema-utils: 4.3.3
selfsigned: 2.4.1
serve-index: 1.9.1
sockjs: 0.3.24
@@ -29864,9 +28221,9 @@ snapshots:
dependencies:
'@types/bonjour': 3.5.13
'@types/connect-history-api-fallback': 1.5.4
- '@types/express': 4.17.23
+ '@types/express': 4.17.25
'@types/serve-index': 1.9.4
- '@types/serve-static': 1.15.8
+ '@types/serve-static': 1.15.10
'@types/sockjs': 0.3.36
'@types/ws': 8.18.1
ansi-html-community: 0.0.8
@@ -29879,12 +28236,12 @@ snapshots:
express: 4.19.2
graceful-fs: 4.2.11
html-entities: 2.6.0
- http-proxy-middleware: 2.0.9(@types/express@4.17.23)
- ipaddr.js: 2.2.0
+ http-proxy-middleware: 2.0.9(@types/express@4.17.25)
+ ipaddr.js: 2.3.0
open: 8.4.2
p-retry: 4.6.2
rimraf: 3.0.2
- schema-utils: 4.3.2
+ schema-utils: 4.3.3
selfsigned: 2.4.1
serve-index: 1.9.1
sockjs: 0.3.24
@@ -29906,7 +28263,7 @@ snapshots:
webpack-manifest-plugin@3.2.0(webpack@5.90.1):
dependencies:
- tapable: 2.2.3
+ tapable: 2.3.0
webpack: 5.90.1
webpack-sources: 2.3.1
@@ -29935,7 +28292,7 @@ snapshots:
'@webassemblyjs/wasm-parser': 1.14.1
acorn: 8.15.0
acorn-import-assertions: 1.9.0(acorn@8.15.0)
- browserslist: 4.25.4
+ browserslist: 4.28.0
chrome-trace-event: 1.0.4
enhanced-resolve: 5.18.3
es-module-lexer: 1.7.0
@@ -29944,11 +28301,11 @@ snapshots:
glob-to-regexp: 0.4.1
graceful-fs: 4.2.11
json-parse-even-better-errors: 2.3.1
- loader-runner: 4.3.0
+ loader-runner: 4.3.1
mime-types: 2.1.35
neo-async: 2.6.2
schema-utils: 3.3.0
- tapable: 2.2.3
+ tapable: 2.3.0
terser-webpack-plugin: 5.3.14(webpack@5.90.1)
watchpack: 2.4.4
webpack-sources: 3.3.3
@@ -29962,7 +28319,7 @@ snapshots:
chalk: 4.1.2
consola: 2.15.3
pretty-time: 1.1.0
- std-env: 3.9.0
+ std-env: 3.10.0
webpack: 5.90.1
websocket-driver@0.7.4:
@@ -29997,12 +28354,6 @@ snapshots:
tr46: 0.0.3
webidl-conversions: 3.0.1
- whatwg-url@7.1.0:
- dependencies:
- lodash.sortby: 4.7.0
- tr46: 1.0.1
- webidl-conversions: 4.0.2
-
whatwg-url@8.7.0:
dependencies:
lodash: 4.17.21
@@ -30025,7 +28376,7 @@ snapshots:
is-async-function: 2.1.1
is-date-object: 1.1.0
is-finalizationregistry: 1.1.1
- is-generator-function: 1.1.0
+ is-generator-function: 1.1.2
is-regex: 1.2.1
is-weakref: 1.1.1
isarray: 2.0.5
@@ -30099,7 +28450,7 @@ snapshots:
wrap-ansi@8.1.0:
dependencies:
- ansi-styles: 6.2.1
+ ansi-styles: 6.2.3
string-width: 5.1.2
strip-ansi: 7.1.2
@@ -30112,12 +28463,6 @@ snapshots:
signal-exit: 3.0.7
typedarray-to-buffer: 3.1.5
- write-file-atomic@4.0.2:
- dependencies:
- imurmurhash: 0.1.4
- signal-exit: 3.0.7
- optional: true
-
write-file-atomic@5.0.1:
dependencies:
imurmurhash: 0.1.4
@@ -30141,20 +28486,18 @@ snapshots:
y18n@5.0.8: {}
- yallist@2.1.2: {}
-
yallist@3.1.1: {}
yallist@4.0.0: {}
- yaml-eslint-parser@1.3.0:
+ yaml-eslint-parser@1.3.1:
dependencies:
eslint-visitor-keys: 3.4.3
- yaml: 2.8.1
+ yaml: 2.8.2
yaml@1.10.2: {}
- yaml@2.8.1: {}
+ yaml@2.8.2: {}
yargs-parser@20.2.9: {}
@@ -30177,21 +28520,12 @@ snapshots:
yocto-queue@0.1.0: {}
- yocto-queue@1.2.1: {}
+ yocto-queue@1.2.2: {}
yoctocolors-cjs@2.1.3: {}
yoctocolors@2.1.2: {}
- z-schema@5.0.5:
- dependencies:
- lodash.get: 4.4.2
- lodash.isequal: 4.5.0
- validator: 13.15.15
- optionalDependencies:
- commander: 9.5.0
- optional: true
-
zod@3.25.76: {}
zwitch@2.0.4: {}