fix(deps): update dependency @rjsf/core to v5 (#1409)

* fix(deps): update dependency @rjsf/core to v5

* redux-devtools-ui

* Update

* Update

* Update

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Nathan Bierema <nbierema@gmail.com>
This commit is contained in:
renovate[bot] 2024-08-26 03:16:10 +00:00 committed by GitHub
parent 76183cfa43
commit 238a38fb21
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
10 changed files with 187 additions and 79 deletions

View File

@ -62,7 +62,7 @@
"@babel/preset-typescript": "^7.24.7",
"@emotion/react": "^11.13.3",
"@reduxjs/toolkit": "^2.2.7",
"@rjsf/core": "^4.2.3",
"@rjsf/core": "^5.20.0",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^16.0.0",

View File

@ -55,7 +55,7 @@ interface ChangeThemeFormData {
readonly colorPreference: 'auto' | 'light' | 'dark';
}
interface ChangeThemeData {
readonly formData: ChangeThemeFormData;
readonly formData?: ChangeThemeFormData;
}
export interface ChangeThemeAction {
readonly type: typeof CHANGE_THEME;
@ -64,7 +64,7 @@ export interface ChangeThemeAction {
readonly colorPreference: 'auto' | 'light' | 'dark';
}
export function changeTheme(data: ChangeThemeData): ChangeThemeAction {
return { type: CHANGE_THEME, ...data.formData };
return { type: CHANGE_THEME, ...data.formData! };
}
interface ChangeStateTreeSettingsFormData {
@ -73,7 +73,7 @@ interface ChangeStateTreeSettingsFormData {
}
interface ChangeStateTreeSettingsData {
readonly formData: ChangeStateTreeSettingsFormData;
readonly formData?: ChangeStateTreeSettingsFormData;
}
export interface ChangeStateTreeSettingsAction {
@ -85,7 +85,7 @@ export interface ChangeStateTreeSettingsAction {
export function changeStateTreeSettings(
data: ChangeStateTreeSettingsData,
): ChangeStateTreeSettingsAction {
return { type: CHANGE_STATE_TREE_SETTINGS, ...data.formData };
return { type: CHANGE_STATE_TREE_SETTINGS, ...data.formData! };
}
export interface InitMonitorAction {

View File

@ -59,7 +59,7 @@
"@babel/preset-typescript": "^7.24.7",
"@emotion/react": "^11.13.3",
"@reduxjs/toolkit": "^2.2.7",
"@rjsf/core": "^4.2.3",
"@rjsf/core": "^5.20.0",
"@types/jsan": "^3.1.5",
"@types/json-schema": "^7.0.15",
"@types/lodash": "^4.17.7",

View File

@ -1,15 +1,11 @@
import React, { Component } from 'react';
import { connect, ResolveThunks } from 'react-redux';
import { Container, Form } from '@redux-devtools/ui';
import {
JSONSchema7Definition,
JSONSchema7Type,
JSONSchema7TypeName,
} from 'json-schema';
import { JSONSchema7Definition, JSONSchema7TypeName } from 'json-schema';
import { ConnectionType, saveSocketSettings } from '../../actions';
import { StoreState } from '../../reducers';
import { ConnectionStateOptions } from '../../reducers/connection';
import { IChangeEvent, ISubmitEvent } from '@rjsf/core';
import { IChangeEvent } from '@rjsf/core';
declare module 'json-schema' {
export interface JSONSchema7 {
@ -104,13 +100,13 @@ export class Connection extends Component<Props, State> {
}
}
handleSave = (data: ISubmitEvent<FormData>) => {
this.props.saveSettings(data.formData);
handleSave = (data: IChangeEvent<FormData>) => {
this.props.saveSettings(data.formData!);
this.setState({ changed: false });
};
handleChange = (data: IChangeEvent<FormData>) => {
const formData = data.formData;
const formData = data.formData!;
const type = formData.type;
if (type !== this.state.type) {
this.setState(this.setFormData(type, true));

View File

@ -64,17 +64,17 @@ export class TestTab<S, A extends Action<string>> extends Component<
this.setState({ dialogStatus: null });
};
handleSubmit = ({ formData: template }: { formData: Template }) => {
handleSubmit = ({ formData: template }: { formData?: Template }) => {
const { templates = getDefaultTemplates(), selected = 0 } =
this.getPersistedState();
if (this.state.dialogStatus === 'Add') {
this.updateState({
selected: templates.length,
templates: [...templates, template],
templates: [...templates, template!],
});
} else {
const editedTemplates = [...templates];
editedTemplates[selected] = template;
editedTemplates[selected] = template!;
this.updateState({
templates: editedTemplates,
});

View File

@ -43,7 +43,9 @@
},
"dependencies": {
"@babel/runtime": "^7.25.4",
"@rjsf/core": "^4.2.3",
"@rjsf/core": "^5.20.0",
"@rjsf/utils": "^5.20.0",
"@rjsf/validator-ajv8": "^5.20.0",
"@types/codemirror": "^5.60.15",
"@types/json-schema": "^7.0.15",
"@types/simple-element-resize-detector": "^1.3.3",

View File

@ -1,5 +1,6 @@
import React, { PureComponent, Component } from 'react';
import JSONSchemaForm, { FormProps } from '@rjsf/core';
import validator from '@rjsf/validator-ajv8';
import type { Base16Theme } from 'react-base16-styling';
import createStyledComponent from '../utils/createStyledComponent';
import styles from './styles';
@ -8,7 +9,7 @@ import customWidgets from './widgets';
const FormContainer = createStyledComponent(styles, JSONSchemaForm);
export interface Props<T> extends FormProps<T> {
export interface Props<T> extends Omit<FormProps<T>, 'validator'> {
children?: React.ReactNode;
submitText?: string;
primaryButton?: boolean;
@ -26,6 +27,7 @@ export default class Form<T> extends (PureComponent || Component)<Props<T>> {
return (
<FormContainer
{...(rest as Props<unknown>)}
validator={validator}
widgets={{ ...customWidgets, ...widgets }}
>
{noSubmit ? (

View File

@ -1,5 +1,5 @@
import React from 'react';
import { FieldProps, Widget, WidgetProps } from '@rjsf/core';
import { FieldProps, Widget, WidgetProps } from '@rjsf/utils';
import Select from '../Select';
import Slider from '../Slider';

View File

@ -36,9 +36,11 @@ exports[`Form renders correctly 1`] = `
</span>
</label>
<input
aria-describedby="root_name__error root_name__description root_name__help"
class="form-control"
id="root_name"
label="Full name"
name="root_name"
placeholder=""
required=""
type="text"
@ -55,9 +57,11 @@ exports[`Form renders correctly 1`] = `
Age
</label>
<input
aria-describedby="root_age__error root_age__description root_age__help"
class="form-control"
id="root_age"
label="Age"
name="root_age"
placeholder=""
type="number"
value="75"
@ -73,8 +77,10 @@ exports[`Form renders correctly 1`] = `
Bio
</label>
<textarea
aria-describedby="root_bio__error root_bio__description root_bio__help"
class="form-control"
id="root_bio"
name="root_bio"
placeholder=""
>
Roundhouse kicking asses since 1940
@ -90,9 +96,11 @@ exports[`Form renders correctly 1`] = `
Password
</label>
<input
aria-describedby="root_password__error root_password__description root_password__help"
class="form-control"
id="root_password"
label="Password"
name="root_password"
placeholder=""
type="password"
value="noneed"
@ -123,8 +131,11 @@ exports[`Form renders correctly 1`] = `
<label>
<span>
<input
id="root_multipleChoicesList_0"
aria-describedby="root_multipleChoicesList__error root_multipleChoicesList__description root_multipleChoicesList__help"
id="root_multipleChoicesList-0"
name="root_multipleChoicesList"
type="checkbox"
value="0"
/>
<span>
foo
@ -138,8 +149,11 @@ exports[`Form renders correctly 1`] = `
<label>
<span>
<input
id="root_multipleChoicesList_1"
aria-describedby="root_multipleChoicesList__error root_multipleChoicesList__description root_multipleChoicesList__help"
id="root_multipleChoicesList-1"
name="root_multipleChoicesList"
type="checkbox"
value="1"
/>
<span>
bar
@ -153,8 +167,11 @@ exports[`Form renders correctly 1`] = `
<label>
<span>
<input
id="root_multipleChoicesList_2"
aria-describedby="root_multipleChoicesList__error root_multipleChoicesList__description root_multipleChoicesList__help"
id="root_multipleChoicesList-2"
name="root_multipleChoicesList"
type="checkbox"
value="2"
/>
<span>
fuzz
@ -248,6 +265,11 @@ exports[`Form renders correctly 1`] = `
</div>
</div>
</div>
<input
name="numberEnum"
type="hidden"
value=""
/>
</div>
</div>
<div
@ -268,9 +290,11 @@ exports[`Form renders correctly 1`] = `
>
<span>
<input
name="0.25546350798039463"
aria-describedby="root_numberEnumRadio__error root_numberEnumRadio__description root_numberEnumRadio__help"
id="root_numberEnumRadio-0"
name="root_numberEnumRadio"
type="radio"
value="1"
value="0"
/>
<span>
1
@ -282,9 +306,11 @@ exports[`Form renders correctly 1`] = `
>
<span>
<input
name="0.25546350798039463"
aria-describedby="root_numberEnumRadio__error root_numberEnumRadio__description root_numberEnumRadio__help"
id="root_numberEnumRadio-1"
name="root_numberEnumRadio"
type="radio"
value="2"
value="1"
/>
<span>
2
@ -296,9 +322,11 @@ exports[`Form renders correctly 1`] = `
>
<span>
<input
name="0.25546350798039463"
aria-describedby="root_numberEnumRadio__error root_numberEnumRadio__description root_numberEnumRadio__help"
id="root_numberEnumRadio-2"
name="root_numberEnumRadio"
type="radio"
value="3"
value="2"
/>
<span>
3
@ -326,6 +354,7 @@ exports[`Form renders correctly 1`] = `
id="root_integerRange"
max="100"
min="42"
name="integerRange"
placeholder=""
type="range"
uischema="[object Object]"
@ -388,9 +417,11 @@ exports[`Form renders with no button 1`] = `
</span>
</label>
<input
aria-describedby="root_name__error root_name__description root_name__help"
class="form-control"
id="root_name"
label="Full name"
name="root_name"
placeholder=""
required=""
type="text"
@ -407,9 +438,11 @@ exports[`Form renders with no button 1`] = `
Age
</label>
<input
aria-describedby="root_age__error root_age__description root_age__help"
class="form-control"
id="root_age"
label="Age"
name="root_age"
placeholder=""
type="number"
value="75"
@ -425,8 +458,10 @@ exports[`Form renders with no button 1`] = `
Bio
</label>
<textarea
aria-describedby="root_bio__error root_bio__description root_bio__help"
class="form-control"
id="root_bio"
name="root_bio"
placeholder=""
>
Roundhouse kicking asses since 1940
@ -442,9 +477,11 @@ exports[`Form renders with no button 1`] = `
Password
</label>
<input
aria-describedby="root_password__error root_password__description root_password__help"
class="form-control"
id="root_password"
label="Password"
name="root_password"
placeholder=""
type="password"
value="noneed"
@ -475,8 +512,11 @@ exports[`Form renders with no button 1`] = `
<label>
<span>
<input
id="root_multipleChoicesList_0"
aria-describedby="root_multipleChoicesList__error root_multipleChoicesList__description root_multipleChoicesList__help"
id="root_multipleChoicesList-0"
name="root_multipleChoicesList"
type="checkbox"
value="0"
/>
<span>
foo
@ -490,8 +530,11 @@ exports[`Form renders with no button 1`] = `
<label>
<span>
<input
id="root_multipleChoicesList_1"
aria-describedby="root_multipleChoicesList__error root_multipleChoicesList__description root_multipleChoicesList__help"
id="root_multipleChoicesList-1"
name="root_multipleChoicesList"
type="checkbox"
value="1"
/>
<span>
bar
@ -505,8 +548,11 @@ exports[`Form renders with no button 1`] = `
<label>
<span>
<input
id="root_multipleChoicesList_2"
aria-describedby="root_multipleChoicesList__error root_multipleChoicesList__description root_multipleChoicesList__help"
id="root_multipleChoicesList-2"
name="root_multipleChoicesList"
type="checkbox"
value="2"
/>
<span>
fuzz
@ -600,6 +646,11 @@ exports[`Form renders with no button 1`] = `
</div>
</div>
</div>
<input
name="numberEnum"
type="hidden"
value=""
/>
</div>
</div>
<div
@ -620,9 +671,11 @@ exports[`Form renders with no button 1`] = `
>
<span>
<input
name="0.25546350798039463"
aria-describedby="root_numberEnumRadio__error root_numberEnumRadio__description root_numberEnumRadio__help"
id="root_numberEnumRadio-0"
name="root_numberEnumRadio"
type="radio"
value="1"
value="0"
/>
<span>
1
@ -634,9 +687,11 @@ exports[`Form renders with no button 1`] = `
>
<span>
<input
name="0.25546350798039463"
aria-describedby="root_numberEnumRadio__error root_numberEnumRadio__description root_numberEnumRadio__help"
id="root_numberEnumRadio-1"
name="root_numberEnumRadio"
type="radio"
value="2"
value="1"
/>
<span>
2
@ -648,9 +703,11 @@ exports[`Form renders with no button 1`] = `
>
<span>
<input
name="0.25546350798039463"
aria-describedby="root_numberEnumRadio__error root_numberEnumRadio__description root_numberEnumRadio__help"
id="root_numberEnumRadio-2"
name="root_numberEnumRadio"
type="radio"
value="3"
value="2"
/>
<span>
3
@ -678,6 +735,7 @@ exports[`Form renders with no button 1`] = `
id="root_integerRange"
max="100"
min="42"
name="integerRange"
placeholder=""
type="range"
uischema="[object Object]"
@ -731,9 +789,11 @@ exports[`Form renders with primary button 1`] = `
</span>
</label>
<input
aria-describedby="root_name__error root_name__description root_name__help"
class="form-control"
id="root_name"
label="Full name"
name="root_name"
placeholder=""
required=""
type="text"
@ -750,9 +810,11 @@ exports[`Form renders with primary button 1`] = `
Age
</label>
<input
aria-describedby="root_age__error root_age__description root_age__help"
class="form-control"
id="root_age"
label="Age"
name="root_age"
placeholder=""
type="number"
value="75"
@ -768,8 +830,10 @@ exports[`Form renders with primary button 1`] = `
Bio
</label>
<textarea
aria-describedby="root_bio__error root_bio__description root_bio__help"
class="form-control"
id="root_bio"
name="root_bio"
placeholder=""
>
Roundhouse kicking asses since 1940
@ -785,9 +849,11 @@ exports[`Form renders with primary button 1`] = `
Password
</label>
<input
aria-describedby="root_password__error root_password__description root_password__help"
class="form-control"
id="root_password"
label="Password"
name="root_password"
placeholder=""
type="password"
value="noneed"
@ -818,8 +884,11 @@ exports[`Form renders with primary button 1`] = `
<label>
<span>
<input
id="root_multipleChoicesList_0"
aria-describedby="root_multipleChoicesList__error root_multipleChoicesList__description root_multipleChoicesList__help"
id="root_multipleChoicesList-0"
name="root_multipleChoicesList"
type="checkbox"
value="0"
/>
<span>
foo
@ -833,8 +902,11 @@ exports[`Form renders with primary button 1`] = `
<label>
<span>
<input
id="root_multipleChoicesList_1"
aria-describedby="root_multipleChoicesList__error root_multipleChoicesList__description root_multipleChoicesList__help"
id="root_multipleChoicesList-1"
name="root_multipleChoicesList"
type="checkbox"
value="1"
/>
<span>
bar
@ -848,8 +920,11 @@ exports[`Form renders with primary button 1`] = `
<label>
<span>
<input
id="root_multipleChoicesList_2"
aria-describedby="root_multipleChoicesList__error root_multipleChoicesList__description root_multipleChoicesList__help"
id="root_multipleChoicesList-2"
name="root_multipleChoicesList"
type="checkbox"
value="2"
/>
<span>
fuzz
@ -943,6 +1018,11 @@ exports[`Form renders with primary button 1`] = `
</div>
</div>
</div>
<input
name="numberEnum"
type="hidden"
value=""
/>
</div>
</div>
<div
@ -963,9 +1043,11 @@ exports[`Form renders with primary button 1`] = `
>
<span>
<input
name="0.25546350798039463"
aria-describedby="root_numberEnumRadio__error root_numberEnumRadio__description root_numberEnumRadio__help"
id="root_numberEnumRadio-0"
name="root_numberEnumRadio"
type="radio"
value="1"
value="0"
/>
<span>
1
@ -977,9 +1059,11 @@ exports[`Form renders with primary button 1`] = `
>
<span>
<input
name="0.25546350798039463"
aria-describedby="root_numberEnumRadio__error root_numberEnumRadio__description root_numberEnumRadio__help"
id="root_numberEnumRadio-1"
name="root_numberEnumRadio"
type="radio"
value="2"
value="1"
/>
<span>
2
@ -991,9 +1075,11 @@ exports[`Form renders with primary button 1`] = `
>
<span>
<input
name="0.25546350798039463"
aria-describedby="root_numberEnumRadio__error root_numberEnumRadio__description root_numberEnumRadio__help"
id="root_numberEnumRadio-2"
name="root_numberEnumRadio"
type="radio"
value="3"
value="2"
/>
<span>
3
@ -1021,6 +1107,7 @@ exports[`Form renders with primary button 1`] = `
id="root_integerRange"
max="100"
min="42"
name="integerRange"
placeholder=""
type="range"
uischema="[object Object]"

View File

@ -731,8 +731,8 @@ importers:
specifier: ^2.2.7
version: 2.2.7(react-redux@9.1.2)(react@18.3.1)
'@rjsf/core':
specifier: ^4.2.3
version: 4.2.3(react@18.3.1)
specifier: ^5.20.0
version: 5.20.0(@rjsf/utils@5.20.0)(react@18.3.1)
'@types/jsan':
specifier: ^3.1.5
version: 3.1.5
@ -897,8 +897,8 @@ importers:
specifier: ^2.2.7
version: 2.2.7(react-redux@9.1.2)(react@18.3.1)
'@rjsf/core':
specifier: ^4.2.3
version: 4.2.3(react@18.3.1)
specifier: ^5.20.0
version: 5.20.0(@rjsf/utils@5.20.0)(react@18.3.1)
'@testing-library/dom':
specifier: ^10.4.0
version: 10.4.0
@ -2437,8 +2437,14 @@ importers:
specifier: ^7.25.4
version: 7.25.4
'@rjsf/core':
specifier: ^4.2.3
version: 4.2.3(react@18.3.1)
specifier: ^5.20.0
version: 5.20.0(@rjsf/utils@5.20.0)(react@18.3.1)
'@rjsf/utils':
specifier: ^5.20.0
version: 5.20.0(react@18.3.1)
'@rjsf/validator-ajv8':
specifier: ^5.20.0
version: 5.20.0(@rjsf/utils@5.20.0)
'@types/codemirror':
specifier: ^5.60.15
version: 5.60.15
@ -7343,23 +7349,46 @@ packages:
warning: 4.0.3
dev: false
/@rjsf/core@4.2.3(react@18.3.1):
resolution: {integrity: sha512-dRXhd1Tac/9OcG0VDrYDF2boNTyKINEEITEtJ4L1Yce2iMVk66U52BhWKIFp/WXDM27vwnOfwQo4NwGiqeQeHw==}
engines: {node: '>=12'}
/@rjsf/core@5.20.0(@rjsf/utils@5.20.0)(react@18.3.1):
resolution: {integrity: sha512-WLxtdNx+KlOXmVpCcyAgXqiQEL9k8ejC8rFYMAhdY7kzuh1e/0y13wHjoTkFXFg/Cxd2faENxf+oQoe1TC3n5g==}
engines: {node: '>=14'}
peerDependencies:
react: '>=16 || >=17'
'@rjsf/utils': ^5.19.x
react: ^16.14.0 || >=17
dependencies:
'@types/json-schema': 7.0.15
ajv: 6.12.6
core-js-pure: 3.38.1
json-schema-merge-allof: 0.6.0
jsonpointer: 5.0.1
'@rjsf/utils': 5.20.0(react@18.3.1)
lodash: 4.17.21
lodash-es: 4.17.21
markdown-to-jsx: 7.5.0(react@18.3.1)
nanoid: 3.3.7
prop-types: 15.8.1
react: 18.3.1
react-is: 16.9.0
/@rjsf/utils@5.20.0(react@18.3.1):
resolution: {integrity: sha512-1hICYfz4DI+kgyITJgKcOAX2WoTMHLVwb199dz9ZnTH90YzbpbaQeXoEs06/i5vy0HNYLJ6uKd4Ety5eN4Uf+w==}
engines: {node: '>=14'}
peerDependencies:
react: ^16.14.0 || >=17
dependencies:
json-schema-merge-allof: 0.8.1
jsonpointer: 5.0.1
lodash: 4.17.21
lodash-es: 4.17.21
react: 18.3.1
react-is: 18.3.1
/@rjsf/validator-ajv8@5.20.0(@rjsf/utils@5.20.0):
resolution: {integrity: sha512-0S/KwVdI1rI4joGgVYJGK4NSvw2jtzeLQ6ALCJRLF0Ead7vYKpYqgkkBxCtI0yDwg34phSu35D4n8/Craf/c3g==}
engines: {node: '>=14'}
peerDependencies:
'@rjsf/utils': ^5.19.x
dependencies:
'@rjsf/utils': 5.20.0(react@18.3.1)
ajv: 8.17.1
ajv-formats: 2.1.1(ajv@8.17.1)
lodash: 4.17.21
lodash-es: 4.17.21
dev: false
/@sinclair/typebox@0.27.8:
resolution: {integrity: sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==}
@ -9570,7 +9599,6 @@ packages:
optional: true
dependencies:
ajv: 8.17.1
dev: true
/ajv-keywords@3.5.2(ajv@6.12.6):
resolution: {integrity: sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==}
@ -9596,6 +9624,7 @@ packages:
fast-json-stable-stringify: 2.1.0
json-schema-traverse: 0.4.1
uri-js: 4.4.1
dev: true
/ajv@8.17.1:
resolution: {integrity: sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==}
@ -9604,7 +9633,6 @@ packages:
fast-uri: 3.0.1
json-schema-traverse: 1.0.0
require-from-string: 2.0.2
dev: true
/anser@2.1.1:
resolution: {integrity: sha512-nqLm4HxOTpeLOxcmB3QWmV5TcDFhW9y/fyQ+hivtDFcK4OQ+pQ5fzPnXHM1Mfcm0VkLtvVi1TCPr++Qy0Q/3EQ==}
@ -10781,10 +10809,6 @@ packages:
browserslist: 4.23.3
dev: true
/core-js-pure@3.38.1:
resolution: {integrity: sha512-BY8Etc1FZqdw1glX0XNOq2FDwfrg/VGqoZOZCdaL+UmdaqDwQwYXkMJT4t6In+zfEfOJDcM9T0KdbBeJg8KKCQ==}
requiresBuild: true
/core-util-is@1.0.3:
resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==}
@ -12543,6 +12567,7 @@ packages:
/fast-json-stable-stringify@2.1.0:
resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==}
dev: true
/fast-levenshtein@2.0.6:
resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==}
@ -12554,7 +12579,6 @@ packages:
/fast-uri@3.0.1:
resolution: {integrity: sha512-MWipKbbYiYI0UC7cl8m/i/IWTqfC8YXsqjzybjddLsFjStroQzsHXkc73JutMvBiXmOvapk+axIl79ig5t55Bw==}
dev: true
/fastest-levenshtein@1.0.16:
resolution: {integrity: sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg==}
@ -14742,8 +14766,9 @@ packages:
dependencies:
lodash: 4.17.21
/json-schema-merge-allof@0.6.0:
resolution: {integrity: sha512-LEw4VMQVRceOPLuGRWcxW5orTTiR9ZAtqTAe4rQUjNADTeR81bezBVFa0MqIwp0YmHIM1KkhSjZM7o+IQhaPbQ==}
/json-schema-merge-allof@0.8.1:
resolution: {integrity: sha512-CTUKmIlPJbsWfzRRnOXz+0MjIqvnleIXwFTzz+t9T86HnYX/Rozria6ZVGLktAU9e+NygNljveP+yxqtQp/Q4w==}
engines: {node: '>=12.0.0'}
dependencies:
compute-lcm: 1.1.2
json-schema-compare: 0.2.2
@ -14751,10 +14776,10 @@ packages:
/json-schema-traverse@0.4.1:
resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==}
dev: true
/json-schema-traverse@1.0.0:
resolution: {integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==}
dev: true
/json-stable-stringify-without-jsonify@1.0.1:
resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==}
@ -15257,7 +15282,6 @@ packages:
react: '>= 0.14.0'
dependencies:
react: 18.3.1
dev: true
/matcher@3.0.0:
resolution: {integrity: sha512-OkeDaAZ/bQCxeFAozM55PKcKU0yJMPGifLwV4Qgjitu+5MoAfSQN4lsLJeXZ1b8w0x+/Emda6MZgXS1jvsapng==}
@ -16935,9 +16959,6 @@ packages:
/react-is@16.13.1:
resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==}
/react-is@16.9.0:
resolution: {integrity: sha512-tJBzzzIgnnRfEm046qRcURvwQnZVXmuCbscxUO5RWrGTXpon2d4c8mI0D8WE6ydVIm29JiLB6+RslkIvym9Rjw==}
/react-is@17.0.2:
resolution: {integrity: sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==}
dev: true
@ -17303,7 +17324,6 @@ packages:
/require-from-string@2.0.2:
resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==}
engines: {node: '>=0.10.0'}
dev: true
/requires-port@1.0.0:
resolution: {integrity: sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==}
@ -19166,6 +19186,7 @@ packages:
resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
dependencies:
punycode: 2.3.1
dev: true
/urijs@1.19.11:
resolution: {integrity: sha512-HXgFDgDommxn5/bIv0cnQZsPhHDA90NPHD6+c/v21U5+Sx5hoP8+dP9IZXBU1gIfvdRfhG8cel9QNPeionfcCQ==}