mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2024-11-10 19:56:54 +03:00
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:
parent
76183cfa43
commit
238a38fb21
|
@ -62,7 +62,7 @@
|
||||||
"@babel/preset-typescript": "^7.24.7",
|
"@babel/preset-typescript": "^7.24.7",
|
||||||
"@emotion/react": "^11.13.3",
|
"@emotion/react": "^11.13.3",
|
||||||
"@reduxjs/toolkit": "^2.2.7",
|
"@reduxjs/toolkit": "^2.2.7",
|
||||||
"@rjsf/core": "^4.2.3",
|
"@rjsf/core": "^5.20.0",
|
||||||
"@testing-library/dom": "^10.4.0",
|
"@testing-library/dom": "^10.4.0",
|
||||||
"@testing-library/jest-dom": "^6.5.0",
|
"@testing-library/jest-dom": "^6.5.0",
|
||||||
"@testing-library/react": "^16.0.0",
|
"@testing-library/react": "^16.0.0",
|
||||||
|
|
|
@ -55,7 +55,7 @@ interface ChangeThemeFormData {
|
||||||
readonly colorPreference: 'auto' | 'light' | 'dark';
|
readonly colorPreference: 'auto' | 'light' | 'dark';
|
||||||
}
|
}
|
||||||
interface ChangeThemeData {
|
interface ChangeThemeData {
|
||||||
readonly formData: ChangeThemeFormData;
|
readonly formData?: ChangeThemeFormData;
|
||||||
}
|
}
|
||||||
export interface ChangeThemeAction {
|
export interface ChangeThemeAction {
|
||||||
readonly type: typeof CHANGE_THEME;
|
readonly type: typeof CHANGE_THEME;
|
||||||
|
@ -64,7 +64,7 @@ export interface ChangeThemeAction {
|
||||||
readonly colorPreference: 'auto' | 'light' | 'dark';
|
readonly colorPreference: 'auto' | 'light' | 'dark';
|
||||||
}
|
}
|
||||||
export function changeTheme(data: ChangeThemeData): ChangeThemeAction {
|
export function changeTheme(data: ChangeThemeData): ChangeThemeAction {
|
||||||
return { type: CHANGE_THEME, ...data.formData };
|
return { type: CHANGE_THEME, ...data.formData! };
|
||||||
}
|
}
|
||||||
|
|
||||||
interface ChangeStateTreeSettingsFormData {
|
interface ChangeStateTreeSettingsFormData {
|
||||||
|
@ -73,7 +73,7 @@ interface ChangeStateTreeSettingsFormData {
|
||||||
}
|
}
|
||||||
|
|
||||||
interface ChangeStateTreeSettingsData {
|
interface ChangeStateTreeSettingsData {
|
||||||
readonly formData: ChangeStateTreeSettingsFormData;
|
readonly formData?: ChangeStateTreeSettingsFormData;
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface ChangeStateTreeSettingsAction {
|
export interface ChangeStateTreeSettingsAction {
|
||||||
|
@ -85,7 +85,7 @@ export interface ChangeStateTreeSettingsAction {
|
||||||
export function changeStateTreeSettings(
|
export function changeStateTreeSettings(
|
||||||
data: ChangeStateTreeSettingsData,
|
data: ChangeStateTreeSettingsData,
|
||||||
): ChangeStateTreeSettingsAction {
|
): ChangeStateTreeSettingsAction {
|
||||||
return { type: CHANGE_STATE_TREE_SETTINGS, ...data.formData };
|
return { type: CHANGE_STATE_TREE_SETTINGS, ...data.formData! };
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface InitMonitorAction {
|
export interface InitMonitorAction {
|
||||||
|
|
|
@ -59,7 +59,7 @@
|
||||||
"@babel/preset-typescript": "^7.24.7",
|
"@babel/preset-typescript": "^7.24.7",
|
||||||
"@emotion/react": "^11.13.3",
|
"@emotion/react": "^11.13.3",
|
||||||
"@reduxjs/toolkit": "^2.2.7",
|
"@reduxjs/toolkit": "^2.2.7",
|
||||||
"@rjsf/core": "^4.2.3",
|
"@rjsf/core": "^5.20.0",
|
||||||
"@types/jsan": "^3.1.5",
|
"@types/jsan": "^3.1.5",
|
||||||
"@types/json-schema": "^7.0.15",
|
"@types/json-schema": "^7.0.15",
|
||||||
"@types/lodash": "^4.17.7",
|
"@types/lodash": "^4.17.7",
|
||||||
|
|
|
@ -1,15 +1,11 @@
|
||||||
import React, { Component } from 'react';
|
import React, { Component } from 'react';
|
||||||
import { connect, ResolveThunks } from 'react-redux';
|
import { connect, ResolveThunks } from 'react-redux';
|
||||||
import { Container, Form } from '@redux-devtools/ui';
|
import { Container, Form } from '@redux-devtools/ui';
|
||||||
import {
|
import { JSONSchema7Definition, JSONSchema7TypeName } from 'json-schema';
|
||||||
JSONSchema7Definition,
|
|
||||||
JSONSchema7Type,
|
|
||||||
JSONSchema7TypeName,
|
|
||||||
} from 'json-schema';
|
|
||||||
import { ConnectionType, saveSocketSettings } from '../../actions';
|
import { ConnectionType, saveSocketSettings } from '../../actions';
|
||||||
import { StoreState } from '../../reducers';
|
import { StoreState } from '../../reducers';
|
||||||
import { ConnectionStateOptions } from '../../reducers/connection';
|
import { ConnectionStateOptions } from '../../reducers/connection';
|
||||||
import { IChangeEvent, ISubmitEvent } from '@rjsf/core';
|
import { IChangeEvent } from '@rjsf/core';
|
||||||
|
|
||||||
declare module 'json-schema' {
|
declare module 'json-schema' {
|
||||||
export interface JSONSchema7 {
|
export interface JSONSchema7 {
|
||||||
|
@ -104,13 +100,13 @@ export class Connection extends Component<Props, State> {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
handleSave = (data: ISubmitEvent<FormData>) => {
|
handleSave = (data: IChangeEvent<FormData>) => {
|
||||||
this.props.saveSettings(data.formData);
|
this.props.saveSettings(data.formData!);
|
||||||
this.setState({ changed: false });
|
this.setState({ changed: false });
|
||||||
};
|
};
|
||||||
|
|
||||||
handleChange = (data: IChangeEvent<FormData>) => {
|
handleChange = (data: IChangeEvent<FormData>) => {
|
||||||
const formData = data.formData;
|
const formData = data.formData!;
|
||||||
const type = formData.type;
|
const type = formData.type;
|
||||||
if (type !== this.state.type) {
|
if (type !== this.state.type) {
|
||||||
this.setState(this.setFormData(type, true));
|
this.setState(this.setFormData(type, true));
|
||||||
|
|
|
@ -64,17 +64,17 @@ export class TestTab<S, A extends Action<string>> extends Component<
|
||||||
this.setState({ dialogStatus: null });
|
this.setState({ dialogStatus: null });
|
||||||
};
|
};
|
||||||
|
|
||||||
handleSubmit = ({ formData: template }: { formData: Template }) => {
|
handleSubmit = ({ formData: template }: { formData?: Template }) => {
|
||||||
const { templates = getDefaultTemplates(), selected = 0 } =
|
const { templates = getDefaultTemplates(), selected = 0 } =
|
||||||
this.getPersistedState();
|
this.getPersistedState();
|
||||||
if (this.state.dialogStatus === 'Add') {
|
if (this.state.dialogStatus === 'Add') {
|
||||||
this.updateState({
|
this.updateState({
|
||||||
selected: templates.length,
|
selected: templates.length,
|
||||||
templates: [...templates, template],
|
templates: [...templates, template!],
|
||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
const editedTemplates = [...templates];
|
const editedTemplates = [...templates];
|
||||||
editedTemplates[selected] = template;
|
editedTemplates[selected] = template!;
|
||||||
this.updateState({
|
this.updateState({
|
||||||
templates: editedTemplates,
|
templates: editedTemplates,
|
||||||
});
|
});
|
||||||
|
|
|
@ -43,7 +43,9 @@
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@babel/runtime": "^7.25.4",
|
"@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/codemirror": "^5.60.15",
|
||||||
"@types/json-schema": "^7.0.15",
|
"@types/json-schema": "^7.0.15",
|
||||||
"@types/simple-element-resize-detector": "^1.3.3",
|
"@types/simple-element-resize-detector": "^1.3.3",
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
import React, { PureComponent, Component } from 'react';
|
import React, { PureComponent, Component } from 'react';
|
||||||
import JSONSchemaForm, { FormProps } from '@rjsf/core';
|
import JSONSchemaForm, { FormProps } from '@rjsf/core';
|
||||||
|
import validator from '@rjsf/validator-ajv8';
|
||||||
import type { Base16Theme } from 'react-base16-styling';
|
import type { Base16Theme } from 'react-base16-styling';
|
||||||
import createStyledComponent from '../utils/createStyledComponent';
|
import createStyledComponent from '../utils/createStyledComponent';
|
||||||
import styles from './styles';
|
import styles from './styles';
|
||||||
|
@ -8,7 +9,7 @@ import customWidgets from './widgets';
|
||||||
|
|
||||||
const FormContainer = createStyledComponent(styles, JSONSchemaForm);
|
const FormContainer = createStyledComponent(styles, JSONSchemaForm);
|
||||||
|
|
||||||
export interface Props<T> extends FormProps<T> {
|
export interface Props<T> extends Omit<FormProps<T>, 'validator'> {
|
||||||
children?: React.ReactNode;
|
children?: React.ReactNode;
|
||||||
submitText?: string;
|
submitText?: string;
|
||||||
primaryButton?: boolean;
|
primaryButton?: boolean;
|
||||||
|
@ -26,6 +27,7 @@ export default class Form<T> extends (PureComponent || Component)<Props<T>> {
|
||||||
return (
|
return (
|
||||||
<FormContainer
|
<FormContainer
|
||||||
{...(rest as Props<unknown>)}
|
{...(rest as Props<unknown>)}
|
||||||
|
validator={validator}
|
||||||
widgets={{ ...customWidgets, ...widgets }}
|
widgets={{ ...customWidgets, ...widgets }}
|
||||||
>
|
>
|
||||||
{noSubmit ? (
|
{noSubmit ? (
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
import React from 'react';
|
import React from 'react';
|
||||||
import { FieldProps, Widget, WidgetProps } from '@rjsf/core';
|
import { FieldProps, Widget, WidgetProps } from '@rjsf/utils';
|
||||||
import Select from '../Select';
|
import Select from '../Select';
|
||||||
import Slider from '../Slider';
|
import Slider from '../Slider';
|
||||||
|
|
||||||
|
|
|
@ -36,9 +36,11 @@ exports[`Form renders correctly 1`] = `
|
||||||
</span>
|
</span>
|
||||||
</label>
|
</label>
|
||||||
<input
|
<input
|
||||||
|
aria-describedby="root_name__error root_name__description root_name__help"
|
||||||
class="form-control"
|
class="form-control"
|
||||||
id="root_name"
|
id="root_name"
|
||||||
label="Full name"
|
label="Full name"
|
||||||
|
name="root_name"
|
||||||
placeholder=""
|
placeholder=""
|
||||||
required=""
|
required=""
|
||||||
type="text"
|
type="text"
|
||||||
|
@ -55,9 +57,11 @@ exports[`Form renders correctly 1`] = `
|
||||||
Age
|
Age
|
||||||
</label>
|
</label>
|
||||||
<input
|
<input
|
||||||
|
aria-describedby="root_age__error root_age__description root_age__help"
|
||||||
class="form-control"
|
class="form-control"
|
||||||
id="root_age"
|
id="root_age"
|
||||||
label="Age"
|
label="Age"
|
||||||
|
name="root_age"
|
||||||
placeholder=""
|
placeholder=""
|
||||||
type="number"
|
type="number"
|
||||||
value="75"
|
value="75"
|
||||||
|
@ -73,8 +77,10 @@ exports[`Form renders correctly 1`] = `
|
||||||
Bio
|
Bio
|
||||||
</label>
|
</label>
|
||||||
<textarea
|
<textarea
|
||||||
|
aria-describedby="root_bio__error root_bio__description root_bio__help"
|
||||||
class="form-control"
|
class="form-control"
|
||||||
id="root_bio"
|
id="root_bio"
|
||||||
|
name="root_bio"
|
||||||
placeholder=""
|
placeholder=""
|
||||||
>
|
>
|
||||||
Roundhouse kicking asses since 1940
|
Roundhouse kicking asses since 1940
|
||||||
|
@ -90,9 +96,11 @@ exports[`Form renders correctly 1`] = `
|
||||||
Password
|
Password
|
||||||
</label>
|
</label>
|
||||||
<input
|
<input
|
||||||
|
aria-describedby="root_password__error root_password__description root_password__help"
|
||||||
class="form-control"
|
class="form-control"
|
||||||
id="root_password"
|
id="root_password"
|
||||||
label="Password"
|
label="Password"
|
||||||
|
name="root_password"
|
||||||
placeholder=""
|
placeholder=""
|
||||||
type="password"
|
type="password"
|
||||||
value="noneed"
|
value="noneed"
|
||||||
|
@ -123,8 +131,11 @@ exports[`Form renders correctly 1`] = `
|
||||||
<label>
|
<label>
|
||||||
<span>
|
<span>
|
||||||
<input
|
<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"
|
type="checkbox"
|
||||||
|
value="0"
|
||||||
/>
|
/>
|
||||||
<span>
|
<span>
|
||||||
foo
|
foo
|
||||||
|
@ -138,8 +149,11 @@ exports[`Form renders correctly 1`] = `
|
||||||
<label>
|
<label>
|
||||||
<span>
|
<span>
|
||||||
<input
|
<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"
|
type="checkbox"
|
||||||
|
value="1"
|
||||||
/>
|
/>
|
||||||
<span>
|
<span>
|
||||||
bar
|
bar
|
||||||
|
@ -153,8 +167,11 @@ exports[`Form renders correctly 1`] = `
|
||||||
<label>
|
<label>
|
||||||
<span>
|
<span>
|
||||||
<input
|
<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"
|
type="checkbox"
|
||||||
|
value="2"
|
||||||
/>
|
/>
|
||||||
<span>
|
<span>
|
||||||
fuzz
|
fuzz
|
||||||
|
@ -248,6 +265,11 @@ exports[`Form renders correctly 1`] = `
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
<input
|
||||||
|
name="numberEnum"
|
||||||
|
type="hidden"
|
||||||
|
value=""
|
||||||
|
/>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div
|
<div
|
||||||
|
@ -268,9 +290,11 @@ exports[`Form renders correctly 1`] = `
|
||||||
>
|
>
|
||||||
<span>
|
<span>
|
||||||
<input
|
<input
|
||||||
name="0.25546350798039463"
|
aria-describedby="root_numberEnumRadio__error root_numberEnumRadio__description root_numberEnumRadio__help"
|
||||||
|
id="root_numberEnumRadio-0"
|
||||||
|
name="root_numberEnumRadio"
|
||||||
type="radio"
|
type="radio"
|
||||||
value="1"
|
value="0"
|
||||||
/>
|
/>
|
||||||
<span>
|
<span>
|
||||||
1
|
1
|
||||||
|
@ -282,9 +306,11 @@ exports[`Form renders correctly 1`] = `
|
||||||
>
|
>
|
||||||
<span>
|
<span>
|
||||||
<input
|
<input
|
||||||
name="0.25546350798039463"
|
aria-describedby="root_numberEnumRadio__error root_numberEnumRadio__description root_numberEnumRadio__help"
|
||||||
|
id="root_numberEnumRadio-1"
|
||||||
|
name="root_numberEnumRadio"
|
||||||
type="radio"
|
type="radio"
|
||||||
value="2"
|
value="1"
|
||||||
/>
|
/>
|
||||||
<span>
|
<span>
|
||||||
2
|
2
|
||||||
|
@ -296,9 +322,11 @@ exports[`Form renders correctly 1`] = `
|
||||||
>
|
>
|
||||||
<span>
|
<span>
|
||||||
<input
|
<input
|
||||||
name="0.25546350798039463"
|
aria-describedby="root_numberEnumRadio__error root_numberEnumRadio__description root_numberEnumRadio__help"
|
||||||
|
id="root_numberEnumRadio-2"
|
||||||
|
name="root_numberEnumRadio"
|
||||||
type="radio"
|
type="radio"
|
||||||
value="3"
|
value="2"
|
||||||
/>
|
/>
|
||||||
<span>
|
<span>
|
||||||
3
|
3
|
||||||
|
@ -326,6 +354,7 @@ exports[`Form renders correctly 1`] = `
|
||||||
id="root_integerRange"
|
id="root_integerRange"
|
||||||
max="100"
|
max="100"
|
||||||
min="42"
|
min="42"
|
||||||
|
name="integerRange"
|
||||||
placeholder=""
|
placeholder=""
|
||||||
type="range"
|
type="range"
|
||||||
uischema="[object Object]"
|
uischema="[object Object]"
|
||||||
|
@ -388,9 +417,11 @@ exports[`Form renders with no button 1`] = `
|
||||||
</span>
|
</span>
|
||||||
</label>
|
</label>
|
||||||
<input
|
<input
|
||||||
|
aria-describedby="root_name__error root_name__description root_name__help"
|
||||||
class="form-control"
|
class="form-control"
|
||||||
id="root_name"
|
id="root_name"
|
||||||
label="Full name"
|
label="Full name"
|
||||||
|
name="root_name"
|
||||||
placeholder=""
|
placeholder=""
|
||||||
required=""
|
required=""
|
||||||
type="text"
|
type="text"
|
||||||
|
@ -407,9 +438,11 @@ exports[`Form renders with no button 1`] = `
|
||||||
Age
|
Age
|
||||||
</label>
|
</label>
|
||||||
<input
|
<input
|
||||||
|
aria-describedby="root_age__error root_age__description root_age__help"
|
||||||
class="form-control"
|
class="form-control"
|
||||||
id="root_age"
|
id="root_age"
|
||||||
label="Age"
|
label="Age"
|
||||||
|
name="root_age"
|
||||||
placeholder=""
|
placeholder=""
|
||||||
type="number"
|
type="number"
|
||||||
value="75"
|
value="75"
|
||||||
|
@ -425,8 +458,10 @@ exports[`Form renders with no button 1`] = `
|
||||||
Bio
|
Bio
|
||||||
</label>
|
</label>
|
||||||
<textarea
|
<textarea
|
||||||
|
aria-describedby="root_bio__error root_bio__description root_bio__help"
|
||||||
class="form-control"
|
class="form-control"
|
||||||
id="root_bio"
|
id="root_bio"
|
||||||
|
name="root_bio"
|
||||||
placeholder=""
|
placeholder=""
|
||||||
>
|
>
|
||||||
Roundhouse kicking asses since 1940
|
Roundhouse kicking asses since 1940
|
||||||
|
@ -442,9 +477,11 @@ exports[`Form renders with no button 1`] = `
|
||||||
Password
|
Password
|
||||||
</label>
|
</label>
|
||||||
<input
|
<input
|
||||||
|
aria-describedby="root_password__error root_password__description root_password__help"
|
||||||
class="form-control"
|
class="form-control"
|
||||||
id="root_password"
|
id="root_password"
|
||||||
label="Password"
|
label="Password"
|
||||||
|
name="root_password"
|
||||||
placeholder=""
|
placeholder=""
|
||||||
type="password"
|
type="password"
|
||||||
value="noneed"
|
value="noneed"
|
||||||
|
@ -475,8 +512,11 @@ exports[`Form renders with no button 1`] = `
|
||||||
<label>
|
<label>
|
||||||
<span>
|
<span>
|
||||||
<input
|
<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"
|
type="checkbox"
|
||||||
|
value="0"
|
||||||
/>
|
/>
|
||||||
<span>
|
<span>
|
||||||
foo
|
foo
|
||||||
|
@ -490,8 +530,11 @@ exports[`Form renders with no button 1`] = `
|
||||||
<label>
|
<label>
|
||||||
<span>
|
<span>
|
||||||
<input
|
<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"
|
type="checkbox"
|
||||||
|
value="1"
|
||||||
/>
|
/>
|
||||||
<span>
|
<span>
|
||||||
bar
|
bar
|
||||||
|
@ -505,8 +548,11 @@ exports[`Form renders with no button 1`] = `
|
||||||
<label>
|
<label>
|
||||||
<span>
|
<span>
|
||||||
<input
|
<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"
|
type="checkbox"
|
||||||
|
value="2"
|
||||||
/>
|
/>
|
||||||
<span>
|
<span>
|
||||||
fuzz
|
fuzz
|
||||||
|
@ -600,6 +646,11 @@ exports[`Form renders with no button 1`] = `
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
<input
|
||||||
|
name="numberEnum"
|
||||||
|
type="hidden"
|
||||||
|
value=""
|
||||||
|
/>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div
|
<div
|
||||||
|
@ -620,9 +671,11 @@ exports[`Form renders with no button 1`] = `
|
||||||
>
|
>
|
||||||
<span>
|
<span>
|
||||||
<input
|
<input
|
||||||
name="0.25546350798039463"
|
aria-describedby="root_numberEnumRadio__error root_numberEnumRadio__description root_numberEnumRadio__help"
|
||||||
|
id="root_numberEnumRadio-0"
|
||||||
|
name="root_numberEnumRadio"
|
||||||
type="radio"
|
type="radio"
|
||||||
value="1"
|
value="0"
|
||||||
/>
|
/>
|
||||||
<span>
|
<span>
|
||||||
1
|
1
|
||||||
|
@ -634,9 +687,11 @@ exports[`Form renders with no button 1`] = `
|
||||||
>
|
>
|
||||||
<span>
|
<span>
|
||||||
<input
|
<input
|
||||||
name="0.25546350798039463"
|
aria-describedby="root_numberEnumRadio__error root_numberEnumRadio__description root_numberEnumRadio__help"
|
||||||
|
id="root_numberEnumRadio-1"
|
||||||
|
name="root_numberEnumRadio"
|
||||||
type="radio"
|
type="radio"
|
||||||
value="2"
|
value="1"
|
||||||
/>
|
/>
|
||||||
<span>
|
<span>
|
||||||
2
|
2
|
||||||
|
@ -648,9 +703,11 @@ exports[`Form renders with no button 1`] = `
|
||||||
>
|
>
|
||||||
<span>
|
<span>
|
||||||
<input
|
<input
|
||||||
name="0.25546350798039463"
|
aria-describedby="root_numberEnumRadio__error root_numberEnumRadio__description root_numberEnumRadio__help"
|
||||||
|
id="root_numberEnumRadio-2"
|
||||||
|
name="root_numberEnumRadio"
|
||||||
type="radio"
|
type="radio"
|
||||||
value="3"
|
value="2"
|
||||||
/>
|
/>
|
||||||
<span>
|
<span>
|
||||||
3
|
3
|
||||||
|
@ -678,6 +735,7 @@ exports[`Form renders with no button 1`] = `
|
||||||
id="root_integerRange"
|
id="root_integerRange"
|
||||||
max="100"
|
max="100"
|
||||||
min="42"
|
min="42"
|
||||||
|
name="integerRange"
|
||||||
placeholder=""
|
placeholder=""
|
||||||
type="range"
|
type="range"
|
||||||
uischema="[object Object]"
|
uischema="[object Object]"
|
||||||
|
@ -731,9 +789,11 @@ exports[`Form renders with primary button 1`] = `
|
||||||
</span>
|
</span>
|
||||||
</label>
|
</label>
|
||||||
<input
|
<input
|
||||||
|
aria-describedby="root_name__error root_name__description root_name__help"
|
||||||
class="form-control"
|
class="form-control"
|
||||||
id="root_name"
|
id="root_name"
|
||||||
label="Full name"
|
label="Full name"
|
||||||
|
name="root_name"
|
||||||
placeholder=""
|
placeholder=""
|
||||||
required=""
|
required=""
|
||||||
type="text"
|
type="text"
|
||||||
|
@ -750,9 +810,11 @@ exports[`Form renders with primary button 1`] = `
|
||||||
Age
|
Age
|
||||||
</label>
|
</label>
|
||||||
<input
|
<input
|
||||||
|
aria-describedby="root_age__error root_age__description root_age__help"
|
||||||
class="form-control"
|
class="form-control"
|
||||||
id="root_age"
|
id="root_age"
|
||||||
label="Age"
|
label="Age"
|
||||||
|
name="root_age"
|
||||||
placeholder=""
|
placeholder=""
|
||||||
type="number"
|
type="number"
|
||||||
value="75"
|
value="75"
|
||||||
|
@ -768,8 +830,10 @@ exports[`Form renders with primary button 1`] = `
|
||||||
Bio
|
Bio
|
||||||
</label>
|
</label>
|
||||||
<textarea
|
<textarea
|
||||||
|
aria-describedby="root_bio__error root_bio__description root_bio__help"
|
||||||
class="form-control"
|
class="form-control"
|
||||||
id="root_bio"
|
id="root_bio"
|
||||||
|
name="root_bio"
|
||||||
placeholder=""
|
placeholder=""
|
||||||
>
|
>
|
||||||
Roundhouse kicking asses since 1940
|
Roundhouse kicking asses since 1940
|
||||||
|
@ -785,9 +849,11 @@ exports[`Form renders with primary button 1`] = `
|
||||||
Password
|
Password
|
||||||
</label>
|
</label>
|
||||||
<input
|
<input
|
||||||
|
aria-describedby="root_password__error root_password__description root_password__help"
|
||||||
class="form-control"
|
class="form-control"
|
||||||
id="root_password"
|
id="root_password"
|
||||||
label="Password"
|
label="Password"
|
||||||
|
name="root_password"
|
||||||
placeholder=""
|
placeholder=""
|
||||||
type="password"
|
type="password"
|
||||||
value="noneed"
|
value="noneed"
|
||||||
|
@ -818,8 +884,11 @@ exports[`Form renders with primary button 1`] = `
|
||||||
<label>
|
<label>
|
||||||
<span>
|
<span>
|
||||||
<input
|
<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"
|
type="checkbox"
|
||||||
|
value="0"
|
||||||
/>
|
/>
|
||||||
<span>
|
<span>
|
||||||
foo
|
foo
|
||||||
|
@ -833,8 +902,11 @@ exports[`Form renders with primary button 1`] = `
|
||||||
<label>
|
<label>
|
||||||
<span>
|
<span>
|
||||||
<input
|
<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"
|
type="checkbox"
|
||||||
|
value="1"
|
||||||
/>
|
/>
|
||||||
<span>
|
<span>
|
||||||
bar
|
bar
|
||||||
|
@ -848,8 +920,11 @@ exports[`Form renders with primary button 1`] = `
|
||||||
<label>
|
<label>
|
||||||
<span>
|
<span>
|
||||||
<input
|
<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"
|
type="checkbox"
|
||||||
|
value="2"
|
||||||
/>
|
/>
|
||||||
<span>
|
<span>
|
||||||
fuzz
|
fuzz
|
||||||
|
@ -943,6 +1018,11 @@ exports[`Form renders with primary button 1`] = `
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
<input
|
||||||
|
name="numberEnum"
|
||||||
|
type="hidden"
|
||||||
|
value=""
|
||||||
|
/>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div
|
<div
|
||||||
|
@ -963,9 +1043,11 @@ exports[`Form renders with primary button 1`] = `
|
||||||
>
|
>
|
||||||
<span>
|
<span>
|
||||||
<input
|
<input
|
||||||
name="0.25546350798039463"
|
aria-describedby="root_numberEnumRadio__error root_numberEnumRadio__description root_numberEnumRadio__help"
|
||||||
|
id="root_numberEnumRadio-0"
|
||||||
|
name="root_numberEnumRadio"
|
||||||
type="radio"
|
type="radio"
|
||||||
value="1"
|
value="0"
|
||||||
/>
|
/>
|
||||||
<span>
|
<span>
|
||||||
1
|
1
|
||||||
|
@ -977,9 +1059,11 @@ exports[`Form renders with primary button 1`] = `
|
||||||
>
|
>
|
||||||
<span>
|
<span>
|
||||||
<input
|
<input
|
||||||
name="0.25546350798039463"
|
aria-describedby="root_numberEnumRadio__error root_numberEnumRadio__description root_numberEnumRadio__help"
|
||||||
|
id="root_numberEnumRadio-1"
|
||||||
|
name="root_numberEnumRadio"
|
||||||
type="radio"
|
type="radio"
|
||||||
value="2"
|
value="1"
|
||||||
/>
|
/>
|
||||||
<span>
|
<span>
|
||||||
2
|
2
|
||||||
|
@ -991,9 +1075,11 @@ exports[`Form renders with primary button 1`] = `
|
||||||
>
|
>
|
||||||
<span>
|
<span>
|
||||||
<input
|
<input
|
||||||
name="0.25546350798039463"
|
aria-describedby="root_numberEnumRadio__error root_numberEnumRadio__description root_numberEnumRadio__help"
|
||||||
|
id="root_numberEnumRadio-2"
|
||||||
|
name="root_numberEnumRadio"
|
||||||
type="radio"
|
type="radio"
|
||||||
value="3"
|
value="2"
|
||||||
/>
|
/>
|
||||||
<span>
|
<span>
|
||||||
3
|
3
|
||||||
|
@ -1021,6 +1107,7 @@ exports[`Form renders with primary button 1`] = `
|
||||||
id="root_integerRange"
|
id="root_integerRange"
|
||||||
max="100"
|
max="100"
|
||||||
min="42"
|
min="42"
|
||||||
|
name="integerRange"
|
||||||
placeholder=""
|
placeholder=""
|
||||||
type="range"
|
type="range"
|
||||||
uischema="[object Object]"
|
uischema="[object Object]"
|
||||||
|
|
|
@ -731,8 +731,8 @@ importers:
|
||||||
specifier: ^2.2.7
|
specifier: ^2.2.7
|
||||||
version: 2.2.7(react-redux@9.1.2)(react@18.3.1)
|
version: 2.2.7(react-redux@9.1.2)(react@18.3.1)
|
||||||
'@rjsf/core':
|
'@rjsf/core':
|
||||||
specifier: ^4.2.3
|
specifier: ^5.20.0
|
||||||
version: 4.2.3(react@18.3.1)
|
version: 5.20.0(@rjsf/utils@5.20.0)(react@18.3.1)
|
||||||
'@types/jsan':
|
'@types/jsan':
|
||||||
specifier: ^3.1.5
|
specifier: ^3.1.5
|
||||||
version: 3.1.5
|
version: 3.1.5
|
||||||
|
@ -897,8 +897,8 @@ importers:
|
||||||
specifier: ^2.2.7
|
specifier: ^2.2.7
|
||||||
version: 2.2.7(react-redux@9.1.2)(react@18.3.1)
|
version: 2.2.7(react-redux@9.1.2)(react@18.3.1)
|
||||||
'@rjsf/core':
|
'@rjsf/core':
|
||||||
specifier: ^4.2.3
|
specifier: ^5.20.0
|
||||||
version: 4.2.3(react@18.3.1)
|
version: 5.20.0(@rjsf/utils@5.20.0)(react@18.3.1)
|
||||||
'@testing-library/dom':
|
'@testing-library/dom':
|
||||||
specifier: ^10.4.0
|
specifier: ^10.4.0
|
||||||
version: 10.4.0
|
version: 10.4.0
|
||||||
|
@ -2437,8 +2437,14 @@ importers:
|
||||||
specifier: ^7.25.4
|
specifier: ^7.25.4
|
||||||
version: 7.25.4
|
version: 7.25.4
|
||||||
'@rjsf/core':
|
'@rjsf/core':
|
||||||
specifier: ^4.2.3
|
specifier: ^5.20.0
|
||||||
version: 4.2.3(react@18.3.1)
|
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':
|
'@types/codemirror':
|
||||||
specifier: ^5.60.15
|
specifier: ^5.60.15
|
||||||
version: 5.60.15
|
version: 5.60.15
|
||||||
|
@ -7343,23 +7349,46 @@ packages:
|
||||||
warning: 4.0.3
|
warning: 4.0.3
|
||||||
dev: false
|
dev: false
|
||||||
|
|
||||||
/@rjsf/core@4.2.3(react@18.3.1):
|
/@rjsf/core@5.20.0(@rjsf/utils@5.20.0)(react@18.3.1):
|
||||||
resolution: {integrity: sha512-dRXhd1Tac/9OcG0VDrYDF2boNTyKINEEITEtJ4L1Yce2iMVk66U52BhWKIFp/WXDM27vwnOfwQo4NwGiqeQeHw==}
|
resolution: {integrity: sha512-WLxtdNx+KlOXmVpCcyAgXqiQEL9k8ejC8rFYMAhdY7kzuh1e/0y13wHjoTkFXFg/Cxd2faENxf+oQoe1TC3n5g==}
|
||||||
engines: {node: '>=12'}
|
engines: {node: '>=14'}
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
react: '>=16 || >=17'
|
'@rjsf/utils': ^5.19.x
|
||||||
|
react: ^16.14.0 || >=17
|
||||||
dependencies:
|
dependencies:
|
||||||
'@types/json-schema': 7.0.15
|
'@rjsf/utils': 5.20.0(react@18.3.1)
|
||||||
ajv: 6.12.6
|
|
||||||
core-js-pure: 3.38.1
|
|
||||||
json-schema-merge-allof: 0.6.0
|
|
||||||
jsonpointer: 5.0.1
|
|
||||||
lodash: 4.17.21
|
lodash: 4.17.21
|
||||||
lodash-es: 4.17.21
|
lodash-es: 4.17.21
|
||||||
|
markdown-to-jsx: 7.5.0(react@18.3.1)
|
||||||
nanoid: 3.3.7
|
nanoid: 3.3.7
|
||||||
prop-types: 15.8.1
|
prop-types: 15.8.1
|
||||||
react: 18.3.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:
|
/@sinclair/typebox@0.27.8:
|
||||||
resolution: {integrity: sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==}
|
resolution: {integrity: sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==}
|
||||||
|
@ -9570,7 +9599,6 @@ packages:
|
||||||
optional: true
|
optional: true
|
||||||
dependencies:
|
dependencies:
|
||||||
ajv: 8.17.1
|
ajv: 8.17.1
|
||||||
dev: true
|
|
||||||
|
|
||||||
/ajv-keywords@3.5.2(ajv@6.12.6):
|
/ajv-keywords@3.5.2(ajv@6.12.6):
|
||||||
resolution: {integrity: sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==}
|
resolution: {integrity: sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==}
|
||||||
|
@ -9596,6 +9624,7 @@ packages:
|
||||||
fast-json-stable-stringify: 2.1.0
|
fast-json-stable-stringify: 2.1.0
|
||||||
json-schema-traverse: 0.4.1
|
json-schema-traverse: 0.4.1
|
||||||
uri-js: 4.4.1
|
uri-js: 4.4.1
|
||||||
|
dev: true
|
||||||
|
|
||||||
/ajv@8.17.1:
|
/ajv@8.17.1:
|
||||||
resolution: {integrity: sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==}
|
resolution: {integrity: sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==}
|
||||||
|
@ -9604,7 +9633,6 @@ packages:
|
||||||
fast-uri: 3.0.1
|
fast-uri: 3.0.1
|
||||||
json-schema-traverse: 1.0.0
|
json-schema-traverse: 1.0.0
|
||||||
require-from-string: 2.0.2
|
require-from-string: 2.0.2
|
||||||
dev: true
|
|
||||||
|
|
||||||
/anser@2.1.1:
|
/anser@2.1.1:
|
||||||
resolution: {integrity: sha512-nqLm4HxOTpeLOxcmB3QWmV5TcDFhW9y/fyQ+hivtDFcK4OQ+pQ5fzPnXHM1Mfcm0VkLtvVi1TCPr++Qy0Q/3EQ==}
|
resolution: {integrity: sha512-nqLm4HxOTpeLOxcmB3QWmV5TcDFhW9y/fyQ+hivtDFcK4OQ+pQ5fzPnXHM1Mfcm0VkLtvVi1TCPr++Qy0Q/3EQ==}
|
||||||
|
@ -10781,10 +10809,6 @@ packages:
|
||||||
browserslist: 4.23.3
|
browserslist: 4.23.3
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
/core-js-pure@3.38.1:
|
|
||||||
resolution: {integrity: sha512-BY8Etc1FZqdw1glX0XNOq2FDwfrg/VGqoZOZCdaL+UmdaqDwQwYXkMJT4t6In+zfEfOJDcM9T0KdbBeJg8KKCQ==}
|
|
||||||
requiresBuild: true
|
|
||||||
|
|
||||||
/core-util-is@1.0.3:
|
/core-util-is@1.0.3:
|
||||||
resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==}
|
resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==}
|
||||||
|
|
||||||
|
@ -12543,6 +12567,7 @@ packages:
|
||||||
|
|
||||||
/fast-json-stable-stringify@2.1.0:
|
/fast-json-stable-stringify@2.1.0:
|
||||||
resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==}
|
resolution: {integrity: sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==}
|
||||||
|
dev: true
|
||||||
|
|
||||||
/fast-levenshtein@2.0.6:
|
/fast-levenshtein@2.0.6:
|
||||||
resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==}
|
resolution: {integrity: sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==}
|
||||||
|
@ -12554,7 +12579,6 @@ packages:
|
||||||
|
|
||||||
/fast-uri@3.0.1:
|
/fast-uri@3.0.1:
|
||||||
resolution: {integrity: sha512-MWipKbbYiYI0UC7cl8m/i/IWTqfC8YXsqjzybjddLsFjStroQzsHXkc73JutMvBiXmOvapk+axIl79ig5t55Bw==}
|
resolution: {integrity: sha512-MWipKbbYiYI0UC7cl8m/i/IWTqfC8YXsqjzybjddLsFjStroQzsHXkc73JutMvBiXmOvapk+axIl79ig5t55Bw==}
|
||||||
dev: true
|
|
||||||
|
|
||||||
/fastest-levenshtein@1.0.16:
|
/fastest-levenshtein@1.0.16:
|
||||||
resolution: {integrity: sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg==}
|
resolution: {integrity: sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg==}
|
||||||
|
@ -14742,8 +14766,9 @@ packages:
|
||||||
dependencies:
|
dependencies:
|
||||||
lodash: 4.17.21
|
lodash: 4.17.21
|
||||||
|
|
||||||
/json-schema-merge-allof@0.6.0:
|
/json-schema-merge-allof@0.8.1:
|
||||||
resolution: {integrity: sha512-LEw4VMQVRceOPLuGRWcxW5orTTiR9ZAtqTAe4rQUjNADTeR81bezBVFa0MqIwp0YmHIM1KkhSjZM7o+IQhaPbQ==}
|
resolution: {integrity: sha512-CTUKmIlPJbsWfzRRnOXz+0MjIqvnleIXwFTzz+t9T86HnYX/Rozria6ZVGLktAU9e+NygNljveP+yxqtQp/Q4w==}
|
||||||
|
engines: {node: '>=12.0.0'}
|
||||||
dependencies:
|
dependencies:
|
||||||
compute-lcm: 1.1.2
|
compute-lcm: 1.1.2
|
||||||
json-schema-compare: 0.2.2
|
json-schema-compare: 0.2.2
|
||||||
|
@ -14751,10 +14776,10 @@ packages:
|
||||||
|
|
||||||
/json-schema-traverse@0.4.1:
|
/json-schema-traverse@0.4.1:
|
||||||
resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==}
|
resolution: {integrity: sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==}
|
||||||
|
dev: true
|
||||||
|
|
||||||
/json-schema-traverse@1.0.0:
|
/json-schema-traverse@1.0.0:
|
||||||
resolution: {integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==}
|
resolution: {integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==}
|
||||||
dev: true
|
|
||||||
|
|
||||||
/json-stable-stringify-without-jsonify@1.0.1:
|
/json-stable-stringify-without-jsonify@1.0.1:
|
||||||
resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==}
|
resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==}
|
||||||
|
@ -15257,7 +15282,6 @@ packages:
|
||||||
react: '>= 0.14.0'
|
react: '>= 0.14.0'
|
||||||
dependencies:
|
dependencies:
|
||||||
react: 18.3.1
|
react: 18.3.1
|
||||||
dev: true
|
|
||||||
|
|
||||||
/matcher@3.0.0:
|
/matcher@3.0.0:
|
||||||
resolution: {integrity: sha512-OkeDaAZ/bQCxeFAozM55PKcKU0yJMPGifLwV4Qgjitu+5MoAfSQN4lsLJeXZ1b8w0x+/Emda6MZgXS1jvsapng==}
|
resolution: {integrity: sha512-OkeDaAZ/bQCxeFAozM55PKcKU0yJMPGifLwV4Qgjitu+5MoAfSQN4lsLJeXZ1b8w0x+/Emda6MZgXS1jvsapng==}
|
||||||
|
@ -16935,9 +16959,6 @@ packages:
|
||||||
/react-is@16.13.1:
|
/react-is@16.13.1:
|
||||||
resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==}
|
resolution: {integrity: sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==}
|
||||||
|
|
||||||
/react-is@16.9.0:
|
|
||||||
resolution: {integrity: sha512-tJBzzzIgnnRfEm046qRcURvwQnZVXmuCbscxUO5RWrGTXpon2d4c8mI0D8WE6ydVIm29JiLB6+RslkIvym9Rjw==}
|
|
||||||
|
|
||||||
/react-is@17.0.2:
|
/react-is@17.0.2:
|
||||||
resolution: {integrity: sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==}
|
resolution: {integrity: sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==}
|
||||||
dev: true
|
dev: true
|
||||||
|
@ -17303,7 +17324,6 @@ packages:
|
||||||
/require-from-string@2.0.2:
|
/require-from-string@2.0.2:
|
||||||
resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==}
|
resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==}
|
||||||
engines: {node: '>=0.10.0'}
|
engines: {node: '>=0.10.0'}
|
||||||
dev: true
|
|
||||||
|
|
||||||
/requires-port@1.0.0:
|
/requires-port@1.0.0:
|
||||||
resolution: {integrity: sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==}
|
resolution: {integrity: sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==}
|
||||||
|
@ -19166,6 +19186,7 @@ packages:
|
||||||
resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
|
resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
|
||||||
dependencies:
|
dependencies:
|
||||||
punycode: 2.3.1
|
punycode: 2.3.1
|
||||||
|
dev: true
|
||||||
|
|
||||||
/urijs@1.19.11:
|
/urijs@1.19.11:
|
||||||
resolution: {integrity: sha512-HXgFDgDommxn5/bIv0cnQZsPhHDA90NPHD6+c/v21U5+Sx5hoP8+dP9IZXBU1gIfvdRfhG8cel9QNPeionfcCQ==}
|
resolution: {integrity: sha512-HXgFDgDommxn5/bIv0cnQZsPhHDA90NPHD6+c/v21U5+Sx5hoP8+dP9IZXBU1gIfvdRfhG8cel9QNPeionfcCQ==}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user