From d81a0d339e25cf3a4efa98429edd66b3cf509b9b Mon Sep 17 00:00:00 2001 From: Roman Kysil Date: Fri, 27 Sep 2024 09:35:50 +0200 Subject: [PATCH 01/24] Labels accessibility for ArrayWidget, SelectWidget, TokenWidget (#6332) Co-authored-by: Piero Nicolli --- packages/volto/news/6332.bugfix | 1 + packages/volto/src/components/manage/Widgets/ArrayWidget.jsx | 1 + packages/volto/src/components/manage/Widgets/SelectWidget.jsx | 1 + packages/volto/src/components/manage/Widgets/TokenWidget.jsx | 1 + .../manage/Widgets/__snapshots__/ArrayWidget.test.jsx.snap | 2 ++ .../manage/Widgets/__snapshots__/SelectWidget.test.jsx.snap | 2 ++ .../manage/Widgets/__snapshots__/TokenWidget.test.jsx.snap | 1 + 7 files changed, 9 insertions(+) create mode 100644 packages/volto/news/6332.bugfix diff --git a/packages/volto/news/6332.bugfix b/packages/volto/news/6332.bugfix new file mode 100644 index 0000000000..6b82b6cd5e --- /dev/null +++ b/packages/volto/news/6332.bugfix @@ -0,0 +1 @@ +Labels accessibility for ArrayWidget, SelectWidget, TokenWidget. @folix-01 diff --git a/packages/volto/src/components/manage/Widgets/ArrayWidget.jsx b/packages/volto/src/components/manage/Widgets/ArrayWidget.jsx index 2670cc84bc..dc361195b3 100644 --- a/packages/volto/src/components/manage/Widgets/ArrayWidget.jsx +++ b/packages/volto/src/components/manage/Widgets/ArrayWidget.jsx @@ -314,6 +314,7 @@ class ArrayWidget extends Component { // small fix for https://github.com/clauderic/react-sortable-hoc/pull/352: getHelperDimensions={({ node }) => node.getBoundingClientRect()} id={`field-${this.props.id}`} + aria-labelledby={`fieldset-${this.props.fieldSet}-field-label-${this.props.id}`} key={this.props.id} isDisabled={this.props.disabled || this.props.isDisabled} className="react-select-container" diff --git a/packages/volto/src/components/manage/Widgets/SelectWidget.jsx b/packages/volto/src/components/manage/Widgets/SelectWidget.jsx index 64b0cdea69..0c9d61e12f 100644 --- a/packages/volto/src/components/manage/Widgets/SelectWidget.jsx +++ b/packages/volto/src/components/manage/Widgets/SelectWidget.jsx @@ -224,6 +224,7 @@ class SelectWidget extends Component { id={`field-${id}`} key={choices} name={id} + aria-labelledby={`fieldset-${this.props.fieldSet}-field-label-${id}`} menuShouldScrollIntoView={false} isDisabled={disabled} isSearchable={true} diff --git a/packages/volto/src/components/manage/Widgets/TokenWidget.jsx b/packages/volto/src/components/manage/Widgets/TokenWidget.jsx index b38de6897d..cad1f0bdcb 100644 --- a/packages/volto/src/components/manage/Widgets/TokenWidget.jsx +++ b/packages/volto/src/components/manage/Widgets/TokenWidget.jsx @@ -173,6 +173,7 @@ class TokenWidget extends Component { Date: Sat, 28 Sep 2024 01:17:37 +0200 Subject: [PATCH 02/24] Increased contrast in table block for a11y reasons (#6333) --- packages/volto/cypress/tests/core/blocks/blocks-table.js | 2 +- packages/volto/news/2487.bugfix | 1 + packages/volto/news/6334.bugfix | 1 + .../theme/themes/pastanaga/collections/table.overrides | 7 ++++++- 4 files changed, 9 insertions(+), 2 deletions(-) create mode 100644 packages/volto/news/2487.bugfix create mode 100644 packages/volto/news/6334.bugfix diff --git a/packages/volto/cypress/tests/core/blocks/blocks-table.js b/packages/volto/cypress/tests/core/blocks/blocks-table.js index 43c5f3ee26..97f00622e1 100644 --- a/packages/volto/cypress/tests/core/blocks/blocks-table.js +++ b/packages/volto/cypress/tests/core/blocks/blocks-table.js @@ -29,7 +29,7 @@ describe('Table Block Tests', () => { cy.get('.block-editor-slateTable [role=textbox]') .first() .click() - .should('have.css', 'outline', 'rgb(135, 143, 147) none 0px'); + .should('have.css', 'outline', 'rgba(0, 0, 0, 0.87) none 0px'); cy.get( '.celled.fixed.table thead tr th:first-child() [contenteditable="true"]', diff --git a/packages/volto/news/2487.bugfix b/packages/volto/news/2487.bugfix new file mode 100644 index 0000000000..41812d2d99 --- /dev/null +++ b/packages/volto/news/2487.bugfix @@ -0,0 +1 @@ +Increase specificity of table header style selector to properly override colors for better contrast @jackahl diff --git a/packages/volto/news/6334.bugfix b/packages/volto/news/6334.bugfix new file mode 100644 index 0000000000..f7623395d6 --- /dev/null +++ b/packages/volto/news/6334.bugfix @@ -0,0 +1 @@ +Use lighter blue as link color in inverted tables to improve contrast for a11y @jackahl diff --git a/packages/volto/theme/themes/pastanaga/collections/table.overrides b/packages/volto/theme/themes/pastanaga/collections/table.overrides index 477a761991..15181c1a05 100644 --- a/packages/volto/theme/themes/pastanaga/collections/table.overrides +++ b/packages/volto/theme/themes/pastanaga/collections/table.overrides @@ -6,7 +6,7 @@ } /* Headers */ -.ui.table th { +.ui.table thead th { padding: @headerVerticalPadding @headerHorizontalPadding; border-left: @headerDivider; background: @headerBackground; @@ -34,3 +34,8 @@ .ui.table tr:first-child > th:only-child { border-radius: @borderRadius @borderRadius 0em 0em; } + +/* inline link color*/ +.ui.table.inverted a { + color: @lightPrimaryColor; +} From 6fbd4146b74b14691b70951a74ab91f2c3dad030 Mon Sep 17 00:00:00 2001 From: Andrea Cecchi Date: Sun, 29 Sep 2024 00:22:22 +0200 Subject: [PATCH 03/24] Join validation errors in one single toast and update api error resp (#6295) Co-authored-by: Piero Nicolli --- packages/volto/news/6295.bugfix | 2 + .../volto/src/components/manage/Form/Form.jsx | 53 +++++++++++-------- .../src/components/manage/Toast/Toast.jsx | 4 +- .../Toast/__snapshots__/Toast.test.jsx.snap | 4 +- .../theme/themes/pastanaga/extras/main.less | 5 +- 5 files changed, 40 insertions(+), 28 deletions(-) create mode 100644 packages/volto/news/6295.bugfix diff --git a/packages/volto/news/6295.bugfix b/packages/volto/news/6295.bugfix new file mode 100644 index 0000000000..581fdd5089 --- /dev/null +++ b/packages/volto/news/6295.bugfix @@ -0,0 +1,2 @@ +- Join validation errors in one single toast and update errors from response. @cekk +- Toast content now has a
wrapper instead of a

. @cekk diff --git a/packages/volto/src/components/manage/Form/Form.jsx b/packages/volto/src/components/manage/Form/Form.jsx index 8b108d7dde..41a4c3f97c 100644 --- a/packages/volto/src/components/manage/Form/Form.jsx +++ b/packages/volto/src/components/manage/Form/Form.jsx @@ -274,19 +274,22 @@ class Form extends Component { selected: null, }); } - - if (requestError && prevProps.requestError !== requestError) { + if (requestError) { errors = FormValidation.giveServerErrorsToCorrespondingFields(requestError); - activeIndex = FormValidation.showFirstTabWithErrors({ - errors, - schema: this.props.schema, - }); - - this.setState({ - errors, - activeIndex, - }); + if ( + !isEqual(prevProps.requestError, requestError) || + !isEqual(this.state.errors, errors) + ) { + activeIndex = FormValidation.showFirstTabWithErrors({ + errors, + schema: this.props.schema, + }); + this.setState({ + errors, + activeIndex, + }); + } } if (this.props.onChangeFormData) { @@ -563,13 +566,11 @@ class Form extends Component { } }); } - if (keys(errors).length > 0 || keys(blocksErrors).length > 0) { const activeIndex = FormValidation.showFirstTabWithErrors({ errors, schema: this.props.schema, }); - this.setState({ errors: { ...errors, @@ -580,14 +581,23 @@ class Form extends Component { if (keys(errors).length > 0) { // Changes the focus to the metadata tab in the sidebar if error - Object.keys(errors).forEach((err) => - toast.error( - , - ), + toast.error( + + {Object.keys(errors).map((err, index) => ( +

  • + + {this.props.schema.properties[err].title || err}: + {' '} + {errors[err]} +
  • + ))} + + } + />, ); this.props.setSidebarTab(0); } else if (keys(blocksErrors).length > 0) { @@ -714,7 +724,6 @@ class Form extends Component { const schema = this.removeBlocksLayoutFields(originalSchema); const Container = config.getComponent({ name: 'Container' }).component || SemanticContainer; - return this.props.visual ? ( // Removing this from SSR is important, since react-beautiful-dnd supports SSR, // but draftJS don't like it much and the hydration gets messed up diff --git a/packages/volto/src/components/manage/Toast/Toast.jsx b/packages/volto/src/components/manage/Toast/Toast.jsx index 96f4355656..558eb8bd44 100644 --- a/packages/volto/src/components/manage/Toast/Toast.jsx +++ b/packages/volto/src/components/manage/Toast/Toast.jsx @@ -29,7 +29,7 @@ const Toast = (props) => {
    {title &&

    {title}

    } -

    {content}

    +
    {content}
    ); @@ -37,7 +37,7 @@ const Toast = (props) => { Toast.propTypes = { title: PropTypes.oneOfType([PropTypes.string, PropTypes.array]), - content: PropTypes.string.isRequired, + content: PropTypes.oneOfType([PropTypes.string, PropTypes.object]).isRequired, info: PropTypes.bool, success: PropTypes.bool, error: PropTypes.bool, diff --git a/packages/volto/src/components/manage/Toast/__snapshots__/Toast.test.jsx.snap b/packages/volto/src/components/manage/Toast/__snapshots__/Toast.test.jsx.snap index 1d65445606..3d01fb4fca 100644 --- a/packages/volto/src/components/manage/Toast/__snapshots__/Toast.test.jsx.snap +++ b/packages/volto/src/components/manage/Toast/__snapshots__/Toast.test.jsx.snap @@ -26,9 +26,9 @@ Array [

    I'm a title

    -

    +

    This is the content, lorem ipsum -

    +
    , ] `; diff --git a/packages/volto/theme/themes/pastanaga/extras/main.less b/packages/volto/theme/themes/pastanaga/extras/main.less index 6b1bb30d5b..1062b14845 100644 --- a/packages/volto/theme/themes/pastanaga/extras/main.less +++ b/packages/volto/theme/themes/pastanaga/extras/main.less @@ -367,9 +367,10 @@ button { p { font-weight: 300; } - } - .toast-dismiss-action { + ul { + padding: 0; + } } .Toastify__toast--info { From 51375d59df49a54f1b55375478c4d20575dfb89e Mon Sep 17 00:00:00 2001 From: iRohitSingh <61353484+iRohitSingh@users.noreply.github.com> Date: Sun, 29 Sep 2024 03:58:11 +0530 Subject: [PATCH 04/24] Add language independent field icon. (#6298) --- .../volto/locales/ca/LC_MESSAGES/volto.po | 5 ++++ .../volto/locales/de/LC_MESSAGES/volto.po | 5 ++++ .../volto/locales/en/LC_MESSAGES/volto.po | 5 ++++ .../volto/locales/es/LC_MESSAGES/volto.po | 5 ++++ .../volto/locales/eu/LC_MESSAGES/volto.po | 5 ++++ .../volto/locales/fi/LC_MESSAGES/volto.po | 5 ++++ .../volto/locales/fr/LC_MESSAGES/volto.po | 5 ++++ .../volto/locales/hi/LC_MESSAGES/volto.po | 5 ++++ .../volto/locales/it/LC_MESSAGES/volto.po | 5 ++++ .../volto/locales/ja/LC_MESSAGES/volto.po | 5 ++++ .../volto/locales/nl/LC_MESSAGES/volto.po | 5 ++++ .../volto/locales/pt/LC_MESSAGES/volto.po | 5 ++++ .../volto/locales/pt_BR/LC_MESSAGES/volto.po | 5 ++++ .../volto/locales/ro/LC_MESSAGES/volto.po | 5 ++++ packages/volto/locales/volto.pot | 7 ++++- .../volto/locales/zh_CN/LC_MESSAGES/volto.po | 5 ++++ packages/volto/news/6297.feature | 1 + .../manage/Widgets/FormFieldWrapper.jsx | 26 ++++++++++++++++--- .../themes/pastanaga/extras/widgets.less | 12 +++++++++ 19 files changed, 117 insertions(+), 4 deletions(-) create mode 100644 packages/volto/news/6297.feature diff --git a/packages/volto/locales/ca/LC_MESSAGES/volto.po b/packages/volto/locales/ca/LC_MESSAGES/volto.po index 69687ab2b8..b17def638e 100644 --- a/packages/volto/locales/ca/LC_MESSAGES/volto.po +++ b/packages/volto/locales/ca/LC_MESSAGES/volto.po @@ -1938,6 +1938,11 @@ msgstr "Llenguatge" msgid "Language independent field." msgstr "" +#. Default: "This is a language independent field. Any value you enter here will overwrite the corresponding field of all members of the translation group when you save this form." +#: components/manage/Widgets/FormFieldWrapper +msgid "Language independent icon title" +msgstr "" + #. Default: "Large" #: components/manage/Widgets/ImageSizeWidget msgid "Large" diff --git a/packages/volto/locales/de/LC_MESSAGES/volto.po b/packages/volto/locales/de/LC_MESSAGES/volto.po index d35ff24b4c..bd271eca1a 100644 --- a/packages/volto/locales/de/LC_MESSAGES/volto.po +++ b/packages/volto/locales/de/LC_MESSAGES/volto.po @@ -1937,6 +1937,11 @@ msgstr "Sprache" msgid "Language independent field." msgstr "Sprachunabhängiges Feld." +#. Default: "This is a language independent field. Any value you enter here will overwrite the corresponding field of all members of the translation group when you save this form." +#: components/manage/Widgets/FormFieldWrapper +msgid "Language independent icon title" +msgstr "Dies ist ein sprachunabhängiges Feld. Jeder Wert, den Sie hier eingeben, überschreibt das entsprechende Feld aller Mitglieder der Übersetzungsgruppe, wenn Sie dieses Formular speichern." + #. Default: "Large" #: components/manage/Widgets/ImageSizeWidget msgid "Large" diff --git a/packages/volto/locales/en/LC_MESSAGES/volto.po b/packages/volto/locales/en/LC_MESSAGES/volto.po index a5b40a7988..419d5717b1 100644 --- a/packages/volto/locales/en/LC_MESSAGES/volto.po +++ b/packages/volto/locales/en/LC_MESSAGES/volto.po @@ -1932,6 +1932,11 @@ msgstr "" msgid "Language independent field." msgstr "" +#. Default: "This is a language independent field. Any value you enter here will overwrite the corresponding field of all members of the translation group when you save this form." +#: components/manage/Widgets/FormFieldWrapper +msgid "Language independent icon title" +msgstr "" + #. Default: "Large" #: components/manage/Widgets/ImageSizeWidget msgid "Large" diff --git a/packages/volto/locales/es/LC_MESSAGES/volto.po b/packages/volto/locales/es/LC_MESSAGES/volto.po index 6e284bfd75..5fc3fb54ff 100644 --- a/packages/volto/locales/es/LC_MESSAGES/volto.po +++ b/packages/volto/locales/es/LC_MESSAGES/volto.po @@ -1939,6 +1939,11 @@ msgstr "Idioma" msgid "Language independent field." msgstr "Campo independiente de idioma." +#. Default: "This is a language independent field. Any value you enter here will overwrite the corresponding field of all members of the translation group when you save this form." +#: components/manage/Widgets/FormFieldWrapper +msgid "Language independent icon title" +msgstr "" + #. Default: "Large" #: components/manage/Widgets/ImageSizeWidget msgid "Large" diff --git a/packages/volto/locales/eu/LC_MESSAGES/volto.po b/packages/volto/locales/eu/LC_MESSAGES/volto.po index b7c57b8ee1..77b052e284 100644 --- a/packages/volto/locales/eu/LC_MESSAGES/volto.po +++ b/packages/volto/locales/eu/LC_MESSAGES/volto.po @@ -1939,6 +1939,11 @@ msgstr "Hizkuntza" msgid "Language independent field." msgstr "Hizkuntzarekiko Independentea den eremua." +#. Default: "This is a language independent field. Any value you enter here will overwrite the corresponding field of all members of the translation group when you save this form." +#: components/manage/Widgets/FormFieldWrapper +msgid "Language independent icon title" +msgstr "" + #. Default: "Large" #: components/manage/Widgets/ImageSizeWidget msgid "Large" diff --git a/packages/volto/locales/fi/LC_MESSAGES/volto.po b/packages/volto/locales/fi/LC_MESSAGES/volto.po index 16a81a822c..5db5c4cbee 100644 --- a/packages/volto/locales/fi/LC_MESSAGES/volto.po +++ b/packages/volto/locales/fi/LC_MESSAGES/volto.po @@ -1937,6 +1937,11 @@ msgstr "Kieli" msgid "Language independent field." msgstr "Kieliriippumaton kenttä" +#. Default: "This is a language independent field. Any value you enter here will overwrite the corresponding field of all members of the translation group when you save this form." +#: components/manage/Widgets/FormFieldWrapper +msgid "Language independent icon title" +msgstr "" + #. Default: "Large" #: components/manage/Widgets/ImageSizeWidget msgid "Large" diff --git a/packages/volto/locales/fr/LC_MESSAGES/volto.po b/packages/volto/locales/fr/LC_MESSAGES/volto.po index b405214240..4887b87ff4 100644 --- a/packages/volto/locales/fr/LC_MESSAGES/volto.po +++ b/packages/volto/locales/fr/LC_MESSAGES/volto.po @@ -1939,6 +1939,11 @@ msgstr "Langage" msgid "Language independent field." msgstr "Champ indépendant de la langue." +#. Default: "This is a language independent field. Any value you enter here will overwrite the corresponding field of all members of the translation group when you save this form." +#: components/manage/Widgets/FormFieldWrapper +msgid "Language independent icon title" +msgstr "" + #. Default: "Large" #: components/manage/Widgets/ImageSizeWidget msgid "Large" diff --git a/packages/volto/locales/hi/LC_MESSAGES/volto.po b/packages/volto/locales/hi/LC_MESSAGES/volto.po index c21aa3608f..ced8be4109 100644 --- a/packages/volto/locales/hi/LC_MESSAGES/volto.po +++ b/packages/volto/locales/hi/LC_MESSAGES/volto.po @@ -1932,6 +1932,11 @@ msgstr "भाषा" msgid "Language independent field." msgstr "भाषा स्वतंत्र क्षेत्र।" +#. Default: "This is a language independent field. Any value you enter here will overwrite the corresponding field of all members of the translation group when you save this form." +#: components/manage/Widgets/FormFieldWrapper +msgid "Language independent icon title" +msgstr "" + #. Default: "Large" #: components/manage/Widgets/ImageSizeWidget msgid "Large" diff --git a/packages/volto/locales/it/LC_MESSAGES/volto.po b/packages/volto/locales/it/LC_MESSAGES/volto.po index fbdee8436e..45c86020ba 100644 --- a/packages/volto/locales/it/LC_MESSAGES/volto.po +++ b/packages/volto/locales/it/LC_MESSAGES/volto.po @@ -1932,6 +1932,11 @@ msgstr "Lingua" msgid "Language independent field." msgstr "Campo indipendete dalla lingua" +#. Default: "This is a language independent field. Any value you enter here will overwrite the corresponding field of all members of the translation group when you save this form." +#: components/manage/Widgets/FormFieldWrapper +msgid "Language independent icon title" +msgstr "" + #. Default: "Large" #: components/manage/Widgets/ImageSizeWidget msgid "Large" diff --git a/packages/volto/locales/ja/LC_MESSAGES/volto.po b/packages/volto/locales/ja/LC_MESSAGES/volto.po index 60d63a02e7..9a13ea1265 100644 --- a/packages/volto/locales/ja/LC_MESSAGES/volto.po +++ b/packages/volto/locales/ja/LC_MESSAGES/volto.po @@ -1937,6 +1937,11 @@ msgstr "言語" msgid "Language independent field." msgstr "" +#. Default: "This is a language independent field. Any value you enter here will overwrite the corresponding field of all members of the translation group when you save this form." +#: components/manage/Widgets/FormFieldWrapper +msgid "Language independent icon title" +msgstr "" + #. Default: "Large" #: components/manage/Widgets/ImageSizeWidget msgid "Large" diff --git a/packages/volto/locales/nl/LC_MESSAGES/volto.po b/packages/volto/locales/nl/LC_MESSAGES/volto.po index c6330673c2..a7d79f4271 100644 --- a/packages/volto/locales/nl/LC_MESSAGES/volto.po +++ b/packages/volto/locales/nl/LC_MESSAGES/volto.po @@ -1936,6 +1936,11 @@ msgstr "Taal" msgid "Language independent field." msgstr "" +#. Default: "This is a language independent field. Any value you enter here will overwrite the corresponding field of all members of the translation group when you save this form." +#: components/manage/Widgets/FormFieldWrapper +msgid "Language independent icon title" +msgstr "" + #. Default: "Large" #: components/manage/Widgets/ImageSizeWidget msgid "Large" diff --git a/packages/volto/locales/pt/LC_MESSAGES/volto.po b/packages/volto/locales/pt/LC_MESSAGES/volto.po index f7350c0098..0c0d9f1b74 100644 --- a/packages/volto/locales/pt/LC_MESSAGES/volto.po +++ b/packages/volto/locales/pt/LC_MESSAGES/volto.po @@ -1937,6 +1937,11 @@ msgstr "Idioma" msgid "Language independent field." msgstr "" +#. Default: "This is a language independent field. Any value you enter here will overwrite the corresponding field of all members of the translation group when you save this form." +#: components/manage/Widgets/FormFieldWrapper +msgid "Language independent icon title" +msgstr "" + #. Default: "Large" #: components/manage/Widgets/ImageSizeWidget msgid "Large" diff --git a/packages/volto/locales/pt_BR/LC_MESSAGES/volto.po b/packages/volto/locales/pt_BR/LC_MESSAGES/volto.po index 36222ddb91..4957f58bff 100644 --- a/packages/volto/locales/pt_BR/LC_MESSAGES/volto.po +++ b/packages/volto/locales/pt_BR/LC_MESSAGES/volto.po @@ -1938,6 +1938,11 @@ msgstr "Idioma" msgid "Language independent field." msgstr "Campo independente da linguagem." +#. Default: "This is a language independent field. Any value you enter here will overwrite the corresponding field of all members of the translation group when you save this form." +#: components/manage/Widgets/FormFieldWrapper +msgid "Language independent icon title" +msgstr "" + #. Default: "Large" #: components/manage/Widgets/ImageSizeWidget msgid "Large" diff --git a/packages/volto/locales/ro/LC_MESSAGES/volto.po b/packages/volto/locales/ro/LC_MESSAGES/volto.po index 4ccc25cc34..1eeefe866b 100644 --- a/packages/volto/locales/ro/LC_MESSAGES/volto.po +++ b/packages/volto/locales/ro/LC_MESSAGES/volto.po @@ -1932,6 +1932,11 @@ msgstr "Limba" msgid "Language independent field." msgstr "Câmp independent de limbă." +#. Default: "This is a language independent field. Any value you enter here will overwrite the corresponding field of all members of the translation group when you save this form." +#: components/manage/Widgets/FormFieldWrapper +msgid "Language independent icon title" +msgstr "" + #. Default: "Large" #: components/manage/Widgets/ImageSizeWidget msgid "Large" diff --git a/packages/volto/locales/volto.pot b/packages/volto/locales/volto.pot index 7e870490fc..a700a289e7 100644 --- a/packages/volto/locales/volto.pot +++ b/packages/volto/locales/volto.pot @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: Plone\n" -"POT-Creation-Date: 2024-08-10T17:00:27.117Z\n" +"POT-Creation-Date: 2024-09-19T10:10:37.548Z\n" "Last-Translator: Plone i18n \n" "Language-Team: Plone i18n \n" "Content-Type: text/plain; charset=utf-8\n" @@ -1934,6 +1934,11 @@ msgstr "" msgid "Language independent field." msgstr "" +#. Default: "This is a language independent field. Any value you enter here will overwrite the corresponding field of all members of the translation group when you save this form." +#: components/manage/Widgets/FormFieldWrapper +msgid "Language independent icon title" +msgstr "" + #. Default: "Large" #: components/manage/Widgets/ImageSizeWidget msgid "Large" diff --git a/packages/volto/locales/zh_CN/LC_MESSAGES/volto.po b/packages/volto/locales/zh_CN/LC_MESSAGES/volto.po index cddef470f6..26986f3cb8 100644 --- a/packages/volto/locales/zh_CN/LC_MESSAGES/volto.po +++ b/packages/volto/locales/zh_CN/LC_MESSAGES/volto.po @@ -1938,6 +1938,11 @@ msgstr "语言" msgid "Language independent field." msgstr "语言独立字段" +#. Default: "This is a language independent field. Any value you enter here will overwrite the corresponding field of all members of the translation group when you save this form." +#: components/manage/Widgets/FormFieldWrapper +msgid "Language independent icon title" +msgstr "" + #. Default: "Large" #: components/manage/Widgets/ImageSizeWidget msgid "Large" diff --git a/packages/volto/news/6297.feature b/packages/volto/news/6297.feature new file mode 100644 index 0000000000..e509917a3c --- /dev/null +++ b/packages/volto/news/6297.feature @@ -0,0 +1 @@ +Add language independent field icon. @iRohitSingh \ No newline at end of file diff --git a/packages/volto/src/components/manage/Widgets/FormFieldWrapper.jsx b/packages/volto/src/components/manage/Widgets/FormFieldWrapper.jsx index ee60438be4..732b4ba281 100644 --- a/packages/volto/src/components/manage/Widgets/FormFieldWrapper.jsx +++ b/packages/volto/src/components/manage/Widgets/FormFieldWrapper.jsx @@ -8,6 +8,8 @@ import { Form, Grid, Icon as IconOld, Label } from 'semantic-ui-react'; import { map } from 'lodash'; import cx from 'classnames'; import { defineMessages, injectIntl } from 'react-intl'; +import LanguageSVG from '@plone/volto/icons/language.svg'; +import { Icon } from '@plone/volto/components'; const messages = defineMessages({ edit: { @@ -22,6 +24,11 @@ const messages = defineMessages({ id: 'Language independent field.', defaultMessage: 'Language independent field.', }, + language_independent_icon_title: { + id: 'Language independent icon title', + defaultMessage: + 'This is a language independent field. Any value you enter here will overwrite the corresponding field of all members of the translation group when you save this form.', + }, }); /** * FormFieldWrapper component class. @@ -91,6 +98,9 @@ class FormFieldWrapper extends Component { noForInFieldLabel, multilingual_options, } = this.props; + + const languageIndependent = multilingual_options?.language_independent; + const wdg = ( <> {this.props.children} @@ -112,9 +122,7 @@ class FormFieldWrapper extends Component { description ? 'help' : '', className, `field-wrapper-${id}`, - multilingual_options?.language_independent - ? 'language-independent-field' - : null, + languageIndependent ? 'language-independent-field' : null, )} > @@ -133,6 +141,18 @@ class FormFieldWrapper extends Component { /> )} {title} + {languageIndependent && ( +
    + +
    + )} diff --git a/packages/volto/theme/themes/pastanaga/extras/widgets.less b/packages/volto/theme/themes/pastanaga/extras/widgets.less index 5026708212..586e4df775 100644 --- a/packages/volto/theme/themes/pastanaga/extras/widgets.less +++ b/packages/volto/theme/themes/pastanaga/extras/widgets.less @@ -280,3 +280,15 @@ body.babel-view .field.language-independent-field { } } } + +// ### FormFieldWrapper ### +.language-independent-field .wrapper > label { + display: flex !important; + align-items: center; + justify-content: space-between; + + .languageIndependent-icon { + display: flex; + margin-left: 8px; + } +} From 430c99573f6a96bbb9574b9cc960104410dd1068 Mon Sep 17 00:00:00 2001 From: Gianni Cozzolongo <32923977+gianniftp@users.noreply.github.com> Date: Sun, 29 Sep 2024 09:23:54 +0200 Subject: [PATCH 05/24] Updated Italian translations (#6342) Co-authored-by: Piero Nicolli --- .../volto/locales/it/LC_MESSAGES/volto.po | 74 +++++++++---------- packages/volto/news/ 6342.feature | 1 + 2 files changed, 38 insertions(+), 37 deletions(-) create mode 100644 packages/volto/news/ 6342.feature diff --git a/packages/volto/locales/it/LC_MESSAGES/volto.po b/packages/volto/locales/it/LC_MESSAGES/volto.po index 45c86020ba..060c5ba03e 100644 --- a/packages/volto/locales/it/LC_MESSAGES/volto.po +++ b/packages/volto/locales/it/LC_MESSAGES/volto.po @@ -589,7 +589,7 @@ msgstr "Modifiche salvate." #. Default: "Check this box to customize the title, description, or image of the target content item for this teaser. Leave it unchecked to show updates to the target content item if it is edited later." #: components/manage/Blocks/Teaser/schema msgid "Check this box to customize the title, description, or image of the target content item for this teaser. Leave it unchecked to show updates to the target content item if it is edited later." -msgstr "" +msgstr "Seleziona questa casella per personalizzare il titolo, la descrizione o l'immagine dell'oggetto di riferimento per questo teaser. Lascia la casella vuota per mostrare automaticamente gli aggiornamenti del contenuto se viene modificato in seguito." #. Default: "Checkbox" #: components/manage/Widgets/SchemaWidget @@ -874,7 +874,7 @@ msgstr "Password corrente" #. Default: "Customize teaser content" #: components/manage/Blocks/Teaser/schema msgid "Customize teaser content" -msgstr "" +msgstr "Personalizza il contenuto del teaser" #. Default: "Cut" #: components/manage/Actions/Actions @@ -986,7 +986,7 @@ msgstr "Elimina utente" #. Default: "Action deleted" #: components/manage/Controlpanels/Rules/ConfigureRule msgid "Delete action" -msgstr "Cancella azione" +msgstr "Elimina azione" #. Default: "Delete blocks" #: helpers/MessageLabels/MessageLabels @@ -1011,12 +1011,12 @@ msgstr "Elimina riga" #. Default: "Delete selected items?" #: components/manage/Contents/Contents msgid "Delete selected items?" -msgstr "" +msgstr "Vuoi cancellare l'elemento selezionato?" #. Default: "Delete this item?" #: components/manage/Contents/Contents msgid "Delete this item?" -msgstr "" +msgstr "Vuoi cancellare questo elemento?" #. Default: "Deleted" #: components/manage/Controlpanels/Rules/Rules @@ -1322,7 +1322,7 @@ msgstr "Inserisci il tuo username per la verifica." #. Default: "Entries" #: components/manage/Blocks/ToC/Schema msgid "Entries" -msgstr "" +msgstr "Elementi" #. Default: "Error" #: components/manage/Add/Add @@ -1353,7 +1353,7 @@ msgstr "Evento" #. Default: "Event end date must be on or after {startDateValueOrStartFieldName}" #: helpers/MessageLabels/MessageLabels msgid "Event end date must be on or after {startDateValueOrStartFieldName}" -msgstr "" +msgstr "La data di fine evento deve essere uguale o successiva al {startDateValueOrStartFieldName}" #. Default: "Event listing" #: config/Views @@ -1363,7 +1363,7 @@ msgstr "Elenco eventi" #. Default: "Event start date must be on or before {endDateValueOrEndFieldName}" #: helpers/MessageLabels/MessageLabels msgid "Event start date must be on or before {endDateValueOrEndFieldName}" -msgstr "" +msgstr "La data di inizio evento essere uguale o precedente al {endDateValueOrEndFieldName}" #. Default: "Event view" #: config/Views @@ -1605,7 +1605,7 @@ msgstr "Gruppo creato" #. Default: "Group deleted" #: helpers/MessageLabels/MessageLabels msgid "Group deleted" -msgstr "" +msgstr "Gruppo eliminato" #. Default: "Group roles updated" #: helpers/MessageLabels/MessageLabels @@ -1670,7 +1670,7 @@ msgstr "Nascondi i filtri" #. Default: "Hide title" #: components/manage/Blocks/ToC/Schema msgid "Hide title" -msgstr "" +msgstr "Nascondi il titolo" #. Default: "History" #: components/manage/History/History @@ -1863,12 +1863,12 @@ msgstr "Blocco non valido - Salvando, verrà rimosso" #. Default: "Invalid teaser source" #: components/manage/Blocks/Teaser/Data msgid "Invalid teaser source" -msgstr "" +msgstr "Sorgente non valida per il teaser" #. Default: "It is not allowed to define both the password and to request sending the password reset message by e-mail. You need to select one of them." #: helpers/MessageLabels/MessageLabels msgid "It is not allowed to define both the password and to request sending the password reset message by e-mail. You need to select one of them." -msgstr "" +msgstr "Non è consentito effettuare contemporaneamente l'inserimento della password e la richiesta dell'invio del messaggio di reimpostazione della password tramite e-mail. È necessario selezionare una di esse." #. Default: "Item batch size" #: components/manage/Widgets/QuerystringWidget @@ -2012,7 +2012,7 @@ msgstr "Vista collegamento" #. Default: "Link settings" #: components/manage/Blocks/Image/schema msgid "Link settings" -msgstr "" +msgstr "Impostazioni Link" #. Default: "Link Title" #: components/manage/Blocks/Listing/schema @@ -2103,7 +2103,7 @@ msgstr "Nome utente" #. Default: "Logo of" #: components/theme/Logo/Logo msgid "Logo of" -msgstr "" +msgstr "Logo di" #. Default: "Logout" #: components/manage/Toolbar/PersonalTools @@ -2523,7 +2523,7 @@ msgstr "Ordine" #. Default: "Ordered" #: components/manage/Blocks/ToC/Schema msgid "Ordered" -msgstr "" +msgstr "Ordinato" #. Default: "Origin" #: components/manage/Blocks/LeadImage/LeadImageSidebar @@ -2787,7 +2787,7 @@ msgstr "Elementi collegati a questo contenuto in {relationship}" #. Default: "Refresh source content" #: components/manage/Blocks/Teaser/Data msgid "Refresh source content" -msgstr "" +msgstr "Ricarica il sorgente del contenuto" #. Default: "Register" #: components/theme/Anontools/Anontools @@ -3229,7 +3229,7 @@ msgstr "Invia una mail di conferma con un link per impostare la password." #. Default: "Server Error" #: components/theme/Error/ServerError msgid "Server Error" -msgstr "" +msgstr "Errore del Server" #. Default: "Set my password" #: components/theme/PasswordReset/PasswordReset @@ -3375,7 +3375,7 @@ msgstr "Piccolo" #. Default: "Some items are also a folder. By deleting them you will delete {containedItemsToDelete} {variation} inside the folders." #: components/manage/Contents/Contents msgid "Some items are also a folder. By deleting them you will delete {containedItemsToDelete} {variation} inside the folders." -msgstr "" +msgstr "Alcuni elementi sono anche una cartella. Eliminandoli eliminerai {containedItemsToDelete} {variation} dentro le cartelle." #. Default: "Some items are referenced by other contents. By deleting them {brokenReferences} {variation} will be broken." #: components/manage/Contents/Contents @@ -3427,7 +3427,7 @@ msgstr "Ordinato" #. Default: "Sorted on" #: components/manage/Blocks/Search/components/SortOn msgid "Sorted on" -msgstr "" +msgstr "Ordina in base a" #. Default: "Source" #: components/manage/Blocks/HTML/Edit @@ -3477,7 +3477,7 @@ msgstr "Status" #. Default: "Sticky" #: components/manage/Blocks/ToC/Schema msgid "Sticky" -msgstr "" +msgstr "Persistente" #. Default: "Stop compare" #: components/manage/Multilingual/CompareLanguages @@ -3507,7 +3507,7 @@ msgstr "Oggetto" #. Default: "Submit" #: components/manage/AnchorPlugin/components/LinkButton/AddLinkForm msgid "Submit" -msgstr "" +msgstr "Invia" #. Default: "Success" #: components/manage/Actions/Actions @@ -3673,12 +3673,12 @@ msgstr "L'indirizzo del collegamento è:" #. Default: "The number of items must be greater than or equal to {minItems}" #: helpers/MessageLabels/MessageLabels msgid "The number of items must be greater than or equal to {minItems}" -msgstr "" +msgstr "Il numero di elementi deve essere maggiore o uguale a {minItems}" #. Default: "The number of items must be less than or equal to {maxItems}" #: helpers/MessageLabels/MessageLabels msgid "The number of items must be less than or equal to {maxItems}" -msgstr "" +msgstr "Il numero di elementi deve essere minore o uguale a {maxItems}" #. Default: "The provided alternative url already exists!" #: components/manage/Aliases/Aliases @@ -3699,7 +3699,7 @@ msgstr "La configurazione del sito è obsoleta e deve essere aggiornata." #. Default: "The value does not match the pattern {pattern}" #: helpers/MessageLabels/MessageLabels msgid "The value does not match the pattern {pattern}" -msgstr "" +msgstr "I valori non corrispondono al pattern {pattern}" #. Default: "The working copy was discarded" #: components/manage/Toolbar/More @@ -3714,18 +3714,18 @@ msgstr "{plonecms} è {copyright} 2000-{current_year} della {plonefoundation} ed #. Default: "There are no groups with the searched criteria" #: helpers/MessageLabels/MessageLabels msgid "There are no groups with the searched criteria" -msgstr "" +msgstr "Non ci sono gruppi con i criteri ricercati" #. Default: "There are no users with the searched criteria" #: helpers/MessageLabels/MessageLabels msgid "There are no users with the searched criteria" -msgstr "" +msgstr "Non ci sono utenti con i criteri ricercati" #. Default: "There are some errors." #: components/manage/Add/Add #: components/manage/Edit/Edit msgid "There are some errors." -msgstr "" +msgstr "Ci sono degli errori." #. Default: "There is a configuration problem on the backend" #: components/theme/CorsError/CorsError @@ -4008,7 +4008,7 @@ msgstr "Aggiorna" #. Default: "Update User" #: helpers/MessageLabels/MessageLabels msgid "Update User" -msgstr "" +msgstr "Aggiorna Utente" #. Default: "Update installed addons" #: components/manage/Controlpanels/AddonsControlpanel @@ -4106,7 +4106,7 @@ msgstr "Utente creato" #. Default: "User deleted" #: helpers/MessageLabels/MessageLabels msgid "User deleted" -msgstr "" +msgstr "Utente eliminato" #. Default: "User name" #: components/manage/Controlpanels/Users/UsersControlpanel @@ -4121,7 +4121,7 @@ msgstr "Ruoli utente aggiornati" #. Default: "User updated successfuly" #: helpers/MessageLabels/MessageLabels msgid "User updated successfuly" -msgstr "" +msgstr "Utente aggiornato con successo" #. Default: "Username" #: helpers/MessageLabels/MessageLabels @@ -4180,7 +4180,7 @@ msgstr "Mostra le modifiche" #. Default: "View links and references to this item" #: components/manage/Contents/Contents msgid "View links and references to this item" -msgstr "" +msgstr "Visualizza i collegamenti e i riferimenti a questo elemento" #. Default: "View this revision" #: components/manage/History/History @@ -4549,7 +4549,7 @@ msgstr "elimina intIds e ricrea le relazioni" #. Default: "
    • Regenerate intIds (tokens of relations in relation catalog)
    • Rebuild relations

    Check the log for details!

    Warning: If you have add-ons relying on intIds, you should not flush them.

    " #: helpers/MessageLabels/MessageLabels msgid "flushAndRebuildRelationsHints" -msgstr "" +msgstr "
    • Rigenera intIds (i token delle relazioni nel catalogo delle relazioni)
    • Ricrea le relazioni

    Controlla il log per i dettagli!

    Attenzione: Se ci sono prodotti aggiuntivi che hanno bisogno degli intIds, non dovresti eliminarli.

    " #. Default: "Head title" #: components/manage/Blocks/Teaser/schema @@ -4599,12 +4599,12 @@ msgstr "Pubblicato internamente" #. Default: "item" #: components/manage/Contents/Contents msgid "item" -msgstr "" +msgstr "elemento" #. Default: "items" #: components/manage/Contents/Contents msgid "items" -msgstr "" +msgstr "elementi" #. Default: "My email is" #: components/theme/PasswordReset/RequestPasswordReset @@ -4748,12 +4748,12 @@ msgstr "ricrea le relazioni" #. Default: "reference" #: components/manage/Contents/Contents msgid "reference" -msgstr "" +msgstr "riferimento" #. Default: "references" #: components/manage/Contents/Contents msgid "references" -msgstr "" +msgstr "riferimenti" #. Default: "results" #: components/theme/Search/Search @@ -4973,7 +4973,7 @@ msgstr "percorso di destinazione" #. Default: "Text" #: config/Blocks msgid "text" -msgstr "" +msgstr "Testo" #. Default: "Title" #: config/Blocks diff --git a/packages/volto/news/ 6342.feature b/packages/volto/news/ 6342.feature new file mode 100644 index 0000000000..2c6681332a --- /dev/null +++ b/packages/volto/news/ 6342.feature @@ -0,0 +1 @@ +Updated Italian Italian translations. @gianniftp From ef34ef2d37ee3dbec6e46500c93f250291aa86ea Mon Sep 17 00:00:00 2001 From: David Glick Date: Sun, 29 Sep 2024 16:31:15 -0700 Subject: [PATCH 06/24] Update refs to old cookiecutter in docs (#6352) Merging as the failing tests have nothing to do with this change. --- docs/source/contributing/developing-core.md | 20 ++++++++++++-------- packages/volto/news/6289.documentation | 1 + 2 files changed, 13 insertions(+), 8 deletions(-) create mode 100644 packages/volto/news/6289.documentation diff --git a/docs/source/contributing/developing-core.md b/docs/source/contributing/developing-core.md index eb79d97c8a..c00abaa0f1 100644 --- a/docs/source/contributing/developing-core.md +++ b/docs/source/contributing/developing-core.md @@ -330,13 +330,6 @@ By default, the use of TypeScript is required in Plone frontend libraries, Volto The monorepository consists of several core libraries. -### Volto project generator - -`@plone/generator-volto` is a Yeoman generator that helps you set up Volto via command line. -It generates all the boilerplate needed to start developing a Plone Volto project. -It is used by [CookieCutter Plone Starter](https://github.com/collective/cookiecutter-plone-starter), the recommended way to set up Plone projects. -The generator features an `addon` template for scaffolding Volto add-ons in your projects. - ### Registry `@plone/registry` provides support for building an add-on registry and infrastructure for JavaScript and TypeScript-based apps. @@ -354,6 +347,17 @@ Used by Volto, you can also use it in other JavaScript frameworks and environmen `@plone/volto-slate` is the glue package that provides support for the Slate library in Volto. +### Volto project generator + +`@plone/generator-volto` is a Yeoman generator that helps you set up Volto via command line. +It generates all the boilerplate needed to start developing a Plone Volto project. +It is used by [CookieCutter Plone Starter](https://github.com/collective/cookiecutter-plone-starter), the recommended way to set up Plone projects. +The generator features an `addon` template for scaffolding Volto add-ons in your projects. + +```{deprecated} 18.0.0-alpha.43 +For Volto 18, `@plone/generator-volto` is replaced by [Cookieplone](https://github.com/plone/cookieplone). +``` + ## Supported frontends @@ -362,7 +366,7 @@ Volto is the default frontend, and is React-based. Classic UI is the Python-based, server-side rendered frontend. In Volto's `apps` folder, you'll find a Volto project scaffolding that uses Volto as a library. -This is the same as that which you'll have when you run the Volto generator or `cookiecutter-plone-starter`. +This is the same as that which you'll have when you follow the instructions in {doc}`plone:install/create-project`). ## Experimental frontends diff --git a/packages/volto/news/6289.documentation b/packages/volto/news/6289.documentation new file mode 100644 index 0000000000..59d97b6da5 --- /dev/null +++ b/packages/volto/news/6289.documentation @@ -0,0 +1 @@ +Update references to cookiecutter-plone-starter in docs. @davisagli From 8aff340d809d2334ae2bb30609f0f50fc6631856 Mon Sep 17 00:00:00 2001 From: Steve Piercy Date: Tue, 1 Oct 2024 04:16:51 -0700 Subject: [PATCH 07/24] Fix the syntax for the label `upgrade-18-cookieplone-label` (#6360) --- docs/source/upgrade-guide/index.md | 2 +- packages/volto/news/6360.documentation | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 packages/volto/news/6360.documentation diff --git a/docs/source/upgrade-guide/index.md b/docs/source/upgrade-guide/index.md index e2bac7815c..ddea900417 100644 --- a/docs/source/upgrade-guide/index.md +++ b/docs/source/upgrade-guide/index.md @@ -451,7 +451,7 @@ The `Tags` component has been moved to the `belowContent` slot. It now receives the `content` property instead of the `tags` property. -{upgrade-18-cookieplone-label}= +(upgrade-18-cookieplone-label)= ### Cookieplone is now the recommended project and add-on generator for Volto 18 diff --git a/packages/volto/news/6360.documentation b/packages/volto/news/6360.documentation new file mode 100644 index 0000000000..f6a02c99e4 --- /dev/null +++ b/packages/volto/news/6360.documentation @@ -0,0 +1 @@ +- Fix the MyST syntax for the label `upgrade-18-cookieplone-label`. @stevepiercy From 78a26aa7355e67c04a80e92f89a74334f83fca30 Mon Sep 17 00:00:00 2001 From: Giulia Ghisini <51911425+giuliaghisini@users.noreply.github.com> Date: Wed, 2 Oct 2024 13:46:18 +0200 Subject: [PATCH 08/24] fix: build_classnames in edit mode (#6259) Co-authored-by: ichim-david --- packages/volto/news/6259.bugfix | 1 + .../components/manage/Blocks/Block/EditBlockWrapper.jsx | 8 +++++++- 2 files changed, 8 insertions(+), 1 deletion(-) create mode 100644 packages/volto/news/6259.bugfix diff --git a/packages/volto/news/6259.bugfix b/packages/volto/news/6259.bugfix new file mode 100644 index 0000000000..9a9158fcc6 --- /dev/null +++ b/packages/volto/news/6259.bugfix @@ -0,0 +1 @@ +- Fixed build style classnames in edit mode. Also use buildStyleClassNamesExtenders. @giuliaghisini diff --git a/packages/volto/src/components/manage/Blocks/Block/EditBlockWrapper.jsx b/packages/volto/src/components/manage/Blocks/Block/EditBlockWrapper.jsx index 31508127bf..5fd3ab2adb 100644 --- a/packages/volto/src/components/manage/Blocks/Block/EditBlockWrapper.jsx +++ b/packages/volto/src/components/manage/Blocks/Block/EditBlockWrapper.jsx @@ -6,6 +6,7 @@ import { blockHasValue, buildStyleClassNamesFromData, buildStyleObjectFromData, + buildStyleClassNamesExtenders, } from '@plone/volto/helpers'; import dragSVG from '@plone/volto/icons/drag.svg'; import { Button } from 'semantic-ui-react'; @@ -61,7 +62,12 @@ const EditBlockWrapper = (props) => { ? data.required : includes(config.blocks.requiredBlocks, type); - const classNames = buildStyleClassNamesFromData(data.styles); + let classNames = buildStyleClassNamesFromData(data.styles); + classNames = buildStyleClassNamesExtenders({ + block, + data, + classNames, + }); const style = buildStyleObjectFromData(data.styles); // We need to merge the StyleWrapper styles with the draggable props from b-D&D From 1af4acef91e10604a782bbcc874dfe2468819065 Mon Sep 17 00:00:00 2001 From: Steve Piercy Date: Wed, 2 Oct 2024 08:50:54 -0700 Subject: [PATCH 09/24] Fix spelling of prerequisites (#6362) --- docs/source/contributing/developing-core.md | 4 ++-- packages/volto/news/6362.documentation | 1 + styles/Vocab/Plone/reject.txt | 1 + 3 files changed, 4 insertions(+), 2 deletions(-) create mode 100644 packages/volto/news/6362.documentation diff --git a/docs/source/contributing/developing-core.md b/docs/source/contributing/developing-core.md index c00abaa0f1..44b387b761 100644 --- a/docs/source/contributing/developing-core.md +++ b/docs/source/contributing/developing-core.md @@ -71,9 +71,9 @@ Volto has the following folder structure. ``` -## Development pre-requisites +## Development prerequisites -To set up a Volto core development environment, your system must satisfy the following pre-requisites. +To set up a Volto core development environment, your system must satisfy the following prerequisites. ```{include} ./install-operating-system.md ``` diff --git a/packages/volto/news/6362.documentation b/packages/volto/news/6362.documentation new file mode 100644 index 0000000000..c37ab93222 --- /dev/null +++ b/packages/volto/news/6362.documentation @@ -0,0 +1 @@ +Fixed spelling of prerequisites. @stevepiercy diff --git a/styles/Vocab/Plone/reject.txt b/styles/Vocab/Plone/reject.txt index 1cefa812f0..81510d55a8 100644 --- a/styles/Vocab/Plone/reject.txt +++ b/styles/Vocab/Plone/reject.txt @@ -1,2 +1,3 @@ [^.]js NodeJS +[Pp]re-requisite From c3e5be1db26f7865e3777cca4210a21bfd39f4b2 Mon Sep 17 00:00:00 2001 From: peralta <129250086+aadityaforwork@users.noreply.github.com> Date: Wed, 2 Oct 2024 22:28:37 +0530 Subject: [PATCH 10/24] vscode/settings.json markdown added (#6357) Co-authored-by: Steve Piercy --- packages/scripts/news/6354.documentation | 1 + packages/scripts/vscodesettings.js | 16 ++++++++++++---- pnpm-lock.yaml | 2 +- 3 files changed, 14 insertions(+), 5 deletions(-) create mode 100644 packages/scripts/news/6354.documentation diff --git a/packages/scripts/news/6354.documentation b/packages/scripts/news/6354.documentation new file mode 100644 index 0000000000..b643f0ac32 --- /dev/null +++ b/packages/scripts/news/6354.documentation @@ -0,0 +1 @@ +Added the configuration for VSCode not to reformat Markdown and MyST files. @aadityaforwork \ No newline at end of file diff --git a/packages/scripts/vscodesettings.js b/packages/scripts/vscodesettings.js index ebcc8cec08..2df03c41b8 100644 --- a/packages/scripts/vscodesettings.js +++ b/packages/scripts/vscodesettings.js @@ -13,9 +13,17 @@ if (fs.existsSync('.vscode')) { if (!vscodeSettingsJSON['eslint.workingDirectories']) { vscodeSettingsJSON['eslint.workingDirectories'] = [{ mode: 'auto' }]; +} - fs.writeFileSync( - '.vscode/settings.json', - `${stringify(vscodeSettingsJSON, null, 2)}`, - ); +if (!vscodeSettingsJSON['[markdown]']) { + vscodeSettingsJSON['[markdown]'] = { + 'editor.formatOnSave': false, + }; +} else { + vscodeSettingsJSON['[markdown]']['editor.formatOnSave'] = false; } + +fs.writeFileSync( + '.vscode/settings.json', + `${stringify(vscodeSettingsJSON, null, 2)}`, +); diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 013c2c131a..21d9875b8e 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -44371,4 +44371,4 @@ snapshots: zod@3.22.5: {} - zwitch@2.0.4: {} + zwitch@2.0.4: {} \ No newline at end of file From 913a084ffb9ec62fc8559cbad0035afc9ca97a73 Mon Sep 17 00:00:00 2001 From: Jefferson Bledsoe Date: Wed, 2 Oct 2024 21:10:25 +0100 Subject: [PATCH 11/24] Add outline to toolbar buttons (#6313) Co-authored-by: Piero Nicolli --- packages/volto/news/6313.bugfix | 1 + .../theme/themes/pastanaga/extras/toolbar.less | 16 ++++++++++++++-- 2 files changed, 15 insertions(+), 2 deletions(-) create mode 100644 packages/volto/news/6313.bugfix diff --git a/packages/volto/news/6313.bugfix b/packages/volto/news/6313.bugfix new file mode 100644 index 0000000000..134d5727c5 --- /dev/null +++ b/packages/volto/news/6313.bugfix @@ -0,0 +1 @@ +Fixed toolbar buttons not having a focus outline. @JeffersonBledsoe diff --git a/packages/volto/theme/themes/pastanaga/extras/toolbar.less b/packages/volto/theme/themes/pastanaga/extras/toolbar.less index 0d25297239..9b1d5e6f03 100644 --- a/packages/volto/theme/themes/pastanaga/extras/toolbar.less +++ b/packages/volto/theme/themes/pastanaga/extras/toolbar.less @@ -283,16 +283,28 @@ body:not(.has-sidebar):not(.has-sidebar-collapsed) { .toolbar-content, .toolbar { - button { + button, + a { // Default reset for button padding: 0; border: 0; background: transparent; + box-shadow: unset !important; // Some buttons have double outlines due to default styles. Safely disable those styles here. cursor: pointer; text-align: initial; + svg { + display: block; // SVGs are inline by default, causing the spacing to be odd + margin: 0; // Some SVGs have margin set by default styles. + } + &:focus-visible { - outline: 1px auto; + outline: 2px solid black; + outline-offset: 2px; + + &:has(.circled) { + border-radius: 50%; + } } } } From ff84416d69d89bb86fd36e378a52f27be31f2c40 Mon Sep 17 00:00:00 2001 From: Piero Nicolli Date: Wed, 2 Oct 2024 22:11:56 +0200 Subject: [PATCH 12/24] Fixed client copy mutation, cleanup up move mutation for consistency (#6349) --- packages/client/news/6349.bugfix | 1 + .../client/src/restapi/copymove/copy.test.tsx | 4 +-- packages/client/src/restapi/copymove/copy.ts | 28 +++++++++---------- packages/client/src/restapi/copymove/move.ts | 22 +++++---------- packages/client/src/validation/copymove.ts | 5 +++- 5 files changed, 27 insertions(+), 33 deletions(-) create mode 100644 packages/client/news/6349.bugfix diff --git a/packages/client/news/6349.bugfix b/packages/client/news/6349.bugfix new file mode 100644 index 0000000000..47f5249e59 --- /dev/null +++ b/packages/client/news/6349.bugfix @@ -0,0 +1 @@ +Fixed client copy mutation, cleanup up move mutation for consistency @pnicolli diff --git a/packages/client/src/restapi/copymove/copy.test.tsx b/packages/client/src/restapi/copymove/copy.test.tsx index e278ad3d88..0c79277546 100644 --- a/packages/client/src/restapi/copymove/copy.test.tsx +++ b/packages/client/src/restapi/copymove/copy.test.tsx @@ -43,7 +43,7 @@ describe('[POST] Copy', () => { }); act(() => { - result.current.mutate({ data: copyData }); + result.current.mutate({ path: '/', data: copyData }); }); await waitFor(() => expect(result.current.isSuccess).toBe(true)); @@ -80,7 +80,7 @@ describe('[POST] Copy', () => { }); act(() => { - result.current.mutate({ data: copyMultipleData }); + result.current.mutate({ path: '/', data: copyMultipleData }); }); await waitFor(() => expect(result.current.isSuccess).toBe(true)); diff --git a/packages/client/src/restapi/copymove/copy.ts b/packages/client/src/restapi/copymove/copy.ts index 3935275dd5..bf300f958f 100644 --- a/packages/client/src/restapi/copymove/copy.ts +++ b/packages/client/src/restapi/copymove/copy.ts @@ -1,37 +1,35 @@ import { z } from 'zod'; import { ApiRequestParams, apiRequest } from '../../API'; -import { - PloneClientConfig, - PloneClientConfigSchema, -} from '../../validation/config'; +import { PloneClientConfig } from '../../validation/config'; import { copyMoveDataSchema as copyDataSchema } from '../../validation/copymove'; import { CopyMoveResponse as CopyResponse } from '@plone/types'; -export const copyArgsSchema = z.object({ - data: copyDataSchema, - config: PloneClientConfigSchema, -}); - -export type CopyArgs = z.infer; +export type CopyArgs = z.infer & { + config: PloneClientConfig; +}; export const copy = async ({ + path, data, config, }: CopyArgs): Promise => { - const validatedArgs = copyArgsSchema.parse({ + const validatedArgs = copyDataSchema.parse({ + path, data, - config, }); const options: ApiRequestParams = { + config, data: validatedArgs.data, - config: validatedArgs.config, }; - return apiRequest('post', '/@copy', options); + const copyPath = `${validatedArgs.path}/@copy`; + + return apiRequest('post', copyPath, options); }; export const copyMutation = ({ config }: { config: PloneClientConfig }) => ({ mutationKey: ['post', 'copy'], - mutationFn: ({ data }: Omit) => copy({ data, config }), + mutationFn: ({ path, data }: Omit) => + copy({ path, data, config }), }); diff --git a/packages/client/src/restapi/copymove/move.ts b/packages/client/src/restapi/copymove/move.ts index 3f9e3ceea7..6f1015caad 100644 --- a/packages/client/src/restapi/copymove/move.ts +++ b/packages/client/src/restapi/copymove/move.ts @@ -1,37 +1,29 @@ import { z } from 'zod'; import { ApiRequestParams, apiRequest } from '../../API'; -import { - PloneClientConfig, - PloneClientConfigSchema, -} from '../../validation/config'; +import { PloneClientConfig } from '../../validation/config'; import { copyMoveDataSchema as moveDataSchema } from '../../validation/copymove'; import { CopyMoveResponse as MoveResponse } from '@plone/types'; -export const MoveArgsSchema = z.object({ - path: z.string(), - data: moveDataSchema, - config: PloneClientConfigSchema, -}); - -export type MoveArgs = z.infer; +export type MoveArgs = z.infer & { + config: PloneClientConfig; +}; export const move = async ({ path, data, config, }: MoveArgs): Promise => { - const validatedArgs = MoveArgsSchema.parse({ + const validatedArgs = moveDataSchema.parse({ path, data, - config, }); const options: ApiRequestParams = { + config, data: validatedArgs.data, - config: validatedArgs.config, }; - const movePath = `/${validatedArgs.path}/@move`; + const movePath = `${validatedArgs.path}/@move`; return apiRequest('post', movePath, options); }; diff --git a/packages/client/src/validation/copymove.ts b/packages/client/src/validation/copymove.ts index ee27382a81..f712bd708a 100644 --- a/packages/client/src/validation/copymove.ts +++ b/packages/client/src/validation/copymove.ts @@ -1,5 +1,8 @@ import { z } from 'zod'; export const copyMoveDataSchema = z.object({ - source: z.union([z.string(), z.array(z.string())]), + path: z.string(), + data: z.object({ + source: z.union([z.string(), z.array(z.string())]), + }), }); From 6e498dec450ffe747b5bae7308362d879e7e59f4 Mon Sep 17 00:00:00 2001 From: Wesley Barroso Lopes Date: Thu, 3 Oct 2024 03:51:55 -0300 Subject: [PATCH 13/24] Fetch user before pass it to the restricted function (#6293) --- packages/volto-slate/news/6293.bugfix | 1 + .../volto-slate/src/blocks/Text/SlashMenu.jsx | 4 ++-- packages/volto/news/6293.bugfix | 1 + .../manage/BlockChooser/BlockChooser.jsx | 4 ++-- .../manage/BlockChooser/BlockChooser.test.jsx | 4 ++++ packages/volto/src/hooks/index.js | 1 + packages/volto/src/hooks/user/useUser.js | 23 +++++++++++++++++++ 7 files changed, 34 insertions(+), 4 deletions(-) create mode 100644 packages/volto-slate/news/6293.bugfix create mode 100644 packages/volto/news/6293.bugfix create mode 100644 packages/volto/src/hooks/user/useUser.js diff --git a/packages/volto-slate/news/6293.bugfix b/packages/volto-slate/news/6293.bugfix new file mode 100644 index 0000000000..ea8503c548 --- /dev/null +++ b/packages/volto-slate/news/6293.bugfix @@ -0,0 +1 @@ +Fetch `user` before pass it to the `restricted` function of the block settings. @wesleybl diff --git a/packages/volto-slate/src/blocks/Text/SlashMenu.jsx b/packages/volto-slate/src/blocks/Text/SlashMenu.jsx index 2a26c39cfe..9ec1612304 100644 --- a/packages/volto-slate/src/blocks/Text/SlashMenu.jsx +++ b/packages/volto-slate/src/blocks/Text/SlashMenu.jsx @@ -4,7 +4,7 @@ import { filter, isEmpty } from 'lodash'; import { Menu } from 'semantic-ui-react'; import { useIntl, FormattedMessage } from 'react-intl'; import { Icon } from '@plone/volto/components'; -import { useSelector } from 'react-redux'; +import { useUser } from '@plone/volto/hooks'; const emptySlateBlock = () => ({ value: [ @@ -111,7 +111,7 @@ const PersistentSlashMenu = ({ editor }) => { } = props; const disableNewBlocks = data?.disableNewBlocks || detached; - const user = useSelector((state) => state.users?.user); + const user = useUser(); const [slashMenuSelected, setSlashMenuSelected] = React.useState(0); diff --git a/packages/volto/news/6293.bugfix b/packages/volto/news/6293.bugfix new file mode 100644 index 0000000000..ea8503c548 --- /dev/null +++ b/packages/volto/news/6293.bugfix @@ -0,0 +1 @@ +Fetch `user` before pass it to the `restricted` function of the block settings. @wesleybl diff --git a/packages/volto/src/components/manage/BlockChooser/BlockChooser.jsx b/packages/volto/src/components/manage/BlockChooser/BlockChooser.jsx index 80c5142e81..2ae878e5ba 100644 --- a/packages/volto/src/components/manage/BlockChooser/BlockChooser.jsx +++ b/packages/volto/src/components/manage/BlockChooser/BlockChooser.jsx @@ -1,5 +1,5 @@ import React from 'react'; -import { useSelector } from 'react-redux'; +import { useUser } from '@plone/volto/hooks'; import PropTypes from 'prop-types'; import { filter, map, groupBy, isEmpty } from 'lodash'; import { Accordion, Button } from 'semantic-ui-react'; @@ -36,7 +36,7 @@ const BlockChooser = ({ contentType, }) => { const intl = useIntl(); - const user = useSelector((state) => state.users?.user); + const user = useUser(); const hasAllowedBlocks = !isEmpty(allowedBlocks); const filteredBlocksConfig = filter(blocksConfig, (item) => { diff --git a/packages/volto/src/components/manage/BlockChooser/BlockChooser.test.jsx b/packages/volto/src/components/manage/BlockChooser/BlockChooser.test.jsx index 447c20f61d..d2bd1bbe5a 100644 --- a/packages/volto/src/components/manage/BlockChooser/BlockChooser.test.jsx +++ b/packages/volto/src/components/manage/BlockChooser/BlockChooser.test.jsx @@ -4,6 +4,7 @@ import { Provider } from 'react-intl-redux'; import configureStore from 'redux-mock-store'; import BlockChooser from './BlockChooser'; import config from '@plone/volto/registry'; +import jwt from 'jsonwebtoken'; const blockSVG = {}; @@ -121,6 +122,9 @@ const store = mockStore({ locale: 'en', messages: {}, }, + userSession: { + token: jwt.sign({ fullname: 'John Doe' }, 'secret'), + }, }); describe('BlocksChooser', () => { diff --git a/packages/volto/src/hooks/index.js b/packages/volto/src/hooks/index.js index a955aa8285..f8e327c0e6 100644 --- a/packages/volto/src/hooks/index.js +++ b/packages/volto/src/hooks/index.js @@ -1,2 +1,3 @@ export { default as useClipboard } from '@plone/volto/hooks/clipboard/useClipboard'; export { useClient } from '@plone/volto/hooks/client/useClient'; +export { default as useUser } from '@plone/volto/hooks/user/useUser'; diff --git a/packages/volto/src/hooks/user/useUser.js b/packages/volto/src/hooks/user/useUser.js new file mode 100644 index 0000000000..3232ed0a8e --- /dev/null +++ b/packages/volto/src/hooks/user/useUser.js @@ -0,0 +1,23 @@ +import { useEffect } from 'react'; +import { useDispatch, useSelector } from 'react-redux'; +import jwtDecode from 'jwt-decode'; +import { getUser } from '@plone/volto/actions'; + +const useUser = () => { + const users = useSelector((state) => state.users); + const user = users?.user; + const userId = useSelector((state) => + state.userSession.token ? jwtDecode(state.userSession.token).sub : '', + ); + const dispatch = useDispatch(); + + useEffect(() => { + if (!user?.id && users?.get.loading === false) { + dispatch(getUser(userId)); + } + }, [dispatch, userId, user, users?.get.loading]); + + return user; +}; + +export default useUser; From 52a23bd2de3ad671975f5db5778f6f0ccdabf3a2 Mon Sep 17 00:00:00 2001 From: Steve Piercy Date: Wed, 2 Oct 2024 23:54:19 -0700 Subject: [PATCH 14/24] =?UTF-8?q?Fix=20lexer=20language=20in=20upgrade=20g?= =?UTF-8?q?uide=20for=20Field=20validation=20in=20blocks=20ex=E2=80=A6=20(?= =?UTF-8?q?#6367)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/source/upgrade-guide/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/upgrade-guide/index.md b/docs/source/upgrade-guide/index.md index ddea900417..407cf8fe48 100644 --- a/docs/source/upgrade-guide/index.md +++ b/docs/source/upgrade-guide/index.md @@ -395,7 +395,7 @@ If you shadowed the module {file}`packages/volto/src/helpers/FormValidation/Form This prop must be assigned with the new prop passed down from the blocks engine `blocksErrors`. If not passed down, the block can't display any field validation error. -```tsx +```jsx // More component code above here const { From dc787b181369d4a6af1b91f13bbc1524a6af7df3 Mon Sep 17 00:00:00 2001 From: Steve Piercy Date: Thu, 3 Oct 2024 00:28:46 -0700 Subject: [PATCH 15/24] Fix links to Vite website (#6366) --- apps/vite-ssr/README.md | 2 +- apps/vite/README.md | 2 +- packages/volto/news/6366.documentation | 1 + 3 files changed, 3 insertions(+), 2 deletions(-) create mode 100644 packages/volto/news/6366.documentation diff --git a/apps/vite-ssr/README.md b/apps/vite-ssr/README.md index 2894982c36..ec603dc2af 100644 --- a/apps/vite-ssr/README.md +++ b/apps/vite-ssr/README.md @@ -1,6 +1,6 @@ # Plone on Vite with SSR mode -This is a proof of concept of a [Vite](https://vitejs.dev) build, using `@plone/client` and `@plone/components` libraries. +This is a proof of concept of a [Vite](https://vite.dev/) build, using `@plone/client` and `@plone/components` libraries. This is intended to serve as both a playground for the development of both packages and as a demo of Plone using Vite built with server side rendering (SSR). It also uses [TanStack Router](https://tanstack.com/router/latest/docs/framework/react/overview) for its routing library. diff --git a/apps/vite/README.md b/apps/vite/README.md index 417e695ef3..97978cb92e 100644 --- a/apps/vite/README.md +++ b/apps/vite/README.md @@ -1,6 +1,6 @@ # Plone on Vite -This is a proof of concept of a [Vite](https://vitejs.dev) build, using `@plone/client` and `@plone/components` libraries. +This is a proof of concept of a [Vite](https://vite.dev/) build, using `@plone/client` and `@plone/components` libraries. This is intended to serve as both a playground for the development of both packages and as a demo of Plone using Vite. It also uses [TanStack Router](https://tanstack.com/router/latest/docs/framework/react/overview) for its routing library. diff --git a/packages/volto/news/6366.documentation b/packages/volto/news/6366.documentation new file mode 100644 index 0000000000..93d39a686f --- /dev/null +++ b/packages/volto/news/6366.documentation @@ -0,0 +1 @@ +Fix links to Vite website. @stevepiercy From dbdb5971a5ceb874ba580b05d97f2ad87c23fdb9 Mon Sep 17 00:00:00 2001 From: dobri1408 <50819975+dobri1408@users.noreply.github.com> Date: Thu, 3 Oct 2024 10:58:46 +0300 Subject: [PATCH 16/24] improve DiffField.jsx with better support for displaying HTML elements such as images (#6309) Co-authored-by: Ichim David --- packages/volto/news/6309.feature | 1 + .../src/components/manage/Diff/DiffField.jsx | 206 ++++++++++++++---- .../Diff/__snapshots__/Diff.test.jsx.snap | 21 +- .../__snapshots__/DiffField.test.jsx.snap | 60 ++--- 4 files changed, 193 insertions(+), 95 deletions(-) create mode 100644 packages/volto/news/6309.feature diff --git a/packages/volto/news/6309.feature b/packages/volto/news/6309.feature new file mode 100644 index 0000000000..370011edb9 --- /dev/null +++ b/packages/volto/news/6309.feature @@ -0,0 +1 @@ +Improve DiffField.jsx to render only the blocks on the page with better support for displaying HTML elements such as images. @dobri1408 diff --git a/packages/volto/src/components/manage/Diff/DiffField.jsx b/packages/volto/src/components/manage/Diff/DiffField.jsx index 23582788d3..a9bad2afb2 100644 --- a/packages/volto/src/components/manage/Diff/DiffField.jsx +++ b/packages/volto/src/components/manage/Diff/DiffField.jsx @@ -4,7 +4,6 @@ */ import React from 'react'; -// import { diffWords as dWords } from 'diff'; import { join, map } from 'lodash'; import PropTypes from 'prop-types'; import { Grid } from 'semantic-ui-react'; @@ -13,20 +12,128 @@ import { Provider } from 'react-intl-redux'; import { createBrowserHistory } from 'history'; import { ConnectedRouter } from 'connected-react-router'; import { useSelector } from 'react-redux'; - +import config from '@plone/volto/registry'; import { Api } from '@plone/volto/helpers'; import configureStore from '@plone/volto/store'; -import { DefaultView } from '@plone/volto/components/'; +import { RenderBlocks } from '@plone/volto/components'; import { serializeNodes } from '@plone/volto-slate/editor/render'; - import { injectLazyLibs } from '@plone/volto/helpers/Loadable/Loadable'; -/** - * Enhanced diff words utility - * @function diffWords - * @param oneStr Field one - * @param twoStr Field two - */ +const isHtmlTag = (str) => { + // Match complete HTML tags, including: + // 1. Opening tags like
    , , ... + // 2. Self-closing tags like ,
    + // 3. Closing tags like
    + return /^<([a-zA-Z]+[0-9]*)\b[^>]*>|^<\/([a-zA-Z]+[0-9]*)\b[^>]*>$|^<([a-zA-Z]+[0-9]*)\b[^>]*\/>$/.test( + str, + ); +}; + +const splitWords = (str) => { + if (typeof str !== 'string') return str; + if (!str) return []; + + const result = []; + let currentWord = ''; + let insideTag = false; + let insideSpecialTag = false; + let tagBuffer = ''; + + // Special tags that should not be split (e.g., , ... ) + const specialTags = ['img', 'svg']; + + for (let i = 0; i < str.length; i++) { + const char = str[i]; + + // Start of an HTML tag + if (char === '<') { + if (currentWord) { + result.push(currentWord); // Push text before the tag + currentWord = ''; + } + insideTag = true; + tagBuffer += char; + } + // End of an HTML tag + else if (char === '>') { + tagBuffer += char; + insideTag = false; + + // Check if the tagBuffer contains a special tag + const tagNameMatch = tagBuffer.match(/^<\/?([a-zA-Z]+[0-9]*)\b/); + if (tagNameMatch && specialTags.includes(tagNameMatch[1])) { + insideSpecialTag = + tagNameMatch[0].startsWith('<') && !tagNameMatch[0].startsWith(' { + if (!isHtmlTag(value)) { + if (part.removed && (side === 'left' || side === 'unified')) { + return `${value}`; + } else if (part.removed) return ''; + else if (part.added && (side === 'right' || side === 'unified')) { + return `${value}`; + } else if (part.added) return ''; + return value; + } else { + if (side === 'unified' && part.added) return value; + else if (side === 'unified' && part.removed) return ''; + if (part.removed && side === 'left') { + return value; + } else if (part.removed) return ''; + else if (part.added && side === 'right') { + return value; + } else if (part.added) return ''; + return value; + } +}; /** * Diff field component. @@ -36,6 +143,7 @@ import { injectLazyLibs } from '@plone/volto/helpers/Loadable/Loadable'; * @param {Object} schema Field schema * @returns {string} Markup of the component. */ + const DiffField = ({ one, two, @@ -51,7 +159,10 @@ const DiffField = ({ timeStyle: 'short', }; const diffWords = (oneStr, twoStr) => { - return diffLib.diffWords(String(oneStr), String(twoStr)); + return diffLib.diffArrays( + splitWords(String(oneStr)), + splitWords(String(twoStr)), + ); }; let parts, oneArray, twoArray; @@ -78,14 +189,14 @@ const DiffField = ({ ReactDOMServer.renderToStaticMarkup( - + , ), ReactDOMServer.renderToStaticMarkup( - + , ), @@ -116,7 +227,30 @@ const DiffField = ({ } case 'textarea': default: - parts = diffWords(one, two); + const Widget = config.widgets?.views?.widget?.[schema.widget]; + + if (Widget) { + const api = new Api(); + const history = createBrowserHistory(); + const store = configureStore(window.__data, history, api); + parts = diffWords( + ReactDOMServer.renderToStaticMarkup( + + + + + , + ), + ReactDOMServer.renderToStaticMarkup( + + + + + , + ), + ); + } else parts = diffWords(one, two); + break; } } else if (schema.type === 'object') { @@ -128,6 +262,7 @@ const DiffField = ({ } else { parts = diffWords(one?.title || one, two?.title || two); } + return ( @@ -140,14 +275,12 @@ const DiffField = ({ - (part.removed && - `${part.value}`) || - (!part.added && `${part.value}`) || - '', - ), + map(parts, (part) => { + let combined = (part.value || []).reduce((acc, value) => { + return acc + formatDiffPart(part, value, 'left'); + }, ''); + return combined; + }), '', ), }} @@ -157,14 +290,12 @@ const DiffField = ({ - (part.added && - `${part.value}`) || - (!part.removed && `${part.value}`) || - '', - ), + map(parts, (part) => { + let combined = (part.value || []).reduce((acc, value) => { + return acc + formatDiffPart(part, value, 'right'); + }, ''); + return combined; + }), '', ), }} @@ -178,15 +309,12 @@ const DiffField = ({ - (part.removed && - `${part.value}`) || - (part.added && - `${part.value}`) || - (!part.added && `${part.value}`), - ), + map(parts, (part) => { + let combined = (part.value || []).reduce((acc, value) => { + return acc + formatDiffPart(part, value, 'unified'); + }, ''); + return combined; + }), '', ), }} diff --git a/packages/volto/src/components/manage/Diff/__snapshots__/Diff.test.jsx.snap b/packages/volto/src/components/manage/Diff/__snapshots__/Diff.test.jsx.snap index 8512803d3c..8f3ea9474a 100644 --- a/packages/volto/src/components/manage/Diff/__snapshots__/Diff.test.jsx.snap +++ b/packages/volto/src/components/manage/Diff/__snapshots__/Diff.test.jsx.snap @@ -232,16 +232,17 @@ exports[`Diff renders a diff component 1`] = ` class="top aligned six wide column" > - - My - + My old - - title + + + title @@ -249,21 +250,17 @@ exports[`Diff renders a diff component 1`] = ` class="top aligned six wide column" > - - My - + My new - - title - + - , + title, diff --git a/packages/volto/src/components/manage/Diff/__snapshots__/DiffField.test.jsx.snap b/packages/volto/src/components/manage/Diff/__snapshots__/DiffField.test.jsx.snap index 2bbf810620..0871f46671 100644 --- a/packages/volto/src/components/manage/Diff/__snapshots__/DiffField.test.jsx.snap +++ b/packages/volto/src/components/manage/Diff/__snapshots__/DiffField.test.jsx.snap @@ -103,16 +103,14 @@ exports[`DiffField renders a datetime field 1`] = ` - Tuesday + Tuesday, - Monday - - - , April 25, + Monday, + April 25, @@ -123,9 +121,7 @@ exports[`DiffField renders a datetime field 1`] = ` > 2016 - - at 2:14 PM - + at 2:14 PM @@ -155,34 +151,26 @@ exports[`DiffField renders a diff field in split mode 1`] = ` class="top aligned six wide column" > - - My - + My old - - string - + string
    - - My - + My new - - string - + string
    @@ -212,9 +200,7 @@ exports[`DiffField renders a diff field in unified mode 1`] = ` class="top aligned sixteen wide column" > - - My - + My @@ -225,9 +211,7 @@ exports[`DiffField renders a diff field in unified mode 1`] = ` > new - - string - + string @@ -257,9 +241,7 @@ exports[`DiffField renders a richtext field 1`] = ` class="top aligned sixteen wide column" > - - My - + My @@ -270,9 +252,7 @@ exports[`DiffField renders a richtext field 1`] = ` > new - - string - + string @@ -302,9 +282,7 @@ exports[`DiffField renders a textarea field 1`] = ` class="top aligned sixteen wide column" > - - My - + My @@ -315,9 +293,7 @@ exports[`DiffField renders a textarea field 1`] = ` > new - - string - + string @@ -347,9 +323,7 @@ exports[`DiffField renders an array field 1`] = ` class="top aligned sixteen wide column" > - - one, - + one, @@ -389,9 +363,7 @@ exports[`DiffField renders an array of objects field 1`] = ` class="top aligned sixteen wide column" > - - one, - + one, From 1b8328cc0029f092525f6791d5458665b5008a4b Mon Sep 17 00:00:00 2001 From: Steve Piercy Date: Thu, 3 Oct 2024 01:12:15 -0700 Subject: [PATCH 17/24] Add a pull request template as a checklist before submitting a PR (#6365) --- .github/PULL_REQUEST_TEMPLATE.md | 15 +++++++++++++++ packages/volto/news/6365.internal | 1 + 2 files changed, 16 insertions(+) create mode 100644 .github/PULL_REQUEST_TEMPLATE.md create mode 100644 packages/volto/news/6365.internal diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 0000000000..24ab7677d5 --- /dev/null +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,15 @@ +- [ ] I signed and returned the [Plone Contributor Agreement](https://plone.org/foundation/contributors-agreement), and received and accepted an invitation to join a team in the Plone GitHub organization. +- [ ] I verified there aren't other open [pull requests](https://github.com/plone/volto/pulls) for the same change. +- [ ] I followed the guidelines in [Contributing to Volto](https://6.docs.plone.org/volto/contributing/index.html). +- [ ] I succesfully ran [code linting checks](https://6.docs.plone.org/volto/contributing/linting.html) on my changes locally. +- [ ] I succesfully ran [unit tests](https://6.docs.plone.org/volto/contributing/testing.html) on my changes locally. +- [ ] I succesfully ran [acceptance tests](https://6.docs.plone.org/volto/contributing/acceptance-tests.html) on my changes locally. +- [ ] If needed, I added new tests for my changes. +- [ ] If needed, I added [documentation](https://6.docs.plone.org/volto/contributing/documentation.html#narrative-documentation) for my changes, either in the Storybook or narrative documentation. +- [ ] I included a [change log entry](https://6.docs.plone.org/contributing/index.html#contributing-change-log-label) in my commits. + +----- + +If your pull request closes an open issue, include the exact text below, immediately followed by the issue number. When your pull request gets merged, then that issue will close automatically. + +Closes # diff --git a/packages/volto/news/6365.internal b/packages/volto/news/6365.internal new file mode 100644 index 0000000000..bffba0bc34 --- /dev/null +++ b/packages/volto/news/6365.internal @@ -0,0 +1 @@ +Added a pull request template as a checklist before submitting a PR. @stevepiercy From b0bb51e4ac109cd9889ae0cf04dd152a4de1eb6b Mon Sep 17 00:00:00 2001 From: Nilesh Date: Thu, 3 Oct 2024 15:34:41 +0530 Subject: [PATCH 18/24] fix(SideBarPopup): close sidebarPopup on ESC keypress (#6315) --- packages/volto/news/6315.bugfix | 1 + .../src/components/manage/Sidebar/SidebarPopup.jsx | 10 +++++++++- 2 files changed, 10 insertions(+), 1 deletion(-) create mode 100644 packages/volto/news/6315.bugfix diff --git a/packages/volto/news/6315.bugfix b/packages/volto/news/6315.bugfix new file mode 100644 index 0000000000..969e260532 --- /dev/null +++ b/packages/volto/news/6315.bugfix @@ -0,0 +1 @@ +fix: SidebarPopup close on ESC keypress @nileshgulia1 \ No newline at end of file diff --git a/packages/volto/src/components/manage/Sidebar/SidebarPopup.jsx b/packages/volto/src/components/manage/Sidebar/SidebarPopup.jsx index f963dfb1ff..5c08377b7e 100644 --- a/packages/volto/src/components/manage/Sidebar/SidebarPopup.jsx +++ b/packages/volto/src/components/manage/Sidebar/SidebarPopup.jsx @@ -16,6 +16,13 @@ const SidebarPopup = (props) => { onClose(); }; + const handleEscapeKey = (e) => { + if (open && e.key === 'Escape') { + onClose(); + e.stopPropagation(); + } + }; + const [isClient, setIsClient] = React.useState(false); React.useEffect(() => { setIsClient(true); @@ -23,11 +30,12 @@ const SidebarPopup = (props) => { React.useEffect(() => { document.addEventListener('mousedown', handleClickOutside, false); + document.addEventListener('keyup', handleEscapeKey, false); return () => { document.removeEventListener('mousedown', handleClickOutside, false); + document.removeEventListener('keyup', handleEscapeKey, false); }; }); - return ( <> {overlay && ( From 4d927863a91763f0d3ff0ea847fc60ca5448ad5c Mon Sep 17 00:00:00 2001 From: Victor Fernandez de Alba Date: Thu, 3 Oct 2024 12:15:51 +0200 Subject: [PATCH 19/24] Release @plone/client 1.0.0-alpha.18 --- packages/client/CHANGELOG.md | 6 ++++++ packages/client/news/6349.bugfix | 1 - packages/client/package.json | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) delete mode 100644 packages/client/news/6349.bugfix diff --git a/packages/client/CHANGELOG.md b/packages/client/CHANGELOG.md index 37a57ad33b..236130348d 100644 --- a/packages/client/CHANGELOG.md +++ b/packages/client/CHANGELOG.md @@ -8,6 +8,12 @@ +## 1.0.0-alpha.18 (2024-10-03) + +### Bugfix + +- Fixed client copy mutation, cleanup up move mutation for consistency @pnicolli [#6349](https://github.com/plone/volto/pull/6349) + ## 1.0.0-alpha.17 (2024-09-13) ### Documentation diff --git a/packages/client/news/6349.bugfix b/packages/client/news/6349.bugfix deleted file mode 100644 index 47f5249e59..0000000000 --- a/packages/client/news/6349.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fixed client copy mutation, cleanup up move mutation for consistency @pnicolli diff --git a/packages/client/package.json b/packages/client/package.json index 2b9104397b..e166cb3004 100644 --- a/packages/client/package.json +++ b/packages/client/package.json @@ -8,7 +8,7 @@ } ], "license": "MIT", - "version": "1.0.0-alpha.17", + "version": "1.0.0-alpha.18", "repository": { "type": "git", "url": "git@github.com:plone/volto.git" From d1acac9e60300ff8a89a0f50791906ed6be90a44 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADctor=20Fern=C3=A1ndez=20de=20Alba?= Date: Thu, 3 Oct 2024 12:21:09 +0200 Subject: [PATCH 20/24] Update to RAC 1.4.0, add new components in there + update storybook (#6364) --- packages/components/news/6364.feature | 1 + packages/components/package.json | 8 +- .../ColorArea/ColorArea.stories.tsx | 26 + .../src/components/ColorArea/ColorArea.tsx | 14 + .../ColorField/ColorField.stories.tsx | 26 + .../src/components/ColorField/ColorField.tsx | 32 + .../ColorPicker/ColorPicker.stories.tsx | 27 + .../components/ColorPicker/ColorPicker.tsx | 46 + .../ColorSlider/ColorSlider.stories.tsx | 28 + .../components/ColorSlider/ColorSlider.tsx | 30 + .../ColorSwatch/ColorSwatch.stories.tsx | 26 + .../components/ColorSwatch/ColorSwatch.tsx | 17 + .../ColorSwatchPicker.stories.tsx | 31 + .../ColorSwatchPicker/ColorSwatchPicker.tsx | 26 + .../ColorWheel/ColorWheel.stories.tsx | 26 + .../src/components/ColorWheel/ColorWheel.tsx | 21 + .../Disclosure/Disclosure.stories.tsx | 39 + .../src/components/Disclosure/Disclosure.tsx | 15 + .../DisclosureGroup.stories.tsx | 57 + .../DisclosureGroup/DisclosureGroup.tsx | 15 + .../components/src/styles/basic/ColorArea.css | 34 + .../src/styles/basic/ColorField.css | 49 + .../src/styles/basic/ColorPicker.css | 43 + .../src/styles/basic/ColorSlider.css | 80 + .../src/styles/basic/ColorSwatch.css | 8 + .../src/styles/basic/ColorSwatchPicker.css | 42 + .../src/styles/basic/ColorWheel.css | 28 + .../src/styles/basic/Disclosure.css | 33 + .../src/styles/basic/DisclosureGroup.css | 3 + packages/components/src/styles/basic/main.css | 8 + pnpm-lock.yaml | 3587 +++++++++-------- 31 files changed, 2692 insertions(+), 1734 deletions(-) create mode 100644 packages/components/news/6364.feature create mode 100644 packages/components/src/components/ColorArea/ColorArea.stories.tsx create mode 100644 packages/components/src/components/ColorArea/ColorArea.tsx create mode 100644 packages/components/src/components/ColorField/ColorField.stories.tsx create mode 100644 packages/components/src/components/ColorField/ColorField.tsx create mode 100644 packages/components/src/components/ColorPicker/ColorPicker.stories.tsx create mode 100644 packages/components/src/components/ColorPicker/ColorPicker.tsx create mode 100644 packages/components/src/components/ColorSlider/ColorSlider.stories.tsx create mode 100644 packages/components/src/components/ColorSlider/ColorSlider.tsx create mode 100644 packages/components/src/components/ColorSwatch/ColorSwatch.stories.tsx create mode 100644 packages/components/src/components/ColorSwatch/ColorSwatch.tsx create mode 100644 packages/components/src/components/ColorSwatchPicker/ColorSwatchPicker.stories.tsx create mode 100644 packages/components/src/components/ColorSwatchPicker/ColorSwatchPicker.tsx create mode 100644 packages/components/src/components/ColorWheel/ColorWheel.stories.tsx create mode 100644 packages/components/src/components/ColorWheel/ColorWheel.tsx create mode 100644 packages/components/src/components/Disclosure/Disclosure.stories.tsx create mode 100644 packages/components/src/components/Disclosure/Disclosure.tsx create mode 100644 packages/components/src/components/DisclosureGroup/DisclosureGroup.stories.tsx create mode 100644 packages/components/src/components/DisclosureGroup/DisclosureGroup.tsx create mode 100644 packages/components/src/styles/basic/ColorArea.css create mode 100644 packages/components/src/styles/basic/ColorField.css create mode 100644 packages/components/src/styles/basic/ColorPicker.css create mode 100644 packages/components/src/styles/basic/ColorSlider.css create mode 100644 packages/components/src/styles/basic/ColorSwatch.css create mode 100644 packages/components/src/styles/basic/ColorSwatchPicker.css create mode 100644 packages/components/src/styles/basic/ColorWheel.css create mode 100644 packages/components/src/styles/basic/Disclosure.css create mode 100644 packages/components/src/styles/basic/DisclosureGroup.css diff --git a/packages/components/news/6364.feature b/packages/components/news/6364.feature new file mode 100644 index 0000000000..9bb95dcbd6 --- /dev/null +++ b/packages/components/news/6364.feature @@ -0,0 +1 @@ +Update RAC to 1.4.0 - Added new `Disclosure` component and new Color widgets @sneridagh diff --git a/packages/components/package.json b/packages/components/package.json index 34e00c6126..88719f32e6 100644 --- a/packages/components/package.json +++ b/packages/components/package.json @@ -116,11 +116,11 @@ "vitest-axe": "^0.1.0" }, "dependencies": { - "@react-aria/utils": "^3.22.0", - "@react-spectrum/utils": "^3.11.1", + "@react-aria/utils": "^3.25.3", + "@react-spectrum/utils": "^3.11.11", "@storybook/test": "^8.0.4", - "clsx": "^2.0.0", - "react-aria-components": "^1.2.0" + "clsx": "^2.1.1", + "react-aria-components": "^1.4.0" }, "peerDependencies": { "react": "^16.8.0 || ^17.0.0 || ^18.0.0", diff --git a/packages/components/src/components/ColorArea/ColorArea.stories.tsx b/packages/components/src/components/ColorArea/ColorArea.stories.tsx new file mode 100644 index 0000000000..b4ac8b95ea --- /dev/null +++ b/packages/components/src/components/ColorArea/ColorArea.stories.tsx @@ -0,0 +1,26 @@ +import * as React from 'react'; +import { ColorArea } from './ColorArea'; + +import type { Meta, StoryObj } from '@storybook/react'; + +import '../../styles/basic/ColorArea.css'; + +const meta = { + title: 'Widgets/ColorArea', + component: ColorArea, + parameters: { + layout: 'centered', + }, + tags: ['autodocs'], +} satisfies Meta; + +export default meta; +type Story = StoryObj; + +export const Default: Story = { + render: (args: any) => , +}; + +Default.args = { + defaultValue: 'hsl(30, 100%, 50%)', +}; diff --git a/packages/components/src/components/ColorArea/ColorArea.tsx b/packages/components/src/components/ColorArea/ColorArea.tsx new file mode 100644 index 0000000000..8464766f70 --- /dev/null +++ b/packages/components/src/components/ColorArea/ColorArea.tsx @@ -0,0 +1,14 @@ +import * as React from 'react'; +import { + ColorArea as RACColorArea, + ColorAreaProps, + ColorThumb, +} from 'react-aria-components'; + +export function ColorArea(props: ColorAreaProps) { + return ( + + + + ); +} diff --git a/packages/components/src/components/ColorField/ColorField.stories.tsx b/packages/components/src/components/ColorField/ColorField.stories.tsx new file mode 100644 index 0000000000..6621ebec66 --- /dev/null +++ b/packages/components/src/components/ColorField/ColorField.stories.tsx @@ -0,0 +1,26 @@ +import * as React from 'react'; +import { ColorField } from './ColorField'; + +import type { Meta, StoryObj } from '@storybook/react'; + +import '../../styles/basic/ColorField.css'; + +const meta = { + title: 'Widgets/ColorField', + component: ColorField, + parameters: { + layout: 'centered', + }, + tags: ['autodocs'], +} satisfies Meta; + +export default meta; +type Story = StoryObj; + +export const Default: Story = { + render: (args: any) => , +}; + +Default.args = { + label: 'Color', +}; diff --git a/packages/components/src/components/ColorField/ColorField.tsx b/packages/components/src/components/ColorField/ColorField.tsx new file mode 100644 index 0000000000..fff7c0f912 --- /dev/null +++ b/packages/components/src/components/ColorField/ColorField.tsx @@ -0,0 +1,32 @@ +import * as React from 'react'; +import { + ColorField as RACColorField, + ColorFieldProps as RACColorFieldProps, + FieldError, + Input, + Label, + Text, + ValidationResult, +} from 'react-aria-components'; + +export interface ColorFieldProps extends RACColorFieldProps { + label?: string; + description?: string; + errorMessage?: string | ((validation: ValidationResult) => string); +} + +export function ColorField({ + label, + description, + errorMessage, + ...props +}: ColorFieldProps) { + return ( + + {label && } + + {description && {description}} + {errorMessage} + + ); +} diff --git a/packages/components/src/components/ColorPicker/ColorPicker.stories.tsx b/packages/components/src/components/ColorPicker/ColorPicker.stories.tsx new file mode 100644 index 0000000000..1f94cc3a6c --- /dev/null +++ b/packages/components/src/components/ColorPicker/ColorPicker.stories.tsx @@ -0,0 +1,27 @@ +import * as React from 'react'; +import { ColorPicker } from './ColorPicker'; + +import type { Meta, StoryObj } from '@storybook/react'; + +import '../../styles/basic/ColorPicker.css'; + +const meta = { + title: 'Widgets/ColorPicker', + component: ColorPicker, + parameters: { + layout: 'centered', + }, + tags: ['autodocs'], +} satisfies Meta; + +export default meta; +type Story = StoryObj; + +export const Default: Story = { + render: (args: any) => , +}; + +Default.args = { + label: 'Fill color', + defaultValue: '#f00', +}; diff --git a/packages/components/src/components/ColorPicker/ColorPicker.tsx b/packages/components/src/components/ColorPicker/ColorPicker.tsx new file mode 100644 index 0000000000..b5256e24c2 --- /dev/null +++ b/packages/components/src/components/ColorPicker/ColorPicker.tsx @@ -0,0 +1,46 @@ +import * as React from 'react'; +import { + Button, + ColorPicker as RACColorPicker, + ColorPickerProps as RACColorPickerProps, + Dialog, + DialogTrigger, + Popover, +} from 'react-aria-components'; +import { ColorSwatch } from '../ColorSwatch/ColorSwatch'; +import { ColorSlider } from '../ColorSlider/ColorSlider'; +import { ColorArea } from '../ColorArea/ColorArea'; +import { ColorField } from '../ColorField/ColorField'; + +export interface ColorPickerProps extends RACColorPickerProps { + label?: string; + children?: React.ReactNode; +} + +export function ColorPicker({ label, children, ...props }: ColorPickerProps) { + return ( + + + + + + {children || ( + <> + + + + + )} + + + + + ); +} diff --git a/packages/components/src/components/ColorSlider/ColorSlider.stories.tsx b/packages/components/src/components/ColorSlider/ColorSlider.stories.tsx new file mode 100644 index 0000000000..a0a363489e --- /dev/null +++ b/packages/components/src/components/ColorSlider/ColorSlider.stories.tsx @@ -0,0 +1,28 @@ +import * as React from 'react'; +import { ColorSlider } from './ColorSlider'; + +import type { Meta, StoryObj } from '@storybook/react'; + +import '../../styles/basic/ColorSlider.css'; + +const meta = { + title: 'Widgets/ColorSlider', + component: ColorSlider, + parameters: { + layout: 'centered', + }, + tags: ['autodocs'], +} satisfies Meta; + +export default meta; +type Story = StoryObj; + +export const Default: Story = { + render: (args: any) => , +}; + +Default.args = { + label: 'Red Opacity', + defaultValue: '#f00', + channel: 'alpha', +}; diff --git a/packages/components/src/components/ColorSlider/ColorSlider.tsx b/packages/components/src/components/ColorSlider/ColorSlider.tsx new file mode 100644 index 0000000000..55b81b9351 --- /dev/null +++ b/packages/components/src/components/ColorSlider/ColorSlider.tsx @@ -0,0 +1,30 @@ +import * as React from 'react'; +import { + ColorSlider as RACColorSlider, + ColorSliderProps as RACColorSliderProps, + ColorThumb, + Label, + SliderOutput, + SliderTrack, +} from 'react-aria-components'; + +export interface ColorSliderProps extends RACColorSliderProps { + label?: string; +} + +export function ColorSlider({ label, ...props }: ColorSliderProps) { + return ( + + + + ({ + background: `${defaultStyle.background}, + repeating-conic-gradient(#CCC 0% 25%, white 0% 50%) 50% / 16px 16px`, + })} + > + + + + ); +} diff --git a/packages/components/src/components/ColorSwatch/ColorSwatch.stories.tsx b/packages/components/src/components/ColorSwatch/ColorSwatch.stories.tsx new file mode 100644 index 0000000000..0168fa94f5 --- /dev/null +++ b/packages/components/src/components/ColorSwatch/ColorSwatch.stories.tsx @@ -0,0 +1,26 @@ +import * as React from 'react'; +import { ColorSwatch } from './ColorSwatch'; + +import type { Meta, StoryObj } from '@storybook/react'; + +import '../../styles/basic/ColorSwatch.css'; + +const meta = { + title: 'Widgets/ColorSwatch', + component: ColorSwatch, + parameters: { + layout: 'centered', + }, + tags: ['autodocs'], +} satisfies Meta; + +export default meta; +type Story = StoryObj; + +export const Default: Story = { + render: (args: any) => , +}; + +Default.args = { + color: '#f00a', +}; diff --git a/packages/components/src/components/ColorSwatch/ColorSwatch.tsx b/packages/components/src/components/ColorSwatch/ColorSwatch.tsx new file mode 100644 index 0000000000..b80a13c31c --- /dev/null +++ b/packages/components/src/components/ColorSwatch/ColorSwatch.tsx @@ -0,0 +1,17 @@ +import * as React from 'react'; +import { + ColorSwatch as RACColorSwatch, + ColorSwatchProps, +} from 'react-aria-components'; + +export function ColorSwatch(props: ColorSwatchProps) { + return ( + ({ + background: `linear-gradient(${color}, ${color}), + repeating-conic-gradient(#CCC 0% 25%, white 0% 50%) 50% / 16px 16px`, + })} + /> + ); +} diff --git a/packages/components/src/components/ColorSwatchPicker/ColorSwatchPicker.stories.tsx b/packages/components/src/components/ColorSwatchPicker/ColorSwatchPicker.stories.tsx new file mode 100644 index 0000000000..cba4b2a099 --- /dev/null +++ b/packages/components/src/components/ColorSwatchPicker/ColorSwatchPicker.stories.tsx @@ -0,0 +1,31 @@ +import * as React from 'react'; +import { ColorSwatchPicker, ColorSwatchPickerItem } from './ColorSwatchPicker'; + +import type { Meta, StoryObj } from '@storybook/react'; + +import '../../styles/basic/ColorSwatchPicker.css'; + +const meta = { + title: 'Widgets/ColorSwatchPicker', + component: ColorSwatchPicker, + parameters: { + layout: 'centered', + }, + tags: ['autodocs'], +} satisfies Meta; + +export default meta; +type Story = StoryObj; + +export const Default: Story = { + render: (args: any) => ( + + + + + + + + + ), +}; diff --git a/packages/components/src/components/ColorSwatchPicker/ColorSwatchPicker.tsx b/packages/components/src/components/ColorSwatchPicker/ColorSwatchPicker.tsx new file mode 100644 index 0000000000..9ecdc9dac1 --- /dev/null +++ b/packages/components/src/components/ColorSwatchPicker/ColorSwatchPicker.tsx @@ -0,0 +1,26 @@ +import * as React from 'react'; +import { + ColorSwatchPicker as AriaColorSwatchPicker, + ColorSwatchPickerItem as AriaColorSwatchPickerItem, + ColorSwatchPickerItemProps, + ColorSwatchPickerProps, +} from 'react-aria-components'; + +import { ColorSwatch } from '../ColorSwatch/ColorSwatch'; + +export function ColorSwatchPicker({ + children, + ...props +}: ColorSwatchPickerProps) { + return {children}; +} + +export { ColorSwatchPicker as MyColorSwatchPicker }; + +export function ColorSwatchPickerItem(props: ColorSwatchPickerItemProps) { + return ( + + + + ); +} diff --git a/packages/components/src/components/ColorWheel/ColorWheel.stories.tsx b/packages/components/src/components/ColorWheel/ColorWheel.stories.tsx new file mode 100644 index 0000000000..5d5d4278c9 --- /dev/null +++ b/packages/components/src/components/ColorWheel/ColorWheel.stories.tsx @@ -0,0 +1,26 @@ +import * as React from 'react'; +import { ColorWheel } from './ColorWheel'; + +import type { Meta, StoryObj } from '@storybook/react'; + +import '../../styles/basic/ColorWheel.css'; + +const meta = { + title: 'Widgets/ColorWheel', + component: ColorWheel, + parameters: { + layout: 'centered', + }, + tags: ['autodocs'], +} satisfies Meta; + +export default meta; +type Story = StoryObj; + +export const Default: Story = { + render: (args: any) => , +}; + +Default.args = { + defaultValue: 'hsl(30, 100%, 50%)', +}; diff --git a/packages/components/src/components/ColorWheel/ColorWheel.tsx b/packages/components/src/components/ColorWheel/ColorWheel.tsx new file mode 100644 index 0000000000..a9dff1f543 --- /dev/null +++ b/packages/components/src/components/ColorWheel/ColorWheel.tsx @@ -0,0 +1,21 @@ +import * as React from 'react'; +import { + ColorThumb, + ColorWheel as AriaColorWheel, + ColorWheelProps as AriaColorWheelProps, + ColorWheelTrack, +} from 'react-aria-components'; + +export interface ColorWheelProps + extends Omit {} + +export function ColorWheel(props: ColorWheelProps) { + return ( + + + + + ); +} + +export { ColorWheel as MyColorWheel }; diff --git a/packages/components/src/components/Disclosure/Disclosure.stories.tsx b/packages/components/src/components/Disclosure/Disclosure.stories.tsx new file mode 100644 index 0000000000..6f41082267 --- /dev/null +++ b/packages/components/src/components/Disclosure/Disclosure.stories.tsx @@ -0,0 +1,39 @@ +import * as React from 'react'; +import { Disclosure } from './Disclosure'; +import { + Button, + UNSTABLE_DisclosurePanel as DisclosurePanel, +} from 'react-aria-components'; + +import type { Meta, StoryObj } from '@storybook/react'; + +import '../../styles/basic/Disclosure.css'; + +const meta = { + component: Disclosure, + parameters: { + layout: 'centered', + }, + tags: ['autodocs'], +} satisfies Meta; + +export default meta; +type Story = StoryObj; + +export const Default: Story = { + render: (args: any) => ( + +

    + +

    + +

    Details about system requirements here.

    +
    +
    + ), +}; diff --git a/packages/components/src/components/Disclosure/Disclosure.tsx b/packages/components/src/components/Disclosure/Disclosure.tsx new file mode 100644 index 0000000000..8e062a8d61 --- /dev/null +++ b/packages/components/src/components/Disclosure/Disclosure.tsx @@ -0,0 +1,15 @@ +import * as React from 'react'; +import { + UNSTABLE_Disclosure as RACDisclosure, + DisclosureProps, +} from 'react-aria-components'; + +/** + * A Disclosure is used to show or hide content that is not visible by default. + * + * NOTE: This component is in alpha in RAC thus it's unstable and is subjects of change + * in the API, behavior, and appearance. + */ +export function Disclosure(props: DisclosureProps) { + return ; +} diff --git a/packages/components/src/components/DisclosureGroup/DisclosureGroup.stories.tsx b/packages/components/src/components/DisclosureGroup/DisclosureGroup.stories.tsx new file mode 100644 index 0000000000..1871ade147 --- /dev/null +++ b/packages/components/src/components/DisclosureGroup/DisclosureGroup.stories.tsx @@ -0,0 +1,57 @@ +import * as React from 'react'; +import { DisclosureGroup } from './DisclosureGroup'; +import { + Button, + UNSTABLE_Disclosure as Disclosure, + UNSTABLE_DisclosurePanel as DisclosurePanel, +} from 'react-aria-components'; + +import type { Meta, StoryObj } from '@storybook/react'; + +const meta = { + component: DisclosureGroup, + parameters: { + layout: 'centered', + }, + tags: ['autodocs'], +} satisfies Meta; + +export default meta; +type Story = StoryObj; + +export const Default: Story = { + render: (args: any) => ( + + +

    + +

    + +

    Personal information form here.

    +
    +
    + +

    + +

    + +

    Billing address form here.

    +
    +
    +
    + ), +}; + +Default.args = { + defaultExpandedKeys: ['personal'], +}; diff --git a/packages/components/src/components/DisclosureGroup/DisclosureGroup.tsx b/packages/components/src/components/DisclosureGroup/DisclosureGroup.tsx new file mode 100644 index 0000000000..4196e558c6 --- /dev/null +++ b/packages/components/src/components/DisclosureGroup/DisclosureGroup.tsx @@ -0,0 +1,15 @@ +import * as React from 'react'; +import { + UNSTABLE_DisclosureGroup as RACDisclosureGroup, + DisclosureGroupProps, +} from 'react-aria-components'; + +/** + * A DisclosureGroup is used to group Disclosures together to create an accordion. + * + * NOTE: This component is in alpha in RAC thus it's unstable and is subjects of change + * in the API, behavior, and appearance. + */ +export function DisclosureGroup(props: DisclosureGroupProps) { + return ; +} diff --git a/packages/components/src/styles/basic/ColorArea.css b/packages/components/src/styles/basic/ColorArea.css new file mode 100644 index 0000000000..a241aee10f --- /dev/null +++ b/packages/components/src/styles/basic/ColorArea.css @@ -0,0 +1,34 @@ +@import './ColorSlider.css'; + +.react-aria-ColorArea { + width: 192px; + height: 192px; + flex-shrink: 0; + border-radius: 4px; +} + +.react-aria-ColorThumb { + width: 20px; + height: 20px; + box-sizing: border-box; + border: 2px solid white; + border-radius: 50%; + box-shadow: + 0 0 0 1px black, + inset 0 0 0 1px black; + + &[data-focus-visible] { + width: 24px; + height: 24px; + } +} + +.react-aria-ColorArea { + &[data-disabled] { + background: gray !important; + + .react-aria-ColorThumb { + background: gray !important; + } + } +} diff --git a/packages/components/src/styles/basic/ColorField.css b/packages/components/src/styles/basic/ColorField.css new file mode 100644 index 0000000000..bcb29a5273 --- /dev/null +++ b/packages/components/src/styles/basic/ColorField.css @@ -0,0 +1,49 @@ +@import './Button.css'; +@import './Form.css'; +@import './theme.css'; + +.react-aria-ColorField { + display: flex; + flex-direction: column; + color: var(--text-color); + + .react-aria-Input { + width: 100%; + max-width: 12ch; + box-sizing: border-box; + padding: 0.286rem; + border: 1px solid var(--border-color); + border-radius: 6px; + margin: 0; + background: var(--field-background); + color: var(--field-text-color); + font-size: 1.143rem; + + &[data-focused] { + outline: 2px solid var(--focus-ring-color); + outline-offset: -1px; + } + } + + &[data-invalid] { + .react-aria-Input { + border-color: var(--color-invalid); + } + } + + .react-aria-FieldError { + color: var(--color-invalid); + font-size: 12px; + } + + [slot='description'] { + font-size: 12px; + } + + .react-aria-Input { + &[data-disabled] { + border-color: var(--border-color-disabled); + color: var(--text-color-disabled); + } + } +} diff --git a/packages/components/src/styles/basic/ColorPicker.css b/packages/components/src/styles/basic/ColorPicker.css new file mode 100644 index 0000000000..e8ccca99b8 --- /dev/null +++ b/packages/components/src/styles/basic/ColorPicker.css @@ -0,0 +1,43 @@ +@import './Button.css'; +@import './ColorArea.css'; +@import './ColorSlider.css'; +@import './ColorSwatch.css'; +@import './ColorSwatchPicker.css'; +@import './ColorField.css'; +@import './Popover.css'; +@import './Dialog.css'; +@import './ListBox.css'; +@import './Select.css'; +@import './theme.css'; + +.color-picker { + display: flex; + align-items: center; + padding: 0; + border: none; + border-radius: 4px; + appearance: none; + background: none; + color: var(--text-color); + font-size: 1rem; + gap: 8px; + outline: none; + vertical-align: middle; + + &[data-focus-visible] { + outline: 2px solid var(--focus-ring-color); + outline-offset: 2px; + } +} + +.color-picker-dialog { + display: flex; + overflow: auto; + min-width: 192px; + max-height: inherit; + box-sizing: border-box; + flex-direction: column; + padding: 15px; + gap: 8px; + outline: none; +} diff --git a/packages/components/src/styles/basic/ColorSlider.css b/packages/components/src/styles/basic/ColorSlider.css new file mode 100644 index 0000000000..63f3d432a1 --- /dev/null +++ b/packages/components/src/styles/basic/ColorSlider.css @@ -0,0 +1,80 @@ +.react-aria-ColorSlider { + display: grid; + max-width: 300px; + gap: 4px; + grid-template-areas: + 'label output' + 'track track'; + grid-template-columns: 1fr auto; + + .react-aria-Label { + grid-area: label; + } + + .react-aria-SliderOutput { + grid-area: output; + } + + .react-aria-SliderTrack { + border-radius: 4px; + grid-area: track; + } + + &[data-orientation='horizontal'] { + .react-aria-SliderTrack { + height: 28px; + } + + .react-aria-ColorThumb { + top: 50%; + } + } +} + +.react-aria-ColorThumb { + width: 20px; + height: 20px; + box-sizing: border-box; + border: 2px solid white; + border-radius: 50%; + box-shadow: + 0 0 0 1px black, + inset 0 0 0 1px black; + + &[data-focus-visible] { + width: 24px; + height: 24px; + } +} + +.react-aria-ColorSlider { + &[data-orientation='vertical'] { + display: block; + height: 150px; + + .react-aria-Label, + .react-aria-SliderOutput { + display: none; + } + + .react-aria-SliderTrack { + width: 28px; + height: 100%; + } + + .react-aria-ColorThumb { + left: 50%; + } + } + + &[data-disabled] { + .react-aria-SliderTrack { + background: gray !important; + } + + .react-aria-ColorThumb { + background: gray !important; + opacity: 0.5; + } + } +} diff --git a/packages/components/src/styles/basic/ColorSwatch.css b/packages/components/src/styles/basic/ColorSwatch.css new file mode 100644 index 0000000000..3713b3807b --- /dev/null +++ b/packages/components/src/styles/basic/ColorSwatch.css @@ -0,0 +1,8 @@ +@import './ColorSlider.css'; + +.react-aria-ColorSwatch { + width: 32px; + height: 32px; + border-radius: 4px; + box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1); +} diff --git a/packages/components/src/styles/basic/ColorSwatchPicker.css b/packages/components/src/styles/basic/ColorSwatchPicker.css new file mode 100644 index 0000000000..657d836443 --- /dev/null +++ b/packages/components/src/styles/basic/ColorSwatchPicker.css @@ -0,0 +1,42 @@ +@import './ColorSwatch.css'; +@import './ColorField.css'; +@import './theme.css'; + +.react-aria-ColorSwatchPicker { + display: flex; + flex-wrap: wrap; + gap: 8px; +} + +.react-aria-ColorSwatchPickerItem { + position: relative; + width: fit-content; + border-radius: 4px; + forced-color-adjust: none; + outline: none; + + &[data-focus-visible] { + outline: 2px solid var(--focus-ring-color); + outline-offset: 2px; + } + + &[data-selected]::after { + position: absolute; + border: 2px solid black; + border-radius: inherit; + content: ''; + inset: 0; + outline: 2px solid white; + outline-offset: -4px; + } + + &[data-disabled] { + opacity: 0.2; + } +} + +.react-aria-ColorSwatchPicker { + &[data-layout='stack'] { + flex-direction: column; + } +} diff --git a/packages/components/src/styles/basic/ColorWheel.css b/packages/components/src/styles/basic/ColorWheel.css new file mode 100644 index 0000000000..429e59dc9c --- /dev/null +++ b/packages/components/src/styles/basic/ColorWheel.css @@ -0,0 +1,28 @@ +.react-aria-ColorThumb { + width: 20px; + height: 20px; + box-sizing: border-box; + border: 2px solid white; + border-radius: 50%; + box-shadow: + 0 0 0 1px black, + inset 0 0 0 1px black; + + &[data-focus-visible] { + width: 24px; + height: 24px; + } +} + +.react-aria-ColorWheel { + &[data-disabled] { + .react-aria-ColorWheelTrack { + background: gray !important; + } + + .react-aria-ColorThumb { + background: gray !important; + opacity: 0.5; + } + } +} diff --git a/packages/components/src/styles/basic/Disclosure.css b/packages/components/src/styles/basic/Disclosure.css new file mode 100644 index 0000000000..809a49816e --- /dev/null +++ b/packages/components/src/styles/basic/Disclosure.css @@ -0,0 +1,33 @@ +@import './theme.css'; +@import './Button.css'; + +.react-aria-Disclosure { + .react-aria-Button[slot='trigger'] { + display: flex; + align-items: center; + border: none; + background: none; + box-shadow: none; + font-size: 16px; + font-weight: bold; + gap: 8px; + + svg { + width: 12px; + height: 12px; + fill: none; + rotate: 0deg; + stroke: currentColor; + stroke-width: 3px; + transition: rotate 200ms; + } + } + + &[data-expanded] .react-aria-Button[slot='trigger'] svg { + rotate: 90deg; + } +} + +.react-aria-DisclosurePanel { + margin-left: 32px; +} diff --git a/packages/components/src/styles/basic/DisclosureGroup.css b/packages/components/src/styles/basic/DisclosureGroup.css new file mode 100644 index 0000000000..2c60061a9e --- /dev/null +++ b/packages/components/src/styles/basic/DisclosureGroup.css @@ -0,0 +1,3 @@ +@import './theme.css'; +@import './Button.css'; +@import './Disclosure.css'; diff --git a/packages/components/src/styles/basic/main.css b/packages/components/src/styles/basic/main.css index 60173bd34b..066feb263c 100644 --- a/packages/components/src/styles/basic/main.css +++ b/packages/components/src/styles/basic/main.css @@ -8,7 +8,15 @@ @import './Label.css'; @import './Checkbox.css'; @import './CheckboxGroup.css'; +@import './ColorArea.css'; +@import './ColorField.css'; +@import './ColorPicker.css'; +@import './ColorSlider.css'; +@import './ColorSwatch.css'; +@import './ColorSwatchPicker.css'; @import './ComboBox.css'; +@import './Disclosure.css'; +@import './DisclosureGroup.css'; @import './NumberField.css'; @import './RadioGroup.css'; @import './Switch.css'; diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 21d9875b8e..f457c1c44d 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -1163,23 +1163,23 @@ importers: packages/components: dependencies: '@react-aria/utils': - specifier: ^3.22.0 - version: 3.23.2(react@18.2.0) + specifier: ^3.25.3 + version: 3.25.3(react@18.2.0) '@react-spectrum/utils': - specifier: ^3.11.1 - version: 3.11.5(react@18.2.0) + specifier: ^3.11.11 + version: 3.11.11(react@18.2.0) '@storybook/test': specifier: ^8.0.4 version: 8.0.8(@jest/globals@29.7.0)(@types/jest@29.5.12)(vitest@1.5.0(@types/node@20.12.7)(jsdom@22.1.0)(less@3.11.1)(lightningcss@1.24.1)(sass@1.75.0)(terser@5.30.3)) clsx: - specifier: ^2.0.0 - version: 2.1.0 + specifier: ^2.1.1 + version: 2.1.1 react: specifier: ^16.8.0 || ^17.0.0 || ^18.0.0 version: 18.2.0 react-aria-components: - specifier: ^1.2.0 - version: 1.2.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + specifier: ^1.4.0 + version: 1.4.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 version: 18.2.0(react@18.2.0) @@ -4009,39 +4009,39 @@ packages: '@internationalized/date@3.5.2': resolution: {integrity: sha512-vo1yOMUt2hzp63IutEaTUxROdvQg1qlMRsbCvbay2AK2Gai7wIgCyK5weEX3nHkiLgo4qCXHijFNC/ILhlRpOQ==} - '@internationalized/date@3.5.3': - resolution: {integrity: sha512-X9bi8NAEHAjD8yzmPYT2pdJsbe+tYSEBAfowtlxJVJdZR3aK8Vg7ZUT1Fm5M47KLzp/M1p1VwAaeSma3RT7biw==} - '@internationalized/date@3.5.4': resolution: {integrity: sha512-qoVJVro+O0rBaw+8HPjUB1iH8Ihf8oziEnqMnvhJUSuVIrHOuZ6eNLHNvzXJKUvAtaDiqMnRlg8Z2mgh09BlUw==} + '@internationalized/date@3.5.6': + resolution: {integrity: sha512-jLxQjefH9VI5P9UQuqB6qNKnvFt1Ky1TPIzHGsIlCi7sZZoMR8SdYbBGRvM0y+Jtb+ez4ieBzmiAUcpmPYpyOw==} + '@internationalized/message@3.1.2': resolution: {integrity: sha512-MHAWsZWz8jf6jFPZqpTudcCM361YMtPIRu9CXkYmKjJ/0R3pQRScV5C0zS+Qi50O5UAm8ecKhkXx6mWDDcF6/g==} - '@internationalized/message@3.1.3': - resolution: {integrity: sha512-jba3kGxnh4hN4zoeJZuMft99Ly1zbmon4fyDz3VAmO39Kb5Aw+usGub7oU/sGoBIcVQ7REEwsvjIWtIO1nitbw==} - '@internationalized/message@3.1.4': resolution: {integrity: sha512-Dygi9hH1s7V9nha07pggCkvmRfDd3q2lWnMGvrJyrOwYMe1yj4D2T9BoH9I6MGR7xz0biQrtLPsqUkqXzIrBOw==} + '@internationalized/message@3.1.5': + resolution: {integrity: sha512-hjEpLKFlYA3m5apldLqzHqw531qqfOEq0HlTWdfyZmcloWiUbWsYXD6YTiUmQmOtarthzhdjCAwMVrB8a4E7uA==} + '@internationalized/number@3.5.1': resolution: {integrity: sha512-N0fPU/nz15SwR9IbfJ5xaS9Ss/O5h1sVXMZf43vc9mxEG48ovglvvzBjF53aHlq20uoR6c+88CrIXipU/LSzwg==} - '@internationalized/number@3.5.2': - resolution: {integrity: sha512-4FGHTi0rOEX1giSkt5MH4/te0eHBq3cvAYsfLlpguV6pzJAReXymiYpE5wPCqKqjkUO3PIsyvk+tBiIV1pZtbA==} - '@internationalized/number@3.5.3': resolution: {integrity: sha512-rd1wA3ebzlp0Mehj5YTuTI50AQEx80gWFyHcQu+u91/5NgdwBecO8BH6ipPfE+lmQ9d63vpB3H9SHoIUiupllw==} + '@internationalized/number@3.5.4': + resolution: {integrity: sha512-h9huwWjNqYyE2FXZZewWqmCdkw1HeFds5q4Siuoms3hUQC5iPJK3aBmkFZoDSLN4UD0Bl8G22L/NdHpeOr+/7A==} + '@internationalized/string@3.2.1': resolution: {integrity: sha512-vWQOvRIauvFMzOO+h7QrdsJmtN1AXAFVcaLWP9AseRN2o7iHceZ6bIXhBD4teZl8i91A3gxKnWBlGgjCwU6MFQ==} - '@internationalized/string@3.2.2': - resolution: {integrity: sha512-5xy2JfSQyGqL9FDIdJXVjoKSBBDJR4lvwoCbqKhc5hQZ/qSLU/OlONCmrJPcSH0zxh88lXJMzbOAk8gJ48JBFw==} - '@internationalized/string@3.2.3': resolution: {integrity: sha512-9kpfLoA8HegiWTeCbR2livhdVeKobCnVv8tlJ6M2jF+4tcMqDo94ezwlnrUANBWPgd8U7OXIHCk2Ov2qhk4KXw==} + '@internationalized/string@3.2.4': + resolution: {integrity: sha512-BcyadXPn89Ae190QGZGDUZPqxLj/xsP4U1Br1oSy8yfIjmpJ8cJtGYleaodqW/EmzFjwELtwDojLkf3FhV6SjA==} + '@isaacs/cliui@8.0.2': resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==} engines: {node: '>=12'} @@ -5105,13 +5105,14 @@ packages: '@types/react': optional: true - '@react-aria/breadcrumbs@3.5.11': - resolution: {integrity: sha512-bQz4g2tKvcWxeqPGj9O0RQf++Ka8f2o/pJMJB+QQ27DVQWhxpQpND//oFku2aFYkxHB/fyD9qVoiqpQR25bidw==} + '@react-aria/accordion@3.0.0-alpha.34': + resolution: {integrity: sha512-3Qoj3StyQbdTYvAXVIbAIk11WtRyo3cdgn6OgwPAvN6c1r8R7X/J9DHTykZRrlF6TOGcdE0H0yrmPrlG92ObmA==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-aria/breadcrumbs@3.5.12': - resolution: {integrity: sha512-UHTVe6kA73xbE1J6LLVjUooEQvTJ4vWPRyOxu4t3dZ/4dMttvHxpKylvj4z606wioSGVhCDEKC4Vn+RtQLypeA==} + '@react-aria/breadcrumbs@3.5.11': + resolution: {integrity: sha512-bQz4g2tKvcWxeqPGj9O0RQf++Ka8f2o/pJMJB+QQ27DVQWhxpQpND//oFku2aFYkxHB/fyD9qVoiqpQR25bidw==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 @@ -5120,13 +5121,18 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-aria/button@3.9.3': - resolution: {integrity: sha512-ZXo2VGTxfbaTEnfeIlm5ym4vYpGAy8sGrad8Scv+EyDAJWLMKokqctfaN6YSWbqUApC3FN63IvMqASflbmnYig==} + '@react-aria/breadcrumbs@3.5.17': + resolution: {integrity: sha512-LJQ+u3TbPmtAWZ3/qC6VfLCzXiwVoB6GmI+HJ2pbjs6H9L8MoiLHsA4mgcz+P0rvx7SCs0Rhvy4JurV6R/R4xw==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + + '@react-aria/button@3.10.0': + resolution: {integrity: sha512-mhbn2tEsr991sjG6YMH6oN3ELWb4YvZZ8mnZHMNLa3l8T00PV0ClvQBsUndo6uSvuTHhpFzmMMkJFhYYUwCKlw==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-aria/button@3.9.4': - resolution: {integrity: sha512-YOt4XWtC+0m7LwLQnU1Gl0ENETLEhtM8SyDbwsFR/fIQYX0T0H9D6jMlnKxXDjKgRvHzom9NZ8caTfsEPbgW/g==} + '@react-aria/button@3.9.3': + resolution: {integrity: sha512-ZXo2VGTxfbaTEnfeIlm5ym4vYpGAy8sGrad8Scv+EyDAJWLMKokqctfaN6YSWbqUApC3FN63IvMqASflbmnYig==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 @@ -5135,14 +5141,14 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-aria/calendar@3.5.6': - resolution: {integrity: sha512-PA0Ur5WcODMn7t2gCUvq61YktkB+WlSZjzDr5kcY3sdl53ZjiyqCa2hYgrb6R0J859LVJXAp+5Qaproz8g1oLA==} + '@react-aria/calendar@3.5.12': + resolution: {integrity: sha512-C8VRjRwEVPaGoCtjOlC0lb3mVSz4ajbal8jfvcbp7LOqCcmOVTUbiM7EPTy60EfZRanFNSp2D1ZstEZDU+cqsg==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-aria/calendar@3.5.7': - resolution: {integrity: sha512-HbOxoslIpak1/RKHQ/p4A5roI+RpM6geK68s72D+9n3NMPDw/X95yesc6JD1Sti2KsGl9GHI6Myf9xcNjuAMnw==} + '@react-aria/calendar@3.5.6': + resolution: {integrity: sha512-PA0Ur5WcODMn7t2gCUvq61YktkB+WlSZjzDr5kcY3sdl53ZjiyqCa2hYgrb6R0J859LVJXAp+5Qaproz8g1oLA==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 @@ -5158,21 +5164,27 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-aria/checkbox@3.14.2': - resolution: {integrity: sha512-PeXTEfURrZZBN80YJUyVPAvkT7gwpPtwBgtKxg1ars+D1iDV4Yp48yh5pKaNSf0/rlLNOgKJSCpcFzY7V3ipFw==} - peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-aria/checkbox@3.14.3': resolution: {integrity: sha512-EtBJL6iu0gvrw3A4R7UeVLR6diaVk/mh4kFBc7c8hQjpEJweRr4hmJT3hrNg3MBcTWLxFiMEXPGgWEwXDBygtA==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-aria/color@3.0.0-beta.32': - resolution: {integrity: sha512-FKy5jb+31SIaLrjQR7oMq23CCBgoPdlYN06mwb16EdN024D1ZkQ2ULUvI84vBJxCul8cMOmoIK1DBOnhDslbrQ==} + '@react-aria/checkbox@3.14.7': + resolution: {integrity: sha512-aqVxXcr/8P7pQ7R34DlJX2SdBvWtHof9lLTVBY/9tgMplcKIoVBdlVUYPtqWxT3tGan+rruPQHbzTx8zJRFJyg==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + + '@react-aria/collections@3.0.0-alpha.5': + resolution: {integrity: sha512-8m8yZe1c5PYCylEN4lcG3ZL/1nyrON95nVsoknC8shY1uKP01oJd7w+f6hvVza0tJRQuVe4zW3gO4FVjv33a5g==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + + '@react-aria/color@3.0.0': + resolution: {integrity: sha512-IwHI4e2fUHUOZHRrL2MsxGZFp/RCR2cLjm39gT41jVSuH4zjxueUf96NDm6c7FD0mB5vfk0jo+KJMnShL1a2rg==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 '@react-aria/color@3.0.0-beta.33': resolution: {integrity: sha512-nhqnIHYm5p6MbuF3cC6lnqzG7MjwBsBd0DtpO+ByFYO+zxpMMbeC5R+1SFxvapR4uqmAzTotbtiUCGsG+SUaIg==} @@ -5180,14 +5192,14 @@ packages: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-aria/combobox@3.8.4': - resolution: {integrity: sha512-HyTWIo2B/0xq0Of+sDEZCfJyf4BvCvDYIWG4UhjqL1kHIHIGQyyr+SldbVUjXVYnk8pP1eGB3ttiREujjjALPQ==} + '@react-aria/combobox@3.10.4': + resolution: {integrity: sha512-jzLyRwpwH5SCfQl5giLSwLaw9EKlRiMG39kDZLRB4MQ1MN4sIdIP2TXBbdYcSLtYjduJm2JfRvs2ezI+QI+umA==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-aria/combobox@3.9.0': - resolution: {integrity: sha512-JRiCoARx95Lu1hENmf4ndHzpJrMeP/2bV96jZbMn4StFUzhACKnUw0rNFpFdONfeoD/MkWO7tsvhxaPGLhpgtQ==} + '@react-aria/combobox@3.8.4': + resolution: {integrity: sha512-HyTWIo2B/0xq0Of+sDEZCfJyf4BvCvDYIWG4UhjqL1kHIHIGQyyr+SldbVUjXVYnk8pP1eGB3ttiREujjjALPQ==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 @@ -5198,18 +5210,18 @@ packages: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-aria/datepicker@3.10.0': - resolution: {integrity: sha512-YiIxY+mRxc2rPN8j9ypdiGspRHSIrsK6TShBgKEk5UoG5EBKEJfNe/FfoXDR2d5xcpWLAHVuRjERi9WkiJNDBw==} - peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-aria/datepicker@3.10.1': resolution: {integrity: sha512-4HZL593nrNMa1GjBmWEN/OTvNS6d3/16G1YJWlqiUlv11ADulSbqBIjMmkgwrJVFcjrgqtXFy+yyrTA/oq94Zw==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + '@react-aria/datepicker@3.11.3': + resolution: {integrity: sha512-HwGxDctFry5ew3Cu7gWpUVodaCg//V6NCihSRjLvnW/TWG+UFLzTafxTqqm8eRbicT3DJlXCLOUPk8Ek0txW6A==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + '@react-aria/datepicker@3.9.3': resolution: {integrity: sha512-1AjCAizd88ACKjVNhFazX4HZZFwWi2rsSlGCTm66Nx6wm5N/Cpbm466dpYEFyQUsKSOG4CC65G1zfYoMPe48MQ==} peerDependencies: @@ -5222,26 +5234,26 @@ packages: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-aria/dialog@3.5.13': - resolution: {integrity: sha512-GUwY7sQtPMtO6LFHyoIGFMEv8tEBrNCrSNwEKilFLxvNUCo/1sY3N+7L2TcoeyDkcRWBJ9Uz9iR0iJ6EsCBWng==} - peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-aria/dialog@3.5.14': resolution: {integrity: sha512-oqDCjQ8hxe3GStf48XWBf2CliEnxlR9GgSYPHJPUc69WBj68D9rVcCW3kogJnLAnwIyf3FnzbX4wSjvUa88sAQ==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-aria/dnd@3.5.3': - resolution: {integrity: sha512-0gi6sRnr97fSQnGy+CMt+99/+vVqr+qv2T9Ts8X9TAzxHNokz5QfSL88QSlTU36EnAVLxPY18iZQWCExSjKpEQ==} + '@react-aria/dialog@3.5.18': + resolution: {integrity: sha512-j0x0OwDZKyW2GqBZl2Dw/pHl0uSCzhHOg5jNeulkZC8xQa8COuksQf5NFzPmgRPnzqpbgvSzCSs41ymS8spmFg==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-aria/dnd@3.6.0': - resolution: {integrity: sha512-uIM54sUr4NpSdvxWozNKGqSNSTe9ir/sO+QFGtGAF5dbjMX7FN/7sVVrtmB8UHKC+fwfs+Ml3kjJgHbm10/Qmg==} + '@react-aria/disclosure@3.0.0-alpha.0': + resolution: {integrity: sha512-/tleriRORdkRJf2JXjiRfhLfXA5WY0nPT3DoodZJgD5Fj/aCjrWXarVGUQuEk9vsH5pwinQiQB5So+cA+xF+UQ==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + + '@react-aria/dnd@3.5.3': + resolution: {integrity: sha512-0gi6sRnr97fSQnGy+CMt+99/+vVqr+qv2T9Ts8X9TAzxHNokz5QfSL88QSlTU36EnAVLxPY18iZQWCExSjKpEQ==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 @@ -5252,13 +5264,14 @@ packages: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-aria/focus@3.16.2': - resolution: {integrity: sha512-Rqo9ummmgotESfypzFjI3uh58yMpL+E+lJBbQuXkBM0u0cU2YYzu0uOrFrq3zcHk997udZvq1pGK/R+2xk9B7g==} + '@react-aria/dnd@3.7.3': + resolution: {integrity: sha512-SF7v1AzpXr4CSf98pSzjcSBCaezpP6rsSnSJTz0j2jrYfdQhX0MPA2lyxS+kgU1AEzkK19THQeHuj8hxQc0bVw==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-aria/focus@3.17.0': - resolution: {integrity: sha512-aRzBw1WTUkcIV3xFrqPA6aB8ZVt3XyGpTaSHAypU0Pgoy2wRq9YeJYpbunsKj9CJmskuffvTqXwAjTcaQish1Q==} + '@react-aria/focus@3.16.2': + resolution: {integrity: sha512-Rqo9ummmgotESfypzFjI3uh58yMpL+E+lJBbQuXkBM0u0cU2YYzu0uOrFrq3zcHk997udZvq1pGK/R+2xk9B7g==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 @@ -5267,13 +5280,13 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-aria/form@3.0.3': - resolution: {integrity: sha512-5Q2BHE4TTPDzGY2npCzpRRYshwWUb3SMUA/Cbz7QfEtBk+NYuVaq3KjvqLqgUUdyKtqLZ9Far0kIAexloOC4jw==} + '@react-aria/focus@3.18.3': + resolution: {integrity: sha512-WKUElg+5zS0D3xlVn8MntNnkzJql2J6MuzAMP8Sv5WTgFDse/XGR842dsxPTIyKKdrWVCRegCuwa4m3n/GzgJw==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-aria/form@3.0.4': - resolution: {integrity: sha512-wWfW9Hv+OWIUbJ0QYzJ4EO5Yt7xZD1i+XNZG9pKGBiREi7dYBo7Y7lbqlWc3pJASSE+6aP9HzhK18dMPtGluVA==} + '@react-aria/form@3.0.3': + resolution: {integrity: sha512-5Q2BHE4TTPDzGY2npCzpRRYshwWUb3SMUA/Cbz7QfEtBk+NYuVaq3KjvqLqgUUdyKtqLZ9Far0kIAexloOC4jw==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 @@ -5282,14 +5295,19 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-aria/grid@3.8.8': - resolution: {integrity: sha512-7Bzbya4tO0oIgqexwRb8D6ZdC0GASYq9f/pnkrqocgvG9e1SCld4zOioKbYQDvAK/NnbCgXmmdqFAcLM/iazaA==} + '@react-aria/form@3.0.9': + resolution: {integrity: sha512-9M6IfC5t47G19c8roHWnkKd275BrECTzyTsc4rzf5OepJfHfG4evST6x+4gGOFYi8soC9XoQdJl4TRh/mft+gw==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + + '@react-aria/grid@3.10.4': + resolution: {integrity: sha512-3AjJ0hwRhOCIHThIZrGWrjAuKDpaZuBkODW3dvgLqtsNm3tL46DI6U9O3vfp8lNbrWMsXJgjRXwvXvdv0/gwCA==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-aria/grid@3.9.0': - resolution: {integrity: sha512-jNg7haMptmeTKR7/ZomIjWZMLB6jWalBkl5in2JdU9Hc4pY5EKqD/7PSprr9SjOzCr5O+4MSiRDvw+Tu7xHevQ==} + '@react-aria/grid@3.8.8': + resolution: {integrity: sha512-7Bzbya4tO0oIgqexwRb8D6ZdC0GASYq9f/pnkrqocgvG9e1SCld4zOioKbYQDvAK/NnbCgXmmdqFAcLM/iazaA==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 @@ -5306,25 +5324,20 @@ packages: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-aria/gridlist@3.8.0': - resolution: {integrity: sha512-2iPBtpYZdTVij6XcqFsRsjzItjgg7FhFRPUEgD62mCyYd6NJIDkCxLuL97hkZ5BbXNxsr2jgVEns5Z4UzW//IQ==} - peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-aria/gridlist@3.8.1': resolution: {integrity: sha512-vVPkkA+Ct0NDcpnNm/tnYaBumg0fP9pXxsPLqL1rxvsTyj1PaIpFTZ4corabPTbTDExZwUSTS3LG1n+o1OvBtQ==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-aria/i18n@3.10.2': - resolution: {integrity: sha512-Z1ormoIvMOI4mEdcFLYsoJy9w/EzBdBmgfLP+S/Ah+1xwQOXpgwZxiKOhYHpWa0lf6hkKJL34N9MHJvCJ5Crvw==} + '@react-aria/gridlist@3.9.4': + resolution: {integrity: sha512-gGzS4ToSynn2KBycf9UCsWIJIbVl4RjoCjPF4NnukwzHmrXwbtZnlF0xsORQ5QxfqHH9UehTAHWFvOOHJSZZ2w==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-aria/i18n@3.11.0': - resolution: {integrity: sha512-dnopopsYKy2cd2dB2LdnmdJ58evKKcNCtiscWl624XFSbq2laDrYIQ4umrMhBxaKD7nDQkqydVBe6HoQKPzvJw==} + '@react-aria/i18n@3.10.2': + resolution: {integrity: sha512-Z1ormoIvMOI4mEdcFLYsoJy9w/EzBdBmgfLP+S/Ah+1xwQOXpgwZxiKOhYHpWa0lf6hkKJL34N9MHJvCJ5Crvw==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 @@ -5333,13 +5346,13 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-aria/interactions@3.21.1': - resolution: {integrity: sha512-AlHf5SOzsShkHfV8GLLk3v9lEmYqYHURKcXWue0JdYbmquMRkUsf/+Tjl1+zHVAQ8lKqRnPYbTmc4AcZbqxltw==} + '@react-aria/i18n@3.12.3': + resolution: {integrity: sha512-0Tp/4JwnCVNKDfuknPF+/xf3/woOc8gUjTU2nCjO3mCVb4FU7KFtjxQ2rrx+6hpIVG6g+N9qfMjRa/ggVH0CJg==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-aria/interactions@3.21.2': - resolution: {integrity: sha512-Ju706DtoEmI/2vsfu9DCEIjDqsRBVLm/wmt2fr0xKbBca7PtmK8daajxFWz+eTq+EJakvYfLr7gWgLau9HyWXg==} + '@react-aria/interactions@3.21.1': + resolution: {integrity: sha512-AlHf5SOzsShkHfV8GLLk3v9lEmYqYHURKcXWue0JdYbmquMRkUsf/+Tjl1+zHVAQ8lKqRnPYbTmc4AcZbqxltw==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 @@ -5348,13 +5361,18 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-aria/label@3.7.6': - resolution: {integrity: sha512-ap9iFS+6RUOqeW/F2JoNpERqMn1PvVIo3tTMrJ1TY1tIwyJOxdCBRgx9yjnPBnr+Ywguep+fkPNNi/m74+tXVQ==} + '@react-aria/interactions@3.22.3': + resolution: {integrity: sha512-RRUb/aG+P0IKTIWikY/SylB6bIbLZeztnZY2vbe7RAG5MgVaCgn5HQ45SI15GlTmhsFG8CnF6slJsUFJiNHpbQ==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + + '@react-aria/label@3.7.12': + resolution: {integrity: sha512-u9xT90lAlgb7xiv+p0md9QwCHz65XL7tjS5e29e88Rs3ptkv3aQubTqxVOUTEwzbNUT4A1QqTjUm1yfHewIRUw==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-aria/label@3.7.7': - resolution: {integrity: sha512-0MDIu4SbagwsYzkprcCzi1Z0V/t2K/5Dd30eSTL2zanXMa+/85MVGSQjXI0vPrXMOXSNqp0R/aMxcqcgJ59yRA==} + '@react-aria/label@3.7.6': + resolution: {integrity: sha512-ap9iFS+6RUOqeW/F2JoNpERqMn1PvVIo3tTMrJ1TY1tIwyJOxdCBRgx9yjnPBnr+Ywguep+fkPNNi/m74+tXVQ==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 @@ -5368,24 +5386,18 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-aria/link@3.7.0': - resolution: {integrity: sha512-gkF7KpDR+ApcMY5HS3xVKHrxRcwSP9TRPoySWEMBE4GPWvEK1Bk/On9EM1vRzeEibCZ5L6gKuLEEKLVSGbBMWg==} - peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-aria/link@3.7.1': resolution: {integrity: sha512-a4IaV50P3fXc7DQvEIPYkJJv26JknFbRzFT5MJOMgtzuhyJoQdILEUK6XHYjcSSNCA7uLgzpojArVk5Hz3lCpw==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-aria/listbox@3.11.5': - resolution: {integrity: sha512-y3a3zQYjT+JKgugCMMKS7K9sRoCoP1Z6Fiiyfd77OHXWzh9RlnvWGsseljynmbxLzSuPwFtCYkU1Jz4QwsPUIg==} + '@react-aria/link@3.7.5': + resolution: {integrity: sha512-j0F1BIdNoE7Tl+0KzzjbrmYuxt4aWAmDZDHvJKiYg71Jb1BAPz71eE1O1ybMoO04+OG/6HrRZTragfSQLAJ58A==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-aria/listbox@3.12.0': - resolution: {integrity: sha512-Cy+UcfXU4MrOBMBnaB+kqG8bajeS3T1ZN8L7PXSTpmFS9jShFMhYkNz5gXpI+0SS4dgbHtkq/YDFJvu+bxFvdg==} + '@react-aria/listbox@3.11.5': + resolution: {integrity: sha512-y3a3zQYjT+JKgugCMMKS7K9sRoCoP1Z6Fiiyfd77OHXWzh9RlnvWGsseljynmbxLzSuPwFtCYkU1Jz4QwsPUIg==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 @@ -5396,40 +5408,41 @@ packages: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + '@react-aria/listbox@3.13.4': + resolution: {integrity: sha512-2aG4jzlB+srYBeM9ap/BNZe0E04yMjY2dPGXcigkaSJt6/yYAHCygXuouf2MzvBfkdV4QWyHIIgWZmAXXl6reg==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + '@react-aria/live-announcer@3.3.2': resolution: {integrity: sha512-aOyPcsfyY9tLCBhuUaYCruwcd1IrYLc47Ou+J7wMzjeN9v4lsaEfiN12WFl8pDqOwfy6/7It2wmlm5hOuZY8wQ==} - '@react-aria/live-announcer@3.3.3': - resolution: {integrity: sha512-sMaBzzIgDPBDCeZ/UFbuXR/UnXikcE7t4OJ4cESzmUq6r6LvxzmZnG9ocwpH75n7udmUbINycKD082fneryHlg==} - '@react-aria/live-announcer@3.3.4': resolution: {integrity: sha512-w8lxs35QrRrn6pBNzVfyGOeqWdxeVKf9U6bXIVwhq7rrTqRULL8jqy8RJIMfIs1s8G5FpwWYjyBOjl2g5Cu1iA==} + '@react-aria/live-announcer@3.4.0': + resolution: {integrity: sha512-VBxEdMq2SbtRbNTQNcDR2G6E3lEl5cJSBiHTTO8Ln1AL76LiazrylIXGgoktqzCfRQmyq0v8CHk1cNKDU9mvJg==} + '@react-aria/menu@3.13.1': resolution: {integrity: sha512-jF80YIcvD16Fgwm5pj7ViUE3Dj7z5iewQixLaFVdvpgfyE58SD/ZVU9/JkK5g/03DYM0sjpUKZGkdFxxw8eKnw==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-aria/menu@3.14.0': - resolution: {integrity: sha512-veZIpwKPKDIX1xpUzvGnxSVTmMfpRjPQUi1v+hMgqgdjBKedKI2LkprLABo9grggjqV9c2xT4XUXDk6xH3r8eA==} - peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-aria/menu@3.14.1': resolution: {integrity: sha512-BYliRb38uAzq05UOFcD5XkjA5foQoXRbcH3ZufBsc4kvh79BcP1PMW6KsXKGJ7dC/PJWUwCui6QL1kUg8PqMHA==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-aria/meter@3.4.11': - resolution: {integrity: sha512-P1G3Jdh0f/uieUDqvc3Ee4wzqBJa7H077BVSC3KPRqEp6YY7JimZGWjOwbFlO2PXhryXm/dI8EzUmh+4ZXjq/g==} + '@react-aria/menu@3.15.4': + resolution: {integrity: sha512-4wfq8Lb7AltgSzBHdtypiPOnsRm8hHv7PUuHhlq/VT9yAkEFk4Flc7vKVF6VSFqrnCfyCf66B5aeapjNInAONg==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-aria/meter@3.4.12': - resolution: {integrity: sha512-Ofgy3SHBjNLrc0mzuEKfn5ozOyrLudzcpw1cP5BFgtYs8BDdUx2/e33+2sm1+Pm3M/AhBrV/9LGyOE2JCtb8pg==} + '@react-aria/meter@3.4.11': + resolution: {integrity: sha512-P1G3Jdh0f/uieUDqvc3Ee4wzqBJa7H077BVSC3KPRqEp6YY7JimZGWjOwbFlO2PXhryXm/dI8EzUmh+4ZXjq/g==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 @@ -5438,14 +5451,13 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-aria/numberfield@3.11.1': - resolution: {integrity: sha512-JQ1Z+Ho5H+jeav7jt9A4vBsIQR/Dd2CFbObrULjGkqSrnWjARFZBv3gZwmfGCtplEPeAv9buYKHAqebPtJNUww==} + '@react-aria/meter@3.4.17': + resolution: {integrity: sha512-08wbQhfvVWzpWilhn/WD7cQ7TqafS/66umTk7+X6BW6TrS1//6loNNJV62IC3F7sskel4iEAtl2gW0WpW8zEdg==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-aria/numberfield@3.11.2': - resolution: {integrity: sha512-PPCRLhAnCz3/mbv/EXoG3mY8lUvaOnZdGZf0ufb1VS4K/wKtb8z3sCTDiu1hi7nFo1YYqynb8mKue4Es5jUwSw==} + '@react-aria/numberfield@3.11.1': + resolution: {integrity: sha512-JQ1Z+Ho5H+jeav7jt9A4vBsIQR/Dd2CFbObrULjGkqSrnWjARFZBv3gZwmfGCtplEPeAv9buYKHAqebPtJNUww==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 @@ -5456,14 +5468,14 @@ packages: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-aria/overlays@3.21.1': - resolution: {integrity: sha512-djEBDF+TbIIOHWWNpdm19+z8xtY8U+T+wKVQg/UZ6oWnclSqSWeGl70vu73Cg4HVBJ4hKf1SRx4Z/RN6VvH4Yw==} + '@react-aria/numberfield@3.11.7': + resolution: {integrity: sha512-9bqg4sKqc5XLppHzJFRhgtkoeMu0N6Zg0AuVSiE/3CxE5Ad+y8tKpFEx9zh4o5BItyOWy18w5ZXnKjJGjd7waQ==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-aria/overlays@3.22.0': - resolution: {integrity: sha512-M3Iayc2Hf9vJ4JJ8K/zh+Ct6aymDLmBbo686ChV3AtGOc254RyyzqnVSNuMs3j5QVBsDUKihHZQfl4E9RCwd+w==} + '@react-aria/overlays@3.21.1': + resolution: {integrity: sha512-djEBDF+TbIIOHWWNpdm19+z8xtY8U+T+wKVQg/UZ6oWnclSqSWeGl70vu73Cg4HVBJ4hKf1SRx4Z/RN6VvH4Yw==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 @@ -5474,13 +5486,14 @@ packages: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-aria/progress@3.4.11': - resolution: {integrity: sha512-RePHbS15/KYFiApYLdwazwvWKsB9q0Kn5DGCSb0hqCC+k2Eui8iVVOsegswiP+xqkk/TiUCIkBEw22W3Az4kTg==} + '@react-aria/overlays@3.23.3': + resolution: {integrity: sha512-vRW4DL466a27BBIP6dQqmmei4nX/nsur6DyF0Hmd46ygwOdvdA+5MwvXZUz9yUamB79UeS9BMQZuBVwhjoMwBQ==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-aria/progress@3.4.12': - resolution: {integrity: sha512-Wlz7VNFEzcLSawhZwWTKgJPM/IUKFiKJJG7KGcsT2biIlu6Yp60xj08hDZkCrLq3XsLLCRmweHlVfLFjG3AK9w==} + '@react-aria/progress@3.4.11': + resolution: {integrity: sha512-RePHbS15/KYFiApYLdwazwvWKsB9q0Kn5DGCSb0hqCC+k2Eui8iVVOsegswiP+xqkk/TiUCIkBEw22W3Az4kTg==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 @@ -5489,13 +5502,13 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-aria/radio@3.10.2': - resolution: {integrity: sha512-CTUTR+qt3BLjmyQvKHZuVm+1kyvT72ZptOty++sowKXgJApTLdjq8so1IpaLAr8JIfzqD5I4tovsYwIQOX8log==} + '@react-aria/progress@3.4.17': + resolution: {integrity: sha512-5+01WNibLoNS5KcfU5p6vg7Lhz17plqqzv/uITx28zzj3saaj0VLR7n57Ig2fXe8ZEQoUS89BS3sIEsIf96S1A==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-aria/radio@3.10.3': - resolution: {integrity: sha512-9noof5jyHE8iiFEUE7xCAHvCjG7EkZ/bZHh2+ZtrLlTFZmjpEbRbpZMw6QMKC8uzREPsmERBXjbd/6NyXH6mEQ==} + '@react-aria/radio@3.10.2': + resolution: {integrity: sha512-CTUTR+qt3BLjmyQvKHZuVm+1kyvT72ZptOty++sowKXgJApTLdjq8so1IpaLAr8JIfzqD5I4tovsYwIQOX8log==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 @@ -5504,13 +5517,13 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-aria/searchfield@3.7.3': - resolution: {integrity: sha512-mnYI969R7tU3yMRIGmY1+peq7tmEW0W3MB/J2ImK36Obz/91tTtspHHEeFtPlQDLIyvVPB0Ucam4LIxCKPJm/Q==} + '@react-aria/radio@3.10.8': + resolution: {integrity: sha512-/vKQhKqpoCB/VqHuc46OOU+31HFtg6svcYzHBbz0wN/DSVCygYeTfB/36kY7x2GWWkT0pCsB4OcHJ+/0G3EfkQ==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-aria/searchfield@3.7.4': - resolution: {integrity: sha512-92TR4M6/lBKkIp6l3Fl/Sqjjo++bDceIZEOKC62/cuYjLm9RRWl4tLlKIR1GN3IH1vJJStKj+TB/SjlWbPuwiA==} + '@react-aria/searchfield@3.7.3': + resolution: {integrity: sha512-mnYI969R7tU3yMRIGmY1+peq7tmEW0W3MB/J2ImK36Obz/91tTtspHHEeFtPlQDLIyvVPB0Ucam4LIxCKPJm/Q==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 @@ -5519,14 +5532,19 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-aria/select@3.14.3': - resolution: {integrity: sha512-9KCxI41FI+jTxEfUzRsMdJsZvjkCuuhL4UHig8MZXtXs0nsi7Ir3ezUDQ9m5MSG+ooBYM/CA9DyLDvo5Ioef+g==} + '@react-aria/searchfield@3.7.9': + resolution: {integrity: sha512-EHODG7HDFthwG5tx4fh+WP2hjNOp/rPAqdNScKBAN73nEf0F/qQpIwmdZF0EycCOzGSM5hhihjm0yMtTFYuzOQ==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-aria/select@3.14.4': - resolution: {integrity: sha512-MeFN8pw9liXwejkJS+hg0fDqGa3oW/mIwZYx8CrZZLbPnEcjZ9NI4ZXSxJaMOHEIQj/RXQ3Fpu0Sunu9FVpYXQ==} + '@react-aria/select@3.14.10': + resolution: {integrity: sha512-xHkAJqvfKgnH5mVYwZj3ME7/Q3wUzgUZDK/iVuXUs3cAYap8ybM2d/2zOGcqv1keZHBUzwp9QtaN//FYK13jIA==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + + '@react-aria/select@3.14.3': + resolution: {integrity: sha512-9KCxI41FI+jTxEfUzRsMdJsZvjkCuuhL4UHig8MZXtXs0nsi7Ir3ezUDQ9m5MSG+ooBYM/CA9DyLDvo5Ioef+g==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 @@ -5543,25 +5561,20 @@ packages: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-aria/selection@3.18.0': - resolution: {integrity: sha512-6ZvRuS9OHe56UVTb/qnsZ1TOxpZH9gRlX6eGG3Pt4LZK12wcvs13Uz2OvB2aYQHu0KPAua9ACnPh94xvXzQIlQ==} - peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-aria/selection@3.18.1': resolution: {integrity: sha512-GSqN2jX6lh7v+ldqhVjAXDcrWS3N4IsKXxO6L6Ygsye86Q9q9Mq9twWDWWu5IjHD6LoVZLUBCMO+ENGbOkyqeQ==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-aria/separator@3.3.11': - resolution: {integrity: sha512-UTla+3P2pELpP73WSfbwZgP1y1wODFBQbEOHnUxxO8ocyaUyQLJdvc07bBLLpPoyutlggRG0v9ACo0Rui7AjOg==} + '@react-aria/selection@3.20.0': + resolution: {integrity: sha512-h3giMcXo4SMZRL5HrqZvOLNTsdh5jCXwLUx0wpj/2EF0tcYQL6WDfn1iJ+rHARkUIs7X70fUV8iwlbUySZy1xg==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-aria/separator@3.3.12': - resolution: {integrity: sha512-KXeHynxek/DlAmjmry+M2KVRq+j75LqWFysX4x7t+OSbGR4t3bu5HRDd9bvDe9lsW8OKxlX3+hWTY7vsOL/HDA==} + '@react-aria/separator@3.3.11': + resolution: {integrity: sha512-UTla+3P2pELpP73WSfbwZgP1y1wODFBQbEOHnUxxO8ocyaUyQLJdvc07bBLLpPoyutlggRG0v9ACo0Rui7AjOg==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 @@ -5570,13 +5583,18 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-aria/slider@3.7.6': - resolution: {integrity: sha512-ZeZhyHzhk9gxGuThPKgX2K3RKsxPxsFig1iYoJvqP8485NtHYQIPht2YcpEKA9siLxGF0DR9VCfouVhSoW0AEA==} + '@react-aria/separator@3.4.3': + resolution: {integrity: sha512-L+eCmSGfRJ9jScHZqBkmOkp44LBARisDjRdYbGrLlsAEcOiHUXufnfpxz2rgkUGBdUgnI9hIk12q5kdy0UxGjg==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-aria/slider@3.7.7': - resolution: {integrity: sha512-7tOJyR4ZZoSMKcVomC6DZxyYuXQqQopi9mPW2J1fViD1R5iO8YVmoX/ALXnokzi8GPuMA0c38i2Cmnecm30ZXA==} + '@react-aria/slider@3.7.12': + resolution: {integrity: sha512-yZWBGxDHBL5Gjjdnz+igdO7VfYND9iZsSqynadZthWtfy1jA+qBR25I+Soc0D9gkr/2/JUJkFgkllYF1RzWMUQ==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + + '@react-aria/slider@3.7.6': + resolution: {integrity: sha512-ZeZhyHzhk9gxGuThPKgX2K3RKsxPxsFig1iYoJvqP8485NtHYQIPht2YcpEKA9siLxGF0DR9VCfouVhSoW0AEA==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 @@ -5591,59 +5609,53 @@ packages: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-aria/spinbutton@3.6.4': - resolution: {integrity: sha512-KMnwm3bEM83g8MILGt6irbvAG7DNphkq6O0ePt7L1m6QZhWK3hbI2RNlxYMF1OKIDTAOhnEjR6IdMCWt9TuXvQ==} - peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-aria/spinbutton@3.6.5': resolution: {integrity: sha512-0aACBarF/Xr/7ixzjVBTQ0NBwwwsoGkf5v6AVFVMTC0uYMXHTALvRs+ULHjHMa5e/cX/aPlEvaVT7jfSs+Xy9Q==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + '@react-aria/spinbutton@3.6.9': + resolution: {integrity: sha512-m+uVJdiIc2LrLVDGjU7p8P2O2gUvTN26GR+NgH4rl+tUSuAB0+T1rjls/C+oXEqQjCpQihEB9Bt4M+VHpzmyjA==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + '@react-aria/ssr@3.9.2': resolution: {integrity: sha512-0gKkgDYdnq1w+ey8KzG9l+H5Z821qh9vVjztk55rUg71vTk/Eaebeir+WtzcLLwTjw3m/asIjx8Y59y1lJZhBw==} engines: {node: '>= 12'} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-aria/ssr@3.9.3': - resolution: {integrity: sha512-5bUZ93dmvHFcmfUcEN7qzYe8yQQ8JY+nHN6m9/iSDCQ/QmCiE0kWXYwhurjw5ch6I8WokQzx66xKIMHBAa4NNA==} + '@react-aria/ssr@3.9.4': + resolution: {integrity: sha512-4jmAigVq409qcJvQyuorsmBR4+9r3+JEC60wC+Y0MZV0HCtTmm8D9guYXlJMdx0SSkgj0hHAyFm/HvPNFofCoQ==} engines: {node: '>= 12'} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-aria/ssr@3.9.4': - resolution: {integrity: sha512-4jmAigVq409qcJvQyuorsmBR4+9r3+JEC60wC+Y0MZV0HCtTmm8D9guYXlJMdx0SSkgj0hHAyFm/HvPNFofCoQ==} + '@react-aria/ssr@3.9.6': + resolution: {integrity: sha512-iLo82l82ilMiVGy342SELjshuWottlb5+VefO3jOQqQRNYnJBFpUSadswDPbRimSgJUZuFwIEYs6AabkP038fA==} engines: {node: '>= 12'} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 '@react-aria/switch@3.6.2': resolution: {integrity: sha512-X5m/omyhXK+V/vhJFsHuRs2zmt9Asa/RuzlldbXnWohLdeuHMPgQnV8C9hg3f+sRi3sh9UUZ64H61pCtRoZNwg==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-aria/switch@3.6.3': - resolution: {integrity: sha512-UBWbTEnnlTDT/dFOEpGKfX5ngPTIOVDLX1ltUhDHHk6SrgSnvYxTPTZAo+ujHIUSBFHOuxmvVYG7y54rk168mg==} - peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-aria/switch@3.6.4': resolution: {integrity: sha512-2nVqz4ZuJyof47IpGSt3oZRmp+EdS8wzeDYgf42WHQXrx4uEOk1mdLJ20+NnsYhj/2NHZsvXVrjBeKMjlMs+0w==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-aria/table@3.13.5': - resolution: {integrity: sha512-P2nHEDk2CCoEbMFKNCyBC9qvmv7F/IXARDt/7z/J4mKFgU2iNSK+/zw6yrb38q33Zlk8hDaqSYNxHlMrh+/1MQ==} + '@react-aria/switch@3.6.8': + resolution: {integrity: sha512-6Q0w7o+liB0ztKPL9UaRfX+hPPuy71AL3SuVCMK7RKfPqZwcmlwUDp2gr3j5fvs8gLev0r42XtEBqmGwkHTkEw==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-aria/table@3.14.0': - resolution: {integrity: sha512-IwBmzeIxeZjWlOlmMXVj/L64FbYm3qUh7v3VRgU98BVOdvgUyEKBDIwi6SuOV4FwbXKrCPZbXPU/k+KQU4tUoQ==} + '@react-aria/table@3.13.5': + resolution: {integrity: sha512-P2nHEDk2CCoEbMFKNCyBC9qvmv7F/IXARDt/7z/J4mKFgU2iNSK+/zw6yrb38q33Zlk8hDaqSYNxHlMrh+/1MQ==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 @@ -5654,14 +5666,14 @@ packages: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-aria/tabs@3.8.5': - resolution: {integrity: sha512-Jvt33/W+66n5oCxVwHAYarJ3Fit61vULiPcG7uTez0Mf11cq/C72wOrj+ZuNz6PTLTi2veBNQ7MauY72SnOjRg==} + '@react-aria/table@3.15.4': + resolution: {integrity: sha512-t4+vtUF63i6OrXmZ0AA/RmWyIt8cieUm7cSXhQMooAgUjkvVqTNkQQRsntVOb+UNI5KmiGSe4jB3H4GVXz2X9w==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-aria/tabs@3.9.0': - resolution: {integrity: sha512-E4IHOO9ejEXNeSnpeThu79pDpNySHHYz3txr9ngtH6tp097k/I1auSqbGJPy/kwLj6MCPEt86dNJDXE2X0AcFw==} + '@react-aria/tabs@3.8.5': + resolution: {integrity: sha512-Jvt33/W+66n5oCxVwHAYarJ3Fit61vULiPcG7uTez0Mf11cq/C72wOrj+ZuNz6PTLTi2veBNQ7MauY72SnOjRg==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 @@ -5672,14 +5684,14 @@ packages: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-aria/tag@3.3.3': - resolution: {integrity: sha512-tlJD9qj1XcsPIZD7DVJ6tWv8t7Z87/8qkbRDx7ugNqeHso9z0WqH9ZkSt17OFUWE2IQIk3V8D3iBSOtmhXcZGQ==} + '@react-aria/tabs@3.9.6': + resolution: {integrity: sha512-iPQ2Im+srnSB06xIdVNHZZDJnZmUR0IG0MZAp6FXmbkCeLAd9tZQHgSFYwswBfgAStNnyFQHP5aSBJOJMRCACg==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-aria/tag@3.4.0': - resolution: {integrity: sha512-kTrj0zEIyABgdASZMM7qxe0LAEePAxlg4OmfjZfkiAYYV32liY4EPER7ocE0OhOXo6TeOYYIvpEcr0z/4PjCpw==} + '@react-aria/tag@3.3.3': + resolution: {integrity: sha512-tlJD9qj1XcsPIZD7DVJ6tWv8t7Z87/8qkbRDx7ugNqeHso9z0WqH9ZkSt17OFUWE2IQIk3V8D3iBSOtmhXcZGQ==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 @@ -5690,13 +5702,14 @@ packages: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-aria/textfield@3.14.3': - resolution: {integrity: sha512-wPSjj/mTABspYQdahg+l5YMtEQ3m5iPCTtb5g6nR1U1rzJkvS4i5Pug6PUXeLeMz2H3ToflPWGlNOqBioAFaOQ==} + '@react-aria/tag@3.4.6': + resolution: {integrity: sha512-Uf1sPabwJx99diyXJTaVguiYozS49opjQxmK1PPbb87ipNN1YlSDVbP05IelVMbnbxXHudsRmzPOBmmblcj1GQ==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-aria/textfield@3.14.4': - resolution: {integrity: sha512-fdZChDyTRA4BPqbyDeD9gSw6rVeIAl7eG38osRwr0mzcKTiS/AyV3jiRwnHsBO9brU8RdViJFri4emVDuxSjag==} + '@react-aria/textfield@3.14.3': + resolution: {integrity: sha512-wPSjj/mTABspYQdahg+l5YMtEQ3m5iPCTtb5g6nR1U1rzJkvS4i5Pug6PUXeLeMz2H3ToflPWGlNOqBioAFaOQ==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 @@ -5705,13 +5718,13 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-aria/toggle@3.10.2': - resolution: {integrity: sha512-DgitscHWgI6IFgnvp2HcMpLGX/cAn+XX9kF5RJQbRQ9NqUgruU5cEEGSOLMrEJ6zXDa2xmOiQ+kINcyNhA+JLg==} + '@react-aria/textfield@3.14.9': + resolution: {integrity: sha512-LPwZhthDVLyvnzXWco4eyYCD2pFmQ4Vw9ha9tb3QkZUIP6j8E52y76j0c59Nq7XYus3IHatVe7yYQk7kbo8Zrg==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-aria/toggle@3.10.3': - resolution: {integrity: sha512-QtufHlWczMcTGmRxF7RCEgfMKpUPivyXJWZsQ1HSlknjRJPzf4uc3mSR62hq2sZ0VN9zXEpUsoixbEDB87TnGg==} + '@react-aria/toggle@3.10.2': + resolution: {integrity: sha512-DgitscHWgI6IFgnvp2HcMpLGX/cAn+XX9kF5RJQbRQ9NqUgruU5cEEGSOLMrEJ6zXDa2xmOiQ+kINcyNhA+JLg==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 @@ -5720,13 +5733,13 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-aria/toolbar@3.0.0-beta.3': - resolution: {integrity: sha512-tPIEPRsZI/6Mb0tAW/GBTt3wBk7dfJg/eUnTloY8NHialvDa+cMUQyUVzPyLWGpErhYeBeutBmw1e2seMjmu+A==} + '@react-aria/toggle@3.10.8': + resolution: {integrity: sha512-N6WTgE8ByMYY+ZygUUPGON2vW5NrxwU91H98+Nozl+Rq6ZYR2fD9i8oRtLtrYPxjU2HmaFwDyQdWvmMJZuDxig==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-aria/toolbar@3.0.0-beta.4': - resolution: {integrity: sha512-nerKAoHwHFTvf25DDtj8d/zlDaZHaTPWvL4gweTm3hu9ztisE58CoVUqzqH+VNiYjcrWr2PYgLbNLsuOzk0q1Q==} + '@react-aria/toolbar@3.0.0-beta.3': + resolution: {integrity: sha512-tPIEPRsZI/6Mb0tAW/GBTt3wBk7dfJg/eUnTloY8NHialvDa+cMUQyUVzPyLWGpErhYeBeutBmw1e2seMjmu+A==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 @@ -5735,13 +5748,13 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-aria/tooltip@3.7.2': - resolution: {integrity: sha512-6jXOSGPao3gPgUQWLbH2r/jxGMqIaIKrJgfwu9TQrh+UkwwiTYW20EpEDCYY2nRFlcoi7EYAiPDSEbHCwXS7Lg==} + '@react-aria/toolbar@3.0.0-beta.9': + resolution: {integrity: sha512-P80zgbPb0aIg22fHlgHRXXUSpNSAOnh1ljsLiSHAGdXPrC5nRijYwwKi7DNRsXqD+ljEJwF6ekZPo95dXXeYAA==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-aria/tooltip@3.7.3': - resolution: {integrity: sha512-uF2J/GRKTHSeEYMwvXTu7oK710nov/NRbY7db2Hh7yXluGmjJORXb5wxsy+lqHaWqPKBbkhmxBJYeJJpAqlZ5g==} + '@react-aria/tooltip@3.7.2': + resolution: {integrity: sha512-6jXOSGPao3gPgUQWLbH2r/jxGMqIaIKrJgfwu9TQrh+UkwwiTYW20EpEDCYY2nRFlcoi7EYAiPDSEbHCwXS7Lg==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 @@ -5750,11 +5763,10 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-aria/tree@3.0.0-alpha.0': - resolution: {integrity: sha512-/5dqWjSHEMlrvoJTsQuGHrtKRoxYco5OKrdIf5UQq5wHB/quUD6ZexEfn9/NzflyoHVz2zPIm7RU8J9WuZugNw==} + '@react-aria/tooltip@3.7.8': + resolution: {integrity: sha512-dlWfS3w8E6dw5Xoist4cVX2GQE5oh3VQr88dRyLto7BAPLFrp3I+8c9mZCVUobLS/f5QcQzLkqw750s4ENCyiw==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 '@react-aria/tree@3.0.0-alpha.1': resolution: {integrity: sha512-CucyeJ4VeAvWO5UJHt/l9JO65CVtsOVUctMOVNCQS77Isqp3olX9pvfD3LXt8fD5Ph2g0Q/b7siVpX5ieVB32g==} @@ -5762,13 +5774,14 @@ packages: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-aria/utils@3.23.2': - resolution: {integrity: sha512-yznR9jJ0GG+YJvTMZxijQwVp+ahP66DY0apZf7X+dllyN+ByEDW+yaL1ewYPIpugxVzH5P8jhnBXsIyHKN411g==} + '@react-aria/tree@3.0.0-beta.0': + resolution: {integrity: sha512-bF9sp7x+Ciy0N2KJwy8epmDoNblyVmeB4vR/KWLVIKMjANCpzTbvhWZUBpQxkpO0eupInU2uN+FMNr0WKMyd7Q==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-aria/utils@3.24.0': - resolution: {integrity: sha512-JAxkPhK5fCvFVNY2YG3TW3m1nTzwRcbz7iyTSkUzLFat4N4LZ7Kzh7NMHsgeE/oMOxd8zLY+XsUxMu/E/2GujA==} + '@react-aria/utils@3.23.2': + resolution: {integrity: sha512-yznR9jJ0GG+YJvTMZxijQwVp+ahP66DY0apZf7X+dllyN+ByEDW+yaL1ewYPIpugxVzH5P8jhnBXsIyHKN411g==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 @@ -5777,13 +5790,19 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-aria/visually-hidden@3.8.10': - resolution: {integrity: sha512-np8c4wxdbE7ZrMv/bnjwEfpX0/nkWy9sELEb0sK8n4+HJ+WycoXXrVxBUb9tXgL/GCx5ReeDQChjQWwajm/z3A==} + '@react-aria/utils@3.25.3': + resolution: {integrity: sha512-PR5H/2vaD8fSq0H/UB9inNbc8KDcVmW6fYAfSWkkn+OAdhTTMVKqXXrZuZBWyFfSD5Ze7VN6acr4hrOQm2bmrA==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-aria/visually-hidden@3.8.11': - resolution: {integrity: sha512-1JFruyAatoKnC18qrix8Q1gyUNlizWZvYdPADgB5btakMy0PEGTWPmFRK5gFsO+N0CZLCFTCip0dkUv6rrp31w==} + '@react-aria/virtualizer@4.0.3': + resolution: {integrity: sha512-neSf+EXtqmQiccHcp9CS2RbH3xA6FuZggLzGsM1NoqDdXIL7TLfc7lhaqi8VAZ03e1FCUSye08BCRk3DdpUiyA==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + + '@react-aria/visually-hidden@3.8.10': + resolution: {integrity: sha512-np8c4wxdbE7ZrMv/bnjwEfpX0/nkWy9sELEb0sK8n4+HJ+WycoXXrVxBUb9tXgL/GCx5ReeDQChjQWwajm/z3A==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 @@ -5792,18 +5811,18 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-spectrum/utils@3.11.5': - resolution: {integrity: sha512-V4heIuCBXhYOP3om5B0KNs2+RK6RKwAhHVjjJZ3RBeNqsF9UDxv+D/+dk3sAM2dsM1F8l38BNXQMMWXWW/BZYA==} + '@react-aria/visually-hidden@3.8.16': + resolution: {integrity: sha512-3zThVIzEprez4A/GajOut6/JQ4WCu2ROHGZ1xH1+2GFjBJQaTfPBIjg6UIwaT7sgHRQIik8QidogLqXHbp81yA==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-stately/calendar@3.4.4': - resolution: {integrity: sha512-f9ZOd096gGGD+3LmU1gkmfqytGyQtrgi+Qjn+70GbM2Jy65pwOR4I9YrobbmeAFov5Tff13mQEa0yqWvbcDLZQ==} + '@react-spectrum/utils@3.11.11': + resolution: {integrity: sha512-Fed8tePDyxfG7CND6H+3Os+5DKwdaOl8VXznTtGNFD44gjCI8/LDxk+9YRN8SQCHMnFkEFobCDme98wFWDdpCQ==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-stately/calendar@3.5.0': - resolution: {integrity: sha512-tINxgGAeZ9KsYNomuR50PljG2mN9C9FWQ8zyvATfFq44EFcjjdXCMNWV+qgIRKGKLwrSJhu3boPaiHVIpUxrXA==} + '@react-stately/calendar@3.4.4': + resolution: {integrity: sha512-f9ZOd096gGGD+3LmU1gkmfqytGyQtrgi+Qjn+70GbM2Jy65pwOR4I9YrobbmeAFov5Tff13mQEa0yqWvbcDLZQ==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 @@ -5812,13 +5831,13 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-stately/checkbox@3.6.3': - resolution: {integrity: sha512-hWp0GXVbMI4sS2NbBjWgOnHNrRqSV4jeftP8zc5JsIYRmrWBUZitxluB34QuVPzrBO29bGsF0GTArSiQZt6BWw==} + '@react-stately/calendar@3.5.5': + resolution: {integrity: sha512-HzaiDRhrmaYIly8hRsjjIrydLkldiw1Ws6T/130NLQOt+VPwRW/x0R+nil42mA9LZ6oV0XN0NpmG5tn7TaKRGw==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-stately/checkbox@3.6.4': - resolution: {integrity: sha512-gecaRtWeQNoJuSl3AtfV6z6LjaUV578Kzbag8d3pTPbGXl8komTtTj/26nIEPsmf/L8jZ3kCscDGxGTKr+7sqg==} + '@react-stately/checkbox@3.6.3': + resolution: {integrity: sha512-hWp0GXVbMI4sS2NbBjWgOnHNrRqSV4jeftP8zc5JsIYRmrWBUZitxluB34QuVPzrBO29bGsF0GTArSiQZt6BWw==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 @@ -5827,13 +5846,13 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-stately/collections@3.10.5': - resolution: {integrity: sha512-k8Q29Nnvb7iAia1QvTanZsrWP2aqVNBy/1SlE6kLL6vDqtKZC+Esd1SDLHRmIcYIp5aTdfwIGd0NuiRQA7a81Q==} + '@react-stately/checkbox@3.6.9': + resolution: {integrity: sha512-JrY3ecnK/SSJPxw+qhGhg3YV4e0CpUcPDrVwY3mSiAE932DPd19xr+qVCknJ34H7JYYt/q0l2z0lmgPnl96RTg==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-stately/collections@3.10.6': - resolution: {integrity: sha512-hb/yzxQnZaSRu43iR6ftkCJIqD4Qu5WUjl4ASBn2EGb9TmipA7bFnYVqSH4xFPCCTZ68Qxh95dOcxYBHlHeWZQ==} + '@react-stately/collections@3.10.5': + resolution: {integrity: sha512-k8Q29Nnvb7iAia1QvTanZsrWP2aqVNBy/1SlE6kLL6vDqtKZC+Esd1SDLHRmIcYIp5aTdfwIGd0NuiRQA7a81Q==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 @@ -5842,23 +5861,28 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-stately/color@3.6.0': - resolution: {integrity: sha512-sjQDjE1zBAnaJaqssP4Ep63Pd32xvLOwcfUmXAOua6s+8CKVlKQqr5BoBiBnqvGGmy7oTlEJd1dkfZA+bvh/zw==} + '@react-stately/collections@3.11.0': + resolution: {integrity: sha512-TiJeJjHMPSbbeAhmCXLJNSCk0fa5XnCvEuYw6HtQzDnYiq1AD7KAwkpjC5NfKkjqF3FLXs/v9RDm/P69q6rYzw==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 '@react-stately/color@3.6.1': resolution: {integrity: sha512-iW0nAhl3+fUBegHMw5EcAbFVDpgwHBrivfC85pVoTM3pyzp66hqNN6R6xWxW6ETyljS8UOer59+/w4GDVGdPig==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-stately/combobox@3.8.2': - resolution: {integrity: sha512-f+IHuFW848VoMbvTfSakn2WIh2urDxO355LrKxnisXPCkpQHpq3lvT2mJtKJwkPxjAy7xPjpV8ejgga2R6p53Q==} + '@react-stately/color@3.8.0': + resolution: {integrity: sha512-lBH91HEStZeayhE/FkDMt9WC0UISQiAn8DoD2hfpTGeeWscX/soyxZA7oVL7zBOG9RfDBMNzF+CybVROrWSKAQ==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-stately/combobox@3.8.3': - resolution: {integrity: sha512-lmwt2M39jHQUA9CWKhTc9MVoUBKuJM1Y+9GYPElON8P/guQL6G3bM1u8I4Hxf0zzGzAIW3ymV57bF9mcaA/nzA==} + '@react-stately/combobox@3.10.0': + resolution: {integrity: sha512-4W4HCCjjoddW/LZM3pSSeLoV7ncYXlaICKmqlBcbtLR5jY4U5Kx+pPpy3oJ1vCdjDHatIxZ0tVKEBP7vBQVeGQ==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + + '@react-stately/combobox@3.8.2': + resolution: {integrity: sha512-f+IHuFW848VoMbvTfSakn2WIh2urDxO355LrKxnisXPCkpQHpq3lvT2mJtKJwkPxjAy7xPjpV8ejgga2R6p53Q==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 @@ -5872,23 +5896,23 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-stately/data@3.11.3': - resolution: {integrity: sha512-iyg27s3uUquxvX5AXckAgOPszG6uX7fCOIg0D/GJXxdFxLv1gFSupIeIJhM+kXufPgpaLiugaQxoYlO5y65shA==} - peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-stately/data@3.11.4': resolution: {integrity: sha512-PbnUQxeE6AznSuEWYnRmrYQ9t5z1Asx98Jtrl96EeA6Iapt9kOjTN9ySqCxtPxMKleb1NIqG3+uHU3veIqmLsg==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-stately/datepicker@3.9.2': - resolution: {integrity: sha512-Z6FrK6Af7R5BizqHhJFCj3Hn32mg5iLSDdEgFQAuO043guOXUKFUAnbxfbQUjL6PGE6QwWMfQD7PPGebHn9Ifw==} + '@react-stately/data@3.11.7': + resolution: {integrity: sha512-2YJ+Lmca18f/h7jiZiU9j2IhBJl6BFO1BWlwvcCAH/eCWTdveX8gzsUdW++0szzpJaoCilTCYoi8z7QWyVH9jQ==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + + '@react-stately/datepicker@3.10.3': + resolution: {integrity: sha512-6PJW1QMwk6BQMktV9L6DA4f2rfAdLfbq3iTNLy4qxd5IfNPLMUZiJGGTj+cuqx0WcEl+q5irp+YhKBpbmhPZHg==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-stately/datepicker@3.9.3': - resolution: {integrity: sha512-NjZ8uqxmKf7mGLNWSZsvm22xX46k+yo0QkPspONuorHFTf8qqCnp4i+bBpEpaVCwX5KVSRdjxJOk7XhvJF8q4w==} + '@react-stately/datepicker@3.9.2': + resolution: {integrity: sha512-Z6FrK6Af7R5BizqHhJFCj3Hn32mg5iLSDdEgFQAuO043guOXUKFUAnbxfbQUjL6PGE6QwWMfQD7PPGebHn9Ifw==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 @@ -5897,13 +5921,13 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-stately/dnd@3.2.8': - resolution: {integrity: sha512-oSo+2Bzum3Q1/d+3FuaDmpVHqqBB004tycuQDDFtad3N1BKm+fNfmslRK1ioLkPLK4sm1130V+BZBY3JXLe80A==} + '@react-stately/disclosure@3.0.0-alpha.0': + resolution: {integrity: sha512-CbFUrEwhsP5+44PMHipn/Cd61VTvqyKmx1yeNDyvj/4bYhmxYLgQp/Ma+iEqe23JkXJh2JO/ws3l9FnebScCJQ==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-stately/dnd@3.3.0': - resolution: {integrity: sha512-bHH3B4wFqfATpyxpP5Wdv/5uQdci4WvStJgeExj7Yy2UwYSsZEnS6Ky0MhLLFdIyUpragjiSCzYcYwwli6oHUQ==} + '@react-stately/dnd@3.2.8': + resolution: {integrity: sha512-oSo+2Bzum3Q1/d+3FuaDmpVHqqBB004tycuQDDFtad3N1BKm+fNfmslRK1ioLkPLK4sm1130V+BZBY3JXLe80A==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 @@ -5912,37 +5936,37 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + '@react-stately/dnd@3.4.3': + resolution: {integrity: sha512-sUvhmMxFEw6P2MW7walx0ntakIihxdPxA06K9YZ3+ReaUvzQuRw5cFDaTTHrlegWRMYD0CyQaKlGIaTQihhvVA==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + '@react-stately/flags@3.0.1': resolution: {integrity: sha512-h5PcDMj54aipQNO18ig/IMI1kzPwcvSwVq5M6Ib6XE1WIkOH0dIuW2eADdAOhcGi3KXJtXVdD29zh0Eox1TKgQ==} - '@react-stately/flags@3.0.2': - resolution: {integrity: sha512-/KyVJMND2WdkgoHpt+m+ash7h5q9pq91DLgyizQWcbf2xphicH9D1HKAB8co3Cfvq6T/QqjQEP8aBkheiPyfEg==} - '@react-stately/flags@3.0.3': resolution: {integrity: sha512-/ha7XFA0RZTQsbzSPwu3KkbNMgbvuM0GuMTYLTBWpgBrovBNTM+QqI/PfZTdHg8PwCYF4H5Y8gjdSpdulCvJFw==} + '@react-stately/flags@3.0.4': + resolution: {integrity: sha512-RNJEkOALwKg+JeYsfNlfPc4GXm7hiBLX0yuHOkRapWEyDOfi0cinkV/TZG4goOZdQ5tBpHmemf2qqiHAxqHlzQ==} + '@react-stately/form@3.0.1': resolution: {integrity: sha512-T1Ul2Ou0uE/S4ECLcGKa0OfXjffdjEHfUFZAk7OZl0Mqq/F7dl5WpoLWJ4d4IyvZzGO6anFNenP+vODWbrF3NA==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-stately/form@3.0.2': - resolution: {integrity: sha512-MA4P9lHv770I3DJpJTQlkh5POVuklmeQuixwlbyKzlWT+KqFSOXvqaliszqU7gyDdVGAFksMa6E3mXbGbk1wuA==} - peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-stately/form@3.0.3': resolution: {integrity: sha512-92YYBvlHEWUGUpXgIaQ48J50jU9XrxfjYIN8BTvvhBHdD63oWgm8DzQnyT/NIAMzdLnhkg7vP+fjG8LjHeyIAg==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-stately/grid@3.8.5': - resolution: {integrity: sha512-KCzi0x0p1ZKK+OptonvJqMbn6Vlgo6GfOIlgcDd0dNYDP8TJ+3QFJAFre5mCr7Fubx7LcAOio4Rij0l/R8fkXQ==} + '@react-stately/form@3.0.6': + resolution: {integrity: sha512-KMsxm3/V0iCv/6ikt4JEjVM3LW2AgCzo7aNotMzRobtwIo0RwaUo7DQNY00rGgFQ3/IjzI6DcVo13D+AVE/zXg==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-stately/grid@3.8.6': - resolution: {integrity: sha512-XkxDfaIAWzbsb5pnL2IE4FqQbqegVzPnU+R2ZvDrJT7514I2usSMoJ2ZUUoy8DIYQomJHB5QKZeyQkGIelHMcg==} + '@react-stately/grid@3.8.5': + resolution: {integrity: sha512-KCzi0x0p1ZKK+OptonvJqMbn6Vlgo6GfOIlgcDd0dNYDP8TJ+3QFJAFre5mCr7Fubx7LcAOio4Rij0l/R8fkXQ==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 @@ -5951,13 +5975,18 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-stately/list@3.10.3': - resolution: {integrity: sha512-Ul8el0tQy2Ucl3qMQ0fiqdJ874W1ZNjURVSgSxN+pGwVLNBVRjd6Fl7YwZFCXER2YOlzkwg+Zqozf/ZlS0EdXA==} + '@react-stately/grid@3.9.3': + resolution: {integrity: sha512-P5KgCNYwm/n8bbLx6527li89RQWoESikrsg2MMyUpUd6IJ321t2pGONGRRQzxE0SBMolPRDJKV0Do2OlsjYKhQ==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + + '@react-stately/layout@4.0.3': + resolution: {integrity: sha512-zFLXnPalWWVCdFGcPAb+nywSTz/xAnKRxb7zT+YDa5U80DHArDGKZcQ+by0+2Sf8yaYolROco4my+BERPXJB6A==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-stately/list@3.10.4': - resolution: {integrity: sha512-sj501OKcQr+1Zdo0m6NuvpZDHLE0tUdReSKcWqt35odzC6ic/qr7C7ozZ/5ay+nuHTryUUTC/mDQ0zlBmQX0dA==} + '@react-stately/list@3.10.3': + resolution: {integrity: sha512-Ul8el0tQy2Ucl3qMQ0fiqdJ874W1ZNjURVSgSxN+pGwVLNBVRjd6Fl7YwZFCXER2YOlzkwg+Zqozf/ZlS0EdXA==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 @@ -5966,13 +5995,13 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-stately/menu@3.6.1': - resolution: {integrity: sha512-3v0vkTm/kInuuG8jG7jbxXDBnMQcoDZKWvYsBQq7+POt0LmijbLdbdZPBoz9TkZ3eo/OoP194LLHOaFTQyHhlw==} + '@react-stately/list@3.11.0': + resolution: {integrity: sha512-O+BxXcbtoLZWn4QIT54RoFUaM+QaJQm6s0ZBJ3Jv4ILIhukVOc55ra+aWMVlXFQSpbf6I3hyVP6cz1yyvd5Rtw==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-stately/menu@3.7.0': - resolution: {integrity: sha512-8UJhvKEF+zaHXrwv0YhFr73OSEprzIs6xRNoV6F/omd4twy1ngPZrL1X8HNzaXsf5BrHuib2tbh81e/Z95D3nA==} + '@react-stately/menu@3.6.1': + resolution: {integrity: sha512-3v0vkTm/kInuuG8jG7jbxXDBnMQcoDZKWvYsBQq7+POt0LmijbLdbdZPBoz9TkZ3eo/OoP194LLHOaFTQyHhlw==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 @@ -5981,13 +6010,13 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-stately/numberfield@3.9.1': - resolution: {integrity: sha512-btBIcBEfSVCUm6NwJrMrMygoIu/fQGazzD0RhF7PNsfvkFiWn+TSOyQqSXcsUJVOnBfoS/dVWj6r57KA7zl3FA==} + '@react-stately/menu@3.8.3': + resolution: {integrity: sha512-sV63V+cMgzipx/N7dq5GaXoItfXIfFEpCtlk3PM2vKstlCJalszXrdo+x996bkeU96h0plB7znAlhlXOeTKzUg==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-stately/numberfield@3.9.2': - resolution: {integrity: sha512-Sp+0MnqaqZ/Tu8qalZXbMIXyvZ7aXIny2PxNIxmnqxVHfxIzQCLJW5Y4bJr1yJIHH3QDZic5OyqS72MBWBXnIA==} + '@react-stately/numberfield@3.9.1': + resolution: {integrity: sha512-btBIcBEfSVCUm6NwJrMrMygoIu/fQGazzD0RhF7PNsfvkFiWn+TSOyQqSXcsUJVOnBfoS/dVWj6r57KA7zl3FA==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 @@ -5996,13 +6025,18 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-stately/overlays@3.6.5': - resolution: {integrity: sha512-U4rCFj6TPJPXLUvYXAcvh+yP/CO2W+7f0IuqP7ZZGE+Osk9qFkT+zRK5/6ayhBDFpmueNfjIEAzT9gYPQwNHFw==} + '@react-stately/numberfield@3.9.7': + resolution: {integrity: sha512-PjSgCCpYasGCEAznFQNqa2JhhEQ5+/2eMiV7ZI5j76q3edTNF8G5OOCl2RazDbzFp6vDAnRVT7Kctx5Tl5R/Zw==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-stately/overlays@3.6.6': - resolution: {integrity: sha512-NvzQXh4zYGZuUmZH5d3NmEDNr8r1hfub2s5w7WOeIG35xqIzoKGdFZ7LLWrie+4nxPmM+ckdfqOQ9pBZFNJypQ==} + '@react-stately/overlays@3.6.11': + resolution: {integrity: sha512-usuxitwOx4FbmOW7Og4VM8R8ZjerbHZLLbFaxZW7pWLs7Ypway1YhJ3SWcyNTYK7NEk4o602kSoU6MSev1Vgag==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + + '@react-stately/overlays@3.6.5': + resolution: {integrity: sha512-U4rCFj6TPJPXLUvYXAcvh+yP/CO2W+7f0IuqP7ZZGE+Osk9qFkT+zRK5/6ayhBDFpmueNfjIEAzT9gYPQwNHFw==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 @@ -6016,23 +6050,18 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-stately/radio@3.10.3': - resolution: {integrity: sha512-EWLLRgLQ9orI7G9uPuJv1bdZPu3OoRWy1TGSn+6G8b8rleNx3haI4eZUR+JGB0YNgemotMz/gbNTNG/wEIsRgw==} - peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-stately/radio@3.10.4': resolution: {integrity: sha512-kCIc7tAl4L7Hu4Wt9l2jaa+MzYmAJm0qmC8G8yPMbExpWbLRu6J8Un80GZu+JxvzgDlqDyrVvyv9zFifwH/NkQ==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-stately/searchfield@3.5.1': - resolution: {integrity: sha512-9A8Wghx1avRHhMpNH1Nj+jFfiF1bhsff2GEC5PZgWYzhCykw3G5bywn3JAuUS4kh7Vpqhbu4KpHAhmWPSv4B/Q==} + '@react-stately/radio@3.10.8': + resolution: {integrity: sha512-VRq6Gzsbk3jzX6hdrSoDoSra9vLRsOi2pLkvW/CMrJ0GSgMwr8jjvJKnNFvYJ3eYQb20EwkarsOAfk7vPSIt/Q==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-stately/searchfield@3.5.2': - resolution: {integrity: sha512-M73mhUCbY5aJAtVH8BF9TeBwOtEMC7G1N/W6j71V8f3MlN0ppN0n4pZWW3CMd2x0BKuYum8KPvcL1DgiXzoo5A==} + '@react-stately/searchfield@3.5.1': + resolution: {integrity: sha512-9A8Wghx1avRHhMpNH1Nj+jFfiF1bhsff2GEC5PZgWYzhCykw3G5bywn3JAuUS4kh7Vpqhbu4KpHAhmWPSv4B/Q==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 @@ -6041,13 +6070,13 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-stately/select@3.6.2': - resolution: {integrity: sha512-duOxdHKol93h6Ew6fap6Amz+zngoERKZLSKVm/8I8uaBgkoBhEeTFv7mlpHTgINxymMw3mMrvy6GL/gfKFwkqg==} + '@react-stately/searchfield@3.5.7': + resolution: {integrity: sha512-VxEG4tWDypdXQ8f7clZBu5Qmc4osqDBeA/gNMA2i1j/h2zRVcCJ0fRCHuDeXLSWBqF1XXAI4TWV53fBBwJusbg==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-stately/select@3.6.3': - resolution: {integrity: sha512-d/ha6j0oiEaw/F5hgPgCZg1e8LObNmvsocEebxXPToVdwHd9H55r2Fogi5nLoiX8geHKiYm0KPfSxs/oXbW/5Q==} + '@react-stately/select@3.6.2': + resolution: {integrity: sha512-duOxdHKol93h6Ew6fap6Amz+zngoERKZLSKVm/8I8uaBgkoBhEeTFv7mlpHTgINxymMw3mMrvy6GL/gfKFwkqg==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 @@ -6056,13 +6085,13 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-stately/selection@3.14.3': - resolution: {integrity: sha512-d/t0rIWieqQ7wjLoMoWnuHEUSMoVXxkPBFuSlJF3F16289FiQ+b8aeKFDzFTYN7fFD8rkZTnpuE4Tcxg3TmA+w==} + '@react-stately/select@3.6.8': + resolution: {integrity: sha512-fLAVzGeYSdYdBdrEVws6Pb1ywFPdapA0eWphoW5s3fS0/pKcVWwbCHeHlaBEi1ISyqEubQZFGQdeFKm/M46Hew==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-stately/selection@3.15.0': - resolution: {integrity: sha512-OtypXNtvRWLmpkaktluzCYEXKXAON16WIJv2mZ4cae3H0UVfWaFL9sD+ST9nj7UqYNTDXECug5ziIY+YKd7zvA==} + '@react-stately/selection@3.14.3': + resolution: {integrity: sha512-d/t0rIWieqQ7wjLoMoWnuHEUSMoVXxkPBFuSlJF3F16289FiQ+b8aeKFDzFTYN7fFD8rkZTnpuE4Tcxg3TmA+w==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 @@ -6071,13 +6100,13 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-stately/slider@3.5.2': - resolution: {integrity: sha512-ntH3NLRG+AwVC7q4Dx9DcmMkMh9vmHjHNXAgaoqNjhvwfSIae7sQ69CkVe6XeJjIBy6LlH81Kgapz+ABe5a1ZA==} + '@react-stately/selection@3.17.0': + resolution: {integrity: sha512-It3LRTaFOavybuDBvBH2mvCh73OL4awqvN4tZ0JzLzMtaYSBe9+YmFasYrzB0o7ca17B2q1tpUmsNWaAgIqbLA==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-stately/slider@3.5.3': - resolution: {integrity: sha512-jA0XR7GjtwoucLw8kx/KB50pSGNUbR7xNfM9t5H8D7k3wd+j4yqfarWyNFyPX/X5MJez+/bd+BIDJUl3XGOWkA==} + '@react-stately/slider@3.5.2': + resolution: {integrity: sha512-ntH3NLRG+AwVC7q4Dx9DcmMkMh9vmHjHNXAgaoqNjhvwfSIae7sQ69CkVe6XeJjIBy6LlH81Kgapz+ABe5a1ZA==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 @@ -6086,13 +6115,13 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-stately/table@3.11.6': - resolution: {integrity: sha512-34YsfOILXusj3p6QNcKEaDWVORhM6WEhwPSLCZlkwAJvkxuRQFdih5rQKoIDc0uV5aZsB6bYBqiFhnjY0VERhw==} + '@react-stately/slider@3.5.8': + resolution: {integrity: sha512-EDgbrxMq1w3+XTN72MGl3YtAG/j65EYX1Uc3Fh56K00+inJbTdRWyYTrb3NA310fXCd0WFBbzExuH2ohlKQycg==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-stately/table@3.11.7': - resolution: {integrity: sha512-VvazamtoXLENeWJAYF1fJzfIAXO2qbiXCfosRLgkEMtoU2kGqV8DHYQhIXuqwMRn8nO8GVw9hgAiQQcKghgCXA==} + '@react-stately/table@3.11.6': + resolution: {integrity: sha512-34YsfOILXusj3p6QNcKEaDWVORhM6WEhwPSLCZlkwAJvkxuRQFdih5rQKoIDc0uV5aZsB6bYBqiFhnjY0VERhw==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 @@ -6101,13 +6130,18 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-stately/tabs@3.6.4': - resolution: {integrity: sha512-WZJgMBqzLgN88RN8AxhY4aH1+I+4w1qQA0Lh3LRSDegaytd+NHixCWaP3IPjePgCB5N1UsPe96Xglw75zjHmDg==} + '@react-stately/table@3.12.3': + resolution: {integrity: sha512-8uGrLcNJYeMbFtzRQZFWCBj5kV+7v3jzwoKIL1j9TmYUKow1PTDMQbPJpAZLQhnC2wVMlaFVgDbedSlbBij7Zg==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-stately/tabs@3.6.5': - resolution: {integrity: sha512-z1saZgGRqb0AsoRi19iE4JOJaIRV73GjRnzUX9QSl3gpK75XsH31vbmtUYiXOXAd6Dt+1KFLgbyeCzMUlZEnMw==} + '@react-stately/tabs@3.6.10': + resolution: {integrity: sha512-F7wfoiNsrBy7c02AYHyE1USGgj05HQ0hp7uXmQjp2LEa+AA0NKKi3HdswTHHySxb0ZRuoEE7E7vp/gXQYx2/Ow==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + + '@react-stately/tabs@3.6.4': + resolution: {integrity: sha512-WZJgMBqzLgN88RN8AxhY4aH1+I+4w1qQA0Lh3LRSDegaytd+NHixCWaP3IPjePgCB5N1UsPe96Xglw75zjHmDg==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 @@ -6121,23 +6155,23 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-stately/toggle@3.7.3': - resolution: {integrity: sha512-4jW6wxTu7Gkq6/2mZWqtJoQ6ff27Cl6lnVMEXXM+M8HwK/3zHoMZhVz8EApwgOsRByxDQ76PNSGm3xKZAcqZNw==} - peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-stately/toggle@3.7.4': resolution: {integrity: sha512-CoYFe9WrhLkDP4HGDpJYQKwfiYCRBAeoBQHv+JWl5eyK61S8xSwoHsveYuEZ3bowx71zyCnNAqWRrmNOxJ4CKA==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-stately/tooltip@3.4.7': - resolution: {integrity: sha512-ACtRgBQ8rphBtsUaaxvEAM0HHN9PvMuyvL0vUHd7jvBDCVZJ6it1BKu9SBKjekBkoBOw9nemtkplh9R2CA6V8Q==} + '@react-stately/toggle@3.7.8': + resolution: {integrity: sha512-ySOtkByvIY54yIu8IZ4lnvomQA0H+/mkZnd6T5fKN3tjvIzHmkUk3TAPmNInUxHX148tSW6mWwec0xvjYqEd6w==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + + '@react-stately/tooltip@3.4.13': + resolution: {integrity: sha512-zQ+8FQ7Pi0Cz852dltXb6yaryjE18K3byK4tIO3e5vnrZHEGvfdxowc+v9ak5UV93kVrYoOVmfZHRcEaTXTBNA==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-stately/tooltip@3.4.8': - resolution: {integrity: sha512-0D3cCeQhX5DjDpeuzFJwfX8SxIOxdL2iWPPjpC3hIxkUKuItavSq2A7G2tO39vpiip3RBOaaQMUpnSmjRK5DAQ==} + '@react-stately/tooltip@3.4.7': + resolution: {integrity: sha512-ACtRgBQ8rphBtsUaaxvEAM0HHN9PvMuyvL0vUHd7jvBDCVZJ6it1BKu9SBKjekBkoBOw9nemtkplh9R2CA6V8Q==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 @@ -6151,26 +6185,26 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-stately/tree@3.8.0': - resolution: {integrity: sha512-7bfbCLjG8BTiWuo9GBE1A375PPI4S9r/rMtKQGLQvYAObgJb7C8P3svA9WKfryvl7M5iqaYrOVA0uzNSmeCNQQ==} - peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-stately/tree@3.8.1': resolution: {integrity: sha512-LOdkkruJWch3W89h4B/bXhfr0t0t1aRfEp+IMrrwdRAl23NaPqwl5ILHs4Xu5XDHqqhg8co73pHrJwUyiTWEjw==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-stately/utils@3.10.0': - resolution: {integrity: sha512-nji2i9fTYg65ZWx/3r11zR1F2tGya+mBubRCbMTwHyRnsSLFZaeq/W6lmrOyIy1uMJKBNKLJpqfmpT4x7rw6pg==} + '@react-stately/tree@3.8.5': + resolution: {integrity: sha512-0/tYhsKWQQJTOZFDwh8hY3Qk6ejNFRldGrLeK5kS22UZdvsMFyh7WAi40FTCJy561/VoB0WqQI4oyNPOa9lYWg==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 '@react-stately/utils@3.10.1': resolution: {integrity: sha512-VS/EHRyicef25zDZcM/ClpzYMC5i2YGN6uegOeQawmgfGjb02yaCX0F0zR69Pod9m2Hr3wunTbtpgVXvYbZItg==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + '@react-stately/utils@3.10.4': + resolution: {integrity: sha512-gBEQEIMRh5f60KCm7QKQ2WfvhB2gLUr9b72sqUdIZ2EG+xuPgaIlCBeSicvjmjBvYZwOjoOEnmIkcx2GHp/HWw==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + '@react-stately/utils@3.9.1': resolution: {integrity: sha512-yzw75GE0iUWiyps02BOAPTrybcsMIxEJlzXqtvllAb01O9uX5n0i3X+u2eCpj2UoDF4zS08Ps0jPgWxg8xEYtA==} peerDependencies: @@ -6181,23 +6215,23 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-stately/virtualizer@3.7.0': - resolution: {integrity: sha512-Wkh502y6mzUvjJJr30p5FLRwBaphnfmnoSnGwidamwo3HuyrDICBSlwFGPl0AmUHo1afSaLXl6j8smU48VcClA==} - peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-stately/virtualizer@3.7.1': resolution: {integrity: sha512-voHgE6EQ+oZaLv6u2umKxakvIKNkCQuUihqKACTjdslp7SJh4Mvs3oLBI0hf0JOh+rCcFIKDvQtFwy1fXFRYBA==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-types/breadcrumbs@3.7.3': - resolution: {integrity: sha512-eFto/+6J+JR58vThNcALZRA1OlqlG3GzQ/bq3q8IrrkOZcrfbEJJCWit/+53Ia98siJKuF4OJHnotxIVIz5I3w==} + '@react-stately/virtualizer@4.1.0': + resolution: {integrity: sha512-MOaqpY3NloXrpCBvVUb3HL1p3Bh4YRtUq8D2ufC909u5vM6n6G5Swk1XPJ9KHfaftGhb5serwLkm2/Aha5CTbA==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-types/breadcrumbs@3.7.4': - resolution: {integrity: sha512-gQPLi71i+4zE6m5S74v7bpZ/yBERtlUt5qBcvB4C7gJu8aR4cFrv1YFZ//9f8uwlAHjau7XBpVlbBDlhfb2aOQ==} + '@react-types/accordion@3.0.0-alpha.24': + resolution: {integrity: sha512-hwDT4TJH7aHCG8m9QsTP+7xgW7x7k2TY+WHlMRr6qDS6WhTCwd41dCdagxC0SZtulzZuWqISBxZifVrh4Tynew==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + + '@react-types/breadcrumbs@3.7.3': + resolution: {integrity: sha512-eFto/+6J+JR58vThNcALZRA1OlqlG3GzQ/bq3q8IrrkOZcrfbEJJCWit/+53Ia98siJKuF4OJHnotxIVIz5I3w==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 @@ -6206,13 +6240,18 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-types/button@3.9.2': - resolution: {integrity: sha512-EnPTkGHZRtiwAoJy5q9lDjoG30bEzA/qnvKG29VVXKYAGeqY2IlFs1ypmU+z1X/CpJgPcG3I5cakM7yTVm3pSg==} + '@react-types/breadcrumbs@3.7.8': + resolution: {integrity: sha512-+BW2a+PrY8ArZ+pKecz13oJFrUAhthvXx17o3x0BhWUhRpAdtmTYt2hjw8zNanm2j0Kvgo1HYKgvtskCRxYcOA==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + + '@react-types/button@3.10.0': + resolution: {integrity: sha512-rAyU+N9VaHLBdZop4zasn8IDwf9I5Q1EzHUKMtzIFf5aUlMUW+K460zI/l8UESWRSWAXK9/WPSXGxfcoCEjvAA==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-types/button@3.9.3': - resolution: {integrity: sha512-YHlSeH85FhasJXOmkY4x+6If74ZpUh88C2fMlw0HUA/Bq/KGckUoriV8cnMqSnB1OwPqi8dpBZGfFVj6f6lh9A==} + '@react-types/button@3.9.2': + resolution: {integrity: sha512-EnPTkGHZRtiwAoJy5q9lDjoG30bEzA/qnvKG29VVXKYAGeqY2IlFs1ypmU+z1X/CpJgPcG3I5cakM7yTVm3pSg==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 @@ -6221,13 +6260,13 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-types/calendar@3.4.4': - resolution: {integrity: sha512-hV1Thmb/AES5OmfPvvmyjSkmsEULjiDfA7Yyy70L/YKuSNKb7Su+Bf2VnZuDW3ec+GxO4JJNlpJ0AkbphWBvcg==} + '@react-types/calendar@3.4.10': + resolution: {integrity: sha512-PyjqxwJxSW2IpQx6y0D9O34fRCWn1gv9q0qFhgaIigIQrPg8zTE/CC7owHLxAtgCnnCt8exJ5rqi414csaHKlA==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-types/calendar@3.4.5': - resolution: {integrity: sha512-FAAUbqe8iPiNf/OtdxnpOuAEJzyeRgfK2QCzfb4BIVnNNaTDkbxGCI5wrqHfBQ4FASECJeNlkjYXtbvijaooyw==} + '@react-types/calendar@3.4.4': + resolution: {integrity: sha512-hV1Thmb/AES5OmfPvvmyjSkmsEULjiDfA7Yyy70L/YKuSNKb7Su+Bf2VnZuDW3ec+GxO4JJNlpJ0AkbphWBvcg==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 @@ -6241,20 +6280,20 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-types/checkbox@3.8.0': - resolution: {integrity: sha512-IBJ2bAsb3xoXaL+f0pwfRLDvRkhxfcX/q4NRJ2oT9jeHLU+j6svgK1Dqk8IGmY+vw1ltKbbMlIVeVonKQ3fgHw==} - peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-types/checkbox@3.8.1': resolution: {integrity: sha512-5/oVByPw4MbR/8QSdHCaalmyWC71H/QGgd4aduTJSaNi825o+v/hsN2/CH7Fq9atkLKsC8fvKD00Bj2VGaKriQ==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-types/color@3.0.0-beta.24': - resolution: {integrity: sha512-YSb/9ERmFp7JxC+vjhqpcYI8HUt92SSv6aDEB+e//4RzBnCxvy+YQAGei9tI6PYIgzGgMLwEMkgpgH/7UcFblA==} + '@react-types/checkbox@3.8.4': + resolution: {integrity: sha512-fvZrlQmlFNsYHZpl7GVmyYQlKdUtO5MczMSf8z3TlSiCb5Kl3ha9PsZgLhJqGuVnzB2ArIBz0eZrYa3k0PhcpA==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + + '@react-types/color@3.0.0': + resolution: {integrity: sha512-VUH8CROAM69GsMBilrJ1xyAdVsWL01nXQYrkZJxAEApv1OrcpIGSdsXLcGrjsrhjjiNVXxWFnqYRMsKkLzIl7g==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 '@react-types/color@3.0.0-beta.25': resolution: {integrity: sha512-D24ASvLeSWouBwOBi4ftUe4/BhrZj5AiHV7tXwrVeMGOy9Z9jyeK65Xysq+R3ecaSONLXsgai5CQMvj13cOacA==} @@ -6266,23 +6305,18 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-types/combobox@3.11.0': - resolution: {integrity: sha512-L6EEcIUIk7lsVvhO1Z1bklgH5bM84fBht03TC+es9YvS2T1Z9hdtyjBFcH6b3lVW9RwAArdUTL82/RNtvgD0Eg==} - peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-types/combobox@3.11.1': resolution: {integrity: sha512-UNc3OHt5cUt5gCTHqhQIqhaWwKCpaNciD8R7eQazmHiA9fq8ROlV+7l3gdNgdhJbTf5Bu/V5ISnN7Y1xwL3zqQ==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-types/datepicker@3.7.2': - resolution: {integrity: sha512-zThqFAdhQL1dqyVDsDSSTdfCjoD6634eyg/B0ZJfQxcLUR/5pch3v/gxBhbyCVDGMNHRWUWIJvY9DVOepuoSug==} + '@react-types/combobox@3.13.0': + resolution: {integrity: sha512-kH/a+Fjpr54M2JbHg9RXwMjZ9O+XVsdOuE5JCpWRibJP1Mfl1md8gY6y6zstmVY8COrSqFvMZWB+PzwaTWjTGw==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-types/datepicker@3.7.3': - resolution: {integrity: sha512-SpA91itY03QaBvTAGP4X62SEAOoKJr91Av/U5DgH8gP7Ev4Ui+I3Aqh+w8Qw6nxKX4aAvDUx6wEHwLQLbvJUPA==} + '@react-types/datepicker@3.7.2': + resolution: {integrity: sha512-zThqFAdhQL1dqyVDsDSSTdfCjoD6634eyg/B0ZJfQxcLUR/5pch3v/gxBhbyCVDGMNHRWUWIJvY9DVOepuoSug==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 @@ -6291,18 +6325,23 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + '@react-types/datepicker@3.8.3': + resolution: {integrity: sha512-Y4qfPRBB6uzocosCOWSYMuwiZ3YXwLWQYiFB4KCglkvHyltbNz76LgoBEnclYA5HjwosIk4XywiXvHSYry8JnQ==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + '@react-types/dialog@3.5.10': resolution: {integrity: sha512-S9ga+edOLNLZw7/zVOnZdT5T40etpzUYBXEKdFPbxyPYnERvRxJAsC1/ASuBU9fQAXMRgLZzADWV+wJoGS/X9g==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-types/dialog@3.5.8': - resolution: {integrity: sha512-RX8JsMvty8ADHRqVEkppoynXLtN4IzUh8d5z88UEBbcvWKlHfd6bOBQjQcBH3AUue5wjfpPIt6brw2VzgBY/3Q==} + '@react-types/dialog@3.5.13': + resolution: {integrity: sha512-9k8daVcAqQsySkzDY6NIVlyGxtpEip4TKuLyzAehthbv78GQardD5fHdjQ6eXPRS4I2qZrmytrFFrlOnwWVGHw==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-types/dialog@3.5.9': - resolution: {integrity: sha512-8r9P1b1gq/cUv2bTPPNL3IFVEj9R5sIPACoSXznXkpXxh5FLU6yUPHDeQjvmM50q7KlEOgrPYhGl5pW525kLww==} + '@react-types/dialog@3.5.8': + resolution: {integrity: sha512-RX8JsMvty8ADHRqVEkppoynXLtN4IzUh8d5z88UEBbcvWKlHfd6bOBQjQcBH3AUue5wjfpPIt6brw2VzgBY/3Q==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 @@ -6311,23 +6350,18 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-types/form@3.7.3': - resolution: {integrity: sha512-RwVxgbuKuByIXTF9HnvIhc/KijzT10R8rnI2Hr/51nTH+QDkunmLtmzW279m4YJRT3Dlj94DRy/7SS/WNCT2FA==} - peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-types/form@3.7.4': resolution: {integrity: sha512-HZojAWrb6feYnhDEOy3vBamDVAHDl0l2JQZ7aIDLHmeTAGQC3JNZcm2fLTxqLye46zz8w8l8OHgI+NdD4PHdOw==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-types/grid@3.2.4': - resolution: {integrity: sha512-sDVoyQcH7MoGdx5nBi5ZOU/mVFBt9YTxhvr0PZ97dMdEHZtJC1w9SuezwWS34f50yb8YAXQRTICbZYcK4bAlDA==} + '@react-types/form@3.7.7': + resolution: {integrity: sha512-CVRjCawPhYRHi/LuikOC2kz5vgvmjjKmF4/wUgR2QzD1Ok4wY1ZGSx9M9EZptCIZAt2mToR6woyLUdtzy+foeQ==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-types/grid@3.2.5': - resolution: {integrity: sha512-kvE3Y+i0/RGLrf8qn/uVK1nVxXygNf5Jm6h9S6UdZkEVsclcqHKIX8UzqQgEUTd99jMHZk7fbKPm/La8uJ9yFQ==} + '@react-types/grid@3.2.4': + resolution: {integrity: sha512-sDVoyQcH7MoGdx5nBi5ZOU/mVFBt9YTxhvr0PZ97dMdEHZtJC1w9SuezwWS34f50yb8YAXQRTICbZYcK4bAlDA==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 @@ -6336,13 +6370,13 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-types/link@3.5.3': - resolution: {integrity: sha512-yVafjW3IejyVnK3oMBNjFABCGG6J27EUG8rvkaGaI1uB6srGUEhpJ97XLv11aj1QkXHBy3VGXqxEV3S7wn4HTw==} + '@react-types/grid@3.2.9': + resolution: {integrity: sha512-eMw0d2UIZ4QTzGgD1wGGPw0cv67KjAOCp4TcwWjgDV7Wa5SVV/UvOmpnIVDyfhkG/4KRI5OR9h+isy76B726qA==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-types/link@3.5.4': - resolution: {integrity: sha512-5hVAlKE4wiEVHmkqQG9/G4sdar257CISmLzWh9xf8heq14a93MBIHm7S9mhHULk2a84EC9bNoTi8Hh6P6nnMEw==} + '@react-types/link@3.5.3': + resolution: {integrity: sha512-yVafjW3IejyVnK3oMBNjFABCGG6J27EUG8rvkaGaI1uB6srGUEhpJ97XLv11aj1QkXHBy3VGXqxEV3S7wn4HTw==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 @@ -6351,13 +6385,13 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-types/listbox@3.4.7': - resolution: {integrity: sha512-68y5H9CVSPFiwO6MOFxTbry9JQMK/Lb1M9i3M8TDyq1AbJxBPpgAvJ9RaqIMCucsnqCzpY/zA3D/X417zByL1w==} + '@react-types/link@3.5.8': + resolution: {integrity: sha512-l/YGXddgAbLnIT7ekftXrK1D4n8NlLQwx0d4usyZpaxP1KwPzuwng20DxynamLc1atoKBqbUtZAnz32pe7vYgw==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-types/listbox@3.4.8': - resolution: {integrity: sha512-HNLBvyhR02p8GaZsW8hAu4YwkDjaG/rcuCT/l4Sdxzsm7szPlFMEVBZ9Ji3Ffzj+9P20OgFJ+VylWs7EkUwJAA==} + '@react-types/listbox@3.4.7': + resolution: {integrity: sha512-68y5H9CVSPFiwO6MOFxTbry9JQMK/Lb1M9i3M8TDyq1AbJxBPpgAvJ9RaqIMCucsnqCzpY/zA3D/X417zByL1w==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 @@ -6366,13 +6400,18 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-types/menu@3.9.7': - resolution: {integrity: sha512-K6KhloJVoGsqwkdeez72fkNI9dfrmLI/sNrB4XuOKo2crDQ/eyZYWyJmzz8giz/tHME9w774k487rVoefoFh5w==} + '@react-types/listbox@3.5.2': + resolution: {integrity: sha512-ML/Bt/MeO0FiixcuFQ+smpu1WguxTOqHDjSnhc1vcNxVQFWQOhyVy01LAY2J/T9TjfjyYGD41vyMTI0f6fcLEQ==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-types/menu@3.9.8': - resolution: {integrity: sha512-nkRCsfD3NXsJOv6mAnXCFyH2eGOFsmOOJOBQeOl9dj7BcdX9dcqp2PzUWPl33GrY9rYcXiRx4wsbUoqO1KVU4g==} + '@react-types/menu@3.9.12': + resolution: {integrity: sha512-1SPnkHKJdvOfwv9fEgK1DI6DYRs4D3hW2XcWlLhVXSjaC68CzOHGwFhKIKvZiDTW/11L770PRSEloIxHR09uFQ==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + + '@react-types/menu@3.9.7': + resolution: {integrity: sha512-K6KhloJVoGsqwkdeez72fkNI9dfrmLI/sNrB4XuOKo2crDQ/eyZYWyJmzz8giz/tHME9w774k487rVoefoFh5w==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 @@ -6386,23 +6425,18 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-types/meter@3.4.0': - resolution: {integrity: sha512-1czayiwMcg3QxRxQQSm9hvPbzPk1lyNmP68mDsWdVuY7fUTsUvItF05IkeJCkEB8tIqfBKnJHYAJN1XLY+5bfg==} - peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-types/meter@3.4.1': resolution: {integrity: sha512-AIJV4NDFAqKH94s02c5Da4TH2qgJjfrw978zuFM0KUBFD85WRPKh7MvgWpomvUgmzqE6lMCzIdi1KPKqrRabdw==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-types/numberfield@3.8.1': - resolution: {integrity: sha512-GaCjLQgXUGCt40SLjKk3/COMWFlN2vV/3Xs3VSLAEdFZpk99b+Ik1oR21+7ZP5/iMHuQDc1MJRWdFfIjxCvVDQ==} + '@react-types/meter@3.4.4': + resolution: {integrity: sha512-0SEmPkShByC1gYkW7l+iJPg8QfEe2VrgwTciAtTfC4KIqAYmJVQtq6L+4d72EMxOh8RpQHePaY/RFHEJXAh72A==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-types/numberfield@3.8.2': - resolution: {integrity: sha512-2i7Je7fEYA4ousL9WhKZg+6Hejwgiq1AmoJpan6JfeIMQkvQ92q+klq02cih/lLXY/jvjd/KI3fa1fl3dfnaFw==} + '@react-types/numberfield@3.8.1': + resolution: {integrity: sha512-GaCjLQgXUGCt40SLjKk3/COMWFlN2vV/3Xs3VSLAEdFZpk99b+Ik1oR21+7ZP5/iMHuQDc1MJRWdFfIjxCvVDQ==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 @@ -6411,13 +6445,18 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-types/overlays@3.8.5': - resolution: {integrity: sha512-4D7EEBQigD/m8hE68Ys8eloyyZFHHduqykSIgINJ0edmo0jygRbWlTwuhWFR9USgSP4dK54duN0Mvq0m4HEVEw==} + '@react-types/numberfield@3.8.6': + resolution: {integrity: sha512-VtWEMAXUO1S9EEZI8whc7xv6DVccxhbWsRthMCg/LxiwU3U5KAveadNc2c5rtXkRpd3cnD5xFzz3dExXdmHkAg==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-types/overlays@3.8.6': - resolution: {integrity: sha512-7xBuroYqwADppt7IRGfM8lbxVwlZrhMtTzeIdUot595cqFdRlpd/XAo2sRnEeIjYW9OSI8I5v4kt3AG7bdCQlg==} + '@react-types/overlays@3.8.10': + resolution: {integrity: sha512-IcnB+VYfAJazRjWhBKZTmVMh3KTp/B1rRbcKkPx6t8djP9UQhKcohP7lAALxjJ56Jjz/GFC6rWyUcnYH0NFVRA==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + + '@react-types/overlays@3.8.5': + resolution: {integrity: sha512-4D7EEBQigD/m8hE68Ys8eloyyZFHHduqykSIgINJ0edmo0jygRbWlTwuhWFR9USgSP4dK54duN0Mvq0m4HEVEw==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 @@ -6431,23 +6470,18 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-types/progress@3.5.3': - resolution: {integrity: sha512-IcICNYRPFHQxl6iXi5jDgSZ3I9k2UQ2rIFcnoGo43K0hekv6fRdbbXWJU9ndShs3OfCHTPHEV5ooYB3UujNOAQ==} - peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-types/progress@3.5.4': resolution: {integrity: sha512-JNc246sTjasPyx5Dp7/s0rp3Bz4qlu4LrZTulZlxWyb53WgBNL7axc26CCi+I20rWL9+c7JjhrRxnLl/1cLN5g==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-types/radio@3.7.1': - resolution: {integrity: sha512-Zut3rN1odIUBLZdijeyou+UqsLeRE76d9A+npykYGu29ndqmo3w4sLn8QeQcdj1IR71ZnG0pW2Y2BazhK5XrrQ==} + '@react-types/progress@3.5.7': + resolution: {integrity: sha512-EqMDHmlpoZUZzTjdejGIkSM0pS2LBI9NdadHf3bDNTycHv+5L1xpMHUg8RGOW8a3sRVLRvfN1aO9l75QZkyj+w==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-types/radio@3.8.0': - resolution: {integrity: sha512-0gvG74lgiaRo0DO46hoB5NxGFXhq5DsHaPZcCcb9VZ8cCzZMrO7U/B3JhF82TI2DndSx/AoiAMOQsc0v4ZwiGg==} + '@react-types/radio@3.7.1': + resolution: {integrity: sha512-Zut3rN1odIUBLZdijeyou+UqsLeRE76d9A+npykYGu29ndqmo3w4sLn8QeQcdj1IR71ZnG0pW2Y2BazhK5XrrQ==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 @@ -6456,13 +6490,13 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-types/searchfield@3.5.3': - resolution: {integrity: sha512-gBfsT1WpY8UIb74yyYmnjiHpVasph2mdmGj9i8cGF2HUYwx5p+Fr85mtCGDph0uirvRoM5ExMp4snD+ueNAVCg==} + '@react-types/radio@3.8.4': + resolution: {integrity: sha512-GCuOwQL19iwKa74NAIk9hv4ivyI8oW1+ZCuc2fzyDdeQjzTIlv3qrIyShwpVy1IoI7/4DYTMZm/YXPoKhu5TTA==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-types/searchfield@3.5.4': - resolution: {integrity: sha512-D7tUwlbUxyTzxhMYWNMdY9lp/a/kdr9mIGB7K3j/QSQhTI2T9H3VPxEKXmYt33cE3T7Q1DDsII1SrChI/KEdxA==} + '@react-types/searchfield@3.5.3': + resolution: {integrity: sha512-gBfsT1WpY8UIb74yyYmnjiHpVasph2mdmGj9i8cGF2HUYwx5p+Fr85mtCGDph0uirvRoM5ExMp4snD+ueNAVCg==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 @@ -6471,13 +6505,13 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-types/select@3.9.2': - resolution: {integrity: sha512-fGFrunednY3Pq/BBwVOf87Fsuyo/SlevL0wFIE9OOl2V5NXVaTY7/7RYA8hIOHPzmvsMbndy419BEudiNGhv4A==} + '@react-types/searchfield@3.5.9': + resolution: {integrity: sha512-c/x8BWpH1Zq+fWpeBtzw2AhQhGi7ahWPicV7PlnqwIGO0MrH/QCjX0dj+I+1xpcAh8Eq6ECa79HE74Rw6aJmFg==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-types/select@3.9.3': - resolution: {integrity: sha512-hK5RvA6frMbLdynRkegNW1lMOD0l9aFsW9X8WuTAg0zV6iZouU0hhSCT6JRDefJrv+m0X3fRdohMuVNZOhlA1g==} + '@react-types/select@3.9.2': + resolution: {integrity: sha512-fGFrunednY3Pq/BBwVOf87Fsuyo/SlevL0wFIE9OOl2V5NXVaTY7/7RYA8hIOHPzmvsMbndy419BEudiNGhv4A==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 @@ -6486,13 +6520,13 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-types/shared@3.22.1': - resolution: {integrity: sha512-PCpa+Vo6BKnRMuOEzy5zAZ3/H5tnQg1e80khMhK2xys0j6ZqzkgQC+fHMNZ7VDFNLqqNMj/o0eVeSBDh2POjkw==} + '@react-types/select@3.9.7': + resolution: {integrity: sha512-Jva4ixfB4EEdy+WmZkUoLiQI7vVfHPxM73VuL7XDxvAO+YKiIztDTcU720QVNhxTMmQvCxfRBXWar8aodCjLiw==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-types/shared@3.23.0': - resolution: {integrity: sha512-GQm/iPiii3ikcaMNR4WdVkJ4w0mKtV3mLqeSfSqzdqbPr6vONkqXbh3RhPlPmAJs1b4QHnexd/wZQP3U9DHOwQ==} + '@react-types/shared@3.22.1': + resolution: {integrity: sha512-PCpa+Vo6BKnRMuOEzy5zAZ3/H5tnQg1e80khMhK2xys0j6ZqzkgQC+fHMNZ7VDFNLqqNMj/o0eVeSBDh2POjkw==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 @@ -6501,13 +6535,13 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-types/slider@3.7.1': - resolution: {integrity: sha512-FKO3YZYdrBs00XbBW5acP+0L1cCdevl/uRJiXbnLpGysO5PrSFIRS7Wlv4M7ztf6gT7b1Ao4FNC9crbxBr6BzA==} + '@react-types/shared@3.25.0': + resolution: {integrity: sha512-OZSyhzU6vTdW3eV/mz5i6hQwQUhkRs7xwY2d1aqPvTdMe0+2cY7Fwp45PAiwYLEj73i9ro2FxF9qC4DvHGSCgQ==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-types/slider@3.7.2': - resolution: {integrity: sha512-HvC/Mdt/z741xcU0ymeNxslnowQ5EAHOSzyf2JMgXmle+pEIbbepz5QUVaOmEveQHS3bjxE/+n2yBTKbxP8CJg==} + '@react-types/slider@3.7.1': + resolution: {integrity: sha512-FKO3YZYdrBs00XbBW5acP+0L1cCdevl/uRJiXbnLpGysO5PrSFIRS7Wlv4M7ztf6gT7b1Ao4FNC9crbxBr6BzA==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 @@ -6516,13 +6550,13 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-types/switch@3.5.1': - resolution: {integrity: sha512-2LFEKMGeufqyYmeN/5dtkDkCPG6x9O4eu6aaBaJmPGon7C/l3yiFEgRue6oCUYc1HixR7Qlp0sPxk0tQeWzrSg==} + '@react-types/slider@3.7.6': + resolution: {integrity: sha512-z72wnEzSge6qTD9TUoUPp1A4j4jXk/MVii6rGE78XeE/Pq7HyyjU5bCagryMr9PC9MKa/oTiHcshKqWBDf57GA==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-types/switch@3.5.2': - resolution: {integrity: sha512-4i35eZ5GtVDgu9KFhlyLyXanspcQp5WEnPyaBKn3pDRDcpzAL7yNP/Rwqc/JDdcJWngV080o7loJCgEfJ6UFaQ==} + '@react-types/switch@3.5.1': + resolution: {integrity: sha512-2LFEKMGeufqyYmeN/5dtkDkCPG6x9O4eu6aaBaJmPGon7C/l3yiFEgRue6oCUYc1HixR7Qlp0sPxk0tQeWzrSg==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 @@ -6531,13 +6565,18 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-types/table@3.9.3': - resolution: {integrity: sha512-Hs/pMbxJdga2zBol4H5pV1FVIiRjCuSTXst6idJjkctanTexR4xkyrtBwl+rdLNoGwQ2pGii49vgklc5bFK7zA==} + '@react-types/switch@3.5.6': + resolution: {integrity: sha512-gJ8t2yTCgcitz4ON4ELcLLmtlDkn2MUjjfu3ez/cwA1X/NUluPYkhXj5Z6H+KOlnveqrKCZDRoTgK74cQ6Cvfg==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-types/table@3.9.4': - resolution: {integrity: sha512-31EI0KAHwX7TbgERLBLVuD3nvpZUo0Wie7S7FEARmirIRfzm1fIkdDk5hfIHry2Lp4mq2/aqXLCY+oDR+lC2pw==} + '@react-types/table@3.10.2': + resolution: {integrity: sha512-YzA4hcsYfnFFpA2UyGb1KKhLpWgaj5daApqjp126tCIosl8k1KxZmhKD50cwH0Jm19lALJseqo5VdlcJtcr4qg==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + + '@react-types/table@3.9.3': + resolution: {integrity: sha512-Hs/pMbxJdga2zBol4H5pV1FVIiRjCuSTXst6idJjkctanTexR4xkyrtBwl+rdLNoGwQ2pGii49vgklc5bFK7zA==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 @@ -6546,13 +6585,13 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-types/tabs@3.3.5': - resolution: {integrity: sha512-6NTSZBOWekCtApdZrhu5tHhE/8q52oVohQN+J5T7shAXd6ZAtu8PABVR/nH4BWucc8FL0OUajRqunqzQMU13gA==} + '@react-types/tabs@3.3.10': + resolution: {integrity: sha512-s/Bw/HCIdWJPBw4O703ghKqhjGsIerRMIDxA88hbQYzfTDD6bkFDjCnsP2Tyy1G8Dg2rSPFUEE+k+PpLzqeEfQ==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-types/tabs@3.3.6': - resolution: {integrity: sha512-ubvB7pB4+e5OpIuYR1CYip53iW9rJRIWvioHTYfcX0DnMabEcVP6Ymdqr5bDh/VsBEhiddsNgMduQwJm6bUTew==} + '@react-types/tabs@3.3.5': + resolution: {integrity: sha512-6NTSZBOWekCtApdZrhu5tHhE/8q52oVohQN+J5T7shAXd6ZAtu8PABVR/nH4BWucc8FL0OUajRqunqzQMU13gA==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 @@ -6566,23 +6605,23 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-types/textfield@3.9.2': - resolution: {integrity: sha512-8UcabahYhKm3KTu9CQBhz745FioUWO6CWgYusBpxMDJ+HnlhCC2JWyQvqg5tT98sr5AeSek4Jt/XS3ovzrhCDg==} - peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-types/textfield@3.9.3': resolution: {integrity: sha512-DoAY6cYOL0pJhgNGI1Rosni7g72GAt4OVr2ltEx2S9ARmFZ0DBvdhA9lL2nywcnKMf27PEJcKMXzXc10qaHsJw==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - '@react-types/tooltip@3.4.7': - resolution: {integrity: sha512-rV4HZRQxLRNhe24yATOxnFQtGRUmsR7mqxMupXCmd1vrw8h+rdKlQv1zW2q8nALAKNmnRXZJHxYQ1SFzb98fgg==} + '@react-types/textfield@3.9.7': + resolution: {integrity: sha512-vU5+QCOF9HgWGjAmmy+cpJibVW5voFomC5POmYHokm7kivYcMMjlonsgWwg/0xXrqE2qosH3tpz4jFoEuig1NQ==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - '@react-types/tooltip@3.4.8': - resolution: {integrity: sha512-6XVQ3cMaXVMif+F5PQCaVwxbgAL8HVRqVjt6DkHs8Xbae43hpEIwPrBYlWWMVpuZAcjXZLTGmmyPjYeORZZJ4A==} + '@react-types/tooltip@3.4.12': + resolution: {integrity: sha512-FwsdSQ3UDIDORanQMGMLyzSUabw4AkKhwcRdPv4d5OT8GmJr7mBdZynfcsrKLJ0fzskIypMqspoutZidsI0MQg==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + + '@react-types/tooltip@3.4.7': + resolution: {integrity: sha512-rV4HZRQxLRNhe24yATOxnFQtGRUmsR7mqxMupXCmd1vrw8h+rdKlQv1zW2q8nALAKNmnRXZJHxYQ1SFzb98fgg==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 @@ -9611,6 +9650,10 @@ packages: resolution: {integrity: sha512-m3iNNWpd9rl3jvvcBnu70ylMdrXt8Vlq4HYadnU5fwcOtvkSQWPmj7amUcDT2qYI7risszBjI5AUIUox9D16pg==} engines: {node: '>=6'} + clsx@2.1.1: + resolution: {integrity: sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==} + engines: {node: '>=6'} + cmd-shim@5.0.0: resolution: {integrity: sha512-qkCtZ59BidfEwHltnJwkyVZn+XQojdAySM1D1gSeh11Z4pW1Kpolkyo53L5noc0nrxmIvyFwTmJRo4xs7FFLPw==} engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0} @@ -11646,7 +11689,7 @@ packages: resolution: {integrity: sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==} engines: {node: '>= 4.0'} os: [darwin] - deprecated: The v1 package contains DANGEROUS / INSECURE binaries. Upgrade to safe fsevents v2 + deprecated: Upgrade to fsevents v2 to mitigate potential security issues fsevents@2.3.3: resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} @@ -16136,26 +16179,20 @@ packages: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - react-aria-components@1.2.0: - resolution: {integrity: sha512-Cqr1tewYe/SgNcVOptqYdm0PPAV0Xsvd2uzWX7EqJsPGHvKStl/mh2a3Ebe6dYuoOddLsqqj36DdiLC5Pb5okw==} - peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - react-aria-components@1.2.1: resolution: {integrity: sha512-iGIdDjbTyLLn0/tGUyBQxxu+E1bw4/H4AU89d0cRcu8yIdw6MXG29YElmRHn0ugiyrERrk/YQALihstnns5kRQ==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - react-aria@3.32.1: - resolution: {integrity: sha512-7KCJg4K5vlRqiXdGjgCT05Du8RhGBYC+2ok4GOh/Znmg8aMwOk7t0YwxaT5i1z30+fmDcJS/pk/ipUPUg28CXg==} + react-aria-components@1.4.0: + resolution: {integrity: sha512-CpeSeGI2FVT3hOzA28fhIGkrPPQPtz3gVHBfMWkXSuLUBaKFZQhdCLBXlpO5MoZV1RrC+e7mhOVREkw6DvlxKw==} peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 - react-aria@3.33.0: - resolution: {integrity: sha512-aKn9SQn5TMlmpUsIjfRMtse2v3okGcSo+gWLGrj9JVjxs4PL4FSU4mclj4Bg2JUXZTGgfLSq6PWUBzQ4gIP2zg==} + react-aria@3.32.1: + resolution: {integrity: sha512-7KCJg4K5vlRqiXdGjgCT05Du8RhGBYC+2ok4GOh/Znmg8aMwOk7t0YwxaT5i1z30+fmDcJS/pk/ipUPUg28CXg==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 @@ -16166,6 +16203,12 @@ packages: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + react-aria@3.35.0: + resolution: {integrity: sha512-cbbd3iIveLDRnpVrpc1iuz8OMlDdH6u8EjncW3MQuYOiEGaho9xcDtWMKiSEIZASEnd7LK4Rgm5iVPr2O+cssw==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + react-dom: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + react-beautiful-dnd@13.0.0: resolution: {integrity: sha512-87It8sN0ineoC3nBW0SbQuTFXM6bUqM62uJGY4BtTf0yzPl8/3+bHMWkgIe0Z6m8e+gJgjWxefGRVfpE3VcdEg==} peerDependencies: @@ -16462,16 +16505,16 @@ packages: peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - react-stately@3.31.0: - resolution: {integrity: sha512-G6y7t6qpP3LU4mLM2RlRTgdW5eiZrR2yB0XZbLo8qVplazxyRzlDJRBdE8OBTpw2SO1q5Auub3NOTH3vH0qCHg==} - peerDependencies: - react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 - react-stately@3.31.1: resolution: {integrity: sha512-wuq673NHkYSdoceGryjtMJJvB9iQgyDkQDsnTN0t2v91pXjGDsN/EcOvnUrxXSBtY9eLdIw74R54z9GX5cJNEg==} peerDependencies: react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 + react-stately@3.33.0: + resolution: {integrity: sha512-DNPOxYAPuhuXwSuE1s1K7iSgqG2QOBUZq3bsLAd4gUUZje6Qepkhe7TzK2LWarQYAZ3gC9Xhmnz8ie1fdCo0GA==} + peerDependencies: + react: ^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0 + react-test-renderer@18.2.0: resolution: {integrity: sha512-JWD+aQ0lh2gvh4NM3bBM42Kx+XybOxCpgYK7F8ugAlpaTSnWsX+39Z4XkOykGZAHrjwwTZT3x3KxswVWxHPUqA==} peerDependencies: @@ -21060,11 +21103,11 @@ snapshots: dependencies: '@swc/helpers': 0.5.10 - '@internationalized/date@3.5.3': + '@internationalized/date@3.5.4': dependencies: '@swc/helpers': 0.5.10 - '@internationalized/date@3.5.4': + '@internationalized/date@3.5.6': dependencies: '@swc/helpers': 0.5.10 @@ -21073,12 +21116,12 @@ snapshots: '@swc/helpers': 0.5.10 intl-messageformat: 10.5.11 - '@internationalized/message@3.1.3': + '@internationalized/message@3.1.4': dependencies: '@swc/helpers': 0.5.10 intl-messageformat: 10.5.11 - '@internationalized/message@3.1.4': + '@internationalized/message@3.1.5': dependencies: '@swc/helpers': 0.5.10 intl-messageformat: 10.5.11 @@ -21087,11 +21130,11 @@ snapshots: dependencies: '@swc/helpers': 0.5.10 - '@internationalized/number@3.5.2': + '@internationalized/number@3.5.3': dependencies: '@swc/helpers': 0.5.10 - '@internationalized/number@3.5.3': + '@internationalized/number@3.5.4': dependencies: '@swc/helpers': 0.5.10 @@ -21099,11 +21142,11 @@ snapshots: dependencies: '@swc/helpers': 0.5.10 - '@internationalized/string@3.2.2': + '@internationalized/string@3.2.3': dependencies: '@swc/helpers': 0.5.10 - '@internationalized/string@3.2.3': + '@internationalized/string@3.2.4': dependencies: '@swc/helpers': 0.5.10 @@ -23115,33 +23158,56 @@ snapshots: optionalDependencies: '@types/react': 18.2.79 - '@react-aria/breadcrumbs@3.5.11(react@18.2.0)': + '@react-aria/accordion@3.0.0-alpha.34(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - '@react-aria/i18n': 3.10.2(react@18.2.0) - '@react-aria/link': 3.6.5(react@18.2.0) - '@react-aria/utils': 3.23.2(react@18.2.0) - '@react-types/breadcrumbs': 3.7.3(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) + '@react-aria/button': 3.10.0(react@18.2.0) + '@react-aria/selection': 3.20.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@react-aria/utils': 3.25.3(react@18.2.0) + '@react-stately/tree': 3.8.5(react@18.2.0) + '@react-types/accordion': 3.0.0-alpha.24(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) - '@react-aria/breadcrumbs@3.5.12(react@18.2.0)': + '@react-aria/breadcrumbs@3.5.11(react@18.2.0)': dependencies: - '@react-aria/i18n': 3.11.0(react@18.2.0) - '@react-aria/link': 3.7.0(react@18.2.0) - '@react-aria/utils': 3.24.0(react@18.2.0) - '@react-types/breadcrumbs': 3.7.4(react@18.2.0) - '@react-types/shared': 3.23.0(react@18.2.0) + '@react-aria/i18n': 3.12.3(react@18.2.0) + '@react-aria/link': 3.6.5(react@18.2.0) + '@react-aria/utils': 3.25.3(react@18.2.0) + '@react-types/breadcrumbs': 3.7.3(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 '@react-aria/breadcrumbs@3.5.13(react@18.2.0)': dependencies: - '@react-aria/i18n': 3.11.1(react@18.2.0) + '@react-aria/i18n': 3.12.3(react@18.2.0) '@react-aria/link': 3.7.1(react@18.2.0) - '@react-aria/utils': 3.24.1(react@18.2.0) + '@react-aria/utils': 3.25.3(react@18.2.0) '@react-types/breadcrumbs': 3.7.5(react@18.2.0) - '@react-types/shared': 3.23.1(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) + '@swc/helpers': 0.5.10 + react: 18.2.0 + + '@react-aria/breadcrumbs@3.5.17(react@18.2.0)': + dependencies: + '@react-aria/i18n': 3.12.3(react@18.2.0) + '@react-aria/link': 3.7.5(react@18.2.0) + '@react-aria/utils': 3.25.3(react@18.2.0) + '@react-types/breadcrumbs': 3.7.8(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) + '@swc/helpers': 0.5.10 + react: 18.2.0 + + '@react-aria/button@3.10.0(react@18.2.0)': + dependencies: + '@react-aria/focus': 3.18.3(react@18.2.0) + '@react-aria/interactions': 3.22.3(react@18.2.0) + '@react-aria/utils': 3.25.3(react@18.2.0) + '@react-stately/toggle': 3.7.8(react@18.2.0) + '@react-types/button': 3.10.0(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 @@ -23149,21 +23215,10 @@ snapshots: dependencies: '@react-aria/focus': 3.16.2(react@18.2.0) '@react-aria/interactions': 3.21.1(react@18.2.0) - '@react-aria/utils': 3.23.2(react@18.2.0) + '@react-aria/utils': 3.25.3(react@18.2.0) '@react-stately/toggle': 3.7.2(react@18.2.0) '@react-types/button': 3.9.2(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) - '@swc/helpers': 0.5.10 - react: 18.2.0 - - '@react-aria/button@3.9.4(react@18.2.0)': - dependencies: - '@react-aria/focus': 3.17.0(react@18.2.0) - '@react-aria/interactions': 3.21.2(react@18.2.0) - '@react-aria/utils': 3.24.0(react@18.2.0) - '@react-stately/toggle': 3.7.3(react@18.2.0) - '@react-types/button': 3.9.3(react@18.2.0) - '@react-types/shared': 3.23.0(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 @@ -23171,39 +23226,39 @@ snapshots: dependencies: '@react-aria/focus': 3.17.1(react@18.2.0) '@react-aria/interactions': 3.21.3(react@18.2.0) - '@react-aria/utils': 3.24.1(react@18.2.0) + '@react-aria/utils': 3.25.3(react@18.2.0) '@react-stately/toggle': 3.7.4(react@18.2.0) '@react-types/button': 3.9.4(react@18.2.0) - '@react-types/shared': 3.23.1(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 + '@react-aria/calendar@3.5.12(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + dependencies: + '@internationalized/date': 3.5.6 + '@react-aria/i18n': 3.12.3(react@18.2.0) + '@react-aria/interactions': 3.22.3(react@18.2.0) + '@react-aria/live-announcer': 3.4.0 + '@react-aria/utils': 3.25.3(react@18.2.0) + '@react-stately/calendar': 3.5.5(react@18.2.0) + '@react-types/button': 3.10.0(react@18.2.0) + '@react-types/calendar': 3.4.10(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) + '@swc/helpers': 0.5.10 + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) + '@react-aria/calendar@3.5.6(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: '@internationalized/date': 3.5.2 - '@react-aria/i18n': 3.10.2(react@18.2.0) + '@react-aria/i18n': 3.12.3(react@18.2.0) '@react-aria/interactions': 3.21.1(react@18.2.0) '@react-aria/live-announcer': 3.3.2 - '@react-aria/utils': 3.23.2(react@18.2.0) + '@react-aria/utils': 3.25.3(react@18.2.0) '@react-stately/calendar': 3.4.4(react@18.2.0) '@react-types/button': 3.9.2(react@18.2.0) '@react-types/calendar': 3.4.4(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) - '@swc/helpers': 0.5.10 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - - '@react-aria/calendar@3.5.7(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': - dependencies: - '@internationalized/date': 3.5.3 - '@react-aria/i18n': 3.11.0(react@18.2.0) - '@react-aria/interactions': 3.21.2(react@18.2.0) - '@react-aria/live-announcer': 3.3.3 - '@react-aria/utils': 3.24.0(react@18.2.0) - '@react-stately/calendar': 3.5.0(react@18.2.0) - '@react-types/button': 3.9.3(react@18.2.0) - '@react-types/calendar': 3.4.5(react@18.2.0) - '@react-types/shared': 3.23.0(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) @@ -23211,14 +23266,14 @@ snapshots: '@react-aria/calendar@3.5.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: '@internationalized/date': 3.5.4 - '@react-aria/i18n': 3.11.1(react@18.2.0) + '@react-aria/i18n': 3.12.3(react@18.2.0) '@react-aria/interactions': 3.21.3(react@18.2.0) '@react-aria/live-announcer': 3.3.4 - '@react-aria/utils': 3.24.1(react@18.2.0) + '@react-aria/utils': 3.25.3(react@18.2.0) '@react-stately/calendar': 3.5.1(react@18.2.0) '@react-types/button': 3.9.4(react@18.2.0) '@react-types/calendar': 3.4.6(react@18.2.0) - '@react-types/shared': 3.23.1(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) @@ -23229,27 +23284,12 @@ snapshots: '@react-aria/interactions': 3.21.1(react@18.2.0) '@react-aria/label': 3.7.6(react@18.2.0) '@react-aria/toggle': 3.10.2(react@18.2.0) - '@react-aria/utils': 3.23.2(react@18.2.0) + '@react-aria/utils': 3.25.3(react@18.2.0) '@react-stately/checkbox': 3.6.3(react@18.2.0) '@react-stately/form': 3.0.1(react@18.2.0) '@react-stately/toggle': 3.7.2(react@18.2.0) '@react-types/checkbox': 3.7.1(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) - '@swc/helpers': 0.5.10 - react: 18.2.0 - - '@react-aria/checkbox@3.14.2(react@18.2.0)': - dependencies: - '@react-aria/form': 3.0.4(react@18.2.0) - '@react-aria/interactions': 3.21.2(react@18.2.0) - '@react-aria/label': 3.7.7(react@18.2.0) - '@react-aria/toggle': 3.10.3(react@18.2.0) - '@react-aria/utils': 3.24.0(react@18.2.0) - '@react-stately/checkbox': 3.6.4(react@18.2.0) - '@react-stately/form': 3.0.2(react@18.2.0) - '@react-stately/toggle': 3.7.3(react@18.2.0) - '@react-types/checkbox': 3.8.0(react@18.2.0) - '@react-types/shared': 3.23.0(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 @@ -23259,29 +23299,54 @@ snapshots: '@react-aria/interactions': 3.21.3(react@18.2.0) '@react-aria/label': 3.7.8(react@18.2.0) '@react-aria/toggle': 3.10.4(react@18.2.0) - '@react-aria/utils': 3.24.1(react@18.2.0) + '@react-aria/utils': 3.25.3(react@18.2.0) '@react-stately/checkbox': 3.6.5(react@18.2.0) '@react-stately/form': 3.0.3(react@18.2.0) '@react-stately/toggle': 3.7.4(react@18.2.0) '@react-types/checkbox': 3.8.1(react@18.2.0) - '@react-types/shared': 3.23.1(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 - '@react-aria/color@3.0.0-beta.32(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': - dependencies: - '@react-aria/i18n': 3.11.0(react@18.2.0) - '@react-aria/interactions': 3.21.2(react@18.2.0) - '@react-aria/numberfield': 3.11.2(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/slider': 3.7.7(react@18.2.0) - '@react-aria/spinbutton': 3.6.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/textfield': 3.14.4(react@18.2.0) - '@react-aria/utils': 3.24.0(react@18.2.0) - '@react-aria/visually-hidden': 3.8.11(react@18.2.0) - '@react-stately/color': 3.6.0(react@18.2.0) - '@react-stately/form': 3.0.2(react@18.2.0) - '@react-types/color': 3.0.0-beta.24(react@18.2.0) - '@react-types/shared': 3.23.0(react@18.2.0) + '@react-aria/checkbox@3.14.7(react@18.2.0)': + dependencies: + '@react-aria/form': 3.0.9(react@18.2.0) + '@react-aria/interactions': 3.22.3(react@18.2.0) + '@react-aria/label': 3.7.12(react@18.2.0) + '@react-aria/toggle': 3.10.8(react@18.2.0) + '@react-aria/utils': 3.25.3(react@18.2.0) + '@react-stately/checkbox': 3.6.9(react@18.2.0) + '@react-stately/form': 3.0.6(react@18.2.0) + '@react-stately/toggle': 3.7.8(react@18.2.0) + '@react-types/checkbox': 3.8.4(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) + '@swc/helpers': 0.5.10 + react: 18.2.0 + + '@react-aria/collections@3.0.0-alpha.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + dependencies: + '@react-aria/ssr': 3.9.6(react@18.2.0) + '@react-aria/utils': 3.25.3(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) + '@swc/helpers': 0.5.10 + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) + use-sync-external-store: 1.2.0(react@18.2.0) + + '@react-aria/color@3.0.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + dependencies: + '@react-aria/i18n': 3.12.3(react@18.2.0) + '@react-aria/interactions': 3.22.3(react@18.2.0) + '@react-aria/numberfield': 3.11.7(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@react-aria/slider': 3.7.12(react@18.2.0) + '@react-aria/spinbutton': 3.6.9(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@react-aria/textfield': 3.14.9(react@18.2.0) + '@react-aria/utils': 3.25.3(react@18.2.0) + '@react-aria/visually-hidden': 3.8.16(react@18.2.0) + '@react-stately/color': 3.8.0(react@18.2.0) + '@react-stately/form': 3.0.6(react@18.2.0) + '@react-types/color': 3.0.0(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) @@ -23294,7 +23359,7 @@ snapshots: '@react-aria/slider': 3.7.8(react@18.2.0) '@react-aria/spinbutton': 3.6.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@react-aria/textfield': 3.14.5(react@18.2.0) - '@react-aria/utils': 3.24.1(react@18.2.0) + '@react-aria/utils': 3.25.3(react@18.2.0) '@react-aria/visually-hidden': 3.8.12(react@18.2.0) '@react-stately/color': 3.6.1(react@18.2.0) '@react-stately/form': 3.0.3(react@18.2.0) @@ -23304,85 +23369,62 @@ snapshots: react: 18.2.0 react-dom: 18.2.0(react@18.2.0) + '@react-aria/combobox@3.10.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + dependencies: + '@react-aria/i18n': 3.12.3(react@18.2.0) + '@react-aria/listbox': 3.13.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@react-aria/live-announcer': 3.4.0 + '@react-aria/menu': 3.15.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@react-aria/overlays': 3.23.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@react-aria/selection': 3.20.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@react-aria/textfield': 3.14.9(react@18.2.0) + '@react-aria/utils': 3.25.3(react@18.2.0) + '@react-stately/collections': 3.11.0(react@18.2.0) + '@react-stately/combobox': 3.10.0(react@18.2.0) + '@react-stately/form': 3.0.6(react@18.2.0) + '@react-types/button': 3.10.0(react@18.2.0) + '@react-types/combobox': 3.13.0(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) + '@swc/helpers': 0.5.10 + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) + '@react-aria/combobox@3.8.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - '@react-aria/i18n': 3.10.2(react@18.2.0) + '@react-aria/i18n': 3.12.3(react@18.2.0) '@react-aria/listbox': 3.11.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@react-aria/live-announcer': 3.3.2 '@react-aria/menu': 3.13.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@react-aria/overlays': 3.21.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@react-aria/selection': 3.17.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@react-aria/textfield': 3.14.3(react@18.2.0) - '@react-aria/utils': 3.23.2(react@18.2.0) + '@react-aria/utils': 3.25.3(react@18.2.0) '@react-stately/collections': 3.10.5(react@18.2.0) '@react-stately/combobox': 3.8.2(react@18.2.0) '@react-stately/form': 3.0.1(react@18.2.0) '@react-types/button': 3.9.2(react@18.2.0) '@react-types/combobox': 3.10.1(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) - '@swc/helpers': 0.5.10 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - - '@react-aria/combobox@3.9.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': - dependencies: - '@react-aria/i18n': 3.11.0(react@18.2.0) - '@react-aria/listbox': 3.12.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/live-announcer': 3.3.3 - '@react-aria/menu': 3.14.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/overlays': 3.22.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/selection': 3.18.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/textfield': 3.14.4(react@18.2.0) - '@react-aria/utils': 3.24.0(react@18.2.0) - '@react-stately/collections': 3.10.6(react@18.2.0) - '@react-stately/combobox': 3.8.3(react@18.2.0) - '@react-stately/form': 3.0.2(react@18.2.0) - '@react-types/button': 3.9.3(react@18.2.0) - '@react-types/combobox': 3.11.0(react@18.2.0) - '@react-types/shared': 3.23.0(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) '@react-aria/combobox@3.9.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - '@react-aria/i18n': 3.11.1(react@18.2.0) + '@react-aria/i18n': 3.12.3(react@18.2.0) '@react-aria/listbox': 3.12.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@react-aria/live-announcer': 3.3.4 '@react-aria/menu': 3.14.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@react-aria/overlays': 3.22.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@react-aria/selection': 3.18.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@react-aria/textfield': 3.14.5(react@18.2.0) - '@react-aria/utils': 3.24.1(react@18.2.0) + '@react-aria/utils': 3.25.3(react@18.2.0) '@react-stately/collections': 3.10.7(react@18.2.0) '@react-stately/combobox': 3.8.4(react@18.2.0) '@react-stately/form': 3.0.3(react@18.2.0) '@react-types/button': 3.9.4(react@18.2.0) '@react-types/combobox': 3.11.1(react@18.2.0) - '@react-types/shared': 3.23.1(react@18.2.0) - '@swc/helpers': 0.5.10 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - - '@react-aria/datepicker@3.10.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': - dependencies: - '@internationalized/date': 3.5.3 - '@internationalized/number': 3.5.2 - '@internationalized/string': 3.2.2 - '@react-aria/focus': 3.17.0(react@18.2.0) - '@react-aria/form': 3.0.4(react@18.2.0) - '@react-aria/i18n': 3.11.0(react@18.2.0) - '@react-aria/interactions': 3.21.2(react@18.2.0) - '@react-aria/label': 3.7.7(react@18.2.0) - '@react-aria/spinbutton': 3.6.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/utils': 3.24.0(react@18.2.0) - '@react-stately/datepicker': 3.9.3(react@18.2.0) - '@react-stately/form': 3.0.2(react@18.2.0) - '@react-types/button': 3.9.3(react@18.2.0) - '@react-types/calendar': 3.4.5(react@18.2.0) - '@react-types/datepicker': 3.7.3(react@18.2.0) - '@react-types/dialog': 3.5.9(react@18.2.0) - '@react-types/shared': 3.23.0(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) @@ -23394,18 +23436,41 @@ snapshots: '@internationalized/string': 3.2.3 '@react-aria/focus': 3.17.1(react@18.2.0) '@react-aria/form': 3.0.5(react@18.2.0) - '@react-aria/i18n': 3.11.1(react@18.2.0) + '@react-aria/i18n': 3.12.3(react@18.2.0) '@react-aria/interactions': 3.21.3(react@18.2.0) '@react-aria/label': 3.7.8(react@18.2.0) '@react-aria/spinbutton': 3.6.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/utils': 3.24.1(react@18.2.0) + '@react-aria/utils': 3.25.3(react@18.2.0) '@react-stately/datepicker': 3.9.4(react@18.2.0) '@react-stately/form': 3.0.3(react@18.2.0) '@react-types/button': 3.9.4(react@18.2.0) '@react-types/calendar': 3.4.6(react@18.2.0) '@react-types/datepicker': 3.7.4(react@18.2.0) '@react-types/dialog': 3.5.10(react@18.2.0) - '@react-types/shared': 3.23.1(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) + '@swc/helpers': 0.5.10 + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) + + '@react-aria/datepicker@3.11.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + dependencies: + '@internationalized/date': 3.5.6 + '@internationalized/number': 3.5.4 + '@internationalized/string': 3.2.4 + '@react-aria/focus': 3.18.3(react@18.2.0) + '@react-aria/form': 3.0.9(react@18.2.0) + '@react-aria/i18n': 3.12.3(react@18.2.0) + '@react-aria/interactions': 3.22.3(react@18.2.0) + '@react-aria/label': 3.7.12(react@18.2.0) + '@react-aria/spinbutton': 3.6.9(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@react-aria/utils': 3.25.3(react@18.2.0) + '@react-stately/datepicker': 3.10.3(react@18.2.0) + '@react-stately/form': 3.0.6(react@18.2.0) + '@react-types/button': 3.10.0(react@18.2.0) + '@react-types/calendar': 3.4.10(react@18.2.0) + '@react-types/datepicker': 3.8.3(react@18.2.0) + '@react-types/dialog': 3.5.13(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) @@ -23417,18 +23482,18 @@ snapshots: '@internationalized/string': 3.2.1 '@react-aria/focus': 3.16.2(react@18.2.0) '@react-aria/form': 3.0.3(react@18.2.0) - '@react-aria/i18n': 3.10.2(react@18.2.0) + '@react-aria/i18n': 3.12.3(react@18.2.0) '@react-aria/interactions': 3.21.1(react@18.2.0) '@react-aria/label': 3.7.6(react@18.2.0) '@react-aria/spinbutton': 3.6.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/utils': 3.23.2(react@18.2.0) + '@react-aria/utils': 3.25.3(react@18.2.0) '@react-stately/datepicker': 3.9.2(react@18.2.0) '@react-stately/form': 3.0.1(react@18.2.0) '@react-types/button': 3.9.2(react@18.2.0) '@react-types/calendar': 3.4.4(react@18.2.0) '@react-types/datepicker': 3.7.2(react@18.2.0) '@react-types/dialog': 3.5.8(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) @@ -23437,31 +23502,46 @@ snapshots: dependencies: '@react-aria/focus': 3.16.2(react@18.2.0) '@react-aria/overlays': 3.21.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/utils': 3.23.2(react@18.2.0) + '@react-aria/utils': 3.25.3(react@18.2.0) '@react-types/dialog': 3.5.8(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - '@react-aria/dialog@3.5.13(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@react-aria/dialog@3.5.14(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - '@react-aria/focus': 3.17.0(react@18.2.0) - '@react-aria/overlays': 3.22.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/utils': 3.24.0(react@18.2.0) - '@react-types/dialog': 3.5.9(react@18.2.0) - '@react-types/shared': 3.23.0(react@18.2.0) + '@react-aria/focus': 3.17.1(react@18.2.0) + '@react-aria/overlays': 3.22.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@react-aria/utils': 3.25.3(react@18.2.0) + '@react-types/dialog': 3.5.10(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - '@react-aria/dialog@3.5.14(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@react-aria/dialog@3.5.18(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - '@react-aria/focus': 3.17.1(react@18.2.0) - '@react-aria/overlays': 3.22.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/utils': 3.24.1(react@18.2.0) - '@react-types/dialog': 3.5.10(react@18.2.0) - '@react-types/shared': 3.23.1(react@18.2.0) + '@react-aria/focus': 3.18.3(react@18.2.0) + '@react-aria/overlays': 3.23.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@react-aria/utils': 3.25.3(react@18.2.0) + '@react-types/dialog': 3.5.13(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) + '@swc/helpers': 0.5.10 + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) + + '@react-aria/disclosure@3.0.0-alpha.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + dependencies: + '@react-aria/button': 3.10.0(react@18.2.0) + '@react-aria/selection': 3.20.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@react-aria/ssr': 3.9.6(react@18.2.0) + '@react-aria/utils': 3.25.3(react@18.2.0) + '@react-stately/disclosure': 3.0.0-alpha.0(react@18.2.0) + '@react-stately/toggle': 3.7.8(react@18.2.0) + '@react-stately/tree': 3.8.5(react@18.2.0) + '@react-types/button': 3.10.0(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) @@ -23469,29 +23549,14 @@ snapshots: '@react-aria/dnd@3.5.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: '@internationalized/string': 3.2.1 - '@react-aria/i18n': 3.10.2(react@18.2.0) + '@react-aria/i18n': 3.12.3(react@18.2.0) '@react-aria/interactions': 3.21.1(react@18.2.0) '@react-aria/live-announcer': 3.3.2 '@react-aria/overlays': 3.21.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/utils': 3.23.2(react@18.2.0) + '@react-aria/utils': 3.25.3(react@18.2.0) '@react-stately/dnd': 3.2.8(react@18.2.0) '@react-types/button': 3.9.2(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) - '@swc/helpers': 0.5.10 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - - '@react-aria/dnd@3.6.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': - dependencies: - '@internationalized/string': 3.2.2 - '@react-aria/i18n': 3.11.0(react@18.2.0) - '@react-aria/interactions': 3.21.2(react@18.2.0) - '@react-aria/live-announcer': 3.3.3 - '@react-aria/overlays': 3.22.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/utils': 3.24.0(react@18.2.0) - '@react-stately/dnd': 3.3.0(react@18.2.0) - '@react-types/button': 3.9.3(react@18.2.0) - '@react-types/shared': 3.23.0(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) @@ -23499,14 +23564,29 @@ snapshots: '@react-aria/dnd@3.6.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: '@internationalized/string': 3.2.3 - '@react-aria/i18n': 3.11.1(react@18.2.0) + '@react-aria/i18n': 3.12.3(react@18.2.0) '@react-aria/interactions': 3.21.3(react@18.2.0) '@react-aria/live-announcer': 3.3.4 '@react-aria/overlays': 3.22.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/utils': 3.24.1(react@18.2.0) + '@react-aria/utils': 3.25.3(react@18.2.0) '@react-stately/dnd': 3.3.1(react@18.2.0) '@react-types/button': 3.9.4(react@18.2.0) - '@react-types/shared': 3.23.1(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) + '@swc/helpers': 0.5.10 + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) + + '@react-aria/dnd@3.7.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + dependencies: + '@internationalized/string': 3.2.4 + '@react-aria/i18n': 3.12.3(react@18.2.0) + '@react-aria/interactions': 3.22.3(react@18.2.0) + '@react-aria/live-announcer': 3.4.0 + '@react-aria/overlays': 3.23.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@react-aria/utils': 3.25.3(react@18.2.0) + '@react-stately/dnd': 3.4.3(react@18.2.0) + '@react-types/button': 3.10.0(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) @@ -23514,91 +23594,90 @@ snapshots: '@react-aria/focus@3.16.2(react@18.2.0)': dependencies: '@react-aria/interactions': 3.21.1(react@18.2.0) - '@react-aria/utils': 3.23.2(react@18.2.0) + '@react-aria/utils': 3.25.3(react@18.2.0) '@react-types/shared': 3.22.1(react@18.2.0) '@swc/helpers': 0.5.10 - clsx: 2.1.0 + clsx: 2.1.1 react: 18.2.0 - '@react-aria/focus@3.17.0(react@18.2.0)': + '@react-aria/focus@3.17.1(react@18.2.0)': dependencies: - '@react-aria/interactions': 3.21.2(react@18.2.0) - '@react-aria/utils': 3.24.0(react@18.2.0) - '@react-types/shared': 3.23.0(react@18.2.0) + '@react-aria/interactions': 3.21.3(react@18.2.0) + '@react-aria/utils': 3.25.3(react@18.2.0) + '@react-types/shared': 3.23.1(react@18.2.0) '@swc/helpers': 0.5.10 - clsx: 2.1.0 + clsx: 2.1.1 react: 18.2.0 - '@react-aria/focus@3.17.1(react@18.2.0)': + '@react-aria/focus@3.18.3(react@18.2.0)': dependencies: - '@react-aria/interactions': 3.21.3(react@18.2.0) - '@react-aria/utils': 3.24.1(react@18.2.0) - '@react-types/shared': 3.23.1(react@18.2.0) + '@react-aria/interactions': 3.22.3(react@18.2.0) + '@react-aria/utils': 3.25.3(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) '@swc/helpers': 0.5.10 - clsx: 2.1.0 + clsx: 2.1.1 react: 18.2.0 '@react-aria/form@3.0.3(react@18.2.0)': dependencies: '@react-aria/interactions': 3.21.1(react@18.2.0) - '@react-aria/utils': 3.23.2(react@18.2.0) + '@react-aria/utils': 3.25.3(react@18.2.0) '@react-stately/form': 3.0.1(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 - '@react-aria/form@3.0.4(react@18.2.0)': + '@react-aria/form@3.0.5(react@18.2.0)': dependencies: - '@react-aria/interactions': 3.21.2(react@18.2.0) - '@react-aria/utils': 3.24.0(react@18.2.0) - '@react-stately/form': 3.0.2(react@18.2.0) - '@react-types/shared': 3.23.0(react@18.2.0) + '@react-aria/interactions': 3.21.3(react@18.2.0) + '@react-aria/utils': 3.25.3(react@18.2.0) + '@react-stately/form': 3.0.3(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 - '@react-aria/form@3.0.5(react@18.2.0)': + '@react-aria/form@3.0.9(react@18.2.0)': dependencies: - '@react-aria/interactions': 3.21.3(react@18.2.0) - '@react-aria/utils': 3.24.1(react@18.2.0) - '@react-stately/form': 3.0.3(react@18.2.0) - '@react-types/shared': 3.23.1(react@18.2.0) + '@react-aria/interactions': 3.22.3(react@18.2.0) + '@react-aria/utils': 3.25.3(react@18.2.0) + '@react-stately/form': 3.0.6(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 + '@react-aria/grid@3.10.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + dependencies: + '@react-aria/focus': 3.18.3(react@18.2.0) + '@react-aria/i18n': 3.12.3(react@18.2.0) + '@react-aria/interactions': 3.22.3(react@18.2.0) + '@react-aria/live-announcer': 3.4.0 + '@react-aria/selection': 3.20.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@react-aria/utils': 3.25.3(react@18.2.0) + '@react-stately/collections': 3.11.0(react@18.2.0) + '@react-stately/grid': 3.9.3(react@18.2.0) + '@react-stately/selection': 3.17.0(react@18.2.0) + '@react-types/checkbox': 3.8.4(react@18.2.0) + '@react-types/grid': 3.2.9(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) + '@swc/helpers': 0.5.10 + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) + '@react-aria/grid@3.8.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: '@react-aria/focus': 3.16.2(react@18.2.0) - '@react-aria/i18n': 3.10.2(react@18.2.0) + '@react-aria/i18n': 3.12.3(react@18.2.0) '@react-aria/interactions': 3.21.1(react@18.2.0) '@react-aria/live-announcer': 3.3.2 '@react-aria/selection': 3.17.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/utils': 3.23.2(react@18.2.0) + '@react-aria/utils': 3.25.3(react@18.2.0) '@react-stately/collections': 3.10.5(react@18.2.0) '@react-stately/grid': 3.8.5(react@18.2.0) '@react-stately/selection': 3.14.3(react@18.2.0) '@react-stately/virtualizer': 3.6.8(react@18.2.0) '@react-types/checkbox': 3.7.1(react@18.2.0) '@react-types/grid': 3.2.4(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) - '@swc/helpers': 0.5.10 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - - '@react-aria/grid@3.9.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': - dependencies: - '@react-aria/focus': 3.17.0(react@18.2.0) - '@react-aria/i18n': 3.11.0(react@18.2.0) - '@react-aria/interactions': 3.21.2(react@18.2.0) - '@react-aria/live-announcer': 3.3.3 - '@react-aria/selection': 3.18.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/utils': 3.24.0(react@18.2.0) - '@react-stately/collections': 3.10.6(react@18.2.0) - '@react-stately/grid': 3.8.6(react@18.2.0) - '@react-stately/selection': 3.15.0(react@18.2.0) - '@react-stately/virtualizer': 3.7.0(react@18.2.0) - '@react-types/checkbox': 3.8.0(react@18.2.0) - '@react-types/grid': 3.2.5(react@18.2.0) - '@react-types/shared': 3.23.0(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) @@ -23606,18 +23685,18 @@ snapshots: '@react-aria/grid@3.9.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: '@react-aria/focus': 3.17.1(react@18.2.0) - '@react-aria/i18n': 3.11.1(react@18.2.0) + '@react-aria/i18n': 3.12.3(react@18.2.0) '@react-aria/interactions': 3.21.3(react@18.2.0) '@react-aria/live-announcer': 3.3.4 '@react-aria/selection': 3.18.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/utils': 3.24.1(react@18.2.0) + '@react-aria/utils': 3.25.3(react@18.2.0) '@react-stately/collections': 3.10.7(react@18.2.0) '@react-stately/grid': 3.8.7(react@18.2.0) '@react-stately/selection': 3.15.1(react@18.2.0) '@react-stately/virtualizer': 3.7.1(react@18.2.0) '@react-types/checkbox': 3.8.1(react@18.2.0) '@react-types/grid': 3.2.6(react@18.2.0) - '@react-types/shared': 3.23.1(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) @@ -23626,28 +23705,12 @@ snapshots: dependencies: '@react-aria/focus': 3.16.2(react@18.2.0) '@react-aria/grid': 3.8.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/i18n': 3.10.2(react@18.2.0) + '@react-aria/i18n': 3.12.3(react@18.2.0) '@react-aria/interactions': 3.21.1(react@18.2.0) '@react-aria/selection': 3.17.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/utils': 3.23.2(react@18.2.0) + '@react-aria/utils': 3.25.3(react@18.2.0) '@react-stately/list': 3.10.3(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) - '@swc/helpers': 0.5.10 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - - '@react-aria/gridlist@3.8.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': - dependencies: - '@react-aria/focus': 3.17.0(react@18.2.0) - '@react-aria/grid': 3.9.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/i18n': 3.11.0(react@18.2.0) - '@react-aria/interactions': 3.21.2(react@18.2.0) - '@react-aria/selection': 3.18.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/utils': 3.24.0(react@18.2.0) - '@react-stately/collections': 3.10.6(react@18.2.0) - '@react-stately/list': 3.10.4(react@18.2.0) - '@react-stately/tree': 3.8.0(react@18.2.0) - '@react-types/shared': 3.23.0(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) @@ -23656,14 +23719,30 @@ snapshots: dependencies: '@react-aria/focus': 3.17.1(react@18.2.0) '@react-aria/grid': 3.9.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/i18n': 3.11.1(react@18.2.0) + '@react-aria/i18n': 3.12.3(react@18.2.0) '@react-aria/interactions': 3.21.3(react@18.2.0) '@react-aria/selection': 3.18.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/utils': 3.24.1(react@18.2.0) + '@react-aria/utils': 3.25.3(react@18.2.0) '@react-stately/collections': 3.10.7(react@18.2.0) '@react-stately/list': 3.10.5(react@18.2.0) '@react-stately/tree': 3.8.1(react@18.2.0) - '@react-types/shared': 3.23.1(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) + '@swc/helpers': 0.5.10 + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) + + '@react-aria/gridlist@3.9.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + dependencies: + '@react-aria/focus': 3.18.3(react@18.2.0) + '@react-aria/grid': 3.10.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@react-aria/i18n': 3.12.3(react@18.2.0) + '@react-aria/interactions': 3.22.3(react@18.2.0) + '@react-aria/selection': 3.20.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@react-aria/utils': 3.25.3(react@18.2.0) + '@react-stately/collections': 3.11.0(react@18.2.0) + '@react-stately/list': 3.11.0(react@18.2.0) + '@react-stately/tree': 3.8.5(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) @@ -23674,21 +23753,9 @@ snapshots: '@internationalized/message': 3.1.2 '@internationalized/number': 3.5.1 '@internationalized/string': 3.2.1 - '@react-aria/ssr': 3.9.2(react@18.2.0) - '@react-aria/utils': 3.23.2(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) - '@swc/helpers': 0.5.10 - react: 18.2.0 - - '@react-aria/i18n@3.11.0(react@18.2.0)': - dependencies: - '@internationalized/date': 3.5.3 - '@internationalized/message': 3.1.3 - '@internationalized/number': 3.5.2 - '@internationalized/string': 3.2.2 - '@react-aria/ssr': 3.9.3(react@18.2.0) - '@react-aria/utils': 3.24.0(react@18.2.0) - '@react-types/shared': 3.23.0(react@18.2.0) + '@react-aria/ssr': 3.9.6(react@18.2.0) + '@react-aria/utils': 3.25.3(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 @@ -23698,54 +23765,66 @@ snapshots: '@internationalized/message': 3.1.4 '@internationalized/number': 3.5.3 '@internationalized/string': 3.2.3 - '@react-aria/ssr': 3.9.4(react@18.2.0) - '@react-aria/utils': 3.24.1(react@18.2.0) - '@react-types/shared': 3.23.1(react@18.2.0) + '@react-aria/ssr': 3.9.6(react@18.2.0) + '@react-aria/utils': 3.25.3(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 - '@react-aria/interactions@3.21.1(react@18.2.0)': + '@react-aria/i18n@3.12.3(react@18.2.0)': dependencies: - '@react-aria/ssr': 3.9.2(react@18.2.0) - '@react-aria/utils': 3.23.2(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) + '@internationalized/date': 3.5.6 + '@internationalized/message': 3.1.5 + '@internationalized/number': 3.5.4 + '@internationalized/string': 3.2.4 + '@react-aria/ssr': 3.9.6(react@18.2.0) + '@react-aria/utils': 3.25.3(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 - '@react-aria/interactions@3.21.2(react@18.2.0)': + '@react-aria/interactions@3.21.1(react@18.2.0)': dependencies: - '@react-aria/ssr': 3.9.3(react@18.2.0) - '@react-aria/utils': 3.24.0(react@18.2.0) - '@react-types/shared': 3.23.0(react@18.2.0) + '@react-aria/ssr': 3.9.2(react@18.2.0) + '@react-aria/utils': 3.25.3(react@18.2.0) + '@react-types/shared': 3.22.1(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 '@react-aria/interactions@3.21.3(react@18.2.0)': dependencies: '@react-aria/ssr': 3.9.4(react@18.2.0) - '@react-aria/utils': 3.24.1(react@18.2.0) + '@react-aria/utils': 3.25.3(react@18.2.0) '@react-types/shared': 3.23.1(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 - '@react-aria/label@3.7.6(react@18.2.0)': + '@react-aria/interactions@3.22.3(react@18.2.0)': dependencies: - '@react-aria/utils': 3.23.2(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) + '@react-aria/ssr': 3.9.6(react@18.2.0) + '@react-aria/utils': 3.25.3(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) + '@swc/helpers': 0.5.10 + react: 18.2.0 + + '@react-aria/label@3.7.12(react@18.2.0)': + dependencies: + '@react-aria/utils': 3.25.3(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 - '@react-aria/label@3.7.7(react@18.2.0)': + '@react-aria/label@3.7.6(react@18.2.0)': dependencies: - '@react-aria/utils': 3.24.0(react@18.2.0) - '@react-types/shared': 3.23.0(react@18.2.0) + '@react-aria/utils': 3.25.3(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 '@react-aria/label@3.7.8(react@18.2.0)': dependencies: - '@react-aria/utils': 3.24.1(react@18.2.0) - '@react-types/shared': 3.23.1(react@18.2.0) + '@react-aria/utils': 3.25.3(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 @@ -23753,19 +23832,9 @@ snapshots: dependencies: '@react-aria/focus': 3.16.2(react@18.2.0) '@react-aria/interactions': 3.21.1(react@18.2.0) - '@react-aria/utils': 3.23.2(react@18.2.0) + '@react-aria/utils': 3.25.3(react@18.2.0) '@react-types/link': 3.5.3(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) - '@swc/helpers': 0.5.10 - react: 18.2.0 - - '@react-aria/link@3.7.0(react@18.2.0)': - dependencies: - '@react-aria/focus': 3.17.0(react@18.2.0) - '@react-aria/interactions': 3.21.2(react@18.2.0) - '@react-aria/utils': 3.24.0(react@18.2.0) - '@react-types/link': 3.5.4(react@18.2.0) - '@react-types/shared': 3.23.0(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 @@ -23773,9 +23842,19 @@ snapshots: dependencies: '@react-aria/focus': 3.17.1(react@18.2.0) '@react-aria/interactions': 3.21.3(react@18.2.0) - '@react-aria/utils': 3.24.1(react@18.2.0) + '@react-aria/utils': 3.25.3(react@18.2.0) '@react-types/link': 3.5.5(react@18.2.0) - '@react-types/shared': 3.23.1(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) + '@swc/helpers': 0.5.10 + react: 18.2.0 + + '@react-aria/link@3.7.5(react@18.2.0)': + dependencies: + '@react-aria/focus': 3.18.3(react@18.2.0) + '@react-aria/interactions': 3.22.3(react@18.2.0) + '@react-aria/utils': 3.25.3(react@18.2.0) + '@react-types/link': 3.5.8(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 @@ -23784,25 +23863,11 @@ snapshots: '@react-aria/interactions': 3.21.1(react@18.2.0) '@react-aria/label': 3.7.6(react@18.2.0) '@react-aria/selection': 3.17.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/utils': 3.23.2(react@18.2.0) + '@react-aria/utils': 3.25.3(react@18.2.0) '@react-stately/collections': 3.10.5(react@18.2.0) '@react-stately/list': 3.10.3(react@18.2.0) '@react-types/listbox': 3.4.7(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) - '@swc/helpers': 0.5.10 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - - '@react-aria/listbox@3.12.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': - dependencies: - '@react-aria/interactions': 3.21.2(react@18.2.0) - '@react-aria/label': 3.7.7(react@18.2.0) - '@react-aria/selection': 3.18.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/utils': 3.24.0(react@18.2.0) - '@react-stately/collections': 3.10.6(react@18.2.0) - '@react-stately/list': 3.10.4(react@18.2.0) - '@react-types/listbox': 3.4.8(react@18.2.0) - '@react-types/shared': 3.23.0(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) @@ -23812,20 +23877,30 @@ snapshots: '@react-aria/interactions': 3.21.3(react@18.2.0) '@react-aria/label': 3.7.8(react@18.2.0) '@react-aria/selection': 3.18.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/utils': 3.24.1(react@18.2.0) + '@react-aria/utils': 3.25.3(react@18.2.0) '@react-stately/collections': 3.10.7(react@18.2.0) '@react-stately/list': 3.10.5(react@18.2.0) '@react-types/listbox': 3.4.9(react@18.2.0) - '@react-types/shared': 3.23.1(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - '@react-aria/live-announcer@3.3.2': + '@react-aria/listbox@3.13.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: + '@react-aria/interactions': 3.22.3(react@18.2.0) + '@react-aria/label': 3.7.12(react@18.2.0) + '@react-aria/selection': 3.20.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@react-aria/utils': 3.25.3(react@18.2.0) + '@react-stately/collections': 3.11.0(react@18.2.0) + '@react-stately/list': 3.11.0(react@18.2.0) + '@react-types/listbox': 3.5.2(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) '@swc/helpers': 0.5.10 + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) - '@react-aria/live-announcer@3.3.3': + '@react-aria/live-announcer@3.3.2': dependencies: '@swc/helpers': 0.5.10 @@ -23833,6 +23908,10 @@ snapshots: dependencies: '@swc/helpers': 0.5.10 + '@react-aria/live-announcer@3.4.0': + dependencies: + '@swc/helpers': 0.5.10 + '@react-aria/menu@3.13.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: '@react-aria/focus': 3.16.2(react@18.2.0) @@ -23840,7 +23919,7 @@ snapshots: '@react-aria/interactions': 3.21.1(react@18.2.0) '@react-aria/overlays': 3.21.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@react-aria/selection': 3.17.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/utils': 3.23.2(react@18.2.0) + '@react-aria/utils': 3.25.3(react@18.2.0) '@react-stately/collections': 3.10.5(react@18.2.0) '@react-stately/menu': 3.6.1(react@18.2.0) '@react-stately/tree': 3.7.6(react@18.2.0) @@ -23851,24 +23930,6 @@ snapshots: react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - '@react-aria/menu@3.14.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': - dependencies: - '@react-aria/focus': 3.17.0(react@18.2.0) - '@react-aria/i18n': 3.11.0(react@18.2.0) - '@react-aria/interactions': 3.21.2(react@18.2.0) - '@react-aria/overlays': 3.22.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/selection': 3.18.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/utils': 3.24.0(react@18.2.0) - '@react-stately/collections': 3.10.6(react@18.2.0) - '@react-stately/menu': 3.7.0(react@18.2.0) - '@react-stately/tree': 3.8.0(react@18.2.0) - '@react-types/button': 3.9.3(react@18.2.0) - '@react-types/menu': 3.9.8(react@18.2.0) - '@react-types/shared': 3.23.0(react@18.2.0) - '@swc/helpers': 0.5.10 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - '@react-aria/menu@3.14.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: '@react-aria/focus': 3.17.1(react@18.2.0) @@ -23876,7 +23937,7 @@ snapshots: '@react-aria/interactions': 3.21.3(react@18.2.0) '@react-aria/overlays': 3.22.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@react-aria/selection': 3.18.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/utils': 3.24.1(react@18.2.0) + '@react-aria/utils': 3.25.3(react@18.2.0) '@react-stately/collections': 3.10.7(react@18.2.0) '@react-stately/menu': 3.7.1(react@18.2.0) '@react-stately/tree': 3.8.1(react@18.2.0) @@ -23887,74 +23948,92 @@ snapshots: react: 18.2.0 react-dom: 18.2.0(react@18.2.0) + '@react-aria/menu@3.15.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + dependencies: + '@react-aria/focus': 3.18.3(react@18.2.0) + '@react-aria/i18n': 3.12.3(react@18.2.0) + '@react-aria/interactions': 3.22.3(react@18.2.0) + '@react-aria/overlays': 3.23.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@react-aria/selection': 3.20.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@react-aria/utils': 3.25.3(react@18.2.0) + '@react-stately/collections': 3.11.0(react@18.2.0) + '@react-stately/menu': 3.8.3(react@18.2.0) + '@react-stately/tree': 3.8.5(react@18.2.0) + '@react-types/button': 3.10.0(react@18.2.0) + '@react-types/menu': 3.9.12(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) + '@swc/helpers': 0.5.10 + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) + '@react-aria/meter@3.4.11(react@18.2.0)': dependencies: '@react-aria/progress': 3.4.11(react@18.2.0) '@react-types/meter': 3.3.7(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 - '@react-aria/meter@3.4.12(react@18.2.0)': + '@react-aria/meter@3.4.13(react@18.2.0)': dependencies: - '@react-aria/progress': 3.4.12(react@18.2.0) - '@react-types/meter': 3.4.0(react@18.2.0) - '@react-types/shared': 3.23.0(react@18.2.0) + '@react-aria/progress': 3.4.13(react@18.2.0) + '@react-types/meter': 3.4.1(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 - '@react-aria/meter@3.4.13(react@18.2.0)': + '@react-aria/meter@3.4.17(react@18.2.0)': dependencies: - '@react-aria/progress': 3.4.13(react@18.2.0) - '@react-types/meter': 3.4.1(react@18.2.0) - '@react-types/shared': 3.23.1(react@18.2.0) + '@react-aria/progress': 3.4.17(react@18.2.0) + '@react-types/meter': 3.4.4(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 '@react-aria/numberfield@3.11.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - '@react-aria/i18n': 3.10.2(react@18.2.0) + '@react-aria/i18n': 3.12.3(react@18.2.0) '@react-aria/interactions': 3.21.1(react@18.2.0) '@react-aria/spinbutton': 3.6.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@react-aria/textfield': 3.14.3(react@18.2.0) - '@react-aria/utils': 3.23.2(react@18.2.0) + '@react-aria/utils': 3.25.3(react@18.2.0) '@react-stately/form': 3.0.1(react@18.2.0) '@react-stately/numberfield': 3.9.1(react@18.2.0) '@react-types/button': 3.9.2(react@18.2.0) '@react-types/numberfield': 3.8.1(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) - '@swc/helpers': 0.5.10 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - - '@react-aria/numberfield@3.11.2(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': - dependencies: - '@react-aria/i18n': 3.11.0(react@18.2.0) - '@react-aria/interactions': 3.21.2(react@18.2.0) - '@react-aria/spinbutton': 3.6.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/textfield': 3.14.4(react@18.2.0) - '@react-aria/utils': 3.24.0(react@18.2.0) - '@react-stately/form': 3.0.2(react@18.2.0) - '@react-stately/numberfield': 3.9.2(react@18.2.0) - '@react-types/button': 3.9.3(react@18.2.0) - '@react-types/numberfield': 3.8.2(react@18.2.0) - '@react-types/shared': 3.23.0(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) '@react-aria/numberfield@3.11.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - '@react-aria/i18n': 3.11.1(react@18.2.0) + '@react-aria/i18n': 3.12.3(react@18.2.0) '@react-aria/interactions': 3.21.3(react@18.2.0) '@react-aria/spinbutton': 3.6.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@react-aria/textfield': 3.14.5(react@18.2.0) - '@react-aria/utils': 3.24.1(react@18.2.0) + '@react-aria/utils': 3.25.3(react@18.2.0) '@react-stately/form': 3.0.3(react@18.2.0) '@react-stately/numberfield': 3.9.3(react@18.2.0) '@react-types/button': 3.9.4(react@18.2.0) '@react-types/numberfield': 3.8.3(react@18.2.0) - '@react-types/shared': 3.23.1(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) + '@swc/helpers': 0.5.10 + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) + + '@react-aria/numberfield@3.11.7(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + dependencies: + '@react-aria/i18n': 3.12.3(react@18.2.0) + '@react-aria/interactions': 3.22.3(react@18.2.0) + '@react-aria/spinbutton': 3.6.9(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@react-aria/textfield': 3.14.9(react@18.2.0) + '@react-aria/utils': 3.25.3(react@18.2.0) + '@react-stately/form': 3.0.6(react@18.2.0) + '@react-stately/numberfield': 3.9.7(react@18.2.0) + '@react-types/button': 3.10.0(react@18.2.0) + '@react-types/numberfield': 3.8.6(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) @@ -23962,31 +24041,15 @@ snapshots: '@react-aria/overlays@3.21.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: '@react-aria/focus': 3.16.2(react@18.2.0) - '@react-aria/i18n': 3.10.2(react@18.2.0) + '@react-aria/i18n': 3.12.3(react@18.2.0) '@react-aria/interactions': 3.21.1(react@18.2.0) - '@react-aria/ssr': 3.9.2(react@18.2.0) - '@react-aria/utils': 3.23.2(react@18.2.0) + '@react-aria/ssr': 3.9.6(react@18.2.0) + '@react-aria/utils': 3.25.3(react@18.2.0) '@react-aria/visually-hidden': 3.8.10(react@18.2.0) '@react-stately/overlays': 3.6.5(react@18.2.0) '@react-types/button': 3.9.2(react@18.2.0) '@react-types/overlays': 3.8.5(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) - '@swc/helpers': 0.5.10 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - - '@react-aria/overlays@3.22.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': - dependencies: - '@react-aria/focus': 3.17.0(react@18.2.0) - '@react-aria/i18n': 3.11.0(react@18.2.0) - '@react-aria/interactions': 3.21.2(react@18.2.0) - '@react-aria/ssr': 3.9.3(react@18.2.0) - '@react-aria/utils': 3.24.0(react@18.2.0) - '@react-aria/visually-hidden': 3.8.11(react@18.2.0) - '@react-stately/overlays': 3.6.6(react@18.2.0) - '@react-types/button': 3.9.3(react@18.2.0) - '@react-types/overlays': 3.8.6(react@18.2.0) - '@react-types/shared': 3.23.0(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) @@ -23994,46 +24057,62 @@ snapshots: '@react-aria/overlays@3.22.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: '@react-aria/focus': 3.17.1(react@18.2.0) - '@react-aria/i18n': 3.11.1(react@18.2.0) + '@react-aria/i18n': 3.12.3(react@18.2.0) '@react-aria/interactions': 3.21.3(react@18.2.0) - '@react-aria/ssr': 3.9.4(react@18.2.0) - '@react-aria/utils': 3.24.1(react@18.2.0) + '@react-aria/ssr': 3.9.6(react@18.2.0) + '@react-aria/utils': 3.25.3(react@18.2.0) '@react-aria/visually-hidden': 3.8.12(react@18.2.0) '@react-stately/overlays': 3.6.7(react@18.2.0) '@react-types/button': 3.9.4(react@18.2.0) '@react-types/overlays': 3.8.7(react@18.2.0) - '@react-types/shared': 3.23.1(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) + '@swc/helpers': 0.5.10 + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) + + '@react-aria/overlays@3.23.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + dependencies: + '@react-aria/focus': 3.18.3(react@18.2.0) + '@react-aria/i18n': 3.12.3(react@18.2.0) + '@react-aria/interactions': 3.22.3(react@18.2.0) + '@react-aria/ssr': 3.9.6(react@18.2.0) + '@react-aria/utils': 3.25.3(react@18.2.0) + '@react-aria/visually-hidden': 3.8.16(react@18.2.0) + '@react-stately/overlays': 3.6.11(react@18.2.0) + '@react-types/button': 3.10.0(react@18.2.0) + '@react-types/overlays': 3.8.10(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) '@react-aria/progress@3.4.11(react@18.2.0)': dependencies: - '@react-aria/i18n': 3.10.2(react@18.2.0) + '@react-aria/i18n': 3.12.3(react@18.2.0) '@react-aria/label': 3.7.6(react@18.2.0) - '@react-aria/utils': 3.23.2(react@18.2.0) + '@react-aria/utils': 3.25.3(react@18.2.0) '@react-types/progress': 3.5.2(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 - '@react-aria/progress@3.4.12(react@18.2.0)': + '@react-aria/progress@3.4.13(react@18.2.0)': dependencies: - '@react-aria/i18n': 3.11.0(react@18.2.0) - '@react-aria/label': 3.7.7(react@18.2.0) - '@react-aria/utils': 3.24.0(react@18.2.0) - '@react-types/progress': 3.5.3(react@18.2.0) - '@react-types/shared': 3.23.0(react@18.2.0) + '@react-aria/i18n': 3.12.3(react@18.2.0) + '@react-aria/label': 3.7.8(react@18.2.0) + '@react-aria/utils': 3.25.3(react@18.2.0) + '@react-types/progress': 3.5.4(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 - '@react-aria/progress@3.4.13(react@18.2.0)': + '@react-aria/progress@3.4.17(react@18.2.0)': dependencies: - '@react-aria/i18n': 3.11.1(react@18.2.0) - '@react-aria/label': 3.7.8(react@18.2.0) - '@react-aria/utils': 3.24.1(react@18.2.0) - '@react-types/progress': 3.5.4(react@18.2.0) - '@react-types/shared': 3.23.1(react@18.2.0) + '@react-aria/i18n': 3.12.3(react@18.2.0) + '@react-aria/label': 3.7.12(react@18.2.0) + '@react-aria/utils': 3.25.3(react@18.2.0) + '@react-types/progress': 3.5.7(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 @@ -24041,27 +24120,13 @@ snapshots: dependencies: '@react-aria/focus': 3.16.2(react@18.2.0) '@react-aria/form': 3.0.3(react@18.2.0) - '@react-aria/i18n': 3.10.2(react@18.2.0) + '@react-aria/i18n': 3.12.3(react@18.2.0) '@react-aria/interactions': 3.21.1(react@18.2.0) '@react-aria/label': 3.7.6(react@18.2.0) - '@react-aria/utils': 3.23.2(react@18.2.0) + '@react-aria/utils': 3.25.3(react@18.2.0) '@react-stately/radio': 3.10.2(react@18.2.0) '@react-types/radio': 3.7.1(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) - '@swc/helpers': 0.5.10 - react: 18.2.0 - - '@react-aria/radio@3.10.3(react@18.2.0)': - dependencies: - '@react-aria/focus': 3.17.0(react@18.2.0) - '@react-aria/form': 3.0.4(react@18.2.0) - '@react-aria/i18n': 3.11.0(react@18.2.0) - '@react-aria/interactions': 3.21.2(react@18.2.0) - '@react-aria/label': 3.7.7(react@18.2.0) - '@react-aria/utils': 3.24.0(react@18.2.0) - '@react-stately/radio': 3.10.3(react@18.2.0) - '@react-types/radio': 3.8.0(react@18.2.0) - '@react-types/shared': 3.23.0(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 @@ -24069,86 +24134,100 @@ snapshots: dependencies: '@react-aria/focus': 3.17.1(react@18.2.0) '@react-aria/form': 3.0.5(react@18.2.0) - '@react-aria/i18n': 3.11.1(react@18.2.0) + '@react-aria/i18n': 3.12.3(react@18.2.0) '@react-aria/interactions': 3.21.3(react@18.2.0) '@react-aria/label': 3.7.8(react@18.2.0) - '@react-aria/utils': 3.24.1(react@18.2.0) + '@react-aria/utils': 3.25.3(react@18.2.0) '@react-stately/radio': 3.10.4(react@18.2.0) '@react-types/radio': 3.8.1(react@18.2.0) - '@react-types/shared': 3.23.1(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) + '@swc/helpers': 0.5.10 + react: 18.2.0 + + '@react-aria/radio@3.10.8(react@18.2.0)': + dependencies: + '@react-aria/focus': 3.18.3(react@18.2.0) + '@react-aria/form': 3.0.9(react@18.2.0) + '@react-aria/i18n': 3.12.3(react@18.2.0) + '@react-aria/interactions': 3.22.3(react@18.2.0) + '@react-aria/label': 3.7.12(react@18.2.0) + '@react-aria/utils': 3.25.3(react@18.2.0) + '@react-stately/radio': 3.10.8(react@18.2.0) + '@react-types/radio': 3.8.4(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 '@react-aria/searchfield@3.7.3(react@18.2.0)': dependencies: - '@react-aria/i18n': 3.10.2(react@18.2.0) + '@react-aria/i18n': 3.12.3(react@18.2.0) '@react-aria/textfield': 3.14.3(react@18.2.0) - '@react-aria/utils': 3.23.2(react@18.2.0) + '@react-aria/utils': 3.25.3(react@18.2.0) '@react-stately/searchfield': 3.5.1(react@18.2.0) '@react-types/button': 3.9.2(react@18.2.0) '@react-types/searchfield': 3.5.3(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) - '@swc/helpers': 0.5.10 - react: 18.2.0 - - '@react-aria/searchfield@3.7.4(react@18.2.0)': - dependencies: - '@react-aria/i18n': 3.11.0(react@18.2.0) - '@react-aria/textfield': 3.14.4(react@18.2.0) - '@react-aria/utils': 3.24.0(react@18.2.0) - '@react-stately/searchfield': 3.5.2(react@18.2.0) - '@react-types/button': 3.9.3(react@18.2.0) - '@react-types/searchfield': 3.5.4(react@18.2.0) - '@react-types/shared': 3.23.0(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 '@react-aria/searchfield@3.7.5(react@18.2.0)': dependencies: - '@react-aria/i18n': 3.11.1(react@18.2.0) + '@react-aria/i18n': 3.12.3(react@18.2.0) '@react-aria/textfield': 3.14.5(react@18.2.0) - '@react-aria/utils': 3.24.1(react@18.2.0) + '@react-aria/utils': 3.25.3(react@18.2.0) '@react-stately/searchfield': 3.5.3(react@18.2.0) '@react-types/button': 3.9.4(react@18.2.0) '@react-types/searchfield': 3.5.5(react@18.2.0) - '@react-types/shared': 3.23.1(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) + '@swc/helpers': 0.5.10 + react: 18.2.0 + + '@react-aria/searchfield@3.7.9(react@18.2.0)': + dependencies: + '@react-aria/i18n': 3.12.3(react@18.2.0) + '@react-aria/textfield': 3.14.9(react@18.2.0) + '@react-aria/utils': 3.25.3(react@18.2.0) + '@react-stately/searchfield': 3.5.7(react@18.2.0) + '@react-types/button': 3.10.0(react@18.2.0) + '@react-types/searchfield': 3.5.9(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 + '@react-aria/select@3.14.10(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + dependencies: + '@react-aria/form': 3.0.9(react@18.2.0) + '@react-aria/i18n': 3.12.3(react@18.2.0) + '@react-aria/interactions': 3.22.3(react@18.2.0) + '@react-aria/label': 3.7.12(react@18.2.0) + '@react-aria/listbox': 3.13.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@react-aria/menu': 3.15.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@react-aria/selection': 3.20.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@react-aria/utils': 3.25.3(react@18.2.0) + '@react-aria/visually-hidden': 3.8.16(react@18.2.0) + '@react-stately/select': 3.6.8(react@18.2.0) + '@react-types/button': 3.10.0(react@18.2.0) + '@react-types/select': 3.9.7(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) + '@swc/helpers': 0.5.10 + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) + '@react-aria/select@3.14.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: '@react-aria/form': 3.0.3(react@18.2.0) - '@react-aria/i18n': 3.10.2(react@18.2.0) + '@react-aria/i18n': 3.12.3(react@18.2.0) '@react-aria/interactions': 3.21.1(react@18.2.0) '@react-aria/label': 3.7.6(react@18.2.0) '@react-aria/listbox': 3.11.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@react-aria/menu': 3.13.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@react-aria/selection': 3.17.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/utils': 3.23.2(react@18.2.0) + '@react-aria/utils': 3.25.3(react@18.2.0) '@react-aria/visually-hidden': 3.8.10(react@18.2.0) '@react-stately/select': 3.6.2(react@18.2.0) '@react-types/button': 3.9.2(react@18.2.0) '@react-types/select': 3.9.2(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) - '@swc/helpers': 0.5.10 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - - '@react-aria/select@3.14.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': - dependencies: - '@react-aria/form': 3.0.4(react@18.2.0) - '@react-aria/i18n': 3.11.0(react@18.2.0) - '@react-aria/interactions': 3.21.2(react@18.2.0) - '@react-aria/label': 3.7.7(react@18.2.0) - '@react-aria/listbox': 3.12.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/menu': 3.14.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/selection': 3.18.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/utils': 3.24.0(react@18.2.0) - '@react-aria/visually-hidden': 3.8.11(react@18.2.0) - '@react-stately/select': 3.6.3(react@18.2.0) - '@react-types/button': 3.9.3(react@18.2.0) - '@react-types/select': 3.9.3(react@18.2.0) - '@react-types/shared': 3.23.0(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) @@ -24156,18 +24235,18 @@ snapshots: '@react-aria/select@3.14.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: '@react-aria/form': 3.0.5(react@18.2.0) - '@react-aria/i18n': 3.11.1(react@18.2.0) + '@react-aria/i18n': 3.12.3(react@18.2.0) '@react-aria/interactions': 3.21.3(react@18.2.0) '@react-aria/label': 3.7.8(react@18.2.0) '@react-aria/listbox': 3.12.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@react-aria/menu': 3.14.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@react-aria/selection': 3.18.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/utils': 3.24.1(react@18.2.0) + '@react-aria/utils': 3.25.3(react@18.2.0) '@react-aria/visually-hidden': 3.8.12(react@18.2.0) '@react-stately/select': 3.6.4(react@18.2.0) '@react-types/button': 3.9.4(react@18.2.0) '@react-types/select': 3.9.4(react@18.2.0) - '@react-types/shared': 3.23.1(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) @@ -24175,128 +24254,128 @@ snapshots: '@react-aria/selection@3.17.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: '@react-aria/focus': 3.16.2(react@18.2.0) - '@react-aria/i18n': 3.10.2(react@18.2.0) + '@react-aria/i18n': 3.12.3(react@18.2.0) '@react-aria/interactions': 3.21.1(react@18.2.0) - '@react-aria/utils': 3.23.2(react@18.2.0) + '@react-aria/utils': 3.25.3(react@18.2.0) '@react-stately/selection': 3.14.3(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - '@react-aria/selection@3.18.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@react-aria/selection@3.18.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - '@react-aria/focus': 3.17.0(react@18.2.0) - '@react-aria/i18n': 3.11.0(react@18.2.0) - '@react-aria/interactions': 3.21.2(react@18.2.0) - '@react-aria/utils': 3.24.0(react@18.2.0) - '@react-stately/selection': 3.15.0(react@18.2.0) - '@react-types/shared': 3.23.0(react@18.2.0) + '@react-aria/focus': 3.17.1(react@18.2.0) + '@react-aria/i18n': 3.12.3(react@18.2.0) + '@react-aria/interactions': 3.21.3(react@18.2.0) + '@react-aria/utils': 3.25.3(react@18.2.0) + '@react-stately/selection': 3.15.1(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - '@react-aria/selection@3.18.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@react-aria/selection@3.20.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - '@react-aria/focus': 3.17.1(react@18.2.0) - '@react-aria/i18n': 3.11.1(react@18.2.0) - '@react-aria/interactions': 3.21.3(react@18.2.0) - '@react-aria/utils': 3.24.1(react@18.2.0) - '@react-stately/selection': 3.15.1(react@18.2.0) - '@react-types/shared': 3.23.1(react@18.2.0) + '@react-aria/focus': 3.18.3(react@18.2.0) + '@react-aria/i18n': 3.12.3(react@18.2.0) + '@react-aria/interactions': 3.22.3(react@18.2.0) + '@react-aria/utils': 3.25.3(react@18.2.0) + '@react-stately/selection': 3.17.0(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) '@react-aria/separator@3.3.11(react@18.2.0)': dependencies: - '@react-aria/utils': 3.23.2(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) + '@react-aria/utils': 3.25.3(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 - '@react-aria/separator@3.3.12(react@18.2.0)': + '@react-aria/separator@3.3.13(react@18.2.0)': dependencies: - '@react-aria/utils': 3.24.0(react@18.2.0) - '@react-types/shared': 3.23.0(react@18.2.0) + '@react-aria/utils': 3.25.3(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 - '@react-aria/separator@3.3.13(react@18.2.0)': + '@react-aria/separator@3.4.3(react@18.2.0)': dependencies: - '@react-aria/utils': 3.24.1(react@18.2.0) - '@react-types/shared': 3.23.1(react@18.2.0) + '@react-aria/utils': 3.25.3(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) + '@swc/helpers': 0.5.10 + react: 18.2.0 + + '@react-aria/slider@3.7.12(react@18.2.0)': + dependencies: + '@react-aria/focus': 3.18.3(react@18.2.0) + '@react-aria/i18n': 3.12.3(react@18.2.0) + '@react-aria/interactions': 3.22.3(react@18.2.0) + '@react-aria/label': 3.7.12(react@18.2.0) + '@react-aria/utils': 3.25.3(react@18.2.0) + '@react-stately/slider': 3.5.8(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) + '@react-types/slider': 3.7.6(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 '@react-aria/slider@3.7.6(react@18.2.0)': dependencies: '@react-aria/focus': 3.16.2(react@18.2.0) - '@react-aria/i18n': 3.10.2(react@18.2.0) + '@react-aria/i18n': 3.12.3(react@18.2.0) '@react-aria/interactions': 3.21.1(react@18.2.0) '@react-aria/label': 3.7.6(react@18.2.0) - '@react-aria/utils': 3.23.2(react@18.2.0) + '@react-aria/utils': 3.25.3(react@18.2.0) '@react-stately/slider': 3.5.2(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) '@react-types/slider': 3.7.1(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 - '@react-aria/slider@3.7.7(react@18.2.0)': - dependencies: - '@react-aria/focus': 3.17.0(react@18.2.0) - '@react-aria/i18n': 3.11.0(react@18.2.0) - '@react-aria/interactions': 3.21.2(react@18.2.0) - '@react-aria/label': 3.7.7(react@18.2.0) - '@react-aria/utils': 3.24.0(react@18.2.0) - '@react-stately/slider': 3.5.3(react@18.2.0) - '@react-types/shared': 3.23.0(react@18.2.0) - '@react-types/slider': 3.7.2(react@18.2.0) - '@swc/helpers': 0.5.10 - react: 18.2.0 - '@react-aria/slider@3.7.8(react@18.2.0)': dependencies: '@react-aria/focus': 3.17.1(react@18.2.0) - '@react-aria/i18n': 3.11.1(react@18.2.0) + '@react-aria/i18n': 3.12.3(react@18.2.0) '@react-aria/interactions': 3.21.3(react@18.2.0) '@react-aria/label': 3.7.8(react@18.2.0) - '@react-aria/utils': 3.24.1(react@18.2.0) + '@react-aria/utils': 3.25.3(react@18.2.0) '@react-stately/slider': 3.5.4(react@18.2.0) - '@react-types/shared': 3.23.1(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) '@react-types/slider': 3.7.3(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 '@react-aria/spinbutton@3.6.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - '@react-aria/i18n': 3.10.2(react@18.2.0) + '@react-aria/i18n': 3.12.3(react@18.2.0) '@react-aria/live-announcer': 3.3.2 - '@react-aria/utils': 3.23.2(react@18.2.0) + '@react-aria/utils': 3.25.3(react@18.2.0) '@react-types/button': 3.9.2(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - '@react-aria/spinbutton@3.6.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@react-aria/spinbutton@3.6.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - '@react-aria/i18n': 3.11.0(react@18.2.0) - '@react-aria/live-announcer': 3.3.3 - '@react-aria/utils': 3.24.0(react@18.2.0) - '@react-types/button': 3.9.3(react@18.2.0) - '@react-types/shared': 3.23.0(react@18.2.0) + '@react-aria/i18n': 3.12.3(react@18.2.0) + '@react-aria/live-announcer': 3.3.4 + '@react-aria/utils': 3.25.3(react@18.2.0) + '@react-types/button': 3.9.4(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - '@react-aria/spinbutton@3.6.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@react-aria/spinbutton@3.6.9(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - '@react-aria/i18n': 3.11.1(react@18.2.0) - '@react-aria/live-announcer': 3.3.4 - '@react-aria/utils': 3.24.1(react@18.2.0) - '@react-types/button': 3.9.4(react@18.2.0) - '@react-types/shared': 3.23.1(react@18.2.0) + '@react-aria/i18n': 3.12.3(react@18.2.0) + '@react-aria/live-announcer': 3.4.0 + '@react-aria/utils': 3.25.3(react@18.2.0) + '@react-types/button': 3.10.0(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) @@ -24306,12 +24385,12 @@ snapshots: '@swc/helpers': 0.5.10 react: 18.2.0 - '@react-aria/ssr@3.9.3(react@18.2.0)': + '@react-aria/ssr@3.9.4(react@18.2.0)': dependencies: '@swc/helpers': 0.5.10 react: 18.2.0 - '@react-aria/ssr@3.9.4(react@18.2.0)': + '@react-aria/ssr@3.9.6(react@18.2.0)': dependencies: '@swc/helpers': 0.5.10 react: 18.2.0 @@ -24324,14 +24403,6 @@ snapshots: '@swc/helpers': 0.5.10 react: 18.2.0 - '@react-aria/switch@3.6.3(react@18.2.0)': - dependencies: - '@react-aria/toggle': 3.10.3(react@18.2.0) - '@react-stately/toggle': 3.7.3(react@18.2.0) - '@react-types/switch': 3.5.2(react@18.2.0) - '@swc/helpers': 0.5.10 - react: 18.2.0 - '@react-aria/switch@3.6.4(react@18.2.0)': dependencies: '@react-aria/toggle': 3.10.4(react@18.2.0) @@ -24340,14 +24411,23 @@ snapshots: '@swc/helpers': 0.5.10 react: 18.2.0 + '@react-aria/switch@3.6.8(react@18.2.0)': + dependencies: + '@react-aria/toggle': 3.10.8(react@18.2.0) + '@react-stately/toggle': 3.7.8(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) + '@react-types/switch': 3.5.6(react@18.2.0) + '@swc/helpers': 0.5.10 + react: 18.2.0 + '@react-aria/table@3.13.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: '@react-aria/focus': 3.16.2(react@18.2.0) '@react-aria/grid': 3.8.8(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/i18n': 3.10.2(react@18.2.0) + '@react-aria/i18n': 3.12.3(react@18.2.0) '@react-aria/interactions': 3.21.1(react@18.2.0) '@react-aria/live-announcer': 3.3.2 - '@react-aria/utils': 3.23.2(react@18.2.0) + '@react-aria/utils': 3.25.3(react@18.2.0) '@react-aria/visually-hidden': 3.8.10(react@18.2.0) '@react-stately/collections': 3.10.5(react@18.2.0) '@react-stately/flags': 3.0.1 @@ -24355,41 +24435,20 @@ snapshots: '@react-stately/virtualizer': 3.6.8(react@18.2.0) '@react-types/checkbox': 3.7.1(react@18.2.0) '@react-types/grid': 3.2.4(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) '@react-types/table': 3.9.3(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - '@react-aria/table@3.14.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': - dependencies: - '@react-aria/focus': 3.17.0(react@18.2.0) - '@react-aria/grid': 3.9.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/i18n': 3.11.0(react@18.2.0) - '@react-aria/interactions': 3.21.2(react@18.2.0) - '@react-aria/live-announcer': 3.3.3 - '@react-aria/utils': 3.24.0(react@18.2.0) - '@react-aria/visually-hidden': 3.8.11(react@18.2.0) - '@react-stately/collections': 3.10.6(react@18.2.0) - '@react-stately/flags': 3.0.2 - '@react-stately/table': 3.11.7(react@18.2.0) - '@react-stately/virtualizer': 3.7.0(react@18.2.0) - '@react-types/checkbox': 3.8.0(react@18.2.0) - '@react-types/grid': 3.2.5(react@18.2.0) - '@react-types/shared': 3.23.0(react@18.2.0) - '@react-types/table': 3.9.4(react@18.2.0) - '@swc/helpers': 0.5.10 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - '@react-aria/table@3.14.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: '@react-aria/focus': 3.17.1(react@18.2.0) '@react-aria/grid': 3.9.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/i18n': 3.11.1(react@18.2.0) + '@react-aria/i18n': 3.12.3(react@18.2.0) '@react-aria/interactions': 3.21.3(react@18.2.0) '@react-aria/live-announcer': 3.3.4 - '@react-aria/utils': 3.24.1(react@18.2.0) + '@react-aria/utils': 3.25.3(react@18.2.0) '@react-aria/visually-hidden': 3.8.12(react@18.2.0) '@react-stately/collections': 3.10.7(react@18.2.0) '@react-stately/flags': 3.0.3 @@ -24397,77 +24456,82 @@ snapshots: '@react-stately/virtualizer': 3.7.1(react@18.2.0) '@react-types/checkbox': 3.8.1(react@18.2.0) '@react-types/grid': 3.2.6(react@18.2.0) - '@react-types/shared': 3.23.1(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) '@react-types/table': 3.9.5(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) + '@react-aria/table@3.15.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + dependencies: + '@react-aria/focus': 3.18.3(react@18.2.0) + '@react-aria/grid': 3.10.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@react-aria/i18n': 3.12.3(react@18.2.0) + '@react-aria/interactions': 3.22.3(react@18.2.0) + '@react-aria/live-announcer': 3.4.0 + '@react-aria/utils': 3.25.3(react@18.2.0) + '@react-aria/visually-hidden': 3.8.16(react@18.2.0) + '@react-stately/collections': 3.11.0(react@18.2.0) + '@react-stately/flags': 3.0.4 + '@react-stately/table': 3.12.3(react@18.2.0) + '@react-types/checkbox': 3.8.4(react@18.2.0) + '@react-types/grid': 3.2.9(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) + '@react-types/table': 3.10.2(react@18.2.0) + '@swc/helpers': 0.5.10 + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) + '@react-aria/tabs@3.8.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: '@react-aria/focus': 3.16.2(react@18.2.0) - '@react-aria/i18n': 3.10.2(react@18.2.0) + '@react-aria/i18n': 3.12.3(react@18.2.0) '@react-aria/selection': 3.17.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/utils': 3.23.2(react@18.2.0) + '@react-aria/utils': 3.25.3(react@18.2.0) '@react-stately/tabs': 3.6.4(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) '@react-types/tabs': 3.3.5(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - '@react-aria/tabs@3.9.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': - dependencies: - '@react-aria/focus': 3.17.0(react@18.2.0) - '@react-aria/i18n': 3.11.0(react@18.2.0) - '@react-aria/selection': 3.18.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/utils': 3.24.0(react@18.2.0) - '@react-stately/tabs': 3.6.5(react@18.2.0) - '@react-types/shared': 3.23.0(react@18.2.0) - '@react-types/tabs': 3.3.6(react@18.2.0) - '@swc/helpers': 0.5.10 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - '@react-aria/tabs@3.9.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: '@react-aria/focus': 3.17.1(react@18.2.0) - '@react-aria/i18n': 3.11.1(react@18.2.0) + '@react-aria/i18n': 3.12.3(react@18.2.0) '@react-aria/selection': 3.18.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/utils': 3.24.1(react@18.2.0) + '@react-aria/utils': 3.25.3(react@18.2.0) '@react-stately/tabs': 3.6.6(react@18.2.0) - '@react-types/shared': 3.23.1(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) '@react-types/tabs': 3.3.7(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) + '@react-aria/tabs@3.9.6(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + dependencies: + '@react-aria/focus': 3.18.3(react@18.2.0) + '@react-aria/i18n': 3.12.3(react@18.2.0) + '@react-aria/selection': 3.20.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@react-aria/utils': 3.25.3(react@18.2.0) + '@react-stately/tabs': 3.6.10(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) + '@react-types/tabs': 3.3.10(react@18.2.0) + '@swc/helpers': 0.5.10 + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) + '@react-aria/tag@3.3.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: '@react-aria/gridlist': 3.7.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/i18n': 3.10.2(react@18.2.0) + '@react-aria/i18n': 3.12.3(react@18.2.0) '@react-aria/interactions': 3.21.1(react@18.2.0) '@react-aria/label': 3.7.6(react@18.2.0) '@react-aria/selection': 3.17.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/utils': 3.23.2(react@18.2.0) + '@react-aria/utils': 3.25.3(react@18.2.0) '@react-stately/list': 3.10.3(react@18.2.0) '@react-types/button': 3.9.2(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) - '@swc/helpers': 0.5.10 - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - - '@react-aria/tag@3.4.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': - dependencies: - '@react-aria/gridlist': 3.8.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/i18n': 3.11.0(react@18.2.0) - '@react-aria/interactions': 3.21.2(react@18.2.0) - '@react-aria/label': 3.7.7(react@18.2.0) - '@react-aria/selection': 3.18.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/utils': 3.24.0(react@18.2.0) - '@react-stately/list': 3.10.4(react@18.2.0) - '@react-types/button': 3.9.3(react@18.2.0) - '@react-types/shared': 3.23.0(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) @@ -24475,14 +24539,29 @@ snapshots: '@react-aria/tag@3.4.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: '@react-aria/gridlist': 3.8.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/i18n': 3.11.1(react@18.2.0) + '@react-aria/i18n': 3.12.3(react@18.2.0) '@react-aria/interactions': 3.21.3(react@18.2.0) '@react-aria/label': 3.7.8(react@18.2.0) '@react-aria/selection': 3.18.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/utils': 3.24.1(react@18.2.0) + '@react-aria/utils': 3.25.3(react@18.2.0) '@react-stately/list': 3.10.5(react@18.2.0) '@react-types/button': 3.9.4(react@18.2.0) - '@react-types/shared': 3.23.1(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) + '@swc/helpers': 0.5.10 + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) + + '@react-aria/tag@3.4.6(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + dependencies: + '@react-aria/gridlist': 3.9.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@react-aria/i18n': 3.12.3(react@18.2.0) + '@react-aria/interactions': 3.22.3(react@18.2.0) + '@react-aria/label': 3.7.12(react@18.2.0) + '@react-aria/selection': 3.20.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@react-aria/utils': 3.25.3(react@18.2.0) + '@react-stately/list': 3.11.0(react@18.2.0) + '@react-types/button': 3.10.0(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 react-dom: 18.2.0(react@18.2.0) @@ -24492,85 +24571,77 @@ snapshots: '@react-aria/focus': 3.16.2(react@18.2.0) '@react-aria/form': 3.0.3(react@18.2.0) '@react-aria/label': 3.7.6(react@18.2.0) - '@react-aria/utils': 3.23.2(react@18.2.0) + '@react-aria/utils': 3.25.3(react@18.2.0) '@react-stately/form': 3.0.1(react@18.2.0) - '@react-stately/utils': 3.9.1(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) + '@react-stately/utils': 3.10.4(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) '@react-types/textfield': 3.9.1(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 - '@react-aria/textfield@3.14.4(react@18.2.0)': - dependencies: - '@react-aria/focus': 3.17.0(react@18.2.0) - '@react-aria/form': 3.0.4(react@18.2.0) - '@react-aria/label': 3.7.7(react@18.2.0) - '@react-aria/utils': 3.24.0(react@18.2.0) - '@react-stately/form': 3.0.2(react@18.2.0) - '@react-stately/utils': 3.10.0(react@18.2.0) - '@react-types/shared': 3.23.0(react@18.2.0) - '@react-types/textfield': 3.9.2(react@18.2.0) - '@swc/helpers': 0.5.10 - react: 18.2.0 - '@react-aria/textfield@3.14.5(react@18.2.0)': dependencies: '@react-aria/focus': 3.17.1(react@18.2.0) '@react-aria/form': 3.0.5(react@18.2.0) '@react-aria/label': 3.7.8(react@18.2.0) - '@react-aria/utils': 3.24.1(react@18.2.0) + '@react-aria/utils': 3.25.3(react@18.2.0) '@react-stately/form': 3.0.3(react@18.2.0) - '@react-stately/utils': 3.10.1(react@18.2.0) - '@react-types/shared': 3.23.1(react@18.2.0) + '@react-stately/utils': 3.10.4(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) '@react-types/textfield': 3.9.3(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 + '@react-aria/textfield@3.14.9(react@18.2.0)': + dependencies: + '@react-aria/focus': 3.18.3(react@18.2.0) + '@react-aria/form': 3.0.9(react@18.2.0) + '@react-aria/label': 3.7.12(react@18.2.0) + '@react-aria/utils': 3.25.3(react@18.2.0) + '@react-stately/form': 3.0.6(react@18.2.0) + '@react-stately/utils': 3.10.4(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) + '@react-types/textfield': 3.9.7(react@18.2.0) + '@swc/helpers': 0.5.10 + react: 18.2.0 + '@react-aria/toggle@3.10.2(react@18.2.0)': dependencies: '@react-aria/focus': 3.16.2(react@18.2.0) '@react-aria/interactions': 3.21.1(react@18.2.0) - '@react-aria/utils': 3.23.2(react@18.2.0) + '@react-aria/utils': 3.25.3(react@18.2.0) '@react-stately/toggle': 3.7.2(react@18.2.0) '@react-types/checkbox': 3.7.1(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 - '@react-aria/toggle@3.10.3(react@18.2.0)': - dependencies: - '@react-aria/focus': 3.17.0(react@18.2.0) - '@react-aria/interactions': 3.21.2(react@18.2.0) - '@react-aria/utils': 3.24.0(react@18.2.0) - '@react-stately/toggle': 3.7.3(react@18.2.0) - '@react-types/checkbox': 3.8.0(react@18.2.0) - '@swc/helpers': 0.5.10 - react: 18.2.0 - '@react-aria/toggle@3.10.4(react@18.2.0)': dependencies: '@react-aria/focus': 3.17.1(react@18.2.0) '@react-aria/interactions': 3.21.3(react@18.2.0) - '@react-aria/utils': 3.24.1(react@18.2.0) + '@react-aria/utils': 3.25.3(react@18.2.0) '@react-stately/toggle': 3.7.4(react@18.2.0) '@react-types/checkbox': 3.8.1(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 - '@react-aria/toolbar@3.0.0-beta.3(react@18.2.0)': + '@react-aria/toggle@3.10.8(react@18.2.0)': dependencies: - '@react-aria/focus': 3.16.2(react@18.2.0) - '@react-aria/i18n': 3.10.2(react@18.2.0) - '@react-aria/utils': 3.23.2(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) + '@react-aria/focus': 3.18.3(react@18.2.0) + '@react-aria/interactions': 3.22.3(react@18.2.0) + '@react-aria/utils': 3.25.3(react@18.2.0) + '@react-stately/toggle': 3.7.8(react@18.2.0) + '@react-types/checkbox': 3.8.4(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 - '@react-aria/toolbar@3.0.0-beta.4(react@18.2.0)': + '@react-aria/toolbar@3.0.0-beta.3(react@18.2.0)': dependencies: - '@react-aria/focus': 3.17.0(react@18.2.0) - '@react-aria/i18n': 3.11.0(react@18.2.0) - '@react-aria/utils': 3.24.0(react@18.2.0) - '@react-types/shared': 3.23.0(react@18.2.0) + '@react-aria/focus': 3.16.2(react@18.2.0) + '@react-aria/i18n': 3.10.2(react@18.2.0) + '@react-aria/utils': 3.25.3(react@18.2.0) + '@react-types/shared': 3.22.1(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 @@ -24578,63 +24649,59 @@ snapshots: dependencies: '@react-aria/focus': 3.17.1(react@18.2.0) '@react-aria/i18n': 3.11.1(react@18.2.0) - '@react-aria/utils': 3.24.1(react@18.2.0) + '@react-aria/utils': 3.25.3(react@18.2.0) '@react-types/shared': 3.23.1(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 + '@react-aria/toolbar@3.0.0-beta.9(react@18.2.0)': + dependencies: + '@react-aria/focus': 3.18.3(react@18.2.0) + '@react-aria/i18n': 3.12.3(react@18.2.0) + '@react-aria/utils': 3.25.3(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) + '@swc/helpers': 0.5.10 + react: 18.2.0 + '@react-aria/tooltip@3.7.2(react@18.2.0)': dependencies: '@react-aria/focus': 3.16.2(react@18.2.0) '@react-aria/interactions': 3.21.1(react@18.2.0) - '@react-aria/utils': 3.23.2(react@18.2.0) + '@react-aria/utils': 3.25.3(react@18.2.0) '@react-stately/tooltip': 3.4.7(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) '@react-types/tooltip': 3.4.7(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 - '@react-aria/tooltip@3.7.3(react@18.2.0)': - dependencies: - '@react-aria/focus': 3.17.0(react@18.2.0) - '@react-aria/interactions': 3.21.2(react@18.2.0) - '@react-aria/utils': 3.24.0(react@18.2.0) - '@react-stately/tooltip': 3.4.8(react@18.2.0) - '@react-types/shared': 3.23.0(react@18.2.0) - '@react-types/tooltip': 3.4.8(react@18.2.0) - '@swc/helpers': 0.5.10 - react: 18.2.0 - '@react-aria/tooltip@3.7.4(react@18.2.0)': dependencies: '@react-aria/focus': 3.17.1(react@18.2.0) '@react-aria/interactions': 3.21.3(react@18.2.0) - '@react-aria/utils': 3.24.1(react@18.2.0) + '@react-aria/utils': 3.25.3(react@18.2.0) '@react-stately/tooltip': 3.4.9(react@18.2.0) - '@react-types/shared': 3.23.1(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) '@react-types/tooltip': 3.4.9(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 - '@react-aria/tree@3.0.0-alpha.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + '@react-aria/tooltip@3.7.8(react@18.2.0)': dependencies: - '@react-aria/gridlist': 3.8.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/i18n': 3.11.0(react@18.2.0) - '@react-aria/selection': 3.18.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/utils': 3.24.0(react@18.2.0) - '@react-stately/tree': 3.8.0(react@18.2.0) - '@react-types/button': 3.9.3(react@18.2.0) - '@react-types/shared': 3.23.0(react@18.2.0) + '@react-aria/focus': 3.18.3(react@18.2.0) + '@react-aria/interactions': 3.22.3(react@18.2.0) + '@react-aria/utils': 3.25.3(react@18.2.0) + '@react-stately/tooltip': 3.4.13(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) + '@react-types/tooltip': 3.4.12(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) '@react-aria/tree@3.0.0-alpha.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: '@react-aria/gridlist': 3.8.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@react-aria/i18n': 3.11.1(react@18.2.0) '@react-aria/selection': 3.18.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/utils': 3.24.1(react@18.2.0) + '@react-aria/utils': 3.25.3(react@18.2.0) '@react-stately/tree': 3.8.1(react@18.2.0) '@react-types/button': 3.9.4(react@18.2.0) '@react-types/shared': 3.23.1(react@18.2.0) @@ -24642,22 +24709,26 @@ snapshots: react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - '@react-aria/utils@3.23.2(react@18.2.0)': + '@react-aria/tree@3.0.0-beta.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': dependencies: - '@react-aria/ssr': 3.9.2(react@18.2.0) - '@react-stately/utils': 3.9.1(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) + '@react-aria/gridlist': 3.9.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@react-aria/i18n': 3.12.3(react@18.2.0) + '@react-aria/selection': 3.20.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@react-aria/utils': 3.25.3(react@18.2.0) + '@react-stately/tree': 3.8.5(react@18.2.0) + '@react-types/button': 3.10.0(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) '@swc/helpers': 0.5.10 - clsx: 2.1.0 react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) - '@react-aria/utils@3.24.0(react@18.2.0)': + '@react-aria/utils@3.23.2(react@18.2.0)': dependencies: - '@react-aria/ssr': 3.9.3(react@18.2.0) - '@react-stately/utils': 3.10.0(react@18.2.0) - '@react-types/shared': 3.23.0(react@18.2.0) + '@react-aria/ssr': 3.9.2(react@18.2.0) + '@react-stately/utils': 3.9.1(react@18.2.0) + '@react-types/shared': 3.22.1(react@18.2.0) '@swc/helpers': 0.5.10 - clsx: 2.1.0 + clsx: 2.1.1 react: 18.2.0 '@react-aria/utils@3.24.1(react@18.2.0)': @@ -24666,126 +24737,132 @@ snapshots: '@react-stately/utils': 3.10.1(react@18.2.0) '@react-types/shared': 3.23.1(react@18.2.0) '@swc/helpers': 0.5.10 - clsx: 2.1.0 + clsx: 2.1.1 react: 18.2.0 - '@react-aria/visually-hidden@3.8.10(react@18.2.0)': + '@react-aria/utils@3.25.3(react@18.2.0)': dependencies: - '@react-aria/interactions': 3.21.1(react@18.2.0) - '@react-aria/utils': 3.23.2(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) + '@react-aria/ssr': 3.9.6(react@18.2.0) + '@react-stately/utils': 3.10.4(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) '@swc/helpers': 0.5.10 + clsx: 2.1.1 react: 18.2.0 - '@react-aria/visually-hidden@3.8.11(react@18.2.0)': + '@react-aria/virtualizer@4.0.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0)': + dependencies: + '@react-aria/i18n': 3.12.3(react@18.2.0) + '@react-aria/interactions': 3.22.3(react@18.2.0) + '@react-aria/utils': 3.25.3(react@18.2.0) + '@react-stately/virtualizer': 4.1.0(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) + '@swc/helpers': 0.5.10 + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) + + '@react-aria/visually-hidden@3.8.10(react@18.2.0)': dependencies: - '@react-aria/interactions': 3.21.2(react@18.2.0) - '@react-aria/utils': 3.24.0(react@18.2.0) - '@react-types/shared': 3.23.0(react@18.2.0) + '@react-aria/interactions': 3.21.1(react@18.2.0) + '@react-aria/utils': 3.25.3(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 '@react-aria/visually-hidden@3.8.12(react@18.2.0)': dependencies: '@react-aria/interactions': 3.21.3(react@18.2.0) - '@react-aria/utils': 3.24.1(react@18.2.0) - '@react-types/shared': 3.23.1(react@18.2.0) + '@react-aria/utils': 3.25.3(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 - '@react-spectrum/utils@3.11.5(react@18.2.0)': + '@react-aria/visually-hidden@3.8.16(react@18.2.0)': dependencies: - '@react-aria/i18n': 3.10.2(react@18.2.0) - '@react-aria/ssr': 3.9.2(react@18.2.0) - '@react-aria/utils': 3.23.2(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) + '@react-aria/interactions': 3.22.3(react@18.2.0) + '@react-aria/utils': 3.25.3(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) '@swc/helpers': 0.5.10 - clsx: 2.1.0 react: 18.2.0 - '@react-stately/calendar@3.4.4(react@18.2.0)': + '@react-spectrum/utils@3.11.11(react@18.2.0)': dependencies: - '@internationalized/date': 3.5.2 - '@react-stately/utils': 3.9.1(react@18.2.0) - '@react-types/calendar': 3.4.4(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) + '@react-aria/i18n': 3.12.3(react@18.2.0) + '@react-aria/ssr': 3.9.6(react@18.2.0) + '@react-aria/utils': 3.25.3(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) '@swc/helpers': 0.5.10 + clsx: 2.1.1 react: 18.2.0 - '@react-stately/calendar@3.5.0(react@18.2.0)': + '@react-stately/calendar@3.4.4(react@18.2.0)': dependencies: - '@internationalized/date': 3.5.3 - '@react-stately/utils': 3.10.0(react@18.2.0) - '@react-types/calendar': 3.4.5(react@18.2.0) - '@react-types/shared': 3.23.0(react@18.2.0) + '@internationalized/date': 3.5.2 + '@react-stately/utils': 3.10.4(react@18.2.0) + '@react-types/calendar': 3.4.4(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 '@react-stately/calendar@3.5.1(react@18.2.0)': dependencies: '@internationalized/date': 3.5.4 - '@react-stately/utils': 3.10.1(react@18.2.0) + '@react-stately/utils': 3.10.4(react@18.2.0) '@react-types/calendar': 3.4.6(react@18.2.0) - '@react-types/shared': 3.23.1(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 - '@react-stately/checkbox@3.6.3(react@18.2.0)': + '@react-stately/calendar@3.5.5(react@18.2.0)': dependencies: - '@react-stately/form': 3.0.1(react@18.2.0) - '@react-stately/utils': 3.9.1(react@18.2.0) - '@react-types/checkbox': 3.7.1(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) + '@internationalized/date': 3.5.6 + '@react-stately/utils': 3.10.4(react@18.2.0) + '@react-types/calendar': 3.4.10(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 - '@react-stately/checkbox@3.6.4(react@18.2.0)': + '@react-stately/checkbox@3.6.3(react@18.2.0)': dependencies: - '@react-stately/form': 3.0.2(react@18.2.0) - '@react-stately/utils': 3.10.0(react@18.2.0) - '@react-types/checkbox': 3.8.0(react@18.2.0) - '@react-types/shared': 3.23.0(react@18.2.0) + '@react-stately/form': 3.0.1(react@18.2.0) + '@react-stately/utils': 3.10.4(react@18.2.0) + '@react-types/checkbox': 3.7.1(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 '@react-stately/checkbox@3.6.5(react@18.2.0)': dependencies: '@react-stately/form': 3.0.3(react@18.2.0) - '@react-stately/utils': 3.10.1(react@18.2.0) + '@react-stately/utils': 3.10.4(react@18.2.0) '@react-types/checkbox': 3.8.1(react@18.2.0) - '@react-types/shared': 3.23.1(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 - '@react-stately/collections@3.10.5(react@18.2.0)': + '@react-stately/checkbox@3.6.9(react@18.2.0)': dependencies: - '@react-types/shared': 3.22.1(react@18.2.0) + '@react-stately/form': 3.0.6(react@18.2.0) + '@react-stately/utils': 3.10.4(react@18.2.0) + '@react-types/checkbox': 3.8.4(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 - '@react-stately/collections@3.10.6(react@18.2.0)': + '@react-stately/collections@3.10.5(react@18.2.0)': dependencies: - '@react-types/shared': 3.23.0(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 '@react-stately/collections@3.10.7(react@18.2.0)': dependencies: - '@react-types/shared': 3.23.1(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 - '@react-stately/color@3.6.0(react@18.2.0)': + '@react-stately/collections@3.11.0(react@18.2.0)': dependencies: - '@internationalized/number': 3.5.2 - '@internationalized/string': 3.2.2 - '@react-aria/i18n': 3.11.0(react@18.2.0) - '@react-stately/form': 3.0.2(react@18.2.0) - '@react-stately/numberfield': 3.9.2(react@18.2.0) - '@react-stately/slider': 3.5.3(react@18.2.0) - '@react-stately/utils': 3.10.0(react@18.2.0) - '@react-types/color': 3.0.0-beta.24(react@18.2.0) - '@react-types/shared': 3.23.0(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 @@ -24803,6 +24880,33 @@ snapshots: '@swc/helpers': 0.5.10 react: 18.2.0 + '@react-stately/color@3.8.0(react@18.2.0)': + dependencies: + '@internationalized/number': 3.5.4 + '@internationalized/string': 3.2.4 + '@react-aria/i18n': 3.12.3(react@18.2.0) + '@react-stately/form': 3.0.6(react@18.2.0) + '@react-stately/numberfield': 3.9.7(react@18.2.0) + '@react-stately/slider': 3.5.8(react@18.2.0) + '@react-stately/utils': 3.10.4(react@18.2.0) + '@react-types/color': 3.0.0(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) + '@swc/helpers': 0.5.10 + react: 18.2.0 + + '@react-stately/combobox@3.10.0(react@18.2.0)': + dependencies: + '@react-stately/collections': 3.11.0(react@18.2.0) + '@react-stately/form': 3.0.6(react@18.2.0) + '@react-stately/list': 3.11.0(react@18.2.0) + '@react-stately/overlays': 3.6.11(react@18.2.0) + '@react-stately/select': 3.6.8(react@18.2.0) + '@react-stately/utils': 3.10.4(react@18.2.0) + '@react-types/combobox': 3.13.0(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) + '@swc/helpers': 0.5.10 + react: 18.2.0 + '@react-stately/combobox@3.8.2(react@18.2.0)': dependencies: '@react-stately/collections': 3.10.5(react@18.2.0) @@ -24810,22 +24914,9 @@ snapshots: '@react-stately/list': 3.10.3(react@18.2.0) '@react-stately/overlays': 3.6.5(react@18.2.0) '@react-stately/select': 3.6.2(react@18.2.0) - '@react-stately/utils': 3.9.1(react@18.2.0) + '@react-stately/utils': 3.10.4(react@18.2.0) '@react-types/combobox': 3.10.1(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) - '@swc/helpers': 0.5.10 - react: 18.2.0 - - '@react-stately/combobox@3.8.3(react@18.2.0)': - dependencies: - '@react-stately/collections': 3.10.6(react@18.2.0) - '@react-stately/form': 3.0.2(react@18.2.0) - '@react-stately/list': 3.10.4(react@18.2.0) - '@react-stately/overlays': 3.6.6(react@18.2.0) - '@react-stately/select': 3.6.3(react@18.2.0) - '@react-stately/utils': 3.10.0(react@18.2.0) - '@react-types/combobox': 3.11.0(react@18.2.0) - '@react-types/shared': 3.23.0(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 @@ -24836,27 +24927,39 @@ snapshots: '@react-stately/list': 3.10.5(react@18.2.0) '@react-stately/overlays': 3.6.7(react@18.2.0) '@react-stately/select': 3.6.4(react@18.2.0) - '@react-stately/utils': 3.10.1(react@18.2.0) + '@react-stately/utils': 3.10.4(react@18.2.0) '@react-types/combobox': 3.11.1(react@18.2.0) - '@react-types/shared': 3.23.1(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 '@react-stately/data@3.11.2(react@18.2.0)': dependencies: - '@react-types/shared': 3.22.1(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 - '@react-stately/data@3.11.3(react@18.2.0)': + '@react-stately/data@3.11.4(react@18.2.0)': dependencies: - '@react-types/shared': 3.23.0(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 - '@react-stately/data@3.11.4(react@18.2.0)': + '@react-stately/data@3.11.7(react@18.2.0)': dependencies: - '@react-types/shared': 3.23.1(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) + '@swc/helpers': 0.5.10 + react: 18.2.0 + + '@react-stately/datepicker@3.10.3(react@18.2.0)': + dependencies: + '@internationalized/date': 3.5.6 + '@internationalized/string': 3.2.4 + '@react-stately/form': 3.0.6(react@18.2.0) + '@react-stately/overlays': 3.6.11(react@18.2.0) + '@react-stately/utils': 3.10.4(react@18.2.0) + '@react-types/datepicker': 3.8.3(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 @@ -24866,21 +24969,9 @@ snapshots: '@internationalized/string': 3.2.1 '@react-stately/form': 3.0.1(react@18.2.0) '@react-stately/overlays': 3.6.5(react@18.2.0) - '@react-stately/utils': 3.9.1(react@18.2.0) + '@react-stately/utils': 3.10.4(react@18.2.0) '@react-types/datepicker': 3.7.2(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) - '@swc/helpers': 0.5.10 - react: 18.2.0 - - '@react-stately/datepicker@3.9.3(react@18.2.0)': - dependencies: - '@internationalized/date': 3.5.3 - '@internationalized/string': 3.2.2 - '@react-stately/form': 3.0.2(react@18.2.0) - '@react-stately/overlays': 3.6.6(react@18.2.0) - '@react-stately/utils': 3.10.0(react@18.2.0) - '@react-types/datepicker': 3.7.3(react@18.2.0) - '@react-types/shared': 3.23.0(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 @@ -24890,38 +24981,41 @@ snapshots: '@internationalized/string': 3.2.3 '@react-stately/form': 3.0.3(react@18.2.0) '@react-stately/overlays': 3.6.7(react@18.2.0) - '@react-stately/utils': 3.10.1(react@18.2.0) + '@react-stately/utils': 3.10.4(react@18.2.0) '@react-types/datepicker': 3.7.4(react@18.2.0) - '@react-types/shared': 3.23.1(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 - '@react-stately/dnd@3.2.8(react@18.2.0)': + '@react-stately/disclosure@3.0.0-alpha.0(react@18.2.0)': dependencies: - '@react-stately/selection': 3.14.3(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) + '@react-stately/utils': 3.10.4(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 - '@react-stately/dnd@3.3.0(react@18.2.0)': + '@react-stately/dnd@3.2.8(react@18.2.0)': dependencies: - '@react-stately/selection': 3.15.0(react@18.2.0) - '@react-types/shared': 3.23.0(react@18.2.0) + '@react-stately/selection': 3.14.3(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 '@react-stately/dnd@3.3.1(react@18.2.0)': dependencies: '@react-stately/selection': 3.15.1(react@18.2.0) - '@react-types/shared': 3.23.1(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 - '@react-stately/flags@3.0.1': + '@react-stately/dnd@3.4.3(react@18.2.0)': dependencies: - '@swc/helpers': 0.4.36 + '@react-stately/selection': 3.17.0(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) + '@swc/helpers': 0.5.10 + react: 18.2.0 - '@react-stately/flags@3.0.2': + '@react-stately/flags@3.0.1': dependencies: '@swc/helpers': 0.4.36 @@ -24929,21 +25023,25 @@ snapshots: dependencies: '@swc/helpers': 0.5.10 + '@react-stately/flags@3.0.4': + dependencies: + '@swc/helpers': 0.5.10 + '@react-stately/form@3.0.1(react@18.2.0)': dependencies: - '@react-types/shared': 3.22.1(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 - '@react-stately/form@3.0.2(react@18.2.0)': + '@react-stately/form@3.0.3(react@18.2.0)': dependencies: - '@react-types/shared': 3.23.0(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 - '@react-stately/form@3.0.3(react@18.2.0)': + '@react-stately/form@3.0.6(react@18.2.0)': dependencies: - '@react-types/shared': 3.23.1(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 @@ -24952,16 +25050,7 @@ snapshots: '@react-stately/collections': 3.10.5(react@18.2.0) '@react-stately/selection': 3.14.3(react@18.2.0) '@react-types/grid': 3.2.4(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) - '@swc/helpers': 0.5.10 - react: 18.2.0 - - '@react-stately/grid@3.8.6(react@18.2.0)': - dependencies: - '@react-stately/collections': 3.10.6(react@18.2.0) - '@react-stately/selection': 3.15.0(react@18.2.0) - '@react-types/grid': 3.2.5(react@18.2.0) - '@react-types/shared': 3.23.0(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 @@ -24970,25 +25059,36 @@ snapshots: '@react-stately/collections': 3.10.7(react@18.2.0) '@react-stately/selection': 3.15.1(react@18.2.0) '@react-types/grid': 3.2.6(react@18.2.0) - '@react-types/shared': 3.23.1(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 - '@react-stately/list@3.10.3(react@18.2.0)': + '@react-stately/grid@3.9.3(react@18.2.0)': dependencies: - '@react-stately/collections': 3.10.5(react@18.2.0) - '@react-stately/selection': 3.14.3(react@18.2.0) - '@react-stately/utils': 3.9.1(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) + '@react-stately/collections': 3.11.0(react@18.2.0) + '@react-stately/selection': 3.17.0(react@18.2.0) + '@react-types/grid': 3.2.9(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) + '@swc/helpers': 0.5.10 + react: 18.2.0 + + '@react-stately/layout@4.0.3(react@18.2.0)': + dependencies: + '@react-stately/collections': 3.11.0(react@18.2.0) + '@react-stately/table': 3.12.3(react@18.2.0) + '@react-stately/virtualizer': 4.1.0(react@18.2.0) + '@react-types/grid': 3.2.9(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) + '@react-types/table': 3.10.2(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 - '@react-stately/list@3.10.4(react@18.2.0)': + '@react-stately/list@3.10.3(react@18.2.0)': dependencies: - '@react-stately/collections': 3.10.6(react@18.2.0) - '@react-stately/selection': 3.15.0(react@18.2.0) - '@react-stately/utils': 3.10.0(react@18.2.0) - '@react-types/shared': 3.23.0(react@18.2.0) + '@react-stately/collections': 3.10.5(react@18.2.0) + '@react-stately/selection': 3.14.3(react@18.2.0) + '@react-stately/utils': 3.10.4(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 @@ -24996,24 +25096,25 @@ snapshots: dependencies: '@react-stately/collections': 3.10.7(react@18.2.0) '@react-stately/selection': 3.15.1(react@18.2.0) - '@react-stately/utils': 3.10.1(react@18.2.0) - '@react-types/shared': 3.23.1(react@18.2.0) + '@react-stately/utils': 3.10.4(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 - '@react-stately/menu@3.6.1(react@18.2.0)': + '@react-stately/list@3.11.0(react@18.2.0)': dependencies: - '@react-stately/overlays': 3.6.5(react@18.2.0) - '@react-types/menu': 3.9.7(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) + '@react-stately/collections': 3.11.0(react@18.2.0) + '@react-stately/selection': 3.17.0(react@18.2.0) + '@react-stately/utils': 3.10.4(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 - '@react-stately/menu@3.7.0(react@18.2.0)': + '@react-stately/menu@3.6.1(react@18.2.0)': dependencies: - '@react-stately/overlays': 3.6.6(react@18.2.0) - '@react-types/menu': 3.9.8(react@18.2.0) - '@react-types/shared': 3.23.0(react@18.2.0) + '@react-stately/overlays': 3.6.5(react@18.2.0) + '@react-types/menu': 3.9.7(react@18.2.0) + '@react-types/shared': 3.22.1(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 @@ -25025,21 +25126,20 @@ snapshots: '@swc/helpers': 0.5.10 react: 18.2.0 - '@react-stately/numberfield@3.9.1(react@18.2.0)': + '@react-stately/menu@3.8.3(react@18.2.0)': dependencies: - '@internationalized/number': 3.5.1 - '@react-stately/form': 3.0.1(react@18.2.0) - '@react-stately/utils': 3.9.1(react@18.2.0) - '@react-types/numberfield': 3.8.1(react@18.2.0) + '@react-stately/overlays': 3.6.11(react@18.2.0) + '@react-types/menu': 3.9.12(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 - '@react-stately/numberfield@3.9.2(react@18.2.0)': + '@react-stately/numberfield@3.9.1(react@18.2.0)': dependencies: - '@internationalized/number': 3.5.2 - '@react-stately/form': 3.0.2(react@18.2.0) - '@react-stately/utils': 3.10.0(react@18.2.0) - '@react-types/numberfield': 3.8.2(react@18.2.0) + '@internationalized/number': 3.5.1 + '@react-stately/form': 3.0.1(react@18.2.0) + '@react-stately/utils': 3.10.4(react@18.2.0) + '@react-types/numberfield': 3.8.1(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 @@ -25047,28 +25147,37 @@ snapshots: dependencies: '@internationalized/number': 3.5.3 '@react-stately/form': 3.0.3(react@18.2.0) - '@react-stately/utils': 3.10.1(react@18.2.0) + '@react-stately/utils': 3.10.4(react@18.2.0) '@react-types/numberfield': 3.8.3(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 - '@react-stately/overlays@3.6.5(react@18.2.0)': + '@react-stately/numberfield@3.9.7(react@18.2.0)': dependencies: - '@react-stately/utils': 3.9.1(react@18.2.0) - '@react-types/overlays': 3.8.5(react@18.2.0) + '@internationalized/number': 3.5.4 + '@react-stately/form': 3.0.6(react@18.2.0) + '@react-stately/utils': 3.10.4(react@18.2.0) + '@react-types/numberfield': 3.8.6(react@18.2.0) + '@swc/helpers': 0.5.10 + react: 18.2.0 + + '@react-stately/overlays@3.6.11(react@18.2.0)': + dependencies: + '@react-stately/utils': 3.10.4(react@18.2.0) + '@react-types/overlays': 3.8.10(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 - '@react-stately/overlays@3.6.6(react@18.2.0)': + '@react-stately/overlays@3.6.5(react@18.2.0)': dependencies: - '@react-stately/utils': 3.10.0(react@18.2.0) - '@react-types/overlays': 3.8.6(react@18.2.0) + '@react-stately/utils': 3.10.4(react@18.2.0) + '@react-types/overlays': 3.8.5(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 '@react-stately/overlays@3.6.7(react@18.2.0)': dependencies: - '@react-stately/utils': 3.10.1(react@18.2.0) + '@react-stately/utils': 3.10.4(react@18.2.0) '@react-types/overlays': 3.8.7(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 @@ -25076,48 +25185,48 @@ snapshots: '@react-stately/radio@3.10.2(react@18.2.0)': dependencies: '@react-stately/form': 3.0.1(react@18.2.0) - '@react-stately/utils': 3.9.1(react@18.2.0) + '@react-stately/utils': 3.10.4(react@18.2.0) '@react-types/radio': 3.7.1(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 - '@react-stately/radio@3.10.3(react@18.2.0)': + '@react-stately/radio@3.10.4(react@18.2.0)': dependencies: - '@react-stately/form': 3.0.2(react@18.2.0) - '@react-stately/utils': 3.10.0(react@18.2.0) - '@react-types/radio': 3.8.0(react@18.2.0) - '@react-types/shared': 3.23.0(react@18.2.0) + '@react-stately/form': 3.0.3(react@18.2.0) + '@react-stately/utils': 3.10.4(react@18.2.0) + '@react-types/radio': 3.8.1(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 - '@react-stately/radio@3.10.4(react@18.2.0)': + '@react-stately/radio@3.10.8(react@18.2.0)': dependencies: - '@react-stately/form': 3.0.3(react@18.2.0) - '@react-stately/utils': 3.10.1(react@18.2.0) - '@react-types/radio': 3.8.1(react@18.2.0) - '@react-types/shared': 3.23.1(react@18.2.0) + '@react-stately/form': 3.0.6(react@18.2.0) + '@react-stately/utils': 3.10.4(react@18.2.0) + '@react-types/radio': 3.8.4(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 '@react-stately/searchfield@3.5.1(react@18.2.0)': dependencies: - '@react-stately/utils': 3.9.1(react@18.2.0) + '@react-stately/utils': 3.10.4(react@18.2.0) '@react-types/searchfield': 3.5.3(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 - '@react-stately/searchfield@3.5.2(react@18.2.0)': + '@react-stately/searchfield@3.5.3(react@18.2.0)': dependencies: - '@react-stately/utils': 3.10.0(react@18.2.0) - '@react-types/searchfield': 3.5.4(react@18.2.0) + '@react-stately/utils': 3.10.4(react@18.2.0) + '@react-types/searchfield': 3.5.5(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 - '@react-stately/searchfield@3.5.3(react@18.2.0)': + '@react-stately/searchfield@3.5.7(react@18.2.0)': dependencies: - '@react-stately/utils': 3.10.1(react@18.2.0) - '@react-types/searchfield': 3.5.5(react@18.2.0) + '@react-stately/utils': 3.10.4(react@18.2.0) + '@react-types/searchfield': 3.5.9(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 @@ -25127,17 +25236,7 @@ snapshots: '@react-stately/list': 3.10.3(react@18.2.0) '@react-stately/overlays': 3.6.5(react@18.2.0) '@react-types/select': 3.9.2(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) - '@swc/helpers': 0.5.10 - react: 18.2.0 - - '@react-stately/select@3.6.3(react@18.2.0)': - dependencies: - '@react-stately/form': 3.0.2(react@18.2.0) - '@react-stately/list': 3.10.4(react@18.2.0) - '@react-stately/overlays': 3.6.6(react@18.2.0) - '@react-types/select': 3.9.3(react@18.2.0) - '@react-types/shared': 3.23.0(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 @@ -25147,58 +25246,68 @@ snapshots: '@react-stately/list': 3.10.5(react@18.2.0) '@react-stately/overlays': 3.6.7(react@18.2.0) '@react-types/select': 3.9.4(react@18.2.0) - '@react-types/shared': 3.23.1(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 - '@react-stately/selection@3.14.3(react@18.2.0)': + '@react-stately/select@3.6.8(react@18.2.0)': dependencies: - '@react-stately/collections': 3.10.5(react@18.2.0) - '@react-stately/utils': 3.9.1(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) + '@react-stately/form': 3.0.6(react@18.2.0) + '@react-stately/list': 3.11.0(react@18.2.0) + '@react-stately/overlays': 3.6.11(react@18.2.0) + '@react-types/select': 3.9.7(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 - '@react-stately/selection@3.15.0(react@18.2.0)': + '@react-stately/selection@3.14.3(react@18.2.0)': dependencies: - '@react-stately/collections': 3.10.6(react@18.2.0) - '@react-stately/utils': 3.10.0(react@18.2.0) - '@react-types/shared': 3.23.0(react@18.2.0) + '@react-stately/collections': 3.10.5(react@18.2.0) + '@react-stately/utils': 3.10.4(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 '@react-stately/selection@3.15.1(react@18.2.0)': dependencies: '@react-stately/collections': 3.10.7(react@18.2.0) - '@react-stately/utils': 3.10.1(react@18.2.0) - '@react-types/shared': 3.23.1(react@18.2.0) + '@react-stately/utils': 3.10.4(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 - '@react-stately/slider@3.5.2(react@18.2.0)': + '@react-stately/selection@3.17.0(react@18.2.0)': dependencies: - '@react-stately/utils': 3.9.1(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) - '@react-types/slider': 3.7.1(react@18.2.0) + '@react-stately/collections': 3.11.0(react@18.2.0) + '@react-stately/utils': 3.10.4(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 - '@react-stately/slider@3.5.3(react@18.2.0)': + '@react-stately/slider@3.5.2(react@18.2.0)': dependencies: - '@react-stately/utils': 3.10.0(react@18.2.0) - '@react-types/shared': 3.23.0(react@18.2.0) - '@react-types/slider': 3.7.2(react@18.2.0) + '@react-stately/utils': 3.10.4(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) + '@react-types/slider': 3.7.1(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 '@react-stately/slider@3.5.4(react@18.2.0)': dependencies: - '@react-stately/utils': 3.10.1(react@18.2.0) - '@react-types/shared': 3.23.1(react@18.2.0) + '@react-stately/utils': 3.10.4(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) '@react-types/slider': 3.7.3(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 + '@react-stately/slider@3.5.8(react@18.2.0)': + dependencies: + '@react-stately/utils': 3.10.4(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) + '@react-types/slider': 3.7.6(react@18.2.0) + '@swc/helpers': 0.5.10 + react: 18.2.0 + '@react-stately/table@3.11.6(react@18.2.0)': dependencies: '@react-stately/collections': 3.10.5(react@18.2.0) @@ -25212,19 +25321,6 @@ snapshots: '@swc/helpers': 0.5.10 react: 18.2.0 - '@react-stately/table@3.11.7(react@18.2.0)': - dependencies: - '@react-stately/collections': 3.10.6(react@18.2.0) - '@react-stately/flags': 3.0.2 - '@react-stately/grid': 3.8.6(react@18.2.0) - '@react-stately/selection': 3.15.0(react@18.2.0) - '@react-stately/utils': 3.10.0(react@18.2.0) - '@react-types/grid': 3.2.5(react@18.2.0) - '@react-types/shared': 3.23.0(react@18.2.0) - '@react-types/table': 3.9.4(react@18.2.0) - '@swc/helpers': 0.5.10 - react: 18.2.0 - '@react-stately/table@3.11.8(react@18.2.0)': dependencies: '@react-stately/collections': 3.10.7(react@18.2.0) @@ -25238,62 +25334,75 @@ snapshots: '@swc/helpers': 0.5.10 react: 18.2.0 - '@react-stately/tabs@3.6.4(react@18.2.0)': + '@react-stately/table@3.12.3(react@18.2.0)': dependencies: - '@react-stately/list': 3.10.3(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) - '@react-types/tabs': 3.3.5(react@18.2.0) + '@react-stately/collections': 3.11.0(react@18.2.0) + '@react-stately/flags': 3.0.4 + '@react-stately/grid': 3.9.3(react@18.2.0) + '@react-stately/selection': 3.17.0(react@18.2.0) + '@react-stately/utils': 3.10.4(react@18.2.0) + '@react-types/grid': 3.2.9(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) + '@react-types/table': 3.10.2(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 - '@react-stately/tabs@3.6.5(react@18.2.0)': + '@react-stately/tabs@3.6.10(react@18.2.0)': dependencies: - '@react-stately/list': 3.10.4(react@18.2.0) - '@react-types/shared': 3.23.0(react@18.2.0) - '@react-types/tabs': 3.3.6(react@18.2.0) + '@react-stately/list': 3.11.0(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) + '@react-types/tabs': 3.3.10(react@18.2.0) + '@swc/helpers': 0.5.10 + react: 18.2.0 + + '@react-stately/tabs@3.6.4(react@18.2.0)': + dependencies: + '@react-stately/list': 3.10.3(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) + '@react-types/tabs': 3.3.5(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 '@react-stately/tabs@3.6.6(react@18.2.0)': dependencies: '@react-stately/list': 3.10.5(react@18.2.0) - '@react-types/shared': 3.23.1(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) '@react-types/tabs': 3.3.7(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 '@react-stately/toggle@3.7.2(react@18.2.0)': dependencies: - '@react-stately/utils': 3.9.1(react@18.2.0) + '@react-stately/utils': 3.10.4(react@18.2.0) '@react-types/checkbox': 3.7.1(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 - '@react-stately/toggle@3.7.3(react@18.2.0)': + '@react-stately/toggle@3.7.4(react@18.2.0)': dependencies: - '@react-stately/utils': 3.10.0(react@18.2.0) - '@react-types/checkbox': 3.8.0(react@18.2.0) + '@react-stately/utils': 3.10.4(react@18.2.0) + '@react-types/checkbox': 3.8.1(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 - '@react-stately/toggle@3.7.4(react@18.2.0)': + '@react-stately/toggle@3.7.8(react@18.2.0)': dependencies: - '@react-stately/utils': 3.10.1(react@18.2.0) - '@react-types/checkbox': 3.8.1(react@18.2.0) + '@react-stately/utils': 3.10.4(react@18.2.0) + '@react-types/checkbox': 3.8.4(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 - '@react-stately/tooltip@3.4.7(react@18.2.0)': + '@react-stately/tooltip@3.4.13(react@18.2.0)': dependencies: - '@react-stately/overlays': 3.6.5(react@18.2.0) - '@react-types/tooltip': 3.4.7(react@18.2.0) + '@react-stately/overlays': 3.6.11(react@18.2.0) + '@react-types/tooltip': 3.4.12(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 - '@react-stately/tooltip@3.4.8(react@18.2.0)': + '@react-stately/tooltip@3.4.7(react@18.2.0)': dependencies: - '@react-stately/overlays': 3.6.6(react@18.2.0) - '@react-types/tooltip': 3.4.8(react@18.2.0) + '@react-stately/overlays': 3.6.5(react@18.2.0) + '@react-types/tooltip': 3.4.7(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 @@ -25308,17 +25417,8 @@ snapshots: dependencies: '@react-stately/collections': 3.10.5(react@18.2.0) '@react-stately/selection': 3.14.3(react@18.2.0) - '@react-stately/utils': 3.9.1(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) - '@swc/helpers': 0.5.10 - react: 18.2.0 - - '@react-stately/tree@3.8.0(react@18.2.0)': - dependencies: - '@react-stately/collections': 3.10.6(react@18.2.0) - '@react-stately/selection': 3.15.0(react@18.2.0) - '@react-stately/utils': 3.10.0(react@18.2.0) - '@react-types/shared': 3.23.0(react@18.2.0) + '@react-stately/utils': 3.10.4(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 @@ -25326,13 +25426,17 @@ snapshots: dependencies: '@react-stately/collections': 3.10.7(react@18.2.0) '@react-stately/selection': 3.15.1(react@18.2.0) - '@react-stately/utils': 3.10.1(react@18.2.0) - '@react-types/shared': 3.23.1(react@18.2.0) + '@react-stately/utils': 3.10.4(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 - '@react-stately/utils@3.10.0(react@18.2.0)': + '@react-stately/tree@3.8.5(react@18.2.0)': dependencies: + '@react-stately/collections': 3.11.0(react@18.2.0) + '@react-stately/selection': 3.17.0(react@18.2.0) + '@react-stately/utils': 3.10.4(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 @@ -25341,6 +25445,11 @@ snapshots: '@swc/helpers': 0.5.10 react: 18.2.0 + '@react-stately/utils@3.10.4(react@18.2.0)': + dependencies: + '@swc/helpers': 0.5.10 + react: 18.2.0 + '@react-stately/utils@3.9.1(react@18.2.0)': dependencies: '@swc/helpers': 0.5.10 @@ -25348,95 +25457,100 @@ snapshots: '@react-stately/virtualizer@3.6.8(react@18.2.0)': dependencies: - '@react-aria/utils': 3.23.2(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) + '@react-aria/utils': 3.25.3(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 - '@react-stately/virtualizer@3.7.0(react@18.2.0)': + '@react-stately/virtualizer@3.7.1(react@18.2.0)': dependencies: - '@react-aria/utils': 3.24.0(react@18.2.0) - '@react-types/shared': 3.23.0(react@18.2.0) + '@react-aria/utils': 3.25.3(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 - '@react-stately/virtualizer@3.7.1(react@18.2.0)': + '@react-stately/virtualizer@4.1.0(react@18.2.0)': dependencies: - '@react-aria/utils': 3.24.1(react@18.2.0) - '@react-types/shared': 3.23.1(react@18.2.0) + '@react-aria/utils': 3.25.3(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) '@swc/helpers': 0.5.10 react: 18.2.0 - '@react-types/breadcrumbs@3.7.3(react@18.2.0)': + '@react-types/accordion@3.0.0-alpha.24(react@18.2.0)': dependencies: - '@react-types/link': 3.5.3(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) react: 18.2.0 - '@react-types/breadcrumbs@3.7.4(react@18.2.0)': + '@react-types/breadcrumbs@3.7.3(react@18.2.0)': dependencies: - '@react-types/link': 3.5.4(react@18.2.0) - '@react-types/shared': 3.23.0(react@18.2.0) + '@react-types/link': 3.5.3(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) react: 18.2.0 '@react-types/breadcrumbs@3.7.5(react@18.2.0)': dependencies: '@react-types/link': 3.5.5(react@18.2.0) - '@react-types/shared': 3.23.1(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) react: 18.2.0 - '@react-types/button@3.9.2(react@18.2.0)': + '@react-types/breadcrumbs@3.7.8(react@18.2.0)': dependencies: - '@react-types/shared': 3.22.1(react@18.2.0) + '@react-types/link': 3.5.8(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) react: 18.2.0 - '@react-types/button@3.9.3(react@18.2.0)': + '@react-types/button@3.10.0(react@18.2.0)': dependencies: - '@react-types/shared': 3.23.0(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) + react: 18.2.0 + + '@react-types/button@3.9.2(react@18.2.0)': + dependencies: + '@react-types/shared': 3.25.0(react@18.2.0) react: 18.2.0 '@react-types/button@3.9.4(react@18.2.0)': dependencies: - '@react-types/shared': 3.23.1(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) react: 18.2.0 - '@react-types/calendar@3.4.4(react@18.2.0)': + '@react-types/calendar@3.4.10(react@18.2.0)': dependencies: - '@internationalized/date': 3.5.2 - '@react-types/shared': 3.22.1(react@18.2.0) + '@internationalized/date': 3.5.6 + '@react-types/shared': 3.25.0(react@18.2.0) react: 18.2.0 - '@react-types/calendar@3.4.5(react@18.2.0)': + '@react-types/calendar@3.4.4(react@18.2.0)': dependencies: - '@internationalized/date': 3.5.3 - '@react-types/shared': 3.23.0(react@18.2.0) + '@internationalized/date': 3.5.2 + '@react-types/shared': 3.25.0(react@18.2.0) react: 18.2.0 '@react-types/calendar@3.4.6(react@18.2.0)': dependencies: '@internationalized/date': 3.5.4 - '@react-types/shared': 3.23.1(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) react: 18.2.0 '@react-types/checkbox@3.7.1(react@18.2.0)': dependencies: - '@react-types/shared': 3.22.1(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) react: 18.2.0 - '@react-types/checkbox@3.8.0(react@18.2.0)': + '@react-types/checkbox@3.8.1(react@18.2.0)': dependencies: - '@react-types/shared': 3.23.0(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) react: 18.2.0 - '@react-types/checkbox@3.8.1(react@18.2.0)': + '@react-types/checkbox@3.8.4(react@18.2.0)': dependencies: - '@react-types/shared': 3.23.1(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) react: 18.2.0 - '@react-types/color@3.0.0-beta.24(react@18.2.0)': + '@react-types/color@3.0.0(react@18.2.0)': dependencies: - '@react-types/shared': 3.23.0(react@18.2.0) - '@react-types/slider': 3.7.2(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) + '@react-types/slider': 3.7.6(react@18.2.0) react: 18.2.0 '@react-types/color@3.0.0-beta.25(react@18.2.0)': @@ -25447,17 +25561,17 @@ snapshots: '@react-types/combobox@3.10.1(react@18.2.0)': dependencies: - '@react-types/shared': 3.22.1(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) react: 18.2.0 - '@react-types/combobox@3.11.0(react@18.2.0)': + '@react-types/combobox@3.11.1(react@18.2.0)': dependencies: - '@react-types/shared': 3.23.0(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) react: 18.2.0 - '@react-types/combobox@3.11.1(react@18.2.0)': + '@react-types/combobox@3.13.0(react@18.2.0)': dependencies: - '@react-types/shared': 3.23.1(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) react: 18.2.0 '@react-types/datepicker@3.7.2(react@18.2.0)': @@ -25465,15 +25579,7 @@ snapshots: '@internationalized/date': 3.5.2 '@react-types/calendar': 3.4.4(react@18.2.0) '@react-types/overlays': 3.8.5(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) - react: 18.2.0 - - '@react-types/datepicker@3.7.3(react@18.2.0)': - dependencies: - '@internationalized/date': 3.5.3 - '@react-types/calendar': 3.4.5(react@18.2.0) - '@react-types/overlays': 3.8.6(react@18.2.0) - '@react-types/shared': 3.23.0(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) react: 18.2.0 '@react-types/datepicker@3.7.4(react@18.2.0)': @@ -25481,25 +25587,33 @@ snapshots: '@internationalized/date': 3.5.4 '@react-types/calendar': 3.4.6(react@18.2.0) '@react-types/overlays': 3.8.7(react@18.2.0) - '@react-types/shared': 3.23.1(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) + react: 18.2.0 + + '@react-types/datepicker@3.8.3(react@18.2.0)': + dependencies: + '@internationalized/date': 3.5.6 + '@react-types/calendar': 3.4.10(react@18.2.0) + '@react-types/overlays': 3.8.10(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) react: 18.2.0 '@react-types/dialog@3.5.10(react@18.2.0)': dependencies: '@react-types/overlays': 3.8.7(react@18.2.0) - '@react-types/shared': 3.23.1(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) react: 18.2.0 - '@react-types/dialog@3.5.8(react@18.2.0)': + '@react-types/dialog@3.5.13(react@18.2.0)': dependencies: - '@react-types/overlays': 3.8.5(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) + '@react-types/overlays': 3.8.10(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) react: 18.2.0 - '@react-types/dialog@3.5.9(react@18.2.0)': + '@react-types/dialog@3.5.8(react@18.2.0)': dependencies: - '@react-types/overlays': 3.8.6(react@18.2.0) - '@react-types/shared': 3.23.0(react@18.2.0) + '@react-types/overlays': 3.8.5(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) react: 18.2.0 '@react-types/form@3.7.2(react@18.2.0)': @@ -25507,14 +25621,14 @@ snapshots: '@react-types/shared': 3.22.1(react@18.2.0) react: 18.2.0 - '@react-types/form@3.7.3(react@18.2.0)': + '@react-types/form@3.7.4(react@18.2.0)': dependencies: - '@react-types/shared': 3.23.0(react@18.2.0) + '@react-types/shared': 3.23.1(react@18.2.0) react: 18.2.0 - '@react-types/form@3.7.4(react@18.2.0)': + '@react-types/form@3.7.7(react@18.2.0)': dependencies: - '@react-types/shared': 3.23.1(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) react: 18.2.0 '@react-types/grid@3.2.4(react@18.2.0)': @@ -25522,62 +25636,62 @@ snapshots: '@react-types/shared': 3.22.1(react@18.2.0) react: 18.2.0 - '@react-types/grid@3.2.5(react@18.2.0)': + '@react-types/grid@3.2.6(react@18.2.0)': dependencies: - '@react-types/shared': 3.23.0(react@18.2.0) + '@react-types/shared': 3.23.1(react@18.2.0) react: 18.2.0 - '@react-types/grid@3.2.6(react@18.2.0)': + '@react-types/grid@3.2.9(react@18.2.0)': dependencies: - '@react-types/shared': 3.23.1(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) react: 18.2.0 '@react-types/link@3.5.3(react@18.2.0)': dependencies: - '@react-types/shared': 3.22.1(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) react: 18.2.0 - '@react-types/link@3.5.4(react@18.2.0)': + '@react-types/link@3.5.5(react@18.2.0)': dependencies: - '@react-types/shared': 3.23.0(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) react: 18.2.0 - '@react-types/link@3.5.5(react@18.2.0)': + '@react-types/link@3.5.8(react@18.2.0)': dependencies: - '@react-types/shared': 3.23.1(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) react: 18.2.0 '@react-types/listbox@3.4.7(react@18.2.0)': dependencies: - '@react-types/shared': 3.22.1(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) react: 18.2.0 - '@react-types/listbox@3.4.8(react@18.2.0)': + '@react-types/listbox@3.4.9(react@18.2.0)': dependencies: - '@react-types/shared': 3.23.0(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) react: 18.2.0 - '@react-types/listbox@3.4.9(react@18.2.0)': + '@react-types/listbox@3.5.2(react@18.2.0)': dependencies: - '@react-types/shared': 3.23.1(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) react: 18.2.0 - '@react-types/menu@3.9.7(react@18.2.0)': + '@react-types/menu@3.9.12(react@18.2.0)': dependencies: - '@react-types/overlays': 3.8.5(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) + '@react-types/overlays': 3.8.10(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) react: 18.2.0 - '@react-types/menu@3.9.8(react@18.2.0)': + '@react-types/menu@3.9.7(react@18.2.0)': dependencies: - '@react-types/overlays': 3.8.6(react@18.2.0) - '@react-types/shared': 3.23.0(react@18.2.0) + '@react-types/overlays': 3.8.5(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) react: 18.2.0 '@react-types/menu@3.9.9(react@18.2.0)': dependencies: '@react-types/overlays': 3.8.7(react@18.2.0) - '@react-types/shared': 3.23.1(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) react: 18.2.0 '@react-types/meter@3.3.7(react@18.2.0)': @@ -25585,161 +25699,161 @@ snapshots: '@react-types/progress': 3.5.2(react@18.2.0) react: 18.2.0 - '@react-types/meter@3.4.0(react@18.2.0)': + '@react-types/meter@3.4.1(react@18.2.0)': dependencies: - '@react-types/progress': 3.5.3(react@18.2.0) + '@react-types/progress': 3.5.4(react@18.2.0) react: 18.2.0 - '@react-types/meter@3.4.1(react@18.2.0)': + '@react-types/meter@3.4.4(react@18.2.0)': dependencies: - '@react-types/progress': 3.5.4(react@18.2.0) + '@react-types/progress': 3.5.7(react@18.2.0) react: 18.2.0 '@react-types/numberfield@3.8.1(react@18.2.0)': dependencies: - '@react-types/shared': 3.22.1(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) react: 18.2.0 - '@react-types/numberfield@3.8.2(react@18.2.0)': + '@react-types/numberfield@3.8.3(react@18.2.0)': dependencies: - '@react-types/shared': 3.23.0(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) react: 18.2.0 - '@react-types/numberfield@3.8.3(react@18.2.0)': + '@react-types/numberfield@3.8.6(react@18.2.0)': dependencies: - '@react-types/shared': 3.23.1(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) react: 18.2.0 - '@react-types/overlays@3.8.5(react@18.2.0)': + '@react-types/overlays@3.8.10(react@18.2.0)': dependencies: - '@react-types/shared': 3.22.1(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) react: 18.2.0 - '@react-types/overlays@3.8.6(react@18.2.0)': + '@react-types/overlays@3.8.5(react@18.2.0)': dependencies: - '@react-types/shared': 3.23.0(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) react: 18.2.0 '@react-types/overlays@3.8.7(react@18.2.0)': dependencies: - '@react-types/shared': 3.23.1(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) react: 18.2.0 '@react-types/progress@3.5.2(react@18.2.0)': dependencies: - '@react-types/shared': 3.22.1(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) react: 18.2.0 - '@react-types/progress@3.5.3(react@18.2.0)': + '@react-types/progress@3.5.4(react@18.2.0)': dependencies: - '@react-types/shared': 3.23.0(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) react: 18.2.0 - '@react-types/progress@3.5.4(react@18.2.0)': + '@react-types/progress@3.5.7(react@18.2.0)': dependencies: - '@react-types/shared': 3.23.1(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) react: 18.2.0 '@react-types/radio@3.7.1(react@18.2.0)': dependencies: - '@react-types/shared': 3.22.1(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) react: 18.2.0 - '@react-types/radio@3.8.0(react@18.2.0)': + '@react-types/radio@3.8.1(react@18.2.0)': dependencies: - '@react-types/shared': 3.23.0(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) react: 18.2.0 - '@react-types/radio@3.8.1(react@18.2.0)': + '@react-types/radio@3.8.4(react@18.2.0)': dependencies: - '@react-types/shared': 3.23.1(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) react: 18.2.0 '@react-types/searchfield@3.5.3(react@18.2.0)': dependencies: - '@react-types/shared': 3.22.1(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) '@react-types/textfield': 3.9.1(react@18.2.0) react: 18.2.0 - '@react-types/searchfield@3.5.4(react@18.2.0)': + '@react-types/searchfield@3.5.5(react@18.2.0)': dependencies: - '@react-types/shared': 3.23.0(react@18.2.0) - '@react-types/textfield': 3.9.2(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) + '@react-types/textfield': 3.9.3(react@18.2.0) react: 18.2.0 - '@react-types/searchfield@3.5.5(react@18.2.0)': + '@react-types/searchfield@3.5.9(react@18.2.0)': dependencies: - '@react-types/shared': 3.23.1(react@18.2.0) - '@react-types/textfield': 3.9.3(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) + '@react-types/textfield': 3.9.7(react@18.2.0) react: 18.2.0 '@react-types/select@3.9.2(react@18.2.0)': dependencies: - '@react-types/shared': 3.22.1(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) react: 18.2.0 - '@react-types/select@3.9.3(react@18.2.0)': + '@react-types/select@3.9.4(react@18.2.0)': dependencies: - '@react-types/shared': 3.23.0(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) react: 18.2.0 - '@react-types/select@3.9.4(react@18.2.0)': + '@react-types/select@3.9.7(react@18.2.0)': dependencies: - '@react-types/shared': 3.23.1(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) react: 18.2.0 '@react-types/shared@3.22.1(react@18.2.0)': dependencies: react: 18.2.0 - '@react-types/shared@3.23.0(react@18.2.0)': + '@react-types/shared@3.23.1(react@18.2.0)': dependencies: react: 18.2.0 - '@react-types/shared@3.23.1(react@18.2.0)': + '@react-types/shared@3.25.0(react@18.2.0)': dependencies: react: 18.2.0 '@react-types/slider@3.7.1(react@18.2.0)': dependencies: - '@react-types/shared': 3.22.1(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) react: 18.2.0 - '@react-types/slider@3.7.2(react@18.2.0)': + '@react-types/slider@3.7.3(react@18.2.0)': dependencies: - '@react-types/shared': 3.23.0(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) react: 18.2.0 - '@react-types/slider@3.7.3(react@18.2.0)': + '@react-types/slider@3.7.6(react@18.2.0)': dependencies: - '@react-types/shared': 3.23.1(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) react: 18.2.0 '@react-types/switch@3.5.1(react@18.2.0)': dependencies: - '@react-types/shared': 3.22.1(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) react: 18.2.0 - '@react-types/switch@3.5.2(react@18.2.0)': + '@react-types/switch@3.5.3(react@18.2.0)': dependencies: - '@react-types/shared': 3.23.0(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) react: 18.2.0 - '@react-types/switch@3.5.3(react@18.2.0)': + '@react-types/switch@3.5.6(react@18.2.0)': dependencies: - '@react-types/shared': 3.23.1(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) react: 18.2.0 - '@react-types/table@3.9.3(react@18.2.0)': + '@react-types/table@3.10.2(react@18.2.0)': dependencies: - '@react-types/grid': 3.2.4(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) + '@react-types/grid': 3.2.9(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) react: 18.2.0 - '@react-types/table@3.9.4(react@18.2.0)': + '@react-types/table@3.9.3(react@18.2.0)': dependencies: - '@react-types/grid': 3.2.5(react@18.2.0) - '@react-types/shared': 3.23.0(react@18.2.0) + '@react-types/grid': 3.2.4(react@18.2.0) + '@react-types/shared': 3.22.1(react@18.2.0) react: 18.2.0 '@react-types/table@3.9.5(react@18.2.0)': @@ -25748,52 +25862,52 @@ snapshots: '@react-types/shared': 3.23.1(react@18.2.0) react: 18.2.0 - '@react-types/tabs@3.3.5(react@18.2.0)': + '@react-types/tabs@3.3.10(react@18.2.0)': dependencies: - '@react-types/shared': 3.22.1(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) react: 18.2.0 - '@react-types/tabs@3.3.6(react@18.2.0)': + '@react-types/tabs@3.3.5(react@18.2.0)': dependencies: - '@react-types/shared': 3.23.0(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) react: 18.2.0 '@react-types/tabs@3.3.7(react@18.2.0)': dependencies: - '@react-types/shared': 3.23.1(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) react: 18.2.0 '@react-types/textfield@3.9.1(react@18.2.0)': dependencies: - '@react-types/shared': 3.22.1(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) react: 18.2.0 - '@react-types/textfield@3.9.2(react@18.2.0)': + '@react-types/textfield@3.9.3(react@18.2.0)': dependencies: - '@react-types/shared': 3.23.0(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) react: 18.2.0 - '@react-types/textfield@3.9.3(react@18.2.0)': + '@react-types/textfield@3.9.7(react@18.2.0)': dependencies: - '@react-types/shared': 3.23.1(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) react: 18.2.0 - '@react-types/tooltip@3.4.7(react@18.2.0)': + '@react-types/tooltip@3.4.12(react@18.2.0)': dependencies: - '@react-types/overlays': 3.8.5(react@18.2.0) - '@react-types/shared': 3.22.1(react@18.2.0) + '@react-types/overlays': 3.8.10(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) react: 18.2.0 - '@react-types/tooltip@3.4.8(react@18.2.0)': + '@react-types/tooltip@3.4.7(react@18.2.0)': dependencies: - '@react-types/overlays': 3.8.6(react@18.2.0) - '@react-types/shared': 3.23.0(react@18.2.0) + '@react-types/overlays': 3.8.5(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) react: 18.2.0 '@react-types/tooltip@3.4.9(react@18.2.0)': dependencies: '@react-types/overlays': 3.8.7(react@18.2.0) - '@react-types/shared': 3.23.1(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) react: 18.2.0 '@redux-devtools/extension@3.3.0(redux@4.2.1)': @@ -30509,6 +30623,8 @@ snapshots: clsx@2.1.0: {} + clsx@2.1.1: {} + cmd-shim@5.0.0: dependencies: mkdirp-infer-owner: 2.0.0 @@ -39669,34 +39785,6 @@ snapshots: react-stately: 3.30.1(react@18.2.0) use-sync-external-store: 1.2.0(react@18.2.0) - react-aria-components@1.2.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0): - dependencies: - '@internationalized/date': 3.5.3 - '@internationalized/string': 3.2.2 - '@react-aria/color': 3.0.0-beta.32(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/focus': 3.17.0(react@18.2.0) - '@react-aria/interactions': 3.21.2(react@18.2.0) - '@react-aria/menu': 3.14.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/toolbar': 3.0.0-beta.4(react@18.2.0) - '@react-aria/tree': 3.0.0-alpha.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/utils': 3.24.0(react@18.2.0) - '@react-stately/color': 3.6.0(react@18.2.0) - '@react-stately/menu': 3.7.0(react@18.2.0) - '@react-stately/table': 3.11.7(react@18.2.0) - '@react-stately/utils': 3.10.0(react@18.2.0) - '@react-types/color': 3.0.0-beta.24(react@18.2.0) - '@react-types/form': 3.7.3(react@18.2.0) - '@react-types/grid': 3.2.5(react@18.2.0) - '@react-types/shared': 3.23.0(react@18.2.0) - '@react-types/table': 3.9.4(react@18.2.0) - '@swc/helpers': 0.5.10 - client-only: 0.0.1 - react: 18.2.0 - react-aria: 3.33.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.31.0(react@18.2.0) - use-sync-external-store: 1.2.0(react@18.2.0) - react-aria-components@1.2.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0): dependencies: '@internationalized/date': 3.5.4 @@ -39725,6 +39813,43 @@ snapshots: react-stately: 3.31.1(react@18.2.0) use-sync-external-store: 1.2.0(react@18.2.0) + react-aria-components@1.4.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0): + dependencies: + '@internationalized/date': 3.5.6 + '@internationalized/string': 3.2.4 + '@react-aria/accordion': 3.0.0-alpha.34(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@react-aria/collections': 3.0.0-alpha.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@react-aria/color': 3.0.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@react-aria/disclosure': 3.0.0-alpha.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@react-aria/dnd': 3.7.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@react-aria/focus': 3.18.3(react@18.2.0) + '@react-aria/interactions': 3.22.3(react@18.2.0) + '@react-aria/live-announcer': 3.4.0 + '@react-aria/menu': 3.15.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@react-aria/toolbar': 3.0.0-beta.9(react@18.2.0) + '@react-aria/tree': 3.0.0-beta.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@react-aria/utils': 3.25.3(react@18.2.0) + '@react-aria/virtualizer': 4.0.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@react-stately/color': 3.8.0(react@18.2.0) + '@react-stately/disclosure': 3.0.0-alpha.0(react@18.2.0) + '@react-stately/layout': 4.0.3(react@18.2.0) + '@react-stately/menu': 3.8.3(react@18.2.0) + '@react-stately/table': 3.12.3(react@18.2.0) + '@react-stately/utils': 3.10.4(react@18.2.0) + '@react-stately/virtualizer': 4.1.0(react@18.2.0) + '@react-types/color': 3.0.0(react@18.2.0) + '@react-types/form': 3.7.7(react@18.2.0) + '@react-types/grid': 3.2.9(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) + '@react-types/table': 3.10.2(react@18.2.0) + '@swc/helpers': 0.5.10 + client-only: 0.0.1 + react: 18.2.0 + react-aria: 3.35.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.33.0(react@18.2.0) + use-sync-external-store: 1.2.0(react@18.2.0) + react-aria@3.32.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0): dependencies: '@internationalized/string': 3.2.1 @@ -39761,54 +39886,12 @@ snapshots: '@react-aria/tag': 3.3.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@react-aria/textfield': 3.14.3(react@18.2.0) '@react-aria/tooltip': 3.7.2(react@18.2.0) - '@react-aria/utils': 3.23.2(react@18.2.0) + '@react-aria/utils': 3.25.3(react@18.2.0) '@react-aria/visually-hidden': 3.8.10(react@18.2.0) '@react-types/shared': 3.22.1(react@18.2.0) react: 18.2.0 react-dom: 18.2.0(react@18.2.0) - react-aria@3.33.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0): - dependencies: - '@internationalized/string': 3.2.2 - '@react-aria/breadcrumbs': 3.5.12(react@18.2.0) - '@react-aria/button': 3.9.4(react@18.2.0) - '@react-aria/calendar': 3.5.7(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/checkbox': 3.14.2(react@18.2.0) - '@react-aria/combobox': 3.9.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/datepicker': 3.10.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/dialog': 3.5.13(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/dnd': 3.6.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/focus': 3.17.0(react@18.2.0) - '@react-aria/gridlist': 3.8.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/i18n': 3.11.0(react@18.2.0) - '@react-aria/interactions': 3.21.2(react@18.2.0) - '@react-aria/label': 3.7.7(react@18.2.0) - '@react-aria/link': 3.7.0(react@18.2.0) - '@react-aria/listbox': 3.12.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/menu': 3.14.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/meter': 3.4.12(react@18.2.0) - '@react-aria/numberfield': 3.11.2(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/overlays': 3.22.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/progress': 3.4.12(react@18.2.0) - '@react-aria/radio': 3.10.3(react@18.2.0) - '@react-aria/searchfield': 3.7.4(react@18.2.0) - '@react-aria/select': 3.14.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/selection': 3.18.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/separator': 3.3.12(react@18.2.0) - '@react-aria/slider': 3.7.7(react@18.2.0) - '@react-aria/ssr': 3.9.3(react@18.2.0) - '@react-aria/switch': 3.6.3(react@18.2.0) - '@react-aria/table': 3.14.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/tabs': 3.9.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/tag': 3.4.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) - '@react-aria/textfield': 3.14.4(react@18.2.0) - '@react-aria/tooltip': 3.7.3(react@18.2.0) - '@react-aria/utils': 3.24.0(react@18.2.0) - '@react-aria/visually-hidden': 3.8.11(react@18.2.0) - '@react-types/shared': 3.23.0(react@18.2.0) - react: 18.2.0 - react-dom: 18.2.0(react@18.2.0) - react-aria@3.33.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0): dependencies: '@internationalized/string': 3.2.3 @@ -39845,12 +39928,55 @@ snapshots: '@react-aria/tag': 3.4.1(react-dom@18.2.0(react@18.2.0))(react@18.2.0) '@react-aria/textfield': 3.14.5(react@18.2.0) '@react-aria/tooltip': 3.7.4(react@18.2.0) - '@react-aria/utils': 3.24.1(react@18.2.0) + '@react-aria/utils': 3.25.3(react@18.2.0) '@react-aria/visually-hidden': 3.8.12(react@18.2.0) '@react-types/shared': 3.23.1(react@18.2.0) react: 18.2.0 react-dom: 18.2.0(react@18.2.0) + react-aria@3.35.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0): + dependencies: + '@internationalized/string': 3.2.4 + '@react-aria/breadcrumbs': 3.5.17(react@18.2.0) + '@react-aria/button': 3.10.0(react@18.2.0) + '@react-aria/calendar': 3.5.12(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@react-aria/checkbox': 3.14.7(react@18.2.0) + '@react-aria/color': 3.0.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@react-aria/combobox': 3.10.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@react-aria/datepicker': 3.11.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@react-aria/dialog': 3.5.18(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@react-aria/dnd': 3.7.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@react-aria/focus': 3.18.3(react@18.2.0) + '@react-aria/gridlist': 3.9.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@react-aria/i18n': 3.12.3(react@18.2.0) + '@react-aria/interactions': 3.22.3(react@18.2.0) + '@react-aria/label': 3.7.12(react@18.2.0) + '@react-aria/link': 3.7.5(react@18.2.0) + '@react-aria/listbox': 3.13.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@react-aria/menu': 3.15.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@react-aria/meter': 3.4.17(react@18.2.0) + '@react-aria/numberfield': 3.11.7(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@react-aria/overlays': 3.23.3(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@react-aria/progress': 3.4.17(react@18.2.0) + '@react-aria/radio': 3.10.8(react@18.2.0) + '@react-aria/searchfield': 3.7.9(react@18.2.0) + '@react-aria/select': 3.14.10(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@react-aria/selection': 3.20.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@react-aria/separator': 3.4.3(react@18.2.0) + '@react-aria/slider': 3.7.12(react@18.2.0) + '@react-aria/ssr': 3.9.6(react@18.2.0) + '@react-aria/switch': 3.6.8(react@18.2.0) + '@react-aria/table': 3.15.4(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@react-aria/tabs': 3.9.6(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@react-aria/tag': 3.4.6(react-dom@18.2.0(react@18.2.0))(react@18.2.0) + '@react-aria/textfield': 3.14.9(react@18.2.0) + '@react-aria/tooltip': 3.7.8(react@18.2.0) + '@react-aria/utils': 3.25.3(react@18.2.0) + '@react-aria/visually-hidden': 3.8.16(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) + react: 18.2.0 + react-dom: 18.2.0(react@18.2.0) + react-beautiful-dnd@13.0.0(react-dom@18.2.0(react@18.2.0))(react@18.2.0): dependencies: '@babel/runtime': 7.20.6 @@ -40269,33 +40395,6 @@ snapshots: '@react-types/shared': 3.22.1(react@18.2.0) react: 18.2.0 - react-stately@3.31.0(react@18.2.0): - dependencies: - '@react-stately/calendar': 3.5.0(react@18.2.0) - '@react-stately/checkbox': 3.6.4(react@18.2.0) - '@react-stately/collections': 3.10.6(react@18.2.0) - '@react-stately/combobox': 3.8.3(react@18.2.0) - '@react-stately/data': 3.11.3(react@18.2.0) - '@react-stately/datepicker': 3.9.3(react@18.2.0) - '@react-stately/dnd': 3.3.0(react@18.2.0) - '@react-stately/form': 3.0.2(react@18.2.0) - '@react-stately/list': 3.10.4(react@18.2.0) - '@react-stately/menu': 3.7.0(react@18.2.0) - '@react-stately/numberfield': 3.9.2(react@18.2.0) - '@react-stately/overlays': 3.6.6(react@18.2.0) - '@react-stately/radio': 3.10.3(react@18.2.0) - '@react-stately/searchfield': 3.5.2(react@18.2.0) - '@react-stately/select': 3.6.3(react@18.2.0) - '@react-stately/selection': 3.15.0(react@18.2.0) - '@react-stately/slider': 3.5.3(react@18.2.0) - '@react-stately/table': 3.11.7(react@18.2.0) - '@react-stately/tabs': 3.6.5(react@18.2.0) - '@react-stately/toggle': 3.7.3(react@18.2.0) - '@react-stately/tooltip': 3.4.8(react@18.2.0) - '@react-stately/tree': 3.8.0(react@18.2.0) - '@react-types/shared': 3.23.0(react@18.2.0) - react: 18.2.0 - react-stately@3.31.1(react@18.2.0): dependencies: '@react-stately/calendar': 3.5.1(react@18.2.0) @@ -40323,6 +40422,34 @@ snapshots: '@react-types/shared': 3.23.1(react@18.2.0) react: 18.2.0 + react-stately@3.33.0(react@18.2.0): + dependencies: + '@react-stately/calendar': 3.5.5(react@18.2.0) + '@react-stately/checkbox': 3.6.9(react@18.2.0) + '@react-stately/collections': 3.11.0(react@18.2.0) + '@react-stately/color': 3.8.0(react@18.2.0) + '@react-stately/combobox': 3.10.0(react@18.2.0) + '@react-stately/data': 3.11.7(react@18.2.0) + '@react-stately/datepicker': 3.10.3(react@18.2.0) + '@react-stately/dnd': 3.4.3(react@18.2.0) + '@react-stately/form': 3.0.6(react@18.2.0) + '@react-stately/list': 3.11.0(react@18.2.0) + '@react-stately/menu': 3.8.3(react@18.2.0) + '@react-stately/numberfield': 3.9.7(react@18.2.0) + '@react-stately/overlays': 3.6.11(react@18.2.0) + '@react-stately/radio': 3.10.8(react@18.2.0) + '@react-stately/searchfield': 3.5.7(react@18.2.0) + '@react-stately/select': 3.6.8(react@18.2.0) + '@react-stately/selection': 3.17.0(react@18.2.0) + '@react-stately/slider': 3.5.8(react@18.2.0) + '@react-stately/table': 3.12.3(react@18.2.0) + '@react-stately/tabs': 3.6.10(react@18.2.0) + '@react-stately/toggle': 3.7.8(react@18.2.0) + '@react-stately/tooltip': 3.4.13(react@18.2.0) + '@react-stately/tree': 3.8.5(react@18.2.0) + '@react-types/shared': 3.25.0(react@18.2.0) + react: 18.2.0 + react-test-renderer@18.2.0(react@18.2.0): dependencies: react: 18.2.0 From 83b2d04b010782648115a7eac052268e80170a6e Mon Sep 17 00:00:00 2001 From: Victor Fernandez de Alba Date: Thu, 3 Oct 2024 12:21:35 +0200 Subject: [PATCH 21/24] Fix changelog volto-slate --- packages/volto-slate/news/{+update_pt_br.feature => 6292.feature} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename packages/volto-slate/news/{+update_pt_br.feature => 6292.feature} (100%) diff --git a/packages/volto-slate/news/+update_pt_br.feature b/packages/volto-slate/news/6292.feature similarity index 100% rename from packages/volto-slate/news/+update_pt_br.feature rename to packages/volto-slate/news/6292.feature From 7d7f9083359b7b00a38e9120f18cfe949934cd43 Mon Sep 17 00:00:00 2001 From: Victor Fernandez de Alba Date: Thu, 3 Oct 2024 12:22:21 +0200 Subject: [PATCH 22/24] Release @plone/slate 18.0.0-alpha.19 --- packages/volto-slate/CHANGELOG.md | 10 ++++++++++ packages/volto-slate/news/6292.feature | 1 - packages/volto-slate/news/6293.bugfix | 1 - packages/volto-slate/package.json | 2 +- 4 files changed, 11 insertions(+), 3 deletions(-) delete mode 100644 packages/volto-slate/news/6292.feature delete mode 100644 packages/volto-slate/news/6293.bugfix diff --git a/packages/volto-slate/CHANGELOG.md b/packages/volto-slate/CHANGELOG.md index c7e8ee3c2f..e8c7953223 100644 --- a/packages/volto-slate/CHANGELOG.md +++ b/packages/volto-slate/CHANGELOG.md @@ -8,6 +8,16 @@ +## 18.0.0-alpha.19 (2024-10-03) + +### Feature + +- Update Brazilian Portuguese translations. @ericof [#6292](https://github.com/plone/volto/issues/6292) + +### Bugfix + +- Fetch `user` before pass it to the `restricted` function of the block settings. @wesleybl [#6293](https://github.com/plone/volto/issues/6293) + ## 18.0.0-alpha.18 (2024-09-13) ### Feature diff --git a/packages/volto-slate/news/6292.feature b/packages/volto-slate/news/6292.feature deleted file mode 100644 index 35ce73755f..0000000000 --- a/packages/volto-slate/news/6292.feature +++ /dev/null @@ -1 +0,0 @@ -Update Brazilian Portuguese translations. @ericof diff --git a/packages/volto-slate/news/6293.bugfix b/packages/volto-slate/news/6293.bugfix deleted file mode 100644 index ea8503c548..0000000000 --- a/packages/volto-slate/news/6293.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fetch `user` before pass it to the `restricted` function of the block settings. @wesleybl diff --git a/packages/volto-slate/package.json b/packages/volto-slate/package.json index 5e5b6118bd..4b62cf0f94 100644 --- a/packages/volto-slate/package.json +++ b/packages/volto-slate/package.json @@ -1,6 +1,6 @@ { "name": "@plone/volto-slate", - "version": "18.0.0-alpha.18", + "version": "18.0.0-alpha.19", "description": "Slate.js integration with Volto", "main": "src/index.js", "author": "European Environment Agency: IDM2 A-Team", From 8ad447d19c5053e15ff8695e5a2d07b0e08b6698 Mon Sep 17 00:00:00 2001 From: Victor Fernandez de Alba Date: Thu, 3 Oct 2024 12:31:23 +0200 Subject: [PATCH 23/24] Release @plone/components 2.0.0-alpha.12 --- packages/components/.release-it.json | 2 +- packages/components/CHANGELOG.md | 6 ++++++ packages/components/news/6364.feature | 1 - packages/components/package.json | 2 +- 4 files changed, 8 insertions(+), 3 deletions(-) delete mode 100644 packages/components/news/6364.feature diff --git a/packages/components/.release-it.json b/packages/components/.release-it.json index 7959b21d1c..0069a0a569 100644 --- a/packages/components/.release-it.json +++ b/packages/components/.release-it.json @@ -5,7 +5,7 @@ "hooks": { "after:bump": [ "pipx run towncrier build --draft --yes --version ${version} > .changelog.draft && pipx run towncrier build --yes --version ${version}", - "pnpm build" + "pnpm build:force" ], "after:release": "rm .changelog.draft" }, diff --git a/packages/components/CHANGELOG.md b/packages/components/CHANGELOG.md index 09194352a8..e169ad06c4 100644 --- a/packages/components/CHANGELOG.md +++ b/packages/components/CHANGELOG.md @@ -8,6 +8,12 @@ +## 2.0.0-alpha.12 (2024-10-03) + +### Feature + +- Update RAC to 1.4.0 - Added new `Disclosure` component and new Color widgets @sneridagh [#6364](https://github.com/plone/volto/issues/6364) + ## 2.0.0-alpha.11 (2024-06-06) ### Bugfix diff --git a/packages/components/news/6364.feature b/packages/components/news/6364.feature deleted file mode 100644 index 9bb95dcbd6..0000000000 --- a/packages/components/news/6364.feature +++ /dev/null @@ -1 +0,0 @@ -Update RAC to 1.4.0 - Added new `Disclosure` component and new Color widgets @sneridagh diff --git a/packages/components/package.json b/packages/components/package.json index 88719f32e6..78e1936cd9 100644 --- a/packages/components/package.json +++ b/packages/components/package.json @@ -8,7 +8,7 @@ } ], "license": "MIT", - "version": "2.0.0-alpha.11", + "version": "2.0.0-alpha.12", "repository": { "type": "git", "url": "http://github.com/plone/components.git" From 2e03204e63cee030ca90c03f9e7a056e1c724179 Mon Sep 17 00:00:00 2001 From: Victor Fernandez de Alba Date: Thu, 3 Oct 2024 12:36:14 +0200 Subject: [PATCH 24/24] Release 18.0.0-alpha.44 --- docs/source/release-notes/index.md | 39 +++++++++++++++++++ packages/volto/CHANGELOG.md | 39 +++++++++++++++++++ packages/volto/news/ 6342.feature | 1 - packages/volto/news/+update_pt_br.feature | 1 - packages/volto/news/2487.bugfix | 1 - packages/volto/news/2570.bugfix | 2 - packages/volto/news/6173.feature | 1 - packages/volto/news/6249.bugfix | 1 - packages/volto/news/6259.bugfix | 1 - packages/volto/news/6289.documentation | 1 - packages/volto/news/6290.documentation | 1 - packages/volto/news/6293.bugfix | 1 - packages/volto/news/6295.bugfix | 2 - packages/volto/news/6297.feature | 1 - packages/volto/news/6299.bugfix | 1 - packages/volto/news/6309.feature | 1 - packages/volto/news/6313.bugfix | 1 - packages/volto/news/6315.bugfix | 1 - packages/volto/news/6330.bugfix | 1 - packages/volto/news/6332.bugfix | 1 - packages/volto/news/6334.bugfix | 1 - packages/volto/news/6360.documentation | 1 - packages/volto/news/6362.documentation | 1 - packages/volto/news/6365.internal | 1 - packages/volto/news/6366.documentation | 1 - packages/volto/package.json | 2 +- .../types/config/NonContentRoutesPublic.d.ts | 1 + .../volto/types/helpers/Blocks/Blocks.d.ts | 2 +- packages/volto/types/hooks/index.d.ts | 1 + packages/volto/types/hooks/user/useUser.d.ts | 2 + 30 files changed, 84 insertions(+), 27 deletions(-) delete mode 100644 packages/volto/news/ 6342.feature delete mode 100644 packages/volto/news/+update_pt_br.feature delete mode 100644 packages/volto/news/2487.bugfix delete mode 100644 packages/volto/news/2570.bugfix delete mode 100644 packages/volto/news/6173.feature delete mode 100644 packages/volto/news/6249.bugfix delete mode 100644 packages/volto/news/6259.bugfix delete mode 100644 packages/volto/news/6289.documentation delete mode 100644 packages/volto/news/6290.documentation delete mode 100644 packages/volto/news/6293.bugfix delete mode 100644 packages/volto/news/6295.bugfix delete mode 100644 packages/volto/news/6297.feature delete mode 100644 packages/volto/news/6299.bugfix delete mode 100644 packages/volto/news/6309.feature delete mode 100644 packages/volto/news/6313.bugfix delete mode 100644 packages/volto/news/6315.bugfix delete mode 100644 packages/volto/news/6330.bugfix delete mode 100644 packages/volto/news/6332.bugfix delete mode 100644 packages/volto/news/6334.bugfix delete mode 100644 packages/volto/news/6360.documentation delete mode 100644 packages/volto/news/6362.documentation delete mode 100644 packages/volto/news/6365.internal delete mode 100644 packages/volto/news/6366.documentation create mode 100644 packages/volto/types/config/NonContentRoutesPublic.d.ts create mode 100644 packages/volto/types/hooks/user/useUser.d.ts diff --git a/docs/source/release-notes/index.md b/docs/source/release-notes/index.md index 8a11d4dcff..df73c05fe0 100644 --- a/docs/source/release-notes/index.md +++ b/docs/source/release-notes/index.md @@ -17,6 +17,45 @@ myst: +## 18.0.0-alpha.44 (2024-10-03) + +### Feature + +- Added `config.settings.nonContentRoutesPublic` to avoid `isCmsUi` issues in these public routes. @giuliaghisini [#6173](https://github.com/plone/volto/issues/6173) +- Add language independent field icon. @iRohitSingh [#6297](https://github.com/plone/volto/issues/6297) +- Improve DiffField.jsx to render only the blocks on the page with better support for displaying HTML elements such as images. @dobri1408 [#6309](https://github.com/plone/volto/issues/6309) +- Updated Italian Italian translations. @gianniftp [#6342](https://github.com/plone/volto/issues/6342) +- Update Brazilian Portuguese translations. @ericof + +### Bugfix + +- Increase specificity of table header style selector to properly override colors for better contrast @jackahl [#2487](https://github.com/plone/volto/issues/2487) +- Change Form input:focus text color to the `textColor` value for a11y. + Add Cypress test for contact form inputs. @ThomasKindermann @tedw87 [#2570](https://github.com/plone/volto/issues/2570) +- Add missing `for` attribute to checkbox label to improve accessibility. @gomez [#6249](https://github.com/plone/volto/issues/6249) +- - Fixed build style classnames in edit mode. Also use buildStyleClassNamesExtenders. @giuliaghisini [#6259](https://github.com/plone/volto/issues/6259) +- Fetch `user` before pass it to the `restricted` function of the block settings. @wesleybl [#6293](https://github.com/plone/volto/issues/6293) +- - Join validation errors in one single toast and update errors from response. @cekk + - Toast content now has a
    wrapper instead of a

    . @cekk [#6295](https://github.com/plone/volto/issues/6295) +- Fixed findBlocks when no blocks are passed. @giuliaghisini [#6299](https://github.com/plone/volto/issues/6299) +- Fixed toolbar buttons not having a focus outline. @JeffersonBledsoe [#6313](https://github.com/plone/volto/issues/6313) +- fix: SidebarPopup close on ESC keypress @nileshgulia1 [#6315](https://github.com/plone/volto/issues/6315) +- Changed sidebar accordion text colour from @teal to @textColor. @JeffersonBledsoe [#6330](https://github.com/plone/volto/issues/6330) +- Labels accessibility for ArrayWidget, SelectWidget, TokenWidget. @folix-01 [#6332](https://github.com/plone/volto/issues/6332) +- Use lighter blue as link color in inverted tables to improve contrast for a11y @jackahl [#6334](https://github.com/plone/volto/issues/6334) + +### Internal + +- Added a pull request template as a checklist before submitting a PR. @stevepiercy [#6365](https://github.com/plone/volto/issues/6365) + +### Documentation + +- Update references to cookiecutter-plone-starter in docs. @davisagli [#6289](https://github.com/plone/volto/issues/6289) +- - Revised Cookieplone section in the Upgrade Guide. @stevepiercy [#6290](https://github.com/plone/volto/issues/6290) +- - Fix the MyST syntax for the label `upgrade-18-cookieplone-label`. @stevepiercy [#6360](https://github.com/plone/volto/issues/6360) +- Fixed spelling of prerequisites. @stevepiercy [#6362](https://github.com/plone/volto/issues/6362) +- Fix links to Vite website. @stevepiercy [#6366](https://github.com/plone/volto/issues/6366) + ## 18.0.0-alpha.43 (2024-09-13) ### Breaking diff --git a/packages/volto/CHANGELOG.md b/packages/volto/CHANGELOG.md index 8a11d4dcff..df73c05fe0 100644 --- a/packages/volto/CHANGELOG.md +++ b/packages/volto/CHANGELOG.md @@ -17,6 +17,45 @@ myst: +## 18.0.0-alpha.44 (2024-10-03) + +### Feature + +- Added `config.settings.nonContentRoutesPublic` to avoid `isCmsUi` issues in these public routes. @giuliaghisini [#6173](https://github.com/plone/volto/issues/6173) +- Add language independent field icon. @iRohitSingh [#6297](https://github.com/plone/volto/issues/6297) +- Improve DiffField.jsx to render only the blocks on the page with better support for displaying HTML elements such as images. @dobri1408 [#6309](https://github.com/plone/volto/issues/6309) +- Updated Italian Italian translations. @gianniftp [#6342](https://github.com/plone/volto/issues/6342) +- Update Brazilian Portuguese translations. @ericof + +### Bugfix + +- Increase specificity of table header style selector to properly override colors for better contrast @jackahl [#2487](https://github.com/plone/volto/issues/2487) +- Change Form input:focus text color to the `textColor` value for a11y. + Add Cypress test for contact form inputs. @ThomasKindermann @tedw87 [#2570](https://github.com/plone/volto/issues/2570) +- Add missing `for` attribute to checkbox label to improve accessibility. @gomez [#6249](https://github.com/plone/volto/issues/6249) +- - Fixed build style classnames in edit mode. Also use buildStyleClassNamesExtenders. @giuliaghisini [#6259](https://github.com/plone/volto/issues/6259) +- Fetch `user` before pass it to the `restricted` function of the block settings. @wesleybl [#6293](https://github.com/plone/volto/issues/6293) +- - Join validation errors in one single toast and update errors from response. @cekk + - Toast content now has a

    wrapper instead of a

    . @cekk [#6295](https://github.com/plone/volto/issues/6295) +- Fixed findBlocks when no blocks are passed. @giuliaghisini [#6299](https://github.com/plone/volto/issues/6299) +- Fixed toolbar buttons not having a focus outline. @JeffersonBledsoe [#6313](https://github.com/plone/volto/issues/6313) +- fix: SidebarPopup close on ESC keypress @nileshgulia1 [#6315](https://github.com/plone/volto/issues/6315) +- Changed sidebar accordion text colour from @teal to @textColor. @JeffersonBledsoe [#6330](https://github.com/plone/volto/issues/6330) +- Labels accessibility for ArrayWidget, SelectWidget, TokenWidget. @folix-01 [#6332](https://github.com/plone/volto/issues/6332) +- Use lighter blue as link color in inverted tables to improve contrast for a11y @jackahl [#6334](https://github.com/plone/volto/issues/6334) + +### Internal + +- Added a pull request template as a checklist before submitting a PR. @stevepiercy [#6365](https://github.com/plone/volto/issues/6365) + +### Documentation + +- Update references to cookiecutter-plone-starter in docs. @davisagli [#6289](https://github.com/plone/volto/issues/6289) +- - Revised Cookieplone section in the Upgrade Guide. @stevepiercy [#6290](https://github.com/plone/volto/issues/6290) +- - Fix the MyST syntax for the label `upgrade-18-cookieplone-label`. @stevepiercy [#6360](https://github.com/plone/volto/issues/6360) +- Fixed spelling of prerequisites. @stevepiercy [#6362](https://github.com/plone/volto/issues/6362) +- Fix links to Vite website. @stevepiercy [#6366](https://github.com/plone/volto/issues/6366) + ## 18.0.0-alpha.43 (2024-09-13) ### Breaking diff --git a/packages/volto/news/ 6342.feature b/packages/volto/news/ 6342.feature deleted file mode 100644 index 2c6681332a..0000000000 --- a/packages/volto/news/ 6342.feature +++ /dev/null @@ -1 +0,0 @@ -Updated Italian Italian translations. @gianniftp diff --git a/packages/volto/news/+update_pt_br.feature b/packages/volto/news/+update_pt_br.feature deleted file mode 100644 index 35ce73755f..0000000000 --- a/packages/volto/news/+update_pt_br.feature +++ /dev/null @@ -1 +0,0 @@ -Update Brazilian Portuguese translations. @ericof diff --git a/packages/volto/news/2487.bugfix b/packages/volto/news/2487.bugfix deleted file mode 100644 index 41812d2d99..0000000000 --- a/packages/volto/news/2487.bugfix +++ /dev/null @@ -1 +0,0 @@ -Increase specificity of table header style selector to properly override colors for better contrast @jackahl diff --git a/packages/volto/news/2570.bugfix b/packages/volto/news/2570.bugfix deleted file mode 100644 index 490f159699..0000000000 --- a/packages/volto/news/2570.bugfix +++ /dev/null @@ -1,2 +0,0 @@ -Change Form input:focus text color to the `textColor` value for a11y. -Add Cypress test for contact form inputs. @ThomasKindermann @tedw87 \ No newline at end of file diff --git a/packages/volto/news/6173.feature b/packages/volto/news/6173.feature deleted file mode 100644 index 1d887eae5d..0000000000 --- a/packages/volto/news/6173.feature +++ /dev/null @@ -1 +0,0 @@ -Added `config.settings.nonContentRoutesPublic` to avoid `isCmsUi` issues in these public routes. @giuliaghisini diff --git a/packages/volto/news/6249.bugfix b/packages/volto/news/6249.bugfix deleted file mode 100644 index 6e28743161..0000000000 --- a/packages/volto/news/6249.bugfix +++ /dev/null @@ -1 +0,0 @@ -Add missing `for` attribute to checkbox label to improve accessibility. @gomez \ No newline at end of file diff --git a/packages/volto/news/6259.bugfix b/packages/volto/news/6259.bugfix deleted file mode 100644 index 9a9158fcc6..0000000000 --- a/packages/volto/news/6259.bugfix +++ /dev/null @@ -1 +0,0 @@ -- Fixed build style classnames in edit mode. Also use buildStyleClassNamesExtenders. @giuliaghisini diff --git a/packages/volto/news/6289.documentation b/packages/volto/news/6289.documentation deleted file mode 100644 index 59d97b6da5..0000000000 --- a/packages/volto/news/6289.documentation +++ /dev/null @@ -1 +0,0 @@ -Update references to cookiecutter-plone-starter in docs. @davisagli diff --git a/packages/volto/news/6290.documentation b/packages/volto/news/6290.documentation deleted file mode 100644 index d31cc808d4..0000000000 --- a/packages/volto/news/6290.documentation +++ /dev/null @@ -1 +0,0 @@ -- Revised Cookieplone section in the Upgrade Guide. @stevepiercy diff --git a/packages/volto/news/6293.bugfix b/packages/volto/news/6293.bugfix deleted file mode 100644 index ea8503c548..0000000000 --- a/packages/volto/news/6293.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fetch `user` before pass it to the `restricted` function of the block settings. @wesleybl diff --git a/packages/volto/news/6295.bugfix b/packages/volto/news/6295.bugfix deleted file mode 100644 index 581fdd5089..0000000000 --- a/packages/volto/news/6295.bugfix +++ /dev/null @@ -1,2 +0,0 @@ -- Join validation errors in one single toast and update errors from response. @cekk -- Toast content now has a

    wrapper instead of a

    . @cekk diff --git a/packages/volto/news/6297.feature b/packages/volto/news/6297.feature deleted file mode 100644 index e509917a3c..0000000000 --- a/packages/volto/news/6297.feature +++ /dev/null @@ -1 +0,0 @@ -Add language independent field icon. @iRohitSingh \ No newline at end of file diff --git a/packages/volto/news/6299.bugfix b/packages/volto/news/6299.bugfix deleted file mode 100644 index 0d8ad4608a..0000000000 --- a/packages/volto/news/6299.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fixed findBlocks when no blocks are passed. @giuliaghisini diff --git a/packages/volto/news/6309.feature b/packages/volto/news/6309.feature deleted file mode 100644 index 370011edb9..0000000000 --- a/packages/volto/news/6309.feature +++ /dev/null @@ -1 +0,0 @@ -Improve DiffField.jsx to render only the blocks on the page with better support for displaying HTML elements such as images. @dobri1408 diff --git a/packages/volto/news/6313.bugfix b/packages/volto/news/6313.bugfix deleted file mode 100644 index 134d5727c5..0000000000 --- a/packages/volto/news/6313.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fixed toolbar buttons not having a focus outline. @JeffersonBledsoe diff --git a/packages/volto/news/6315.bugfix b/packages/volto/news/6315.bugfix deleted file mode 100644 index 969e260532..0000000000 --- a/packages/volto/news/6315.bugfix +++ /dev/null @@ -1 +0,0 @@ -fix: SidebarPopup close on ESC keypress @nileshgulia1 \ No newline at end of file diff --git a/packages/volto/news/6330.bugfix b/packages/volto/news/6330.bugfix deleted file mode 100644 index 809f559863..0000000000 --- a/packages/volto/news/6330.bugfix +++ /dev/null @@ -1 +0,0 @@ -Changed sidebar accordion text colour from @teal to @textColor. @JeffersonBledsoe diff --git a/packages/volto/news/6332.bugfix b/packages/volto/news/6332.bugfix deleted file mode 100644 index 6b82b6cd5e..0000000000 --- a/packages/volto/news/6332.bugfix +++ /dev/null @@ -1 +0,0 @@ -Labels accessibility for ArrayWidget, SelectWidget, TokenWidget. @folix-01 diff --git a/packages/volto/news/6334.bugfix b/packages/volto/news/6334.bugfix deleted file mode 100644 index f7623395d6..0000000000 --- a/packages/volto/news/6334.bugfix +++ /dev/null @@ -1 +0,0 @@ -Use lighter blue as link color in inverted tables to improve contrast for a11y @jackahl diff --git a/packages/volto/news/6360.documentation b/packages/volto/news/6360.documentation deleted file mode 100644 index f6a02c99e4..0000000000 --- a/packages/volto/news/6360.documentation +++ /dev/null @@ -1 +0,0 @@ -- Fix the MyST syntax for the label `upgrade-18-cookieplone-label`. @stevepiercy diff --git a/packages/volto/news/6362.documentation b/packages/volto/news/6362.documentation deleted file mode 100644 index c37ab93222..0000000000 --- a/packages/volto/news/6362.documentation +++ /dev/null @@ -1 +0,0 @@ -Fixed spelling of prerequisites. @stevepiercy diff --git a/packages/volto/news/6365.internal b/packages/volto/news/6365.internal deleted file mode 100644 index bffba0bc34..0000000000 --- a/packages/volto/news/6365.internal +++ /dev/null @@ -1 +0,0 @@ -Added a pull request template as a checklist before submitting a PR. @stevepiercy diff --git a/packages/volto/news/6366.documentation b/packages/volto/news/6366.documentation deleted file mode 100644 index 93d39a686f..0000000000 --- a/packages/volto/news/6366.documentation +++ /dev/null @@ -1 +0,0 @@ -Fix links to Vite website. @stevepiercy diff --git a/packages/volto/package.json b/packages/volto/package.json index 9b31c08fde..a445b3144f 100644 --- a/packages/volto/package.json +++ b/packages/volto/package.json @@ -9,7 +9,7 @@ } ], "license": "MIT", - "version": "18.0.0-alpha.43", + "version": "18.0.0-alpha.44", "repository": { "type": "git", "url": "git@github.com:plone/volto.git" diff --git a/packages/volto/types/config/NonContentRoutesPublic.d.ts b/packages/volto/types/config/NonContentRoutesPublic.d.ts new file mode 100644 index 0000000000..c239816469 --- /dev/null +++ b/packages/volto/types/config/NonContentRoutesPublic.d.ts @@ -0,0 +1 @@ +export const nonContentRoutesPublic: (string | RegExp)[]; diff --git a/packages/volto/types/helpers/Blocks/Blocks.d.ts b/packages/volto/types/helpers/Blocks/Blocks.d.ts index 82f74f7fe3..6c5305f2e1 100644 --- a/packages/volto/types/helpers/Blocks/Blocks.d.ts +++ b/packages/volto/types/helpers/Blocks/Blocks.d.ts @@ -147,7 +147,7 @@ export function isBlockContainer(block: any): boolean; * @param {Object} types A list with the list of types to be matched * @return {Array} An array of block ids */ -export function findBlocks(blocks: any, types: any, result?: any[]): any[]; +export function findBlocks(blocks: {}, types: any, result?: any[]): any[]; /** * Move block to different location index within blocks_layout * @function moveBlock diff --git a/packages/volto/types/hooks/index.d.ts b/packages/volto/types/hooks/index.d.ts index 674ee3a17f..e83d19cd68 100644 --- a/packages/volto/types/hooks/index.d.ts +++ b/packages/volto/types/hooks/index.d.ts @@ -1,2 +1,3 @@ export { default as useClipboard } from "@plone/volto/hooks/clipboard/useClipboard"; export { useClient } from "@plone/volto/hooks/client/useClient"; +export { default as useUser } from "@plone/volto/hooks/user/useUser"; diff --git a/packages/volto/types/hooks/user/useUser.d.ts b/packages/volto/types/hooks/user/useUser.d.ts new file mode 100644 index 0000000000..40d1a910b8 --- /dev/null +++ b/packages/volto/types/hooks/user/useUser.d.ts @@ -0,0 +1,2 @@ +export default useUser; +declare function useUser(): any;