=> {
+ function WithShadcnControlProps(props: any) {
+ const styleOverrides = useShadcnStyles();
+ return ;
+ }
+ WithShadcnControlProps.displayName = `withShadcnControlProps(${
+ Component.displayName || Component.name || 'Component'
+ })`;
+ return WithShadcnControlProps;
+};
+
+/**
+ * HOC that provides shadcn style overrides to a layout component.
+ */
+export const withShadcnLayoutProps = (
+ Component: ComponentType
+) =>
+ function WithShadcnLayoutProps(props: P) {
+ const styleOverrides = useShadcnStyles();
+
+ return ;
+ };
+
+/**
+ * HOC that provides shadcn style overrides to a cell component.
+ */
+export const withShadcnCellProps =
(
+ Component: ComponentType
+) =>
+ function WithShadcnCellProps(props: P) {
+ const styleOverrides = useShadcnStyles();
+
+ return ;
+ };
diff --git a/packages/react-shadcn/test/cells/BooleanCell.test.tsx b/packages/react-shadcn/test/cells/BooleanCell.test.tsx
new file mode 100644
index 000000000..d49438f81
--- /dev/null
+++ b/packages/react-shadcn/test/cells/BooleanCell.test.tsx
@@ -0,0 +1,183 @@
+/*
+ The MIT License
+
+ Copyright (c) 2017-2025 EclipseSource Munich
+ https://github.com/eclipsesource/jsonforms
+
+ Permission is hereby granted, free of charge, to any person obtaining a copy
+ of this software and associated documentation files (the "Software"), to deal
+ in the Software without restriction, including without limitation the rights
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+ copies of the Software, and to permit persons to whom the Software is
+ furnished to do so, subject to the following conditions:
+
+ The above copyright notice and this permission notice shall be included in
+ all copies or substantial portions of the Software.
+
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+ THE SOFTWARE.
+*/
+
+import React from 'react';
+import { ControlElement } from '@jsonforms/core';
+import { JsonFormsStateProvider } from '@jsonforms/react';
+import { mount, ReactWrapper } from 'enzyme';
+import BooleanCell, { booleanCellTester } from '../../src/cells/BooleanCell';
+import { initCore, TestEmitter } from '../util';
+
+const schema = { type: 'boolean' };
+const uischema: ControlElement = {
+ type: 'Control',
+ scope: '#/properties/active',
+};
+
+describe('BooleanCell tester', () => {
+ it('should fail with undefined uischema', () => {
+ expect(booleanCellTester(undefined, undefined, undefined)).toBe(-1);
+ });
+
+ it('should fail with null uischema', () => {
+ expect(booleanCellTester(null, undefined, undefined)).toBe(-1);
+ });
+
+ it('should fail with wrong uischema type', () => {
+ expect(booleanCellTester({ type: 'Foo' }, undefined, undefined)).toBe(-1);
+ });
+
+ it('should succeed with correct uischema and schema', () => {
+ const control: ControlElement = {
+ type: 'Control',
+ scope: '#/properties/foo',
+ };
+ expect(
+ booleanCellTester(
+ control,
+ {
+ type: 'object',
+ properties: {
+ foo: { type: 'boolean' },
+ },
+ },
+ undefined
+ )
+ ).toBe(2);
+ });
+});
+
+describe('BooleanCell', () => {
+ let wrapper: ReactWrapper;
+
+ afterEach(() => wrapper.unmount());
+
+ it('should render checked when data is true', () => {
+ const core = initCore(schema, uischema, { active: true });
+ wrapper = mount(
+
+
+
+ );
+
+ const checkbox = wrapper.find('button[role="checkbox"]');
+ expect(checkbox.prop('aria-checked')).toBe(true);
+ });
+
+ it('should render unchecked when data is false', () => {
+ const core = initCore(schema, uischema, { active: false });
+ wrapper = mount(
+
+
+
+ );
+
+ const checkbox = wrapper.find('button[role="checkbox"]');
+ expect(checkbox.prop('aria-checked')).toBe(false);
+ });
+
+ it('should render unchecked when data is undefined', () => {
+ const core = initCore(schema, uischema, { active: undefined });
+ wrapper = mount(
+
+
+
+ );
+
+ const checkbox = wrapper.find('button[role="checkbox"]');
+ expect(checkbox.prop('aria-checked')).toBe(false);
+ });
+
+ it('should update to true when clicked', () => {
+ const onChangeData: any = {
+ data: undefined,
+ };
+ const core = initCore(schema, uischema, { active: false });
+ wrapper = mount(
+
+ {
+ onChangeData.data = data;
+ }}
+ />
+
+
+ );
+
+ const checkbox = wrapper.find('button[role="checkbox"]');
+ checkbox.simulate('click');
+ expect(onChangeData.data.active).toBe(true);
+ });
+
+ it('should update to false when clicked', () => {
+ const onChangeData: any = {
+ data: undefined,
+ };
+ const core = initCore(schema, uischema, { active: true });
+ wrapper = mount(
+
+ {
+ onChangeData.data = data;
+ }}
+ />
+
+
+ );
+
+ const checkbox = wrapper.find('button[role="checkbox"]');
+ checkbox.simulate('click');
+ expect(onChangeData.data.active).toBe(false);
+ });
+
+ it('should be disabled when enabled is false', () => {
+ const core = initCore(schema, uischema, { active: true });
+ wrapper = mount(
+
+
+
+ );
+
+ const checkbox = wrapper.find('button[role="checkbox"]');
+ expect(checkbox.prop('disabled')).toBe(true);
+ });
+
+ it('should be enabled by default', () => {
+ const core = initCore(schema, uischema, { active: true });
+ wrapper = mount(
+
+
+
+ );
+
+ const checkbox = wrapper.find('button[role="checkbox"]');
+ expect(checkbox.prop('disabled')).toBeFalsy();
+ });
+});
diff --git a/packages/react-shadcn/test/cells/EnumCell.test.tsx b/packages/react-shadcn/test/cells/EnumCell.test.tsx
new file mode 100644
index 000000000..f56047c4b
--- /dev/null
+++ b/packages/react-shadcn/test/cells/EnumCell.test.tsx
@@ -0,0 +1,226 @@
+/*
+ The MIT License
+
+ Copyright (c) 2017-2025 EclipseSource Munich
+ https://github.com/eclipsesource/jsonforms
+
+ Permission is hereby granted, free of charge, to any person obtaining a copy
+ of this software and associated documentation files (the "Software"), to deal
+ in the Software without restriction, including without limitation the rights
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+ copies of the Software, and to permit persons to whom the Software is
+ furnished to do so, subject to the following conditions:
+
+ The above copyright notice and this permission notice shall be included in
+ all copies or substantial portions of the Software.
+
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+ THE SOFTWARE.
+*/
+
+import React from 'react';
+import { ControlElement } from '@jsonforms/core';
+import { JsonFormsStateProvider } from '@jsonforms/react';
+import { mount, ReactWrapper } from 'enzyme';
+import EnumCell, { enumCellTester } from '../../src/cells/EnumCell';
+import { initCore, TestEmitter } from '../util';
+
+const schema = {
+ type: 'string',
+ enum: ['One', 'Two', 'Three'],
+};
+
+const uischema: ControlElement = {
+ type: 'Control',
+ scope: '#/properties/choice',
+};
+
+describe('EnumCell tester', () => {
+ it('should fail with undefined uischema', () => {
+ expect(enumCellTester(undefined, undefined, undefined)).toBe(-1);
+ });
+
+ it('should fail with null uischema', () => {
+ expect(enumCellTester(null, undefined, undefined)).toBe(-1);
+ });
+
+ it('should fail with wrong schema type', () => {
+ const control: ControlElement = {
+ type: 'Control',
+ scope: '#/properties/foo',
+ };
+ expect(
+ enumCellTester(
+ control,
+ {
+ type: 'object',
+ properties: {
+ foo: { type: 'boolean' },
+ },
+ },
+ undefined
+ )
+ ).toBe(-1);
+ });
+
+ it('should succeed with enum schema', () => {
+ const control: ControlElement = {
+ type: 'Control',
+ scope: '#/properties/foo',
+ };
+ expect(
+ enumCellTester(
+ control,
+ {
+ type: 'object',
+ properties: {
+ foo: {
+ type: 'string',
+ enum: ['a', 'b', 'c'],
+ },
+ },
+ },
+ undefined
+ )
+ ).toBe(2);
+ });
+});
+
+describe('EnumCell', () => {
+ let wrapper: ReactWrapper;
+
+ afterEach(() => wrapper.unmount());
+
+ it('should render select with enum options', () => {
+ const core = initCore(schema, uischema, { choice: 'One' });
+ wrapper = mount(
+
+
+
+ );
+
+ const select = wrapper.find('select');
+ expect(select.exists()).toBe(true);
+
+ const options = wrapper.find('option');
+ // Should have 4 options: empty + 3 enum values
+ expect(options.length).toBe(4);
+ });
+
+ it('should render with selected value', () => {
+ const core = initCore(schema, uischema, { choice: 'Two' });
+ wrapper = mount(
+
+
+
+ );
+
+ const select = wrapper.find('select').getDOMNode() as HTMLSelectElement;
+ expect(select.value).toBe('Two');
+ });
+
+ it('should render with empty value when data is undefined', () => {
+ const core = initCore(schema, uischema, { choice: undefined });
+ wrapper = mount(
+
+
+
+ );
+
+ const select = wrapper.find('select').getDOMNode() as HTMLSelectElement;
+ expect(select.value).toBe('');
+ });
+
+ it('should have a none option', () => {
+ const core = initCore(schema, uischema, { choice: undefined });
+ wrapper = mount(
+
+
+
+ );
+
+ const options = wrapper.find('option');
+ const firstOption = options.at(0);
+ expect(firstOption.prop('value')).toBe('');
+ });
+
+ it('should update via change event', () => {
+ const onChangeData: any = {
+ data: undefined,
+ };
+ const core = initCore(schema, uischema, { choice: 'One' });
+ wrapper = mount(
+
+ {
+ onChangeData.data = data;
+ }}
+ />
+
+
+ );
+
+ const select = wrapper.find('select');
+ select.simulate('change', {
+ target: { value: 'Three', selectedIndex: 3 },
+ });
+ expect(onChangeData.data.choice).toBe('Three');
+ });
+
+ it('should update to undefined when none option is selected', () => {
+ const onChangeData: any = {
+ data: undefined,
+ };
+ const core = initCore(schema, uischema, { choice: 'Two' });
+ wrapper = mount(
+
+ {
+ onChangeData.data = data;
+ }}
+ />
+
+
+ );
+
+ const select = wrapper.find('select');
+ select.simulate('change', {
+ target: { value: '', selectedIndex: 0 },
+ });
+ expect(onChangeData.data.choice).toBeUndefined();
+ });
+
+ it('should be disabled when enabled is false', () => {
+ const core = initCore(schema, uischema, { choice: 'One' });
+ wrapper = mount(
+
+
+
+ );
+
+ const select = wrapper.find('select').getDOMNode() as HTMLSelectElement;
+ expect(select.disabled).toBe(true);
+ });
+
+ it('should be enabled by default', () => {
+ const core = initCore(schema, uischema, { choice: 'One' });
+ wrapper = mount(
+
+
+
+ );
+
+ const select = wrapper.find('select').getDOMNode() as HTMLSelectElement;
+ expect(select.disabled).toBe(false);
+ });
+});
diff --git a/packages/react-shadcn/test/cells/NumberCell.test.tsx b/packages/react-shadcn/test/cells/NumberCell.test.tsx
new file mode 100644
index 000000000..baa6b9de7
--- /dev/null
+++ b/packages/react-shadcn/test/cells/NumberCell.test.tsx
@@ -0,0 +1,244 @@
+/*
+ The MIT License
+
+ Copyright (c) 2017-2025 EclipseSource Munich
+ https://github.com/eclipsesource/jsonforms
+
+ Permission is hereby granted, free of charge, to any person obtaining a copy
+ of this software and associated documentation files (the "Software"), to deal
+ in the Software without restriction, including without limitation the rights
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+ copies of the Software, and to permit persons to whom the Software is
+ furnished to do so, subject to the following conditions:
+
+ The above copyright notice and this permission notice shall be included in
+ all copies or substantial portions of the Software.
+
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+ THE SOFTWARE.
+*/
+
+import React from 'react';
+import { ControlElement } from '@jsonforms/core';
+import { JsonFormsStateProvider } from '@jsonforms/react';
+import { mount, ReactWrapper } from 'enzyme';
+import NumberCell, { numberCellTester } from '../../src/cells/NumberCell';
+import { initCore, TestEmitter } from '../util';
+
+const schema = { type: 'number' };
+const uischema: ControlElement = {
+ type: 'Control',
+ scope: '#/properties/age',
+};
+
+describe('NumberCell tester', () => {
+ it('should fail with undefined uischema', () => {
+ expect(numberCellTester(undefined, undefined, undefined)).toBe(-1);
+ });
+
+ it('should fail with null uischema', () => {
+ expect(numberCellTester(null, undefined, undefined)).toBe(-1);
+ });
+
+ it('should fail with wrong schema type', () => {
+ const control: ControlElement = {
+ type: 'Control',
+ scope: '#/properties/foo',
+ };
+ expect(
+ numberCellTester(
+ control,
+ {
+ type: 'object',
+ properties: {
+ foo: { type: 'string' },
+ },
+ },
+ undefined
+ )
+ ).toBe(-1);
+ });
+
+ it('should succeed with correct uischema and schema', () => {
+ const control: ControlElement = {
+ type: 'Control',
+ scope: '#/properties/foo',
+ };
+ expect(
+ numberCellTester(
+ control,
+ {
+ type: 'object',
+ properties: {
+ foo: { type: 'number' },
+ },
+ },
+ undefined
+ )
+ ).toBe(2);
+ });
+});
+
+describe('NumberCell', () => {
+ let wrapper: ReactWrapper;
+
+ afterEach(() => wrapper.unmount());
+
+ it('should render with number data', () => {
+ const core = initCore(schema, uischema, { age: 25 });
+ wrapper = mount(
+
+
+
+ );
+
+ const input = wrapper.find('input').getDOMNode() as HTMLInputElement;
+ expect(input.value).toBe('25');
+ expect(input.type).toBe('number');
+ });
+
+ it('should render with empty string when data is undefined', () => {
+ const core = initCore(schema, uischema, { age: undefined });
+ wrapper = mount(
+
+
+
+ );
+
+ const input = wrapper.find('input').getDOMNode() as HTMLInputElement;
+ expect(input.value).toBe('');
+ });
+
+ it('should render with decimal numbers', () => {
+ const core = initCore(schema, uischema, { age: 25.5 });
+ wrapper = mount(
+
+
+
+ );
+
+ const input = wrapper.find('input').getDOMNode() as HTMLInputElement;
+ expect(input.value).toBe('25.5');
+ });
+
+ it('should update via input event', () => {
+ const onChangeData: any = {
+ data: undefined,
+ };
+ const core = initCore(schema, uischema, { age: 25 });
+ wrapper = mount(
+
+ {
+ onChangeData.data = data;
+ }}
+ />
+
+
+ );
+
+ const input = wrapper.find('input');
+ input.simulate('change', { target: { value: '30' } });
+ expect(onChangeData.data.age).toBe(30);
+ });
+
+ it('should handle decimal input', () => {
+ const onChangeData: any = {
+ data: undefined,
+ };
+ const core = initCore(schema, uischema, { age: 25 });
+ wrapper = mount(
+
+ {
+ onChangeData.data = data;
+ }}
+ />
+
+
+ );
+
+ const input = wrapper.find('input');
+ input.simulate('change', { target: { value: '25.5' } });
+ expect(onChangeData.data.age).toBe(25.5);
+ });
+
+ it('should update with undefined when input is empty', () => {
+ const onChangeData: any = {
+ data: undefined,
+ };
+ const core = initCore(schema, uischema, { age: 25 });
+ wrapper = mount(
+
+ {
+ onChangeData.data = data;
+ }}
+ />
+
+
+ );
+
+ const input = wrapper.find('input');
+ input.simulate('change', { target: { value: '' } });
+ expect(onChangeData.data.age).toBeUndefined();
+ });
+
+ it('should be disabled when enabled is false', () => {
+ const core = initCore(schema, uischema, { age: 25 });
+ wrapper = mount(
+
+
+
+ );
+
+ const input = wrapper.find('input').getDOMNode() as HTMLInputElement;
+ expect(input.disabled).toBe(true);
+ });
+
+ it('should be enabled by default', () => {
+ const core = initCore(schema, uischema, { age: 25 });
+ wrapper = mount(
+
+
+
+ );
+
+ const input = wrapper.find('input').getDOMNode() as HTMLInputElement;
+ expect(input.disabled).toBe(false);
+ });
+
+ it('should handle negative numbers', () => {
+ const core = initCore(schema, uischema, { age: -10 });
+ wrapper = mount(
+
+
+
+ );
+
+ const input = wrapper.find('input').getDOMNode() as HTMLInputElement;
+ expect(input.value).toBe('-10');
+ });
+
+ it('should have step attribute', () => {
+ const core = initCore(schema, uischema, { age: 25 });
+ wrapper = mount(
+
+
+
+ );
+
+ const input = wrapper.find('input').getDOMNode() as HTMLInputElement;
+ expect(input.step).toBe('0.1');
+ });
+});
diff --git a/packages/react-shadcn/test/cells/TextCell.test.tsx b/packages/react-shadcn/test/cells/TextCell.test.tsx
new file mode 100644
index 000000000..d0eaac9c6
--- /dev/null
+++ b/packages/react-shadcn/test/cells/TextCell.test.tsx
@@ -0,0 +1,308 @@
+/*
+ The MIT License
+
+ Copyright (c) 2017-2025 EclipseSource Munich
+ https://github.com/eclipsesource/jsonforms
+
+ Permission is hereby granted, free of charge, to any person obtaining a copy
+ of this software and associated documentation files (the "Software"), to deal
+ in the Software without restriction, including without limitation the rights
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+ copies of the Software, and to permit persons to whom the Software is
+ furnished to do so, subject to the following conditions:
+
+ The above copyright notice and this permission notice shall be included in
+ all copies or substantial portions of the Software.
+
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+ THE SOFTWARE.
+*/
+
+import React from 'react';
+import { ControlElement } from '@jsonforms/core';
+import { JsonFormsStateProvider } from '@jsonforms/react';
+import { mount, ReactWrapper } from 'enzyme';
+import TextCell, { textCellTester } from '../../src/cells/TextCell';
+import { initCore, TestEmitter } from '../util';
+
+const data = { name: 'Foo' };
+const maxLengthSchema = {
+ type: 'string',
+ maxLength: 5,
+};
+const schema = { type: 'string' };
+
+const uischema: ControlElement = {
+ type: 'Control',
+ scope: '#/properties/name',
+};
+
+describe('TextCell tester', () => {
+ it('should fail with undefined uischema', () => {
+ expect(textCellTester(undefined, undefined, undefined)).toBe(-1);
+ });
+
+ it('should fail with null uischema', () => {
+ expect(textCellTester(null, undefined, undefined)).toBe(-1);
+ });
+
+ it('should fail with wrong uischema type', () => {
+ expect(textCellTester({ type: 'Foo' }, undefined, undefined)).toBe(-1);
+ });
+
+ it('should fail with missing schema', () => {
+ expect(textCellTester({ type: 'Control' }, undefined, undefined)).toBe(-1);
+ });
+
+ it('should succeed with correct uischema and schema', () => {
+ const control: ControlElement = {
+ type: 'Control',
+ scope: '#/properties/foo',
+ };
+ expect(
+ textCellTester(
+ control,
+ {
+ type: 'object',
+ properties: {
+ foo: { type: 'string' },
+ },
+ },
+ undefined
+ )
+ ).toBe(1);
+ });
+});
+
+describe('TextCell', () => {
+ let wrapper: ReactWrapper;
+
+ afterEach(() => wrapper.unmount());
+
+ it('should render with data', () => {
+ const core = initCore(schema, uischema, { name: 'Foo' });
+ wrapper = mount(
+
+
+
+ );
+
+ const input = wrapper.find('input').getDOMNode() as HTMLInputElement;
+ expect(input.value).toBe('Foo');
+ });
+
+ it('should render with empty string when data is undefined', () => {
+ const core = initCore(schema, uischema, { name: undefined });
+ wrapper = mount(
+
+
+
+ );
+
+ const input = wrapper.find('input').getDOMNode() as HTMLInputElement;
+ expect(input.value).toBe('');
+ });
+
+ it('should render with empty string when data is null', () => {
+ const core = initCore(schema, uischema, { name: null });
+ wrapper = mount(
+
+
+
+ );
+
+ const input = wrapper.find('input').getDOMNode() as HTMLInputElement;
+ expect(input.value).toBe('');
+ });
+
+ it('should update via input event', () => {
+ const onChangeData: any = {
+ data: undefined,
+ };
+ const core = initCore(schema, uischema, data);
+ wrapper = mount(
+
+ {
+ onChangeData.data = data;
+ }}
+ />
+
+
+ );
+
+ const input = wrapper.find('input');
+ input.simulate('change', { target: { value: 'Bar' } });
+ expect(onChangeData.data.name).toBe('Bar');
+ });
+
+ it('should update with undefined when input is empty', () => {
+ const onChangeData: any = {
+ data: undefined,
+ };
+ const core = initCore(schema, uischema, data);
+ wrapper = mount(
+
+ {
+ onChangeData.data = data;
+ }}
+ />
+
+
+ );
+
+ const input = wrapper.find('input');
+ input.simulate('change', { target: { value: '' } });
+ expect(onChangeData.data.name).toBeUndefined();
+ });
+
+ it('should be disabled when enabled is false', () => {
+ const core = initCore(schema, uischema, data);
+ wrapper = mount(
+
+
+
+ );
+
+ const input = wrapper.find('input').getDOMNode() as HTMLInputElement;
+ expect(input.disabled).toBe(true);
+ });
+
+ it('should be enabled by default', () => {
+ const core = initCore(schema, uischema, data);
+ wrapper = mount(
+
+
+
+ );
+
+ const input = wrapper.find('input').getDOMNode() as HTMLInputElement;
+ expect(input.disabled).toBe(false);
+ });
+
+ it('should have autofocus when focus option is true', () => {
+ const control: ControlElement = {
+ type: 'Control',
+ scope: '#/properties/name',
+ options: { focus: true },
+ };
+ const core = initCore(schema, control, data);
+ wrapper = mount(
+
+
+
+ );
+
+ const input = wrapper.find('input');
+ expect(input.prop('autoFocus')).toBe(true);
+ });
+
+ it('should not have autofocus when focus option is false', () => {
+ const control: ControlElement = {
+ type: 'Control',
+ scope: '#/properties/name',
+ options: { focus: false },
+ };
+ const core = initCore(schema, control, data);
+ wrapper = mount(
+
+
+
+ );
+
+ const input = wrapper.find('input');
+ expect(input.prop('autoFocus')).toBeFalsy();
+ });
+
+ it('should accept placeholder option', () => {
+ const control: ControlElement = {
+ type: 'Control',
+ scope: '#/properties/name',
+ options: { placeholder: 'Enter your name' },
+ };
+ const core = initCore(schema, control, data);
+ wrapper = mount(
+
+
+
+ );
+
+ const input = wrapper.find('input').getDOMNode() as HTMLInputElement;
+ expect(input.placeholder).toBe('Enter your name');
+ });
+
+ it('should use password type when format option is password', () => {
+ const control: ControlElement = {
+ type: 'Control',
+ scope: '#/properties/name',
+ options: { format: 'password' },
+ };
+ const core = initCore(schema, control, data);
+ wrapper = mount(
+
+
+
+ );
+
+ const input = wrapper.find('input').getDOMNode() as HTMLInputElement;
+ expect(input.type).toBe('password');
+ });
+
+ it('should use text type by default', () => {
+ const core = initCore(schema, uischema, data);
+ wrapper = mount(
+
+
+
+ );
+
+ const input = wrapper.find('input').getDOMNode() as HTMLInputElement;
+ expect(input.type).toBe('text');
+ });
+
+ it('should apply maxLength when restrict option is true', () => {
+ const control: ControlElement = {
+ type: 'Control',
+ scope: '#/properties/name',
+ options: { restrict: true },
+ };
+ const core = initCore(maxLengthSchema, control, data);
+ wrapper = mount(
+
+
+
+ );
+
+ const input = wrapper.find('input').getDOMNode() as HTMLInputElement;
+ expect(input.maxLength).toBe(5);
+ });
+
+ it('should not apply maxLength when restrict option is false', () => {
+ const control: ControlElement = {
+ type: 'Control',
+ scope: '#/properties/name',
+ options: { restrict: false },
+ };
+ const core = initCore(maxLengthSchema, control, data);
+ wrapper = mount(
+
+
+
+ );
+
+ const input = wrapper.find('input').getDOMNode() as HTMLInputElement;
+ // When no maxLength is set, it defaults to 524288
+ expect(input.maxLength).toBe(524288);
+ });
+});
diff --git a/packages/react-shadcn/test/layouts/VerticalLayout.test.tsx b/packages/react-shadcn/test/layouts/VerticalLayout.test.tsx
new file mode 100644
index 000000000..2d68f1292
--- /dev/null
+++ b/packages/react-shadcn/test/layouts/VerticalLayout.test.tsx
@@ -0,0 +1,210 @@
+/*
+ The MIT License
+
+ Copyright (c) 2017-2025 EclipseSource Munich
+ https://github.com/eclipsesource/jsonforms
+
+ Permission is hereby granted, free of charge, to any person obtaining a copy
+ of this software and associated documentation files (the "Software"), to deal
+ in the Software without restriction, including without limitation the rights
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+ copies of the Software, and to permit persons to whom the Software is
+ furnished to do so, subject to the following conditions:
+
+ The above copyright notice and this permission notice shall be included in
+ all copies or substantial portions of the Software.
+
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+ THE SOFTWARE.
+*/
+
+import React from 'react';
+import {
+ VerticalLayout as VerticalLayoutSchema,
+ ControlElement,
+} from '@jsonforms/core';
+import { JsonFormsStateProvider } from '@jsonforms/react';
+import { mount, ReactWrapper } from 'enzyme';
+import {
+ VerticalLayout,
+ verticalLayoutTester,
+} from '../../src/layouts/VerticalLayout';
+import { initCore } from '../util';
+
+const fixture = {
+ data: { foo: 'test', bar: 42 },
+ schema: {
+ type: 'object',
+ properties: {
+ foo: { type: 'string' },
+ bar: { type: 'number' },
+ },
+ },
+};
+
+describe('VerticalLayout tester', () => {
+ it('should fail with undefined uischema', () => {
+ expect(verticalLayoutTester(undefined, undefined, undefined)).toBe(-1);
+ });
+
+ it('should fail with null uischema', () => {
+ expect(verticalLayoutTester(null, undefined, undefined)).toBe(-1);
+ });
+
+ it('should fail with wrong uischema type', () => {
+ expect(verticalLayoutTester({ type: 'Foo' }, undefined, undefined)).toBe(
+ -1
+ );
+ });
+
+ it('should succeed with VerticalLayout uischema', () => {
+ const uischema: VerticalLayoutSchema = {
+ type: 'VerticalLayout',
+ elements: [],
+ };
+ expect(verticalLayoutTester(uischema, undefined, undefined)).toBe(1);
+ });
+});
+
+describe('VerticalLayout', () => {
+ let wrapper: ReactWrapper;
+
+ afterEach(() => {
+ if (wrapper) {
+ wrapper.unmount();
+ }
+ });
+
+ it('should render', () => {
+ const uischema: VerticalLayoutSchema = {
+ type: 'VerticalLayout',
+ elements: [],
+ };
+ const core = initCore(fixture.schema, uischema, fixture.data);
+ wrapper = mount(
+
+
+
+ );
+
+ expect(wrapper.find('div').exists()).toBe(true);
+ });
+
+ it('should render children', () => {
+ const uischema: VerticalLayoutSchema = {
+ type: 'VerticalLayout',
+ elements: [
+ {
+ type: 'Control',
+ scope: '#/properties/foo',
+ } as ControlElement,
+ {
+ type: 'Control',
+ scope: '#/properties/bar',
+ } as ControlElement,
+ ],
+ };
+ const core = initCore(fixture.schema, uischema, fixture.data);
+ wrapper = mount(
+
+
+
+ );
+
+ // Should have a div container
+ expect(wrapper.find('div').first().exists()).toBe(true);
+ // Should have 2 children elements in the layout
+ const container = wrapper.find('div').first();
+ expect(container.children().length).toBe(2);
+ });
+
+ it('should not render when visible is false', () => {
+ const uischema: VerticalLayoutSchema = {
+ type: 'VerticalLayout',
+ elements: [],
+ };
+ const core = initCore(fixture.schema, uischema, fixture.data);
+ wrapper = mount(
+
+
+
+ );
+
+ expect(wrapper.find('div').exists()).toBe(false);
+ });
+
+ it('should apply vertical layout classes', () => {
+ const uischema: VerticalLayoutSchema = {
+ type: 'VerticalLayout',
+ elements: [],
+ };
+ const core = initCore(fixture.schema, uischema, fixture.data);
+ wrapper = mount(
+
+
+
+ );
+
+ const div = wrapper.find('div').first();
+ const className = div.prop('className');
+ expect(className).toContain('flex');
+ expect(className).toContain('flex-col');
+ expect(className).toContain('space-y-4');
+ });
+
+ it('should handle empty elements array', () => {
+ const uischema: VerticalLayoutSchema = {
+ type: 'VerticalLayout',
+ elements: [],
+ };
+ const core = initCore(fixture.schema, uischema, fixture.data);
+ wrapper = mount(
+
+
+
+ );
+
+ expect(wrapper.find('div').first().exists()).toBe(true);
+ expect(wrapper.find('JsonFormsDispatch').length).toBe(0);
+ });
+});
diff --git a/packages/react-shadcn/test/renderers/InputControl.test.tsx b/packages/react-shadcn/test/renderers/InputControl.test.tsx
new file mode 100644
index 000000000..83c34e340
--- /dev/null
+++ b/packages/react-shadcn/test/renderers/InputControl.test.tsx
@@ -0,0 +1,207 @@
+/*
+ The MIT License
+
+ Copyright (c) 2017-2025 EclipseSource Munich
+ https://github.com/eclipsesource/jsonforms
+
+ Permission is hereby granted, free of charge, to any person obtaining a copy
+ of this software and associated documentation files (the "Software"), to deal
+ in the Software without restriction, including without limitation the rights
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+ copies of the Software, and to permit persons to whom the Software is
+ furnished to do so, subject to the following conditions:
+
+ The above copyright notice and this permission notice shall be included in
+ all copies or substantial portions of the Software.
+
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+ THE SOFTWARE.
+*/
+
+import React from 'react';
+import { ControlElement } from '@jsonforms/core';
+import { JsonFormsStateProvider, JsonFormsDispatch } from '@jsonforms/react';
+import { mount, ReactWrapper } from 'enzyme';
+import { inputControlTester } from '../../src/controls/InputControl';
+import { shadcnRenderers, shadcnCells } from '../../src';
+import { initCore } from '../util';
+
+const fixture = {
+ data: { foo: true },
+ schema: {
+ type: 'object',
+ properties: {
+ foo: {
+ type: 'boolean',
+ },
+ },
+ },
+ uischema: {
+ type: 'Control',
+ scope: '#/properties/foo',
+ } as ControlElement,
+};
+
+describe('InputControl tester', () => {
+ it('should fail with undefined uischema', () => {
+ expect(inputControlTester(undefined, undefined, undefined)).toBe(-1);
+ });
+
+ it('should fail with null uischema', () => {
+ expect(inputControlTester(null, undefined, undefined)).toBe(-1);
+ });
+
+ it('should fail with wrong uischema type', () => {
+ expect(inputControlTester({ type: 'Foo' }, undefined, undefined)).toBe(-1);
+ });
+
+ it('should succeed with control uischema', () => {
+ const control: ControlElement = {
+ type: 'Control',
+ scope: '#/properties/foo',
+ };
+ expect(inputControlTester(control, undefined, undefined)).toBe(1);
+ });
+});
+
+describe('InputControl', () => {
+ let wrapper: ReactWrapper;
+
+ afterEach(() => {
+ if (wrapper) {
+ wrapper.unmount();
+ }
+ });
+
+ it('should render', () => {
+ const core = initCore(fixture.schema, fixture.uischema, fixture.data);
+ wrapper = mount(
+
+
+
+ );
+
+ expect(wrapper.find('Field').exists()).toBe(true);
+ });
+
+ it('should render label', () => {
+ const schema = {
+ type: 'object',
+ properties: {
+ foo: {
+ type: 'boolean',
+ title: 'Test Label',
+ },
+ },
+ };
+ const core = initCore(schema, fixture.uischema, fixture.data);
+ wrapper = mount(
+
+
+
+ );
+
+ const label = wrapper.find('label');
+ expect(label.exists()).toBe(true);
+ });
+
+ it('should render without label when label is false', () => {
+ const uischema: ControlElement = {
+ type: 'Control',
+ scope: '#/properties/foo',
+ label: false,
+ };
+ const core = initCore(fixture.schema, uischema, fixture.data);
+ wrapper = mount(
+
+
+
+ );
+
+ const label = wrapper.find('label');
+ expect(label.exists()).toBe(false);
+ });
+
+ it('should show required indicator when required', () => {
+ const schema = {
+ type: 'object',
+ properties: {
+ foo: { type: 'string' },
+ },
+ required: ['foo'],
+ };
+ const core = initCore(schema, fixture.uischema, {});
+ wrapper = mount(
+
+
+
+ );
+
+ const label = wrapper.find('label');
+ expect(label.exists()).toBe(true);
+ });
+
+ it('should be visible by default', () => {
+ const core = initCore(fixture.schema, fixture.uischema, fixture.data);
+ wrapper = mount(
+
+
+
+ );
+
+ expect(wrapper.find('Field').exists()).toBe(true);
+ });
+
+ it('should show description', () => {
+ const schema = {
+ type: 'object',
+ properties: {
+ foo: {
+ type: 'boolean',
+ description: 'This is a description',
+ },
+ },
+ };
+ const core = initCore(schema, fixture.uischema, {});
+ wrapper = mount(
+
+
+
+ );
+
+ const description = wrapper.find('FieldDescription');
+ expect(description.exists()).toBe(true);
+ expect(description.text()).toBe('This is a description');
+ });
+
+ it('should show validation errors', () => {
+ const core = initCore(fixture.schema, fixture.uischema, { foo: 'invalid' });
+ wrapper = mount(
+
+
+
+ );
+
+ const error = wrapper.find('FieldError');
+ expect(error.exists()).toBe(true);
+ });
+});
diff --git a/packages/react-shadcn/test/setup.ts b/packages/react-shadcn/test/setup.ts
new file mode 100644
index 000000000..ad312ed63
--- /dev/null
+++ b/packages/react-shadcn/test/setup.ts
@@ -0,0 +1,29 @@
+/*
+ The MIT License
+
+ Copyright (c) 2017-2025 EclipseSource Munich
+ https://github.com/eclipsesource/jsonforms
+
+ Permission is hereby granted, free of charge, to any person obtaining a copy
+ of this software and associated documentation files (the "Software"), to deal
+ in the Software without restriction, including without limitation the rights
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+ copies of the Software, and to permit persons to whom the Software is
+ furnished to do so, subject to the following conditions:
+
+ The above copyright notice and this permission notice shall be included in
+ all copies or substantial portions of the Software.
+
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+ THE SOFTWARE.
+*/
+
+import Enzyme from 'enzyme';
+import Adapter from '@wojtekmaj/enzyme-adapter-react-17';
+
+Enzyme.configure({ adapter: new Adapter() });
diff --git a/packages/react-shadcn/test/util.ts b/packages/react-shadcn/test/util.ts
new file mode 100644
index 000000000..41cf121b0
--- /dev/null
+++ b/packages/react-shadcn/test/util.ts
@@ -0,0 +1,45 @@
+/*
+ The MIT License
+
+ Copyright (c) 2017-2025 EclipseSource Munich
+ https://github.com/eclipsesource/jsonforms
+
+ Permission is hereby granted, free of charge, to any person obtaining a copy
+ of this software and associated documentation files (the "Software"), to deal
+ in the Software without restriction, including without limitation the rights
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+ copies of the Software, and to permit persons to whom the Software is
+ furnished to do so, subject to the following conditions:
+
+ The above copyright notice and this permission notice shall be included in
+ all copies or substantial portions of the Software.
+
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+ THE SOFTWARE.
+*/
+
+import { createAjv, JsonSchema, UISchemaElement } from '@jsonforms/core';
+import { JsonFormsReactProps, useJsonForms } from '@jsonforms/react';
+import React from 'react';
+
+export const initCore = (
+ schema: JsonSchema,
+ uischema: UISchemaElement,
+ data?: any
+) => {
+ return { schema, uischema, data, ajv: createAjv() };
+};
+
+export const TestEmitter: React.FC = ({ onChange }) => {
+ const ctx = useJsonForms();
+ const { data, errors } = ctx.core;
+ React.useEffect(() => {
+ onChange({ data, errors });
+ }, [data, errors]);
+ return null;
+};
diff --git a/packages/react-shadcn/tsconfig.json b/packages/react-shadcn/tsconfig.json
new file mode 100644
index 000000000..52c3b1d77
--- /dev/null
+++ b/packages/react-shadcn/tsconfig.json
@@ -0,0 +1,13 @@
+{
+ "extends": "../../tsconfig.base",
+ "compilerOptions": {
+ "outDir": "lib",
+ "sourceMap": true,
+ "baseUrl": ".",
+ "paths": {
+ "@/*": ["./src/*"]
+ }
+ },
+ "exclude": ["node_modules"],
+ "files": ["./src/index.ts"]
+}
diff --git a/packages/react-shadcn/tsconfig.test.json b/packages/react-shadcn/tsconfig.test.json
new file mode 100644
index 000000000..c3c877d02
--- /dev/null
+++ b/packages/react-shadcn/tsconfig.test.json
@@ -0,0 +1,15 @@
+{
+ "extends": "../../tsconfig.base",
+ "compilerOptions": {
+ "outDir": "lib",
+ "sourceMap": true,
+ "types": ["jest", "node"],
+ "esModuleInterop": true,
+ "baseUrl": ".",
+ "paths": {
+ "@/*": ["./src/*"]
+ }
+ },
+ "include": ["src/**/*", "test/**/*"],
+ "exclude": ["node_modules"]
+}
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 34feb768d..16d9f2c48 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -4,16 +4,21 @@ settings:
autoInstallPeers: true
excludeLinksFromLockfile: false
+overrides:
+ '@types/react': ^17.0.80
+ '@types/react-dom': ^17.0.25
+ baseline-browser-mapping: ^2.9.18
+
importers:
.:
devDependencies:
'@babel/plugin-proposal-nullish-coalescing-operator':
specifier: ^7.16.5
- version: 7.18.6(@babel/core@7.26.10)
+ version: 7.18.6(@babel/core@7.28.6)
'@babel/plugin-proposal-optional-chaining':
specifier: ^7.16.5
- version: 7.21.0(@babel/core@7.26.10)
+ version: 7.21.0(@babel/core@7.28.6)
'@istanbuljs/nyc-config-typescript':
specifier: ^1.0.2
version: 1.0.2(nyc@15.1.0)
@@ -28,7 +33,7 @@ importers:
version: 2.1.1(ajv@8.13.0)
babel-loader:
specifier: ^8.0.6
- version: 8.3.0(@babel/core@7.26.10)(webpack@5.91.0)
+ version: 8.3.0(@babel/core@7.28.6)(webpack@5.91.0)
core-js:
specifier: ^3.9.1
version: 3.37.1
@@ -49,7 +54,7 @@ importers:
version: 3.3.0
lerna:
specifier: ^9.0.1
- version: 9.0.1(@types/node@22.13.8)(babel-plugin-macros@3.1.0)
+ version: 9.0.1(@types/node@24.10.9)(babel-plugin-macros@3.1.0)
nan:
specifier: ^2.14.2
version: 2.19.0
@@ -70,7 +75,7 @@ importers:
version: 9.5.1(typescript@5.5.4)(webpack@5.91.0)
ts-node:
specifier: ^10.4.0
- version: 10.9.2(@types/node@22.13.8)(typescript@5.5.4)
+ version: 10.9.2(@types/node@24.10.9)(typescript@5.5.4)
tslib:
specifier: ^2.5.0
version: 2.6.2
@@ -92,13 +97,13 @@ importers:
devDependencies:
'@angular-eslint/eslint-plugin':
specifier: ^19.0.0
- version: 19.8.1(@typescript-eslint/utils@7.18.0(eslint@8.57.0)(typescript@5.5.4))(eslint@8.57.0)(typescript@5.5.4)
+ version: 19.8.1(@typescript-eslint/utils@8.53.1(eslint@8.57.0)(typescript@5.5.4))(eslint@8.57.0)(typescript@5.5.4)
'@angular-eslint/eslint-plugin-template':
specifier: ^19.0.0
- version: 19.8.1(@angular-eslint/template-parser@19.8.1(eslint@8.57.0)(typescript@5.5.4))(@typescript-eslint/types@7.18.0)(@typescript-eslint/utils@7.18.0(eslint@8.57.0)(typescript@5.5.4))(eslint@8.57.0)(typescript@5.5.4)
+ version: 19.8.1(@angular-eslint/template-parser@19.8.1(eslint@8.57.0)(typescript@5.5.4))(@typescript-eslint/types@8.53.1)(@typescript-eslint/utils@8.53.1(eslint@8.57.0)(typescript@5.5.4))(eslint@8.57.0)(typescript@5.5.4)
'@angular-eslint/schematics':
specifier: ^19.0.0
- version: 19.8.1(@angular-eslint/template-parser@19.8.1(eslint@8.57.0)(typescript@5.5.4))(@typescript-eslint/types@7.18.0)(@typescript-eslint/utils@7.18.0(eslint@8.57.0)(typescript@5.5.4))(chokidar@4.0.1)(eslint@8.57.0)(typescript@5.5.4)
+ version: 19.8.1(@angular-eslint/template-parser@19.8.1(eslint@8.57.0)(typescript@5.5.4))(@typescript-eslint/types@8.53.1)(@typescript-eslint/utils@8.53.1(eslint@8.57.0)(typescript@5.5.4))(chokidar@4.0.1)(eslint@8.57.0)(typescript@5.5.4)
'@angular-eslint/template-parser':
specifier: ^19.0.0
version: 19.8.1(eslint@8.57.0)(typescript@5.5.4)
@@ -143,7 +148,7 @@ importers:
version: 4.2.1(eslint-config-prettier@8.10.0(eslint@8.57.0))(eslint@8.57.0)(prettier@2.8.8)
ng-packagr:
specifier: ^19.0.0
- version: 19.2.2(@angular/compiler-cli@19.2.15(@angular/compiler@19.2.15)(typescript@5.5.4))(tslib@2.6.2)(typescript@5.5.4)
+ version: 19.2.2(@angular/compiler-cli@19.2.15(@angular/compiler@19.2.15)(typescript@5.5.4))(tailwindcss@4.1.18)(tslib@2.6.2)(typescript@5.5.4)
nyc:
specifier: ^15.1.0
version: 15.1.0
@@ -180,19 +185,19 @@ importers:
devDependencies:
'@angular-devkit/build-angular':
specifier: ^19.0.0
- version: 19.2.17(@angular/compiler-cli@19.2.15(@angular/compiler@19.2.15)(typescript@5.5.4))(@angular/compiler@19.2.15)(@types/node@22.13.8)(chokidar@4.0.1)(html-webpack-plugin@5.6.0(webpack@5.91.0))(jest-environment-jsdom@29.7.0)(jest@29.7.0(@types/node@22.13.8)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.5.4)))(jiti@1.21.0)(karma@6.4.3)(ng-packagr@19.2.2(@angular/compiler-cli@19.2.15(@angular/compiler@19.2.15)(typescript@5.5.4))(tslib@2.6.2)(typescript@5.5.4))(protractor@7.0.0)(stylus@0.57.0)(typescript@5.5.4)(vite@6.3.6(@types/node@22.13.8)(jiti@1.21.0)(less@4.2.2)(sass@1.85.0)(stylus@0.57.0)(terser@5.39.0)(yaml@2.8.1))(yaml@2.8.1)
+ version: 19.2.17(@angular/compiler-cli@19.2.15(@angular/compiler@19.2.15)(typescript@5.5.4))(@angular/compiler@19.2.15)(@types/node@22.13.8)(chokidar@4.0.1)(html-webpack-plugin@5.6.0(webpack@5.91.0))(jest-environment-jsdom@29.7.0)(jest@29.7.0(@types/node@22.13.8)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@10.9.2(@types/node@24.10.9)(typescript@5.5.4)))(jiti@2.6.1)(karma@6.4.3)(lightningcss@1.30.2)(ng-packagr@19.2.2(@angular/compiler-cli@19.2.15(@angular/compiler@19.2.15)(typescript@5.5.4))(tailwindcss@4.1.18)(tslib@2.6.2)(typescript@5.5.4))(protractor@7.0.0)(stylus@0.57.0)(tailwindcss@4.1.18)(typescript@5.5.4)(vite@7.3.1(@types/node@22.13.8)(jiti@2.6.1)(less@4.2.2)(lightningcss@1.30.2)(sass@1.85.0)(stylus@0.57.0)(terser@5.39.0)(yaml@2.8.1))(yaml@2.8.1)
'@angular-devkit/core':
specifier: ^19.0.0
version: 19.2.17(chokidar@4.0.1)
'@angular-eslint/eslint-plugin':
specifier: ^19.0.0
- version: 19.8.1(@typescript-eslint/utils@7.18.0(eslint@8.57.0)(typescript@5.5.4))(eslint@8.57.0)(typescript@5.5.4)
+ version: 19.8.1(@typescript-eslint/utils@8.53.1(eslint@8.57.0)(typescript@5.5.4))(eslint@8.57.0)(typescript@5.5.4)
'@angular-eslint/eslint-plugin-template':
specifier: ^19.0.0
- version: 19.8.1(@angular-eslint/template-parser@19.8.1(eslint@8.57.0)(typescript@5.5.4))(@typescript-eslint/types@7.18.0)(@typescript-eslint/utils@7.18.0(eslint@8.57.0)(typescript@5.5.4))(eslint@8.57.0)(typescript@5.5.4)
+ version: 19.8.1(@angular-eslint/template-parser@19.8.1(eslint@8.57.0)(typescript@5.5.4))(@typescript-eslint/types@8.53.1)(@typescript-eslint/utils@8.53.1(eslint@8.57.0)(typescript@5.5.4))(eslint@8.57.0)(typescript@5.5.4)
'@angular-eslint/schematics':
specifier: ^19.0.0
- version: 19.8.1(@angular-eslint/template-parser@19.8.1(eslint@8.57.0)(typescript@5.5.4))(@typescript-eslint/types@7.18.0)(@typescript-eslint/utils@7.18.0(eslint@8.57.0)(typescript@5.5.4))(chokidar@4.0.1)(eslint@8.57.0)(typescript@5.5.4)
+ version: 19.8.1(@angular-eslint/template-parser@19.8.1(eslint@8.57.0)(typescript@5.5.4))(@typescript-eslint/types@8.53.1)(@typescript-eslint/utils@8.53.1(eslint@8.57.0)(typescript@5.5.4))(chokidar@4.0.1)(eslint@8.57.0)(typescript@5.5.4)
'@angular-eslint/template-parser':
specifier: ^19.0.0
version: 19.8.1(eslint@8.57.0)(typescript@5.5.4)
@@ -234,10 +239,10 @@ importers:
version: 19.2.15(@angular/common@19.2.15(@angular/core@19.2.15(rxjs@6.6.7)(zone.js@0.15.1))(rxjs@6.6.7))(@angular/core@19.2.15(rxjs@6.6.7)(zone.js@0.15.1))(@angular/platform-browser@19.2.15(@angular/animations@19.2.15(@angular/common@19.2.15(@angular/core@19.2.15(rxjs@6.6.7)(zone.js@0.15.1))(rxjs@6.6.7))(@angular/core@19.2.15(rxjs@6.6.7)(zone.js@0.15.1)))(@angular/common@19.2.15(@angular/core@19.2.15(rxjs@6.6.7)(zone.js@0.15.1))(rxjs@6.6.7))(@angular/core@19.2.15(rxjs@6.6.7)(zone.js@0.15.1)))(rxjs@6.6.7)
'@babel/plugin-proposal-nullish-coalescing-operator':
specifier: ^7.16.5
- version: 7.18.6(@babel/core@7.26.10)
+ version: 7.18.6(@babel/core@7.28.6)
'@babel/plugin-proposal-optional-chaining':
specifier: ^7.16.5
- version: 7.21.0(@babel/core@7.26.10)
+ version: 7.21.0(@babel/core@7.28.6)
'@jsonforms/angular':
specifier: workspace:*
version: link:../angular
@@ -267,7 +272,7 @@ importers:
version: 5.62.0(eslint@8.57.0)(typescript@5.5.4)
babel-loader:
specifier: ^8.0.6
- version: 8.3.0(@babel/core@7.26.10)(webpack@5.91.0)
+ version: 8.3.0(@babel/core@7.28.6)(webpack@5.91.0)
copy-webpack-plugin:
specifier: ^11.0.0
version: 11.0.0(webpack@5.91.0)
@@ -321,7 +326,7 @@ importers:
version: 5.0.1(webpack@5.91.0)
ng-packagr:
specifier: ^19.0.0
- version: 19.2.2(@angular/compiler-cli@19.2.15(@angular/compiler@19.2.15)(typescript@5.5.4))(tslib@2.6.2)(typescript@5.5.4)
+ version: 19.2.2(@angular/compiler-cli@19.2.15(@angular/compiler@19.2.15)(typescript@5.5.4))(tailwindcss@4.1.18)(tslib@2.6.2)(typescript@5.5.4)
null-loader:
specifier: ^0.1.1
version: 0.1.1
@@ -442,7 +447,7 @@ importers:
version: 0.5.21
ts-node:
specifier: ^10.4.0
- version: 10.9.2(@types/node@22.13.8)(typescript@5.5.4)
+ version: 10.9.2(@types/node@24.10.9)(typescript@5.5.4)
tslib:
specifier: ^2.5.0
version: 2.6.2
@@ -566,10 +571,10 @@ importers:
version: 3.2.3(react@17.0.2)
devDependencies:
'@types/react':
- specifier: ^17.0.24
+ specifier: ^17.0.80
version: 17.0.80
'@types/react-dom':
- specifier: ^17.0.9
+ specifier: ^17.0.25
version: 17.0.25
'@typescript-eslint/eslint-plugin':
specifier: ^5.54.1
@@ -651,10 +656,10 @@ importers:
specifier: ^29.5.14
version: 29.5.14
'@types/react':
- specifier: ^17.0.24
+ specifier: ^17.0.80
version: 17.0.80
'@types/react-dom':
- specifier: ^17.0.9
+ specifier: ^17.0.25
version: 17.0.25
'@typescript-eslint/eslint-plugin':
specifier: ^5.54.1
@@ -688,7 +693,7 @@ importers:
version: 7.34.1(eslint@8.57.0)
jest:
specifier: ^29.7.0
- version: 29.7.0(@types/node@22.13.8)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.5.4))
+ version: 29.7.0(@types/node@24.10.9)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@10.9.2(@types/node@24.10.9)(typescript@5.5.4))
jest-environment-jsdom:
specifier: 29.7.0
version: 29.7.0
@@ -733,7 +738,7 @@ importers:
version: 0.2.4
ts-jest:
specifier: ^29.4.5
- version: 29.4.5(@babel/core@7.26.10)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.26.10))(jest-util@29.7.0)(jest@29.7.0(@types/node@22.13.8)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.5.4)))(typescript@5.5.4)
+ version: 29.4.5(@babel/core@7.28.6)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.28.6))(jest-util@29.7.0)(jest@29.7.0(@types/node@24.10.9)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@10.9.2(@types/node@24.10.9)(typescript@5.5.4)))(typescript@5.5.4)
ts-loader:
specifier: ^9.5.1
version: 9.5.1(typescript@5.5.4)(webpack@5.91.0)
@@ -778,7 +783,7 @@ importers:
specifier: ^1.3.0
version: 1.3.4
'@types/react':
- specifier: ^17.0.24
+ specifier: ^17.0.80
version: 17.0.80
'@types/react-redux':
specifier: ^7.1.5
@@ -815,7 +820,7 @@ importers:
version: 7.34.1(eslint@8.57.0)
jest:
specifier: ^29.7.0
- version: 29.7.0(@types/node@22.13.8)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.5.4))
+ version: 29.7.0(@types/node@24.10.9)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@10.9.2(@types/node@24.10.9)(typescript@5.5.4))
jsdom:
specifier: ^27.2.0
version: 27.2.0
@@ -857,7 +862,7 @@ importers:
version: 5.12.0(rollup@2.79.1)
ts-jest:
specifier: ^29.4.5
- version: 29.4.5(@babel/core@7.26.10)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.26.10))(jest-util@29.7.0)(jest@29.7.0(@types/node@22.13.8)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.5.4)))(typescript@5.5.4)
+ version: 29.4.5(@babel/core@7.28.6)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.28.6))(jest-util@29.7.0)(jest@29.7.0(@types/node@24.10.9)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@10.9.2(@types/node@24.10.9)(typescript@5.5.4)))(typescript@5.5.4)
tslib:
specifier: ^2.5.0
version: 2.6.2
@@ -868,6 +873,182 @@ importers:
specifier: ~5.5.0
version: 5.5.4
+ packages/react-shadcn:
+ dependencies:
+ class-variance-authority:
+ specifier: ^0.7.0
+ version: 0.7.1
+ clsx:
+ specifier: ^2.1.0
+ version: 2.1.1
+ lodash:
+ specifier: ^4.17.21
+ version: 4.17.21
+ lucide-react:
+ specifier: ^0.563.0
+ version: 0.563.0(react@17.0.2)
+ radix-ui:
+ specifier: ^1.4.3
+ version: 1.4.3(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ tailwind-merge:
+ specifier: ^2.2.0
+ version: 2.6.0
+ tailwindcss:
+ specifier: ^4.0.0
+ version: 4.1.18
+ devDependencies:
+ '@jsonforms/core':
+ specifier: workspace:*
+ version: link:../core
+ '@jsonforms/react':
+ specifier: workspace:*
+ version: link:../react
+ '@rollup/plugin-commonjs':
+ specifier: ^23.0.3
+ version: 23.0.7(rollup@2.79.1)
+ '@rollup/plugin-json':
+ specifier: ^5.0.2
+ version: 5.0.2(rollup@2.79.1)
+ '@rollup/plugin-node-resolve':
+ specifier: ^15.0.1
+ version: 15.2.3(rollup@2.79.1)
+ '@rollup/plugin-replace':
+ specifier: ^5.0.1
+ version: 5.0.5(rollup@2.79.1)
+ '@types/enzyme':
+ specifier: ^3.10.18
+ version: 3.10.18
+ '@types/jest':
+ specifier: ^29.5.14
+ version: 29.5.14
+ '@types/lodash':
+ specifier: ^4.17.0
+ version: 4.17.7
+ '@types/react':
+ specifier: ^17.0.80
+ version: 17.0.80
+ '@types/react-dom':
+ specifier: ^17.0.25
+ version: 17.0.25
+ '@typescript-eslint/eslint-plugin':
+ specifier: ^5.54.1
+ version: 5.62.0(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.5.4))(eslint@8.57.0)(typescript@5.5.4)
+ '@typescript-eslint/parser':
+ specifier: ^5.54.1
+ version: 5.62.0(eslint@8.57.0)(typescript@5.5.4)
+ '@wojtekmaj/enzyme-adapter-react-17':
+ specifier: ^0.6.7
+ version: 0.6.7(enzyme@3.11.0)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ enzyme:
+ specifier: ^3.11.0
+ version: 3.11.0
+ eslint:
+ specifier: ^8.56.0
+ version: 8.57.0
+ eslint-config-prettier:
+ specifier: ^8.7.0
+ version: 8.10.0(eslint@8.57.0)
+ eslint-plugin-import:
+ specifier: ^2.27.5
+ version: 2.29.1(@typescript-eslint/parser@5.62.0(eslint@8.57.0)(typescript@5.5.4))(eslint@8.57.0)
+ eslint-plugin-prettier:
+ specifier: ^4.2.1
+ version: 4.2.1(eslint-config-prettier@8.10.0(eslint@8.57.0))(eslint@8.57.0)(prettier@2.8.8)
+ eslint-plugin-react:
+ specifier: ^7.32.2
+ version: 7.34.1(eslint@8.57.0)
+ jest:
+ specifier: ^29.7.0
+ version: 29.7.0(@types/node@24.10.9)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@10.9.2(@types/node@24.10.9)(typescript@5.5.4))
+ jest-environment-jsdom:
+ specifier: ^29.7.0
+ version: 29.7.0
+ jsdom:
+ specifier: ^27.2.0
+ version: 27.2.0
+ prettier:
+ specifier: ^2.8.4
+ version: 2.8.8
+ react:
+ specifier: ^17.0.2
+ version: 17.0.2
+ react-dom:
+ specifier: ^17.0.2
+ version: 17.0.2(react@17.0.2)
+ rimraf:
+ specifier: ^6.1.0
+ version: 6.1.0
+ rollup:
+ specifier: ^2.78.0
+ version: 2.79.1
+ rollup-plugin-cleanup:
+ specifier: ^3.2.1
+ version: 3.2.1(rollup@2.79.1)
+ rollup-plugin-typescript2:
+ specifier: ^0.34.1
+ version: 0.34.1(rollup@2.79.1)(typescript@5.5.4)
+ rollup-plugin-visualizer:
+ specifier: ^5.4.1
+ version: 5.12.0(rollup@2.79.1)
+ ts-jest:
+ specifier: ^29.4.5
+ version: 29.4.5(@babel/core@7.28.6)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.28.6))(jest-util@29.7.0)(jest@29.7.0(@types/node@24.10.9)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@10.9.2(@types/node@24.10.9)(typescript@5.5.4)))(typescript@5.5.4)
+ ts-node:
+ specifier: ^10.4.0
+ version: 10.9.2(@types/node@24.10.9)(typescript@5.5.4)
+ tslib:
+ specifier: ^2.5.0
+ version: 2.8.1
+ typedoc:
+ specifier: ~0.25.3
+ version: 0.25.13(typescript@5.5.4)
+
+ packages/react-shadcn/example:
+ dependencies:
+ '@jsonforms/core':
+ specifier: workspace:*
+ version: link:../../core
+ '@jsonforms/examples':
+ specifier: workspace:*
+ version: link:../../examples
+ '@jsonforms/examples-react':
+ specifier: workspace:*
+ version: link:../../examples-react
+ '@jsonforms/react':
+ specifier: workspace:*
+ version: link:../../react
+ '@jsonforms/react-shadcn':
+ specifier: workspace:*
+ version: link:..
+ react:
+ specifier: ^17.0.2
+ version: 17.0.2
+ react-dom:
+ specifier: ^17.0.2
+ version: 17.0.2(react@17.0.2)
+ devDependencies:
+ '@tailwindcss/vite':
+ specifier: ^4.1.18
+ version: 4.1.18(vite@5.4.21(@types/node@24.10.9)(less@4.2.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.57.0)(terser@5.39.0))
+ '@types/react':
+ specifier: ^17.0.80
+ version: 17.0.80
+ '@types/react-dom':
+ specifier: ^17.0.25
+ version: 17.0.25
+ '@vitejs/plugin-react':
+ specifier: ^4.2.1
+ version: 4.7.0(vite@5.4.21(@types/node@24.10.9)(less@4.2.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.57.0)(terser@5.39.0))
+ tailwindcss:
+ specifier: ^4.0.0
+ version: 4.1.18
+ typescript:
+ specifier: ^5.2.2
+ version: 5.5.4
+ vite:
+ specifier: ^5.0.8
+ version: 5.4.21(@types/node@24.10.9)(less@4.2.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.57.0)(terser@5.39.0)
+
packages/vanilla-renderers:
dependencies:
lodash:
@@ -902,7 +1083,7 @@ importers:
specifier: ^29.5.14
version: 29.5.14
'@types/react':
- specifier: ^17.0.24
+ specifier: ^17.0.80
version: 17.0.80
'@typescript-eslint/eslint-plugin':
specifier: ^5.54.1
@@ -936,7 +1117,7 @@ importers:
version: 7.34.1(eslint@8.57.0)
jest:
specifier: ^29.7.0
- version: 29.7.0(@types/node@22.13.8)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.5.4))
+ version: 29.7.0(@types/node@24.10.9)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@10.9.2(@types/node@24.10.9)(typescript@5.5.4))
jest-environment-jsdom:
specifier: 29.7.0
version: 29.7.0
@@ -981,13 +1162,13 @@ importers:
version: 0.2.4
ts-jest:
specifier: ^29.4.5
- version: 29.4.5(@babel/core@7.26.10)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.26.10))(jest-util@29.7.0)(jest@29.7.0(@types/node@22.13.8)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.5.4)))(typescript@5.5.4)
+ version: 29.4.5(@babel/core@7.28.6)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.28.6))(jest-util@29.7.0)(jest@29.7.0(@types/node@24.10.9)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@10.9.2(@types/node@24.10.9)(typescript@5.5.4)))(typescript@5.5.4)
ts-loader:
specifier: ^9.5.1
version: 9.5.1(typescript@5.5.4)(webpack@5.91.0)
ts-node:
specifier: ^10.4.0
- version: 10.9.2(@types/node@22.13.8)(typescript@5.5.4)
+ version: 10.9.2(@types/node@24.10.9)(typescript@5.5.4)
tslib:
specifier: ^2.5.0
version: 2.6.2
@@ -1054,7 +1235,7 @@ importers:
version: 2.4.6
'@vue/vue3-jest':
specifier: ^29.2.6
- version: 29.2.6(@babel/core@7.24.5)(babel-jest@29.7.0(@babel/core@7.24.5))(jest@29.7.0(@types/node@22.13.8)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.5.4)))(typescript@5.5.4)(vue@3.5.17(typescript@5.5.4))
+ version: 29.2.6(@babel/core@7.24.5)(babel-jest@29.7.0(@babel/core@7.24.5))(jest@29.7.0(@types/node@22.13.8)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@10.9.2(@types/node@24.10.9)(typescript@5.5.4)))(typescript@5.5.4)(vue@3.5.17(typescript@5.5.4))
core-js:
specifier: ^3.9.1
version: 3.37.1
@@ -1078,7 +1259,7 @@ importers:
version: 9.26.0(eslint@8.57.0)
jest:
specifier: ^29.7.0
- version: 29.7.0(@types/node@22.13.8)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.5.4))
+ version: 29.7.0(@types/node@22.13.8)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@10.9.2(@types/node@24.10.9)(typescript@5.5.4))
jest-environment-jsdom:
specifier: 29.7.0
version: 29.7.0
@@ -1108,7 +1289,7 @@ importers:
version: 6.0.0(@vue/compiler-sfc@3.5.17)
ts-jest:
specifier: ^29.4.5
- version: 29.4.5(@babel/core@7.24.5)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.24.5))(jest-util@29.7.0)(jest@29.7.0(@types/node@22.13.8)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.5.4)))(typescript@5.5.4)
+ version: 29.4.5(@babel/core@7.24.5)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.24.5))(jest-util@29.7.0)(jest@29.7.0(@types/node@22.13.8)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@10.9.2(@types/node@24.10.9)(typescript@5.5.4)))(typescript@5.5.4)
tslib:
specifier: ^2.5.0
version: 2.6.2
@@ -1181,7 +1362,7 @@ importers:
version: 2.4.6
'@vue/vue3-jest':
specifier: ^29.2.6
- version: 29.2.6(@babel/core@7.24.5)(babel-jest@29.7.0(@babel/core@7.24.5))(jest@29.7.0(@types/node@22.13.8)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.5.4)))(typescript@5.5.4)(vue@3.5.17(typescript@5.5.4))
+ version: 29.2.6(@babel/core@7.24.5)(babel-jest@29.7.0(@babel/core@7.24.5))(jest@29.7.0(@types/node@22.13.8)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@10.9.2(@types/node@24.10.9)(typescript@5.5.4)))(typescript@5.5.4)(vue@3.5.17(typescript@5.5.4))
chai:
specifier: ^4.1.2
version: 4.4.1
@@ -1283,10 +1464,10 @@ importers:
version: 2.2.6
'@vitejs/plugin-vue':
specifier: ^5.0.4
- version: 5.1.2(vite@5.4.21(@types/node@22.13.8)(less@4.2.2)(sass@1.93.2)(stylus@0.57.0)(terser@5.39.0))(vue@3.5.17(typescript@5.5.4))
+ version: 5.1.2(vite@5.4.21(@types/node@22.13.8)(less@4.2.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.57.0)(terser@5.39.0))(vue@3.5.17(typescript@5.5.4))
'@vitest/coverage-v8':
specifier: ^1.6.0
- version: 1.6.0(vitest@1.6.0(@types/node@22.13.8)(jsdom@27.2.0)(less@4.2.2)(sass@1.93.2)(stylus@0.57.0)(terser@5.39.0))
+ version: 1.6.0(vitest@1.6.0(@types/node@22.13.8)(jsdom@27.2.0)(less@4.2.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.57.0)(terser@5.39.0))
'@vue/eslint-config-prettier':
specifier: ^9.0.0
version: 9.0.0(@types/eslint@8.56.10)(eslint@8.57.0)(prettier@3.3.3)
@@ -1364,22 +1545,22 @@ importers:
version: 5.5.4
vite:
specifier: ^5.4.21
- version: 5.4.21(@types/node@22.13.8)(less@4.2.2)(sass@1.93.2)(stylus@0.57.0)(terser@5.39.0)
+ version: 5.4.21(@types/node@22.13.8)(less@4.2.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.57.0)(terser@5.39.0)
vite-plugin-dts:
specifier: ^3.9.1
- version: 3.9.1(@types/node@22.13.8)(rollup@4.52.4)(typescript@5.5.4)(vite@5.4.21(@types/node@22.13.8)(less@4.2.2)(sass@1.93.2)(stylus@0.57.0)(terser@5.39.0))
+ version: 3.9.1(@types/node@22.13.8)(rollup@4.52.4)(typescript@5.5.4)(vite@5.4.21(@types/node@22.13.8)(less@4.2.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.57.0)(terser@5.39.0))
vite-plugin-node-polyfills:
specifier: ^0.21.0
- version: 0.21.0(rollup@4.52.4)(vite@5.4.21(@types/node@22.13.8)(less@4.2.2)(sass@1.93.2)(stylus@0.57.0)(terser@5.39.0))
+ version: 0.21.0(rollup@4.52.4)(vite@5.4.21(@types/node@22.13.8)(less@4.2.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.57.0)(terser@5.39.0))
vite-plugin-static-copy:
specifier: ^2.3.2
- version: 2.3.2(vite@5.4.21(@types/node@22.13.8)(less@4.2.2)(sass@1.93.2)(stylus@0.57.0)(terser@5.39.0))
+ version: 2.3.2(vite@5.4.21(@types/node@22.13.8)(less@4.2.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.57.0)(terser@5.39.0))
vite-plugin-vuetify:
specifier: ^2.1.1
- version: 2.1.1(vite@5.4.21(@types/node@22.13.8)(less@4.2.2)(sass@1.93.2)(stylus@0.57.0)(terser@5.39.0))(vue@3.5.17(typescript@5.5.4))(vuetify@3.9.0)
+ version: 2.1.1(vite@5.4.21(@types/node@22.13.8)(less@4.2.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.57.0)(terser@5.39.0))(vue@3.5.17(typescript@5.5.4))(vuetify@3.9.0)
vitest:
specifier: ^1.4.0
- version: 1.6.0(@types/node@22.13.8)(jsdom@27.2.0)(less@4.2.2)(sass@1.93.2)(stylus@0.57.0)(terser@5.39.0)
+ version: 1.6.0(@types/node@22.13.8)(jsdom@27.2.0)(less@4.2.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.57.0)(terser@5.39.0)
vue:
specifier: ^3.5.17
version: 3.5.17(typescript@5.5.4)
@@ -1676,6 +1857,10 @@ packages:
resolution: {integrity: sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==}
engines: {node: '>=6.9.0'}
+ '@babel/code-frame@7.28.6':
+ resolution: {integrity: sha512-JYgintcMjRiCvS8mMECzaEn+m3PfoQiyqukOMCCVQtoJGYJw8j/8LBJEiqkHLkfwCcs74E3pbAUFNg7d9VNJ+Q==}
+ engines: {node: '>=6.9.0'}
+
'@babel/compat-data@7.24.4':
resolution: {integrity: sha512-vg8Gih2MLK+kOkHJp4gBEIkyaIi00jgWot2D9QOmmfLC8jINSOzmCLta6Bvz/JSBCqnegV0L80jhxkol5GWNfQ==}
engines: {node: '>=6.9.0'}
@@ -1684,6 +1869,10 @@ packages:
resolution: {integrity: sha512-YsmSKC29MJwf0gF8Rjjrg5LQCmyh+j/nD8/eP7f+BeoQTKYqs9RoWbjGOdy0+1Ekr68RJZMUOPVQaQisnIo4Rw==}
engines: {node: '>=6.9.0'}
+ '@babel/compat-data@7.28.6':
+ resolution: {integrity: sha512-2lfu57JtzctfIrcGMz992hyLlByuzgIk58+hhGCxjKZ3rWI82NnVLjXcaTqkI2NvlcvOskZaiZ5kjUALo3Lpxg==}
+ engines: {node: '>=6.9.0'}
+
'@babel/core@7.24.5':
resolution: {integrity: sha512-tVQRucExLQ02Boi4vdPp49svNGcfL2GhdTCT9aldhXgCJVAI21EtRfBettiuLUwce/7r6bFdgs6JFkcdTiFttA==}
engines: {node: '>=6.9.0'}
@@ -1696,6 +1885,10 @@ packages:
resolution: {integrity: sha512-lWBYIrF7qK5+GjY5Uy+/hEgp8OJWOD/rpy74GplYRhEauvbHDeFB8t5hPOZxCZ0Oxf4Cc36tK51/l3ymJysrKw==}
engines: {node: '>=6.9.0'}
+ '@babel/core@7.28.6':
+ resolution: {integrity: sha512-H3mcG6ZDLTlYfaSNi0iOKkigqMFvkTKlGUYlD8GW7nNOYRrevuA46iTypPyv+06V3fEmvvazfntkBU34L0azAw==}
+ engines: {node: '>=6.9.0'}
+
'@babel/generator@7.24.5':
resolution: {integrity: sha512-x32i4hEXvr+iI0NEoEfDKzlemF8AmtOP8CcrRaEcpzysWuoEb1KknpcvMsHKPONoKZiDuItklgWhB18xEhr9PA==}
engines: {node: '>=6.9.0'}
@@ -1708,6 +1901,10 @@ packages:
resolution: {integrity: sha512-3lSpxGgvnmZznmBkCRnVREPUFJv2wrv9iAoFDvADJc0ypmdOxdUtcLeBgBJ6zE0PMeTKnxeQzyk0xTBq4Ep7zw==}
engines: {node: '>=6.9.0'}
+ '@babel/generator@7.28.6':
+ resolution: {integrity: sha512-lOoVRwADj8hjf7al89tvQ2a1lf53Z+7tiXMgpZJL3maQPDxh0DgLMN62B2MKUOFcoodBHLMbDM6WAbKgNy5Suw==}
+ engines: {node: '>=6.9.0'}
+
'@babel/helper-annotate-as-pure@7.22.5':
resolution: {integrity: sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==}
engines: {node: '>=6.9.0'}
@@ -1732,6 +1929,10 @@ packages:
resolution: {integrity: sha512-2+1thGUUWWjLTYTHZWK1n8Yga0ijBz1XAhUXcKy81rd5g6yh7hGqMp45v7cadSbEHc9G3OTv45SyneRN3ps4DQ==}
engines: {node: '>=6.9.0'}
+ '@babel/helper-compilation-targets@7.28.6':
+ resolution: {integrity: sha512-JYtls3hqi15fcx5GaSNL7SCTJ2MNmjrkHXg4FSpOA/grxK8KwyZ5bubHsCq8FXCkua6xhuaaBit+3b7+VZRfcA==}
+ engines: {node: '>=6.9.0'}
+
'@babel/helper-create-class-features-plugin@7.24.5':
resolution: {integrity: sha512-uRc4Cv8UQWnE4NXlYTIIdM7wfFkOqlFztcC/gVXDKohKoVB3OyonfelUBaJzSwpBntZ2KYGF/9S7asCHsXwW6g==}
engines: {node: '>=6.9.0'}
@@ -1812,6 +2013,10 @@ packages:
resolution: {integrity: sha512-0gSFWUPNXNopqtIPQvlD5WgXYI5GY2kP2cCvoT8kczjbfcfuIljTbcWrulD1CIPIX2gt1wghbDy08yE1p+/r3w==}
engines: {node: '>=6.9.0'}
+ '@babel/helper-module-imports@7.28.6':
+ resolution: {integrity: sha512-l5XkZK7r7wa9LucGw9LwZyyCUscb4x37JWTPz7swwFE/0FMQAGpiWUZn8u9DzkSBWEcK25jmvubfpw2dnAMdbw==}
+ engines: {node: '>=6.9.0'}
+
'@babel/helper-module-transforms@7.24.5':
resolution: {integrity: sha512-9GxeY8c2d2mdQUP1Dye0ks3VDyIMS98kt/llQ2nUId8IsWqTF0l1LkSX0/uP7l7MCDrzXS009Hyhe2gzTiGW8A==}
engines: {node: '>=6.9.0'}
@@ -1830,6 +2035,12 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0
+ '@babel/helper-module-transforms@7.28.6':
+ resolution: {integrity: sha512-67oXFAYr2cDLDVGLXTEABjdBJZ6drElUSI7WKp70NrpyISso3plG9SAGEF6y7zbha/wOzUByWWTJvEDVNIUGcA==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0
+
'@babel/helper-optimise-call-expression@7.22.5':
resolution: {integrity: sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==}
engines: {node: '>=6.9.0'}
@@ -1842,10 +2053,6 @@ packages:
resolution: {integrity: sha512-xjNLDopRzW2o6ba0gKbkZq5YWEBaK3PCyTOY1K2P/O07LGMhMqlMXPxwN4S5/RhWuCobT8z0jrlKGlYmeR1OhQ==}
engines: {node: '>=6.9.0'}
- '@babel/helper-plugin-utils@7.25.9':
- resolution: {integrity: sha512-kSMlyUVdWe25rEsRGviIgOWnoT/nfABVWlqt9N19/dIPWViAOW2s9wznP5tURbs/IDuNk4gPy3YdYRgH3uxhBw==}
- engines: {node: '>=6.9.0'}
-
'@babel/helper-plugin-utils@7.27.1':
resolution: {integrity: sha512-1gn1Up5YXka3YYAHGKpbideQ5Yjf1tDa9qYcgysz+cNCXukyLl6DjPXhD3VRwSb8c0J9tA4b2+rHEZtc6R0tlw==}
engines: {node: '>=6.9.0'}
@@ -1882,10 +2089,6 @@ packages:
resolution: {integrity: sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==}
engines: {node: '>=6.9.0'}
- '@babel/helper-skip-transparent-expression-wrappers@7.25.9':
- resolution: {integrity: sha512-K4Du3BFa3gvyhzgPcntrkDgZzQaq6uozzcpGbOO1OEJaI+EJdqWIMTLgFgQf6lrfiDFo5FU+BxKepI9RmZqahA==}
- engines: {node: '>=6.9.0'}
-
'@babel/helper-skip-transparent-expression-wrappers@7.27.1':
resolution: {integrity: sha512-Tub4ZKEXqbPjXgWLl2+3JpQAYBJ8+ikpQ2Ocj/q/r0LwE3UhENh7EUabyHjz2kCEsrRY83ew2DQdHluuiDQFzg==}
engines: {node: '>=6.9.0'}
@@ -1898,30 +2101,18 @@ packages:
resolution: {integrity: sha512-oy5V7pD+UvfkEATUKvIjvIAH/xCzfsFVw7ygW2SI6NClZzquT+mwdTfgfdbUiceh6iQO0CHtCPsyze/MZ2YbAA==}
engines: {node: '>=6.9.0'}
- '@babel/helper-string-parser@7.24.1':
- resolution: {integrity: sha512-2ofRCjnnA9y+wk8b9IAREroeUP02KHp431N2mhKniy2yKIDKpbrHv9eXwm8cBeWQYcJmzv5qKCu65P47eCF7CQ==}
- engines: {node: '>=6.9.0'}
-
- '@babel/helper-string-parser@7.25.9':
- resolution: {integrity: sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==}
- engines: {node: '>=6.9.0'}
-
'@babel/helper-string-parser@7.27.1':
resolution: {integrity: sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==}
engines: {node: '>=6.9.0'}
- '@babel/helper-validator-identifier@7.24.5':
- resolution: {integrity: sha512-3q93SSKX2TWCG30M2G2kwaKeTYgEUp5Snjuj8qm729SObL6nbtUldAi37qbxkD5gg3xnBio+f9nqpSepGZMvxA==}
- engines: {node: '>=6.9.0'}
-
- '@babel/helper-validator-identifier@7.25.9':
- resolution: {integrity: sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==}
- engines: {node: '>=6.9.0'}
-
'@babel/helper-validator-identifier@7.27.1':
resolution: {integrity: sha512-D2hP9eA+Sqx1kBZgzxZh0y1trbuU+JoDkiEwqhQ36nodYqJwyEIhPSdMNd7lOm/4io72luTPWH20Yda0xOuUow==}
engines: {node: '>=6.9.0'}
+ '@babel/helper-validator-identifier@7.28.5':
+ resolution: {integrity: sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==}
+ engines: {node: '>=6.9.0'}
+
'@babel/helper-validator-option@7.23.5':
resolution: {integrity: sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw==}
engines: {node: '>=6.9.0'}
@@ -1950,6 +2141,10 @@ packages:
resolution: {integrity: sha512-HFN59MmQXGHVyYadKLVumYsA9dBFun/ldYxipEjzA4196jpLZd8UjEEBLkbEkvfYreDqJhZxYAWFPtrfhNpj4w==}
engines: {node: '>=6.9.0'}
+ '@babel/helpers@7.28.6':
+ resolution: {integrity: sha512-xOBvwq86HHdB7WUDTfKfT/Vuxh7gElQ+Sfti2Cy6yIWNW05P8iUslOVcZ4/sKbE+/jQaukQAdz/gf3724kYdqw==}
+ engines: {node: '>=6.9.0'}
+
'@babel/highlight@7.24.5':
resolution: {integrity: sha512-8lLmua6AVh/8SLJRRVD6V8p73Hir9w5mJrhE+IPpILG31KKlI9iz5zmBYKcWPS59qSfgP9RaSBQSHHE81WKuEw==}
engines: {node: '>=6.9.0'}
@@ -1959,18 +2154,8 @@ packages:
engines: {node: '>=6.0.0'}
hasBin: true
- '@babel/parser@7.26.2':
- resolution: {integrity: sha512-DWMCZH9WA4Maitz2q21SRKHo9QXZxkDsbNZoVD62gusNtNBBqDg9i7uOhASfTfIGNzW+O+r7+jAlM8dwphcJKQ==}
- engines: {node: '>=6.0.0'}
- hasBin: true
-
- '@babel/parser@7.28.0':
- resolution: {integrity: sha512-jVZGvOxOuNSsuQuLRTh13nU0AogFlw32w/MT+LV6D3sP5WdbW61E77RnkbaO2dUvmPAYrBDJXGn5gGS6tH4j8g==}
- engines: {node: '>=6.0.0'}
- hasBin: true
-
- '@babel/parser@7.28.4':
- resolution: {integrity: sha512-yZbBqeM6TkpP9du/I2pUZnJsRMGGvOuIrhjzC1AwHwW+6he4mni6Bp/m8ijn0iOuZuPI2BfkCoSRunpyjnrQKg==}
+ '@babel/parser@7.28.6':
+ resolution: {integrity: sha512-TeR9zWR18BvbfPmGbLampPMW+uW1NZnJlRuuHso8i87QZNq2JRF9i6RgxRqtEq+wQGsS19NNTWr2duhnE49mfQ==}
engines: {node: '>=6.0.0'}
hasBin: true
@@ -2642,6 +2827,18 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
+ '@babel/plugin-transform-react-jsx-self@7.27.1':
+ resolution: {integrity: sha512-6UzkCs+ejGdZ5mFFC/OCUrv028ab2fp1znZmCZjAOBKiBK2jXD1O+BPSfX8X2qjJ75fZBMSnQn3Rq2mrBJK2mw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
+ '@babel/plugin-transform-react-jsx-source@7.27.1':
+ resolution: {integrity: sha512-zbwoTsBruTeKB9hSq73ha66iFeJHuaFkUbwvqElnygoNbj/jHRsSeokowZFN3CZ64IvEqcmmkVe89OPXc7ldAw==}
+ engines: {node: '>=6.9.0'}
+ peerDependencies:
+ '@babel/core': ^7.0.0-0
+
'@babel/plugin-transform-regenerator@7.24.1':
resolution: {integrity: sha512-sJwZBCzIBE4t+5Q4IGLaaun5ExVMRY0lYwos/jNecjMrVCygCdph3IKv0tkP5Fc87e/1+bebAmEAGBfnRD+cnw==}
engines: {node: '>=6.9.0'}
@@ -2848,32 +3045,28 @@ packages:
resolution: {integrity: sha512-Bkf2q8lMB0AFpX0NFEqSbx1OkTHf0f+0j82mkw+ZpzBnkk7e9Ql0891vlfgi+kHwOk8tQjiQHpqh4LaSa0fKEA==}
engines: {node: '>=6.9.0'}
- '@babel/template@7.25.9':
- resolution: {integrity: sha512-9DGttpmPvIxBb/2uwpVo3dqJ+O6RooAFOS+lB+xDqoE2PVCE8nfoHMdZLpfCQRLwvohzXISPZcgxt80xLfsuwg==}
- engines: {node: '>=6.9.0'}
-
'@babel/template@7.27.2':
resolution: {integrity: sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==}
engines: {node: '>=6.9.0'}
- '@babel/traverse@7.24.5':
- resolution: {integrity: sha512-7aaBLeDQ4zYcUFDUD41lJc1fG8+5IU9DaNSJAgal866FGvmD5EbWQgnEC6kO1gGLsX0esNkfnJSndbTXA3r7UA==}
+ '@babel/template@7.28.6':
+ resolution: {integrity: sha512-YA6Ma2KsCdGb+WC6UpBVFJGXL58MDA6oyONbjyF/+5sBgxY/dwkhLogbMT2GXXyU84/IhRw/2D1Os1B/giz+BQ==}
engines: {node: '>=6.9.0'}
- '@babel/traverse@7.25.9':
- resolution: {integrity: sha512-ZCuvfwOwlz/bawvAuvcj8rrithP2/N55Tzz342AkTvq4qaWbGfmCk/tKhNaV2cthijKrPAA8SRJV5WWe7IBMJw==}
+ '@babel/traverse@7.24.5':
+ resolution: {integrity: sha512-7aaBLeDQ4zYcUFDUD41lJc1fG8+5IU9DaNSJAgal866FGvmD5EbWQgnEC6kO1gGLsX0esNkfnJSndbTXA3r7UA==}
engines: {node: '>=6.9.0'}
'@babel/traverse@7.28.4':
resolution: {integrity: sha512-YEzuboP2qvQavAcjgQNVgsvHIDv6ZpwXvcvjmyySP2DIMuByS/6ioU5G9pYrWHM6T2YDfc7xga9iNzYOs12CFQ==}
engines: {node: '>=6.9.0'}
- '@babel/types@7.24.5':
- resolution: {integrity: sha512-6mQNsaLeXTw0nxYUYu+NSa4Hx4BlF1x1x8/PMFbiR+GBSr+2DkECc69b8hgy2frEodNcvPffeH8YfWd3LI6jhQ==}
+ '@babel/traverse@7.28.6':
+ resolution: {integrity: sha512-fgWX62k02qtjqdSNTAGxmKYY/7FSL9WAS1o2Hu5+I5m9T0yxZzr4cnrfXQ/MX0rIifthCSs6FKTlzYbJcPtMNg==}
engines: {node: '>=6.9.0'}
- '@babel/types@7.26.0':
- resolution: {integrity: sha512-Z/yiTPj+lDVnF7lWeKCIJzaIkI0vYO87dMpZ4bg4TDrFe4XXLFWL1TbXU27gBP3QccxV9mZICCrnjnYlJjXHOA==}
+ '@babel/types@7.24.5':
+ resolution: {integrity: sha512-6mQNsaLeXTw0nxYUYu+NSa4Hx4BlF1x1x8/PMFbiR+GBSr+2DkECc69b8hgy2frEodNcvPffeH8YfWd3LI6jhQ==}
engines: {node: '>=6.9.0'}
'@babel/types@7.28.0':
@@ -2884,6 +3077,10 @@ packages:
resolution: {integrity: sha512-bkFqkLhh3pMBUQQkpVgWDWq/lqzc2678eUyDlTBhRqhCHFguYYGM0Efga7tYk4TogG/3x0EEl66/OQ+WGbWB/Q==}
engines: {node: '>=6.9.0'}
+ '@babel/types@7.28.6':
+ resolution: {integrity: sha512-0ZrskXVEHSWIqZM/sQZ4EV3jZJXRkio/WCxaqKZP1g//CEWEPSfeZFcms4XeKBCHU0ZKnIkdJeU/kF+eRp5lBg==}
+ engines: {node: '>=6.9.0'}
+
'@bcoe/v8-coverage@0.2.3':
resolution: {integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==}
@@ -3054,6 +3251,12 @@ packages:
cpu: [ppc64]
os: [aix]
+ '@esbuild/aix-ppc64@0.27.2':
+ resolution: {integrity: sha512-GZMB+a0mOMZs4MpDbj8RJp4cw+w1WV5NYD6xzgvzUJ5Ek2jerwfO2eADyI6ExDSUED+1X8aMbegahsJi+8mgpw==}
+ engines: {node: '>=18'}
+ cpu: [ppc64]
+ os: [aix]
+
'@esbuild/android-arm64@0.21.5':
resolution: {integrity: sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==}
engines: {node: '>=12'}
@@ -3072,6 +3275,12 @@ packages:
cpu: [arm64]
os: [android]
+ '@esbuild/android-arm64@0.27.2':
+ resolution: {integrity: sha512-pvz8ZZ7ot/RBphf8fv60ljmaoydPU12VuXHImtAs0XhLLw+EXBi2BLe3OYSBslR4rryHvweW5gmkKFwTiFy6KA==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [android]
+
'@esbuild/android-arm@0.21.5':
resolution: {integrity: sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==}
engines: {node: '>=12'}
@@ -3090,6 +3299,12 @@ packages:
cpu: [arm]
os: [android]
+ '@esbuild/android-arm@0.27.2':
+ resolution: {integrity: sha512-DVNI8jlPa7Ujbr1yjU2PfUSRtAUZPG9I1RwW4F4xFB1Imiu2on0ADiI/c3td+KmDtVKNbi+nffGDQMfcIMkwIA==}
+ engines: {node: '>=18'}
+ cpu: [arm]
+ os: [android]
+
'@esbuild/android-x64@0.21.5':
resolution: {integrity: sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==}
engines: {node: '>=12'}
@@ -3108,6 +3323,12 @@ packages:
cpu: [x64]
os: [android]
+ '@esbuild/android-x64@0.27.2':
+ resolution: {integrity: sha512-z8Ank4Byh4TJJOh4wpz8g2vDy75zFL0TlZlkUkEwYXuPSgX8yzep596n6mT7905kA9uHZsf/o2OJZubl2l3M7A==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [android]
+
'@esbuild/darwin-arm64@0.21.5':
resolution: {integrity: sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==}
engines: {node: '>=12'}
@@ -3126,6 +3347,12 @@ packages:
cpu: [arm64]
os: [darwin]
+ '@esbuild/darwin-arm64@0.27.2':
+ resolution: {integrity: sha512-davCD2Zc80nzDVRwXTcQP/28fiJbcOwvdolL0sOiOsbwBa72kegmVU0Wrh1MYrbuCL98Omp5dVhQFWRKR2ZAlg==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [darwin]
+
'@esbuild/darwin-x64@0.21.5':
resolution: {integrity: sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==}
engines: {node: '>=12'}
@@ -3144,6 +3371,12 @@ packages:
cpu: [x64]
os: [darwin]
+ '@esbuild/darwin-x64@0.27.2':
+ resolution: {integrity: sha512-ZxtijOmlQCBWGwbVmwOF/UCzuGIbUkqB1faQRf5akQmxRJ1ujusWsb3CVfk/9iZKr2L5SMU5wPBi1UWbvL+VQA==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [darwin]
+
'@esbuild/freebsd-arm64@0.21.5':
resolution: {integrity: sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==}
engines: {node: '>=12'}
@@ -3162,6 +3395,12 @@ packages:
cpu: [arm64]
os: [freebsd]
+ '@esbuild/freebsd-arm64@0.27.2':
+ resolution: {integrity: sha512-lS/9CN+rgqQ9czogxlMcBMGd+l8Q3Nj1MFQwBZJyoEKI50XGxwuzznYdwcav6lpOGv5BqaZXqvBSiB/kJ5op+g==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [freebsd]
+
'@esbuild/freebsd-x64@0.21.5':
resolution: {integrity: sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==}
engines: {node: '>=12'}
@@ -3180,6 +3419,12 @@ packages:
cpu: [x64]
os: [freebsd]
+ '@esbuild/freebsd-x64@0.27.2':
+ resolution: {integrity: sha512-tAfqtNYb4YgPnJlEFu4c212HYjQWSO/w/h/lQaBK7RbwGIkBOuNKQI9tqWzx7Wtp7bTPaGC6MJvWI608P3wXYA==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [freebsd]
+
'@esbuild/linux-arm64@0.21.5':
resolution: {integrity: sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==}
engines: {node: '>=12'}
@@ -3198,6 +3443,12 @@ packages:
cpu: [arm64]
os: [linux]
+ '@esbuild/linux-arm64@0.27.2':
+ resolution: {integrity: sha512-hYxN8pr66NsCCiRFkHUAsxylNOcAQaxSSkHMMjcpx0si13t1LHFphxJZUiGwojB1a/Hd5OiPIqDdXONia6bhTw==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [linux]
+
'@esbuild/linux-arm@0.21.5':
resolution: {integrity: sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==}
engines: {node: '>=12'}
@@ -3216,6 +3467,12 @@ packages:
cpu: [arm]
os: [linux]
+ '@esbuild/linux-arm@0.27.2':
+ resolution: {integrity: sha512-vWfq4GaIMP9AIe4yj1ZUW18RDhx6EPQKjwe7n8BbIecFtCQG4CfHGaHuh7fdfq+y3LIA2vGS/o9ZBGVxIDi9hw==}
+ engines: {node: '>=18'}
+ cpu: [arm]
+ os: [linux]
+
'@esbuild/linux-ia32@0.21.5':
resolution: {integrity: sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==}
engines: {node: '>=12'}
@@ -3234,6 +3491,12 @@ packages:
cpu: [ia32]
os: [linux]
+ '@esbuild/linux-ia32@0.27.2':
+ resolution: {integrity: sha512-MJt5BRRSScPDwG2hLelYhAAKh9imjHK5+NE/tvnRLbIqUWa+0E9N4WNMjmp/kXXPHZGqPLxggwVhz7QP8CTR8w==}
+ engines: {node: '>=18'}
+ cpu: [ia32]
+ os: [linux]
+
'@esbuild/linux-loong64@0.21.5':
resolution: {integrity: sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==}
engines: {node: '>=12'}
@@ -3252,6 +3515,12 @@ packages:
cpu: [loong64]
os: [linux]
+ '@esbuild/linux-loong64@0.27.2':
+ resolution: {integrity: sha512-lugyF1atnAT463aO6KPshVCJK5NgRnU4yb3FUumyVz+cGvZbontBgzeGFO1nF+dPueHD367a2ZXe1NtUkAjOtg==}
+ engines: {node: '>=18'}
+ cpu: [loong64]
+ os: [linux]
+
'@esbuild/linux-mips64el@0.21.5':
resolution: {integrity: sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==}
engines: {node: '>=12'}
@@ -3270,6 +3539,12 @@ packages:
cpu: [mips64el]
os: [linux]
+ '@esbuild/linux-mips64el@0.27.2':
+ resolution: {integrity: sha512-nlP2I6ArEBewvJ2gjrrkESEZkB5mIoaTswuqNFRv/WYd+ATtUpe9Y09RnJvgvdag7he0OWgEZWhviS1OTOKixw==}
+ engines: {node: '>=18'}
+ cpu: [mips64el]
+ os: [linux]
+
'@esbuild/linux-ppc64@0.21.5':
resolution: {integrity: sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==}
engines: {node: '>=12'}
@@ -3288,6 +3563,12 @@ packages:
cpu: [ppc64]
os: [linux]
+ '@esbuild/linux-ppc64@0.27.2':
+ resolution: {integrity: sha512-C92gnpey7tUQONqg1n6dKVbx3vphKtTHJaNG2Ok9lGwbZil6DrfyecMsp9CrmXGQJmZ7iiVXvvZH6Ml5hL6XdQ==}
+ engines: {node: '>=18'}
+ cpu: [ppc64]
+ os: [linux]
+
'@esbuild/linux-riscv64@0.21.5':
resolution: {integrity: sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==}
engines: {node: '>=12'}
@@ -3306,6 +3587,12 @@ packages:
cpu: [riscv64]
os: [linux]
+ '@esbuild/linux-riscv64@0.27.2':
+ resolution: {integrity: sha512-B5BOmojNtUyN8AXlK0QJyvjEZkWwy/FKvakkTDCziX95AowLZKR6aCDhG7LeF7uMCXEJqwa8Bejz5LTPYm8AvA==}
+ engines: {node: '>=18'}
+ cpu: [riscv64]
+ os: [linux]
+
'@esbuild/linux-s390x@0.21.5':
resolution: {integrity: sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==}
engines: {node: '>=12'}
@@ -3324,6 +3611,12 @@ packages:
cpu: [s390x]
os: [linux]
+ '@esbuild/linux-s390x@0.27.2':
+ resolution: {integrity: sha512-p4bm9+wsPwup5Z8f4EpfN63qNagQ47Ua2znaqGH6bqLlmJ4bx97Y9JdqxgGZ6Y8xVTixUnEkoKSHcpRlDnNr5w==}
+ engines: {node: '>=18'}
+ cpu: [s390x]
+ os: [linux]
+
'@esbuild/linux-x64@0.21.5':
resolution: {integrity: sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==}
engines: {node: '>=12'}
@@ -3342,8 +3635,14 @@ packages:
cpu: [x64]
os: [linux]
- '@esbuild/netbsd-arm64@0.25.10':
- resolution: {integrity: sha512-AKQM3gfYfSW8XRk8DdMCzaLUFB15dTrZfnX8WXQoOUpUBQ+NaAFCP1kPS/ykbbGYz7rxn0WS48/81l9hFl3u4A==}
+ '@esbuild/linux-x64@0.27.2':
+ resolution: {integrity: sha512-uwp2Tip5aPmH+NRUwTcfLb+W32WXjpFejTIOWZFw/v7/KnpCDKG66u4DLcurQpiYTiYwQ9B7KOeMJvLCu/OvbA==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [linux]
+
+ '@esbuild/netbsd-arm64@0.25.10':
+ resolution: {integrity: sha512-AKQM3gfYfSW8XRk8DdMCzaLUFB15dTrZfnX8WXQoOUpUBQ+NaAFCP1kPS/ykbbGYz7rxn0WS48/81l9hFl3u4A==}
engines: {node: '>=18'}
cpu: [arm64]
os: [netbsd]
@@ -3354,6 +3653,12 @@ packages:
cpu: [arm64]
os: [netbsd]
+ '@esbuild/netbsd-arm64@0.27.2':
+ resolution: {integrity: sha512-Kj6DiBlwXrPsCRDeRvGAUb/LNrBASrfqAIok+xB0LxK8CHqxZ037viF13ugfsIpePH93mX7xfJp97cyDuTZ3cw==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [netbsd]
+
'@esbuild/netbsd-x64@0.21.5':
resolution: {integrity: sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==}
engines: {node: '>=12'}
@@ -3372,6 +3677,12 @@ packages:
cpu: [x64]
os: [netbsd]
+ '@esbuild/netbsd-x64@0.27.2':
+ resolution: {integrity: sha512-HwGDZ0VLVBY3Y+Nw0JexZy9o/nUAWq9MlV7cahpaXKW6TOzfVno3y3/M8Ga8u8Yr7GldLOov27xiCnqRZf0tCA==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [netbsd]
+
'@esbuild/openbsd-arm64@0.25.10':
resolution: {integrity: sha512-5Se0VM9Wtq797YFn+dLimf2Zx6McttsH2olUBsDml+lm0GOCRVebRWUvDtkY4BWYv/3NgzS8b/UM3jQNh5hYyw==}
engines: {node: '>=18'}
@@ -3384,6 +3695,12 @@ packages:
cpu: [arm64]
os: [openbsd]
+ '@esbuild/openbsd-arm64@0.27.2':
+ resolution: {integrity: sha512-DNIHH2BPQ5551A7oSHD0CKbwIA/Ox7+78/AWkbS5QoRzaqlev2uFayfSxq68EkonB+IKjiuxBFoV8ESJy8bOHA==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [openbsd]
+
'@esbuild/openbsd-x64@0.21.5':
resolution: {integrity: sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==}
engines: {node: '>=12'}
@@ -3402,12 +3719,24 @@ packages:
cpu: [x64]
os: [openbsd]
+ '@esbuild/openbsd-x64@0.27.2':
+ resolution: {integrity: sha512-/it7w9Nb7+0KFIzjalNJVR5bOzA9Vay+yIPLVHfIQYG/j+j9VTH84aNB8ExGKPU4AzfaEvN9/V4HV+F+vo8OEg==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [openbsd]
+
'@esbuild/openharmony-arm64@0.25.10':
resolution: {integrity: sha512-AVTSBhTX8Y/Fz6OmIVBip9tJzZEUcY8WLh7I59+upa5/GPhh2/aM6bvOMQySspnCCHvFi79kMtdJS1w0DXAeag==}
engines: {node: '>=18'}
cpu: [arm64]
os: [openharmony]
+ '@esbuild/openharmony-arm64@0.27.2':
+ resolution: {integrity: sha512-LRBbCmiU51IXfeXk59csuX/aSaToeG7w48nMwA6049Y4J4+VbWALAuXcs+qcD04rHDuSCSRKdmY63sruDS5qag==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [openharmony]
+
'@esbuild/sunos-x64@0.21.5':
resolution: {integrity: sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==}
engines: {node: '>=12'}
@@ -3426,6 +3755,12 @@ packages:
cpu: [x64]
os: [sunos]
+ '@esbuild/sunos-x64@0.27.2':
+ resolution: {integrity: sha512-kMtx1yqJHTmqaqHPAzKCAkDaKsffmXkPHThSfRwZGyuqyIeBvf08KSsYXl+abf5HDAPMJIPnbBfXvP2ZC2TfHg==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [sunos]
+
'@esbuild/win32-arm64@0.21.5':
resolution: {integrity: sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==}
engines: {node: '>=12'}
@@ -3444,6 +3779,12 @@ packages:
cpu: [arm64]
os: [win32]
+ '@esbuild/win32-arm64@0.27.2':
+ resolution: {integrity: sha512-Yaf78O/B3Kkh+nKABUF++bvJv5Ijoy9AN1ww904rOXZFLWVc5OLOfL56W+C8F9xn5JQZa3UX6m+IktJnIb1Jjg==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [win32]
+
'@esbuild/win32-ia32@0.21.5':
resolution: {integrity: sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==}
engines: {node: '>=12'}
@@ -3462,6 +3803,12 @@ packages:
cpu: [ia32]
os: [win32]
+ '@esbuild/win32-ia32@0.27.2':
+ resolution: {integrity: sha512-Iuws0kxo4yusk7sw70Xa2E2imZU5HoixzxfGCdxwBdhiDgt9vX9VUCBhqcwY7/uh//78A1hMkkROMJq9l27oLQ==}
+ engines: {node: '>=18'}
+ cpu: [ia32]
+ os: [win32]
+
'@esbuild/win32-x64@0.21.5':
resolution: {integrity: sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==}
engines: {node: '>=12'}
@@ -3480,12 +3827,24 @@ packages:
cpu: [x64]
os: [win32]
+ '@esbuild/win32-x64@0.27.2':
+ resolution: {integrity: sha512-sRdU18mcKf7F+YgheI/zGf5alZatMUTKj/jNS6l744f9u3WFu4v7twcUI9vu4mknF4Y9aDlblIie0IM+5xxaqQ==}
+ engines: {node: '>=18'}
+ cpu: [x64]
+ os: [win32]
+
'@eslint-community/eslint-utils@4.4.0':
resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
+ '@eslint-community/eslint-utils@4.9.1':
+ resolution: {integrity: sha512-phrYmNiYppR7znFEdqgfWHXR6NCkZEK7hwWDHZUjit/2/U0r6XvkDl0SYnoM51Hq7FhCGdLDT6zxCCOY1hexsQ==}
+ engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ peerDependencies:
+ eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
+
'@eslint-community/regexpp@4.10.0':
resolution: {integrity: sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA==}
engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
@@ -3498,6 +3857,21 @@ packages:
resolution: {integrity: sha512-Ys+3g2TaW7gADOJzPt83SJtCDhMjndcDMFVQ/Tj9iA1BfJzFKD9mAUXT3OenpuPHbI6P/myECxRJrofUsDx/5g==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ '@floating-ui/core@1.7.3':
+ resolution: {integrity: sha512-sGnvb5dmrJaKEZ+LDIpguvdX3bDlEllmv4/ClQ9awcmCZrlx5jQyyMWFM5kBI+EyNOCDDiKk8il0zeuX3Zlg/w==}
+
+ '@floating-ui/dom@1.7.4':
+ resolution: {integrity: sha512-OOchDgh4F2CchOX94cRVqhvy7b3AFb+/rQXyswmzmGakRfkMgoWVjfnLWkRirfLEfuD4ysVW16eXzwt3jHIzKA==}
+
+ '@floating-ui/react-dom@2.1.6':
+ resolution: {integrity: sha512-4JX6rEatQEvlmgU80wZyq9RT96HZJa88q8hp0pBd+LrczeDI4o6uA2M+uvxngVHo4Ihr8uibXxH6+70zhAFrVw==}
+ peerDependencies:
+ react: '>=16.8.0'
+ react-dom: '>=16.8.0'
+
+ '@floating-ui/utils@0.2.10':
+ resolution: {integrity: sha512-aGTxbpbg8/b5JfU1HXSrbH3wXZuLPJcNEcZQFMxLs3oSzgtVu6nFPkbbGGUvBcUjKV2YyB9Wxxabo+HEH9tcRQ==}
+
'@fortawesome/fontawesome-free@6.6.0':
resolution: {integrity: sha512-60G28ke/sXdtS9KZCpZSHHkCbdsOGEhIUGlwq6yhY74UpTiToIh8np7A8yphhM4BWsvNFtIvLpi4co+h9Mr9Ow==}
engines: {node: '>=6'}
@@ -3941,6 +4315,9 @@ packages:
resolution: {integrity: sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==}
engines: {node: '>=6.0.0'}
+ '@jridgewell/remapping@2.3.5':
+ resolution: {integrity: sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==}
+
'@jridgewell/resolve-uri@3.1.2':
resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==}
engines: {node: '>=6.0.0'}
@@ -3952,12 +4329,12 @@ packages:
'@jridgewell/source-map@0.3.6':
resolution: {integrity: sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ==}
- '@jridgewell/sourcemap-codec@1.4.15':
- resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==}
-
'@jridgewell/sourcemap-codec@1.5.0':
resolution: {integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==}
+ '@jridgewell/sourcemap-codec@1.5.5':
+ resolution: {integrity: sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==}
+
'@jridgewell/trace-mapping@0.3.25':
resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==}
@@ -4086,7 +4463,7 @@ packages:
engines: {node: '>=14.0.0'}
peerDependencies:
'@mui/material': ^7.3.0
- '@types/react': ^17.0.0 || ^18.0.0 || ^19.0.0
+ '@types/react': ^17.0.80
react: ^17.0.0 || ^18.0.0 || ^19.0.0
peerDependenciesMeta:
'@types/react':
@@ -4099,7 +4476,7 @@ packages:
'@emotion/react': ^11.5.0
'@emotion/styled': ^11.3.0
'@mui/material-pigment-css': ^7.3.0
- '@types/react': ^17.0.0 || ^18.0.0 || ^19.0.0
+ '@types/react': ^17.0.80
react: ^17.0.0 || ^18.0.0 || ^19.0.0
react-dom: ^17.0.0 || ^18.0.0 || ^19.0.0
peerDependenciesMeta:
@@ -4116,7 +4493,7 @@ packages:
resolution: {integrity: sha512-qU6rkH377L9byQrgXVW4rGsXVs7Q7H65Rj4IaITK3Vj2J5IP9nomMxJ77/w5kbJcEcaDEoLK42Ro3qMtHmvd4Q==}
engines: {node: '>=14.0.0'}
peerDependencies:
- '@types/react': ^17.0.0 || ^18.0.0 || ^19.0.0
+ '@types/react': ^17.0.80
react: ^17.0.0 || ^18.0.0 || ^19.0.0
peerDependenciesMeta:
'@types/react':
@@ -4141,7 +4518,7 @@ packages:
peerDependencies:
'@emotion/react': ^11.5.0
'@emotion/styled': ^11.3.0
- '@types/react': ^17.0.0 || ^18.0.0 || ^19.0.0
+ '@types/react': ^17.0.80
react: ^17.0.0 || ^18.0.0 || ^19.0.0
peerDependenciesMeta:
'@emotion/react':
@@ -4154,7 +4531,7 @@ packages:
'@mui/types@7.4.5':
resolution: {integrity: sha512-ZPwlAOE3e8C0piCKbaabwrqZbW4QvWz0uapVPWya7fYj6PeDkl5sSJmomT7wjOcZGPB48G/a6Ubidqreptxz4g==}
peerDependencies:
- '@types/react': ^17.0.0 || ^18.0.0 || ^19.0.0
+ '@types/react': ^17.0.80
peerDependenciesMeta:
'@types/react':
optional: true
@@ -4162,7 +4539,7 @@ packages:
'@mui/types@7.4.6':
resolution: {integrity: sha512-NVBbIw+4CDMMppNamVxyTccNv0WxtDb7motWDlMeSC8Oy95saj1TIZMGynPpFLePt3yOD8TskzumeqORCgRGWw==}
peerDependencies:
- '@types/react': ^17.0.0 || ^18.0.0 || ^19.0.0
+ '@types/react': ^17.0.80
peerDependenciesMeta:
'@types/react':
optional: true
@@ -4171,7 +4548,7 @@ packages:
resolution: {integrity: sha512-YdL6ebwFV7PIOidIsees3HxkZ8hZjj+/atKLuI1ENwvJJ1puiEoLEmuDU72qSbKu911/GeFa7pc7Cn/ZmAj6yQ==}
engines: {node: '>=14.0.0'}
peerDependencies:
- '@types/react': ^17.0.0 || ^18.0.0 || ^19.0.0
+ '@types/react': ^17.0.80
react: ^17.0.0 || ^18.0.0 || ^19.0.0
peerDependenciesMeta:
'@types/react':
@@ -4181,7 +4558,7 @@ packages:
resolution: {integrity: sha512-4DMWQGenOdLnM3y/SdFQFwKsCLM+mqxzvoWp9+x2XdEzXapkznauHLiXtSohHs/mc0+5/9UACt1GdugCX2te5g==}
engines: {node: '>=14.0.0'}
peerDependencies:
- '@types/react': ^17.0.0 || ^18.0.0 || ^19.0.0
+ '@types/react': ^17.0.80
react: ^17.0.0 || ^18.0.0 || ^19.0.0
peerDependenciesMeta:
'@types/react':
@@ -4663,148 +5040,841 @@ packages:
'@popperjs/core@2.11.8':
resolution: {integrity: sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A==}
- '@rollup/plugin-alias@3.1.9':
- resolution: {integrity: sha512-QI5fsEvm9bDzt32k39wpOwZhVzRcL5ydcffUHMyLVaVaLeC70I8TJZ17F1z1eMoLu4E/UOcH9BWVkKpIKdrfiw==}
- engines: {node: '>=8.0.0'}
- peerDependencies:
- rollup: ^1.20.0||^2.0.0
+ '@radix-ui/number@1.1.1':
+ resolution: {integrity: sha512-MkKCwxlXTgz6CFoJx3pCwn07GKp36+aZyu/u2Ln2VrA5DcdyCZkASEDBTd8x5whTQQL5CiYf4prXKLcgQdv29g==}
- '@rollup/plugin-commonjs@23.0.7':
- resolution: {integrity: sha512-hsSD5Qzyuat/swzrExGG5l7EuIlPhwTsT7KwKbSCQzIcJWjRxiimi/0tyMYY2bByitNb3i1p+6JWEDGa0NvT0Q==}
- engines: {node: '>=14.0.0'}
+ '@radix-ui/primitive@1.1.3':
+ resolution: {integrity: sha512-JTF99U/6XIjCBo0wqkU5sK10glYe27MRRsfwoiq5zzOEZLHU3A3KCMa5X/azekYRCJ0HlwI0crAXS/5dEHTzDg==}
+
+ '@radix-ui/react-accessible-icon@1.1.7':
+ resolution: {integrity: sha512-XM+E4WXl0OqUJFovy6GjmxxFyx9opfCAIUku4dlKRd5YEPqt4kALOkQOp0Of6reHuUkJuiPBEc5k0o4z4lTC8A==}
peerDependencies:
- rollup: ^2.68.0||^3.0.0
+ '@types/react': ^17.0.80
+ '@types/react-dom': ^17.0.25
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
peerDependenciesMeta:
- rollup:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
optional: true
- '@rollup/plugin-inject@5.0.5':
- resolution: {integrity: sha512-2+DEJbNBoPROPkgTDNe8/1YXWcqxbN5DTjASVIOx8HS+pITXushyNiBV56RB08zuptzz8gT3YfkqriTBVycepg==}
- engines: {node: '>=14.0.0'}
+ '@radix-ui/react-accordion@1.2.12':
+ resolution: {integrity: sha512-T4nygeh9YE9dLRPhAHSeOZi7HBXo+0kYIPJXayZfvWOWA0+n3dESrZbjfDPUABkUNym6Hd+f2IR113To8D2GPA==}
peerDependencies:
- rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0
+ '@types/react': ^17.0.80
+ '@types/react-dom': ^17.0.25
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
peerDependenciesMeta:
- rollup:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
optional: true
- '@rollup/plugin-json@5.0.2':
- resolution: {integrity: sha512-D1CoOT2wPvadWLhVcmpkDnesTzjhNIQRWLsc3fA49IFOP2Y84cFOOJ+nKGYedvXHKUsPeq07HR4hXpBBr+CHlA==}
- engines: {node: '>=14.0.0'}
+ '@radix-ui/react-alert-dialog@1.1.15':
+ resolution: {integrity: sha512-oTVLkEw5GpdRe29BqJ0LSDFWI3qu0vR1M0mUkOQWDIUnY/QIkLpgDMWuKxP94c2NAC2LGcgVhG1ImF3jkZ5wXw==}
peerDependencies:
- rollup: ^1.20.0||^2.0.0||^3.0.0
+ '@types/react': ^17.0.80
+ '@types/react-dom': ^17.0.25
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
peerDependenciesMeta:
- rollup:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
optional: true
- '@rollup/plugin-json@6.1.0':
- resolution: {integrity: sha512-EGI2te5ENk1coGeADSIwZ7G2Q8CJS2sF120T7jLw4xFw9n7wIOXHo+kIYRAoVpJAN+kmqZSoO3Fp4JtoNF4ReA==}
- engines: {node: '>=14.0.0'}
+ '@radix-ui/react-arrow@1.1.7':
+ resolution: {integrity: sha512-F+M1tLhO+mlQaOWspE8Wstg+z6PwxwRd8oQ8IXceWz92kfAmalTRf0EjrouQeo7QssEPfCn05B4Ihs1K9WQ/7w==}
peerDependencies:
- rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0
+ '@types/react': ^17.0.80
+ '@types/react-dom': ^17.0.25
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
peerDependenciesMeta:
- rollup:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
optional: true
- '@rollup/plugin-node-resolve@15.2.3':
- resolution: {integrity: sha512-j/lym8nf5E21LwBT4Df1VD6hRO2L2iwUeUmP7litikRsVp1H6NWx20NEp0Y7su+7XGc476GnXXc4kFeZNGmaSQ==}
- engines: {node: '>=14.0.0'}
+ '@radix-ui/react-aspect-ratio@1.1.7':
+ resolution: {integrity: sha512-Yq6lvO9HQyPwev1onK1daHCHqXVLzPhSVjmsNjCa2Zcxy2f7uJD2itDtxknv6FzAKCwD1qQkeVDmX/cev13n/g==}
peerDependencies:
- rollup: ^2.78.0||^3.0.0||^4.0.0
+ '@types/react': ^17.0.80
+ '@types/react-dom': ^17.0.25
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
peerDependenciesMeta:
- rollup:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
optional: true
- '@rollup/plugin-replace@5.0.5':
- resolution: {integrity: sha512-rYO4fOi8lMaTg/z5Jb+hKnrHHVn8j2lwkqwyS4kTRhKyWOLf2wST2sWXr4WzWiTcoHTp2sTjqUbqIj2E39slKQ==}
- engines: {node: '>=14.0.0'}
+ '@radix-ui/react-avatar@1.1.10':
+ resolution: {integrity: sha512-V8piFfWapM5OmNCXTzVQY+E1rDa53zY+MQ4Y7356v4fFz6vqCyUtIz2rUD44ZEdwg78/jKmMJHj07+C/Z/rcog==}
peerDependencies:
- rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0
+ '@types/react': ^17.0.80
+ '@types/react-dom': ^17.0.25
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
peerDependenciesMeta:
- rollup:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
optional: true
- '@rollup/pluginutils@4.2.1':
- resolution: {integrity: sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ==}
- engines: {node: '>= 8.0.0'}
+ '@radix-ui/react-checkbox@1.3.3':
+ resolution: {integrity: sha512-wBbpv+NQftHDdG86Qc0pIyXk5IR3tM8Vd0nWLKDcX8nNn4nXFOFwsKuqw2okA/1D/mpaAkmuyndrPJTYDNZtFw==}
+ peerDependencies:
+ '@types/react': ^17.0.80
+ '@types/react-dom': ^17.0.25
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
- '@rollup/pluginutils@5.1.0':
- resolution: {integrity: sha512-XTIWOPPcpvyKI6L1NHo0lFlCyznUEyPmPY1mc3KpPVDYulHSTvyeLNVW00QTLIAFNhR3kYnJTQHeGqU4M3n09g==}
- engines: {node: '>=14.0.0'}
+ '@radix-ui/react-collapsible@1.1.12':
+ resolution: {integrity: sha512-Uu+mSh4agx2ib1uIGPP4/CKNULyajb3p92LsVXmH2EHVMTfZWpll88XJ0j4W0z3f8NK1eYl1+Mf/szHPmcHzyA==}
peerDependencies:
- rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0
+ '@types/react': ^17.0.80
+ '@types/react-dom': ^17.0.25
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
peerDependenciesMeta:
- rollup:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
optional: true
- '@rollup/rollup-android-arm-eabi@4.34.8':
- resolution: {integrity: sha512-q217OSE8DTp8AFHuNHXo0Y86e1wtlfVrXiAlwkIvGRQv9zbc6mE3sjIVfwI8sYUyNxwOg0j/Vm1RKM04JcWLJw==}
- cpu: [arm]
- os: [android]
+ '@radix-ui/react-collection@1.1.7':
+ resolution: {integrity: sha512-Fh9rGN0MoI4ZFUNyfFVNU4y9LUz93u9/0K+yLgA2bwRojxM8JU1DyvvMBabnZPBgMWREAJvU2jjVzq+LrFUglw==}
+ peerDependencies:
+ '@types/react': ^17.0.80
+ '@types/react-dom': ^17.0.25
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
- '@rollup/rollup-android-arm-eabi@4.52.4':
- resolution: {integrity: sha512-BTm2qKNnWIQ5auf4deoetINJm2JzvihvGb9R6K/ETwKLql/Bb3Eg2H1FBp1gUb4YGbydMA3jcmQTR73q7J+GAA==}
- cpu: [arm]
- os: [android]
+ '@radix-ui/react-compose-refs@1.1.2':
+ resolution: {integrity: sha512-z4eqJvfiNnFMHIIvXP3CY57y2WJs5g2v3X0zm9mEJkrkNv4rDxu+sg9Jh8EkXyeqBkB7SOcboo9dMVqhyrACIg==}
+ peerDependencies:
+ '@types/react': ^17.0.80
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
- '@rollup/rollup-android-arm64@4.34.8':
- resolution: {integrity: sha512-Gigjz7mNWaOL9wCggvoK3jEIUUbGul656opstjaUSGC3eT0BM7PofdAJaBfPFWWkXNVAXbaQtC99OCg4sJv70Q==}
- cpu: [arm64]
- os: [android]
+ '@radix-ui/react-context-menu@2.2.16':
+ resolution: {integrity: sha512-O8morBEW+HsVG28gYDZPTrT9UUovQUlJue5YO836tiTJhuIWBm/zQHc7j388sHWtdH/xUZurK9olD2+pcqx5ww==}
+ peerDependencies:
+ '@types/react': ^17.0.80
+ '@types/react-dom': ^17.0.25
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
- '@rollup/rollup-android-arm64@4.52.4':
- resolution: {integrity: sha512-P9LDQiC5vpgGFgz7GSM6dKPCiqR3XYN1WwJKA4/BUVDjHpYsf3iBEmVz62uyq20NGYbiGPR5cNHI7T1HqxNs2w==}
- cpu: [arm64]
- os: [android]
+ '@radix-ui/react-context@1.1.2':
+ resolution: {integrity: sha512-jCi/QKUM2r1Ju5a3J64TH2A5SpKAgh0LpknyqdQ4m6DCV0xJ2HG1xARRwNGPQfi1SLdLWZ1OJz6F4OMBBNiGJA==}
+ peerDependencies:
+ '@types/react': ^17.0.80
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
- '@rollup/rollup-darwin-arm64@4.34.8':
- resolution: {integrity: sha512-02rVdZ5tgdUNRxIUrFdcMBZQoaPMrxtwSb+/hOfBdqkatYHR3lZ2A2EGyHq2sGOd0Owk80oV3snlDASC24He3Q==}
- cpu: [arm64]
- os: [darwin]
+ '@radix-ui/react-dialog@1.1.15':
+ resolution: {integrity: sha512-TCglVRtzlffRNxRMEyR36DGBLJpeusFcgMVD9PZEzAKnUs1lKCgX5u9BmC2Yg+LL9MgZDugFFs1Vl+Jp4t/PGw==}
+ peerDependencies:
+ '@types/react': ^17.0.80
+ '@types/react-dom': ^17.0.25
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
- '@rollup/rollup-darwin-arm64@4.52.4':
- resolution: {integrity: sha512-QRWSW+bVccAvZF6cbNZBJwAehmvG9NwfWHwMy4GbWi/BQIA/laTIktebT2ipVjNncqE6GLPxOok5hsECgAxGZg==}
- cpu: [arm64]
- os: [darwin]
+ '@radix-ui/react-direction@1.1.1':
+ resolution: {integrity: sha512-1UEWRX6jnOA2y4H5WczZ44gOOjTEmlqv1uNW4GAJEO5+bauCBhv8snY65Iw5/VOS/ghKN9gr2KjnLKxrsvoMVw==}
+ peerDependencies:
+ '@types/react': ^17.0.80
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
- '@rollup/rollup-darwin-x64@4.34.8':
- resolution: {integrity: sha512-qIP/elwR/tq/dYRx3lgwK31jkZvMiD6qUtOycLhTzCvrjbZ3LjQnEM9rNhSGpbLXVJYQ3rq39A6Re0h9tU2ynw==}
- cpu: [x64]
- os: [darwin]
+ '@radix-ui/react-dismissable-layer@1.1.11':
+ resolution: {integrity: sha512-Nqcp+t5cTB8BinFkZgXiMJniQH0PsUt2k51FUhbdfeKvc4ACcG2uQniY/8+h1Yv6Kza4Q7lD7PQV0z0oicE0Mg==}
+ peerDependencies:
+ '@types/react': ^17.0.80
+ '@types/react-dom': ^17.0.25
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
- '@rollup/rollup-darwin-x64@4.52.4':
- resolution: {integrity: sha512-hZgP05pResAkRJxL1b+7yxCnXPGsXU0fG9Yfd6dUaoGk+FhdPKCJ5L1Sumyxn8kvw8Qi5PvQ8ulenUbRjzeCTw==}
- cpu: [x64]
- os: [darwin]
+ '@radix-ui/react-dropdown-menu@2.1.16':
+ resolution: {integrity: sha512-1PLGQEynI/3OX/ftV54COn+3Sud/Mn8vALg2rWnBLnRaGtJDduNW/22XjlGgPdpcIbiQxjKtb7BkcjP00nqfJw==}
+ peerDependencies:
+ '@types/react': ^17.0.80
+ '@types/react-dom': ^17.0.25
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
- '@rollup/rollup-freebsd-arm64@4.34.8':
- resolution: {integrity: sha512-IQNVXL9iY6NniYbTaOKdrlVP3XIqazBgJOVkddzJlqnCpRi/yAeSOa8PLcECFSQochzqApIOE1GHNu3pCz+BDA==}
- cpu: [arm64]
- os: [freebsd]
+ '@radix-ui/react-focus-guards@1.1.3':
+ resolution: {integrity: sha512-0rFg/Rj2Q62NCm62jZw0QX7a3sz6QCQU0LpZdNrJX8byRGaGVTqbrW9jAoIAHyMQqsNpeZ81YgSizOt5WXq0Pw==}
+ peerDependencies:
+ '@types/react': ^17.0.80
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
- '@rollup/rollup-freebsd-arm64@4.52.4':
- resolution: {integrity: sha512-xmc30VshuBNUd58Xk4TKAEcRZHaXlV+tCxIXELiE9sQuK3kG8ZFgSPi57UBJt8/ogfhAF5Oz4ZSUBN77weM+mQ==}
- cpu: [arm64]
- os: [freebsd]
+ '@radix-ui/react-focus-scope@1.1.7':
+ resolution: {integrity: sha512-t2ODlkXBQyn7jkl6TNaw/MtVEVvIGelJDCG41Okq/KwUsJBwQ4XVZsHAVUkK4mBv3ewiAS3PGuUWuY2BoK4ZUw==}
+ peerDependencies:
+ '@types/react': ^17.0.80
+ '@types/react-dom': ^17.0.25
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
- '@rollup/rollup-freebsd-x64@4.34.8':
- resolution: {integrity: sha512-TYXcHghgnCqYFiE3FT5QwXtOZqDj5GmaFNTNt3jNC+vh22dc/ukG2cG+pi75QO4kACohZzidsq7yKTKwq/Jq7Q==}
- cpu: [x64]
- os: [freebsd]
+ '@radix-ui/react-form@0.1.8':
+ resolution: {integrity: sha512-QM70k4Zwjttifr5a4sZFts9fn8FzHYvQ5PiB19O2HsYibaHSVt9fH9rzB0XZo/YcM+b7t/p7lYCT/F5eOeF5yQ==}
+ peerDependencies:
+ '@types/react': ^17.0.80
+ '@types/react-dom': ^17.0.25
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
- '@rollup/rollup-freebsd-x64@4.52.4':
- resolution: {integrity: sha512-WdSLpZFjOEqNZGmHflxyifolwAiZmDQzuOzIq9L27ButpCVpD7KzTRtEG1I0wMPFyiyUdOO+4t8GvrnBLQSwpw==}
- cpu: [x64]
- os: [freebsd]
+ '@radix-ui/react-hover-card@1.1.15':
+ resolution: {integrity: sha512-qgTkjNT1CfKMoP0rcasmlH2r1DAiYicWsDsufxl940sT2wHNEWWv6FMWIQXWhVdmC1d/HYfbhQx60KYyAtKxjg==}
+ peerDependencies:
+ '@types/react': ^17.0.80
+ '@types/react-dom': ^17.0.25
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
- '@rollup/rollup-linux-arm-gnueabihf@4.34.8':
- resolution: {integrity: sha512-A4iphFGNkWRd+5m3VIGuqHnG3MVnqKe7Al57u9mwgbyZ2/xF9Jio72MaY7xxh+Y87VAHmGQr73qoKL9HPbXj1g==}
- cpu: [arm]
- os: [linux]
+ '@radix-ui/react-id@1.1.1':
+ resolution: {integrity: sha512-kGkGegYIdQsOb4XjsfM97rXsiHaBwco+hFI66oO4s9LU+PLAC5oJ7khdOVFxkhsmlbpUqDAvXw11CluXP+jkHg==}
+ peerDependencies:
+ '@types/react': ^17.0.80
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
- '@rollup/rollup-linux-arm-gnueabihf@4.52.4':
- resolution: {integrity: sha512-xRiOu9Of1FZ4SxVbB0iEDXc4ddIcjCv2aj03dmW8UrZIW7aIQ9jVJdLBIhxBI+MaTnGAKyvMwPwQnoOEvP7FgQ==}
- cpu: [arm]
- os: [linux]
+ '@radix-ui/react-label@2.1.7':
+ resolution: {integrity: sha512-YT1GqPSL8kJn20djelMX7/cTRp/Y9w5IZHvfxQTVHrOqa2yMl7i/UfMqKRU5V7mEyKTrUVgJXhNQPVCG8PBLoQ==}
+ peerDependencies:
+ '@types/react': ^17.0.80
+ '@types/react-dom': ^17.0.25
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
+ '@radix-ui/react-menu@2.1.16':
+ resolution: {integrity: sha512-72F2T+PLlphrqLcAotYPp0uJMr5SjP5SL01wfEspJbru5Zs5vQaSHb4VB3ZMJPimgHHCHG7gMOeOB9H3Hdmtxg==}
+ peerDependencies:
+ '@types/react': ^17.0.80
+ '@types/react-dom': ^17.0.25
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
+ '@radix-ui/react-menubar@1.1.16':
+ resolution: {integrity: sha512-EB1FktTz5xRRi2Er974AUQZWg2yVBb1yjip38/lgwtCVRd3a+maUoGHN/xs9Yv8SY8QwbSEb+YrxGadVWbEutA==}
+ peerDependencies:
+ '@types/react': ^17.0.80
+ '@types/react-dom': ^17.0.25
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
+ '@radix-ui/react-navigation-menu@1.2.14':
+ resolution: {integrity: sha512-YB9mTFQvCOAQMHU+C/jVl96WmuWeltyUEpRJJky51huhds5W2FQr1J8D/16sQlf0ozxkPK8uF3niQMdUwZPv5w==}
+ peerDependencies:
+ '@types/react': ^17.0.80
+ '@types/react-dom': ^17.0.25
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
+ '@radix-ui/react-one-time-password-field@0.1.8':
+ resolution: {integrity: sha512-ycS4rbwURavDPVjCb5iS3aG4lURFDILi6sKI/WITUMZ13gMmn/xGjpLoqBAalhJaDk8I3UbCM5GzKHrnzwHbvg==}
+ peerDependencies:
+ '@types/react': ^17.0.80
+ '@types/react-dom': ^17.0.25
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
+ '@radix-ui/react-password-toggle-field@0.1.3':
+ resolution: {integrity: sha512-/UuCrDBWravcaMix4TdT+qlNdVwOM1Nck9kWx/vafXsdfj1ChfhOdfi3cy9SGBpWgTXwYCuboT/oYpJy3clqfw==}
+ peerDependencies:
+ '@types/react': ^17.0.80
+ '@types/react-dom': ^17.0.25
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
+ '@radix-ui/react-popover@1.1.15':
+ resolution: {integrity: sha512-kr0X2+6Yy/vJzLYJUPCZEc8SfQcf+1COFoAqauJm74umQhta9M7lNJHP7QQS3vkvcGLQUbWpMzwrXYwrYztHKA==}
+ peerDependencies:
+ '@types/react': ^17.0.80
+ '@types/react-dom': ^17.0.25
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
+ '@radix-ui/react-popper@1.2.8':
+ resolution: {integrity: sha512-0NJQ4LFFUuWkE7Oxf0htBKS6zLkkjBH+hM1uk7Ng705ReR8m/uelduy1DBo0PyBXPKVnBA6YBlU94MBGXrSBCw==}
+ peerDependencies:
+ '@types/react': ^17.0.80
+ '@types/react-dom': ^17.0.25
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
+ '@radix-ui/react-portal@1.1.9':
+ resolution: {integrity: sha512-bpIxvq03if6UNwXZ+HTK71JLh4APvnXntDc6XOX8UVq4XQOVl7lwok0AvIl+b8zgCw3fSaVTZMpAPPagXbKmHQ==}
+ peerDependencies:
+ '@types/react': ^17.0.80
+ '@types/react-dom': ^17.0.25
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
+ '@radix-ui/react-presence@1.1.5':
+ resolution: {integrity: sha512-/jfEwNDdQVBCNvjkGit4h6pMOzq8bHkopq458dPt2lMjx+eBQUohZNG9A7DtO/O5ukSbxuaNGXMjHicgwy6rQQ==}
+ peerDependencies:
+ '@types/react': ^17.0.80
+ '@types/react-dom': ^17.0.25
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
+ '@radix-ui/react-primitive@2.1.3':
+ resolution: {integrity: sha512-m9gTwRkhy2lvCPe6QJp4d3G1TYEUHn/FzJUtq9MjH46an1wJU+GdoGC5VLof8RX8Ft/DlpshApkhswDLZzHIcQ==}
+ peerDependencies:
+ '@types/react': ^17.0.80
+ '@types/react-dom': ^17.0.25
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
+ '@radix-ui/react-progress@1.1.7':
+ resolution: {integrity: sha512-vPdg/tF6YC/ynuBIJlk1mm7Le0VgW6ub6J2UWnTQ7/D23KXcPI1qy+0vBkgKgd38RCMJavBXpB83HPNFMTb0Fg==}
+ peerDependencies:
+ '@types/react': ^17.0.80
+ '@types/react-dom': ^17.0.25
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
+ '@radix-ui/react-radio-group@1.3.8':
+ resolution: {integrity: sha512-VBKYIYImA5zsxACdisNQ3BjCBfmbGH3kQlnFVqlWU4tXwjy7cGX8ta80BcrO+WJXIn5iBylEH3K6ZTlee//lgQ==}
+ peerDependencies:
+ '@types/react': ^17.0.80
+ '@types/react-dom': ^17.0.25
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
+ '@radix-ui/react-roving-focus@1.1.11':
+ resolution: {integrity: sha512-7A6S9jSgm/S+7MdtNDSb+IU859vQqJ/QAtcYQcfFC6W8RS4IxIZDldLR0xqCFZ6DCyrQLjLPsxtTNch5jVA4lA==}
+ peerDependencies:
+ '@types/react': ^17.0.80
+ '@types/react-dom': ^17.0.25
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
+ '@radix-ui/react-scroll-area@1.2.10':
+ resolution: {integrity: sha512-tAXIa1g3sM5CGpVT0uIbUx/U3Gs5N8T52IICuCtObaos1S8fzsrPXG5WObkQN3S6NVl6wKgPhAIiBGbWnvc97A==}
+ peerDependencies:
+ '@types/react': ^17.0.80
+ '@types/react-dom': ^17.0.25
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
+ '@radix-ui/react-select@2.2.6':
+ resolution: {integrity: sha512-I30RydO+bnn2PQztvo25tswPH+wFBjehVGtmagkU78yMdwTwVf12wnAOF+AeP8S2N8xD+5UPbGhkUfPyvT+mwQ==}
+ peerDependencies:
+ '@types/react': ^17.0.80
+ '@types/react-dom': ^17.0.25
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
+ '@radix-ui/react-separator@1.1.7':
+ resolution: {integrity: sha512-0HEb8R9E8A+jZjvmFCy/J4xhbXy3TV+9XSnGJ3KvTtjlIUy/YQ/p6UYZvi7YbeoeXdyU9+Y3scizK6hkY37baA==}
+ peerDependencies:
+ '@types/react': ^17.0.80
+ '@types/react-dom': ^17.0.25
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
+ '@radix-ui/react-slider@1.3.6':
+ resolution: {integrity: sha512-JPYb1GuM1bxfjMRlNLE+BcmBC8onfCi60Blk7OBqi2MLTFdS+8401U4uFjnwkOr49BLmXxLC6JHkvAsx5OJvHw==}
+ peerDependencies:
+ '@types/react': ^17.0.80
+ '@types/react-dom': ^17.0.25
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
+ '@radix-ui/react-slot@1.2.3':
+ resolution: {integrity: sha512-aeNmHnBxbi2St0au6VBVC7JXFlhLlOnvIIlePNniyUNAClzmtAUEY8/pBiK3iHjufOlwA+c20/8jngo7xcrg8A==}
+ peerDependencies:
+ '@types/react': ^17.0.80
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
+ '@radix-ui/react-switch@1.2.6':
+ resolution: {integrity: sha512-bByzr1+ep1zk4VubeEVViV592vu2lHE2BZY5OnzehZqOOgogN80+mNtCqPkhn2gklJqOpxWgPoYTSnhBCqpOXQ==}
+ peerDependencies:
+ '@types/react': ^17.0.80
+ '@types/react-dom': ^17.0.25
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
+ '@radix-ui/react-tabs@1.1.13':
+ resolution: {integrity: sha512-7xdcatg7/U+7+Udyoj2zodtI9H/IIopqo+YOIcZOq1nJwXWBZ9p8xiu5llXlekDbZkca79a/fozEYQXIA4sW6A==}
+ peerDependencies:
+ '@types/react': ^17.0.80
+ '@types/react-dom': ^17.0.25
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
+ '@radix-ui/react-toast@1.2.15':
+ resolution: {integrity: sha512-3OSz3TacUWy4WtOXV38DggwxoqJK4+eDkNMl5Z/MJZaoUPaP4/9lf81xXMe1I2ReTAptverZUpbPY4wWwWyL5g==}
+ peerDependencies:
+ '@types/react': ^17.0.80
+ '@types/react-dom': ^17.0.25
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
+ '@radix-ui/react-toggle-group@1.1.11':
+ resolution: {integrity: sha512-5umnS0T8JQzQT6HbPyO7Hh9dgd82NmS36DQr+X/YJ9ctFNCiiQd6IJAYYZ33LUwm8M+taCz5t2ui29fHZc4Y6Q==}
+ peerDependencies:
+ '@types/react': ^17.0.80
+ '@types/react-dom': ^17.0.25
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
+ '@radix-ui/react-toggle@1.1.10':
+ resolution: {integrity: sha512-lS1odchhFTeZv3xwHH31YPObmJn8gOg7Lq12inrr0+BH/l3Tsq32VfjqH1oh80ARM3mlkfMic15n0kg4sD1poQ==}
+ peerDependencies:
+ '@types/react': ^17.0.80
+ '@types/react-dom': ^17.0.25
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
+ '@radix-ui/react-toolbar@1.1.11':
+ resolution: {integrity: sha512-4ol06/1bLoFu1nwUqzdD4Y5RZ9oDdKeiHIsntug54Hcr1pgaHiPqHFEaXI1IFP/EsOfROQZ8Mig9VTIRza6Tjg==}
+ peerDependencies:
+ '@types/react': ^17.0.80
+ '@types/react-dom': ^17.0.25
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
+ '@radix-ui/react-tooltip@1.2.8':
+ resolution: {integrity: sha512-tY7sVt1yL9ozIxvmbtN5qtmH2krXcBCfjEiCgKGLqunJHvgvZG2Pcl2oQ3kbcZARb1BGEHdkLzcYGO8ynVlieg==}
+ peerDependencies:
+ '@types/react': ^17.0.80
+ '@types/react-dom': ^17.0.25
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
+ '@radix-ui/react-use-callback-ref@1.1.1':
+ resolution: {integrity: sha512-FkBMwD+qbGQeMu1cOHnuGB6x4yzPjho8ap5WtbEJ26umhgqVXbhekKUQO+hZEL1vU92a3wHwdp0HAcqAUF5iDg==}
+ peerDependencies:
+ '@types/react': ^17.0.80
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
+ '@radix-ui/react-use-controllable-state@1.2.2':
+ resolution: {integrity: sha512-BjasUjixPFdS+NKkypcyyN5Pmg83Olst0+c6vGov0diwTEo6mgdqVR6hxcEgFuh4QrAs7Rc+9KuGJ9TVCj0Zzg==}
+ peerDependencies:
+ '@types/react': ^17.0.80
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
+ '@radix-ui/react-use-effect-event@0.0.2':
+ resolution: {integrity: sha512-Qp8WbZOBe+blgpuUT+lw2xheLP8q0oatc9UpmiemEICxGvFLYmHm9QowVZGHtJlGbS6A6yJ3iViad/2cVjnOiA==}
+ peerDependencies:
+ '@types/react': ^17.0.80
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
+ '@radix-ui/react-use-escape-keydown@1.1.1':
+ resolution: {integrity: sha512-Il0+boE7w/XebUHyBjroE+DbByORGR9KKmITzbR7MyQ4akpORYP/ZmbhAr0DG7RmmBqoOnZdy2QlvajJ2QA59g==}
+ peerDependencies:
+ '@types/react': ^17.0.80
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
+ '@radix-ui/react-use-is-hydrated@0.1.0':
+ resolution: {integrity: sha512-U+UORVEq+cTnRIaostJv9AGdV3G6Y+zbVd+12e18jQ5A3c0xL03IhnHuiU4UV69wolOQp5GfR58NW/EgdQhwOA==}
+ peerDependencies:
+ '@types/react': ^17.0.80
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
+ '@radix-ui/react-use-layout-effect@1.1.1':
+ resolution: {integrity: sha512-RbJRS4UWQFkzHTTwVymMTUv8EqYhOp8dOOviLj2ugtTiXRaRQS7GLGxZTLL1jWhMeoSCf5zmcZkqTl9IiYfXcQ==}
+ peerDependencies:
+ '@types/react': ^17.0.80
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
+ '@radix-ui/react-use-previous@1.1.1':
+ resolution: {integrity: sha512-2dHfToCj/pzca2Ck724OZ5L0EVrr3eHRNsG/b3xQJLA2hZpVCS99bLAX+hm1IHXDEnzU6by5z/5MIY794/a8NQ==}
+ peerDependencies:
+ '@types/react': ^17.0.80
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
+ '@radix-ui/react-use-rect@1.1.1':
+ resolution: {integrity: sha512-QTYuDesS0VtuHNNvMh+CjlKJ4LJickCMUAqjlE3+j8w+RlRpwyX3apEQKGFzbZGdo7XNG1tXa+bQqIE7HIXT2w==}
+ peerDependencies:
+ '@types/react': ^17.0.80
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
+ '@radix-ui/react-use-size@1.1.1':
+ resolution: {integrity: sha512-ewrXRDTAqAXlkl6t/fkXWNAhFX9I+CkKlw6zjEwk86RSPKwZr3xpBRso655aqYafwtnbpHLj6toFzmd6xdVptQ==}
+ peerDependencies:
+ '@types/react': ^17.0.80
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
+ '@radix-ui/react-visually-hidden@1.2.3':
+ resolution: {integrity: sha512-pzJq12tEaaIhqjbzpCuv/OypJY/BPavOofm+dbab+MHLajy277+1lLm6JFcGgF5eskJ6mquGirhXY2GD/8u8Ug==}
+ peerDependencies:
+ '@types/react': ^17.0.80
+ '@types/react-dom': ^17.0.25
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
+ '@radix-ui/rect@1.1.1':
+ resolution: {integrity: sha512-HPwpGIzkl28mWyZqG52jiqDJ12waP11Pa1lGoiyUkIEuMLBP0oeK/C89esbXrxsky5we7dfd8U58nm0SgAWpVw==}
+
+ '@rolldown/pluginutils@1.0.0-beta.27':
+ resolution: {integrity: sha512-+d0F4MKMCbeVUJwG96uQ4SgAznZNSq93I3V+9NHA4OpvqG8mRCpGdKmK8l/dl02h2CCDHwW2FqilnTyDcAnqjA==}
+
+ '@rollup/plugin-alias@3.1.9':
+ resolution: {integrity: sha512-QI5fsEvm9bDzt32k39wpOwZhVzRcL5ydcffUHMyLVaVaLeC70I8TJZ17F1z1eMoLu4E/UOcH9BWVkKpIKdrfiw==}
+ engines: {node: '>=8.0.0'}
+ peerDependencies:
+ rollup: ^1.20.0||^2.0.0
+
+ '@rollup/plugin-commonjs@23.0.7':
+ resolution: {integrity: sha512-hsSD5Qzyuat/swzrExGG5l7EuIlPhwTsT7KwKbSCQzIcJWjRxiimi/0tyMYY2bByitNb3i1p+6JWEDGa0NvT0Q==}
+ engines: {node: '>=14.0.0'}
+ peerDependencies:
+ rollup: ^2.68.0||^3.0.0
+ peerDependenciesMeta:
+ rollup:
+ optional: true
+
+ '@rollup/plugin-inject@5.0.5':
+ resolution: {integrity: sha512-2+DEJbNBoPROPkgTDNe8/1YXWcqxbN5DTjASVIOx8HS+pITXushyNiBV56RB08zuptzz8gT3YfkqriTBVycepg==}
+ engines: {node: '>=14.0.0'}
+ peerDependencies:
+ rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0
+ peerDependenciesMeta:
+ rollup:
+ optional: true
+
+ '@rollup/plugin-json@5.0.2':
+ resolution: {integrity: sha512-D1CoOT2wPvadWLhVcmpkDnesTzjhNIQRWLsc3fA49IFOP2Y84cFOOJ+nKGYedvXHKUsPeq07HR4hXpBBr+CHlA==}
+ engines: {node: '>=14.0.0'}
+ peerDependencies:
+ rollup: ^1.20.0||^2.0.0||^3.0.0
+ peerDependenciesMeta:
+ rollup:
+ optional: true
+
+ '@rollup/plugin-json@6.1.0':
+ resolution: {integrity: sha512-EGI2te5ENk1coGeADSIwZ7G2Q8CJS2sF120T7jLw4xFw9n7wIOXHo+kIYRAoVpJAN+kmqZSoO3Fp4JtoNF4ReA==}
+ engines: {node: '>=14.0.0'}
+ peerDependencies:
+ rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0
+ peerDependenciesMeta:
+ rollup:
+ optional: true
+
+ '@rollup/plugin-node-resolve@15.2.3':
+ resolution: {integrity: sha512-j/lym8nf5E21LwBT4Df1VD6hRO2L2iwUeUmP7litikRsVp1H6NWx20NEp0Y7su+7XGc476GnXXc4kFeZNGmaSQ==}
+ engines: {node: '>=14.0.0'}
+ peerDependencies:
+ rollup: ^2.78.0||^3.0.0||^4.0.0
+ peerDependenciesMeta:
+ rollup:
+ optional: true
+
+ '@rollup/plugin-replace@5.0.5':
+ resolution: {integrity: sha512-rYO4fOi8lMaTg/z5Jb+hKnrHHVn8j2lwkqwyS4kTRhKyWOLf2wST2sWXr4WzWiTcoHTp2sTjqUbqIj2E39slKQ==}
+ engines: {node: '>=14.0.0'}
+ peerDependencies:
+ rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0
+ peerDependenciesMeta:
+ rollup:
+ optional: true
+
+ '@rollup/pluginutils@4.2.1':
+ resolution: {integrity: sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ==}
+ engines: {node: '>= 8.0.0'}
+
+ '@rollup/pluginutils@5.1.0':
+ resolution: {integrity: sha512-XTIWOPPcpvyKI6L1NHo0lFlCyznUEyPmPY1mc3KpPVDYulHSTvyeLNVW00QTLIAFNhR3kYnJTQHeGqU4M3n09g==}
+ engines: {node: '>=14.0.0'}
+ peerDependencies:
+ rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0
+ peerDependenciesMeta:
+ rollup:
+ optional: true
+
+ '@rollup/rollup-android-arm-eabi@4.34.8':
+ resolution: {integrity: sha512-q217OSE8DTp8AFHuNHXo0Y86e1wtlfVrXiAlwkIvGRQv9zbc6mE3sjIVfwI8sYUyNxwOg0j/Vm1RKM04JcWLJw==}
+ cpu: [arm]
+ os: [android]
+
+ '@rollup/rollup-android-arm-eabi@4.52.4':
+ resolution: {integrity: sha512-BTm2qKNnWIQ5auf4deoetINJm2JzvihvGb9R6K/ETwKLql/Bb3Eg2H1FBp1gUb4YGbydMA3jcmQTR73q7J+GAA==}
+ cpu: [arm]
+ os: [android]
+
+ '@rollup/rollup-android-arm64@4.34.8':
+ resolution: {integrity: sha512-Gigjz7mNWaOL9wCggvoK3jEIUUbGul656opstjaUSGC3eT0BM7PofdAJaBfPFWWkXNVAXbaQtC99OCg4sJv70Q==}
+ cpu: [arm64]
+ os: [android]
+
+ '@rollup/rollup-android-arm64@4.52.4':
+ resolution: {integrity: sha512-P9LDQiC5vpgGFgz7GSM6dKPCiqR3XYN1WwJKA4/BUVDjHpYsf3iBEmVz62uyq20NGYbiGPR5cNHI7T1HqxNs2w==}
+ cpu: [arm64]
+ os: [android]
+
+ '@rollup/rollup-darwin-arm64@4.34.8':
+ resolution: {integrity: sha512-02rVdZ5tgdUNRxIUrFdcMBZQoaPMrxtwSb+/hOfBdqkatYHR3lZ2A2EGyHq2sGOd0Owk80oV3snlDASC24He3Q==}
+ cpu: [arm64]
+ os: [darwin]
+
+ '@rollup/rollup-darwin-arm64@4.52.4':
+ resolution: {integrity: sha512-QRWSW+bVccAvZF6cbNZBJwAehmvG9NwfWHwMy4GbWi/BQIA/laTIktebT2ipVjNncqE6GLPxOok5hsECgAxGZg==}
+ cpu: [arm64]
+ os: [darwin]
+
+ '@rollup/rollup-darwin-x64@4.34.8':
+ resolution: {integrity: sha512-qIP/elwR/tq/dYRx3lgwK31jkZvMiD6qUtOycLhTzCvrjbZ3LjQnEM9rNhSGpbLXVJYQ3rq39A6Re0h9tU2ynw==}
+ cpu: [x64]
+ os: [darwin]
+
+ '@rollup/rollup-darwin-x64@4.52.4':
+ resolution: {integrity: sha512-hZgP05pResAkRJxL1b+7yxCnXPGsXU0fG9Yfd6dUaoGk+FhdPKCJ5L1Sumyxn8kvw8Qi5PvQ8ulenUbRjzeCTw==}
+ cpu: [x64]
+ os: [darwin]
+
+ '@rollup/rollup-freebsd-arm64@4.34.8':
+ resolution: {integrity: sha512-IQNVXL9iY6NniYbTaOKdrlVP3XIqazBgJOVkddzJlqnCpRi/yAeSOa8PLcECFSQochzqApIOE1GHNu3pCz+BDA==}
+ cpu: [arm64]
+ os: [freebsd]
+
+ '@rollup/rollup-freebsd-arm64@4.52.4':
+ resolution: {integrity: sha512-xmc30VshuBNUd58Xk4TKAEcRZHaXlV+tCxIXELiE9sQuK3kG8ZFgSPi57UBJt8/ogfhAF5Oz4ZSUBN77weM+mQ==}
+ cpu: [arm64]
+ os: [freebsd]
+
+ '@rollup/rollup-freebsd-x64@4.34.8':
+ resolution: {integrity: sha512-TYXcHghgnCqYFiE3FT5QwXtOZqDj5GmaFNTNt3jNC+vh22dc/ukG2cG+pi75QO4kACohZzidsq7yKTKwq/Jq7Q==}
+ cpu: [x64]
+ os: [freebsd]
+
+ '@rollup/rollup-freebsd-x64@4.52.4':
+ resolution: {integrity: sha512-WdSLpZFjOEqNZGmHflxyifolwAiZmDQzuOzIq9L27ButpCVpD7KzTRtEG1I0wMPFyiyUdOO+4t8GvrnBLQSwpw==}
+ cpu: [x64]
+ os: [freebsd]
+
+ '@rollup/rollup-linux-arm-gnueabihf@4.34.8':
+ resolution: {integrity: sha512-A4iphFGNkWRd+5m3VIGuqHnG3MVnqKe7Al57u9mwgbyZ2/xF9Jio72MaY7xxh+Y87VAHmGQr73qoKL9HPbXj1g==}
+ cpu: [arm]
+ os: [linux]
+
+ '@rollup/rollup-linux-arm-gnueabihf@4.52.4':
+ resolution: {integrity: sha512-xRiOu9Of1FZ4SxVbB0iEDXc4ddIcjCv2aj03dmW8UrZIW7aIQ9jVJdLBIhxBI+MaTnGAKyvMwPwQnoOEvP7FgQ==}
+ cpu: [arm]
+ os: [linux]
'@rollup/rollup-linux-arm-musleabihf@4.34.8':
resolution: {integrity: sha512-S0lqKLfTm5u+QTxlFiAnb2J/2dgQqRy/XvziPtDd1rKZFXHTyYLoVL58M/XFwDI01AQCDIevGLbQrMAtdyanpA==}
@@ -5060,6 +6130,96 @@ packages:
'@soda/get-current-script@1.0.2':
resolution: {integrity: sha512-T7VNNlYVM1SgQ+VsMYhnDkcGmWhQdL0bDyGm5TlQ3GBXnJscEClUUOKduWTmm2zCnvNLC1hc3JpuXjs/nFOc5w==}
+ '@tailwindcss/node@4.1.18':
+ resolution: {integrity: sha512-DoR7U1P7iYhw16qJ49fgXUlry1t4CpXeErJHnQ44JgTSKMaZUdf17cfn5mHchfJ4KRBZRFA/Coo+MUF5+gOaCQ==}
+
+ '@tailwindcss/oxide-android-arm64@4.1.18':
+ resolution: {integrity: sha512-dJHz7+Ugr9U/diKJA0W6N/6/cjI+ZTAoxPf9Iz9BFRF2GzEX8IvXxFIi/dZBloVJX/MZGvRuFA9rqwdiIEZQ0Q==}
+ engines: {node: '>= 10'}
+ cpu: [arm64]
+ os: [android]
+
+ '@tailwindcss/oxide-darwin-arm64@4.1.18':
+ resolution: {integrity: sha512-Gc2q4Qhs660bhjyBSKgq6BYvwDz4G+BuyJ5H1xfhmDR3D8HnHCmT/BSkvSL0vQLy/nkMLY20PQ2OoYMO15Jd0A==}
+ engines: {node: '>= 10'}
+ cpu: [arm64]
+ os: [darwin]
+
+ '@tailwindcss/oxide-darwin-x64@4.1.18':
+ resolution: {integrity: sha512-FL5oxr2xQsFrc3X9o1fjHKBYBMD1QZNyc1Xzw/h5Qu4XnEBi3dZn96HcHm41c/euGV+GRiXFfh2hUCyKi/e+yw==}
+ engines: {node: '>= 10'}
+ cpu: [x64]
+ os: [darwin]
+
+ '@tailwindcss/oxide-freebsd-x64@4.1.18':
+ resolution: {integrity: sha512-Fj+RHgu5bDodmV1dM9yAxlfJwkkWvLiRjbhuO2LEtwtlYlBgiAT4x/j5wQr1tC3SANAgD+0YcmWVrj8R9trVMA==}
+ engines: {node: '>= 10'}
+ cpu: [x64]
+ os: [freebsd]
+
+ '@tailwindcss/oxide-linux-arm-gnueabihf@4.1.18':
+ resolution: {integrity: sha512-Fp+Wzk/Ws4dZn+LV2Nqx3IilnhH51YZoRaYHQsVq3RQvEl+71VGKFpkfHrLM/Li+kt5c0DJe/bHXK1eHgDmdiA==}
+ engines: {node: '>= 10'}
+ cpu: [arm]
+ os: [linux]
+
+ '@tailwindcss/oxide-linux-arm64-gnu@4.1.18':
+ resolution: {integrity: sha512-S0n3jboLysNbh55Vrt7pk9wgpyTTPD0fdQeh7wQfMqLPM/Hrxi+dVsLsPrycQjGKEQk85Kgbx+6+QnYNiHalnw==}
+ engines: {node: '>= 10'}
+ cpu: [arm64]
+ os: [linux]
+
+ '@tailwindcss/oxide-linux-arm64-musl@4.1.18':
+ resolution: {integrity: sha512-1px92582HkPQlaaCkdRcio71p8bc8i/ap5807tPRDK/uw953cauQBT8c5tVGkOwrHMfc2Yh6UuxaH4vtTjGvHg==}
+ engines: {node: '>= 10'}
+ cpu: [arm64]
+ os: [linux]
+
+ '@tailwindcss/oxide-linux-x64-gnu@4.1.18':
+ resolution: {integrity: sha512-v3gyT0ivkfBLoZGF9LyHmts0Isc8jHZyVcbzio6Wpzifg/+5ZJpDiRiUhDLkcr7f/r38SWNe7ucxmGW3j3Kb/g==}
+ engines: {node: '>= 10'}
+ cpu: [x64]
+ os: [linux]
+
+ '@tailwindcss/oxide-linux-x64-musl@4.1.18':
+ resolution: {integrity: sha512-bhJ2y2OQNlcRwwgOAGMY0xTFStt4/wyU6pvI6LSuZpRgKQwxTec0/3Scu91O8ir7qCR3AuepQKLU/kX99FouqQ==}
+ engines: {node: '>= 10'}
+ cpu: [x64]
+ os: [linux]
+
+ '@tailwindcss/oxide-wasm32-wasi@4.1.18':
+ resolution: {integrity: sha512-LffYTvPjODiP6PT16oNeUQJzNVyJl1cjIebq/rWWBF+3eDst5JGEFSc5cWxyRCJ0Mxl+KyIkqRxk1XPEs9x8TA==}
+ engines: {node: '>=14.0.0'}
+ cpu: [wasm32]
+ bundledDependencies:
+ - '@napi-rs/wasm-runtime'
+ - '@emnapi/core'
+ - '@emnapi/runtime'
+ - '@tybys/wasm-util'
+ - '@emnapi/wasi-threads'
+ - tslib
+
+ '@tailwindcss/oxide-win32-arm64-msvc@4.1.18':
+ resolution: {integrity: sha512-HjSA7mr9HmC8fu6bdsZvZ+dhjyGCLdotjVOgLA2vEqxEBZaQo9YTX4kwgEvPCpRh8o4uWc4J/wEoFzhEmjvPbA==}
+ engines: {node: '>= 10'}
+ cpu: [arm64]
+ os: [win32]
+
+ '@tailwindcss/oxide-win32-x64-msvc@4.1.18':
+ resolution: {integrity: sha512-bJWbyYpUlqamC8dpR7pfjA0I7vdF6t5VpUGMWRkXVE3AXgIZjYUYAK7II1GNaxR8J1SSrSrppRar8G++JekE3Q==}
+ engines: {node: '>= 10'}
+ cpu: [x64]
+ os: [win32]
+
+ '@tailwindcss/oxide@4.1.18':
+ resolution: {integrity: sha512-EgCR5tTS5bUSKQgzeMClT6iCY3ToqE1y+ZB0AKldj809QXk1Y+3jB0upOYZrn9aGIzPtUsP7sX4QQ4XtjBB95A==}
+ engines: {node: '>= 10'}
+
+ '@tailwindcss/vite@4.1.18':
+ resolution: {integrity: sha512-jVA+/UpKL1vRLg6Hkao5jldawNmRo7mQYrZtNHMIVpLfLhDml5nMRUo/8MwoX2vNXvnaXNNMedrMfMugAVX1nA==}
+ peerDependencies:
+ vite: ^5.2.0 || ^6 || ^7
+
'@tootallnate/once@2.0.0':
resolution: {integrity: sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==}
engines: {node: '>= 10'}
@@ -5242,6 +6402,9 @@ packages:
'@types/node@22.13.8':
resolution: {integrity: sha512-G3EfaZS+iOGYWLLRCEAXdWK9my08oHNZ+FHluRiggIYJPOXzhOiDgpVCUHaUvyIC5/fj7C/p637jdzC666AOKQ==}
+ '@types/node@24.10.9':
+ resolution: {integrity: sha512-ne4A0IpG3+2ETuREInjPNhUGis1SFjv1d5asp8MzEAGtOZeTeHVDOYqOgqfhvseqg/iXty2hjBf1zAOb7RNiNw==}
+
'@types/normalize-package-data@2.4.4':
resolution: {integrity: sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==}
@@ -5251,9 +6414,6 @@ packages:
'@types/parse-json@4.0.2':
resolution: {integrity: sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==}
- '@types/prop-types@15.7.12':
- resolution: {integrity: sha512-5zvhXYtRNRluoE/jAp4GVsSduVUzNWKkOZrCDBWYtE7biZywwdC2AcEzg+cSMLFRfVgeAFqpfNabiPjxFddV1Q==}
-
'@types/prop-types@15.7.15':
resolution: {integrity: sha512-F6bEyamV9jKGAFBEmlQnesRPGOQqS2+Uwi0Em15xenOxHaf2hv6L8YCVn3rPdPJOiJfPiCnLIRyvwVaqMY3MIw==}
@@ -5281,10 +6441,7 @@ packages:
'@types/react-transition-group@4.4.12':
resolution: {integrity: sha512-8TV6R3h2j7a91c+1DXdJi3Syo69zzIZbz7Lg5tORM5LEJG7X/E6a1V3drRyBRZq7/utz7A+c4OgYLiLcYGHG6w==}
peerDependencies:
- '@types/react': '*'
-
- '@types/react@16.14.60':
- resolution: {integrity: sha512-wIFmnczGsTcgwCBeIYOuy2mdXEiKZ5znU/jNOnMZPQyCcIxauMGWlX0TNG4lZ7NxRKj7YUIZRneJQSSdB2jKgg==}
+ '@types/react': ^17.0.80
'@types/react@17.0.80':
resolution: {integrity: sha512-LrgHIu2lEtIo8M7d1FcI3BdwXWoRQwMoXOZ7+dPTW0lYREjmlHl3P0U1VD0i/9tppOuv8/sam7sOjx34TxSFbA==}
@@ -5391,6 +6548,12 @@ packages:
typescript:
optional: true
+ '@typescript-eslint/project-service@8.53.1':
+ resolution: {integrity: sha512-WYC4FB5Ra0xidsmlPb+1SsnaSKPmS3gsjIARwbEkHkoWloQmuzcfypljaJcR78uyLA1h8sHdWWPHSLDI+MtNog==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ peerDependencies:
+ typescript: '>=4.8.4 <6.0.0'
+
'@typescript-eslint/scope-manager@5.62.0':
resolution: {integrity: sha512-VXuvVvZeQCQb5Zgf4HAxc04q5j+WrNAtNh9OwCsCgpKqESMTu3tF/jhZ3xG6T4NZwWl65Bg8KuS2uEvhSfLl0w==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
@@ -5399,6 +6562,16 @@ packages:
resolution: {integrity: sha512-jjhdIE/FPF2B7Z1uzc6i3oWKbGcHb87Qw7AWj6jmEqNOfDFbJWtjt/XfwCpvNkpGWlcJaog5vTR+VV8+w9JflA==}
engines: {node: ^18.18.0 || >=20.0.0}
+ '@typescript-eslint/scope-manager@8.53.1':
+ resolution: {integrity: sha512-Lu23yw1uJMFY8cUeq7JlrizAgeQvWugNQzJp8C3x8Eo5Jw5Q2ykMdiiTB9vBVOOUBysMzmRRmUfwFrZuI2C4SQ==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
+ '@typescript-eslint/tsconfig-utils@8.53.1':
+ resolution: {integrity: sha512-qfvLXS6F6b1y43pnf0pPbXJ+YoXIC7HKg0UGZ27uMIemKMKA6XH2DTxsEDdpdN29D+vHV07x/pnlPNVLhdhWiA==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ peerDependencies:
+ typescript: '>=4.8.4 <6.0.0'
+
'@typescript-eslint/type-utils@5.62.0':
resolution: {integrity: sha512-xsSQreu+VnfbqQpW5vnCJdq1Z3Q0U31qiWmRhr98ONQmcp/yhiPJFPq8MXiJVLiksmOKSjIldZzkebzHuCGzew==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
@@ -5427,6 +6600,10 @@ packages:
resolution: {integrity: sha512-iZqi+Ds1y4EDYUtlOOC+aUmxnE9xS/yCigkjA7XpTKV6nCBd3Hp/PRGGmdwnfkV2ThMyYldP1wRpm/id99spTQ==}
engines: {node: ^18.18.0 || >=20.0.0}
+ '@typescript-eslint/types@8.53.1':
+ resolution: {integrity: sha512-jr/swrr2aRmUAUjW5/zQHbMaui//vQlsZcJKijZf3M26bnmLj8LyZUpj8/Rd6uzaek06OWsqdofN/Thenm5O8A==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
'@typescript-eslint/typescript-estree@5.62.0':
resolution: {integrity: sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
@@ -5445,6 +6622,12 @@ packages:
typescript:
optional: true
+ '@typescript-eslint/typescript-estree@8.53.1':
+ resolution: {integrity: sha512-RGlVipGhQAG4GxV1s34O91cxQ/vWiHJTDHbXRr0li2q/BGg3RR/7NM8QDWgkEgrwQYCvmJV9ichIwyoKCQ+DTg==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ peerDependencies:
+ typescript: '>=4.8.4 <6.0.0'
+
'@typescript-eslint/utils@5.62.0':
resolution: {integrity: sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
@@ -5457,6 +6640,13 @@ packages:
peerDependencies:
eslint: ^8.56.0
+ '@typescript-eslint/utils@8.53.1':
+ resolution: {integrity: sha512-c4bMvGVWW4hv6JmDUEG7fSYlWOl3II2I4ylt0NM+seinYQlZMQIaKaXIIVJWt9Ofh6whrpM+EdDQXKXjNovvrg==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ peerDependencies:
+ eslint: ^8.57.0 || ^9.0.0
+ typescript: '>=4.8.4 <6.0.0'
+
'@typescript-eslint/visitor-keys@5.62.0':
resolution: {integrity: sha512-07ny+LHRzQXepkGg6w0mFY41fVUNBrL2Roj/++7V1txKugfjm/Ci/qSND03r2RhlJhJYMcTn9AhhSSqQp0Ysyw==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
@@ -5465,6 +6655,10 @@ packages:
resolution: {integrity: sha512-cDF0/Gf81QpY3xYyJKDV14Zwdmid5+uuENhjH2EqFaF0ni+yAyq/LzMaIJdhNJXZI7uLzwIlA+V7oWoyn6Curg==}
engines: {node: ^18.18.0 || >=20.0.0}
+ '@typescript-eslint/visitor-keys@8.53.1':
+ resolution: {integrity: sha512-oy+wV7xDKFPRyNggmXuZQSBzvoLnpmJs+GhzRhPjrxl2b/jIlyjVokzm47CZCDUdXKr2zd7ZLodPfOBpOPyPlg==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
'@ungap/promise-all-settled@1.1.2':
resolution: {integrity: sha512-sL/cEvJWAnClXw0wHk85/2L0G6Sj8UB0Ctc1TEMbKSsmpRosqhwj9gWgFRZSrBr2f9tiXISwNhCPmlfqUqyb9Q==}
@@ -5482,6 +6676,12 @@ packages:
peerDependencies:
vite: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0
+ '@vitejs/plugin-react@4.7.0':
+ resolution: {integrity: sha512-gUu9hwfWvvEDBBmgtAowQCojwZmJ5mcLn3aufeCsitijs3+f2NsrPtlAWIR6OPiqljl96GVCUbLe0HyqIpVaoA==}
+ engines: {node: ^14.18.0 || >=16.0.0}
+ peerDependencies:
+ vite: ^4.2.0 || ^5.0.0 || ^6.0.0 || ^7.0.0
+
'@vitejs/plugin-vue@5.1.2':
resolution: {integrity: sha512-nY9IwH12qeiJqumTCLJLE7IiNx7HZ39cbHaysEUd+Myvbz9KAqd2yq+U01Kab1R/H1BmiyM2ShTYlNH32Fzo3A==}
engines: {node: ^18.0.0 || >=20.0.0}
@@ -6203,6 +7403,10 @@ packages:
argparse@2.0.1:
resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
+ aria-hidden@1.2.6:
+ resolution: {integrity: sha512-ik3ZgC9dY/lYVVM++OISsaYDeg1tb0VtP5uL3ouh1koGOaUMDPpbFIei4JkFimWUFPn90sbMNMXQAIVOlnYKJA==}
+ engines: {node: '>=10'}
+
aria-query@5.3.2:
resolution: {integrity: sha512-COROpnaoap1E2F000S62r6A60uHZnmlvomhfyT2DlTcrY1OrBKn2UhH7qn5wTC9zMvD0AY7csdPSNwKP+7WiQw==}
engines: {node: '>= 0.4'}
@@ -6331,13 +7535,6 @@ packages:
engines: {node: '>= 4.5.0'}
hasBin: true
- autoprefixer@10.4.19:
- resolution: {integrity: sha512-BaENR2+zBZ8xXhM4pUaKUxlVdxZ0EZhjvbopwnXmxRUfqDmwSpC2lAi/QXvx7NRdPCo1WKEcEF6mV64si1z4Ew==}
- engines: {node: ^10 || ^12 || >=14}
- hasBin: true
- peerDependencies:
- postcss: ^8.1.0
-
autoprefixer@10.4.20:
resolution: {integrity: sha512-XY25y5xSv/wEoqzDyXXME4AFfkZI0P23z6Fs3YgymDnKJkCGOnkL0iTxCa85UTqaSgfcqyf3UA6+c7wUvx/16g==}
engines: {node: ^10 || ^12 || >=14}
@@ -6448,8 +7645,8 @@ packages:
resolution: {integrity: sha512-lGe34o6EHj9y3Kts9R4ZYs/Gr+6N7MCaMlIFA3F1R2O5/m7K06AxfSeO5530PEERE6/WyEg3lsuyw4GHlPZHog==}
engines: {node: ^4.5.0 || >= 5.9}
- baseline-browser-mapping@2.8.12:
- resolution: {integrity: sha512-vAPMQdnyKCBtkmQA6FMCBvU9qFIppS3nzyXnEM+Lo2IAhG4Mpjv9cCxMudhgV3YdNNJv6TNqXy97dfRVL2LmaQ==}
+ baseline-browser-mapping@2.9.18:
+ resolution: {integrity: sha512-e23vBV1ZLfjb9apvfPk4rHVu2ry6RIr2Wfs+O324okSidrX7pTAnEJPCh/O5BtRlr7QtZI7ktOP3vsqr7Z5XoA==}
hasBin: true
basic-auth@2.0.1:
@@ -6797,6 +7994,9 @@ packages:
cjs-module-lexer@1.3.1:
resolution: {integrity: sha512-a3KdPAANPbNE4ZUv9h6LckSl9zLsYOP4MBmhIPkRaeyybt+r4UghLvq+xw/YwUcC1gqylCkL4rdVs3Lwupjm4Q==}
+ class-variance-authority@0.7.1:
+ resolution: {integrity: sha512-Ka+9Trutv7G8M6WT6SeiRWz792K5qEqIGEGzXKhAE6xOWAY6pPH8U+9IY3oCMv6kqTmLsv7Xh/2w2RigkePMsg==}
+
clean-css@4.2.4:
resolution: {integrity: sha512-EJUDT7nDVFDvaQgAo2G/PJvxmp1o/c6iXLbswsBbUFXi1Nr+AjA2cKmfbKDMjMvzEe75g3P6JkaDDAKk96A85A==}
engines: {node: '>= 4.0'}
@@ -7520,6 +8720,9 @@ packages:
csstype@3.1.3:
resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==}
+ csstype@3.2.3:
+ resolution: {integrity: sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==}
+
currently-unhandled@0.4.1:
resolution: {integrity: sha512-/fITjgjGU50vjQ4FH6eUoYu+iUoUKIXws2hL15JJpIR+BbTxaXQsMuuyjtNh2WqsSBS5nsaZHFsFecyw5CCAng==}
engines: {node: '>=0.10.0'}
@@ -7645,9 +8848,6 @@ packages:
resolution: {integrity: sha512-9iE1PgSik9HeIIw2JO94IidnE3eBoQrFJ3w7sFuzSX4DpmZ3v5sZpUiV5Swcf6mQEF+Y0ru8Neo+p+nyh2J+hQ==}
engines: {node: '>=10'}
- decimal.js@10.4.3:
- resolution: {integrity: sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==}
-
decimal.js@10.6.0:
resolution: {integrity: sha512-YpgQiITW3JXGntzdUmyUR1V812Hn8T1YVXhCu+wO3OpS4eU9l4YdD3qjyiKdV6mvV29zapkMeD390UVEf2lkUg==}
@@ -7763,6 +8963,9 @@ packages:
resolution: {integrity: sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==}
engines: {node: '>=8'}
+ detect-node-es@1.1.0:
+ resolution: {integrity: sha512-ypdmJU/TbBby2Dxibuv7ZLW3Bs1QEmM7nHjEANfohJLvE0XVujisn1qPJcZxg+qDucsr+bP6fLD1rPS3AhJ7EQ==}
+
detect-node@2.1.0:
resolution: {integrity: sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==}
@@ -7852,9 +9055,6 @@ packages:
domutils@2.8.0:
resolution: {integrity: sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==}
- domutils@3.1.0:
- resolution: {integrity: sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA==}
-
domutils@3.2.2:
resolution: {integrity: sha512-6kZKyUajlDuqlHKVX1w7gyslj9MPIXzIFiz/rGu35uC1wMi+kMhQwGhl4lt9unC9Vb9INnY9Z3/ZA3+FhASLaw==}
@@ -7979,6 +9179,10 @@ packages:
resolution: {integrity: sha512-LMHl3dXhTcfv8gM4kEzIUeTQ+7fpdA0l2tUf34BddXPkz2A5xJ5L/Pchd5BL6rdccM9QGvu0sWZzK1Z1t4wwyg==}
engines: {node: '>=10.13.0'}
+ enhanced-resolve@5.18.4:
+ resolution: {integrity: sha512-LgQMM4WXU3QI+SYgEc2liRgznaD5ojbmY3sb8LxyguVkIg5FxdpTkvk72te2R38/TGKxH634oLxXRGY6d7AP+Q==}
+ engines: {node: '>=10.13.0'}
+
enquirer@2.3.6:
resolution: {integrity: sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==}
engines: {node: '>=8.6'}
@@ -8036,10 +9240,6 @@ packages:
es-array-method-boxes-properly@1.0.0:
resolution: {integrity: sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA==}
- es-define-property@1.0.0:
- resolution: {integrity: sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==}
- engines: {node: '>= 0.4'}
-
es-define-property@1.0.1:
resolution: {integrity: sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==}
engines: {node: '>= 0.4'}
@@ -8063,10 +9263,6 @@ packages:
resolution: {integrity: sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==}
engines: {node: '>= 0.4'}
- es-set-tostringtag@2.0.3:
- resolution: {integrity: sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==}
- engines: {node: '>= 0.4'}
-
es-set-tostringtag@2.1.0:
resolution: {integrity: sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==}
engines: {node: '>= 0.4'}
@@ -8110,6 +9306,11 @@ packages:
engines: {node: '>=18'}
hasBin: true
+ esbuild@0.27.2:
+ resolution: {integrity: sha512-HyNQImnsOC7X9PMNaCIeAm4ISCQXs5a5YasTXVliKv4uuBo1dKrG0A+uQS8M5eXjVMnLg3WgXaKvprHlFJQffw==}
+ engines: {node: '>=18'}
+ hasBin: true
+
escalade@3.1.2:
resolution: {integrity: sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==}
engines: {node: '>=6'}
@@ -8258,6 +9459,10 @@ packages:
resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ eslint-visitor-keys@4.2.1:
+ resolution: {integrity: sha512-Uhdk5sfqcee/9H/rCOJikYz67o0a2Tw2hGRPOG2Y1R2dg7brRe1uG0yaNQDHu+TO/uQPF/5eCapvYSmHUjt7JQ==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
eslint@8.57.0:
resolution: {integrity: sha512-dZ6+mexnaTIbSBZWgou51U6OmzIhYM2VcNdtiTtI7qPNZm35Akpr0f6vtw3w1Kmn5PYo+tZVfh13WrhpS6oLqQ==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
@@ -8677,14 +9882,14 @@ packages:
get-func-name@2.0.2:
resolution: {integrity: sha512-8vXOvuE167CtIc3OyItco7N/dpRtBbYOsPsXCz7X/PMnlGjYjSGuZJgM1Y7mmew7BKf9BqvLX2tnOVy1BBUsxQ==}
- get-intrinsic@1.2.4:
- resolution: {integrity: sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==}
- engines: {node: '>= 0.4'}
-
get-intrinsic@1.3.0:
resolution: {integrity: sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==}
engines: {node: '>= 0.4'}
+ get-nonce@1.0.1:
+ resolution: {integrity: sha512-FJhYRoDaiatfEkUK8HKlicmu/3SGFD51q3itKDGoSTysQJBnfOcxU5GxnhE1E6soB76MbT0MBtnKJuXyAx+96Q==}
+ engines: {node: '>=6'}
+
get-package-type@0.1.0:
resolution: {integrity: sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==}
engines: {node: '>=8.0.0'}
@@ -8833,9 +10038,6 @@ packages:
resolution: {integrity: sha512-yANWAN2DUcBtuus5Cpd+SKROzXHs2iVXFZt/Ykrfz6SAXqacLX25NZpltE+39ceMexYF4TtEadjuSTw8+3wX4g==}
engines: {node: '>=4'}
- gopd@1.0.1:
- resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==}
-
gopd@1.2.0:
resolution: {integrity: sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==}
engines: {node: '>= 0.4'}
@@ -8907,10 +10109,6 @@ packages:
resolution: {integrity: sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==}
engines: {node: '>= 0.4'}
- has-symbols@1.0.3:
- resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==}
- engines: {node: '>= 0.4'}
-
has-symbols@1.1.0:
resolution: {integrity: sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==}
engines: {node: '>= 0.4'}
@@ -9870,6 +11068,10 @@ packages:
resolution: {integrity: sha512-gFqAIbuKyyso/3G2qhiO2OM6shY6EPP/R0+mkDbyspxKazh8BXDC5FiFsUjlczgdNz/vfra0da2y+aHrusLG/Q==}
hasBin: true
+ jiti@2.6.1:
+ resolution: {integrity: sha512-ekilCSN1jwRvIbgeg/57YFh8qQDNbwDb9xT/qu2DAHbFFZUicIl4ygVaAvzveMhMVr3LnpSKTNnwt8PoOfmKhQ==}
+ hasBin: true
+
jju@1.4.0:
resolution: {integrity: sha512-8wb9Yw966OSxApiCt0K3yNJL8pnNeIv+OEq2YMidz4FKP6nonSRoOXc80iXY4JaN2FC11B9qsNmDsm+ZOfMROA==}
@@ -10192,6 +11394,76 @@ packages:
lie@3.3.0:
resolution: {integrity: sha512-UaiMJzeWRlEujzAuw5LokY1L5ecNQYZKfmyZ9L7wDHb/p5etKaxXhohBcrw0EYby+G/NA52vRSN4N39dxHAIwQ==}
+ lightningcss-android-arm64@1.30.2:
+ resolution: {integrity: sha512-BH9sEdOCahSgmkVhBLeU7Hc9DWeZ1Eb6wNS6Da8igvUwAe0sqROHddIlvU06q3WyXVEOYDZ6ykBZQnjTbmo4+A==}
+ engines: {node: '>= 12.0.0'}
+ cpu: [arm64]
+ os: [android]
+
+ lightningcss-darwin-arm64@1.30.2:
+ resolution: {integrity: sha512-ylTcDJBN3Hp21TdhRT5zBOIi73P6/W0qwvlFEk22fkdXchtNTOU4Qc37SkzV+EKYxLouZ6M4LG9NfZ1qkhhBWA==}
+ engines: {node: '>= 12.0.0'}
+ cpu: [arm64]
+ os: [darwin]
+
+ lightningcss-darwin-x64@1.30.2:
+ resolution: {integrity: sha512-oBZgKchomuDYxr7ilwLcyms6BCyLn0z8J0+ZZmfpjwg9fRVZIR5/GMXd7r9RH94iDhld3UmSjBM6nXWM2TfZTQ==}
+ engines: {node: '>= 12.0.0'}
+ cpu: [x64]
+ os: [darwin]
+
+ lightningcss-freebsd-x64@1.30.2:
+ resolution: {integrity: sha512-c2bH6xTrf4BDpK8MoGG4Bd6zAMZDAXS569UxCAGcA7IKbHNMlhGQ89eRmvpIUGfKWNVdbhSbkQaWhEoMGmGslA==}
+ engines: {node: '>= 12.0.0'}
+ cpu: [x64]
+ os: [freebsd]
+
+ lightningcss-linux-arm-gnueabihf@1.30.2:
+ resolution: {integrity: sha512-eVdpxh4wYcm0PofJIZVuYuLiqBIakQ9uFZmipf6LF/HRj5Bgm0eb3qL/mr1smyXIS1twwOxNWndd8z0E374hiA==}
+ engines: {node: '>= 12.0.0'}
+ cpu: [arm]
+ os: [linux]
+
+ lightningcss-linux-arm64-gnu@1.30.2:
+ resolution: {integrity: sha512-UK65WJAbwIJbiBFXpxrbTNArtfuznvxAJw4Q2ZGlU8kPeDIWEX1dg3rn2veBVUylA2Ezg89ktszWbaQnxD/e3A==}
+ engines: {node: '>= 12.0.0'}
+ cpu: [arm64]
+ os: [linux]
+
+ lightningcss-linux-arm64-musl@1.30.2:
+ resolution: {integrity: sha512-5Vh9dGeblpTxWHpOx8iauV02popZDsCYMPIgiuw97OJ5uaDsL86cnqSFs5LZkG3ghHoX5isLgWzMs+eD1YzrnA==}
+ engines: {node: '>= 12.0.0'}
+ cpu: [arm64]
+ os: [linux]
+
+ lightningcss-linux-x64-gnu@1.30.2:
+ resolution: {integrity: sha512-Cfd46gdmj1vQ+lR6VRTTadNHu6ALuw2pKR9lYq4FnhvgBc4zWY1EtZcAc6EffShbb1MFrIPfLDXD6Xprbnni4w==}
+ engines: {node: '>= 12.0.0'}
+ cpu: [x64]
+ os: [linux]
+
+ lightningcss-linux-x64-musl@1.30.2:
+ resolution: {integrity: sha512-XJaLUUFXb6/QG2lGIW6aIk6jKdtjtcffUT0NKvIqhSBY3hh9Ch+1LCeH80dR9q9LBjG3ewbDjnumefsLsP6aiA==}
+ engines: {node: '>= 12.0.0'}
+ cpu: [x64]
+ os: [linux]
+
+ lightningcss-win32-arm64-msvc@1.30.2:
+ resolution: {integrity: sha512-FZn+vaj7zLv//D/192WFFVA0RgHawIcHqLX9xuWiQt7P0PtdFEVaxgF9rjM/IRYHQXNnk61/H/gb2Ei+kUQ4xQ==}
+ engines: {node: '>= 12.0.0'}
+ cpu: [arm64]
+ os: [win32]
+
+ lightningcss-win32-x64-msvc@1.30.2:
+ resolution: {integrity: sha512-5g1yc73p+iAkid5phb4oVFMB45417DkRevRbt/El/gKXJk4jid+vPFF/AXbxn05Aky8PapwzZrdJShv5C0avjw==}
+ engines: {node: '>= 12.0.0'}
+ cpu: [x64]
+ os: [win32]
+
+ lightningcss@1.30.2:
+ resolution: {integrity: sha512-utfs7Pr5uJyyvDETitgsaqSyjCb2qNRAtuqUeWIAKztsOYdcACf2KtARYXg2pSvhkt+9NfoaNY7fxjl6nuMjIQ==}
+ engines: {node: '>= 12.0.0'}
+
lilconfig@2.1.0:
resolution: {integrity: sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==}
engines: {node: '>=10'}
@@ -10368,6 +11640,11 @@ packages:
resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==}
engines: {node: '>=10'}
+ lucide-react@0.563.0:
+ resolution: {integrity: sha512-8dXPB2GI4dI8jV4MgUDGBeLdGk8ekfqVZ0BdLcrRzocGgG75ltNEmWS+gE7uokKF/0oSUuczNDT+g9hFJ23FkA==}
+ peerDependencies:
+ react: ^16.5.1 || ^17.0.0 || ^18.0.0 || ^19.0.0
+
lunr@2.3.9:
resolution: {integrity: sha512-zTU3DaZaF3Rt9rhN3uBMGQD3dD2/vFQqnvZCDv4dl5iOzq2IZQqTxu90r4E5J+nP70J3ilqVCrbho2eWaeW8Ow==}
@@ -10384,6 +11661,9 @@ packages:
magic-string@0.30.17:
resolution: {integrity: sha512-sNPKHvyjVf7gyjwS4xGTaW/mCnF8wnjtifKBEhxfZ7E/S8tQ0rssrwGNn6q8JH/ohItJfSQp9mBtQYuTlH5QnA==}
+ magic-string@0.30.21:
+ resolution: {integrity: sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==}
+
magicast@0.3.4:
resolution: {integrity: sha512-TyDF/Pn36bBji9rWKHlZe+PZb6Mx5V8IHCSxk7X4aljM4e/vyDvZZYwHewdVaqiA0nb3ghfHU/6AUpDxWoER2Q==}
@@ -10767,11 +12047,6 @@ packages:
engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
hasBin: true
- nanoid@3.3.7:
- resolution: {integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==}
- engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
- hasBin: true
-
native-promise-only@0.8.1:
resolution: {integrity: sha512-zkVhZUA3y8mbz652WrL5x0fB0ehrBkulWT3TomAQ9iDtyXZvzKeEA6GPxAItBYeNYl5yngKRX612qHOhvMkDeg==}
@@ -11818,14 +13093,6 @@ packages:
resolution: {integrity: sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==}
engines: {node: '>=6.0.0'}
- postcss@8.4.38:
- resolution: {integrity: sha512-Wglpdk03BSfXkHoQa3b/oulrotAkwrlLDRSOb9D0bN86FdRyE9lppSp33aHNPgBa0JKCoB+drFLZkQoRRYae5A==}
- engines: {node: ^10 || ^12 || >=14}
-
- postcss@8.4.49:
- resolution: {integrity: sha512-OCVPnIObs4N29kxTjzLfUryOkvZEq+pf8jTF0lg8E7uETuWHA+v7j3c/xJmiqpX450191LlmZfUKkXxkTry7nA==}
- engines: {node: ^10 || ^12 || >=14}
-
postcss@8.5.2:
resolution: {integrity: sha512-MjOadfU3Ys9KYoX0AdkBlFEF1Vx37uCCeN4ZHnmwm9FfpbsGWMZeBLMmmpY+6Ocqod7mkdZ0DT31OlbsFrLlkA==}
engines: {node: ^10 || ^12 || >=14}
@@ -12029,6 +13296,19 @@ packages:
resolution: {integrity: sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==}
engines: {node: '>=8'}
+ radix-ui@1.4.3:
+ resolution: {integrity: sha512-aWizCQiyeAenIdUbqEpXgRA1ya65P13NKn/W8rWkcN0OPkRDxdBVLWnIEDsS2RpwCK2nobI7oMUSmexzTDyAmA==}
+ peerDependencies:
+ '@types/react': ^17.0.80
+ '@types/react-dom': ^17.0.25
+ react: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ react-dom: ^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ '@types/react-dom':
+ optional: true
+
raf@3.4.1:
resolution: {integrity: sha512-Sq4CW4QhwOHE8ucn6J34MqtZCeWFP2aQSmrlroYgqAV1PjStIhJXxYuTgUIfkEk7zTLjmIjLmU5q+fbD1NnOJA==}
@@ -12088,11 +13368,45 @@ packages:
react-native:
optional: true
+ react-refresh@0.17.0:
+ resolution: {integrity: sha512-z6F7K9bV85EfseRCp2bzrpyQ0Gkw1uLoCel9XBVWPg/TjRj94SkJzUTGfOa4bs7iJvBWtQG0Wq7wnI0syw3EBQ==}
+ engines: {node: '>=0.10.0'}
+
+ react-remove-scroll-bar@2.3.8:
+ resolution: {integrity: sha512-9r+yi9+mgU33AKcj6IbT9oRCO78WriSj6t/cF8DWBZJ9aOGPOTEDvdUDz1FwKim7QXWwmHqtdHnRJfhAxEG46Q==}
+ engines: {node: '>=10'}
+ peerDependencies:
+ '@types/react': ^17.0.80
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
+ react-remove-scroll@2.7.2:
+ resolution: {integrity: sha512-Iqb9NjCCTt6Hf+vOdNIZGdTiH1QSqr27H/Ek9sv/a97gfueI/5h1s3yRi1nngzMUaOOToin5dI1dXKdXiF+u0Q==}
+ engines: {node: '>=10'}
+ peerDependencies:
+ '@types/react': ^17.0.80
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
react-shallow-renderer@16.15.0:
resolution: {integrity: sha512-oScf2FqQ9LFVQgA73vr86xl2NaOIX73rh+YFqcOp68CWj56tSfgtGKrEbyhCj0rSijyG9M1CYprTh39fBi5hzA==}
peerDependencies:
react: ^16.0.0 || ^17.0.0 || ^18.0.0
+ react-style-singleton@2.2.3:
+ resolution: {integrity: sha512-b6jSvxvVnyptAiLjbkWLE/lOnR4lfTtDAl+eUC7RZy+QQWc6wRzIV2CE6xBuMmDxc2qIihtDCZD5NPOFl7fRBQ==}
+ engines: {node: '>=10'}
+ peerDependencies:
+ '@types/react': ^17.0.80
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
react-tabs@3.2.3:
resolution: {integrity: sha512-jx325RhRVnS9DdFbeF511z0T0WEqEoMl1uCE3LoZ6VaZZm7ytatxbum0B8bCTmaiV0KsU+4TtLGTGevCic7SWg==}
peerDependencies:
@@ -12799,10 +14113,6 @@ packages:
resolution: {integrity: sha512-/dPCrG1s3ePpWm6yBbxZq5Be1dXGLyLn9Z791chDC3NFrpkVbWGzkBwPN1knaciexFXgRJ7hzdnwZ4stHSDmjg==}
engines: {node: '>=4'}
- source-map-js@1.2.0:
- resolution: {integrity: sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==}
- engines: {node: '>=0.10.0'}
-
source-map-js@1.2.1:
resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==}
engines: {node: '>=0.10.0'}
@@ -13135,6 +14445,12 @@ packages:
resolution: {integrity: sha512-7gr8p9TQP6RAHusBOSLs46F4564ZrjV8xFmw5zCmgmhGUcw2hxsShhJ6CEiHQMgPDwAQ1fWHPM0ypc4RMAig4A==}
engines: {node: ^14.18.0 || >=16.0.0}
+ tailwind-merge@2.6.0:
+ resolution: {integrity: sha512-P+Vu1qXfzediirmHOC3xKGAYeZtPcV9g76X+xg2FD4tYgR71ewMA35Y3sCz3zhiN/dwefRpJX0yBcgwi1fXNQA==}
+
+ tailwindcss@4.1.18:
+ resolution: {integrity: sha512-4+Z+0yiYyEtUVCScyfHCxOYP06L5Ne+JiHhY2IjR2KWMIWhJOYZKLSGZaP5HkZ8+bY0cxfzwDE5uOmzFXyIwxw==}
+
tapable@1.1.3:
resolution: {integrity: sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==}
engines: {node: '>=6'}
@@ -13371,6 +14687,12 @@ packages:
peerDependencies:
typescript: '>=4.2.0'
+ ts-api-utils@2.4.0:
+ resolution: {integrity: sha512-3TaVTaAv2gTiMB35i3FiGJaRfwb3Pyn/j3m/bfAvGe8FB7CF6u+LMYqYlDh7reQf7UNvoTvdfAqHGmPGOSsPmA==}
+ engines: {node: '>=18.12'}
+ peerDependencies:
+ typescript: '>=4.8.4'
+
ts-jest@29.4.5:
resolution: {integrity: sha512-HO3GyiWn2qvTQA4kTgjDcXiMwYQt68a1Y8+JuLRVpdIzm+UOLSHgl/XqR4c6nzJkq5rOkjc02O2I7P7l/Yof0Q==}
engines: {node: ^14.15.0 || ^16.10.0 || ^18.0.0 || >=20.0.0}
@@ -13576,6 +14898,9 @@ packages:
undici-types@6.20.0:
resolution: {integrity: sha512-Ny6QZ2Nju20vw1SRHe3d9jVu6gJ+4e3+MMpqu7pqE5HT6WsTSlce++GQmK5UXS8mzV8DSYHrQH+Xrf2jVcuKNg==}
+ undici-types@7.16.0:
+ resolution: {integrity: sha512-Zz+aZWSj8LE6zoxD+xrjh4VfkIG8Ya6LvYkZqtUQGJPZjYl53ypCaUwWqo7eI0x66KBGeRo+mlBEkMSeSZ38Nw==}
+
unicode-canonical-property-names-ecmascript@2.0.0:
resolution: {integrity: sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==}
engines: {node: '>=4'}
@@ -13674,6 +14999,26 @@ packages:
resolution: {integrity: sha512-oCwdVC7mTuWiPyjLUz/COz5TLk6wgp0RCsN+wHZ2Ekneac9w8uuV0njcbbie2ME+Vs+d6duwmYuR3HgQXs1fOg==}
engines: {node: '>= 0.4'}
+ use-callback-ref@1.3.3:
+ resolution: {integrity: sha512-jQL3lRnocaFtu3V00JToYz/4QkNWswxijDaCVNZRiRTO3HQDLsdu1ZtmIUvV4yPp+rvWm5j0y0TG/S61cuijTg==}
+ engines: {node: '>=10'}
+ peerDependencies:
+ '@types/react': ^17.0.80
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
+ use-sidecar@1.1.3:
+ resolution: {integrity: sha512-Fedw0aZvkhynoPYlA5WXrMCAMm+nSWdZt6lzJQ7Ok8S6Q+VsHmHpRWndVRJ8Be0ZbkfPc5LRYH+5XrzXcEeLRQ==}
+ engines: {node: '>=10'}
+ peerDependencies:
+ '@types/react': ^17.0.80
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
use-sync-external-store@1.5.0:
resolution: {integrity: sha512-Rb46I4cGGVBmjamjphe8L/UnvJD+uPPtTkNvX5mZgqdbavhI4EbgIWJiIHXJ8bc/i9EQGPRh4DwEURJ552Do0A==}
peerDependencies:
@@ -13852,6 +15197,46 @@ packages:
yaml:
optional: true
+ vite@7.3.1:
+ resolution: {integrity: sha512-w+N7Hifpc3gRjZ63vYBXA56dvvRlNWRczTdmCBBa+CotUzAPf5b7YMdMR/8CQoeYE5LX3W4wj6RYTgonm1b9DA==}
+ engines: {node: ^20.19.0 || >=22.12.0}
+ hasBin: true
+ peerDependencies:
+ '@types/node': ^20.19.0 || >=22.12.0
+ jiti: '>=1.21.0'
+ less: ^4.0.0
+ lightningcss: ^1.21.0
+ sass: ^1.70.0
+ sass-embedded: ^1.70.0
+ stylus: '>=0.54.8'
+ sugarss: ^5.0.0
+ terser: ^5.16.0
+ tsx: ^4.8.1
+ yaml: ^2.4.2
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
+ jiti:
+ optional: true
+ less:
+ optional: true
+ lightningcss:
+ optional: true
+ sass:
+ optional: true
+ sass-embedded:
+ optional: true
+ stylus:
+ optional: true
+ sugarss:
+ optional: true
+ terser:
+ optional: true
+ tsx:
+ optional: true
+ yaml:
+ optional: true
+
vitest@1.6.0:
resolution: {integrity: sha512-H5r/dN06swuFnzNFhq/dnz37bPXnq8xB2xB5JOVk8K09rUtoeNN+LHWkoQ0A/i3hvbUKKcCei9KpbxqHMLhLLA==}
engines: {node: ^18.0.0 || >=20.0.0}
@@ -14180,10 +15565,12 @@ packages:
whatwg-encoding@2.0.0:
resolution: {integrity: sha512-p41ogyeMUrw3jWclHWTQg1k05DSVXPLcVxRTYsXUk+ZooOCZLcoYgPZ/HL/D/N+uQPOtcp1me1WhBEaX02mhWg==}
engines: {node: '>=12'}
+ deprecated: Use @exodus/bytes instead for a more spec-conformant and faster implementation
whatwg-encoding@3.1.1:
resolution: {integrity: sha512-6qN4hJdMwfYBtE3YBTTHhoeuUrDBPZmbQaxWAqSALV/MeEnR5z1xd8UKud2RAkFoPkmB+hli1TZSnyi84xz1vQ==}
engines: {node: '>=18'}
+ deprecated: Use @exodus/bytes instead for a more spec-conformant and faster implementation
whatwg-fetch@3.6.20:
resolution: {integrity: sha512-EqhiFU6daOA8kpjOWTL0olhVOF3i7OrFzSYiGsEMB8GcXS+RrzauAERX65xMeNWVqxA6HXH2m69Z9LaKKdisfg==}
@@ -14361,18 +15748,6 @@ packages:
utf-8-validate:
optional: true
- ws@8.18.0:
- resolution: {integrity: sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw==}
- engines: {node: '>=10.0.0'}
- peerDependencies:
- bufferutil: ^4.0.1
- utf-8-validate: '>=5.0.2'
- peerDependenciesMeta:
- bufferutil:
- optional: true
- utf-8-validate:
- optional: true
-
ws@8.18.3:
resolution: {integrity: sha512-PEIGCY5tSlUt50cqyMXfCzX+oOPqN0vuGqWzbcJ2xvnkzkq46oOpz7dQaTDBdfICb4N14+GARUDw2XV2N4tvzg==}
engines: {node: '>=10.0.0'}
@@ -14532,13 +15907,13 @@ snapshots:
transitivePeerDependencies:
- chokidar
- '@angular-devkit/build-angular@19.2.17(@angular/compiler-cli@19.2.15(@angular/compiler@19.2.15)(typescript@5.5.4))(@angular/compiler@19.2.15)(@types/node@22.13.8)(chokidar@4.0.1)(html-webpack-plugin@5.6.0(webpack@5.91.0))(jest-environment-jsdom@29.7.0)(jest@29.7.0(@types/node@22.13.8)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.5.4)))(jiti@1.21.0)(karma@6.4.3)(ng-packagr@19.2.2(@angular/compiler-cli@19.2.15(@angular/compiler@19.2.15)(typescript@5.5.4))(tslib@2.6.2)(typescript@5.5.4))(protractor@7.0.0)(stylus@0.57.0)(typescript@5.5.4)(vite@6.3.6(@types/node@22.13.8)(jiti@1.21.0)(less@4.2.2)(sass@1.85.0)(stylus@0.57.0)(terser@5.39.0)(yaml@2.8.1))(yaml@2.8.1)':
+ '@angular-devkit/build-angular@19.2.17(@angular/compiler-cli@19.2.15(@angular/compiler@19.2.15)(typescript@5.5.4))(@angular/compiler@19.2.15)(@types/node@22.13.8)(chokidar@4.0.1)(html-webpack-plugin@5.6.0(webpack@5.91.0))(jest-environment-jsdom@29.7.0)(jest@29.7.0(@types/node@22.13.8)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@10.9.2(@types/node@24.10.9)(typescript@5.5.4)))(jiti@2.6.1)(karma@6.4.3)(lightningcss@1.30.2)(ng-packagr@19.2.2(@angular/compiler-cli@19.2.15(@angular/compiler@19.2.15)(typescript@5.5.4))(tailwindcss@4.1.18)(tslib@2.6.2)(typescript@5.5.4))(protractor@7.0.0)(stylus@0.57.0)(tailwindcss@4.1.18)(typescript@5.5.4)(vite@7.3.1(@types/node@22.13.8)(jiti@2.6.1)(less@4.2.2)(lightningcss@1.30.2)(sass@1.85.0)(stylus@0.57.0)(terser@5.39.0)(yaml@2.8.1))(yaml@2.8.1)':
dependencies:
'@ampproject/remapping': 2.3.0
'@angular-devkit/architect': 0.1902.17(chokidar@4.0.1)
- '@angular-devkit/build-webpack': 0.1902.17(chokidar@4.0.1)(webpack-dev-server@5.2.2(webpack@5.98.0(esbuild@0.25.4)))(webpack@5.98.0(esbuild@0.25.4))
+ '@angular-devkit/build-webpack': 0.1902.17(chokidar@4.0.1)(webpack-dev-server@5.2.2(webpack@5.91.0))(webpack@5.98.0(esbuild@0.25.4))
'@angular-devkit/core': 19.2.17(chokidar@4.0.1)
- '@angular/build': 19.2.17(@angular/compiler-cli@19.2.15(@angular/compiler@19.2.15)(typescript@5.5.4))(@angular/compiler@19.2.15)(@types/node@22.13.8)(chokidar@4.0.1)(jiti@1.21.0)(karma@6.4.3)(less@4.2.2)(ng-packagr@19.2.2(@angular/compiler-cli@19.2.15(@angular/compiler@19.2.15)(typescript@5.5.4))(tslib@2.6.2)(typescript@5.5.4))(postcss@8.5.2)(stylus@0.57.0)(terser@5.39.0)(typescript@5.5.4)(yaml@2.8.1)
+ '@angular/build': 19.2.17(@angular/compiler-cli@19.2.15(@angular/compiler@19.2.15)(typescript@5.5.4))(@angular/compiler@19.2.15)(@types/node@22.13.8)(chokidar@4.0.1)(jiti@2.6.1)(karma@6.4.3)(less@4.2.2)(lightningcss@1.30.2)(ng-packagr@19.2.2(@angular/compiler-cli@19.2.15(@angular/compiler@19.2.15)(typescript@5.5.4))(tailwindcss@4.1.18)(tslib@2.6.2)(typescript@5.5.4))(postcss@8.5.2)(stylus@0.57.0)(tailwindcss@4.1.18)(terser@5.39.0)(typescript@5.5.4)(yaml@2.8.1)
'@angular/compiler-cli': 19.2.15(@angular/compiler@19.2.15)(typescript@5.5.4)
'@babel/core': 7.26.10
'@babel/generator': 7.26.10
@@ -14551,7 +15926,7 @@ snapshots:
'@babel/runtime': 7.26.10
'@discoveryjs/json-ext': 0.6.3
'@ngtools/webpack': 19.2.17(@angular/compiler-cli@19.2.15(@angular/compiler@19.2.15)(typescript@5.5.4))(typescript@5.5.4)(webpack@5.98.0(esbuild@0.25.4))
- '@vitejs/plugin-basic-ssl': 1.2.0(vite@6.3.6(@types/node@22.13.8)(jiti@1.21.0)(less@4.2.2)(sass@1.85.0)(stylus@0.57.0)(terser@5.39.0)(yaml@2.8.1))
+ '@vitejs/plugin-basic-ssl': 1.2.0(vite@7.3.1(@types/node@22.13.8)(jiti@2.6.1)(less@4.2.2)(lightningcss@1.30.2)(sass@1.85.0)(stylus@0.57.0)(terser@5.39.0)(yaml@2.8.1))
ansi-colors: 4.1.3
autoprefixer: 10.4.20(postcss@8.5.2)
babel-loader: 9.2.1(@babel/core@7.26.10)(webpack@5.98.0(esbuild@0.25.4))
@@ -14593,11 +15968,12 @@ snapshots:
webpack-subresource-integrity: 5.1.0(html-webpack-plugin@5.6.0(webpack@5.91.0))(webpack@5.98.0(esbuild@0.25.4))
optionalDependencies:
esbuild: 0.25.4
- jest: 29.7.0(@types/node@22.13.8)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.5.4))
+ jest: 29.7.0(@types/node@22.13.8)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@10.9.2(@types/node@24.10.9)(typescript@5.5.4))
jest-environment-jsdom: 29.7.0
karma: 6.4.3
- ng-packagr: 19.2.2(@angular/compiler-cli@19.2.15(@angular/compiler@19.2.15)(typescript@5.5.4))(tslib@2.6.2)(typescript@5.5.4)
+ ng-packagr: 19.2.2(@angular/compiler-cli@19.2.15(@angular/compiler@19.2.15)(typescript@5.5.4))(tailwindcss@4.1.18)(tslib@2.6.2)(typescript@5.5.4)
protractor: 7.0.0
+ tailwindcss: 4.1.18
transitivePeerDependencies:
- '@angular/compiler'
- '@rspack/core'
@@ -14621,7 +15997,7 @@ snapshots:
- webpack-cli
- yaml
- '@angular-devkit/build-webpack@0.1902.17(chokidar@4.0.1)(webpack-dev-server@5.2.2(webpack@5.98.0(esbuild@0.25.4)))(webpack@5.98.0(esbuild@0.25.4))':
+ '@angular-devkit/build-webpack@0.1902.17(chokidar@4.0.1)(webpack-dev-server@5.2.2(webpack@5.91.0))(webpack@5.98.0(esbuild@0.25.4))':
dependencies:
'@angular-devkit/architect': 0.1902.17(chokidar@4.0.1)
rxjs: 7.8.1
@@ -14674,32 +16050,32 @@ snapshots:
'@angular-eslint/bundled-angular-compiler@19.8.1': {}
- '@angular-eslint/eslint-plugin-template@19.8.1(@angular-eslint/template-parser@19.8.1(eslint@8.57.0)(typescript@5.5.4))(@typescript-eslint/types@7.18.0)(@typescript-eslint/utils@7.18.0(eslint@8.57.0)(typescript@5.5.4))(eslint@8.57.0)(typescript@5.5.4)':
+ '@angular-eslint/eslint-plugin-template@19.8.1(@angular-eslint/template-parser@19.8.1(eslint@8.57.0)(typescript@5.5.4))(@typescript-eslint/types@8.53.1)(@typescript-eslint/utils@8.53.1(eslint@8.57.0)(typescript@5.5.4))(eslint@8.57.0)(typescript@5.5.4)':
dependencies:
'@angular-eslint/bundled-angular-compiler': 19.8.1
'@angular-eslint/template-parser': 19.8.1(eslint@8.57.0)(typescript@5.5.4)
- '@angular-eslint/utils': 19.8.1(@typescript-eslint/utils@7.18.0(eslint@8.57.0)(typescript@5.5.4))(eslint@8.57.0)(typescript@5.5.4)
- '@typescript-eslint/types': 7.18.0
- '@typescript-eslint/utils': 7.18.0(eslint@8.57.0)(typescript@5.5.4)
+ '@angular-eslint/utils': 19.8.1(@typescript-eslint/utils@8.53.1(eslint@8.57.0)(typescript@5.5.4))(eslint@8.57.0)(typescript@5.5.4)
+ '@typescript-eslint/types': 8.53.1
+ '@typescript-eslint/utils': 8.53.1(eslint@8.57.0)(typescript@5.5.4)
aria-query: 5.3.2
axobject-query: 4.1.0
eslint: 8.57.0
typescript: 5.5.4
- '@angular-eslint/eslint-plugin@19.8.1(@typescript-eslint/utils@7.18.0(eslint@8.57.0)(typescript@5.5.4))(eslint@8.57.0)(typescript@5.5.4)':
+ '@angular-eslint/eslint-plugin@19.8.1(@typescript-eslint/utils@8.53.1(eslint@8.57.0)(typescript@5.5.4))(eslint@8.57.0)(typescript@5.5.4)':
dependencies:
'@angular-eslint/bundled-angular-compiler': 19.8.1
- '@angular-eslint/utils': 19.8.1(@typescript-eslint/utils@7.18.0(eslint@8.57.0)(typescript@5.5.4))(eslint@8.57.0)(typescript@5.5.4)
- '@typescript-eslint/utils': 7.18.0(eslint@8.57.0)(typescript@5.5.4)
+ '@angular-eslint/utils': 19.8.1(@typescript-eslint/utils@8.53.1(eslint@8.57.0)(typescript@5.5.4))(eslint@8.57.0)(typescript@5.5.4)
+ '@typescript-eslint/utils': 8.53.1(eslint@8.57.0)(typescript@5.5.4)
eslint: 8.57.0
typescript: 5.5.4
- '@angular-eslint/schematics@19.8.1(@angular-eslint/template-parser@19.8.1(eslint@8.57.0)(typescript@5.5.4))(@typescript-eslint/types@7.18.0)(@typescript-eslint/utils@7.18.0(eslint@8.57.0)(typescript@5.5.4))(chokidar@4.0.1)(eslint@8.57.0)(typescript@5.5.4)':
+ '@angular-eslint/schematics@19.8.1(@angular-eslint/template-parser@19.8.1(eslint@8.57.0)(typescript@5.5.4))(@typescript-eslint/types@8.53.1)(@typescript-eslint/utils@8.53.1(eslint@8.57.0)(typescript@5.5.4))(chokidar@4.0.1)(eslint@8.57.0)(typescript@5.5.4)':
dependencies:
'@angular-devkit/core': 19.2.17(chokidar@4.0.1)
'@angular-devkit/schematics': 19.2.17(chokidar@4.0.1)
- '@angular-eslint/eslint-plugin': 19.8.1(@typescript-eslint/utils@7.18.0(eslint@8.57.0)(typescript@5.5.4))(eslint@8.57.0)(typescript@5.5.4)
- '@angular-eslint/eslint-plugin-template': 19.8.1(@angular-eslint/template-parser@19.8.1(eslint@8.57.0)(typescript@5.5.4))(@typescript-eslint/types@7.18.0)(@typescript-eslint/utils@7.18.0(eslint@8.57.0)(typescript@5.5.4))(eslint@8.57.0)(typescript@5.5.4)
+ '@angular-eslint/eslint-plugin': 19.8.1(@typescript-eslint/utils@8.53.1(eslint@8.57.0)(typescript@5.5.4))(eslint@8.57.0)(typescript@5.5.4)
+ '@angular-eslint/eslint-plugin-template': 19.8.1(@angular-eslint/template-parser@19.8.1(eslint@8.57.0)(typescript@5.5.4))(@typescript-eslint/types@8.53.1)(@typescript-eslint/utils@8.53.1(eslint@8.57.0)(typescript@5.5.4))(eslint@8.57.0)(typescript@5.5.4)
ignore: 7.0.5
semver: 7.7.2
strip-json-comments: 3.1.1
@@ -14718,10 +16094,10 @@ snapshots:
eslint-scope: 8.2.0
typescript: 5.5.4
- '@angular-eslint/utils@19.8.1(@typescript-eslint/utils@7.18.0(eslint@8.57.0)(typescript@5.5.4))(eslint@8.57.0)(typescript@5.5.4)':
+ '@angular-eslint/utils@19.8.1(@typescript-eslint/utils@8.53.1(eslint@8.57.0)(typescript@5.5.4))(eslint@8.57.0)(typescript@5.5.4)':
dependencies:
'@angular-eslint/bundled-angular-compiler': 19.8.1
- '@typescript-eslint/utils': 7.18.0(eslint@8.57.0)(typescript@5.5.4)
+ '@typescript-eslint/utils': 8.53.1(eslint@8.57.0)(typescript@5.5.4)
eslint: 8.57.0
typescript: 5.5.4
@@ -14731,7 +16107,7 @@ snapshots:
'@angular/core': 19.2.15(rxjs@6.6.7)(zone.js@0.15.1)
tslib: 2.6.3
- '@angular/build@19.2.17(@angular/compiler-cli@19.2.15(@angular/compiler@19.2.15)(typescript@5.5.4))(@angular/compiler@19.2.15)(@types/node@22.13.8)(chokidar@4.0.1)(jiti@1.21.0)(karma@6.4.3)(less@4.2.2)(ng-packagr@19.2.2(@angular/compiler-cli@19.2.15(@angular/compiler@19.2.15)(typescript@5.5.4))(tslib@2.6.2)(typescript@5.5.4))(postcss@8.5.2)(stylus@0.57.0)(terser@5.39.0)(typescript@5.5.4)(yaml@2.8.1)':
+ '@angular/build@19.2.17(@angular/compiler-cli@19.2.15(@angular/compiler@19.2.15)(typescript@5.5.4))(@angular/compiler@19.2.15)(@types/node@22.13.8)(chokidar@4.0.1)(jiti@2.6.1)(karma@6.4.3)(less@4.2.2)(lightningcss@1.30.2)(ng-packagr@19.2.2(@angular/compiler-cli@19.2.15(@angular/compiler@19.2.15)(typescript@5.5.4))(tailwindcss@4.1.18)(tslib@2.6.2)(typescript@5.5.4))(postcss@8.5.2)(stylus@0.57.0)(tailwindcss@4.1.18)(terser@5.39.0)(typescript@5.5.4)(yaml@2.8.1)':
dependencies:
'@ampproject/remapping': 2.3.0
'@angular-devkit/architect': 0.1902.17(chokidar@4.0.1)
@@ -14742,9 +16118,9 @@ snapshots:
'@babel/helper-split-export-declaration': 7.24.7
'@babel/plugin-syntax-import-attributes': 7.26.0(@babel/core@7.26.10)
'@inquirer/confirm': 5.1.6(@types/node@22.13.8)
- '@vitejs/plugin-basic-ssl': 1.2.0(vite@6.3.6(@types/node@22.13.8)(jiti@1.21.0)(less@4.2.2)(sass@1.85.0)(stylus@0.57.0)(terser@5.39.0)(yaml@2.8.1))
+ '@vitejs/plugin-basic-ssl': 1.2.0(vite@6.3.6(@types/node@22.13.8)(jiti@2.6.1)(less@4.2.2)(lightningcss@1.30.2)(sass@1.85.0)(stylus@0.57.0)(terser@5.39.0)(yaml@2.8.1))
beasties: 0.3.2
- browserslist: 4.24.2
+ browserslist: 4.26.3
esbuild: 0.25.4
fast-glob: 3.3.3
https-proxy-agent: 7.0.6
@@ -14760,14 +16136,15 @@ snapshots:
semver: 7.7.1
source-map-support: 0.5.21
typescript: 5.5.4
- vite: 6.3.6(@types/node@22.13.8)(jiti@1.21.0)(less@4.2.2)(sass@1.85.0)(stylus@0.57.0)(terser@5.39.0)(yaml@2.8.1)
+ vite: 6.3.6(@types/node@22.13.8)(jiti@2.6.1)(less@4.2.2)(lightningcss@1.30.2)(sass@1.85.0)(stylus@0.57.0)(terser@5.39.0)(yaml@2.8.1)
watchpack: 2.4.2
optionalDependencies:
karma: 6.4.3
less: 4.2.2
lmdb: 3.2.6
- ng-packagr: 19.2.2(@angular/compiler-cli@19.2.15(@angular/compiler@19.2.15)(typescript@5.5.4))(tslib@2.6.2)(typescript@5.5.4)
+ ng-packagr: 19.2.2(@angular/compiler-cli@19.2.15(@angular/compiler@19.2.15)(typescript@5.5.4))(tailwindcss@4.1.18)(tslib@2.6.2)(typescript@5.5.4)
postcss: 8.5.2
+ tailwindcss: 4.1.18
transitivePeerDependencies:
- '@types/node'
- chokidar
@@ -14907,17 +16284,23 @@ snapshots:
'@babel/code-frame@7.24.2':
dependencies:
'@babel/highlight': 7.24.5
- picocolors: 1.0.1
+ picocolors: 1.1.1
'@babel/code-frame@7.26.2':
dependencies:
- '@babel/helper-validator-identifier': 7.27.1
+ '@babel/helper-validator-identifier': 7.28.5
js-tokens: 4.0.0
picocolors: 1.1.1
'@babel/code-frame@7.27.1':
dependencies:
- '@babel/helper-validator-identifier': 7.27.1
+ '@babel/helper-validator-identifier': 7.28.5
+ js-tokens: 4.0.0
+ picocolors: 1.1.1
+
+ '@babel/code-frame@7.28.6':
+ dependencies:
+ '@babel/helper-validator-identifier': 7.28.5
js-tokens: 4.0.0
picocolors: 1.1.1
@@ -14925,6 +16308,8 @@ snapshots:
'@babel/compat-data@7.28.4': {}
+ '@babel/compat-data@7.28.6': {}
+
'@babel/core@7.24.5':
dependencies:
'@ampproject/remapping': 2.3.0
@@ -14948,17 +16333,17 @@ snapshots:
'@babel/core@7.26.10':
dependencies:
'@ampproject/remapping': 2.3.0
- '@babel/code-frame': 7.26.2
- '@babel/generator': 7.26.10
+ '@babel/code-frame': 7.27.1
+ '@babel/generator': 7.28.3
'@babel/helper-compilation-targets': 7.27.2
- '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.10)
+ '@babel/helper-module-transforms': 7.28.3(@babel/core@7.26.10)
'@babel/helpers': 7.28.4
- '@babel/parser': 7.28.0
+ '@babel/parser': 7.28.6
'@babel/template': 7.27.2
'@babel/traverse': 7.28.4
- '@babel/types': 7.28.0
+ '@babel/types': 7.28.4
convert-source-map: 2.0.0
- debug: 4.3.7
+ debug: 4.4.3
gensync: 1.0.0-beta.2
json5: 2.2.3
semver: 6.3.1
@@ -14973,12 +16358,32 @@ snapshots:
'@babel/helper-compilation-targets': 7.27.2
'@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.9)
'@babel/helpers': 7.28.4
- '@babel/parser': 7.28.0
+ '@babel/parser': 7.28.6
'@babel/template': 7.27.2
'@babel/traverse': 7.28.4
'@babel/types': 7.28.0
convert-source-map: 2.0.0
- debug: 4.3.7
+ debug: 4.4.3
+ gensync: 1.0.0-beta.2
+ json5: 2.2.3
+ semver: 6.3.1
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/core@7.28.6':
+ dependencies:
+ '@babel/code-frame': 7.28.6
+ '@babel/generator': 7.28.6
+ '@babel/helper-compilation-targets': 7.28.6
+ '@babel/helper-module-transforms': 7.28.6(@babel/core@7.28.6)
+ '@babel/helpers': 7.28.6
+ '@babel/parser': 7.28.6
+ '@babel/template': 7.28.6
+ '@babel/traverse': 7.28.6
+ '@babel/types': 7.28.6
+ '@jridgewell/remapping': 2.3.5
+ convert-source-map: 2.0.0
+ debug: 4.4.3
gensync: 1.0.0-beta.2
json5: 2.2.3
semver: 6.3.1
@@ -14987,81 +16392,112 @@ snapshots:
'@babel/generator@7.24.5':
dependencies:
- '@babel/types': 7.24.5
- '@jridgewell/gen-mapping': 0.3.5
- '@jridgewell/trace-mapping': 0.3.25
+ '@babel/types': 7.28.6
+ '@jridgewell/gen-mapping': 0.3.13
+ '@jridgewell/trace-mapping': 0.3.31
jsesc: 2.5.2
'@babel/generator@7.26.10':
dependencies:
- '@babel/parser': 7.28.0
- '@babel/types': 7.28.0
+ '@babel/parser': 7.28.6
+ '@babel/types': 7.28.4
'@jridgewell/gen-mapping': 0.3.5
'@jridgewell/trace-mapping': 0.3.25
jsesc: 3.0.2
'@babel/generator@7.28.3':
dependencies:
- '@babel/parser': 7.28.4
- '@babel/types': 7.28.4
+ '@babel/parser': 7.28.6
+ '@babel/types': 7.28.6
+ '@jridgewell/gen-mapping': 0.3.13
+ '@jridgewell/trace-mapping': 0.3.31
+ jsesc: 3.0.2
+
+ '@babel/generator@7.28.6':
+ dependencies:
+ '@babel/parser': 7.28.6
+ '@babel/types': 7.28.6
'@jridgewell/gen-mapping': 0.3.13
'@jridgewell/trace-mapping': 0.3.31
jsesc: 3.0.2
'@babel/helper-annotate-as-pure@7.22.5':
dependencies:
- '@babel/types': 7.26.0
+ '@babel/types': 7.28.6
'@babel/helper-annotate-as-pure@7.25.9':
dependencies:
- '@babel/types': 7.28.0
+ '@babel/types': 7.28.4
'@babel/helper-annotate-as-pure@7.27.3':
dependencies:
- '@babel/types': 7.28.0
+ '@babel/types': 7.28.6
'@babel/helper-builder-binary-assignment-operator-visitor@7.22.15':
dependencies:
- '@babel/types': 7.24.5
+ '@babel/types': 7.28.6
'@babel/helper-compilation-targets@7.23.6':
dependencies:
- '@babel/compat-data': 7.24.4
- '@babel/helper-validator-option': 7.23.5
- browserslist: 4.23.0
+ '@babel/compat-data': 7.28.4
+ '@babel/helper-validator-option': 7.27.1
+ browserslist: 4.26.3
lru-cache: 5.1.1
semver: 6.3.1
'@babel/helper-compilation-targets@7.27.2':
dependencies:
- '@babel/compat-data': 7.28.4
+ '@babel/compat-data': 7.28.6
'@babel/helper-validator-option': 7.27.1
- browserslist: 4.24.2
+ browserslist: 4.26.3
+ lru-cache: 5.1.1
+ semver: 6.3.1
+
+ '@babel/helper-compilation-targets@7.28.6':
+ dependencies:
+ '@babel/compat-data': 7.28.6
+ '@babel/helper-validator-option': 7.27.1
+ browserslist: 4.26.3
lru-cache: 5.1.1
semver: 6.3.1
'@babel/helper-create-class-features-plugin@7.24.5(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-annotate-as-pure': 7.22.5
+ '@babel/helper-annotate-as-pure': 7.27.3
'@babel/helper-environment-visitor': 7.22.20
'@babel/helper-function-name': 7.23.0
'@babel/helper-member-expression-to-functions': 7.24.5
'@babel/helper-optimise-call-expression': 7.22.5
'@babel/helper-replace-supers': 7.24.1(@babel/core@7.24.5)
- '@babel/helper-skip-transparent-expression-wrappers': 7.22.5
+ '@babel/helper-skip-transparent-expression-wrappers': 7.27.1
'@babel/helper-split-export-declaration': 7.24.5
semver: 6.3.1
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/helper-create-class-features-plugin@7.25.9(@babel/core@7.24.5)':
+ dependencies:
+ '@babel/core': 7.24.5
+ '@babel/helper-annotate-as-pure': 7.27.3
+ '@babel/helper-member-expression-to-functions': 7.25.9
+ '@babel/helper-optimise-call-expression': 7.25.9
+ '@babel/helper-replace-supers': 7.25.9(@babel/core@7.24.5)
+ '@babel/helper-skip-transparent-expression-wrappers': 7.27.1
+ '@babel/traverse': 7.28.6
+ semver: 6.3.1
+ transitivePeerDependencies:
+ - supports-color
'@babel/helper-create-class-features-plugin@7.25.9(@babel/core@7.26.10)':
dependencies:
'@babel/core': 7.26.10
- '@babel/helper-annotate-as-pure': 7.25.9
+ '@babel/helper-annotate-as-pure': 7.27.3
'@babel/helper-member-expression-to-functions': 7.25.9
'@babel/helper-optimise-call-expression': 7.25.9
'@babel/helper-replace-supers': 7.25.9(@babel/core@7.26.10)
- '@babel/helper-skip-transparent-expression-wrappers': 7.25.9
- '@babel/traverse': 7.25.9
+ '@babel/helper-skip-transparent-expression-wrappers': 7.27.1
+ '@babel/traverse': 7.28.6
semver: 6.3.1
transitivePeerDependencies:
- supports-color
@@ -15069,21 +16505,21 @@ snapshots:
'@babel/helper-create-regexp-features-plugin@7.22.15(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-annotate-as-pure': 7.22.5
+ '@babel/helper-annotate-as-pure': 7.27.3
regexpu-core: 5.3.2
semver: 6.3.1
'@babel/helper-create-regexp-features-plugin@7.22.15(@babel/core@7.26.10)':
dependencies:
'@babel/core': 7.26.10
- '@babel/helper-annotate-as-pure': 7.22.5
+ '@babel/helper-annotate-as-pure': 7.27.3
regexpu-core: 5.3.2
semver: 6.3.1
'@babel/helper-create-regexp-features-plugin@7.25.9(@babel/core@7.26.10)':
dependencies:
'@babel/core': 7.26.10
- '@babel/helper-annotate-as-pure': 7.25.9
+ '@babel/helper-annotate-as-pure': 7.27.3
regexpu-core: 6.2.0
semver: 6.3.1
@@ -15097,29 +16533,29 @@ snapshots:
'@babel/helper-define-polyfill-provider@0.6.2(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-compilation-targets': 7.23.6
- '@babel/helper-plugin-utils': 7.24.5
- debug: 4.3.7
+ '@babel/helper-compilation-targets': 7.28.6
+ '@babel/helper-plugin-utils': 7.27.1
+ debug: 4.4.3
lodash.debounce: 4.0.8
- resolve: 1.22.8
+ resolve: 1.22.10
transitivePeerDependencies:
- supports-color
'@babel/helper-define-polyfill-provider@0.6.2(@babel/core@7.26.10)':
dependencies:
'@babel/core': 7.26.10
- '@babel/helper-compilation-targets': 7.23.6
- '@babel/helper-plugin-utils': 7.24.5
- debug: 4.3.7
+ '@babel/helper-compilation-targets': 7.28.6
+ '@babel/helper-plugin-utils': 7.27.1
+ debug: 4.4.3
lodash.debounce: 4.0.8
- resolve: 1.22.8
+ resolve: 1.22.10
transitivePeerDependencies:
- supports-color
'@babel/helper-define-polyfill-provider@0.6.5(@babel/core@7.26.10)':
dependencies:
'@babel/core': 7.26.10
- '@babel/helper-compilation-targets': 7.27.2
+ '@babel/helper-compilation-targets': 7.28.6
'@babel/helper-plugin-utils': 7.27.1
debug: 4.4.3
lodash.debounce: 4.0.8
@@ -15131,45 +16567,52 @@ snapshots:
'@babel/helper-function-name@7.23.0':
dependencies:
- '@babel/template': 7.24.0
- '@babel/types': 7.24.5
+ '@babel/template': 7.28.6
+ '@babel/types': 7.28.6
'@babel/helper-globals@7.28.0': {}
'@babel/helper-hoist-variables@7.22.5':
dependencies:
- '@babel/types': 7.24.5
+ '@babel/types': 7.28.6
'@babel/helper-member-expression-to-functions@7.24.5':
dependencies:
- '@babel/types': 7.24.5
+ '@babel/types': 7.28.6
'@babel/helper-member-expression-to-functions@7.25.9':
dependencies:
- '@babel/traverse': 7.25.9
- '@babel/types': 7.28.0
+ '@babel/traverse': 7.28.6
+ '@babel/types': 7.28.6
transitivePeerDependencies:
- supports-color
'@babel/helper-module-imports@7.22.15':
dependencies:
- '@babel/types': 7.24.5
+ '@babel/types': 7.28.6
'@babel/helper-module-imports@7.24.3':
dependencies:
- '@babel/types': 7.24.5
+ '@babel/types': 7.28.6
'@babel/helper-module-imports@7.25.9':
dependencies:
- '@babel/traverse': 7.25.9
- '@babel/types': 7.28.0
+ '@babel/traverse': 7.28.6
+ '@babel/types': 7.28.6
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/helper-module-imports@7.27.1':
+ dependencies:
+ '@babel/traverse': 7.28.6
+ '@babel/types': 7.28.6
transitivePeerDependencies:
- supports-color
- '@babel/helper-module-imports@7.27.1':
+ '@babel/helper-module-imports@7.28.6':
dependencies:
- '@babel/traverse': 7.28.4
- '@babel/types': 7.28.0
+ '@babel/traverse': 7.28.6
+ '@babel/types': 7.28.6
transitivePeerDependencies:
- supports-color
@@ -15177,74 +16620,83 @@ snapshots:
dependencies:
'@babel/core': 7.24.5
'@babel/helper-environment-visitor': 7.22.20
- '@babel/helper-module-imports': 7.24.3
+ '@babel/helper-module-imports': 7.27.1
'@babel/helper-simple-access': 7.24.5
'@babel/helper-split-export-declaration': 7.24.5
- '@babel/helper-validator-identifier': 7.24.5
-
- '@babel/helper-module-transforms@7.26.0(@babel/core@7.26.10)':
- dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-module-imports': 7.25.9
'@babel/helper-validator-identifier': 7.27.1
- '@babel/traverse': 7.28.4
transitivePeerDependencies:
- supports-color
'@babel/helper-module-transforms@7.26.0(@babel/core@7.26.9)':
dependencies:
'@babel/core': 7.26.9
- '@babel/helper-module-imports': 7.25.9
- '@babel/helper-validator-identifier': 7.27.1
- '@babel/traverse': 7.28.4
+ '@babel/helper-module-imports': 7.28.6
+ '@babel/helper-validator-identifier': 7.28.5
+ '@babel/traverse': 7.28.6
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/helper-module-transforms@7.28.3(@babel/core@7.26.10)':
+ dependencies:
+ '@babel/core': 7.26.10
+ '@babel/helper-module-imports': 7.28.6
+ '@babel/helper-validator-identifier': 7.28.5
+ '@babel/traverse': 7.28.6
transitivePeerDependencies:
- supports-color
- '@babel/helper-module-transforms@7.28.3(@babel/core@7.24.5)':
+ '@babel/helper-module-transforms@7.28.6(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-module-imports': 7.27.1
- '@babel/helper-validator-identifier': 7.27.1
- '@babel/traverse': 7.28.4
+ '@babel/helper-module-imports': 7.28.6
+ '@babel/helper-validator-identifier': 7.28.5
+ '@babel/traverse': 7.28.6
transitivePeerDependencies:
- supports-color
- '@babel/helper-module-transforms@7.28.3(@babel/core@7.26.10)':
+ '@babel/helper-module-transforms@7.28.6(@babel/core@7.26.10)':
dependencies:
'@babel/core': 7.26.10
- '@babel/helper-module-imports': 7.27.1
- '@babel/helper-validator-identifier': 7.27.1
- '@babel/traverse': 7.28.4
+ '@babel/helper-module-imports': 7.28.6
+ '@babel/helper-validator-identifier': 7.28.5
+ '@babel/traverse': 7.28.6
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/helper-module-transforms@7.28.6(@babel/core@7.28.6)':
+ dependencies:
+ '@babel/core': 7.28.6
+ '@babel/helper-module-imports': 7.28.6
+ '@babel/helper-validator-identifier': 7.28.5
+ '@babel/traverse': 7.28.6
transitivePeerDependencies:
- supports-color
'@babel/helper-optimise-call-expression@7.22.5':
dependencies:
- '@babel/types': 7.24.5
+ '@babel/types': 7.28.6
'@babel/helper-optimise-call-expression@7.25.9':
dependencies:
- '@babel/types': 7.28.0
+ '@babel/types': 7.28.6
'@babel/helper-plugin-utils@7.24.5': {}
- '@babel/helper-plugin-utils@7.25.9': {}
-
'@babel/helper-plugin-utils@7.27.1': {}
'@babel/helper-remap-async-to-generator@7.22.20(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-annotate-as-pure': 7.22.5
+ '@babel/helper-annotate-as-pure': 7.27.3
'@babel/helper-environment-visitor': 7.22.20
'@babel/helper-wrap-function': 7.24.5
'@babel/helper-remap-async-to-generator@7.25.9(@babel/core@7.26.10)':
dependencies:
'@babel/core': 7.26.10
- '@babel/helper-annotate-as-pure': 7.25.9
+ '@babel/helper-annotate-as-pure': 7.27.3
'@babel/helper-wrap-function': 7.25.9
- '@babel/traverse': 7.25.9
+ '@babel/traverse': 7.28.6
transitivePeerDependencies:
- supports-color
@@ -15255,57 +16707,53 @@ snapshots:
'@babel/helper-member-expression-to-functions': 7.24.5
'@babel/helper-optimise-call-expression': 7.22.5
+ '@babel/helper-replace-supers@7.25.9(@babel/core@7.24.5)':
+ dependencies:
+ '@babel/core': 7.24.5
+ '@babel/helper-member-expression-to-functions': 7.25.9
+ '@babel/helper-optimise-call-expression': 7.25.9
+ '@babel/traverse': 7.28.6
+ transitivePeerDependencies:
+ - supports-color
+
'@babel/helper-replace-supers@7.25.9(@babel/core@7.26.10)':
dependencies:
'@babel/core': 7.26.10
'@babel/helper-member-expression-to-functions': 7.25.9
'@babel/helper-optimise-call-expression': 7.25.9
- '@babel/traverse': 7.25.9
+ '@babel/traverse': 7.28.6
transitivePeerDependencies:
- supports-color
'@babel/helper-simple-access@7.24.5':
dependencies:
- '@babel/types': 7.24.5
+ '@babel/types': 7.28.6
'@babel/helper-skip-transparent-expression-wrappers@7.22.5':
dependencies:
- '@babel/types': 7.24.5
-
- '@babel/helper-skip-transparent-expression-wrappers@7.25.9':
- dependencies:
- '@babel/traverse': 7.25.9
- '@babel/types': 7.28.0
- transitivePeerDependencies:
- - supports-color
+ '@babel/types': 7.28.4
'@babel/helper-skip-transparent-expression-wrappers@7.27.1':
dependencies:
- '@babel/traverse': 7.28.4
- '@babel/types': 7.28.0
+ '@babel/traverse': 7.28.6
+ '@babel/types': 7.28.6
transitivePeerDependencies:
- supports-color
'@babel/helper-split-export-declaration@7.24.5':
dependencies:
- '@babel/types': 7.26.0
+ '@babel/types': 7.28.6
'@babel/helper-split-export-declaration@7.24.7':
dependencies:
- '@babel/types': 7.28.0
-
- '@babel/helper-string-parser@7.24.1': {}
-
- '@babel/helper-string-parser@7.25.9': {}
+ '@babel/types': 7.28.4
'@babel/helper-string-parser@7.27.1': {}
- '@babel/helper-validator-identifier@7.24.5': {}
-
- '@babel/helper-validator-identifier@7.25.9': {}
-
'@babel/helper-validator-identifier@7.27.1': {}
+ '@babel/helper-validator-identifier@7.28.5': {}
+
'@babel/helper-validator-option@7.23.5': {}
'@babel/helper-validator-option@7.25.9': {}
@@ -15315,64 +16763,61 @@ snapshots:
'@babel/helper-wrap-function@7.24.5':
dependencies:
'@babel/helper-function-name': 7.23.0
- '@babel/template': 7.24.0
- '@babel/types': 7.24.5
+ '@babel/template': 7.28.6
+ '@babel/types': 7.28.6
'@babel/helper-wrap-function@7.25.9':
dependencies:
- '@babel/template': 7.25.9
- '@babel/traverse': 7.25.9
- '@babel/types': 7.28.0
+ '@babel/template': 7.28.6
+ '@babel/traverse': 7.28.6
+ '@babel/types': 7.28.6
transitivePeerDependencies:
- supports-color
'@babel/helpers@7.24.5':
dependencies:
- '@babel/template': 7.24.0
- '@babel/traverse': 7.24.5
- '@babel/types': 7.24.5
+ '@babel/template': 7.27.2
+ '@babel/traverse': 7.28.4
+ '@babel/types': 7.28.6
transitivePeerDependencies:
- supports-color
'@babel/helpers@7.28.4':
dependencies:
- '@babel/template': 7.27.2
- '@babel/types': 7.28.4
+ '@babel/template': 7.28.6
+ '@babel/types': 7.28.6
+
+ '@babel/helpers@7.28.6':
+ dependencies:
+ '@babel/template': 7.28.6
+ '@babel/types': 7.28.6
'@babel/highlight@7.24.5':
dependencies:
- '@babel/helper-validator-identifier': 7.24.5
+ '@babel/helper-validator-identifier': 7.28.5
chalk: 2.4.2
js-tokens: 4.0.0
picocolors: 1.1.1
'@babel/parser@7.24.5':
dependencies:
- '@babel/types': 7.26.0
-
- '@babel/parser@7.26.2':
- dependencies:
- '@babel/types': 7.28.0
-
- '@babel/parser@7.28.0':
- dependencies:
- '@babel/types': 7.28.0
+ '@babel/types': 7.28.6
- '@babel/parser@7.28.4':
+ '@babel/parser@7.28.6':
dependencies:
- '@babel/types': 7.28.4
+ '@babel/types': 7.28.6
'@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.24.5(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
'@babel/helper-environment-visitor': 7.22.20
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.25.9(@babel/core@7.26.10)':
dependencies:
'@babel/core': 7.26.10
'@babel/helper-plugin-utils': 7.27.1
- '@babel/traverse': 7.25.9
+ '@babel/traverse': 7.28.6
transitivePeerDependencies:
- supports-color
@@ -15384,7 +16829,7 @@ snapshots:
'@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.24.1(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.25.9(@babel/core@7.26.10)':
dependencies:
@@ -15394,7 +16839,7 @@ snapshots:
'@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.24.1(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-plugin-utils': 7.27.1
'@babel/helper-skip-transparent-expression-wrappers': 7.22.5
'@babel/plugin-transform-optional-chaining': 7.24.5(@babel/core@7.24.5)
@@ -15402,7 +16847,7 @@ snapshots:
dependencies:
'@babel/core': 7.26.10
'@babel/helper-plugin-utils': 7.27.1
- '@babel/helper-skip-transparent-expression-wrappers': 7.25.9
+ '@babel/helper-skip-transparent-expression-wrappers': 7.27.1
'@babel/plugin-transform-optional-chaining': 7.25.9(@babel/core@7.26.10)
transitivePeerDependencies:
- supports-color
@@ -15411,41 +16856,45 @@ snapshots:
dependencies:
'@babel/core': 7.24.5
'@babel/helper-environment-visitor': 7.22.20
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.25.9(@babel/core@7.26.10)':
dependencies:
'@babel/core': 7.26.10
'@babel/helper-plugin-utils': 7.27.1
- '@babel/traverse': 7.25.9
+ '@babel/traverse': 7.28.6
transitivePeerDependencies:
- supports-color
'@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-create-class-features-plugin': 7.24.5(@babel/core@7.24.5)
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.24.5)
+ '@babel/helper-plugin-utils': 7.27.1
+ transitivePeerDependencies:
+ - supports-color
'@babel/plugin-proposal-decorators@7.24.1(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-create-class-features-plugin': 7.24.5(@babel/core@7.24.5)
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.24.5)
+ '@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-syntax-decorators': 7.24.1(@babel/core@7.24.5)
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.26.10)':
+ '@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.28.6)':
dependencies:
- '@babel/core': 7.26.10
+ '@babel/core': 7.28.6
'@babel/helper-plugin-utils': 7.24.5
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.26.10)
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.28.6)
- '@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.26.10)':
+ '@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.28.6)':
dependencies:
- '@babel/core': 7.26.10
+ '@babel/core': 7.28.6
'@babel/helper-plugin-utils': 7.24.5
'@babel/helper-skip-transparent-expression-wrappers': 7.22.5
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.26.10)
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.28.6)
'@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.24.5)':
dependencies:
@@ -15458,57 +16907,57 @@ snapshots:
'@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.26.10)':
+ '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.28.6)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/core': 7.28.6
+ '@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
'@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.26.10)':
+ '@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.28.6)':
dependencies:
- '@babel/core': 7.26.10
+ '@babel/core': 7.28.6
'@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.26.10)':
+ '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.28.6)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/core': 7.28.6
+ '@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-syntax-decorators@7.24.1(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-syntax-import-assertions@7.24.1(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-syntax-import-assertions@7.26.0(@babel/core@7.26.10)':
dependencies:
@@ -15518,7 +16967,7 @@ snapshots:
'@babel/plugin-syntax-import-attributes@7.24.1(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-syntax-import-attributes@7.26.0(@babel/core@7.26.10)':
dependencies:
@@ -15528,134 +16977,134 @@ snapshots:
'@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.26.10)':
+ '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.28.6)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/core': 7.28.6
+ '@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.26.10)':
+ '@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.28.6)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/core': 7.28.6
+ '@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-syntax-jsx@7.24.1(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-jsx@7.24.1(@babel/core@7.26.10)':
+ '@babel/plugin-syntax-jsx@7.24.1(@babel/core@7.28.6)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/core': 7.28.6
+ '@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.26.10)':
+ '@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.28.6)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/core': 7.28.6
+ '@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.26.10)':
+ '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.28.6)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/core': 7.28.6
+ '@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.26.10)':
+ '@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.28.6)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/core': 7.28.6
+ '@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.26.10)':
+ '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.28.6)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/core': 7.28.6
+ '@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.26.10)':
+ '@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.28.6)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/core': 7.28.6
+ '@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.26.10)':
+ '@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.28.6)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/core': 7.28.6
+ '@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.26.10)':
+ '@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.28.6)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/core': 7.28.6
+ '@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-syntax-typescript@7.24.1(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-plugin-utils': 7.27.1
- '@babel/plugin-syntax-typescript@7.24.1(@babel/core@7.26.10)':
+ '@babel/plugin-syntax-typescript@7.24.1(@babel/core@7.28.6)':
dependencies:
- '@babel/core': 7.26.10
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/core': 7.28.6
+ '@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
'@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.5)
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.26.10)':
dependencies:
'@babel/core': 7.26.10
'@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.26.10)
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-transform-arrow-functions@7.24.1(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-transform-arrow-functions@7.25.9(@babel/core@7.26.10)':
dependencies:
@@ -15666,7 +17115,7 @@ snapshots:
dependencies:
'@babel/core': 7.24.5
'@babel/helper-environment-visitor': 7.22.20
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-plugin-utils': 7.27.1
'@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.24.5)
'@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.5)
@@ -15682,15 +17131,17 @@ snapshots:
'@babel/plugin-transform-async-to-generator@7.24.1(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-module-imports': 7.24.3
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-module-imports': 7.27.1
+ '@babel/helper-plugin-utils': 7.27.1
'@babel/helper-remap-async-to-generator': 7.22.20(@babel/core@7.24.5)
+ transitivePeerDependencies:
+ - supports-color
'@babel/plugin-transform-async-to-generator@7.25.9(@babel/core@7.26.10)':
dependencies:
'@babel/core': 7.26.10
'@babel/helper-module-imports': 7.25.9
- '@babel/helper-plugin-utils': 7.25.9
+ '@babel/helper-plugin-utils': 7.27.1
'@babel/helper-remap-async-to-generator': 7.25.9(@babel/core@7.26.10)
transitivePeerDependencies:
- supports-color
@@ -15698,7 +17149,7 @@ snapshots:
'@babel/plugin-transform-block-scoped-functions@7.24.1(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-transform-block-scoped-functions@7.27.1(@babel/core@7.26.10)':
dependencies:
@@ -15708,7 +17159,7 @@ snapshots:
'@babel/plugin-transform-block-scoping@7.24.5(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-transform-block-scoping@7.25.9(@babel/core@7.26.10)':
dependencies:
@@ -15719,7 +17170,9 @@ snapshots:
dependencies:
'@babel/core': 7.24.5
'@babel/helper-create-class-features-plugin': 7.24.5(@babel/core@7.24.5)
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-plugin-utils': 7.27.1
+ transitivePeerDependencies:
+ - supports-color
'@babel/plugin-transform-class-properties@7.25.9(@babel/core@7.26.10)':
dependencies:
@@ -15733,8 +17186,10 @@ snapshots:
dependencies:
'@babel/core': 7.24.5
'@babel/helper-create-class-features-plugin': 7.24.5(@babel/core@7.24.5)
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.24.5)
+ transitivePeerDependencies:
+ - supports-color
'@babel/plugin-transform-class-static-block@7.26.0(@babel/core@7.26.10)':
dependencies:
@@ -15748,10 +17203,10 @@ snapshots:
dependencies:
'@babel/core': 7.24.5
'@babel/helper-annotate-as-pure': 7.22.5
- '@babel/helper-compilation-targets': 7.23.6
+ '@babel/helper-compilation-targets': 7.28.6
'@babel/helper-environment-visitor': 7.22.20
'@babel/helper-function-name': 7.23.0
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-plugin-utils': 7.27.1
'@babel/helper-replace-supers': 7.24.1(@babel/core@7.24.5)
'@babel/helper-split-export-declaration': 7.24.5
globals: 11.12.0
@@ -15759,11 +17214,11 @@ snapshots:
'@babel/plugin-transform-classes@7.25.9(@babel/core@7.26.10)':
dependencies:
'@babel/core': 7.26.10
- '@babel/helper-annotate-as-pure': 7.25.9
- '@babel/helper-compilation-targets': 7.27.2
+ '@babel/helper-annotate-as-pure': 7.27.3
+ '@babel/helper-compilation-targets': 7.28.6
'@babel/helper-plugin-utils': 7.27.1
'@babel/helper-replace-supers': 7.25.9(@babel/core@7.26.10)
- '@babel/traverse': 7.25.9
+ '@babel/traverse': 7.28.6
globals: 11.12.0
transitivePeerDependencies:
- supports-color
@@ -15771,19 +17226,19 @@ snapshots:
'@babel/plugin-transform-computed-properties@7.24.1(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.24.5
- '@babel/template': 7.24.0
+ '@babel/helper-plugin-utils': 7.27.1
+ '@babel/template': 7.28.6
'@babel/plugin-transform-computed-properties@7.25.9(@babel/core@7.26.10)':
dependencies:
'@babel/core': 7.26.10
'@babel/helper-plugin-utils': 7.27.1
- '@babel/template': 7.25.9
+ '@babel/template': 7.28.6
'@babel/plugin-transform-destructuring@7.24.5(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-transform-destructuring@7.25.9(@babel/core@7.26.10)':
dependencies:
@@ -15794,7 +17249,7 @@ snapshots:
dependencies:
'@babel/core': 7.24.5
'@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.5)
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-transform-dotall-regex@7.25.9(@babel/core@7.26.10)':
dependencies:
@@ -15805,7 +17260,7 @@ snapshots:
'@babel/plugin-transform-duplicate-keys@7.24.1(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-transform-duplicate-keys@7.25.9(@babel/core@7.26.10)':
dependencies:
@@ -15821,7 +17276,7 @@ snapshots:
'@babel/plugin-transform-dynamic-import@7.24.1(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.5)
'@babel/plugin-transform-dynamic-import@7.25.9(@babel/core@7.26.10)':
@@ -15833,7 +17288,7 @@ snapshots:
dependencies:
'@babel/core': 7.24.5
'@babel/helper-builder-binary-assignment-operator-visitor': 7.22.15
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-transform-exponentiation-operator@7.27.1(@babel/core@7.26.10)':
dependencies:
@@ -15843,7 +17298,7 @@ snapshots:
'@babel/plugin-transform-export-namespace-from@7.24.1(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.24.5)
'@babel/plugin-transform-export-namespace-from@7.25.9(@babel/core@7.26.10)':
@@ -15854,7 +17309,7 @@ snapshots:
'@babel/plugin-transform-for-of@7.24.1(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-plugin-utils': 7.27.1
'@babel/helper-skip-transparent-expression-wrappers': 7.22.5
'@babel/plugin-transform-for-of@7.27.1(@babel/core@7.26.10)':
@@ -15868,23 +17323,23 @@ snapshots:
'@babel/plugin-transform-function-name@7.24.1(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-compilation-targets': 7.23.6
+ '@babel/helper-compilation-targets': 7.28.6
'@babel/helper-function-name': 7.23.0
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-transform-function-name@7.25.9(@babel/core@7.26.10)':
dependencies:
'@babel/core': 7.26.10
- '@babel/helper-compilation-targets': 7.27.2
+ '@babel/helper-compilation-targets': 7.28.6
'@babel/helper-plugin-utils': 7.27.1
- '@babel/traverse': 7.25.9
+ '@babel/traverse': 7.28.6
transitivePeerDependencies:
- supports-color
'@babel/plugin-transform-json-strings@7.24.1(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.24.5)
'@babel/plugin-transform-json-strings@7.25.9(@babel/core@7.26.10)':
@@ -15895,7 +17350,7 @@ snapshots:
'@babel/plugin-transform-literals@7.24.1(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-transform-literals@7.25.9(@babel/core@7.26.10)':
dependencies:
@@ -15905,7 +17360,7 @@ snapshots:
'@babel/plugin-transform-logical-assignment-operators@7.24.1(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.5)
'@babel/plugin-transform-logical-assignment-operators@7.25.9(@babel/core@7.26.10)':
@@ -15916,7 +17371,7 @@ snapshots:
'@babel/plugin-transform-member-expression-literals@7.24.1(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-transform-member-expression-literals@7.25.9(@babel/core@7.26.10)':
dependencies:
@@ -15926,13 +17381,15 @@ snapshots:
'@babel/plugin-transform-modules-amd@7.24.1(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-module-transforms': 7.24.5(@babel/core@7.24.5)
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-module-transforms': 7.28.6(@babel/core@7.24.5)
+ '@babel/helper-plugin-utils': 7.27.1
+ transitivePeerDependencies:
+ - supports-color
'@babel/plugin-transform-modules-amd@7.25.9(@babel/core@7.26.10)':
dependencies:
'@babel/core': 7.26.10
- '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.10)
+ '@babel/helper-module-transforms': 7.28.6(@babel/core@7.26.10)
'@babel/helper-plugin-utils': 7.27.1
transitivePeerDependencies:
- supports-color
@@ -15940,14 +17397,16 @@ snapshots:
'@babel/plugin-transform-modules-commonjs@7.24.1(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-module-transforms': 7.24.5(@babel/core@7.24.5)
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-module-transforms': 7.28.6(@babel/core@7.24.5)
+ '@babel/helper-plugin-utils': 7.27.1
'@babel/helper-simple-access': 7.24.5
+ transitivePeerDependencies:
+ - supports-color
'@babel/plugin-transform-modules-commonjs@7.27.1(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-module-transforms': 7.28.3(@babel/core@7.24.5)
+ '@babel/helper-module-transforms': 7.28.6(@babel/core@7.24.5)
'@babel/helper-plugin-utils': 7.27.1
transitivePeerDependencies:
- supports-color
@@ -15955,7 +17414,7 @@ snapshots:
'@babel/plugin-transform-modules-commonjs@7.27.1(@babel/core@7.26.10)':
dependencies:
'@babel/core': 7.26.10
- '@babel/helper-module-transforms': 7.28.3(@babel/core@7.26.10)
+ '@babel/helper-module-transforms': 7.28.6(@babel/core@7.26.10)
'@babel/helper-plugin-utils': 7.27.1
transitivePeerDependencies:
- supports-color
@@ -15964,30 +17423,34 @@ snapshots:
dependencies:
'@babel/core': 7.24.5
'@babel/helper-hoist-variables': 7.22.5
- '@babel/helper-module-transforms': 7.24.5(@babel/core@7.24.5)
- '@babel/helper-plugin-utils': 7.24.5
- '@babel/helper-validator-identifier': 7.24.5
+ '@babel/helper-module-transforms': 7.28.6(@babel/core@7.24.5)
+ '@babel/helper-plugin-utils': 7.27.1
+ '@babel/helper-validator-identifier': 7.28.5
+ transitivePeerDependencies:
+ - supports-color
'@babel/plugin-transform-modules-systemjs@7.25.9(@babel/core@7.26.10)':
dependencies:
'@babel/core': 7.26.10
- '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.10)
+ '@babel/helper-module-transforms': 7.28.6(@babel/core@7.26.10)
'@babel/helper-plugin-utils': 7.27.1
- '@babel/helper-validator-identifier': 7.27.1
- '@babel/traverse': 7.25.9
+ '@babel/helper-validator-identifier': 7.28.5
+ '@babel/traverse': 7.28.6
transitivePeerDependencies:
- supports-color
'@babel/plugin-transform-modules-umd@7.24.1(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-module-transforms': 7.24.5(@babel/core@7.24.5)
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-module-transforms': 7.28.6(@babel/core@7.24.5)
+ '@babel/helper-plugin-utils': 7.27.1
+ transitivePeerDependencies:
+ - supports-color
'@babel/plugin-transform-modules-umd@7.25.9(@babel/core@7.26.10)':
dependencies:
'@babel/core': 7.26.10
- '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.10)
+ '@babel/helper-module-transforms': 7.28.6(@babel/core@7.26.10)
'@babel/helper-plugin-utils': 7.27.1
transitivePeerDependencies:
- supports-color
@@ -15996,7 +17459,7 @@ snapshots:
dependencies:
'@babel/core': 7.24.5
'@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.5)
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-transform-named-capturing-groups-regex@7.25.9(@babel/core@7.26.10)':
dependencies:
@@ -16007,7 +17470,7 @@ snapshots:
'@babel/plugin-transform-new-target@7.24.1(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-transform-new-target@7.25.9(@babel/core@7.26.10)':
dependencies:
@@ -16017,7 +17480,7 @@ snapshots:
'@babel/plugin-transform-nullish-coalescing-operator@7.24.1(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.5)
'@babel/plugin-transform-nullish-coalescing-operator@7.27.1(@babel/core@7.26.10)':
@@ -16028,7 +17491,7 @@ snapshots:
'@babel/plugin-transform-numeric-separator@7.24.1(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.5)
'@babel/plugin-transform-numeric-separator@7.25.9(@babel/core@7.26.10)':
@@ -16039,22 +17502,22 @@ snapshots:
'@babel/plugin-transform-object-rest-spread@7.24.5(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-compilation-targets': 7.23.6
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-compilation-targets': 7.28.6
+ '@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.5)
'@babel/plugin-transform-parameters': 7.24.5(@babel/core@7.24.5)
'@babel/plugin-transform-object-rest-spread@7.25.9(@babel/core@7.26.10)':
dependencies:
'@babel/core': 7.26.10
- '@babel/helper-compilation-targets': 7.27.2
+ '@babel/helper-compilation-targets': 7.28.6
'@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-transform-parameters': 7.25.9(@babel/core@7.26.10)
'@babel/plugin-transform-object-super@7.24.1(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-plugin-utils': 7.27.1
'@babel/helper-replace-supers': 7.24.1(@babel/core@7.24.5)
'@babel/plugin-transform-object-super@7.25.9(@babel/core@7.26.10)':
@@ -16068,7 +17531,7 @@ snapshots:
'@babel/plugin-transform-optional-catch-binding@7.24.1(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.5)
'@babel/plugin-transform-optional-catch-binding@7.25.9(@babel/core@7.26.10)':
@@ -16079,7 +17542,7 @@ snapshots:
'@babel/plugin-transform-optional-chaining@7.24.5(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-plugin-utils': 7.27.1
'@babel/helper-skip-transparent-expression-wrappers': 7.22.5
'@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.5)
@@ -16087,14 +17550,14 @@ snapshots:
dependencies:
'@babel/core': 7.26.10
'@babel/helper-plugin-utils': 7.27.1
- '@babel/helper-skip-transparent-expression-wrappers': 7.25.9
+ '@babel/helper-skip-transparent-expression-wrappers': 7.27.1
transitivePeerDependencies:
- supports-color
'@babel/plugin-transform-parameters@7.24.5(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-transform-parameters@7.25.9(@babel/core@7.26.10)':
dependencies:
@@ -16105,7 +17568,9 @@ snapshots:
dependencies:
'@babel/core': 7.24.5
'@babel/helper-create-class-features-plugin': 7.24.5(@babel/core@7.24.5)
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-plugin-utils': 7.27.1
+ transitivePeerDependencies:
+ - supports-color
'@babel/plugin-transform-private-methods@7.25.9(@babel/core@7.26.10)':
dependencies:
@@ -16120,13 +17585,15 @@ snapshots:
'@babel/core': 7.24.5
'@babel/helper-annotate-as-pure': 7.22.5
'@babel/helper-create-class-features-plugin': 7.24.5(@babel/core@7.24.5)
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.24.5)
+ transitivePeerDependencies:
+ - supports-color
'@babel/plugin-transform-private-property-in-object@7.25.9(@babel/core@7.26.10)':
dependencies:
'@babel/core': 7.26.10
- '@babel/helper-annotate-as-pure': 7.25.9
+ '@babel/helper-annotate-as-pure': 7.27.3
'@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.26.10)
'@babel/helper-plugin-utils': 7.27.1
transitivePeerDependencies:
@@ -16135,17 +17602,27 @@ snapshots:
'@babel/plugin-transform-property-literals@7.24.1(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-transform-property-literals@7.25.9(@babel/core@7.26.10)':
dependencies:
'@babel/core': 7.26.10
'@babel/helper-plugin-utils': 7.27.1
+ '@babel/plugin-transform-react-jsx-self@7.27.1(@babel/core@7.28.6)':
+ dependencies:
+ '@babel/core': 7.28.6
+ '@babel/helper-plugin-utils': 7.27.1
+
+ '@babel/plugin-transform-react-jsx-source@7.27.1(@babel/core@7.28.6)':
+ dependencies:
+ '@babel/core': 7.28.6
+ '@babel/helper-plugin-utils': 7.27.1
+
'@babel/plugin-transform-regenerator@7.24.1(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-plugin-utils': 7.27.1
regenerator-transform: 0.15.2
'@babel/plugin-transform-regenerator@7.25.9(@babel/core@7.26.10)':
@@ -16163,7 +17640,7 @@ snapshots:
'@babel/plugin-transform-reserved-words@7.24.1(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-transform-reserved-words@7.25.9(@babel/core@7.26.10)':
dependencies:
@@ -16173,8 +17650,8 @@ snapshots:
'@babel/plugin-transform-runtime@7.24.3(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-module-imports': 7.24.3
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-module-imports': 7.28.6
+ '@babel/helper-plugin-utils': 7.27.1
babel-plugin-polyfill-corejs2: 0.4.11(@babel/core@7.24.5)
babel-plugin-polyfill-corejs3: 0.10.4(@babel/core@7.24.5)
babel-plugin-polyfill-regenerator: 0.6.2(@babel/core@7.24.5)
@@ -16197,7 +17674,7 @@ snapshots:
'@babel/plugin-transform-shorthand-properties@7.24.1(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-transform-shorthand-properties@7.25.9(@babel/core@7.26.10)':
dependencies:
@@ -16207,21 +17684,21 @@ snapshots:
'@babel/plugin-transform-spread@7.24.1(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-plugin-utils': 7.27.1
'@babel/helper-skip-transparent-expression-wrappers': 7.22.5
'@babel/plugin-transform-spread@7.25.9(@babel/core@7.26.10)':
dependencies:
'@babel/core': 7.26.10
'@babel/helper-plugin-utils': 7.27.1
- '@babel/helper-skip-transparent-expression-wrappers': 7.25.9
+ '@babel/helper-skip-transparent-expression-wrappers': 7.27.1
transitivePeerDependencies:
- supports-color
'@babel/plugin-transform-sticky-regex@7.24.1(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-transform-sticky-regex@7.25.9(@babel/core@7.26.10)':
dependencies:
@@ -16231,7 +17708,7 @@ snapshots:
'@babel/plugin-transform-template-literals@7.24.1(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-transform-template-literals@7.27.1(@babel/core@7.26.10)':
dependencies:
@@ -16241,7 +17718,7 @@ snapshots:
'@babel/plugin-transform-typeof-symbol@7.24.5(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-transform-typeof-symbol@7.27.1(@babel/core@7.26.10)':
dependencies:
@@ -16253,13 +17730,15 @@ snapshots:
'@babel/core': 7.24.5
'@babel/helper-annotate-as-pure': 7.22.5
'@babel/helper-create-class-features-plugin': 7.24.5(@babel/core@7.24.5)
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-syntax-typescript': 7.24.1(@babel/core@7.24.5)
+ transitivePeerDependencies:
+ - supports-color
'@babel/plugin-transform-unicode-escapes@7.24.1(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-transform-unicode-escapes@7.25.9(@babel/core@7.26.10)':
dependencies:
@@ -16270,7 +17749,7 @@ snapshots:
dependencies:
'@babel/core': 7.24.5
'@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.5)
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-transform-unicode-property-regex@7.25.9(@babel/core@7.26.10)':
dependencies:
@@ -16282,7 +17761,7 @@ snapshots:
dependencies:
'@babel/core': 7.24.5
'@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.5)
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-transform-unicode-regex@7.25.9(@babel/core@7.26.10)':
dependencies:
@@ -16294,7 +17773,7 @@ snapshots:
dependencies:
'@babel/core': 7.24.5
'@babel/helper-create-regexp-features-plugin': 7.22.15(@babel/core@7.24.5)
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-transform-unicode-sets-regex@7.25.9(@babel/core@7.26.10)':
dependencies:
@@ -16467,15 +17946,15 @@ snapshots:
'@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-plugin-utils': 7.24.5
- '@babel/types': 7.24.5
+ '@babel/helper-plugin-utils': 7.27.1
+ '@babel/types': 7.28.6
esutils: 2.0.3
'@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.26.10)':
dependencies:
'@babel/core': 7.26.10
- '@babel/helper-plugin-utils': 7.24.5
- '@babel/types': 7.24.5
+ '@babel/helper-plugin-utils': 7.27.1
+ '@babel/types': 7.28.6
esutils: 2.0.3
'@babel/preset-typescript@7.24.1(@babel/core@7.24.5)':
@@ -16486,6 +17965,8 @@ snapshots:
'@babel/plugin-syntax-jsx': 7.24.1(@babel/core@7.24.5)
'@babel/plugin-transform-modules-commonjs': 7.24.1(@babel/core@7.24.5)
'@babel/plugin-transform-typescript': 7.24.5(@babel/core@7.24.5)
+ transitivePeerDependencies:
+ - supports-color
'@babel/regjsgen@0.8.0': {}
@@ -16508,81 +17989,81 @@ snapshots:
'@babel/template@7.24.0':
dependencies:
- '@babel/code-frame': 7.24.2
- '@babel/parser': 7.24.5
- '@babel/types': 7.24.5
+ '@babel/code-frame': 7.27.1
+ '@babel/parser': 7.28.6
+ '@babel/types': 7.28.6
- '@babel/template@7.25.9':
+ '@babel/template@7.27.2':
dependencies:
- '@babel/code-frame': 7.26.2
- '@babel/parser': 7.28.0
- '@babel/types': 7.28.0
+ '@babel/code-frame': 7.28.6
+ '@babel/parser': 7.28.6
+ '@babel/types': 7.28.6
- '@babel/template@7.27.2':
+ '@babel/template@7.28.6':
dependencies:
- '@babel/code-frame': 7.27.1
- '@babel/parser': 7.28.0
- '@babel/types': 7.28.0
+ '@babel/code-frame': 7.28.6
+ '@babel/parser': 7.28.6
+ '@babel/types': 7.28.6
'@babel/traverse@7.24.5':
dependencies:
- '@babel/code-frame': 7.24.2
- '@babel/generator': 7.24.5
+ '@babel/code-frame': 7.27.1
+ '@babel/generator': 7.28.3
'@babel/helper-environment-visitor': 7.22.20
'@babel/helper-function-name': 7.23.0
'@babel/helper-hoist-variables': 7.22.5
'@babel/helper-split-export-declaration': 7.24.5
- '@babel/parser': 7.24.5
- '@babel/types': 7.24.5
- debug: 4.3.4
+ '@babel/parser': 7.28.6
+ '@babel/types': 7.28.6
+ debug: 4.4.3
globals: 11.12.0
transitivePeerDependencies:
- supports-color
- '@babel/traverse@7.25.9':
+ '@babel/traverse@7.28.4':
dependencies:
- '@babel/code-frame': 7.26.2
- '@babel/generator': 7.26.10
- '@babel/parser': 7.28.0
- '@babel/template': 7.25.9
- '@babel/types': 7.28.0
- debug: 4.3.7
- globals: 11.12.0
+ '@babel/code-frame': 7.28.6
+ '@babel/generator': 7.28.6
+ '@babel/helper-globals': 7.28.0
+ '@babel/parser': 7.28.6
+ '@babel/template': 7.28.6
+ '@babel/types': 7.28.6
+ debug: 4.4.3
transitivePeerDependencies:
- supports-color
- '@babel/traverse@7.28.4':
+ '@babel/traverse@7.28.6':
dependencies:
- '@babel/code-frame': 7.27.1
- '@babel/generator': 7.28.3
+ '@babel/code-frame': 7.28.6
+ '@babel/generator': 7.28.6
'@babel/helper-globals': 7.28.0
- '@babel/parser': 7.28.4
- '@babel/template': 7.27.2
- '@babel/types': 7.28.4
- debug: 4.3.7
+ '@babel/parser': 7.28.6
+ '@babel/template': 7.28.6
+ '@babel/types': 7.28.6
+ debug: 4.4.3
transitivePeerDependencies:
- supports-color
'@babel/types@7.24.5':
dependencies:
- '@babel/helper-string-parser': 7.24.1
- '@babel/helper-validator-identifier': 7.24.5
+ '@babel/helper-string-parser': 7.27.1
+ '@babel/helper-validator-identifier': 7.27.1
to-fast-properties: 2.0.0
- '@babel/types@7.26.0':
- dependencies:
- '@babel/helper-string-parser': 7.25.9
- '@babel/helper-validator-identifier': 7.25.9
-
'@babel/types@7.28.0':
dependencies:
'@babel/helper-string-parser': 7.27.1
- '@babel/helper-validator-identifier': 7.27.1
+ '@babel/helper-validator-identifier': 7.28.5
'@babel/types@7.28.4':
dependencies:
'@babel/helper-string-parser': 7.27.1
- '@babel/helper-validator-identifier': 7.27.1
+ '@babel/helper-validator-identifier': 7.28.5
+
+ '@babel/types@7.28.6':
+ dependencies:
+ '@babel/helper-string-parser': 7.27.1
+ '@babel/helper-validator-identifier': 7.28.5
'@bcoe/v8-coverage@0.2.3': {}
@@ -16641,8 +18122,8 @@ snapshots:
'@emotion/babel-plugin@11.11.0':
dependencies:
- '@babel/helper-module-imports': 7.24.3
- '@babel/runtime': 7.24.5
+ '@babel/helper-module-imports': 7.27.1
+ '@babel/runtime': 7.28.4
'@emotion/hash': 0.9.1
'@emotion/memoize': 0.8.1
'@emotion/serialize': 1.1.4
@@ -16652,6 +18133,8 @@ snapshots:
find-root: 1.1.0
source-map: 0.5.7
stylis: 4.2.0
+ transitivePeerDependencies:
+ - supports-color
'@emotion/cache@11.11.0':
dependencies:
@@ -16694,6 +18177,8 @@ snapshots:
react: 17.0.2
optionalDependencies:
'@types/react': 17.0.80
+ transitivePeerDependencies:
+ - supports-color
'@emotion/serialize@1.1.4':
dependencies:
@@ -16701,7 +18186,7 @@ snapshots:
'@emotion/memoize': 0.8.1
'@emotion/unitless': 0.8.1
'@emotion/utils': 1.2.1
- csstype: 3.1.3
+ csstype: 3.2.3
'@emotion/serialize@1.3.3':
dependencies:
@@ -16709,7 +18194,7 @@ snapshots:
'@emotion/memoize': 0.9.0
'@emotion/unitless': 0.10.0
'@emotion/utils': 1.4.2
- csstype: 3.1.3
+ csstype: 3.2.3
'@emotion/sheet@1.2.2': {}
@@ -16727,6 +18212,8 @@ snapshots:
react: 17.0.2
optionalDependencies:
'@types/react': 17.0.80
+ transitivePeerDependencies:
+ - supports-color
'@emotion/unitless@0.10.0': {}
@@ -16755,6 +18242,9 @@ snapshots:
'@esbuild/aix-ppc64@0.25.4':
optional: true
+ '@esbuild/aix-ppc64@0.27.2':
+ optional: true
+
'@esbuild/android-arm64@0.21.5':
optional: true
@@ -16764,6 +18254,9 @@ snapshots:
'@esbuild/android-arm64@0.25.4':
optional: true
+ '@esbuild/android-arm64@0.27.2':
+ optional: true
+
'@esbuild/android-arm@0.21.5':
optional: true
@@ -16773,6 +18266,9 @@ snapshots:
'@esbuild/android-arm@0.25.4':
optional: true
+ '@esbuild/android-arm@0.27.2':
+ optional: true
+
'@esbuild/android-x64@0.21.5':
optional: true
@@ -16782,6 +18278,9 @@ snapshots:
'@esbuild/android-x64@0.25.4':
optional: true
+ '@esbuild/android-x64@0.27.2':
+ optional: true
+
'@esbuild/darwin-arm64@0.21.5':
optional: true
@@ -16791,6 +18290,9 @@ snapshots:
'@esbuild/darwin-arm64@0.25.4':
optional: true
+ '@esbuild/darwin-arm64@0.27.2':
+ optional: true
+
'@esbuild/darwin-x64@0.21.5':
optional: true
@@ -16800,6 +18302,9 @@ snapshots:
'@esbuild/darwin-x64@0.25.4':
optional: true
+ '@esbuild/darwin-x64@0.27.2':
+ optional: true
+
'@esbuild/freebsd-arm64@0.21.5':
optional: true
@@ -16809,6 +18314,9 @@ snapshots:
'@esbuild/freebsd-arm64@0.25.4':
optional: true
+ '@esbuild/freebsd-arm64@0.27.2':
+ optional: true
+
'@esbuild/freebsd-x64@0.21.5':
optional: true
@@ -16818,6 +18326,9 @@ snapshots:
'@esbuild/freebsd-x64@0.25.4':
optional: true
+ '@esbuild/freebsd-x64@0.27.2':
+ optional: true
+
'@esbuild/linux-arm64@0.21.5':
optional: true
@@ -16827,6 +18338,9 @@ snapshots:
'@esbuild/linux-arm64@0.25.4':
optional: true
+ '@esbuild/linux-arm64@0.27.2':
+ optional: true
+
'@esbuild/linux-arm@0.21.5':
optional: true
@@ -16836,6 +18350,9 @@ snapshots:
'@esbuild/linux-arm@0.25.4':
optional: true
+ '@esbuild/linux-arm@0.27.2':
+ optional: true
+
'@esbuild/linux-ia32@0.21.5':
optional: true
@@ -16845,6 +18362,9 @@ snapshots:
'@esbuild/linux-ia32@0.25.4':
optional: true
+ '@esbuild/linux-ia32@0.27.2':
+ optional: true
+
'@esbuild/linux-loong64@0.21.5':
optional: true
@@ -16854,6 +18374,9 @@ snapshots:
'@esbuild/linux-loong64@0.25.4':
optional: true
+ '@esbuild/linux-loong64@0.27.2':
+ optional: true
+
'@esbuild/linux-mips64el@0.21.5':
optional: true
@@ -16863,6 +18386,9 @@ snapshots:
'@esbuild/linux-mips64el@0.25.4':
optional: true
+ '@esbuild/linux-mips64el@0.27.2':
+ optional: true
+
'@esbuild/linux-ppc64@0.21.5':
optional: true
@@ -16872,6 +18398,9 @@ snapshots:
'@esbuild/linux-ppc64@0.25.4':
optional: true
+ '@esbuild/linux-ppc64@0.27.2':
+ optional: true
+
'@esbuild/linux-riscv64@0.21.5':
optional: true
@@ -16881,6 +18410,9 @@ snapshots:
'@esbuild/linux-riscv64@0.25.4':
optional: true
+ '@esbuild/linux-riscv64@0.27.2':
+ optional: true
+
'@esbuild/linux-s390x@0.21.5':
optional: true
@@ -16890,6 +18422,9 @@ snapshots:
'@esbuild/linux-s390x@0.25.4':
optional: true
+ '@esbuild/linux-s390x@0.27.2':
+ optional: true
+
'@esbuild/linux-x64@0.21.5':
optional: true
@@ -16899,12 +18434,18 @@ snapshots:
'@esbuild/linux-x64@0.25.4':
optional: true
+ '@esbuild/linux-x64@0.27.2':
+ optional: true
+
'@esbuild/netbsd-arm64@0.25.10':
optional: true
'@esbuild/netbsd-arm64@0.25.4':
optional: true
+ '@esbuild/netbsd-arm64@0.27.2':
+ optional: true
+
'@esbuild/netbsd-x64@0.21.5':
optional: true
@@ -16914,12 +18455,18 @@ snapshots:
'@esbuild/netbsd-x64@0.25.4':
optional: true
+ '@esbuild/netbsd-x64@0.27.2':
+ optional: true
+
'@esbuild/openbsd-arm64@0.25.10':
optional: true
'@esbuild/openbsd-arm64@0.25.4':
optional: true
+ '@esbuild/openbsd-arm64@0.27.2':
+ optional: true
+
'@esbuild/openbsd-x64@0.21.5':
optional: true
@@ -16929,9 +18476,15 @@ snapshots:
'@esbuild/openbsd-x64@0.25.4':
optional: true
+ '@esbuild/openbsd-x64@0.27.2':
+ optional: true
+
'@esbuild/openharmony-arm64@0.25.10':
optional: true
+ '@esbuild/openharmony-arm64@0.27.2':
+ optional: true
+
'@esbuild/sunos-x64@0.21.5':
optional: true
@@ -16941,6 +18494,9 @@ snapshots:
'@esbuild/sunos-x64@0.25.4':
optional: true
+ '@esbuild/sunos-x64@0.27.2':
+ optional: true
+
'@esbuild/win32-arm64@0.21.5':
optional: true
@@ -16950,6 +18506,9 @@ snapshots:
'@esbuild/win32-arm64@0.25.4':
optional: true
+ '@esbuild/win32-arm64@0.27.2':
+ optional: true
+
'@esbuild/win32-ia32@0.21.5':
optional: true
@@ -16959,6 +18518,9 @@ snapshots:
'@esbuild/win32-ia32@0.25.4':
optional: true
+ '@esbuild/win32-ia32@0.27.2':
+ optional: true
+
'@esbuild/win32-x64@0.21.5':
optional: true
@@ -16968,11 +18530,19 @@ snapshots:
'@esbuild/win32-x64@0.25.4':
optional: true
+ '@esbuild/win32-x64@0.27.2':
+ optional: true
+
'@eslint-community/eslint-utils@4.4.0(eslint@8.57.0)':
dependencies:
eslint: 8.57.0
eslint-visitor-keys: 3.4.3
+ '@eslint-community/eslint-utils@4.9.1(eslint@8.57.0)':
+ dependencies:
+ eslint: 8.57.0
+ eslint-visitor-keys: 3.4.3
+
'@eslint-community/regexpp@4.10.0': {}
'@eslint/eslintrc@2.1.4':
@@ -16991,6 +18561,23 @@ snapshots:
'@eslint/js@8.57.0': {}
+ '@floating-ui/core@1.7.3':
+ dependencies:
+ '@floating-ui/utils': 0.2.10
+
+ '@floating-ui/dom@1.7.4':
+ dependencies:
+ '@floating-ui/core': 1.7.3
+ '@floating-ui/utils': 0.2.10
+
+ '@floating-ui/react-dom@2.1.6(react-dom@17.0.2(react@17.0.2))(react@17.0.2)':
+ dependencies:
+ '@floating-ui/dom': 1.7.4
+ react: 17.0.2
+ react-dom: 17.0.2(react@17.0.2)
+
+ '@floating-ui/utils@0.2.10': {}
+
'@fortawesome/fontawesome-free@6.6.0': {}
'@hapi/hoek@9.3.0': {}
@@ -17029,22 +18616,22 @@ snapshots:
optionalDependencies:
'@types/node': 22.13.8
- '@inquirer/checkbox@4.3.2(@types/node@22.13.8)':
+ '@inquirer/checkbox@4.3.2(@types/node@24.10.9)':
dependencies:
'@inquirer/ansi': 1.0.2
- '@inquirer/core': 10.3.2(@types/node@22.13.8)
+ '@inquirer/core': 10.3.2(@types/node@24.10.9)
'@inquirer/figures': 1.0.15
- '@inquirer/type': 3.0.10(@types/node@22.13.8)
+ '@inquirer/type': 3.0.10(@types/node@24.10.9)
yoctocolors-cjs: 2.1.3
optionalDependencies:
- '@types/node': 22.13.8
+ '@types/node': 24.10.9
- '@inquirer/confirm@5.1.21(@types/node@22.13.8)':
+ '@inquirer/confirm@5.1.21(@types/node@24.10.9)':
dependencies:
- '@inquirer/core': 10.3.2(@types/node@22.13.8)
- '@inquirer/type': 3.0.10(@types/node@22.13.8)
+ '@inquirer/core': 10.3.2(@types/node@24.10.9)
+ '@inquirer/type': 3.0.10(@types/node@24.10.9)
optionalDependencies:
- '@types/node': 22.13.8
+ '@types/node': 24.10.9
'@inquirer/confirm@5.1.6(@types/node@22.13.8)':
dependencies:
@@ -17057,7 +18644,7 @@ snapshots:
dependencies:
'@inquirer/ansi': 1.0.0
'@inquirer/figures': 1.0.13
- '@inquirer/type': 3.0.8(@types/node@22.13.8)
+ '@inquirer/type': 3.0.10(@types/node@22.13.8)
cli-width: 4.1.0
mute-stream: 2.0.0
signal-exit: 4.1.0
@@ -17079,18 +18666,31 @@ snapshots:
optionalDependencies:
'@types/node': 22.13.8
- '@inquirer/core@10.3.2(@types/node@22.13.8)':
+ '@inquirer/core@10.3.0(@types/node@24.10.9)':
+ dependencies:
+ '@inquirer/ansi': 1.0.1
+ '@inquirer/figures': 1.0.14
+ '@inquirer/type': 3.0.9(@types/node@24.10.9)
+ cli-width: 4.1.0
+ mute-stream: 2.0.0
+ signal-exit: 4.1.0
+ wrap-ansi: 6.2.0
+ yoctocolors-cjs: 2.1.2
+ optionalDependencies:
+ '@types/node': 24.10.9
+
+ '@inquirer/core@10.3.2(@types/node@24.10.9)':
dependencies:
'@inquirer/ansi': 1.0.2
'@inquirer/figures': 1.0.15
- '@inquirer/type': 3.0.10(@types/node@22.13.8)
+ '@inquirer/type': 3.0.10(@types/node@24.10.9)
cli-width: 4.1.0
mute-stream: 2.0.0
signal-exit: 4.1.0
wrap-ansi: 6.2.0
yoctocolors-cjs: 2.1.3
optionalDependencies:
- '@types/node': 22.13.8
+ '@types/node': 24.10.9
'@inquirer/editor@4.2.21(@types/node@22.13.8)':
dependencies:
@@ -17100,13 +18700,13 @@ snapshots:
optionalDependencies:
'@types/node': 22.13.8
- '@inquirer/editor@4.2.23(@types/node@22.13.8)':
+ '@inquirer/editor@4.2.23(@types/node@24.10.9)':
dependencies:
- '@inquirer/core': 10.3.2(@types/node@22.13.8)
- '@inquirer/external-editor': 1.0.3(@types/node@22.13.8)
- '@inquirer/type': 3.0.10(@types/node@22.13.8)
+ '@inquirer/core': 10.3.2(@types/node@24.10.9)
+ '@inquirer/external-editor': 1.0.3(@types/node@24.10.9)
+ '@inquirer/type': 3.0.10(@types/node@24.10.9)
optionalDependencies:
- '@types/node': 22.13.8
+ '@types/node': 24.10.9
'@inquirer/expand@4.0.21(@types/node@22.13.8)':
dependencies:
@@ -17116,13 +18716,13 @@ snapshots:
optionalDependencies:
'@types/node': 22.13.8
- '@inquirer/expand@4.0.23(@types/node@22.13.8)':
+ '@inquirer/expand@4.0.23(@types/node@24.10.9)':
dependencies:
- '@inquirer/core': 10.3.2(@types/node@22.13.8)
- '@inquirer/type': 3.0.10(@types/node@22.13.8)
+ '@inquirer/core': 10.3.2(@types/node@24.10.9)
+ '@inquirer/type': 3.0.10(@types/node@24.10.9)
yoctocolors-cjs: 2.1.3
optionalDependencies:
- '@types/node': 22.13.8
+ '@types/node': 24.10.9
'@inquirer/external-editor@1.0.2(@types/node@22.13.8)':
dependencies:
@@ -17131,12 +18731,12 @@ snapshots:
optionalDependencies:
'@types/node': 22.13.8
- '@inquirer/external-editor@1.0.3(@types/node@22.13.8)':
+ '@inquirer/external-editor@1.0.3(@types/node@24.10.9)':
dependencies:
chardet: 2.1.1
iconv-lite: 0.7.0
optionalDependencies:
- '@types/node': 22.13.8
+ '@types/node': 24.10.9
'@inquirer/figures@1.0.13': {}
@@ -17151,12 +18751,12 @@ snapshots:
optionalDependencies:
'@types/node': 22.13.8
- '@inquirer/input@4.3.1(@types/node@22.13.8)':
+ '@inquirer/input@4.3.1(@types/node@24.10.9)':
dependencies:
- '@inquirer/core': 10.3.2(@types/node@22.13.8)
- '@inquirer/type': 3.0.10(@types/node@22.13.8)
+ '@inquirer/core': 10.3.2(@types/node@24.10.9)
+ '@inquirer/type': 3.0.10(@types/node@24.10.9)
optionalDependencies:
- '@types/node': 22.13.8
+ '@types/node': 24.10.9
'@inquirer/number@3.0.21(@types/node@22.13.8)':
dependencies:
@@ -17165,12 +18765,12 @@ snapshots:
optionalDependencies:
'@types/node': 22.13.8
- '@inquirer/number@3.0.23(@types/node@22.13.8)':
+ '@inquirer/number@3.0.23(@types/node@24.10.9)':
dependencies:
- '@inquirer/core': 10.3.2(@types/node@22.13.8)
- '@inquirer/type': 3.0.10(@types/node@22.13.8)
+ '@inquirer/core': 10.3.2(@types/node@24.10.9)
+ '@inquirer/type': 3.0.10(@types/node@24.10.9)
optionalDependencies:
- '@types/node': 22.13.8
+ '@types/node': 24.10.9
'@inquirer/password@4.0.21(@types/node@22.13.8)':
dependencies:
@@ -17180,28 +18780,28 @@ snapshots:
optionalDependencies:
'@types/node': 22.13.8
- '@inquirer/password@4.0.23(@types/node@22.13.8)':
+ '@inquirer/password@4.0.23(@types/node@24.10.9)':
dependencies:
'@inquirer/ansi': 1.0.2
- '@inquirer/core': 10.3.2(@types/node@22.13.8)
- '@inquirer/type': 3.0.10(@types/node@22.13.8)
+ '@inquirer/core': 10.3.2(@types/node@24.10.9)
+ '@inquirer/type': 3.0.10(@types/node@24.10.9)
optionalDependencies:
- '@types/node': 22.13.8
-
- '@inquirer/prompts@7.10.1(@types/node@22.13.8)':
- dependencies:
- '@inquirer/checkbox': 4.3.2(@types/node@22.13.8)
- '@inquirer/confirm': 5.1.21(@types/node@22.13.8)
- '@inquirer/editor': 4.2.23(@types/node@22.13.8)
- '@inquirer/expand': 4.0.23(@types/node@22.13.8)
- '@inquirer/input': 4.3.1(@types/node@22.13.8)
- '@inquirer/number': 3.0.23(@types/node@22.13.8)
- '@inquirer/password': 4.0.23(@types/node@22.13.8)
- '@inquirer/rawlist': 4.1.11(@types/node@22.13.8)
- '@inquirer/search': 3.2.2(@types/node@22.13.8)
- '@inquirer/select': 4.4.2(@types/node@22.13.8)
+ '@types/node': 24.10.9
+
+ '@inquirer/prompts@7.10.1(@types/node@24.10.9)':
+ dependencies:
+ '@inquirer/checkbox': 4.3.2(@types/node@24.10.9)
+ '@inquirer/confirm': 5.1.21(@types/node@24.10.9)
+ '@inquirer/editor': 4.2.23(@types/node@24.10.9)
+ '@inquirer/expand': 4.0.23(@types/node@24.10.9)
+ '@inquirer/input': 4.3.1(@types/node@24.10.9)
+ '@inquirer/number': 3.0.23(@types/node@24.10.9)
+ '@inquirer/password': 4.0.23(@types/node@24.10.9)
+ '@inquirer/rawlist': 4.1.11(@types/node@24.10.9)
+ '@inquirer/search': 3.2.2(@types/node@24.10.9)
+ '@inquirer/select': 4.4.2(@types/node@24.10.9)
optionalDependencies:
- '@types/node': 22.13.8
+ '@types/node': 24.10.9
'@inquirer/prompts@7.3.2(@types/node@22.13.8)':
dependencies:
@@ -17218,13 +18818,13 @@ snapshots:
optionalDependencies:
'@types/node': 22.13.8
- '@inquirer/rawlist@4.1.11(@types/node@22.13.8)':
+ '@inquirer/rawlist@4.1.11(@types/node@24.10.9)':
dependencies:
- '@inquirer/core': 10.3.2(@types/node@22.13.8)
- '@inquirer/type': 3.0.10(@types/node@22.13.8)
+ '@inquirer/core': 10.3.2(@types/node@24.10.9)
+ '@inquirer/type': 3.0.10(@types/node@24.10.9)
yoctocolors-cjs: 2.1.3
optionalDependencies:
- '@types/node': 22.13.8
+ '@types/node': 24.10.9
'@inquirer/rawlist@4.1.9(@types/node@22.13.8)':
dependencies:
@@ -17243,14 +18843,14 @@ snapshots:
optionalDependencies:
'@types/node': 22.13.8
- '@inquirer/search@3.2.2(@types/node@22.13.8)':
+ '@inquirer/search@3.2.2(@types/node@24.10.9)':
dependencies:
- '@inquirer/core': 10.3.2(@types/node@22.13.8)
+ '@inquirer/core': 10.3.2(@types/node@24.10.9)
'@inquirer/figures': 1.0.15
- '@inquirer/type': 3.0.10(@types/node@22.13.8)
+ '@inquirer/type': 3.0.10(@types/node@24.10.9)
yoctocolors-cjs: 2.1.3
optionalDependencies:
- '@types/node': 22.13.8
+ '@types/node': 24.10.9
'@inquirer/select@4.4.0(@types/node@22.13.8)':
dependencies:
@@ -17262,15 +18862,15 @@ snapshots:
optionalDependencies:
'@types/node': 22.13.8
- '@inquirer/select@4.4.2(@types/node@22.13.8)':
+ '@inquirer/select@4.4.2(@types/node@24.10.9)':
dependencies:
'@inquirer/ansi': 1.0.2
- '@inquirer/core': 10.3.2(@types/node@22.13.8)
+ '@inquirer/core': 10.3.2(@types/node@24.10.9)
'@inquirer/figures': 1.0.15
- '@inquirer/type': 3.0.10(@types/node@22.13.8)
+ '@inquirer/type': 3.0.10(@types/node@24.10.9)
yoctocolors-cjs: 2.1.3
optionalDependencies:
- '@types/node': 22.13.8
+ '@types/node': 24.10.9
'@inquirer/type@1.5.5':
dependencies:
@@ -17280,6 +18880,10 @@ snapshots:
optionalDependencies:
'@types/node': 22.13.8
+ '@inquirer/type@3.0.10(@types/node@24.10.9)':
+ optionalDependencies:
+ '@types/node': 24.10.9
+
'@inquirer/type@3.0.8(@types/node@22.13.8)':
optionalDependencies:
'@types/node': 22.13.8
@@ -17288,6 +18892,10 @@ snapshots:
optionalDependencies:
'@types/node': 22.13.8
+ '@inquirer/type@3.0.9(@types/node@24.10.9)':
+ optionalDependencies:
+ '@types/node': 24.10.9
+
'@isaacs/balanced-match@4.0.1': {}
'@isaacs/brace-expansion@5.0.0':
@@ -17333,7 +18941,7 @@ snapshots:
jest-util: 29.7.0
slash: 3.0.0
- '@jest/core@29.7.0(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.5.4))':
+ '@jest/core@29.7.0(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@10.9.2(@types/node@24.10.9)(typescript@5.5.4))':
dependencies:
'@jest/console': 29.7.0
'@jest/reporters': 29.7.0(node-notifier@8.0.2)
@@ -17347,7 +18955,7 @@ snapshots:
exit: 0.1.2
graceful-fs: 4.2.11
jest-changed-files: 29.7.0
- jest-config: 29.7.0(@types/node@22.13.8)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.5.4))
+ jest-config: 29.7.0(@types/node@22.13.8)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@24.10.9)(typescript@5.5.4))
jest-haste-map: 29.7.0
jest-message-util: 29.7.0
jest-regex-util: 29.6.3
@@ -17471,7 +19079,7 @@ snapshots:
'@jest/transform@29.7.0':
dependencies:
- '@babel/core': 7.26.10
+ '@babel/core': 7.28.6
'@jest/types': 29.6.3
'@jridgewell/trace-mapping': 0.3.31
babel-plugin-istanbul: 6.1.1
@@ -17506,8 +19114,13 @@ snapshots:
'@jridgewell/gen-mapping@0.3.5':
dependencies:
'@jridgewell/set-array': 1.2.1
- '@jridgewell/sourcemap-codec': 1.4.15
- '@jridgewell/trace-mapping': 0.3.25
+ '@jridgewell/sourcemap-codec': 1.5.0
+ '@jridgewell/trace-mapping': 0.3.31
+
+ '@jridgewell/remapping@2.3.5':
+ dependencies:
+ '@jridgewell/gen-mapping': 0.3.13
+ '@jridgewell/trace-mapping': 0.3.31
'@jridgewell/resolve-uri@3.1.2': {}
@@ -17515,17 +19128,17 @@ snapshots:
'@jridgewell/source-map@0.3.6':
dependencies:
- '@jridgewell/gen-mapping': 0.3.5
- '@jridgewell/trace-mapping': 0.3.25
-
- '@jridgewell/sourcemap-codec@1.4.15': {}
+ '@jridgewell/gen-mapping': 0.3.13
+ '@jridgewell/trace-mapping': 0.3.31
'@jridgewell/sourcemap-codec@1.5.0': {}
+ '@jridgewell/sourcemap-codec@1.5.5': {}
+
'@jridgewell/trace-mapping@0.3.25':
dependencies:
'@jridgewell/resolve-uri': 3.1.2
- '@jridgewell/sourcemap-codec': 1.4.15
+ '@jridgewell/sourcemap-codec': 1.5.0
'@jridgewell/trace-mapping@0.3.31':
dependencies:
@@ -17555,7 +19168,7 @@ snapshots:
'@leichtgewicht/ip-codec@2.0.5': {}
- '@lerna/create@9.0.1(@types/node@22.13.8)(babel-plugin-macros@3.1.0)(typescript@5.5.4)':
+ '@lerna/create@9.0.1(@types/node@24.10.9)(babel-plugin-macros@3.1.0)(typescript@5.5.4)':
dependencies:
'@npmcli/arborist': 9.1.6
'@npmcli/package-json': 7.0.2
@@ -17582,7 +19195,7 @@ snapshots:
has-unicode: 2.0.1
ini: 1.3.8
init-package-json: 8.2.2
- inquirer: 12.9.6(@types/node@22.13.8)
+ inquirer: 12.9.6(@types/node@24.10.9)
is-ci: 3.0.1
is-stream: 2.0.0
js-yaml: 4.1.0
@@ -17665,7 +19278,7 @@ snapshots:
nopt: 5.0.0
npmlog: 5.0.1
rimraf: 3.0.2
- semver: 7.6.2
+ semver: 7.7.3
tar: 6.2.1
transitivePeerDependencies:
- encoding
@@ -17692,7 +19305,7 @@ snapshots:
'@rushstack/ts-command-line': 4.19.1(@types/node@22.13.8)
lodash: 4.17.21
minimatch: 3.0.5
- resolve: 1.22.8
+ resolve: 1.22.10
semver: 7.5.4
source-map: 0.6.1
typescript: 5.4.2
@@ -17759,7 +19372,7 @@ snapshots:
'@mui/private-theming@7.3.0(@types/react@17.0.80)(react@17.0.2)':
dependencies:
- '@babel/runtime': 7.28.2
+ '@babel/runtime': 7.28.4
'@mui/utils': 7.3.0(@types/react@17.0.80)(react@17.0.2)
prop-types: 15.8.1
react: 17.0.2
@@ -17768,11 +19381,11 @@ snapshots:
'@mui/styled-engine@7.3.0(@emotion/react@11.11.4(@types/react@17.0.80)(react@17.0.2))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@17.0.80)(react@17.0.2))(@types/react@17.0.80)(react@17.0.2))(react@17.0.2)':
dependencies:
- '@babel/runtime': 7.28.2
+ '@babel/runtime': 7.28.4
'@emotion/cache': 11.14.0
'@emotion/serialize': 1.3.3
'@emotion/sheet': 1.4.0
- csstype: 3.1.3
+ csstype: 3.2.3
prop-types: 15.8.1
react: 17.0.2
optionalDependencies:
@@ -17781,13 +19394,13 @@ snapshots:
'@mui/system@7.3.0(@emotion/react@11.11.4(@types/react@17.0.80)(react@17.0.2))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@17.0.80)(react@17.0.2))(@types/react@17.0.80)(react@17.0.2))(@types/react@17.0.80)(react@17.0.2)':
dependencies:
- '@babel/runtime': 7.28.2
+ '@babel/runtime': 7.28.4
'@mui/private-theming': 7.3.0(@types/react@17.0.80)(react@17.0.2)
'@mui/styled-engine': 7.3.0(@emotion/react@11.11.4(@types/react@17.0.80)(react@17.0.2))(@emotion/styled@11.11.5(@emotion/react@11.11.4(@types/react@17.0.80)(react@17.0.2))(@types/react@17.0.80)(react@17.0.2))(react@17.0.2)
'@mui/types': 7.4.5(@types/react@17.0.80)
'@mui/utils': 7.3.0(@types/react@17.0.80)(react@17.0.2)
clsx: 2.1.1
- csstype: 3.1.3
+ csstype: 3.2.3
prop-types: 15.8.1
react: 17.0.2
optionalDependencies:
@@ -17797,7 +19410,7 @@ snapshots:
'@mui/types@7.4.5(@types/react@17.0.80)':
dependencies:
- '@babel/runtime': 7.28.2
+ '@babel/runtime': 7.28.4
optionalDependencies:
'@types/react': 17.0.80
@@ -17809,7 +19422,7 @@ snapshots:
'@mui/utils@7.3.0(@types/react@17.0.80)(react@17.0.2)':
dependencies:
- '@babel/runtime': 7.28.2
+ '@babel/runtime': 7.28.4
'@mui/types': 7.4.5(@types/react@17.0.80)
'@types/prop-types': 15.7.15
clsx: 2.1.1
@@ -17853,7 +19466,7 @@ snapshots:
'@mui/x-internals@8.11.3(@types/react@17.0.80)(react@17.0.2)':
dependencies:
- '@babel/runtime': 7.28.2
+ '@babel/runtime': 7.28.4
'@mui/utils': 7.3.2(@types/react@17.0.80)(react@17.0.2)
react: 17.0.2
reselect: 5.1.1
@@ -18037,7 +19650,7 @@ snapshots:
npm-pick-manifest: 10.0.0
proc-log: 5.0.0
promise-retry: 2.0.1
- semver: 7.7.2
+ semver: 7.7.3
which: 5.0.0
'@npmcli/git@7.0.1':
@@ -18051,274 +19664,1023 @@ snapshots:
semver: 7.7.3
which: 6.0.0
- '@npmcli/installed-package-contents@3.0.0':
- dependencies:
- npm-bundled: 4.0.0
- npm-normalize-package-bin: 4.0.0
+ '@npmcli/installed-package-contents@3.0.0':
+ dependencies:
+ npm-bundled: 4.0.0
+ npm-normalize-package-bin: 4.0.0
+
+ '@npmcli/installed-package-contents@4.0.0':
+ dependencies:
+ npm-bundled: 5.0.0
+ npm-normalize-package-bin: 5.0.0
+
+ '@npmcli/map-workspaces@5.0.1':
+ dependencies:
+ '@npmcli/name-from-folder': 4.0.0
+ '@npmcli/package-json': 7.0.2
+ glob: 11.1.0
+ minimatch: 10.1.1
+
+ '@npmcli/metavuln-calculator@9.0.3':
+ dependencies:
+ cacache: 20.0.2
+ json-parse-even-better-errors: 5.0.0
+ pacote: 21.0.4
+ proc-log: 6.0.0
+ semver: 7.7.3
+ transitivePeerDependencies:
+ - supports-color
+
+ '@npmcli/name-from-folder@3.0.0': {}
+
+ '@npmcli/name-from-folder@4.0.0': {}
+
+ '@npmcli/node-gyp@4.0.0': {}
+
+ '@npmcli/node-gyp@5.0.0': {}
+
+ '@npmcli/package-json@6.2.0':
+ dependencies:
+ '@npmcli/git': 6.0.3
+ glob: 10.3.16
+ hosted-git-info: 8.1.0
+ json-parse-even-better-errors: 4.0.0
+ proc-log: 5.0.0
+ semver: 7.7.3
+ validate-npm-package-license: 3.0.4
+
+ '@npmcli/package-json@7.0.2':
+ dependencies:
+ '@npmcli/git': 7.0.1
+ glob: 11.1.0
+ hosted-git-info: 9.0.2
+ json-parse-even-better-errors: 5.0.0
+ proc-log: 6.0.0
+ semver: 7.7.3
+ validate-npm-package-license: 3.0.4
+
+ '@npmcli/promise-spawn@8.0.3':
+ dependencies:
+ which: 5.0.0
+
+ '@npmcli/promise-spawn@9.0.1':
+ dependencies:
+ which: 6.0.0
+
+ '@npmcli/query@4.0.1':
+ dependencies:
+ postcss-selector-parser: 7.1.0
+
+ '@npmcli/redact@3.2.2': {}
+
+ '@npmcli/run-script@10.0.2':
+ dependencies:
+ '@npmcli/node-gyp': 5.0.0
+ '@npmcli/package-json': 7.0.2
+ '@npmcli/promise-spawn': 9.0.1
+ node-gyp: 11.5.0
+ proc-log: 6.0.0
+ which: 5.0.0
+ transitivePeerDependencies:
+ - supports-color
+
+ '@npmcli/run-script@9.1.0':
+ dependencies:
+ '@npmcli/node-gyp': 4.0.0
+ '@npmcli/package-json': 6.2.0
+ '@npmcli/promise-spawn': 8.0.3
+ node-gyp: 11.5.0
+ proc-log: 5.0.0
+ which: 5.0.0
+ transitivePeerDependencies:
+ - supports-color
+
+ '@nx/devkit@22.0.4(nx@22.0.4)':
+ dependencies:
+ '@zkochan/js-yaml': 0.0.7
+ ejs: 3.1.10
+ enquirer: 2.3.6
+ minimatch: 9.0.3
+ nx: 22.0.4
+ semver: 7.7.3
+ tslib: 2.8.1
+ yargs-parser: 21.1.1
+
+ '@nx/nx-darwin-arm64@22.0.4':
+ optional: true
+
+ '@nx/nx-darwin-x64@22.0.4':
+ optional: true
+
+ '@nx/nx-freebsd-x64@22.0.4':
+ optional: true
+
+ '@nx/nx-linux-arm-gnueabihf@22.0.4':
+ optional: true
+
+ '@nx/nx-linux-arm64-gnu@22.0.4':
+ optional: true
+
+ '@nx/nx-linux-arm64-musl@22.0.4':
+ optional: true
+
+ '@nx/nx-linux-x64-gnu@22.0.4':
+ optional: true
+
+ '@nx/nx-linux-x64-musl@22.0.4':
+ optional: true
+
+ '@nx/nx-win32-arm64-msvc@22.0.4':
+ optional: true
+
+ '@nx/nx-win32-x64-msvc@22.0.4':
+ optional: true
+
+ '@octokit/auth-token@4.0.0': {}
+
+ '@octokit/core@5.2.2':
+ dependencies:
+ '@octokit/auth-token': 4.0.0
+ '@octokit/graphql': 7.1.1
+ '@octokit/request': 8.4.1
+ '@octokit/request-error': 5.1.1
+ '@octokit/types': 13.10.0
+ before-after-hook: 2.2.3
+ universal-user-agent: 6.0.1
+
+ '@octokit/endpoint@9.0.6':
+ dependencies:
+ '@octokit/types': 13.10.0
+ universal-user-agent: 6.0.1
+
+ '@octokit/graphql@7.1.1':
+ dependencies:
+ '@octokit/request': 8.4.1
+ '@octokit/types': 13.10.0
+ universal-user-agent: 6.0.1
+
+ '@octokit/openapi-types@24.2.0': {}
+
+ '@octokit/plugin-enterprise-rest@6.0.1': {}
+
+ '@octokit/plugin-paginate-rest@11.4.4-cjs.2(@octokit/core@5.2.2)':
+ dependencies:
+ '@octokit/core': 5.2.2
+ '@octokit/types': 13.10.0
+
+ '@octokit/plugin-request-log@4.0.1(@octokit/core@5.2.2)':
+ dependencies:
+ '@octokit/core': 5.2.2
+
+ '@octokit/plugin-rest-endpoint-methods@13.3.2-cjs.1(@octokit/core@5.2.2)':
+ dependencies:
+ '@octokit/core': 5.2.2
+ '@octokit/types': 13.10.0
+
+ '@octokit/request-error@5.1.1':
+ dependencies:
+ '@octokit/types': 13.10.0
+ deprecation: 2.3.1
+ once: 1.4.0
+
+ '@octokit/request@8.4.1':
+ dependencies:
+ '@octokit/endpoint': 9.0.6
+ '@octokit/request-error': 5.1.1
+ '@octokit/types': 13.10.0
+ universal-user-agent: 6.0.1
+
+ '@octokit/rest@20.1.2':
+ dependencies:
+ '@octokit/core': 5.2.2
+ '@octokit/plugin-paginate-rest': 11.4.4-cjs.2(@octokit/core@5.2.2)
+ '@octokit/plugin-request-log': 4.0.1(@octokit/core@5.2.2)
+ '@octokit/plugin-rest-endpoint-methods': 13.3.2-cjs.1(@octokit/core@5.2.2)
+
+ '@octokit/types@13.10.0':
+ dependencies:
+ '@octokit/openapi-types': 24.2.0
+
+ '@one-ini/wasm@0.1.1': {}
+
+ '@parcel/watcher-android-arm64@2.5.1':
+ optional: true
+
+ '@parcel/watcher-darwin-arm64@2.5.1':
+ optional: true
+
+ '@parcel/watcher-darwin-x64@2.5.1':
+ optional: true
+
+ '@parcel/watcher-freebsd-x64@2.5.1':
+ optional: true
+
+ '@parcel/watcher-linux-arm-glibc@2.5.1':
+ optional: true
+
+ '@parcel/watcher-linux-arm-musl@2.5.1':
+ optional: true
+
+ '@parcel/watcher-linux-arm64-glibc@2.5.1':
+ optional: true
+
+ '@parcel/watcher-linux-arm64-musl@2.5.1':
+ optional: true
+
+ '@parcel/watcher-linux-x64-glibc@2.5.1':
+ optional: true
+
+ '@parcel/watcher-linux-x64-musl@2.5.1':
+ optional: true
+
+ '@parcel/watcher-win32-arm64@2.5.1':
+ optional: true
- '@npmcli/installed-package-contents@4.0.0':
- dependencies:
- npm-bundled: 5.0.0
- npm-normalize-package-bin: 5.0.0
+ '@parcel/watcher-win32-ia32@2.5.1':
+ optional: true
- '@npmcli/map-workspaces@5.0.1':
- dependencies:
- '@npmcli/name-from-folder': 4.0.0
- '@npmcli/package-json': 7.0.2
- glob: 11.1.0
- minimatch: 10.1.1
+ '@parcel/watcher-win32-x64@2.5.1':
+ optional: true
- '@npmcli/metavuln-calculator@9.0.3':
+ '@parcel/watcher@2.5.1':
dependencies:
- cacache: 20.0.2
- json-parse-even-better-errors: 5.0.0
- pacote: 21.0.4
- proc-log: 6.0.0
- semver: 7.7.3
- transitivePeerDependencies:
- - supports-color
+ detect-libc: 1.0.3
+ is-glob: 4.0.3
+ micromatch: 4.0.8
+ node-addon-api: 7.1.1
+ optionalDependencies:
+ '@parcel/watcher-android-arm64': 2.5.1
+ '@parcel/watcher-darwin-arm64': 2.5.1
+ '@parcel/watcher-darwin-x64': 2.5.1
+ '@parcel/watcher-freebsd-x64': 2.5.1
+ '@parcel/watcher-linux-arm-glibc': 2.5.1
+ '@parcel/watcher-linux-arm-musl': 2.5.1
+ '@parcel/watcher-linux-arm64-glibc': 2.5.1
+ '@parcel/watcher-linux-arm64-musl': 2.5.1
+ '@parcel/watcher-linux-x64-glibc': 2.5.1
+ '@parcel/watcher-linux-x64-musl': 2.5.1
+ '@parcel/watcher-win32-arm64': 2.5.1
+ '@parcel/watcher-win32-ia32': 2.5.1
+ '@parcel/watcher-win32-x64': 2.5.1
+ optional: true
- '@npmcli/name-from-folder@3.0.0': {}
+ '@pkgjs/parseargs@0.11.0':
+ optional: true
- '@npmcli/name-from-folder@4.0.0': {}
+ '@pkgr/core@0.1.1': {}
- '@npmcli/node-gyp@4.0.0': {}
+ '@polka/url@1.0.0-next.25': {}
- '@npmcli/node-gyp@5.0.0': {}
+ '@popperjs/core@2.11.8': {}
- '@npmcli/package-json@6.2.0':
- dependencies:
- '@npmcli/git': 6.0.3
- glob: 10.3.16
- hosted-git-info: 8.1.0
- json-parse-even-better-errors: 4.0.0
- proc-log: 5.0.0
- semver: 7.7.2
- validate-npm-package-license: 3.0.4
+ '@radix-ui/number@1.1.1': {}
- '@npmcli/package-json@7.0.2':
- dependencies:
- '@npmcli/git': 7.0.1
- glob: 11.1.0
- hosted-git-info: 9.0.2
- json-parse-even-better-errors: 5.0.0
- proc-log: 6.0.0
- semver: 7.7.3
- validate-npm-package-license: 3.0.4
+ '@radix-ui/primitive@1.1.3': {}
- '@npmcli/promise-spawn@8.0.3':
+ '@radix-ui/react-accessible-icon@1.1.7(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)':
dependencies:
- which: 5.0.0
+ '@radix-ui/react-visually-hidden': 1.2.3(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ react: 17.0.2
+ react-dom: 17.0.2(react@17.0.2)
+ optionalDependencies:
+ '@types/react': 17.0.80
+ '@types/react-dom': 17.0.25
+
+ '@radix-ui/react-accordion@1.2.12(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)':
+ dependencies:
+ '@radix-ui/primitive': 1.1.3
+ '@radix-ui/react-collapsible': 1.1.12(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@radix-ui/react-collection': 1.1.7(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@17.0.80)(react@17.0.2)
+ '@radix-ui/react-context': 1.1.2(@types/react@17.0.80)(react@17.0.2)
+ '@radix-ui/react-direction': 1.1.1(@types/react@17.0.80)(react@17.0.2)
+ '@radix-ui/react-id': 1.1.1(@types/react@17.0.80)(react@17.0.2)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@17.0.80)(react@17.0.2)
+ react: 17.0.2
+ react-dom: 17.0.2(react@17.0.2)
+ optionalDependencies:
+ '@types/react': 17.0.80
+ '@types/react-dom': 17.0.25
- '@npmcli/promise-spawn@9.0.1':
+ '@radix-ui/react-alert-dialog@1.1.15(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)':
dependencies:
- which: 6.0.0
+ '@radix-ui/primitive': 1.1.3
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@17.0.80)(react@17.0.2)
+ '@radix-ui/react-context': 1.1.2(@types/react@17.0.80)(react@17.0.2)
+ '@radix-ui/react-dialog': 1.1.15(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@radix-ui/react-slot': 1.2.3(@types/react@17.0.80)(react@17.0.2)
+ react: 17.0.2
+ react-dom: 17.0.2(react@17.0.2)
+ optionalDependencies:
+ '@types/react': 17.0.80
+ '@types/react-dom': 17.0.25
- '@npmcli/query@4.0.1':
+ '@radix-ui/react-arrow@1.1.7(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)':
dependencies:
- postcss-selector-parser: 7.1.0
-
- '@npmcli/redact@3.2.2': {}
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ react: 17.0.2
+ react-dom: 17.0.2(react@17.0.2)
+ optionalDependencies:
+ '@types/react': 17.0.80
+ '@types/react-dom': 17.0.25
- '@npmcli/run-script@10.0.2':
+ '@radix-ui/react-aspect-ratio@1.1.7(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)':
dependencies:
- '@npmcli/node-gyp': 5.0.0
- '@npmcli/package-json': 7.0.2
- '@npmcli/promise-spawn': 9.0.1
- node-gyp: 11.5.0
- proc-log: 6.0.0
- which: 5.0.0
- transitivePeerDependencies:
- - supports-color
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ react: 17.0.2
+ react-dom: 17.0.2(react@17.0.2)
+ optionalDependencies:
+ '@types/react': 17.0.80
+ '@types/react-dom': 17.0.25
- '@npmcli/run-script@9.1.0':
+ '@radix-ui/react-avatar@1.1.10(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)':
dependencies:
- '@npmcli/node-gyp': 4.0.0
- '@npmcli/package-json': 6.2.0
- '@npmcli/promise-spawn': 8.0.3
- node-gyp: 11.5.0
- proc-log: 5.0.0
- which: 5.0.0
- transitivePeerDependencies:
- - supports-color
+ '@radix-ui/react-context': 1.1.2(@types/react@17.0.80)(react@17.0.2)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@17.0.80)(react@17.0.2)
+ '@radix-ui/react-use-is-hydrated': 0.1.0(@types/react@17.0.80)(react@17.0.2)
+ '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@17.0.80)(react@17.0.2)
+ react: 17.0.2
+ react-dom: 17.0.2(react@17.0.2)
+ optionalDependencies:
+ '@types/react': 17.0.80
+ '@types/react-dom': 17.0.25
+
+ '@radix-ui/react-checkbox@1.3.3(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)':
+ dependencies:
+ '@radix-ui/primitive': 1.1.3
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@17.0.80)(react@17.0.2)
+ '@radix-ui/react-context': 1.1.2(@types/react@17.0.80)(react@17.0.2)
+ '@radix-ui/react-presence': 1.1.5(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@17.0.80)(react@17.0.2)
+ '@radix-ui/react-use-previous': 1.1.1(@types/react@17.0.80)(react@17.0.2)
+ '@radix-ui/react-use-size': 1.1.1(@types/react@17.0.80)(react@17.0.2)
+ react: 17.0.2
+ react-dom: 17.0.2(react@17.0.2)
+ optionalDependencies:
+ '@types/react': 17.0.80
+ '@types/react-dom': 17.0.25
+
+ '@radix-ui/react-collapsible@1.1.12(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)':
+ dependencies:
+ '@radix-ui/primitive': 1.1.3
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@17.0.80)(react@17.0.2)
+ '@radix-ui/react-context': 1.1.2(@types/react@17.0.80)(react@17.0.2)
+ '@radix-ui/react-id': 1.1.1(@types/react@17.0.80)(react@17.0.2)
+ '@radix-ui/react-presence': 1.1.5(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@17.0.80)(react@17.0.2)
+ '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@17.0.80)(react@17.0.2)
+ react: 17.0.2
+ react-dom: 17.0.2(react@17.0.2)
+ optionalDependencies:
+ '@types/react': 17.0.80
+ '@types/react-dom': 17.0.25
- '@nx/devkit@22.0.4(nx@22.0.4)':
+ '@radix-ui/react-collection@1.1.7(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)':
dependencies:
- '@zkochan/js-yaml': 0.0.7
- ejs: 3.1.10
- enquirer: 2.3.6
- minimatch: 9.0.3
- nx: 22.0.4
- semver: 7.7.3
- tslib: 2.8.1
- yargs-parser: 21.1.1
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@17.0.80)(react@17.0.2)
+ '@radix-ui/react-context': 1.1.2(@types/react@17.0.80)(react@17.0.2)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@radix-ui/react-slot': 1.2.3(@types/react@17.0.80)(react@17.0.2)
+ react: 17.0.2
+ react-dom: 17.0.2(react@17.0.2)
+ optionalDependencies:
+ '@types/react': 17.0.80
+ '@types/react-dom': 17.0.25
- '@nx/nx-darwin-arm64@22.0.4':
- optional: true
+ '@radix-ui/react-compose-refs@1.1.2(@types/react@17.0.80)(react@17.0.2)':
+ dependencies:
+ react: 17.0.2
+ optionalDependencies:
+ '@types/react': 17.0.80
- '@nx/nx-darwin-x64@22.0.4':
- optional: true
+ '@radix-ui/react-context-menu@2.2.16(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)':
+ dependencies:
+ '@radix-ui/primitive': 1.1.3
+ '@radix-ui/react-context': 1.1.2(@types/react@17.0.80)(react@17.0.2)
+ '@radix-ui/react-menu': 2.1.16(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@17.0.80)(react@17.0.2)
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@17.0.80)(react@17.0.2)
+ react: 17.0.2
+ react-dom: 17.0.2(react@17.0.2)
+ optionalDependencies:
+ '@types/react': 17.0.80
+ '@types/react-dom': 17.0.25
- '@nx/nx-freebsd-x64@22.0.4':
- optional: true
+ '@radix-ui/react-context@1.1.2(@types/react@17.0.80)(react@17.0.2)':
+ dependencies:
+ react: 17.0.2
+ optionalDependencies:
+ '@types/react': 17.0.80
- '@nx/nx-linux-arm-gnueabihf@22.0.4':
- optional: true
+ '@radix-ui/react-dialog@1.1.15(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)':
+ dependencies:
+ '@radix-ui/primitive': 1.1.3
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@17.0.80)(react@17.0.2)
+ '@radix-ui/react-context': 1.1.2(@types/react@17.0.80)(react@17.0.2)
+ '@radix-ui/react-dismissable-layer': 1.1.11(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@radix-ui/react-focus-guards': 1.1.3(@types/react@17.0.80)(react@17.0.2)
+ '@radix-ui/react-focus-scope': 1.1.7(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@radix-ui/react-id': 1.1.1(@types/react@17.0.80)(react@17.0.2)
+ '@radix-ui/react-portal': 1.1.9(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@radix-ui/react-presence': 1.1.5(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@radix-ui/react-slot': 1.2.3(@types/react@17.0.80)(react@17.0.2)
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@17.0.80)(react@17.0.2)
+ aria-hidden: 1.2.6
+ react: 17.0.2
+ react-dom: 17.0.2(react@17.0.2)
+ react-remove-scroll: 2.7.2(@types/react@17.0.80)(react@17.0.2)
+ optionalDependencies:
+ '@types/react': 17.0.80
+ '@types/react-dom': 17.0.25
- '@nx/nx-linux-arm64-gnu@22.0.4':
- optional: true
+ '@radix-ui/react-direction@1.1.1(@types/react@17.0.80)(react@17.0.2)':
+ dependencies:
+ react: 17.0.2
+ optionalDependencies:
+ '@types/react': 17.0.80
- '@nx/nx-linux-arm64-musl@22.0.4':
- optional: true
+ '@radix-ui/react-dismissable-layer@1.1.11(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)':
+ dependencies:
+ '@radix-ui/primitive': 1.1.3
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@17.0.80)(react@17.0.2)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@17.0.80)(react@17.0.2)
+ '@radix-ui/react-use-escape-keydown': 1.1.1(@types/react@17.0.80)(react@17.0.2)
+ react: 17.0.2
+ react-dom: 17.0.2(react@17.0.2)
+ optionalDependencies:
+ '@types/react': 17.0.80
+ '@types/react-dom': 17.0.25
- '@nx/nx-linux-x64-gnu@22.0.4':
- optional: true
+ '@radix-ui/react-dropdown-menu@2.1.16(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)':
+ dependencies:
+ '@radix-ui/primitive': 1.1.3
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@17.0.80)(react@17.0.2)
+ '@radix-ui/react-context': 1.1.2(@types/react@17.0.80)(react@17.0.2)
+ '@radix-ui/react-id': 1.1.1(@types/react@17.0.80)(react@17.0.2)
+ '@radix-ui/react-menu': 2.1.16(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@17.0.80)(react@17.0.2)
+ react: 17.0.2
+ react-dom: 17.0.2(react@17.0.2)
+ optionalDependencies:
+ '@types/react': 17.0.80
+ '@types/react-dom': 17.0.25
- '@nx/nx-linux-x64-musl@22.0.4':
- optional: true
+ '@radix-ui/react-focus-guards@1.1.3(@types/react@17.0.80)(react@17.0.2)':
+ dependencies:
+ react: 17.0.2
+ optionalDependencies:
+ '@types/react': 17.0.80
- '@nx/nx-win32-arm64-msvc@22.0.4':
- optional: true
+ '@radix-ui/react-focus-scope@1.1.7(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)':
+ dependencies:
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@17.0.80)(react@17.0.2)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@17.0.80)(react@17.0.2)
+ react: 17.0.2
+ react-dom: 17.0.2(react@17.0.2)
+ optionalDependencies:
+ '@types/react': 17.0.80
+ '@types/react-dom': 17.0.25
- '@nx/nx-win32-x64-msvc@22.0.4':
- optional: true
+ '@radix-ui/react-form@0.1.8(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)':
+ dependencies:
+ '@radix-ui/primitive': 1.1.3
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@17.0.80)(react@17.0.2)
+ '@radix-ui/react-context': 1.1.2(@types/react@17.0.80)(react@17.0.2)
+ '@radix-ui/react-id': 1.1.1(@types/react@17.0.80)(react@17.0.2)
+ '@radix-ui/react-label': 2.1.7(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ react: 17.0.2
+ react-dom: 17.0.2(react@17.0.2)
+ optionalDependencies:
+ '@types/react': 17.0.80
+ '@types/react-dom': 17.0.25
+
+ '@radix-ui/react-hover-card@1.1.15(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)':
+ dependencies:
+ '@radix-ui/primitive': 1.1.3
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@17.0.80)(react@17.0.2)
+ '@radix-ui/react-context': 1.1.2(@types/react@17.0.80)(react@17.0.2)
+ '@radix-ui/react-dismissable-layer': 1.1.11(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@radix-ui/react-popper': 1.2.8(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@radix-ui/react-portal': 1.1.9(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@radix-ui/react-presence': 1.1.5(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@17.0.80)(react@17.0.2)
+ react: 17.0.2
+ react-dom: 17.0.2(react@17.0.2)
+ optionalDependencies:
+ '@types/react': 17.0.80
+ '@types/react-dom': 17.0.25
- '@octokit/auth-token@4.0.0': {}
+ '@radix-ui/react-id@1.1.1(@types/react@17.0.80)(react@17.0.2)':
+ dependencies:
+ '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@17.0.80)(react@17.0.2)
+ react: 17.0.2
+ optionalDependencies:
+ '@types/react': 17.0.80
- '@octokit/core@5.2.2':
+ '@radix-ui/react-label@2.1.7(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)':
dependencies:
- '@octokit/auth-token': 4.0.0
- '@octokit/graphql': 7.1.1
- '@octokit/request': 8.4.1
- '@octokit/request-error': 5.1.1
- '@octokit/types': 13.10.0
- before-after-hook: 2.2.3
- universal-user-agent: 6.0.1
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ react: 17.0.2
+ react-dom: 17.0.2(react@17.0.2)
+ optionalDependencies:
+ '@types/react': 17.0.80
+ '@types/react-dom': 17.0.25
+
+ '@radix-ui/react-menu@2.1.16(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)':
+ dependencies:
+ '@radix-ui/primitive': 1.1.3
+ '@radix-ui/react-collection': 1.1.7(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@17.0.80)(react@17.0.2)
+ '@radix-ui/react-context': 1.1.2(@types/react@17.0.80)(react@17.0.2)
+ '@radix-ui/react-direction': 1.1.1(@types/react@17.0.80)(react@17.0.2)
+ '@radix-ui/react-dismissable-layer': 1.1.11(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@radix-ui/react-focus-guards': 1.1.3(@types/react@17.0.80)(react@17.0.2)
+ '@radix-ui/react-focus-scope': 1.1.7(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@radix-ui/react-id': 1.1.1(@types/react@17.0.80)(react@17.0.2)
+ '@radix-ui/react-popper': 1.2.8(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@radix-ui/react-portal': 1.1.9(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@radix-ui/react-presence': 1.1.5(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@radix-ui/react-roving-focus': 1.1.11(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@radix-ui/react-slot': 1.2.3(@types/react@17.0.80)(react@17.0.2)
+ '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@17.0.80)(react@17.0.2)
+ aria-hidden: 1.2.6
+ react: 17.0.2
+ react-dom: 17.0.2(react@17.0.2)
+ react-remove-scroll: 2.7.2(@types/react@17.0.80)(react@17.0.2)
+ optionalDependencies:
+ '@types/react': 17.0.80
+ '@types/react-dom': 17.0.25
+
+ '@radix-ui/react-menubar@1.1.16(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)':
+ dependencies:
+ '@radix-ui/primitive': 1.1.3
+ '@radix-ui/react-collection': 1.1.7(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@17.0.80)(react@17.0.2)
+ '@radix-ui/react-context': 1.1.2(@types/react@17.0.80)(react@17.0.2)
+ '@radix-ui/react-direction': 1.1.1(@types/react@17.0.80)(react@17.0.2)
+ '@radix-ui/react-id': 1.1.1(@types/react@17.0.80)(react@17.0.2)
+ '@radix-ui/react-menu': 2.1.16(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@radix-ui/react-roving-focus': 1.1.11(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@17.0.80)(react@17.0.2)
+ react: 17.0.2
+ react-dom: 17.0.2(react@17.0.2)
+ optionalDependencies:
+ '@types/react': 17.0.80
+ '@types/react-dom': 17.0.25
+
+ '@radix-ui/react-navigation-menu@1.2.14(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)':
+ dependencies:
+ '@radix-ui/primitive': 1.1.3
+ '@radix-ui/react-collection': 1.1.7(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@17.0.80)(react@17.0.2)
+ '@radix-ui/react-context': 1.1.2(@types/react@17.0.80)(react@17.0.2)
+ '@radix-ui/react-direction': 1.1.1(@types/react@17.0.80)(react@17.0.2)
+ '@radix-ui/react-dismissable-layer': 1.1.11(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@radix-ui/react-id': 1.1.1(@types/react@17.0.80)(react@17.0.2)
+ '@radix-ui/react-presence': 1.1.5(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@17.0.80)(react@17.0.2)
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@17.0.80)(react@17.0.2)
+ '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@17.0.80)(react@17.0.2)
+ '@radix-ui/react-use-previous': 1.1.1(@types/react@17.0.80)(react@17.0.2)
+ '@radix-ui/react-visually-hidden': 1.2.3(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ react: 17.0.2
+ react-dom: 17.0.2(react@17.0.2)
+ optionalDependencies:
+ '@types/react': 17.0.80
+ '@types/react-dom': 17.0.25
+
+ '@radix-ui/react-one-time-password-field@0.1.8(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)':
+ dependencies:
+ '@radix-ui/number': 1.1.1
+ '@radix-ui/primitive': 1.1.3
+ '@radix-ui/react-collection': 1.1.7(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@17.0.80)(react@17.0.2)
+ '@radix-ui/react-context': 1.1.2(@types/react@17.0.80)(react@17.0.2)
+ '@radix-ui/react-direction': 1.1.1(@types/react@17.0.80)(react@17.0.2)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@radix-ui/react-roving-focus': 1.1.11(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@17.0.80)(react@17.0.2)
+ '@radix-ui/react-use-effect-event': 0.0.2(@types/react@17.0.80)(react@17.0.2)
+ '@radix-ui/react-use-is-hydrated': 0.1.0(@types/react@17.0.80)(react@17.0.2)
+ '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@17.0.80)(react@17.0.2)
+ react: 17.0.2
+ react-dom: 17.0.2(react@17.0.2)
+ optionalDependencies:
+ '@types/react': 17.0.80
+ '@types/react-dom': 17.0.25
+
+ '@radix-ui/react-password-toggle-field@0.1.3(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)':
+ dependencies:
+ '@radix-ui/primitive': 1.1.3
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@17.0.80)(react@17.0.2)
+ '@radix-ui/react-context': 1.1.2(@types/react@17.0.80)(react@17.0.2)
+ '@radix-ui/react-id': 1.1.1(@types/react@17.0.80)(react@17.0.2)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@17.0.80)(react@17.0.2)
+ '@radix-ui/react-use-effect-event': 0.0.2(@types/react@17.0.80)(react@17.0.2)
+ '@radix-ui/react-use-is-hydrated': 0.1.0(@types/react@17.0.80)(react@17.0.2)
+ react: 17.0.2
+ react-dom: 17.0.2(react@17.0.2)
+ optionalDependencies:
+ '@types/react': 17.0.80
+ '@types/react-dom': 17.0.25
+
+ '@radix-ui/react-popover@1.1.15(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)':
+ dependencies:
+ '@radix-ui/primitive': 1.1.3
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@17.0.80)(react@17.0.2)
+ '@radix-ui/react-context': 1.1.2(@types/react@17.0.80)(react@17.0.2)
+ '@radix-ui/react-dismissable-layer': 1.1.11(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@radix-ui/react-focus-guards': 1.1.3(@types/react@17.0.80)(react@17.0.2)
+ '@radix-ui/react-focus-scope': 1.1.7(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@radix-ui/react-id': 1.1.1(@types/react@17.0.80)(react@17.0.2)
+ '@radix-ui/react-popper': 1.2.8(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@radix-ui/react-portal': 1.1.9(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@radix-ui/react-presence': 1.1.5(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@radix-ui/react-slot': 1.2.3(@types/react@17.0.80)(react@17.0.2)
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@17.0.80)(react@17.0.2)
+ aria-hidden: 1.2.6
+ react: 17.0.2
+ react-dom: 17.0.2(react@17.0.2)
+ react-remove-scroll: 2.7.2(@types/react@17.0.80)(react@17.0.2)
+ optionalDependencies:
+ '@types/react': 17.0.80
+ '@types/react-dom': 17.0.25
+
+ '@radix-ui/react-popper@1.2.8(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)':
+ dependencies:
+ '@floating-ui/react-dom': 2.1.6(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@radix-ui/react-arrow': 1.1.7(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@17.0.80)(react@17.0.2)
+ '@radix-ui/react-context': 1.1.2(@types/react@17.0.80)(react@17.0.2)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@17.0.80)(react@17.0.2)
+ '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@17.0.80)(react@17.0.2)
+ '@radix-ui/react-use-rect': 1.1.1(@types/react@17.0.80)(react@17.0.2)
+ '@radix-ui/react-use-size': 1.1.1(@types/react@17.0.80)(react@17.0.2)
+ '@radix-ui/rect': 1.1.1
+ react: 17.0.2
+ react-dom: 17.0.2(react@17.0.2)
+ optionalDependencies:
+ '@types/react': 17.0.80
+ '@types/react-dom': 17.0.25
- '@octokit/endpoint@9.0.6':
+ '@radix-ui/react-portal@1.1.9(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)':
dependencies:
- '@octokit/types': 13.10.0
- universal-user-agent: 6.0.1
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@17.0.80)(react@17.0.2)
+ react: 17.0.2
+ react-dom: 17.0.2(react@17.0.2)
+ optionalDependencies:
+ '@types/react': 17.0.80
+ '@types/react-dom': 17.0.25
- '@octokit/graphql@7.1.1':
+ '@radix-ui/react-presence@1.1.5(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)':
dependencies:
- '@octokit/request': 8.4.1
- '@octokit/types': 13.10.0
- universal-user-agent: 6.0.1
-
- '@octokit/openapi-types@24.2.0': {}
-
- '@octokit/plugin-enterprise-rest@6.0.1': {}
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@17.0.80)(react@17.0.2)
+ '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@17.0.80)(react@17.0.2)
+ react: 17.0.2
+ react-dom: 17.0.2(react@17.0.2)
+ optionalDependencies:
+ '@types/react': 17.0.80
+ '@types/react-dom': 17.0.25
- '@octokit/plugin-paginate-rest@11.4.4-cjs.2(@octokit/core@5.2.2)':
+ '@radix-ui/react-primitive@2.1.3(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)':
dependencies:
- '@octokit/core': 5.2.2
- '@octokit/types': 13.10.0
+ '@radix-ui/react-slot': 1.2.3(@types/react@17.0.80)(react@17.0.2)
+ react: 17.0.2
+ react-dom: 17.0.2(react@17.0.2)
+ optionalDependencies:
+ '@types/react': 17.0.80
+ '@types/react-dom': 17.0.25
- '@octokit/plugin-request-log@4.0.1(@octokit/core@5.2.2)':
+ '@radix-ui/react-progress@1.1.7(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)':
dependencies:
- '@octokit/core': 5.2.2
+ '@radix-ui/react-context': 1.1.2(@types/react@17.0.80)(react@17.0.2)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ react: 17.0.2
+ react-dom: 17.0.2(react@17.0.2)
+ optionalDependencies:
+ '@types/react': 17.0.80
+ '@types/react-dom': 17.0.25
+
+ '@radix-ui/react-radio-group@1.3.8(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)':
+ dependencies:
+ '@radix-ui/primitive': 1.1.3
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@17.0.80)(react@17.0.2)
+ '@radix-ui/react-context': 1.1.2(@types/react@17.0.80)(react@17.0.2)
+ '@radix-ui/react-direction': 1.1.1(@types/react@17.0.80)(react@17.0.2)
+ '@radix-ui/react-presence': 1.1.5(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@radix-ui/react-roving-focus': 1.1.11(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@17.0.80)(react@17.0.2)
+ '@radix-ui/react-use-previous': 1.1.1(@types/react@17.0.80)(react@17.0.2)
+ '@radix-ui/react-use-size': 1.1.1(@types/react@17.0.80)(react@17.0.2)
+ react: 17.0.2
+ react-dom: 17.0.2(react@17.0.2)
+ optionalDependencies:
+ '@types/react': 17.0.80
+ '@types/react-dom': 17.0.25
+
+ '@radix-ui/react-roving-focus@1.1.11(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)':
+ dependencies:
+ '@radix-ui/primitive': 1.1.3
+ '@radix-ui/react-collection': 1.1.7(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@17.0.80)(react@17.0.2)
+ '@radix-ui/react-context': 1.1.2(@types/react@17.0.80)(react@17.0.2)
+ '@radix-ui/react-direction': 1.1.1(@types/react@17.0.80)(react@17.0.2)
+ '@radix-ui/react-id': 1.1.1(@types/react@17.0.80)(react@17.0.2)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@17.0.80)(react@17.0.2)
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@17.0.80)(react@17.0.2)
+ react: 17.0.2
+ react-dom: 17.0.2(react@17.0.2)
+ optionalDependencies:
+ '@types/react': 17.0.80
+ '@types/react-dom': 17.0.25
+
+ '@radix-ui/react-scroll-area@1.2.10(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)':
+ dependencies:
+ '@radix-ui/number': 1.1.1
+ '@radix-ui/primitive': 1.1.3
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@17.0.80)(react@17.0.2)
+ '@radix-ui/react-context': 1.1.2(@types/react@17.0.80)(react@17.0.2)
+ '@radix-ui/react-direction': 1.1.1(@types/react@17.0.80)(react@17.0.2)
+ '@radix-ui/react-presence': 1.1.5(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@17.0.80)(react@17.0.2)
+ '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@17.0.80)(react@17.0.2)
+ react: 17.0.2
+ react-dom: 17.0.2(react@17.0.2)
+ optionalDependencies:
+ '@types/react': 17.0.80
+ '@types/react-dom': 17.0.25
+
+ '@radix-ui/react-select@2.2.6(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)':
+ dependencies:
+ '@radix-ui/number': 1.1.1
+ '@radix-ui/primitive': 1.1.3
+ '@radix-ui/react-collection': 1.1.7(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@17.0.80)(react@17.0.2)
+ '@radix-ui/react-context': 1.1.2(@types/react@17.0.80)(react@17.0.2)
+ '@radix-ui/react-direction': 1.1.1(@types/react@17.0.80)(react@17.0.2)
+ '@radix-ui/react-dismissable-layer': 1.1.11(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@radix-ui/react-focus-guards': 1.1.3(@types/react@17.0.80)(react@17.0.2)
+ '@radix-ui/react-focus-scope': 1.1.7(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@radix-ui/react-id': 1.1.1(@types/react@17.0.80)(react@17.0.2)
+ '@radix-ui/react-popper': 1.2.8(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@radix-ui/react-portal': 1.1.9(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@radix-ui/react-slot': 1.2.3(@types/react@17.0.80)(react@17.0.2)
+ '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@17.0.80)(react@17.0.2)
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@17.0.80)(react@17.0.2)
+ '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@17.0.80)(react@17.0.2)
+ '@radix-ui/react-use-previous': 1.1.1(@types/react@17.0.80)(react@17.0.2)
+ '@radix-ui/react-visually-hidden': 1.2.3(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ aria-hidden: 1.2.6
+ react: 17.0.2
+ react-dom: 17.0.2(react@17.0.2)
+ react-remove-scroll: 2.7.2(@types/react@17.0.80)(react@17.0.2)
+ optionalDependencies:
+ '@types/react': 17.0.80
+ '@types/react-dom': 17.0.25
- '@octokit/plugin-rest-endpoint-methods@13.3.2-cjs.1(@octokit/core@5.2.2)':
+ '@radix-ui/react-separator@1.1.7(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)':
dependencies:
- '@octokit/core': 5.2.2
- '@octokit/types': 13.10.0
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ react: 17.0.2
+ react-dom: 17.0.2(react@17.0.2)
+ optionalDependencies:
+ '@types/react': 17.0.80
+ '@types/react-dom': 17.0.25
+
+ '@radix-ui/react-slider@1.3.6(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)':
+ dependencies:
+ '@radix-ui/number': 1.1.1
+ '@radix-ui/primitive': 1.1.3
+ '@radix-ui/react-collection': 1.1.7(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@17.0.80)(react@17.0.2)
+ '@radix-ui/react-context': 1.1.2(@types/react@17.0.80)(react@17.0.2)
+ '@radix-ui/react-direction': 1.1.1(@types/react@17.0.80)(react@17.0.2)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@17.0.80)(react@17.0.2)
+ '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@17.0.80)(react@17.0.2)
+ '@radix-ui/react-use-previous': 1.1.1(@types/react@17.0.80)(react@17.0.2)
+ '@radix-ui/react-use-size': 1.1.1(@types/react@17.0.80)(react@17.0.2)
+ react: 17.0.2
+ react-dom: 17.0.2(react@17.0.2)
+ optionalDependencies:
+ '@types/react': 17.0.80
+ '@types/react-dom': 17.0.25
- '@octokit/request-error@5.1.1':
+ '@radix-ui/react-slot@1.2.3(@types/react@17.0.80)(react@17.0.2)':
dependencies:
- '@octokit/types': 13.10.0
- deprecation: 2.3.1
- once: 1.4.0
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@17.0.80)(react@17.0.2)
+ react: 17.0.2
+ optionalDependencies:
+ '@types/react': 17.0.80
- '@octokit/request@8.4.1':
+ '@radix-ui/react-switch@1.2.6(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)':
dependencies:
- '@octokit/endpoint': 9.0.6
- '@octokit/request-error': 5.1.1
- '@octokit/types': 13.10.0
- universal-user-agent: 6.0.1
+ '@radix-ui/primitive': 1.1.3
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@17.0.80)(react@17.0.2)
+ '@radix-ui/react-context': 1.1.2(@types/react@17.0.80)(react@17.0.2)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@17.0.80)(react@17.0.2)
+ '@radix-ui/react-use-previous': 1.1.1(@types/react@17.0.80)(react@17.0.2)
+ '@radix-ui/react-use-size': 1.1.1(@types/react@17.0.80)(react@17.0.2)
+ react: 17.0.2
+ react-dom: 17.0.2(react@17.0.2)
+ optionalDependencies:
+ '@types/react': 17.0.80
+ '@types/react-dom': 17.0.25
+
+ '@radix-ui/react-tabs@1.1.13(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)':
+ dependencies:
+ '@radix-ui/primitive': 1.1.3
+ '@radix-ui/react-context': 1.1.2(@types/react@17.0.80)(react@17.0.2)
+ '@radix-ui/react-direction': 1.1.1(@types/react@17.0.80)(react@17.0.2)
+ '@radix-ui/react-id': 1.1.1(@types/react@17.0.80)(react@17.0.2)
+ '@radix-ui/react-presence': 1.1.5(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@radix-ui/react-roving-focus': 1.1.11(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@17.0.80)(react@17.0.2)
+ react: 17.0.2
+ react-dom: 17.0.2(react@17.0.2)
+ optionalDependencies:
+ '@types/react': 17.0.80
+ '@types/react-dom': 17.0.25
+
+ '@radix-ui/react-toast@1.2.15(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)':
+ dependencies:
+ '@radix-ui/primitive': 1.1.3
+ '@radix-ui/react-collection': 1.1.7(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@17.0.80)(react@17.0.2)
+ '@radix-ui/react-context': 1.1.2(@types/react@17.0.80)(react@17.0.2)
+ '@radix-ui/react-dismissable-layer': 1.1.11(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@radix-ui/react-portal': 1.1.9(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@radix-ui/react-presence': 1.1.5(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@17.0.80)(react@17.0.2)
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@17.0.80)(react@17.0.2)
+ '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@17.0.80)(react@17.0.2)
+ '@radix-ui/react-visually-hidden': 1.2.3(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ react: 17.0.2
+ react-dom: 17.0.2(react@17.0.2)
+ optionalDependencies:
+ '@types/react': 17.0.80
+ '@types/react-dom': 17.0.25
- '@octokit/rest@20.1.2':
+ '@radix-ui/react-toggle-group@1.1.11(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)':
dependencies:
- '@octokit/core': 5.2.2
- '@octokit/plugin-paginate-rest': 11.4.4-cjs.2(@octokit/core@5.2.2)
- '@octokit/plugin-request-log': 4.0.1(@octokit/core@5.2.2)
- '@octokit/plugin-rest-endpoint-methods': 13.3.2-cjs.1(@octokit/core@5.2.2)
+ '@radix-ui/primitive': 1.1.3
+ '@radix-ui/react-context': 1.1.2(@types/react@17.0.80)(react@17.0.2)
+ '@radix-ui/react-direction': 1.1.1(@types/react@17.0.80)(react@17.0.2)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@radix-ui/react-roving-focus': 1.1.11(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@radix-ui/react-toggle': 1.1.10(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@17.0.80)(react@17.0.2)
+ react: 17.0.2
+ react-dom: 17.0.2(react@17.0.2)
+ optionalDependencies:
+ '@types/react': 17.0.80
+ '@types/react-dom': 17.0.25
- '@octokit/types@13.10.0':
+ '@radix-ui/react-toggle@1.1.10(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)':
dependencies:
- '@octokit/openapi-types': 24.2.0
-
- '@one-ini/wasm@0.1.1': {}
-
- '@parcel/watcher-android-arm64@2.5.1':
- optional: true
-
- '@parcel/watcher-darwin-arm64@2.5.1':
- optional: true
-
- '@parcel/watcher-darwin-x64@2.5.1':
- optional: true
-
- '@parcel/watcher-freebsd-x64@2.5.1':
- optional: true
-
- '@parcel/watcher-linux-arm-glibc@2.5.1':
- optional: true
+ '@radix-ui/primitive': 1.1.3
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@17.0.80)(react@17.0.2)
+ react: 17.0.2
+ react-dom: 17.0.2(react@17.0.2)
+ optionalDependencies:
+ '@types/react': 17.0.80
+ '@types/react-dom': 17.0.25
- '@parcel/watcher-linux-arm-musl@2.5.1':
- optional: true
+ '@radix-ui/react-toolbar@1.1.11(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)':
+ dependencies:
+ '@radix-ui/primitive': 1.1.3
+ '@radix-ui/react-context': 1.1.2(@types/react@17.0.80)(react@17.0.2)
+ '@radix-ui/react-direction': 1.1.1(@types/react@17.0.80)(react@17.0.2)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@radix-ui/react-roving-focus': 1.1.11(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@radix-ui/react-separator': 1.1.7(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@radix-ui/react-toggle-group': 1.1.11(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ react: 17.0.2
+ react-dom: 17.0.2(react@17.0.2)
+ optionalDependencies:
+ '@types/react': 17.0.80
+ '@types/react-dom': 17.0.25
+
+ '@radix-ui/react-tooltip@1.2.8(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)':
+ dependencies:
+ '@radix-ui/primitive': 1.1.3
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@17.0.80)(react@17.0.2)
+ '@radix-ui/react-context': 1.1.2(@types/react@17.0.80)(react@17.0.2)
+ '@radix-ui/react-dismissable-layer': 1.1.11(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@radix-ui/react-id': 1.1.1(@types/react@17.0.80)(react@17.0.2)
+ '@radix-ui/react-popper': 1.2.8(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@radix-ui/react-portal': 1.1.9(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@radix-ui/react-presence': 1.1.5(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@radix-ui/react-slot': 1.2.3(@types/react@17.0.80)(react@17.0.2)
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@17.0.80)(react@17.0.2)
+ '@radix-ui/react-visually-hidden': 1.2.3(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ react: 17.0.2
+ react-dom: 17.0.2(react@17.0.2)
+ optionalDependencies:
+ '@types/react': 17.0.80
+ '@types/react-dom': 17.0.25
- '@parcel/watcher-linux-arm64-glibc@2.5.1':
- optional: true
+ '@radix-ui/react-use-callback-ref@1.1.1(@types/react@17.0.80)(react@17.0.2)':
+ dependencies:
+ react: 17.0.2
+ optionalDependencies:
+ '@types/react': 17.0.80
- '@parcel/watcher-linux-arm64-musl@2.5.1':
- optional: true
+ '@radix-ui/react-use-controllable-state@1.2.2(@types/react@17.0.80)(react@17.0.2)':
+ dependencies:
+ '@radix-ui/react-use-effect-event': 0.0.2(@types/react@17.0.80)(react@17.0.2)
+ '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@17.0.80)(react@17.0.2)
+ react: 17.0.2
+ optionalDependencies:
+ '@types/react': 17.0.80
- '@parcel/watcher-linux-x64-glibc@2.5.1':
- optional: true
+ '@radix-ui/react-use-effect-event@0.0.2(@types/react@17.0.80)(react@17.0.2)':
+ dependencies:
+ '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@17.0.80)(react@17.0.2)
+ react: 17.0.2
+ optionalDependencies:
+ '@types/react': 17.0.80
- '@parcel/watcher-linux-x64-musl@2.5.1':
- optional: true
+ '@radix-ui/react-use-escape-keydown@1.1.1(@types/react@17.0.80)(react@17.0.2)':
+ dependencies:
+ '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@17.0.80)(react@17.0.2)
+ react: 17.0.2
+ optionalDependencies:
+ '@types/react': 17.0.80
- '@parcel/watcher-win32-arm64@2.5.1':
- optional: true
+ '@radix-ui/react-use-is-hydrated@0.1.0(@types/react@17.0.80)(react@17.0.2)':
+ dependencies:
+ react: 17.0.2
+ use-sync-external-store: 1.5.0(react@17.0.2)
+ optionalDependencies:
+ '@types/react': 17.0.80
- '@parcel/watcher-win32-ia32@2.5.1':
- optional: true
+ '@radix-ui/react-use-layout-effect@1.1.1(@types/react@17.0.80)(react@17.0.2)':
+ dependencies:
+ react: 17.0.2
+ optionalDependencies:
+ '@types/react': 17.0.80
- '@parcel/watcher-win32-x64@2.5.1':
- optional: true
+ '@radix-ui/react-use-previous@1.1.1(@types/react@17.0.80)(react@17.0.2)':
+ dependencies:
+ react: 17.0.2
+ optionalDependencies:
+ '@types/react': 17.0.80
- '@parcel/watcher@2.5.1':
+ '@radix-ui/react-use-rect@1.1.1(@types/react@17.0.80)(react@17.0.2)':
dependencies:
- detect-libc: 1.0.3
- is-glob: 4.0.3
- micromatch: 4.0.8
- node-addon-api: 7.1.1
+ '@radix-ui/rect': 1.1.1
+ react: 17.0.2
optionalDependencies:
- '@parcel/watcher-android-arm64': 2.5.1
- '@parcel/watcher-darwin-arm64': 2.5.1
- '@parcel/watcher-darwin-x64': 2.5.1
- '@parcel/watcher-freebsd-x64': 2.5.1
- '@parcel/watcher-linux-arm-glibc': 2.5.1
- '@parcel/watcher-linux-arm-musl': 2.5.1
- '@parcel/watcher-linux-arm64-glibc': 2.5.1
- '@parcel/watcher-linux-arm64-musl': 2.5.1
- '@parcel/watcher-linux-x64-glibc': 2.5.1
- '@parcel/watcher-linux-x64-musl': 2.5.1
- '@parcel/watcher-win32-arm64': 2.5.1
- '@parcel/watcher-win32-ia32': 2.5.1
- '@parcel/watcher-win32-x64': 2.5.1
- optional: true
+ '@types/react': 17.0.80
- '@pkgjs/parseargs@0.11.0':
- optional: true
+ '@radix-ui/react-use-size@1.1.1(@types/react@17.0.80)(react@17.0.2)':
+ dependencies:
+ '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@17.0.80)(react@17.0.2)
+ react: 17.0.2
+ optionalDependencies:
+ '@types/react': 17.0.80
- '@pkgr/core@0.1.1': {}
+ '@radix-ui/react-visually-hidden@1.2.3(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)':
+ dependencies:
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ react: 17.0.2
+ react-dom: 17.0.2(react@17.0.2)
+ optionalDependencies:
+ '@types/react': 17.0.80
+ '@types/react-dom': 17.0.25
- '@polka/url@1.0.0-next.25': {}
+ '@radix-ui/rect@1.1.1': {}
- '@popperjs/core@2.11.8': {}
+ '@rolldown/pluginutils@1.0.0-beta.27': {}
'@rollup/plugin-alias@3.1.9(rollup@2.79.1)':
dependencies:
@@ -18340,7 +20702,7 @@ snapshots:
dependencies:
'@rollup/pluginutils': 5.1.0(rollup@4.52.4)
estree-walker: 2.0.2
- magic-string: 0.30.10
+ magic-string: 0.30.17
optionalDependencies:
rollup: 4.52.4
@@ -18363,14 +20725,14 @@ snapshots:
deepmerge: 4.3.1
is-builtin-module: 3.2.1
is-module: 1.0.0
- resolve: 1.22.8
+ resolve: 1.22.10
optionalDependencies:
rollup: 2.79.1
'@rollup/plugin-replace@5.0.5(rollup@2.79.1)':
dependencies:
'@rollup/pluginutils': 5.1.0(rollup@2.79.1)
- magic-string: 0.30.10
+ magic-string: 0.30.17
optionalDependencies:
rollup: 2.79.1
@@ -18381,7 +20743,7 @@ snapshots:
'@rollup/pluginutils@5.1.0(rollup@2.79.1)':
dependencies:
- '@types/estree': 1.0.5
+ '@types/estree': 1.0.8
estree-walker: 2.0.2
picomatch: 2.3.1
optionalDependencies:
@@ -18389,7 +20751,7 @@ snapshots:
'@rollup/pluginutils@5.1.0(rollup@4.52.4)':
dependencies:
- '@types/estree': 1.0.5
+ '@types/estree': 1.0.8
estree-walker: 2.0.2
picomatch: 2.3.1
optionalDependencies:
@@ -18531,7 +20893,7 @@ snapshots:
fs-extra: 7.0.1
import-lazy: 4.0.0
jju: 1.4.0
- resolve: 1.22.8
+ resolve: 1.22.10
semver: 7.5.4
z-schema: 5.0.5
optionalDependencies:
@@ -18539,7 +20901,7 @@ snapshots:
'@rushstack/rig-package@0.5.2':
dependencies:
- resolve: 1.22.8
+ resolve: 1.22.10
strip-json-comments: 3.1.1
'@rushstack/terminal@0.10.0(@types/node@22.13.8)':
@@ -18648,21 +21010,89 @@ snapshots:
dependencies:
type-detect: 4.0.8
- '@sinonjs/fake-timers@10.3.0':
- dependencies:
- '@sinonjs/commons': 3.0.1
+ '@sinonjs/fake-timers@10.3.0':
+ dependencies:
+ '@sinonjs/commons': 3.0.1
+
+ '@socket.io/component-emitter@3.1.2': {}
+
+ '@soda/friendly-errors-webpack-plugin@1.8.1(webpack@5.91.0)':
+ dependencies:
+ chalk: 3.0.0
+ error-stack-parser: 2.1.4
+ string-width: 4.2.3
+ strip-ansi: 6.0.1
+ webpack: 5.91.0(webpack-cli@5.1.4)
+
+ '@soda/get-current-script@1.0.2': {}
+
+ '@tailwindcss/node@4.1.18':
+ dependencies:
+ '@jridgewell/remapping': 2.3.5
+ enhanced-resolve: 5.18.4
+ jiti: 2.6.1
+ lightningcss: 1.30.2
+ magic-string: 0.30.21
+ source-map-js: 1.2.1
+ tailwindcss: 4.1.18
+
+ '@tailwindcss/oxide-android-arm64@4.1.18':
+ optional: true
+
+ '@tailwindcss/oxide-darwin-arm64@4.1.18':
+ optional: true
+
+ '@tailwindcss/oxide-darwin-x64@4.1.18':
+ optional: true
+
+ '@tailwindcss/oxide-freebsd-x64@4.1.18':
+ optional: true
+
+ '@tailwindcss/oxide-linux-arm-gnueabihf@4.1.18':
+ optional: true
+
+ '@tailwindcss/oxide-linux-arm64-gnu@4.1.18':
+ optional: true
+
+ '@tailwindcss/oxide-linux-arm64-musl@4.1.18':
+ optional: true
+
+ '@tailwindcss/oxide-linux-x64-gnu@4.1.18':
+ optional: true
+
+ '@tailwindcss/oxide-linux-x64-musl@4.1.18':
+ optional: true
- '@socket.io/component-emitter@3.1.2': {}
+ '@tailwindcss/oxide-wasm32-wasi@4.1.18':
+ optional: true
- '@soda/friendly-errors-webpack-plugin@1.8.1(webpack@5.91.0)':
- dependencies:
- chalk: 3.0.0
- error-stack-parser: 2.1.4
- string-width: 4.2.3
- strip-ansi: 6.0.1
- webpack: 5.91.0(webpack-cli@5.1.4)
+ '@tailwindcss/oxide-win32-arm64-msvc@4.1.18':
+ optional: true
- '@soda/get-current-script@1.0.2': {}
+ '@tailwindcss/oxide-win32-x64-msvc@4.1.18':
+ optional: true
+
+ '@tailwindcss/oxide@4.1.18':
+ optionalDependencies:
+ '@tailwindcss/oxide-android-arm64': 4.1.18
+ '@tailwindcss/oxide-darwin-arm64': 4.1.18
+ '@tailwindcss/oxide-darwin-x64': 4.1.18
+ '@tailwindcss/oxide-freebsd-x64': 4.1.18
+ '@tailwindcss/oxide-linux-arm-gnueabihf': 4.1.18
+ '@tailwindcss/oxide-linux-arm64-gnu': 4.1.18
+ '@tailwindcss/oxide-linux-arm64-musl': 4.1.18
+ '@tailwindcss/oxide-linux-x64-gnu': 4.1.18
+ '@tailwindcss/oxide-linux-x64-musl': 4.1.18
+ '@tailwindcss/oxide-wasm32-wasi': 4.1.18
+ '@tailwindcss/oxide-win32-arm64-msvc': 4.1.18
+ '@tailwindcss/oxide-win32-x64-msvc': 4.1.18
+
+ '@tailwindcss/vite@4.1.18(vite@5.4.21(@types/node@24.10.9)(less@4.2.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.57.0)(terser@5.39.0))':
+ dependencies:
+ '@tailwindcss/node': 4.1.18
+ '@tailwindcss/oxide': 4.1.18
+ tailwindcss: 4.1.18
+ vite: 5.4.21(@types/node@24.10.9)(less@4.2.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.57.0)(terser@5.39.0)
'@tootallnate/once@2.0.0': {}
@@ -18698,24 +21128,24 @@ snapshots:
'@types/babel__core@7.20.5':
dependencies:
- '@babel/parser': 7.28.4
- '@babel/types': 7.28.4
+ '@babel/parser': 7.28.6
+ '@babel/types': 7.28.6
'@types/babel__generator': 7.6.8
'@types/babel__template': 7.4.4
'@types/babel__traverse': 7.20.6
'@types/babel__generator@7.6.8':
dependencies:
- '@babel/types': 7.28.4
+ '@babel/types': 7.28.6
'@types/babel__template@7.4.4':
dependencies:
- '@babel/parser': 7.28.4
- '@babel/types': 7.28.4
+ '@babel/parser': 7.28.6
+ '@babel/types': 7.28.6
'@types/babel__traverse@7.20.6':
dependencies:
- '@babel/types': 7.28.4
+ '@babel/types': 7.28.6
'@types/body-parser@1.19.5':
dependencies:
@@ -18750,16 +21180,16 @@ snapshots:
'@types/enzyme@3.10.18':
dependencies:
'@types/cheerio': 0.22.35
- '@types/react': 16.14.60
+ '@types/react': 17.0.80
'@types/eslint-scope@3.7.7':
dependencies:
'@types/eslint': 8.56.10
- '@types/estree': 1.0.5
+ '@types/estree': 1.0.8
'@types/eslint@8.56.10':
dependencies:
- '@types/estree': 1.0.5
+ '@types/estree': 1.0.8
'@types/json-schema': 7.0.15
'@types/estree@1.0.5': {}
@@ -18871,14 +21301,16 @@ snapshots:
dependencies:
undici-types: 6.20.0
+ '@types/node@24.10.9':
+ dependencies:
+ undici-types: 7.16.0
+
'@types/normalize-package-data@2.4.4': {}
'@types/object-hash@1.3.4': {}
'@types/parse-json@4.0.2': {}
- '@types/prop-types@15.7.12': {}
-
'@types/prop-types@15.7.15': {}
'@types/q@0.0.32': {}
@@ -18910,17 +21342,11 @@ snapshots:
dependencies:
'@types/react': 17.0.80
- '@types/react@16.14.60':
- dependencies:
- '@types/prop-types': 15.7.12
- '@types/scheduler': 0.16.8
- csstype: 3.1.3
-
'@types/react@17.0.80':
dependencies:
- '@types/prop-types': 15.7.12
+ '@types/prop-types': 15.7.15
'@types/scheduler': 0.16.8
- csstype: 3.1.3
+ csstype: 3.2.3
'@types/redux-mock-store@1.0.6':
dependencies:
@@ -19036,13 +21462,22 @@ snapshots:
'@typescript-eslint/types': 7.18.0
'@typescript-eslint/typescript-estree': 7.18.0(typescript@5.5.4)
'@typescript-eslint/visitor-keys': 7.18.0
- debug: 4.3.7
+ debug: 4.4.3
eslint: 8.57.0
optionalDependencies:
typescript: 5.5.4
transitivePeerDependencies:
- supports-color
+ '@typescript-eslint/project-service@8.53.1(typescript@5.5.4)':
+ dependencies:
+ '@typescript-eslint/tsconfig-utils': 8.53.1(typescript@5.5.4)
+ '@typescript-eslint/types': 8.53.1
+ debug: 4.4.3
+ typescript: 5.5.4
+ transitivePeerDependencies:
+ - supports-color
+
'@typescript-eslint/scope-manager@5.62.0':
dependencies:
'@typescript-eslint/types': 5.62.0
@@ -19053,6 +21488,15 @@ snapshots:
'@typescript-eslint/types': 7.18.0
'@typescript-eslint/visitor-keys': 7.18.0
+ '@typescript-eslint/scope-manager@8.53.1':
+ dependencies:
+ '@typescript-eslint/types': 8.53.1
+ '@typescript-eslint/visitor-keys': 8.53.1
+
+ '@typescript-eslint/tsconfig-utils@8.53.1(typescript@5.5.4)':
+ dependencies:
+ typescript: 5.5.4
+
'@typescript-eslint/type-utils@5.62.0(eslint@8.57.0)(typescript@5.5.4)':
dependencies:
'@typescript-eslint/typescript-estree': 5.62.0(typescript@5.5.4)
@@ -19069,7 +21513,7 @@ snapshots:
dependencies:
'@typescript-eslint/typescript-estree': 7.18.0(typescript@5.5.4)
'@typescript-eslint/utils': 7.18.0(eslint@8.57.0)(typescript@5.5.4)
- debug: 4.3.7
+ debug: 4.4.3
eslint: 8.57.0
ts-api-utils: 1.3.0(typescript@5.5.4)
optionalDependencies:
@@ -19081,6 +21525,8 @@ snapshots:
'@typescript-eslint/types@7.18.0': {}
+ '@typescript-eslint/types@8.53.1': {}
+
'@typescript-eslint/typescript-estree@5.62.0(typescript@5.5.4)':
dependencies:
'@typescript-eslint/types': 5.62.0
@@ -19099,10 +21545,10 @@ snapshots:
dependencies:
'@typescript-eslint/types': 7.18.0
'@typescript-eslint/visitor-keys': 7.18.0
- debug: 4.3.7
+ debug: 4.4.3
globby: 11.1.0
is-glob: 4.0.3
- minimatch: 9.0.4
+ minimatch: 9.0.5
semver: 7.7.3
ts-api-utils: 1.3.0(typescript@5.5.4)
optionalDependencies:
@@ -19110,6 +21556,21 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@typescript-eslint/typescript-estree@8.53.1(typescript@5.5.4)':
+ dependencies:
+ '@typescript-eslint/project-service': 8.53.1(typescript@5.5.4)
+ '@typescript-eslint/tsconfig-utils': 8.53.1(typescript@5.5.4)
+ '@typescript-eslint/types': 8.53.1
+ '@typescript-eslint/visitor-keys': 8.53.1
+ debug: 4.4.3
+ minimatch: 9.0.5
+ semver: 7.7.3
+ tinyglobby: 0.2.15
+ ts-api-utils: 2.4.0(typescript@5.5.4)
+ typescript: 5.5.4
+ transitivePeerDependencies:
+ - supports-color
+
'@typescript-eslint/utils@5.62.0(eslint@8.57.0)(typescript@5.5.4)':
dependencies:
'@eslint-community/eslint-utils': 4.4.0(eslint@8.57.0)
@@ -19136,6 +21597,17 @@ snapshots:
- supports-color
- typescript
+ '@typescript-eslint/utils@8.53.1(eslint@8.57.0)(typescript@5.5.4)':
+ dependencies:
+ '@eslint-community/eslint-utils': 4.9.1(eslint@8.57.0)
+ '@typescript-eslint/scope-manager': 8.53.1
+ '@typescript-eslint/types': 8.53.1
+ '@typescript-eslint/typescript-estree': 8.53.1(typescript@5.5.4)
+ eslint: 8.57.0
+ typescript: 5.5.4
+ transitivePeerDependencies:
+ - supports-color
+
'@typescript-eslint/visitor-keys@5.62.0':
dependencies:
'@typescript-eslint/types': 5.62.0
@@ -19146,6 +21618,11 @@ snapshots:
'@typescript-eslint/types': 7.18.0
eslint-visitor-keys: 3.4.3
+ '@typescript-eslint/visitor-keys@8.53.1':
+ dependencies:
+ '@typescript-eslint/types': 8.53.1
+ eslint-visitor-keys: 4.2.1
+
'@ungap/promise-all-settled@1.1.2': {}
'@ungap/structured-clone@1.2.0': {}
@@ -19168,16 +21645,32 @@ snapshots:
- encoding
- supports-color
- '@vitejs/plugin-basic-ssl@1.2.0(vite@6.3.6(@types/node@22.13.8)(jiti@1.21.0)(less@4.2.2)(sass@1.85.0)(stylus@0.57.0)(terser@5.39.0)(yaml@2.8.1))':
+ '@vitejs/plugin-basic-ssl@1.2.0(vite@6.3.6(@types/node@22.13.8)(jiti@2.6.1)(less@4.2.2)(lightningcss@1.30.2)(sass@1.85.0)(stylus@0.57.0)(terser@5.39.0)(yaml@2.8.1))':
+ dependencies:
+ vite: 6.3.6(@types/node@22.13.8)(jiti@2.6.1)(less@4.2.2)(lightningcss@1.30.2)(sass@1.85.0)(stylus@0.57.0)(terser@5.39.0)(yaml@2.8.1)
+
+ '@vitejs/plugin-basic-ssl@1.2.0(vite@7.3.1(@types/node@22.13.8)(jiti@2.6.1)(less@4.2.2)(lightningcss@1.30.2)(sass@1.85.0)(stylus@0.57.0)(terser@5.39.0)(yaml@2.8.1))':
dependencies:
- vite: 6.3.6(@types/node@22.13.8)(jiti@1.21.0)(less@4.2.2)(sass@1.85.0)(stylus@0.57.0)(terser@5.39.0)(yaml@2.8.1)
+ vite: 7.3.1(@types/node@22.13.8)(jiti@2.6.1)(less@4.2.2)(lightningcss@1.30.2)(sass@1.85.0)(stylus@0.57.0)(terser@5.39.0)(yaml@2.8.1)
+
+ '@vitejs/plugin-react@4.7.0(vite@5.4.21(@types/node@24.10.9)(less@4.2.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.57.0)(terser@5.39.0))':
+ dependencies:
+ '@babel/core': 7.28.6
+ '@babel/plugin-transform-react-jsx-self': 7.27.1(@babel/core@7.28.6)
+ '@babel/plugin-transform-react-jsx-source': 7.27.1(@babel/core@7.28.6)
+ '@rolldown/pluginutils': 1.0.0-beta.27
+ '@types/babel__core': 7.20.5
+ react-refresh: 0.17.0
+ vite: 5.4.21(@types/node@24.10.9)(less@4.2.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.57.0)(terser@5.39.0)
+ transitivePeerDependencies:
+ - supports-color
- '@vitejs/plugin-vue@5.1.2(vite@5.4.21(@types/node@22.13.8)(less@4.2.2)(sass@1.93.2)(stylus@0.57.0)(terser@5.39.0))(vue@3.5.17(typescript@5.5.4))':
+ '@vitejs/plugin-vue@5.1.2(vite@5.4.21(@types/node@22.13.8)(less@4.2.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.57.0)(terser@5.39.0))(vue@3.5.17(typescript@5.5.4))':
dependencies:
- vite: 5.4.21(@types/node@22.13.8)(less@4.2.2)(sass@1.93.2)(stylus@0.57.0)(terser@5.39.0)
+ vite: 5.4.21(@types/node@22.13.8)(less@4.2.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.57.0)(terser@5.39.0)
vue: 3.5.17(typescript@5.5.4)
- '@vitest/coverage-v8@1.6.0(vitest@1.6.0(@types/node@22.13.8)(jsdom@27.2.0)(less@4.2.2)(sass@1.93.2)(stylus@0.57.0)(terser@5.39.0))':
+ '@vitest/coverage-v8@1.6.0(vitest@1.6.0(@types/node@22.13.8)(jsdom@27.2.0)(less@4.2.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.57.0)(terser@5.39.0))':
dependencies:
'@ampproject/remapping': 2.3.0
'@bcoe/v8-coverage': 0.2.3
@@ -19192,7 +21685,7 @@ snapshots:
std-env: 3.7.0
strip-literal: 2.1.0
test-exclude: 6.0.0
- vitest: 1.6.0(@types/node@22.13.8)(jsdom@27.2.0)(less@4.2.2)(sass@1.93.2)(stylus@0.57.0)(terser@5.39.0)
+ vitest: 1.6.0(@types/node@22.13.8)(jsdom@27.2.0)(less@4.2.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.57.0)(terser@5.39.0)
transitivePeerDependencies:
- supports-color
@@ -19210,7 +21703,7 @@ snapshots:
'@vitest/snapshot@1.6.0':
dependencies:
- magic-string: 0.30.10
+ magic-string: 0.30.17
pathe: 1.1.2
pretty-format: 29.7.0
@@ -19257,11 +21750,11 @@ snapshots:
'@vue/babel-plugin-jsx@1.2.2(@babel/core@7.24.5)':
dependencies:
'@babel/helper-module-imports': 7.22.15
- '@babel/helper-plugin-utils': 7.24.5
+ '@babel/helper-plugin-utils': 7.27.1
'@babel/plugin-syntax-jsx': 7.24.1(@babel/core@7.24.5)
- '@babel/template': 7.24.0
- '@babel/traverse': 7.24.5
- '@babel/types': 7.24.5
+ '@babel/template': 7.28.6
+ '@babel/traverse': 7.28.6
+ '@babel/types': 7.28.6
'@vue/babel-helper-vue-transform-on': 1.2.2
'@vue/babel-plugin-resolve-type': 1.2.2(@babel/core@7.24.5)
camelcase: 6.3.0
@@ -19274,40 +21767,42 @@ snapshots:
'@vue/babel-plugin-resolve-type@1.2.2(@babel/core@7.24.5)':
dependencies:
- '@babel/code-frame': 7.24.2
+ '@babel/code-frame': 7.28.6
'@babel/core': 7.24.5
'@babel/helper-module-imports': 7.22.15
- '@babel/helper-plugin-utils': 7.24.5
- '@babel/parser': 7.24.5
+ '@babel/helper-plugin-utils': 7.27.1
+ '@babel/parser': 7.28.6
'@vue/compiler-sfc': 3.4.27
'@vue/babel-plugin-transform-vue-jsx@1.4.0(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-module-imports': 7.24.3
+ '@babel/helper-module-imports': 7.28.6
'@babel/plugin-syntax-jsx': 7.24.1(@babel/core@7.24.5)
'@vue/babel-helper-vue-jsx-merge-props': 1.4.0
html-tags: 2.0.0
lodash.kebabcase: 4.1.1
svg-tags: 1.0.0
+ transitivePeerDependencies:
+ - supports-color
'@vue/babel-preset-app@5.0.8(@babel/core@7.24.5)(core-js@3.37.1)(vue@3.5.17(typescript@5.5.4))':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-compilation-targets': 7.23.6
- '@babel/helper-module-imports': 7.24.3
+ '@babel/helper-compilation-targets': 7.28.6
+ '@babel/helper-module-imports': 7.27.1
'@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.24.5)
'@babel/plugin-proposal-decorators': 7.24.1(@babel/core@7.24.5)
'@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.5)
'@babel/plugin-syntax-jsx': 7.24.1(@babel/core@7.24.5)
'@babel/plugin-transform-runtime': 7.24.3(@babel/core@7.24.5)
'@babel/preset-env': 7.24.5(@babel/core@7.24.5)
- '@babel/runtime': 7.24.5
+ '@babel/runtime': 7.28.4
'@vue/babel-plugin-jsx': 1.2.2(@babel/core@7.24.5)
'@vue/babel-preset-jsx': 1.4.0(@babel/core@7.24.5)(vue@3.5.17(typescript@5.5.4))
babel-plugin-dynamic-import-node: 2.3.3
core-js-compat: 3.37.1
- semver: 7.6.2
+ semver: 7.7.3
optionalDependencies:
core-js: 3.37.1
vue: 3.5.17(typescript@5.5.4)
@@ -19327,6 +21822,8 @@ snapshots:
'@vue/babel-sugar-v-on': 1.4.0(@babel/core@7.24.5)
optionalDependencies:
vue: 3.5.17(typescript@5.5.4)
+ transitivePeerDependencies:
+ - supports-color
'@vue/babel-sugar-composition-api-inject-h@1.4.0(@babel/core@7.24.5)':
dependencies:
@@ -19357,6 +21854,8 @@ snapshots:
camelcase: 5.3.1
html-tags: 2.0.0
svg-tags: 1.0.0
+ transitivePeerDependencies:
+ - supports-color
'@vue/babel-sugar-v-on@1.4.0(@babel/core@7.24.5)':
dependencies:
@@ -19364,6 +21863,8 @@ snapshots:
'@babel/plugin-syntax-jsx': 7.24.1(@babel/core@7.24.5)
'@vue/babel-plugin-transform-vue-jsx': 1.4.0(@babel/core@7.24.5)
camelcase: 5.3.1
+ transitivePeerDependencies:
+ - supports-color
'@vue/cli-overlay@5.0.8': {}
@@ -19454,7 +21955,7 @@ snapshots:
acorn: 8.11.3
acorn-walk: 8.3.2
address: 1.2.2
- autoprefixer: 10.4.19(postcss@8.4.38)
+ autoprefixer: 10.4.20(postcss@8.5.6)
browserslist: 4.23.0
case-sensitive-paths-webpack-plugin: 2.4.0
cli-highlight: 2.1.11
@@ -19463,7 +21964,7 @@ snapshots:
copy-webpack-plugin: 9.1.0(webpack@5.91.0)
css-loader: 6.11.0(webpack@5.91.0)
css-minimizer-webpack-plugin: 3.4.1(webpack@5.91.0)
- cssnano: 5.1.15(postcss@8.4.38)
+ cssnano: 5.1.15(postcss@8.5.6)
debug: 4.3.4
default-gateway: 6.0.3
dotenv: 10.0.0
@@ -19480,8 +21981,8 @@ snapshots:
minimist: 1.2.8
module-alias: 2.2.3
portfinder: 1.0.32
- postcss: 8.4.38
- postcss-loader: 6.2.1(postcss@8.4.38)(webpack@5.91.0)
+ postcss: 8.5.6
+ postcss-loader: 6.2.1(postcss@8.5.6)(webpack@5.91.0)
progress-webpack-plugin: 1.0.16(webpack@5.91.0)
ssri: 8.0.1
terser-webpack-plugin: 5.3.10(webpack@5.91.0)
@@ -19580,22 +22081,22 @@ snapshots:
open: 8.4.2
ora: 5.4.1
read-pkg: 5.2.0
- semver: 7.6.2
+ semver: 7.7.3
strip-ansi: 6.0.1
transitivePeerDependencies:
- encoding
'@vue/compiler-core@3.4.27':
dependencies:
- '@babel/parser': 7.24.5
+ '@babel/parser': 7.28.6
'@vue/shared': 3.4.27
entities: 4.5.0
estree-walker: 2.0.2
- source-map-js: 1.2.0
+ source-map-js: 1.2.1
'@vue/compiler-core@3.5.17':
dependencies:
- '@babel/parser': 7.28.0
+ '@babel/parser': 7.28.6
'@vue/shared': 3.5.17
entities: 4.5.0
estree-walker: 2.0.2
@@ -19613,27 +22114,27 @@ snapshots:
'@vue/compiler-sfc@2.7.16':
dependencies:
- '@babel/parser': 7.26.2
- postcss: 8.4.49
+ '@babel/parser': 7.28.6
+ postcss: 8.5.6
source-map: 0.6.1
optionalDependencies:
prettier: 2.8.8
'@vue/compiler-sfc@3.4.27':
dependencies:
- '@babel/parser': 7.24.5
+ '@babel/parser': 7.28.6
'@vue/compiler-core': 3.4.27
'@vue/compiler-dom': 3.4.27
'@vue/compiler-ssr': 3.4.27
'@vue/shared': 3.4.27
estree-walker: 2.0.2
- magic-string: 0.30.10
- postcss: 8.4.38
- source-map-js: 1.2.0
+ magic-string: 0.30.17
+ postcss: 8.5.6
+ source-map-js: 1.2.1
'@vue/compiler-sfc@3.5.17':
dependencies:
- '@babel/parser': 7.28.0
+ '@babel/parser': 7.28.6
'@vue/compiler-core': 3.5.17
'@vue/compiler-dom': 3.5.17
'@vue/compiler-ssr': 3.5.17
@@ -19765,7 +22266,7 @@ snapshots:
'@vue/compiler-dom': 3.4.27
'@vue/shared': 3.4.27
computeds: 0.0.1
- minimatch: 9.0.4
+ minimatch: 9.0.5
muggle-string: 0.3.1
path-browserify: 1.0.1
vue-template-compiler: 2.7.16
@@ -19779,7 +22280,7 @@ snapshots:
'@vue/compiler-vue2': 2.7.16
'@vue/shared': 3.4.27
computeds: 0.0.1
- minimatch: 9.0.4
+ minimatch: 9.0.5
muggle-string: 0.4.1
path-browserify: 1.0.1
optionalDependencies:
@@ -19799,7 +22300,7 @@ snapshots:
'@vue/reactivity': 3.5.17
'@vue/runtime-core': 3.5.17
'@vue/shared': 3.5.17
- csstype: 3.1.3
+ csstype: 3.2.3
'@vue/server-renderer@3.5.17(vue@3.5.17(typescript@5.5.4))':
dependencies:
@@ -19818,7 +22319,7 @@ snapshots:
'@vue/tsconfig@0.5.1': {}
- '@vue/vue3-jest@29.2.6(@babel/core@7.24.5)(babel-jest@29.7.0(@babel/core@7.24.5))(jest@29.7.0(@types/node@22.13.8)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.5.4)))(typescript@5.5.4)(vue@3.5.17(typescript@5.5.4))':
+ '@vue/vue3-jest@29.2.6(@babel/core@7.24.5)(babel-jest@29.7.0(@babel/core@7.24.5))(jest@29.7.0(@types/node@22.13.8)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@10.9.2(@types/node@24.10.9)(typescript@5.5.4)))(typescript@5.5.4)(vue@3.5.17(typescript@5.5.4))':
dependencies:
'@babel/core': 7.24.5
'@babel/plugin-transform-modules-commonjs': 7.27.1(@babel/core@7.24.5)
@@ -19826,7 +22327,7 @@ snapshots:
chalk: 2.4.2
convert-source-map: 1.9.0
css-tree: 2.3.1
- jest: 29.7.0(@types/node@22.13.8)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.5.4))
+ jest: 29.7.0(@types/node@22.13.8)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@10.9.2(@types/node@24.10.9)(typescript@5.5.4))
source-map: 0.5.6
tsconfig: 7.0.0
vue: 3.5.17(typescript@5.5.4)
@@ -20118,7 +22619,7 @@ snapshots:
agent-base@6.0.2:
dependencies:
- debug: 4.3.7
+ debug: 4.4.3
transitivePeerDependencies:
- supports-color
@@ -20264,6 +22765,10 @@ snapshots:
argparse@2.0.1: {}
+ aria-hidden@1.2.6:
+ dependencies:
+ tslib: 2.8.1
+
aria-query@5.3.2: {}
array-buffer-byte-length@1.0.1:
@@ -20284,8 +22789,8 @@ snapshots:
call-bind: 1.0.7
define-properties: 1.2.1
es-abstract: 1.23.3
- es-object-atoms: 1.0.0
- get-intrinsic: 1.2.4
+ es-object-atoms: 1.1.1
+ get-intrinsic: 1.3.0
is-string: 1.0.7
array-union@1.0.2:
@@ -20302,7 +22807,7 @@ snapshots:
define-properties: 1.2.1
es-abstract: 1.23.3
es-array-method-boxes-properly: 1.0.0
- es-object-atoms: 1.0.0
+ es-object-atoms: 1.1.1
is-string: 1.0.7
array.prototype.findlast@1.2.5:
@@ -20311,7 +22816,7 @@ snapshots:
define-properties: 1.2.1
es-abstract: 1.23.3
es-errors: 1.3.0
- es-object-atoms: 1.0.0
+ es-object-atoms: 1.1.1
es-shim-unscopables: 1.0.2
array.prototype.findlastindex@1.2.5:
@@ -20359,7 +22864,7 @@ snapshots:
define-properties: 1.2.1
es-abstract: 1.23.3
es-errors: 1.3.0
- get-intrinsic: 1.2.4
+ get-intrinsic: 1.3.0
is-array-buffer: 3.0.4
is-shared-array-buffer: 1.0.3
@@ -20411,24 +22916,24 @@ snapshots:
atob@2.1.2: {}
- autoprefixer@10.4.19(postcss@8.4.38):
+ autoprefixer@10.4.20(postcss@8.5.2):
dependencies:
- browserslist: 4.24.2
- caniuse-lite: 1.0.30001621
+ browserslist: 4.26.3
+ caniuse-lite: 1.0.30001748
fraction.js: 4.3.7
normalize-range: 0.1.2
- picocolors: 1.0.1
- postcss: 8.4.38
+ picocolors: 1.1.1
+ postcss: 8.5.2
postcss-value-parser: 4.2.0
- autoprefixer@10.4.20(postcss@8.5.2):
+ autoprefixer@10.4.20(postcss@8.5.6):
dependencies:
- browserslist: 4.24.2
- caniuse-lite: 1.0.30001685
+ browserslist: 4.26.3
+ caniuse-lite: 1.0.30001748
fraction.js: 4.3.7
normalize-range: 0.1.2
picocolors: 1.1.1
- postcss: 8.5.2
+ postcss: 8.5.6
postcss-value-parser: 4.2.0
ava@6.1.3(encoding@0.1.13):
@@ -20487,7 +22992,7 @@ snapshots:
axios@1.13.2:
dependencies:
- follow-redirects: 1.15.6(debug@4.3.4)
+ follow-redirects: 1.15.6(debug@4.4.3)
form-data: 4.0.5
proxy-from-env: 1.1.0
transitivePeerDependencies:
@@ -20508,13 +23013,13 @@ snapshots:
transitivePeerDependencies:
- supports-color
- babel-jest@29.7.0(@babel/core@7.26.10):
+ babel-jest@29.7.0(@babel/core@7.28.6):
dependencies:
- '@babel/core': 7.26.10
+ '@babel/core': 7.28.6
'@jest/transform': 29.7.0
'@types/babel__core': 7.20.5
babel-plugin-istanbul: 6.1.1
- babel-preset-jest: 29.6.3(@babel/core@7.26.10)
+ babel-preset-jest: 29.6.3(@babel/core@7.28.6)
chalk: 4.1.2
graceful-fs: 4.2.11
slash: 3.0.0
@@ -20530,9 +23035,9 @@ snapshots:
schema-utils: 2.7.1
webpack: 5.91.0(webpack-cli@5.1.4)
- babel-loader@8.3.0(@babel/core@7.26.10)(webpack@5.91.0):
+ babel-loader@8.3.0(@babel/core@7.28.6)(webpack@5.91.0):
dependencies:
- '@babel/core': 7.26.10
+ '@babel/core': 7.28.6
find-cache-dir: 3.3.2
loader-utils: 2.0.4
make-dir: 3.1.0
@@ -20562,20 +23067,20 @@ snapshots:
babel-plugin-jest-hoist@29.6.3:
dependencies:
- '@babel/template': 7.27.2
- '@babel/types': 7.28.4
+ '@babel/template': 7.28.6
+ '@babel/types': 7.28.6
'@types/babel__core': 7.20.5
'@types/babel__traverse': 7.20.6
babel-plugin-macros@3.1.0:
dependencies:
- '@babel/runtime': 7.28.2
+ '@babel/runtime': 7.28.4
cosmiconfig: 7.1.0
- resolve: 1.22.8
+ resolve: 1.22.10
babel-plugin-polyfill-corejs2@0.4.11(@babel/core@7.24.5):
dependencies:
- '@babel/compat-data': 7.24.4
+ '@babel/compat-data': 7.28.4
'@babel/core': 7.24.5
'@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.24.5)
semver: 6.3.1
@@ -20584,7 +23089,7 @@ snapshots:
babel-plugin-polyfill-corejs2@0.4.11(@babel/core@7.26.10):
dependencies:
- '@babel/compat-data': 7.24.4
+ '@babel/compat-data': 7.28.4
'@babel/core': 7.26.10
'@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.26.10)
semver: 6.3.1
@@ -20637,21 +23142,21 @@ snapshots:
'@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.5)
'@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.24.5)
- babel-preset-current-node-syntax@1.0.1(@babel/core@7.26.10):
- dependencies:
- '@babel/core': 7.26.10
- '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.26.10)
- '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.26.10)
- '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.26.10)
- '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.26.10)
- '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.26.10)
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.26.10)
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.26.10)
- '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.26.10)
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.26.10)
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.26.10)
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.26.10)
- '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.26.10)
+ babel-preset-current-node-syntax@1.0.1(@babel/core@7.28.6):
+ dependencies:
+ '@babel/core': 7.28.6
+ '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.28.6)
+ '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.28.6)
+ '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.28.6)
+ '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.28.6)
+ '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.28.6)
+ '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.28.6)
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.28.6)
+ '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.28.6)
+ '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.28.6)
+ '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.28.6)
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.28.6)
+ '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.28.6)
babel-preset-jest@29.6.3(@babel/core@7.24.5):
dependencies:
@@ -20659,11 +23164,11 @@ snapshots:
babel-plugin-jest-hoist: 29.6.3
babel-preset-current-node-syntax: 1.0.1(@babel/core@7.24.5)
- babel-preset-jest@29.6.3(@babel/core@7.26.10):
+ babel-preset-jest@29.6.3(@babel/core@7.28.6):
dependencies:
- '@babel/core': 7.26.10
+ '@babel/core': 7.28.6
babel-plugin-jest-hoist: 29.6.3
- babel-preset-current-node-syntax: 1.0.1(@babel/core@7.26.10)
+ babel-preset-current-node-syntax: 1.0.1(@babel/core@7.28.6)
balanced-match@1.0.2: {}
@@ -20671,7 +23176,7 @@ snapshots:
base64id@2.0.0: {}
- baseline-browser-mapping@2.8.12: {}
+ baseline-browser-mapping@2.9.18: {}
basic-auth@2.0.1:
dependencies:
@@ -20798,7 +23303,7 @@ snapshots:
browser-resolve@2.0.0:
dependencies:
- resolve: 1.22.8
+ resolve: 1.22.10
browser-stdout@1.3.1: {}
@@ -20862,7 +23367,7 @@ snapshots:
browserslist@4.26.3:
dependencies:
- baseline-browser-mapping: 2.8.12
+ baseline-browser-mapping: 2.9.18
caniuse-lite: 1.0.30001748
electron-to-chromium: 1.5.232
node-releases: 2.0.23
@@ -20970,10 +23475,10 @@ snapshots:
call-bind@1.0.7:
dependencies:
- es-define-property: 1.0.0
+ es-define-property: 1.0.1
es-errors: 1.3.0
function-bind: 1.1.2
- get-intrinsic: 1.2.4
+ get-intrinsic: 1.3.0
set-function-length: 1.2.2
callsites@3.1.0: {}
@@ -20988,7 +23493,7 @@ snapshots:
camel-case@4.1.2:
dependencies:
pascal-case: 3.1.2
- tslib: 2.6.3
+ tslib: 2.8.1
camelcase-keys@6.2.2:
dependencies:
@@ -21002,8 +23507,8 @@ snapshots:
caniuse-api@3.0.0:
dependencies:
- browserslist: 4.24.2
- caniuse-lite: 1.0.30001685
+ browserslist: 4.26.3
+ caniuse-lite: 1.0.30001748
lodash.memoize: 4.1.2
lodash.uniq: 4.5.0
@@ -21079,14 +23584,14 @@ snapshots:
css-what: 6.1.0
domelementtype: 2.3.0
domhandler: 5.0.3
- domutils: 3.1.0
+ domutils: 3.2.2
cheerio@1.0.0-rc.12:
dependencies:
cheerio-select: 2.1.0
dom-serializer: 2.0.0
domhandler: 5.0.3
- domutils: 3.1.0
+ domutils: 3.2.2
htmlparser2: 8.0.2
parse5: 7.1.2
parse5-htmlparser2-tree-adapter: 7.0.0
@@ -21142,6 +23647,10 @@ snapshots:
cjs-module-lexer@1.3.1: {}
+ class-variance-authority@0.7.1:
+ dependencies:
+ clsx: 2.1.1
+
clean-css@4.2.4:
dependencies:
source-map: 0.6.1
@@ -21535,7 +24044,7 @@ snapshots:
copy-webpack-plugin@9.1.0(webpack@5.91.0):
dependencies:
- fast-glob: 3.3.2
+ fast-glob: 3.3.3
glob-parent: 6.0.2
globby: 11.1.0
normalize-path: 3.0.0
@@ -21545,7 +24054,7 @@ snapshots:
core-js-compat@3.37.1:
dependencies:
- browserslist: 4.23.0
+ browserslist: 4.26.3
core-js-compat@3.45.1:
dependencies:
@@ -21621,13 +24130,28 @@ snapshots:
safe-buffer: 5.2.1
sha.js: 2.4.11
- create-jest@29.7.0(@types/node@22.13.8)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.5.4)):
+ create-jest@29.7.0(@types/node@22.13.8)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@24.10.9)(typescript@5.5.4)):
+ dependencies:
+ '@jest/types': 29.6.3
+ chalk: 4.1.2
+ exit: 0.1.2
+ graceful-fs: 4.2.11
+ jest-config: 29.7.0(@types/node@22.13.8)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@24.10.9)(typescript@5.5.4))
+ jest-util: 29.7.0
+ prompts: 2.4.2
+ transitivePeerDependencies:
+ - '@types/node'
+ - babel-plugin-macros
+ - supports-color
+ - ts-node
+
+ create-jest@29.7.0(@types/node@24.10.9)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@24.10.9)(typescript@5.5.4)):
dependencies:
'@jest/types': 29.6.3
chalk: 4.1.2
exit: 0.1.2
graceful-fs: 4.2.11
- jest-config: 29.7.0(@types/node@22.13.8)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.5.4))
+ jest-config: 29.7.0(@types/node@24.10.9)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@24.10.9)(typescript@5.5.4))
jest-util: 29.7.0
prompts: 2.4.2
transitivePeerDependencies:
@@ -21677,10 +24201,6 @@ snapshots:
randombytes: 2.1.0
randomfill: 1.0.4
- css-declaration-sorter@6.4.1(postcss@8.4.38):
- dependencies:
- postcss: 8.4.38
-
css-declaration-sorter@6.4.1(postcss@8.5.6):
dependencies:
postcss: 8.5.6
@@ -21724,7 +24244,7 @@ snapshots:
postcss-modules-scope: 3.2.0(postcss@8.5.6)
postcss-modules-values: 4.0.0(postcss@8.5.6)
postcss-value-parser: 4.2.0
- semver: 7.7.1
+ semver: 7.7.3
optionalDependencies:
webpack: 5.98.0(esbuild@0.25.4)
@@ -21751,7 +24271,7 @@ snapshots:
boolbase: 1.0.0
css-what: 6.1.0
domhandler: 5.0.3
- domutils: 3.1.0
+ domutils: 3.2.2
nth-check: 2.1.1
css-tree@1.1.3:
@@ -21779,39 +24299,6 @@ snapshots:
cssesc@3.0.0: {}
- cssnano-preset-default@5.2.14(postcss@8.4.38):
- dependencies:
- css-declaration-sorter: 6.4.1(postcss@8.4.38)
- cssnano-utils: 3.1.0(postcss@8.4.38)
- postcss: 8.4.38
- postcss-calc: 8.2.4(postcss@8.4.38)
- postcss-colormin: 5.3.1(postcss@8.4.38)
- postcss-convert-values: 5.1.3(postcss@8.4.38)
- postcss-discard-comments: 5.1.2(postcss@8.4.38)
- postcss-discard-duplicates: 5.1.0(postcss@8.4.38)
- postcss-discard-empty: 5.1.1(postcss@8.4.38)
- postcss-discard-overridden: 5.1.0(postcss@8.4.38)
- postcss-merge-longhand: 5.1.7(postcss@8.4.38)
- postcss-merge-rules: 5.1.4(postcss@8.4.38)
- postcss-minify-font-values: 5.1.0(postcss@8.4.38)
- postcss-minify-gradients: 5.1.1(postcss@8.4.38)
- postcss-minify-params: 5.1.4(postcss@8.4.38)
- postcss-minify-selectors: 5.2.1(postcss@8.4.38)
- postcss-normalize-charset: 5.1.0(postcss@8.4.38)
- postcss-normalize-display-values: 5.1.0(postcss@8.4.38)
- postcss-normalize-positions: 5.1.1(postcss@8.4.38)
- postcss-normalize-repeat-style: 5.1.1(postcss@8.4.38)
- postcss-normalize-string: 5.1.0(postcss@8.4.38)
- postcss-normalize-timing-functions: 5.1.0(postcss@8.4.38)
- postcss-normalize-unicode: 5.1.1(postcss@8.4.38)
- postcss-normalize-url: 5.1.0(postcss@8.4.38)
- postcss-normalize-whitespace: 5.1.1(postcss@8.4.38)
- postcss-ordered-values: 5.1.3(postcss@8.4.38)
- postcss-reduce-initial: 5.1.2(postcss@8.4.38)
- postcss-reduce-transforms: 5.1.0(postcss@8.4.38)
- postcss-svgo: 5.1.0(postcss@8.4.38)
- postcss-unique-selectors: 5.1.1(postcss@8.4.38)
-
cssnano-preset-default@5.2.14(postcss@8.5.6):
dependencies:
css-declaration-sorter: 6.4.1(postcss@8.5.6)
@@ -21845,21 +24332,10 @@ snapshots:
postcss-svgo: 5.1.0(postcss@8.5.6)
postcss-unique-selectors: 5.1.1(postcss@8.5.6)
- cssnano-utils@3.1.0(postcss@8.4.38):
- dependencies:
- postcss: 8.4.38
-
cssnano-utils@3.1.0(postcss@8.5.6):
dependencies:
postcss: 8.5.6
- cssnano@5.1.15(postcss@8.4.38):
- dependencies:
- cssnano-preset-default: 5.2.14(postcss@8.4.38)
- lilconfig: 2.1.0
- postcss: 8.4.38
- yaml: 1.10.2
-
cssnano@5.1.15(postcss@8.5.6):
dependencies:
cssnano-preset-default: 5.2.14(postcss@8.5.6)
@@ -21887,6 +24363,8 @@ snapshots:
csstype@3.1.3: {}
+ csstype@3.2.3: {}
+
currently-unhandled@0.4.1:
dependencies:
array-find-index: 1.0.2
@@ -21981,8 +24459,6 @@ snapshots:
decamelize@4.0.0: {}
- decimal.js@10.4.3: {}
-
decimal.js@10.6.0: {}
decode-uri-component@0.2.2: {}
@@ -22022,9 +24498,9 @@ snapshots:
define-data-property@1.1.4:
dependencies:
- es-define-property: 1.0.0
+ es-define-property: 1.0.1
es-errors: 1.3.0
- gopd: 1.0.1
+ gopd: 1.2.0
define-lazy-prop@2.0.0: {}
@@ -22074,6 +24550,8 @@ snapshots:
detect-newline@3.1.0: {}
+ detect-node-es@1.1.0: {}
+
detect-node@2.1.0: {}
dezalgo@1.0.4:
@@ -22125,8 +24603,8 @@ snapshots:
dom-helpers@5.2.1:
dependencies:
- '@babel/runtime': 7.28.2
- csstype: 3.1.3
+ '@babel/runtime': 7.28.4
+ csstype: 3.2.3
dom-serialize@2.2.1:
dependencies:
@@ -22169,12 +24647,6 @@ snapshots:
domelementtype: 2.3.0
domhandler: 4.3.1
- domutils@3.1.0:
- dependencies:
- dom-serializer: 2.0.0
- domelementtype: 2.3.0
- domhandler: 5.0.3
-
domutils@3.2.2:
dependencies:
dom-serializer: 2.0.0
@@ -22184,7 +24656,7 @@ snapshots:
dot-case@3.0.4:
dependencies:
no-case: 3.0.4
- tslib: 2.6.3
+ tslib: 2.8.1
dot-prop@5.3.0:
dependencies:
@@ -22229,7 +24701,7 @@ snapshots:
'@one-ini/wasm': 0.1.1
commander: 10.0.1
minimatch: 9.0.1
- semver: 7.6.2
+ semver: 7.7.3
ee-first@1.1.1: {}
@@ -22309,6 +24781,11 @@ snapshots:
graceful-fs: 4.2.11
tapable: 2.2.1
+ enhanced-resolve@5.18.4:
+ dependencies:
+ graceful-fs: 4.2.11
+ tapable: 2.2.1
+
enquirer@2.3.6:
dependencies:
ansi-colors: 4.1.3
@@ -22380,19 +24857,19 @@ snapshots:
data-view-buffer: 1.0.1
data-view-byte-length: 1.0.1
data-view-byte-offset: 1.0.0
- es-define-property: 1.0.0
+ es-define-property: 1.0.1
es-errors: 1.3.0
- es-object-atoms: 1.0.0
- es-set-tostringtag: 2.0.3
+ es-object-atoms: 1.1.1
+ es-set-tostringtag: 2.1.0
es-to-primitive: 1.2.1
function.prototype.name: 1.1.6
- get-intrinsic: 1.2.4
+ get-intrinsic: 1.3.0
get-symbol-description: 1.0.2
globalthis: 1.0.4
- gopd: 1.0.1
+ gopd: 1.2.0
has-property-descriptors: 1.0.2
has-proto: 1.0.3
- has-symbols: 1.0.3
+ has-symbols: 1.1.0
hasown: 2.0.2
internal-slot: 1.0.7
is-array-buffer: 3.0.4
@@ -22422,10 +24899,6 @@ snapshots:
es-array-method-boxes-properly@1.0.0: {}
- es-define-property@1.0.0:
- dependencies:
- get-intrinsic: 1.2.4
-
es-define-property@1.0.1: {}
es-errors@1.3.0: {}
@@ -22436,13 +24909,13 @@ snapshots:
define-properties: 1.2.1
es-abstract: 1.23.3
es-errors: 1.3.0
- es-set-tostringtag: 2.0.3
+ es-set-tostringtag: 2.1.0
function-bind: 1.1.2
- get-intrinsic: 1.2.4
+ get-intrinsic: 1.3.0
globalthis: 1.0.4
has-property-descriptors: 1.0.2
has-proto: 1.0.3
- has-symbols: 1.0.3
+ has-symbols: 1.1.0
internal-slot: 1.0.7
iterator.prototype: 1.1.2
safe-array-concat: 1.1.2
@@ -22457,12 +24930,6 @@ snapshots:
dependencies:
es-errors: 1.3.0
- es-set-tostringtag@2.0.3:
- dependencies:
- get-intrinsic: 1.2.4
- has-tostringtag: 1.0.2
- hasown: 2.0.2
-
es-set-tostringtag@2.1.0:
dependencies:
es-errors: 1.3.0
@@ -22578,6 +25045,35 @@ snapshots:
'@esbuild/win32-ia32': 0.25.4
'@esbuild/win32-x64': 0.25.4
+ esbuild@0.27.2:
+ optionalDependencies:
+ '@esbuild/aix-ppc64': 0.27.2
+ '@esbuild/android-arm': 0.27.2
+ '@esbuild/android-arm64': 0.27.2
+ '@esbuild/android-x64': 0.27.2
+ '@esbuild/darwin-arm64': 0.27.2
+ '@esbuild/darwin-x64': 0.27.2
+ '@esbuild/freebsd-arm64': 0.27.2
+ '@esbuild/freebsd-x64': 0.27.2
+ '@esbuild/linux-arm': 0.27.2
+ '@esbuild/linux-arm64': 0.27.2
+ '@esbuild/linux-ia32': 0.27.2
+ '@esbuild/linux-loong64': 0.27.2
+ '@esbuild/linux-mips64el': 0.27.2
+ '@esbuild/linux-ppc64': 0.27.2
+ '@esbuild/linux-riscv64': 0.27.2
+ '@esbuild/linux-s390x': 0.27.2
+ '@esbuild/linux-x64': 0.27.2
+ '@esbuild/netbsd-arm64': 0.27.2
+ '@esbuild/netbsd-x64': 0.27.2
+ '@esbuild/openbsd-arm64': 0.27.2
+ '@esbuild/openbsd-x64': 0.27.2
+ '@esbuild/openharmony-arm64': 0.27.2
+ '@esbuild/sunos-x64': 0.27.2
+ '@esbuild/win32-arm64': 0.27.2
+ '@esbuild/win32-ia32': 0.27.2
+ '@esbuild/win32-x64': 0.27.2
+
escalade@3.1.2: {}
escalade@3.2.0: {}
@@ -22603,7 +25099,7 @@ snapshots:
eslint-compat-utils@0.5.1(eslint@8.57.0):
dependencies:
eslint: 8.57.0
- semver: 7.6.2
+ semver: 7.7.3
eslint-config-prettier@8.10.0(eslint@8.57.0):
dependencies:
@@ -22617,7 +25113,7 @@ snapshots:
dependencies:
debug: 3.2.7
is-core-module: 2.13.1
- resolve: 1.22.8
+ resolve: 1.22.10
transitivePeerDependencies:
- supports-color
@@ -22711,9 +25207,9 @@ snapshots:
eslint: 8.57.0
eslint-compat-utils: 0.5.1(eslint@8.57.0)
lodash: 4.17.21
- postcss: 8.4.38
- postcss-safe-parser: 6.0.0(postcss@8.4.38)
- postcss-scss: 4.0.9(postcss@8.4.38)
+ postcss: 8.5.6
+ postcss-safe-parser: 6.0.0(postcss@8.5.6)
+ postcss-scss: 4.0.9(postcss@8.5.6)
postcss-selector-parser: 6.1.0
postcss-styl: 0.12.3
vue-eslint-parser: 9.4.2(eslint@8.57.0)
@@ -22751,6 +25247,8 @@ snapshots:
eslint-visitor-keys@3.4.3: {}
+ eslint-visitor-keys@4.2.1: {}
+
eslint@8.57.0:
dependencies:
'@eslint-community/eslint-utils': 4.4.0(eslint@8.57.0)
@@ -22822,7 +25320,7 @@ snapshots:
estree-walker@3.0.3:
dependencies:
- '@types/estree': 1.0.5
+ '@types/estree': 1.0.8
esutils@2.0.3: {}
@@ -23019,10 +25517,6 @@ snapshots:
dependencies:
bser: 2.1.1
- fdir@6.5.0(picomatch@4.0.2):
- optionalDependencies:
- picomatch: 4.0.2
-
fdir@6.5.0(picomatch@4.0.3):
optionalDependencies:
picomatch: 4.0.3
@@ -23154,9 +25648,9 @@ snapshots:
optionalDependencies:
debug: 4.3.4
- follow-redirects@1.15.6(debug@4.3.7):
+ follow-redirects@1.15.6(debug@4.4.3):
optionalDependencies:
- debug: 4.3.7
+ debug: 4.4.3
for-each@0.3.3:
dependencies:
@@ -23164,7 +25658,7 @@ snapshots:
foreground-child@2.0.0:
dependencies:
- cross-spawn: 7.0.3
+ cross-spawn: 7.0.6
signal-exit: 3.0.7
foreground-child@3.3.1:
@@ -23176,7 +25670,7 @@ snapshots:
fork-ts-checker-webpack-plugin@6.5.3(eslint@8.57.0)(typescript@5.5.4)(vue-template-compiler@2.7.16)(webpack@5.91.0):
dependencies:
- '@babel/code-frame': 7.24.2
+ '@babel/code-frame': 7.28.6
'@types/json-schema': 7.0.15
chalk: 4.1.2
chokidar: 3.6.0
@@ -23187,7 +25681,7 @@ snapshots:
memfs: 3.5.3
minimatch: 3.1.2
schema-utils: 2.7.0
- semver: 7.6.2
+ semver: 7.7.3
tapable: 1.1.3
typescript: 5.5.4
webpack: 5.91.0(webpack-cli@5.1.4)
@@ -23220,7 +25714,7 @@ snapshots:
dezalgo: 1.0.4
hexoid: 1.0.0
once: 1.4.0
- qs: 6.12.1
+ qs: 6.13.0
forwarded@0.2.0: {}
@@ -23340,14 +25834,6 @@ snapshots:
get-func-name@2.0.2: {}
- get-intrinsic@1.2.4:
- dependencies:
- es-errors: 1.3.0
- function-bind: 1.1.2
- has-proto: 1.0.3
- has-symbols: 1.0.3
- hasown: 2.0.2
-
get-intrinsic@1.3.0:
dependencies:
call-bind-apply-helpers: 1.0.2
@@ -23361,6 +25847,8 @@ snapshots:
hasown: 2.0.2
math-intrinsics: 1.1.0
+ get-nonce@1.0.1: {}
+
get-package-type@0.1.0: {}
get-pkg-repo@4.2.1:
@@ -23391,7 +25879,7 @@ snapshots:
dependencies:
call-bind: 1.0.7
es-errors: 1.3.0
- get-intrinsic: 1.2.4
+ get-intrinsic: 1.3.0
getpass@0.1.7:
dependencies:
@@ -23513,14 +26001,14 @@ snapshots:
globalthis@1.0.4:
dependencies:
define-properties: 1.2.1
- gopd: 1.0.1
+ gopd: 1.2.0
globby@10.0.1:
dependencies:
'@types/glob': 7.2.0
array-union: 2.1.0
dir-glob: 3.0.1
- fast-glob: 3.3.2
+ fast-glob: 3.3.3
glob: 7.2.3
ignore: 5.3.1
merge2: 1.4.1
@@ -23541,7 +26029,7 @@ snapshots:
dependencies:
array-union: 2.1.0
dir-glob: 3.0.1
- fast-glob: 3.3.2
+ fast-glob: 3.3.3
ignore: 5.3.1
merge2: 1.4.1
slash: 3.0.0
@@ -23549,7 +26037,7 @@ snapshots:
globby@13.2.2:
dependencies:
dir-glob: 3.0.1
- fast-glob: 3.3.2
+ fast-glob: 3.3.3
ignore: 5.3.1
merge2: 1.4.1
slash: 4.0.0
@@ -23581,10 +26069,6 @@ snapshots:
pify: 3.0.0
slash: 1.0.0
- gopd@1.0.1:
- dependencies:
- get-intrinsic: 1.2.4
-
gopd@1.2.0: {}
graceful-fs@4.2.11: {}
@@ -23638,17 +26122,15 @@ snapshots:
has-property-descriptors@1.0.2:
dependencies:
- es-define-property: 1.0.0
+ es-define-property: 1.0.1
has-proto@1.0.3: {}
- has-symbols@1.0.3: {}
-
has-symbols@1.1.0: {}
has-tostringtag@1.0.2:
dependencies:
- has-symbols: 1.0.3
+ has-symbols: 1.1.0
has-unicode@2.0.1: {}
@@ -23799,7 +26281,7 @@ snapshots:
dependencies:
domelementtype: 2.3.0
domhandler: 5.0.3
- domutils: 3.1.0
+ domutils: 3.2.2
entities: 4.5.0
http-cache-semantics@4.1.1: {}
@@ -23827,7 +26309,7 @@ snapshots:
dependencies:
'@tootallnate/once': 2.0.0
agent-base: 6.0.2
- debug: 4.3.4
+ debug: 4.4.3
transitivePeerDependencies:
- supports-color
@@ -23877,8 +26359,8 @@ snapshots:
http-proxy-middleware@3.0.5:
dependencies:
'@types/http-proxy': 1.17.15
- debug: 4.3.7
- http-proxy: 1.18.1(debug@4.3.7)
+ debug: 4.4.3
+ http-proxy: 1.18.1(debug@4.4.3)
is-glob: 4.0.3
is-plain-object: 5.0.0
micromatch: 4.0.8
@@ -23888,7 +26370,7 @@ snapshots:
http-proxy@1.18.1:
dependencies:
eventemitter3: 4.0.7
- follow-redirects: 1.15.6(debug@4.3.4)
+ follow-redirects: 1.15.6(debug@4.4.3)
requires-port: 1.0.0
transitivePeerDependencies:
- debug
@@ -23901,10 +26383,10 @@ snapshots:
transitivePeerDependencies:
- debug
- http-proxy@1.18.1(debug@4.3.7):
+ http-proxy@1.18.1(debug@4.4.3):
dependencies:
eventemitter3: 4.0.7
- follow-redirects: 1.15.6(debug@4.3.7)
+ follow-redirects: 1.15.6(debug@4.4.3)
requires-port: 1.0.0
transitivePeerDependencies:
- debug
@@ -23946,7 +26428,7 @@ snapshots:
https-proxy-agent@5.0.1:
dependencies:
agent-base: 6.0.2
- debug: 4.3.7
+ debug: 4.4.3
transitivePeerDependencies:
- supports-color
@@ -24067,19 +26549,19 @@ snapshots:
injection-js@2.4.0:
dependencies:
- tslib: 2.6.3
+ tslib: 2.8.1
- inquirer@12.9.6(@types/node@22.13.8):
+ inquirer@12.9.6(@types/node@24.10.9):
dependencies:
'@inquirer/ansi': 1.0.1
- '@inquirer/core': 10.3.0(@types/node@22.13.8)
- '@inquirer/prompts': 7.10.1(@types/node@22.13.8)
- '@inquirer/type': 3.0.9(@types/node@22.13.8)
+ '@inquirer/core': 10.3.0(@types/node@24.10.9)
+ '@inquirer/prompts': 7.10.1(@types/node@24.10.9)
+ '@inquirer/type': 3.0.9(@types/node@24.10.9)
mute-stream: 2.0.0
run-async: 4.0.6
rxjs: 7.8.2
optionalDependencies:
- '@types/node': 22.13.8
+ '@types/node': 24.10.9
internal-slot@1.0.7:
dependencies:
@@ -24115,7 +26597,7 @@ snapshots:
is-array-buffer@3.0.4:
dependencies:
call-bind: 1.0.7
- get-intrinsic: 1.2.4
+ get-intrinsic: 1.3.0
is-arrayish@0.2.1: {}
@@ -24263,7 +26745,7 @@ snapshots:
is-reference@1.2.1:
dependencies:
- '@types/estree': 1.0.5
+ '@types/estree': 1.0.8
is-regex@1.1.4:
dependencies:
@@ -24300,7 +26782,7 @@ snapshots:
is-symbol@1.0.4:
dependencies:
- has-symbols: 1.0.3
+ has-symbols: 1.1.0
is-text-path@1.0.1:
dependencies:
@@ -24333,7 +26815,7 @@ snapshots:
is-weakset@2.0.3:
dependencies:
call-bind: 1.0.7
- get-intrinsic: 1.2.4
+ get-intrinsic: 1.3.0
is-what@3.14.1: {}
@@ -24371,7 +26853,7 @@ snapshots:
istanbul-lib-instrument@4.0.3:
dependencies:
- '@babel/core': 7.24.5
+ '@babel/core': 7.26.10
'@istanbuljs/schema': 0.1.3
istanbul-lib-coverage: 3.2.2
semver: 6.3.1
@@ -24380,8 +26862,8 @@ snapshots:
istanbul-lib-instrument@5.2.1:
dependencies:
- '@babel/core': 7.26.10
- '@babel/parser': 7.28.4
+ '@babel/core': 7.28.6
+ '@babel/parser': 7.28.6
'@istanbuljs/schema': 0.1.3
istanbul-lib-coverage: 3.2.2
semver: 6.3.1
@@ -24390,18 +26872,18 @@ snapshots:
istanbul-lib-instrument@6.0.3:
dependencies:
- '@babel/core': 7.26.10
- '@babel/parser': 7.28.0
+ '@babel/core': 7.28.6
+ '@babel/parser': 7.28.6
'@istanbuljs/schema': 0.1.3
istanbul-lib-coverage: 3.2.2
- semver: 7.7.1
+ semver: 7.7.3
transitivePeerDependencies:
- supports-color
istanbul-lib-processinfo@2.0.3:
dependencies:
archy: 1.0.0
- cross-spawn: 7.0.3
+ cross-spawn: 7.0.6
istanbul-lib-coverage: 3.2.2
p-map: 3.0.0
rimraf: 3.0.2
@@ -24423,8 +26905,8 @@ snapshots:
istanbul-lib-source-maps@5.0.6:
dependencies:
- '@jridgewell/trace-mapping': 0.3.25
- debug: 4.3.7
+ '@jridgewell/trace-mapping': 0.3.31
+ debug: 4.4.3
istanbul-lib-coverage: 3.2.2
transitivePeerDependencies:
- supports-color
@@ -24437,8 +26919,8 @@ snapshots:
iterator.prototype@1.1.2:
dependencies:
define-properties: 1.2.1
- get-intrinsic: 1.2.4
- has-symbols: 1.0.3
+ get-intrinsic: 1.3.0
+ has-symbols: 1.1.0
reflect.getprototypeof: 1.0.6
set-function-name: 2.0.2
@@ -24516,16 +26998,16 @@ snapshots:
- babel-plugin-macros
- supports-color
- jest-cli@29.7.0(@types/node@22.13.8)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.5.4)):
+ jest-cli@29.7.0(@types/node@22.13.8)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@10.9.2(@types/node@24.10.9)(typescript@5.5.4)):
dependencies:
- '@jest/core': 29.7.0(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.5.4))
+ '@jest/core': 29.7.0(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@10.9.2(@types/node@24.10.9)(typescript@5.5.4))
'@jest/test-result': 29.7.0
'@jest/types': 29.6.3
chalk: 4.1.2
- create-jest: 29.7.0(@types/node@22.13.8)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.5.4))
+ create-jest: 29.7.0(@types/node@22.13.8)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@24.10.9)(typescript@5.5.4))
exit: 0.1.2
import-local: 3.1.0
- jest-config: 29.7.0(@types/node@22.13.8)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.5.4))
+ jest-config: 29.7.0(@types/node@22.13.8)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@24.10.9)(typescript@5.5.4))
jest-util: 29.7.0
jest-validate: 29.7.0
yargs: 17.7.2
@@ -24537,12 +27019,33 @@ snapshots:
- supports-color
- ts-node
- jest-config@29.7.0(@types/node@22.13.8)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.5.4)):
+ jest-cli@29.7.0(@types/node@24.10.9)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@10.9.2(@types/node@24.10.9)(typescript@5.5.4)):
dependencies:
- '@babel/core': 7.26.10
+ '@jest/core': 29.7.0(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@10.9.2(@types/node@24.10.9)(typescript@5.5.4))
+ '@jest/test-result': 29.7.0
+ '@jest/types': 29.6.3
+ chalk: 4.1.2
+ create-jest: 29.7.0(@types/node@24.10.9)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@24.10.9)(typescript@5.5.4))
+ exit: 0.1.2
+ import-local: 3.1.0
+ jest-config: 29.7.0(@types/node@24.10.9)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@24.10.9)(typescript@5.5.4))
+ jest-util: 29.7.0
+ jest-validate: 29.7.0
+ yargs: 17.7.2
+ optionalDependencies:
+ node-notifier: 8.0.2
+ transitivePeerDependencies:
+ - '@types/node'
+ - babel-plugin-macros
+ - supports-color
+ - ts-node
+
+ jest-config@29.7.0(@types/node@22.13.8)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@24.10.9)(typescript@5.5.4)):
+ dependencies:
+ '@babel/core': 7.28.6
'@jest/test-sequencer': 29.7.0
'@jest/types': 29.6.3
- babel-jest: 29.7.0(@babel/core@7.26.10)
+ babel-jest: 29.7.0(@babel/core@7.28.6)
chalk: 4.1.2
ci-info: 3.9.0
deepmerge: 4.3.1
@@ -24563,7 +27066,38 @@ snapshots:
strip-json-comments: 3.1.1
optionalDependencies:
'@types/node': 22.13.8
- ts-node: 10.9.2(@types/node@22.13.8)(typescript@5.5.4)
+ ts-node: 10.9.2(@types/node@24.10.9)(typescript@5.5.4)
+ transitivePeerDependencies:
+ - babel-plugin-macros
+ - supports-color
+
+ jest-config@29.7.0(@types/node@24.10.9)(babel-plugin-macros@3.1.0)(ts-node@10.9.2(@types/node@24.10.9)(typescript@5.5.4)):
+ dependencies:
+ '@babel/core': 7.28.6
+ '@jest/test-sequencer': 29.7.0
+ '@jest/types': 29.6.3
+ babel-jest: 29.7.0(@babel/core@7.28.6)
+ chalk: 4.1.2
+ ci-info: 3.9.0
+ deepmerge: 4.3.1
+ glob: 7.2.3
+ graceful-fs: 4.2.11
+ jest-circus: 29.7.0(babel-plugin-macros@3.1.0)
+ jest-environment-node: 29.7.0
+ jest-get-type: 29.6.3
+ jest-regex-util: 29.6.3
+ jest-resolve: 29.7.0
+ jest-runner: 29.7.0
+ jest-util: 29.7.0
+ jest-validate: 29.7.0
+ micromatch: 4.0.8
+ parse-json: 5.2.0
+ pretty-format: 29.7.0
+ slash: 3.0.0
+ strip-json-comments: 3.1.1
+ optionalDependencies:
+ '@types/node': 24.10.9
+ ts-node: 10.9.2(@types/node@24.10.9)(typescript@5.5.4)
transitivePeerDependencies:
- babel-plugin-macros
- supports-color
@@ -24650,7 +27184,7 @@ snapshots:
jest-message-util@29.7.0:
dependencies:
- '@babel/code-frame': 7.27.1
+ '@babel/code-frame': 7.28.6
'@jest/types': 29.6.3
'@types/stack-utils': 2.0.3
chalk: 4.1.2
@@ -24746,15 +27280,15 @@ snapshots:
jest-snapshot@29.7.0:
dependencies:
- '@babel/core': 7.26.10
- '@babel/generator': 7.28.3
- '@babel/plugin-syntax-jsx': 7.24.1(@babel/core@7.26.10)
- '@babel/plugin-syntax-typescript': 7.24.1(@babel/core@7.26.10)
- '@babel/types': 7.28.4
+ '@babel/core': 7.28.6
+ '@babel/generator': 7.28.6
+ '@babel/plugin-syntax-jsx': 7.24.1(@babel/core@7.28.6)
+ '@babel/plugin-syntax-typescript': 7.24.1(@babel/core@7.28.6)
+ '@babel/types': 7.28.6
'@jest/expect-utils': 29.7.0
'@jest/transform': 29.7.0
'@jest/types': 29.6.3
- babel-preset-current-node-syntax: 1.0.1(@babel/core@7.26.10)
+ babel-preset-current-node-syntax: 1.0.1(@babel/core@7.28.6)
chalk: 4.1.2
expect: 29.7.0
graceful-fs: 4.2.11
@@ -24811,12 +27345,26 @@ snapshots:
merge-stream: 2.0.0
supports-color: 8.1.1
- jest@29.7.0(@types/node@22.13.8)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.5.4)):
+ jest@29.7.0(@types/node@22.13.8)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@10.9.2(@types/node@24.10.9)(typescript@5.5.4)):
+ dependencies:
+ '@jest/core': 29.7.0(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@10.9.2(@types/node@24.10.9)(typescript@5.5.4))
+ '@jest/types': 29.6.3
+ import-local: 3.1.0
+ jest-cli: 29.7.0(@types/node@22.13.8)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@10.9.2(@types/node@24.10.9)(typescript@5.5.4))
+ optionalDependencies:
+ node-notifier: 8.0.2
+ transitivePeerDependencies:
+ - '@types/node'
+ - babel-plugin-macros
+ - supports-color
+ - ts-node
+
+ jest@29.7.0(@types/node@24.10.9)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@10.9.2(@types/node@24.10.9)(typescript@5.5.4)):
dependencies:
- '@jest/core': 29.7.0(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.5.4))
+ '@jest/core': 29.7.0(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@10.9.2(@types/node@24.10.9)(typescript@5.5.4))
'@jest/types': 29.6.3
import-local: 3.1.0
- jest-cli: 29.7.0(@types/node@22.13.8)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.5.4))
+ jest-cli: 29.7.0(@types/node@24.10.9)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@10.9.2(@types/node@24.10.9)(typescript@5.5.4))
optionalDependencies:
node-notifier: 8.0.2
transitivePeerDependencies:
@@ -24827,6 +27375,8 @@ snapshots:
jiti@1.21.0: {}
+ jiti@2.6.1: {}
+
jju@1.4.0: {}
joi@17.13.1:
@@ -24890,7 +27440,7 @@ snapshots:
cssom: 0.5.0
cssstyle: 2.3.0
data-urls: 3.0.2
- decimal.js: 10.4.3
+ decimal.js: 10.6.0
domexception: 4.0.0
escodegen: 2.1.0
form-data: 4.0.0
@@ -24909,7 +27459,7 @@ snapshots:
whatwg-encoding: 2.0.0
whatwg-mimetype: 3.0.0
whatwg-url: 10.0.0
- ws: 8.17.0
+ ws: 8.18.3
xml-name-validator: 4.0.0
transitivePeerDependencies:
- bufferutil
@@ -24924,7 +27474,7 @@ snapshots:
cssom: 0.5.0
cssstyle: 2.3.0
data-urls: 3.0.2
- decimal.js: 10.4.3
+ decimal.js: 10.6.0
domexception: 4.0.0
escodegen: 2.1.0
form-data: 4.0.5
@@ -24942,7 +27492,7 @@ snapshots:
whatwg-encoding: 2.0.0
whatwg-mimetype: 3.0.0
whatwg-url: 11.0.0
- ws: 8.18.0
+ ws: 8.18.3
xml-name-validator: 4.0.0
transitivePeerDependencies:
- bufferutil
@@ -25165,7 +27715,7 @@ snapshots:
launch-editor@2.6.1:
dependencies:
- picocolors: 1.0.1
+ picocolors: 1.1.1
shell-quote: 1.8.1
lazystream@1.0.1:
@@ -25185,9 +27735,9 @@ snapshots:
dependencies:
flush-write-stream: 1.1.1
- lerna@9.0.1(@types/node@22.13.8)(babel-plugin-macros@3.1.0):
+ lerna@9.0.1(@types/node@24.10.9)(babel-plugin-macros@3.1.0):
dependencies:
- '@lerna/create': 9.0.1(@types/node@22.13.8)(babel-plugin-macros@3.1.0)(typescript@5.5.4)
+ '@lerna/create': 9.0.1(@types/node@24.10.9)(babel-plugin-macros@3.1.0)(typescript@5.5.4)
'@npmcli/arborist': 9.1.6
'@npmcli/package-json': 7.0.2
'@npmcli/run-script': 10.0.2
@@ -25217,7 +27767,7 @@ snapshots:
import-local: 3.1.0
ini: 1.3.8
init-package-json: 8.2.2
- inquirer: 12.9.6(@types/node@22.13.8)
+ inquirer: 12.9.6(@types/node@24.10.9)
is-ci: 3.0.1
is-stream: 2.0.0
jest-diff: 30.2.0
@@ -25282,7 +27832,7 @@ snapshots:
dependencies:
copy-anything: 2.0.6
parse-node-version: 1.0.1
- tslib: 2.6.3
+ tslib: 2.8.1
optionalDependencies:
errno: 0.1.8
graceful-fs: 4.2.11
@@ -25343,6 +27893,55 @@ snapshots:
dependencies:
immediate: 3.0.6
+ lightningcss-android-arm64@1.30.2:
+ optional: true
+
+ lightningcss-darwin-arm64@1.30.2:
+ optional: true
+
+ lightningcss-darwin-x64@1.30.2:
+ optional: true
+
+ lightningcss-freebsd-x64@1.30.2:
+ optional: true
+
+ lightningcss-linux-arm-gnueabihf@1.30.2:
+ optional: true
+
+ lightningcss-linux-arm64-gnu@1.30.2:
+ optional: true
+
+ lightningcss-linux-arm64-musl@1.30.2:
+ optional: true
+
+ lightningcss-linux-x64-gnu@1.30.2:
+ optional: true
+
+ lightningcss-linux-x64-musl@1.30.2:
+ optional: true
+
+ lightningcss-win32-arm64-msvc@1.30.2:
+ optional: true
+
+ lightningcss-win32-x64-msvc@1.30.2:
+ optional: true
+
+ lightningcss@1.30.2:
+ dependencies:
+ detect-libc: 2.0.3
+ optionalDependencies:
+ lightningcss-android-arm64: 1.30.2
+ lightningcss-darwin-arm64: 1.30.2
+ lightningcss-darwin-x64: 1.30.2
+ lightningcss-freebsd-x64: 1.30.2
+ lightningcss-linux-arm-gnueabihf: 1.30.2
+ lightningcss-linux-arm64-gnu: 1.30.2
+ lightningcss-linux-arm64-musl: 1.30.2
+ lightningcss-linux-x64-gnu: 1.30.2
+ lightningcss-linux-x64-musl: 1.30.2
+ lightningcss-win32-arm64-msvc: 1.30.2
+ lightningcss-win32-x64-msvc: 1.30.2
+
lilconfig@2.1.0: {}
lines-and-columns@1.2.4: {}
@@ -25493,7 +28092,7 @@ snapshots:
log4js@6.9.1:
dependencies:
date-format: 4.0.14
- debug: 4.3.4
+ debug: 4.4.3
flatted: 3.3.1
rfdc: 1.3.1
streamroller: 3.1.5
@@ -25512,7 +28111,7 @@ snapshots:
lower-case@2.0.2:
dependencies:
- tslib: 2.6.3
+ tslib: 2.8.1
lru-cache@10.2.2: {}
@@ -25531,6 +28130,10 @@ snapshots:
dependencies:
yallist: 4.0.0
+ lucide-react@0.563.0(react@17.0.2):
+ dependencies:
+ react: 17.0.2
+
lunr@2.3.9: {}
magic-string@0.25.9:
@@ -25539,21 +28142,25 @@ snapshots:
magic-string@0.27.0:
dependencies:
- '@jridgewell/sourcemap-codec': 1.4.15
+ '@jridgewell/sourcemap-codec': 1.5.0
magic-string@0.30.10:
dependencies:
- '@jridgewell/sourcemap-codec': 1.4.15
+ '@jridgewell/sourcemap-codec': 1.5.0
magic-string@0.30.17:
dependencies:
'@jridgewell/sourcemap-codec': 1.5.0
+ magic-string@0.30.21:
+ dependencies:
+ '@jridgewell/sourcemap-codec': 1.5.5
+
magicast@0.3.4:
dependencies:
- '@babel/parser': 7.24.5
- '@babel/types': 7.24.5
- source-map-js: 1.2.0
+ '@babel/parser': 7.28.6
+ '@babel/types': 7.28.6
+ source-map-js: 1.2.1
make-dir@2.1.0:
dependencies:
@@ -25853,7 +28460,7 @@ snapshots:
mlly@1.7.1:
dependencies:
- acorn: 8.11.3
+ acorn: 8.15.0
pathe: 1.1.2
pkg-types: 1.1.3
ufo: 1.5.4
@@ -25985,8 +28592,6 @@ snapshots:
nanoid@3.3.11: {}
- nanoid@3.3.7: {}
-
native-promise-only@0.8.1: {}
natural-compare-lite@1.4.0: {}
@@ -26012,7 +28617,7 @@ snapshots:
neo-async@2.6.2: {}
- ng-packagr@19.2.2(@angular/compiler-cli@19.2.15(@angular/compiler@19.2.15)(typescript@5.5.4))(tslib@2.6.2)(typescript@5.5.4):
+ ng-packagr@19.2.2(@angular/compiler-cli@19.2.15(@angular/compiler@19.2.15)(typescript@5.5.4))(tailwindcss@4.1.18)(tslib@2.6.2)(typescript@5.5.4):
dependencies:
'@angular/compiler-cli': 19.2.15(@angular/compiler@19.2.15)(typescript@5.5.4)
'@rollup/plugin-json': 6.1.0(rollup@4.52.4)
@@ -26039,6 +28644,7 @@ snapshots:
typescript: 5.5.4
optionalDependencies:
rollup: 4.52.4
+ tailwindcss: 4.1.18
nice-try@1.0.5: {}
@@ -26049,7 +28655,7 @@ snapshots:
no-case@3.0.4:
dependencies:
lower-case: 2.0.2
- tslib: 2.6.3
+ tslib: 2.8.1
node-addon-api@6.1.0:
optional: true
@@ -26160,7 +28766,7 @@ snapshots:
normalize-package-data@2.5.0:
dependencies:
hosted-git-info: 2.8.9
- resolve: 1.22.8
+ resolve: 1.22.10
semver: 5.7.2
validate-npm-package-license: 3.0.4
@@ -26195,7 +28801,7 @@ snapshots:
npm-install-checks@7.1.2:
dependencies:
- semver: 7.7.2
+ semver: 7.7.3
npm-install-checks@8.0.0:
dependencies:
@@ -26211,7 +28817,7 @@ snapshots:
dependencies:
hosted-git-info: 8.1.0
proc-log: 5.0.0
- semver: 7.7.2
+ semver: 7.7.3
validate-npm-package-name: 6.0.2
npm-package-arg@13.0.1:
@@ -26235,7 +28841,7 @@ snapshots:
npm-install-checks: 7.1.2
npm-normalize-package-bin: 4.0.0
npm-package-arg: 12.0.2
- semver: 7.7.2
+ semver: 7.7.3
npm-pick-manifest@11.0.3:
dependencies:
@@ -26273,9 +28879,9 @@ snapshots:
npm-run-all2@6.2.2:
dependencies:
ansi-styles: 6.2.1
- cross-spawn: 7.0.3
+ cross-spawn: 7.0.6
memorystream: 0.3.1
- minimatch: 9.0.4
+ minimatch: 9.0.5
pidtree: 0.6.0
read-package-json-fast: 3.0.2
shell-quote: 1.8.1
@@ -26421,21 +29027,21 @@ snapshots:
dependencies:
call-bind: 1.0.7
define-properties: 1.2.1
- has-symbols: 1.0.3
+ has-symbols: 1.1.0
object-keys: 1.1.1
object.entries@1.1.8:
dependencies:
call-bind: 1.0.7
define-properties: 1.2.1
- es-object-atoms: 1.0.0
+ es-object-atoms: 1.1.1
object.fromentries@2.0.8:
dependencies:
call-bind: 1.0.7
define-properties: 1.2.1
es-abstract: 1.23.3
- es-object-atoms: 1.0.0
+ es-object-atoms: 1.1.1
object.groupby@1.0.3:
dependencies:
@@ -26447,13 +29053,13 @@ snapshots:
dependencies:
define-properties: 1.2.1
es-abstract: 1.23.3
- es-object-atoms: 1.0.0
+ es-object-atoms: 1.1.1
object.values@1.2.0:
dependencies:
call-bind: 1.0.7
define-properties: 1.2.1
- es-object-atoms: 1.0.0
+ es-object-atoms: 1.1.1
obuf@1.1.2: {}
@@ -26728,7 +29334,7 @@ snapshots:
param-case@3.0.4:
dependencies:
dot-case: 3.0.4
- tslib: 2.6.3
+ tslib: 2.8.1
parent-module@1.0.1:
dependencies:
@@ -26756,7 +29362,7 @@ snapshots:
parse-json@5.2.0:
dependencies:
- '@babel/code-frame': 7.24.2
+ '@babel/code-frame': 7.28.6
error-ex: 1.3.2
json-parse-even-better-errors: 2.3.1
lines-and-columns: 1.2.4
@@ -26809,7 +29415,7 @@ snapshots:
pascal-case@3.1.2:
dependencies:
no-case: 3.0.4
- tslib: 2.6.3
+ tslib: 2.8.1
path-browserify@1.0.1: {}
@@ -26956,74 +29562,38 @@ snapshots:
possible-typed-array-names@1.0.0: {}
- postcss-calc@8.2.4(postcss@8.4.38):
- dependencies:
- postcss: 8.4.38
- postcss-selector-parser: 6.1.0
- postcss-value-parser: 4.2.0
-
postcss-calc@8.2.4(postcss@8.5.6):
dependencies:
postcss: 8.5.6
postcss-selector-parser: 6.1.0
postcss-value-parser: 4.2.0
- postcss-colormin@5.3.1(postcss@8.4.38):
- dependencies:
- browserslist: 4.24.2
- caniuse-api: 3.0.0
- colord: 2.9.3
- postcss: 8.4.38
- postcss-value-parser: 4.2.0
-
postcss-colormin@5.3.1(postcss@8.5.6):
dependencies:
- browserslist: 4.24.2
+ browserslist: 4.26.3
caniuse-api: 3.0.0
colord: 2.9.3
postcss: 8.5.6
postcss-value-parser: 4.2.0
- postcss-convert-values@5.1.3(postcss@8.4.38):
- dependencies:
- browserslist: 4.24.2
- postcss: 8.4.38
- postcss-value-parser: 4.2.0
-
postcss-convert-values@5.1.3(postcss@8.5.6):
dependencies:
- browserslist: 4.24.2
+ browserslist: 4.26.3
postcss: 8.5.6
postcss-value-parser: 4.2.0
- postcss-discard-comments@5.1.2(postcss@8.4.38):
- dependencies:
- postcss: 8.4.38
-
postcss-discard-comments@5.1.2(postcss@8.5.6):
dependencies:
postcss: 8.5.6
- postcss-discard-duplicates@5.1.0(postcss@8.4.38):
- dependencies:
- postcss: 8.4.38
-
postcss-discard-duplicates@5.1.0(postcss@8.5.6):
dependencies:
postcss: 8.5.6
- postcss-discard-empty@5.1.1(postcss@8.4.38):
- dependencies:
- postcss: 8.4.38
-
postcss-discard-empty@5.1.1(postcss@8.5.6):
dependencies:
postcss: 8.5.6
- postcss-discard-overridden@5.1.0(postcss@8.4.38):
- dependencies:
- postcss: 8.4.38
-
postcss-discard-overridden@5.1.0(postcss@8.5.6):
dependencies:
postcss: 8.5.6
@@ -27036,11 +29606,11 @@ snapshots:
postcss: 8.5.6
ts-node: 10.9.2(@types/node@22.13.8)(typescript@5.5.4)
- postcss-loader@6.2.1(postcss@8.4.38)(webpack@5.91.0):
+ postcss-loader@6.2.1(postcss@8.5.6)(webpack@5.91.0):
dependencies:
cosmiconfig: 7.1.0
klona: 2.0.6
- postcss: 8.4.38
+ postcss: 8.5.6
semver: 7.7.3
webpack: 5.91.0(webpack-cli@5.1.4)
@@ -27049,7 +29619,7 @@ snapshots:
cosmiconfig: 9.0.0(typescript@5.5.4)
jiti: 1.21.0
postcss: 8.5.2
- semver: 7.7.1
+ semver: 7.7.3
optionalDependencies:
webpack: 5.98.0(esbuild@0.25.4)
transitivePeerDependencies:
@@ -27057,49 +29627,23 @@ snapshots:
postcss-media-query-parser@0.2.3: {}
- postcss-merge-longhand@5.1.7(postcss@8.4.38):
- dependencies:
- postcss: 8.4.38
- postcss-value-parser: 4.2.0
- stylehacks: 5.1.1(postcss@8.4.38)
-
postcss-merge-longhand@5.1.7(postcss@8.5.6):
dependencies:
postcss: 8.5.6
postcss-value-parser: 4.2.0
stylehacks: 5.1.1(postcss@8.5.6)
- postcss-merge-rules@5.1.4(postcss@8.4.38):
- dependencies:
- browserslist: 4.24.2
- caniuse-api: 3.0.0
- cssnano-utils: 3.1.0(postcss@8.4.38)
- postcss: 8.4.38
- postcss-selector-parser: 6.1.0
-
postcss-merge-rules@5.1.4(postcss@8.5.6):
dependencies:
- browserslist: 4.24.2
+ browserslist: 4.26.3
caniuse-api: 3.0.0
cssnano-utils: 3.1.0(postcss@8.5.6)
postcss: 8.5.6
postcss-selector-parser: 6.1.0
- postcss-minify-font-values@5.1.0(postcss@8.4.38):
- dependencies:
- postcss: 8.4.38
- postcss-value-parser: 4.2.0
-
postcss-minify-font-values@5.1.0(postcss@8.5.6):
dependencies:
- postcss: 8.5.6
- postcss-value-parser: 4.2.0
-
- postcss-minify-gradients@5.1.1(postcss@8.4.38):
- dependencies:
- colord: 2.9.3
- cssnano-utils: 3.1.0(postcss@8.4.38)
- postcss: 8.4.38
+ postcss: 8.5.6
postcss-value-parser: 4.2.0
postcss-minify-gradients@5.1.1(postcss@8.5.6):
@@ -27109,25 +29653,13 @@ snapshots:
postcss: 8.5.6
postcss-value-parser: 4.2.0
- postcss-minify-params@5.1.4(postcss@8.4.38):
- dependencies:
- browserslist: 4.24.2
- cssnano-utils: 3.1.0(postcss@8.4.38)
- postcss: 8.4.38
- postcss-value-parser: 4.2.0
-
postcss-minify-params@5.1.4(postcss@8.5.6):
dependencies:
- browserslist: 4.24.2
+ browserslist: 4.26.3
cssnano-utils: 3.1.0(postcss@8.5.6)
postcss: 8.5.6
postcss-value-parser: 4.2.0
- postcss-minify-selectors@5.2.1(postcss@8.4.38):
- dependencies:
- postcss: 8.4.38
- postcss-selector-parser: 6.1.0
-
postcss-minify-selectors@5.2.1(postcss@8.5.6):
dependencies:
postcss: 8.5.6
@@ -27187,139 +29719,76 @@ snapshots:
postcss-modules-values: 4.0.0(postcss@8.5.6)
string-hash: 1.1.3
- postcss-normalize-charset@5.1.0(postcss@8.4.38):
- dependencies:
- postcss: 8.4.38
-
postcss-normalize-charset@5.1.0(postcss@8.5.6):
dependencies:
postcss: 8.5.6
- postcss-normalize-display-values@5.1.0(postcss@8.4.38):
- dependencies:
- postcss: 8.4.38
- postcss-value-parser: 4.2.0
-
postcss-normalize-display-values@5.1.0(postcss@8.5.6):
dependencies:
postcss: 8.5.6
postcss-value-parser: 4.2.0
- postcss-normalize-positions@5.1.1(postcss@8.4.38):
- dependencies:
- postcss: 8.4.38
- postcss-value-parser: 4.2.0
-
postcss-normalize-positions@5.1.1(postcss@8.5.6):
dependencies:
postcss: 8.5.6
postcss-value-parser: 4.2.0
- postcss-normalize-repeat-style@5.1.1(postcss@8.4.38):
- dependencies:
- postcss: 8.4.38
- postcss-value-parser: 4.2.0
-
postcss-normalize-repeat-style@5.1.1(postcss@8.5.6):
dependencies:
postcss: 8.5.6
postcss-value-parser: 4.2.0
- postcss-normalize-string@5.1.0(postcss@8.4.38):
- dependencies:
- postcss: 8.4.38
- postcss-value-parser: 4.2.0
-
postcss-normalize-string@5.1.0(postcss@8.5.6):
dependencies:
postcss: 8.5.6
postcss-value-parser: 4.2.0
- postcss-normalize-timing-functions@5.1.0(postcss@8.4.38):
- dependencies:
- postcss: 8.4.38
- postcss-value-parser: 4.2.0
-
postcss-normalize-timing-functions@5.1.0(postcss@8.5.6):
dependencies:
postcss: 8.5.6
postcss-value-parser: 4.2.0
- postcss-normalize-unicode@5.1.1(postcss@8.4.38):
- dependencies:
- browserslist: 4.24.2
- postcss: 8.4.38
- postcss-value-parser: 4.2.0
-
postcss-normalize-unicode@5.1.1(postcss@8.5.6):
dependencies:
- browserslist: 4.24.2
+ browserslist: 4.26.3
postcss: 8.5.6
postcss-value-parser: 4.2.0
- postcss-normalize-url@5.1.0(postcss@8.4.38):
- dependencies:
- normalize-url: 6.1.0
- postcss: 8.4.38
- postcss-value-parser: 4.2.0
-
postcss-normalize-url@5.1.0(postcss@8.5.6):
dependencies:
normalize-url: 6.1.0
postcss: 8.5.6
postcss-value-parser: 4.2.0
- postcss-normalize-whitespace@5.1.1(postcss@8.4.38):
- dependencies:
- postcss: 8.4.38
- postcss-value-parser: 4.2.0
-
postcss-normalize-whitespace@5.1.1(postcss@8.5.6):
dependencies:
postcss: 8.5.6
postcss-value-parser: 4.2.0
- postcss-ordered-values@5.1.3(postcss@8.4.38):
- dependencies:
- cssnano-utils: 3.1.0(postcss@8.4.38)
- postcss: 8.4.38
- postcss-value-parser: 4.2.0
-
postcss-ordered-values@5.1.3(postcss@8.5.6):
dependencies:
cssnano-utils: 3.1.0(postcss@8.5.6)
postcss: 8.5.6
postcss-value-parser: 4.2.0
- postcss-reduce-initial@5.1.2(postcss@8.4.38):
- dependencies:
- browserslist: 4.24.2
- caniuse-api: 3.0.0
- postcss: 8.4.38
-
postcss-reduce-initial@5.1.2(postcss@8.5.6):
dependencies:
- browserslist: 4.24.2
+ browserslist: 4.26.3
caniuse-api: 3.0.0
postcss: 8.5.6
- postcss-reduce-transforms@5.1.0(postcss@8.4.38):
- dependencies:
- postcss: 8.4.38
- postcss-value-parser: 4.2.0
-
postcss-reduce-transforms@5.1.0(postcss@8.5.6):
dependencies:
postcss: 8.5.6
postcss-value-parser: 4.2.0
- postcss-safe-parser@6.0.0(postcss@8.4.38):
+ postcss-safe-parser@6.0.0(postcss@8.5.6):
dependencies:
- postcss: 8.4.38
+ postcss: 8.5.6
- postcss-scss@4.0.9(postcss@8.4.38):
+ postcss-scss@4.0.9(postcss@8.5.6):
dependencies:
- postcss: 8.4.38
+ postcss: 8.5.6
postcss-selector-parser@6.1.0:
dependencies:
@@ -27333,31 +29802,20 @@ snapshots:
postcss-styl@0.12.3:
dependencies:
- debug: 4.3.7
+ debug: 4.4.3
fast-diff: 1.3.0
lodash.sortedlastindex: 4.1.0
- postcss: 8.4.38
+ postcss: 8.5.6
stylus: 0.57.0
transitivePeerDependencies:
- supports-color
- postcss-svgo@5.1.0(postcss@8.4.38):
- dependencies:
- postcss: 8.4.38
- postcss-value-parser: 4.2.0
- svgo: 2.8.0
-
postcss-svgo@5.1.0(postcss@8.5.6):
dependencies:
postcss: 8.5.6
postcss-value-parser: 4.2.0
svgo: 2.8.0
- postcss-unique-selectors@5.1.1(postcss@8.4.38):
- dependencies:
- postcss: 8.4.38
- postcss-selector-parser: 6.1.0
-
postcss-unique-selectors@5.1.1(postcss@8.5.6):
dependencies:
postcss: 8.5.6
@@ -27370,18 +29828,6 @@ snapshots:
picocolors: 0.2.1
source-map: 0.6.1
- postcss@8.4.38:
- dependencies:
- nanoid: 3.3.7
- picocolors: 1.0.1
- source-map-js: 1.2.0
-
- postcss@8.4.49:
- dependencies:
- nanoid: 3.3.11
- picocolors: 1.1.1
- source-map-js: 1.2.1
-
postcss@8.5.2:
dependencies:
nanoid: 3.3.11
@@ -27574,6 +30020,69 @@ snapshots:
quick-lru@4.0.1: {}
+ radix-ui@1.4.3(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2):
+ dependencies:
+ '@radix-ui/primitive': 1.1.3
+ '@radix-ui/react-accessible-icon': 1.1.7(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@radix-ui/react-accordion': 1.2.12(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@radix-ui/react-alert-dialog': 1.1.15(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@radix-ui/react-arrow': 1.1.7(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@radix-ui/react-aspect-ratio': 1.1.7(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@radix-ui/react-avatar': 1.1.10(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@radix-ui/react-checkbox': 1.3.3(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@radix-ui/react-collapsible': 1.1.12(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@radix-ui/react-collection': 1.1.7(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@radix-ui/react-compose-refs': 1.1.2(@types/react@17.0.80)(react@17.0.2)
+ '@radix-ui/react-context': 1.1.2(@types/react@17.0.80)(react@17.0.2)
+ '@radix-ui/react-context-menu': 2.2.16(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@radix-ui/react-dialog': 1.1.15(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@radix-ui/react-direction': 1.1.1(@types/react@17.0.80)(react@17.0.2)
+ '@radix-ui/react-dismissable-layer': 1.1.11(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@radix-ui/react-dropdown-menu': 2.1.16(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@radix-ui/react-focus-guards': 1.1.3(@types/react@17.0.80)(react@17.0.2)
+ '@radix-ui/react-focus-scope': 1.1.7(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@radix-ui/react-form': 0.1.8(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@radix-ui/react-hover-card': 1.1.15(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@radix-ui/react-label': 2.1.7(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@radix-ui/react-menu': 2.1.16(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@radix-ui/react-menubar': 1.1.16(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@radix-ui/react-navigation-menu': 1.2.14(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@radix-ui/react-one-time-password-field': 0.1.8(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@radix-ui/react-password-toggle-field': 0.1.3(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@radix-ui/react-popover': 1.1.15(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@radix-ui/react-popper': 1.2.8(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@radix-ui/react-portal': 1.1.9(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@radix-ui/react-presence': 1.1.5(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@radix-ui/react-primitive': 2.1.3(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@radix-ui/react-progress': 1.1.7(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@radix-ui/react-radio-group': 1.3.8(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@radix-ui/react-roving-focus': 1.1.11(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@radix-ui/react-scroll-area': 1.2.10(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@radix-ui/react-select': 2.2.6(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@radix-ui/react-separator': 1.1.7(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@radix-ui/react-slider': 1.3.6(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@radix-ui/react-slot': 1.2.3(@types/react@17.0.80)(react@17.0.2)
+ '@radix-ui/react-switch': 1.2.6(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@radix-ui/react-tabs': 1.1.13(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@radix-ui/react-toast': 1.2.15(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@radix-ui/react-toggle': 1.1.10(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@radix-ui/react-toggle-group': 1.1.11(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@radix-ui/react-toolbar': 1.1.11(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@radix-ui/react-tooltip': 1.2.8(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ '@radix-ui/react-use-callback-ref': 1.1.1(@types/react@17.0.80)(react@17.0.2)
+ '@radix-ui/react-use-controllable-state': 1.2.2(@types/react@17.0.80)(react@17.0.2)
+ '@radix-ui/react-use-effect-event': 0.0.2(@types/react@17.0.80)(react@17.0.2)
+ '@radix-ui/react-use-escape-keydown': 1.1.1(@types/react@17.0.80)(react@17.0.2)
+ '@radix-ui/react-use-is-hydrated': 0.1.0(@types/react@17.0.80)(react@17.0.2)
+ '@radix-ui/react-use-layout-effect': 1.1.1(@types/react@17.0.80)(react@17.0.2)
+ '@radix-ui/react-use-size': 1.1.1(@types/react@17.0.80)(react@17.0.2)
+ '@radix-ui/react-visually-hidden': 1.2.3(@types/react-dom@17.0.25)(@types/react@17.0.80)(react-dom@17.0.2(react@17.0.2))(react@17.0.2)
+ react: 17.0.2
+ react-dom: 17.0.2(react@17.0.2)
+ optionalDependencies:
+ '@types/react': 17.0.80
+ '@types/react-dom': 17.0.25
+
raf@3.4.1:
dependencies:
performance-now: 2.1.0
@@ -27636,11 +30145,40 @@ snapshots:
optionalDependencies:
react-dom: 17.0.2(react@17.0.2)
+ react-refresh@0.17.0: {}
+
+ react-remove-scroll-bar@2.3.8(@types/react@17.0.80)(react@17.0.2):
+ dependencies:
+ react: 17.0.2
+ react-style-singleton: 2.2.3(@types/react@17.0.80)(react@17.0.2)
+ tslib: 2.8.1
+ optionalDependencies:
+ '@types/react': 17.0.80
+
+ react-remove-scroll@2.7.2(@types/react@17.0.80)(react@17.0.2):
+ dependencies:
+ react: 17.0.2
+ react-remove-scroll-bar: 2.3.8(@types/react@17.0.80)(react@17.0.2)
+ react-style-singleton: 2.2.3(@types/react@17.0.80)(react@17.0.2)
+ tslib: 2.8.1
+ use-callback-ref: 1.3.3(@types/react@17.0.80)(react@17.0.2)
+ use-sidecar: 1.1.3(@types/react@17.0.80)(react@17.0.2)
+ optionalDependencies:
+ '@types/react': 17.0.80
+
react-shallow-renderer@16.15.0(react@17.0.2):
dependencies:
object-assign: 4.1.1
react: 17.0.2
- react-is: 17.0.2
+ react-is: 18.3.1
+
+ react-style-singleton@2.2.3(@types/react@17.0.80)(react@17.0.2):
+ dependencies:
+ get-nonce: 1.0.1
+ react: 17.0.2
+ tslib: 2.8.1
+ optionalDependencies:
+ '@types/react': 17.0.80
react-tabs@3.2.3(react@17.0.2):
dependencies:
@@ -27658,7 +30196,7 @@ snapshots:
react-transition-group@4.4.5(react-dom@17.0.2(react@17.0.2))(react@17.0.2):
dependencies:
- '@babel/runtime': 7.28.2
+ '@babel/runtime': 7.28.4
dom-helpers: 5.2.1
loose-envify: 1.4.0
prop-types: 15.8.1
@@ -27742,7 +30280,7 @@ snapshots:
rechoir@0.8.0:
dependencies:
- resolve: 1.22.8
+ resolve: 1.22.10
redent@3.0.0:
dependencies:
@@ -27765,7 +30303,7 @@ snapshots:
define-properties: 1.2.1
es-abstract: 1.23.3
es-errors: 1.3.0
- get-intrinsic: 1.2.4
+ get-intrinsic: 1.3.0
globalthis: 1.0.4
which-builtin-type: 1.1.3
@@ -27783,7 +30321,7 @@ snapshots:
regenerator-transform@0.15.2:
dependencies:
- '@babel/runtime': 7.28.2
+ '@babel/runtime': 7.28.4
regex-parser@2.3.0: {}
@@ -27915,7 +30453,7 @@ snapshots:
resolve@1.19.0:
dependencies:
- is-core-module: 2.13.1
+ is-core-module: 2.16.1
path-parse: 1.0.7
resolve@1.22.10:
@@ -27926,13 +30464,13 @@ snapshots:
resolve@1.22.8:
dependencies:
- is-core-module: 2.13.1
+ is-core-module: 2.16.1
path-parse: 1.0.7
supports-preserve-symlinks-flag: 1.0.0
resolve@2.0.0-next.5:
dependencies:
- is-core-module: 2.13.1
+ is-core-module: 2.16.1
path-parse: 1.0.7
supports-preserve-symlinks-flag: 1.0.0
@@ -28151,8 +30689,8 @@ snapshots:
safe-array-concat@1.1.2:
dependencies:
call-bind: 1.0.7
- get-intrinsic: 1.2.4
- has-symbols: 1.0.3
+ get-intrinsic: 1.3.0
+ has-symbols: 1.1.0
isarray: 2.0.5
safe-buffer@5.1.2: {}
@@ -28242,9 +30780,9 @@ snapshots:
schema-utils@4.2.0:
dependencies:
'@types/json-schema': 7.0.15
- ajv: 8.13.0
- ajv-formats: 2.1.1(ajv@8.13.0)
- ajv-keywords: 5.1.0(ajv@8.13.0)
+ ajv: 8.17.1
+ ajv-formats: 2.1.1(ajv@8.17.1)
+ ajv-keywords: 5.1.0(ajv@8.17.1)
schema-utils@4.3.3:
dependencies:
@@ -28376,8 +30914,8 @@ snapshots:
define-data-property: 1.1.4
es-errors: 1.3.0
function-bind: 1.1.2
- get-intrinsic: 1.2.4
- gopd: 1.0.1
+ get-intrinsic: 1.3.0
+ gopd: 1.2.0
has-property-descriptors: 1.0.2
set-function-name@2.0.2:
@@ -28430,7 +30968,7 @@ snapshots:
dependencies:
call-bind: 1.0.7
es-errors: 1.3.0
- get-intrinsic: 1.2.4
+ get-intrinsic: 1.3.0
object-inspect: 1.13.1
siginfo@2.0.0: {}
@@ -28512,7 +31050,7 @@ snapshots:
accepts: 1.3.8
base64id: 2.0.0
cors: 2.8.5
- debug: 4.3.4
+ debug: 4.3.7
engine.io: 6.5.4
socket.io-adapter: 2.5.4
socket.io-parser: 4.2.4
@@ -28544,8 +31082,6 @@ snapshots:
dependencies:
is-plain-obj: 1.1.0
- source-map-js@1.2.0: {}
-
source-map-js@1.2.1: {}
source-map-loader@0.2.4:
@@ -28613,7 +31149,7 @@ snapshots:
spdy-transport@3.0.0:
dependencies:
- debug: 4.3.7
+ debug: 4.4.3
detect-node: 2.1.0
hpack.js: 2.1.6
obuf: 1.1.2
@@ -28624,7 +31160,7 @@ snapshots:
spdy@4.0.2:
dependencies:
- debug: 4.3.4
+ debug: 4.4.3
handle-thing: 2.0.1
http-deceiver: 1.2.7
select-hose: 2.0.0
@@ -28712,7 +31248,7 @@ snapshots:
streamroller@3.1.5:
dependencies:
date-format: 4.0.14
- debug: 4.3.7
+ debug: 4.4.3
fs-extra: 8.1.0
transitivePeerDependencies:
- supports-color
@@ -28761,10 +31297,10 @@ snapshots:
define-properties: 1.2.1
es-abstract: 1.23.3
es-errors: 1.3.0
- es-object-atoms: 1.0.0
- get-intrinsic: 1.2.4
- gopd: 1.0.1
- has-symbols: 1.0.3
+ es-object-atoms: 1.1.1
+ get-intrinsic: 1.3.0
+ gopd: 1.2.0
+ has-symbols: 1.1.0
internal-slot: 1.0.7
regexp.prototype.flags: 1.5.2
set-function-name: 2.0.2
@@ -28775,26 +31311,26 @@ snapshots:
call-bind: 1.0.7
define-properties: 1.2.1
es-abstract: 1.23.3
- es-object-atoms: 1.0.0
+ es-object-atoms: 1.1.1
string.prototype.trim@1.2.9:
dependencies:
call-bind: 1.0.7
define-properties: 1.2.1
es-abstract: 1.23.3
- es-object-atoms: 1.0.0
+ es-object-atoms: 1.1.1
string.prototype.trimend@1.0.8:
dependencies:
call-bind: 1.0.7
define-properties: 1.2.1
- es-object-atoms: 1.0.0
+ es-object-atoms: 1.1.1
string.prototype.trimstart@1.0.8:
dependencies:
call-bind: 1.0.7
define-properties: 1.2.1
- es-object-atoms: 1.0.0
+ es-object-atoms: 1.1.1
string_decoder@1.1.1:
dependencies:
@@ -28854,15 +31390,9 @@ snapshots:
schema-utils: 2.7.1
webpack: 5.91.0(webpack-cli@5.1.4)
- stylehacks@5.1.1(postcss@8.4.38):
- dependencies:
- browserslist: 4.24.2
- postcss: 8.4.38
- postcss-selector-parser: 6.1.0
-
stylehacks@5.1.1(postcss@8.5.6):
dependencies:
- browserslist: 4.24.2
+ browserslist: 4.26.3
postcss: 8.5.6
postcss-selector-parser: 6.1.0
@@ -28871,7 +31401,7 @@ snapshots:
stylus@0.57.0:
dependencies:
css: 3.0.0
- debug: 4.3.7
+ debug: 4.4.3
glob: 7.2.3
safer-buffer: 2.1.2
sax: 1.2.4
@@ -28883,15 +31413,15 @@ snapshots:
dependencies:
component-emitter: 1.3.1
cookiejar: 2.1.4
- debug: 4.3.7
+ debug: 4.4.3
fast-safe-stringify: 2.1.1
- form-data: 4.0.0
+ form-data: 4.0.5
formidable: 2.1.2
methods: 1.1.2
mime: 2.6.0
qs: 6.12.1
readable-stream: 3.6.2
- semver: 7.6.2
+ semver: 7.7.3
transitivePeerDependencies:
- supports-color
@@ -28942,7 +31472,11 @@ snapshots:
synckit@0.9.1:
dependencies:
'@pkgr/core': 0.1.1
- tslib: 2.6.3
+ tslib: 2.8.1
+
+ tailwind-merge@2.6.0: {}
+
+ tailwindcss@4.1.18: {}
tapable@1.1.3: {}
@@ -28979,7 +31513,7 @@ snapshots:
terser-webpack-plugin@5.3.10(webpack@5.91.0):
dependencies:
- '@jridgewell/trace-mapping': 0.3.25
+ '@jridgewell/trace-mapping': 0.3.31
jest-worker: 27.5.1
schema-utils: 3.3.0
serialize-javascript: 6.0.2
@@ -28988,7 +31522,7 @@ snapshots:
terser-webpack-plugin@5.3.14(esbuild@0.25.4)(webpack@5.98.0(esbuild@0.25.4)):
dependencies:
- '@jridgewell/trace-mapping': 0.3.25
+ '@jridgewell/trace-mapping': 0.3.31
jest-worker: 27.5.1
schema-utils: 4.3.3
serialize-javascript: 6.0.2
@@ -28999,7 +31533,7 @@ snapshots:
terser-webpack-plugin@5.3.14(webpack@5.98.0):
dependencies:
- '@jridgewell/trace-mapping': 0.3.25
+ '@jridgewell/trace-mapping': 0.3.31
jest-worker: 27.5.1
schema-utils: 4.3.3
serialize-javascript: 6.0.2
@@ -29009,14 +31543,14 @@ snapshots:
terser@5.31.0:
dependencies:
'@jridgewell/source-map': 0.3.6
- acorn: 8.11.3
+ acorn: 8.15.0
commander: 2.20.3
source-map-support: 0.5.21
terser@5.31.6:
dependencies:
'@jridgewell/source-map': 0.3.6
- acorn: 8.11.3
+ acorn: 8.15.0
commander: 2.20.3
source-map-support: 0.5.21
@@ -29169,12 +31703,16 @@ snapshots:
dependencies:
typescript: 5.5.4
- ts-jest@29.4.5(@babel/core@7.24.5)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.24.5))(jest-util@29.7.0)(jest@29.7.0(@types/node@22.13.8)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.5.4)))(typescript@5.5.4):
+ ts-api-utils@2.4.0(typescript@5.5.4):
+ dependencies:
+ typescript: 5.5.4
+
+ ts-jest@29.4.5(@babel/core@7.24.5)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.24.5))(jest-util@29.7.0)(jest@29.7.0(@types/node@22.13.8)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@10.9.2(@types/node@24.10.9)(typescript@5.5.4)))(typescript@5.5.4):
dependencies:
bs-logger: 0.2.6
fast-json-stable-stringify: 2.1.0
handlebars: 4.7.8
- jest: 29.7.0(@types/node@22.13.8)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.5.4))
+ jest: 29.7.0(@types/node@22.13.8)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@10.9.2(@types/node@24.10.9)(typescript@5.5.4))
json5: 2.2.3
lodash.memoize: 4.1.2
make-error: 1.3.6
@@ -29189,12 +31727,12 @@ snapshots:
babel-jest: 29.7.0(@babel/core@7.24.5)
jest-util: 29.7.0
- ts-jest@29.4.5(@babel/core@7.26.10)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.26.10))(jest-util@29.7.0)(jest@29.7.0(@types/node@22.13.8)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.5.4)))(typescript@5.5.4):
+ ts-jest@29.4.5(@babel/core@7.28.6)(@jest/transform@29.7.0)(@jest/types@29.6.3)(babel-jest@29.7.0(@babel/core@7.28.6))(jest-util@29.7.0)(jest@29.7.0(@types/node@24.10.9)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@10.9.2(@types/node@24.10.9)(typescript@5.5.4)))(typescript@5.5.4):
dependencies:
bs-logger: 0.2.6
fast-json-stable-stringify: 2.1.0
handlebars: 4.7.8
- jest: 29.7.0(@types/node@22.13.8)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@10.9.2(@types/node@22.13.8)(typescript@5.5.4))
+ jest: 29.7.0(@types/node@24.10.9)(babel-plugin-macros@3.1.0)(node-notifier@8.0.2)(ts-node@10.9.2(@types/node@24.10.9)(typescript@5.5.4))
json5: 2.2.3
lodash.memoize: 4.1.2
make-error: 1.3.6
@@ -29203,10 +31741,10 @@ snapshots:
typescript: 5.5.4
yargs-parser: 21.1.1
optionalDependencies:
- '@babel/core': 7.26.10
+ '@babel/core': 7.28.6
'@jest/transform': 29.7.0
'@jest/types': 29.6.3
- babel-jest: 29.7.0(@babel/core@7.26.10)
+ babel-jest: 29.7.0(@babel/core@7.28.6)
jest-util: 29.7.0
ts-loader@9.5.1(typescript@5.5.4)(webpack@5.91.0):
@@ -29236,6 +31774,25 @@ snapshots:
typescript: 5.5.4
v8-compile-cache-lib: 3.0.1
yn: 3.1.1
+ optional: true
+
+ ts-node@10.9.2(@types/node@24.10.9)(typescript@5.5.4):
+ dependencies:
+ '@cspotcode/source-map-support': 0.8.1
+ '@tsconfig/node10': 1.0.11
+ '@tsconfig/node12': 1.0.11
+ '@tsconfig/node14': 1.0.3
+ '@tsconfig/node16': 1.0.4
+ '@types/node': 24.10.9
+ acorn: 8.11.3
+ acorn-walk: 8.3.2
+ arg: 4.1.3
+ create-require: 1.1.1
+ diff: 4.0.2
+ make-error: 1.3.6
+ typescript: 5.5.4
+ v8-compile-cache-lib: 3.0.1
+ yn: 3.1.1
tsconfig-paths@3.15.0:
dependencies:
@@ -29331,7 +31888,7 @@ snapshots:
dependencies:
call-bind: 1.0.7
for-each: 0.3.3
- gopd: 1.0.1
+ gopd: 1.2.0
has-proto: 1.0.3
is-typed-array: 1.1.13
@@ -29340,7 +31897,7 @@ snapshots:
available-typed-arrays: 1.0.7
call-bind: 1.0.7
for-each: 0.3.3
- gopd: 1.0.1
+ gopd: 1.2.0
has-proto: 1.0.3
is-typed-array: 1.1.13
@@ -29348,7 +31905,7 @@ snapshots:
dependencies:
call-bind: 1.0.7
for-each: 0.3.3
- gopd: 1.0.1
+ gopd: 1.2.0
has-proto: 1.0.3
is-typed-array: 1.1.13
possible-typed-array-names: 1.0.0
@@ -29389,13 +31946,15 @@ snapshots:
dependencies:
call-bind: 1.0.7
has-bigints: 1.0.2
- has-symbols: 1.0.3
+ has-symbols: 1.1.0
which-boxed-primitive: 1.0.2
unc-path-regex@0.1.2: {}
undici-types@6.20.0: {}
+ undici-types@7.16.0: {}
+
unicode-canonical-property-names-ecmascript@2.0.0: {}
unicode-match-property-ecmascript@2.0.0:
@@ -29449,7 +32008,7 @@ snapshots:
update-browserslist-db@1.0.16(browserslist@4.23.0):
dependencies:
browserslist: 4.23.0
- escalade: 3.1.2
+ escalade: 3.2.0
picocolors: 1.1.1
update-browserslist-db@1.1.1(browserslist@4.24.2):
@@ -29482,6 +32041,21 @@ snapshots:
punycode: 1.4.1
qs: 6.13.0
+ use-callback-ref@1.3.3(@types/react@17.0.80)(react@17.0.2):
+ dependencies:
+ react: 17.0.2
+ tslib: 2.8.1
+ optionalDependencies:
+ '@types/react': 17.0.80
+
+ use-sidecar@1.1.3(@types/react@17.0.80)(react@17.0.2):
+ dependencies:
+ detect-node-es: 1.1.0
+ react: 17.0.2
+ tslib: 2.8.1
+ optionalDependencies:
+ '@types/react': 17.0.80
+
use-sync-external-store@1.5.0(react@17.0.2):
dependencies:
react: 17.0.2
@@ -29572,13 +32146,13 @@ snapshots:
remove-trailing-separator: 1.1.0
replace-ext: 1.0.1
- vite-node@1.6.0(@types/node@22.13.8)(less@4.2.2)(sass@1.93.2)(stylus@0.57.0)(terser@5.39.0):
+ vite-node@1.6.0(@types/node@22.13.8)(less@4.2.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.57.0)(terser@5.39.0):
dependencies:
cac: 6.7.14
- debug: 4.3.7
+ debug: 4.4.3
pathe: 1.1.2
picocolors: 1.1.1
- vite: 5.4.21(@types/node@22.13.8)(less@4.2.2)(sass@1.93.2)(stylus@0.57.0)(terser@5.39.0)
+ vite: 5.4.21(@types/node@22.13.8)(less@4.2.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.57.0)(terser@5.39.0)
transitivePeerDependencies:
- '@types/node'
- less
@@ -29590,7 +32164,7 @@ snapshots:
- supports-color
- terser
- vite-plugin-dts@3.9.1(@types/node@22.13.8)(rollup@4.52.4)(typescript@5.5.4)(vite@5.4.21(@types/node@22.13.8)(less@4.2.2)(sass@1.93.2)(stylus@0.57.0)(terser@5.39.0)):
+ vite-plugin-dts@3.9.1(@types/node@22.13.8)(rollup@4.52.4)(typescript@5.5.4)(vite@5.4.21(@types/node@22.13.8)(less@4.2.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.57.0)(terser@5.39.0)):
dependencies:
'@microsoft/api-extractor': 7.43.0(@types/node@22.13.8)
'@rollup/pluginutils': 5.1.0(rollup@4.52.4)
@@ -29601,41 +32175,41 @@ snapshots:
typescript: 5.5.4
vue-tsc: 1.8.27(typescript@5.5.4)
optionalDependencies:
- vite: 5.4.21(@types/node@22.13.8)(less@4.2.2)(sass@1.93.2)(stylus@0.57.0)(terser@5.39.0)
+ vite: 5.4.21(@types/node@22.13.8)(less@4.2.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.57.0)(terser@5.39.0)
transitivePeerDependencies:
- '@types/node'
- rollup
- supports-color
- vite-plugin-node-polyfills@0.21.0(rollup@4.52.4)(vite@5.4.21(@types/node@22.13.8)(less@4.2.2)(sass@1.93.2)(stylus@0.57.0)(terser@5.39.0)):
+ vite-plugin-node-polyfills@0.21.0(rollup@4.52.4)(vite@5.4.21(@types/node@22.13.8)(less@4.2.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.57.0)(terser@5.39.0)):
dependencies:
'@rollup/plugin-inject': 5.0.5(rollup@4.52.4)
node-stdlib-browser: 1.2.0
- vite: 5.4.21(@types/node@22.13.8)(less@4.2.2)(sass@1.93.2)(stylus@0.57.0)(terser@5.39.0)
+ vite: 5.4.21(@types/node@22.13.8)(less@4.2.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.57.0)(terser@5.39.0)
transitivePeerDependencies:
- rollup
- vite-plugin-static-copy@2.3.2(vite@5.4.21(@types/node@22.13.8)(less@4.2.2)(sass@1.93.2)(stylus@0.57.0)(terser@5.39.0)):
+ vite-plugin-static-copy@2.3.2(vite@5.4.21(@types/node@22.13.8)(less@4.2.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.57.0)(terser@5.39.0)):
dependencies:
chokidar: 3.6.0
fast-glob: 3.3.3
fs-extra: 11.3.2
p-map: 7.0.4
picocolors: 1.1.1
- vite: 5.4.21(@types/node@22.13.8)(less@4.2.2)(sass@1.93.2)(stylus@0.57.0)(terser@5.39.0)
+ vite: 5.4.21(@types/node@22.13.8)(less@4.2.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.57.0)(terser@5.39.0)
- vite-plugin-vuetify@2.1.1(vite@5.4.21(@types/node@22.13.8)(less@4.2.2)(sass@1.93.2)(stylus@0.57.0)(terser@5.39.0))(vue@3.5.17(typescript@5.5.4))(vuetify@3.9.0):
+ vite-plugin-vuetify@2.1.1(vite@5.4.21(@types/node@22.13.8)(less@4.2.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.57.0)(terser@5.39.0))(vue@3.5.17(typescript@5.5.4))(vuetify@3.9.0):
dependencies:
'@vuetify/loader-shared': 2.1.0(vue@3.5.17(typescript@5.5.4))(vuetify@3.9.0)
debug: 4.3.7
upath: 2.0.1
- vite: 5.4.21(@types/node@22.13.8)(less@4.2.2)(sass@1.93.2)(stylus@0.57.0)(terser@5.39.0)
+ vite: 5.4.21(@types/node@22.13.8)(less@4.2.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.57.0)(terser@5.39.0)
vue: 3.5.17(typescript@5.5.4)
vuetify: 3.9.0(typescript@5.5.4)(vite-plugin-vuetify@2.1.1)(vue@3.5.17(typescript@5.5.4))
transitivePeerDependencies:
- supports-color
- vite@5.4.21(@types/node@22.13.8)(less@4.2.2)(sass@1.93.2)(stylus@0.57.0)(terser@5.39.0):
+ vite@5.4.21(@types/node@22.13.8)(less@4.2.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.57.0)(terser@5.39.0):
dependencies:
esbuild: 0.21.5
postcss: 8.5.6
@@ -29644,29 +32218,64 @@ snapshots:
'@types/node': 22.13.8
fsevents: 2.3.3
less: 4.2.2
+ lightningcss: 1.30.2
sass: 1.93.2
stylus: 0.57.0
terser: 5.39.0
- vite@6.3.6(@types/node@22.13.8)(jiti@1.21.0)(less@4.2.2)(sass@1.85.0)(stylus@0.57.0)(terser@5.39.0)(yaml@2.8.1):
+ vite@5.4.21(@types/node@24.10.9)(less@4.2.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.57.0)(terser@5.39.0):
dependencies:
- esbuild: 0.25.4
- fdir: 6.5.0(picomatch@4.0.2)
- picomatch: 4.0.2
+ esbuild: 0.21.5
+ postcss: 8.5.6
+ rollup: 4.52.4
+ optionalDependencies:
+ '@types/node': 24.10.9
+ fsevents: 2.3.3
+ less: 4.2.2
+ lightningcss: 1.30.2
+ sass: 1.93.2
+ stylus: 0.57.0
+ terser: 5.39.0
+
+ vite@6.3.6(@types/node@22.13.8)(jiti@2.6.1)(less@4.2.2)(lightningcss@1.30.2)(sass@1.85.0)(stylus@0.57.0)(terser@5.39.0)(yaml@2.8.1):
+ dependencies:
+ esbuild: 0.25.10
+ fdir: 6.5.0(picomatch@4.0.3)
+ picomatch: 4.0.3
postcss: 8.5.6
rollup: 4.52.4
tinyglobby: 0.2.15
optionalDependencies:
'@types/node': 22.13.8
fsevents: 2.3.3
- jiti: 1.21.0
+ jiti: 2.6.1
+ less: 4.2.2
+ lightningcss: 1.30.2
+ sass: 1.85.0
+ stylus: 0.57.0
+ terser: 5.39.0
+ yaml: 2.8.1
+
+ vite@7.3.1(@types/node@22.13.8)(jiti@2.6.1)(less@4.2.2)(lightningcss@1.30.2)(sass@1.85.0)(stylus@0.57.0)(terser@5.39.0)(yaml@2.8.1):
+ dependencies:
+ esbuild: 0.27.2
+ fdir: 6.5.0(picomatch@4.0.3)
+ picomatch: 4.0.3
+ postcss: 8.5.6
+ rollup: 4.52.4
+ tinyglobby: 0.2.15
+ optionalDependencies:
+ '@types/node': 22.13.8
+ fsevents: 2.3.3
+ jiti: 2.6.1
less: 4.2.2
+ lightningcss: 1.30.2
sass: 1.85.0
stylus: 0.57.0
terser: 5.39.0
yaml: 2.8.1
- vitest@1.6.0(@types/node@22.13.8)(jsdom@27.2.0)(less@4.2.2)(sass@1.93.2)(stylus@0.57.0)(terser@5.39.0):
+ vitest@1.6.0(@types/node@22.13.8)(jsdom@27.2.0)(less@4.2.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.57.0)(terser@5.39.0):
dependencies:
'@vitest/expect': 1.6.0
'@vitest/runner': 1.6.0
@@ -29685,8 +32294,8 @@ snapshots:
strip-literal: 2.1.0
tinybench: 2.9.0
tinypool: 0.8.4
- vite: 5.4.21(@types/node@22.13.8)(less@4.2.2)(sass@1.93.2)(stylus@0.57.0)(terser@5.39.0)
- vite-node: 1.6.0(@types/node@22.13.8)(less@4.2.2)(sass@1.93.2)(stylus@0.57.0)(terser@5.39.0)
+ vite: 5.4.21(@types/node@22.13.8)(less@4.2.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.57.0)(terser@5.39.0)
+ vite-node: 1.6.0(@types/node@22.13.8)(less@4.2.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.57.0)(terser@5.39.0)
why-is-node-running: 2.3.0
optionalDependencies:
'@types/node': 22.13.8
@@ -29822,7 +32431,7 @@ snapshots:
dependencies:
'@volar/typescript': 1.11.1
'@vue/language-core': 1.8.27(typescript@5.5.4)
- semver: 7.6.2
+ semver: 7.7.3
typescript: 5.5.4
vue-tsc@2.0.29(typescript@5.5.4):
@@ -29835,7 +32444,7 @@ snapshots:
vue@2.7.16:
dependencies:
'@vue/compiler-sfc': 2.7.16
- csstype: 3.1.3
+ csstype: 3.2.3
vue@3.5.17(typescript@5.5.4):
dependencies:
@@ -29852,7 +32461,7 @@ snapshots:
vue: 3.5.17(typescript@5.5.4)
optionalDependencies:
typescript: 5.5.4
- vite-plugin-vuetify: 2.1.1(vite@5.4.21(@types/node@22.13.8)(less@4.2.2)(sass@1.93.2)(stylus@0.57.0)(terser@5.39.0))(vue@3.5.17(typescript@5.5.4))(vuetify@3.9.0)
+ vite-plugin-vuetify: 2.1.1(vite@5.4.21(@types/node@22.13.8)(less@4.2.2)(lightningcss@1.30.2)(sass@1.93.2)(stylus@0.57.0)(terser@5.39.0))(vue@3.5.17(typescript@5.5.4))(vuetify@3.9.0)
w3c-hr-time@1.0.2:
dependencies:
@@ -29933,7 +32542,7 @@ snapshots:
gzip-size: 6.0.0
html-escaper: 2.0.2
opener: 1.5.2
- picocolors: 1.0.1
+ picocolors: 1.1.1
sirv: 2.0.4
ws: 7.5.9
transitivePeerDependencies:
@@ -30094,7 +32703,7 @@ snapshots:
sockjs: 0.3.24
spdy: 4.0.2
webpack-dev-middleware: 7.4.2(webpack@5.98.0(esbuild@0.25.4))
- ws: 8.18.0
+ ws: 8.18.3
optionalDependencies:
webpack: 5.98.0(esbuild@0.25.4)
transitivePeerDependencies:
@@ -30176,7 +32785,7 @@ snapshots:
'@webassemblyjs/wasm-edit': 1.14.1
'@webassemblyjs/wasm-parser': 1.14.1
acorn: 8.15.0
- browserslist: 4.24.2
+ browserslist: 4.26.3
chrome-trace-event: 1.0.3
enhanced-resolve: 5.17.1
es-module-lexer: 1.5.3
@@ -30206,7 +32815,7 @@ snapshots:
'@webassemblyjs/wasm-edit': 1.14.1
'@webassemblyjs/wasm-parser': 1.14.1
acorn: 8.15.0
- browserslist: 4.24.2
+ browserslist: 4.26.3
chrome-trace-event: 1.0.3
enhanced-resolve: 5.17.1
es-module-lexer: 1.5.3
@@ -30309,7 +32918,7 @@ snapshots:
available-typed-arrays: 1.0.7
call-bind: 1.0.7
for-each: 0.3.3
- gopd: 1.0.1
+ gopd: 1.2.0
has-tostringtag: 1.0.2
which@1.3.1:
@@ -30435,8 +33044,6 @@ snapshots:
ws@8.17.0: {}
- ws@8.18.0: {}
-
ws@8.18.3: {}
xml-name-validator@4.0.0: {}
diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml
index 18ec407ef..9d8b25598 100644
--- a/pnpm-workspace.yaml
+++ b/pnpm-workspace.yaml
@@ -1,2 +1,3 @@
packages:
- 'packages/*'
+ - 'packages/*/example'